diff --git a/clients/client-accessanalyzer/src/commands/ApplyArchiveRuleCommand.ts b/clients/client-accessanalyzer/src/commands/ApplyArchiveRuleCommand.ts index 72288481db15c..c9a017420e75f 100644 --- a/clients/client-accessanalyzer/src/commands/ApplyArchiveRuleCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ApplyArchiveRuleCommand.ts @@ -71,6 +71,7 @@ export interface ApplyArchiveRuleCommandOutput extends __MetadataBearer {} * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class ApplyArchiveRuleCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/CancelPolicyGenerationCommand.ts b/clients/client-accessanalyzer/src/commands/CancelPolicyGenerationCommand.ts index e5f5bc9ef4dac..569e3066fc193 100644 --- a/clients/client-accessanalyzer/src/commands/CancelPolicyGenerationCommand.ts +++ b/clients/client-accessanalyzer/src/commands/CancelPolicyGenerationCommand.ts @@ -65,6 +65,7 @@ export interface CancelPolicyGenerationCommandOutput extends CancelPolicyGenerat * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class CancelPolicyGenerationCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/CheckAccessNotGrantedCommand.ts b/clients/client-accessanalyzer/src/commands/CheckAccessNotGrantedCommand.ts index 5b281a18344cf..2edb5a76ad565 100644 --- a/clients/client-accessanalyzer/src/commands/CheckAccessNotGrantedCommand.ts +++ b/clients/client-accessanalyzer/src/commands/CheckAccessNotGrantedCommand.ts @@ -96,89 +96,87 @@ export interface CheckAccessNotGrantedCommandOutput extends CheckAccessNotGrante * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* - * @public + * * @example Passing check. Restrictive identity policy. * ```javascript * // * const input = { - * "access": [ + * access: [ * { - * "actions": [ + * actions: [ * "s3:PutObject" * ] * } * ], - * "policyDocument": "{\"Version\":\"2012-10-17\",\"Id\":\"123\",\"Statement\":[{\"Sid\":\"AllowJohnDoe\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::123456789012:user/JohnDoe\"},\"Action\":\"s3:GetObject\",\"Resource\":\"*\"}]}", - * "policyType": "RESOURCE_POLICY" + * policyDocument: `{"Version":"2012-10-17","Id":"123","Statement":[{"Sid":"AllowJohnDoe","Effect":"Allow","Principal":{"AWS":"arn:aws:iam::123456789012:user/JohnDoe"},"Action":"s3:GetObject","Resource":"*"}]}`, + * policyType: "RESOURCE_POLICY" * }; * const command = new CheckAccessNotGrantedCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "message": "The policy document does not grant access to perform the listed actions or resources.", - * "result": "PASS" + * message: "The policy document does not grant access to perform the listed actions or resources.", + * result: "PASS" * } * *\/ - * // example id: example-1 * ``` * * @example Passing check. Restrictive S3 Bucket resource policy. * ```javascript * // * const input = { - * "access": [ + * access: [ * { - * "resources": [ + * resources: [ * "arn:aws:s3:::sensitive-bucket/*" * ] * } * ], - * "policyDocument": "{\"Version\":\"2012-10-17\",\"Id\":\"123\",\"Statement\":[{\"Sid\":\"AllowJohnDoe\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::123456789012:user/JohnDoe\"},\"Action\":\"s3:PutObject\",\"Resource\":\"arn:aws:s3:::non-sensitive-bucket/*\"}]}", - * "policyType": "RESOURCE_POLICY" + * policyDocument: `{"Version":"2012-10-17","Id":"123","Statement":[{"Sid":"AllowJohnDoe","Effect":"Allow","Principal":{"AWS":"arn:aws:iam::123456789012:user/JohnDoe"},"Action":"s3:PutObject","Resource":"arn:aws:s3:::non-sensitive-bucket/*"}]}`, + * policyType: "RESOURCE_POLICY" * }; * const command = new CheckAccessNotGrantedCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "message": "The policy document does not grant access to perform the listed actions or resources.", - * "result": "PASS" + * message: "The policy document does not grant access to perform the listed actions or resources.", + * result: "PASS" * } * *\/ - * // example id: example-2 * ``` * * @example Failing check. Permissive S3 Bucket resource policy. * ```javascript * // * const input = { - * "access": [ + * access: [ * { - * "resources": [ + * resources: [ * "arn:aws:s3:::my-bucket/*" * ] * } * ], - * "policyDocument": "{\"Version\":\"2012-10-17\",\"Id\":\"123\",\"Statement\":[{\"Sid\":\"AllowJohnDoe\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::123456789012:user/JohnDoe\"},\"Action\":\"s3:PutObject\",\"Resource\":\"arn:aws:s3:::my-bucket/*\"}]}", - * "policyType": "RESOURCE_POLICY" + * policyDocument: `{"Version":"2012-10-17","Id":"123","Statement":[{"Sid":"AllowJohnDoe","Effect":"Allow","Principal":{"AWS":"arn:aws:iam::123456789012:user/JohnDoe"},"Action":"s3:PutObject","Resource":"arn:aws:s3:::my-bucket/*"}]}`, + * policyType: "RESOURCE_POLICY" * }; * const command = new CheckAccessNotGrantedCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "message": "The policy document grants access to perform one or more of the listed actions or resources.", - * "reasons": [ + * message: "The policy document grants access to perform one or more of the listed actions or resources.", + * reasons: [ * { - * "description": "One or more of the listed actions or resources in the statement with sid: AllowJohnDoe.", - * "statementId": "AllowJohnDoe", - * "statementIndex": 0 + * description: "One or more of the listed actions or resources in the statement with sid: AllowJohnDoe.", + * statementId: "AllowJohnDoe", + * statementIndex: 0 * } * ], - * "result": "FAIL" + * result: "FAIL" * } * *\/ - * // example id: example-3 * ``` * + * @public */ export class CheckAccessNotGrantedCommand extends $Command .classBuilder< diff --git a/clients/client-accessanalyzer/src/commands/CheckNoNewAccessCommand.ts b/clients/client-accessanalyzer/src/commands/CheckNoNewAccessCommand.ts index 20263d8793972..a3e5c94351739 100644 --- a/clients/client-accessanalyzer/src/commands/CheckNoNewAccessCommand.ts +++ b/clients/client-accessanalyzer/src/commands/CheckNoNewAccessCommand.ts @@ -92,6 +92,7 @@ export interface CheckNoNewAccessCommandOutput extends CheckNoNewAccessResponse, * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class CheckNoNewAccessCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/CheckNoPublicAccessCommand.ts b/clients/client-accessanalyzer/src/commands/CheckNoPublicAccessCommand.ts index 5d2a64103fcda..1a4772e89474b 100644 --- a/clients/client-accessanalyzer/src/commands/CheckNoPublicAccessCommand.ts +++ b/clients/client-accessanalyzer/src/commands/CheckNoPublicAccessCommand.ts @@ -87,50 +87,49 @@ export interface CheckNoPublicAccessCommandOutput extends CheckNoPublicAccessRes * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* - * @public + * * @example Passing check. S3 Bucket policy without public access. * ```javascript * // * const input = { - * "policyDocument": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"Bob\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::111122223333:user/JohnDoe\"},\"Action\":[\"s3:GetObject\"]}]}", - * "resourceType": "AWS::S3::Bucket" + * policyDocument: `{"Version":"2012-10-17","Statement":[{"Sid":"Bob","Effect":"Allow","Principal":{"AWS":"arn:aws:iam::111122223333:user/JohnDoe"},"Action":["s3:GetObject"]}]}`, + * resourceType: "AWS::S3::Bucket" * }; * const command = new CheckNoPublicAccessCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "message": "The resource policy does not grant public access for the given resource type.", - * "result": "PASS" + * message: "The resource policy does not grant public access for the given resource type.", + * result: "PASS" * } * *\/ - * // example id: example-1 * ``` * * @example Failing check. S3 Bucket policy with public access. * ```javascript * // * const input = { - * "policyDocument": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"Bob\",\"Effect\":\"Allow\",\"Principal\":\"*\",\"Action\":[\"s3:GetObject\"]}]}", - * "resourceType": "AWS::S3::Bucket" + * policyDocument: `{"Version":"2012-10-17","Statement":[{"Sid":"Bob","Effect":"Allow","Principal":"*","Action":["s3:GetObject"]}]}`, + * resourceType: "AWS::S3::Bucket" * }; * const command = new CheckNoPublicAccessCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "message": "The resource policy grants public access for the given resource type.", - * "reasons": [ + * message: "The resource policy grants public access for the given resource type.", + * reasons: [ * { - * "description": "Public access granted in the following statement with sid: Bob.", - * "statementId": "Bob", - * "statementIndex": 0 + * description: "Public access granted in the following statement with sid: Bob.", + * statementId: "Bob", + * statementIndex: 0 * } * ], - * "result": "FAIL" + * result: "FAIL" * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class CheckNoPublicAccessCommand extends $Command .classBuilder< diff --git a/clients/client-accessanalyzer/src/commands/CreateAccessPreviewCommand.ts b/clients/client-accessanalyzer/src/commands/CreateAccessPreviewCommand.ts index 4a695fa0dbf6c..3486b84e8b3c2 100644 --- a/clients/client-accessanalyzer/src/commands/CreateAccessPreviewCommand.ts +++ b/clients/client-accessanalyzer/src/commands/CreateAccessPreviewCommand.ts @@ -193,6 +193,7 @@ export interface CreateAccessPreviewCommandOutput extends CreateAccessPreviewRes * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class CreateAccessPreviewCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/CreateAnalyzerCommand.ts b/clients/client-accessanalyzer/src/commands/CreateAnalyzerCommand.ts index 23e9f0b2f4e22..cd58b93f6cc32 100644 --- a/clients/client-accessanalyzer/src/commands/CreateAnalyzerCommand.ts +++ b/clients/client-accessanalyzer/src/commands/CreateAnalyzerCommand.ts @@ -116,6 +116,7 @@ export interface CreateAnalyzerCommandOutput extends CreateAnalyzerResponse, __M * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class CreateAnalyzerCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/CreateArchiveRuleCommand.ts b/clients/client-accessanalyzer/src/commands/CreateArchiveRuleCommand.ts index 4979346900229..8b853949a3931 100644 --- a/clients/client-accessanalyzer/src/commands/CreateArchiveRuleCommand.ts +++ b/clients/client-accessanalyzer/src/commands/CreateArchiveRuleCommand.ts @@ -92,6 +92,7 @@ export interface CreateArchiveRuleCommandOutput extends __MetadataBearer {} * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class CreateArchiveRuleCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/DeleteAnalyzerCommand.ts b/clients/client-accessanalyzer/src/commands/DeleteAnalyzerCommand.ts index e553c08427fef..4c97b761f2ae9 100644 --- a/clients/client-accessanalyzer/src/commands/DeleteAnalyzerCommand.ts +++ b/clients/client-accessanalyzer/src/commands/DeleteAnalyzerCommand.ts @@ -71,6 +71,7 @@ export interface DeleteAnalyzerCommandOutput extends __MetadataBearer {} * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class DeleteAnalyzerCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/DeleteArchiveRuleCommand.ts b/clients/client-accessanalyzer/src/commands/DeleteArchiveRuleCommand.ts index e4a94f110b07d..d8e3684e60467 100644 --- a/clients/client-accessanalyzer/src/commands/DeleteArchiveRuleCommand.ts +++ b/clients/client-accessanalyzer/src/commands/DeleteArchiveRuleCommand.ts @@ -70,6 +70,7 @@ export interface DeleteArchiveRuleCommandOutput extends __MetadataBearer {} * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class DeleteArchiveRuleCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/GenerateFindingRecommendationCommand.ts b/clients/client-accessanalyzer/src/commands/GenerateFindingRecommendationCommand.ts index 07b70c13a79c6..e77a84536fd11 100644 --- a/clients/client-accessanalyzer/src/commands/GenerateFindingRecommendationCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GenerateFindingRecommendationCommand.ts @@ -69,31 +69,36 @@ export interface GenerateFindingRecommendationCommandOutput extends __MetadataBe * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* - * @public + * * @example Successfully started generating finding recommendation * ```javascript * // * const input = { - * "analyzerArn": "arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a", - * "id": "finding-id" + * analyzerArn: "arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a", + * id: "finding-id" * }; * const command = new GenerateFindingRecommendationCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * * @example Failed field validation for id value * ```javascript * // * const input = { - * "analyzerArn": "arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a", - * "id": "!" + * analyzerArn: "arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a", + * id: "!" * }; * const command = new GenerateFindingRecommendationCommand(input); - * await client.send(command); - * // example id: example-2 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class GenerateFindingRecommendationCommand extends $Command .classBuilder< diff --git a/clients/client-accessanalyzer/src/commands/GetAccessPreviewCommand.ts b/clients/client-accessanalyzer/src/commands/GetAccessPreviewCommand.ts index 731d7e398f978..671bf48847dac 100644 --- a/clients/client-accessanalyzer/src/commands/GetAccessPreviewCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetAccessPreviewCommand.ts @@ -194,6 +194,7 @@ export interface GetAccessPreviewCommandOutput extends GetAccessPreviewResponse, * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class GetAccessPreviewCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/GetAnalyzedResourceCommand.ts b/clients/client-accessanalyzer/src/commands/GetAnalyzedResourceCommand.ts index 5e209707e6414..a2b36c65556bd 100644 --- a/clients/client-accessanalyzer/src/commands/GetAnalyzedResourceCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetAnalyzedResourceCommand.ts @@ -87,6 +87,7 @@ export interface GetAnalyzedResourceCommandOutput extends GetAnalyzedResourceRes * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class GetAnalyzedResourceCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/GetAnalyzerCommand.ts b/clients/client-accessanalyzer/src/commands/GetAnalyzerCommand.ts index 211ab2f3a3684..6a4bf33ebb43e 100644 --- a/clients/client-accessanalyzer/src/commands/GetAnalyzerCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetAnalyzerCommand.ts @@ -103,6 +103,7 @@ export interface GetAnalyzerCommandOutput extends GetAnalyzerResponse, __Metadat * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class GetAnalyzerCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/GetArchiveRuleCommand.ts b/clients/client-accessanalyzer/src/commands/GetArchiveRuleCommand.ts index 7a2d5242f69ea..4d8f4723f8edf 100644 --- a/clients/client-accessanalyzer/src/commands/GetArchiveRuleCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetArchiveRuleCommand.ts @@ -90,6 +90,7 @@ export interface GetArchiveRuleCommandOutput extends GetArchiveRuleResponse, __M * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class GetArchiveRuleCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/GetFindingCommand.ts b/clients/client-accessanalyzer/src/commands/GetFindingCommand.ts index 53d56ac0953c8..385e2bda293f3 100644 --- a/clients/client-accessanalyzer/src/commands/GetFindingCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetFindingCommand.ts @@ -104,6 +104,7 @@ export interface GetFindingCommandOutput extends GetFindingResponse, __MetadataB * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class GetFindingCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/GetFindingRecommendationCommand.ts b/clients/client-accessanalyzer/src/commands/GetFindingRecommendationCommand.ts index f047e57e3f0ca..65fb3f900c90c 100644 --- a/clients/client-accessanalyzer/src/commands/GetFindingRecommendationCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetFindingRecommendationCommand.ts @@ -92,104 +92,104 @@ export interface GetFindingRecommendationCommandOutput extends GetFindingRecomme * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* - * @public + * * @example Successfully fetched finding recommendation * ```javascript * // * const input = { - * "analyzerArn": "arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a", - * "id": "finding-id", - * "maxResults": 3, - * "nextToken": "token" + * analyzerArn: "arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a", + * id: "finding-id", + * maxResults: 3, + * nextToken: "token" * }; * const command = new GetFindingRecommendationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "completedAt": "2000-01-01T00:00:01Z", - * "recommendationType": "UnusedPermissionRecommendation", - * "recommendedSteps": [ + * completedAt: "2000-01-01T00:00:01Z", + * recommendationType: "UnusedPermissionRecommendation", + * recommendedSteps: [ * { - * "unusedPermissionsRecommendedStep": { - * "existingPolicyId": "policy-id", - * "recommendedAction": "DETACH_POLICY" + * unusedPermissionsRecommendedStep: { + * existingPolicyId: "policy-id", + * recommendedAction: "DETACH_POLICY" * } * }, * { - * "unusedPermissionsRecommendedStep": { - * "existingPolicyId": "policy-id", - * "recommendedAction": "CREATE_POLICY", - * "recommendedPolicy": "policy-content" + * unusedPermissionsRecommendedStep: { + * existingPolicyId: "policy-id", + * recommendedAction: "CREATE_POLICY", + * recommendedPolicy: "policy-content" * } * } * ], - * "resourceArn": "arn:aws:iam::111122223333:role/test", - * "startedAt": "2000-01-01T00:00:00Z", - * "status": "SUCCEEDED" + * resourceArn: "arn:aws:iam::111122223333:role/test", + * startedAt: "2000-01-01T00:00:00Z", + * status: "SUCCEEDED" * } * *\/ - * // example id: example-1 * ``` * * @example In progress finding recommendation * ```javascript * // * const input = { - * "analyzerArn": "arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a", - * "id": "finding-id", - * "maxResults": 3 + * analyzerArn: "arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a", + * id: "finding-id", + * maxResults: 3 * }; * const command = new GetFindingRecommendationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "recommendationType": "UnusedPermissionRecommendation", - * "resourceArn": "arn:aws:iam::111122223333:role/test", - * "startedAt": "2000-01-01T00:00:00Z", - * "status": "IN_PROGRESS" + * recommendationType: "UnusedPermissionRecommendation", + * resourceArn: "arn:aws:iam::111122223333:role/test", + * startedAt: "2000-01-01T00:00:00Z", + * status: "IN_PROGRESS" * } * *\/ - * // example id: example-2 * ``` * * @example Failed finding recommendation * ```javascript * // * const input = { - * "analyzerArn": "arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a", - * "id": "finding-id", - * "maxResults": 3 + * analyzerArn: "arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a", + * id: "finding-id", + * maxResults: 3 * }; * const command = new GetFindingRecommendationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "completedAt": "2000-01-01T00:00:01Z", - * "error": { - * "code": "SERVICE_ERROR", - * "message": "Service error. Please try again." + * completedAt: "2000-01-01T00:00:01Z", + * error: { + * code: "SERVICE_ERROR", + * message: "Service error. Please try again." * }, - * "recommendationType": "UnusedPermissionRecommendation", - * "resourceArn": "arn:aws:iam::111122223333:role/test", - * "startedAt": "2000-01-01T00:00:00Z", - * "status": "FAILED" + * recommendationType: "UnusedPermissionRecommendation", + * resourceArn: "arn:aws:iam::111122223333:role/test", + * startedAt: "2000-01-01T00:00:00Z", + * status: "FAILED" * } * *\/ - * // example id: example-3 * ``` * * @example Failed field validation for id value * ```javascript * // * const input = { - * "analyzerArn": "arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a", - * "id": "!" + * analyzerArn: "arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a", + * id: "!" * }; * const command = new GetFindingRecommendationCommand(input); - * await client.send(command); - * // example id: example-4 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class GetFindingRecommendationCommand extends $Command .classBuilder< diff --git a/clients/client-accessanalyzer/src/commands/GetFindingV2Command.ts b/clients/client-accessanalyzer/src/commands/GetFindingV2Command.ts index b441abae1f420..08edc8628cda0 100644 --- a/clients/client-accessanalyzer/src/commands/GetFindingV2Command.ts +++ b/clients/client-accessanalyzer/src/commands/GetFindingV2Command.ts @@ -132,6 +132,7 @@ export interface GetFindingV2CommandOutput extends GetFindingV2Response, __Metad * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class GetFindingV2Command extends $Command diff --git a/clients/client-accessanalyzer/src/commands/GetFindingsStatisticsCommand.ts b/clients/client-accessanalyzer/src/commands/GetFindingsStatisticsCommand.ts index 78add96456767..ffe5b040b9002 100644 --- a/clients/client-accessanalyzer/src/commands/GetFindingsStatisticsCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetFindingsStatisticsCommand.ts @@ -106,6 +106,7 @@ export interface GetFindingsStatisticsCommandOutput extends GetFindingsStatistic * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class GetFindingsStatisticsCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/GetGeneratedPolicyCommand.ts b/clients/client-accessanalyzer/src/commands/GetGeneratedPolicyCommand.ts index 5944beee1a039..16586c5ea3aba 100644 --- a/clients/client-accessanalyzer/src/commands/GetGeneratedPolicyCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetGeneratedPolicyCommand.ts @@ -103,6 +103,7 @@ export interface GetGeneratedPolicyCommandOutput extends GetGeneratedPolicyRespo * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class GetGeneratedPolicyCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/ListAccessPreviewFindingsCommand.ts b/clients/client-accessanalyzer/src/commands/ListAccessPreviewFindingsCommand.ts index cebe079fec439..02a34d1f7c58a 100644 --- a/clients/client-accessanalyzer/src/commands/ListAccessPreviewFindingsCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListAccessPreviewFindingsCommand.ts @@ -125,6 +125,7 @@ export interface ListAccessPreviewFindingsCommandOutput extends ListAccessPrevie * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class ListAccessPreviewFindingsCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/ListAccessPreviewsCommand.ts b/clients/client-accessanalyzer/src/commands/ListAccessPreviewsCommand.ts index 5b68cab600064..e3812a88b4e7d 100644 --- a/clients/client-accessanalyzer/src/commands/ListAccessPreviewsCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListAccessPreviewsCommand.ts @@ -83,6 +83,7 @@ export interface ListAccessPreviewsCommandOutput extends ListAccessPreviewsRespo * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class ListAccessPreviewsCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/ListAnalyzedResourcesCommand.ts b/clients/client-accessanalyzer/src/commands/ListAnalyzedResourcesCommand.ts index a060f16e2b5d6..2d85a4484f61a 100644 --- a/clients/client-accessanalyzer/src/commands/ListAnalyzedResourcesCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListAnalyzedResourcesCommand.ts @@ -81,6 +81,7 @@ export interface ListAnalyzedResourcesCommandOutput extends ListAnalyzedResource * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class ListAnalyzedResourcesCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/ListAnalyzersCommand.ts b/clients/client-accessanalyzer/src/commands/ListAnalyzersCommand.ts index d96ed145144e0..b8a16e4c673bd 100644 --- a/clients/client-accessanalyzer/src/commands/ListAnalyzersCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListAnalyzersCommand.ts @@ -105,6 +105,7 @@ export interface ListAnalyzersCommandOutput extends ListAnalyzersResponse, __Met * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class ListAnalyzersCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/ListArchiveRulesCommand.ts b/clients/client-accessanalyzer/src/commands/ListArchiveRulesCommand.ts index 1b97cfe7500cf..7a21223c8a95d 100644 --- a/clients/client-accessanalyzer/src/commands/ListArchiveRulesCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListArchiveRulesCommand.ts @@ -90,6 +90,7 @@ export interface ListArchiveRulesCommandOutput extends ListArchiveRulesResponse, * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class ListArchiveRulesCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/ListFindingsCommand.ts b/clients/client-accessanalyzer/src/commands/ListFindingsCommand.ts index 6893034134a44..665cbc3313d73 100644 --- a/clients/client-accessanalyzer/src/commands/ListFindingsCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListFindingsCommand.ts @@ -127,6 +127,7 @@ export interface ListFindingsCommandOutput extends ListFindingsResponse, __Metad * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class ListFindingsCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/ListFindingsV2Command.ts b/clients/client-accessanalyzer/src/commands/ListFindingsV2Command.ts index 097d102f93a69..7653495878b48 100644 --- a/clients/client-accessanalyzer/src/commands/ListFindingsV2Command.ts +++ b/clients/client-accessanalyzer/src/commands/ListFindingsV2Command.ts @@ -108,6 +108,7 @@ export interface ListFindingsV2CommandOutput extends ListFindingsV2Response, __M * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class ListFindingsV2Command extends $Command diff --git a/clients/client-accessanalyzer/src/commands/ListPolicyGenerationsCommand.ts b/clients/client-accessanalyzer/src/commands/ListPolicyGenerationsCommand.ts index 1c15d65ab18b2..6fbb6f386be8b 100644 --- a/clients/client-accessanalyzer/src/commands/ListPolicyGenerationsCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListPolicyGenerationsCommand.ts @@ -78,6 +78,7 @@ export interface ListPolicyGenerationsCommandOutput extends ListPolicyGeneration * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class ListPolicyGenerationsCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/ListTagsForResourceCommand.ts b/clients/client-accessanalyzer/src/commands/ListTagsForResourceCommand.ts index 28803e001a364..d6328ddf9cbd6 100644 --- a/clients/client-accessanalyzer/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/StartPolicyGenerationCommand.ts b/clients/client-accessanalyzer/src/commands/StartPolicyGenerationCommand.ts index 2077e04bce154..a120075cf220f 100644 --- a/clients/client-accessanalyzer/src/commands/StartPolicyGenerationCommand.ts +++ b/clients/client-accessanalyzer/src/commands/StartPolicyGenerationCommand.ts @@ -90,6 +90,7 @@ export interface StartPolicyGenerationCommandOutput extends StartPolicyGeneratio * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class StartPolicyGenerationCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/StartResourceScanCommand.ts b/clients/client-accessanalyzer/src/commands/StartResourceScanCommand.ts index 92bd11ea2f2ee..fb50512fc77cc 100644 --- a/clients/client-accessanalyzer/src/commands/StartResourceScanCommand.ts +++ b/clients/client-accessanalyzer/src/commands/StartResourceScanCommand.ts @@ -70,6 +70,7 @@ export interface StartResourceScanCommandOutput extends __MetadataBearer {} * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class StartResourceScanCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/TagResourceCommand.ts b/clients/client-accessanalyzer/src/commands/TagResourceCommand.ts index 165670d8e749d..8e0f871e47aee 100644 --- a/clients/client-accessanalyzer/src/commands/TagResourceCommand.ts +++ b/clients/client-accessanalyzer/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/UntagResourceCommand.ts b/clients/client-accessanalyzer/src/commands/UntagResourceCommand.ts index 8f86f203074e8..5f4d032133775 100644 --- a/clients/client-accessanalyzer/src/commands/UntagResourceCommand.ts +++ b/clients/client-accessanalyzer/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/UpdateAnalyzerCommand.ts b/clients/client-accessanalyzer/src/commands/UpdateAnalyzerCommand.ts index d1791e6f0572a..c720248dd3a42 100644 --- a/clients/client-accessanalyzer/src/commands/UpdateAnalyzerCommand.ts +++ b/clients/client-accessanalyzer/src/commands/UpdateAnalyzerCommand.ts @@ -110,6 +110,7 @@ export interface UpdateAnalyzerCommandOutput extends UpdateAnalyzerResponse, __M * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class UpdateAnalyzerCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/UpdateArchiveRuleCommand.ts b/clients/client-accessanalyzer/src/commands/UpdateArchiveRuleCommand.ts index f8c196f278c23..b5ddc35f45fcb 100644 --- a/clients/client-accessanalyzer/src/commands/UpdateArchiveRuleCommand.ts +++ b/clients/client-accessanalyzer/src/commands/UpdateArchiveRuleCommand.ts @@ -84,6 +84,7 @@ export interface UpdateArchiveRuleCommandOutput extends __MetadataBearer {} * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class UpdateArchiveRuleCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/UpdateFindingsCommand.ts b/clients/client-accessanalyzer/src/commands/UpdateFindingsCommand.ts index 58f5fcb94a43f..31ae6fe59b2e1 100644 --- a/clients/client-accessanalyzer/src/commands/UpdateFindingsCommand.ts +++ b/clients/client-accessanalyzer/src/commands/UpdateFindingsCommand.ts @@ -74,6 +74,7 @@ export interface UpdateFindingsCommandOutput extends __MetadataBearer {} * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class UpdateFindingsCommand extends $Command diff --git a/clients/client-accessanalyzer/src/commands/ValidatePolicyCommand.ts b/clients/client-accessanalyzer/src/commands/ValidatePolicyCommand.ts index 0d2ed30a7bb48..abe2d0f625b4d 100644 --- a/clients/client-accessanalyzer/src/commands/ValidatePolicyCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ValidatePolicyCommand.ts @@ -109,6 +109,7 @@ export interface ValidatePolicyCommandOutput extends ValidatePolicyResponse, __M * @throws {@link AccessAnalyzerServiceException} *

Base exception class for all service exceptions from AccessAnalyzer service.

* + * * @public */ export class ValidatePolicyCommand extends $Command diff --git a/clients/client-account/src/commands/AcceptPrimaryEmailUpdateCommand.ts b/clients/client-account/src/commands/AcceptPrimaryEmailUpdateCommand.ts index fa8050cb72c9f..11f1dea9effec 100644 --- a/clients/client-account/src/commands/AcceptPrimaryEmailUpdateCommand.ts +++ b/clients/client-account/src/commands/AcceptPrimaryEmailUpdateCommand.ts @@ -85,6 +85,7 @@ export interface AcceptPrimaryEmailUpdateCommandOutput extends AcceptPrimaryEmai * @throws {@link AccountServiceException} *

Base exception class for all service exceptions from Account service.

* + * * @public */ export class AcceptPrimaryEmailUpdateCommand extends $Command diff --git a/clients/client-account/src/commands/DeleteAlternateContactCommand.ts b/clients/client-account/src/commands/DeleteAlternateContactCommand.ts index 944b54b3d2f87..c1b1d6010a72b 100644 --- a/clients/client-account/src/commands/DeleteAlternateContactCommand.ts +++ b/clients/client-account/src/commands/DeleteAlternateContactCommand.ts @@ -80,6 +80,7 @@ export interface DeleteAlternateContactCommandOutput extends __MetadataBearer {} * @throws {@link AccountServiceException} *

Base exception class for all service exceptions from Account service.

* + * * @public */ export class DeleteAlternateContactCommand extends $Command diff --git a/clients/client-account/src/commands/DisableRegionCommand.ts b/clients/client-account/src/commands/DisableRegionCommand.ts index 658a5f5f00480..a7532bd108d9b 100644 --- a/clients/client-account/src/commands/DisableRegionCommand.ts +++ b/clients/client-account/src/commands/DisableRegionCommand.ts @@ -78,6 +78,7 @@ export interface DisableRegionCommandOutput extends __MetadataBearer {} * @throws {@link AccountServiceException} *

Base exception class for all service exceptions from Account service.

* + * * @public */ export class DisableRegionCommand extends $Command diff --git a/clients/client-account/src/commands/EnableRegionCommand.ts b/clients/client-account/src/commands/EnableRegionCommand.ts index 5970d91ab8625..3abc5f45a6b9d 100644 --- a/clients/client-account/src/commands/EnableRegionCommand.ts +++ b/clients/client-account/src/commands/EnableRegionCommand.ts @@ -74,6 +74,7 @@ export interface EnableRegionCommandOutput extends __MetadataBearer {} * @throws {@link AccountServiceException} *

Base exception class for all service exceptions from Account service.

* + * * @public */ export class EnableRegionCommand extends $Command diff --git a/clients/client-account/src/commands/GetAlternateContactCommand.ts b/clients/client-account/src/commands/GetAlternateContactCommand.ts index 97d95bd19e971..cf0826a9b866b 100644 --- a/clients/client-account/src/commands/GetAlternateContactCommand.ts +++ b/clients/client-account/src/commands/GetAlternateContactCommand.ts @@ -92,6 +92,7 @@ export interface GetAlternateContactCommandOutput extends GetAlternateContactRes * @throws {@link AccountServiceException} *

Base exception class for all service exceptions from Account service.

* + * * @public */ export class GetAlternateContactCommand extends $Command diff --git a/clients/client-account/src/commands/GetContactInformationCommand.ts b/clients/client-account/src/commands/GetContactInformationCommand.ts index dea48dfd66fac..32553da989fed 100644 --- a/clients/client-account/src/commands/GetContactInformationCommand.ts +++ b/clients/client-account/src/commands/GetContactInformationCommand.ts @@ -92,6 +92,7 @@ export interface GetContactInformationCommandOutput extends GetContactInformatio * @throws {@link AccountServiceException} *

Base exception class for all service exceptions from Account service.

* + * * @public */ export class GetContactInformationCommand extends $Command diff --git a/clients/client-account/src/commands/GetPrimaryEmailCommand.ts b/clients/client-account/src/commands/GetPrimaryEmailCommand.ts index 10d324e136e85..54fcf0a95aecd 100644 --- a/clients/client-account/src/commands/GetPrimaryEmailCommand.ts +++ b/clients/client-account/src/commands/GetPrimaryEmailCommand.ts @@ -77,6 +77,7 @@ export interface GetPrimaryEmailCommandOutput extends GetPrimaryEmailResponse, _ * @throws {@link AccountServiceException} *

Base exception class for all service exceptions from Account service.

* + * * @public */ export class GetPrimaryEmailCommand extends $Command diff --git a/clients/client-account/src/commands/GetRegionOptStatusCommand.ts b/clients/client-account/src/commands/GetRegionOptStatusCommand.ts index 0fbb1d606a19c..75134b006c23d 100644 --- a/clients/client-account/src/commands/GetRegionOptStatusCommand.ts +++ b/clients/client-account/src/commands/GetRegionOptStatusCommand.ts @@ -72,6 +72,7 @@ export interface GetRegionOptStatusCommandOutput extends GetRegionOptStatusRespo * @throws {@link AccountServiceException} *

Base exception class for all service exceptions from Account service.

* + * * @public */ export class GetRegionOptStatusCommand extends $Command diff --git a/clients/client-account/src/commands/ListRegionsCommand.ts b/clients/client-account/src/commands/ListRegionsCommand.ts index 7750dbe65c63b..42bfc89759640 100644 --- a/clients/client-account/src/commands/ListRegionsCommand.ts +++ b/clients/client-account/src/commands/ListRegionsCommand.ts @@ -83,6 +83,7 @@ export interface ListRegionsCommandOutput extends ListRegionsResponse, __Metadat * @throws {@link AccountServiceException} *

Base exception class for all service exceptions from Account service.

* + * * @public */ export class ListRegionsCommand extends $Command diff --git a/clients/client-account/src/commands/PutAlternateContactCommand.ts b/clients/client-account/src/commands/PutAlternateContactCommand.ts index 451a725af6215..26f148a6b0883 100644 --- a/clients/client-account/src/commands/PutAlternateContactCommand.ts +++ b/clients/client-account/src/commands/PutAlternateContactCommand.ts @@ -81,6 +81,7 @@ export interface PutAlternateContactCommandOutput extends __MetadataBearer {} * @throws {@link AccountServiceException} *

Base exception class for all service exceptions from Account service.

* + * * @public */ export class PutAlternateContactCommand extends $Command diff --git a/clients/client-account/src/commands/PutContactInformationCommand.ts b/clients/client-account/src/commands/PutContactInformationCommand.ts index 85d62ef1a6cd7..9f2d7e02793f8 100644 --- a/clients/client-account/src/commands/PutContactInformationCommand.ts +++ b/clients/client-account/src/commands/PutContactInformationCommand.ts @@ -84,6 +84,7 @@ export interface PutContactInformationCommandOutput extends __MetadataBearer {} * @throws {@link AccountServiceException} *

Base exception class for all service exceptions from Account service.

* + * * @public */ export class PutContactInformationCommand extends $Command diff --git a/clients/client-account/src/commands/StartPrimaryEmailUpdateCommand.ts b/clients/client-account/src/commands/StartPrimaryEmailUpdateCommand.ts index af4e2988233ea..a5c50f753516b 100644 --- a/clients/client-account/src/commands/StartPrimaryEmailUpdateCommand.ts +++ b/clients/client-account/src/commands/StartPrimaryEmailUpdateCommand.ts @@ -84,6 +84,7 @@ export interface StartPrimaryEmailUpdateCommandOutput extends StartPrimaryEmailU * @throws {@link AccountServiceException} *

Base exception class for all service exceptions from Account service.

* + * * @public */ export class StartPrimaryEmailUpdateCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/CreateCertificateAuthorityAuditReportCommand.ts b/clients/client-acm-pca/src/commands/CreateCertificateAuthorityAuditReportCommand.ts index 7708dc73031fe..ba4f562c015b5 100644 --- a/clients/client-acm-pca/src/commands/CreateCertificateAuthorityAuditReportCommand.ts +++ b/clients/client-acm-pca/src/commands/CreateCertificateAuthorityAuditReportCommand.ts @@ -95,6 +95,7 @@ export interface CreateCertificateAuthorityAuditReportCommandOutput * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class CreateCertificateAuthorityAuditReportCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/CreateCertificateAuthorityCommand.ts b/clients/client-acm-pca/src/commands/CreateCertificateAuthorityCommand.ts index f5357900a147b..3619c549154ae 100644 --- a/clients/client-acm-pca/src/commands/CreateCertificateAuthorityCommand.ts +++ b/clients/client-acm-pca/src/commands/CreateCertificateAuthorityCommand.ts @@ -201,6 +201,7 @@ export interface CreateCertificateAuthorityCommandOutput extends CreateCertifica * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class CreateCertificateAuthorityCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/CreatePermissionCommand.ts b/clients/client-acm-pca/src/commands/CreatePermissionCommand.ts index 8d3c7a9205fd1..c0d82de14cf13 100644 --- a/clients/client-acm-pca/src/commands/CreatePermissionCommand.ts +++ b/clients/client-acm-pca/src/commands/CreatePermissionCommand.ts @@ -105,6 +105,7 @@ export interface CreatePermissionCommandOutput extends __MetadataBearer {} * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class CreatePermissionCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/DeleteCertificateAuthorityCommand.ts b/clients/client-acm-pca/src/commands/DeleteCertificateAuthorityCommand.ts index aead7742f37b8..e0c6560ad58b0 100644 --- a/clients/client-acm-pca/src/commands/DeleteCertificateAuthorityCommand.ts +++ b/clients/client-acm-pca/src/commands/DeleteCertificateAuthorityCommand.ts @@ -87,6 +87,7 @@ export interface DeleteCertificateAuthorityCommandOutput extends __MetadataBeare * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class DeleteCertificateAuthorityCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/DeletePermissionCommand.ts b/clients/client-acm-pca/src/commands/DeletePermissionCommand.ts index 7c85481a283b6..b099b9fb98e60 100644 --- a/clients/client-acm-pca/src/commands/DeletePermissionCommand.ts +++ b/clients/client-acm-pca/src/commands/DeletePermissionCommand.ts @@ -97,6 +97,7 @@ export interface DeletePermissionCommandOutput extends __MetadataBearer {} * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class DeletePermissionCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/DeletePolicyCommand.ts b/clients/client-acm-pca/src/commands/DeletePolicyCommand.ts index a47921f86c27d..f63f6a1bef04f 100644 --- a/clients/client-acm-pca/src/commands/DeletePolicyCommand.ts +++ b/clients/client-acm-pca/src/commands/DeletePolicyCommand.ts @@ -109,6 +109,7 @@ export interface DeletePolicyCommandOutput extends __MetadataBearer {} * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class DeletePolicyCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityAuditReportCommand.ts b/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityAuditReportCommand.ts index a6f03064665cf..295fe83b8f142 100644 --- a/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityAuditReportCommand.ts +++ b/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityAuditReportCommand.ts @@ -82,6 +82,7 @@ export interface DescribeCertificateAuthorityAuditReportCommandOutput * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class DescribeCertificateAuthorityAuditReportCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityCommand.ts b/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityCommand.ts index e522f75de5375..64c6c8c1da6a8 100644 --- a/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityCommand.ts +++ b/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityCommand.ts @@ -224,6 +224,7 @@ export interface DescribeCertificateAuthorityCommandOutput * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class DescribeCertificateAuthorityCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/GetCertificateAuthorityCertificateCommand.ts b/clients/client-acm-pca/src/commands/GetCertificateAuthorityCertificateCommand.ts index 5ed994b46d790..c5550ae5044aa 100644 --- a/clients/client-acm-pca/src/commands/GetCertificateAuthorityCertificateCommand.ts +++ b/clients/client-acm-pca/src/commands/GetCertificateAuthorityCertificateCommand.ts @@ -78,6 +78,7 @@ export interface GetCertificateAuthorityCertificateCommandOutput * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class GetCertificateAuthorityCertificateCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/GetCertificateAuthorityCsrCommand.ts b/clients/client-acm-pca/src/commands/GetCertificateAuthorityCsrCommand.ts index 15d0340576e5b..ec6d8410cc544 100644 --- a/clients/client-acm-pca/src/commands/GetCertificateAuthorityCsrCommand.ts +++ b/clients/client-acm-pca/src/commands/GetCertificateAuthorityCsrCommand.ts @@ -76,6 +76,7 @@ export interface GetCertificateAuthorityCsrCommandOutput extends GetCertificateA * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class GetCertificateAuthorityCsrCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/GetCertificateCommand.ts b/clients/client-acm-pca/src/commands/GetCertificateCommand.ts index 25346308b8a73..f6db444ea2b6a 100644 --- a/clients/client-acm-pca/src/commands/GetCertificateCommand.ts +++ b/clients/client-acm-pca/src/commands/GetCertificateCommand.ts @@ -81,6 +81,7 @@ export interface GetCertificateCommandOutput extends GetCertificateResponse, __M * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class GetCertificateCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/GetPolicyCommand.ts b/clients/client-acm-pca/src/commands/GetPolicyCommand.ts index b575ea18903d2..0521b9c69bdd9 100644 --- a/clients/client-acm-pca/src/commands/GetPolicyCommand.ts +++ b/clients/client-acm-pca/src/commands/GetPolicyCommand.ts @@ -99,6 +99,7 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class GetPolicyCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/ImportCertificateAuthorityCertificateCommand.ts b/clients/client-acm-pca/src/commands/ImportCertificateAuthorityCertificateCommand.ts index 2a23b5ff5c1a9..ded1994b95646 100644 --- a/clients/client-acm-pca/src/commands/ImportCertificateAuthorityCertificateCommand.ts +++ b/clients/client-acm-pca/src/commands/ImportCertificateAuthorityCertificateCommand.ts @@ -214,6 +214,7 @@ export interface ImportCertificateAuthorityCertificateCommandOutput extends __Me * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class ImportCertificateAuthorityCertificateCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/IssueCertificateCommand.ts b/clients/client-acm-pca/src/commands/IssueCertificateCommand.ts index 88788abf1c715..df81a4e3140cd 100644 --- a/clients/client-acm-pca/src/commands/IssueCertificateCommand.ts +++ b/clients/client-acm-pca/src/commands/IssueCertificateCommand.ts @@ -197,6 +197,7 @@ export interface IssueCertificateCommandOutput extends IssueCertificateResponse, * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class IssueCertificateCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/ListCertificateAuthoritiesCommand.ts b/clients/client-acm-pca/src/commands/ListCertificateAuthoritiesCommand.ts index baaab9c35cc8f..06d48b1ceefae 100644 --- a/clients/client-acm-pca/src/commands/ListCertificateAuthoritiesCommand.ts +++ b/clients/client-acm-pca/src/commands/ListCertificateAuthoritiesCommand.ts @@ -180,6 +180,7 @@ export interface ListCertificateAuthoritiesCommandOutput extends ListCertificate * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class ListCertificateAuthoritiesCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/ListPermissionsCommand.ts b/clients/client-acm-pca/src/commands/ListPermissionsCommand.ts index b832340e126c6..d6710595a86d1 100644 --- a/clients/client-acm-pca/src/commands/ListPermissionsCommand.ts +++ b/clients/client-acm-pca/src/commands/ListPermissionsCommand.ts @@ -114,6 +114,7 @@ export interface ListPermissionsCommandOutput extends ListPermissionsResponse, _ * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class ListPermissionsCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/ListTagsCommand.ts b/clients/client-acm-pca/src/commands/ListTagsCommand.ts index ed75bc45a2ebd..8347e89bf349d 100644 --- a/clients/client-acm-pca/src/commands/ListTagsCommand.ts +++ b/clients/client-acm-pca/src/commands/ListTagsCommand.ts @@ -80,6 +80,7 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class ListTagsCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/PutPolicyCommand.ts b/clients/client-acm-pca/src/commands/PutPolicyCommand.ts index e24324bba45f8..f996504ad8820 100644 --- a/clients/client-acm-pca/src/commands/PutPolicyCommand.ts +++ b/clients/client-acm-pca/src/commands/PutPolicyCommand.ts @@ -111,6 +111,7 @@ export interface PutPolicyCommandOutput extends __MetadataBearer {} * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class PutPolicyCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/RestoreCertificateAuthorityCommand.ts b/clients/client-acm-pca/src/commands/RestoreCertificateAuthorityCommand.ts index 5bcae01fdda6b..25d226329fe47 100644 --- a/clients/client-acm-pca/src/commands/RestoreCertificateAuthorityCommand.ts +++ b/clients/client-acm-pca/src/commands/RestoreCertificateAuthorityCommand.ts @@ -74,6 +74,7 @@ export interface RestoreCertificateAuthorityCommandOutput extends __MetadataBear * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class RestoreCertificateAuthorityCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/RevokeCertificateCommand.ts b/clients/client-acm-pca/src/commands/RevokeCertificateCommand.ts index 8303b9e0b29e0..70ebe34bd7e4a 100644 --- a/clients/client-acm-pca/src/commands/RevokeCertificateCommand.ts +++ b/clients/client-acm-pca/src/commands/RevokeCertificateCommand.ts @@ -104,6 +104,7 @@ export interface RevokeCertificateCommandOutput extends __MetadataBearer {} * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class RevokeCertificateCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/TagCertificateAuthorityCommand.ts b/clients/client-acm-pca/src/commands/TagCertificateAuthorityCommand.ts index dc4f6d2ae47b9..8efd4ea71ef11 100644 --- a/clients/client-acm-pca/src/commands/TagCertificateAuthorityCommand.ts +++ b/clients/client-acm-pca/src/commands/TagCertificateAuthorityCommand.ts @@ -92,6 +92,7 @@ export interface TagCertificateAuthorityCommandOutput extends __MetadataBearer { * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class TagCertificateAuthorityCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/UntagCertificateAuthorityCommand.ts b/clients/client-acm-pca/src/commands/UntagCertificateAuthorityCommand.ts index d9978a4f7d1b7..ec268514ee445 100644 --- a/clients/client-acm-pca/src/commands/UntagCertificateAuthorityCommand.ts +++ b/clients/client-acm-pca/src/commands/UntagCertificateAuthorityCommand.ts @@ -78,6 +78,7 @@ export interface UntagCertificateAuthorityCommandOutput extends __MetadataBearer * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class UntagCertificateAuthorityCommand extends $Command diff --git a/clients/client-acm-pca/src/commands/UpdateCertificateAuthorityCommand.ts b/clients/client-acm-pca/src/commands/UpdateCertificateAuthorityCommand.ts index ef623b0ab6ef5..44f745f89b6f1 100644 --- a/clients/client-acm-pca/src/commands/UpdateCertificateAuthorityCommand.ts +++ b/clients/client-acm-pca/src/commands/UpdateCertificateAuthorityCommand.ts @@ -103,6 +103,7 @@ export interface UpdateCertificateAuthorityCommandOutput extends __MetadataBeare * @throws {@link ACMPCAServiceException} *

Base exception class for all service exceptions from ACMPCA service.

* + * * @public */ export class UpdateCertificateAuthorityCommand extends $Command diff --git a/clients/client-acm/src/commands/AddTagsToCertificateCommand.ts b/clients/client-acm/src/commands/AddTagsToCertificateCommand.ts index 8a67be078ad93..bc77d52bd8464 100644 --- a/clients/client-acm/src/commands/AddTagsToCertificateCommand.ts +++ b/clients/client-acm/src/commands/AddTagsToCertificateCommand.ts @@ -95,6 +95,7 @@ export interface AddTagsToCertificateCommandOutput extends __MetadataBearer {} * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class AddTagsToCertificateCommand extends $Command diff --git a/clients/client-acm/src/commands/DeleteCertificateCommand.ts b/clients/client-acm/src/commands/DeleteCertificateCommand.ts index 7bf1c0661657f..632fe8293d474 100644 --- a/clients/client-acm/src/commands/DeleteCertificateCommand.ts +++ b/clients/client-acm/src/commands/DeleteCertificateCommand.ts @@ -81,6 +81,7 @@ export interface DeleteCertificateCommandOutput extends __MetadataBearer {} * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class DeleteCertificateCommand extends $Command diff --git a/clients/client-acm/src/commands/DescribeCertificateCommand.ts b/clients/client-acm/src/commands/DescribeCertificateCommand.ts index 9c45ffd87ac1c..ce2442cb79cc4 100644 --- a/clients/client-acm/src/commands/DescribeCertificateCommand.ts +++ b/clients/client-acm/src/commands/DescribeCertificateCommand.ts @@ -141,6 +141,7 @@ export interface DescribeCertificateCommandOutput extends DescribeCertificateRes * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class DescribeCertificateCommand extends $Command diff --git a/clients/client-acm/src/commands/ExportCertificateCommand.ts b/clients/client-acm/src/commands/ExportCertificateCommand.ts index c18cc8c128711..c5848730c9a40 100644 --- a/clients/client-acm/src/commands/ExportCertificateCommand.ts +++ b/clients/client-acm/src/commands/ExportCertificateCommand.ts @@ -80,6 +80,7 @@ export interface ExportCertificateCommandOutput extends ExportCertificateRespons * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class ExportCertificateCommand extends $Command diff --git a/clients/client-acm/src/commands/GetAccountConfigurationCommand.ts b/clients/client-acm/src/commands/GetAccountConfigurationCommand.ts index edcb889d5809b..3ed6277805d7b 100644 --- a/clients/client-acm/src/commands/GetAccountConfigurationCommand.ts +++ b/clients/client-acm/src/commands/GetAccountConfigurationCommand.ts @@ -61,6 +61,7 @@ export interface GetAccountConfigurationCommandOutput extends GetAccountConfigur * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class GetAccountConfigurationCommand extends $Command diff --git a/clients/client-acm/src/commands/GetCertificateCommand.ts b/clients/client-acm/src/commands/GetCertificateCommand.ts index c2f0d212dc7a4..1ac34e9c39a30 100644 --- a/clients/client-acm/src/commands/GetCertificateCommand.ts +++ b/clients/client-acm/src/commands/GetCertificateCommand.ts @@ -72,6 +72,7 @@ export interface GetCertificateCommandOutput extends GetCertificateResponse, __M * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class GetCertificateCommand extends $Command diff --git a/clients/client-acm/src/commands/ImportCertificateCommand.ts b/clients/client-acm/src/commands/ImportCertificateCommand.ts index 19436a3835072..a75a6b6567ab1 100644 --- a/clients/client-acm/src/commands/ImportCertificateCommand.ts +++ b/clients/client-acm/src/commands/ImportCertificateCommand.ts @@ -150,6 +150,7 @@ export interface ImportCertificateCommandOutput extends ImportCertificateRespons * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class ImportCertificateCommand extends $Command diff --git a/clients/client-acm/src/commands/ListCertificatesCommand.ts b/clients/client-acm/src/commands/ListCertificatesCommand.ts index 3a5221ba494f2..37721cd8b5fba 100644 --- a/clients/client-acm/src/commands/ListCertificatesCommand.ts +++ b/clients/client-acm/src/commands/ListCertificatesCommand.ts @@ -107,6 +107,7 @@ export interface ListCertificatesCommandOutput extends ListCertificatesResponse, * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class ListCertificatesCommand extends $Command diff --git a/clients/client-acm/src/commands/ListTagsForCertificateCommand.ts b/clients/client-acm/src/commands/ListTagsForCertificateCommand.ts index bec0a25ccfeeb..de2c1b15a1d2e 100644 --- a/clients/client-acm/src/commands/ListTagsForCertificateCommand.ts +++ b/clients/client-acm/src/commands/ListTagsForCertificateCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsForCertificateCommandOutput extends ListTagsForCertific * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class ListTagsForCertificateCommand extends $Command diff --git a/clients/client-acm/src/commands/PutAccountConfigurationCommand.ts b/clients/client-acm/src/commands/PutAccountConfigurationCommand.ts index c07a5209575cd..9af67f6cb8bbd 100644 --- a/clients/client-acm/src/commands/PutAccountConfigurationCommand.ts +++ b/clients/client-acm/src/commands/PutAccountConfigurationCommand.ts @@ -74,6 +74,7 @@ export interface PutAccountConfigurationCommandOutput extends __MetadataBearer { * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class PutAccountConfigurationCommand extends $Command diff --git a/clients/client-acm/src/commands/RemoveTagsFromCertificateCommand.ts b/clients/client-acm/src/commands/RemoveTagsFromCertificateCommand.ts index 7bf873fbdff91..5e2a89eab3f79 100644 --- a/clients/client-acm/src/commands/RemoveTagsFromCertificateCommand.ts +++ b/clients/client-acm/src/commands/RemoveTagsFromCertificateCommand.ts @@ -84,6 +84,7 @@ export interface RemoveTagsFromCertificateCommandOutput extends __MetadataBearer * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class RemoveTagsFromCertificateCommand extends $Command diff --git a/clients/client-acm/src/commands/RenewCertificateCommand.ts b/clients/client-acm/src/commands/RenewCertificateCommand.ts index e16269d3e072f..f60d33d0ba49f 100644 --- a/clients/client-acm/src/commands/RenewCertificateCommand.ts +++ b/clients/client-acm/src/commands/RenewCertificateCommand.ts @@ -64,6 +64,7 @@ export interface RenewCertificateCommandOutput extends __MetadataBearer {} * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class RenewCertificateCommand extends $Command diff --git a/clients/client-acm/src/commands/RequestCertificateCommand.ts b/clients/client-acm/src/commands/RequestCertificateCommand.ts index 5ea5c192c76e4..341a7257ed869 100644 --- a/clients/client-acm/src/commands/RequestCertificateCommand.ts +++ b/clients/client-acm/src/commands/RequestCertificateCommand.ts @@ -115,6 +115,7 @@ export interface RequestCertificateCommandOutput extends RequestCertificateRespo * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class RequestCertificateCommand extends $Command diff --git a/clients/client-acm/src/commands/ResendValidationEmailCommand.ts b/clients/client-acm/src/commands/ResendValidationEmailCommand.ts index 457e4a1545337..f6b48efecdaf7 100644 --- a/clients/client-acm/src/commands/ResendValidationEmailCommand.ts +++ b/clients/client-acm/src/commands/ResendValidationEmailCommand.ts @@ -77,6 +77,7 @@ export interface ResendValidationEmailCommandOutput extends __MetadataBearer {} * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class ResendValidationEmailCommand extends $Command diff --git a/clients/client-acm/src/commands/UpdateCertificateOptionsCommand.ts b/clients/client-acm/src/commands/UpdateCertificateOptionsCommand.ts index 345b57d35a236..fa2da11359ace 100644 --- a/clients/client-acm/src/commands/UpdateCertificateOptionsCommand.ts +++ b/clients/client-acm/src/commands/UpdateCertificateOptionsCommand.ts @@ -72,6 +72,7 @@ export interface UpdateCertificateOptionsCommandOutput extends __MetadataBearer * @throws {@link ACMServiceException} *

Base exception class for all service exceptions from ACM service.

* + * * @public */ export class UpdateCertificateOptionsCommand extends $Command diff --git a/clients/client-amp/src/commands/CreateAlertManagerDefinitionCommand.ts b/clients/client-amp/src/commands/CreateAlertManagerDefinitionCommand.ts index aabbb034e5947..ad67abb609b7f 100644 --- a/clients/client-amp/src/commands/CreateAlertManagerDefinitionCommand.ts +++ b/clients/client-amp/src/commands/CreateAlertManagerDefinitionCommand.ts @@ -90,6 +90,7 @@ export interface CreateAlertManagerDefinitionCommandOutput * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class CreateAlertManagerDefinitionCommand extends $Command diff --git a/clients/client-amp/src/commands/CreateLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/CreateLoggingConfigurationCommand.ts index 18b7e8e846af9..350615d84657f 100644 --- a/clients/client-amp/src/commands/CreateLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/CreateLoggingConfigurationCommand.ts @@ -75,6 +75,7 @@ export interface CreateLoggingConfigurationCommandOutput extends CreateLoggingCo * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class CreateLoggingConfigurationCommand extends $Command diff --git a/clients/client-amp/src/commands/CreateRuleGroupsNamespaceCommand.ts b/clients/client-amp/src/commands/CreateRuleGroupsNamespaceCommand.ts index 5b071f11e87e4..331f64ab69bc2 100644 --- a/clients/client-amp/src/commands/CreateRuleGroupsNamespaceCommand.ts +++ b/clients/client-amp/src/commands/CreateRuleGroupsNamespaceCommand.ts @@ -95,6 +95,7 @@ export interface CreateRuleGroupsNamespaceCommandOutput extends CreateRuleGroups * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class CreateRuleGroupsNamespaceCommand extends $Command diff --git a/clients/client-amp/src/commands/CreateScraperCommand.ts b/clients/client-amp/src/commands/CreateScraperCommand.ts index f64c046380c2c..a7cc31cd7f472 100644 --- a/clients/client-amp/src/commands/CreateScraperCommand.ts +++ b/clients/client-amp/src/commands/CreateScraperCommand.ts @@ -128,6 +128,52 @@ export interface CreateScraperCommandOutput extends CreateScraperResponse, __Met * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * + * @example CreateScraper with optional alias input, optional clientToken input, and one set of tags + * ```javascript + * // + * const input = { + * alias: "alias", + * clientToken: "token", + * destination: { + * ampConfiguration: { + * workspaceArn: "arn:aws:aps:us-west-2:123456789012:workspace/ws-ogh2u499-ce12-hg89-v6c7-123412341234" + * } + * }, + * scrapeConfiguration: { + * configurationBlob: "blob" + * }, + * source: { + * eksConfiguration: { + * clusterArn: "arn:aws:eks:us-west-2:123456789012:cluster/example", + * securityGroupIds: [ + * "sg-abc123" + * ], + * subnetIds: [ + * "subnet-abc123" + * ] + * } + * }, + * tags: { + * exampleTag: "exampleValue" + * } + * }; + * const command = new CreateScraperCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:aps:us-west-2:123456789012:scraper/scraper-123", + * scraperId: "scraper-123", + * status: { + * statusCode: "CREATING" + * }, + * tags: { + * exampleTag: "exampleValue" + * } + * } + * *\/ + * ``` + * * @public */ export class CreateScraperCommand extends $Command diff --git a/clients/client-amp/src/commands/CreateWorkspaceCommand.ts b/clients/client-amp/src/commands/CreateWorkspaceCommand.ts index 5306dd4174809..000138519cff7 100644 --- a/clients/client-amp/src/commands/CreateWorkspaceCommand.ts +++ b/clients/client-amp/src/commands/CreateWorkspaceCommand.ts @@ -89,6 +89,7 @@ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _ * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class CreateWorkspaceCommand extends $Command diff --git a/clients/client-amp/src/commands/DeleteAlertManagerDefinitionCommand.ts b/clients/client-amp/src/commands/DeleteAlertManagerDefinitionCommand.ts index f4aabd2323cb1..07e281e3a1a0f 100644 --- a/clients/client-amp/src/commands/DeleteAlertManagerDefinitionCommand.ts +++ b/clients/client-amp/src/commands/DeleteAlertManagerDefinitionCommand.ts @@ -76,6 +76,7 @@ export interface DeleteAlertManagerDefinitionCommandOutput extends __MetadataBea * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class DeleteAlertManagerDefinitionCommand extends $Command diff --git a/clients/client-amp/src/commands/DeleteLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/DeleteLoggingConfigurationCommand.ts index 9a558e4286ad3..0dbe23aba6816 100644 --- a/clients/client-amp/src/commands/DeleteLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/DeleteLoggingConfigurationCommand.ts @@ -70,6 +70,7 @@ export interface DeleteLoggingConfigurationCommandOutput extends __MetadataBeare * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class DeleteLoggingConfigurationCommand extends $Command diff --git a/clients/client-amp/src/commands/DeleteRuleGroupsNamespaceCommand.ts b/clients/client-amp/src/commands/DeleteRuleGroupsNamespaceCommand.ts index d0123d89a9df0..59496678de986 100644 --- a/clients/client-amp/src/commands/DeleteRuleGroupsNamespaceCommand.ts +++ b/clients/client-amp/src/commands/DeleteRuleGroupsNamespaceCommand.ts @@ -74,6 +74,7 @@ export interface DeleteRuleGroupsNamespaceCommandOutput extends __MetadataBearer * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class DeleteRuleGroupsNamespaceCommand extends $Command diff --git a/clients/client-amp/src/commands/DeleteScraperCommand.ts b/clients/client-amp/src/commands/DeleteScraperCommand.ts index e0eacd57cf590..bee95807e5047 100644 --- a/clients/client-amp/src/commands/DeleteScraperCommand.ts +++ b/clients/client-amp/src/commands/DeleteScraperCommand.ts @@ -79,6 +79,26 @@ export interface DeleteScraperCommandOutput extends DeleteScraperResponse, __Met * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * + * @example DeleteScraper with optional clientToken input + * ```javascript + * // + * const input = { + * clientToken: "token", + * scraperId: "scraper-123" + * }; + * const command = new DeleteScraperCommand(input); + * const response = await client.send(command); + * /* response is + * { + * scraperId: "scraper-123", + * status: { + * statusCode: "DELETING" + * } + * } + * *\/ + * ``` + * * @public */ export class DeleteScraperCommand extends $Command diff --git a/clients/client-amp/src/commands/DeleteWorkspaceCommand.ts b/clients/client-amp/src/commands/DeleteWorkspaceCommand.ts index 2628699e1f5b7..76b5d33db1d95 100644 --- a/clients/client-amp/src/commands/DeleteWorkspaceCommand.ts +++ b/clients/client-amp/src/commands/DeleteWorkspaceCommand.ts @@ -77,6 +77,7 @@ export interface DeleteWorkspaceCommandOutput extends __MetadataBearer {} * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class DeleteWorkspaceCommand extends $Command diff --git a/clients/client-amp/src/commands/DescribeAlertManagerDefinitionCommand.ts b/clients/client-amp/src/commands/DescribeAlertManagerDefinitionCommand.ts index 3e879e8de466c..bf8f6da5323d4 100644 --- a/clients/client-amp/src/commands/DescribeAlertManagerDefinitionCommand.ts +++ b/clients/client-amp/src/commands/DescribeAlertManagerDefinitionCommand.ts @@ -85,6 +85,7 @@ export interface DescribeAlertManagerDefinitionCommandOutput * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class DescribeAlertManagerDefinitionCommand extends $Command diff --git a/clients/client-amp/src/commands/DescribeLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/DescribeLoggingConfigurationCommand.ts index 80e4365cb18d6..c634c2a99b8c0 100644 --- a/clients/client-amp/src/commands/DescribeLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/DescribeLoggingConfigurationCommand.ts @@ -83,6 +83,7 @@ export interface DescribeLoggingConfigurationCommandOutput * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class DescribeLoggingConfigurationCommand extends $Command diff --git a/clients/client-amp/src/commands/DescribeRuleGroupsNamespaceCommand.ts b/clients/client-amp/src/commands/DescribeRuleGroupsNamespaceCommand.ts index 73a052b0091f0..88494e94d37a6 100644 --- a/clients/client-amp/src/commands/DescribeRuleGroupsNamespaceCommand.ts +++ b/clients/client-amp/src/commands/DescribeRuleGroupsNamespaceCommand.ts @@ -91,6 +91,7 @@ export interface DescribeRuleGroupsNamespaceCommandOutput * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class DescribeRuleGroupsNamespaceCommand extends $Command diff --git a/clients/client-amp/src/commands/DescribeScraperCommand.ts b/clients/client-amp/src/commands/DescribeScraperCommand.ts index ee575af8aeba5..1aba8a87abe48 100644 --- a/clients/client-amp/src/commands/DescribeScraperCommand.ts +++ b/clients/client-amp/src/commands/DescribeScraperCommand.ts @@ -109,6 +109,54 @@ export interface DescribeScraperCommandOutput extends DescribeScraperResponse, _ * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * + * @example DescribeScraper, with no statusReason to report + * ```javascript + * // + * const input = { + * scraperId: "scraper-123" + * }; + * const command = new DescribeScraperCommand(input); + * const response = await client.send(command); + * /* response is + * { + * scraper: { + * alias: "alias", + * arn: "arn:aws:aps:us-west-2:123456789012:scraper/scraper-123", + * createdAt: "2023-01-01T00:00:00Z", + * destination: { + * ampConfiguration: { + * workspaceArn: "arn:aws:aps:us-west-2:123456789012:workspace/ws-ogh2u499-ce12-hg89-v6c7-123412341234" + * } + * }, + * lastModifiedAt: "2020-01-02T00:00:00Z", + * roleArn: "arn:aws:iam::123456789012:role/exampleRole", + * scrapeConfiguration: { + * configurationBlob: "blob" + * }, + * scraperId: "scraper-123", + * source: { + * eksConfiguration: { + * clusterArn: "arn:aws:eks:us-west-2:123456789012:cluster/example", + * securityGroupIds: [ + * "sg-abc123" + * ], + * subnetIds: [ + * "subnet-abc123" + * ] + * } + * }, + * status: { + * statusCode: "ACTIVE" + * }, + * tags: { + * exampleTag: "exampleValue" + * } + * } + * } + * *\/ + * ``` + * * @public */ export class DescribeScraperCommand extends $Command diff --git a/clients/client-amp/src/commands/DescribeWorkspaceCommand.ts b/clients/client-amp/src/commands/DescribeWorkspaceCommand.ts index 3f6c8fb107594..4f8c45df2f0ac 100644 --- a/clients/client-amp/src/commands/DescribeWorkspaceCommand.ts +++ b/clients/client-amp/src/commands/DescribeWorkspaceCommand.ts @@ -84,6 +84,7 @@ export interface DescribeWorkspaceCommandOutput extends DescribeWorkspaceRespons * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class DescribeWorkspaceCommand extends $Command diff --git a/clients/client-amp/src/commands/GetDefaultScraperConfigurationCommand.ts b/clients/client-amp/src/commands/GetDefaultScraperConfigurationCommand.ts index 20e3416337d9f..4ba1dd348fa26 100644 --- a/clients/client-amp/src/commands/GetDefaultScraperConfigurationCommand.ts +++ b/clients/client-amp/src/commands/GetDefaultScraperConfigurationCommand.ts @@ -68,6 +68,20 @@ export interface GetDefaultScraperConfigurationCommandOutput * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * + * @example GetDefaultScraperConfiguration + * ```javascript + * // + * const input = { /* empty *\/ }; + * const command = new GetDefaultScraperConfigurationCommand(input); + * const response = await client.send(command); + * /* response is + * { + * configuration: "blob" + * } + * *\/ + * ``` + * * @public */ export class GetDefaultScraperConfigurationCommand extends $Command diff --git a/clients/client-amp/src/commands/ListRuleGroupsNamespacesCommand.ts b/clients/client-amp/src/commands/ListRuleGroupsNamespacesCommand.ts index c8b17553969ad..7c7ad2079b19e 100644 --- a/clients/client-amp/src/commands/ListRuleGroupsNamespacesCommand.ts +++ b/clients/client-amp/src/commands/ListRuleGroupsNamespacesCommand.ts @@ -89,6 +89,7 @@ export interface ListRuleGroupsNamespacesCommandOutput extends ListRuleGroupsNam * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class ListRuleGroupsNamespacesCommand extends $Command diff --git a/clients/client-amp/src/commands/ListScrapersCommand.ts b/clients/client-amp/src/commands/ListScrapersCommand.ts index aed93c1c6aae5..54c5ca3e05a03 100644 --- a/clients/client-amp/src/commands/ListScrapersCommand.ts +++ b/clients/client-amp/src/commands/ListScrapersCommand.ts @@ -113,6 +113,140 @@ export interface ListScrapersCommandOutput extends ListScrapersResponse, __Metad * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * + * @example ListScrapers, with a max result of 2, using a pagination token from a previous call to ListScrapers + * ```javascript + * // + * const input = { + * maxResults: 2, + * nextToken: "previouslyGeneratedToken" + * }; + * const command = new ListScrapersCommand(input); + * const response = await client.send(command); + * /* response is + * { + * scrapers: [ + * { + * alias: "alias1", + * arn: "arn:aws:aps:us-west-2:123456789012:scraper/scraper-123", + * createdAt: "2023-01-01T00:00:00Z", + * destination: { + * ampConfiguration: { + * workspaceArn: "arn:aws:aps:us-west-2:123456789012:workspace/ws-ogh2u499-ce12-hg89-v6c7-123412341234" + * } + * }, + * lastModifiedAt: "2020-01-02T00:00:00Z", + * roleArn: "arn:aws:iam::123456789012:role/exampleRole", + * scraperId: "scraper-123", + * source: { + * eksConfiguration: { + * clusterArn: "arn:aws:eks:us-west-2:123456789012:cluster/example1", + * securityGroupIds: [ + * "sg-abc123" + * ], + * subnetIds: [ + * "subnet-abc123" + * ] + * } + * }, + * status: { + * statusCode: "ACTIVE" + * }, + * tags: { + * exampleTag: "exampleValue" + * } + * }, + * { + * alias: "alias2", + * arn: "arn:aws:aps:us-west-2:123456789012:scraper/scraper-456", + * createdAt: "2023-01-01T00:00:00Z", + * destination: { + * ampConfiguration: { + * workspaceArn: "arn:aws:aps:us-west-2:123456789012:workspace/ws-ogh2u499-ce12-hg89-v6c7-123412341234" + * } + * }, + * lastModifiedAt: "2020-01-02T00:00:00Z", + * roleArn: "arn:aws:iam::123456789012:role/exampleRole", + * scraperId: "scraper-456", + * source: { + * eksConfiguration: { + * clusterArn: "arn:aws:eks:us-west-2:123456789012:cluster/example2", + * securityGroupIds: [ + * "sg-abc456" + * ], + * subnetIds: [ + * "subnet-abc456" + * ] + * } + * }, + * status: { + * statusCode: "CREATING" + * }, + * tags: { + * exampleTag: "exampleValue" + * } + * } + * ] + * } + * *\/ + * ``` + * + * @example ListScrapers, with filters + * ```javascript + * // + * const input = { + * filters: { + * alias: [ + * "alias1" + * ], + * sourceArn: [ + * "arn:aws:eks:us-west-2:123456789012:cluster/example1" + * ], + * status: [ + * "ACTIVE" + * ] + * } + * }; + * const command = new ListScrapersCommand(input); + * const response = await client.send(command); + * /* response is + * { + * scrapers: [ + * { + * alias: "alias1", + * arn: "arn:aws:aps:us-west-2:123456789012:scraper/scraper-123", + * createdAt: "2023-01-01T00:00:00Z", + * destination: { + * ampConfiguration: { + * workspaceArn: "arn:aws:aps:us-west-2:123456789012:workspace/ws-ogh2u499-ce12-hg89-v6c7-123412341234" + * } + * }, + * lastModifiedAt: "2020-01-02T00:00:00Z", + * roleArn: "arn:aws:iam::123456789012:role/exampleRole", + * scraperId: "scraper-123", + * source: { + * eksConfiguration: { + * clusterArn: "arn:aws:eks:us-west-2:123456789012:cluster/example1", + * securityGroupIds: [ + * "sg-abc123" + * ], + * subnetIds: [ + * "subnet-abc123" + * ] + * } + * }, + * status: { + * statusCode: "ACTIVE" + * }, + * tags: { + * exampleTag: "exampleValue" + * } + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListScrapersCommand extends $Command diff --git a/clients/client-amp/src/commands/ListTagsForResourceCommand.ts b/clients/client-amp/src/commands/ListTagsForResourceCommand.ts index 410db237fd9bb..1af8a04f2b04d 100644 --- a/clients/client-amp/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-amp/src/commands/ListTagsForResourceCommand.ts @@ -75,6 +75,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-amp/src/commands/ListWorkspacesCommand.ts b/clients/client-amp/src/commands/ListWorkspacesCommand.ts index de332ad4f95ef..ef3b6c5812770 100644 --- a/clients/client-amp/src/commands/ListWorkspacesCommand.ts +++ b/clients/client-amp/src/commands/ListWorkspacesCommand.ts @@ -86,6 +86,7 @@ export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __M * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class ListWorkspacesCommand extends $Command diff --git a/clients/client-amp/src/commands/PutAlertManagerDefinitionCommand.ts b/clients/client-amp/src/commands/PutAlertManagerDefinitionCommand.ts index 357c9ba1be4c0..2e36e7931e699 100644 --- a/clients/client-amp/src/commands/PutAlertManagerDefinitionCommand.ts +++ b/clients/client-amp/src/commands/PutAlertManagerDefinitionCommand.ts @@ -84,6 +84,7 @@ export interface PutAlertManagerDefinitionCommandOutput extends PutAlertManagerD * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class PutAlertManagerDefinitionCommand extends $Command diff --git a/clients/client-amp/src/commands/PutRuleGroupsNamespaceCommand.ts b/clients/client-amp/src/commands/PutRuleGroupsNamespaceCommand.ts index 21f65203c6478..d3ccb31d769b4 100644 --- a/clients/client-amp/src/commands/PutRuleGroupsNamespaceCommand.ts +++ b/clients/client-amp/src/commands/PutRuleGroupsNamespaceCommand.ts @@ -94,6 +94,7 @@ export interface PutRuleGroupsNamespaceCommandOutput extends PutRuleGroupsNamesp * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class PutRuleGroupsNamespaceCommand extends $Command diff --git a/clients/client-amp/src/commands/TagResourceCommand.ts b/clients/client-amp/src/commands/TagResourceCommand.ts index 91a899887bde5..94204541a3c7d 100644 --- a/clients/client-amp/src/commands/TagResourceCommand.ts +++ b/clients/client-amp/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-amp/src/commands/UntagResourceCommand.ts b/clients/client-amp/src/commands/UntagResourceCommand.ts index 00ecf1c6cdeb1..2c8015f2eba30 100644 --- a/clients/client-amp/src/commands/UntagResourceCommand.ts +++ b/clients/client-amp/src/commands/UntagResourceCommand.ts @@ -73,6 +73,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-amp/src/commands/UpdateLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/UpdateLoggingConfigurationCommand.ts index f86c8eff5cd21..5eab8dfb713d7 100644 --- a/clients/client-amp/src/commands/UpdateLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/UpdateLoggingConfigurationCommand.ts @@ -77,6 +77,7 @@ export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingCo * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class UpdateLoggingConfigurationCommand extends $Command diff --git a/clients/client-amp/src/commands/UpdateScraperCommand.ts b/clients/client-amp/src/commands/UpdateScraperCommand.ts index afb19baff2e1b..a59e3b5ef8e2c 100644 --- a/clients/client-amp/src/commands/UpdateScraperCommand.ts +++ b/clients/client-amp/src/commands/UpdateScraperCommand.ts @@ -101,6 +101,39 @@ export interface UpdateScraperCommandOutput extends UpdateScraperResponse, __Met * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * + * @example UpdateScraper with all optional parameters + * ```javascript + * // + * const input = { + * alias: "alias-update", + * clientToken: "token", + * destination: { + * ampConfiguration: { + * workspaceArn: "arn:aws:aps:us-west-2:123456789012:workspace/ws-ogh2u499-ce12-hg89-v6c7-123412341234-update" + * } + * }, + * scrapeConfiguration: { + * configurationBlob: "blob-update" + * }, + * scraperId: "scraper-123" + * }; + * const command = new UpdateScraperCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:aps:us-west-2:123456789012:scraper/scraper-123", + * scraperId: "scraper-123", + * status: { + * statusCode: "UPDATING" + * }, + * tags: { + * exampleTag: "exampleValue" + * } + * } + * *\/ + * ``` + * * @public */ export class UpdateScraperCommand extends $Command diff --git a/clients/client-amp/src/commands/UpdateWorkspaceAliasCommand.ts b/clients/client-amp/src/commands/UpdateWorkspaceAliasCommand.ts index 12b1376026812..3f7e5d9929bb8 100644 --- a/clients/client-amp/src/commands/UpdateWorkspaceAliasCommand.ts +++ b/clients/client-amp/src/commands/UpdateWorkspaceAliasCommand.ts @@ -77,6 +77,7 @@ export interface UpdateWorkspaceAliasCommandOutput extends __MetadataBearer {} * @throws {@link AmpServiceException} *

Base exception class for all service exceptions from Amp service.

* + * * @public */ export class UpdateWorkspaceAliasCommand extends $Command diff --git a/clients/client-amplify/src/commands/CreateAppCommand.ts b/clients/client-amplify/src/commands/CreateAppCommand.ts index a06df03881636..89da6aab16bba 100644 --- a/clients/client-amplify/src/commands/CreateAppCommand.ts +++ b/clients/client-amplify/src/commands/CreateAppCommand.ts @@ -189,6 +189,7 @@ export interface CreateAppCommandOutput extends CreateAppResult, __MetadataBeare * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class CreateAppCommand extends $Command diff --git a/clients/client-amplify/src/commands/CreateBackendEnvironmentCommand.ts b/clients/client-amplify/src/commands/CreateBackendEnvironmentCommand.ts index a2de8c564e7a0..ceeb572665237 100644 --- a/clients/client-amplify/src/commands/CreateBackendEnvironmentCommand.ts +++ b/clients/client-amplify/src/commands/CreateBackendEnvironmentCommand.ts @@ -86,6 +86,7 @@ export interface CreateBackendEnvironmentCommandOutput extends CreateBackendEnvi * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class CreateBackendEnvironmentCommand extends $Command diff --git a/clients/client-amplify/src/commands/CreateBranchCommand.ts b/clients/client-amplify/src/commands/CreateBranchCommand.ts index 89f41417d00a2..6550a8cdd365e 100644 --- a/clients/client-amplify/src/commands/CreateBranchCommand.ts +++ b/clients/client-amplify/src/commands/CreateBranchCommand.ts @@ -145,6 +145,7 @@ export interface CreateBranchCommandOutput extends CreateBranchResult, __Metadat * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class CreateBranchCommand extends $Command diff --git a/clients/client-amplify/src/commands/CreateDeploymentCommand.ts b/clients/client-amplify/src/commands/CreateDeploymentCommand.ts index 89a0e3e1061b5..417ed03fb01ce 100644 --- a/clients/client-amplify/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-amplify/src/commands/CreateDeploymentCommand.ts @@ -80,6 +80,7 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResult, _ * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class CreateDeploymentCommand extends $Command diff --git a/clients/client-amplify/src/commands/CreateDomainAssociationCommand.ts b/clients/client-amplify/src/commands/CreateDomainAssociationCommand.ts index fe12c257ad357..efbb0bd7decb7 100644 --- a/clients/client-amplify/src/commands/CreateDomainAssociationCommand.ts +++ b/clients/client-amplify/src/commands/CreateDomainAssociationCommand.ts @@ -117,6 +117,7 @@ export interface CreateDomainAssociationCommandOutput extends CreateDomainAssoci * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class CreateDomainAssociationCommand extends $Command diff --git a/clients/client-amplify/src/commands/CreateWebhookCommand.ts b/clients/client-amplify/src/commands/CreateWebhookCommand.ts index b77392b1c8daa..718f62ac7015a 100644 --- a/clients/client-amplify/src/commands/CreateWebhookCommand.ts +++ b/clients/client-amplify/src/commands/CreateWebhookCommand.ts @@ -84,6 +84,7 @@ export interface CreateWebhookCommandOutput extends CreateWebhookResult, __Metad * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class CreateWebhookCommand extends $Command diff --git a/clients/client-amplify/src/commands/DeleteAppCommand.ts b/clients/client-amplify/src/commands/DeleteAppCommand.ts index dcc846a939c0b..39539a2eeff9c 100644 --- a/clients/client-amplify/src/commands/DeleteAppCommand.ts +++ b/clients/client-amplify/src/commands/DeleteAppCommand.ts @@ -136,6 +136,7 @@ export interface DeleteAppCommandOutput extends DeleteAppResult, __MetadataBeare * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class DeleteAppCommand extends $Command diff --git a/clients/client-amplify/src/commands/DeleteBackendEnvironmentCommand.ts b/clients/client-amplify/src/commands/DeleteBackendEnvironmentCommand.ts index b9394cc564327..8731d6c029571 100644 --- a/clients/client-amplify/src/commands/DeleteBackendEnvironmentCommand.ts +++ b/clients/client-amplify/src/commands/DeleteBackendEnvironmentCommand.ts @@ -84,6 +84,7 @@ export interface DeleteBackendEnvironmentCommandOutput extends DeleteBackendEnvi * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class DeleteBackendEnvironmentCommand extends $Command diff --git a/clients/client-amplify/src/commands/DeleteBranchCommand.ts b/clients/client-amplify/src/commands/DeleteBranchCommand.ts index 9fbbee365aa24..228014d5c434b 100644 --- a/clients/client-amplify/src/commands/DeleteBranchCommand.ts +++ b/clients/client-amplify/src/commands/DeleteBranchCommand.ts @@ -112,6 +112,7 @@ export interface DeleteBranchCommandOutput extends DeleteBranchResult, __Metadat * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class DeleteBranchCommand extends $Command diff --git a/clients/client-amplify/src/commands/DeleteDomainAssociationCommand.ts b/clients/client-amplify/src/commands/DeleteDomainAssociationCommand.ts index dce671950194f..dce06503082fa 100644 --- a/clients/client-amplify/src/commands/DeleteDomainAssociationCommand.ts +++ b/clients/client-amplify/src/commands/DeleteDomainAssociationCommand.ts @@ -98,6 +98,7 @@ export interface DeleteDomainAssociationCommandOutput extends DeleteDomainAssoci * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class DeleteDomainAssociationCommand extends $Command diff --git a/clients/client-amplify/src/commands/DeleteJobCommand.ts b/clients/client-amplify/src/commands/DeleteJobCommand.ts index c8f0c74ca9981..006c7bbaff78a 100644 --- a/clients/client-amplify/src/commands/DeleteJobCommand.ts +++ b/clients/client-amplify/src/commands/DeleteJobCommand.ts @@ -84,6 +84,7 @@ export interface DeleteJobCommandOutput extends DeleteJobResult, __MetadataBeare * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class DeleteJobCommand extends $Command diff --git a/clients/client-amplify/src/commands/DeleteWebhookCommand.ts b/clients/client-amplify/src/commands/DeleteWebhookCommand.ts index 154178e4ecc4c..03fc53d080ac9 100644 --- a/clients/client-amplify/src/commands/DeleteWebhookCommand.ts +++ b/clients/client-amplify/src/commands/DeleteWebhookCommand.ts @@ -79,6 +79,7 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookResult, __Metad * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class DeleteWebhookCommand extends $Command diff --git a/clients/client-amplify/src/commands/GenerateAccessLogsCommand.ts b/clients/client-amplify/src/commands/GenerateAccessLogsCommand.ts index b0c5bf6e41b50..6d521b7a03cef 100644 --- a/clients/client-amplify/src/commands/GenerateAccessLogsCommand.ts +++ b/clients/client-amplify/src/commands/GenerateAccessLogsCommand.ts @@ -71,6 +71,7 @@ export interface GenerateAccessLogsCommandOutput extends GenerateAccessLogsResul * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class GenerateAccessLogsCommand extends $Command diff --git a/clients/client-amplify/src/commands/GetAppCommand.ts b/clients/client-amplify/src/commands/GetAppCommand.ts index ce3373137287c..a8cbbf6e79b61 100644 --- a/clients/client-amplify/src/commands/GetAppCommand.ts +++ b/clients/client-amplify/src/commands/GetAppCommand.ts @@ -133,6 +133,7 @@ export interface GetAppCommandOutput extends GetAppResult, __MetadataBearer {} * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class GetAppCommand extends $Command diff --git a/clients/client-amplify/src/commands/GetArtifactUrlCommand.ts b/clients/client-amplify/src/commands/GetArtifactUrlCommand.ts index 472427c7cfda0..616936bb4e94a 100644 --- a/clients/client-amplify/src/commands/GetArtifactUrlCommand.ts +++ b/clients/client-amplify/src/commands/GetArtifactUrlCommand.ts @@ -71,6 +71,7 @@ export interface GetArtifactUrlCommandOutput extends GetArtifactUrlResult, __Met * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class GetArtifactUrlCommand extends $Command diff --git a/clients/client-amplify/src/commands/GetBackendEnvironmentCommand.ts b/clients/client-amplify/src/commands/GetBackendEnvironmentCommand.ts index 0e398585e859e..f40764bf6f538 100644 --- a/clients/client-amplify/src/commands/GetBackendEnvironmentCommand.ts +++ b/clients/client-amplify/src/commands/GetBackendEnvironmentCommand.ts @@ -81,6 +81,7 @@ export interface GetBackendEnvironmentCommandOutput extends GetBackendEnvironmen * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class GetBackendEnvironmentCommand extends $Command diff --git a/clients/client-amplify/src/commands/GetBranchCommand.ts b/clients/client-amplify/src/commands/GetBranchCommand.ts index fefb88e4ecf31..b5bd39e93f1ce 100644 --- a/clients/client-amplify/src/commands/GetBranchCommand.ts +++ b/clients/client-amplify/src/commands/GetBranchCommand.ts @@ -109,6 +109,7 @@ export interface GetBranchCommandOutput extends GetBranchResult, __MetadataBeare * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class GetBranchCommand extends $Command diff --git a/clients/client-amplify/src/commands/GetDomainAssociationCommand.ts b/clients/client-amplify/src/commands/GetDomainAssociationCommand.ts index 48f64659f119e..d05834b57ed31 100644 --- a/clients/client-amplify/src/commands/GetDomainAssociationCommand.ts +++ b/clients/client-amplify/src/commands/GetDomainAssociationCommand.ts @@ -95,6 +95,7 @@ export interface GetDomainAssociationCommandOutput extends GetDomainAssociationR * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class GetDomainAssociationCommand extends $Command diff --git a/clients/client-amplify/src/commands/GetJobCommand.ts b/clients/client-amplify/src/commands/GetJobCommand.ts index 90b6fbbcfb18b..738e8c953c07d 100644 --- a/clients/client-amplify/src/commands/GetJobCommand.ts +++ b/clients/client-amplify/src/commands/GetJobCommand.ts @@ -103,6 +103,7 @@ export interface GetJobCommandOutput extends GetJobResult, __MetadataBearer {} * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class GetJobCommand extends $Command diff --git a/clients/client-amplify/src/commands/GetWebhookCommand.ts b/clients/client-amplify/src/commands/GetWebhookCommand.ts index 453afeac5e3d1..1cf789ccb96f2 100644 --- a/clients/client-amplify/src/commands/GetWebhookCommand.ts +++ b/clients/client-amplify/src/commands/GetWebhookCommand.ts @@ -79,6 +79,7 @@ export interface GetWebhookCommandOutput extends GetWebhookResult, __MetadataBea * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class GetWebhookCommand extends $Command diff --git a/clients/client-amplify/src/commands/ListAppsCommand.ts b/clients/client-amplify/src/commands/ListAppsCommand.ts index 49ebf01bda842..afee17e1b2168 100644 --- a/clients/client-amplify/src/commands/ListAppsCommand.ts +++ b/clients/client-amplify/src/commands/ListAppsCommand.ts @@ -134,6 +134,7 @@ export interface ListAppsCommandOutput extends ListAppsResult, __MetadataBearer * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class ListAppsCommand extends $Command diff --git a/clients/client-amplify/src/commands/ListArtifactsCommand.ts b/clients/client-amplify/src/commands/ListArtifactsCommand.ts index f8dcb414639a3..272340d708be3 100644 --- a/clients/client-amplify/src/commands/ListArtifactsCommand.ts +++ b/clients/client-amplify/src/commands/ListArtifactsCommand.ts @@ -81,6 +81,7 @@ export interface ListArtifactsCommandOutput extends ListArtifactsResult, __Metad * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class ListArtifactsCommand extends $Command diff --git a/clients/client-amplify/src/commands/ListBackendEnvironmentsCommand.ts b/clients/client-amplify/src/commands/ListBackendEnvironmentsCommand.ts index 115292e79347c..2526897f666cc 100644 --- a/clients/client-amplify/src/commands/ListBackendEnvironmentsCommand.ts +++ b/clients/client-amplify/src/commands/ListBackendEnvironmentsCommand.ts @@ -83,6 +83,7 @@ export interface ListBackendEnvironmentsCommandOutput extends ListBackendEnviron * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class ListBackendEnvironmentsCommand extends $Command diff --git a/clients/client-amplify/src/commands/ListBranchesCommand.ts b/clients/client-amplify/src/commands/ListBranchesCommand.ts index 0f78b3b083327..5188069b7df88 100644 --- a/clients/client-amplify/src/commands/ListBranchesCommand.ts +++ b/clients/client-amplify/src/commands/ListBranchesCommand.ts @@ -110,6 +110,7 @@ export interface ListBranchesCommandOutput extends ListBranchesResult, __Metadat * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class ListBranchesCommand extends $Command diff --git a/clients/client-amplify/src/commands/ListDomainAssociationsCommand.ts b/clients/client-amplify/src/commands/ListDomainAssociationsCommand.ts index 5fc1abd75339d..52bc50ceac8b5 100644 --- a/clients/client-amplify/src/commands/ListDomainAssociationsCommand.ts +++ b/clients/client-amplify/src/commands/ListDomainAssociationsCommand.ts @@ -96,6 +96,7 @@ export interface ListDomainAssociationsCommandOutput extends ListDomainAssociati * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class ListDomainAssociationsCommand extends $Command diff --git a/clients/client-amplify/src/commands/ListJobsCommand.ts b/clients/client-amplify/src/commands/ListJobsCommand.ts index 5bd1848560ea0..e8186df2f9158 100644 --- a/clients/client-amplify/src/commands/ListJobsCommand.ts +++ b/clients/client-amplify/src/commands/ListJobsCommand.ts @@ -85,6 +85,7 @@ export interface ListJobsCommandOutput extends ListJobsResult, __MetadataBearer * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class ListJobsCommand extends $Command diff --git a/clients/client-amplify/src/commands/ListTagsForResourceCommand.ts b/clients/client-amplify/src/commands/ListTagsForResourceCommand.ts index ef6bc24df4359..3fb56ab78630e 100644 --- a/clients/client-amplify/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-amplify/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-amplify/src/commands/ListWebhooksCommand.ts b/clients/client-amplify/src/commands/ListWebhooksCommand.ts index 6faceb9e1220d..3ed34b0db2b5f 100644 --- a/clients/client-amplify/src/commands/ListWebhooksCommand.ts +++ b/clients/client-amplify/src/commands/ListWebhooksCommand.ts @@ -81,6 +81,7 @@ export interface ListWebhooksCommandOutput extends ListWebhooksResult, __Metadat * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class ListWebhooksCommand extends $Command diff --git a/clients/client-amplify/src/commands/StartDeploymentCommand.ts b/clients/client-amplify/src/commands/StartDeploymentCommand.ts index 871d0fc4dcb23..96f3568403899 100644 --- a/clients/client-amplify/src/commands/StartDeploymentCommand.ts +++ b/clients/client-amplify/src/commands/StartDeploymentCommand.ts @@ -91,6 +91,7 @@ export interface StartDeploymentCommandOutput extends StartDeploymentResult, __M * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class StartDeploymentCommand extends $Command diff --git a/clients/client-amplify/src/commands/StartJobCommand.ts b/clients/client-amplify/src/commands/StartJobCommand.ts index 609c55a29f965..b0c7e69c695d3 100644 --- a/clients/client-amplify/src/commands/StartJobCommand.ts +++ b/clients/client-amplify/src/commands/StartJobCommand.ts @@ -89,6 +89,7 @@ export interface StartJobCommandOutput extends StartJobResult, __MetadataBearer * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class StartJobCommand extends $Command diff --git a/clients/client-amplify/src/commands/StopJobCommand.ts b/clients/client-amplify/src/commands/StopJobCommand.ts index f4a3aacd7d686..0ecb7947d4487 100644 --- a/clients/client-amplify/src/commands/StopJobCommand.ts +++ b/clients/client-amplify/src/commands/StopJobCommand.ts @@ -84,6 +84,7 @@ export interface StopJobCommandOutput extends StopJobResult, __MetadataBearer {} * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class StopJobCommand extends $Command diff --git a/clients/client-amplify/src/commands/TagResourceCommand.ts b/clients/client-amplify/src/commands/TagResourceCommand.ts index 2c40000cdacba..b870fb274fa7f 100644 --- a/clients/client-amplify/src/commands/TagResourceCommand.ts +++ b/clients/client-amplify/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-amplify/src/commands/UntagResourceCommand.ts b/clients/client-amplify/src/commands/UntagResourceCommand.ts index 099c2fbcda962..ac94640fdeb1a 100644 --- a/clients/client-amplify/src/commands/UntagResourceCommand.ts +++ b/clients/client-amplify/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-amplify/src/commands/UpdateAppCommand.ts b/clients/client-amplify/src/commands/UpdateAppCommand.ts index 56f480659aed3..cd8c581c2eb3d 100644 --- a/clients/client-amplify/src/commands/UpdateAppCommand.ts +++ b/clients/client-amplify/src/commands/UpdateAppCommand.ts @@ -184,6 +184,7 @@ export interface UpdateAppCommandOutput extends UpdateAppResult, __MetadataBeare * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class UpdateAppCommand extends $Command diff --git a/clients/client-amplify/src/commands/UpdateBranchCommand.ts b/clients/client-amplify/src/commands/UpdateBranchCommand.ts index cbcc4d48fb697..93bae4c59c150 100644 --- a/clients/client-amplify/src/commands/UpdateBranchCommand.ts +++ b/clients/client-amplify/src/commands/UpdateBranchCommand.ts @@ -139,6 +139,7 @@ export interface UpdateBranchCommandOutput extends UpdateBranchResult, __Metadat * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class UpdateBranchCommand extends $Command diff --git a/clients/client-amplify/src/commands/UpdateDomainAssociationCommand.ts b/clients/client-amplify/src/commands/UpdateDomainAssociationCommand.ts index 820080b7e9614..6700528452fa9 100644 --- a/clients/client-amplify/src/commands/UpdateDomainAssociationCommand.ts +++ b/clients/client-amplify/src/commands/UpdateDomainAssociationCommand.ts @@ -113,6 +113,7 @@ export interface UpdateDomainAssociationCommandOutput extends UpdateDomainAssoci * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class UpdateDomainAssociationCommand extends $Command diff --git a/clients/client-amplify/src/commands/UpdateWebhookCommand.ts b/clients/client-amplify/src/commands/UpdateWebhookCommand.ts index 53eb5b476ff32..82cdf654a4a64 100644 --- a/clients/client-amplify/src/commands/UpdateWebhookCommand.ts +++ b/clients/client-amplify/src/commands/UpdateWebhookCommand.ts @@ -81,6 +81,7 @@ export interface UpdateWebhookCommandOutput extends UpdateWebhookResult, __Metad * @throws {@link AmplifyServiceException} *

Base exception class for all service exceptions from Amplify service.

* + * * @public */ export class UpdateWebhookCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/CloneBackendCommand.ts b/clients/client-amplifybackend/src/commands/CloneBackendCommand.ts index 0ad5d20ca3f83..7cfd823d12fca 100644 --- a/clients/client-amplifybackend/src/commands/CloneBackendCommand.ts +++ b/clients/client-amplifybackend/src/commands/CloneBackendCommand.ts @@ -74,6 +74,7 @@ export interface CloneBackendCommandOutput extends CloneBackendResponse, __Metad * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class CloneBackendCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/CreateBackendAPICommand.ts b/clients/client-amplifybackend/src/commands/CreateBackendAPICommand.ts index e2fedf3c74e35..09ca1041eecd4 100644 --- a/clients/client-amplifybackend/src/commands/CreateBackendAPICommand.ts +++ b/clients/client-amplifybackend/src/commands/CreateBackendAPICommand.ts @@ -110,6 +110,7 @@ export interface CreateBackendAPICommandOutput extends CreateBackendAPIResponse, * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class CreateBackendAPICommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/CreateBackendAuthCommand.ts b/clients/client-amplifybackend/src/commands/CreateBackendAuthCommand.ts index f988ac5a4e2ad..0d3b6310e5019 100644 --- a/clients/client-amplifybackend/src/commands/CreateBackendAuthCommand.ts +++ b/clients/client-amplifybackend/src/commands/CreateBackendAuthCommand.ts @@ -161,6 +161,7 @@ export interface CreateBackendAuthCommandOutput extends CreateBackendAuthRespons * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class CreateBackendAuthCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/CreateBackendCommand.ts b/clients/client-amplifybackend/src/commands/CreateBackendCommand.ts index d51767f6f8992..1eff2f14fcd4c 100644 --- a/clients/client-amplifybackend/src/commands/CreateBackendCommand.ts +++ b/clients/client-amplifybackend/src/commands/CreateBackendCommand.ts @@ -76,6 +76,7 @@ export interface CreateBackendCommandOutput extends CreateBackendResponse, __Met * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class CreateBackendCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/CreateBackendConfigCommand.ts b/clients/client-amplifybackend/src/commands/CreateBackendConfigCommand.ts index 9d10efc7b01da..0cc24a83abf36 100644 --- a/clients/client-amplifybackend/src/commands/CreateBackendConfigCommand.ts +++ b/clients/client-amplifybackend/src/commands/CreateBackendConfigCommand.ts @@ -71,6 +71,7 @@ export interface CreateBackendConfigCommandOutput extends CreateBackendConfigRes * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class CreateBackendConfigCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/CreateBackendStorageCommand.ts b/clients/client-amplifybackend/src/commands/CreateBackendStorageCommand.ts index c314330db631f..2dbb2d88d5f2f 100644 --- a/clients/client-amplifybackend/src/commands/CreateBackendStorageCommand.ts +++ b/clients/client-amplifybackend/src/commands/CreateBackendStorageCommand.ts @@ -84,6 +84,7 @@ export interface CreateBackendStorageCommandOutput extends CreateBackendStorageR * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class CreateBackendStorageCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/CreateTokenCommand.ts b/clients/client-amplifybackend/src/commands/CreateTokenCommand.ts index 0c1e2e0c5eabe..c435d5b368f43 100644 --- a/clients/client-amplifybackend/src/commands/CreateTokenCommand.ts +++ b/clients/client-amplifybackend/src/commands/CreateTokenCommand.ts @@ -70,6 +70,7 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class CreateTokenCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/DeleteBackendAPICommand.ts b/clients/client-amplifybackend/src/commands/DeleteBackendAPICommand.ts index 77d435e3f5f97..6d83b63ed6190 100644 --- a/clients/client-amplifybackend/src/commands/DeleteBackendAPICommand.ts +++ b/clients/client-amplifybackend/src/commands/DeleteBackendAPICommand.ts @@ -110,6 +110,7 @@ export interface DeleteBackendAPICommandOutput extends DeleteBackendAPIResponse, * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class DeleteBackendAPICommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/DeleteBackendAuthCommand.ts b/clients/client-amplifybackend/src/commands/DeleteBackendAuthCommand.ts index f6e853fc5551b..7da549d76bde7 100644 --- a/clients/client-amplifybackend/src/commands/DeleteBackendAuthCommand.ts +++ b/clients/client-amplifybackend/src/commands/DeleteBackendAuthCommand.ts @@ -74,6 +74,7 @@ export interface DeleteBackendAuthCommandOutput extends DeleteBackendAuthRespons * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class DeleteBackendAuthCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/DeleteBackendCommand.ts b/clients/client-amplifybackend/src/commands/DeleteBackendCommand.ts index 6a9b5117bc41e..baf43fb221e78 100644 --- a/clients/client-amplifybackend/src/commands/DeleteBackendCommand.ts +++ b/clients/client-amplifybackend/src/commands/DeleteBackendCommand.ts @@ -73,6 +73,7 @@ export interface DeleteBackendCommandOutput extends DeleteBackendResponse, __Met * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class DeleteBackendCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/DeleteBackendStorageCommand.ts b/clients/client-amplifybackend/src/commands/DeleteBackendStorageCommand.ts index a8b2766cba36a..e932d829790d8 100644 --- a/clients/client-amplifybackend/src/commands/DeleteBackendStorageCommand.ts +++ b/clients/client-amplifybackend/src/commands/DeleteBackendStorageCommand.ts @@ -73,6 +73,7 @@ export interface DeleteBackendStorageCommandOutput extends DeleteBackendStorageR * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class DeleteBackendStorageCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/DeleteTokenCommand.ts b/clients/client-amplifybackend/src/commands/DeleteTokenCommand.ts index 9a0ba1509e868..33b821f647909 100644 --- a/clients/client-amplifybackend/src/commands/DeleteTokenCommand.ts +++ b/clients/client-amplifybackend/src/commands/DeleteTokenCommand.ts @@ -68,6 +68,7 @@ export interface DeleteTokenCommandOutput extends DeleteTokenResponse, __Metadat * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class DeleteTokenCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/GenerateBackendAPIModelsCommand.ts b/clients/client-amplifybackend/src/commands/GenerateBackendAPIModelsCommand.ts index b26a4e4f81940..e323ed575c91c 100644 --- a/clients/client-amplifybackend/src/commands/GenerateBackendAPIModelsCommand.ts +++ b/clients/client-amplifybackend/src/commands/GenerateBackendAPIModelsCommand.ts @@ -74,6 +74,7 @@ export interface GenerateBackendAPIModelsCommandOutput extends GenerateBackendAP * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class GenerateBackendAPIModelsCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/GetBackendAPICommand.ts b/clients/client-amplifybackend/src/commands/GetBackendAPICommand.ts index 7a17cd6d52863..826513211172e 100644 --- a/clients/client-amplifybackend/src/commands/GetBackendAPICommand.ts +++ b/clients/client-amplifybackend/src/commands/GetBackendAPICommand.ts @@ -144,6 +144,7 @@ export interface GetBackendAPICommandOutput extends GetBackendAPIResponse, __Met * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class GetBackendAPICommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/GetBackendAPIModelsCommand.ts b/clients/client-amplifybackend/src/commands/GetBackendAPIModelsCommand.ts index 1b109d6265bb1..3068eeb183731 100644 --- a/clients/client-amplifybackend/src/commands/GetBackendAPIModelsCommand.ts +++ b/clients/client-amplifybackend/src/commands/GetBackendAPIModelsCommand.ts @@ -71,6 +71,7 @@ export interface GetBackendAPIModelsCommandOutput extends GetBackendAPIModelsRes * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class GetBackendAPIModelsCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/GetBackendAuthCommand.ts b/clients/client-amplifybackend/src/commands/GetBackendAuthCommand.ts index 331c7d0483d72..ece8aa556e83a 100644 --- a/clients/client-amplifybackend/src/commands/GetBackendAuthCommand.ts +++ b/clients/client-amplifybackend/src/commands/GetBackendAuthCommand.ts @@ -159,6 +159,7 @@ export interface GetBackendAuthCommandOutput extends GetBackendAuthResponse, __M * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class GetBackendAuthCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/GetBackendCommand.ts b/clients/client-amplifybackend/src/commands/GetBackendCommand.ts index 6587fe518dfb3..34be062abdf96 100644 --- a/clients/client-amplifybackend/src/commands/GetBackendCommand.ts +++ b/clients/client-amplifybackend/src/commands/GetBackendCommand.ts @@ -76,6 +76,7 @@ export interface GetBackendCommandOutput extends GetBackendResponse, __MetadataB * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class GetBackendCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/GetBackendJobCommand.ts b/clients/client-amplifybackend/src/commands/GetBackendJobCommand.ts index 332c69ee75182..b579e659ba7e5 100644 --- a/clients/client-amplifybackend/src/commands/GetBackendJobCommand.ts +++ b/clients/client-amplifybackend/src/commands/GetBackendJobCommand.ts @@ -76,6 +76,7 @@ export interface GetBackendJobCommandOutput extends GetBackendJobResponse, __Met * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class GetBackendJobCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/GetBackendStorageCommand.ts b/clients/client-amplifybackend/src/commands/GetBackendStorageCommand.ts index 1125bfa3d13a8..d2c48a72d7198 100644 --- a/clients/client-amplifybackend/src/commands/GetBackendStorageCommand.ts +++ b/clients/client-amplifybackend/src/commands/GetBackendStorageCommand.ts @@ -84,6 +84,7 @@ export interface GetBackendStorageCommandOutput extends GetBackendStorageRespons * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class GetBackendStorageCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/GetTokenCommand.ts b/clients/client-amplifybackend/src/commands/GetTokenCommand.ts index e238b63db79fd..1fae8a0086539 100644 --- a/clients/client-amplifybackend/src/commands/GetTokenCommand.ts +++ b/clients/client-amplifybackend/src/commands/GetTokenCommand.ts @@ -71,6 +71,7 @@ export interface GetTokenCommandOutput extends GetTokenResponse, __MetadataBeare * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class GetTokenCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/ImportBackendAuthCommand.ts b/clients/client-amplifybackend/src/commands/ImportBackendAuthCommand.ts index 7686852198c0d..429ca3b500234 100644 --- a/clients/client-amplifybackend/src/commands/ImportBackendAuthCommand.ts +++ b/clients/client-amplifybackend/src/commands/ImportBackendAuthCommand.ts @@ -77,6 +77,7 @@ export interface ImportBackendAuthCommandOutput extends ImportBackendAuthRespons * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class ImportBackendAuthCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/ImportBackendStorageCommand.ts b/clients/client-amplifybackend/src/commands/ImportBackendStorageCommand.ts index c2ab42420044b..f28ffd34a0a5c 100644 --- a/clients/client-amplifybackend/src/commands/ImportBackendStorageCommand.ts +++ b/clients/client-amplifybackend/src/commands/ImportBackendStorageCommand.ts @@ -73,6 +73,7 @@ export interface ImportBackendStorageCommandOutput extends ImportBackendStorageR * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class ImportBackendStorageCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/ListBackendJobsCommand.ts b/clients/client-amplifybackend/src/commands/ListBackendJobsCommand.ts index 6eb8cfe0cbdeb..d113da8c12b82 100644 --- a/clients/client-amplifybackend/src/commands/ListBackendJobsCommand.ts +++ b/clients/client-amplifybackend/src/commands/ListBackendJobsCommand.ts @@ -85,6 +85,7 @@ export interface ListBackendJobsCommandOutput extends ListBackendJobsResponse, _ * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class ListBackendJobsCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/ListS3BucketsCommand.ts b/clients/client-amplifybackend/src/commands/ListS3BucketsCommand.ts index 8c2565dafdcb9..0b8c15b0d4ea0 100644 --- a/clients/client-amplifybackend/src/commands/ListS3BucketsCommand.ts +++ b/clients/client-amplifybackend/src/commands/ListS3BucketsCommand.ts @@ -73,6 +73,7 @@ export interface ListS3BucketsCommandOutput extends ListS3BucketsResponse, __Met * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class ListS3BucketsCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/RemoveAllBackendsCommand.ts b/clients/client-amplifybackend/src/commands/RemoveAllBackendsCommand.ts index 33ade930d02e7..6f68f632713e5 100644 --- a/clients/client-amplifybackend/src/commands/RemoveAllBackendsCommand.ts +++ b/clients/client-amplifybackend/src/commands/RemoveAllBackendsCommand.ts @@ -72,6 +72,7 @@ export interface RemoveAllBackendsCommandOutput extends RemoveAllBackendsRespons * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class RemoveAllBackendsCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/RemoveBackendConfigCommand.ts b/clients/client-amplifybackend/src/commands/RemoveBackendConfigCommand.ts index 0623874d5dc46..0c670ff148387 100644 --- a/clients/client-amplifybackend/src/commands/RemoveBackendConfigCommand.ts +++ b/clients/client-amplifybackend/src/commands/RemoveBackendConfigCommand.ts @@ -67,6 +67,7 @@ export interface RemoveBackendConfigCommandOutput extends RemoveBackendConfigRes * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class RemoveBackendConfigCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/UpdateBackendAPICommand.ts b/clients/client-amplifybackend/src/commands/UpdateBackendAPICommand.ts index 9a85df8750844..10c693a11c605 100644 --- a/clients/client-amplifybackend/src/commands/UpdateBackendAPICommand.ts +++ b/clients/client-amplifybackend/src/commands/UpdateBackendAPICommand.ts @@ -110,6 +110,7 @@ export interface UpdateBackendAPICommandOutput extends UpdateBackendAPIResponse, * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class UpdateBackendAPICommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/UpdateBackendAuthCommand.ts b/clients/client-amplifybackend/src/commands/UpdateBackendAuthCommand.ts index d14e4cca16c9f..4465cb8259c8a 100644 --- a/clients/client-amplifybackend/src/commands/UpdateBackendAuthCommand.ts +++ b/clients/client-amplifybackend/src/commands/UpdateBackendAuthCommand.ts @@ -155,6 +155,7 @@ export interface UpdateBackendAuthCommandOutput extends UpdateBackendAuthRespons * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class UpdateBackendAuthCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/UpdateBackendConfigCommand.ts b/clients/client-amplifybackend/src/commands/UpdateBackendConfigCommand.ts index 484779b0139f3..9f2fc21d66327 100644 --- a/clients/client-amplifybackend/src/commands/UpdateBackendConfigCommand.ts +++ b/clients/client-amplifybackend/src/commands/UpdateBackendConfigCommand.ts @@ -81,6 +81,7 @@ export interface UpdateBackendConfigCommandOutput extends UpdateBackendConfigRes * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class UpdateBackendConfigCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/UpdateBackendJobCommand.ts b/clients/client-amplifybackend/src/commands/UpdateBackendJobCommand.ts index 5fa8372352119..200ee63bacfe6 100644 --- a/clients/client-amplifybackend/src/commands/UpdateBackendJobCommand.ts +++ b/clients/client-amplifybackend/src/commands/UpdateBackendJobCommand.ts @@ -78,6 +78,7 @@ export interface UpdateBackendJobCommandOutput extends UpdateBackendJobResponse, * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class UpdateBackendJobCommand extends $Command diff --git a/clients/client-amplifybackend/src/commands/UpdateBackendStorageCommand.ts b/clients/client-amplifybackend/src/commands/UpdateBackendStorageCommand.ts index a7b480d0eb84e..af3a4eb98e27f 100644 --- a/clients/client-amplifybackend/src/commands/UpdateBackendStorageCommand.ts +++ b/clients/client-amplifybackend/src/commands/UpdateBackendStorageCommand.ts @@ -83,6 +83,7 @@ export interface UpdateBackendStorageCommandOutput extends UpdateBackendStorageR * @throws {@link AmplifyBackendServiceException} *

Base exception class for all service exceptions from AmplifyBackend service.

* + * * @public */ export class UpdateBackendStorageCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/CreateComponentCommand.ts b/clients/client-amplifyuibuilder/src/commands/CreateComponentCommand.ts index ce175f822b6d6..ea22ba7de5275 100644 --- a/clients/client-amplifyuibuilder/src/commands/CreateComponentCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/CreateComponentCommand.ts @@ -502,6 +502,7 @@ export interface CreateComponentCommandOutput extends CreateComponentResponse, _ * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class CreateComponentCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/CreateFormCommand.ts b/clients/client-amplifyuibuilder/src/commands/CreateFormCommand.ts index d071f7975b7a3..52987859f8d0f 100644 --- a/clients/client-amplifyuibuilder/src/commands/CreateFormCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/CreateFormCommand.ts @@ -380,6 +380,7 @@ export interface CreateFormCommandOutput extends CreateFormResponse, __MetadataB * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class CreateFormCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/CreateThemeCommand.ts b/clients/client-amplifyuibuilder/src/commands/CreateThemeCommand.ts index 6c6a72391d680..06ca3fd3e1b34 100644 --- a/clients/client-amplifyuibuilder/src/commands/CreateThemeCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/CreateThemeCommand.ts @@ -122,6 +122,7 @@ export interface CreateThemeCommandOutput extends CreateThemeResponse, __Metadat * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class CreateThemeCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/DeleteComponentCommand.ts b/clients/client-amplifyuibuilder/src/commands/DeleteComponentCommand.ts index f6dc3bb9cb75b..929d1e50aa02b 100644 --- a/clients/client-amplifyuibuilder/src/commands/DeleteComponentCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/DeleteComponentCommand.ts @@ -64,6 +64,7 @@ export interface DeleteComponentCommandOutput extends __MetadataBearer {} * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class DeleteComponentCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/DeleteFormCommand.ts b/clients/client-amplifyuibuilder/src/commands/DeleteFormCommand.ts index 63f093cc2bb66..65c03463315f3 100644 --- a/clients/client-amplifyuibuilder/src/commands/DeleteFormCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/DeleteFormCommand.ts @@ -64,6 +64,7 @@ export interface DeleteFormCommandOutput extends __MetadataBearer {} * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class DeleteFormCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/DeleteThemeCommand.ts b/clients/client-amplifyuibuilder/src/commands/DeleteThemeCommand.ts index a4c86ab960efa..8f6622d68977a 100644 --- a/clients/client-amplifyuibuilder/src/commands/DeleteThemeCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/DeleteThemeCommand.ts @@ -64,6 +64,7 @@ export interface DeleteThemeCommandOutput extends __MetadataBearer {} * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class DeleteThemeCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/ExchangeCodeForTokenCommand.ts b/clients/client-amplifyuibuilder/src/commands/ExchangeCodeForTokenCommand.ts index c074d43988bc5..d88b034fa39ec 100644 --- a/clients/client-amplifyuibuilder/src/commands/ExchangeCodeForTokenCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ExchangeCodeForTokenCommand.ts @@ -73,6 +73,7 @@ export interface ExchangeCodeForTokenCommandOutput extends ExchangeCodeForTokenR * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class ExchangeCodeForTokenCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/ExportComponentsCommand.ts b/clients/client-amplifyuibuilder/src/commands/ExportComponentsCommand.ts index 8d1addd31ab5c..253e16ad63ee8 100644 --- a/clients/client-amplifyuibuilder/src/commands/ExportComponentsCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ExportComponentsCommand.ts @@ -284,6 +284,7 @@ export interface ExportComponentsCommandOutput extends ExportComponentsResponse, * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class ExportComponentsCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/ExportFormsCommand.ts b/clients/client-amplifyuibuilder/src/commands/ExportFormsCommand.ts index ef05b03722877..838c9210cd3f8 100644 --- a/clients/client-amplifyuibuilder/src/commands/ExportFormsCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ExportFormsCommand.ts @@ -222,6 +222,7 @@ export interface ExportFormsCommandOutput extends ExportFormsResponse, __Metadat * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class ExportFormsCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/ExportThemesCommand.ts b/clients/client-amplifyuibuilder/src/commands/ExportThemesCommand.ts index 15bffffa647de..70187502cc254 100644 --- a/clients/client-amplifyuibuilder/src/commands/ExportThemesCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ExportThemesCommand.ts @@ -94,6 +94,7 @@ export interface ExportThemesCommandOutput extends ExportThemesResponse, __Metad * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class ExportThemesCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/GetCodegenJobCommand.ts b/clients/client-amplifyuibuilder/src/commands/GetCodegenJobCommand.ts index ac82bd2b47f24..85ed031cf5dd4 100644 --- a/clients/client-amplifyuibuilder/src/commands/GetCodegenJobCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/GetCodegenJobCommand.ts @@ -189,6 +189,7 @@ export interface GetCodegenJobCommandOutput extends GetCodegenJobResponse, __Met * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class GetCodegenJobCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/GetComponentCommand.ts b/clients/client-amplifyuibuilder/src/commands/GetComponentCommand.ts index f9a45d6e8a2b3..ada0455b188e1 100644 --- a/clients/client-amplifyuibuilder/src/commands/GetComponentCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/GetComponentCommand.ts @@ -284,6 +284,7 @@ export interface GetComponentCommandOutput extends GetComponentResponse, __Metad * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class GetComponentCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/GetFormCommand.ts b/clients/client-amplifyuibuilder/src/commands/GetFormCommand.ts index 6d7a007e5a540..719a1b67eb65b 100644 --- a/clients/client-amplifyuibuilder/src/commands/GetFormCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/GetFormCommand.ts @@ -222,6 +222,7 @@ export interface GetFormCommandOutput extends GetFormResponse, __MetadataBearer * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class GetFormCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/GetMetadataCommand.ts b/clients/client-amplifyuibuilder/src/commands/GetMetadataCommand.ts index 7b4bc3a7de1e0..b032c1ebfe25b 100644 --- a/clients/client-amplifyuibuilder/src/commands/GetMetadataCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/GetMetadataCommand.ts @@ -64,6 +64,7 @@ export interface GetMetadataCommandOutput extends GetMetadataResponse, __Metadat * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class GetMetadataCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/GetThemeCommand.ts b/clients/client-amplifyuibuilder/src/commands/GetThemeCommand.ts index c612e633a6d88..f08642dae5e4c 100644 --- a/clients/client-amplifyuibuilder/src/commands/GetThemeCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/GetThemeCommand.ts @@ -94,6 +94,7 @@ export interface GetThemeCommandOutput extends GetThemeResponse, __MetadataBeare * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class GetThemeCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/ListCodegenJobsCommand.ts b/clients/client-amplifyuibuilder/src/commands/ListCodegenJobsCommand.ts index 299115a868d93..d753dfcc0917c 100644 --- a/clients/client-amplifyuibuilder/src/commands/ListCodegenJobsCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ListCodegenJobsCommand.ts @@ -76,6 +76,7 @@ export interface ListCodegenJobsCommandOutput extends ListCodegenJobsResponse, _ * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class ListCodegenJobsCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/ListComponentsCommand.ts b/clients/client-amplifyuibuilder/src/commands/ListComponentsCommand.ts index 66785b56832a7..cce509dd40615 100644 --- a/clients/client-amplifyuibuilder/src/commands/ListComponentsCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ListComponentsCommand.ts @@ -74,6 +74,7 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class ListComponentsCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/ListFormsCommand.ts b/clients/client-amplifyuibuilder/src/commands/ListFormsCommand.ts index 5c237fdacbfc1..c70fffae4417a 100644 --- a/clients/client-amplifyuibuilder/src/commands/ListFormsCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ListFormsCommand.ts @@ -77,6 +77,7 @@ export interface ListFormsCommandOutput extends ListFormsResponse, __MetadataBea * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class ListFormsCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/ListTagsForResourceCommand.ts b/clients/client-amplifyuibuilder/src/commands/ListTagsForResourceCommand.ts index 28be6b843be47..d71bcfb43f3d1 100644 --- a/clients/client-amplifyuibuilder/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/ListThemesCommand.ts b/clients/client-amplifyuibuilder/src/commands/ListThemesCommand.ts index d7d741e7aac28..fb0b675c8aade 100644 --- a/clients/client-amplifyuibuilder/src/commands/ListThemesCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ListThemesCommand.ts @@ -73,6 +73,7 @@ export interface ListThemesCommandOutput extends ListThemesResponse, __MetadataB * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class ListThemesCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/PutMetadataFlagCommand.ts b/clients/client-amplifyuibuilder/src/commands/PutMetadataFlagCommand.ts index e7a242970f042..2c38f9fe644da 100644 --- a/clients/client-amplifyuibuilder/src/commands/PutMetadataFlagCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/PutMetadataFlagCommand.ts @@ -64,6 +64,7 @@ export interface PutMetadataFlagCommandOutput extends __MetadataBearer {} * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class PutMetadataFlagCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/RefreshTokenCommand.ts b/clients/client-amplifyuibuilder/src/commands/RefreshTokenCommand.ts index 593e0cdb9b56d..566059e46d590 100644 --- a/clients/client-amplifyuibuilder/src/commands/RefreshTokenCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/RefreshTokenCommand.ts @@ -71,6 +71,7 @@ export interface RefreshTokenCommandOutput extends RefreshTokenResponse, __Metad * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class RefreshTokenCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/StartCodegenJobCommand.ts b/clients/client-amplifyuibuilder/src/commands/StartCodegenJobCommand.ts index be69f99e7e586..f3c77e2a64eed 100644 --- a/clients/client-amplifyuibuilder/src/commands/StartCodegenJobCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/StartCodegenJobCommand.ts @@ -289,6 +289,7 @@ export interface StartCodegenJobCommandOutput extends StartCodegenJobResponse, _ * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class StartCodegenJobCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/TagResourceCommand.ts b/clients/client-amplifyuibuilder/src/commands/TagResourceCommand.ts index 9fe74c1403b49..098343791c71c 100644 --- a/clients/client-amplifyuibuilder/src/commands/TagResourceCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/UntagResourceCommand.ts b/clients/client-amplifyuibuilder/src/commands/UntagResourceCommand.ts index 05c745acdf761..9e2308580542c 100644 --- a/clients/client-amplifyuibuilder/src/commands/UntagResourceCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/UpdateComponentCommand.ts b/clients/client-amplifyuibuilder/src/commands/UpdateComponentCommand.ts index 7f9d8ea343c63..09876761852d5 100644 --- a/clients/client-amplifyuibuilder/src/commands/UpdateComponentCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/UpdateComponentCommand.ts @@ -497,6 +497,7 @@ export interface UpdateComponentCommandOutput extends UpdateComponentResponse, _ * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class UpdateComponentCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/UpdateFormCommand.ts b/clients/client-amplifyuibuilder/src/commands/UpdateFormCommand.ts index dfba3ae92cffc..6ba7e7805521d 100644 --- a/clients/client-amplifyuibuilder/src/commands/UpdateFormCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/UpdateFormCommand.ts @@ -374,6 +374,7 @@ export interface UpdateFormCommandOutput extends UpdateFormResponse, __MetadataB * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class UpdateFormCommand extends $Command diff --git a/clients/client-amplifyuibuilder/src/commands/UpdateThemeCommand.ts b/clients/client-amplifyuibuilder/src/commands/UpdateThemeCommand.ts index 3cbff52c429fd..fb8458d7ce2af 100644 --- a/clients/client-amplifyuibuilder/src/commands/UpdateThemeCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/UpdateThemeCommand.ts @@ -117,6 +117,7 @@ export interface UpdateThemeCommandOutput extends UpdateThemeResponse, __Metadat * @throws {@link AmplifyUIBuilderServiceException} *

Base exception class for all service exceptions from AmplifyUIBuilder service.

* + * * @public */ export class UpdateThemeCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateApiKeyCommand.ts b/clients/client-api-gateway/src/commands/CreateApiKeyCommand.ts index 20461293a845e..307abdd056491 100644 --- a/clients/client-api-gateway/src/commands/CreateApiKeyCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateApiKeyCommand.ts @@ -100,6 +100,7 @@ export interface CreateApiKeyCommandOutput extends ApiKey, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateApiKeyCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateAuthorizerCommand.ts b/clients/client-api-gateway/src/commands/CreateAuthorizerCommand.ts index b3877087aeb50..3af9d2c060dd5 100644 --- a/clients/client-api-gateway/src/commands/CreateAuthorizerCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateAuthorizerCommand.ts @@ -95,6 +95,7 @@ export interface CreateAuthorizerCommandOutput extends Authorizer, __MetadataBea * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateAuthorizerCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateBasePathMappingCommand.ts b/clients/client-api-gateway/src/commands/CreateBasePathMappingCommand.ts index ee1326e5d7d42..aaa1935f0934f 100644 --- a/clients/client-api-gateway/src/commands/CreateBasePathMappingCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateBasePathMappingCommand.ts @@ -79,6 +79,7 @@ export interface CreateBasePathMappingCommandOutput extends BasePathMapping, __M * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateBasePathMappingCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateDeploymentCommand.ts b/clients/client-api-gateway/src/commands/CreateDeploymentCommand.ts index 1d025dc9d6af2..d77bc2fa82e4d 100644 --- a/clients/client-api-gateway/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateDeploymentCommand.ts @@ -102,6 +102,7 @@ export interface CreateDeploymentCommandOutput extends Deployment, __MetadataBea * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateDeploymentCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateDocumentationPartCommand.ts b/clients/client-api-gateway/src/commands/CreateDocumentationPartCommand.ts index cbf3196043be7..ef261c156c7d7 100644 --- a/clients/client-api-gateway/src/commands/CreateDocumentationPartCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateDocumentationPartCommand.ts @@ -89,6 +89,7 @@ export interface CreateDocumentationPartCommandOutput extends DocumentationPart, * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateDocumentationPartCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateDocumentationVersionCommand.ts b/clients/client-api-gateway/src/commands/CreateDocumentationVersionCommand.ts index eae4fd91661c7..48edeec246992 100644 --- a/clients/client-api-gateway/src/commands/CreateDocumentationVersionCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateDocumentationVersionCommand.ts @@ -78,6 +78,7 @@ export interface CreateDocumentationVersionCommandOutput extends DocumentationVe * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateDocumentationVersionCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateDomainNameAccessAssociationCommand.ts b/clients/client-api-gateway/src/commands/CreateDomainNameAccessAssociationCommand.ts index 56d99ba8232d1..829bf6c740001 100644 --- a/clients/client-api-gateway/src/commands/CreateDomainNameAccessAssociationCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateDomainNameAccessAssociationCommand.ts @@ -85,6 +85,7 @@ export interface CreateDomainNameAccessAssociationCommandOutput extends DomainNa * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateDomainNameAccessAssociationCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateDomainNameCommand.ts b/clients/client-api-gateway/src/commands/CreateDomainNameCommand.ts index a631d967c450d..79e0c594ad435 100644 --- a/clients/client-api-gateway/src/commands/CreateDomainNameCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateDomainNameCommand.ts @@ -130,6 +130,7 @@ export interface CreateDomainNameCommandOutput extends DomainName, __MetadataBea * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateDomainNameCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateModelCommand.ts b/clients/client-api-gateway/src/commands/CreateModelCommand.ts index 7422ed02efff5..85dc0e4f7e41a 100644 --- a/clients/client-api-gateway/src/commands/CreateModelCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateModelCommand.ts @@ -81,6 +81,7 @@ export interface CreateModelCommandOutput extends Model, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateModelCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateRequestValidatorCommand.ts b/clients/client-api-gateway/src/commands/CreateRequestValidatorCommand.ts index 3fba1f89de2d7..c6b1a8ed832a2 100644 --- a/clients/client-api-gateway/src/commands/CreateRequestValidatorCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateRequestValidatorCommand.ts @@ -79,6 +79,7 @@ export interface CreateRequestValidatorCommandOutput extends RequestValidator, _ * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateRequestValidatorCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateResourceCommand.ts b/clients/client-api-gateway/src/commands/CreateResourceCommand.ts index c01abf19144cb..d59e8331c9bf0 100644 --- a/clients/client-api-gateway/src/commands/CreateResourceCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateResourceCommand.ts @@ -137,6 +137,7 @@ export interface CreateResourceCommandOutput extends Resource, __MetadataBearer * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateResourceCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateRestApiCommand.ts b/clients/client-api-gateway/src/commands/CreateRestApiCommand.ts index 2093b4a6547e1..23f061967a820 100644 --- a/clients/client-api-gateway/src/commands/CreateRestApiCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateRestApiCommand.ts @@ -117,6 +117,7 @@ export interface CreateRestApiCommandOutput extends RestApi, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateRestApiCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateStageCommand.ts b/clients/client-api-gateway/src/commands/CreateStageCommand.ts index 30dc3f2617920..1ce98e6f0db29 100644 --- a/clients/client-api-gateway/src/commands/CreateStageCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateStageCommand.ts @@ -137,6 +137,7 @@ export interface CreateStageCommandOutput extends Stage, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateStageCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateUsagePlanCommand.ts b/clients/client-api-gateway/src/commands/CreateUsagePlanCommand.ts index 1ff88a88a0a60..0f6eb46a6a07b 100644 --- a/clients/client-api-gateway/src/commands/CreateUsagePlanCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateUsagePlanCommand.ts @@ -125,6 +125,7 @@ export interface CreateUsagePlanCommandOutput extends UsagePlan, __MetadataBeare * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateUsagePlanCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateUsagePlanKeyCommand.ts b/clients/client-api-gateway/src/commands/CreateUsagePlanKeyCommand.ts index d06ead20bee80..7f24aca7a454d 100644 --- a/clients/client-api-gateway/src/commands/CreateUsagePlanKeyCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateUsagePlanKeyCommand.ts @@ -78,6 +78,7 @@ export interface CreateUsagePlanKeyCommandOutput extends UsagePlanKey, __Metadat * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateUsagePlanKeyCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/CreateVpcLinkCommand.ts b/clients/client-api-gateway/src/commands/CreateVpcLinkCommand.ts index 87cec650f73ac..fe7639a35cfc3 100644 --- a/clients/client-api-gateway/src/commands/CreateVpcLinkCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateVpcLinkCommand.ts @@ -87,6 +87,7 @@ export interface CreateVpcLinkCommandOutput extends VpcLink, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class CreateVpcLinkCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteApiKeyCommand.ts b/clients/client-api-gateway/src/commands/DeleteApiKeyCommand.ts index 45a5d0285f456..6a7f1ad09572c 100644 --- a/clients/client-api-gateway/src/commands/DeleteApiKeyCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteApiKeyCommand.ts @@ -68,6 +68,7 @@ export interface DeleteApiKeyCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteApiKeyCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteAuthorizerCommand.ts b/clients/client-api-gateway/src/commands/DeleteAuthorizerCommand.ts index c96076dbbd78b..0415d179a4590 100644 --- a/clients/client-api-gateway/src/commands/DeleteAuthorizerCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteAuthorizerCommand.ts @@ -69,6 +69,7 @@ export interface DeleteAuthorizerCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteAuthorizerCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteBasePathMappingCommand.ts b/clients/client-api-gateway/src/commands/DeleteBasePathMappingCommand.ts index 4068b9f97f53c..a1245f1c2648e 100644 --- a/clients/client-api-gateway/src/commands/DeleteBasePathMappingCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteBasePathMappingCommand.ts @@ -70,6 +70,7 @@ export interface DeleteBasePathMappingCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteBasePathMappingCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteClientCertificateCommand.ts b/clients/client-api-gateway/src/commands/DeleteClientCertificateCommand.ts index 43062259fc462..e275ab34579ee 100644 --- a/clients/client-api-gateway/src/commands/DeleteClientCertificateCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteClientCertificateCommand.ts @@ -68,6 +68,7 @@ export interface DeleteClientCertificateCommandOutput extends __MetadataBearer { * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteClientCertificateCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteDeploymentCommand.ts b/clients/client-api-gateway/src/commands/DeleteDeploymentCommand.ts index e284872fd557c..795ed42ada954 100644 --- a/clients/client-api-gateway/src/commands/DeleteDeploymentCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteDeploymentCommand.ts @@ -72,6 +72,7 @@ export interface DeleteDeploymentCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteDeploymentCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteDocumentationPartCommand.ts b/clients/client-api-gateway/src/commands/DeleteDocumentationPartCommand.ts index c25f87d0cb75d..67eeca05f8103 100644 --- a/clients/client-api-gateway/src/commands/DeleteDocumentationPartCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteDocumentationPartCommand.ts @@ -69,6 +69,7 @@ export interface DeleteDocumentationPartCommandOutput extends __MetadataBearer { * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteDocumentationPartCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteDocumentationVersionCommand.ts b/clients/client-api-gateway/src/commands/DeleteDocumentationVersionCommand.ts index 9a5be112c8b6c..dfc778bda2e5e 100644 --- a/clients/client-api-gateway/src/commands/DeleteDocumentationVersionCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteDocumentationVersionCommand.ts @@ -69,6 +69,7 @@ export interface DeleteDocumentationVersionCommandOutput extends __MetadataBeare * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteDocumentationVersionCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteDomainNameAccessAssociationCommand.ts b/clients/client-api-gateway/src/commands/DeleteDomainNameAccessAssociationCommand.ts index 3e1b896712edc..63a1aa52dab56 100644 --- a/clients/client-api-gateway/src/commands/DeleteDomainNameAccessAssociationCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteDomainNameAccessAssociationCommand.ts @@ -72,6 +72,7 @@ export interface DeleteDomainNameAccessAssociationCommandOutput extends __Metada * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteDomainNameAccessAssociationCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteDomainNameCommand.ts b/clients/client-api-gateway/src/commands/DeleteDomainNameCommand.ts index 044652c0c9da1..fe855a41b058d 100644 --- a/clients/client-api-gateway/src/commands/DeleteDomainNameCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteDomainNameCommand.ts @@ -69,6 +69,7 @@ export interface DeleteDomainNameCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteDomainNameCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteGatewayResponseCommand.ts b/clients/client-api-gateway/src/commands/DeleteGatewayResponseCommand.ts index b0c022d5e840d..a6ed30ea085fa 100644 --- a/clients/client-api-gateway/src/commands/DeleteGatewayResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteGatewayResponseCommand.ts @@ -69,6 +69,7 @@ export interface DeleteGatewayResponseCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteGatewayResponseCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteIntegrationCommand.ts b/clients/client-api-gateway/src/commands/DeleteIntegrationCommand.ts index d964aae0e5f9c..ded5e56009e7f 100644 --- a/clients/client-api-gateway/src/commands/DeleteIntegrationCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteIntegrationCommand.ts @@ -70,6 +70,7 @@ export interface DeleteIntegrationCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteIntegrationCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteIntegrationResponseCommand.ts b/clients/client-api-gateway/src/commands/DeleteIntegrationResponseCommand.ts index 98e42e46bf4ae..39cae814a5a6f 100644 --- a/clients/client-api-gateway/src/commands/DeleteIntegrationResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteIntegrationResponseCommand.ts @@ -71,6 +71,7 @@ export interface DeleteIntegrationResponseCommandOutput extends __MetadataBearer * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteIntegrationResponseCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteMethodCommand.ts b/clients/client-api-gateway/src/commands/DeleteMethodCommand.ts index 0d72e53ef4067..7ddee7d1b9f95 100644 --- a/clients/client-api-gateway/src/commands/DeleteMethodCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteMethodCommand.ts @@ -67,6 +67,7 @@ export interface DeleteMethodCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteMethodCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteMethodResponseCommand.ts b/clients/client-api-gateway/src/commands/DeleteMethodResponseCommand.ts index 86ca898d1d3ff..2ca1add1e273d 100644 --- a/clients/client-api-gateway/src/commands/DeleteMethodResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteMethodResponseCommand.ts @@ -71,6 +71,7 @@ export interface DeleteMethodResponseCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteMethodResponseCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteModelCommand.ts b/clients/client-api-gateway/src/commands/DeleteModelCommand.ts index 27911d75412bc..c4969e338d511 100644 --- a/clients/client-api-gateway/src/commands/DeleteModelCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteModelCommand.ts @@ -69,6 +69,7 @@ export interface DeleteModelCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteModelCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteRequestValidatorCommand.ts b/clients/client-api-gateway/src/commands/DeleteRequestValidatorCommand.ts index 299e6294ec875..cee58f3bf0d2d 100644 --- a/clients/client-api-gateway/src/commands/DeleteRequestValidatorCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteRequestValidatorCommand.ts @@ -69,6 +69,7 @@ export interface DeleteRequestValidatorCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteRequestValidatorCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteResourceCommand.ts b/clients/client-api-gateway/src/commands/DeleteResourceCommand.ts index 2c0e3098caab0..085f1455ef976 100644 --- a/clients/client-api-gateway/src/commands/DeleteResourceCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteResourceCommand.ts @@ -69,6 +69,7 @@ export interface DeleteResourceCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteResourceCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteRestApiCommand.ts b/clients/client-api-gateway/src/commands/DeleteRestApiCommand.ts index 232ad26857894..def0c323d6d5a 100644 --- a/clients/client-api-gateway/src/commands/DeleteRestApiCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteRestApiCommand.ts @@ -68,6 +68,7 @@ export interface DeleteRestApiCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteRestApiCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteStageCommand.ts b/clients/client-api-gateway/src/commands/DeleteStageCommand.ts index 46395e47acc0d..21341b4e25243 100644 --- a/clients/client-api-gateway/src/commands/DeleteStageCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteStageCommand.ts @@ -72,6 +72,7 @@ export interface DeleteStageCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteStageCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteUsagePlanCommand.ts b/clients/client-api-gateway/src/commands/DeleteUsagePlanCommand.ts index d668f92098b6c..f793fcd47d721 100644 --- a/clients/client-api-gateway/src/commands/DeleteUsagePlanCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteUsagePlanCommand.ts @@ -68,6 +68,7 @@ export interface DeleteUsagePlanCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteUsagePlanCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteUsagePlanKeyCommand.ts b/clients/client-api-gateway/src/commands/DeleteUsagePlanKeyCommand.ts index 5672943c6a83c..57d7b7dc01a6d 100644 --- a/clients/client-api-gateway/src/commands/DeleteUsagePlanKeyCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteUsagePlanKeyCommand.ts @@ -69,6 +69,7 @@ export interface DeleteUsagePlanKeyCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteUsagePlanKeyCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/DeleteVpcLinkCommand.ts b/clients/client-api-gateway/src/commands/DeleteVpcLinkCommand.ts index 611d0f6225019..b2db1f283e155 100644 --- a/clients/client-api-gateway/src/commands/DeleteVpcLinkCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteVpcLinkCommand.ts @@ -68,6 +68,7 @@ export interface DeleteVpcLinkCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class DeleteVpcLinkCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/FlushStageAuthorizersCacheCommand.ts b/clients/client-api-gateway/src/commands/FlushStageAuthorizersCacheCommand.ts index bd7b8f4d27fb5..530479085c1e0 100644 --- a/clients/client-api-gateway/src/commands/FlushStageAuthorizersCacheCommand.ts +++ b/clients/client-api-gateway/src/commands/FlushStageAuthorizersCacheCommand.ts @@ -72,6 +72,7 @@ export interface FlushStageAuthorizersCacheCommandOutput extends __MetadataBeare * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class FlushStageAuthorizersCacheCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/FlushStageCacheCommand.ts b/clients/client-api-gateway/src/commands/FlushStageCacheCommand.ts index ab398f369c2cd..4242cd33f4eb1 100644 --- a/clients/client-api-gateway/src/commands/FlushStageCacheCommand.ts +++ b/clients/client-api-gateway/src/commands/FlushStageCacheCommand.ts @@ -72,6 +72,7 @@ export interface FlushStageCacheCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class FlushStageCacheCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GenerateClientCertificateCommand.ts b/clients/client-api-gateway/src/commands/GenerateClientCertificateCommand.ts index d95e7ef7dec0e..a8e63cf19b3d0 100644 --- a/clients/client-api-gateway/src/commands/GenerateClientCertificateCommand.ts +++ b/clients/client-api-gateway/src/commands/GenerateClientCertificateCommand.ts @@ -80,6 +80,7 @@ export interface GenerateClientCertificateCommandOutput extends ClientCertificat * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GenerateClientCertificateCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetAccountCommand.ts b/clients/client-api-gateway/src/commands/GetAccountCommand.ts index 5371bec2b6831..f4e60d0f04d02 100644 --- a/clients/client-api-gateway/src/commands/GetAccountCommand.ts +++ b/clients/client-api-gateway/src/commands/GetAccountCommand.ts @@ -73,6 +73,7 @@ export interface GetAccountCommandOutput extends Account, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetAccountCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetApiKeyCommand.ts b/clients/client-api-gateway/src/commands/GetApiKeyCommand.ts index 7d4287a32226d..553f72012ba24 100644 --- a/clients/client-api-gateway/src/commands/GetApiKeyCommand.ts +++ b/clients/client-api-gateway/src/commands/GetApiKeyCommand.ts @@ -81,6 +81,7 @@ export interface GetApiKeyCommandOutput extends ApiKey, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetApiKeyCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetApiKeysCommand.ts b/clients/client-api-gateway/src/commands/GetApiKeysCommand.ts index 7a8e27772b9b6..b797ce6afeb66 100644 --- a/clients/client-api-gateway/src/commands/GetApiKeysCommand.ts +++ b/clients/client-api-gateway/src/commands/GetApiKeysCommand.ts @@ -92,6 +92,7 @@ export interface GetApiKeysCommandOutput extends ApiKeys, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetApiKeysCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetAuthorizerCommand.ts b/clients/client-api-gateway/src/commands/GetAuthorizerCommand.ts index eb9315fb3dcdd..8770ab996697c 100644 --- a/clients/client-api-gateway/src/commands/GetAuthorizerCommand.ts +++ b/clients/client-api-gateway/src/commands/GetAuthorizerCommand.ts @@ -79,6 +79,7 @@ export interface GetAuthorizerCommandOutput extends Authorizer, __MetadataBearer * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetAuthorizerCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetAuthorizersCommand.ts b/clients/client-api-gateway/src/commands/GetAuthorizersCommand.ts index 9120523e8b167..5eed81b440bc3 100644 --- a/clients/client-api-gateway/src/commands/GetAuthorizersCommand.ts +++ b/clients/client-api-gateway/src/commands/GetAuthorizersCommand.ts @@ -85,6 +85,7 @@ export interface GetAuthorizersCommandOutput extends Authorizers, __MetadataBear * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetAuthorizersCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetBasePathMappingCommand.ts b/clients/client-api-gateway/src/commands/GetBasePathMappingCommand.ts index 8b206afae55ba..443a32aa83a6a 100644 --- a/clients/client-api-gateway/src/commands/GetBasePathMappingCommand.ts +++ b/clients/client-api-gateway/src/commands/GetBasePathMappingCommand.ts @@ -71,6 +71,7 @@ export interface GetBasePathMappingCommandOutput extends BasePathMapping, __Meta * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetBasePathMappingCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetBasePathMappingsCommand.ts b/clients/client-api-gateway/src/commands/GetBasePathMappingsCommand.ts index 763daeaef3977..45d4ced76d479 100644 --- a/clients/client-api-gateway/src/commands/GetBasePathMappingsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetBasePathMappingsCommand.ts @@ -77,6 +77,7 @@ export interface GetBasePathMappingsCommandOutput extends BasePathMappings, __Me * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetBasePathMappingsCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetClientCertificateCommand.ts b/clients/client-api-gateway/src/commands/GetClientCertificateCommand.ts index d95db5aaa7683..ffcb6a77c6684 100644 --- a/clients/client-api-gateway/src/commands/GetClientCertificateCommand.ts +++ b/clients/client-api-gateway/src/commands/GetClientCertificateCommand.ts @@ -74,6 +74,7 @@ export interface GetClientCertificateCommandOutput extends ClientCertificate, __ * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetClientCertificateCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetClientCertificatesCommand.ts b/clients/client-api-gateway/src/commands/GetClientCertificatesCommand.ts index 11ec3c06a000e..a5f41e262bd53 100644 --- a/clients/client-api-gateway/src/commands/GetClientCertificatesCommand.ts +++ b/clients/client-api-gateway/src/commands/GetClientCertificatesCommand.ts @@ -80,6 +80,7 @@ export interface GetClientCertificatesCommandOutput extends ClientCertificates, * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetClientCertificatesCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetDeploymentCommand.ts b/clients/client-api-gateway/src/commands/GetDeploymentCommand.ts index 53355c49173fc..c3cb8cd304a22 100644 --- a/clients/client-api-gateway/src/commands/GetDeploymentCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDeploymentCommand.ts @@ -84,6 +84,7 @@ export interface GetDeploymentCommandOutput extends Deployment, __MetadataBearer * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetDeploymentCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetDeploymentsCommand.ts b/clients/client-api-gateway/src/commands/GetDeploymentsCommand.ts index 73c5434b41853..4805ee3a938a4 100644 --- a/clients/client-api-gateway/src/commands/GetDeploymentsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDeploymentsCommand.ts @@ -87,6 +87,7 @@ export interface GetDeploymentsCommandOutput extends Deployments, __MetadataBear * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetDeploymentsCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetDocumentationPartCommand.ts b/clients/client-api-gateway/src/commands/GetDocumentationPartCommand.ts index eb0031dc2e412..1074373e7a1f0 100644 --- a/clients/client-api-gateway/src/commands/GetDocumentationPartCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDocumentationPartCommand.ts @@ -76,6 +76,7 @@ export interface GetDocumentationPartCommandOutput extends DocumentationPart, __ * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetDocumentationPartCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetDocumentationPartsCommand.ts b/clients/client-api-gateway/src/commands/GetDocumentationPartsCommand.ts index b58a253a5e830..d862b33745d1f 100644 --- a/clients/client-api-gateway/src/commands/GetDocumentationPartsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDocumentationPartsCommand.ts @@ -86,6 +86,7 @@ export interface GetDocumentationPartsCommandOutput extends DocumentationParts, * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetDocumentationPartsCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetDocumentationVersionCommand.ts b/clients/client-api-gateway/src/commands/GetDocumentationVersionCommand.ts index 7a1547995ead1..c4e33a125c5f0 100644 --- a/clients/client-api-gateway/src/commands/GetDocumentationVersionCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDocumentationVersionCommand.ts @@ -67,6 +67,7 @@ export interface GetDocumentationVersionCommandOutput extends DocumentationVersi * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetDocumentationVersionCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetDocumentationVersionsCommand.ts b/clients/client-api-gateway/src/commands/GetDocumentationVersionsCommand.ts index 76c87cf57ca64..0b23485747ea4 100644 --- a/clients/client-api-gateway/src/commands/GetDocumentationVersionsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDocumentationVersionsCommand.ts @@ -76,6 +76,7 @@ export interface GetDocumentationVersionsCommandOutput extends DocumentationVers * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetDocumentationVersionsCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetDomainNameAccessAssociationsCommand.ts b/clients/client-api-gateway/src/commands/GetDomainNameAccessAssociationsCommand.ts index bf6fed19b8c03..3bbf8bd8d7ac9 100644 --- a/clients/client-api-gateway/src/commands/GetDomainNameAccessAssociationsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDomainNameAccessAssociationsCommand.ts @@ -83,6 +83,7 @@ export interface GetDomainNameAccessAssociationsCommandOutput extends DomainName * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetDomainNameAccessAssociationsCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetDomainNameCommand.ts b/clients/client-api-gateway/src/commands/GetDomainNameCommand.ts index 357f06944f91c..e6f491512676c 100644 --- a/clients/client-api-gateway/src/commands/GetDomainNameCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDomainNameCommand.ts @@ -103,6 +103,7 @@ export interface GetDomainNameCommandOutput extends DomainName, __MetadataBearer * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetDomainNameCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetDomainNamesCommand.ts b/clients/client-api-gateway/src/commands/GetDomainNamesCommand.ts index 7c4d3da78c2c6..d3f81408f4190 100644 --- a/clients/client-api-gateway/src/commands/GetDomainNamesCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDomainNamesCommand.ts @@ -109,6 +109,7 @@ export interface GetDomainNamesCommandOutput extends DomainNames, __MetadataBear * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetDomainNamesCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetExportCommand.ts b/clients/client-api-gateway/src/commands/GetExportCommand.ts index 67593ab6d90a5..e3b80d206204c 100644 --- a/clients/client-api-gateway/src/commands/GetExportCommand.ts +++ b/clients/client-api-gateway/src/commands/GetExportCommand.ts @@ -89,6 +89,7 @@ export interface GetExportCommandOutput extends GetExportCommandOutputType, __Me * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetExportCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetGatewayResponseCommand.ts b/clients/client-api-gateway/src/commands/GetGatewayResponseCommand.ts index 3436cb6bc3a68..9d2622092a03e 100644 --- a/clients/client-api-gateway/src/commands/GetGatewayResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/GetGatewayResponseCommand.ts @@ -76,6 +76,7 @@ export interface GetGatewayResponseCommandOutput extends GatewayResponse, __Meta * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetGatewayResponseCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetGatewayResponsesCommand.ts b/clients/client-api-gateway/src/commands/GetGatewayResponsesCommand.ts index 6ddf76d6290d6..8cfccecc17ec9 100644 --- a/clients/client-api-gateway/src/commands/GetGatewayResponsesCommand.ts +++ b/clients/client-api-gateway/src/commands/GetGatewayResponsesCommand.ts @@ -82,6 +82,7 @@ export interface GetGatewayResponsesCommandOutput extends GatewayResponses, __Me * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetGatewayResponsesCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetIntegrationCommand.ts b/clients/client-api-gateway/src/commands/GetIntegrationCommand.ts index add9561a9ff66..34ff3d8003355 100644 --- a/clients/client-api-gateway/src/commands/GetIntegrationCommand.ts +++ b/clients/client-api-gateway/src/commands/GetIntegrationCommand.ts @@ -103,6 +103,7 @@ export interface GetIntegrationCommandOutput extends Integration, __MetadataBear * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetIntegrationCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetIntegrationResponseCommand.ts b/clients/client-api-gateway/src/commands/GetIntegrationResponseCommand.ts index 27027fde2c563..e17a25b6405fb 100644 --- a/clients/client-api-gateway/src/commands/GetIntegrationResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/GetIntegrationResponseCommand.ts @@ -78,6 +78,7 @@ export interface GetIntegrationResponseCommandOutput extends IntegrationResponse * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetIntegrationResponseCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetMethodCommand.ts b/clients/client-api-gateway/src/commands/GetMethodCommand.ts index c1bbe7b08341e..fe61ed38febb1 100644 --- a/clients/client-api-gateway/src/commands/GetMethodCommand.ts +++ b/clients/client-api-gateway/src/commands/GetMethodCommand.ts @@ -120,6 +120,7 @@ export interface GetMethodCommandOutput extends Method, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetMethodCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetMethodResponseCommand.ts b/clients/client-api-gateway/src/commands/GetMethodResponseCommand.ts index a6ecab5c32eb7..8eaf86d072e3d 100644 --- a/clients/client-api-gateway/src/commands/GetMethodResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/GetMethodResponseCommand.ts @@ -73,6 +73,7 @@ export interface GetMethodResponseCommandOutput extends MethodResponse, __Metada * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetMethodResponseCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetModelCommand.ts b/clients/client-api-gateway/src/commands/GetModelCommand.ts index 36d9d126114bc..8a7d4a059fbbb 100644 --- a/clients/client-api-gateway/src/commands/GetModelCommand.ts +++ b/clients/client-api-gateway/src/commands/GetModelCommand.ts @@ -73,6 +73,7 @@ export interface GetModelCommandOutput extends Model, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetModelCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetModelTemplateCommand.ts b/clients/client-api-gateway/src/commands/GetModelTemplateCommand.ts index e705f25134c86..c7e77302e129c 100644 --- a/clients/client-api-gateway/src/commands/GetModelTemplateCommand.ts +++ b/clients/client-api-gateway/src/commands/GetModelTemplateCommand.ts @@ -68,6 +68,7 @@ export interface GetModelTemplateCommandOutput extends Template, __MetadataBeare * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetModelTemplateCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetModelsCommand.ts b/clients/client-api-gateway/src/commands/GetModelsCommand.ts index 9c31368e8a35b..2e4ea4becba97 100644 --- a/clients/client-api-gateway/src/commands/GetModelsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetModelsCommand.ts @@ -78,6 +78,7 @@ export interface GetModelsCommandOutput extends Models, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetModelsCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetRequestValidatorCommand.ts b/clients/client-api-gateway/src/commands/GetRequestValidatorCommand.ts index c58d4dc88c87a..5a95c125fc247 100644 --- a/clients/client-api-gateway/src/commands/GetRequestValidatorCommand.ts +++ b/clients/client-api-gateway/src/commands/GetRequestValidatorCommand.ts @@ -71,6 +71,7 @@ export interface GetRequestValidatorCommandOutput extends RequestValidator, __Me * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetRequestValidatorCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetRequestValidatorsCommand.ts b/clients/client-api-gateway/src/commands/GetRequestValidatorsCommand.ts index 775906f30a066..25dcd46ffa02e 100644 --- a/clients/client-api-gateway/src/commands/GetRequestValidatorsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetRequestValidatorsCommand.ts @@ -77,6 +77,7 @@ export interface GetRequestValidatorsCommandOutput extends RequestValidators, __ * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetRequestValidatorsCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetResourceCommand.ts b/clients/client-api-gateway/src/commands/GetResourceCommand.ts index a5c52f59a56c7..2ad4ce05d4934 100644 --- a/clients/client-api-gateway/src/commands/GetResourceCommand.ts +++ b/clients/client-api-gateway/src/commands/GetResourceCommand.ts @@ -130,6 +130,7 @@ export interface GetResourceCommandOutput extends Resource, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetResourceCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetResourcesCommand.ts b/clients/client-api-gateway/src/commands/GetResourcesCommand.ts index 1e9471231f3f1..f2d4d00e3d802 100644 --- a/clients/client-api-gateway/src/commands/GetResourcesCommand.ts +++ b/clients/client-api-gateway/src/commands/GetResourcesCommand.ts @@ -139,6 +139,7 @@ export interface GetResourcesCommandOutput extends Resources, __MetadataBearer { * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetResourcesCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetRestApiCommand.ts b/clients/client-api-gateway/src/commands/GetRestApiCommand.ts index 993acc1a8b511..bfba1087ea449 100644 --- a/clients/client-api-gateway/src/commands/GetRestApiCommand.ts +++ b/clients/client-api-gateway/src/commands/GetRestApiCommand.ts @@ -93,6 +93,7 @@ export interface GetRestApiCommandOutput extends RestApi, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetRestApiCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetRestApisCommand.ts b/clients/client-api-gateway/src/commands/GetRestApisCommand.ts index 784dc2a1ffa87..6aa8bf530deb0 100644 --- a/clients/client-api-gateway/src/commands/GetRestApisCommand.ts +++ b/clients/client-api-gateway/src/commands/GetRestApisCommand.ts @@ -99,6 +99,7 @@ export interface GetRestApisCommandOutput extends RestApis, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetRestApisCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetSdkCommand.ts b/clients/client-api-gateway/src/commands/GetSdkCommand.ts index ad7b1a54ae983..ee8588921972c 100644 --- a/clients/client-api-gateway/src/commands/GetSdkCommand.ts +++ b/clients/client-api-gateway/src/commands/GetSdkCommand.ts @@ -88,6 +88,7 @@ export interface GetSdkCommandOutput extends GetSdkCommandOutputType, __Metadata * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetSdkCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetSdkTypeCommand.ts b/clients/client-api-gateway/src/commands/GetSdkTypeCommand.ts index 13586626ef6f5..ee14e1e4d5c65 100644 --- a/clients/client-api-gateway/src/commands/GetSdkTypeCommand.ts +++ b/clients/client-api-gateway/src/commands/GetSdkTypeCommand.ts @@ -78,6 +78,7 @@ export interface GetSdkTypeCommandOutput extends SdkType, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetSdkTypeCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetSdkTypesCommand.ts b/clients/client-api-gateway/src/commands/GetSdkTypesCommand.ts index 878c4835c2c97..c6f8fdf6c98da 100644 --- a/clients/client-api-gateway/src/commands/GetSdkTypesCommand.ts +++ b/clients/client-api-gateway/src/commands/GetSdkTypesCommand.ts @@ -83,6 +83,7 @@ export interface GetSdkTypesCommandOutput extends SdkTypes, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetSdkTypesCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetStageCommand.ts b/clients/client-api-gateway/src/commands/GetStageCommand.ts index baeca2c0c77e4..fb41b78bcd0d4 100644 --- a/clients/client-api-gateway/src/commands/GetStageCommand.ts +++ b/clients/client-api-gateway/src/commands/GetStageCommand.ts @@ -117,6 +117,7 @@ export interface GetStageCommandOutput extends Stage, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetStageCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetStagesCommand.ts b/clients/client-api-gateway/src/commands/GetStagesCommand.ts index 0ce13e94bf24b..cfb720ac71442 100644 --- a/clients/client-api-gateway/src/commands/GetStagesCommand.ts +++ b/clients/client-api-gateway/src/commands/GetStagesCommand.ts @@ -121,6 +121,7 @@ export interface GetStagesCommandOutput extends Stages, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetStagesCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetTagsCommand.ts b/clients/client-api-gateway/src/commands/GetTagsCommand.ts index 5c43599ff865b..e300d872cea95 100644 --- a/clients/client-api-gateway/src/commands/GetTagsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetTagsCommand.ts @@ -71,6 +71,7 @@ export interface GetTagsCommandOutput extends Tags, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetTagsCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetUsageCommand.ts b/clients/client-api-gateway/src/commands/GetUsageCommand.ts index fe11aaaf7f796..a039afd19c726 100644 --- a/clients/client-api-gateway/src/commands/GetUsageCommand.ts +++ b/clients/client-api-gateway/src/commands/GetUsageCommand.ts @@ -82,6 +82,7 @@ export interface GetUsageCommandOutput extends Usage, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetUsageCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetUsagePlanCommand.ts b/clients/client-api-gateway/src/commands/GetUsagePlanCommand.ts index ca61ceb3d56d9..3df01dc0e0c37 100644 --- a/clients/client-api-gateway/src/commands/GetUsagePlanCommand.ts +++ b/clients/client-api-gateway/src/commands/GetUsagePlanCommand.ts @@ -94,6 +94,7 @@ export interface GetUsagePlanCommandOutput extends UsagePlan, __MetadataBearer { * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetUsagePlanCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetUsagePlanKeyCommand.ts b/clients/client-api-gateway/src/commands/GetUsagePlanKeyCommand.ts index 482e4f3fdbade..809b6d5ec95c7 100644 --- a/clients/client-api-gateway/src/commands/GetUsagePlanKeyCommand.ts +++ b/clients/client-api-gateway/src/commands/GetUsagePlanKeyCommand.ts @@ -71,6 +71,7 @@ export interface GetUsagePlanKeyCommandOutput extends UsagePlanKey, __MetadataBe * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetUsagePlanKeyCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetUsagePlanKeysCommand.ts b/clients/client-api-gateway/src/commands/GetUsagePlanKeysCommand.ts index 45326b8568461..b3cca5f2584ad 100644 --- a/clients/client-api-gateway/src/commands/GetUsagePlanKeysCommand.ts +++ b/clients/client-api-gateway/src/commands/GetUsagePlanKeysCommand.ts @@ -78,6 +78,7 @@ export interface GetUsagePlanKeysCommandOutput extends UsagePlanKeys, __Metadata * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetUsagePlanKeysCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetUsagePlansCommand.ts b/clients/client-api-gateway/src/commands/GetUsagePlansCommand.ts index e7010c00bcb17..39cd4ebf476d3 100644 --- a/clients/client-api-gateway/src/commands/GetUsagePlansCommand.ts +++ b/clients/client-api-gateway/src/commands/GetUsagePlansCommand.ts @@ -101,6 +101,7 @@ export interface GetUsagePlansCommandOutput extends UsagePlans, __MetadataBearer * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetUsagePlansCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetVpcLinkCommand.ts b/clients/client-api-gateway/src/commands/GetVpcLinkCommand.ts index 2ce80ad860c1d..21998049dc8aa 100644 --- a/clients/client-api-gateway/src/commands/GetVpcLinkCommand.ts +++ b/clients/client-api-gateway/src/commands/GetVpcLinkCommand.ts @@ -77,6 +77,7 @@ export interface GetVpcLinkCommandOutput extends VpcLink, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetVpcLinkCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/GetVpcLinksCommand.ts b/clients/client-api-gateway/src/commands/GetVpcLinksCommand.ts index 1a03d0cc015d4..38dfa3469ee13 100644 --- a/clients/client-api-gateway/src/commands/GetVpcLinksCommand.ts +++ b/clients/client-api-gateway/src/commands/GetVpcLinksCommand.ts @@ -83,6 +83,7 @@ export interface GetVpcLinksCommandOutput extends VpcLinks, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class GetVpcLinksCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/ImportApiKeysCommand.ts b/clients/client-api-gateway/src/commands/ImportApiKeysCommand.ts index a9d7bd5c6931c..22191f562422f 100644 --- a/clients/client-api-gateway/src/commands/ImportApiKeysCommand.ts +++ b/clients/client-api-gateway/src/commands/ImportApiKeysCommand.ts @@ -87,6 +87,7 @@ export interface ImportApiKeysCommandOutput extends ApiKeyIds, __MetadataBearer * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class ImportApiKeysCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/ImportDocumentationPartsCommand.ts b/clients/client-api-gateway/src/commands/ImportDocumentationPartsCommand.ts index 4f7d49884c5d5..495b1e36cbde3 100644 --- a/clients/client-api-gateway/src/commands/ImportDocumentationPartsCommand.ts +++ b/clients/client-api-gateway/src/commands/ImportDocumentationPartsCommand.ts @@ -88,6 +88,7 @@ export interface ImportDocumentationPartsCommandOutput extends DocumentationPart * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class ImportDocumentationPartsCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/ImportRestApiCommand.ts b/clients/client-api-gateway/src/commands/ImportRestApiCommand.ts index 67e8f8f9e5f57..d774b3410c461 100644 --- a/clients/client-api-gateway/src/commands/ImportRestApiCommand.ts +++ b/clients/client-api-gateway/src/commands/ImportRestApiCommand.ts @@ -110,6 +110,7 @@ export interface ImportRestApiCommandOutput extends RestApi, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class ImportRestApiCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/PutGatewayResponseCommand.ts b/clients/client-api-gateway/src/commands/PutGatewayResponseCommand.ts index 00adf3d2db600..9dc969cc5a525 100644 --- a/clients/client-api-gateway/src/commands/PutGatewayResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/PutGatewayResponseCommand.ts @@ -89,6 +89,7 @@ export interface PutGatewayResponseCommandOutput extends GatewayResponse, __Meta * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class PutGatewayResponseCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/PutIntegrationCommand.ts b/clients/client-api-gateway/src/commands/PutIntegrationCommand.ts index 0dfb1e2c37e6b..b2ded30518c5e 100644 --- a/clients/client-api-gateway/src/commands/PutIntegrationCommand.ts +++ b/clients/client-api-gateway/src/commands/PutIntegrationCommand.ts @@ -131,6 +131,7 @@ export interface PutIntegrationCommandOutput extends Integration, __MetadataBear * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class PutIntegrationCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/PutIntegrationResponseCommand.ts b/clients/client-api-gateway/src/commands/PutIntegrationResponseCommand.ts index b5096ff218941..ae0e8fba656a7 100644 --- a/clients/client-api-gateway/src/commands/PutIntegrationResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/PutIntegrationResponseCommand.ts @@ -92,6 +92,7 @@ export interface PutIntegrationResponseCommandOutput extends IntegrationResponse * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class PutIntegrationResponseCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/PutMethodCommand.ts b/clients/client-api-gateway/src/commands/PutMethodCommand.ts index 1f7b08dab0153..85a9ddb0696a7 100644 --- a/clients/client-api-gateway/src/commands/PutMethodCommand.ts +++ b/clients/client-api-gateway/src/commands/PutMethodCommand.ts @@ -143,6 +143,7 @@ export interface PutMethodCommandOutput extends Method, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class PutMethodCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/PutMethodResponseCommand.ts b/clients/client-api-gateway/src/commands/PutMethodResponseCommand.ts index 97abbab73ca74..5deb2e7bdf205 100644 --- a/clients/client-api-gateway/src/commands/PutMethodResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/PutMethodResponseCommand.ts @@ -88,6 +88,7 @@ export interface PutMethodResponseCommandOutput extends MethodResponse, __Metada * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class PutMethodResponseCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/PutRestApiCommand.ts b/clients/client-api-gateway/src/commands/PutRestApiCommand.ts index 149d4f5111509..2bc31f5805072 100644 --- a/clients/client-api-gateway/src/commands/PutRestApiCommand.ts +++ b/clients/client-api-gateway/src/commands/PutRestApiCommand.ts @@ -113,6 +113,7 @@ export interface PutRestApiCommandOutput extends RestApi, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class PutRestApiCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/RejectDomainNameAccessAssociationCommand.ts b/clients/client-api-gateway/src/commands/RejectDomainNameAccessAssociationCommand.ts index 3bb54b780dded..113aedb9c6cae 100644 --- a/clients/client-api-gateway/src/commands/RejectDomainNameAccessAssociationCommand.ts +++ b/clients/client-api-gateway/src/commands/RejectDomainNameAccessAssociationCommand.ts @@ -73,6 +73,7 @@ export interface RejectDomainNameAccessAssociationCommandOutput extends __Metada * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class RejectDomainNameAccessAssociationCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/TagResourceCommand.ts b/clients/client-api-gateway/src/commands/TagResourceCommand.ts index 8748b6aa34edb..353af173a8bbb 100644 --- a/clients/client-api-gateway/src/commands/TagResourceCommand.ts +++ b/clients/client-api-gateway/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/TestInvokeAuthorizerCommand.ts b/clients/client-api-gateway/src/commands/TestInvokeAuthorizerCommand.ts index d228addb26aa6..ad92dd0793924 100644 --- a/clients/client-api-gateway/src/commands/TestInvokeAuthorizerCommand.ts +++ b/clients/client-api-gateway/src/commands/TestInvokeAuthorizerCommand.ts @@ -96,6 +96,7 @@ export interface TestInvokeAuthorizerCommandOutput extends TestInvokeAuthorizerR * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class TestInvokeAuthorizerCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/TestInvokeMethodCommand.ts b/clients/client-api-gateway/src/commands/TestInvokeMethodCommand.ts index 557bb5c4241f6..95ede09473725 100644 --- a/clients/client-api-gateway/src/commands/TestInvokeMethodCommand.ts +++ b/clients/client-api-gateway/src/commands/TestInvokeMethodCommand.ts @@ -94,6 +94,7 @@ export interface TestInvokeMethodCommandOutput extends TestInvokeMethodResponse, * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class TestInvokeMethodCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UntagResourceCommand.ts b/clients/client-api-gateway/src/commands/UntagResourceCommand.ts index 2786a1a1fe479..39c00d3a2af85 100644 --- a/clients/client-api-gateway/src/commands/UntagResourceCommand.ts +++ b/clients/client-api-gateway/src/commands/UntagResourceCommand.ts @@ -74,6 +74,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateAccountCommand.ts b/clients/client-api-gateway/src/commands/UpdateAccountCommand.ts index efd17773c956c..f53a13fee1957 100644 --- a/clients/client-api-gateway/src/commands/UpdateAccountCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateAccountCommand.ts @@ -88,6 +88,7 @@ export interface UpdateAccountCommandOutput extends Account, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateAccountCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateApiKeyCommand.ts b/clients/client-api-gateway/src/commands/UpdateApiKeyCommand.ts index 5e88c5b58b0e4..ab55cf4a834e1 100644 --- a/clients/client-api-gateway/src/commands/UpdateApiKeyCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateApiKeyCommand.ts @@ -94,6 +94,7 @@ export interface UpdateApiKeyCommandOutput extends ApiKey, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateApiKeyCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateAuthorizerCommand.ts b/clients/client-api-gateway/src/commands/UpdateAuthorizerCommand.ts index 435295770fcaf..30608121011c6 100644 --- a/clients/client-api-gateway/src/commands/UpdateAuthorizerCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateAuthorizerCommand.ts @@ -93,6 +93,7 @@ export interface UpdateAuthorizerCommandOutput extends Authorizer, __MetadataBea * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateAuthorizerCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateBasePathMappingCommand.ts b/clients/client-api-gateway/src/commands/UpdateBasePathMappingCommand.ts index 8b50bf2fa34be..ae7eccb0961c8 100644 --- a/clients/client-api-gateway/src/commands/UpdateBasePathMappingCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateBasePathMappingCommand.ts @@ -85,6 +85,7 @@ export interface UpdateBasePathMappingCommandOutput extends BasePathMapping, __M * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateBasePathMappingCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateClientCertificateCommand.ts b/clients/client-api-gateway/src/commands/UpdateClientCertificateCommand.ts index 9d3a600d95d11..656bb23c4a907 100644 --- a/clients/client-api-gateway/src/commands/UpdateClientCertificateCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateClientCertificateCommand.ts @@ -88,6 +88,7 @@ export interface UpdateClientCertificateCommandOutput extends ClientCertificate, * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateClientCertificateCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateDeploymentCommand.ts b/clients/client-api-gateway/src/commands/UpdateDeploymentCommand.ts index 8a92b5c436b9b..e85acfa545e55 100644 --- a/clients/client-api-gateway/src/commands/UpdateDeploymentCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateDeploymentCommand.ts @@ -95,6 +95,7 @@ export interface UpdateDeploymentCommandOutput extends Deployment, __MetadataBea * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateDeploymentCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateDocumentationPartCommand.ts b/clients/client-api-gateway/src/commands/UpdateDocumentationPartCommand.ts index 79546e79ccddb..940546aba6ead 100644 --- a/clients/client-api-gateway/src/commands/UpdateDocumentationPartCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateDocumentationPartCommand.ts @@ -90,6 +90,7 @@ export interface UpdateDocumentationPartCommandOutput extends DocumentationPart, * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateDocumentationPartCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateDocumentationVersionCommand.ts b/clients/client-api-gateway/src/commands/UpdateDocumentationVersionCommand.ts index beddb5f1663bd..c23beda956360 100644 --- a/clients/client-api-gateway/src/commands/UpdateDocumentationVersionCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateDocumentationVersionCommand.ts @@ -84,6 +84,7 @@ export interface UpdateDocumentationVersionCommandOutput extends DocumentationVe * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateDocumentationVersionCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateDomainNameCommand.ts b/clients/client-api-gateway/src/commands/UpdateDomainNameCommand.ts index 0aa64607dd2e7..36db7ae0f2077 100644 --- a/clients/client-api-gateway/src/commands/UpdateDomainNameCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateDomainNameCommand.ts @@ -117,6 +117,7 @@ export interface UpdateDomainNameCommandOutput extends DomainName, __MetadataBea * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateDomainNameCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateGatewayResponseCommand.ts b/clients/client-api-gateway/src/commands/UpdateGatewayResponseCommand.ts index 0676b39cbab49..a3ca52c04ed32 100644 --- a/clients/client-api-gateway/src/commands/UpdateGatewayResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateGatewayResponseCommand.ts @@ -90,6 +90,7 @@ export interface UpdateGatewayResponseCommandOutput extends GatewayResponse, __M * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateGatewayResponseCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateIntegrationCommand.ts b/clients/client-api-gateway/src/commands/UpdateIntegrationCommand.ts index 7d6818c12ad5c..3976d8c557ecb 100644 --- a/clients/client-api-gateway/src/commands/UpdateIntegrationCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateIntegrationCommand.ts @@ -117,6 +117,7 @@ export interface UpdateIntegrationCommandOutput extends Integration, __MetadataB * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateIntegrationCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateIntegrationResponseCommand.ts b/clients/client-api-gateway/src/commands/UpdateIntegrationResponseCommand.ts index aef4c0c413d89..f0118a48d01a0 100644 --- a/clients/client-api-gateway/src/commands/UpdateIntegrationResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateIntegrationResponseCommand.ts @@ -92,6 +92,7 @@ export interface UpdateIntegrationResponseCommandOutput extends IntegrationRespo * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateIntegrationResponseCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateMethodCommand.ts b/clients/client-api-gateway/src/commands/UpdateMethodCommand.ts index 9ac71650d81d6..df6dea156c302 100644 --- a/clients/client-api-gateway/src/commands/UpdateMethodCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateMethodCommand.ts @@ -134,6 +134,7 @@ export interface UpdateMethodCommandOutput extends Method, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateMethodCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateMethodResponseCommand.ts b/clients/client-api-gateway/src/commands/UpdateMethodResponseCommand.ts index d78638bc264ff..2e6bb006a12ec 100644 --- a/clients/client-api-gateway/src/commands/UpdateMethodResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateMethodResponseCommand.ts @@ -90,6 +90,7 @@ export interface UpdateMethodResponseCommandOutput extends MethodResponse, __Met * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateMethodResponseCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateModelCommand.ts b/clients/client-api-gateway/src/commands/UpdateModelCommand.ts index 2b40d35ce9b7e..ddb49434c368e 100644 --- a/clients/client-api-gateway/src/commands/UpdateModelCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateModelCommand.ts @@ -86,6 +86,7 @@ export interface UpdateModelCommandOutput extends Model, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateModelCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateRequestValidatorCommand.ts b/clients/client-api-gateway/src/commands/UpdateRequestValidatorCommand.ts index 4bc670e6aeba6..721d41abb8682 100644 --- a/clients/client-api-gateway/src/commands/UpdateRequestValidatorCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateRequestValidatorCommand.ts @@ -85,6 +85,7 @@ export interface UpdateRequestValidatorCommandOutput extends RequestValidator, _ * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateRequestValidatorCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateResourceCommand.ts b/clients/client-api-gateway/src/commands/UpdateResourceCommand.ts index d5fb6b2977455..f9ae40c38d013 100644 --- a/clients/client-api-gateway/src/commands/UpdateResourceCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateResourceCommand.ts @@ -141,6 +141,7 @@ export interface UpdateResourceCommandOutput extends Resource, __MetadataBearer * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateResourceCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateRestApiCommand.ts b/clients/client-api-gateway/src/commands/UpdateRestApiCommand.ts index a1f95679bded1..feb14b77f124a 100644 --- a/clients/client-api-gateway/src/commands/UpdateRestApiCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateRestApiCommand.ts @@ -107,6 +107,7 @@ export interface UpdateRestApiCommandOutput extends RestApi, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateRestApiCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateStageCommand.ts b/clients/client-api-gateway/src/commands/UpdateStageCommand.ts index 69c498105d752..9695eae2976a9 100644 --- a/clients/client-api-gateway/src/commands/UpdateStageCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateStageCommand.ts @@ -125,6 +125,7 @@ export interface UpdateStageCommandOutput extends Stage, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateStageCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateUsageCommand.ts b/clients/client-api-gateway/src/commands/UpdateUsageCommand.ts index 1ec09215b77e7..74d91682a63d6 100644 --- a/clients/client-api-gateway/src/commands/UpdateUsageCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateUsageCommand.ts @@ -92,6 +92,7 @@ export interface UpdateUsageCommandOutput extends Usage, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateUsageCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateUsagePlanCommand.ts b/clients/client-api-gateway/src/commands/UpdateUsagePlanCommand.ts index 29b2c9084ad96..a28e830229ba5 100644 --- a/clients/client-api-gateway/src/commands/UpdateUsagePlanCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateUsagePlanCommand.ts @@ -108,6 +108,7 @@ export interface UpdateUsagePlanCommandOutput extends UsagePlan, __MetadataBeare * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateUsagePlanCommand extends $Command diff --git a/clients/client-api-gateway/src/commands/UpdateVpcLinkCommand.ts b/clients/client-api-gateway/src/commands/UpdateVpcLinkCommand.ts index 3d8972d664558..fd8799b7c17dc 100644 --- a/clients/client-api-gateway/src/commands/UpdateVpcLinkCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateVpcLinkCommand.ts @@ -91,6 +91,7 @@ export interface UpdateVpcLinkCommandOutput extends VpcLink, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * * @public */ export class UpdateVpcLinkCommand extends $Command diff --git a/clients/client-apigatewaymanagementapi/src/commands/DeleteConnectionCommand.ts b/clients/client-apigatewaymanagementapi/src/commands/DeleteConnectionCommand.ts index 083ecd2cdb3cb..ed264f8eab357 100644 --- a/clients/client-apigatewaymanagementapi/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-apigatewaymanagementapi/src/commands/DeleteConnectionCommand.ts @@ -66,6 +66,7 @@ export interface DeleteConnectionCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayManagementApiServiceException} *

Base exception class for all service exceptions from ApiGatewayManagementApi service.

* + * * @public */ export class DeleteConnectionCommand extends $Command diff --git a/clients/client-apigatewaymanagementapi/src/commands/GetConnectionCommand.ts b/clients/client-apigatewaymanagementapi/src/commands/GetConnectionCommand.ts index 99b94365fa08e..32869e66003b1 100644 --- a/clients/client-apigatewaymanagementapi/src/commands/GetConnectionCommand.ts +++ b/clients/client-apigatewaymanagementapi/src/commands/GetConnectionCommand.ts @@ -73,6 +73,7 @@ export interface GetConnectionCommandOutput extends GetConnectionResponse, __Met * @throws {@link ApiGatewayManagementApiServiceException} *

Base exception class for all service exceptions from ApiGatewayManagementApi service.

* + * * @public */ export class GetConnectionCommand extends $Command diff --git a/clients/client-apigatewaymanagementapi/src/commands/PostToConnectionCommand.ts b/clients/client-apigatewaymanagementapi/src/commands/PostToConnectionCommand.ts index 2490c5f773c3c..823d7b0ea18c9 100644 --- a/clients/client-apigatewaymanagementapi/src/commands/PostToConnectionCommand.ts +++ b/clients/client-apigatewaymanagementapi/src/commands/PostToConnectionCommand.ts @@ -77,6 +77,7 @@ export interface PostToConnectionCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayManagementApiServiceException} *

Base exception class for all service exceptions from ApiGatewayManagementApi service.

* + * * @public */ export class PostToConnectionCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/CreateApiCommand.ts b/clients/client-apigatewayv2/src/commands/CreateApiCommand.ts index 79276716cd7cd..7fe506da064fa 100644 --- a/clients/client-apigatewayv2/src/commands/CreateApiCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateApiCommand.ts @@ -132,6 +132,7 @@ export interface CreateApiCommandOutput extends CreateApiResponse, __MetadataBea * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class CreateApiCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/CreateApiMappingCommand.ts b/clients/client-apigatewayv2/src/commands/CreateApiMappingCommand.ts index 6932d1fcb8de5..becf8f12c0cbc 100644 --- a/clients/client-apigatewayv2/src/commands/CreateApiMappingCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateApiMappingCommand.ts @@ -73,6 +73,7 @@ export interface CreateApiMappingCommandOutput extends CreateApiMappingResponse, * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class CreateApiMappingCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/CreateAuthorizerCommand.ts b/clients/client-apigatewayv2/src/commands/CreateAuthorizerCommand.ts index 6b7ebf311d6e7..cfd715d9e1d2e 100644 --- a/clients/client-apigatewayv2/src/commands/CreateAuthorizerCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateAuthorizerCommand.ts @@ -101,6 +101,7 @@ export interface CreateAuthorizerCommandOutput extends CreateAuthorizerResponse, * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class CreateAuthorizerCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/CreateDeploymentCommand.ts b/clients/client-apigatewayv2/src/commands/CreateDeploymentCommand.ts index 72d89423c43a1..925a8bc02fcb9 100644 --- a/clients/client-apigatewayv2/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateDeploymentCommand.ts @@ -74,6 +74,7 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse, * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class CreateDeploymentCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/CreateDomainNameCommand.ts b/clients/client-apigatewayv2/src/commands/CreateDomainNameCommand.ts index b6288ea96d720..a8be5e4f6300f 100644 --- a/clients/client-apigatewayv2/src/commands/CreateDomainNameCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateDomainNameCommand.ts @@ -115,6 +115,7 @@ export interface CreateDomainNameCommandOutput extends CreateDomainNameResponse, * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class CreateDomainNameCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/CreateIntegrationCommand.ts b/clients/client-apigatewayv2/src/commands/CreateIntegrationCommand.ts index 08199c3fa6179..f6878c4151771 100644 --- a/clients/client-apigatewayv2/src/commands/CreateIntegrationCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateIntegrationCommand.ts @@ -123,6 +123,7 @@ export interface CreateIntegrationCommandOutput extends CreateIntegrationResult, * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class CreateIntegrationCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/CreateIntegrationResponseCommand.ts b/clients/client-apigatewayv2/src/commands/CreateIntegrationResponseCommand.ts index 2baacc0125df2..7407339a695f8 100644 --- a/clients/client-apigatewayv2/src/commands/CreateIntegrationResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateIntegrationResponseCommand.ts @@ -86,6 +86,7 @@ export interface CreateIntegrationResponseCommandOutput extends CreateIntegratio * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class CreateIntegrationResponseCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/CreateModelCommand.ts b/clients/client-apigatewayv2/src/commands/CreateModelCommand.ts index e0bd1c9c5b6fc..5722d50eb6617 100644 --- a/clients/client-apigatewayv2/src/commands/CreateModelCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateModelCommand.ts @@ -75,6 +75,7 @@ export interface CreateModelCommandOutput extends CreateModelResponse, __Metadat * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class CreateModelCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/CreateRouteCommand.ts b/clients/client-apigatewayv2/src/commands/CreateRouteCommand.ts index d709b89a46626..4443619c5b303 100644 --- a/clients/client-apigatewayv2/src/commands/CreateRouteCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateRouteCommand.ts @@ -106,6 +106,7 @@ export interface CreateRouteCommandOutput extends CreateRouteResult, __MetadataB * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class CreateRouteCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/CreateRouteResponseCommand.ts b/clients/client-apigatewayv2/src/commands/CreateRouteResponseCommand.ts index c13f0531786a3..27623b9753203 100644 --- a/clients/client-apigatewayv2/src/commands/CreateRouteResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateRouteResponseCommand.ts @@ -88,6 +88,7 @@ export interface CreateRouteResponseCommandOutput extends CreateRouteResponseRes * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class CreateRouteResponseCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/CreateStageCommand.ts b/clients/client-apigatewayv2/src/commands/CreateStageCommand.ts index ac71023e16051..a197cfff18c56 100644 --- a/clients/client-apigatewayv2/src/commands/CreateStageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateStageCommand.ts @@ -132,6 +132,7 @@ export interface CreateStageCommandOutput extends CreateStageResponse, __Metadat * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class CreateStageCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/CreateVpcLinkCommand.ts b/clients/client-apigatewayv2/src/commands/CreateVpcLinkCommand.ts index 7d7359034cc95..a15893e5190ed 100644 --- a/clients/client-apigatewayv2/src/commands/CreateVpcLinkCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateVpcLinkCommand.ts @@ -84,6 +84,7 @@ export interface CreateVpcLinkCommandOutput extends CreateVpcLinkResponse, __Met * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class CreateVpcLinkCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteAccessLogSettingsCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteAccessLogSettingsCommand.ts index 4c27fdf8dfeba..8b7df4e64713f 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteAccessLogSettingsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteAccessLogSettingsCommand.ts @@ -60,6 +60,7 @@ export interface DeleteAccessLogSettingsCommandOutput extends __MetadataBearer { * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteAccessLogSettingsCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteApiCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteApiCommand.ts index 8bbd01cec5f72..2346d6d07862c 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteApiCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteApiCommand.ts @@ -59,6 +59,7 @@ export interface DeleteApiCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteApiCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteApiMappingCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteApiMappingCommand.ts index f152e1999e968..5ad88f3fa48ab 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteApiMappingCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteApiMappingCommand.ts @@ -63,6 +63,7 @@ export interface DeleteApiMappingCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteApiMappingCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteAuthorizerCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteAuthorizerCommand.ts index 133b9e3edea81..f77ffbdd3dd2f 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteAuthorizerCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteAuthorizerCommand.ts @@ -60,6 +60,7 @@ export interface DeleteAuthorizerCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteAuthorizerCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteCorsConfigurationCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteCorsConfigurationCommand.ts index ebed8181905dd..98e13315e4b59 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteCorsConfigurationCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteCorsConfigurationCommand.ts @@ -59,6 +59,7 @@ export interface DeleteCorsConfigurationCommandOutput extends __MetadataBearer { * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteCorsConfigurationCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteDeploymentCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteDeploymentCommand.ts index 80b91f87bd9c4..950144a17c033 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteDeploymentCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteDeploymentCommand.ts @@ -60,6 +60,7 @@ export interface DeleteDeploymentCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteDeploymentCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteDomainNameCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteDomainNameCommand.ts index f26ae307ba29b..02ad05f47bc1e 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteDomainNameCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteDomainNameCommand.ts @@ -59,6 +59,7 @@ export interface DeleteDomainNameCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteDomainNameCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteIntegrationCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteIntegrationCommand.ts index 9699d653c2d56..4bf37e6b30d17 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteIntegrationCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteIntegrationCommand.ts @@ -60,6 +60,7 @@ export interface DeleteIntegrationCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteIntegrationCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteIntegrationResponseCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteIntegrationResponseCommand.ts index 2ad9472559d33..9945ee8cb2302 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteIntegrationResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteIntegrationResponseCommand.ts @@ -61,6 +61,7 @@ export interface DeleteIntegrationResponseCommandOutput extends __MetadataBearer * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteIntegrationResponseCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteModelCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteModelCommand.ts index 46e143f2c291b..4237082e4b812 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteModelCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteModelCommand.ts @@ -60,6 +60,7 @@ export interface DeleteModelCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteModelCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteRouteCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteRouteCommand.ts index 8700df7d63edb..c0be713880cd8 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteRouteCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteRouteCommand.ts @@ -60,6 +60,7 @@ export interface DeleteRouteCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteRouteCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteRouteRequestParameterCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteRouteRequestParameterCommand.ts index 291936ca3d7ee..5d66d55767132 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteRouteRequestParameterCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteRouteRequestParameterCommand.ts @@ -64,6 +64,7 @@ export interface DeleteRouteRequestParameterCommandOutput extends __MetadataBear * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteRouteRequestParameterCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteRouteResponseCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteRouteResponseCommand.ts index bc4a17cda7948..6fe3a7822315c 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteRouteResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteRouteResponseCommand.ts @@ -61,6 +61,7 @@ export interface DeleteRouteResponseCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteRouteResponseCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteRouteSettingsCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteRouteSettingsCommand.ts index 222af0398ff18..d562e6a14a30f 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteRouteSettingsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteRouteSettingsCommand.ts @@ -61,6 +61,7 @@ export interface DeleteRouteSettingsCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteRouteSettingsCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteStageCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteStageCommand.ts index 4c96a7a209338..2ae98dba41d7e 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteStageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteStageCommand.ts @@ -60,6 +60,7 @@ export interface DeleteStageCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteStageCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/DeleteVpcLinkCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteVpcLinkCommand.ts index d21110837163d..892670098bbbe 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteVpcLinkCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteVpcLinkCommand.ts @@ -59,6 +59,7 @@ export interface DeleteVpcLinkCommandOutput extends DeleteVpcLinkResponse, __Met * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class DeleteVpcLinkCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/ExportApiCommand.ts b/clients/client-apigatewayv2/src/commands/ExportApiCommand.ts index 90701cc0ba751..8191991e0818d 100644 --- a/clients/client-apigatewayv2/src/commands/ExportApiCommand.ts +++ b/clients/client-apigatewayv2/src/commands/ExportApiCommand.ts @@ -78,6 +78,7 @@ export interface ExportApiCommandOutput extends ExportApiCommandOutputType, __Me * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * */ export class ExportApiCommand extends $Command .classBuilder< diff --git a/clients/client-apigatewayv2/src/commands/GetApiCommand.ts b/clients/client-apigatewayv2/src/commands/GetApiCommand.ts index 05dcbb82339d9..befee70bc9de0 100644 --- a/clients/client-apigatewayv2/src/commands/GetApiCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetApiCommand.ts @@ -97,6 +97,7 @@ export interface GetApiCommandOutput extends GetApiResponse, __MetadataBearer {} * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetApiCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetApiMappingCommand.ts b/clients/client-apigatewayv2/src/commands/GetApiMappingCommand.ts index 3e30b8be5b91d..7eb1f0c23980a 100644 --- a/clients/client-apigatewayv2/src/commands/GetApiMappingCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetApiMappingCommand.ts @@ -68,6 +68,7 @@ export interface GetApiMappingCommandOutput extends GetApiMappingResponse, __Met * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetApiMappingCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetApiMappingsCommand.ts b/clients/client-apigatewayv2/src/commands/GetApiMappingsCommand.ts index 59527446e1663..998fceec8fbdf 100644 --- a/clients/client-apigatewayv2/src/commands/GetApiMappingsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetApiMappingsCommand.ts @@ -74,6 +74,7 @@ export interface GetApiMappingsCommandOutput extends GetApiMappingsResponse, __M * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetApiMappingsCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetApisCommand.ts b/clients/client-apigatewayv2/src/commands/GetApisCommand.ts index fe2ac245f8dd3..356672a3df203 100644 --- a/clients/client-apigatewayv2/src/commands/GetApisCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetApisCommand.ts @@ -106,6 +106,7 @@ export interface GetApisCommandOutput extends GetApisResponse, __MetadataBearer * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetApisCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetAuthorizerCommand.ts b/clients/client-apigatewayv2/src/commands/GetAuthorizerCommand.ts index 55cb5454b94e6..2c28ff1ec469c 100644 --- a/clients/client-apigatewayv2/src/commands/GetAuthorizerCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetAuthorizerCommand.ts @@ -79,6 +79,7 @@ export interface GetAuthorizerCommandOutput extends GetAuthorizerResponse, __Met * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetAuthorizerCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetAuthorizersCommand.ts b/clients/client-apigatewayv2/src/commands/GetAuthorizersCommand.ts index 87bf18025503e..6ac182a0ebfdb 100644 --- a/clients/client-apigatewayv2/src/commands/GetAuthorizersCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetAuthorizersCommand.ts @@ -88,6 +88,7 @@ export interface GetAuthorizersCommandOutput extends GetAuthorizersResponse, __M * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetAuthorizersCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetDeploymentCommand.ts b/clients/client-apigatewayv2/src/commands/GetDeploymentCommand.ts index fe8dd81facc09..f3739c1803b67 100644 --- a/clients/client-apigatewayv2/src/commands/GetDeploymentCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetDeploymentCommand.ts @@ -67,6 +67,7 @@ export interface GetDeploymentCommandOutput extends GetDeploymentResponse, __Met * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetDeploymentCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetDeploymentsCommand.ts b/clients/client-apigatewayv2/src/commands/GetDeploymentsCommand.ts index e56ce909edc38..5e9d38714e048 100644 --- a/clients/client-apigatewayv2/src/commands/GetDeploymentsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetDeploymentsCommand.ts @@ -76,6 +76,7 @@ export interface GetDeploymentsCommandOutput extends GetDeploymentsResponse, __M * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetDeploymentsCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetDomainNameCommand.ts b/clients/client-apigatewayv2/src/commands/GetDomainNameCommand.ts index 50185c726a71a..c885555a8e675 100644 --- a/clients/client-apigatewayv2/src/commands/GetDomainNameCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetDomainNameCommand.ts @@ -86,6 +86,7 @@ export interface GetDomainNameCommandOutput extends GetDomainNameResponse, __Met * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetDomainNameCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetDomainNamesCommand.ts b/clients/client-apigatewayv2/src/commands/GetDomainNamesCommand.ts index dbfe483f277d0..b93a07db15095 100644 --- a/clients/client-apigatewayv2/src/commands/GetDomainNamesCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetDomainNamesCommand.ts @@ -95,6 +95,7 @@ export interface GetDomainNamesCommandOutput extends GetDomainNamesResponse, __M * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetDomainNamesCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetIntegrationCommand.ts b/clients/client-apigatewayv2/src/commands/GetIntegrationCommand.ts index 424455c458073..8f4598761213a 100644 --- a/clients/client-apigatewayv2/src/commands/GetIntegrationCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetIntegrationCommand.ts @@ -91,6 +91,7 @@ export interface GetIntegrationCommandOutput extends GetIntegrationResult, __Met * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetIntegrationCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetIntegrationResponseCommand.ts b/clients/client-apigatewayv2/src/commands/GetIntegrationResponseCommand.ts index 853c60a97f452..412293bef63d7 100644 --- a/clients/client-apigatewayv2/src/commands/GetIntegrationResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetIntegrationResponseCommand.ts @@ -72,6 +72,7 @@ export interface GetIntegrationResponseCommandOutput extends GetIntegrationRespo * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetIntegrationResponseCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetIntegrationResponsesCommand.ts b/clients/client-apigatewayv2/src/commands/GetIntegrationResponsesCommand.ts index 3a1d8caa1d3b0..104dc3f1d45e6 100644 --- a/clients/client-apigatewayv2/src/commands/GetIntegrationResponsesCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetIntegrationResponsesCommand.ts @@ -81,6 +81,7 @@ export interface GetIntegrationResponsesCommandOutput extends GetIntegrationResp * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetIntegrationResponsesCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetIntegrationsCommand.ts b/clients/client-apigatewayv2/src/commands/GetIntegrationsCommand.ts index 2efb4ed70db85..a51c23e6b7c26 100644 --- a/clients/client-apigatewayv2/src/commands/GetIntegrationsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetIntegrationsCommand.ts @@ -100,6 +100,7 @@ export interface GetIntegrationsCommandOutput extends GetIntegrationsResponse, _ * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetIntegrationsCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetModelCommand.ts b/clients/client-apigatewayv2/src/commands/GetModelCommand.ts index cfc13f43155d4..9c93788bc9e84 100644 --- a/clients/client-apigatewayv2/src/commands/GetModelCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetModelCommand.ts @@ -66,6 +66,7 @@ export interface GetModelCommandOutput extends GetModelResponse, __MetadataBeare * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetModelCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetModelTemplateCommand.ts b/clients/client-apigatewayv2/src/commands/GetModelTemplateCommand.ts index b0d8d5425ca3a..4aba8130590ef 100644 --- a/clients/client-apigatewayv2/src/commands/GetModelTemplateCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetModelTemplateCommand.ts @@ -62,6 +62,7 @@ export interface GetModelTemplateCommandOutput extends GetModelTemplateResponse, * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetModelTemplateCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetModelsCommand.ts b/clients/client-apigatewayv2/src/commands/GetModelsCommand.ts index ce737aa19c281..595aeedbce166 100644 --- a/clients/client-apigatewayv2/src/commands/GetModelsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetModelsCommand.ts @@ -75,6 +75,7 @@ export interface GetModelsCommandOutput extends GetModelsResponse, __MetadataBea * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetModelsCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetRouteCommand.ts b/clients/client-apigatewayv2/src/commands/GetRouteCommand.ts index 0dc4ce4fb919b..5991985367ae7 100644 --- a/clients/client-apigatewayv2/src/commands/GetRouteCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetRouteCommand.ts @@ -82,6 +82,7 @@ export interface GetRouteCommandOutput extends GetRouteResult, __MetadataBearer * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetRouteCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetRouteResponseCommand.ts b/clients/client-apigatewayv2/src/commands/GetRouteResponseCommand.ts index ccaee18c351a0..caaca33e3205d 100644 --- a/clients/client-apigatewayv2/src/commands/GetRouteResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetRouteResponseCommand.ts @@ -73,6 +73,7 @@ export interface GetRouteResponseCommandOutput extends GetRouteResponseResponse, * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetRouteResponseCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetRouteResponsesCommand.ts b/clients/client-apigatewayv2/src/commands/GetRouteResponsesCommand.ts index 3e83e2365b968..38a61c49803e2 100644 --- a/clients/client-apigatewayv2/src/commands/GetRouteResponsesCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetRouteResponsesCommand.ts @@ -82,6 +82,7 @@ export interface GetRouteResponsesCommandOutput extends GetRouteResponsesRespons * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetRouteResponsesCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetRoutesCommand.ts b/clients/client-apigatewayv2/src/commands/GetRoutesCommand.ts index 7d8dd886daa33..c625f016e349d 100644 --- a/clients/client-apigatewayv2/src/commands/GetRoutesCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetRoutesCommand.ts @@ -91,6 +91,7 @@ export interface GetRoutesCommandOutput extends GetRoutesResponse, __MetadataBea * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetRoutesCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetStageCommand.ts b/clients/client-apigatewayv2/src/commands/GetStageCommand.ts index 7fb2421cddd25..020c2bc183318 100644 --- a/clients/client-apigatewayv2/src/commands/GetStageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetStageCommand.ts @@ -96,6 +96,7 @@ export interface GetStageCommandOutput extends GetStageResponse, __MetadataBeare * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetStageCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetStagesCommand.ts b/clients/client-apigatewayv2/src/commands/GetStagesCommand.ts index e86ae65d8877e..3fb87ffbf3702 100644 --- a/clients/client-apigatewayv2/src/commands/GetStagesCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetStagesCommand.ts @@ -105,6 +105,7 @@ export interface GetStagesCommandOutput extends GetStagesResponse, __MetadataBea * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetStagesCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetTagsCommand.ts b/clients/client-apigatewayv2/src/commands/GetTagsCommand.ts index f120129ae1066..09b60e5e92154 100644 --- a/clients/client-apigatewayv2/src/commands/GetTagsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetTagsCommand.ts @@ -69,6 +69,7 @@ export interface GetTagsCommandOutput extends GetTagsResponse, __MetadataBearer * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetTagsCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetVpcLinkCommand.ts b/clients/client-apigatewayv2/src/commands/GetVpcLinkCommand.ts index 77e64a5b124ee..15f1fb6856d35 100644 --- a/clients/client-apigatewayv2/src/commands/GetVpcLinkCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetVpcLinkCommand.ts @@ -75,6 +75,7 @@ export interface GetVpcLinkCommandOutput extends GetVpcLinkResponse, __MetadataB * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetVpcLinkCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/GetVpcLinksCommand.ts b/clients/client-apigatewayv2/src/commands/GetVpcLinksCommand.ts index 4010e41f568f3..a6de2f72b34fd 100644 --- a/clients/client-apigatewayv2/src/commands/GetVpcLinksCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetVpcLinksCommand.ts @@ -81,6 +81,7 @@ export interface GetVpcLinksCommandOutput extends GetVpcLinksResponse, __Metadat * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class GetVpcLinksCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/ImportApiCommand.ts b/clients/client-apigatewayv2/src/commands/ImportApiCommand.ts index d475d0cfd18f4..a1c6365e9a54f 100644 --- a/clients/client-apigatewayv2/src/commands/ImportApiCommand.ts +++ b/clients/client-apigatewayv2/src/commands/ImportApiCommand.ts @@ -105,6 +105,7 @@ export interface ImportApiCommandOutput extends ImportApiResponse, __MetadataBea * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class ImportApiCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/ReimportApiCommand.ts b/clients/client-apigatewayv2/src/commands/ReimportApiCommand.ts index eca767406c146..e1628a1e20e4e 100644 --- a/clients/client-apigatewayv2/src/commands/ReimportApiCommand.ts +++ b/clients/client-apigatewayv2/src/commands/ReimportApiCommand.ts @@ -106,6 +106,7 @@ export interface ReimportApiCommandOutput extends ReimportApiResponse, __Metadat * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class ReimportApiCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/ResetAuthorizersCacheCommand.ts b/clients/client-apigatewayv2/src/commands/ResetAuthorizersCacheCommand.ts index 47e0d3c0eccf5..23d43be5216aa 100644 --- a/clients/client-apigatewayv2/src/commands/ResetAuthorizersCacheCommand.ts +++ b/clients/client-apigatewayv2/src/commands/ResetAuthorizersCacheCommand.ts @@ -60,6 +60,7 @@ export interface ResetAuthorizersCacheCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class ResetAuthorizersCacheCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/TagResourceCommand.ts b/clients/client-apigatewayv2/src/commands/TagResourceCommand.ts index 51ba20fabd25e..3e13dee012d50 100644 --- a/clients/client-apigatewayv2/src/commands/TagResourceCommand.ts +++ b/clients/client-apigatewayv2/src/commands/TagResourceCommand.ts @@ -68,6 +68,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/UntagResourceCommand.ts b/clients/client-apigatewayv2/src/commands/UntagResourceCommand.ts index 9fb0f5855a460..e84adf4ac39bb 100644 --- a/clients/client-apigatewayv2/src/commands/UntagResourceCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/UpdateApiCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateApiCommand.ts index 9ce85f702d773..5807bf5074db2 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateApiCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateApiCommand.ts @@ -129,6 +129,7 @@ export interface UpdateApiCommandOutput extends UpdateApiResponse, __MetadataBea * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class UpdateApiCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/UpdateApiMappingCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateApiMappingCommand.ts index ccd0406466a6b..2c9f904521c06 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateApiMappingCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateApiMappingCommand.ts @@ -74,6 +74,7 @@ export interface UpdateApiMappingCommandOutput extends UpdateApiMappingResponse, * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class UpdateApiMappingCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/UpdateAuthorizerCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateAuthorizerCommand.ts index c6f06e85ffa28..3736731a0f856 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateAuthorizerCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateAuthorizerCommand.ts @@ -102,6 +102,7 @@ export interface UpdateAuthorizerCommandOutput extends UpdateAuthorizerResponse, * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class UpdateAuthorizerCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/UpdateDeploymentCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateDeploymentCommand.ts index 328d5814c0927..079871a82c5c6 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateDeploymentCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateDeploymentCommand.ts @@ -74,6 +74,7 @@ export interface UpdateDeploymentCommandOutput extends UpdateDeploymentResponse, * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class UpdateDeploymentCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/UpdateDomainNameCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateDomainNameCommand.ts index 58e2ee1d82244..8ad424969d473 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateDomainNameCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateDomainNameCommand.ts @@ -110,6 +110,7 @@ export interface UpdateDomainNameCommandOutput extends UpdateDomainNameResponse, * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class UpdateDomainNameCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/UpdateIntegrationCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateIntegrationCommand.ts index 10de15fd5bb67..5e980770e690d 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateIntegrationCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateIntegrationCommand.ts @@ -124,6 +124,7 @@ export interface UpdateIntegrationCommandOutput extends UpdateIntegrationResult, * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class UpdateIntegrationCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/UpdateIntegrationResponseCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateIntegrationResponseCommand.ts index b2535bb1e31a7..14602d4f6961b 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateIntegrationResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateIntegrationResponseCommand.ts @@ -87,6 +87,7 @@ export interface UpdateIntegrationResponseCommandOutput extends UpdateIntegratio * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class UpdateIntegrationResponseCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/UpdateModelCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateModelCommand.ts index 095b38b2ff78c..6f0ba7ad8ab90 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateModelCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateModelCommand.ts @@ -76,6 +76,7 @@ export interface UpdateModelCommandOutput extends UpdateModelResponse, __Metadat * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class UpdateModelCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/UpdateRouteCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateRouteCommand.ts index e7c6b6dcab0b1..c802415714b01 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateRouteCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateRouteCommand.ts @@ -107,6 +107,7 @@ export interface UpdateRouteCommandOutput extends UpdateRouteResult, __MetadataB * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class UpdateRouteCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/UpdateRouteResponseCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateRouteResponseCommand.ts index 45b0b38da1940..d3c2e547d33a8 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateRouteResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateRouteResponseCommand.ts @@ -89,6 +89,7 @@ export interface UpdateRouteResponseCommandOutput extends UpdateRouteResponseRes * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class UpdateRouteResponseCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/UpdateStageCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateStageCommand.ts index 46561e8aa0866..7dec1b8b226bf 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateStageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateStageCommand.ts @@ -129,6 +129,7 @@ export interface UpdateStageCommandOutput extends UpdateStageResponse, __Metadat * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class UpdateStageCommand extends $Command diff --git a/clients/client-apigatewayv2/src/commands/UpdateVpcLinkCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateVpcLinkCommand.ts index 32238b4703fec..350c9c40fd581 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateVpcLinkCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateVpcLinkCommand.ts @@ -79,6 +79,7 @@ export interface UpdateVpcLinkCommandOutput extends UpdateVpcLinkResponse, __Met * @throws {@link ApiGatewayV2ServiceException} *

Base exception class for all service exceptions from ApiGatewayV2 service.

* + * * @public */ export class UpdateVpcLinkCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/CreateGatewayRouteCommand.ts b/clients/client-app-mesh/src/commands/CreateGatewayRouteCommand.ts index 136eafeffbba1..f4c84715b7fea 100644 --- a/clients/client-app-mesh/src/commands/CreateGatewayRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/CreateGatewayRouteCommand.ts @@ -434,6 +434,7 @@ export interface CreateGatewayRouteCommandOutput extends CreateGatewayRouteOutpu * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class CreateGatewayRouteCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/CreateMeshCommand.ts b/clients/client-app-mesh/src/commands/CreateMeshCommand.ts index f26bc1448744a..c3ef0ed297df3 100644 --- a/clients/client-app-mesh/src/commands/CreateMeshCommand.ts +++ b/clients/client-app-mesh/src/commands/CreateMeshCommand.ts @@ -126,6 +126,7 @@ export interface CreateMeshCommandOutput extends CreateMeshOutput, __MetadataBea * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class CreateMeshCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/CreateRouteCommand.ts b/clients/client-app-mesh/src/commands/CreateRouteCommand.ts index 4cb17bf202080..f64e23a3dba55 100644 --- a/clients/client-app-mesh/src/commands/CreateRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/CreateRouteCommand.ts @@ -517,6 +517,7 @@ export interface CreateRouteCommandOutput extends CreateRouteOutput, __MetadataB * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class CreateRouteCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/CreateVirtualGatewayCommand.ts b/clients/client-app-mesh/src/commands/CreateVirtualGatewayCommand.ts index f79ef5f382c58..16460762e2b8f 100644 --- a/clients/client-app-mesh/src/commands/CreateVirtualGatewayCommand.ts +++ b/clients/client-app-mesh/src/commands/CreateVirtualGatewayCommand.ts @@ -353,6 +353,7 @@ export interface CreateVirtualGatewayCommandOutput extends CreateVirtualGatewayO * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class CreateVirtualGatewayCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/CreateVirtualNodeCommand.ts b/clients/client-app-mesh/src/commands/CreateVirtualNodeCommand.ts index b5f3388b1e19e..a46a17a7534e6 100644 --- a/clients/client-app-mesh/src/commands/CreateVirtualNodeCommand.ts +++ b/clients/client-app-mesh/src/commands/CreateVirtualNodeCommand.ts @@ -581,6 +581,7 @@ export interface CreateVirtualNodeCommandOutput extends CreateVirtualNodeOutput, * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class CreateVirtualNodeCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/CreateVirtualRouterCommand.ts b/clients/client-app-mesh/src/commands/CreateVirtualRouterCommand.ts index e6808969c69bf..2b043fafb9f7e 100644 --- a/clients/client-app-mesh/src/commands/CreateVirtualRouterCommand.ts +++ b/clients/client-app-mesh/src/commands/CreateVirtualRouterCommand.ts @@ -134,6 +134,7 @@ export interface CreateVirtualRouterCommandOutput extends CreateVirtualRouterOut * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class CreateVirtualRouterCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/CreateVirtualServiceCommand.ts b/clients/client-app-mesh/src/commands/CreateVirtualServiceCommand.ts index c17100fa41695..e42102b65fd04 100644 --- a/clients/client-app-mesh/src/commands/CreateVirtualServiceCommand.ts +++ b/clients/client-app-mesh/src/commands/CreateVirtualServiceCommand.ts @@ -134,6 +134,7 @@ export interface CreateVirtualServiceCommandOutput extends CreateVirtualServiceO * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class CreateVirtualServiceCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/DeleteGatewayRouteCommand.ts b/clients/client-app-mesh/src/commands/DeleteGatewayRouteCommand.ts index 4f41d355d0cbf..3d58753817062 100644 --- a/clients/client-app-mesh/src/commands/DeleteGatewayRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/DeleteGatewayRouteCommand.ts @@ -259,6 +259,7 @@ export interface DeleteGatewayRouteCommandOutput extends DeleteGatewayRouteOutpu * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class DeleteGatewayRouteCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/DeleteMeshCommand.ts b/clients/client-app-mesh/src/commands/DeleteMeshCommand.ts index 4746eb58d7a3b..cc1874ac734ce 100644 --- a/clients/client-app-mesh/src/commands/DeleteMeshCommand.ts +++ b/clients/client-app-mesh/src/commands/DeleteMeshCommand.ts @@ -104,6 +104,7 @@ export interface DeleteMeshCommandOutput extends DeleteMeshOutput, __MetadataBea * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class DeleteMeshCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/DeleteRouteCommand.ts b/clients/client-app-mesh/src/commands/DeleteRouteCommand.ts index 897ba597ed0bc..d4ddeb8c56405 100644 --- a/clients/client-app-mesh/src/commands/DeleteRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/DeleteRouteCommand.ts @@ -301,6 +301,7 @@ export interface DeleteRouteCommandOutput extends DeleteRouteOutput, __MetadataB * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class DeleteRouteCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/DeleteVirtualGatewayCommand.ts b/clients/client-app-mesh/src/commands/DeleteVirtualGatewayCommand.ts index 2b0118c1c4d2f..d7276c993ca73 100644 --- a/clients/client-app-mesh/src/commands/DeleteVirtualGatewayCommand.ts +++ b/clients/client-app-mesh/src/commands/DeleteVirtualGatewayCommand.ts @@ -218,6 +218,7 @@ export interface DeleteVirtualGatewayCommandOutput extends DeleteVirtualGatewayO * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class DeleteVirtualGatewayCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/DeleteVirtualNodeCommand.ts b/clients/client-app-mesh/src/commands/DeleteVirtualNodeCommand.ts index bd8e8acf1f532..3fe741d0410a1 100644 --- a/clients/client-app-mesh/src/commands/DeleteVirtualNodeCommand.ts +++ b/clients/client-app-mesh/src/commands/DeleteVirtualNodeCommand.ts @@ -324,6 +324,7 @@ export interface DeleteVirtualNodeCommandOutput extends DeleteVirtualNodeOutput, * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class DeleteVirtualNodeCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/DeleteVirtualRouterCommand.ts b/clients/client-app-mesh/src/commands/DeleteVirtualRouterCommand.ts index a4761010c0d1b..ffc3544ba51e0 100644 --- a/clients/client-app-mesh/src/commands/DeleteVirtualRouterCommand.ts +++ b/clients/client-app-mesh/src/commands/DeleteVirtualRouterCommand.ts @@ -109,6 +109,7 @@ export interface DeleteVirtualRouterCommandOutput extends DeleteVirtualRouterOut * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class DeleteVirtualRouterCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/DeleteVirtualServiceCommand.ts b/clients/client-app-mesh/src/commands/DeleteVirtualServiceCommand.ts index 2952084285a2e..25a7ffcd2f173 100644 --- a/clients/client-app-mesh/src/commands/DeleteVirtualServiceCommand.ts +++ b/clients/client-app-mesh/src/commands/DeleteVirtualServiceCommand.ts @@ -107,6 +107,7 @@ export interface DeleteVirtualServiceCommandOutput extends DeleteVirtualServiceO * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class DeleteVirtualServiceCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/DescribeGatewayRouteCommand.ts b/clients/client-app-mesh/src/commands/DescribeGatewayRouteCommand.ts index 0b52abcac0627..284bb80975525 100644 --- a/clients/client-app-mesh/src/commands/DescribeGatewayRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/DescribeGatewayRouteCommand.ts @@ -255,6 +255,7 @@ export interface DescribeGatewayRouteCommandOutput extends DescribeGatewayRouteO * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class DescribeGatewayRouteCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/DescribeMeshCommand.ts b/clients/client-app-mesh/src/commands/DescribeMeshCommand.ts index da87f65a317c1..961fad72e0aee 100644 --- a/clients/client-app-mesh/src/commands/DescribeMeshCommand.ts +++ b/clients/client-app-mesh/src/commands/DescribeMeshCommand.ts @@ -99,6 +99,7 @@ export interface DescribeMeshCommandOutput extends DescribeMeshOutput, __Metadat * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class DescribeMeshCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/DescribeRouteCommand.ts b/clients/client-app-mesh/src/commands/DescribeRouteCommand.ts index a59a430828e1f..827b575ce2b1b 100644 --- a/clients/client-app-mesh/src/commands/DescribeRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/DescribeRouteCommand.ts @@ -297,6 +297,7 @@ export interface DescribeRouteCommandOutput extends DescribeRouteOutput, __Metad * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class DescribeRouteCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/DescribeVirtualGatewayCommand.ts b/clients/client-app-mesh/src/commands/DescribeVirtualGatewayCommand.ts index 4ca20e7043347..689cb5dc9d657 100644 --- a/clients/client-app-mesh/src/commands/DescribeVirtualGatewayCommand.ts +++ b/clients/client-app-mesh/src/commands/DescribeVirtualGatewayCommand.ts @@ -213,6 +213,7 @@ export interface DescribeVirtualGatewayCommandOutput extends DescribeVirtualGate * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class DescribeVirtualGatewayCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/DescribeVirtualNodeCommand.ts b/clients/client-app-mesh/src/commands/DescribeVirtualNodeCommand.ts index 9f7e0f344efd8..c8d3bc59d5512 100644 --- a/clients/client-app-mesh/src/commands/DescribeVirtualNodeCommand.ts +++ b/clients/client-app-mesh/src/commands/DescribeVirtualNodeCommand.ts @@ -318,6 +318,7 @@ export interface DescribeVirtualNodeCommandOutput extends DescribeVirtualNodeOut * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class DescribeVirtualNodeCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/DescribeVirtualRouterCommand.ts b/clients/client-app-mesh/src/commands/DescribeVirtualRouterCommand.ts index 72c5a4846d961..11d008af2c987 100644 --- a/clients/client-app-mesh/src/commands/DescribeVirtualRouterCommand.ts +++ b/clients/client-app-mesh/src/commands/DescribeVirtualRouterCommand.ts @@ -103,6 +103,7 @@ export interface DescribeVirtualRouterCommandOutput extends DescribeVirtualRoute * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class DescribeVirtualRouterCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/DescribeVirtualServiceCommand.ts b/clients/client-app-mesh/src/commands/DescribeVirtualServiceCommand.ts index e0195cc81e2c6..b4a34410b851b 100644 --- a/clients/client-app-mesh/src/commands/DescribeVirtualServiceCommand.ts +++ b/clients/client-app-mesh/src/commands/DescribeVirtualServiceCommand.ts @@ -103,6 +103,7 @@ export interface DescribeVirtualServiceCommandOutput extends DescribeVirtualServ * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class DescribeVirtualServiceCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/ListGatewayRoutesCommand.ts b/clients/client-app-mesh/src/commands/ListGatewayRoutesCommand.ts index 7c72bf0cad323..1cc0a9ba4711f 100644 --- a/clients/client-app-mesh/src/commands/ListGatewayRoutesCommand.ts +++ b/clients/client-app-mesh/src/commands/ListGatewayRoutesCommand.ts @@ -94,6 +94,7 @@ export interface ListGatewayRoutesCommandOutput extends ListGatewayRoutesOutput, * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class ListGatewayRoutesCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/ListMeshesCommand.ts b/clients/client-app-mesh/src/commands/ListMeshesCommand.ts index 38c565c184704..1c7d15a959d91 100644 --- a/clients/client-app-mesh/src/commands/ListMeshesCommand.ts +++ b/clients/client-app-mesh/src/commands/ListMeshesCommand.ts @@ -88,6 +88,7 @@ export interface ListMeshesCommandOutput extends ListMeshesOutput, __MetadataBea * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class ListMeshesCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/ListRoutesCommand.ts b/clients/client-app-mesh/src/commands/ListRoutesCommand.ts index 87996d2ed421e..a21c7d3332333 100644 --- a/clients/client-app-mesh/src/commands/ListRoutesCommand.ts +++ b/clients/client-app-mesh/src/commands/ListRoutesCommand.ts @@ -93,6 +93,7 @@ export interface ListRoutesCommandOutput extends ListRoutesOutput, __MetadataBea * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class ListRoutesCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/ListTagsForResourceCommand.ts b/clients/client-app-mesh/src/commands/ListTagsForResourceCommand.ts index 2886061c696c4..31282d2f462c5 100644 --- a/clients/client-app-mesh/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-app-mesh/src/commands/ListTagsForResourceCommand.ts @@ -84,6 +84,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/ListVirtualGatewaysCommand.ts b/clients/client-app-mesh/src/commands/ListVirtualGatewaysCommand.ts index d4d6ae255f137..b14d5b4b19965 100644 --- a/clients/client-app-mesh/src/commands/ListVirtualGatewaysCommand.ts +++ b/clients/client-app-mesh/src/commands/ListVirtualGatewaysCommand.ts @@ -91,6 +91,7 @@ export interface ListVirtualGatewaysCommandOutput extends ListVirtualGatewaysOut * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class ListVirtualGatewaysCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/ListVirtualNodesCommand.ts b/clients/client-app-mesh/src/commands/ListVirtualNodesCommand.ts index 0f64f39d93ddf..d29cc6469dc11 100644 --- a/clients/client-app-mesh/src/commands/ListVirtualNodesCommand.ts +++ b/clients/client-app-mesh/src/commands/ListVirtualNodesCommand.ts @@ -91,6 +91,7 @@ export interface ListVirtualNodesCommandOutput extends ListVirtualNodesOutput, _ * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class ListVirtualNodesCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/ListVirtualRoutersCommand.ts b/clients/client-app-mesh/src/commands/ListVirtualRoutersCommand.ts index 468589f307dfd..8484c0be3c72f 100644 --- a/clients/client-app-mesh/src/commands/ListVirtualRoutersCommand.ts +++ b/clients/client-app-mesh/src/commands/ListVirtualRoutersCommand.ts @@ -91,6 +91,7 @@ export interface ListVirtualRoutersCommandOutput extends ListVirtualRoutersOutpu * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class ListVirtualRoutersCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/ListVirtualServicesCommand.ts b/clients/client-app-mesh/src/commands/ListVirtualServicesCommand.ts index a913138781742..c4e254ba737e4 100644 --- a/clients/client-app-mesh/src/commands/ListVirtualServicesCommand.ts +++ b/clients/client-app-mesh/src/commands/ListVirtualServicesCommand.ts @@ -91,6 +91,7 @@ export interface ListVirtualServicesCommandOutput extends ListVirtualServicesOut * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class ListVirtualServicesCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/TagResourceCommand.ts b/clients/client-app-mesh/src/commands/TagResourceCommand.ts index 278f3f95cb8dc..20bd36b320028 100644 --- a/clients/client-app-mesh/src/commands/TagResourceCommand.ts +++ b/clients/client-app-mesh/src/commands/TagResourceCommand.ts @@ -88,6 +88,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/UntagResourceCommand.ts b/clients/client-app-mesh/src/commands/UntagResourceCommand.ts index 31ab2d45528ee..1885ec49fc33f 100644 --- a/clients/client-app-mesh/src/commands/UntagResourceCommand.ts +++ b/clients/client-app-mesh/src/commands/UntagResourceCommand.ts @@ -77,6 +77,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/UpdateGatewayRouteCommand.ts b/clients/client-app-mesh/src/commands/UpdateGatewayRouteCommand.ts index 514214d05d421..62dafc11b153f 100644 --- a/clients/client-app-mesh/src/commands/UpdateGatewayRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/UpdateGatewayRouteCommand.ts @@ -425,6 +425,7 @@ export interface UpdateGatewayRouteCommandOutput extends UpdateGatewayRouteOutpu * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class UpdateGatewayRouteCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/UpdateMeshCommand.ts b/clients/client-app-mesh/src/commands/UpdateMeshCommand.ts index 71195ef201dbe..341a47ad03def 100644 --- a/clients/client-app-mesh/src/commands/UpdateMeshCommand.ts +++ b/clients/client-app-mesh/src/commands/UpdateMeshCommand.ts @@ -111,6 +111,7 @@ export interface UpdateMeshCommandOutput extends UpdateMeshOutput, __MetadataBea * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class UpdateMeshCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/UpdateRouteCommand.ts b/clients/client-app-mesh/src/commands/UpdateRouteCommand.ts index 5604f75c8e062..c5456a9fb61ab 100644 --- a/clients/client-app-mesh/src/commands/UpdateRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/UpdateRouteCommand.ts @@ -508,6 +508,7 @@ export interface UpdateRouteCommandOutput extends UpdateRouteOutput, __MetadataB * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class UpdateRouteCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/UpdateVirtualGatewayCommand.ts b/clients/client-app-mesh/src/commands/UpdateVirtualGatewayCommand.ts index 595fa5ece13c1..b00a588a88bd0 100644 --- a/clients/client-app-mesh/src/commands/UpdateVirtualGatewayCommand.ts +++ b/clients/client-app-mesh/src/commands/UpdateVirtualGatewayCommand.ts @@ -342,6 +342,7 @@ export interface UpdateVirtualGatewayCommandOutput extends UpdateVirtualGatewayO * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class UpdateVirtualGatewayCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/UpdateVirtualNodeCommand.ts b/clients/client-app-mesh/src/commands/UpdateVirtualNodeCommand.ts index 0ec929ce112ef..93c23cad74aa4 100644 --- a/clients/client-app-mesh/src/commands/UpdateVirtualNodeCommand.ts +++ b/clients/client-app-mesh/src/commands/UpdateVirtualNodeCommand.ts @@ -552,6 +552,7 @@ export interface UpdateVirtualNodeCommandOutput extends UpdateVirtualNodeOutput, * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class UpdateVirtualNodeCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/UpdateVirtualRouterCommand.ts b/clients/client-app-mesh/src/commands/UpdateVirtualRouterCommand.ts index 3f9d2124d2295..fcdec9fb3982c 100644 --- a/clients/client-app-mesh/src/commands/UpdateVirtualRouterCommand.ts +++ b/clients/client-app-mesh/src/commands/UpdateVirtualRouterCommand.ts @@ -122,6 +122,7 @@ export interface UpdateVirtualRouterCommandOutput extends UpdateVirtualRouterOut * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class UpdateVirtualRouterCommand extends $Command diff --git a/clients/client-app-mesh/src/commands/UpdateVirtualServiceCommand.ts b/clients/client-app-mesh/src/commands/UpdateVirtualServiceCommand.ts index b59dd9f7f0b82..58032202693a9 100644 --- a/clients/client-app-mesh/src/commands/UpdateVirtualServiceCommand.ts +++ b/clients/client-app-mesh/src/commands/UpdateVirtualServiceCommand.ts @@ -122,6 +122,7 @@ export interface UpdateVirtualServiceCommandOutput extends UpdateVirtualServiceO * @throws {@link AppMeshServiceException} *

Base exception class for all service exceptions from AppMesh service.

* + * * @public */ export class UpdateVirtualServiceCommand extends $Command diff --git a/clients/client-appconfig/src/commands/CreateApplicationCommand.ts b/clients/client-appconfig/src/commands/CreateApplicationCommand.ts index db03d27cb0a20..ba938f0276c08 100644 --- a/clients/client-appconfig/src/commands/CreateApplicationCommand.ts +++ b/clients/client-appconfig/src/commands/CreateApplicationCommand.ts @@ -82,26 +82,26 @@ export interface CreateApplicationCommandOutput extends Application, __MetadataB * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To create an application * ```javascript * // The following create-application example creates an application in AWS AppConfig. * const input = { - * "Description": "An application used for creating an example.", - * "Name": "example-application" + * Description: "An application used for creating an example.", + * Name: "example-application" * }; * const command = new CreateApplicationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Description": "An application used for creating an example.", - * "Id": "339ohji", - * "Name": "example-application" + * Description: "An application used for creating an example.", + * Id: "339ohji", + * Name: "example-application" * } * *\/ - * // example id: to-create-an-application-1632264511615 * ``` * + * @public */ export class CreateApplicationCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/CreateConfigurationProfileCommand.ts b/clients/client-appconfig/src/commands/CreateConfigurationProfileCommand.ts index d17701f98179a..297158b6a8811 100644 --- a/clients/client-appconfig/src/commands/CreateConfigurationProfileCommand.ts +++ b/clients/client-appconfig/src/commands/CreateConfigurationProfileCommand.ts @@ -148,30 +148,30 @@ export interface CreateConfigurationProfileCommandOutput extends ConfigurationPr * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To create a configuration profile * ```javascript * // The following create-configuration-profile example creates a configuration profile using a configuration stored in Parameter Store, a capability of Systems Manager. * const input = { - * "ApplicationId": "339ohji", - * "LocationUri": "ssm-parameter://Example-Parameter", - * "Name": "Example-Configuration-Profile", - * "RetrievalRoleArn": "arn:aws:iam::111122223333:role/Example-App-Config-Role" + * ApplicationId: "339ohji", + * LocationUri: "ssm-parameter://Example-Parameter", + * Name: "Example-Configuration-Profile", + * RetrievalRoleArn: "arn:aws:iam::111122223333:role/Example-App-Config-Role" * }; * const command = new CreateConfigurationProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationId": "339ohji", - * "Id": "ur8hx2f", - * "LocationUri": "ssm-parameter://Example-Parameter", - * "Name": "Example-Configuration-Profile", - * "RetrievalRoleArn": "arn:aws:iam::111122223333:role/Example-App-Config-Role" + * ApplicationId: "339ohji", + * Id: "ur8hx2f", + * LocationUri: "ssm-parameter://Example-Parameter", + * Name: "Example-Configuration-Profile", + * RetrievalRoleArn: "arn:aws:iam::111122223333:role/Example-App-Config-Role" * } * *\/ - * // example id: to-create-a-configuration-profile-1632264580336 * ``` * + * @public */ export class CreateConfigurationProfileCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/CreateDeploymentStrategyCommand.ts b/clients/client-appconfig/src/commands/CreateDeploymentStrategyCommand.ts index 4d1b77530a187..a10ac88550bba 100644 --- a/clients/client-appconfig/src/commands/CreateDeploymentStrategyCommand.ts +++ b/clients/client-appconfig/src/commands/CreateDeploymentStrategyCommand.ts @@ -91,32 +91,32 @@ export interface CreateDeploymentStrategyCommandOutput extends DeploymentStrateg * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To create a deployment strategy * ```javascript * // The following create-deployment-strategy example creates a deployment strategy called Example-Deployment that takes 15 minutes and deploys the configuration to 25% of the application at a time. The strategy is also copied to an SSM Document. * const input = { - * "DeploymentDurationInMinutes": 15, - * "GrowthFactor": 25, - * "Name": "Example-Deployment", - * "ReplicateTo": "SSM_DOCUMENT" + * DeploymentDurationInMinutes: 15, + * GrowthFactor: 25, + * Name: "Example-Deployment", + * ReplicateTo: "SSM_DOCUMENT" * }; * const command = new CreateDeploymentStrategyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DeploymentDurationInMinutes": 15, - * "FinalBakeTimeInMinutes": 0, - * "GrowthFactor": 25, - * "GrowthType": "LINEAR", - * "Id": "1225qzk", - * "Name": "Example-Deployment", - * "ReplicateTo": "SSM_DOCUMENT" + * DeploymentDurationInMinutes: 15, + * FinalBakeTimeInMinutes: 0, + * GrowthFactor: 25, + * GrowthType: "LINEAR", + * Id: "1225qzk", + * Name: "Example-Deployment", + * ReplicateTo: "SSM_DOCUMENT" * } * *\/ - * // example id: to-create-a-deployment-strategy-1632264783812 * ``` * + * @public */ export class CreateDeploymentStrategyCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/CreateEnvironmentCommand.ts b/clients/client-appconfig/src/commands/CreateEnvironmentCommand.ts index 0d201a40c7f47..995300da7d8f0 100644 --- a/clients/client-appconfig/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-appconfig/src/commands/CreateEnvironmentCommand.ts @@ -103,27 +103,27 @@ export interface CreateEnvironmentCommandOutput extends Environment, __MetadataB * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To create an environment * ```javascript * // The following create-environment example creates an AWS AppConfig environment named Example-Environment using the application you created using create-application * const input = { - * "ApplicationId": "339ohji", - * "Name": "Example-Environment" + * ApplicationId: "339ohji", + * Name: "Example-Environment" * }; * const command = new CreateEnvironmentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationId": "339ohji", - * "Id": "54j1r29", - * "Name": "Example-Environment", - * "State": "READY_FOR_DEPLOYMENT" + * ApplicationId: "339ohji", + * Id: "54j1r29", + * Name: "Example-Environment", + * State: "READY_FOR_DEPLOYMENT" * } * *\/ - * // example id: to-create-an-environment-1632265124975 * ``` * + * @public */ export class CreateEnvironmentCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/CreateExtensionAssociationCommand.ts b/clients/client-appconfig/src/commands/CreateExtensionAssociationCommand.ts index 07b64cb9f5ee9..5e02995c0f876 100644 --- a/clients/client-appconfig/src/commands/CreateExtensionAssociationCommand.ts +++ b/clients/client-appconfig/src/commands/CreateExtensionAssociationCommand.ts @@ -101,6 +101,7 @@ export interface CreateExtensionAssociationCommandOutput extends ExtensionAssoci * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* + * * @public */ export class CreateExtensionAssociationCommand extends $Command diff --git a/clients/client-appconfig/src/commands/CreateExtensionCommand.ts b/clients/client-appconfig/src/commands/CreateExtensionCommand.ts index 6f6476dca16ed..a33f9214c4b56 100644 --- a/clients/client-appconfig/src/commands/CreateExtensionCommand.ts +++ b/clients/client-appconfig/src/commands/CreateExtensionCommand.ts @@ -142,6 +142,7 @@ export interface CreateExtensionCommandOutput extends Extension, __MetadataBeare * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* + * * @public */ export class CreateExtensionCommand extends $Command diff --git a/clients/client-appconfig/src/commands/CreateHostedConfigurationVersionCommand.ts b/clients/client-appconfig/src/commands/CreateHostedConfigurationVersionCommand.ts index d537c330d72ca..990814f1d531c 100644 --- a/clients/client-appconfig/src/commands/CreateHostedConfigurationVersionCommand.ts +++ b/clients/client-appconfig/src/commands/CreateHostedConfigurationVersionCommand.ts @@ -127,30 +127,30 @@ export interface CreateHostedConfigurationVersionCommandOutput * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To create a hosted configuration version * ```javascript * // The following create-hosted-configuration-version example creates a new configuration in the AWS AppConfig configuration store. * const input = { - * "ApplicationId": "339ohji", - * "ConfigurationProfileId": "ur8hx2f", - * "Content": "eyAiTmFtZSI6ICJFeGFtcGxlQXBwbGljYXRpb24iLCAiSWQiOiBFeGFtcGxlSUQsICJSYW5rIjogNyB9", - * "ContentType": "text", - * "LatestVersionNumber": 1 + * ApplicationId: "339ohji", + * ConfigurationProfileId: "ur8hx2f", + * Content: "eyAiTmFtZSI6ICJFeGFtcGxlQXBwbGljYXRpb24iLCAiSWQiOiBFeGFtcGxlSUQsICJSYW5rIjogNyB9", + * ContentType: "text", + * LatestVersionNumber: 1 * }; * const command = new CreateHostedConfigurationVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationId": "339ohji", - * "ConfigurationProfileId": "ur8hx2f", - * "ContentType": "text", - * "VersionNumber": 1 + * ApplicationId: "339ohji", + * ConfigurationProfileId: "ur8hx2f", + * ContentType: "text", + * VersionNumber: 1 * } * *\/ - * // example id: to-create-a-hosted-configuration-version-1632265196980 * ``` * + * @public */ export class CreateHostedConfigurationVersionCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/DeleteApplicationCommand.ts b/clients/client-appconfig/src/commands/DeleteApplicationCommand.ts index d6fb18c14b94f..e30b1bd735673 100644 --- a/clients/client-appconfig/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-appconfig/src/commands/DeleteApplicationCommand.ts @@ -62,19 +62,22 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {} * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To delete an application * ```javascript * // The following delete-application example deletes the specified application. - * // + * * const input = { - * "ApplicationId": "339ohji" + * ApplicationId: "339ohji" * }; * const command = new DeleteApplicationCommand(input); - * await client.send(command); - * // example id: to-delete-an-application-1632265343951 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteApplicationCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/DeleteConfigurationProfileCommand.ts b/clients/client-appconfig/src/commands/DeleteConfigurationProfileCommand.ts index 39e9a79a8beef..be84314d539ac 100644 --- a/clients/client-appconfig/src/commands/DeleteConfigurationProfileCommand.ts +++ b/clients/client-appconfig/src/commands/DeleteConfigurationProfileCommand.ts @@ -71,19 +71,22 @@ export interface DeleteConfigurationProfileCommandOutput extends __MetadataBeare * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To delete a configuration profile * ```javascript * // The following delete-configuration-profile example deletes the specified configuration profile. * const input = { - * "ApplicationId": "339ohji", - * "ConfigurationProfileId": "ur8hx2f" + * ApplicationId: "339ohji", + * ConfigurationProfileId: "ur8hx2f" * }; * const command = new DeleteConfigurationProfileCommand(input); - * await client.send(command); - * // example id: to-delete-a-configuration-profile-1632265401308 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteConfigurationProfileCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/DeleteDeploymentStrategyCommand.ts b/clients/client-appconfig/src/commands/DeleteDeploymentStrategyCommand.ts index 5715fd7422168..a6b564ebd6fba 100644 --- a/clients/client-appconfig/src/commands/DeleteDeploymentStrategyCommand.ts +++ b/clients/client-appconfig/src/commands/DeleteDeploymentStrategyCommand.ts @@ -62,18 +62,21 @@ export interface DeleteDeploymentStrategyCommandOutput extends __MetadataBearer * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To delete a deployment strategy * ```javascript * // The following delete-deployment-strategy example deletes the specified deployment strategy. * const input = { - * "DeploymentStrategyId": "1225qzk" + * DeploymentStrategyId: "1225qzk" * }; * const command = new DeleteDeploymentStrategyCommand(input); - * await client.send(command); - * // example id: to-delete-a-deployment-strategy-1632265473708 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteDeploymentStrategyCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/DeleteEnvironmentCommand.ts b/clients/client-appconfig/src/commands/DeleteEnvironmentCommand.ts index aba214a6447b5..26403fd896e55 100644 --- a/clients/client-appconfig/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-appconfig/src/commands/DeleteEnvironmentCommand.ts @@ -70,19 +70,22 @@ export interface DeleteEnvironmentCommandOutput extends __MetadataBearer {} * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To delete an environment * ```javascript * // The following delete-environment example deletes the specified application environment. * const input = { - * "ApplicationId": "339ohji", - * "EnvironmentId": "54j1r29" + * ApplicationId: "339ohji", + * EnvironmentId: "54j1r29" * }; * const command = new DeleteEnvironmentCommand(input); - * await client.send(command); - * // example id: to-delete-an-environment-1632265641044 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteEnvironmentCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/DeleteExtensionAssociationCommand.ts b/clients/client-appconfig/src/commands/DeleteExtensionAssociationCommand.ts index 2993badbcbd5f..544a647cc8d76 100644 --- a/clients/client-appconfig/src/commands/DeleteExtensionAssociationCommand.ts +++ b/clients/client-appconfig/src/commands/DeleteExtensionAssociationCommand.ts @@ -63,6 +63,7 @@ export interface DeleteExtensionAssociationCommandOutput extends __MetadataBeare * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* + * * @public */ export class DeleteExtensionAssociationCommand extends $Command diff --git a/clients/client-appconfig/src/commands/DeleteExtensionCommand.ts b/clients/client-appconfig/src/commands/DeleteExtensionCommand.ts index 0b3f72db6e029..96dfe66a4c235 100644 --- a/clients/client-appconfig/src/commands/DeleteExtensionCommand.ts +++ b/clients/client-appconfig/src/commands/DeleteExtensionCommand.ts @@ -64,6 +64,7 @@ export interface DeleteExtensionCommandOutput extends __MetadataBearer {} * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* + * * @public */ export class DeleteExtensionCommand extends $Command diff --git a/clients/client-appconfig/src/commands/DeleteHostedConfigurationVersionCommand.ts b/clients/client-appconfig/src/commands/DeleteHostedConfigurationVersionCommand.ts index afe421ce797f4..72884309c5538 100644 --- a/clients/client-appconfig/src/commands/DeleteHostedConfigurationVersionCommand.ts +++ b/clients/client-appconfig/src/commands/DeleteHostedConfigurationVersionCommand.ts @@ -68,20 +68,23 @@ export interface DeleteHostedConfigurationVersionCommandOutput extends __Metadat * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To delete a hosted configuration version * ```javascript * // The following delete-hosted-configuration-version example deletes a configuration version hosted in the AWS AppConfig configuration store. * const input = { - * "ApplicationId": "339ohji", - * "ConfigurationProfileId": "ur8hx2f", - * "VersionNumber": 1 + * ApplicationId: "339ohji", + * ConfigurationProfileId: "ur8hx2f", + * VersionNumber: 1 * }; * const command = new DeleteHostedConfigurationVersionCommand(input); - * await client.send(command); - * // example id: to-delete-a-hosted-configuration-version-1632265720740 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteHostedConfigurationVersionCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/GetAccountSettingsCommand.ts b/clients/client-appconfig/src/commands/GetAccountSettingsCommand.ts index 032799bdc6e1c..34db81027883e 100644 --- a/clients/client-appconfig/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-appconfig/src/commands/GetAccountSettingsCommand.ts @@ -63,6 +63,7 @@ export interface GetAccountSettingsCommandOutput extends AccountSettings, __Meta * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* + * * @public */ export class GetAccountSettingsCommand extends $Command diff --git a/clients/client-appconfig/src/commands/GetApplicationCommand.ts b/clients/client-appconfig/src/commands/GetApplicationCommand.ts index c979637e56ada..98a9c4473716c 100644 --- a/clients/client-appconfig/src/commands/GetApplicationCommand.ts +++ b/clients/client-appconfig/src/commands/GetApplicationCommand.ts @@ -66,24 +66,24 @@ export interface GetApplicationCommandOutput extends Application, __MetadataBear * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To list details of an application * ```javascript * // The following get-application example lists the details of the specified application. * const input = { - * "ApplicationId": "339ohji" + * ApplicationId: "339ohji" * }; * const command = new GetApplicationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Id": "339ohji", - * "Name": "example-application" + * Id: "339ohji", + * Name: "example-application" * } * *\/ - * // example id: to-list-details-of-an-application-1632265864702 * ``` * + * @public */ export class GetApplicationCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/GetConfigurationCommand.ts b/clients/client-appconfig/src/commands/GetConfigurationCommand.ts index 92d782d6d1584..1dbda7828354a 100644 --- a/clients/client-appconfig/src/commands/GetConfigurationCommand.ts +++ b/clients/client-appconfig/src/commands/GetConfigurationCommand.ts @@ -94,27 +94,27 @@ export interface GetConfigurationCommandOutput extends GetConfigurationCommandOu * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To retrieve configuration details * ```javascript * // The following get-configuration example returns the configuration details of the example application. On subsequent calls to get-configuration, use the client-configuration-version parameter to only update the configuration of your application if the version has changed. Only updating the configuration when the version has changed avoids excess charges incurred by calling get-configuration. * const input = { - * "Application": "example-application", - * "ClientId": "example-id", - * "Configuration": "Example-Configuration-Profile", - * "Environment": "Example-Environment" + * Application: "example-application", + * ClientId: "example-id", + * Configuration: "Example-Configuration-Profile", + * Environment: "Example-Environment" * }; * const command = new GetConfigurationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ConfigurationVersion": "1", - * "ContentType": "application/octet-stream" + * ConfigurationVersion: "1", + * ContentType: "application/octet-stream" * } * *\/ - * // example id: to-retrieve-configuration-details-1632265954314 * ``` * + * @public */ export class GetConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/GetConfigurationProfileCommand.ts b/clients/client-appconfig/src/commands/GetConfigurationProfileCommand.ts index 7fac5f20af345..0812274fac64b 100644 --- a/clients/client-appconfig/src/commands/GetConfigurationProfileCommand.ts +++ b/clients/client-appconfig/src/commands/GetConfigurationProfileCommand.ts @@ -83,28 +83,28 @@ export interface GetConfigurationProfileCommandOutput extends ConfigurationProfi * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To retrieve configuration profile details * ```javascript * // The following get-configuration-profile example returns the details of the specified configuration profile. * const input = { - * "ApplicationId": "339ohji", - * "ConfigurationProfileId": "ur8hx2f" + * ApplicationId: "339ohji", + * ConfigurationProfileId: "ur8hx2f" * }; * const command = new GetConfigurationProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationId": "339ohji", - * "Id": "ur8hx2f", - * "LocationUri": "ssm-parameter://Example-Parameter", - * "Name": "Example-Configuration-Profile", - * "RetrievalRoleArn": "arn:aws:iam::111122223333:role/Example-App-Config-Role" + * ApplicationId: "339ohji", + * Id: "ur8hx2f", + * LocationUri: "ssm-parameter://Example-Parameter", + * Name: "Example-Configuration-Profile", + * RetrievalRoleArn: "arn:aws:iam::111122223333:role/Example-App-Config-Role" * } * *\/ - * // example id: to-retrieve-configuration-profile-details-1632266081013 * ``` * + * @public */ export class GetConfigurationProfileCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/GetDeploymentCommand.ts b/clients/client-appconfig/src/commands/GetDeploymentCommand.ts index a436eb35726b6..dbf0474649f1e 100644 --- a/clients/client-appconfig/src/commands/GetDeploymentCommand.ts +++ b/clients/client-appconfig/src/commands/GetDeploymentCommand.ts @@ -114,84 +114,8 @@ export interface GetDeploymentCommandOutput extends Deployment, __MetadataBearer * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public - * @example To retrieve deployment details - * ```javascript - * // The following get-deployment example lists details of the deployment to the application in the specified environment and deployment. - * const input = { - * "ApplicationId": "339ohji", - * "DeploymentNumber": 1, - * "EnvironmentId": "54j1r29" - * }; - * const command = new GetDeploymentCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ApplicationId": "339ohji", - * "CompletedAt": "2021-09-17T21:59:03.888000+00:00", - * "ConfigurationLocationUri": "ssm-parameter://Example-Parameter", - * "ConfigurationName": "Example-Configuration-Profile", - * "ConfigurationProfileId": "ur8hx2f", - * "ConfigurationVersion": "1", - * "DeploymentDurationInMinutes": 15, - * "DeploymentNumber": 1, - * "DeploymentStrategyId": "1225qzk", - * "EnvironmentId": "54j1r29", - * "EventLog": [ - * { - * "Description": "Deployment completed", - * "EventType": "DEPLOYMENT_COMPLETED", - * "OccurredAt": "2021-09-17T21:59:03.888000+00:00", - * "TriggeredBy": "APPCONFIG" - * }, - * { - * "Description": "Deployment bake time started", - * "EventType": "BAKE_TIME_STARTED", - * "OccurredAt": "2021-09-17T21:58:57.722000+00:00", - * "TriggeredBy": "APPCONFIG" - * }, - * { - * "Description": "Configuration available to 100.00% of clients", - * "EventType": "PERCENTAGE_UPDATED", - * "OccurredAt": "2021-09-17T21:55:56.816000+00:00", - * "TriggeredBy": "APPCONFIG" - * }, - * { - * "Description": "Configuration available to 75.00% of clients", - * "EventType": "PERCENTAGE_UPDATED", - * "OccurredAt": "2021-09-17T21:52:56.567000+00:00", - * "TriggeredBy": "APPCONFIG" - * }, - * { - * "Description": "Configuration available to 50.00% of clients", - * "EventType": "PERCENTAGE_UPDATED", - * "OccurredAt": "2021-09-17T21:49:55.737000+00:00", - * "TriggeredBy": "APPCONFIG" - * }, - * { - * "Description": "Configuration available to 25.00% of clients", - * "EventType": "PERCENTAGE_UPDATED", - * "OccurredAt": "2021-09-17T21:46:55.187000+00:00", - * "TriggeredBy": "APPCONFIG" - * }, - * { - * "Description": "Deployment started", - * "EventType": "DEPLOYMENT_STARTED", - * "OccurredAt": "2021-09-17T21:43:54.205000+00:00", - * "TriggeredBy": "USER" - * } - * ], - * "FinalBakeTimeInMinutes": 0, - * "GrowthFactor": 25, - * "GrowthType": "LINEAR", - * "PercentageComplete": 100, - * "StartedAt": "2021-09-17T21:43:54.205000+00:00", - * "State": "COMPLETE" - * } - * *\/ - * // example id: to-retrieve-deployment-details-1633976766883 - * ``` * + * @public */ export class GetDeploymentCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/GetDeploymentStrategyCommand.ts b/clients/client-appconfig/src/commands/GetDeploymentStrategyCommand.ts index b98f58ebdfe24..707c18d618ba9 100644 --- a/clients/client-appconfig/src/commands/GetDeploymentStrategyCommand.ts +++ b/clients/client-appconfig/src/commands/GetDeploymentStrategyCommand.ts @@ -75,29 +75,29 @@ export interface GetDeploymentStrategyCommandOutput extends DeploymentStrategy, * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To retrieve details of a deployment strategy * ```javascript * // The following get-deployment-strategy example lists the details of the specified deployment strategy. * const input = { - * "DeploymentStrategyId": "1225qzk" + * DeploymentStrategyId: "1225qzk" * }; * const command = new GetDeploymentStrategyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DeploymentDurationInMinutes": 15, - * "FinalBakeTimeInMinutes": 0, - * "GrowthFactor": 25, - * "GrowthType": "LINEAR", - * "Id": "1225qzk", - * "Name": "Example-Deployment", - * "ReplicateTo": "SSM_DOCUMENT" + * DeploymentDurationInMinutes: 15, + * FinalBakeTimeInMinutes: 0, + * GrowthFactor: 25, + * GrowthType: "LINEAR", + * Id: "1225qzk", + * Name: "Example-Deployment", + * ReplicateTo: "SSM_DOCUMENT" * } * *\/ - * // example id: to-retrieve-details-of-a-deployment-strategy-1632266385805 * ``` * + * @public */ export class GetDeploymentStrategyCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/GetEnvironmentCommand.ts b/clients/client-appconfig/src/commands/GetEnvironmentCommand.ts index 5dc46c76e0a54..db802de1b295b 100644 --- a/clients/client-appconfig/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-appconfig/src/commands/GetEnvironmentCommand.ts @@ -80,27 +80,27 @@ export interface GetEnvironmentCommandOutput extends Environment, __MetadataBear * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To retrieve environment details * ```javascript * // The following get-environment example returns the details and state of the specified environment. * const input = { - * "ApplicationId": "339ohji", - * "EnvironmentId": "54j1r29" + * ApplicationId: "339ohji", + * EnvironmentId: "54j1r29" * }; * const command = new GetEnvironmentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationId": "339ohji", - * "Id": "54j1r29", - * "Name": "Example-Environment", - * "State": "READY_FOR_DEPLOYMENT" + * ApplicationId: "339ohji", + * Id: "54j1r29", + * Name: "Example-Environment", + * State: "READY_FOR_DEPLOYMENT" * } * *\/ - * // example id: to-retrieve-environment-details-1632266924806 * ``` * + * @public */ export class GetEnvironmentCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/GetExtensionAssociationCommand.ts b/clients/client-appconfig/src/commands/GetExtensionAssociationCommand.ts index b3d9c55ed175b..4939ac7706b83 100644 --- a/clients/client-appconfig/src/commands/GetExtensionAssociationCommand.ts +++ b/clients/client-appconfig/src/commands/GetExtensionAssociationCommand.ts @@ -73,6 +73,7 @@ export interface GetExtensionAssociationCommandOutput extends ExtensionAssociati * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* + * * @public */ export class GetExtensionAssociationCommand extends $Command diff --git a/clients/client-appconfig/src/commands/GetExtensionCommand.ts b/clients/client-appconfig/src/commands/GetExtensionCommand.ts index f5a1f4cc4b8af..0fdbdeccc3538 100644 --- a/clients/client-appconfig/src/commands/GetExtensionCommand.ts +++ b/clients/client-appconfig/src/commands/GetExtensionCommand.ts @@ -86,6 +86,7 @@ export interface GetExtensionCommandOutput extends Extension, __MetadataBearer { * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* + * * @public */ export class GetExtensionCommand extends $Command diff --git a/clients/client-appconfig/src/commands/GetHostedConfigurationVersionCommand.ts b/clients/client-appconfig/src/commands/GetHostedConfigurationVersionCommand.ts index 11aa7a6e85c59..e9e3a11aad908 100644 --- a/clients/client-appconfig/src/commands/GetHostedConfigurationVersionCommand.ts +++ b/clients/client-appconfig/src/commands/GetHostedConfigurationVersionCommand.ts @@ -90,28 +90,28 @@ export interface GetHostedConfigurationVersionCommandOutput * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To retrieve hosted configuration details * ```javascript * // The following get-hosted-configuration-version example retrieves the configuration details of the AWS AppConfig hosted configuration. * const input = { - * "ApplicationId": "339ohji", - * "ConfigurationProfileId": "ur8hx2f", - * "VersionNumber": 1 + * ApplicationId: "339ohji", + * ConfigurationProfileId: "ur8hx2f", + * VersionNumber: 1 * }; * const command = new GetHostedConfigurationVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationId": "339ohji", - * "ConfigurationProfileId": "ur8hx2f", - * "ContentType": "application/json", - * "VersionNumber": 1 + * ApplicationId: "339ohji", + * ConfigurationProfileId: "ur8hx2f", + * ContentType: "application/json", + * VersionNumber: 1 * } * *\/ - * // example id: to-retrieve-hosted-configuration-details-1632267003527 * ``` * + * @public */ export class GetHostedConfigurationVersionCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/ListApplicationsCommand.ts b/clients/client-appconfig/src/commands/ListApplicationsCommand.ts index 88edb0ab278ce..7161ed44eb951 100644 --- a/clients/client-appconfig/src/commands/ListApplicationsCommand.ts +++ b/clients/client-appconfig/src/commands/ListApplicationsCommand.ts @@ -69,31 +69,31 @@ export interface ListApplicationsCommandOutput extends Applications, __MetadataB * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To list the available applications * ```javascript * // The following list-applications example lists the available applications in your AWS account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListApplicationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Items": [ + * Items: [ * { - * "Description": "An application used for creating an example.", - * "Id": "339ohji", - * "Name": "test-application" + * Description: "An application used for creating an example.", + * Id: "339ohji", + * Name: "test-application" * }, * { - * "Id": "rwalwu7", - * "Name": "Test-Application" + * Id: "rwalwu7", + * Name: "Test-Application" * } * ] * } * *\/ - * // example id: to-list-the-available-applications-1632267111131 * ``` * + * @public */ export class ListApplicationsCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/ListConfigurationProfilesCommand.ts b/clients/client-appconfig/src/commands/ListConfigurationProfilesCommand.ts index f0571ca993812..8307b27012cc3 100644 --- a/clients/client-appconfig/src/commands/ListConfigurationProfilesCommand.ts +++ b/clients/client-appconfig/src/commands/ListConfigurationProfilesCommand.ts @@ -79,30 +79,30 @@ export interface ListConfigurationProfilesCommandOutput extends ConfigurationPro * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To list the available configuration profiles * ```javascript * // The following list-configuration-profiles example lists the available configuration profiles for the specified application. * const input = { - * "ApplicationId": "339ohji" + * ApplicationId: "339ohji" * }; * const command = new ListConfigurationProfilesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Items": [ + * Items: [ * { - * "ApplicationId": "339ohji", - * "Id": "ur8hx2f", - * "LocationUri": "ssm-parameter://Example-Parameter", - * "Name": "Example-Configuration-Profile" + * ApplicationId: "339ohji", + * Id: "ur8hx2f", + * LocationUri: "ssm-parameter://Example-Parameter", + * Name: "Example-Configuration-Profile" * } * ] * } * *\/ - * // example id: to-list-the-available-configuration-profiles-1632267193265 * ``` * + * @public */ export class ListConfigurationProfilesCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/ListDeploymentStrategiesCommand.ts b/clients/client-appconfig/src/commands/ListDeploymentStrategiesCommand.ts index 822dcbb0d2d8d..e322d07380164 100644 --- a/clients/client-appconfig/src/commands/ListDeploymentStrategiesCommand.ts +++ b/clients/client-appconfig/src/commands/ListDeploymentStrategiesCommand.ts @@ -74,31 +74,31 @@ export interface ListDeploymentStrategiesCommandOutput extends DeploymentStrateg * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To list the available deployment strategies * ```javascript * // The following list-deployment-strategies example lists the available deployment strategies in your AWS account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListDeploymentStrategiesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Items": [ + * Items: [ * { - * "DeploymentDurationInMinutes": 15, - * "FinalBakeTimeInMinutes": 0, - * "GrowthFactor": 25, - * "GrowthType": "LINEAR", - * "Id": "1225qzk", - * "Name": "Example-Deployment", - * "ReplicateTo": "SSM_DOCUMENT" + * DeploymentDurationInMinutes: 15, + * FinalBakeTimeInMinutes: 0, + * GrowthFactor: 25, + * GrowthType: "LINEAR", + * Id: "1225qzk", + * Name: "Example-Deployment", + * ReplicateTo: "SSM_DOCUMENT" * } * ] * } * *\/ - * // example id: to-list-the-available-deployment-strategies-1632267364180 * ``` * + * @public */ export class ListDeploymentStrategiesCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/ListDeploymentsCommand.ts b/clients/client-appconfig/src/commands/ListDeploymentsCommand.ts index 4a946b6c7aae7..341a931496b17 100644 --- a/clients/client-appconfig/src/commands/ListDeploymentsCommand.ts +++ b/clients/client-appconfig/src/commands/ListDeploymentsCommand.ts @@ -83,38 +83,8 @@ export interface ListDeploymentsCommandOutput extends Deployments, __MetadataBea * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public - * @example To list the available deployments - * ```javascript - * // The following list-deployments example lists the available deployments in your AWS account for the specified application and environment. - * const input = { - * "ApplicationId": "339ohji", - * "EnvironmentId": "54j1r29" - * }; - * const command = new ListDeploymentsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Items": [ - * { - * "CompletedAt": "2021-09-17T21:59:03.888000+00:00", - * "ConfigurationName": "Example-Configuration-Profile", - * "ConfigurationVersion": "1", - * "DeploymentDurationInMinutes": 15, - * "DeploymentNumber": 1, - * "FinalBakeTimeInMinutes": 0, - * "GrowthFactor": 25, - * "GrowthType": "LINEAR", - * "PercentageComplete": 100, - * "StartedAt": "2021-09-17T21:43:54.205000+00:00", - * "State": "COMPLETE" - * } - * ] - * } - * *\/ - * // example id: to-list-the-available-deployments-1632267282025 - * ``` * + * @public */ export class ListDeploymentsCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/ListEnvironmentsCommand.ts b/clients/client-appconfig/src/commands/ListEnvironmentsCommand.ts index 71f5e71975d08..f54a15bfca2f8 100644 --- a/clients/client-appconfig/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-appconfig/src/commands/ListEnvironmentsCommand.ts @@ -81,30 +81,30 @@ export interface ListEnvironmentsCommandOutput extends Environments, __MetadataB * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To list the available environments * ```javascript * // The following list-environments example lists the available environments in your AWS account for the specified application. * const input = { - * "ApplicationId": "339ohji" + * ApplicationId: "339ohji" * }; * const command = new ListEnvironmentsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Items": [ + * Items: [ * { - * "ApplicationId": "339ohji", - * "Id": "54j1r29", - * "Name": "Example-Environment", - * "State": "READY_FOR_DEPLOYMENT" + * ApplicationId: "339ohji", + * Id: "54j1r29", + * Name: "Example-Environment", + * State: "READY_FOR_DEPLOYMENT" * } * ] * } * *\/ - * // example id: to-list-the-available-environments-1632267474389 * ``` * + * @public */ export class ListEnvironmentsCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/ListExtensionAssociationsCommand.ts b/clients/client-appconfig/src/commands/ListExtensionAssociationsCommand.ts index 6946ad5a9deb2..3158dc2695cbb 100644 --- a/clients/client-appconfig/src/commands/ListExtensionAssociationsCommand.ts +++ b/clients/client-appconfig/src/commands/ListExtensionAssociationsCommand.ts @@ -74,6 +74,7 @@ export interface ListExtensionAssociationsCommandOutput extends ExtensionAssocia * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* + * * @public */ export class ListExtensionAssociationsCommand extends $Command diff --git a/clients/client-appconfig/src/commands/ListExtensionsCommand.ts b/clients/client-appconfig/src/commands/ListExtensionsCommand.ts index 3252168ad41e5..f50a8fdddfa88 100644 --- a/clients/client-appconfig/src/commands/ListExtensionsCommand.ts +++ b/clients/client-appconfig/src/commands/ListExtensionsCommand.ts @@ -74,6 +74,7 @@ export interface ListExtensionsCommandOutput extends Extensions, __MetadataBeare * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* + * * @public */ export class ListExtensionsCommand extends $Command diff --git a/clients/client-appconfig/src/commands/ListHostedConfigurationVersionsCommand.ts b/clients/client-appconfig/src/commands/ListHostedConfigurationVersionsCommand.ts index 73e078ac03b64..6207709b2a014 100644 --- a/clients/client-appconfig/src/commands/ListHostedConfigurationVersionsCommand.ts +++ b/clients/client-appconfig/src/commands/ListHostedConfigurationVersionsCommand.ts @@ -83,31 +83,31 @@ export interface ListHostedConfigurationVersionsCommandOutput extends HostedConf * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To list the available hosted configuration versions * ```javascript * // The following list-hosted-configuration-versions example lists the configurations versions hosted in the AWS AppConfig hosted configuration store for the specified application and configuration profile. * const input = { - * "ApplicationId": "339ohji", - * "ConfigurationProfileId": "ur8hx2f" + * ApplicationId: "339ohji", + * ConfigurationProfileId: "ur8hx2f" * }; * const command = new ListHostedConfigurationVersionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Items": [ + * Items: [ * { - * "ApplicationId": "339ohji", - * "ConfigurationProfileId": "ur8hx2f", - * "ContentType": "application/json", - * "VersionNumber": 1 + * ApplicationId: "339ohji", + * ConfigurationProfileId: "ur8hx2f", + * ContentType: "application/json", + * VersionNumber: 1 * } * ] * } * *\/ - * // example id: to-list-the-available-hosted-configuration-versions-1632267647667 * ``` * + * @public */ export class ListHostedConfigurationVersionsCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/ListTagsForResourceCommand.ts b/clients/client-appconfig/src/commands/ListTagsForResourceCommand.ts index 3abcde33f5759..3812652a30f08 100644 --- a/clients/client-appconfig/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-appconfig/src/commands/ListTagsForResourceCommand.ts @@ -66,25 +66,25 @@ export interface ListTagsForResourceCommandOutput extends ResourceTags, __Metada * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To list the tags of an application * ```javascript * // The following list-tags-for-resource example lists the tags of a specified application. * const input = { - * "ResourceArn": "arn:aws:appconfig:us-east-1:111122223333:application/339ohji" + * ResourceArn: "arn:aws:appconfig:us-east-1:111122223333:application/339ohji" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Tags": { - * "group1": "1" + * Tags: { + * group1: "1" * } * } * *\/ - * // example id: to-list-the-tags-of-an-application-1632328796560 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/StartDeploymentCommand.ts b/clients/client-appconfig/src/commands/StartDeploymentCommand.ts index cd736060585ae..e1b734675c0ac 100644 --- a/clients/client-appconfig/src/commands/StartDeploymentCommand.ts +++ b/clients/client-appconfig/src/commands/StartDeploymentCommand.ts @@ -128,51 +128,8 @@ export interface StartDeploymentCommandOutput extends Deployment, __MetadataBear * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public - * @example To start a configuration deployment - * ```javascript - * // The following start-deployment example starts a deployment to the application using the specified environment, deployment strategy, and configuration profile. - * const input = { - * "ApplicationId": "339ohji", - * "ConfigurationProfileId": "ur8hx2f", - * "ConfigurationVersion": "1", - * "DeploymentStrategyId": "1225qzk", - * "Description": "", - * "EnvironmentId": "54j1r29", - * "Tags": {} - * }; - * const command = new StartDeploymentCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ApplicationId": "339ohji", - * "ConfigurationLocationUri": "ssm-parameter://Example-Parameter", - * "ConfigurationName": "Example-Configuration-Profile", - * "ConfigurationProfileId": "ur8hx2f", - * "ConfigurationVersion": "1", - * "DeploymentDurationInMinutes": 15, - * "DeploymentNumber": 1, - * "DeploymentStrategyId": "1225qzk", - * "EnvironmentId": "54j1r29", - * "EventLog": [ - * { - * "Description": "Deployment started", - * "EventType": "DEPLOYMENT_STARTED", - * "OccurredAt": "2021-09-17T21:43:54.205000+00:00", - * "TriggeredBy": "USER" - * } - * ], - * "FinalBakeTimeInMinutes": 0, - * "GrowthFactor": 25, - * "GrowthType": "LINEAR", - * "PercentageComplete": 1, - * "StartedAt": "2021-09-17T21:43:54.205000+00:00", - * "State": "DEPLOYING" - * } - * *\/ - * // example id: to-start-a-configuration-deployment-1632328956790 - * ``` * + * @public */ export class StartDeploymentCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/StopDeploymentCommand.ts b/clients/client-appconfig/src/commands/StopDeploymentCommand.ts index 95ff506e6eb61..90fa44bce9a0f 100644 --- a/clients/client-appconfig/src/commands/StopDeploymentCommand.ts +++ b/clients/client-appconfig/src/commands/StopDeploymentCommand.ts @@ -120,29 +120,29 @@ export interface StopDeploymentCommandOutput extends Deployment, __MetadataBeare * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To stop configuration deployment * ```javascript * // The following stop-deployment example stops the deployment of an application configuration to the specified environment. * const input = { - * "ApplicationId": "339ohji", - * "DeploymentNumber": 2, - * "EnvironmentId": "54j1r29" + * ApplicationId: "339ohji", + * DeploymentNumber: 2, + * EnvironmentId: "54j1r29" * }; * const command = new StopDeploymentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DeploymentDurationInMinutes": 15, - * "DeploymentNumber": 2, - * "FinalBakeTimeInMinutes": 0, - * "GrowthFactor": 25, - * "PercentageComplete": 1 + * DeploymentDurationInMinutes: 15, + * DeploymentNumber: 2, + * FinalBakeTimeInMinutes: 0, + * GrowthFactor: 25.0, + * PercentageComplete: 1.0 * } * *\/ - * // example id: to-stop-configuration-deployment-1632329139126 * ``` * + * @public */ export class StopDeploymentCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/TagResourceCommand.ts b/clients/client-appconfig/src/commands/TagResourceCommand.ts index b4a329623c81d..54d8f0a8a2f5e 100644 --- a/clients/client-appconfig/src/commands/TagResourceCommand.ts +++ b/clients/client-appconfig/src/commands/TagResourceCommand.ts @@ -67,21 +67,24 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To tag an application * ```javascript * // The following tag-resource example tags an application resource. * const input = { - * "ResourceArn": "arn:aws:appconfig:us-east-1:111122223333:application/339ohji", - * "Tags": { - * "group1": "1" + * ResourceArn: "arn:aws:appconfig:us-east-1:111122223333:application/339ohji", + * Tags: { + * group1: "1" * } * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: to-tag-an-application-1632330350645 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/UntagResourceCommand.ts b/clients/client-appconfig/src/commands/UntagResourceCommand.ts index 36e746158f1de..c52bf0cf851b6 100644 --- a/clients/client-appconfig/src/commands/UntagResourceCommand.ts +++ b/clients/client-appconfig/src/commands/UntagResourceCommand.ts @@ -65,21 +65,24 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To remove a tag from an application * ```javascript * // The following untag-resource example removes the group1 tag from the specified application. * const input = { - * "ResourceArn": "arn:aws:appconfig:us-east-1:111122223333:application/339ohji", - * "TagKeys": [ + * ResourceArn: "arn:aws:appconfig:us-east-1:111122223333:application/339ohji", + * TagKeys: [ * "group1" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: to-remove-a-tag-from-an-application-1632330429881 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-appconfig/src/commands/UpdateAccountSettingsCommand.ts index 27fe505e53d87..da8224916b73c 100644 --- a/clients/client-appconfig/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-appconfig/src/commands/UpdateAccountSettingsCommand.ts @@ -67,6 +67,7 @@ export interface UpdateAccountSettingsCommandOutput extends AccountSettings, __M * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* + * * @public */ export class UpdateAccountSettingsCommand extends $Command diff --git a/clients/client-appconfig/src/commands/UpdateApplicationCommand.ts b/clients/client-appconfig/src/commands/UpdateApplicationCommand.ts index 4b3a08163c21a..3a20efefb4c8b 100644 --- a/clients/client-appconfig/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-appconfig/src/commands/UpdateApplicationCommand.ts @@ -68,27 +68,27 @@ export interface UpdateApplicationCommandOutput extends Application, __MetadataB * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To update an application * ```javascript * // The following update-application example updates the name of the specified application. * const input = { - * "ApplicationId": "339ohji", - * "Description": "", - * "Name": "Example-Application" + * ApplicationId: "339ohji", + * Description: "", + * Name: "Example-Application" * }; * const command = new UpdateApplicationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Description": "An application used for creating an example.", - * "Id": "339ohji", - * "Name": "Example-Application" + * Description: "An application used for creating an example.", + * Id: "339ohji", + * Name: "Example-Application" * } * *\/ - * // example id: to-update-an-application-1632330585893 * ``` * + * @public */ export class UpdateApplicationCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/UpdateConfigurationProfileCommand.ts b/clients/client-appconfig/src/commands/UpdateConfigurationProfileCommand.ts index 94bb7cc9bafbe..2dbbf21cafd8b 100644 --- a/clients/client-appconfig/src/commands/UpdateConfigurationProfileCommand.ts +++ b/clients/client-appconfig/src/commands/UpdateConfigurationProfileCommand.ts @@ -94,30 +94,30 @@ export interface UpdateConfigurationProfileCommandOutput extends ConfigurationPr * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To update a configuration profile * ```javascript * // The following update-configuration-profile example updates the description of the specified configuration profile. * const input = { - * "ApplicationId": "339ohji", - * "ConfigurationProfileId": "ur8hx2f", - * "Description": "Configuration profile used for examples." + * ApplicationId: "339ohji", + * ConfigurationProfileId: "ur8hx2f", + * Description: "Configuration profile used for examples." * }; * const command = new UpdateConfigurationProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationId": "339ohji", - * "Description": "Configuration profile used for examples.", - * "Id": "ur8hx2f", - * "LocationUri": "ssm-parameter://Example-Parameter", - * "Name": "Example-Configuration-Profile", - * "RetrievalRoleArn": "arn:aws:iam::111122223333:role/Example-App-Config-Role" + * ApplicationId: "339ohji", + * Description: "Configuration profile used for examples.", + * Id: "ur8hx2f", + * LocationUri: "ssm-parameter://Example-Parameter", + * Name: "Example-Configuration-Profile", + * RetrievalRoleArn: "arn:aws:iam::111122223333:role/Example-App-Config-Role" * } * *\/ - * // example id: to-update-a-configuration-profile-1632330721974 * ``` * + * @public */ export class UpdateConfigurationProfileCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/UpdateDeploymentStrategyCommand.ts b/clients/client-appconfig/src/commands/UpdateDeploymentStrategyCommand.ts index 5a913c38366b4..3d6513103b019 100644 --- a/clients/client-appconfig/src/commands/UpdateDeploymentStrategyCommand.ts +++ b/clients/client-appconfig/src/commands/UpdateDeploymentStrategyCommand.ts @@ -76,31 +76,31 @@ export interface UpdateDeploymentStrategyCommandOutput extends DeploymentStrateg * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To update a deployment strategy * ```javascript * // The following update-deployment-strategy example updates final bake time to 20 minutes in the specified deployment strategy. :: - * // + * * const input = { - * "DeploymentStrategyId": "1225qzk", - * "FinalBakeTimeInMinutes": 20 + * DeploymentStrategyId: "1225qzk", + * FinalBakeTimeInMinutes: 20 * }; * const command = new UpdateDeploymentStrategyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DeploymentDurationInMinutes": 15, - * "FinalBakeTimeInMinutes": 20, - * "GrowthFactor": 25, - * "GrowthType": "LINEAR", - * "Id": "1225qzk", - * "Name": "Example-Deployment", - * "ReplicateTo": "SSM_DOCUMENT" + * DeploymentDurationInMinutes: 15, + * FinalBakeTimeInMinutes: 20, + * GrowthFactor: 25, + * GrowthType: "LINEAR", + * Id: "1225qzk", + * Name: "Example-Deployment", + * ReplicateTo: "SSM_DOCUMENT" * } * *\/ - * // example id: to-update-a-deployment-strategy-1632330896602 * ``` * + * @public */ export class UpdateDeploymentStrategyCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/UpdateEnvironmentCommand.ts b/clients/client-appconfig/src/commands/UpdateEnvironmentCommand.ts index c6cf8d057e2ec..f9f7072759c55 100644 --- a/clients/client-appconfig/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-appconfig/src/commands/UpdateEnvironmentCommand.ts @@ -83,29 +83,29 @@ export interface UpdateEnvironmentCommandOutput extends Environment, __MetadataB * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To update an environment * ```javascript * // The following update-environment example updates an environment's description. * const input = { - * "ApplicationId": "339ohji", - * "Description": "An environment for examples.", - * "EnvironmentId": "54j1r29" + * ApplicationId: "339ohji", + * Description: "An environment for examples.", + * EnvironmentId: "54j1r29" * }; * const command = new UpdateEnvironmentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationId": "339ohji", - * "Description": "An environment for examples.", - * "Id": "54j1r29", - * "Name": "Example-Environment", - * "State": "ROLLED_BACK" + * ApplicationId: "339ohji", + * Description: "An environment for examples.", + * Id: "54j1r29", + * Name: "Example-Environment", + * State: "ROLLED_BACK" * } * *\/ - * // example id: to-update-an-environment-1632331382428 * ``` * + * @public */ export class UpdateEnvironmentCommand extends $Command .classBuilder< diff --git a/clients/client-appconfig/src/commands/UpdateExtensionAssociationCommand.ts b/clients/client-appconfig/src/commands/UpdateExtensionAssociationCommand.ts index f3eaa6d631ec3..52ec6f05f866e 100644 --- a/clients/client-appconfig/src/commands/UpdateExtensionAssociationCommand.ts +++ b/clients/client-appconfig/src/commands/UpdateExtensionAssociationCommand.ts @@ -76,6 +76,7 @@ export interface UpdateExtensionAssociationCommandOutput extends ExtensionAssoci * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* + * * @public */ export class UpdateExtensionAssociationCommand extends $Command diff --git a/clients/client-appconfig/src/commands/UpdateExtensionCommand.ts b/clients/client-appconfig/src/commands/UpdateExtensionCommand.ts index e9c79de610ef0..8374de7883eff 100644 --- a/clients/client-appconfig/src/commands/UpdateExtensionCommand.ts +++ b/clients/client-appconfig/src/commands/UpdateExtensionCommand.ts @@ -110,6 +110,7 @@ export interface UpdateExtensionCommandOutput extends Extension, __MetadataBeare * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* + * * @public */ export class UpdateExtensionCommand extends $Command diff --git a/clients/client-appconfig/src/commands/ValidateConfigurationCommand.ts b/clients/client-appconfig/src/commands/ValidateConfigurationCommand.ts index c95adef6238d1..6d41a5b476c6d 100644 --- a/clients/client-appconfig/src/commands/ValidateConfigurationCommand.ts +++ b/clients/client-appconfig/src/commands/ValidateConfigurationCommand.ts @@ -64,20 +64,23 @@ export interface ValidateConfigurationCommandOutput extends __MetadataBearer {} * @throws {@link AppConfigServiceException} *

Base exception class for all service exceptions from AppConfig service.

* - * @public + * * @example To validate a configuration * ```javascript * // The following validate-configuration example uses the validators in a configuration profile to validate a configuration. * const input = { - * "ApplicationId": "abc1234", - * "ConfigurationProfileId": "ur8hx2f", - * "ConfigurationVersion": "1" + * ApplicationId: "abc1234", + * ConfigurationProfileId: "ur8hx2f", + * ConfigurationVersion: "1" * }; * const command = new ValidateConfigurationCommand(input); - * await client.send(command); - * // example id: to-validate-a-configuration-1632331491365 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ValidateConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-appconfigdata/src/commands/GetLatestConfigurationCommand.ts b/clients/client-appconfigdata/src/commands/GetLatestConfigurationCommand.ts index 89f2309d66947..fe0965ba53529 100644 --- a/clients/client-appconfigdata/src/commands/GetLatestConfigurationCommand.ts +++ b/clients/client-appconfigdata/src/commands/GetLatestConfigurationCommand.ts @@ -105,6 +105,7 @@ export interface GetLatestConfigurationCommandOutput * @throws {@link AppConfigDataServiceException} *

Base exception class for all service exceptions from AppConfigData service.

* + * * @public */ export class GetLatestConfigurationCommand extends $Command diff --git a/clients/client-appconfigdata/src/commands/StartConfigurationSessionCommand.ts b/clients/client-appconfigdata/src/commands/StartConfigurationSessionCommand.ts index 3313f80563fe8..ef005e6362f45 100644 --- a/clients/client-appconfigdata/src/commands/StartConfigurationSessionCommand.ts +++ b/clients/client-appconfigdata/src/commands/StartConfigurationSessionCommand.ts @@ -73,6 +73,7 @@ export interface StartConfigurationSessionCommandOutput extends StartConfigurati * @throws {@link AppConfigDataServiceException} *

Base exception class for all service exceptions from AppConfigData service.

* + * * @public */ export class StartConfigurationSessionCommand extends $Command diff --git a/clients/client-appfabric/src/commands/BatchGetUserAccessTasksCommand.ts b/clients/client-appfabric/src/commands/BatchGetUserAccessTasksCommand.ts index f644791b5752b..0c13212350ffa 100644 --- a/clients/client-appfabric/src/commands/BatchGetUserAccessTasksCommand.ts +++ b/clients/client-appfabric/src/commands/BatchGetUserAccessTasksCommand.ts @@ -98,6 +98,7 @@ export interface BatchGetUserAccessTasksCommandOutput extends BatchGetUserAccess * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class BatchGetUserAccessTasksCommand extends $Command diff --git a/clients/client-appfabric/src/commands/ConnectAppAuthorizationCommand.ts b/clients/client-appfabric/src/commands/ConnectAppAuthorizationCommand.ts index ef0282ac6e3ba..2d01886c8eb57 100644 --- a/clients/client-appfabric/src/commands/ConnectAppAuthorizationCommand.ts +++ b/clients/client-appfabric/src/commands/ConnectAppAuthorizationCommand.ts @@ -91,6 +91,7 @@ export interface ConnectAppAuthorizationCommandOutput extends ConnectAppAuthoriz * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class ConnectAppAuthorizationCommand extends $Command diff --git a/clients/client-appfabric/src/commands/CreateAppAuthorizationCommand.ts b/clients/client-appfabric/src/commands/CreateAppAuthorizationCommand.ts index 0f09553e47326..cb515c2ce6296 100644 --- a/clients/client-appfabric/src/commands/CreateAppAuthorizationCommand.ts +++ b/clients/client-appfabric/src/commands/CreateAppAuthorizationCommand.ts @@ -118,6 +118,7 @@ export interface CreateAppAuthorizationCommandOutput extends CreateAppAuthorizat * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class CreateAppAuthorizationCommand extends $Command diff --git a/clients/client-appfabric/src/commands/CreateAppBundleCommand.ts b/clients/client-appfabric/src/commands/CreateAppBundleCommand.ts index 42400e67af6f7..3754c6fc71e8d 100644 --- a/clients/client-appfabric/src/commands/CreateAppBundleCommand.ts +++ b/clients/client-appfabric/src/commands/CreateAppBundleCommand.ts @@ -84,6 +84,7 @@ export interface CreateAppBundleCommandOutput extends CreateAppBundleResponse, _ * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class CreateAppBundleCommand extends $Command diff --git a/clients/client-appfabric/src/commands/CreateIngestionCommand.ts b/clients/client-appfabric/src/commands/CreateIngestionCommand.ts index 1d269669a6235..7d53a6cf785e1 100644 --- a/clients/client-appfabric/src/commands/CreateIngestionCommand.ts +++ b/clients/client-appfabric/src/commands/CreateIngestionCommand.ts @@ -93,6 +93,7 @@ export interface CreateIngestionCommandOutput extends CreateIngestionResponse, _ * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class CreateIngestionCommand extends $Command diff --git a/clients/client-appfabric/src/commands/CreateIngestionDestinationCommand.ts b/clients/client-appfabric/src/commands/CreateIngestionDestinationCommand.ts index c07df639664cd..1e982bd220f72 100644 --- a/clients/client-appfabric/src/commands/CreateIngestionDestinationCommand.ts +++ b/clients/client-appfabric/src/commands/CreateIngestionDestinationCommand.ts @@ -128,6 +128,7 @@ export interface CreateIngestionDestinationCommandOutput extends CreateIngestion * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class CreateIngestionDestinationCommand extends $Command diff --git a/clients/client-appfabric/src/commands/DeleteAppAuthorizationCommand.ts b/clients/client-appfabric/src/commands/DeleteAppAuthorizationCommand.ts index cbbd83da8e2ad..52d70ee5f6bb6 100644 --- a/clients/client-appfabric/src/commands/DeleteAppAuthorizationCommand.ts +++ b/clients/client-appfabric/src/commands/DeleteAppAuthorizationCommand.ts @@ -71,6 +71,7 @@ export interface DeleteAppAuthorizationCommandOutput extends DeleteAppAuthorizat * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class DeleteAppAuthorizationCommand extends $Command diff --git a/clients/client-appfabric/src/commands/DeleteAppBundleCommand.ts b/clients/client-appfabric/src/commands/DeleteAppBundleCommand.ts index 3b6c94e45c983..92ef86fdb7058 100644 --- a/clients/client-appfabric/src/commands/DeleteAppBundleCommand.ts +++ b/clients/client-appfabric/src/commands/DeleteAppBundleCommand.ts @@ -70,6 +70,7 @@ export interface DeleteAppBundleCommandOutput extends DeleteAppBundleResponse, _ * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class DeleteAppBundleCommand extends $Command diff --git a/clients/client-appfabric/src/commands/DeleteIngestionCommand.ts b/clients/client-appfabric/src/commands/DeleteIngestionCommand.ts index 051be64c4a3db..ef9aee8d68f10 100644 --- a/clients/client-appfabric/src/commands/DeleteIngestionCommand.ts +++ b/clients/client-appfabric/src/commands/DeleteIngestionCommand.ts @@ -71,6 +71,7 @@ export interface DeleteIngestionCommandOutput extends DeleteIngestionResponse, _ * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class DeleteIngestionCommand extends $Command diff --git a/clients/client-appfabric/src/commands/DeleteIngestionDestinationCommand.ts b/clients/client-appfabric/src/commands/DeleteIngestionDestinationCommand.ts index c1221d245edd1..8c9b9ae6d0f3f 100644 --- a/clients/client-appfabric/src/commands/DeleteIngestionDestinationCommand.ts +++ b/clients/client-appfabric/src/commands/DeleteIngestionDestinationCommand.ts @@ -75,6 +75,7 @@ export interface DeleteIngestionDestinationCommandOutput extends DeleteIngestion * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class DeleteIngestionDestinationCommand extends $Command diff --git a/clients/client-appfabric/src/commands/GetAppAuthorizationCommand.ts b/clients/client-appfabric/src/commands/GetAppAuthorizationCommand.ts index 40ca615d9a339..a5ff5a79ce81c 100644 --- a/clients/client-appfabric/src/commands/GetAppAuthorizationCommand.ts +++ b/clients/client-appfabric/src/commands/GetAppAuthorizationCommand.ts @@ -86,6 +86,7 @@ export interface GetAppAuthorizationCommandOutput extends GetAppAuthorizationRes * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class GetAppAuthorizationCommand extends $Command diff --git a/clients/client-appfabric/src/commands/GetAppBundleCommand.ts b/clients/client-appfabric/src/commands/GetAppBundleCommand.ts index 63f19e831ee12..a8bb19b81674e 100644 --- a/clients/client-appfabric/src/commands/GetAppBundleCommand.ts +++ b/clients/client-appfabric/src/commands/GetAppBundleCommand.ts @@ -74,6 +74,7 @@ export interface GetAppBundleCommandOutput extends GetAppBundleResponse, __Metad * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class GetAppBundleCommand extends $Command diff --git a/clients/client-appfabric/src/commands/GetIngestionCommand.ts b/clients/client-appfabric/src/commands/GetIngestionCommand.ts index 3a08fdb03d587..fa131ec9b49d2 100644 --- a/clients/client-appfabric/src/commands/GetIngestionCommand.ts +++ b/clients/client-appfabric/src/commands/GetIngestionCommand.ts @@ -81,6 +81,7 @@ export interface GetIngestionCommandOutput extends GetIngestionResponse, __Metad * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class GetIngestionCommand extends $Command diff --git a/clients/client-appfabric/src/commands/GetIngestionDestinationCommand.ts b/clients/client-appfabric/src/commands/GetIngestionDestinationCommand.ts index 272db80f43798..93c7ca400c532 100644 --- a/clients/client-appfabric/src/commands/GetIngestionDestinationCommand.ts +++ b/clients/client-appfabric/src/commands/GetIngestionDestinationCommand.ts @@ -99,6 +99,7 @@ export interface GetIngestionDestinationCommandOutput extends GetIngestionDestin * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class GetIngestionDestinationCommand extends $Command diff --git a/clients/client-appfabric/src/commands/ListAppAuthorizationsCommand.ts b/clients/client-appfabric/src/commands/ListAppAuthorizationsCommand.ts index d5c2bc3a0406a..8cb900b6ac32b 100644 --- a/clients/client-appfabric/src/commands/ListAppAuthorizationsCommand.ts +++ b/clients/client-appfabric/src/commands/ListAppAuthorizationsCommand.ts @@ -86,6 +86,7 @@ export interface ListAppAuthorizationsCommandOutput extends ListAppAuthorization * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class ListAppAuthorizationsCommand extends $Command diff --git a/clients/client-appfabric/src/commands/ListAppBundlesCommand.ts b/clients/client-appfabric/src/commands/ListAppBundlesCommand.ts index f1ff507b00785..718c41324a550 100644 --- a/clients/client-appfabric/src/commands/ListAppBundlesCommand.ts +++ b/clients/client-appfabric/src/commands/ListAppBundlesCommand.ts @@ -74,6 +74,7 @@ export interface ListAppBundlesCommandOutput extends ListAppBundlesResponse, __M * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class ListAppBundlesCommand extends $Command diff --git a/clients/client-appfabric/src/commands/ListIngestionDestinationsCommand.ts b/clients/client-appfabric/src/commands/ListIngestionDestinationsCommand.ts index 3de93039fcf68..15e060b2bcc83 100644 --- a/clients/client-appfabric/src/commands/ListIngestionDestinationsCommand.ts +++ b/clients/client-appfabric/src/commands/ListIngestionDestinationsCommand.ts @@ -79,6 +79,7 @@ export interface ListIngestionDestinationsCommandOutput extends ListIngestionDes * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class ListIngestionDestinationsCommand extends $Command diff --git a/clients/client-appfabric/src/commands/ListIngestionsCommand.ts b/clients/client-appfabric/src/commands/ListIngestionsCommand.ts index dbe2495629966..90e54ba0ba684 100644 --- a/clients/client-appfabric/src/commands/ListIngestionsCommand.ts +++ b/clients/client-appfabric/src/commands/ListIngestionsCommand.ts @@ -81,6 +81,7 @@ export interface ListIngestionsCommandOutput extends ListIngestionsResponse, __M * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class ListIngestionsCommand extends $Command diff --git a/clients/client-appfabric/src/commands/ListTagsForResourceCommand.ts b/clients/client-appfabric/src/commands/ListTagsForResourceCommand.ts index dce6852ed041c..67f6d9151bbc5 100644 --- a/clients/client-appfabric/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-appfabric/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-appfabric/src/commands/StartIngestionCommand.ts b/clients/client-appfabric/src/commands/StartIngestionCommand.ts index 96ec1c390da27..9bc5ddedbc617 100644 --- a/clients/client-appfabric/src/commands/StartIngestionCommand.ts +++ b/clients/client-appfabric/src/commands/StartIngestionCommand.ts @@ -73,6 +73,7 @@ export interface StartIngestionCommandOutput extends StartIngestionResponse, __M * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class StartIngestionCommand extends $Command diff --git a/clients/client-appfabric/src/commands/StartUserAccessTasksCommand.ts b/clients/client-appfabric/src/commands/StartUserAccessTasksCommand.ts index a53821c1fc3a5..bc6191c7ffb1b 100644 --- a/clients/client-appfabric/src/commands/StartUserAccessTasksCommand.ts +++ b/clients/client-appfabric/src/commands/StartUserAccessTasksCommand.ts @@ -88,6 +88,7 @@ export interface StartUserAccessTasksCommandOutput extends StartUserAccessTasksR * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class StartUserAccessTasksCommand extends $Command diff --git a/clients/client-appfabric/src/commands/StopIngestionCommand.ts b/clients/client-appfabric/src/commands/StopIngestionCommand.ts index 6e9c333d94037..e8f3770dd911b 100644 --- a/clients/client-appfabric/src/commands/StopIngestionCommand.ts +++ b/clients/client-appfabric/src/commands/StopIngestionCommand.ts @@ -73,6 +73,7 @@ export interface StopIngestionCommandOutput extends StopIngestionResponse, __Met * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class StopIngestionCommand extends $Command diff --git a/clients/client-appfabric/src/commands/TagResourceCommand.ts b/clients/client-appfabric/src/commands/TagResourceCommand.ts index e8bb24ac24930..0499573eaa999 100644 --- a/clients/client-appfabric/src/commands/TagResourceCommand.ts +++ b/clients/client-appfabric/src/commands/TagResourceCommand.ts @@ -75,6 +75,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-appfabric/src/commands/UntagResourceCommand.ts b/clients/client-appfabric/src/commands/UntagResourceCommand.ts index e55a8099485a9..f5f9d0a6dd894 100644 --- a/clients/client-appfabric/src/commands/UntagResourceCommand.ts +++ b/clients/client-appfabric/src/commands/UntagResourceCommand.ts @@ -72,6 +72,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-appfabric/src/commands/UpdateAppAuthorizationCommand.ts b/clients/client-appfabric/src/commands/UpdateAppAuthorizationCommand.ts index 4b25b8afcf3c4..c0b0428d7f5a5 100644 --- a/clients/client-appfabric/src/commands/UpdateAppAuthorizationCommand.ts +++ b/clients/client-appfabric/src/commands/UpdateAppAuthorizationCommand.ts @@ -106,6 +106,7 @@ export interface UpdateAppAuthorizationCommandOutput extends UpdateAppAuthorizat * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class UpdateAppAuthorizationCommand extends $Command diff --git a/clients/client-appfabric/src/commands/UpdateIngestionDestinationCommand.ts b/clients/client-appfabric/src/commands/UpdateIngestionDestinationCommand.ts index 26af44499d1fb..b65bb8845c8e6 100644 --- a/clients/client-appfabric/src/commands/UpdateIngestionDestinationCommand.ts +++ b/clients/client-appfabric/src/commands/UpdateIngestionDestinationCommand.ts @@ -119,6 +119,7 @@ export interface UpdateIngestionDestinationCommandOutput extends UpdateIngestion * @throws {@link AppFabricServiceException} *

Base exception class for all service exceptions from AppFabric service.

* + * * @public */ export class UpdateIngestionDestinationCommand extends $Command diff --git a/clients/client-appflow/src/commands/CancelFlowExecutionsCommand.ts b/clients/client-appflow/src/commands/CancelFlowExecutionsCommand.ts index 4781ca5de8b23..caf11e9b4dfd5 100644 --- a/clients/client-appflow/src/commands/CancelFlowExecutionsCommand.ts +++ b/clients/client-appflow/src/commands/CancelFlowExecutionsCommand.ts @@ -95,6 +95,7 @@ export interface CancelFlowExecutionsCommandOutput extends CancelFlowExecutionsR * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class CancelFlowExecutionsCommand extends $Command diff --git a/clients/client-appflow/src/commands/CreateConnectorProfileCommand.ts b/clients/client-appflow/src/commands/CreateConnectorProfileCommand.ts index 7262e32c316b0..aedf11007d633 100644 --- a/clients/client-appflow/src/commands/CreateConnectorProfileCommand.ts +++ b/clients/client-appflow/src/commands/CreateConnectorProfileCommand.ts @@ -321,6 +321,7 @@ export interface CreateConnectorProfileCommandOutput extends CreateConnectorProf * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class CreateConnectorProfileCommand extends $Command diff --git a/clients/client-appflow/src/commands/CreateFlowCommand.ts b/clients/client-appflow/src/commands/CreateFlowCommand.ts index ae78bbf200880..cb22edb7a1c9f 100644 --- a/clients/client-appflow/src/commands/CreateFlowCommand.ts +++ b/clients/client-appflow/src/commands/CreateFlowCommand.ts @@ -367,6 +367,7 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class CreateFlowCommand extends $Command diff --git a/clients/client-appflow/src/commands/DeleteConnectorProfileCommand.ts b/clients/client-appflow/src/commands/DeleteConnectorProfileCommand.ts index 842c97af05df1..cd86a9166a460 100644 --- a/clients/client-appflow/src/commands/DeleteConnectorProfileCommand.ts +++ b/clients/client-appflow/src/commands/DeleteConnectorProfileCommand.ts @@ -66,6 +66,7 @@ export interface DeleteConnectorProfileCommandOutput extends DeleteConnectorProf * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class DeleteConnectorProfileCommand extends $Command diff --git a/clients/client-appflow/src/commands/DeleteFlowCommand.ts b/clients/client-appflow/src/commands/DeleteFlowCommand.ts index 7637f4778087c..747626a95c9df 100644 --- a/clients/client-appflow/src/commands/DeleteFlowCommand.ts +++ b/clients/client-appflow/src/commands/DeleteFlowCommand.ts @@ -67,6 +67,7 @@ export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataB * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class DeleteFlowCommand extends $Command diff --git a/clients/client-appflow/src/commands/DescribeConnectorCommand.ts b/clients/client-appflow/src/commands/DescribeConnectorCommand.ts index f32423e5ae324..16aa33c63e10e 100644 --- a/clients/client-appflow/src/commands/DescribeConnectorCommand.ts +++ b/clients/client-appflow/src/commands/DescribeConnectorCommand.ts @@ -235,6 +235,7 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class DescribeConnectorCommand extends $Command diff --git a/clients/client-appflow/src/commands/DescribeConnectorEntityCommand.ts b/clients/client-appflow/src/commands/DescribeConnectorEntityCommand.ts index aac81763b0c6c..e3a07a79f3923 100644 --- a/clients/client-appflow/src/commands/DescribeConnectorEntityCommand.ts +++ b/clients/client-appflow/src/commands/DescribeConnectorEntityCommand.ts @@ -125,6 +125,7 @@ export interface DescribeConnectorEntityCommandOutput extends DescribeConnectorE * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class DescribeConnectorEntityCommand extends $Command diff --git a/clients/client-appflow/src/commands/DescribeConnectorProfilesCommand.ts b/clients/client-appflow/src/commands/DescribeConnectorProfilesCommand.ts index df1f0c9994f42..346b3315402d8 100644 --- a/clients/client-appflow/src/commands/DescribeConnectorProfilesCommand.ts +++ b/clients/client-appflow/src/commands/DescribeConnectorProfilesCommand.ts @@ -178,6 +178,7 @@ export interface DescribeConnectorProfilesCommandOutput extends DescribeConnecto * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class DescribeConnectorProfilesCommand extends $Command diff --git a/clients/client-appflow/src/commands/DescribeConnectorsCommand.ts b/clients/client-appflow/src/commands/DescribeConnectorsCommand.ts index f6dca073f4486..1a4331a52d878 100644 --- a/clients/client-appflow/src/commands/DescribeConnectorsCommand.ts +++ b/clients/client-appflow/src/commands/DescribeConnectorsCommand.ts @@ -258,6 +258,7 @@ export interface DescribeConnectorsCommandOutput extends DescribeConnectorsRespo * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class DescribeConnectorsCommand extends $Command diff --git a/clients/client-appflow/src/commands/DescribeFlowCommand.ts b/clients/client-appflow/src/commands/DescribeFlowCommand.ts index 532c27d492435..49136dce767e1 100644 --- a/clients/client-appflow/src/commands/DescribeFlowCommand.ts +++ b/clients/client-appflow/src/commands/DescribeFlowCommand.ts @@ -370,6 +370,7 @@ export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __Metad * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class DescribeFlowCommand extends $Command diff --git a/clients/client-appflow/src/commands/DescribeFlowExecutionRecordsCommand.ts b/clients/client-appflow/src/commands/DescribeFlowExecutionRecordsCommand.ts index f0d33e6071f5c..c0f42319ad725 100644 --- a/clients/client-appflow/src/commands/DescribeFlowExecutionRecordsCommand.ts +++ b/clients/client-appflow/src/commands/DescribeFlowExecutionRecordsCommand.ts @@ -110,6 +110,7 @@ export interface DescribeFlowExecutionRecordsCommandOutput * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class DescribeFlowExecutionRecordsCommand extends $Command diff --git a/clients/client-appflow/src/commands/ListConnectorEntitiesCommand.ts b/clients/client-appflow/src/commands/ListConnectorEntitiesCommand.ts index 612b614d31065..7c3d1b70daae1 100644 --- a/clients/client-appflow/src/commands/ListConnectorEntitiesCommand.ts +++ b/clients/client-appflow/src/commands/ListConnectorEntitiesCommand.ts @@ -89,6 +89,7 @@ export interface ListConnectorEntitiesCommandOutput extends ListConnectorEntitie * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class ListConnectorEntitiesCommand extends $Command diff --git a/clients/client-appflow/src/commands/ListConnectorsCommand.ts b/clients/client-appflow/src/commands/ListConnectorsCommand.ts index d0e216149cf7b..0d6059fbc6255 100644 --- a/clients/client-appflow/src/commands/ListConnectorsCommand.ts +++ b/clients/client-appflow/src/commands/ListConnectorsCommand.ts @@ -85,6 +85,7 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class ListConnectorsCommand extends $Command diff --git a/clients/client-appflow/src/commands/ListFlowsCommand.ts b/clients/client-appflow/src/commands/ListFlowsCommand.ts index c527f5bd27f1e..89f1b229fd97c 100644 --- a/clients/client-appflow/src/commands/ListFlowsCommand.ts +++ b/clients/client-appflow/src/commands/ListFlowsCommand.ts @@ -88,6 +88,7 @@ export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBea * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class ListFlowsCommand extends $Command diff --git a/clients/client-appflow/src/commands/ListTagsForResourceCommand.ts b/clients/client-appflow/src/commands/ListTagsForResourceCommand.ts index 947b1bd4b31f8..077525c6cc79d 100644 --- a/clients/client-appflow/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-appflow/src/commands/ListTagsForResourceCommand.ts @@ -68,6 +68,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-appflow/src/commands/RegisterConnectorCommand.ts b/clients/client-appflow/src/commands/RegisterConnectorCommand.ts index 7283e4fd14d61..a5b525aa0853f 100644 --- a/clients/client-appflow/src/commands/RegisterConnectorCommand.ts +++ b/clients/client-appflow/src/commands/RegisterConnectorCommand.ts @@ -97,6 +97,7 @@ export interface RegisterConnectorCommandOutput extends RegisterConnectorRespons * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class RegisterConnectorCommand extends $Command diff --git a/clients/client-appflow/src/commands/ResetConnectorMetadataCacheCommand.ts b/clients/client-appflow/src/commands/ResetConnectorMetadataCacheCommand.ts index 97830ddd80e7c..1796572b1767e 100644 --- a/clients/client-appflow/src/commands/ResetConnectorMetadataCacheCommand.ts +++ b/clients/client-appflow/src/commands/ResetConnectorMetadataCacheCommand.ts @@ -83,6 +83,7 @@ export interface ResetConnectorMetadataCacheCommandOutput * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class ResetConnectorMetadataCacheCommand extends $Command diff --git a/clients/client-appflow/src/commands/StartFlowCommand.ts b/clients/client-appflow/src/commands/StartFlowCommand.ts index 1efc664e71b12..419b8b0d68acd 100644 --- a/clients/client-appflow/src/commands/StartFlowCommand.ts +++ b/clients/client-appflow/src/commands/StartFlowCommand.ts @@ -75,6 +75,7 @@ export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBea * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class StartFlowCommand extends $Command diff --git a/clients/client-appflow/src/commands/StopFlowCommand.ts b/clients/client-appflow/src/commands/StopFlowCommand.ts index 69ecff2310bd6..27dd111b4cd7b 100644 --- a/clients/client-appflow/src/commands/StopFlowCommand.ts +++ b/clients/client-appflow/src/commands/StopFlowCommand.ts @@ -73,6 +73,7 @@ export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBeare * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class StopFlowCommand extends $Command diff --git a/clients/client-appflow/src/commands/TagResourceCommand.ts b/clients/client-appflow/src/commands/TagResourceCommand.ts index b81215bfb2ac5..b3cc5debcbda3 100644 --- a/clients/client-appflow/src/commands/TagResourceCommand.ts +++ b/clients/client-appflow/src/commands/TagResourceCommand.ts @@ -67,6 +67,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-appflow/src/commands/UnregisterConnectorCommand.ts b/clients/client-appflow/src/commands/UnregisterConnectorCommand.ts index 0438b6771d637..48b770e52f770 100644 --- a/clients/client-appflow/src/commands/UnregisterConnectorCommand.ts +++ b/clients/client-appflow/src/commands/UnregisterConnectorCommand.ts @@ -67,6 +67,7 @@ export interface UnregisterConnectorCommandOutput extends UnregisterConnectorRes * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class UnregisterConnectorCommand extends $Command diff --git a/clients/client-appflow/src/commands/UntagResourceCommand.ts b/clients/client-appflow/src/commands/UntagResourceCommand.ts index 81977a3f2f8dc..ad15dbd638a95 100644 --- a/clients/client-appflow/src/commands/UntagResourceCommand.ts +++ b/clients/client-appflow/src/commands/UntagResourceCommand.ts @@ -67,6 +67,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-appflow/src/commands/UpdateConnectorProfileCommand.ts b/clients/client-appflow/src/commands/UpdateConnectorProfileCommand.ts index fc288e86a3469..b7423ce03e978 100644 --- a/clients/client-appflow/src/commands/UpdateConnectorProfileCommand.ts +++ b/clients/client-appflow/src/commands/UpdateConnectorProfileCommand.ts @@ -314,6 +314,7 @@ export interface UpdateConnectorProfileCommandOutput extends UpdateConnectorProf * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class UpdateConnectorProfileCommand extends $Command diff --git a/clients/client-appflow/src/commands/UpdateConnectorRegistrationCommand.ts b/clients/client-appflow/src/commands/UpdateConnectorRegistrationCommand.ts index 6febed1ff7b96..1f7412342b655 100644 --- a/clients/client-appflow/src/commands/UpdateConnectorRegistrationCommand.ts +++ b/clients/client-appflow/src/commands/UpdateConnectorRegistrationCommand.ts @@ -108,6 +108,7 @@ export interface UpdateConnectorRegistrationCommandOutput * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class UpdateConnectorRegistrationCommand extends $Command diff --git a/clients/client-appflow/src/commands/UpdateFlowCommand.ts b/clients/client-appflow/src/commands/UpdateFlowCommand.ts index 5696bdf409d2e..7bcf86a6bd0fa 100644 --- a/clients/client-appflow/src/commands/UpdateFlowCommand.ts +++ b/clients/client-appflow/src/commands/UpdateFlowCommand.ts @@ -358,6 +358,7 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB * @throws {@link AppflowServiceException} *

Base exception class for all service exceptions from Appflow service.

* + * * @public */ export class UpdateFlowCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/CreateApplicationCommand.ts b/clients/client-appintegrations/src/commands/CreateApplicationCommand.ts index dd4455ae25e7b..e91b90899003b 100644 --- a/clients/client-appintegrations/src/commands/CreateApplicationCommand.ts +++ b/clients/client-appintegrations/src/commands/CreateApplicationCommand.ts @@ -107,31 +107,31 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* - * @public + * * @example To create an application * ```javascript * // The following creates an application named My Application with access url https://example.com. * const input = { - * "ApplicationSourceConfig": { - * "ExternalUrlConfig": { - * "AccessUrl": "https://example.com" + * ApplicationSourceConfig: { + * ExternalUrlConfig: { + * AccessUrl: "https://example.com" * } * }, - * "Description": "My first application.", - * "Name": "My Application", - * "Namespace": "myapplication" + * Description: "My first application.", + * Name: "My Application", + * Namespace: "myapplication" * }; * const command = new CreateApplicationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e", - * "Id": "98542c53-e8ac-4570-9c85-c6552c8d9c5e" + * Arn: "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e", + * Id: "98542c53-e8ac-4570-9c85-c6552c8d9c5e" * } * *\/ - * // example id: create-an-application * ``` * + * @public */ export class CreateApplicationCommand extends $Command .classBuilder< diff --git a/clients/client-appintegrations/src/commands/CreateDataIntegrationAssociationCommand.ts b/clients/client-appintegrations/src/commands/CreateDataIntegrationAssociationCommand.ts index 025fc28d38a1e..de5600cc49fff 100644 --- a/clients/client-appintegrations/src/commands/CreateDataIntegrationAssociationCommand.ts +++ b/clients/client-appintegrations/src/commands/CreateDataIntegrationAssociationCommand.ts @@ -104,6 +104,7 @@ export interface CreateDataIntegrationAssociationCommandOutput * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class CreateDataIntegrationAssociationCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/CreateDataIntegrationCommand.ts b/clients/client-appintegrations/src/commands/CreateDataIntegrationCommand.ts index 7d3b2ba3d2d70..b578a7768e209 100644 --- a/clients/client-appintegrations/src/commands/CreateDataIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/CreateDataIntegrationCommand.ts @@ -138,6 +138,7 @@ export interface CreateDataIntegrationCommandOutput extends CreateDataIntegratio * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class CreateDataIntegrationCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/CreateEventIntegrationCommand.ts b/clients/client-appintegrations/src/commands/CreateEventIntegrationCommand.ts index 601e821789748..129bb04035f93 100644 --- a/clients/client-appintegrations/src/commands/CreateEventIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/CreateEventIntegrationCommand.ts @@ -85,6 +85,7 @@ export interface CreateEventIntegrationCommandOutput extends CreateEventIntegrat * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class CreateEventIntegrationCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/DeleteApplicationCommand.ts b/clients/client-appintegrations/src/commands/DeleteApplicationCommand.ts index c43e96aaa5f8a..12964c7d99484 100644 --- a/clients/client-appintegrations/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-appintegrations/src/commands/DeleteApplicationCommand.ts @@ -69,18 +69,21 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* - * @public + * * @example To delete an application * ```javascript * // The following deletes an application. * const input = { - * "Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e" + * Arn: "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e" * }; * const command = new DeleteApplicationCommand(input); - * await client.send(command); - * // example id: delete-an-application + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteApplicationCommand extends $Command .classBuilder< diff --git a/clients/client-appintegrations/src/commands/DeleteDataIntegrationCommand.ts b/clients/client-appintegrations/src/commands/DeleteDataIntegrationCommand.ts index 0b4bcbd47b78a..5f8d0225a2c86 100644 --- a/clients/client-appintegrations/src/commands/DeleteDataIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/DeleteDataIntegrationCommand.ts @@ -75,6 +75,7 @@ export interface DeleteDataIntegrationCommandOutput extends DeleteDataIntegratio * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class DeleteDataIntegrationCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/DeleteEventIntegrationCommand.ts b/clients/client-appintegrations/src/commands/DeleteEventIntegrationCommand.ts index 4191f9747b52b..01424da6a1331 100644 --- a/clients/client-appintegrations/src/commands/DeleteEventIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/DeleteEventIntegrationCommand.ts @@ -69,6 +69,7 @@ export interface DeleteEventIntegrationCommandOutput extends DeleteEventIntegrat * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class DeleteEventIntegrationCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/GetApplicationCommand.ts b/clients/client-appintegrations/src/commands/GetApplicationCommand.ts index dccee7f94205e..efb872bf8a6e0 100644 --- a/clients/client-appintegrations/src/commands/GetApplicationCommand.ts +++ b/clients/client-appintegrations/src/commands/GetApplicationCommand.ts @@ -103,30 +103,30 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* - * @public + * * @example To get an application * ```javascript * // The following retrives an application. * const input = { - * "Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e" + * Arn: "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e" * }; * const command = new GetApplicationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationSourceConfig": { - * "ExternalUrlConfig": { - * "AccessUrl": "https://example.com" + * ApplicationSourceConfig: { + * ExternalUrlConfig: { + * AccessUrl: "https://example.com" * } * }, - * "Description": "My first application.", - * "Name": "My Application", - * "Namespace": "myapplication" + * Description: "My first application.", + * Name: "My Application", + * Namespace: "myapplication" * } * *\/ - * // example id: get-an-application * ``` * + * @public */ export class GetApplicationCommand extends $Command .classBuilder< diff --git a/clients/client-appintegrations/src/commands/GetDataIntegrationCommand.ts b/clients/client-appintegrations/src/commands/GetDataIntegrationCommand.ts index 38ed1436d9d13..17647b19000e3 100644 --- a/clients/client-appintegrations/src/commands/GetDataIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/GetDataIntegrationCommand.ts @@ -105,6 +105,7 @@ export interface GetDataIntegrationCommandOutput extends GetDataIntegrationRespo * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class GetDataIntegrationCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/GetEventIntegrationCommand.ts b/clients/client-appintegrations/src/commands/GetEventIntegrationCommand.ts index d164fd0f766b2..e71c93bd3e454 100644 --- a/clients/client-appintegrations/src/commands/GetEventIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/GetEventIntegrationCommand.ts @@ -79,6 +79,7 @@ export interface GetEventIntegrationCommandOutput extends GetEventIntegrationRes * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class GetEventIntegrationCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/ListApplicationAssociationsCommand.ts b/clients/client-appintegrations/src/commands/ListApplicationAssociationsCommand.ts index 28e46a6311933..a019cf46da93d 100644 --- a/clients/client-appintegrations/src/commands/ListApplicationAssociationsCommand.ts +++ b/clients/client-appintegrations/src/commands/ListApplicationAssociationsCommand.ts @@ -84,30 +84,30 @@ export interface ListApplicationAssociationsCommandOutput * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* - * @public + * * @example To list application associations of an application * ```javascript * // The following retrives application associations of an application * const input = { - * "ApplicationId": "98542c53-e8ac-4570-9c85-c6552c8d9c5e" + * ApplicationId: "98542c53-e8ac-4570-9c85-c6552c8d9c5e" * }; * const command = new ListApplicationAssociationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationAssociations": [ + * ApplicationAssociations: [ * { - * "ApplicationArn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e", - * "ApplicationAssociationArn": "arn:aws:app-integrations:us-west-2:0123456789012:application-association/98542c53-e8ac-4570-9c85-c6552c8d9c5e/461dfb57-320a-454d-9bba-bb560845ff38", - * "ClientId": "connect.amazonaws.com" + * ApplicationArn: "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e", + * ApplicationAssociationArn: "arn:aws:app-integrations:us-west-2:0123456789012:application-association/98542c53-e8ac-4570-9c85-c6552c8d9c5e/461dfb57-320a-454d-9bba-bb560845ff38", + * ClientId: "connect.amazonaws.com" * } * ], - * "NextToken": "abc" + * NextToken: "abc" * } * *\/ - * // example id: list-application-associations * ``` * + * @public */ export class ListApplicationAssociationsCommand extends $Command .classBuilder< diff --git a/clients/client-appintegrations/src/commands/ListApplicationsCommand.ts b/clients/client-appintegrations/src/commands/ListApplicationsCommand.ts index d36db69a031c2..17614cac93753 100644 --- a/clients/client-appintegrations/src/commands/ListApplicationsCommand.ts +++ b/clients/client-appintegrations/src/commands/ListApplicationsCommand.ts @@ -78,31 +78,31 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* - * @public + * * @example To list applications in the account * ```javascript * // The following lists application summary in the account. * const input = { - * "MaxResults": 1 + * MaxResults: 1 * }; * const command = new ListApplicationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Applications": [ + * Applications: [ * { - * "Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e", - * "Id": "98542c53-e8ac-4570-9c85-c6552c8d9c5e", - * "Name": "My Application", - * "Namespace": "myapplication" + * Arn: "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e", + * Id: "98542c53-e8ac-4570-9c85-c6552c8d9c5e", + * Name: "My Application", + * Namespace: "myapplication" * } * ], - * "NextToken": "abc" + * NextToken: "abc" * } * *\/ - * // example id: list-applications * ``` * + * @public */ export class ListApplicationsCommand extends $Command .classBuilder< diff --git a/clients/client-appintegrations/src/commands/ListDataIntegrationAssociationsCommand.ts b/clients/client-appintegrations/src/commands/ListDataIntegrationAssociationsCommand.ts index 811392a2b26be..8a876ae85dd2d 100644 --- a/clients/client-appintegrations/src/commands/ListDataIntegrationAssociationsCommand.ts +++ b/clients/client-appintegrations/src/commands/ListDataIntegrationAssociationsCommand.ts @@ -106,6 +106,7 @@ export interface ListDataIntegrationAssociationsCommandOutput * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class ListDataIntegrationAssociationsCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/ListDataIntegrationsCommand.ts b/clients/client-appintegrations/src/commands/ListDataIntegrationsCommand.ts index 11bedaa41a3ec..d0b365a437272 100644 --- a/clients/client-appintegrations/src/commands/ListDataIntegrationsCommand.ts +++ b/clients/client-appintegrations/src/commands/ListDataIntegrationsCommand.ts @@ -80,6 +80,7 @@ export interface ListDataIntegrationsCommandOutput extends ListDataIntegrationsR * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class ListDataIntegrationsCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/ListEventIntegrationAssociationsCommand.ts b/clients/client-appintegrations/src/commands/ListEventIntegrationAssociationsCommand.ts index 2cf99b0a800b0..2bd9eb6ff29fe 100644 --- a/clients/client-appintegrations/src/commands/ListEventIntegrationAssociationsCommand.ts +++ b/clients/client-appintegrations/src/commands/ListEventIntegrationAssociationsCommand.ts @@ -89,6 +89,7 @@ export interface ListEventIntegrationAssociationsCommandOutput * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class ListEventIntegrationAssociationsCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/ListEventIntegrationsCommand.ts b/clients/client-appintegrations/src/commands/ListEventIntegrationsCommand.ts index 9536961f91f34..eb78539c2290a 100644 --- a/clients/client-appintegrations/src/commands/ListEventIntegrationsCommand.ts +++ b/clients/client-appintegrations/src/commands/ListEventIntegrationsCommand.ts @@ -82,6 +82,7 @@ export interface ListEventIntegrationsCommandOutput extends ListEventIntegration * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class ListEventIntegrationsCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/ListTagsForResourceCommand.ts b/clients/client-appintegrations/src/commands/ListTagsForResourceCommand.ts index 62cfea274fd2c..0662dff187a7e 100644 --- a/clients/client-appintegrations/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-appintegrations/src/commands/ListTagsForResourceCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/TagResourceCommand.ts b/clients/client-appintegrations/src/commands/TagResourceCommand.ts index cb84cd83949f3..9cc3fccde5319 100644 --- a/clients/client-appintegrations/src/commands/TagResourceCommand.ts +++ b/clients/client-appintegrations/src/commands/TagResourceCommand.ts @@ -68,6 +68,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/UntagResourceCommand.ts b/clients/client-appintegrations/src/commands/UntagResourceCommand.ts index 7be29563d23e4..bbfa01bc9e1b2 100644 --- a/clients/client-appintegrations/src/commands/UntagResourceCommand.ts +++ b/clients/client-appintegrations/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/UpdateApplicationCommand.ts b/clients/client-appintegrations/src/commands/UpdateApplicationCommand.ts index 66110fe1a1771..262c9c1d46a6a 100644 --- a/clients/client-appintegrations/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-appintegrations/src/commands/UpdateApplicationCommand.ts @@ -97,19 +97,22 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* - * @public + * * @example To update an application * ```javascript * // The following updates an existing application named with a new name. * const input = { - * "Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e", - * "Name": "My New Application Name" + * Arn: "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e", + * Name: "My New Application Name" * }; * const command = new UpdateApplicationCommand(input); - * await client.send(command); - * // example id: update-an-application + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UpdateApplicationCommand extends $Command .classBuilder< diff --git a/clients/client-appintegrations/src/commands/UpdateDataIntegrationAssociationCommand.ts b/clients/client-appintegrations/src/commands/UpdateDataIntegrationAssociationCommand.ts index e4be498f83ea0..505741cfcde1b 100644 --- a/clients/client-appintegrations/src/commands/UpdateDataIntegrationAssociationCommand.ts +++ b/clients/client-appintegrations/src/commands/UpdateDataIntegrationAssociationCommand.ts @@ -91,6 +91,7 @@ export interface UpdateDataIntegrationAssociationCommandOutput * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class UpdateDataIntegrationAssociationCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/UpdateDataIntegrationCommand.ts b/clients/client-appintegrations/src/commands/UpdateDataIntegrationCommand.ts index a4fe318d41e9b..3a2a9b5cc2d20 100644 --- a/clients/client-appintegrations/src/commands/UpdateDataIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/UpdateDataIntegrationCommand.ts @@ -75,6 +75,7 @@ export interface UpdateDataIntegrationCommandOutput extends UpdateDataIntegratio * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class UpdateDataIntegrationCommand extends $Command diff --git a/clients/client-appintegrations/src/commands/UpdateEventIntegrationCommand.ts b/clients/client-appintegrations/src/commands/UpdateEventIntegrationCommand.ts index 2b5a9223037a5..6bae0df20737a 100644 --- a/clients/client-appintegrations/src/commands/UpdateEventIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/UpdateEventIntegrationCommand.ts @@ -69,6 +69,7 @@ export interface UpdateEventIntegrationCommandOutput extends UpdateEventIntegrat * @throws {@link AppIntegrationsServiceException} *

Base exception class for all service exceptions from AppIntegrations service.

* + * * @public */ export class UpdateEventIntegrationCommand extends $Command diff --git a/clients/client-application-auto-scaling/src/commands/DeleteScalingPolicyCommand.ts b/clients/client-application-auto-scaling/src/commands/DeleteScalingPolicyCommand.ts index f1f461205ee07..ff4e1c9e600ae 100644 --- a/clients/client-application-auto-scaling/src/commands/DeleteScalingPolicyCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/DeleteScalingPolicyCommand.ts @@ -83,21 +83,24 @@ export interface DeleteScalingPolicyCommandOutput extends DeleteScalingPolicyRes * @throws {@link ApplicationAutoScalingServiceException} *

Base exception class for all service exceptions from ApplicationAutoScaling service.

* - * @public + * * @example To delete a scaling policy * ```javascript * // This example deletes a scaling policy for the Amazon ECS service called web-app, which is running in the default cluster. * const input = { - * "PolicyName": "web-app-cpu-lt-25", - * "ResourceId": "service/default/web-app", - * "ScalableDimension": "ecs:service:DesiredCount", - * "ServiceNamespace": "ecs" + * PolicyName: "web-app-cpu-lt-25", + * ResourceId: "service/default/web-app", + * ScalableDimension: "ecs:service:DesiredCount", + * ServiceNamespace: "ecs" * }; * const command = new DeleteScalingPolicyCommand(input); - * await client.send(command); - * // example id: to-delete-a-scaling-policy-1470863892689 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteScalingPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-application-auto-scaling/src/commands/DeleteScheduledActionCommand.ts b/clients/client-application-auto-scaling/src/commands/DeleteScheduledActionCommand.ts index ef3ae0bfe363a..fd6b36892ebde 100644 --- a/clients/client-application-auto-scaling/src/commands/DeleteScheduledActionCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/DeleteScheduledActionCommand.ts @@ -79,21 +79,24 @@ export interface DeleteScheduledActionCommandOutput extends DeleteScheduledActio * @throws {@link ApplicationAutoScalingServiceException} *

Base exception class for all service exceptions from ApplicationAutoScaling service.

* - * @public + * * @example To delete a scheduled action * ```javascript * // This example deletes a scheduled action for the AppStream 2.0 fleet called sample-fleet. * const input = { - * "ResourceId": "fleet/sample-fleet", - * "ScalableDimension": "appstream:fleet:DesiredCapacity", - * "ScheduledActionName": "my-recurring-action", - * "ServiceNamespace": "appstream" + * ResourceId: "fleet/sample-fleet", + * ScalableDimension: "appstream:fleet:DesiredCapacity", + * ScheduledActionName: "my-recurring-action", + * ServiceNamespace: "appstream" * }; * const command = new DeleteScheduledActionCommand(input); - * await client.send(command); - * // example id: to-delete-a-scheduled-action-1677963329606 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteScheduledActionCommand extends $Command .classBuilder< diff --git a/clients/client-application-auto-scaling/src/commands/DeregisterScalableTargetCommand.ts b/clients/client-application-auto-scaling/src/commands/DeregisterScalableTargetCommand.ts index 5cf3de8990a7d..10e9dced0ce57 100644 --- a/clients/client-application-auto-scaling/src/commands/DeregisterScalableTargetCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/DeregisterScalableTargetCommand.ts @@ -82,20 +82,23 @@ export interface DeregisterScalableTargetCommandOutput extends DeregisterScalabl * @throws {@link ApplicationAutoScalingServiceException} *

Base exception class for all service exceptions from ApplicationAutoScaling service.

* - * @public + * * @example To deregister a scalable target * ```javascript * // This example deregisters a scalable target for an Amazon ECS service called web-app that is running in the default cluster. * const input = { - * "ResourceId": "service/default/web-app", - * "ScalableDimension": "ecs:service:DesiredCount", - * "ServiceNamespace": "ecs" + * ResourceId: "service/default/web-app", + * ScalableDimension: "ecs:service:DesiredCount", + * ServiceNamespace: "ecs" * }; * const command = new DeregisterScalableTargetCommand(input); - * await client.send(command); - * // example id: to-deregister-a-scalable-target-1470864164895 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeregisterScalableTargetCommand extends $Command .classBuilder< diff --git a/clients/client-application-auto-scaling/src/commands/DescribeScalableTargetsCommand.ts b/clients/client-application-auto-scaling/src/commands/DescribeScalableTargetsCommand.ts index da3f76181b8ab..185367d727a8a 100644 --- a/clients/client-application-auto-scaling/src/commands/DescribeScalableTargetsCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/DescribeScalableTargetsCommand.ts @@ -99,38 +99,38 @@ export interface DescribeScalableTargetsCommandOutput extends DescribeScalableTa * @throws {@link ApplicationAutoScalingServiceException} *

Base exception class for all service exceptions from ApplicationAutoScaling service.

* - * @public + * * @example To describe scalable targets * ```javascript * // This example describes the scalable targets for the ECS service namespace. * const input = { - * "ServiceNamespace": "ecs" + * ServiceNamespace: "ecs" * }; * const command = new DescribeScalableTargetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ScalableTargets": [ + * ScalableTargets: [ * { - * "CreationTime": "2019-05-06T11:21:46.199Z", - * "MaxCapacity": 10, - * "MinCapacity": 1, - * "ResourceId": "service/default/web-app", - * "RoleARN": "arn:aws:iam::012345678910:role/aws-service-role/ecs.application-autoscaling.amazonaws.com/AWSServiceRoleForApplicationAutoScaling_ECSService", - * "ScalableDimension": "ecs:service:DesiredCount", - * "ServiceNamespace": "ecs", - * "SuspendedState": { - * "DynamicScalingInSuspended": false, - * "DynamicScalingOutSuspended": false, - * "ScheduledScalingSuspended": false + * CreationTime: "2019-05-06T11:21:46.199Z", + * MaxCapacity: 10, + * MinCapacity: 1, + * ResourceId: "service/default/web-app", + * RoleARN: "arn:aws:iam::012345678910:role/aws-service-role/ecs.application-autoscaling.amazonaws.com/AWSServiceRoleForApplicationAutoScaling_ECSService", + * ScalableDimension: "ecs:service:DesiredCount", + * ServiceNamespace: "ecs", + * SuspendedState: { + * DynamicScalingInSuspended: false, + * DynamicScalingOutSuspended: false, + * ScheduledScalingSuspended: false * } * } * ] * } * *\/ - * // example id: to-describe-scalable-targets-1470864286961 * ``` * + * @public */ export class DescribeScalableTargetsCommand extends $Command .classBuilder< diff --git a/clients/client-application-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts b/clients/client-application-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts index e6dd616018e1e..354bdcf5b40fe 100644 --- a/clients/client-application-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts @@ -105,38 +105,38 @@ export interface DescribeScalingActivitiesCommandOutput extends DescribeScalingA * @throws {@link ApplicationAutoScalingServiceException} *

Base exception class for all service exceptions from ApplicationAutoScaling service.

* - * @public + * * @example To describe scaling activities for a scalable target * ```javascript * // This example describes the scaling activities for an Amazon ECS service called web-app that is running in the default cluster. * const input = { - * "ResourceId": "service/default/web-app", - * "ScalableDimension": "ecs:service:DesiredCount", - * "ServiceNamespace": "ecs" + * ResourceId: "service/default/web-app", + * ScalableDimension: "ecs:service:DesiredCount", + * ServiceNamespace: "ecs" * }; * const command = new DescribeScalingActivitiesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ScalingActivities": [ + * ScalingActivities: [ * { - * "ActivityId": "e6c5f7d1-dbbb-4a3f-89b2-51f33e766399", - * "Cause": "monitor alarm web-app-cpu-lt-25 in state ALARM triggered policy web-app-cpu-lt-25", - * "Description": "Setting desired count to 1.", - * "EndTime": "2019-05-06T16:04:32.111Z", - * "ResourceId": "service/default/web-app", - * "ScalableDimension": "ecs:service:DesiredCount", - * "ServiceNamespace": "ecs", - * "StartTime": "2019-05-06T16:03:58.171Z", - * "StatusCode": "Successful", - * "StatusMessage": "Successfully set desired count to 1. Change successfully fulfilled by ecs." + * ActivityId: "e6c5f7d1-dbbb-4a3f-89b2-51f33e766399", + * Cause: "monitor alarm web-app-cpu-lt-25 in state ALARM triggered policy web-app-cpu-lt-25", + * Description: "Setting desired count to 1.", + * EndTime: "2019-05-06T16:04:32.111Z", + * ResourceId: "service/default/web-app", + * ScalableDimension: "ecs:service:DesiredCount", + * ServiceNamespace: "ecs", + * StartTime: "2019-05-06T16:03:58.171Z", + * StatusCode: "Successful", + * StatusMessage: "Successfully set desired count to 1. Change successfully fulfilled by ecs." * } * ] * } * *\/ - * // example id: to-describe-scaling-activities-for-a-scalable-target-1470864398629 * ``` * + * @public */ export class DescribeScalingActivitiesCommand extends $Command .classBuilder< diff --git a/clients/client-application-auto-scaling/src/commands/DescribeScalingPoliciesCommand.ts b/clients/client-application-auto-scaling/src/commands/DescribeScalingPoliciesCommand.ts index ed2a67d56421d..0c63eaab2ad92 100644 --- a/clients/client-application-auto-scaling/src/commands/DescribeScalingPoliciesCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/DescribeScalingPoliciesCommand.ts @@ -258,40 +258,40 @@ export interface DescribeScalingPoliciesCommandOutput extends DescribeScalingPol * @throws {@link ApplicationAutoScalingServiceException} *

Base exception class for all service exceptions from ApplicationAutoScaling service.

* - * @public + * * @example To describe scaling policies * ```javascript * // This example describes the scaling policies for the ECS service namespace. * const input = { - * "ServiceNamespace": "ecs" + * ServiceNamespace: "ecs" * }; * const command = new DescribeScalingPoliciesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NextToken": "", - * "ScalingPolicies": [ + * NextToken: "", + * ScalingPolicies: [ * { - * "Alarms": [ + * Alarms: [ * { - * "AlarmARN": "arn:aws:cloudwatch:us-west-2:012345678910:alarm:web-app-cpu-gt-75", - * "AlarmName": "web-app-cpu-gt-75" + * AlarmARN: "arn:aws:cloudwatch:us-west-2:012345678910:alarm:web-app-cpu-gt-75", + * AlarmName: "web-app-cpu-gt-75" * } * ], - * "CreationTime": "2019-05-06T12:11:39.230Z", - * "PolicyARN": "arn:aws:autoscaling:us-west-2:012345678910:scalingPolicy:6d8972f3-efc8-437c-92d1-6270f29a66e7:resource/ecs/service/default/web-app:policyName/web-app-cpu-gt-75", - * "PolicyName": "web-app-cpu-gt-75", - * "PolicyType": "StepScaling", - * "ResourceId": "service/default/web-app", - * "ScalableDimension": "ecs:service:DesiredCount", - * "ServiceNamespace": "ecs", - * "StepScalingPolicyConfiguration": { - * "AdjustmentType": "PercentChangeInCapacity", - * "Cooldown": 60, - * "StepAdjustments": [ + * CreationTime: "2019-05-06T12:11:39.230Z", + * PolicyARN: "arn:aws:autoscaling:us-west-2:012345678910:scalingPolicy:6d8972f3-efc8-437c-92d1-6270f29a66e7:resource/ecs/service/default/web-app:policyName/web-app-cpu-gt-75", + * PolicyName: "web-app-cpu-gt-75", + * PolicyType: "StepScaling", + * ResourceId: "service/default/web-app", + * ScalableDimension: "ecs:service:DesiredCount", + * ServiceNamespace: "ecs", + * StepScalingPolicyConfiguration: { + * AdjustmentType: "PercentChangeInCapacity", + * Cooldown: 60, + * StepAdjustments: [ * { - * "MetricIntervalLowerBound": 0, - * "ScalingAdjustment": 200 + * MetricIntervalLowerBound: 0, + * ScalingAdjustment: 200 * } * ] * } @@ -299,9 +299,9 @@ export interface DescribeScalingPoliciesCommandOutput extends DescribeScalingPol * ] * } * *\/ - * // example id: to-describe-scaling-policies-1470864609734 * ``` * + * @public */ export class DescribeScalingPoliciesCommand extends $Command .classBuilder< diff --git a/clients/client-application-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts b/clients/client-application-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts index 17451f14da60d..adcde4e1c6ccc 100644 --- a/clients/client-application-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts @@ -101,50 +101,50 @@ export interface DescribeScheduledActionsCommandOutput extends DescribeScheduled * @throws {@link ApplicationAutoScalingServiceException} *

Base exception class for all service exceptions from ApplicationAutoScaling service.

* - * @public + * * @example To describe scheduled actions * ```javascript * // This example describes the scheduled actions for the dynamodb service namespace. * const input = { - * "ServiceNamespace": "dynamodb" + * ServiceNamespace: "dynamodb" * }; * const command = new DescribeScheduledActionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ScheduledActions": [ + * ScheduledActions: [ * { - * "CreationTime": 1561571888.361, - * "ResourceId": "table/my-table", - * "ScalableDimension": "dynamodb:table:WriteCapacityUnits", - * "ScalableTargetAction": { - * "MaxCapacity": 20, - * "MinCapacity": 15 + * CreationTime: 1.561571888361E9, + * ResourceId: "table/my-table", + * ScalableDimension: "dynamodb:table:WriteCapacityUnits", + * ScalableTargetAction: { + * MaxCapacity: 20, + * MinCapacity: 15 * }, - * "Schedule": "at(2019-05-20T18:35:00)", - * "ScheduledActionARN": "arn:aws:autoscaling:us-west-2:123456789012:scheduledAction:2d36aa3b-cdf9-4565-b290-81db519b227d:resource/dynamodb/table/my-table:scheduledActionName/my-first-scheduled-action", - * "ScheduledActionName": "my-first-scheduled-action", - * "ServiceNamespace": "dynamodb" + * Schedule: "at(2019-05-20T18:35:00)", + * ScheduledActionARN: "arn:aws:autoscaling:us-west-2:123456789012:scheduledAction:2d36aa3b-cdf9-4565-b290-81db519b227d:resource/dynamodb/table/my-table:scheduledActionName/my-first-scheduled-action", + * ScheduledActionName: "my-first-scheduled-action", + * ServiceNamespace: "dynamodb" * }, * { - * "CreationTime": 1561571946.021, - * "ResourceId": "table/my-table", - * "ScalableDimension": "dynamodb:table:WriteCapacityUnits", - * "ScalableTargetAction": { - * "MaxCapacity": 10, - * "MinCapacity": 5 + * CreationTime: 1.561571946021E9, + * ResourceId: "table/my-table", + * ScalableDimension: "dynamodb:table:WriteCapacityUnits", + * ScalableTargetAction: { + * MaxCapacity: 10, + * MinCapacity: 5 * }, - * "Schedule": "at(2019-05-20T18:40:00)", - * "ScheduledActionARN": "arn:aws:autoscaling:us-west-2:123456789012:scheduledAction:2d36aa3b-cdf9-4565-b290-81db519b227d:resource/dynamodb/table/my-table:scheduledActionName/my-second-scheduled-action", - * "ScheduledActionName": "my-second-scheduled-action", - * "ServiceNamespace": "dynamodb" + * Schedule: "at(2019-05-20T18:40:00)", + * ScheduledActionARN: "arn:aws:autoscaling:us-west-2:123456789012:scheduledAction:2d36aa3b-cdf9-4565-b290-81db519b227d:resource/dynamodb/table/my-table:scheduledActionName/my-second-scheduled-action", + * ScheduledActionName: "my-second-scheduled-action", + * ServiceNamespace: "dynamodb" * } * ] * } * *\/ - * // example id: to-describe-scheduled-actions-1677965249349 * ``` * + * @public */ export class DescribeScheduledActionsCommand extends $Command .classBuilder< diff --git a/clients/client-application-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts b/clients/client-application-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts index 07dbe815e3cbd..f5dd0a2a76dcd 100644 --- a/clients/client-application-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts @@ -187,6 +187,7 @@ export interface GetPredictiveScalingForecastCommandOutput * @throws {@link ApplicationAutoScalingServiceException} *

Base exception class for all service exceptions from ApplicationAutoScaling service.

* + * * @public */ export class GetPredictiveScalingForecastCommand extends $Command diff --git a/clients/client-application-auto-scaling/src/commands/ListTagsForResourceCommand.ts b/clients/client-application-auto-scaling/src/commands/ListTagsForResourceCommand.ts index 3b7b553304546..6f9daa6946312 100644 --- a/clients/client-application-auto-scaling/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/ListTagsForResourceCommand.ts @@ -66,25 +66,25 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ApplicationAutoScalingServiceException} *

Base exception class for all service exceptions from ApplicationAutoScaling service.

* - * @public + * * @example To list tags for a scalable target * ```javascript * // This example lists the tag key names and values that are attached to the scalable target specified by its ARN. * const input = { - * "ResourceARN": "arn:aws:application-autoscaling:us-west-2:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123" + * ResourceARN: "arn:aws:application-autoscaling:us-west-2:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Tags": { - * "environment": "production" + * Tags: { + * environment: "production" * } * } * *\/ - * // example id: to-list-tags-for-a-scalable-target-1677971474903 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-application-auto-scaling/src/commands/PutScalingPolicyCommand.ts b/clients/client-application-auto-scaling/src/commands/PutScalingPolicyCommand.ts index b668885aea8b2..060084ef69d55 100644 --- a/clients/client-application-auto-scaling/src/commands/PutScalingPolicyCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/PutScalingPolicyCommand.ts @@ -272,45 +272,45 @@ export interface PutScalingPolicyCommandOutput extends PutScalingPolicyResponse, * @throws {@link ApplicationAutoScalingServiceException} *

Base exception class for all service exceptions from ApplicationAutoScaling service.

* - * @public + * * @example To apply a target tracking scaling policy with a predefined metric specification * ```javascript * // The following example applies a target tracking scaling policy with a predefined metric specification to an Amazon ECS service called web-app in the default cluster. The policy keeps the average CPU utilization of the service at 75 percent, with scale-out and scale-in cooldown periods of 60 seconds. * const input = { - * "PolicyName": "cpu75-target-tracking-scaling-policy", - * "PolicyType": "TargetTrackingScaling", - * "ResourceId": "service/default/web-app", - * "ScalableDimension": "ecs:service:DesiredCount", - * "ServiceNamespace": "ecs", - * "TargetTrackingScalingPolicyConfiguration": { - * "PredefinedMetricSpecification": { - * "PredefinedMetricType": "ECSServiceAverageCPUUtilization" + * PolicyName: "cpu75-target-tracking-scaling-policy", + * PolicyType: "TargetTrackingScaling", + * ResourceId: "service/default/web-app", + * ScalableDimension: "ecs:service:DesiredCount", + * ServiceNamespace: "ecs", + * TargetTrackingScalingPolicyConfiguration: { + * PredefinedMetricSpecification: { + * PredefinedMetricType: "ECSServiceAverageCPUUtilization" * }, - * "ScaleInCooldown": 60, - * "ScaleOutCooldown": 60, - * "TargetValue": 75 + * ScaleInCooldown: 60, + * ScaleOutCooldown: 60, + * TargetValue: 75 * } * }; * const command = new PutScalingPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Alarms": [ + * Alarms: [ * { - * "AlarmARN": "arn:aws:cloudwatch:us-west-2:012345678910:alarm:TargetTracking-service/default/web-app-AlarmHigh-d4f0770c-b46e-434a-a60f-3b36d653feca", - * "AlarmName": "TargetTracking-service/default/web-app-AlarmHigh-d4f0770c-b46e-434a-a60f-3b36d653feca" + * AlarmARN: "arn:aws:cloudwatch:us-west-2:012345678910:alarm:TargetTracking-service/default/web-app-AlarmHigh-d4f0770c-b46e-434a-a60f-3b36d653feca", + * AlarmName: "TargetTracking-service/default/web-app-AlarmHigh-d4f0770c-b46e-434a-a60f-3b36d653feca" * }, * { - * "AlarmARN": "arn:aws:cloudwatch:us-west-2:012345678910:alarm:TargetTracking-service/default/web-app-AlarmLow-1b437334-d19b-4a63-a812-6c67aaf2910d", - * "AlarmName": "TargetTracking-service/default/web-app-AlarmLow-1b437334-d19b-4a63-a812-6c67aaf2910d" + * AlarmARN: "arn:aws:cloudwatch:us-west-2:012345678910:alarm:TargetTracking-service/default/web-app-AlarmLow-1b437334-d19b-4a63-a812-6c67aaf2910d", + * AlarmName: "TargetTracking-service/default/web-app-AlarmLow-1b437334-d19b-4a63-a812-6c67aaf2910d" * } * ], - * "PolicyARN": "arn:aws:autoscaling:us-west-2:012345678910:scalingPolicy:6d8972f3-efc8-437c-92d1-6270f29a66e7:resource/ecs/service/default/web-app:policyName/cpu75-target-tracking-scaling-policy" + * PolicyARN: "arn:aws:autoscaling:us-west-2:012345678910:scalingPolicy:6d8972f3-efc8-437c-92d1-6270f29a66e7:resource/ecs/service/default/web-app:policyName/cpu75-target-tracking-scaling-policy" * } * *\/ - * // example id: to-apply-a-target-tracking-scaling-policy-with-a-predefined-metric-specification-1569364247984 * ``` * + * @public */ export class PutScalingPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-application-auto-scaling/src/commands/PutScheduledActionCommand.ts b/clients/client-application-auto-scaling/src/commands/PutScheduledActionCommand.ts index 1e9da73dc23d0..7e8520e798ebe 100644 --- a/clients/client-application-auto-scaling/src/commands/PutScheduledActionCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/PutScheduledActionCommand.ts @@ -103,25 +103,28 @@ export interface PutScheduledActionCommandOutput extends PutScheduledActionRespo * @throws {@link ApplicationAutoScalingServiceException} *

Base exception class for all service exceptions from ApplicationAutoScaling service.

* - * @public + * * @example To create a recurring scheduled action * ```javascript * // This example adds a scheduled action to a DynamoDB table called TestTable to scale out on a recurring schedule. On the specified schedule (every day at 12:15pm UTC), if the current capacity is below the value specified for MinCapacity, Application Auto Scaling scales out to the value specified by MinCapacity. * const input = { - * "ResourceId": "table/TestTable", - * "ScalableDimension": "dynamodb:table:WriteCapacityUnits", - * "ScalableTargetAction": { - * "MinCapacity": 6 + * ResourceId: "table/TestTable", + * ScalableDimension: "dynamodb:table:WriteCapacityUnits", + * ScalableTargetAction: { + * MinCapacity: 6 * }, - * "Schedule": "cron(15 12 * * ? *)", - * "ScheduledActionName": "my-recurring-action", - * "ServiceNamespace": "dynamodb" + * Schedule: "cron(15 12 * * ? *)", + * ScheduledActionName: "my-recurring-action", + * ServiceNamespace: "dynamodb" * }; * const command = new PutScheduledActionCommand(input); - * await client.send(command); - * // example id: to-create-a-recurring-scheduled-action-1677970068621 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class PutScheduledActionCommand extends $Command .classBuilder< diff --git a/clients/client-application-auto-scaling/src/commands/RegisterScalableTargetCommand.ts b/clients/client-application-auto-scaling/src/commands/RegisterScalableTargetCommand.ts index d5bc25b4b9362..39296686de5d2 100644 --- a/clients/client-application-auto-scaling/src/commands/RegisterScalableTargetCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/RegisterScalableTargetCommand.ts @@ -117,27 +117,27 @@ export interface RegisterScalableTargetCommandOutput extends RegisterScalableTar * @throws {@link ApplicationAutoScalingServiceException} *

Base exception class for all service exceptions from ApplicationAutoScaling service.

* - * @public + * * @example To register an ECS service as a scalable target * ```javascript * // This example registers a scalable target from an Amazon ECS service called web-app that is running on the default cluster, with a minimum desired count of 1 task and a maximum desired count of 10 tasks. * const input = { - * "MaxCapacity": 10, - * "MinCapacity": 1, - * "ResourceId": "service/default/web-app", - * "ScalableDimension": "ecs:service:DesiredCount", - * "ServiceNamespace": "ecs" + * MaxCapacity: 10, + * MinCapacity: 1, + * ResourceId: "service/default/web-app", + * ScalableDimension: "ecs:service:DesiredCount", + * ServiceNamespace: "ecs" * }; * const command = new RegisterScalableTargetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ScalableTargetARN": "arn:aws:application-autoscaling:us-east-1:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123" + * ScalableTargetARN: "arn:aws:application-autoscaling:us-east-1:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123" * } * *\/ - * // example id: to-register-a-new-scalable-target-1470864910380 * ``` * + * @public */ export class RegisterScalableTargetCommand extends $Command .classBuilder< diff --git a/clients/client-application-auto-scaling/src/commands/TagResourceCommand.ts b/clients/client-application-auto-scaling/src/commands/TagResourceCommand.ts index dd3cbf0620238..f3dbf108794ff 100644 --- a/clients/client-application-auto-scaling/src/commands/TagResourceCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/TagResourceCommand.ts @@ -81,21 +81,24 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ApplicationAutoScalingServiceException} *

Base exception class for all service exceptions from ApplicationAutoScaling service.

* - * @public + * * @example To add a tag to a scalable target * ```javascript * // This example adds a tag with the key name "environment" and the value "production" to the scalable target specified by its ARN. * const input = { - * "ResourceARN": "arn:aws:application-autoscaling:us-west-2:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123", - * "Tags": { - * "environment": "production" + * ResourceARN: "arn:aws:application-autoscaling:us-west-2:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123", + * Tags: { + * environment: "production" * } * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: to-add-a-tag-to-a-scalable-target-1677970764620 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-application-auto-scaling/src/commands/UntagResourceCommand.ts b/clients/client-application-auto-scaling/src/commands/UntagResourceCommand.ts index c73d7d4da447d..6316d9fc8fbf1 100644 --- a/clients/client-application-auto-scaling/src/commands/UntagResourceCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/UntagResourceCommand.ts @@ -68,21 +68,24 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ApplicationAutoScalingServiceException} *

Base exception class for all service exceptions from ApplicationAutoScaling service.

* - * @public + * * @example To remove a tag from a scalable target * ```javascript * // This example removes the tag pair with the key name "environment" from the scalable target specified by its ARN. * const input = { - * "ResourceARN": "arn:aws:application-autoscaling:us-west-2:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123", - * "TagKeys": [ + * ResourceARN: "arn:aws:application-autoscaling:us-west-2:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123", + * TagKeys: [ * "environment" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: to-remove-a-tag-from-a-scalable-target-1677971117168 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-application-discovery-service/src/commands/AssociateConfigurationItemsToApplicationCommand.ts b/clients/client-application-discovery-service/src/commands/AssociateConfigurationItemsToApplicationCommand.ts index c4268b5f2d593..41ef8ab99a101 100644 --- a/clients/client-application-discovery-service/src/commands/AssociateConfigurationItemsToApplicationCommand.ts +++ b/clients/client-application-discovery-service/src/commands/AssociateConfigurationItemsToApplicationCommand.ts @@ -86,6 +86,7 @@ export interface AssociateConfigurationItemsToApplicationCommandOutput * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class AssociateConfigurationItemsToApplicationCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/BatchDeleteAgentsCommand.ts b/clients/client-application-discovery-service/src/commands/BatchDeleteAgentsCommand.ts index 0794116de0a91..963d4f08fd230 100644 --- a/clients/client-application-discovery-service/src/commands/BatchDeleteAgentsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/BatchDeleteAgentsCommand.ts @@ -89,6 +89,7 @@ export interface BatchDeleteAgentsCommandOutput extends BatchDeleteAgentsRespons * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class BatchDeleteAgentsCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/BatchDeleteImportDataCommand.ts b/clients/client-application-discovery-service/src/commands/BatchDeleteImportDataCommand.ts index aa9261b6643b1..19bb20c52f480 100644 --- a/clients/client-application-discovery-service/src/commands/BatchDeleteImportDataCommand.ts +++ b/clients/client-application-discovery-service/src/commands/BatchDeleteImportDataCommand.ts @@ -91,6 +91,7 @@ export interface BatchDeleteImportDataCommandOutput extends BatchDeleteImportDat * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class BatchDeleteImportDataCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/CreateApplicationCommand.ts b/clients/client-application-discovery-service/src/commands/CreateApplicationCommand.ts index 5b3c315f66356..dfa6955bd6c7a 100644 --- a/clients/client-application-discovery-service/src/commands/CreateApplicationCommand.ts +++ b/clients/client-application-discovery-service/src/commands/CreateApplicationCommand.ts @@ -78,6 +78,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/CreateTagsCommand.ts b/clients/client-application-discovery-service/src/commands/CreateTagsCommand.ts index 445ea69dae251..1b74fe2e76fca 100644 --- a/clients/client-application-discovery-service/src/commands/CreateTagsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/CreateTagsCommand.ts @@ -90,6 +90,7 @@ export interface CreateTagsCommandOutput extends CreateTagsResponse, __MetadataB * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class CreateTagsCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/DeleteApplicationsCommand.ts b/clients/client-application-discovery-service/src/commands/DeleteApplicationsCommand.ts index b44545f7eda51..f87d17345a014 100644 --- a/clients/client-application-discovery-service/src/commands/DeleteApplicationsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DeleteApplicationsCommand.ts @@ -77,6 +77,7 @@ export interface DeleteApplicationsCommandOutput extends DeleteApplicationsRespo * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class DeleteApplicationsCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/DeleteTagsCommand.ts b/clients/client-application-discovery-service/src/commands/DeleteTagsCommand.ts index ba782e979364b..db05e66f8bcbd 100644 --- a/clients/client-application-discovery-service/src/commands/DeleteTagsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DeleteTagsCommand.ts @@ -87,6 +87,7 @@ export interface DeleteTagsCommandOutput extends DeleteTagsResponse, __MetadataB * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class DeleteTagsCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/DescribeAgentsCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeAgentsCommand.ts index 897f13dd5814f..617a46071301c 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeAgentsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeAgentsCommand.ts @@ -114,6 +114,7 @@ export interface DescribeAgentsCommandOutput extends DescribeAgentsResponse, __M * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class DescribeAgentsCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/DescribeBatchDeleteConfigurationTaskCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeBatchDeleteConfigurationTaskCommand.ts index 5be22d7abf69c..9e7ee72fe9527 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeBatchDeleteConfigurationTaskCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeBatchDeleteConfigurationTaskCommand.ts @@ -108,6 +108,7 @@ export interface DescribeBatchDeleteConfigurationTaskCommandOutput * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class DescribeBatchDeleteConfigurationTaskCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/DescribeConfigurationsCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeConfigurationsCommand.ts index 1dabcb56a3978..8c05842adb6f5 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeConfigurationsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeConfigurationsCommand.ts @@ -105,6 +105,7 @@ export interface DescribeConfigurationsCommandOutput extends DescribeConfigurati * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class DescribeConfigurationsCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/DescribeContinuousExportsCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeContinuousExportsCommand.ts index 371cb3cbf65cf..f306742dbdeca 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeContinuousExportsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeContinuousExportsCommand.ts @@ -103,6 +103,7 @@ export interface DescribeContinuousExportsCommandOutput extends DescribeContinuo * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class DescribeContinuousExportsCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/DescribeExportConfigurationsCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeExportConfigurationsCommand.ts index 043fa21cc69e3..9b59bee52e656 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeExportConfigurationsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeExportConfigurationsCommand.ts @@ -104,6 +104,7 @@ export interface DescribeExportConfigurationsCommandOutput * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class DescribeExportConfigurationsCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/DescribeExportTasksCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeExportTasksCommand.ts index a1c2ab14d50a6..34412b1004fea 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeExportTasksCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeExportTasksCommand.ts @@ -102,6 +102,7 @@ export interface DescribeExportTasksCommandOutput extends DescribeExportTasksRes * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class DescribeExportTasksCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/DescribeImportTasksCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeImportTasksCommand.ts index 13a0ddf8ab60d..bb1abb03adb6d 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeImportTasksCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeImportTasksCommand.ts @@ -104,6 +104,7 @@ export interface DescribeImportTasksCommandOutput extends DescribeImportTasksRes * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class DescribeImportTasksCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/DescribeTagsCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeTagsCommand.ts index b1b153249260c..5f38f03c1ad7a 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeTagsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeTagsCommand.ts @@ -113,6 +113,7 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class DescribeTagsCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/DisassociateConfigurationItemsFromApplicationCommand.ts b/clients/client-application-discovery-service/src/commands/DisassociateConfigurationItemsFromApplicationCommand.ts index f075b71fc4fa0..c9a554e697568 100644 --- a/clients/client-application-discovery-service/src/commands/DisassociateConfigurationItemsFromApplicationCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DisassociateConfigurationItemsFromApplicationCommand.ts @@ -86,6 +86,7 @@ export interface DisassociateConfigurationItemsFromApplicationCommandOutput * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class DisassociateConfigurationItemsFromApplicationCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/ExportConfigurationsCommand.ts b/clients/client-application-discovery-service/src/commands/ExportConfigurationsCommand.ts index 4ea851356f79a..041efbd16b844 100644 --- a/clients/client-application-discovery-service/src/commands/ExportConfigurationsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/ExportConfigurationsCommand.ts @@ -84,6 +84,7 @@ export interface ExportConfigurationsCommandOutput extends ExportConfigurationsR * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class ExportConfigurationsCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/GetDiscoverySummaryCommand.ts b/clients/client-application-discovery-service/src/commands/GetDiscoverySummaryCommand.ts index e19f1df861ce2..4c0daae19623c 100644 --- a/clients/client-application-discovery-service/src/commands/GetDiscoverySummaryCommand.ts +++ b/clients/client-application-discovery-service/src/commands/GetDiscoverySummaryCommand.ts @@ -115,6 +115,7 @@ export interface GetDiscoverySummaryCommandOutput extends GetDiscoverySummaryRes * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class GetDiscoverySummaryCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/ListConfigurationsCommand.ts b/clients/client-application-discovery-service/src/commands/ListConfigurationsCommand.ts index fbbc37b063aa0..cf6f74d5224e1 100644 --- a/clients/client-application-discovery-service/src/commands/ListConfigurationsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/ListConfigurationsCommand.ts @@ -104,6 +104,7 @@ export interface ListConfigurationsCommandOutput extends ListConfigurationsRespo * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class ListConfigurationsCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/ListServerNeighborsCommand.ts b/clients/client-application-discovery-service/src/commands/ListServerNeighborsCommand.ts index dad42bbd65132..f5be8ad927f12 100644 --- a/clients/client-application-discovery-service/src/commands/ListServerNeighborsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/ListServerNeighborsCommand.ts @@ -93,6 +93,7 @@ export interface ListServerNeighborsCommandOutput extends ListServerNeighborsRes * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class ListServerNeighborsCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/StartBatchDeleteConfigurationTaskCommand.ts b/clients/client-application-discovery-service/src/commands/StartBatchDeleteConfigurationTaskCommand.ts index e2e6a28e56720..2e9c0fe55699f 100644 --- a/clients/client-application-discovery-service/src/commands/StartBatchDeleteConfigurationTaskCommand.ts +++ b/clients/client-application-discovery-service/src/commands/StartBatchDeleteConfigurationTaskCommand.ts @@ -98,6 +98,7 @@ export interface StartBatchDeleteConfigurationTaskCommandOutput * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class StartBatchDeleteConfigurationTaskCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/StartContinuousExportCommand.ts b/clients/client-application-discovery-service/src/commands/StartContinuousExportCommand.ts index 72ba8bd09cb42..b96c493b17fa2 100644 --- a/clients/client-application-discovery-service/src/commands/StartContinuousExportCommand.ts +++ b/clients/client-application-discovery-service/src/commands/StartContinuousExportCommand.ts @@ -93,6 +93,7 @@ export interface StartContinuousExportCommandOutput extends StartContinuousExpor * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class StartContinuousExportCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/StartDataCollectionByAgentIdsCommand.ts b/clients/client-application-discovery-service/src/commands/StartDataCollectionByAgentIdsCommand.ts index 6c6a31549e7da..975f5df78d4e9 100644 --- a/clients/client-application-discovery-service/src/commands/StartDataCollectionByAgentIdsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/StartDataCollectionByAgentIdsCommand.ts @@ -89,6 +89,7 @@ export interface StartDataCollectionByAgentIdsCommandOutput * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class StartDataCollectionByAgentIdsCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/StartExportTaskCommand.ts b/clients/client-application-discovery-service/src/commands/StartExportTaskCommand.ts index 6cdb0cb2579aa..82f42fa2a66ef 100644 --- a/clients/client-application-discovery-service/src/commands/StartExportTaskCommand.ts +++ b/clients/client-application-discovery-service/src/commands/StartExportTaskCommand.ts @@ -136,6 +136,7 @@ export interface StartExportTaskCommandOutput extends StartExportTaskResponse, _ * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class StartExportTaskCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/StartImportTaskCommand.ts b/clients/client-application-discovery-service/src/commands/StartImportTaskCommand.ts index 9a2b44216e9b6..066a7fddae8f9 100644 --- a/clients/client-application-discovery-service/src/commands/StartImportTaskCommand.ts +++ b/clients/client-application-discovery-service/src/commands/StartImportTaskCommand.ts @@ -132,6 +132,7 @@ export interface StartImportTaskCommandOutput extends StartImportTaskResponse, _ * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class StartImportTaskCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/StopContinuousExportCommand.ts b/clients/client-application-discovery-service/src/commands/StopContinuousExportCommand.ts index 0925b6f4d5fea..444a9c9237971 100644 --- a/clients/client-application-discovery-service/src/commands/StopContinuousExportCommand.ts +++ b/clients/client-application-discovery-service/src/commands/StopContinuousExportCommand.ts @@ -91,6 +91,7 @@ export interface StopContinuousExportCommandOutput extends StopContinuousExportR * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class StopContinuousExportCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/StopDataCollectionByAgentIdsCommand.ts b/clients/client-application-discovery-service/src/commands/StopDataCollectionByAgentIdsCommand.ts index 95b301a2f042f..0dfaa93657d75 100644 --- a/clients/client-application-discovery-service/src/commands/StopDataCollectionByAgentIdsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/StopDataCollectionByAgentIdsCommand.ts @@ -89,6 +89,7 @@ export interface StopDataCollectionByAgentIdsCommandOutput * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class StopDataCollectionByAgentIdsCommand extends $Command diff --git a/clients/client-application-discovery-service/src/commands/UpdateApplicationCommand.ts b/clients/client-application-discovery-service/src/commands/UpdateApplicationCommand.ts index 8bcfc0de53ee8..0e16b368de5b9 100644 --- a/clients/client-application-discovery-service/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-application-discovery-service/src/commands/UpdateApplicationCommand.ts @@ -77,6 +77,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-application-insights/src/commands/AddWorkloadCommand.ts b/clients/client-application-insights/src/commands/AddWorkloadCommand.ts index af4bc65c183b5..ab28137dec9c5 100644 --- a/clients/client-application-insights/src/commands/AddWorkloadCommand.ts +++ b/clients/client-application-insights/src/commands/AddWorkloadCommand.ts @@ -82,6 +82,7 @@ export interface AddWorkloadCommandOutput extends AddWorkloadResponse, __Metadat * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class AddWorkloadCommand extends $Command diff --git a/clients/client-application-insights/src/commands/CreateApplicationCommand.ts b/clients/client-application-insights/src/commands/CreateApplicationCommand.ts index f17edfb8ca59f..af3ea7332d75a 100644 --- a/clients/client-application-insights/src/commands/CreateApplicationCommand.ts +++ b/clients/client-application-insights/src/commands/CreateApplicationCommand.ts @@ -103,6 +103,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-application-insights/src/commands/CreateComponentCommand.ts b/clients/client-application-insights/src/commands/CreateComponentCommand.ts index 59060552a8687..6d540d5cc5312 100644 --- a/clients/client-application-insights/src/commands/CreateComponentCommand.ts +++ b/clients/client-application-insights/src/commands/CreateComponentCommand.ts @@ -73,6 +73,7 @@ export interface CreateComponentCommandOutput extends CreateComponentResponse, _ * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class CreateComponentCommand extends $Command diff --git a/clients/client-application-insights/src/commands/CreateLogPatternCommand.ts b/clients/client-application-insights/src/commands/CreateLogPatternCommand.ts index 3637a85174a10..989239a398558 100644 --- a/clients/client-application-insights/src/commands/CreateLogPatternCommand.ts +++ b/clients/client-application-insights/src/commands/CreateLogPatternCommand.ts @@ -81,6 +81,7 @@ export interface CreateLogPatternCommandOutput extends CreateLogPatternResponse, * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class CreateLogPatternCommand extends $Command diff --git a/clients/client-application-insights/src/commands/DeleteApplicationCommand.ts b/clients/client-application-insights/src/commands/DeleteApplicationCommand.ts index 16417d5f4fdc8..d1614a4ff6be7 100644 --- a/clients/client-application-insights/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-application-insights/src/commands/DeleteApplicationCommand.ts @@ -70,6 +70,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-application-insights/src/commands/DeleteComponentCommand.ts b/clients/client-application-insights/src/commands/DeleteComponentCommand.ts index 48f2a5ade01dd..d3818bc26c314 100644 --- a/clients/client-application-insights/src/commands/DeleteComponentCommand.ts +++ b/clients/client-application-insights/src/commands/DeleteComponentCommand.ts @@ -69,6 +69,7 @@ export interface DeleteComponentCommandOutput extends DeleteComponentResponse, _ * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class DeleteComponentCommand extends $Command diff --git a/clients/client-application-insights/src/commands/DeleteLogPatternCommand.ts b/clients/client-application-insights/src/commands/DeleteLogPatternCommand.ts index 19e922d05a860..09c49c7448b58 100644 --- a/clients/client-application-insights/src/commands/DeleteLogPatternCommand.ts +++ b/clients/client-application-insights/src/commands/DeleteLogPatternCommand.ts @@ -71,6 +71,7 @@ export interface DeleteLogPatternCommandOutput extends DeleteLogPatternResponse, * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class DeleteLogPatternCommand extends $Command diff --git a/clients/client-application-insights/src/commands/DescribeApplicationCommand.ts b/clients/client-application-insights/src/commands/DescribeApplicationCommand.ts index a60a53c77bc59..4da75832dbfd0 100644 --- a/clients/client-application-insights/src/commands/DescribeApplicationCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeApplicationCommand.ts @@ -81,6 +81,7 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class DescribeApplicationCommand extends $Command diff --git a/clients/client-application-insights/src/commands/DescribeComponentCommand.ts b/clients/client-application-insights/src/commands/DescribeComponentCommand.ts index 17d82d9114e1d..33825bad0cc3f 100644 --- a/clients/client-application-insights/src/commands/DescribeComponentCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeComponentCommand.ts @@ -86,6 +86,7 @@ export interface DescribeComponentCommandOutput extends DescribeComponentRespons * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class DescribeComponentCommand extends $Command diff --git a/clients/client-application-insights/src/commands/DescribeComponentConfigurationCommand.ts b/clients/client-application-insights/src/commands/DescribeComponentConfigurationCommand.ts index 9c1b58d7ead4a..c31da0bb8378a 100644 --- a/clients/client-application-insights/src/commands/DescribeComponentConfigurationCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeComponentConfigurationCommand.ts @@ -77,6 +77,7 @@ export interface DescribeComponentConfigurationCommandOutput * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class DescribeComponentConfigurationCommand extends $Command diff --git a/clients/client-application-insights/src/commands/DescribeComponentConfigurationRecommendationCommand.ts b/clients/client-application-insights/src/commands/DescribeComponentConfigurationRecommendationCommand.ts index 4e03fbbac7da7..db92ca88f5e8e 100644 --- a/clients/client-application-insights/src/commands/DescribeComponentConfigurationRecommendationCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeComponentConfigurationRecommendationCommand.ts @@ -81,6 +81,7 @@ export interface DescribeComponentConfigurationRecommendationCommandOutput * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class DescribeComponentConfigurationRecommendationCommand extends $Command diff --git a/clients/client-application-insights/src/commands/DescribeLogPatternCommand.ts b/clients/client-application-insights/src/commands/DescribeLogPatternCommand.ts index eef0a462a5715..0ccb938e48a90 100644 --- a/clients/client-application-insights/src/commands/DescribeLogPatternCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeLogPatternCommand.ts @@ -78,6 +78,7 @@ export interface DescribeLogPatternCommandOutput extends DescribeLogPatternRespo * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class DescribeLogPatternCommand extends $Command diff --git a/clients/client-application-insights/src/commands/DescribeObservationCommand.ts b/clients/client-application-insights/src/commands/DescribeObservationCommand.ts index dcc83eef99339..d0d5c8bfae6eb 100644 --- a/clients/client-application-insights/src/commands/DescribeObservationCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeObservationCommand.ts @@ -115,6 +115,7 @@ export interface DescribeObservationCommandOutput extends DescribeObservationRes * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class DescribeObservationCommand extends $Command diff --git a/clients/client-application-insights/src/commands/DescribeProblemCommand.ts b/clients/client-application-insights/src/commands/DescribeProblemCommand.ts index e911fc043b84c..dc9403209e167 100644 --- a/clients/client-application-insights/src/commands/DescribeProblemCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeProblemCommand.ts @@ -89,6 +89,7 @@ export interface DescribeProblemCommandOutput extends DescribeProblemResponse, _ * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class DescribeProblemCommand extends $Command diff --git a/clients/client-application-insights/src/commands/DescribeProblemObservationsCommand.ts b/clients/client-application-insights/src/commands/DescribeProblemObservationsCommand.ts index 1c57562de1316..0402c4bbbacfb 100644 --- a/clients/client-application-insights/src/commands/DescribeProblemObservationsCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeProblemObservationsCommand.ts @@ -121,6 +121,7 @@ export interface DescribeProblemObservationsCommandOutput * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class DescribeProblemObservationsCommand extends $Command diff --git a/clients/client-application-insights/src/commands/DescribeWorkloadCommand.ts b/clients/client-application-insights/src/commands/DescribeWorkloadCommand.ts index cd956de0c366b..09a315388c7eb 100644 --- a/clients/client-application-insights/src/commands/DescribeWorkloadCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeWorkloadCommand.ts @@ -77,6 +77,7 @@ export interface DescribeWorkloadCommandOutput extends DescribeWorkloadResponse, * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class DescribeWorkloadCommand extends $Command diff --git a/clients/client-application-insights/src/commands/ListApplicationsCommand.ts b/clients/client-application-insights/src/commands/ListApplicationsCommand.ts index 894439eeb3672..cd2c4422f1e5a 100644 --- a/clients/client-application-insights/src/commands/ListApplicationsCommand.ts +++ b/clients/client-application-insights/src/commands/ListApplicationsCommand.ts @@ -82,6 +82,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-application-insights/src/commands/ListComponentsCommand.ts b/clients/client-application-insights/src/commands/ListComponentsCommand.ts index 9ef885561ed1f..30ea5c2acf741 100644 --- a/clients/client-application-insights/src/commands/ListComponentsCommand.ts +++ b/clients/client-application-insights/src/commands/ListComponentsCommand.ts @@ -86,6 +86,7 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class ListComponentsCommand extends $Command diff --git a/clients/client-application-insights/src/commands/ListConfigurationHistoryCommand.ts b/clients/client-application-insights/src/commands/ListConfigurationHistoryCommand.ts index 9202dba579b81..da0778567e039 100644 --- a/clients/client-application-insights/src/commands/ListConfigurationHistoryCommand.ts +++ b/clients/client-application-insights/src/commands/ListConfigurationHistoryCommand.ts @@ -99,6 +99,7 @@ export interface ListConfigurationHistoryCommandOutput extends ListConfiguration * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class ListConfigurationHistoryCommand extends $Command diff --git a/clients/client-application-insights/src/commands/ListLogPatternSetsCommand.ts b/clients/client-application-insights/src/commands/ListLogPatternSetsCommand.ts index da497ab83d1b0..5491f373e4bec 100644 --- a/clients/client-application-insights/src/commands/ListLogPatternSetsCommand.ts +++ b/clients/client-application-insights/src/commands/ListLogPatternSetsCommand.ts @@ -76,6 +76,7 @@ export interface ListLogPatternSetsCommandOutput extends ListLogPatternSetsRespo * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class ListLogPatternSetsCommand extends $Command diff --git a/clients/client-application-insights/src/commands/ListLogPatternsCommand.ts b/clients/client-application-insights/src/commands/ListLogPatternsCommand.ts index 510c4a1e9bd29..bd66767fae99b 100644 --- a/clients/client-application-insights/src/commands/ListLogPatternsCommand.ts +++ b/clients/client-application-insights/src/commands/ListLogPatternsCommand.ts @@ -82,6 +82,7 @@ export interface ListLogPatternsCommandOutput extends ListLogPatternsResponse, _ * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class ListLogPatternsCommand extends $Command diff --git a/clients/client-application-insights/src/commands/ListProblemsCommand.ts b/clients/client-application-insights/src/commands/ListProblemsCommand.ts index 43a839f003e93..6ac7e90db579e 100644 --- a/clients/client-application-insights/src/commands/ListProblemsCommand.ts +++ b/clients/client-application-insights/src/commands/ListProblemsCommand.ts @@ -99,6 +99,7 @@ export interface ListProblemsCommandOutput extends ListProblemsResponse, __Metad * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class ListProblemsCommand extends $Command diff --git a/clients/client-application-insights/src/commands/ListTagsForResourceCommand.ts b/clients/client-application-insights/src/commands/ListTagsForResourceCommand.ts index 2720ef24e1b87..7e3888b86ba0c 100644 --- a/clients/client-application-insights/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-application-insights/src/commands/ListTagsForResourceCommand.ts @@ -75,6 +75,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-application-insights/src/commands/ListWorkloadsCommand.ts b/clients/client-application-insights/src/commands/ListWorkloadsCommand.ts index 43deed96a4464..eecbf82008498 100644 --- a/clients/client-application-insights/src/commands/ListWorkloadsCommand.ts +++ b/clients/client-application-insights/src/commands/ListWorkloadsCommand.ts @@ -82,6 +82,7 @@ export interface ListWorkloadsCommandOutput extends ListWorkloadsResponse, __Met * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class ListWorkloadsCommand extends $Command diff --git a/clients/client-application-insights/src/commands/RemoveWorkloadCommand.ts b/clients/client-application-insights/src/commands/RemoveWorkloadCommand.ts index 134dd2ea5a775..76e1ef79204af 100644 --- a/clients/client-application-insights/src/commands/RemoveWorkloadCommand.ts +++ b/clients/client-application-insights/src/commands/RemoveWorkloadCommand.ts @@ -68,6 +68,7 @@ export interface RemoveWorkloadCommandOutput extends RemoveWorkloadResponse, __M * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class RemoveWorkloadCommand extends $Command diff --git a/clients/client-application-insights/src/commands/TagResourceCommand.ts b/clients/client-application-insights/src/commands/TagResourceCommand.ts index a152a14dd8dc6..cd57278aeaa8a 100644 --- a/clients/client-application-insights/src/commands/TagResourceCommand.ts +++ b/clients/client-application-insights/src/commands/TagResourceCommand.ts @@ -80,6 +80,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-application-insights/src/commands/UntagResourceCommand.ts b/clients/client-application-insights/src/commands/UntagResourceCommand.ts index 2ae4574f3e26e..2fe3989819dae 100644 --- a/clients/client-application-insights/src/commands/UntagResourceCommand.ts +++ b/clients/client-application-insights/src/commands/UntagResourceCommand.ts @@ -66,6 +66,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-application-insights/src/commands/UpdateApplicationCommand.ts b/clients/client-application-insights/src/commands/UpdateApplicationCommand.ts index 50b32421ae144..4545c7d5dae81 100644 --- a/clients/client-application-insights/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-application-insights/src/commands/UpdateApplicationCommand.ts @@ -87,6 +87,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-application-insights/src/commands/UpdateComponentCommand.ts b/clients/client-application-insights/src/commands/UpdateComponentCommand.ts index b0a60c1b6ba9e..bd73838f812eb 100644 --- a/clients/client-application-insights/src/commands/UpdateComponentCommand.ts +++ b/clients/client-application-insights/src/commands/UpdateComponentCommand.ts @@ -75,6 +75,7 @@ export interface UpdateComponentCommandOutput extends UpdateComponentResponse, _ * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class UpdateComponentCommand extends $Command diff --git a/clients/client-application-insights/src/commands/UpdateComponentConfigurationCommand.ts b/clients/client-application-insights/src/commands/UpdateComponentConfigurationCommand.ts index f1d8dbfd2e19e..eef738d039fc2 100644 --- a/clients/client-application-insights/src/commands/UpdateComponentConfigurationCommand.ts +++ b/clients/client-application-insights/src/commands/UpdateComponentConfigurationCommand.ts @@ -81,6 +81,7 @@ export interface UpdateComponentConfigurationCommandOutput * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class UpdateComponentConfigurationCommand extends $Command diff --git a/clients/client-application-insights/src/commands/UpdateLogPatternCommand.ts b/clients/client-application-insights/src/commands/UpdateLogPatternCommand.ts index 2b569cd963ea5..3677311694359 100644 --- a/clients/client-application-insights/src/commands/UpdateLogPatternCommand.ts +++ b/clients/client-application-insights/src/commands/UpdateLogPatternCommand.ts @@ -81,6 +81,7 @@ export interface UpdateLogPatternCommandOutput extends UpdateLogPatternResponse, * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class UpdateLogPatternCommand extends $Command diff --git a/clients/client-application-insights/src/commands/UpdateProblemCommand.ts b/clients/client-application-insights/src/commands/UpdateProblemCommand.ts index 0c0c6c6f6e48e..1e595547b9577 100644 --- a/clients/client-application-insights/src/commands/UpdateProblemCommand.ts +++ b/clients/client-application-insights/src/commands/UpdateProblemCommand.ts @@ -69,6 +69,7 @@ export interface UpdateProblemCommandOutput extends UpdateProblemResponse, __Met * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class UpdateProblemCommand extends $Command diff --git a/clients/client-application-insights/src/commands/UpdateWorkloadCommand.ts b/clients/client-application-insights/src/commands/UpdateWorkloadCommand.ts index a3fb6ecb05d26..8276eb0462198 100644 --- a/clients/client-application-insights/src/commands/UpdateWorkloadCommand.ts +++ b/clients/client-application-insights/src/commands/UpdateWorkloadCommand.ts @@ -80,6 +80,7 @@ export interface UpdateWorkloadCommandOutput extends UpdateWorkloadResponse, __M * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* + * * @public */ export class UpdateWorkloadCommand extends $Command diff --git a/clients/client-application-signals/src/commands/BatchGetServiceLevelObjectiveBudgetReportCommand.ts b/clients/client-application-signals/src/commands/BatchGetServiceLevelObjectiveBudgetReportCommand.ts index f2186197b3659..4533789e16d23 100644 --- a/clients/client-application-signals/src/commands/BatchGetServiceLevelObjectiveBudgetReportCommand.ts +++ b/clients/client-application-signals/src/commands/BatchGetServiceLevelObjectiveBudgetReportCommand.ts @@ -247,6 +247,7 @@ export interface BatchGetServiceLevelObjectiveBudgetReportCommandOutput * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class BatchGetServiceLevelObjectiveBudgetReportCommand extends $Command diff --git a/clients/client-application-signals/src/commands/BatchUpdateExclusionWindowsCommand.ts b/clients/client-application-signals/src/commands/BatchUpdateExclusionWindowsCommand.ts index c366f484fd9c7..cb7c9a2b71469 100644 --- a/clients/client-application-signals/src/commands/BatchUpdateExclusionWindowsCommand.ts +++ b/clients/client-application-signals/src/commands/BatchUpdateExclusionWindowsCommand.ts @@ -108,6 +108,7 @@ export interface BatchUpdateExclusionWindowsCommandOutput extends BatchUpdateExc * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class BatchUpdateExclusionWindowsCommand extends $Command diff --git a/clients/client-application-signals/src/commands/CreateServiceLevelObjectiveCommand.ts b/clients/client-application-signals/src/commands/CreateServiceLevelObjectiveCommand.ts index e62c6d8f27ebf..cc5612fcc2f94 100644 --- a/clients/client-application-signals/src/commands/CreateServiceLevelObjectiveCommand.ts +++ b/clients/client-application-signals/src/commands/CreateServiceLevelObjectiveCommand.ts @@ -470,6 +470,7 @@ export interface CreateServiceLevelObjectiveCommandOutput extends CreateServiceL * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class CreateServiceLevelObjectiveCommand extends $Command diff --git a/clients/client-application-signals/src/commands/DeleteServiceLevelObjectiveCommand.ts b/clients/client-application-signals/src/commands/DeleteServiceLevelObjectiveCommand.ts index 23f663e22f807..230875ade00f7 100644 --- a/clients/client-application-signals/src/commands/DeleteServiceLevelObjectiveCommand.ts +++ b/clients/client-application-signals/src/commands/DeleteServiceLevelObjectiveCommand.ts @@ -69,6 +69,7 @@ export interface DeleteServiceLevelObjectiveCommandOutput extends DeleteServiceL * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class DeleteServiceLevelObjectiveCommand extends $Command diff --git a/clients/client-application-signals/src/commands/GetServiceCommand.ts b/clients/client-application-signals/src/commands/GetServiceCommand.ts index c60ecb4cd5c15..8533b23569bb4 100644 --- a/clients/client-application-signals/src/commands/GetServiceCommand.ts +++ b/clients/client-application-signals/src/commands/GetServiceCommand.ts @@ -104,6 +104,7 @@ export interface GetServiceCommandOutput extends GetServiceOutput, __MetadataBea * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class GetServiceCommand extends $Command diff --git a/clients/client-application-signals/src/commands/GetServiceLevelObjectiveCommand.ts b/clients/client-application-signals/src/commands/GetServiceLevelObjectiveCommand.ts index 5ab40b1aa5411..3de84544e9a35 100644 --- a/clients/client-application-signals/src/commands/GetServiceLevelObjectiveCommand.ts +++ b/clients/client-application-signals/src/commands/GetServiceLevelObjectiveCommand.ts @@ -219,6 +219,7 @@ export interface GetServiceLevelObjectiveCommandOutput extends GetServiceLevelOb * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class GetServiceLevelObjectiveCommand extends $Command diff --git a/clients/client-application-signals/src/commands/ListServiceDependenciesCommand.ts b/clients/client-application-signals/src/commands/ListServiceDependenciesCommand.ts index 3d3aa3c285ac1..33a59a07c770a 100644 --- a/clients/client-application-signals/src/commands/ListServiceDependenciesCommand.ts +++ b/clients/client-application-signals/src/commands/ListServiceDependenciesCommand.ts @@ -99,6 +99,7 @@ export interface ListServiceDependenciesCommandOutput extends ListServiceDepende * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class ListServiceDependenciesCommand extends $Command diff --git a/clients/client-application-signals/src/commands/ListServiceDependentsCommand.ts b/clients/client-application-signals/src/commands/ListServiceDependentsCommand.ts index 9e40ead777fe6..5a8634cdc789a 100644 --- a/clients/client-application-signals/src/commands/ListServiceDependentsCommand.ts +++ b/clients/client-application-signals/src/commands/ListServiceDependentsCommand.ts @@ -97,6 +97,7 @@ export interface ListServiceDependentsCommandOutput extends ListServiceDependent * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class ListServiceDependentsCommand extends $Command diff --git a/clients/client-application-signals/src/commands/ListServiceLevelObjectiveExclusionWindowsCommand.ts b/clients/client-application-signals/src/commands/ListServiceLevelObjectiveExclusionWindowsCommand.ts index 511e95ef5c5a2..aee244b8d5260 100644 --- a/clients/client-application-signals/src/commands/ListServiceLevelObjectiveExclusionWindowsCommand.ts +++ b/clients/client-application-signals/src/commands/ListServiceLevelObjectiveExclusionWindowsCommand.ts @@ -92,6 +92,7 @@ export interface ListServiceLevelObjectiveExclusionWindowsCommandOutput * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class ListServiceLevelObjectiveExclusionWindowsCommand extends $Command diff --git a/clients/client-application-signals/src/commands/ListServiceLevelObjectivesCommand.ts b/clients/client-application-signals/src/commands/ListServiceLevelObjectivesCommand.ts index 6e1abd5d6586f..ba0c3db406643 100644 --- a/clients/client-application-signals/src/commands/ListServiceLevelObjectivesCommand.ts +++ b/clients/client-application-signals/src/commands/ListServiceLevelObjectivesCommand.ts @@ -83,6 +83,7 @@ export interface ListServiceLevelObjectivesCommandOutput extends ListServiceLeve * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class ListServiceLevelObjectivesCommand extends $Command diff --git a/clients/client-application-signals/src/commands/ListServiceOperationsCommand.ts b/clients/client-application-signals/src/commands/ListServiceOperationsCommand.ts index e29a6972a6989..54a4a3b23fd5a 100644 --- a/clients/client-application-signals/src/commands/ListServiceOperationsCommand.ts +++ b/clients/client-application-signals/src/commands/ListServiceOperationsCommand.ts @@ -93,6 +93,7 @@ export interface ListServiceOperationsCommandOutput extends ListServiceOperation * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class ListServiceOperationsCommand extends $Command diff --git a/clients/client-application-signals/src/commands/ListServicesCommand.ts b/clients/client-application-signals/src/commands/ListServicesCommand.ts index 5e489ca3aea7e..bf5b554d9a211 100644 --- a/clients/client-application-signals/src/commands/ListServicesCommand.ts +++ b/clients/client-application-signals/src/commands/ListServicesCommand.ts @@ -100,6 +100,7 @@ export interface ListServicesCommandOutput extends ListServicesOutput, __Metadat * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class ListServicesCommand extends $Command diff --git a/clients/client-application-signals/src/commands/ListTagsForResourceCommand.ts b/clients/client-application-signals/src/commands/ListTagsForResourceCommand.ts index 1ae5da687f052..a488e42c1ee35 100644 --- a/clients/client-application-signals/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-application-signals/src/commands/ListTagsForResourceCommand.ts @@ -70,6 +70,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-application-signals/src/commands/StartDiscoveryCommand.ts b/clients/client-application-signals/src/commands/StartDiscoveryCommand.ts index 905f125fac0b5..416eb7291d3d1 100644 --- a/clients/client-application-signals/src/commands/StartDiscoveryCommand.ts +++ b/clients/client-application-signals/src/commands/StartDiscoveryCommand.ts @@ -107,6 +107,7 @@ export interface StartDiscoveryCommandOutput extends StartDiscoveryOutput, __Met * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class StartDiscoveryCommand extends $Command diff --git a/clients/client-application-signals/src/commands/TagResourceCommand.ts b/clients/client-application-signals/src/commands/TagResourceCommand.ts index f0b62fe5a3aad..a961d5fdf3e39 100644 --- a/clients/client-application-signals/src/commands/TagResourceCommand.ts +++ b/clients/client-application-signals/src/commands/TagResourceCommand.ts @@ -81,6 +81,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-application-signals/src/commands/UntagResourceCommand.ts b/clients/client-application-signals/src/commands/UntagResourceCommand.ts index c943076e205da..2d96e40cdbc65 100644 --- a/clients/client-application-signals/src/commands/UntagResourceCommand.ts +++ b/clients/client-application-signals/src/commands/UntagResourceCommand.ts @@ -66,6 +66,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-application-signals/src/commands/UpdateServiceLevelObjectiveCommand.ts b/clients/client-application-signals/src/commands/UpdateServiceLevelObjectiveCommand.ts index efdc5ab080fd6..5496ea0e47b75 100644 --- a/clients/client-application-signals/src/commands/UpdateServiceLevelObjectiveCommand.ts +++ b/clients/client-application-signals/src/commands/UpdateServiceLevelObjectiveCommand.ts @@ -372,6 +372,7 @@ export interface UpdateServiceLevelObjectiveCommandOutput extends UpdateServiceL * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* + * * @public */ export class UpdateServiceLevelObjectiveCommand extends $Command diff --git a/clients/client-applicationcostprofiler/src/commands/DeleteReportDefinitionCommand.ts b/clients/client-applicationcostprofiler/src/commands/DeleteReportDefinitionCommand.ts index db617ce8e29a3..1d47e573c8c73 100644 --- a/clients/client-applicationcostprofiler/src/commands/DeleteReportDefinitionCommand.ts +++ b/clients/client-applicationcostprofiler/src/commands/DeleteReportDefinitionCommand.ts @@ -72,6 +72,7 @@ export interface DeleteReportDefinitionCommandOutput extends DeleteReportDefinit * @throws {@link ApplicationCostProfilerServiceException} *

Base exception class for all service exceptions from ApplicationCostProfiler service.

* + * * @public */ export class DeleteReportDefinitionCommand extends $Command diff --git a/clients/client-applicationcostprofiler/src/commands/GetReportDefinitionCommand.ts b/clients/client-applicationcostprofiler/src/commands/GetReportDefinitionCommand.ts index 64b91444441c3..c1221df6b06e5 100644 --- a/clients/client-applicationcostprofiler/src/commands/GetReportDefinitionCommand.ts +++ b/clients/client-applicationcostprofiler/src/commands/GetReportDefinitionCommand.ts @@ -80,6 +80,7 @@ export interface GetReportDefinitionCommandOutput extends GetReportDefinitionRes * @throws {@link ApplicationCostProfilerServiceException} *

Base exception class for all service exceptions from ApplicationCostProfiler service.

* + * * @public */ export class GetReportDefinitionCommand extends $Command diff --git a/clients/client-applicationcostprofiler/src/commands/ImportApplicationUsageCommand.ts b/clients/client-applicationcostprofiler/src/commands/ImportApplicationUsageCommand.ts index 0883e88ff76d6..060d56bb7347e 100644 --- a/clients/client-applicationcostprofiler/src/commands/ImportApplicationUsageCommand.ts +++ b/clients/client-applicationcostprofiler/src/commands/ImportApplicationUsageCommand.ts @@ -78,6 +78,7 @@ export interface ImportApplicationUsageCommandOutput extends ImportApplicationUs * @throws {@link ApplicationCostProfilerServiceException} *

Base exception class for all service exceptions from ApplicationCostProfiler service.

* + * * @public */ export class ImportApplicationUsageCommand extends $Command diff --git a/clients/client-applicationcostprofiler/src/commands/ListReportDefinitionsCommand.ts b/clients/client-applicationcostprofiler/src/commands/ListReportDefinitionsCommand.ts index d6dfbcc417edc..33880ada499b7 100644 --- a/clients/client-applicationcostprofiler/src/commands/ListReportDefinitionsCommand.ts +++ b/clients/client-applicationcostprofiler/src/commands/ListReportDefinitionsCommand.ts @@ -87,6 +87,7 @@ export interface ListReportDefinitionsCommandOutput extends ListReportDefinition * @throws {@link ApplicationCostProfilerServiceException} *

Base exception class for all service exceptions from ApplicationCostProfiler service.

* + * * @public */ export class ListReportDefinitionsCommand extends $Command diff --git a/clients/client-applicationcostprofiler/src/commands/PutReportDefinitionCommand.ts b/clients/client-applicationcostprofiler/src/commands/PutReportDefinitionCommand.ts index 8e0e874148228..dc292f03a7236 100644 --- a/clients/client-applicationcostprofiler/src/commands/PutReportDefinitionCommand.ts +++ b/clients/client-applicationcostprofiler/src/commands/PutReportDefinitionCommand.ts @@ -81,6 +81,7 @@ export interface PutReportDefinitionCommandOutput extends PutReportDefinitionRes * @throws {@link ApplicationCostProfilerServiceException} *

Base exception class for all service exceptions from ApplicationCostProfiler service.

* + * * @public */ export class PutReportDefinitionCommand extends $Command diff --git a/clients/client-applicationcostprofiler/src/commands/UpdateReportDefinitionCommand.ts b/clients/client-applicationcostprofiler/src/commands/UpdateReportDefinitionCommand.ts index 0eea7835e6b07..dcb0a538ec8a8 100644 --- a/clients/client-applicationcostprofiler/src/commands/UpdateReportDefinitionCommand.ts +++ b/clients/client-applicationcostprofiler/src/commands/UpdateReportDefinitionCommand.ts @@ -78,6 +78,7 @@ export interface UpdateReportDefinitionCommandOutput extends UpdateReportDefinit * @throws {@link ApplicationCostProfilerServiceException} *

Base exception class for all service exceptions from ApplicationCostProfiler service.

* + * * @public */ export class UpdateReportDefinitionCommand extends $Command diff --git a/clients/client-apprunner/src/commands/AssociateCustomDomainCommand.ts b/clients/client-apprunner/src/commands/AssociateCustomDomainCommand.ts index 1c8d3e1c554d8..37ff93eae96ba 100644 --- a/clients/client-apprunner/src/commands/AssociateCustomDomainCommand.ts +++ b/clients/client-apprunner/src/commands/AssociateCustomDomainCommand.ts @@ -91,6 +91,7 @@ export interface AssociateCustomDomainCommandOutput extends AssociateCustomDomai * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class AssociateCustomDomainCommand extends $Command diff --git a/clients/client-apprunner/src/commands/CreateAutoScalingConfigurationCommand.ts b/clients/client-apprunner/src/commands/CreateAutoScalingConfigurationCommand.ts index f8d0b86db68ca..aaa11e1683d8a 100644 --- a/clients/client-apprunner/src/commands/CreateAutoScalingConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/CreateAutoScalingConfigurationCommand.ts @@ -101,6 +101,7 @@ export interface CreateAutoScalingConfigurationCommandOutput * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class CreateAutoScalingConfigurationCommand extends $Command diff --git a/clients/client-apprunner/src/commands/CreateConnectionCommand.ts b/clients/client-apprunner/src/commands/CreateConnectionCommand.ts index 1734b5cda4375..06b4676461481 100644 --- a/clients/client-apprunner/src/commands/CreateConnectionCommand.ts +++ b/clients/client-apprunner/src/commands/CreateConnectionCommand.ts @@ -83,6 +83,7 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse, * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class CreateConnectionCommand extends $Command diff --git a/clients/client-apprunner/src/commands/CreateObservabilityConfigurationCommand.ts b/clients/client-apprunner/src/commands/CreateObservabilityConfigurationCommand.ts index 1eb2201e69133..551cc07ff873e 100644 --- a/clients/client-apprunner/src/commands/CreateObservabilityConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/CreateObservabilityConfigurationCommand.ts @@ -99,6 +99,7 @@ export interface CreateObservabilityConfigurationCommandOutput * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class CreateObservabilityConfigurationCommand extends $Command diff --git a/clients/client-apprunner/src/commands/CreateServiceCommand.ts b/clients/client-apprunner/src/commands/CreateServiceCommand.ts index 8d344f34fb55b..0c2f8d44a8ba4 100644 --- a/clients/client-apprunner/src/commands/CreateServiceCommand.ts +++ b/clients/client-apprunner/src/commands/CreateServiceCommand.ts @@ -246,6 +246,7 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class CreateServiceCommand extends $Command diff --git a/clients/client-apprunner/src/commands/CreateVpcConnectorCommand.ts b/clients/client-apprunner/src/commands/CreateVpcConnectorCommand.ts index 90e0b1177d3d0..6f2e53e510df4 100644 --- a/clients/client-apprunner/src/commands/CreateVpcConnectorCommand.ts +++ b/clients/client-apprunner/src/commands/CreateVpcConnectorCommand.ts @@ -92,6 +92,7 @@ export interface CreateVpcConnectorCommandOutput extends CreateVpcConnectorRespo * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class CreateVpcConnectorCommand extends $Command diff --git a/clients/client-apprunner/src/commands/CreateVpcIngressConnectionCommand.ts b/clients/client-apprunner/src/commands/CreateVpcIngressConnectionCommand.ts index e362679c04438..3607466b08a94 100644 --- a/clients/client-apprunner/src/commands/CreateVpcIngressConnectionCommand.ts +++ b/clients/client-apprunner/src/commands/CreateVpcIngressConnectionCommand.ts @@ -93,6 +93,7 @@ export interface CreateVpcIngressConnectionCommandOutput extends CreateVpcIngres * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class CreateVpcIngressConnectionCommand extends $Command diff --git a/clients/client-apprunner/src/commands/DeleteAutoScalingConfigurationCommand.ts b/clients/client-apprunner/src/commands/DeleteAutoScalingConfigurationCommand.ts index 73c9767f109c2..4ac90776d750e 100644 --- a/clients/client-apprunner/src/commands/DeleteAutoScalingConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/DeleteAutoScalingConfigurationCommand.ts @@ -85,6 +85,7 @@ export interface DeleteAutoScalingConfigurationCommandOutput * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class DeleteAutoScalingConfigurationCommand extends $Command diff --git a/clients/client-apprunner/src/commands/DeleteConnectionCommand.ts b/clients/client-apprunner/src/commands/DeleteConnectionCommand.ts index 1d219b16ab142..e94d6c9477aab 100644 --- a/clients/client-apprunner/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-apprunner/src/commands/DeleteConnectionCommand.ts @@ -71,6 +71,7 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse, * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class DeleteConnectionCommand extends $Command diff --git a/clients/client-apprunner/src/commands/DeleteObservabilityConfigurationCommand.ts b/clients/client-apprunner/src/commands/DeleteObservabilityConfigurationCommand.ts index 0e2ceca8063e3..1010013417aa8 100644 --- a/clients/client-apprunner/src/commands/DeleteObservabilityConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/DeleteObservabilityConfigurationCommand.ts @@ -81,6 +81,7 @@ export interface DeleteObservabilityConfigurationCommandOutput * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class DeleteObservabilityConfigurationCommand extends $Command diff --git a/clients/client-apprunner/src/commands/DeleteServiceCommand.ts b/clients/client-apprunner/src/commands/DeleteServiceCommand.ts index 3d9731d5298e4..a472c2faf33b4 100644 --- a/clients/client-apprunner/src/commands/DeleteServiceCommand.ts +++ b/clients/client-apprunner/src/commands/DeleteServiceCommand.ts @@ -170,6 +170,7 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class DeleteServiceCommand extends $Command diff --git a/clients/client-apprunner/src/commands/DeleteVpcConnectorCommand.ts b/clients/client-apprunner/src/commands/DeleteVpcConnectorCommand.ts index c205140dc7328..de62192f7317f 100644 --- a/clients/client-apprunner/src/commands/DeleteVpcConnectorCommand.ts +++ b/clients/client-apprunner/src/commands/DeleteVpcConnectorCommand.ts @@ -78,6 +78,7 @@ export interface DeleteVpcConnectorCommandOutput extends DeleteVpcConnectorRespo * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class DeleteVpcConnectorCommand extends $Command diff --git a/clients/client-apprunner/src/commands/DeleteVpcIngressConnectionCommand.ts b/clients/client-apprunner/src/commands/DeleteVpcIngressConnectionCommand.ts index cd3394a40cc8f..b499a93a86a07 100644 --- a/clients/client-apprunner/src/commands/DeleteVpcIngressConnectionCommand.ts +++ b/clients/client-apprunner/src/commands/DeleteVpcIngressConnectionCommand.ts @@ -103,6 +103,7 @@ export interface DeleteVpcIngressConnectionCommandOutput extends DeleteVpcIngres * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class DeleteVpcIngressConnectionCommand extends $Command diff --git a/clients/client-apprunner/src/commands/DescribeAutoScalingConfigurationCommand.ts b/clients/client-apprunner/src/commands/DescribeAutoScalingConfigurationCommand.ts index 592d5a5619e0a..4104417d2d7b2 100644 --- a/clients/client-apprunner/src/commands/DescribeAutoScalingConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/DescribeAutoScalingConfigurationCommand.ts @@ -82,6 +82,7 @@ export interface DescribeAutoScalingConfigurationCommandOutput * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class DescribeAutoScalingConfigurationCommand extends $Command diff --git a/clients/client-apprunner/src/commands/DescribeCustomDomainsCommand.ts b/clients/client-apprunner/src/commands/DescribeCustomDomainsCommand.ts index 1c9fe63956c80..8457462160e04 100644 --- a/clients/client-apprunner/src/commands/DescribeCustomDomainsCommand.ts +++ b/clients/client-apprunner/src/commands/DescribeCustomDomainsCommand.ts @@ -90,6 +90,7 @@ export interface DescribeCustomDomainsCommandOutput extends DescribeCustomDomain * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class DescribeCustomDomainsCommand extends $Command diff --git a/clients/client-apprunner/src/commands/DescribeObservabilityConfigurationCommand.ts b/clients/client-apprunner/src/commands/DescribeObservabilityConfigurationCommand.ts index 6425b6769b64f..48300b6f135c0 100644 --- a/clients/client-apprunner/src/commands/DescribeObservabilityConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/DescribeObservabilityConfigurationCommand.ts @@ -83,6 +83,7 @@ export interface DescribeObservabilityConfigurationCommandOutput * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class DescribeObservabilityConfigurationCommand extends $Command diff --git a/clients/client-apprunner/src/commands/DescribeServiceCommand.ts b/clients/client-apprunner/src/commands/DescribeServiceCommand.ts index 18ac56280c971..ee0469c0c9f86 100644 --- a/clients/client-apprunner/src/commands/DescribeServiceCommand.ts +++ b/clients/client-apprunner/src/commands/DescribeServiceCommand.ts @@ -160,6 +160,7 @@ export interface DescribeServiceCommandOutput extends DescribeServiceResponse, _ * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class DescribeServiceCommand extends $Command diff --git a/clients/client-apprunner/src/commands/DescribeVpcConnectorCommand.ts b/clients/client-apprunner/src/commands/DescribeVpcConnectorCommand.ts index 1645a3343d698..a34b386b67364 100644 --- a/clients/client-apprunner/src/commands/DescribeVpcConnectorCommand.ts +++ b/clients/client-apprunner/src/commands/DescribeVpcConnectorCommand.ts @@ -77,6 +77,7 @@ export interface DescribeVpcConnectorCommandOutput extends DescribeVpcConnectorR * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class DescribeVpcConnectorCommand extends $Command diff --git a/clients/client-apprunner/src/commands/DescribeVpcIngressConnectionCommand.ts b/clients/client-apprunner/src/commands/DescribeVpcIngressConnectionCommand.ts index 32d160679e840..be133cf568aa7 100644 --- a/clients/client-apprunner/src/commands/DescribeVpcIngressConnectionCommand.ts +++ b/clients/client-apprunner/src/commands/DescribeVpcIngressConnectionCommand.ts @@ -82,6 +82,7 @@ export interface DescribeVpcIngressConnectionCommandOutput * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class DescribeVpcIngressConnectionCommand extends $Command diff --git a/clients/client-apprunner/src/commands/DisassociateCustomDomainCommand.ts b/clients/client-apprunner/src/commands/DisassociateCustomDomainCommand.ts index e243dcdc6e568..6f918cd89a9fc 100644 --- a/clients/client-apprunner/src/commands/DisassociateCustomDomainCommand.ts +++ b/clients/client-apprunner/src/commands/DisassociateCustomDomainCommand.ts @@ -92,6 +92,7 @@ export interface DisassociateCustomDomainCommandOutput extends DisassociateCusto * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class DisassociateCustomDomainCommand extends $Command diff --git a/clients/client-apprunner/src/commands/ListAutoScalingConfigurationsCommand.ts b/clients/client-apprunner/src/commands/ListAutoScalingConfigurationsCommand.ts index 6c355e22f0870..6069474976a97 100644 --- a/clients/client-apprunner/src/commands/ListAutoScalingConfigurationsCommand.ts +++ b/clients/client-apprunner/src/commands/ListAutoScalingConfigurationsCommand.ts @@ -84,6 +84,7 @@ export interface ListAutoScalingConfigurationsCommandOutput * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class ListAutoScalingConfigurationsCommand extends $Command diff --git a/clients/client-apprunner/src/commands/ListConnectionsCommand.ts b/clients/client-apprunner/src/commands/ListConnectionsCommand.ts index 537e26eb1f88b..1efc50c715de6 100644 --- a/clients/client-apprunner/src/commands/ListConnectionsCommand.ts +++ b/clients/client-apprunner/src/commands/ListConnectionsCommand.ts @@ -72,6 +72,7 @@ export interface ListConnectionsCommandOutput extends ListConnectionsResponse, _ * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class ListConnectionsCommand extends $Command diff --git a/clients/client-apprunner/src/commands/ListObservabilityConfigurationsCommand.ts b/clients/client-apprunner/src/commands/ListObservabilityConfigurationsCommand.ts index cfce226f19997..ab32608604b0e 100644 --- a/clients/client-apprunner/src/commands/ListObservabilityConfigurationsCommand.ts +++ b/clients/client-apprunner/src/commands/ListObservabilityConfigurationsCommand.ts @@ -80,6 +80,7 @@ export interface ListObservabilityConfigurationsCommandOutput * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class ListObservabilityConfigurationsCommand extends $Command diff --git a/clients/client-apprunner/src/commands/ListOperationsCommand.ts b/clients/client-apprunner/src/commands/ListOperationsCommand.ts index b67bb18cc9e45..896b5ef7f4e7b 100644 --- a/clients/client-apprunner/src/commands/ListOperationsCommand.ts +++ b/clients/client-apprunner/src/commands/ListOperationsCommand.ts @@ -79,6 +79,7 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class ListOperationsCommand extends $Command diff --git a/clients/client-apprunner/src/commands/ListServicesCommand.ts b/clients/client-apprunner/src/commands/ListServicesCommand.ts index 7eb67a5ed07d8..343b05d4ad079 100644 --- a/clients/client-apprunner/src/commands/ListServicesCommand.ts +++ b/clients/client-apprunner/src/commands/ListServicesCommand.ts @@ -73,6 +73,7 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class ListServicesCommand extends $Command diff --git a/clients/client-apprunner/src/commands/ListServicesForAutoScalingConfigurationCommand.ts b/clients/client-apprunner/src/commands/ListServicesForAutoScalingConfigurationCommand.ts index 0b6cd81a31d99..2c26007a418c9 100644 --- a/clients/client-apprunner/src/commands/ListServicesForAutoScalingConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/ListServicesForAutoScalingConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface ListServicesForAutoScalingConfigurationCommandOutput * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class ListServicesForAutoScalingConfigurationCommand extends $Command diff --git a/clients/client-apprunner/src/commands/ListTagsForResourceCommand.ts b/clients/client-apprunner/src/commands/ListTagsForResourceCommand.ts index 78e2f4ac4ceec..eea871ac6122d 100644 --- a/clients/client-apprunner/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-apprunner/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-apprunner/src/commands/ListVpcConnectorsCommand.ts b/clients/client-apprunner/src/commands/ListVpcConnectorsCommand.ts index fb51500888b02..83169da040645 100644 --- a/clients/client-apprunner/src/commands/ListVpcConnectorsCommand.ts +++ b/clients/client-apprunner/src/commands/ListVpcConnectorsCommand.ts @@ -78,6 +78,7 @@ export interface ListVpcConnectorsCommandOutput extends ListVpcConnectorsRespons * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class ListVpcConnectorsCommand extends $Command diff --git a/clients/client-apprunner/src/commands/ListVpcIngressConnectionsCommand.ts b/clients/client-apprunner/src/commands/ListVpcIngressConnectionsCommand.ts index 721cd5ca2a9ed..5c90615adab43 100644 --- a/clients/client-apprunner/src/commands/ListVpcIngressConnectionsCommand.ts +++ b/clients/client-apprunner/src/commands/ListVpcIngressConnectionsCommand.ts @@ -72,6 +72,7 @@ export interface ListVpcIngressConnectionsCommandOutput extends ListVpcIngressCo * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class ListVpcIngressConnectionsCommand extends $Command diff --git a/clients/client-apprunner/src/commands/PauseServiceCommand.ts b/clients/client-apprunner/src/commands/PauseServiceCommand.ts index 7e0a2420d4e44..e06bd42bfacd6 100644 --- a/clients/client-apprunner/src/commands/PauseServiceCommand.ts +++ b/clients/client-apprunner/src/commands/PauseServiceCommand.ts @@ -163,6 +163,7 @@ export interface PauseServiceCommandOutput extends PauseServiceResponse, __Metad * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class PauseServiceCommand extends $Command diff --git a/clients/client-apprunner/src/commands/ResumeServiceCommand.ts b/clients/client-apprunner/src/commands/ResumeServiceCommand.ts index 5fa920fa0889a..3e6ac4625fea4 100644 --- a/clients/client-apprunner/src/commands/ResumeServiceCommand.ts +++ b/clients/client-apprunner/src/commands/ResumeServiceCommand.ts @@ -166,6 +166,7 @@ export interface ResumeServiceCommandOutput extends ResumeServiceResponse, __Met * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class ResumeServiceCommand extends $Command diff --git a/clients/client-apprunner/src/commands/StartDeploymentCommand.ts b/clients/client-apprunner/src/commands/StartDeploymentCommand.ts index 2f46bfab00849..0b81d7502fda7 100644 --- a/clients/client-apprunner/src/commands/StartDeploymentCommand.ts +++ b/clients/client-apprunner/src/commands/StartDeploymentCommand.ts @@ -69,6 +69,7 @@ export interface StartDeploymentCommandOutput extends StartDeploymentResponse, _ * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class StartDeploymentCommand extends $Command diff --git a/clients/client-apprunner/src/commands/TagResourceCommand.ts b/clients/client-apprunner/src/commands/TagResourceCommand.ts index e3e952b595148..612a89ff0c781 100644 --- a/clients/client-apprunner/src/commands/TagResourceCommand.ts +++ b/clients/client-apprunner/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-apprunner/src/commands/UntagResourceCommand.ts b/clients/client-apprunner/src/commands/UntagResourceCommand.ts index 60e6d4feec1cf..07ede201b7166 100644 --- a/clients/client-apprunner/src/commands/UntagResourceCommand.ts +++ b/clients/client-apprunner/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-apprunner/src/commands/UpdateDefaultAutoScalingConfigurationCommand.ts b/clients/client-apprunner/src/commands/UpdateDefaultAutoScalingConfigurationCommand.ts index dc5bdeb6294b0..57b1363e0959f 100644 --- a/clients/client-apprunner/src/commands/UpdateDefaultAutoScalingConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/UpdateDefaultAutoScalingConfigurationCommand.ts @@ -87,6 +87,7 @@ export interface UpdateDefaultAutoScalingConfigurationCommandOutput * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class UpdateDefaultAutoScalingConfigurationCommand extends $Command diff --git a/clients/client-apprunner/src/commands/UpdateServiceCommand.ts b/clients/client-apprunner/src/commands/UpdateServiceCommand.ts index b0ec401721f5d..15dd6d46655a4 100644 --- a/clients/client-apprunner/src/commands/UpdateServiceCommand.ts +++ b/clients/client-apprunner/src/commands/UpdateServiceCommand.ts @@ -242,6 +242,7 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class UpdateServiceCommand extends $Command diff --git a/clients/client-apprunner/src/commands/UpdateVpcIngressConnectionCommand.ts b/clients/client-apprunner/src/commands/UpdateVpcIngressConnectionCommand.ts index b6d5bc5bdb80c..2b75dd6edf947 100644 --- a/clients/client-apprunner/src/commands/UpdateVpcIngressConnectionCommand.ts +++ b/clients/client-apprunner/src/commands/UpdateVpcIngressConnectionCommand.ts @@ -101,6 +101,7 @@ export interface UpdateVpcIngressConnectionCommandOutput extends UpdateVpcIngres * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* + * * @public */ export class UpdateVpcIngressConnectionCommand extends $Command diff --git a/clients/client-appstream/src/commands/AssociateAppBlockBuilderAppBlockCommand.ts b/clients/client-appstream/src/commands/AssociateAppBlockBuilderAppBlockCommand.ts index 232670518d7fd..24ea88dd19b7d 100644 --- a/clients/client-appstream/src/commands/AssociateAppBlockBuilderAppBlockCommand.ts +++ b/clients/client-appstream/src/commands/AssociateAppBlockBuilderAppBlockCommand.ts @@ -79,6 +79,7 @@ export interface AssociateAppBlockBuilderAppBlockCommandOutput * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class AssociateAppBlockBuilderAppBlockCommand extends $Command diff --git a/clients/client-appstream/src/commands/AssociateApplicationFleetCommand.ts b/clients/client-appstream/src/commands/AssociateApplicationFleetCommand.ts index d196941a646f0..bca16fe51a324 100644 --- a/clients/client-appstream/src/commands/AssociateApplicationFleetCommand.ts +++ b/clients/client-appstream/src/commands/AssociateApplicationFleetCommand.ts @@ -74,6 +74,7 @@ export interface AssociateApplicationFleetCommandOutput extends AssociateApplica * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class AssociateApplicationFleetCommand extends $Command diff --git a/clients/client-appstream/src/commands/AssociateApplicationToEntitlementCommand.ts b/clients/client-appstream/src/commands/AssociateApplicationToEntitlementCommand.ts index 4746fa2802fc1..0580ce0448366 100644 --- a/clients/client-appstream/src/commands/AssociateApplicationToEntitlementCommand.ts +++ b/clients/client-appstream/src/commands/AssociateApplicationToEntitlementCommand.ts @@ -72,6 +72,7 @@ export interface AssociateApplicationToEntitlementCommandOutput * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class AssociateApplicationToEntitlementCommand extends $Command diff --git a/clients/client-appstream/src/commands/AssociateFleetCommand.ts b/clients/client-appstream/src/commands/AssociateFleetCommand.ts index 9844f6a4320ff..67698a809d85c 100644 --- a/clients/client-appstream/src/commands/AssociateFleetCommand.ts +++ b/clients/client-appstream/src/commands/AssociateFleetCommand.ts @@ -72,6 +72,7 @@ export interface AssociateFleetCommandOutput extends AssociateFleetResult, __Met * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class AssociateFleetCommand extends $Command diff --git a/clients/client-appstream/src/commands/BatchAssociateUserStackCommand.ts b/clients/client-appstream/src/commands/BatchAssociateUserStackCommand.ts index 78186fa4edb4d..ed86f7fe16ce2 100644 --- a/clients/client-appstream/src/commands/BatchAssociateUserStackCommand.ts +++ b/clients/client-appstream/src/commands/BatchAssociateUserStackCommand.ts @@ -84,6 +84,7 @@ export interface BatchAssociateUserStackCommandOutput extends BatchAssociateUser * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class BatchAssociateUserStackCommand extends $Command diff --git a/clients/client-appstream/src/commands/BatchDisassociateUserStackCommand.ts b/clients/client-appstream/src/commands/BatchDisassociateUserStackCommand.ts index 6ccc42b2c6127..47d852caab6b1 100644 --- a/clients/client-appstream/src/commands/BatchDisassociateUserStackCommand.ts +++ b/clients/client-appstream/src/commands/BatchDisassociateUserStackCommand.ts @@ -84,6 +84,7 @@ export interface BatchDisassociateUserStackCommandOutput extends BatchDisassocia * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class BatchDisassociateUserStackCommand extends $Command diff --git a/clients/client-appstream/src/commands/CopyImageCommand.ts b/clients/client-appstream/src/commands/CopyImageCommand.ts index 1bfdb5c687bfb..8850d4d71d3c8 100644 --- a/clients/client-appstream/src/commands/CopyImageCommand.ts +++ b/clients/client-appstream/src/commands/CopyImageCommand.ts @@ -76,6 +76,7 @@ export interface CopyImageCommandOutput extends CopyImageResponse, __MetadataBea * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CopyImageCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateAppBlockBuilderCommand.ts b/clients/client-appstream/src/commands/CreateAppBlockBuilderCommand.ts index 72d1f51d525db..8702fcf8e5410 100644 --- a/clients/client-appstream/src/commands/CreateAppBlockBuilderCommand.ts +++ b/clients/client-appstream/src/commands/CreateAppBlockBuilderCommand.ts @@ -144,6 +144,7 @@ export interface CreateAppBlockBuilderCommandOutput extends CreateAppBlockBuilde * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateAppBlockBuilderCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateAppBlockBuilderStreamingURLCommand.ts b/clients/client-appstream/src/commands/CreateAppBlockBuilderStreamingURLCommand.ts index db202a7c85847..0353fbebebd91 100644 --- a/clients/client-appstream/src/commands/CreateAppBlockBuilderStreamingURLCommand.ts +++ b/clients/client-appstream/src/commands/CreateAppBlockBuilderStreamingURLCommand.ts @@ -68,6 +68,7 @@ export interface CreateAppBlockBuilderStreamingURLCommandOutput * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateAppBlockBuilderStreamingURLCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateAppBlockCommand.ts b/clients/client-appstream/src/commands/CreateAppBlockCommand.ts index 6ec7ea874929d..bb8685378859d 100644 --- a/clients/client-appstream/src/commands/CreateAppBlockCommand.ts +++ b/clients/client-appstream/src/commands/CreateAppBlockCommand.ts @@ -137,6 +137,7 @@ export interface CreateAppBlockCommandOutput extends CreateAppBlockResult, __Met * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateAppBlockCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateApplicationCommand.ts b/clients/client-appstream/src/commands/CreateApplicationCommand.ts index c2f99311be710..bbe0b7ac13666 100644 --- a/clients/client-appstream/src/commands/CreateApplicationCommand.ts +++ b/clients/client-appstream/src/commands/CreateApplicationCommand.ts @@ -120,6 +120,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationResult, * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateDirectoryConfigCommand.ts b/clients/client-appstream/src/commands/CreateDirectoryConfigCommand.ts index dc7b99f630bf2..1802c8960258b 100644 --- a/clients/client-appstream/src/commands/CreateDirectoryConfigCommand.ts +++ b/clients/client-appstream/src/commands/CreateDirectoryConfigCommand.ts @@ -103,6 +103,7 @@ export interface CreateDirectoryConfigCommandOutput extends CreateDirectoryConfi * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateDirectoryConfigCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateEntitlementCommand.ts b/clients/client-appstream/src/commands/CreateEntitlementCommand.ts index 2dd9b3e200ffe..faa73aa6b183f 100644 --- a/clients/client-appstream/src/commands/CreateEntitlementCommand.ts +++ b/clients/client-appstream/src/commands/CreateEntitlementCommand.ts @@ -94,6 +94,7 @@ export interface CreateEntitlementCommandOutput extends CreateEntitlementResult, * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateEntitlementCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateFleetCommand.ts b/clients/client-appstream/src/commands/CreateFleetCommand.ts index 7672b868dccd7..28857824e80d5 100644 --- a/clients/client-appstream/src/commands/CreateFleetCommand.ts +++ b/clients/client-appstream/src/commands/CreateFleetCommand.ts @@ -184,6 +184,7 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateFleetCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateImageBuilderCommand.ts b/clients/client-appstream/src/commands/CreateImageBuilderCommand.ts index 13abcaf46d91c..8a83da3d657d4 100644 --- a/clients/client-appstream/src/commands/CreateImageBuilderCommand.ts +++ b/clients/client-appstream/src/commands/CreateImageBuilderCommand.ts @@ -165,6 +165,7 @@ export interface CreateImageBuilderCommandOutput extends CreateImageBuilderResul * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateImageBuilderCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateImageBuilderStreamingURLCommand.ts b/clients/client-appstream/src/commands/CreateImageBuilderStreamingURLCommand.ts index 0e9e3087004fc..86f4278bbfb38 100644 --- a/clients/client-appstream/src/commands/CreateImageBuilderStreamingURLCommand.ts +++ b/clients/client-appstream/src/commands/CreateImageBuilderStreamingURLCommand.ts @@ -68,6 +68,7 @@ export interface CreateImageBuilderStreamingURLCommandOutput * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateImageBuilderStreamingURLCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateStackCommand.ts b/clients/client-appstream/src/commands/CreateStackCommand.ts index 0a095a0e4056b..dff92c74bfd6c 100644 --- a/clients/client-appstream/src/commands/CreateStackCommand.ts +++ b/clients/client-appstream/src/commands/CreateStackCommand.ts @@ -171,6 +171,7 @@ export interface CreateStackCommandOutput extends CreateStackResult, __MetadataB * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateStackCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateStreamingURLCommand.ts b/clients/client-appstream/src/commands/CreateStreamingURLCommand.ts index 0eb329c566a71..6c595862a8c53 100644 --- a/clients/client-appstream/src/commands/CreateStreamingURLCommand.ts +++ b/clients/client-appstream/src/commands/CreateStreamingURLCommand.ts @@ -73,6 +73,7 @@ export interface CreateStreamingURLCommandOutput extends CreateStreamingURLResul * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateStreamingURLCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateThemeForStackCommand.ts b/clients/client-appstream/src/commands/CreateThemeForStackCommand.ts index db6e6cf28965e..499d0e5b9f3e2 100644 --- a/clients/client-appstream/src/commands/CreateThemeForStackCommand.ts +++ b/clients/client-appstream/src/commands/CreateThemeForStackCommand.ts @@ -103,6 +103,7 @@ export interface CreateThemeForStackCommandOutput extends CreateThemeForStackRes * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateThemeForStackCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateUpdatedImageCommand.ts b/clients/client-appstream/src/commands/CreateUpdatedImageCommand.ts index b0c5bce112de9..07e97f6253612 100644 --- a/clients/client-appstream/src/commands/CreateUpdatedImageCommand.ts +++ b/clients/client-appstream/src/commands/CreateUpdatedImageCommand.ts @@ -149,6 +149,7 @@ export interface CreateUpdatedImageCommandOutput extends CreateUpdatedImageResul * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateUpdatedImageCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateUsageReportSubscriptionCommand.ts b/clients/client-appstream/src/commands/CreateUsageReportSubscriptionCommand.ts index 4e37568e85737..f322a93bdde24 100644 --- a/clients/client-appstream/src/commands/CreateUsageReportSubscriptionCommand.ts +++ b/clients/client-appstream/src/commands/CreateUsageReportSubscriptionCommand.ts @@ -68,6 +68,7 @@ export interface CreateUsageReportSubscriptionCommandOutput * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateUsageReportSubscriptionCommand extends $Command diff --git a/clients/client-appstream/src/commands/CreateUserCommand.ts b/clients/client-appstream/src/commands/CreateUserCommand.ts index df03254fe8840..7722bdf966e9b 100644 --- a/clients/client-appstream/src/commands/CreateUserCommand.ts +++ b/clients/client-appstream/src/commands/CreateUserCommand.ts @@ -72,6 +72,7 @@ export interface CreateUserCommandOutput extends CreateUserResult, __MetadataBea * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class CreateUserCommand extends $Command diff --git a/clients/client-appstream/src/commands/DeleteAppBlockBuilderCommand.ts b/clients/client-appstream/src/commands/DeleteAppBlockBuilderCommand.ts index 2198fac246a9d..9cdf810cd1e2b 100644 --- a/clients/client-appstream/src/commands/DeleteAppBlockBuilderCommand.ts +++ b/clients/client-appstream/src/commands/DeleteAppBlockBuilderCommand.ts @@ -67,6 +67,7 @@ export interface DeleteAppBlockBuilderCommandOutput extends DeleteAppBlockBuilde * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DeleteAppBlockBuilderCommand extends $Command diff --git a/clients/client-appstream/src/commands/DeleteAppBlockCommand.ts b/clients/client-appstream/src/commands/DeleteAppBlockCommand.ts index 0cd51d03591f5..ab2ca842a89df 100644 --- a/clients/client-appstream/src/commands/DeleteAppBlockCommand.ts +++ b/clients/client-appstream/src/commands/DeleteAppBlockCommand.ts @@ -62,6 +62,7 @@ export interface DeleteAppBlockCommandOutput extends DeleteAppBlockResult, __Met * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DeleteAppBlockCommand extends $Command diff --git a/clients/client-appstream/src/commands/DeleteApplicationCommand.ts b/clients/client-appstream/src/commands/DeleteApplicationCommand.ts index 17f5ed689c2bb..16689eeece454 100644 --- a/clients/client-appstream/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-appstream/src/commands/DeleteApplicationCommand.ts @@ -65,6 +65,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationResult, * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-appstream/src/commands/DeleteDirectoryConfigCommand.ts b/clients/client-appstream/src/commands/DeleteDirectoryConfigCommand.ts index 875d2b2e339ba..f0ee15ab7fb69 100644 --- a/clients/client-appstream/src/commands/DeleteDirectoryConfigCommand.ts +++ b/clients/client-appstream/src/commands/DeleteDirectoryConfigCommand.ts @@ -59,6 +59,7 @@ export interface DeleteDirectoryConfigCommandOutput extends DeleteDirectoryConfi * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DeleteDirectoryConfigCommand extends $Command diff --git a/clients/client-appstream/src/commands/DeleteEntitlementCommand.ts b/clients/client-appstream/src/commands/DeleteEntitlementCommand.ts index c50909181c580..64ebc20bf745d 100644 --- a/clients/client-appstream/src/commands/DeleteEntitlementCommand.ts +++ b/clients/client-appstream/src/commands/DeleteEntitlementCommand.ts @@ -66,6 +66,7 @@ export interface DeleteEntitlementCommandOutput extends DeleteEntitlementResult, * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DeleteEntitlementCommand extends $Command diff --git a/clients/client-appstream/src/commands/DeleteFleetCommand.ts b/clients/client-appstream/src/commands/DeleteFleetCommand.ts index 460c85b8a9a83..79893a6eb7ef1 100644 --- a/clients/client-appstream/src/commands/DeleteFleetCommand.ts +++ b/clients/client-appstream/src/commands/DeleteFleetCommand.ts @@ -62,6 +62,7 @@ export interface DeleteFleetCommandOutput extends DeleteFleetResult, __MetadataB * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DeleteFleetCommand extends $Command diff --git a/clients/client-appstream/src/commands/DeleteImageBuilderCommand.ts b/clients/client-appstream/src/commands/DeleteImageBuilderCommand.ts index f110bead47653..84b8494fc6260 100644 --- a/clients/client-appstream/src/commands/DeleteImageBuilderCommand.ts +++ b/clients/client-appstream/src/commands/DeleteImageBuilderCommand.ts @@ -111,6 +111,7 @@ export interface DeleteImageBuilderCommandOutput extends DeleteImageBuilderResul * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DeleteImageBuilderCommand extends $Command diff --git a/clients/client-appstream/src/commands/DeleteImageCommand.ts b/clients/client-appstream/src/commands/DeleteImageCommand.ts index f28353ae75229..30d4980b3a0e2 100644 --- a/clients/client-appstream/src/commands/DeleteImageCommand.ts +++ b/clients/client-appstream/src/commands/DeleteImageCommand.ts @@ -131,6 +131,7 @@ export interface DeleteImageCommandOutput extends DeleteImageResult, __MetadataB * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DeleteImageCommand extends $Command diff --git a/clients/client-appstream/src/commands/DeleteImagePermissionsCommand.ts b/clients/client-appstream/src/commands/DeleteImagePermissionsCommand.ts index a47b8d939de38..820125f172676 100644 --- a/clients/client-appstream/src/commands/DeleteImagePermissionsCommand.ts +++ b/clients/client-appstream/src/commands/DeleteImagePermissionsCommand.ts @@ -60,6 +60,7 @@ export interface DeleteImagePermissionsCommandOutput extends DeleteImagePermissi * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DeleteImagePermissionsCommand extends $Command diff --git a/clients/client-appstream/src/commands/DeleteStackCommand.ts b/clients/client-appstream/src/commands/DeleteStackCommand.ts index 17d54c3055017..20ca92f562cb6 100644 --- a/clients/client-appstream/src/commands/DeleteStackCommand.ts +++ b/clients/client-appstream/src/commands/DeleteStackCommand.ts @@ -65,6 +65,7 @@ export interface DeleteStackCommandOutput extends DeleteStackResult, __MetadataB * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DeleteStackCommand extends $Command diff --git a/clients/client-appstream/src/commands/DeleteThemeForStackCommand.ts b/clients/client-appstream/src/commands/DeleteThemeForStackCommand.ts index 24489744691ca..9259f917c2976 100644 --- a/clients/client-appstream/src/commands/DeleteThemeForStackCommand.ts +++ b/clients/client-appstream/src/commands/DeleteThemeForStackCommand.ts @@ -62,6 +62,7 @@ export interface DeleteThemeForStackCommandOutput extends DeleteThemeForStackRes * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DeleteThemeForStackCommand extends $Command diff --git a/clients/client-appstream/src/commands/DeleteUsageReportSubscriptionCommand.ts b/clients/client-appstream/src/commands/DeleteUsageReportSubscriptionCommand.ts index 2abcf64217090..d2d2777e12b80 100644 --- a/clients/client-appstream/src/commands/DeleteUsageReportSubscriptionCommand.ts +++ b/clients/client-appstream/src/commands/DeleteUsageReportSubscriptionCommand.ts @@ -62,6 +62,7 @@ export interface DeleteUsageReportSubscriptionCommandOutput * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DeleteUsageReportSubscriptionCommand extends $Command diff --git a/clients/client-appstream/src/commands/DeleteUserCommand.ts b/clients/client-appstream/src/commands/DeleteUserCommand.ts index dffcd4a51bf40..a4536fac0c6cc 100644 --- a/clients/client-appstream/src/commands/DeleteUserCommand.ts +++ b/clients/client-appstream/src/commands/DeleteUserCommand.ts @@ -57,6 +57,7 @@ export interface DeleteUserCommandOutput extends DeleteUserResult, __MetadataBea * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DeleteUserCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeAppBlockBuilderAppBlockAssociationsCommand.ts b/clients/client-appstream/src/commands/DescribeAppBlockBuilderAppBlockAssociationsCommand.ts index 92e37b84d9112..0971d1cd48488 100644 --- a/clients/client-appstream/src/commands/DescribeAppBlockBuilderAppBlockAssociationsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeAppBlockBuilderAppBlockAssociationsCommand.ts @@ -79,6 +79,7 @@ export interface DescribeAppBlockBuilderAppBlockAssociationsCommandOutput * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeAppBlockBuilderAppBlockAssociationsCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeAppBlockBuildersCommand.ts b/clients/client-appstream/src/commands/DescribeAppBlockBuildersCommand.ts index 94f8868f6302f..a5dd1b6747fd5 100644 --- a/clients/client-appstream/src/commands/DescribeAppBlockBuildersCommand.ts +++ b/clients/client-appstream/src/commands/DescribeAppBlockBuildersCommand.ts @@ -104,6 +104,7 @@ export interface DescribeAppBlockBuildersCommandOutput extends DescribeAppBlockB * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeAppBlockBuildersCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeAppBlocksCommand.ts b/clients/client-appstream/src/commands/DescribeAppBlocksCommand.ts index 279a1c8d59e64..b4b79d7b9abc0 100644 --- a/clients/client-appstream/src/commands/DescribeAppBlocksCommand.ts +++ b/clients/client-appstream/src/commands/DescribeAppBlocksCommand.ts @@ -104,6 +104,7 @@ export interface DescribeAppBlocksCommandOutput extends DescribeAppBlocksResult, * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeAppBlocksCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeApplicationFleetAssociationsCommand.ts b/clients/client-appstream/src/commands/DescribeApplicationFleetAssociationsCommand.ts index 8e37c2a6d024f..3b84400dffe49 100644 --- a/clients/client-appstream/src/commands/DescribeApplicationFleetAssociationsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeApplicationFleetAssociationsCommand.ts @@ -78,6 +78,7 @@ export interface DescribeApplicationFleetAssociationsCommandOutput * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeApplicationFleetAssociationsCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeApplicationsCommand.ts b/clients/client-appstream/src/commands/DescribeApplicationsCommand.ts index 26a1a7064eb3c..7e969ab67ac0a 100644 --- a/clients/client-appstream/src/commands/DescribeApplicationsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeApplicationsCommand.ts @@ -93,6 +93,7 @@ export interface DescribeApplicationsCommandOutput extends DescribeApplicationsR * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeApplicationsCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeDirectoryConfigsCommand.ts b/clients/client-appstream/src/commands/DescribeDirectoryConfigsCommand.ts index 6f074bb7d6c3a..6e11a33d08f73 100644 --- a/clients/client-appstream/src/commands/DescribeDirectoryConfigsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeDirectoryConfigsCommand.ts @@ -85,6 +85,7 @@ export interface DescribeDirectoryConfigsCommandOutput extends DescribeDirectory * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeDirectoryConfigsCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeEntitlementsCommand.ts b/clients/client-appstream/src/commands/DescribeEntitlementsCommand.ts index 2d499e35ff19c..5fc8bfcd4b566 100644 --- a/clients/client-appstream/src/commands/DescribeEntitlementsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeEntitlementsCommand.ts @@ -83,6 +83,7 @@ export interface DescribeEntitlementsCommandOutput extends DescribeEntitlementsR * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeEntitlementsCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeFleetsCommand.ts b/clients/client-appstream/src/commands/DescribeFleetsCommand.ts index dfef3db80edf6..a94c918947ec6 100644 --- a/clients/client-appstream/src/commands/DescribeFleetsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeFleetsCommand.ts @@ -119,6 +119,7 @@ export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __Met * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeFleetsCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeImageBuildersCommand.ts b/clients/client-appstream/src/commands/DescribeImageBuildersCommand.ts index dd5ee0d3ef5e4..2467bb562ebbc 100644 --- a/clients/client-appstream/src/commands/DescribeImageBuildersCommand.ts +++ b/clients/client-appstream/src/commands/DescribeImageBuildersCommand.ts @@ -112,6 +112,7 @@ export interface DescribeImageBuildersCommandOutput extends DescribeImageBuilder * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeImageBuildersCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeImagePermissionsCommand.ts b/clients/client-appstream/src/commands/DescribeImagePermissionsCommand.ts index ee9b31a98577c..0a0403b334d53 100644 --- a/clients/client-appstream/src/commands/DescribeImagePermissionsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeImagePermissionsCommand.ts @@ -73,6 +73,7 @@ export interface DescribeImagePermissionsCommandOutput extends DescribeImagePerm * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeImagePermissionsCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeImagesCommand.ts b/clients/client-appstream/src/commands/DescribeImagesCommand.ts index b799f5da76854..e4e65885f92ea 100644 --- a/clients/client-appstream/src/commands/DescribeImagesCommand.ts +++ b/clients/client-appstream/src/commands/DescribeImagesCommand.ts @@ -135,6 +135,7 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResult, __Met * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeImagesCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeSessionsCommand.ts b/clients/client-appstream/src/commands/DescribeSessionsCommand.ts index 787120597becc..22315cda121bc 100644 --- a/clients/client-appstream/src/commands/DescribeSessionsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeSessionsCommand.ts @@ -84,6 +84,7 @@ export interface DescribeSessionsCommandOutput extends DescribeSessionsResult, _ * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeSessionsCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeStacksCommand.ts b/clients/client-appstream/src/commands/DescribeStacksCommand.ts index 6ceabba1e3684..bbea7c4233283 100644 --- a/clients/client-appstream/src/commands/DescribeStacksCommand.ts +++ b/clients/client-appstream/src/commands/DescribeStacksCommand.ts @@ -114,6 +114,7 @@ export interface DescribeStacksCommandOutput extends DescribeStacksResult, __Met * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeStacksCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeThemeForStackCommand.ts b/clients/client-appstream/src/commands/DescribeThemeForStackCommand.ts index a8dc12c257403..110bf717a2d52 100644 --- a/clients/client-appstream/src/commands/DescribeThemeForStackCommand.ts +++ b/clients/client-appstream/src/commands/DescribeThemeForStackCommand.ts @@ -75,6 +75,7 @@ export interface DescribeThemeForStackCommandOutput extends DescribeThemeForStac * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeThemeForStackCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeUsageReportSubscriptionsCommand.ts b/clients/client-appstream/src/commands/DescribeUsageReportSubscriptionsCommand.ts index f14ca176b99af..34f0c1aac8964 100644 --- a/clients/client-appstream/src/commands/DescribeUsageReportSubscriptionsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeUsageReportSubscriptionsCommand.ts @@ -80,6 +80,7 @@ export interface DescribeUsageReportSubscriptionsCommandOutput * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeUsageReportSubscriptionsCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeUserStackAssociationsCommand.ts b/clients/client-appstream/src/commands/DescribeUserStackAssociationsCommand.ts index 35806f60c6c14..fff33ee0b21cd 100644 --- a/clients/client-appstream/src/commands/DescribeUserStackAssociationsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeUserStackAssociationsCommand.ts @@ -91,6 +91,7 @@ export interface DescribeUserStackAssociationsCommandOutput * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeUserStackAssociationsCommand extends $Command diff --git a/clients/client-appstream/src/commands/DescribeUsersCommand.ts b/clients/client-appstream/src/commands/DescribeUsersCommand.ts index 52c6ea11ca473..c5d6280d0a5aa 100644 --- a/clients/client-appstream/src/commands/DescribeUsersCommand.ts +++ b/clients/client-appstream/src/commands/DescribeUsersCommand.ts @@ -78,6 +78,7 @@ export interface DescribeUsersCommandOutput extends DescribeUsersResult, __Metad * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DescribeUsersCommand extends $Command diff --git a/clients/client-appstream/src/commands/DisableUserCommand.ts b/clients/client-appstream/src/commands/DisableUserCommand.ts index db4612bc7c1f8..c75bdea0a2ba6 100644 --- a/clients/client-appstream/src/commands/DisableUserCommand.ts +++ b/clients/client-appstream/src/commands/DisableUserCommand.ts @@ -57,6 +57,7 @@ export interface DisableUserCommandOutput extends DisableUserResult, __MetadataB * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DisableUserCommand extends $Command diff --git a/clients/client-appstream/src/commands/DisassociateAppBlockBuilderAppBlockCommand.ts b/clients/client-appstream/src/commands/DisassociateAppBlockBuilderAppBlockCommand.ts index 2454f342523da..1eada13613ca9 100644 --- a/clients/client-appstream/src/commands/DisassociateAppBlockBuilderAppBlockCommand.ts +++ b/clients/client-appstream/src/commands/DisassociateAppBlockBuilderAppBlockCommand.ts @@ -74,6 +74,7 @@ export interface DisassociateAppBlockBuilderAppBlockCommandOutput * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DisassociateAppBlockBuilderAppBlockCommand extends $Command diff --git a/clients/client-appstream/src/commands/DisassociateApplicationFleetCommand.ts b/clients/client-appstream/src/commands/DisassociateApplicationFleetCommand.ts index d6d59821391e6..1b5361bb2ba2d 100644 --- a/clients/client-appstream/src/commands/DisassociateApplicationFleetCommand.ts +++ b/clients/client-appstream/src/commands/DisassociateApplicationFleetCommand.ts @@ -68,6 +68,7 @@ export interface DisassociateApplicationFleetCommandOutput * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DisassociateApplicationFleetCommand extends $Command diff --git a/clients/client-appstream/src/commands/DisassociateApplicationFromEntitlementCommand.ts b/clients/client-appstream/src/commands/DisassociateApplicationFromEntitlementCommand.ts index 8bfdbf6b04072..00e953f712c3a 100644 --- a/clients/client-appstream/src/commands/DisassociateApplicationFromEntitlementCommand.ts +++ b/clients/client-appstream/src/commands/DisassociateApplicationFromEntitlementCommand.ts @@ -73,6 +73,7 @@ export interface DisassociateApplicationFromEntitlementCommandOutput * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DisassociateApplicationFromEntitlementCommand extends $Command diff --git a/clients/client-appstream/src/commands/DisassociateFleetCommand.ts b/clients/client-appstream/src/commands/DisassociateFleetCommand.ts index 8e8386dcba6db..e88caeb7a3fa2 100644 --- a/clients/client-appstream/src/commands/DisassociateFleetCommand.ts +++ b/clients/client-appstream/src/commands/DisassociateFleetCommand.ts @@ -66,6 +66,7 @@ export interface DisassociateFleetCommandOutput extends DisassociateFleetResult, * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class DisassociateFleetCommand extends $Command diff --git a/clients/client-appstream/src/commands/EnableUserCommand.ts b/clients/client-appstream/src/commands/EnableUserCommand.ts index 5ded07bdf7baf..478ed04ca74e9 100644 --- a/clients/client-appstream/src/commands/EnableUserCommand.ts +++ b/clients/client-appstream/src/commands/EnableUserCommand.ts @@ -60,6 +60,7 @@ export interface EnableUserCommandOutput extends EnableUserResult, __MetadataBea * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class EnableUserCommand extends $Command diff --git a/clients/client-appstream/src/commands/ExpireSessionCommand.ts b/clients/client-appstream/src/commands/ExpireSessionCommand.ts index 3b152d6b8b870..9f64627410562 100644 --- a/clients/client-appstream/src/commands/ExpireSessionCommand.ts +++ b/clients/client-appstream/src/commands/ExpireSessionCommand.ts @@ -53,6 +53,7 @@ export interface ExpireSessionCommandOutput extends ExpireSessionResult, __Metad * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class ExpireSessionCommand extends $Command diff --git a/clients/client-appstream/src/commands/ListAssociatedFleetsCommand.ts b/clients/client-appstream/src/commands/ListAssociatedFleetsCommand.ts index ea7cca57cabe2..dc8f5b59f01e0 100644 --- a/clients/client-appstream/src/commands/ListAssociatedFleetsCommand.ts +++ b/clients/client-appstream/src/commands/ListAssociatedFleetsCommand.ts @@ -59,6 +59,7 @@ export interface ListAssociatedFleetsCommandOutput extends ListAssociatedFleetsR * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class ListAssociatedFleetsCommand extends $Command diff --git a/clients/client-appstream/src/commands/ListAssociatedStacksCommand.ts b/clients/client-appstream/src/commands/ListAssociatedStacksCommand.ts index 476ac13ba94be..5a76cca0985b7 100644 --- a/clients/client-appstream/src/commands/ListAssociatedStacksCommand.ts +++ b/clients/client-appstream/src/commands/ListAssociatedStacksCommand.ts @@ -59,6 +59,7 @@ export interface ListAssociatedStacksCommandOutput extends ListAssociatedStacksR * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class ListAssociatedStacksCommand extends $Command diff --git a/clients/client-appstream/src/commands/ListEntitledApplicationsCommand.ts b/clients/client-appstream/src/commands/ListEntitledApplicationsCommand.ts index e438764501529..8138087e43b49 100644 --- a/clients/client-appstream/src/commands/ListEntitledApplicationsCommand.ts +++ b/clients/client-appstream/src/commands/ListEntitledApplicationsCommand.ts @@ -72,6 +72,7 @@ export interface ListEntitledApplicationsCommandOutput extends ListEntitledAppli * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class ListEntitledApplicationsCommand extends $Command diff --git a/clients/client-appstream/src/commands/ListTagsForResourceCommand.ts b/clients/client-appstream/src/commands/ListTagsForResourceCommand.ts index 64d311fa3ae7c..5ce5689220c3c 100644 --- a/clients/client-appstream/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-appstream/src/commands/ListTagsForResourceCommand.ts @@ -61,6 +61,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-appstream/src/commands/StartAppBlockBuilderCommand.ts b/clients/client-appstream/src/commands/StartAppBlockBuilderCommand.ts index d895295d1f9bb..b86c17c622d5e 100644 --- a/clients/client-appstream/src/commands/StartAppBlockBuilderCommand.ts +++ b/clients/client-appstream/src/commands/StartAppBlockBuilderCommand.ts @@ -116,6 +116,7 @@ export interface StartAppBlockBuilderCommandOutput extends StartAppBlockBuilderR * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class StartAppBlockBuilderCommand extends $Command diff --git a/clients/client-appstream/src/commands/StartFleetCommand.ts b/clients/client-appstream/src/commands/StartFleetCommand.ts index 362daf307b722..d2606e22a7f13 100644 --- a/clients/client-appstream/src/commands/StartFleetCommand.ts +++ b/clients/client-appstream/src/commands/StartFleetCommand.ts @@ -77,6 +77,7 @@ export interface StartFleetCommandOutput extends StartFleetResult, __MetadataBea * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class StartFleetCommand extends $Command diff --git a/clients/client-appstream/src/commands/StartImageBuilderCommand.ts b/clients/client-appstream/src/commands/StartImageBuilderCommand.ts index c6d40dd1ed42b..4657f3d5329cb 100644 --- a/clients/client-appstream/src/commands/StartImageBuilderCommand.ts +++ b/clients/client-appstream/src/commands/StartImageBuilderCommand.ts @@ -118,6 +118,7 @@ export interface StartImageBuilderCommandOutput extends StartImageBuilderResult, * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class StartImageBuilderCommand extends $Command diff --git a/clients/client-appstream/src/commands/StopAppBlockBuilderCommand.ts b/clients/client-appstream/src/commands/StopAppBlockBuilderCommand.ts index d48be68a5cc67..9a39c7a688faa 100644 --- a/clients/client-appstream/src/commands/StopAppBlockBuilderCommand.ts +++ b/clients/client-appstream/src/commands/StopAppBlockBuilderCommand.ts @@ -102,6 +102,7 @@ export interface StopAppBlockBuilderCommandOutput extends StopAppBlockBuilderRes * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class StopAppBlockBuilderCommand extends $Command diff --git a/clients/client-appstream/src/commands/StopFleetCommand.ts b/clients/client-appstream/src/commands/StopFleetCommand.ts index f48b1d2ff064e..864d9c261eba1 100644 --- a/clients/client-appstream/src/commands/StopFleetCommand.ts +++ b/clients/client-appstream/src/commands/StopFleetCommand.ts @@ -59,6 +59,7 @@ export interface StopFleetCommandOutput extends StopFleetResult, __MetadataBeare * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class StopFleetCommand extends $Command diff --git a/clients/client-appstream/src/commands/StopImageBuilderCommand.ts b/clients/client-appstream/src/commands/StopImageBuilderCommand.ts index c8386b78b929f..01574c46c66ee 100644 --- a/clients/client-appstream/src/commands/StopImageBuilderCommand.ts +++ b/clients/client-appstream/src/commands/StopImageBuilderCommand.ts @@ -111,6 +111,7 @@ export interface StopImageBuilderCommandOutput extends StopImageBuilderResult, _ * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class StopImageBuilderCommand extends $Command diff --git a/clients/client-appstream/src/commands/TagResourceCommand.ts b/clients/client-appstream/src/commands/TagResourceCommand.ts index c2e5719a3ecea..50e47afa9519c 100644 --- a/clients/client-appstream/src/commands/TagResourceCommand.ts +++ b/clients/client-appstream/src/commands/TagResourceCommand.ts @@ -70,6 +70,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-appstream/src/commands/UntagResourceCommand.ts b/clients/client-appstream/src/commands/UntagResourceCommand.ts index 1dbbddbe9a096..1707d0b05a9a8 100644 --- a/clients/client-appstream/src/commands/UntagResourceCommand.ts +++ b/clients/client-appstream/src/commands/UntagResourceCommand.ts @@ -61,6 +61,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-appstream/src/commands/UpdateAppBlockBuilderCommand.ts b/clients/client-appstream/src/commands/UpdateAppBlockBuilderCommand.ts index c3ee175cf7ead..3b099610ff201 100644 --- a/clients/client-appstream/src/commands/UpdateAppBlockBuilderCommand.ts +++ b/clients/client-appstream/src/commands/UpdateAppBlockBuilderCommand.ts @@ -148,6 +148,7 @@ export interface UpdateAppBlockBuilderCommandOutput extends UpdateAppBlockBuilde * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class UpdateAppBlockBuilderCommand extends $Command diff --git a/clients/client-appstream/src/commands/UpdateApplicationCommand.ts b/clients/client-appstream/src/commands/UpdateApplicationCommand.ts index 4f1ce953d9676..88196184b6e8f 100644 --- a/clients/client-appstream/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-appstream/src/commands/UpdateApplicationCommand.ts @@ -102,6 +102,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationResult, * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-appstream/src/commands/UpdateDirectoryConfigCommand.ts b/clients/client-appstream/src/commands/UpdateDirectoryConfigCommand.ts index 7f38db61c0c61..bb404da28ab6a 100644 --- a/clients/client-appstream/src/commands/UpdateDirectoryConfigCommand.ts +++ b/clients/client-appstream/src/commands/UpdateDirectoryConfigCommand.ts @@ -103,6 +103,7 @@ export interface UpdateDirectoryConfigCommandOutput extends UpdateDirectoryConfi * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class UpdateDirectoryConfigCommand extends $Command diff --git a/clients/client-appstream/src/commands/UpdateEntitlementCommand.ts b/clients/client-appstream/src/commands/UpdateEntitlementCommand.ts index fe9b55edce4b0..f0c0e87434425 100644 --- a/clients/client-appstream/src/commands/UpdateEntitlementCommand.ts +++ b/clients/client-appstream/src/commands/UpdateEntitlementCommand.ts @@ -89,6 +89,7 @@ export interface UpdateEntitlementCommandOutput extends UpdateEntitlementResult, * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class UpdateEntitlementCommand extends $Command diff --git a/clients/client-appstream/src/commands/UpdateFleetCommand.ts b/clients/client-appstream/src/commands/UpdateFleetCommand.ts index adba5de51197d..7667135b0325f 100644 --- a/clients/client-appstream/src/commands/UpdateFleetCommand.ts +++ b/clients/client-appstream/src/commands/UpdateFleetCommand.ts @@ -205,6 +205,7 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResult, __MetadataB * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class UpdateFleetCommand extends $Command diff --git a/clients/client-appstream/src/commands/UpdateImagePermissionsCommand.ts b/clients/client-appstream/src/commands/UpdateImagePermissionsCommand.ts index 0a23b48a462b7..beec57f2f4124 100644 --- a/clients/client-appstream/src/commands/UpdateImagePermissionsCommand.ts +++ b/clients/client-appstream/src/commands/UpdateImagePermissionsCommand.ts @@ -67,6 +67,7 @@ export interface UpdateImagePermissionsCommandOutput extends UpdateImagePermissi * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class UpdateImagePermissionsCommand extends $Command diff --git a/clients/client-appstream/src/commands/UpdateStackCommand.ts b/clients/client-appstream/src/commands/UpdateStackCommand.ts index 44b21d0ae0f74..d6d76c2b45210 100644 --- a/clients/client-appstream/src/commands/UpdateStackCommand.ts +++ b/clients/client-appstream/src/commands/UpdateStackCommand.ts @@ -175,6 +175,7 @@ export interface UpdateStackCommandOutput extends UpdateStackResult, __MetadataB * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class UpdateStackCommand extends $Command diff --git a/clients/client-appstream/src/commands/UpdateThemeForStackCommand.ts b/clients/client-appstream/src/commands/UpdateThemeForStackCommand.ts index 7733a68d77c24..d6c26d71ae519 100644 --- a/clients/client-appstream/src/commands/UpdateThemeForStackCommand.ts +++ b/clients/client-appstream/src/commands/UpdateThemeForStackCommand.ts @@ -107,6 +107,7 @@ export interface UpdateThemeForStackCommandOutput extends UpdateThemeForStackRes * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* + * * @public */ export class UpdateThemeForStackCommand extends $Command diff --git a/clients/client-appsync/src/commands/AssociateApiCommand.ts b/clients/client-appsync/src/commands/AssociateApiCommand.ts index db51cc9a5131e..dd5c2ede09140 100644 --- a/clients/client-appsync/src/commands/AssociateApiCommand.ts +++ b/clients/client-appsync/src/commands/AssociateApiCommand.ts @@ -75,6 +75,7 @@ export interface AssociateApiCommandOutput extends AssociateApiResponse, __Metad * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class AssociateApiCommand extends $Command diff --git a/clients/client-appsync/src/commands/AssociateMergedGraphqlApiCommand.ts b/clients/client-appsync/src/commands/AssociateMergedGraphqlApiCommand.ts index c76637763eda6..88f1a7182592b 100644 --- a/clients/client-appsync/src/commands/AssociateMergedGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/AssociateMergedGraphqlApiCommand.ts @@ -96,6 +96,7 @@ export interface AssociateMergedGraphqlApiCommandOutput extends AssociateMergedG * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class AssociateMergedGraphqlApiCommand extends $Command diff --git a/clients/client-appsync/src/commands/AssociateSourceGraphqlApiCommand.ts b/clients/client-appsync/src/commands/AssociateSourceGraphqlApiCommand.ts index e6a11f5a6745d..716976a448341 100644 --- a/clients/client-appsync/src/commands/AssociateSourceGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/AssociateSourceGraphqlApiCommand.ts @@ -96,6 +96,7 @@ export interface AssociateSourceGraphqlApiCommandOutput extends AssociateSourceG * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class AssociateSourceGraphqlApiCommand extends $Command diff --git a/clients/client-appsync/src/commands/CreateApiCacheCommand.ts b/clients/client-appsync/src/commands/CreateApiCacheCommand.ts index 6095e5e9c027d..fa8f8fd2a1c4a 100644 --- a/clients/client-appsync/src/commands/CreateApiCacheCommand.ts +++ b/clients/client-appsync/src/commands/CreateApiCacheCommand.ts @@ -87,6 +87,7 @@ export interface CreateApiCacheCommandOutput extends CreateApiCacheResponse, __M * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class CreateApiCacheCommand extends $Command diff --git a/clients/client-appsync/src/commands/CreateApiCommand.ts b/clients/client-appsync/src/commands/CreateApiCommand.ts index 9fddab5035ec8..4720071a70c63 100644 --- a/clients/client-appsync/src/commands/CreateApiCommand.ts +++ b/clients/client-appsync/src/commands/CreateApiCommand.ts @@ -176,6 +176,7 @@ export interface CreateApiCommandOutput extends CreateApiResponse, __MetadataBea * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class CreateApiCommand extends $Command diff --git a/clients/client-appsync/src/commands/CreateApiKeyCommand.ts b/clients/client-appsync/src/commands/CreateApiKeyCommand.ts index dd35295881aeb..d29bf370f09c3 100644 --- a/clients/client-appsync/src/commands/CreateApiKeyCommand.ts +++ b/clients/client-appsync/src/commands/CreateApiKeyCommand.ts @@ -86,6 +86,7 @@ export interface CreateApiKeyCommandOutput extends CreateApiKeyResponse, __Metad * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class CreateApiKeyCommand extends $Command diff --git a/clients/client-appsync/src/commands/CreateChannelNamespaceCommand.ts b/clients/client-appsync/src/commands/CreateChannelNamespaceCommand.ts index e472dd2da0bc1..1cb420fa223ba 100644 --- a/clients/client-appsync/src/commands/CreateChannelNamespaceCommand.ts +++ b/clients/client-appsync/src/commands/CreateChannelNamespaceCommand.ts @@ -116,6 +116,7 @@ export interface CreateChannelNamespaceCommandOutput extends CreateChannelNamesp * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class CreateChannelNamespaceCommand extends $Command diff --git a/clients/client-appsync/src/commands/CreateDataSourceCommand.ts b/clients/client-appsync/src/commands/CreateDataSourceCommand.ts index 58dca7b8d710f..d174cd69d21e4 100644 --- a/clients/client-appsync/src/commands/CreateDataSourceCommand.ts +++ b/clients/client-appsync/src/commands/CreateDataSourceCommand.ts @@ -175,6 +175,7 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse, * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class CreateDataSourceCommand extends $Command diff --git a/clients/client-appsync/src/commands/CreateDomainNameCommand.ts b/clients/client-appsync/src/commands/CreateDomainNameCommand.ts index 14d47862cf59f..e3dfde5ca0171 100644 --- a/clients/client-appsync/src/commands/CreateDomainNameCommand.ts +++ b/clients/client-appsync/src/commands/CreateDomainNameCommand.ts @@ -80,6 +80,7 @@ export interface CreateDomainNameCommandOutput extends CreateDomainNameResponse, * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class CreateDomainNameCommand extends $Command diff --git a/clients/client-appsync/src/commands/CreateFunctionCommand.ts b/clients/client-appsync/src/commands/CreateFunctionCommand.ts index b8c453df6a38e..9e0a8359ecf7f 100644 --- a/clients/client-appsync/src/commands/CreateFunctionCommand.ts +++ b/clients/client-appsync/src/commands/CreateFunctionCommand.ts @@ -116,6 +116,7 @@ export interface CreateFunctionCommandOutput extends CreateFunctionResponse, __M * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class CreateFunctionCommand extends $Command diff --git a/clients/client-appsync/src/commands/CreateGraphqlApiCommand.ts b/clients/client-appsync/src/commands/CreateGraphqlApiCommand.ts index 3c6426e19f486..9223f500e3678 100644 --- a/clients/client-appsync/src/commands/CreateGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/CreateGraphqlApiCommand.ts @@ -207,6 +207,7 @@ export interface CreateGraphqlApiCommandOutput extends CreateGraphqlApiResponse, * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class CreateGraphqlApiCommand extends $Command diff --git a/clients/client-appsync/src/commands/CreateResolverCommand.ts b/clients/client-appsync/src/commands/CreateResolverCommand.ts index 45b92ceb5d9fb..0d51ddea72746 100644 --- a/clients/client-appsync/src/commands/CreateResolverCommand.ts +++ b/clients/client-appsync/src/commands/CreateResolverCommand.ts @@ -139,6 +139,7 @@ export interface CreateResolverCommandOutput extends CreateResolverResponse, __M * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class CreateResolverCommand extends $Command diff --git a/clients/client-appsync/src/commands/CreateTypeCommand.ts b/clients/client-appsync/src/commands/CreateTypeCommand.ts index a5b600f4787fc..7ff9760aa1708 100644 --- a/clients/client-appsync/src/commands/CreateTypeCommand.ts +++ b/clients/client-appsync/src/commands/CreateTypeCommand.ts @@ -81,6 +81,7 @@ export interface CreateTypeCommandOutput extends CreateTypeResponse, __MetadataB * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class CreateTypeCommand extends $Command diff --git a/clients/client-appsync/src/commands/DeleteApiCacheCommand.ts b/clients/client-appsync/src/commands/DeleteApiCacheCommand.ts index 7ab99b69bc908..e530bb620a59c 100644 --- a/clients/client-appsync/src/commands/DeleteApiCacheCommand.ts +++ b/clients/client-appsync/src/commands/DeleteApiCacheCommand.ts @@ -71,6 +71,7 @@ export interface DeleteApiCacheCommandOutput extends DeleteApiCacheResponse, __M * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class DeleteApiCacheCommand extends $Command diff --git a/clients/client-appsync/src/commands/DeleteApiCommand.ts b/clients/client-appsync/src/commands/DeleteApiCommand.ts index c688ca28d512b..be6d8c5672a75 100644 --- a/clients/client-appsync/src/commands/DeleteApiCommand.ts +++ b/clients/client-appsync/src/commands/DeleteApiCommand.ts @@ -74,6 +74,7 @@ export interface DeleteApiCommandOutput extends DeleteApiResponse, __MetadataBea * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class DeleteApiCommand extends $Command diff --git a/clients/client-appsync/src/commands/DeleteApiKeyCommand.ts b/clients/client-appsync/src/commands/DeleteApiKeyCommand.ts index 31e0766df86ee..fed86af4c2f79 100644 --- a/clients/client-appsync/src/commands/DeleteApiKeyCommand.ts +++ b/clients/client-appsync/src/commands/DeleteApiKeyCommand.ts @@ -68,6 +68,7 @@ export interface DeleteApiKeyCommandOutput extends DeleteApiKeyResponse, __Metad * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class DeleteApiKeyCommand extends $Command diff --git a/clients/client-appsync/src/commands/DeleteChannelNamespaceCommand.ts b/clients/client-appsync/src/commands/DeleteChannelNamespaceCommand.ts index c32ed0769947c..2b5fab4b43023 100644 --- a/clients/client-appsync/src/commands/DeleteChannelNamespaceCommand.ts +++ b/clients/client-appsync/src/commands/DeleteChannelNamespaceCommand.ts @@ -75,6 +75,7 @@ export interface DeleteChannelNamespaceCommandOutput extends DeleteChannelNamesp * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class DeleteChannelNamespaceCommand extends $Command diff --git a/clients/client-appsync/src/commands/DeleteDataSourceCommand.ts b/clients/client-appsync/src/commands/DeleteDataSourceCommand.ts index cd1e7c047304b..7b4d05d76427c 100644 --- a/clients/client-appsync/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-appsync/src/commands/DeleteDataSourceCommand.ts @@ -72,6 +72,7 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceResponse, * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class DeleteDataSourceCommand extends $Command diff --git a/clients/client-appsync/src/commands/DeleteDomainNameCommand.ts b/clients/client-appsync/src/commands/DeleteDomainNameCommand.ts index 15f0ec61c1dba..550533f43cb1f 100644 --- a/clients/client-appsync/src/commands/DeleteDomainNameCommand.ts +++ b/clients/client-appsync/src/commands/DeleteDomainNameCommand.ts @@ -71,6 +71,7 @@ export interface DeleteDomainNameCommandOutput extends DeleteDomainNameResponse, * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class DeleteDomainNameCommand extends $Command diff --git a/clients/client-appsync/src/commands/DeleteFunctionCommand.ts b/clients/client-appsync/src/commands/DeleteFunctionCommand.ts index 6352a5eb036ee..17a90a28b170e 100644 --- a/clients/client-appsync/src/commands/DeleteFunctionCommand.ts +++ b/clients/client-appsync/src/commands/DeleteFunctionCommand.ts @@ -72,6 +72,7 @@ export interface DeleteFunctionCommandOutput extends DeleteFunctionResponse, __M * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class DeleteFunctionCommand extends $Command diff --git a/clients/client-appsync/src/commands/DeleteGraphqlApiCommand.ts b/clients/client-appsync/src/commands/DeleteGraphqlApiCommand.ts index 8a48a08eda6d3..114d3d6697f2e 100644 --- a/clients/client-appsync/src/commands/DeleteGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/DeleteGraphqlApiCommand.ts @@ -74,6 +74,7 @@ export interface DeleteGraphqlApiCommandOutput extends DeleteGraphqlApiResponse, * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class DeleteGraphqlApiCommand extends $Command diff --git a/clients/client-appsync/src/commands/DeleteResolverCommand.ts b/clients/client-appsync/src/commands/DeleteResolverCommand.ts index 1205300de2dce..69b5494e6cf0c 100644 --- a/clients/client-appsync/src/commands/DeleteResolverCommand.ts +++ b/clients/client-appsync/src/commands/DeleteResolverCommand.ts @@ -73,6 +73,7 @@ export interface DeleteResolverCommandOutput extends DeleteResolverResponse, __M * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class DeleteResolverCommand extends $Command diff --git a/clients/client-appsync/src/commands/DeleteTypeCommand.ts b/clients/client-appsync/src/commands/DeleteTypeCommand.ts index ef8c30c46d410..c62951307d0ca 100644 --- a/clients/client-appsync/src/commands/DeleteTypeCommand.ts +++ b/clients/client-appsync/src/commands/DeleteTypeCommand.ts @@ -72,6 +72,7 @@ export interface DeleteTypeCommandOutput extends DeleteTypeResponse, __MetadataB * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class DeleteTypeCommand extends $Command diff --git a/clients/client-appsync/src/commands/DisassociateApiCommand.ts b/clients/client-appsync/src/commands/DisassociateApiCommand.ts index e87c81fddf724..6269d8fb20cf1 100644 --- a/clients/client-appsync/src/commands/DisassociateApiCommand.ts +++ b/clients/client-appsync/src/commands/DisassociateApiCommand.ts @@ -71,6 +71,7 @@ export interface DisassociateApiCommandOutput extends DisassociateApiResponse, _ * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class DisassociateApiCommand extends $Command diff --git a/clients/client-appsync/src/commands/DisassociateMergedGraphqlApiCommand.ts b/clients/client-appsync/src/commands/DisassociateMergedGraphqlApiCommand.ts index 5d3c8354f1d9c..e38543fe1b9d2 100644 --- a/clients/client-appsync/src/commands/DisassociateMergedGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/DisassociateMergedGraphqlApiCommand.ts @@ -80,6 +80,7 @@ export interface DisassociateMergedGraphqlApiCommandOutput * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class DisassociateMergedGraphqlApiCommand extends $Command diff --git a/clients/client-appsync/src/commands/DisassociateSourceGraphqlApiCommand.ts b/clients/client-appsync/src/commands/DisassociateSourceGraphqlApiCommand.ts index b70d63a19dc1f..d5740a2a816f0 100644 --- a/clients/client-appsync/src/commands/DisassociateSourceGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/DisassociateSourceGraphqlApiCommand.ts @@ -80,6 +80,7 @@ export interface DisassociateSourceGraphqlApiCommandOutput * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class DisassociateSourceGraphqlApiCommand extends $Command diff --git a/clients/client-appsync/src/commands/EvaluateCodeCommand.ts b/clients/client-appsync/src/commands/EvaluateCodeCommand.ts index 84fc1d20ab0ec..31abc4f0022db 100644 --- a/clients/client-appsync/src/commands/EvaluateCodeCommand.ts +++ b/clients/client-appsync/src/commands/EvaluateCodeCommand.ts @@ -95,6 +95,7 @@ export interface EvaluateCodeCommandOutput extends EvaluateCodeResponse, __Metad * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class EvaluateCodeCommand extends $Command diff --git a/clients/client-appsync/src/commands/EvaluateMappingTemplateCommand.ts b/clients/client-appsync/src/commands/EvaluateMappingTemplateCommand.ts index f5721368b997f..37e2688347a6c 100644 --- a/clients/client-appsync/src/commands/EvaluateMappingTemplateCommand.ts +++ b/clients/client-appsync/src/commands/EvaluateMappingTemplateCommand.ts @@ -80,6 +80,7 @@ export interface EvaluateMappingTemplateCommandOutput extends EvaluateMappingTem * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class EvaluateMappingTemplateCommand extends $Command diff --git a/clients/client-appsync/src/commands/FlushApiCacheCommand.ts b/clients/client-appsync/src/commands/FlushApiCacheCommand.ts index e36edeefcefee..bc67e084ccda4 100644 --- a/clients/client-appsync/src/commands/FlushApiCacheCommand.ts +++ b/clients/client-appsync/src/commands/FlushApiCacheCommand.ts @@ -71,6 +71,7 @@ export interface FlushApiCacheCommandOutput extends FlushApiCacheResponse, __Met * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class FlushApiCacheCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetApiAssociationCommand.ts b/clients/client-appsync/src/commands/GetApiAssociationCommand.ts index f4dda991c3b94..3def4e134804a 100644 --- a/clients/client-appsync/src/commands/GetApiAssociationCommand.ts +++ b/clients/client-appsync/src/commands/GetApiAssociationCommand.ts @@ -74,6 +74,7 @@ export interface GetApiAssociationCommandOutput extends GetApiAssociationRespons * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetApiAssociationCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetApiCacheCommand.ts b/clients/client-appsync/src/commands/GetApiCacheCommand.ts index 06742397b5edc..628bbee17c884 100644 --- a/clients/client-appsync/src/commands/GetApiCacheCommand.ts +++ b/clients/client-appsync/src/commands/GetApiCacheCommand.ts @@ -81,6 +81,7 @@ export interface GetApiCacheCommandOutput extends GetApiCacheResponse, __Metadat * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetApiCacheCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetApiCommand.ts b/clients/client-appsync/src/commands/GetApiCommand.ts index bb089337d101c..c74f7d3fb2f6b 100644 --- a/clients/client-appsync/src/commands/GetApiCommand.ts +++ b/clients/client-appsync/src/commands/GetApiCommand.ts @@ -128,6 +128,7 @@ export interface GetApiCommandOutput extends GetApiResponse, __MetadataBearer {} * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetApiCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetChannelNamespaceCommand.ts b/clients/client-appsync/src/commands/GetChannelNamespaceCommand.ts index 773a69437f8eb..55461bff49032 100644 --- a/clients/client-appsync/src/commands/GetChannelNamespaceCommand.ts +++ b/clients/client-appsync/src/commands/GetChannelNamespaceCommand.ts @@ -93,6 +93,7 @@ export interface GetChannelNamespaceCommandOutput extends GetChannelNamespaceRes * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetChannelNamespaceCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetDataSourceCommand.ts b/clients/client-appsync/src/commands/GetDataSourceCommand.ts index 7080dc6e32eaf..c2d05e686b149 100644 --- a/clients/client-appsync/src/commands/GetDataSourceCommand.ts +++ b/clients/client-appsync/src/commands/GetDataSourceCommand.ts @@ -126,6 +126,7 @@ export interface GetDataSourceCommandOutput extends GetDataSourceResponse, __Met * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetDataSourceCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetDataSourceIntrospectionCommand.ts b/clients/client-appsync/src/commands/GetDataSourceIntrospectionCommand.ts index 4e170458875ab..15647d17a7be8 100644 --- a/clients/client-appsync/src/commands/GetDataSourceIntrospectionCommand.ts +++ b/clients/client-appsync/src/commands/GetDataSourceIntrospectionCommand.ts @@ -117,6 +117,7 @@ export interface GetDataSourceIntrospectionCommandOutput extends GetDataSourceIn * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetDataSourceIntrospectionCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetDomainNameCommand.ts b/clients/client-appsync/src/commands/GetDomainNameCommand.ts index b0291477c010b..5a86d7b7fef23 100644 --- a/clients/client-appsync/src/commands/GetDomainNameCommand.ts +++ b/clients/client-appsync/src/commands/GetDomainNameCommand.ts @@ -79,6 +79,7 @@ export interface GetDomainNameCommandOutput extends GetDomainNameResponse, __Met * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetDomainNameCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetFunctionCommand.ts b/clients/client-appsync/src/commands/GetFunctionCommand.ts index 6688b1e59f547..a9e2ae2246832 100644 --- a/clients/client-appsync/src/commands/GetFunctionCommand.ts +++ b/clients/client-appsync/src/commands/GetFunctionCommand.ts @@ -89,6 +89,7 @@ export interface GetFunctionCommandOutput extends GetFunctionResponse, __Metadat * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetFunctionCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetGraphqlApiCommand.ts b/clients/client-appsync/src/commands/GetGraphqlApiCommand.ts index 801a0650d6ed1..bc2a5e8e65264 100644 --- a/clients/client-appsync/src/commands/GetGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/GetGraphqlApiCommand.ts @@ -144,6 +144,7 @@ export interface GetGraphqlApiCommandOutput extends GetGraphqlApiResponse, __Met * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetGraphqlApiCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetGraphqlApiEnvironmentVariablesCommand.ts b/clients/client-appsync/src/commands/GetGraphqlApiEnvironmentVariablesCommand.ts index b3ad14fb87944..bbbc2b998e687 100644 --- a/clients/client-appsync/src/commands/GetGraphqlApiEnvironmentVariablesCommand.ts +++ b/clients/client-appsync/src/commands/GetGraphqlApiEnvironmentVariablesCommand.ts @@ -83,6 +83,7 @@ export interface GetGraphqlApiEnvironmentVariablesCommandOutput * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetGraphqlApiEnvironmentVariablesCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetIntrospectionSchemaCommand.ts b/clients/client-appsync/src/commands/GetIntrospectionSchemaCommand.ts index e1eaa8d706852..86e3ae9434f6e 100644 --- a/clients/client-appsync/src/commands/GetIntrospectionSchemaCommand.ts +++ b/clients/client-appsync/src/commands/GetIntrospectionSchemaCommand.ts @@ -80,6 +80,7 @@ export interface GetIntrospectionSchemaCommandOutput * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetIntrospectionSchemaCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetResolverCommand.ts b/clients/client-appsync/src/commands/GetResolverCommand.ts index face2bcedef36..34362a7c59a74 100644 --- a/clients/client-appsync/src/commands/GetResolverCommand.ts +++ b/clients/client-appsync/src/commands/GetResolverCommand.ts @@ -101,6 +101,7 @@ export interface GetResolverCommandOutput extends GetResolverResponse, __Metadat * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetResolverCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetSchemaCreationStatusCommand.ts b/clients/client-appsync/src/commands/GetSchemaCreationStatusCommand.ts index bbfb2c97233d5..6eb8080a6c2d2 100644 --- a/clients/client-appsync/src/commands/GetSchemaCreationStatusCommand.ts +++ b/clients/client-appsync/src/commands/GetSchemaCreationStatusCommand.ts @@ -70,6 +70,7 @@ export interface GetSchemaCreationStatusCommandOutput extends GetSchemaCreationS * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetSchemaCreationStatusCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetSourceApiAssociationCommand.ts b/clients/client-appsync/src/commands/GetSourceApiAssociationCommand.ts index 5643bd9f2e81b..6a4df1b917afb 100644 --- a/clients/client-appsync/src/commands/GetSourceApiAssociationCommand.ts +++ b/clients/client-appsync/src/commands/GetSourceApiAssociationCommand.ts @@ -84,6 +84,7 @@ export interface GetSourceApiAssociationCommandOutput extends GetSourceApiAssoci * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetSourceApiAssociationCommand extends $Command diff --git a/clients/client-appsync/src/commands/GetTypeCommand.ts b/clients/client-appsync/src/commands/GetTypeCommand.ts index d05af52a00bb2..5592aa76733b5 100644 --- a/clients/client-appsync/src/commands/GetTypeCommand.ts +++ b/clients/client-appsync/src/commands/GetTypeCommand.ts @@ -81,6 +81,7 @@ export interface GetTypeCommandOutput extends GetTypeResponse, __MetadataBearer * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class GetTypeCommand extends $Command diff --git a/clients/client-appsync/src/commands/ListApiKeysCommand.ts b/clients/client-appsync/src/commands/ListApiKeysCommand.ts index 4a738f3a7566c..cceac134fde9e 100644 --- a/clients/client-appsync/src/commands/ListApiKeysCommand.ts +++ b/clients/client-appsync/src/commands/ListApiKeysCommand.ts @@ -85,6 +85,7 @@ export interface ListApiKeysCommandOutput extends ListApiKeysResponse, __Metadat * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class ListApiKeysCommand extends $Command diff --git a/clients/client-appsync/src/commands/ListApisCommand.ts b/clients/client-appsync/src/commands/ListApisCommand.ts index dcf63a0ee8e00..f36b8ad33a3dd 100644 --- a/clients/client-appsync/src/commands/ListApisCommand.ts +++ b/clients/client-appsync/src/commands/ListApisCommand.ts @@ -128,6 +128,7 @@ export interface ListApisCommandOutput extends ListApisResponse, __MetadataBeare * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class ListApisCommand extends $Command diff --git a/clients/client-appsync/src/commands/ListChannelNamespacesCommand.ts b/clients/client-appsync/src/commands/ListChannelNamespacesCommand.ts index 093fca188b7b1..1a04838bbd6ad 100644 --- a/clients/client-appsync/src/commands/ListChannelNamespacesCommand.ts +++ b/clients/client-appsync/src/commands/ListChannelNamespacesCommand.ts @@ -97,6 +97,7 @@ export interface ListChannelNamespacesCommandOutput extends ListChannelNamespace * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class ListChannelNamespacesCommand extends $Command diff --git a/clients/client-appsync/src/commands/ListDataSourcesCommand.ts b/clients/client-appsync/src/commands/ListDataSourcesCommand.ts index 78b5bbd5871c2..f21ebbdf1c5c0 100644 --- a/clients/client-appsync/src/commands/ListDataSourcesCommand.ts +++ b/clients/client-appsync/src/commands/ListDataSourcesCommand.ts @@ -126,6 +126,7 @@ export interface ListDataSourcesCommandOutput extends ListDataSourcesResponse, _ * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class ListDataSourcesCommand extends $Command diff --git a/clients/client-appsync/src/commands/ListDomainNamesCommand.ts b/clients/client-appsync/src/commands/ListDomainNamesCommand.ts index d17352adafc17..17d7db86b86ee 100644 --- a/clients/client-appsync/src/commands/ListDomainNamesCommand.ts +++ b/clients/client-appsync/src/commands/ListDomainNamesCommand.ts @@ -79,6 +79,7 @@ export interface ListDomainNamesCommandOutput extends ListDomainNamesResponse, _ * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class ListDomainNamesCommand extends $Command diff --git a/clients/client-appsync/src/commands/ListFunctionsCommand.ts b/clients/client-appsync/src/commands/ListFunctionsCommand.ts index 72dfd7177749d..1567baed01653 100644 --- a/clients/client-appsync/src/commands/ListFunctionsCommand.ts +++ b/clients/client-appsync/src/commands/ListFunctionsCommand.ts @@ -96,6 +96,7 @@ export interface ListFunctionsCommandOutput extends ListFunctionsResponse, __Met * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class ListFunctionsCommand extends $Command diff --git a/clients/client-appsync/src/commands/ListGraphqlApisCommand.ts b/clients/client-appsync/src/commands/ListGraphqlApisCommand.ts index 343f6b9e000dd..3852909142dd6 100644 --- a/clients/client-appsync/src/commands/ListGraphqlApisCommand.ts +++ b/clients/client-appsync/src/commands/ListGraphqlApisCommand.ts @@ -143,6 +143,7 @@ export interface ListGraphqlApisCommandOutput extends ListGraphqlApisResponse, _ * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class ListGraphqlApisCommand extends $Command diff --git a/clients/client-appsync/src/commands/ListResolversByFunctionCommand.ts b/clients/client-appsync/src/commands/ListResolversByFunctionCommand.ts index 2f74993f5c488..71c25fac6b610 100644 --- a/clients/client-appsync/src/commands/ListResolversByFunctionCommand.ts +++ b/clients/client-appsync/src/commands/ListResolversByFunctionCommand.ts @@ -108,6 +108,7 @@ export interface ListResolversByFunctionCommandOutput extends ListResolversByFun * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class ListResolversByFunctionCommand extends $Command diff --git a/clients/client-appsync/src/commands/ListResolversCommand.ts b/clients/client-appsync/src/commands/ListResolversCommand.ts index 2244c71f1b905..4b79623d6bcfc 100644 --- a/clients/client-appsync/src/commands/ListResolversCommand.ts +++ b/clients/client-appsync/src/commands/ListResolversCommand.ts @@ -108,6 +108,7 @@ export interface ListResolversCommandOutput extends ListResolversResponse, __Met * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class ListResolversCommand extends $Command diff --git a/clients/client-appsync/src/commands/ListSourceApiAssociationsCommand.ts b/clients/client-appsync/src/commands/ListSourceApiAssociationsCommand.ts index 93f57cca28da8..d2f8ce7b42a37 100644 --- a/clients/client-appsync/src/commands/ListSourceApiAssociationsCommand.ts +++ b/clients/client-appsync/src/commands/ListSourceApiAssociationsCommand.ts @@ -82,6 +82,7 @@ export interface ListSourceApiAssociationsCommandOutput extends ListSourceApiAss * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class ListSourceApiAssociationsCommand extends $Command diff --git a/clients/client-appsync/src/commands/ListTagsForResourceCommand.ts b/clients/client-appsync/src/commands/ListTagsForResourceCommand.ts index 66316e8815af6..068eaf7de3cc0 100644 --- a/clients/client-appsync/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-appsync/src/commands/ListTagsForResourceCommand.ts @@ -77,6 +77,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-appsync/src/commands/ListTypesByAssociationCommand.ts b/clients/client-appsync/src/commands/ListTypesByAssociationCommand.ts index 7bbf297b816b1..0f315421bc5e3 100644 --- a/clients/client-appsync/src/commands/ListTypesByAssociationCommand.ts +++ b/clients/client-appsync/src/commands/ListTypesByAssociationCommand.ts @@ -86,6 +86,7 @@ export interface ListTypesByAssociationCommandOutput extends ListTypesByAssociat * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class ListTypesByAssociationCommand extends $Command diff --git a/clients/client-appsync/src/commands/ListTypesCommand.ts b/clients/client-appsync/src/commands/ListTypesCommand.ts index 1ad317a889e57..ca56f93da1366 100644 --- a/clients/client-appsync/src/commands/ListTypesCommand.ts +++ b/clients/client-appsync/src/commands/ListTypesCommand.ts @@ -85,6 +85,7 @@ export interface ListTypesCommandOutput extends ListTypesResponse, __MetadataBea * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class ListTypesCommand extends $Command diff --git a/clients/client-appsync/src/commands/PutGraphqlApiEnvironmentVariablesCommand.ts b/clients/client-appsync/src/commands/PutGraphqlApiEnvironmentVariablesCommand.ts index e871825602087..e44a58230a53b 100644 --- a/clients/client-appsync/src/commands/PutGraphqlApiEnvironmentVariablesCommand.ts +++ b/clients/client-appsync/src/commands/PutGraphqlApiEnvironmentVariablesCommand.ts @@ -136,6 +136,7 @@ export interface PutGraphqlApiEnvironmentVariablesCommandOutput * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class PutGraphqlApiEnvironmentVariablesCommand extends $Command diff --git a/clients/client-appsync/src/commands/StartDataSourceIntrospectionCommand.ts b/clients/client-appsync/src/commands/StartDataSourceIntrospectionCommand.ts index 6befa1bc4a969..edae245edbd90 100644 --- a/clients/client-appsync/src/commands/StartDataSourceIntrospectionCommand.ts +++ b/clients/client-appsync/src/commands/StartDataSourceIntrospectionCommand.ts @@ -81,6 +81,7 @@ export interface StartDataSourceIntrospectionCommandOutput * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class StartDataSourceIntrospectionCommand extends $Command diff --git a/clients/client-appsync/src/commands/StartSchemaCreationCommand.ts b/clients/client-appsync/src/commands/StartSchemaCreationCommand.ts index 0cb04aeeb9dea..ae85094b3adad 100644 --- a/clients/client-appsync/src/commands/StartSchemaCreationCommand.ts +++ b/clients/client-appsync/src/commands/StartSchemaCreationCommand.ts @@ -76,6 +76,7 @@ export interface StartSchemaCreationCommandOutput extends StartSchemaCreationRes * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class StartSchemaCreationCommand extends $Command diff --git a/clients/client-appsync/src/commands/StartSchemaMergeCommand.ts b/clients/client-appsync/src/commands/StartSchemaMergeCommand.ts index 3cbcb3c160c93..b40ca6c19bf3d 100644 --- a/clients/client-appsync/src/commands/StartSchemaMergeCommand.ts +++ b/clients/client-appsync/src/commands/StartSchemaMergeCommand.ts @@ -75,6 +75,7 @@ export interface StartSchemaMergeCommandOutput extends StartSchemaMergeResponse, * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class StartSchemaMergeCommand extends $Command diff --git a/clients/client-appsync/src/commands/TagResourceCommand.ts b/clients/client-appsync/src/commands/TagResourceCommand.ts index d8cf914c10d3f..eef010ac1dcc7 100644 --- a/clients/client-appsync/src/commands/TagResourceCommand.ts +++ b/clients/client-appsync/src/commands/TagResourceCommand.ts @@ -76,6 +76,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-appsync/src/commands/UntagResourceCommand.ts b/clients/client-appsync/src/commands/UntagResourceCommand.ts index 6bf47848c8d17..b03db10676939 100644 --- a/clients/client-appsync/src/commands/UntagResourceCommand.ts +++ b/clients/client-appsync/src/commands/UntagResourceCommand.ts @@ -76,6 +76,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-appsync/src/commands/UpdateApiCacheCommand.ts b/clients/client-appsync/src/commands/UpdateApiCacheCommand.ts index 60e17f0aa8933..96732bad0ee6b 100644 --- a/clients/client-appsync/src/commands/UpdateApiCacheCommand.ts +++ b/clients/client-appsync/src/commands/UpdateApiCacheCommand.ts @@ -85,6 +85,7 @@ export interface UpdateApiCacheCommandOutput extends UpdateApiCacheResponse, __M * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class UpdateApiCacheCommand extends $Command diff --git a/clients/client-appsync/src/commands/UpdateApiCommand.ts b/clients/client-appsync/src/commands/UpdateApiCommand.ts index 753763226eed4..58f4087e1980e 100644 --- a/clients/client-appsync/src/commands/UpdateApiCommand.ts +++ b/clients/client-appsync/src/commands/UpdateApiCommand.ts @@ -176,6 +176,7 @@ export interface UpdateApiCommandOutput extends UpdateApiResponse, __MetadataBea * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class UpdateApiCommand extends $Command diff --git a/clients/client-appsync/src/commands/UpdateApiKeyCommand.ts b/clients/client-appsync/src/commands/UpdateApiKeyCommand.ts index 39aa88e332fec..9a34cb618d48d 100644 --- a/clients/client-appsync/src/commands/UpdateApiKeyCommand.ts +++ b/clients/client-appsync/src/commands/UpdateApiKeyCommand.ts @@ -84,6 +84,7 @@ export interface UpdateApiKeyCommandOutput extends UpdateApiKeyResponse, __Metad * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class UpdateApiKeyCommand extends $Command diff --git a/clients/client-appsync/src/commands/UpdateChannelNamespaceCommand.ts b/clients/client-appsync/src/commands/UpdateChannelNamespaceCommand.ts index 807e99ec91606..53e99b168cd07 100644 --- a/clients/client-appsync/src/commands/UpdateChannelNamespaceCommand.ts +++ b/clients/client-appsync/src/commands/UpdateChannelNamespaceCommand.ts @@ -108,6 +108,7 @@ export interface UpdateChannelNamespaceCommandOutput extends UpdateChannelNamesp * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class UpdateChannelNamespaceCommand extends $Command diff --git a/clients/client-appsync/src/commands/UpdateDataSourceCommand.ts b/clients/client-appsync/src/commands/UpdateDataSourceCommand.ts index 9972f99652794..0ff8e5936ab04 100644 --- a/clients/client-appsync/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-appsync/src/commands/UpdateDataSourceCommand.ts @@ -175,6 +175,7 @@ export interface UpdateDataSourceCommandOutput extends UpdateDataSourceResponse, * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class UpdateDataSourceCommand extends $Command diff --git a/clients/client-appsync/src/commands/UpdateDomainNameCommand.ts b/clients/client-appsync/src/commands/UpdateDomainNameCommand.ts index 07c425af296f8..c15aa58acecc9 100644 --- a/clients/client-appsync/src/commands/UpdateDomainNameCommand.ts +++ b/clients/client-appsync/src/commands/UpdateDomainNameCommand.ts @@ -84,6 +84,7 @@ export interface UpdateDomainNameCommandOutput extends UpdateDomainNameResponse, * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class UpdateDomainNameCommand extends $Command diff --git a/clients/client-appsync/src/commands/UpdateFunctionCommand.ts b/clients/client-appsync/src/commands/UpdateFunctionCommand.ts index 6cacda03023cb..4ab7b535e8723 100644 --- a/clients/client-appsync/src/commands/UpdateFunctionCommand.ts +++ b/clients/client-appsync/src/commands/UpdateFunctionCommand.ts @@ -115,6 +115,7 @@ export interface UpdateFunctionCommandOutput extends UpdateFunctionResponse, __M * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class UpdateFunctionCommand extends $Command diff --git a/clients/client-appsync/src/commands/UpdateGraphqlApiCommand.ts b/clients/client-appsync/src/commands/UpdateGraphqlApiCommand.ts index 33669cd29b62b..3ae3ad9298eed 100644 --- a/clients/client-appsync/src/commands/UpdateGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/UpdateGraphqlApiCommand.ts @@ -204,6 +204,7 @@ export interface UpdateGraphqlApiCommandOutput extends UpdateGraphqlApiResponse, * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class UpdateGraphqlApiCommand extends $Command diff --git a/clients/client-appsync/src/commands/UpdateResolverCommand.ts b/clients/client-appsync/src/commands/UpdateResolverCommand.ts index 1283f6696ebe9..5e63c4d05fffe 100644 --- a/clients/client-appsync/src/commands/UpdateResolverCommand.ts +++ b/clients/client-appsync/src/commands/UpdateResolverCommand.ts @@ -137,6 +137,7 @@ export interface UpdateResolverCommandOutput extends UpdateResolverResponse, __M * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class UpdateResolverCommand extends $Command diff --git a/clients/client-appsync/src/commands/UpdateSourceApiAssociationCommand.ts b/clients/client-appsync/src/commands/UpdateSourceApiAssociationCommand.ts index 4c0e04e3a9533..e87b357318a05 100644 --- a/clients/client-appsync/src/commands/UpdateSourceApiAssociationCommand.ts +++ b/clients/client-appsync/src/commands/UpdateSourceApiAssociationCommand.ts @@ -92,6 +92,7 @@ export interface UpdateSourceApiAssociationCommandOutput extends UpdateSourceApi * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class UpdateSourceApiAssociationCommand extends $Command diff --git a/clients/client-appsync/src/commands/UpdateTypeCommand.ts b/clients/client-appsync/src/commands/UpdateTypeCommand.ts index bf3cf8486a261..178428ee78dcb 100644 --- a/clients/client-appsync/src/commands/UpdateTypeCommand.ts +++ b/clients/client-appsync/src/commands/UpdateTypeCommand.ts @@ -82,6 +82,7 @@ export interface UpdateTypeCommandOutput extends UpdateTypeResponse, __MetadataB * @throws {@link AppSyncServiceException} *

Base exception class for all service exceptions from AppSync service.

* + * * @public */ export class UpdateTypeCommand extends $Command diff --git a/clients/client-apptest/src/commands/CreateTestCaseCommand.ts b/clients/client-apptest/src/commands/CreateTestCaseCommand.ts index b595f7f4e7120..fb99a6d888ccf 100644 --- a/clients/client-apptest/src/commands/CreateTestCaseCommand.ts +++ b/clients/client-apptest/src/commands/CreateTestCaseCommand.ts @@ -165,6 +165,7 @@ export interface CreateTestCaseCommandOutput extends CreateTestCaseResponse, __M * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class CreateTestCaseCommand extends $Command diff --git a/clients/client-apptest/src/commands/CreateTestConfigurationCommand.ts b/clients/client-apptest/src/commands/CreateTestConfigurationCommand.ts index 615494b4dd18c..12f81112c5816 100644 --- a/clients/client-apptest/src/commands/CreateTestConfigurationCommand.ts +++ b/clients/client-apptest/src/commands/CreateTestConfigurationCommand.ts @@ -110,6 +110,7 @@ export interface CreateTestConfigurationCommandOutput extends CreateTestConfigur * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class CreateTestConfigurationCommand extends $Command diff --git a/clients/client-apptest/src/commands/CreateTestSuiteCommand.ts b/clients/client-apptest/src/commands/CreateTestSuiteCommand.ts index 96ba588cbb88b..b51f1a0a4ff52 100644 --- a/clients/client-apptest/src/commands/CreateTestSuiteCommand.ts +++ b/clients/client-apptest/src/commands/CreateTestSuiteCommand.ts @@ -256,6 +256,7 @@ export interface CreateTestSuiteCommandOutput extends CreateTestSuiteResponse, _ * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class CreateTestSuiteCommand extends $Command diff --git a/clients/client-apptest/src/commands/DeleteTestCaseCommand.ts b/clients/client-apptest/src/commands/DeleteTestCaseCommand.ts index 82102786d8ab4..87b8f1d836a47 100644 --- a/clients/client-apptest/src/commands/DeleteTestCaseCommand.ts +++ b/clients/client-apptest/src/commands/DeleteTestCaseCommand.ts @@ -71,6 +71,7 @@ export interface DeleteTestCaseCommandOutput extends DeleteTestCaseResponse, __M * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class DeleteTestCaseCommand extends $Command diff --git a/clients/client-apptest/src/commands/DeleteTestConfigurationCommand.ts b/clients/client-apptest/src/commands/DeleteTestConfigurationCommand.ts index 52d3b5e5adbc2..4882dcfe3d10c 100644 --- a/clients/client-apptest/src/commands/DeleteTestConfigurationCommand.ts +++ b/clients/client-apptest/src/commands/DeleteTestConfigurationCommand.ts @@ -71,6 +71,7 @@ export interface DeleteTestConfigurationCommandOutput extends DeleteTestConfigur * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class DeleteTestConfigurationCommand extends $Command diff --git a/clients/client-apptest/src/commands/DeleteTestRunCommand.ts b/clients/client-apptest/src/commands/DeleteTestRunCommand.ts index 6a03f10faf03b..fc9aba8357db9 100644 --- a/clients/client-apptest/src/commands/DeleteTestRunCommand.ts +++ b/clients/client-apptest/src/commands/DeleteTestRunCommand.ts @@ -68,6 +68,7 @@ export interface DeleteTestRunCommandOutput extends DeleteTestRunResponse, __Met * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class DeleteTestRunCommand extends $Command diff --git a/clients/client-apptest/src/commands/DeleteTestSuiteCommand.ts b/clients/client-apptest/src/commands/DeleteTestSuiteCommand.ts index b8b48095eea4e..7603ed4758bb8 100644 --- a/clients/client-apptest/src/commands/DeleteTestSuiteCommand.ts +++ b/clients/client-apptest/src/commands/DeleteTestSuiteCommand.ts @@ -71,6 +71,7 @@ export interface DeleteTestSuiteCommandOutput extends DeleteTestSuiteResponse, _ * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class DeleteTestSuiteCommand extends $Command diff --git a/clients/client-apptest/src/commands/GetTestCaseCommand.ts b/clients/client-apptest/src/commands/GetTestCaseCommand.ts index 1a3ca3ea53377..a046068d709de 100644 --- a/clients/client-apptest/src/commands/GetTestCaseCommand.ts +++ b/clients/client-apptest/src/commands/GetTestCaseCommand.ts @@ -173,6 +173,7 @@ export interface GetTestCaseCommandOutput extends GetTestCaseResponse, __Metadat * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class GetTestCaseCommand extends $Command diff --git a/clients/client-apptest/src/commands/GetTestConfigurationCommand.ts b/clients/client-apptest/src/commands/GetTestConfigurationCommand.ts index 47728f6df30df..6ca6081c28e6e 100644 --- a/clients/client-apptest/src/commands/GetTestConfigurationCommand.ts +++ b/clients/client-apptest/src/commands/GetTestConfigurationCommand.ts @@ -118,6 +118,7 @@ export interface GetTestConfigurationCommandOutput extends GetTestConfigurationR * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class GetTestConfigurationCommand extends $Command diff --git a/clients/client-apptest/src/commands/GetTestRunStepCommand.ts b/clients/client-apptest/src/commands/GetTestRunStepCommand.ts index 08458c3382f60..1e70a2bd08272 100644 --- a/clients/client-apptest/src/commands/GetTestRunStepCommand.ts +++ b/clients/client-apptest/src/commands/GetTestRunStepCommand.ts @@ -274,6 +274,7 @@ export interface GetTestRunStepCommandOutput extends GetTestRunStepResponse, __M * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class GetTestRunStepCommand extends $Command diff --git a/clients/client-apptest/src/commands/GetTestSuiteCommand.ts b/clients/client-apptest/src/commands/GetTestSuiteCommand.ts index 8ad44eafab52f..57c0adf582169 100644 --- a/clients/client-apptest/src/commands/GetTestSuiteCommand.ts +++ b/clients/client-apptest/src/commands/GetTestSuiteCommand.ts @@ -264,6 +264,7 @@ export interface GetTestSuiteCommandOutput extends GetTestSuiteResponse, __Metad * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class GetTestSuiteCommand extends $Command diff --git a/clients/client-apptest/src/commands/ListTagsForResourceCommand.ts b/clients/client-apptest/src/commands/ListTagsForResourceCommand.ts index 40337690620ad..150ac02fa0b71 100644 --- a/clients/client-apptest/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-apptest/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-apptest/src/commands/ListTestCasesCommand.ts b/clients/client-apptest/src/commands/ListTestCasesCommand.ts index 5f9387906fa1f..64088289e6a91 100644 --- a/clients/client-apptest/src/commands/ListTestCasesCommand.ts +++ b/clients/client-apptest/src/commands/ListTestCasesCommand.ts @@ -86,6 +86,7 @@ export interface ListTestCasesCommandOutput extends ListTestCasesResponse, __Met * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class ListTestCasesCommand extends $Command diff --git a/clients/client-apptest/src/commands/ListTestConfigurationsCommand.ts b/clients/client-apptest/src/commands/ListTestConfigurationsCommand.ts index 25294455f7e13..f9ea870676f7a 100644 --- a/clients/client-apptest/src/commands/ListTestConfigurationsCommand.ts +++ b/clients/client-apptest/src/commands/ListTestConfigurationsCommand.ts @@ -86,6 +86,7 @@ export interface ListTestConfigurationsCommandOutput extends ListTestConfigurati * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class ListTestConfigurationsCommand extends $Command diff --git a/clients/client-apptest/src/commands/ListTestRunStepsCommand.ts b/clients/client-apptest/src/commands/ListTestRunStepsCommand.ts index 3f3db8363f82e..cd89bf574ab21 100644 --- a/clients/client-apptest/src/commands/ListTestRunStepsCommand.ts +++ b/clients/client-apptest/src/commands/ListTestRunStepsCommand.ts @@ -90,6 +90,7 @@ export interface ListTestRunStepsCommandOutput extends ListTestRunStepsResponse, * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class ListTestRunStepsCommand extends $Command diff --git a/clients/client-apptest/src/commands/ListTestRunTestCasesCommand.ts b/clients/client-apptest/src/commands/ListTestRunTestCasesCommand.ts index b089309c66d38..a777403633632 100644 --- a/clients/client-apptest/src/commands/ListTestRunTestCasesCommand.ts +++ b/clients/client-apptest/src/commands/ListTestRunTestCasesCommand.ts @@ -83,6 +83,7 @@ export interface ListTestRunTestCasesCommandOutput extends ListTestRunTestCasesR * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class ListTestRunTestCasesCommand extends $Command diff --git a/clients/client-apptest/src/commands/ListTestRunsCommand.ts b/clients/client-apptest/src/commands/ListTestRunsCommand.ts index e15fefe4d98cb..7b2aab3022668 100644 --- a/clients/client-apptest/src/commands/ListTestRunsCommand.ts +++ b/clients/client-apptest/src/commands/ListTestRunsCommand.ts @@ -89,6 +89,7 @@ export interface ListTestRunsCommandOutput extends ListTestRunsResponse, __Metad * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class ListTestRunsCommand extends $Command diff --git a/clients/client-apptest/src/commands/ListTestSuitesCommand.ts b/clients/client-apptest/src/commands/ListTestSuitesCommand.ts index a98e7b38bd16a..cc856644f6f2c 100644 --- a/clients/client-apptest/src/commands/ListTestSuitesCommand.ts +++ b/clients/client-apptest/src/commands/ListTestSuitesCommand.ts @@ -86,6 +86,7 @@ export interface ListTestSuitesCommandOutput extends ListTestSuitesResponse, __M * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class ListTestSuitesCommand extends $Command diff --git a/clients/client-apptest/src/commands/StartTestRunCommand.ts b/clients/client-apptest/src/commands/StartTestRunCommand.ts index 9d623c9f5d38d..588d00a1d5eb4 100644 --- a/clients/client-apptest/src/commands/StartTestRunCommand.ts +++ b/clients/client-apptest/src/commands/StartTestRunCommand.ts @@ -82,6 +82,7 @@ export interface StartTestRunCommandOutput extends StartTestRunResponse, __Metad * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class StartTestRunCommand extends $Command diff --git a/clients/client-apptest/src/commands/TagResourceCommand.ts b/clients/client-apptest/src/commands/TagResourceCommand.ts index 359dbaf203cc3..31f7cc420c543 100644 --- a/clients/client-apptest/src/commands/TagResourceCommand.ts +++ b/clients/client-apptest/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-apptest/src/commands/UntagResourceCommand.ts b/clients/client-apptest/src/commands/UntagResourceCommand.ts index 77fa3f0707e4d..e8b5869cae60b 100644 --- a/clients/client-apptest/src/commands/UntagResourceCommand.ts +++ b/clients/client-apptest/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-apptest/src/commands/UpdateTestCaseCommand.ts b/clients/client-apptest/src/commands/UpdateTestCaseCommand.ts index 1a4f3ab303743..8117d79c8dfdf 100644 --- a/clients/client-apptest/src/commands/UpdateTestCaseCommand.ts +++ b/clients/client-apptest/src/commands/UpdateTestCaseCommand.ts @@ -161,6 +161,7 @@ export interface UpdateTestCaseCommandOutput extends UpdateTestCaseResponse, __M * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class UpdateTestCaseCommand extends $Command diff --git a/clients/client-apptest/src/commands/UpdateTestConfigurationCommand.ts b/clients/client-apptest/src/commands/UpdateTestConfigurationCommand.ts index 529fb4af67263..faebda5d97caf 100644 --- a/clients/client-apptest/src/commands/UpdateTestConfigurationCommand.ts +++ b/clients/client-apptest/src/commands/UpdateTestConfigurationCommand.ts @@ -106,6 +106,7 @@ export interface UpdateTestConfigurationCommandOutput extends UpdateTestConfigur * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class UpdateTestConfigurationCommand extends $Command diff --git a/clients/client-apptest/src/commands/UpdateTestSuiteCommand.ts b/clients/client-apptest/src/commands/UpdateTestSuiteCommand.ts index eef531a29dcb9..c15cbfc82a23c 100644 --- a/clients/client-apptest/src/commands/UpdateTestSuiteCommand.ts +++ b/clients/client-apptest/src/commands/UpdateTestSuiteCommand.ts @@ -252,6 +252,7 @@ export interface UpdateTestSuiteCommandOutput extends UpdateTestSuiteResponse, _ * @throws {@link AppTestServiceException} *

Base exception class for all service exceptions from AppTest service.

* + * * @public */ export class UpdateTestSuiteCommand extends $Command diff --git a/clients/client-arc-zonal-shift/src/commands/CancelZonalShiftCommand.ts b/clients/client-arc-zonal-shift/src/commands/CancelZonalShiftCommand.ts index 159a9d134050d..c64809a616eae 100644 --- a/clients/client-arc-zonal-shift/src/commands/CancelZonalShiftCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/CancelZonalShiftCommand.ts @@ -82,6 +82,7 @@ export interface CancelZonalShiftCommandOutput extends ZonalShift, __MetadataBea * @throws {@link ARCZonalShiftServiceException} *

Base exception class for all service exceptions from ARCZonalShift service.

* + * * @public */ export class CancelZonalShiftCommand extends $Command diff --git a/clients/client-arc-zonal-shift/src/commands/CreatePracticeRunConfigurationCommand.ts b/clients/client-arc-zonal-shift/src/commands/CreatePracticeRunConfigurationCommand.ts index 46c2c5e974cf9..167af3426631d 100644 --- a/clients/client-arc-zonal-shift/src/commands/CreatePracticeRunConfigurationCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/CreatePracticeRunConfigurationCommand.ts @@ -128,6 +128,7 @@ export interface CreatePracticeRunConfigurationCommandOutput * @throws {@link ARCZonalShiftServiceException} *

Base exception class for all service exceptions from ARCZonalShift service.

* + * * @public */ export class CreatePracticeRunConfigurationCommand extends $Command diff --git a/clients/client-arc-zonal-shift/src/commands/DeletePracticeRunConfigurationCommand.ts b/clients/client-arc-zonal-shift/src/commands/DeletePracticeRunConfigurationCommand.ts index 1cc2786ea699d..201f2c7ff8a47 100644 --- a/clients/client-arc-zonal-shift/src/commands/DeletePracticeRunConfigurationCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/DeletePracticeRunConfigurationCommand.ts @@ -82,6 +82,7 @@ export interface DeletePracticeRunConfigurationCommandOutput * @throws {@link ARCZonalShiftServiceException} *

Base exception class for all service exceptions from ARCZonalShift service.

* + * * @public */ export class DeletePracticeRunConfigurationCommand extends $Command diff --git a/clients/client-arc-zonal-shift/src/commands/GetAutoshiftObserverNotificationStatusCommand.ts b/clients/client-arc-zonal-shift/src/commands/GetAutoshiftObserverNotificationStatusCommand.ts index 9d81f86d8395a..10068e765053e 100644 --- a/clients/client-arc-zonal-shift/src/commands/GetAutoshiftObserverNotificationStatusCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/GetAutoshiftObserverNotificationStatusCommand.ts @@ -72,6 +72,7 @@ export interface GetAutoshiftObserverNotificationStatusCommandOutput * @throws {@link ARCZonalShiftServiceException} *

Base exception class for all service exceptions from ARCZonalShift service.

* + * * @public */ export class GetAutoshiftObserverNotificationStatusCommand extends $Command diff --git a/clients/client-arc-zonal-shift/src/commands/GetManagedResourceCommand.ts b/clients/client-arc-zonal-shift/src/commands/GetManagedResourceCommand.ts index 8008c6147f6b5..69e20b8b53508 100644 --- a/clients/client-arc-zonal-shift/src/commands/GetManagedResourceCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/GetManagedResourceCommand.ts @@ -116,6 +116,7 @@ export interface GetManagedResourceCommandOutput extends GetManagedResourceRespo * @throws {@link ARCZonalShiftServiceException} *

Base exception class for all service exceptions from ARCZonalShift service.

* + * * @public */ export class GetManagedResourceCommand extends $Command diff --git a/clients/client-arc-zonal-shift/src/commands/ListAutoshiftsCommand.ts b/clients/client-arc-zonal-shift/src/commands/ListAutoshiftsCommand.ts index 9fcb8e477258c..2cae8c8da8e0d 100644 --- a/clients/client-arc-zonal-shift/src/commands/ListAutoshiftsCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/ListAutoshiftsCommand.ts @@ -80,6 +80,7 @@ export interface ListAutoshiftsCommandOutput extends ListAutoshiftsResponse, __M * @throws {@link ARCZonalShiftServiceException} *

Base exception class for all service exceptions from ARCZonalShift service.

* + * * @public */ export class ListAutoshiftsCommand extends $Command diff --git a/clients/client-arc-zonal-shift/src/commands/ListManagedResourcesCommand.ts b/clients/client-arc-zonal-shift/src/commands/ListManagedResourcesCommand.ts index 3e702036e48a4..3c5c4d1992c6b 100644 --- a/clients/client-arc-zonal-shift/src/commands/ListManagedResourcesCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/ListManagedResourcesCommand.ts @@ -105,6 +105,7 @@ export interface ListManagedResourcesCommandOutput extends ListManagedResourcesR * @throws {@link ARCZonalShiftServiceException} *

Base exception class for all service exceptions from ARCZonalShift service.

* + * * @public */ export class ListManagedResourcesCommand extends $Command diff --git a/clients/client-arc-zonal-shift/src/commands/ListZonalShiftsCommand.ts b/clients/client-arc-zonal-shift/src/commands/ListZonalShiftsCommand.ts index 178e538f20781..9e7ef1a9ddd41 100644 --- a/clients/client-arc-zonal-shift/src/commands/ListZonalShiftsCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/ListZonalShiftsCommand.ts @@ -87,6 +87,7 @@ export interface ListZonalShiftsCommandOutput extends ListZonalShiftsResponse, _ * @throws {@link ARCZonalShiftServiceException} *

Base exception class for all service exceptions from ARCZonalShift service.

* + * * @public */ export class ListZonalShiftsCommand extends $Command diff --git a/clients/client-arc-zonal-shift/src/commands/StartZonalShiftCommand.ts b/clients/client-arc-zonal-shift/src/commands/StartZonalShiftCommand.ts index 2dd5748f374dd..d833bfb2e5473 100644 --- a/clients/client-arc-zonal-shift/src/commands/StartZonalShiftCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/StartZonalShiftCommand.ts @@ -92,6 +92,7 @@ export interface StartZonalShiftCommandOutput extends ZonalShift, __MetadataBear * @throws {@link ARCZonalShiftServiceException} *

Base exception class for all service exceptions from ARCZonalShift service.

* + * * @public */ export class StartZonalShiftCommand extends $Command diff --git a/clients/client-arc-zonal-shift/src/commands/UpdateAutoshiftObserverNotificationStatusCommand.ts b/clients/client-arc-zonal-shift/src/commands/UpdateAutoshiftObserverNotificationStatusCommand.ts index 7ed884ff28e97..0ae4374d1051d 100644 --- a/clients/client-arc-zonal-shift/src/commands/UpdateAutoshiftObserverNotificationStatusCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/UpdateAutoshiftObserverNotificationStatusCommand.ts @@ -86,6 +86,7 @@ export interface UpdateAutoshiftObserverNotificationStatusCommandOutput * @throws {@link ARCZonalShiftServiceException} *

Base exception class for all service exceptions from ARCZonalShift service.

* + * * @public */ export class UpdateAutoshiftObserverNotificationStatusCommand extends $Command diff --git a/clients/client-arc-zonal-shift/src/commands/UpdatePracticeRunConfigurationCommand.ts b/clients/client-arc-zonal-shift/src/commands/UpdatePracticeRunConfigurationCommand.ts index 41bef910563f3..9d19eb02a2d41 100644 --- a/clients/client-arc-zonal-shift/src/commands/UpdatePracticeRunConfigurationCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/UpdatePracticeRunConfigurationCommand.ts @@ -120,6 +120,7 @@ export interface UpdatePracticeRunConfigurationCommandOutput * @throws {@link ARCZonalShiftServiceException} *

Base exception class for all service exceptions from ARCZonalShift service.

* + * * @public */ export class UpdatePracticeRunConfigurationCommand extends $Command diff --git a/clients/client-arc-zonal-shift/src/commands/UpdateZonalAutoshiftConfigurationCommand.ts b/clients/client-arc-zonal-shift/src/commands/UpdateZonalAutoshiftConfigurationCommand.ts index 169c45ec0da2e..6584d8ed73637 100644 --- a/clients/client-arc-zonal-shift/src/commands/UpdateZonalAutoshiftConfigurationCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/UpdateZonalAutoshiftConfigurationCommand.ts @@ -90,6 +90,7 @@ export interface UpdateZonalAutoshiftConfigurationCommandOutput * @throws {@link ARCZonalShiftServiceException} *

Base exception class for all service exceptions from ARCZonalShift service.

* + * * @public */ export class UpdateZonalAutoshiftConfigurationCommand extends $Command diff --git a/clients/client-arc-zonal-shift/src/commands/UpdateZonalShiftCommand.ts b/clients/client-arc-zonal-shift/src/commands/UpdateZonalShiftCommand.ts index 1a58cc0ba30c3..a5780816f7f76 100644 --- a/clients/client-arc-zonal-shift/src/commands/UpdateZonalShiftCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/UpdateZonalShiftCommand.ts @@ -82,6 +82,7 @@ export interface UpdateZonalShiftCommandOutput extends ZonalShift, __MetadataBea * @throws {@link ARCZonalShiftServiceException} *

Base exception class for all service exceptions from ARCZonalShift service.

* + * * @public */ export class UpdateZonalShiftCommand extends $Command diff --git a/clients/client-artifact/src/commands/GetAccountSettingsCommand.ts b/clients/client-artifact/src/commands/GetAccountSettingsCommand.ts index 035a0decb6b2a..7d758567de9d9 100644 --- a/clients/client-artifact/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-artifact/src/commands/GetAccountSettingsCommand.ts @@ -76,23 +76,23 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsRespo * @throws {@link ArtifactServiceException} *

Base exception class for all service exceptions from Artifact service.

* - * @public + * * @example Invoke GetAccountSettings operation * ```javascript * // Get the current account settings. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new GetAccountSettingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "accountSettings": { - * "notificationSubscriptionStatus": "SUBSCRIBED" + * accountSettings: { + * notificationSubscriptionStatus: "SUBSCRIBED" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetAccountSettingsCommand extends $Command .classBuilder< diff --git a/clients/client-artifact/src/commands/GetReportCommand.ts b/clients/client-artifact/src/commands/GetReportCommand.ts index 80354052eb8a4..c98b37e80e36d 100644 --- a/clients/client-artifact/src/commands/GetReportCommand.ts +++ b/clients/client-artifact/src/commands/GetReportCommand.ts @@ -78,27 +78,27 @@ export interface GetReportCommandOutput extends GetReportResponse, __MetadataBea * @throws {@link ArtifactServiceException} *

Base exception class for all service exceptions from Artifact service.

* - * @public + * * @example Invoke GetReport operation on the latest version of a specific report * ```javascript * // The GetReport operation is invoked on a reportId and on a optional version. - * // Callers must provide a termToken, which is provided by the GetTermForReport - * // operation. If callers do not provide a version, it will default to the - * // report's latest version + * Callers must provide a termToken, which is provided by the GetTermForReport + * operation. If callers do not provide a version, it will default to the + * report's latest version * const input = { - * "reportId": "report-abcdef0123456789", - * "termToken": "term-token-abcdefghijklm01234567890" + * reportId: "report-abcdef0123456789", + * termToken: "term-token-abcdefghijklm01234567890" * }; * const command = new GetReportCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "documentPresignedUrl": "" + * documentPresignedUrl: "" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetReportCommand extends $Command .classBuilder< diff --git a/clients/client-artifact/src/commands/GetReportMetadataCommand.ts b/clients/client-artifact/src/commands/GetReportMetadataCommand.ts index 251c8e0fd606b..00757b56f9289 100644 --- a/clients/client-artifact/src/commands/GetReportMetadataCommand.ts +++ b/clients/client-artifact/src/commands/GetReportMetadataCommand.ts @@ -95,39 +95,39 @@ export interface GetReportMetadataCommandOutput extends GetReportMetadataRespons * @throws {@link ArtifactServiceException} *

Base exception class for all service exceptions from Artifact service.

* - * @public + * * @example Invoke GetReportMetadata operation on the latest version of a specific report * ```javascript * // The GetReportMetadata operation is invoked on a reportId and on a optional version. - * // If callers do not provide a version, it will default to the report's latest version. + * If callers do not provide a version, it will default to the report's latest version. * const input = { - * "reportId": "report-bqhUJF3FrQZsMJpb" + * reportId: "report-bqhUJF3FrQZsMJpb" * }; * const command = new GetReportMetadataCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "reportDetails": { - * "version": 1, - * "name": "Name of report", - * "arn": "arn:aws:artifact:us-east-1::report/report-abcdef0123456789:1", - * "category": "Artifact Category", - * "companyName": "AWS", - * "createdAt": "2022-05-27T23:17:00.343940Z", - * "description": "Description of report", - * "id": "report-abcdef0123456789", - * "periodEnd": "2022-04-01T20:32:04Z", - * "periodStart": "2022-04-01T20:32:04Z", - * "productName": "Product of report", - * "series": "Artifact Series", - * "state": "PUBLISHED", - * "termArn": "arn:aws:artifact:us-east-1::term/term-abcdef0123456789:1" + * reportDetails: { + * arn: "arn:aws:artifact:us-east-1::report/report-abcdef0123456789:1", + * category: "Artifact Category", + * companyName: "AWS", + * createdAt: "2022-05-27T23:17:00.343940Z", + * description: "Description of report", + * id: "report-abcdef0123456789", + * name: "Name of report", + * periodEnd: "2022-04-01T20:32:04Z", + * periodStart: "2022-04-01T20:32:04Z", + * productName: "Product of report", + * series: "Artifact Series", + * state: "PUBLISHED", + * termArn: "arn:aws:artifact:us-east-1::term/term-abcdef0123456789:1", + * version: 1 * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetReportMetadataCommand extends $Command .classBuilder< diff --git a/clients/client-artifact/src/commands/GetTermForReportCommand.ts b/clients/client-artifact/src/commands/GetTermForReportCommand.ts index 943de08ad74f0..8da32528e872f 100644 --- a/clients/client-artifact/src/commands/GetTermForReportCommand.ts +++ b/clients/client-artifact/src/commands/GetTermForReportCommand.ts @@ -78,25 +78,25 @@ export interface GetTermForReportCommandOutput extends GetTermForReportResponse, * @throws {@link ArtifactServiceException} *

Base exception class for all service exceptions from Artifact service.

* - * @public + * * @example Invoke GetTermForReport operation on the latest version of a specific report * ```javascript * // The GetTermForReport operation is invoked on a reportId and on a optional version. - * // If callers do not provide a version, it will default to the report's latest version. + * If callers do not provide a version, it will default to the report's latest version. * const input = { - * "reportId": "report-abcdef0123456789" + * reportId: "report-abcdef0123456789" * }; * const command = new GetTermForReportCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "documentPresignedUrl": "", - * "termToken": "term-token-abcdefghijklm01234567890" + * documentPresignedUrl: "", + * termToken: "term-token-abcdefghijklm01234567890" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetTermForReportCommand extends $Command .classBuilder< diff --git a/clients/client-artifact/src/commands/ListCustomerAgreementsCommand.ts b/clients/client-artifact/src/commands/ListCustomerAgreementsCommand.ts index 2c1917bddf905..0eb5b89033970 100644 --- a/clients/client-artifact/src/commands/ListCustomerAgreementsCommand.ts +++ b/clients/client-artifact/src/commands/ListCustomerAgreementsCommand.ts @@ -89,40 +89,40 @@ export interface ListCustomerAgreementsCommandOutput extends ListCustomerAgreeme * @throws {@link ArtifactServiceException} *

Base exception class for all service exceptions from Artifact service.

* - * @public + * * @example Invoke ListCustomerAgreements operation * ```javascript * // The ListCustomerAgreements operation returns a collection of customer-agreement resources in the ACTIVE state for the calling credential. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListCustomerAgreementsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "customerAgreements": [ + * customerAgreements: [ * { - * "name": "Name of agreement", - * "type": "DEFAULT", - * "acceptanceTerms": [ + * acceptanceTerms: [ * "terms acknowledged when agreement was accepted" * ], - * "agreementArn": "arn:aws:artifact:::agreement/agreement-abcdef0123456789", - * "arn": "arn:aws:artifact::111111111111:customer-agreement/customer-agreement-abcdef0123456789", - * "awsAccountId": "111111111111", - * "description": "Description of agreement", - * "effectiveStart": "2022-04-01T20:32:04Z", - * "id": "customer-agreement-abcdef0123456789", - * "state": "ACTIVE", - * "terminateTerms": [ + * agreementArn: "arn:aws:artifact:::agreement/agreement-abcdef0123456789", + * arn: "arn:aws:artifact::111111111111:customer-agreement/customer-agreement-abcdef0123456789", + * awsAccountId: "111111111111", + * description: "Description of agreement", + * effectiveStart: "2022-04-01T20:32:04Z", + * id: "customer-agreement-abcdef0123456789", + * name: "Name of agreement", + * state: "ACTIVE", + * terminateTerms: [ * "terms that must be acknowledged to terminate this agreement" - * ] + * ], + * type: "DEFAULT" * } * ], - * "nextToken": "gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7" + * nextToken: "gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListCustomerAgreementsCommand extends $Command .classBuilder< diff --git a/clients/client-artifact/src/commands/ListReportsCommand.ts b/clients/client-artifact/src/commands/ListReportsCommand.ts index acde4eae63e90..1f9303266a7a6 100644 --- a/clients/client-artifact/src/commands/ListReportsCommand.ts +++ b/clients/client-artifact/src/commands/ListReportsCommand.ts @@ -93,37 +93,37 @@ export interface ListReportsCommandOutput extends ListReportsResponse, __Metadat * @throws {@link ArtifactServiceException} *

Base exception class for all service exceptions from Artifact service.

* - * @public + * * @example Invoke ListReports operation * ```javascript * // The ListReports operation returns a collection of report resources. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListReportsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "nextToken": "gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7", - * "reports": [ + * nextToken: "gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7", + * reports: [ * { - * "version": 1, - * "name": "Name of report", - * "arn": "arn:aws:artifact:us-east-1::report/report-abcdef0123456789", - * "category": "Artifact Category", - * "companyName": "AWS", - * "description": "Description of report", - * "id": "report-abcdef0123456789", - * "periodEnd": "2022-04-01T20:32:04Z", - * "periodStart": "2022-04-01T20:32:04Z", - * "productName": "Product of report", - * "series": "Artifact Series", - * "state": "PUBLISHED" + * arn: "arn:aws:artifact:us-east-1::report/report-abcdef0123456789", + * category: "Artifact Category", + * companyName: "AWS", + * description: "Description of report", + * id: "report-abcdef0123456789", + * name: "Name of report", + * periodEnd: "2022-04-01T20:32:04Z", + * periodStart: "2022-04-01T20:32:04Z", + * productName: "Product of report", + * series: "Artifact Series", + * state: "PUBLISHED", + * version: 1 * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListReportsCommand extends $Command .classBuilder< diff --git a/clients/client-artifact/src/commands/PutAccountSettingsCommand.ts b/clients/client-artifact/src/commands/PutAccountSettingsCommand.ts index d059b06153f27..045eaaf8eec26 100644 --- a/clients/client-artifact/src/commands/PutAccountSettingsCommand.ts +++ b/clients/client-artifact/src/commands/PutAccountSettingsCommand.ts @@ -78,25 +78,25 @@ export interface PutAccountSettingsCommandOutput extends PutAccountSettingsRespo * @throws {@link ArtifactServiceException} *

Base exception class for all service exceptions from Artifact service.

* - * @public + * * @example Invoke PutAccountSettings operation * ```javascript * // Set the account settings. * const input = { - * "notificationSubscriptionStatus": "SUBSCRIBED" + * notificationSubscriptionStatus: "SUBSCRIBED" * }; * const command = new PutAccountSettingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "accountSettings": { - * "notificationSubscriptionStatus": "SUBSCRIBED" + * accountSettings: { + * notificationSubscriptionStatus: "SUBSCRIBED" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class PutAccountSettingsCommand extends $Command .classBuilder< diff --git a/clients/client-athena/src/commands/BatchGetNamedQueryCommand.ts b/clients/client-athena/src/commands/BatchGetNamedQueryCommand.ts index 192ec11871cad..eb3967ae1cf9d 100644 --- a/clients/client-athena/src/commands/BatchGetNamedQueryCommand.ts +++ b/clients/client-athena/src/commands/BatchGetNamedQueryCommand.ts @@ -89,6 +89,7 @@ export interface BatchGetNamedQueryCommandOutput extends BatchGetNamedQueryOutpu * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class BatchGetNamedQueryCommand extends $Command diff --git a/clients/client-athena/src/commands/BatchGetPreparedStatementCommand.ts b/clients/client-athena/src/commands/BatchGetPreparedStatementCommand.ts index d13b0cff142e1..e7a69dc7f390f 100644 --- a/clients/client-athena/src/commands/BatchGetPreparedStatementCommand.ts +++ b/clients/client-athena/src/commands/BatchGetPreparedStatementCommand.ts @@ -85,6 +85,7 @@ export interface BatchGetPreparedStatementCommandOutput extends BatchGetPrepared * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class BatchGetPreparedStatementCommand extends $Command diff --git a/clients/client-athena/src/commands/BatchGetQueryExecutionCommand.ts b/clients/client-athena/src/commands/BatchGetQueryExecutionCommand.ts index d85c72c176fbe..a03664de142e3 100644 --- a/clients/client-athena/src/commands/BatchGetQueryExecutionCommand.ts +++ b/clients/client-athena/src/commands/BatchGetQueryExecutionCommand.ts @@ -143,6 +143,7 @@ export interface BatchGetQueryExecutionCommandOutput extends BatchGetQueryExecut * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class BatchGetQueryExecutionCommand extends $Command diff --git a/clients/client-athena/src/commands/CancelCapacityReservationCommand.ts b/clients/client-athena/src/commands/CancelCapacityReservationCommand.ts index 7b72bc8db19f2..3110839a5e4f2 100644 --- a/clients/client-athena/src/commands/CancelCapacityReservationCommand.ts +++ b/clients/client-athena/src/commands/CancelCapacityReservationCommand.ts @@ -64,6 +64,7 @@ export interface CancelCapacityReservationCommandOutput extends CancelCapacityRe * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class CancelCapacityReservationCommand extends $Command diff --git a/clients/client-athena/src/commands/CreateCapacityReservationCommand.ts b/clients/client-athena/src/commands/CreateCapacityReservationCommand.ts index 894f07051d9ad..a1ca6c3a0107f 100644 --- a/clients/client-athena/src/commands/CreateCapacityReservationCommand.ts +++ b/clients/client-athena/src/commands/CreateCapacityReservationCommand.ts @@ -69,6 +69,7 @@ export interface CreateCapacityReservationCommandOutput extends CreateCapacityRe * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class CreateCapacityReservationCommand extends $Command diff --git a/clients/client-athena/src/commands/CreateDataCatalogCommand.ts b/clients/client-athena/src/commands/CreateDataCatalogCommand.ts index 8e7b7034b3460..4e688f88706f8 100644 --- a/clients/client-athena/src/commands/CreateDataCatalogCommand.ts +++ b/clients/client-athena/src/commands/CreateDataCatalogCommand.ts @@ -103,6 +103,7 @@ export interface CreateDataCatalogCommandOutput extends CreateDataCatalogOutput, * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class CreateDataCatalogCommand extends $Command diff --git a/clients/client-athena/src/commands/CreateNamedQueryCommand.ts b/clients/client-athena/src/commands/CreateNamedQueryCommand.ts index 2c8a84d3bbe4a..9aa795b54d5d2 100644 --- a/clients/client-athena/src/commands/CreateNamedQueryCommand.ts +++ b/clients/client-athena/src/commands/CreateNamedQueryCommand.ts @@ -69,6 +69,7 @@ export interface CreateNamedQueryCommandOutput extends CreateNamedQueryOutput, _ * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class CreateNamedQueryCommand extends $Command diff --git a/clients/client-athena/src/commands/CreateNotebookCommand.ts b/clients/client-athena/src/commands/CreateNotebookCommand.ts index a28f1d9e7f777..6e2c90ebf3186 100644 --- a/clients/client-athena/src/commands/CreateNotebookCommand.ts +++ b/clients/client-athena/src/commands/CreateNotebookCommand.ts @@ -70,6 +70,7 @@ export interface CreateNotebookCommandOutput extends CreateNotebookOutput, __Met * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class CreateNotebookCommand extends $Command diff --git a/clients/client-athena/src/commands/CreatePreparedStatementCommand.ts b/clients/client-athena/src/commands/CreatePreparedStatementCommand.ts index 551d56f6bd0d9..9eef83c4fdada 100644 --- a/clients/client-athena/src/commands/CreatePreparedStatementCommand.ts +++ b/clients/client-athena/src/commands/CreatePreparedStatementCommand.ts @@ -64,6 +64,7 @@ export interface CreatePreparedStatementCommandOutput extends CreatePreparedStat * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class CreatePreparedStatementCommand extends $Command diff --git a/clients/client-athena/src/commands/CreatePresignedNotebookUrlCommand.ts b/clients/client-athena/src/commands/CreatePresignedNotebookUrlCommand.ts index f94c2340218af..fd83ba75bdaf4 100644 --- a/clients/client-athena/src/commands/CreatePresignedNotebookUrlCommand.ts +++ b/clients/client-athena/src/commands/CreatePresignedNotebookUrlCommand.ts @@ -72,6 +72,7 @@ export interface CreatePresignedNotebookUrlCommandOutput extends CreatePresigned * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class CreatePresignedNotebookUrlCommand extends $Command diff --git a/clients/client-athena/src/commands/CreateWorkGroupCommand.ts b/clients/client-athena/src/commands/CreateWorkGroupCommand.ts index af7775b548413..548d688ff88a5 100644 --- a/clients/client-athena/src/commands/CreateWorkGroupCommand.ts +++ b/clients/client-athena/src/commands/CreateWorkGroupCommand.ts @@ -105,6 +105,7 @@ export interface CreateWorkGroupCommandOutput extends CreateWorkGroupOutput, __M * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class CreateWorkGroupCommand extends $Command diff --git a/clients/client-athena/src/commands/DeleteCapacityReservationCommand.ts b/clients/client-athena/src/commands/DeleteCapacityReservationCommand.ts index 87308e0e1c621..823c3d1337d35 100644 --- a/clients/client-athena/src/commands/DeleteCapacityReservationCommand.ts +++ b/clients/client-athena/src/commands/DeleteCapacityReservationCommand.ts @@ -65,6 +65,7 @@ export interface DeleteCapacityReservationCommandOutput extends DeleteCapacityRe * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class DeleteCapacityReservationCommand extends $Command diff --git a/clients/client-athena/src/commands/DeleteDataCatalogCommand.ts b/clients/client-athena/src/commands/DeleteDataCatalogCommand.ts index 237bec984c5d4..cf64ecc026094 100644 --- a/clients/client-athena/src/commands/DeleteDataCatalogCommand.ts +++ b/clients/client-athena/src/commands/DeleteDataCatalogCommand.ts @@ -74,6 +74,7 @@ export interface DeleteDataCatalogCommandOutput extends DeleteDataCatalogOutput, * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class DeleteDataCatalogCommand extends $Command diff --git a/clients/client-athena/src/commands/DeleteNamedQueryCommand.ts b/clients/client-athena/src/commands/DeleteNamedQueryCommand.ts index 8811ef68df000..afe9fcfcfac50 100644 --- a/clients/client-athena/src/commands/DeleteNamedQueryCommand.ts +++ b/clients/client-athena/src/commands/DeleteNamedQueryCommand.ts @@ -62,6 +62,7 @@ export interface DeleteNamedQueryCommandOutput extends DeleteNamedQueryOutput, _ * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class DeleteNamedQueryCommand extends $Command diff --git a/clients/client-athena/src/commands/DeleteNotebookCommand.ts b/clients/client-athena/src/commands/DeleteNotebookCommand.ts index 399f0b1852fcd..4bad862b0615d 100644 --- a/clients/client-athena/src/commands/DeleteNotebookCommand.ts +++ b/clients/client-athena/src/commands/DeleteNotebookCommand.ts @@ -64,6 +64,7 @@ export interface DeleteNotebookCommandOutput extends DeleteNotebookOutput, __Met * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class DeleteNotebookCommand extends $Command diff --git a/clients/client-athena/src/commands/DeletePreparedStatementCommand.ts b/clients/client-athena/src/commands/DeletePreparedStatementCommand.ts index c5e7b5ba80ff1..03a7f76c7d840 100644 --- a/clients/client-athena/src/commands/DeletePreparedStatementCommand.ts +++ b/clients/client-athena/src/commands/DeletePreparedStatementCommand.ts @@ -66,6 +66,7 @@ export interface DeletePreparedStatementCommandOutput extends DeletePreparedStat * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class DeletePreparedStatementCommand extends $Command diff --git a/clients/client-athena/src/commands/DeleteWorkGroupCommand.ts b/clients/client-athena/src/commands/DeleteWorkGroupCommand.ts index 2bd38c31f118f..1f3983bd00c57 100644 --- a/clients/client-athena/src/commands/DeleteWorkGroupCommand.ts +++ b/clients/client-athena/src/commands/DeleteWorkGroupCommand.ts @@ -63,6 +63,7 @@ export interface DeleteWorkGroupCommandOutput extends DeleteWorkGroupOutput, __M * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class DeleteWorkGroupCommand extends $Command diff --git a/clients/client-athena/src/commands/ExportNotebookCommand.ts b/clients/client-athena/src/commands/ExportNotebookCommand.ts index 6123cdc5b9d8f..18bbd78ef06cb 100644 --- a/clients/client-athena/src/commands/ExportNotebookCommand.ts +++ b/clients/client-athena/src/commands/ExportNotebookCommand.ts @@ -74,6 +74,7 @@ export interface ExportNotebookCommandOutput extends ExportNotebookOutput, __Met * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ExportNotebookCommand extends $Command diff --git a/clients/client-athena/src/commands/GetCalculationExecutionCodeCommand.ts b/clients/client-athena/src/commands/GetCalculationExecutionCodeCommand.ts index c51801ffa08f4..ff08de5b567d1 100644 --- a/clients/client-athena/src/commands/GetCalculationExecutionCodeCommand.ts +++ b/clients/client-athena/src/commands/GetCalculationExecutionCodeCommand.ts @@ -68,6 +68,7 @@ export interface GetCalculationExecutionCodeCommandOutput * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetCalculationExecutionCodeCommand extends $Command diff --git a/clients/client-athena/src/commands/GetCalculationExecutionCommand.ts b/clients/client-athena/src/commands/GetCalculationExecutionCommand.ts index c760845b85312..2976eaa3aa8a9 100644 --- a/clients/client-athena/src/commands/GetCalculationExecutionCommand.ts +++ b/clients/client-athena/src/commands/GetCalculationExecutionCommand.ts @@ -85,6 +85,7 @@ export interface GetCalculationExecutionCommandOutput extends GetCalculationExec * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetCalculationExecutionCommand extends $Command diff --git a/clients/client-athena/src/commands/GetCalculationExecutionStatusCommand.ts b/clients/client-athena/src/commands/GetCalculationExecutionStatusCommand.ts index b7105262b588b..d4f86056091f3 100644 --- a/clients/client-athena/src/commands/GetCalculationExecutionStatusCommand.ts +++ b/clients/client-athena/src/commands/GetCalculationExecutionStatusCommand.ts @@ -80,6 +80,7 @@ export interface GetCalculationExecutionStatusCommandOutput * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetCalculationExecutionStatusCommand extends $Command diff --git a/clients/client-athena/src/commands/GetCapacityAssignmentConfigurationCommand.ts b/clients/client-athena/src/commands/GetCapacityAssignmentConfigurationCommand.ts index d057572cd181d..b262d237df8a1 100644 --- a/clients/client-athena/src/commands/GetCapacityAssignmentConfigurationCommand.ts +++ b/clients/client-athena/src/commands/GetCapacityAssignmentConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface GetCapacityAssignmentConfigurationCommandOutput * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetCapacityAssignmentConfigurationCommand extends $Command diff --git a/clients/client-athena/src/commands/GetCapacityReservationCommand.ts b/clients/client-athena/src/commands/GetCapacityReservationCommand.ts index 9665a83f3fcc8..53dd0be213cda 100644 --- a/clients/client-athena/src/commands/GetCapacityReservationCommand.ts +++ b/clients/client-athena/src/commands/GetCapacityReservationCommand.ts @@ -76,6 +76,7 @@ export interface GetCapacityReservationCommandOutput extends GetCapacityReservat * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetCapacityReservationCommand extends $Command diff --git a/clients/client-athena/src/commands/GetDataCatalogCommand.ts b/clients/client-athena/src/commands/GetDataCatalogCommand.ts index 5acb069c1b5b2..d79f53678711e 100644 --- a/clients/client-athena/src/commands/GetDataCatalogCommand.ts +++ b/clients/client-athena/src/commands/GetDataCatalogCommand.ts @@ -74,6 +74,7 @@ export interface GetDataCatalogCommandOutput extends GetDataCatalogOutput, __Met * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetDataCatalogCommand extends $Command diff --git a/clients/client-athena/src/commands/GetDatabaseCommand.ts b/clients/client-athena/src/commands/GetDatabaseCommand.ts index 4598c0f463c45..842029fb17782 100644 --- a/clients/client-athena/src/commands/GetDatabaseCommand.ts +++ b/clients/client-athena/src/commands/GetDatabaseCommand.ts @@ -79,6 +79,7 @@ export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataB * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetDatabaseCommand extends $Command diff --git a/clients/client-athena/src/commands/GetNamedQueryCommand.ts b/clients/client-athena/src/commands/GetNamedQueryCommand.ts index 15f633ef3e3cf..ac1fef5a936b5 100644 --- a/clients/client-athena/src/commands/GetNamedQueryCommand.ts +++ b/clients/client-athena/src/commands/GetNamedQueryCommand.ts @@ -71,6 +71,7 @@ export interface GetNamedQueryCommandOutput extends GetNamedQueryOutput, __Metad * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetNamedQueryCommand extends $Command diff --git a/clients/client-athena/src/commands/GetNotebookMetadataCommand.ts b/clients/client-athena/src/commands/GetNotebookMetadataCommand.ts index 855863ea28b90..db8f643ee285c 100644 --- a/clients/client-athena/src/commands/GetNotebookMetadataCommand.ts +++ b/clients/client-athena/src/commands/GetNotebookMetadataCommand.ts @@ -73,6 +73,7 @@ export interface GetNotebookMetadataCommandOutput extends GetNotebookMetadataOut * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetNotebookMetadataCommand extends $Command diff --git a/clients/client-athena/src/commands/GetPreparedStatementCommand.ts b/clients/client-athena/src/commands/GetPreparedStatementCommand.ts index 3dcd987c4212b..930d91cb1a54d 100644 --- a/clients/client-athena/src/commands/GetPreparedStatementCommand.ts +++ b/clients/client-athena/src/commands/GetPreparedStatementCommand.ts @@ -74,6 +74,7 @@ export interface GetPreparedStatementCommandOutput extends GetPreparedStatementO * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetPreparedStatementCommand extends $Command diff --git a/clients/client-athena/src/commands/GetQueryExecutionCommand.ts b/clients/client-athena/src/commands/GetQueryExecutionCommand.ts index 4a4aba22322a1..62c63bb04bd14 100644 --- a/clients/client-athena/src/commands/GetQueryExecutionCommand.ts +++ b/clients/client-athena/src/commands/GetQueryExecutionCommand.ts @@ -129,6 +129,7 @@ export interface GetQueryExecutionCommandOutput extends GetQueryExecutionOutput, * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetQueryExecutionCommand extends $Command diff --git a/clients/client-athena/src/commands/GetQueryResultsCommand.ts b/clients/client-athena/src/commands/GetQueryResultsCommand.ts index 4d97853b32e62..f9a9ffe9368bc 100644 --- a/clients/client-athena/src/commands/GetQueryResultsCommand.ts +++ b/clients/client-athena/src/commands/GetQueryResultsCommand.ts @@ -111,6 +111,7 @@ export interface GetQueryResultsCommandOutput extends GetQueryResultsOutput, __M * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetQueryResultsCommand extends $Command diff --git a/clients/client-athena/src/commands/GetQueryRuntimeStatisticsCommand.ts b/clients/client-athena/src/commands/GetQueryRuntimeStatisticsCommand.ts index 930dac8dca38e..faa5063c46b49 100644 --- a/clients/client-athena/src/commands/GetQueryRuntimeStatisticsCommand.ts +++ b/clients/client-athena/src/commands/GetQueryRuntimeStatisticsCommand.ts @@ -127,6 +127,7 @@ export interface GetQueryRuntimeStatisticsCommandOutput extends GetQueryRuntimeS * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetQueryRuntimeStatisticsCommand extends $Command diff --git a/clients/client-athena/src/commands/GetSessionCommand.ts b/clients/client-athena/src/commands/GetSessionCommand.ts index bd8b0387688fb..55de5646237cd 100644 --- a/clients/client-athena/src/commands/GetSessionCommand.ts +++ b/clients/client-athena/src/commands/GetSessionCommand.ts @@ -102,6 +102,7 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetSessionCommand extends $Command diff --git a/clients/client-athena/src/commands/GetSessionStatusCommand.ts b/clients/client-athena/src/commands/GetSessionStatusCommand.ts index 9b18278858a2f..3418b4d710c07 100644 --- a/clients/client-athena/src/commands/GetSessionStatusCommand.ts +++ b/clients/client-athena/src/commands/GetSessionStatusCommand.ts @@ -74,6 +74,7 @@ export interface GetSessionStatusCommandOutput extends GetSessionStatusResponse, * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetSessionStatusCommand extends $Command diff --git a/clients/client-athena/src/commands/GetTableMetadataCommand.ts b/clients/client-athena/src/commands/GetTableMetadataCommand.ts index 8fa053e019c52..4863aba7d0e8d 100644 --- a/clients/client-athena/src/commands/GetTableMetadataCommand.ts +++ b/clients/client-athena/src/commands/GetTableMetadataCommand.ts @@ -96,6 +96,7 @@ export interface GetTableMetadataCommandOutput extends GetTableMetadataOutput, _ * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetTableMetadataCommand extends $Command diff --git a/clients/client-athena/src/commands/GetWorkGroupCommand.ts b/clients/client-athena/src/commands/GetWorkGroupCommand.ts index 718d7c68b1d3f..c5dfbf4e8762d 100644 --- a/clients/client-athena/src/commands/GetWorkGroupCommand.ts +++ b/clients/client-athena/src/commands/GetWorkGroupCommand.ts @@ -105,6 +105,7 @@ export interface GetWorkGroupCommandOutput extends GetWorkGroupOutput, __Metadat * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class GetWorkGroupCommand extends $Command diff --git a/clients/client-athena/src/commands/ImportNotebookCommand.ts b/clients/client-athena/src/commands/ImportNotebookCommand.ts index e049fcccc11ad..773fc71f1b481 100644 --- a/clients/client-athena/src/commands/ImportNotebookCommand.ts +++ b/clients/client-athena/src/commands/ImportNotebookCommand.ts @@ -76,6 +76,7 @@ export interface ImportNotebookCommandOutput extends ImportNotebookOutput, __Met * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ImportNotebookCommand extends $Command diff --git a/clients/client-athena/src/commands/ListApplicationDPUSizesCommand.ts b/clients/client-athena/src/commands/ListApplicationDPUSizesCommand.ts index c3c2c0f3a2bb9..77dd6c0ff57d6 100644 --- a/clients/client-athena/src/commands/ListApplicationDPUSizesCommand.ts +++ b/clients/client-athena/src/commands/ListApplicationDPUSizesCommand.ts @@ -76,6 +76,7 @@ export interface ListApplicationDPUSizesCommandOutput extends ListApplicationDPU * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListApplicationDPUSizesCommand extends $Command diff --git a/clients/client-athena/src/commands/ListCalculationExecutionsCommand.ts b/clients/client-athena/src/commands/ListCalculationExecutionsCommand.ts index 203d90c2b3c07..6d71a02cf7453 100644 --- a/clients/client-athena/src/commands/ListCalculationExecutionsCommand.ts +++ b/clients/client-athena/src/commands/ListCalculationExecutionsCommand.ts @@ -82,6 +82,7 @@ export interface ListCalculationExecutionsCommandOutput extends ListCalculationE * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListCalculationExecutionsCommand extends $Command diff --git a/clients/client-athena/src/commands/ListCapacityReservationsCommand.ts b/clients/client-athena/src/commands/ListCapacityReservationsCommand.ts index f8f3313b3437f..9a03268436f9f 100644 --- a/clients/client-athena/src/commands/ListCapacityReservationsCommand.ts +++ b/clients/client-athena/src/commands/ListCapacityReservationsCommand.ts @@ -80,6 +80,7 @@ export interface ListCapacityReservationsCommandOutput extends ListCapacityReser * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListCapacityReservationsCommand extends $Command diff --git a/clients/client-athena/src/commands/ListDataCatalogsCommand.ts b/clients/client-athena/src/commands/ListDataCatalogsCommand.ts index e371cc79bac96..bcd3a00364f69 100644 --- a/clients/client-athena/src/commands/ListDataCatalogsCommand.ts +++ b/clients/client-athena/src/commands/ListDataCatalogsCommand.ts @@ -78,6 +78,7 @@ export interface ListDataCatalogsCommandOutput extends ListDataCatalogsOutput, _ * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListDataCatalogsCommand extends $Command diff --git a/clients/client-athena/src/commands/ListDatabasesCommand.ts b/clients/client-athena/src/commands/ListDatabasesCommand.ts index 4b074d2ace81d..93b86c6840ca9 100644 --- a/clients/client-athena/src/commands/ListDatabasesCommand.ts +++ b/clients/client-athena/src/commands/ListDatabasesCommand.ts @@ -83,6 +83,7 @@ export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __Metad * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListDatabasesCommand extends $Command diff --git a/clients/client-athena/src/commands/ListEngineVersionsCommand.ts b/clients/client-athena/src/commands/ListEngineVersionsCommand.ts index 352a4164053b4..58af790740d3a 100644 --- a/clients/client-athena/src/commands/ListEngineVersionsCommand.ts +++ b/clients/client-athena/src/commands/ListEngineVersionsCommand.ts @@ -71,6 +71,7 @@ export interface ListEngineVersionsCommandOutput extends ListEngineVersionsOutpu * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListEngineVersionsCommand extends $Command diff --git a/clients/client-athena/src/commands/ListExecutorsCommand.ts b/clients/client-athena/src/commands/ListExecutorsCommand.ts index ec4e4668d6c4b..413e179ab1519 100644 --- a/clients/client-athena/src/commands/ListExecutorsCommand.ts +++ b/clients/client-athena/src/commands/ListExecutorsCommand.ts @@ -82,6 +82,7 @@ export interface ListExecutorsCommandOutput extends ListExecutorsResponse, __Met * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListExecutorsCommand extends $Command diff --git a/clients/client-athena/src/commands/ListNamedQueriesCommand.ts b/clients/client-athena/src/commands/ListNamedQueriesCommand.ts index e4b44637745e2..30f2bb62ab177 100644 --- a/clients/client-athena/src/commands/ListNamedQueriesCommand.ts +++ b/clients/client-athena/src/commands/ListNamedQueriesCommand.ts @@ -70,6 +70,7 @@ export interface ListNamedQueriesCommandOutput extends ListNamedQueriesOutput, _ * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListNamedQueriesCommand extends $Command diff --git a/clients/client-athena/src/commands/ListNotebookMetadataCommand.ts b/clients/client-athena/src/commands/ListNotebookMetadataCommand.ts index 6ece71356d6e1..f1a124b52199d 100644 --- a/clients/client-athena/src/commands/ListNotebookMetadataCommand.ts +++ b/clients/client-athena/src/commands/ListNotebookMetadataCommand.ts @@ -81,6 +81,7 @@ export interface ListNotebookMetadataCommandOutput extends ListNotebookMetadataO * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListNotebookMetadataCommand extends $Command diff --git a/clients/client-athena/src/commands/ListNotebookSessionsCommand.ts b/clients/client-athena/src/commands/ListNotebookSessionsCommand.ts index 012369d6b7746..7a0ad74410350 100644 --- a/clients/client-athena/src/commands/ListNotebookSessionsCommand.ts +++ b/clients/client-athena/src/commands/ListNotebookSessionsCommand.ts @@ -77,6 +77,7 @@ export interface ListNotebookSessionsCommandOutput extends ListNotebookSessionsR * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListNotebookSessionsCommand extends $Command diff --git a/clients/client-athena/src/commands/ListPreparedStatementsCommand.ts b/clients/client-athena/src/commands/ListPreparedStatementsCommand.ts index 7c1a46d446072..9842098eb0a53 100644 --- a/clients/client-athena/src/commands/ListPreparedStatementsCommand.ts +++ b/clients/client-athena/src/commands/ListPreparedStatementsCommand.ts @@ -71,6 +71,7 @@ export interface ListPreparedStatementsCommandOutput extends ListPreparedStateme * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListPreparedStatementsCommand extends $Command diff --git a/clients/client-athena/src/commands/ListQueryExecutionsCommand.ts b/clients/client-athena/src/commands/ListQueryExecutionsCommand.ts index 06d215afb7839..c5bac717063e1 100644 --- a/clients/client-athena/src/commands/ListQueryExecutionsCommand.ts +++ b/clients/client-athena/src/commands/ListQueryExecutionsCommand.ts @@ -71,6 +71,7 @@ export interface ListQueryExecutionsCommandOutput extends ListQueryExecutionsOut * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListQueryExecutionsCommand extends $Command diff --git a/clients/client-athena/src/commands/ListSessionsCommand.ts b/clients/client-athena/src/commands/ListSessionsCommand.ts index 2b1377648707a..d72cbb8395a3e 100644 --- a/clients/client-athena/src/commands/ListSessionsCommand.ts +++ b/clients/client-athena/src/commands/ListSessionsCommand.ts @@ -91,6 +91,7 @@ export interface ListSessionsCommandOutput extends ListSessionsResponse, __Metad * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListSessionsCommand extends $Command diff --git a/clients/client-athena/src/commands/ListTableMetadataCommand.ts b/clients/client-athena/src/commands/ListTableMetadataCommand.ts index a14e287072d96..b7e6fd3132a9a 100644 --- a/clients/client-athena/src/commands/ListTableMetadataCommand.ts +++ b/clients/client-athena/src/commands/ListTableMetadataCommand.ts @@ -101,6 +101,7 @@ export interface ListTableMetadataCommandOutput extends ListTableMetadataOutput, * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListTableMetadataCommand extends $Command diff --git a/clients/client-athena/src/commands/ListTagsForResourceCommand.ts b/clients/client-athena/src/commands/ListTagsForResourceCommand.ts index 9ebe4f5849b68..6da5c46977ac1 100644 --- a/clients/client-athena/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-athena/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-athena/src/commands/ListWorkGroupsCommand.ts b/clients/client-athena/src/commands/ListWorkGroupsCommand.ts index aeed4e3b553f6..1f21ba69e427b 100644 --- a/clients/client-athena/src/commands/ListWorkGroupsCommand.ts +++ b/clients/client-athena/src/commands/ListWorkGroupsCommand.ts @@ -77,6 +77,7 @@ export interface ListWorkGroupsCommandOutput extends ListWorkGroupsOutput, __Met * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class ListWorkGroupsCommand extends $Command diff --git a/clients/client-athena/src/commands/PutCapacityAssignmentConfigurationCommand.ts b/clients/client-athena/src/commands/PutCapacityAssignmentConfigurationCommand.ts index 2d4113b766ebd..769018715061e 100644 --- a/clients/client-athena/src/commands/PutCapacityAssignmentConfigurationCommand.ts +++ b/clients/client-athena/src/commands/PutCapacityAssignmentConfigurationCommand.ts @@ -75,6 +75,7 @@ export interface PutCapacityAssignmentConfigurationCommandOutput * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class PutCapacityAssignmentConfigurationCommand extends $Command diff --git a/clients/client-athena/src/commands/StartCalculationExecutionCommand.ts b/clients/client-athena/src/commands/StartCalculationExecutionCommand.ts index 3931643a64802..c4dc12bccbd47 100644 --- a/clients/client-athena/src/commands/StartCalculationExecutionCommand.ts +++ b/clients/client-athena/src/commands/StartCalculationExecutionCommand.ts @@ -80,6 +80,7 @@ export interface StartCalculationExecutionCommandOutput extends StartCalculation * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class StartCalculationExecutionCommand extends $Command diff --git a/clients/client-athena/src/commands/StartQueryExecutionCommand.ts b/clients/client-athena/src/commands/StartQueryExecutionCommand.ts index a24b365783df8..3d63723859558 100644 --- a/clients/client-athena/src/commands/StartQueryExecutionCommand.ts +++ b/clients/client-athena/src/commands/StartQueryExecutionCommand.ts @@ -97,6 +97,7 @@ export interface StartQueryExecutionCommandOutput extends StartQueryExecutionOut * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class StartQueryExecutionCommand extends $Command diff --git a/clients/client-athena/src/commands/StartSessionCommand.ts b/clients/client-athena/src/commands/StartSessionCommand.ts index 5fef47866743f..15d6a2fcfde8e 100644 --- a/clients/client-athena/src/commands/StartSessionCommand.ts +++ b/clients/client-athena/src/commands/StartSessionCommand.ts @@ -89,6 +89,7 @@ export interface StartSessionCommandOutput extends StartSessionResponse, __Metad * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class StartSessionCommand extends $Command diff --git a/clients/client-athena/src/commands/StopCalculationExecutionCommand.ts b/clients/client-athena/src/commands/StopCalculationExecutionCommand.ts index 7273e4699d3c2..306e136c586e0 100644 --- a/clients/client-athena/src/commands/StopCalculationExecutionCommand.ts +++ b/clients/client-athena/src/commands/StopCalculationExecutionCommand.ts @@ -75,6 +75,7 @@ export interface StopCalculationExecutionCommandOutput extends StopCalculationEx * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class StopCalculationExecutionCommand extends $Command diff --git a/clients/client-athena/src/commands/StopQueryExecutionCommand.ts b/clients/client-athena/src/commands/StopQueryExecutionCommand.ts index 9047f0046a7c1..c178b222cb8ec 100644 --- a/clients/client-athena/src/commands/StopQueryExecutionCommand.ts +++ b/clients/client-athena/src/commands/StopQueryExecutionCommand.ts @@ -62,6 +62,7 @@ export interface StopQueryExecutionCommandOutput extends StopQueryExecutionOutpu * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class StopQueryExecutionCommand extends $Command diff --git a/clients/client-athena/src/commands/TagResourceCommand.ts b/clients/client-athena/src/commands/TagResourceCommand.ts index 11394e9c95b0a..99ce0d0ba76be 100644 --- a/clients/client-athena/src/commands/TagResourceCommand.ts +++ b/clients/client-athena/src/commands/TagResourceCommand.ts @@ -80,6 +80,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-athena/src/commands/TerminateSessionCommand.ts b/clients/client-athena/src/commands/TerminateSessionCommand.ts index eed99ef9899a4..a3a5998399056 100644 --- a/clients/client-athena/src/commands/TerminateSessionCommand.ts +++ b/clients/client-athena/src/commands/TerminateSessionCommand.ts @@ -70,6 +70,7 @@ export interface TerminateSessionCommandOutput extends TerminateSessionResponse, * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class TerminateSessionCommand extends $Command diff --git a/clients/client-athena/src/commands/UntagResourceCommand.ts b/clients/client-athena/src/commands/UntagResourceCommand.ts index 8940a7b9de41b..5474078420206 100644 --- a/clients/client-athena/src/commands/UntagResourceCommand.ts +++ b/clients/client-athena/src/commands/UntagResourceCommand.ts @@ -67,6 +67,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-athena/src/commands/UpdateCapacityReservationCommand.ts b/clients/client-athena/src/commands/UpdateCapacityReservationCommand.ts index 5e82592fd10dd..33d7ded3d2882 100644 --- a/clients/client-athena/src/commands/UpdateCapacityReservationCommand.ts +++ b/clients/client-athena/src/commands/UpdateCapacityReservationCommand.ts @@ -63,6 +63,7 @@ export interface UpdateCapacityReservationCommandOutput extends UpdateCapacityRe * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class UpdateCapacityReservationCommand extends $Command diff --git a/clients/client-athena/src/commands/UpdateDataCatalogCommand.ts b/clients/client-athena/src/commands/UpdateDataCatalogCommand.ts index 50ece0fa59af9..412b0dbe8925f 100644 --- a/clients/client-athena/src/commands/UpdateDataCatalogCommand.ts +++ b/clients/client-athena/src/commands/UpdateDataCatalogCommand.ts @@ -66,6 +66,7 @@ export interface UpdateDataCatalogCommandOutput extends UpdateDataCatalogOutput, * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class UpdateDataCatalogCommand extends $Command diff --git a/clients/client-athena/src/commands/UpdateNamedQueryCommand.ts b/clients/client-athena/src/commands/UpdateNamedQueryCommand.ts index 9373c1b202b89..df6725c1b8bd2 100644 --- a/clients/client-athena/src/commands/UpdateNamedQueryCommand.ts +++ b/clients/client-athena/src/commands/UpdateNamedQueryCommand.ts @@ -65,6 +65,7 @@ export interface UpdateNamedQueryCommandOutput extends UpdateNamedQueryOutput, _ * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class UpdateNamedQueryCommand extends $Command diff --git a/clients/client-athena/src/commands/UpdateNotebookCommand.ts b/clients/client-athena/src/commands/UpdateNotebookCommand.ts index 324b423aae0c7..7ae19c9cfd1c6 100644 --- a/clients/client-athena/src/commands/UpdateNotebookCommand.ts +++ b/clients/client-athena/src/commands/UpdateNotebookCommand.ts @@ -68,6 +68,7 @@ export interface UpdateNotebookCommandOutput extends UpdateNotebookOutput, __Met * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class UpdateNotebookCommand extends $Command diff --git a/clients/client-athena/src/commands/UpdateNotebookMetadataCommand.ts b/clients/client-athena/src/commands/UpdateNotebookMetadataCommand.ts index 4b90f74486c71..459f05510653e 100644 --- a/clients/client-athena/src/commands/UpdateNotebookMetadataCommand.ts +++ b/clients/client-athena/src/commands/UpdateNotebookMetadataCommand.ts @@ -66,6 +66,7 @@ export interface UpdateNotebookMetadataCommandOutput extends UpdateNotebookMetad * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class UpdateNotebookMetadataCommand extends $Command diff --git a/clients/client-athena/src/commands/UpdatePreparedStatementCommand.ts b/clients/client-athena/src/commands/UpdatePreparedStatementCommand.ts index c30c71f2e40f0..22251aa52db27 100644 --- a/clients/client-athena/src/commands/UpdatePreparedStatementCommand.ts +++ b/clients/client-athena/src/commands/UpdatePreparedStatementCommand.ts @@ -67,6 +67,7 @@ export interface UpdatePreparedStatementCommandOutput extends UpdatePreparedStat * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class UpdatePreparedStatementCommand extends $Command diff --git a/clients/client-athena/src/commands/UpdateWorkGroupCommand.ts b/clients/client-athena/src/commands/UpdateWorkGroupCommand.ts index a7628854ebb71..f8c32ab142711 100644 --- a/clients/client-athena/src/commands/UpdateWorkGroupCommand.ts +++ b/clients/client-athena/src/commands/UpdateWorkGroupCommand.ts @@ -102,6 +102,7 @@ export interface UpdateWorkGroupCommandOutput extends UpdateWorkGroupOutput, __M * @throws {@link AthenaServiceException} *

Base exception class for all service exceptions from Athena service.

* + * * @public */ export class UpdateWorkGroupCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/AssociateAssessmentReportEvidenceFolderCommand.ts b/clients/client-auditmanager/src/commands/AssociateAssessmentReportEvidenceFolderCommand.ts index e600abf1894b7..a7f8b447cf554 100644 --- a/clients/client-auditmanager/src/commands/AssociateAssessmentReportEvidenceFolderCommand.ts +++ b/clients/client-auditmanager/src/commands/AssociateAssessmentReportEvidenceFolderCommand.ts @@ -78,6 +78,7 @@ export interface AssociateAssessmentReportEvidenceFolderCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class AssociateAssessmentReportEvidenceFolderCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/BatchAssociateAssessmentReportEvidenceCommand.ts b/clients/client-auditmanager/src/commands/BatchAssociateAssessmentReportEvidenceCommand.ts index 3be6efd6afc13..9437735b06e59 100644 --- a/clients/client-auditmanager/src/commands/BatchAssociateAssessmentReportEvidenceCommand.ts +++ b/clients/client-auditmanager/src/commands/BatchAssociateAssessmentReportEvidenceCommand.ts @@ -92,6 +92,7 @@ export interface BatchAssociateAssessmentReportEvidenceCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class BatchAssociateAssessmentReportEvidenceCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/BatchCreateDelegationByAssessmentCommand.ts b/clients/client-auditmanager/src/commands/BatchCreateDelegationByAssessmentCommand.ts index cafec54614aed..61ce09227d803 100644 --- a/clients/client-auditmanager/src/commands/BatchCreateDelegationByAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/BatchCreateDelegationByAssessmentCommand.ts @@ -113,6 +113,7 @@ export interface BatchCreateDelegationByAssessmentCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class BatchCreateDelegationByAssessmentCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/BatchDeleteDelegationByAssessmentCommand.ts b/clients/client-auditmanager/src/commands/BatchDeleteDelegationByAssessmentCommand.ts index e56faed6d2b17..ac9ec721a9342 100644 --- a/clients/client-auditmanager/src/commands/BatchDeleteDelegationByAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/BatchDeleteDelegationByAssessmentCommand.ts @@ -87,6 +87,7 @@ export interface BatchDeleteDelegationByAssessmentCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class BatchDeleteDelegationByAssessmentCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/BatchDisassociateAssessmentReportEvidenceCommand.ts b/clients/client-auditmanager/src/commands/BatchDisassociateAssessmentReportEvidenceCommand.ts index 3cb8df99d285e..e4070913f1553 100644 --- a/clients/client-auditmanager/src/commands/BatchDisassociateAssessmentReportEvidenceCommand.ts +++ b/clients/client-auditmanager/src/commands/BatchDisassociateAssessmentReportEvidenceCommand.ts @@ -92,6 +92,7 @@ export interface BatchDisassociateAssessmentReportEvidenceCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class BatchDisassociateAssessmentReportEvidenceCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/BatchImportEvidenceToAssessmentControlCommand.ts b/clients/client-auditmanager/src/commands/BatchImportEvidenceToAssessmentControlCommand.ts index 5828ffb4ee676..855ba500e148a 100644 --- a/clients/client-auditmanager/src/commands/BatchImportEvidenceToAssessmentControlCommand.ts +++ b/clients/client-auditmanager/src/commands/BatchImportEvidenceToAssessmentControlCommand.ts @@ -127,6 +127,7 @@ export interface BatchImportEvidenceToAssessmentControlCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class BatchImportEvidenceToAssessmentControlCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/CreateAssessmentCommand.ts b/clients/client-auditmanager/src/commands/CreateAssessmentCommand.ts index 61e99dbda1ce6..6364bdf366b64 100644 --- a/clients/client-auditmanager/src/commands/CreateAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/CreateAssessmentCommand.ts @@ -231,6 +231,7 @@ export interface CreateAssessmentCommandOutput extends CreateAssessmentResponse, * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class CreateAssessmentCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/CreateAssessmentFrameworkCommand.ts b/clients/client-auditmanager/src/commands/CreateAssessmentFrameworkCommand.ts index 57681e76766c4..38997ead4ba48 100644 --- a/clients/client-auditmanager/src/commands/CreateAssessmentFrameworkCommand.ts +++ b/clients/client-auditmanager/src/commands/CreateAssessmentFrameworkCommand.ts @@ -153,6 +153,7 @@ export interface CreateAssessmentFrameworkCommandOutput extends CreateAssessment * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class CreateAssessmentFrameworkCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/CreateAssessmentReportCommand.ts b/clients/client-auditmanager/src/commands/CreateAssessmentReportCommand.ts index 3d805652cc29a..a1c45dda867c3 100644 --- a/clients/client-auditmanager/src/commands/CreateAssessmentReportCommand.ts +++ b/clients/client-auditmanager/src/commands/CreateAssessmentReportCommand.ts @@ -87,6 +87,7 @@ export interface CreateAssessmentReportCommandOutput extends CreateAssessmentRep * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class CreateAssessmentReportCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/CreateControlCommand.ts b/clients/client-auditmanager/src/commands/CreateControlCommand.ts index 96d985076aa0b..00d94d7f0bd39 100644 --- a/clients/client-auditmanager/src/commands/CreateControlCommand.ts +++ b/clients/client-auditmanager/src/commands/CreateControlCommand.ts @@ -134,6 +134,7 @@ export interface CreateControlCommandOutput extends CreateControlResponse, __Met * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class CreateControlCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/DeleteAssessmentCommand.ts b/clients/client-auditmanager/src/commands/DeleteAssessmentCommand.ts index b988706a8cc41..05dfb6b768bc6 100644 --- a/clients/client-auditmanager/src/commands/DeleteAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/DeleteAssessmentCommand.ts @@ -67,6 +67,7 @@ export interface DeleteAssessmentCommandOutput extends DeleteAssessmentResponse, * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class DeleteAssessmentCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkCommand.ts b/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkCommand.ts index 41754acf0740e..4078d53b15412 100644 --- a/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkCommand.ts +++ b/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkCommand.ts @@ -67,6 +67,7 @@ export interface DeleteAssessmentFrameworkCommandOutput extends DeleteAssessment * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class DeleteAssessmentFrameworkCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkShareCommand.ts b/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkShareCommand.ts index 877ee975f40e2..355df969e3279 100644 --- a/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkShareCommand.ts +++ b/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkShareCommand.ts @@ -73,6 +73,7 @@ export interface DeleteAssessmentFrameworkShareCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class DeleteAssessmentFrameworkShareCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/DeleteAssessmentReportCommand.ts b/clients/client-auditmanager/src/commands/DeleteAssessmentReportCommand.ts index e1b7c156ee52a..e0e191e8490dc 100644 --- a/clients/client-auditmanager/src/commands/DeleteAssessmentReportCommand.ts +++ b/clients/client-auditmanager/src/commands/DeleteAssessmentReportCommand.ts @@ -89,6 +89,7 @@ export interface DeleteAssessmentReportCommandOutput extends DeleteAssessmentRep * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class DeleteAssessmentReportCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/DeleteControlCommand.ts b/clients/client-auditmanager/src/commands/DeleteControlCommand.ts index 8b861e3b0704b..59b004859be8a 100644 --- a/clients/client-auditmanager/src/commands/DeleteControlCommand.ts +++ b/clients/client-auditmanager/src/commands/DeleteControlCommand.ts @@ -73,6 +73,7 @@ export interface DeleteControlCommandOutput extends DeleteControlResponse, __Met * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class DeleteControlCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/DeregisterAccountCommand.ts b/clients/client-auditmanager/src/commands/DeregisterAccountCommand.ts index 4f35bfe34ba22..fc845321d9d80 100644 --- a/clients/client-auditmanager/src/commands/DeregisterAccountCommand.ts +++ b/clients/client-auditmanager/src/commands/DeregisterAccountCommand.ts @@ -76,6 +76,7 @@ export interface DeregisterAccountCommandOutput extends DeregisterAccountRespons * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class DeregisterAccountCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/DeregisterOrganizationAdminAccountCommand.ts b/clients/client-auditmanager/src/commands/DeregisterOrganizationAdminAccountCommand.ts index c066eb3d1146f..351140ab09890 100644 --- a/clients/client-auditmanager/src/commands/DeregisterOrganizationAdminAccountCommand.ts +++ b/clients/client-auditmanager/src/commands/DeregisterOrganizationAdminAccountCommand.ts @@ -134,6 +134,7 @@ export interface DeregisterOrganizationAdminAccountCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class DeregisterOrganizationAdminAccountCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/DisassociateAssessmentReportEvidenceFolderCommand.ts b/clients/client-auditmanager/src/commands/DisassociateAssessmentReportEvidenceFolderCommand.ts index cf84526f953be..6e9043bd84df2 100644 --- a/clients/client-auditmanager/src/commands/DisassociateAssessmentReportEvidenceFolderCommand.ts +++ b/clients/client-auditmanager/src/commands/DisassociateAssessmentReportEvidenceFolderCommand.ts @@ -77,6 +77,7 @@ export interface DisassociateAssessmentReportEvidenceFolderCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class DisassociateAssessmentReportEvidenceFolderCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetAccountStatusCommand.ts b/clients/client-auditmanager/src/commands/GetAccountStatusCommand.ts index cf842ef10d550..5b3a8bc7cd28a 100644 --- a/clients/client-auditmanager/src/commands/GetAccountStatusCommand.ts +++ b/clients/client-auditmanager/src/commands/GetAccountStatusCommand.ts @@ -57,6 +57,7 @@ export interface GetAccountStatusCommandOutput extends GetAccountStatusResponse, * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetAccountStatusCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetAssessmentCommand.ts b/clients/client-auditmanager/src/commands/GetAssessmentCommand.ts index 7507c6685466f..e26e1df4e70e7 100644 --- a/clients/client-auditmanager/src/commands/GetAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/GetAssessmentCommand.ts @@ -193,6 +193,7 @@ export interface GetAssessmentCommandOutput extends GetAssessmentResponse, __Met * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetAssessmentCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetAssessmentFrameworkCommand.ts b/clients/client-auditmanager/src/commands/GetAssessmentFrameworkCommand.ts index ebf9b255145de..66dae4ca2d87f 100644 --- a/clients/client-auditmanager/src/commands/GetAssessmentFrameworkCommand.ts +++ b/clients/client-auditmanager/src/commands/GetAssessmentFrameworkCommand.ts @@ -131,6 +131,7 @@ export interface GetAssessmentFrameworkCommandOutput extends GetAssessmentFramew * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetAssessmentFrameworkCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetAssessmentReportUrlCommand.ts b/clients/client-auditmanager/src/commands/GetAssessmentReportUrlCommand.ts index ef97bb2312d1f..e15ef6f57ffc5 100644 --- a/clients/client-auditmanager/src/commands/GetAssessmentReportUrlCommand.ts +++ b/clients/client-auditmanager/src/commands/GetAssessmentReportUrlCommand.ts @@ -73,6 +73,7 @@ export interface GetAssessmentReportUrlCommandOutput extends GetAssessmentReport * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetAssessmentReportUrlCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetChangeLogsCommand.ts b/clients/client-auditmanager/src/commands/GetChangeLogsCommand.ts index 860b78d1954b3..6e233717bc4dd 100644 --- a/clients/client-auditmanager/src/commands/GetChangeLogsCommand.ts +++ b/clients/client-auditmanager/src/commands/GetChangeLogsCommand.ts @@ -82,6 +82,7 @@ export interface GetChangeLogsCommandOutput extends GetChangeLogsResponse, __Met * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetChangeLogsCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetControlCommand.ts b/clients/client-auditmanager/src/commands/GetControlCommand.ts index 9835e65c06611..580addd5bc585 100644 --- a/clients/client-auditmanager/src/commands/GetControlCommand.ts +++ b/clients/client-auditmanager/src/commands/GetControlCommand.ts @@ -102,6 +102,7 @@ export interface GetControlCommandOutput extends GetControlResponse, __MetadataB * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetControlCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetDelegationsCommand.ts b/clients/client-auditmanager/src/commands/GetDelegationsCommand.ts index a2a9d36f3647c..4588c05147991 100644 --- a/clients/client-auditmanager/src/commands/GetDelegationsCommand.ts +++ b/clients/client-auditmanager/src/commands/GetDelegationsCommand.ts @@ -82,6 +82,7 @@ export interface GetDelegationsCommandOutput extends GetDelegationsResponse, __M * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetDelegationsCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetEvidenceByEvidenceFolderCommand.ts b/clients/client-auditmanager/src/commands/GetEvidenceByEvidenceFolderCommand.ts index a5ce04479a9ea..65559bb19035e 100644 --- a/clients/client-auditmanager/src/commands/GetEvidenceByEvidenceFolderCommand.ts +++ b/clients/client-auditmanager/src/commands/GetEvidenceByEvidenceFolderCommand.ts @@ -105,6 +105,7 @@ export interface GetEvidenceByEvidenceFolderCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetEvidenceByEvidenceFolderCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetEvidenceCommand.ts b/clients/client-auditmanager/src/commands/GetEvidenceCommand.ts index 9fdd922f946ce..4613f19b778e9 100644 --- a/clients/client-auditmanager/src/commands/GetEvidenceCommand.ts +++ b/clients/client-auditmanager/src/commands/GetEvidenceCommand.ts @@ -96,6 +96,7 @@ export interface GetEvidenceCommandOutput extends GetEvidenceResponse, __Metadat * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetEvidenceCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetEvidenceFileUploadUrlCommand.ts b/clients/client-auditmanager/src/commands/GetEvidenceFileUploadUrlCommand.ts index 42b264be6d379..4f59627637deb 100644 --- a/clients/client-auditmanager/src/commands/GetEvidenceFileUploadUrlCommand.ts +++ b/clients/client-auditmanager/src/commands/GetEvidenceFileUploadUrlCommand.ts @@ -92,6 +92,7 @@ export interface GetEvidenceFileUploadUrlCommandOutput extends GetEvidenceFileUp * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetEvidenceFileUploadUrlCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetEvidenceFolderCommand.ts b/clients/client-auditmanager/src/commands/GetEvidenceFolderCommand.ts index 65e287cd07de8..ca60ccdc9fa69 100644 --- a/clients/client-auditmanager/src/commands/GetEvidenceFolderCommand.ts +++ b/clients/client-auditmanager/src/commands/GetEvidenceFolderCommand.ts @@ -90,6 +90,7 @@ export interface GetEvidenceFolderCommandOutput extends GetEvidenceFolderRespons * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetEvidenceFolderCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentCommand.ts b/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentCommand.ts index 60d9834c0beac..9e3e41b7d5631 100644 --- a/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentCommand.ts @@ -98,6 +98,7 @@ export interface GetEvidenceFoldersByAssessmentCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetEvidenceFoldersByAssessmentCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentControlCommand.ts b/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentControlCommand.ts index ce1270ce420c0..ffb442cf8b5a2 100644 --- a/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentControlCommand.ts +++ b/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentControlCommand.ts @@ -105,6 +105,7 @@ export interface GetEvidenceFoldersByAssessmentControlCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetEvidenceFoldersByAssessmentControlCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetInsightsByAssessmentCommand.ts b/clients/client-auditmanager/src/commands/GetInsightsByAssessmentCommand.ts index b2f2ede2d5baf..88f0b3314012f 100644 --- a/clients/client-auditmanager/src/commands/GetInsightsByAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/GetInsightsByAssessmentCommand.ts @@ -76,6 +76,7 @@ export interface GetInsightsByAssessmentCommandOutput extends GetInsightsByAsses * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetInsightsByAssessmentCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetInsightsCommand.ts b/clients/client-auditmanager/src/commands/GetInsightsCommand.ts index 9e010c586959e..669b90c51b690 100644 --- a/clients/client-auditmanager/src/commands/GetInsightsCommand.ts +++ b/clients/client-auditmanager/src/commands/GetInsightsCommand.ts @@ -69,6 +69,7 @@ export interface GetInsightsCommandOutput extends GetInsightsResponse, __Metadat * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetInsightsCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetOrganizationAdminAccountCommand.ts b/clients/client-auditmanager/src/commands/GetOrganizationAdminAccountCommand.ts index 4de917e75574f..1f345bfac936d 100644 --- a/clients/client-auditmanager/src/commands/GetOrganizationAdminAccountCommand.ts +++ b/clients/client-auditmanager/src/commands/GetOrganizationAdminAccountCommand.ts @@ -74,6 +74,7 @@ export interface GetOrganizationAdminAccountCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetOrganizationAdminAccountCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetServicesInScopeCommand.ts b/clients/client-auditmanager/src/commands/GetServicesInScopeCommand.ts index 9cc3a7b858b76..5e95d1fbb7409 100644 --- a/clients/client-auditmanager/src/commands/GetServicesInScopeCommand.ts +++ b/clients/client-auditmanager/src/commands/GetServicesInScopeCommand.ts @@ -82,6 +82,7 @@ export interface GetServicesInScopeCommandOutput extends GetServicesInScopeRespo * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetServicesInScopeCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/GetSettingsCommand.ts b/clients/client-auditmanager/src/commands/GetSettingsCommand.ts index d294ffd021dca..73a5be00eef59 100644 --- a/clients/client-auditmanager/src/commands/GetSettingsCommand.ts +++ b/clients/client-auditmanager/src/commands/GetSettingsCommand.ts @@ -90,6 +90,7 @@ export interface GetSettingsCommandOutput extends GetSettingsResponse, __Metadat * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class GetSettingsCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/ListAssessmentControlInsightsByControlDomainCommand.ts b/clients/client-auditmanager/src/commands/ListAssessmentControlInsightsByControlDomainCommand.ts index 64bfd051a3430..e638078686166 100644 --- a/clients/client-auditmanager/src/commands/ListAssessmentControlInsightsByControlDomainCommand.ts +++ b/clients/client-auditmanager/src/commands/ListAssessmentControlInsightsByControlDomainCommand.ts @@ -101,6 +101,7 @@ export interface ListAssessmentControlInsightsByControlDomainCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class ListAssessmentControlInsightsByControlDomainCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/ListAssessmentFrameworkShareRequestsCommand.ts b/clients/client-auditmanager/src/commands/ListAssessmentFrameworkShareRequestsCommand.ts index b03843b44903c..4eddc2f892460 100644 --- a/clients/client-auditmanager/src/commands/ListAssessmentFrameworkShareRequestsCommand.ts +++ b/clients/client-auditmanager/src/commands/ListAssessmentFrameworkShareRequestsCommand.ts @@ -96,6 +96,7 @@ export interface ListAssessmentFrameworkShareRequestsCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class ListAssessmentFrameworkShareRequestsCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/ListAssessmentFrameworksCommand.ts b/clients/client-auditmanager/src/commands/ListAssessmentFrameworksCommand.ts index b11140a834f0f..7ca7ce3d7c47f 100644 --- a/clients/client-auditmanager/src/commands/ListAssessmentFrameworksCommand.ts +++ b/clients/client-auditmanager/src/commands/ListAssessmentFrameworksCommand.ts @@ -88,6 +88,7 @@ export interface ListAssessmentFrameworksCommandOutput extends ListAssessmentFra * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class ListAssessmentFrameworksCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/ListAssessmentReportsCommand.ts b/clients/client-auditmanager/src/commands/ListAssessmentReportsCommand.ts index 6f791eb89cda3..0ce43342abb85 100644 --- a/clients/client-auditmanager/src/commands/ListAssessmentReportsCommand.ts +++ b/clients/client-auditmanager/src/commands/ListAssessmentReportsCommand.ts @@ -83,6 +83,7 @@ export interface ListAssessmentReportsCommandOutput extends ListAssessmentReport * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class ListAssessmentReportsCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/ListAssessmentsCommand.ts b/clients/client-auditmanager/src/commands/ListAssessmentsCommand.ts index b4dca8fd7fbf8..95c625a2cf3dd 100644 --- a/clients/client-auditmanager/src/commands/ListAssessmentsCommand.ts +++ b/clients/client-auditmanager/src/commands/ListAssessmentsCommand.ts @@ -103,6 +103,7 @@ export interface ListAssessmentsCommandOutput extends ListAssessmentsResponse, _ * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class ListAssessmentsCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/ListControlDomainInsightsByAssessmentCommand.ts b/clients/client-auditmanager/src/commands/ListControlDomainInsightsByAssessmentCommand.ts index f449284041de0..6278ea890fc63 100644 --- a/clients/client-auditmanager/src/commands/ListControlDomainInsightsByAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/ListControlDomainInsightsByAssessmentCommand.ts @@ -106,6 +106,7 @@ export interface ListControlDomainInsightsByAssessmentCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class ListControlDomainInsightsByAssessmentCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/ListControlDomainInsightsCommand.ts b/clients/client-auditmanager/src/commands/ListControlDomainInsightsCommand.ts index d22998434caca..12807512c8cce 100644 --- a/clients/client-auditmanager/src/commands/ListControlDomainInsightsCommand.ts +++ b/clients/client-auditmanager/src/commands/ListControlDomainInsightsCommand.ts @@ -97,6 +97,7 @@ export interface ListControlDomainInsightsCommandOutput extends ListControlDomai * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class ListControlDomainInsightsCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/ListControlInsightsByControlDomainCommand.ts b/clients/client-auditmanager/src/commands/ListControlInsightsByControlDomainCommand.ts index 4ac4b9705c42c..ae8851dad7fc9 100644 --- a/clients/client-auditmanager/src/commands/ListControlInsightsByControlDomainCommand.ts +++ b/clients/client-auditmanager/src/commands/ListControlInsightsByControlDomainCommand.ts @@ -98,6 +98,7 @@ export interface ListControlInsightsByControlDomainCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class ListControlInsightsByControlDomainCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/ListControlsCommand.ts b/clients/client-auditmanager/src/commands/ListControlsCommand.ts index 7482891cc9901..0aac214cb1a59 100644 --- a/clients/client-auditmanager/src/commands/ListControlsCommand.ts +++ b/clients/client-auditmanager/src/commands/ListControlsCommand.ts @@ -79,6 +79,7 @@ export interface ListControlsCommandOutput extends ListControlsResponse, __Metad * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class ListControlsCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/ListKeywordsForDataSourceCommand.ts b/clients/client-auditmanager/src/commands/ListKeywordsForDataSourceCommand.ts index a7f043e1ea1e5..42442192b4714 100644 --- a/clients/client-auditmanager/src/commands/ListKeywordsForDataSourceCommand.ts +++ b/clients/client-auditmanager/src/commands/ListKeywordsForDataSourceCommand.ts @@ -72,6 +72,7 @@ export interface ListKeywordsForDataSourceCommandOutput extends ListKeywordsForD * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class ListKeywordsForDataSourceCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/ListNotificationsCommand.ts b/clients/client-auditmanager/src/commands/ListNotificationsCommand.ts index 477591e9ff9e9..328aef0c57573 100644 --- a/clients/client-auditmanager/src/commands/ListNotificationsCommand.ts +++ b/clients/client-auditmanager/src/commands/ListNotificationsCommand.ts @@ -83,6 +83,7 @@ export interface ListNotificationsCommandOutput extends ListNotificationsRespons * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class ListNotificationsCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/ListTagsForResourceCommand.ts b/clients/client-auditmanager/src/commands/ListTagsForResourceCommand.ts index 3713ce00138cd..890dcc6bdf3f0 100644 --- a/clients/client-auditmanager/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-auditmanager/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/RegisterAccountCommand.ts b/clients/client-auditmanager/src/commands/RegisterAccountCommand.ts index 2b98901a6f6d7..e9a42a63d4dba 100644 --- a/clients/client-auditmanager/src/commands/RegisterAccountCommand.ts +++ b/clients/client-auditmanager/src/commands/RegisterAccountCommand.ts @@ -73,6 +73,7 @@ export interface RegisterAccountCommandOutput extends RegisterAccountResponse, _ * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class RegisterAccountCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/RegisterOrganizationAdminAccountCommand.ts b/clients/client-auditmanager/src/commands/RegisterOrganizationAdminAccountCommand.ts index bc176e78315c9..b5384db79ce23 100644 --- a/clients/client-auditmanager/src/commands/RegisterOrganizationAdminAccountCommand.ts +++ b/clients/client-auditmanager/src/commands/RegisterOrganizationAdminAccountCommand.ts @@ -76,6 +76,7 @@ export interface RegisterOrganizationAdminAccountCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class RegisterOrganizationAdminAccountCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/StartAssessmentFrameworkShareCommand.ts b/clients/client-auditmanager/src/commands/StartAssessmentFrameworkShareCommand.ts index 02b0eeb943b11..cbd65912918a0 100644 --- a/clients/client-auditmanager/src/commands/StartAssessmentFrameworkShareCommand.ts +++ b/clients/client-auditmanager/src/commands/StartAssessmentFrameworkShareCommand.ts @@ -133,6 +133,7 @@ export interface StartAssessmentFrameworkShareCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class StartAssessmentFrameworkShareCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/TagResourceCommand.ts b/clients/client-auditmanager/src/commands/TagResourceCommand.ts index ef2e1fa7b283e..6fa08ca709f25 100644 --- a/clients/client-auditmanager/src/commands/TagResourceCommand.ts +++ b/clients/client-auditmanager/src/commands/TagResourceCommand.ts @@ -66,6 +66,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/UntagResourceCommand.ts b/clients/client-auditmanager/src/commands/UntagResourceCommand.ts index cf4ddd9260884..a4b43b110408d 100644 --- a/clients/client-auditmanager/src/commands/UntagResourceCommand.ts +++ b/clients/client-auditmanager/src/commands/UntagResourceCommand.ts @@ -66,6 +66,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/UpdateAssessmentCommand.ts b/clients/client-auditmanager/src/commands/UpdateAssessmentCommand.ts index 38e72f71101df..6c22c63515ff2 100644 --- a/clients/client-auditmanager/src/commands/UpdateAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateAssessmentCommand.ts @@ -222,6 +222,7 @@ export interface UpdateAssessmentCommandOutput extends UpdateAssessmentResponse, * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class UpdateAssessmentCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/UpdateAssessmentControlCommand.ts b/clients/client-auditmanager/src/commands/UpdateAssessmentControlCommand.ts index a03fbc3ab0d58..70a4869526167 100644 --- a/clients/client-auditmanager/src/commands/UpdateAssessmentControlCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateAssessmentControlCommand.ts @@ -96,6 +96,7 @@ export interface UpdateAssessmentControlCommandOutput extends UpdateAssessmentCo * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class UpdateAssessmentControlCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/UpdateAssessmentControlSetStatusCommand.ts b/clients/client-auditmanager/src/commands/UpdateAssessmentControlSetStatusCommand.ts index 8c025dc92c1d6..effa54bbdfd9f 100644 --- a/clients/client-auditmanager/src/commands/UpdateAssessmentControlSetStatusCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateAssessmentControlSetStatusCommand.ts @@ -130,6 +130,7 @@ export interface UpdateAssessmentControlSetStatusCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class UpdateAssessmentControlSetStatusCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkCommand.ts b/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkCommand.ts index 00327ea5b119e..b9b451215ef2c 100644 --- a/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkCommand.ts @@ -146,6 +146,7 @@ export interface UpdateAssessmentFrameworkCommandOutput extends UpdateAssessment * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class UpdateAssessmentFrameworkCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkShareCommand.ts b/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkShareCommand.ts index c977afb0bdd4e..c1f38c7c2d54c 100644 --- a/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkShareCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkShareCommand.ts @@ -102,6 +102,7 @@ export interface UpdateAssessmentFrameworkShareCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class UpdateAssessmentFrameworkShareCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/UpdateAssessmentStatusCommand.ts b/clients/client-auditmanager/src/commands/UpdateAssessmentStatusCommand.ts index 1c5e7cdb9f6ba..09870146a5684 100644 --- a/clients/client-auditmanager/src/commands/UpdateAssessmentStatusCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateAssessmentStatusCommand.ts @@ -199,6 +199,7 @@ export interface UpdateAssessmentStatusCommandOutput extends UpdateAssessmentSta * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class UpdateAssessmentStatusCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/UpdateControlCommand.ts b/clients/client-auditmanager/src/commands/UpdateControlCommand.ts index 4158eb5cf1d9d..cfa9089502bc9 100644 --- a/clients/client-auditmanager/src/commands/UpdateControlCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateControlCommand.ts @@ -127,6 +127,7 @@ export interface UpdateControlCommandOutput extends UpdateControlResponse, __Met * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class UpdateControlCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/UpdateSettingsCommand.ts b/clients/client-auditmanager/src/commands/UpdateSettingsCommand.ts index 3123d1b692a67..faec629be217a 100644 --- a/clients/client-auditmanager/src/commands/UpdateSettingsCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateSettingsCommand.ts @@ -117,6 +117,7 @@ export interface UpdateSettingsCommandOutput extends UpdateSettingsResponse, __M * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class UpdateSettingsCommand extends $Command diff --git a/clients/client-auditmanager/src/commands/ValidateAssessmentReportIntegrityCommand.ts b/clients/client-auditmanager/src/commands/ValidateAssessmentReportIntegrityCommand.ts index 0f5d4c33aacab..553030441da38 100644 --- a/clients/client-auditmanager/src/commands/ValidateAssessmentReportIntegrityCommand.ts +++ b/clients/client-auditmanager/src/commands/ValidateAssessmentReportIntegrityCommand.ts @@ -83,6 +83,7 @@ export interface ValidateAssessmentReportIntegrityCommandOutput * @throws {@link AuditManagerServiceException} *

Base exception class for all service exceptions from AuditManager service.

* + * * @public */ export class ValidateAssessmentReportIntegrityCommand extends $Command diff --git a/clients/client-auto-scaling-plans/src/commands/CreateScalingPlanCommand.ts b/clients/client-auto-scaling-plans/src/commands/CreateScalingPlanCommand.ts index 93e700f23240a..81dce1d442623 100644 --- a/clients/client-auto-scaling-plans/src/commands/CreateScalingPlanCommand.ts +++ b/clients/client-auto-scaling-plans/src/commands/CreateScalingPlanCommand.ts @@ -136,6 +136,7 @@ export interface CreateScalingPlanCommandOutput extends CreateScalingPlanRespons * @throws {@link AutoScalingPlansServiceException} *

Base exception class for all service exceptions from AutoScalingPlans service.

* + * * @public */ export class CreateScalingPlanCommand extends $Command diff --git a/clients/client-auto-scaling-plans/src/commands/DeleteScalingPlanCommand.ts b/clients/client-auto-scaling-plans/src/commands/DeleteScalingPlanCommand.ts index 0ff867f157a39..1dd1a46b4398f 100644 --- a/clients/client-auto-scaling-plans/src/commands/DeleteScalingPlanCommand.ts +++ b/clients/client-auto-scaling-plans/src/commands/DeleteScalingPlanCommand.ts @@ -71,6 +71,7 @@ export interface DeleteScalingPlanCommandOutput extends DeleteScalingPlanRespons * @throws {@link AutoScalingPlansServiceException} *

Base exception class for all service exceptions from AutoScalingPlans service.

* + * * @public */ export class DeleteScalingPlanCommand extends $Command diff --git a/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlanResourcesCommand.ts b/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlanResourcesCommand.ts index 606498cd4622a..f29e920442e46 100644 --- a/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlanResourcesCommand.ts +++ b/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlanResourcesCommand.ts @@ -116,6 +116,7 @@ export interface DescribeScalingPlanResourcesCommandOutput * @throws {@link AutoScalingPlansServiceException} *

Base exception class for all service exceptions from AutoScalingPlans service.

* + * * @public */ export class DescribeScalingPlanResourcesCommand extends $Command diff --git a/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlansCommand.ts b/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlansCommand.ts index e7ebfb8b7505b..e1a33aa6f4fe5 100644 --- a/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlansCommand.ts +++ b/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlansCommand.ts @@ -163,6 +163,7 @@ export interface DescribeScalingPlansCommandOutput extends DescribeScalingPlansR * @throws {@link AutoScalingPlansServiceException} *

Base exception class for all service exceptions from AutoScalingPlans service.

* + * * @public */ export class DescribeScalingPlansCommand extends $Command diff --git a/clients/client-auto-scaling-plans/src/commands/GetScalingPlanResourceForecastDataCommand.ts b/clients/client-auto-scaling-plans/src/commands/GetScalingPlanResourceForecastDataCommand.ts index a1649b7ad8c02..612e2a89d4381 100644 --- a/clients/client-auto-scaling-plans/src/commands/GetScalingPlanResourceForecastDataCommand.ts +++ b/clients/client-auto-scaling-plans/src/commands/GetScalingPlanResourceForecastDataCommand.ts @@ -84,6 +84,7 @@ export interface GetScalingPlanResourceForecastDataCommandOutput * @throws {@link AutoScalingPlansServiceException} *

Base exception class for all service exceptions from AutoScalingPlans service.

* + * * @public */ export class GetScalingPlanResourceForecastDataCommand extends $Command diff --git a/clients/client-auto-scaling-plans/src/commands/UpdateScalingPlanCommand.ts b/clients/client-auto-scaling-plans/src/commands/UpdateScalingPlanCommand.ts index c2b022817c1dc..70cf6b4b1ae6a 100644 --- a/clients/client-auto-scaling-plans/src/commands/UpdateScalingPlanCommand.ts +++ b/clients/client-auto-scaling-plans/src/commands/UpdateScalingPlanCommand.ts @@ -136,6 +136,7 @@ export interface UpdateScalingPlanCommandOutput extends UpdateScalingPlanRespons * @throws {@link AutoScalingPlansServiceException} *

Base exception class for all service exceptions from AutoScalingPlans service.

* + * * @public */ export class UpdateScalingPlanCommand extends $Command diff --git a/clients/client-auto-scaling/src/commands/AttachInstancesCommand.ts b/clients/client-auto-scaling/src/commands/AttachInstancesCommand.ts index 0c02e8eff09ae..032e47b5c2ece 100644 --- a/clients/client-auto-scaling/src/commands/AttachInstancesCommand.ts +++ b/clients/client-auto-scaling/src/commands/AttachInstancesCommand.ts @@ -72,21 +72,24 @@ export interface AttachInstancesCommandOutput extends __MetadataBearer {} * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To attach an instance to an Auto Scaling group * ```javascript * // This example attaches the specified instance to the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "InstanceIds": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * InstanceIds: [ * "i-93633f9b" * ] * }; * const command = new AttachInstancesCommand(input); - * await client.send(command); - * // example id: autoscaling-attach-instances-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AttachInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/AttachLoadBalancerTargetGroupsCommand.ts b/clients/client-auto-scaling/src/commands/AttachLoadBalancerTargetGroupsCommand.ts index b92d27da21a09..b0edd8e959b44 100644 --- a/clients/client-auto-scaling/src/commands/AttachLoadBalancerTargetGroupsCommand.ts +++ b/clients/client-auto-scaling/src/commands/AttachLoadBalancerTargetGroupsCommand.ts @@ -98,21 +98,24 @@ export interface AttachLoadBalancerTargetGroupsCommandOutput * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To attach a target group to an Auto Scaling group * ```javascript * // This example attaches the specified target group to the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "TargetGroupARNs": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * TargetGroupARNs: [ * "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" * ] * }; * const command = new AttachLoadBalancerTargetGroupsCommand(input); - * await client.send(command); - * // example id: autoscaling-attach-load-balancer-target-groups-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AttachLoadBalancerTargetGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/AttachLoadBalancersCommand.ts b/clients/client-auto-scaling/src/commands/AttachLoadBalancersCommand.ts index d6b5d62cf7efd..ea71faaab5e3f 100644 --- a/clients/client-auto-scaling/src/commands/AttachLoadBalancersCommand.ts +++ b/clients/client-auto-scaling/src/commands/AttachLoadBalancersCommand.ts @@ -80,21 +80,24 @@ export interface AttachLoadBalancersCommandOutput extends AttachLoadBalancersRes * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To attach a load balancer to an Auto Scaling group * ```javascript * // This example attaches the specified load balancer to the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "LoadBalancerNames": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * LoadBalancerNames: [ * "my-load-balancer" * ] * }; * const command = new AttachLoadBalancersCommand(input); - * await client.send(command); - * // example id: autoscaling-attach-load-balancers-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AttachLoadBalancersCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/AttachTrafficSourcesCommand.ts b/clients/client-auto-scaling/src/commands/AttachTrafficSourcesCommand.ts index fbf81f46d0e08..c7979c071bacd 100644 --- a/clients/client-auto-scaling/src/commands/AttachTrafficSourcesCommand.ts +++ b/clients/client-auto-scaling/src/commands/AttachTrafficSourcesCommand.ts @@ -91,23 +91,26 @@ export interface AttachTrafficSourcesCommandOutput extends AttachTrafficSourcesR * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To attach a target group to an Auto Scaling group * ```javascript * // This example attaches the specified target group to the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "TrafficSources": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * TrafficSources: [ * { - * "Identifier": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" + * Identifier: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" * } * ] * }; * const command = new AttachTrafficSourcesCommand(input); - * await client.send(command); - * // example id: to-attach-a-target-group-to-an-auto-scaling-group-1680036570089 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class AttachTrafficSourcesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/BatchDeleteScheduledActionCommand.ts b/clients/client-auto-scaling/src/commands/BatchDeleteScheduledActionCommand.ts index ad60da60dbfd7..c8c3a5132aee1 100644 --- a/clients/client-auto-scaling/src/commands/BatchDeleteScheduledActionCommand.ts +++ b/clients/client-auto-scaling/src/commands/BatchDeleteScheduledActionCommand.ts @@ -68,6 +68,7 @@ export interface BatchDeleteScheduledActionCommandOutput extends BatchDeleteSche * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* + * * @public */ export class BatchDeleteScheduledActionCommand extends $Command diff --git a/clients/client-auto-scaling/src/commands/BatchPutScheduledUpdateGroupActionCommand.ts b/clients/client-auto-scaling/src/commands/BatchPutScheduledUpdateGroupActionCommand.ts index 1c241981327af..d4c62e542462a 100644 --- a/clients/client-auto-scaling/src/commands/BatchPutScheduledUpdateGroupActionCommand.ts +++ b/clients/client-auto-scaling/src/commands/BatchPutScheduledUpdateGroupActionCommand.ts @@ -91,6 +91,7 @@ export interface BatchPutScheduledUpdateGroupActionCommandOutput * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* + * * @public */ export class BatchPutScheduledUpdateGroupActionCommand extends $Command diff --git a/clients/client-auto-scaling/src/commands/CancelInstanceRefreshCommand.ts b/clients/client-auto-scaling/src/commands/CancelInstanceRefreshCommand.ts index c13c97a427d51..7c95dddb88f1b 100644 --- a/clients/client-auto-scaling/src/commands/CancelInstanceRefreshCommand.ts +++ b/clients/client-auto-scaling/src/commands/CancelInstanceRefreshCommand.ts @@ -76,23 +76,23 @@ export interface CancelInstanceRefreshCommandOutput extends CancelInstanceRefres * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To cancel an instance refresh * ```javascript * // This example cancels an instance refresh operation in progress. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group" + * AutoScalingGroupName: "my-auto-scaling-group" * }; * const command = new CancelInstanceRefreshCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InstanceRefreshId": "08b91cf7-8fa6-48af-b6a6-d227f40f1b9b" + * InstanceRefreshId: "08b91cf7-8fa6-48af-b6a6-d227f40f1b9b" * } * *\/ - * // example id: to-cancel-an-instance-refresh-1592960979817 * ``` * + * @public */ export class CancelInstanceRefreshCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/CompleteLifecycleActionCommand.ts b/clients/client-auto-scaling/src/commands/CompleteLifecycleActionCommand.ts index 34a9ea5512398..ad2cd80b070b0 100644 --- a/clients/client-auto-scaling/src/commands/CompleteLifecycleActionCommand.ts +++ b/clients/client-auto-scaling/src/commands/CompleteLifecycleActionCommand.ts @@ -98,21 +98,24 @@ export interface CompleteLifecycleActionCommandOutput extends CompleteLifecycleA * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To complete the lifecycle action * ```javascript * // This example notifies Auto Scaling that the specified lifecycle action is complete so that it can finish launching or terminating the instance. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "LifecycleActionResult": "CONTINUE", - * "LifecycleActionToken": "bcd2f1b8-9a78-44d3-8a7a-4dd07d7cf635", - * "LifecycleHookName": "my-lifecycle-hook" + * AutoScalingGroupName: "my-auto-scaling-group", + * LifecycleActionResult: "CONTINUE", + * LifecycleActionToken: "bcd2f1b8-9a78-44d3-8a7a-4dd07d7cf635", + * LifecycleHookName: "my-lifecycle-hook" * }; * const command = new CompleteLifecycleActionCommand(input); - * await client.send(command); - * // example id: autoscaling-complete-lifecycle-action-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CompleteLifecycleActionCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/CreateAutoScalingGroupCommand.ts b/clients/client-auto-scaling/src/commands/CreateAutoScalingGroupCommand.ts index 0eaaaf52eb03b..44cd9c9f68cd1 100644 --- a/clients/client-auto-scaling/src/commands/CreateAutoScalingGroupCommand.ts +++ b/clients/client-auto-scaling/src/commands/CreateAutoScalingGroupCommand.ts @@ -268,137 +268,146 @@ export interface CreateAutoScalingGroupCommandOutput extends __MetadataBearer {} * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public - * @example To create an Auto Scaling group - * ```javascript - * // This example creates an Auto Scaling group. - * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "DefaultInstanceWarmup": 120, - * "LaunchTemplate": { - * "LaunchTemplateName": "my-template-for-auto-scaling", - * "Version": "$Default" - * }, - * "MaxInstanceLifetime": 2592000, - * "MaxSize": 3, - * "MinSize": 1, - * "VPCZoneIdentifier": "subnet-057fa0918fEXAMPLE" - * }; - * const command = new CreateAutoScalingGroupCommand(input); - * await client.send(command); - * // example id: autoscaling-create-auto-scaling-group-1 - * ``` * * @example To create an Auto Scaling group with an attached target group * ```javascript * // This example creates an Auto Scaling group and attaches the specified target group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "HealthCheckGracePeriod": 300, - * "HealthCheckType": "ELB", - * "LaunchTemplate": { - * "LaunchTemplateName": "my-template-for-auto-scaling", - * "Version": "$Default" + * AutoScalingGroupName: "my-auto-scaling-group", + * HealthCheckGracePeriod: 300, + * HealthCheckType: "ELB", + * LaunchTemplate: { + * LaunchTemplateName: "my-template-for-auto-scaling", + * Version: "$Default" * }, - * "MaxSize": 3, - * "MinSize": 1, - * "TargetGroupARNs": [ + * MaxSize: 3, + * MinSize: 1, + * TargetGroupARNs: [ * "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" * ], - * "VPCZoneIdentifier": "subnet-057fa0918fEXAMPLE, subnet-610acd08EXAMPLE" + * VPCZoneIdentifier: "subnet-057fa0918fEXAMPLE, subnet-610acd08EXAMPLE" * }; * const command = new CreateAutoScalingGroupCommand(input); - * await client.send(command); - * // example id: autoscaling-create-auto-scaling-group-2 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To create an Auto Scaling group with a mixed instances policy * ```javascript * // This example creates an Auto Scaling group with a mixed instances policy. It specifies the c5.large, c5a.large, and c6g.large instance types and defines a different launch template for the c6g.large instance type. * const input = { - * "AutoScalingGroupName": "my-asg", - * "DesiredCapacity": 3, - * "MaxSize": 5, - * "MinSize": 1, - * "MixedInstancesPolicy": { - * "InstancesDistribution": { - * "OnDemandBaseCapacity": 1, - * "OnDemandPercentageAboveBaseCapacity": 50, - * "SpotAllocationStrategy": "price-capacity-optimized" + * AutoScalingGroupName: "my-asg", + * DesiredCapacity: 3, + * MaxSize: 5, + * MinSize: 1, + * MixedInstancesPolicy: { + * InstancesDistribution: { + * OnDemandBaseCapacity: 1, + * OnDemandPercentageAboveBaseCapacity: 50, + * SpotAllocationStrategy: "price-capacity-optimized" * }, - * "LaunchTemplate": { - * "LaunchTemplateSpecification": { - * "LaunchTemplateName": "my-launch-template-for-x86", - * "Version": "$Default" + * LaunchTemplate: { + * LaunchTemplateSpecification: { + * LaunchTemplateName: "my-launch-template-for-x86", + * Version: "$Default" * }, - * "Overrides": [ + * Overrides: [ * { - * "InstanceType": "c6g.large", - * "LaunchTemplateSpecification": { - * "LaunchTemplateName": "my-launch-template-for-arm", - * "Version": "$Default" + * InstanceType: "c6g.large", + * LaunchTemplateSpecification: { + * LaunchTemplateName: "my-launch-template-for-arm", + * Version: "$Default" * } * }, * { - * "InstanceType": "c5.large" + * InstanceType: "c5.large" * }, * { - * "InstanceType": "c5a.large" + * InstanceType: "c5a.large" * } * ] * } * }, - * "VPCZoneIdentifier": "subnet-057fa0918fEXAMPLE, subnet-610acd08EXAMPLE" + * VPCZoneIdentifier: "subnet-057fa0918fEXAMPLE, subnet-610acd08EXAMPLE" * }; * const command = new CreateAutoScalingGroupCommand(input); - * await client.send(command); - * // example id: autoscaling-create-auto-scaling-group-3 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To create an Auto Scaling group using attribute-based instance type selection * ```javascript * // This example creates an Auto Scaling group using attribute-based instance type selection. It requires the instance types to have a minimum of four vCPUs and a maximum of eight vCPUs, a minimum of 16,384 MiB of memory, and an Intel manufactured CPU. * const input = { - * "AutoScalingGroupName": "my-asg", - * "DesiredCapacity": 4, - * "DesiredCapacityType": "units", - * "MaxSize": 100, - * "MinSize": 0, - * "MixedInstancesPolicy": { - * "InstancesDistribution": { - * "OnDemandPercentageAboveBaseCapacity": 50, - * "SpotAllocationStrategy": "price-capacity-optimized" + * AutoScalingGroupName: "my-asg", + * DesiredCapacity: 4, + * DesiredCapacityType: "units", + * MaxSize: 100, + * MinSize: 0, + * MixedInstancesPolicy: { + * InstancesDistribution: { + * OnDemandPercentageAboveBaseCapacity: 50, + * SpotAllocationStrategy: "price-capacity-optimized" * }, - * "LaunchTemplate": { - * "LaunchTemplateSpecification": { - * "LaunchTemplateName": "my-template-for-auto-scaling", - * "Version": "$Default" + * LaunchTemplate: { + * LaunchTemplateSpecification: { + * LaunchTemplateName: "my-template-for-auto-scaling", + * Version: "$Default" * }, - * "Overrides": [ + * Overrides: [ * { - * "InstanceRequirements": { - * "CpuManufacturers": [ + * InstanceRequirements: { + * CpuManufacturers: [ * "intel" * ], - * "MemoryMiB": { - * "Min": 16384 + * MemoryMiB: { + * Min: 16384 * }, - * "VCpuCount": { - * "Max": 8, - * "Min": 4 + * VCpuCount: { + * Max: 8, + * Min: 4 * } * } * } * ] * } * }, - * "VPCZoneIdentifier": "subnet-057fa0918fEXAMPLE, subnet-610acd08EXAMPLE" + * VPCZoneIdentifier: "subnet-057fa0918fEXAMPLE, subnet-610acd08EXAMPLE" * }; * const command = new CreateAutoScalingGroupCommand(input); - * await client.send(command); - * // example id: autoscaling-create-auto-scaling-group-4 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ + * ``` + * + * @example To create an Auto Scaling group + * ```javascript + * // This example creates an Auto Scaling group. + * const input = { + * AutoScalingGroupName: "my-auto-scaling-group", + * DefaultInstanceWarmup: 120, + * LaunchTemplate: { + * LaunchTemplateName: "my-template-for-auto-scaling", + * Version: "$Default" + * }, + * MaxInstanceLifetime: 2592000, + * MaxSize: 3, + * MinSize: 1, + * VPCZoneIdentifier: "subnet-057fa0918fEXAMPLE" + * }; + * const command = new CreateAutoScalingGroupCommand(input); + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateAutoScalingGroupCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/CreateLaunchConfigurationCommand.ts b/clients/client-auto-scaling/src/commands/CreateLaunchConfigurationCommand.ts index 4879981fd9495..cd8ee072a80ee 100644 --- a/clients/client-auto-scaling/src/commands/CreateLaunchConfigurationCommand.ts +++ b/clients/client-auto-scaling/src/commands/CreateLaunchConfigurationCommand.ts @@ -121,24 +121,27 @@ export interface CreateLaunchConfigurationCommandOutput extends __MetadataBearer * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To create a launch configuration * ```javascript * // This example creates a launch configuration. * const input = { - * "IamInstanceProfile": "my-iam-role", - * "ImageId": "ami-12345678", - * "InstanceType": "m3.medium", - * "LaunchConfigurationName": "my-launch-config", - * "SecurityGroups": [ + * IamInstanceProfile: "my-iam-role", + * ImageId: "ami-12345678", + * InstanceType: "m3.medium", + * LaunchConfigurationName: "my-launch-config", + * SecurityGroups: [ * "sg-eb2af88e" * ] * }; * const command = new CreateLaunchConfigurationCommand(input); - * await client.send(command); - * // example id: autoscaling-create-launch-configuration-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateLaunchConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/CreateOrUpdateTagsCommand.ts b/clients/client-auto-scaling/src/commands/CreateOrUpdateTagsCommand.ts index ff5fa77671d44..0ec4b47d538f7 100644 --- a/clients/client-auto-scaling/src/commands/CreateOrUpdateTagsCommand.ts +++ b/clients/client-auto-scaling/src/commands/CreateOrUpdateTagsCommand.ts @@ -81,33 +81,36 @@ export interface CreateOrUpdateTagsCommandOutput extends __MetadataBearer {} * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To create or update tags for an Auto Scaling group * ```javascript * // This example adds two tags to the specified Auto Scaling group. * const input = { - * "Tags": [ + * Tags: [ * { - * "Key": "Role", - * "PropagateAtLaunch": true, - * "ResourceId": "my-auto-scaling-group", - * "ResourceType": "auto-scaling-group", - * "Value": "WebServer" + * Key: "Role", + * PropagateAtLaunch: true, + * ResourceId: "my-auto-scaling-group", + * ResourceType: "auto-scaling-group", + * Value: "WebServer" * }, * { - * "Key": "Dept", - * "PropagateAtLaunch": true, - * "ResourceId": "my-auto-scaling-group", - * "ResourceType": "auto-scaling-group", - * "Value": "Research" + * Key: "Dept", + * PropagateAtLaunch: true, + * ResourceId: "my-auto-scaling-group", + * ResourceType: "auto-scaling-group", + * Value: "Research" * } * ] * }; * const command = new CreateOrUpdateTagsCommand(input); - * await client.send(command); - * // example id: autoscaling-create-or-update-tags-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateOrUpdateTagsCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DeleteAutoScalingGroupCommand.ts b/clients/client-auto-scaling/src/commands/DeleteAutoScalingGroupCommand.ts index faae1ea8229ae..c40e2093f1c1e 100644 --- a/clients/client-auto-scaling/src/commands/DeleteAutoScalingGroupCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeleteAutoScalingGroupCommand.ts @@ -81,30 +81,35 @@ export interface DeleteAutoScalingGroupCommandOutput extends __MetadataBearer {} * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To delete an Auto Scaling group * ```javascript * // This example deletes the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group" + * AutoScalingGroupName: "my-auto-scaling-group" * }; * const command = new DeleteAutoScalingGroupCommand(input); - * await client.send(command); - * // example id: autoscaling-delete-auto-scaling-group-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To delete an Auto Scaling group and all its instances * ```javascript * // This example deletes the specified Auto Scaling group and all its instances. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "ForceDelete": true + * AutoScalingGroupName: "my-auto-scaling-group", + * ForceDelete: true * }; * const command = new DeleteAutoScalingGroupCommand(input); - * await client.send(command); - * // example id: autoscaling-delete-auto-scaling-group-2 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteAutoScalingGroupCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DeleteLaunchConfigurationCommand.ts b/clients/client-auto-scaling/src/commands/DeleteLaunchConfigurationCommand.ts index edba477b4fc08..31d4a1512dfc7 100644 --- a/clients/client-auto-scaling/src/commands/DeleteLaunchConfigurationCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeleteLaunchConfigurationCommand.ts @@ -62,18 +62,21 @@ export interface DeleteLaunchConfigurationCommandOutput extends __MetadataBearer * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To delete a launch configuration * ```javascript * // This example deletes the specified launch configuration. * const input = { - * "LaunchConfigurationName": "my-launch-config" + * LaunchConfigurationName: "my-launch-config" * }; * const command = new DeleteLaunchConfigurationCommand(input); - * await client.send(command); - * // example id: autoscaling-delete-launch-configuration-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteLaunchConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DeleteLifecycleHookCommand.ts b/clients/client-auto-scaling/src/commands/DeleteLifecycleHookCommand.ts index 05ae96c0e41de..5655bcb318e3e 100644 --- a/clients/client-auto-scaling/src/commands/DeleteLifecycleHookCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeleteLifecycleHookCommand.ts @@ -61,19 +61,22 @@ export interface DeleteLifecycleHookCommandOutput extends DeleteLifecycleHookAns * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To delete a lifecycle hook * ```javascript * // This example deletes the specified lifecycle hook. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "LifecycleHookName": "my-lifecycle-hook" + * AutoScalingGroupName: "my-auto-scaling-group", + * LifecycleHookName: "my-lifecycle-hook" * }; * const command = new DeleteLifecycleHookCommand(input); - * await client.send(command); - * // example id: autoscaling-delete-lifecycle-hook-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteLifecycleHookCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DeleteNotificationConfigurationCommand.ts b/clients/client-auto-scaling/src/commands/DeleteNotificationConfigurationCommand.ts index 42d0548a9ac1d..57f689bdb8767 100644 --- a/clients/client-auto-scaling/src/commands/DeleteNotificationConfigurationCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeleteNotificationConfigurationCommand.ts @@ -61,19 +61,22 @@ export interface DeleteNotificationConfigurationCommandOutput extends __Metadata * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To delete an Auto Scaling notification * ```javascript * // This example deletes the specified notification from the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "TopicARN": "arn:aws:sns:us-west-2:123456789012:my-sns-topic" + * AutoScalingGroupName: "my-auto-scaling-group", + * TopicARN: "arn:aws:sns:us-west-2:123456789012:my-sns-topic" * }; * const command = new DeleteNotificationConfigurationCommand(input); - * await client.send(command); - * // example id: autoscaling-delete-notification-configuration-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteNotificationConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DeletePolicyCommand.ts b/clients/client-auto-scaling/src/commands/DeletePolicyCommand.ts index bf581b83d91fb..1184fda856433 100644 --- a/clients/client-auto-scaling/src/commands/DeletePolicyCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeletePolicyCommand.ts @@ -66,19 +66,22 @@ export interface DeletePolicyCommandOutput extends __MetadataBearer {} * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To delete an Auto Scaling policy * ```javascript * // This example deletes the specified Auto Scaling policy. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "PolicyName": "my-step-scale-out-policy" + * AutoScalingGroupName: "my-auto-scaling-group", + * PolicyName: "my-step-scale-out-policy" * }; * const command = new DeletePolicyCommand(input); - * await client.send(command); - * // example id: autoscaling-delete-policy-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeletePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DeleteScheduledActionCommand.ts b/clients/client-auto-scaling/src/commands/DeleteScheduledActionCommand.ts index 2cededce05bc6..981ffe7bf49dd 100644 --- a/clients/client-auto-scaling/src/commands/DeleteScheduledActionCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeleteScheduledActionCommand.ts @@ -58,19 +58,22 @@ export interface DeleteScheduledActionCommandOutput extends __MetadataBearer {} * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To delete a scheduled action from an Auto Scaling group * ```javascript * // This example deletes the specified scheduled action from the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "ScheduledActionName": "my-scheduled-action" + * AutoScalingGroupName: "my-auto-scaling-group", + * ScheduledActionName: "my-scheduled-action" * }; * const command = new DeleteScheduledActionCommand(input); - * await client.send(command); - * // example id: autoscaling-delete-scheduled-action-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteScheduledActionCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DeleteTagsCommand.ts b/clients/client-auto-scaling/src/commands/DeleteTagsCommand.ts index 3a102866cc858..c000d33e31c1d 100644 --- a/clients/client-auto-scaling/src/commands/DeleteTagsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeleteTagsCommand.ts @@ -68,25 +68,28 @@ export interface DeleteTagsCommandOutput extends __MetadataBearer {} * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To delete a tag from an Auto Scaling group * ```javascript * // This example deletes the specified tag from the specified Auto Scaling group. * const input = { - * "Tags": [ + * Tags: [ * { - * "Key": "Dept", - * "ResourceId": "my-auto-scaling-group", - * "ResourceType": "auto-scaling-group", - * "Value": "Research" + * Key: "Dept", + * ResourceId: "my-auto-scaling-group", + * ResourceType: "auto-scaling-group", + * Value: "Research" * } * ] * }; * const command = new DeleteTagsCommand(input); - * await client.send(command); - * // example id: autoscaling-delete-tags-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteTagsCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DeleteWarmPoolCommand.ts b/clients/client-auto-scaling/src/commands/DeleteWarmPoolCommand.ts index c8f6aed53f1b4..dd391848e7fe9 100644 --- a/clients/client-auto-scaling/src/commands/DeleteWarmPoolCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeleteWarmPoolCommand.ts @@ -73,6 +73,7 @@ export interface DeleteWarmPoolCommandOutput extends DeleteWarmPoolAnswer, __Met * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* + * * @public */ export class DeleteWarmPoolCommand extends $Command diff --git a/clients/client-auto-scaling/src/commands/DescribeAccountLimitsCommand.ts b/clients/client-auto-scaling/src/commands/DescribeAccountLimitsCommand.ts index 2777499906101..2fc699d48a145 100644 --- a/clients/client-auto-scaling/src/commands/DescribeAccountLimitsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeAccountLimitsCommand.ts @@ -64,24 +64,24 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe your Auto Scaling account limits * ```javascript * // This example describes the Amazon EC2 Auto Scaling service quotas for your account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeAccountLimitsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "MaxNumberOfAutoScalingGroups": 20, - * "MaxNumberOfLaunchConfigurations": 100, - * "NumberOfAutoScalingGroups": 3, - * "NumberOfLaunchConfigurations": 5 + * MaxNumberOfAutoScalingGroups: 20, + * MaxNumberOfLaunchConfigurations: 100, + * NumberOfAutoScalingGroups: 3, + * NumberOfLaunchConfigurations: 5 * } * *\/ - * // example id: autoscaling-describe-account-limits-1 * ``` * + * @public */ export class DescribeAccountLimitsCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeAdjustmentTypesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeAdjustmentTypesCommand.ts index 442f908dbf122..67be0f2f4eb6b 100644 --- a/clients/client-auto-scaling/src/commands/DescribeAdjustmentTypesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeAdjustmentTypesCommand.ts @@ -80,31 +80,31 @@ export interface DescribeAdjustmentTypesCommandOutput extends DescribeAdjustment * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe the Amazon EC2 Auto Scaling adjustment types * ```javascript * // This example describes the available adjustment types. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeAdjustmentTypesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AdjustmentTypes": [ + * AdjustmentTypes: [ * { - * "AdjustmentType": "ChangeInCapacity" + * AdjustmentType: "ChangeInCapacity" * }, * { - * "AdjustmentType": "ExactCapcity" + * AdjustmentType: "ExactCapcity" * }, * { - * "AdjustmentType": "PercentChangeInCapacity" + * AdjustmentType: "PercentChangeInCapacity" * } * ] * } * *\/ - * // example id: autoscaling-describe-adjustment-types-1 * ``` * + * @public */ export class DescribeAdjustmentTypesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeAutoScalingGroupsCommand.ts b/clients/client-auto-scaling/src/commands/DescribeAutoScalingGroupsCommand.ts index bde484834420d..8d389867a7179 100644 --- a/clients/client-auto-scaling/src/commands/DescribeAutoScalingGroupsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeAutoScalingGroupsCommand.ts @@ -297,75 +297,75 @@ export interface DescribeAutoScalingGroupsCommandOutput extends AutoScalingGroup * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe an Auto Scaling group * ```javascript * // This example describes the specified Auto Scaling group. * const input = { - * "AutoScalingGroupNames": [ + * AutoScalingGroupNames: [ * "my-auto-scaling-group" * ] * }; * const command = new DescribeAutoScalingGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AutoScalingGroups": [ + * AutoScalingGroups: [ * { - * "AutoScalingGroupARN": "arn:aws:autoscaling:us-west-1:123456789012:autoScalingGroup:12345678-1234-1234-1234-123456789012:autoScalingGroupName/my-auto-scaling-group", - * "AutoScalingGroupName": "my-auto-scaling-group", - * "AvailabilityZones": [ + * AutoScalingGroupARN: "arn:aws:autoscaling:us-west-1:123456789012:autoScalingGroup:12345678-1234-1234-1234-123456789012:autoScalingGroupName/my-auto-scaling-group", + * AutoScalingGroupName: "my-auto-scaling-group", + * AvailabilityZones: [ * "us-west-2a", * "us-west-2b", * "us-west-2c" * ], - * "CreatedTime": "2023-03-09T22:15:11.611Z", - * "DefaultCooldown": 300, - * "DesiredCapacity": 2, - * "EnabledMetrics": [], - * "HealthCheckGracePeriod": 300, - * "HealthCheckType": "EC2", - * "Instances": [ + * CreatedTime: "2023-03-09T22:15:11.611Z", + * DefaultCooldown: 300, + * DesiredCapacity: 2, + * EnabledMetrics: [], + * HealthCheckGracePeriod: 300, + * HealthCheckType: "EC2", + * Instances: [ * { - * "AvailabilityZone": "us-west-2c", - * "HealthStatus": "Healthy", - * "InstanceId": "i-05b4f7d5be44822a6", - * "InstanceType": "t3.micro", - * "LaunchConfigurationName": "my-launch-config", - * "LifecycleState": "InService", - * "ProtectedFromScaleIn": false + * AvailabilityZone: "us-west-2c", + * HealthStatus: "Healthy", + * InstanceId: "i-05b4f7d5be44822a6", + * InstanceType: "t3.micro", + * LaunchConfigurationName: "my-launch-config", + * LifecycleState: "InService", + * ProtectedFromScaleIn: false * }, * { - * "AvailabilityZone": "us-west-2b", - * "HealthStatus": "Healthy", - * "InstanceId": "i-0c20ac468fa3049e8", - * "InstanceType": "t3.micro", - * "LaunchConfigurationName": "my-launch-config", - * "LifecycleState": "InService", - * "ProtectedFromScaleIn": false + * AvailabilityZone: "us-west-2b", + * HealthStatus: "Healthy", + * InstanceId: "i-0c20ac468fa3049e8", + * InstanceType: "t3.micro", + * LaunchConfigurationName: "my-launch-config", + * LifecycleState: "InService", + * ProtectedFromScaleIn: false * } * ], - * "LaunchConfigurationName": "my-launch-config", - * "LoadBalancerNames": [], - * "MaxSize": 5, - * "MinSize": 1, - * "NewInstancesProtectedFromScaleIn": false, - * "ServiceLinkedRoleARN": "arn:aws:iam::123456789012:role/aws-service-role/autoscaling.amazonaws.com/AWSServiceRoleForAutoScaling", - * "SuspendedProcesses": [], - * "Tags": [], - * "TargetGroupARNs": [], - * "TerminationPolicies": [ + * LaunchConfigurationName: "my-launch-config", + * LoadBalancerNames: [], + * MaxSize: 5, + * MinSize: 1, + * NewInstancesProtectedFromScaleIn: false, + * ServiceLinkedRoleARN: "arn:aws:iam::123456789012:role/aws-service-role/autoscaling.amazonaws.com/AWSServiceRoleForAutoScaling", + * SuspendedProcesses: [], + * Tags: [], + * TargetGroupARNs: [], + * TerminationPolicies: [ * "Default" * ], - * "TrafficSources": [], - * "VPCZoneIdentifier": "subnet-5ea0c127,subnet-6194ea3b,subnet-c934b782" + * TrafficSources: [], + * VPCZoneIdentifier: "subnet-5ea0c127,subnet-6194ea3b,subnet-c934b782" * } * ] * } * *\/ - * // example id: autoscaling-describe-auto-scaling-groups-1 * ``` * + * @public */ export class DescribeAutoScalingGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeAutoScalingInstancesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeAutoScalingInstancesCommand.ts index b2789d53913e2..437d5f8db5cf1 100644 --- a/clients/client-auto-scaling/src/commands/DescribeAutoScalingInstancesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeAutoScalingInstancesCommand.ts @@ -84,36 +84,36 @@ export interface DescribeAutoScalingInstancesCommandOutput extends AutoScalingIn * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe one or more Auto Scaling instances * ```javascript * // This example describes the specified Auto Scaling instance. * const input = { - * "InstanceIds": [ + * InstanceIds: [ * "i-05b4f7d5be44822a6" * ] * }; * const command = new DescribeAutoScalingInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AutoScalingInstances": [ + * AutoScalingInstances: [ * { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "AvailabilityZone": "us-west-2c", - * "HealthStatus": "HEALTHY", - * "InstanceId": "i-05b4f7d5be44822a6", - * "InstanceType": "t3.micro", - * "LaunchConfigurationName": "my-launch-config", - * "LifecycleState": "InService", - * "ProtectedFromScaleIn": false + * AutoScalingGroupName: "my-auto-scaling-group", + * AvailabilityZone: "us-west-2c", + * HealthStatus: "HEALTHY", + * InstanceId: "i-05b4f7d5be44822a6", + * InstanceType: "t3.micro", + * LaunchConfigurationName: "my-launch-config", + * LifecycleState: "InService", + * ProtectedFromScaleIn: false * } * ] * } * *\/ - * // example id: autoscaling-describe-auto-scaling-instances-1 * ``` * + * @public */ export class DescribeAutoScalingInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeAutoScalingNotificationTypesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeAutoScalingNotificationTypesCommand.ts index d31c7a02f1522..d873005b9e2c0 100644 --- a/clients/client-auto-scaling/src/commands/DescribeAutoScalingNotificationTypesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeAutoScalingNotificationTypesCommand.ts @@ -64,16 +64,16 @@ export interface DescribeAutoScalingNotificationTypesCommandOutput * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe the Auto Scaling notification types * ```javascript * // This example describes the available notification types. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeAutoScalingNotificationTypesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AutoScalingNotificationTypes": [ + * AutoScalingNotificationTypes: [ * "autoscaling:EC2_INSTANCE_LAUNCH", * "autoscaling:EC2_INSTANCE_LAUNCH_ERROR", * "autoscaling:EC2_INSTANCE_TERMINATE", @@ -82,9 +82,9 @@ export interface DescribeAutoScalingNotificationTypesCommandOutput * ] * } * *\/ - * // example id: autoscaling-describe-auto-scaling-notification-types-1 * ``` * + * @public */ export class DescribeAutoScalingNotificationTypesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeInstanceRefreshesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeInstanceRefreshesCommand.ts index f143550b5a414..8500ec2904d6f 100644 --- a/clients/client-auto-scaling/src/commands/DescribeInstanceRefreshesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeInstanceRefreshesCommand.ts @@ -243,70 +243,8 @@ export interface DescribeInstanceRefreshesCommandOutput extends DescribeInstance * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public - * @example To list instance refreshes - * ```javascript - * // This example describes the instance refreshes for the specified Auto Scaling group. - * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group" - * }; - * const command = new DescribeInstanceRefreshesCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "InstanceRefreshes": [ - * { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "InstanceRefreshId": "08b91cf7-8fa6-48af-b6a6-d227f40f1b9b", - * "InstancesToUpdate": 0, - * "PercentageComplete": 50, - * "Preferences": { - * "AlarmSpecification": { - * "Alarms": [ - * "my-alarm" - * ] - * }, - * "AutoRollback": true, - * "InstanceWarmup": 200, - * "MaxHealthyPercentage": 120, - * "MinHealthyPercentage": 90, - * "ScaleInProtectedInstances": "Ignore", - * "SkipMatching": false, - * "StandbyInstances": "Ignore" - * }, - * "StartTime": "2023-06-13T16:46:52+00:00", - * "Status": "InProgress", - * "StatusReason": "Waiting for instances to warm up before continuing. For example: i-0645704820a8e83ff is warming up." - * }, - * { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "EndTime": "2023-06-02T13:59:45+00:00", - * "InstanceRefreshId": "0e151305-1e57-4a32-a256-1fd14157c5ec", - * "InstancesToUpdate": 0, - * "PercentageComplete": 100, - * "Preferences": { - * "AlarmSpecification": { - * "Alarms": [ - * "my-alarm" - * ] - * }, - * "AutoRollback": true, - * "InstanceWarmup": 200, - * "MaxHealthyPercentage": 120, - * "MinHealthyPercentage": 90, - * "ScaleInProtectedInstances": "Ignore", - * "SkipMatching": false, - * "StandbyInstances": "Ignore" - * }, - * "StartTime": "2023-06-02T13:53:37+00:00", - * "Status": "Successful" - * } - * ] - * } - * *\/ - * // example id: to-list-instance-refreshes-1592959593746 - * ``` * + * @public */ export class DescribeInstanceRefreshesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeLaunchConfigurationsCommand.ts b/clients/client-auto-scaling/src/commands/DescribeLaunchConfigurationsCommand.ts index cdb582df5feb8..8a45cfc59ae1b 100644 --- a/clients/client-auto-scaling/src/commands/DescribeLaunchConfigurationsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeLaunchConfigurationsCommand.ts @@ -115,42 +115,42 @@ export interface DescribeLaunchConfigurationsCommandOutput extends LaunchConfigu * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe Auto Scaling launch configurations * ```javascript * // This example describes the specified launch configuration. * const input = { - * "LaunchConfigurationNames": [ + * LaunchConfigurationNames: [ * "my-launch-config" * ] * }; * const command = new DescribeLaunchConfigurationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LaunchConfigurations": [ + * LaunchConfigurations: [ * { - * "AssociatePublicIpAddress": true, - * "BlockDeviceMappings": [], - * "CreatedTime": "2014-05-07T17:39:28.599Z", - * "EbsOptimized": false, - * "ImageId": "ami-043a5034", - * "InstanceMonitoring": { - * "Enabled": true + * AssociatePublicIpAddress: true, + * BlockDeviceMappings: [], + * CreatedTime: "2014-05-07T17:39:28.599Z", + * EbsOptimized: false, + * ImageId: "ami-043a5034", + * InstanceMonitoring: { + * Enabled: true * }, - * "InstanceType": "t1.micro", - * "LaunchConfigurationARN": "arn:aws:autoscaling:us-west-2:123456789012:launchConfiguration:98d3b196-4cf9-4e88-8ca1-8547c24ced8b:launchConfigurationName/my-launch-config", - * "LaunchConfigurationName": "my-launch-config", - * "SecurityGroups": [ + * InstanceType: "t1.micro", + * LaunchConfigurationARN: "arn:aws:autoscaling:us-west-2:123456789012:launchConfiguration:98d3b196-4cf9-4e88-8ca1-8547c24ced8b:launchConfigurationName/my-launch-config", + * LaunchConfigurationName: "my-launch-config", + * SecurityGroups: [ * "sg-67ef0308" * ] * } * ] * } * *\/ - * // example id: autoscaling-describe-launch-configurations-1 * ``` * + * @public */ export class DescribeLaunchConfigurationsCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeLifecycleHookTypesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeLifecycleHookTypesCommand.ts index 16a7212d38fec..8fb77da395671 100644 --- a/clients/client-auto-scaling/src/commands/DescribeLifecycleHookTypesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeLifecycleHookTypesCommand.ts @@ -72,24 +72,24 @@ export interface DescribeLifecycleHookTypesCommandOutput extends DescribeLifecyc * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe the available types of lifecycle hooks * ```javascript * // This example describes the available lifecycle hook types. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeLifecycleHookTypesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LifecycleHookTypes": [ + * LifecycleHookTypes: [ * "autoscaling:EC2_INSTANCE_LAUNCHING", * "autoscaling:EC2_INSTANCE_TERMINATING" * ] * } * *\/ - * // example id: autoscaling-describe-lifecycle-hook-types-1 * ``` * + * @public */ export class DescribeLifecycleHookTypesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeLifecycleHooksCommand.ts b/clients/client-auto-scaling/src/commands/DescribeLifecycleHooksCommand.ts index 12db0bb9a84c8..91fac06e4ec0b 100644 --- a/clients/client-auto-scaling/src/commands/DescribeLifecycleHooksCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeLifecycleHooksCommand.ts @@ -74,34 +74,34 @@ export interface DescribeLifecycleHooksCommandOutput extends DescribeLifecycleHo * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe your lifecycle hooks * ```javascript * // This example describes the lifecycle hooks for the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group" + * AutoScalingGroupName: "my-auto-scaling-group" * }; * const command = new DescribeLifecycleHooksCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LifecycleHooks": [ + * LifecycleHooks: [ * { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "DefaultResult": "ABANDON", - * "GlobalTimeout": 172800, - * "HeartbeatTimeout": 3600, - * "LifecycleHookName": "my-lifecycle-hook", - * "LifecycleTransition": "autoscaling:EC2_INSTANCE_LAUNCHING", - * "NotificationTargetARN": "arn:aws:sns:us-west-2:123456789012:my-sns-topic", - * "RoleARN": "arn:aws:iam::123456789012:role/my-auto-scaling-role" + * AutoScalingGroupName: "my-auto-scaling-group", + * DefaultResult: "ABANDON", + * GlobalTimeout: 172800, + * HeartbeatTimeout: 3600, + * LifecycleHookName: "my-lifecycle-hook", + * LifecycleTransition: "autoscaling:EC2_INSTANCE_LAUNCHING", + * NotificationTargetARN: "arn:aws:sns:us-west-2:123456789012:my-sns-topic", + * RoleARN: "arn:aws:iam::123456789012:role/my-auto-scaling-role" * } * ] * } * *\/ - * // example id: autoscaling-describe-lifecycle-hooks-1 * ``` * + * @public */ export class DescribeLifecycleHooksCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeLoadBalancerTargetGroupsCommand.ts b/clients/client-auto-scaling/src/commands/DescribeLoadBalancerTargetGroupsCommand.ts index 63aeda723bea8..6b1ca48e373a8 100644 --- a/clients/client-auto-scaling/src/commands/DescribeLoadBalancerTargetGroupsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeLoadBalancerTargetGroupsCommand.ts @@ -107,28 +107,28 @@ export interface DescribeLoadBalancerTargetGroupsCommandOutput * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe the target groups for an Auto Scaling group * ```javascript * // This example describes the target groups attached to the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group" + * AutoScalingGroupName: "my-auto-scaling-group" * }; * const command = new DescribeLoadBalancerTargetGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LoadBalancerTargetGroups": [ + * LoadBalancerTargetGroups: [ * { - * "LoadBalancerTargetGroupARN": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "State": "Added" + * LoadBalancerTargetGroupARN: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * State: "Added" * } * ] * } * *\/ - * // example id: autoscaling-describe-load-balancer-target-groups-1 * ``` * + * @public */ export class DescribeLoadBalancerTargetGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeLoadBalancersCommand.ts b/clients/client-auto-scaling/src/commands/DescribeLoadBalancersCommand.ts index 0a287f6d768af..048ffa802478c 100644 --- a/clients/client-auto-scaling/src/commands/DescribeLoadBalancersCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeLoadBalancersCommand.ts @@ -100,28 +100,28 @@ export interface DescribeLoadBalancersCommandOutput extends DescribeLoadBalancer * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe the load balancers for an Auto Scaling group * ```javascript * // This example describes the load balancers attached to the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group" + * AutoScalingGroupName: "my-auto-scaling-group" * }; * const command = new DescribeLoadBalancersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LoadBalancers": [ + * LoadBalancers: [ * { - * "LoadBalancerName": "my-load-balancer", - * "State": "Added" + * LoadBalancerName: "my-load-balancer", + * State: "Added" * } * ] * } * *\/ - * // example id: autoscaling-describe-load-balancers-1 * ``` * + * @public */ export class DescribeLoadBalancersCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeMetricCollectionTypesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeMetricCollectionTypesCommand.ts index 667da51f77c66..e426af4c76bf1 100644 --- a/clients/client-auto-scaling/src/commands/DescribeMetricCollectionTypesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeMetricCollectionTypesCommand.ts @@ -71,51 +71,51 @@ export interface DescribeMetricCollectionTypesCommandOutput * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe the Auto Scaling metric collection types * ```javascript * // This example describes the available metric collection types. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeMetricCollectionTypesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Granularities": [ + * Granularities: [ * { - * "Granularity": "1Minute" + * Granularity: "1Minute" * } * ], - * "Metrics": [ + * Metrics: [ * { - * "Metric": "GroupMinSize" + * Metric: "GroupMinSize" * }, * { - * "Metric": "GroupMaxSize" + * Metric: "GroupMaxSize" * }, * { - * "Metric": "GroupDesiredCapacity" + * Metric: "GroupDesiredCapacity" * }, * { - * "Metric": "GroupInServiceInstances" + * Metric: "GroupInServiceInstances" * }, * { - * "Metric": "GroupPendingInstances" + * Metric: "GroupPendingInstances" * }, * { - * "Metric": "GroupTerminatingInstances" + * Metric: "GroupTerminatingInstances" * }, * { - * "Metric": "GroupStandbyInstances" + * Metric: "GroupStandbyInstances" * }, * { - * "Metric": "GroupTotalInstances" + * Metric: "GroupTotalInstances" * } * ] * } * *\/ - * // example id: autoscaling-describe-metric-collection-types-1 * ``` * + * @public */ export class DescribeMetricCollectionTypesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeNotificationConfigurationsCommand.ts b/clients/client-auto-scaling/src/commands/DescribeNotificationConfigurationsCommand.ts index 9886be99536c9..eadb801951d3a 100644 --- a/clients/client-auto-scaling/src/commands/DescribeNotificationConfigurationsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeNotificationConfigurationsCommand.ts @@ -79,36 +79,36 @@ export interface DescribeNotificationConfigurationsCommandOutput * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe Auto Scaling notification configurations * ```javascript * // This example describes the notification configurations for the specified Auto Scaling group. * const input = { - * "AutoScalingGroupNames": [ + * AutoScalingGroupNames: [ * "my-auto-scaling-group" * ] * }; * const command = new DescribeNotificationConfigurationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NotificationConfigurations": [ + * NotificationConfigurations: [ * { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "NotificationType": "autoscaling:TEST_NOTIFICATION", - * "TopicARN": "arn:aws:sns:us-west-2:123456789012:my-sns-topic-2" + * AutoScalingGroupName: "my-auto-scaling-group", + * NotificationType: "autoscaling:TEST_NOTIFICATION", + * TopicARN: "arn:aws:sns:us-west-2:123456789012:my-sns-topic-2" * }, * { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "NotificationType": "autoscaling:TEST_NOTIFICATION", - * "TopicARN": "arn:aws:sns:us-west-2:123456789012:my-sns-topic" + * AutoScalingGroupName: "my-auto-scaling-group", + * NotificationType: "autoscaling:TEST_NOTIFICATION", + * TopicARN: "arn:aws:sns:us-west-2:123456789012:my-sns-topic" * } * ] * } * *\/ - * // example id: autoscaling-describe-notification-configurations-1 * ``` * + * @public */ export class DescribeNotificationConfigurationsCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribePoliciesCommand.ts b/clients/client-auto-scaling/src/commands/DescribePoliciesCommand.ts index 27e179142395b..4b4d00d0059d0 100644 --- a/clients/client-auto-scaling/src/commands/DescribePoliciesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribePoliciesCommand.ts @@ -227,42 +227,42 @@ export interface DescribePoliciesCommandOutput extends PoliciesType, __MetadataB * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe scaling policies * ```javascript * // This example describes the policies for the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group" + * AutoScalingGroupName: "my-auto-scaling-group" * }; * const command = new DescribePoliciesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ScalingPolicies": [ + * ScalingPolicies: [ * { - * "AdjustmentType": "ChangeInCapacity", - * "Alarms": [], - * "AutoScalingGroupName": "my-auto-scaling-group", - * "PolicyARN": "arn:aws:autoscaling:us-west-2:123456789012:scalingPolicy:2233f3d7-6290-403b-b632-93c553560106:autoScalingGroupName/my-auto-scaling-group:policyName/ScaleIn", - * "PolicyName": "ScaleIn", - * "ScalingAdjustment": -1 + * AdjustmentType: "ChangeInCapacity", + * Alarms: [], + * AutoScalingGroupName: "my-auto-scaling-group", + * PolicyARN: "arn:aws:autoscaling:us-west-2:123456789012:scalingPolicy:2233f3d7-6290-403b-b632-93c553560106:autoScalingGroupName/my-auto-scaling-group:policyName/ScaleIn", + * PolicyName: "ScaleIn", + * ScalingAdjustment: -1 * }, * { - * "AdjustmentType": "PercentChangeInCapacity", - * "Alarms": [], - * "AutoScalingGroupName": "my-auto-scaling-group", - * "Cooldown": 60, - * "MinAdjustmentStep": 2, - * "PolicyARN": "arn:aws:autoscaling:us-west-2:123456789012:scalingPolicy:2b435159-cf77-4e89-8c0e-d63b497baad7:autoScalingGroupName/my-auto-scaling-group:policyName/ScalePercentChange", - * "PolicyName": "ScalePercentChange", - * "ScalingAdjustment": 25 + * AdjustmentType: "PercentChangeInCapacity", + * Alarms: [], + * AutoScalingGroupName: "my-auto-scaling-group", + * Cooldown: 60, + * MinAdjustmentStep: 2, + * PolicyARN: "arn:aws:autoscaling:us-west-2:123456789012:scalingPolicy:2b435159-cf77-4e89-8c0e-d63b497baad7:autoScalingGroupName/my-auto-scaling-group:policyName/ScalePercentChange", + * PolicyName: "ScalePercentChange", + * ScalingAdjustment: 25 * } * ] * } * *\/ - * // example id: autoscaling-describe-policies-1 * ``` * + * @public */ export class DescribePoliciesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts index b6ac3e486fce8..46edfe605249d 100644 --- a/clients/client-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts @@ -92,36 +92,36 @@ export interface DescribeScalingActivitiesCommandOutput extends ActivitiesType, * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe the scaling activities for an Auto Scaling group * ```javascript * // This example describes the scaling activities for the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group" + * AutoScalingGroupName: "my-auto-scaling-group" * }; * const command = new DescribeScalingActivitiesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Activities": [ + * Activities: [ * { - * "ActivityId": "f9f2d65b-f1f2-43e7-b46d-d86756459699", - * "AutoScalingGroupARN": "arn:aws:autoscaling:us-east-1:123456789012:autoScalingGroup:12345678-1234-1234-1234-123456789012:autoScalingGroupName/my-auto-scaling-group", - * "AutoScalingGroupName": "my-auto-scaling-group", - * "Cause": "At 2013-08-19T20:53:25Z a user request created an AutoScalingGroup changing the desired capacity from 0 to 1. At 2013-08-19T20:53:29Z an instance was started in response to a difference between desired and actual capacity, increasing the capacity from 0 to 1.", - * "Description": "Launching a new EC2 instance: i-4ba0837f", - * "Details": "details", - * "EndTime": "2013-08-19T20:54:02Z", - * "Progress": 100, - * "StartTime": "2013-08-19T20:53:29.930Z", - * "StatusCode": "Successful" + * ActivityId: "f9f2d65b-f1f2-43e7-b46d-d86756459699", + * AutoScalingGroupARN: "arn:aws:autoscaling:us-east-1:123456789012:autoScalingGroup:12345678-1234-1234-1234-123456789012:autoScalingGroupName/my-auto-scaling-group", + * AutoScalingGroupName: "my-auto-scaling-group", + * Cause: "At 2013-08-19T20:53:25Z a user request created an AutoScalingGroup changing the desired capacity from 0 to 1. At 2013-08-19T20:53:29Z an instance was started in response to a difference between desired and actual capacity, increasing the capacity from 0 to 1.", + * Description: "Launching a new EC2 instance: i-4ba0837f", + * Details: "details", + * EndTime: "2013-08-19T20:54:02Z", + * Progress: 100, + * StartTime: "2013-08-19T20:53:29.930Z", + * StatusCode: "Successful" * } * ] * } * *\/ - * // example id: autoscaling-describe-scaling-activities-1 * ``` * + * @public */ export class DescribeScalingActivitiesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeScalingProcessTypesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeScalingProcessTypesCommand.ts index 32c88afa48f07..958fe5ae10896 100644 --- a/clients/client-auto-scaling/src/commands/DescribeScalingProcessTypesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeScalingProcessTypesCommand.ts @@ -62,46 +62,46 @@ export interface DescribeScalingProcessTypesCommandOutput extends ProcessesType, * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe the Auto Scaling process types * ```javascript * // This example describes the Auto Scaling process types. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeScalingProcessTypesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Processes": [ + * Processes: [ * { - * "ProcessName": "AZRebalance" + * ProcessName: "AZRebalance" * }, * { - * "ProcessName": "AddToLoadBalancer" + * ProcessName: "AddToLoadBalancer" * }, * { - * "ProcessName": "AlarmNotification" + * ProcessName: "AlarmNotification" * }, * { - * "ProcessName": "HealthCheck" + * ProcessName: "HealthCheck" * }, * { - * "ProcessName": "Launch" + * ProcessName: "Launch" * }, * { - * "ProcessName": "ReplaceUnhealthy" + * ProcessName: "ReplaceUnhealthy" * }, * { - * "ProcessName": "ScheduledActions" + * ProcessName: "ScheduledActions" * }, * { - * "ProcessName": "Terminate" + * ProcessName: "Terminate" * } * ] * } * *\/ - * // example id: autoscaling-describe-scaling-process-types-1 * ``` * + * @public */ export class DescribeScalingProcessTypesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts b/clients/client-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts index 867ae143543ca..897a6ab06a9e5 100644 --- a/clients/client-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts @@ -87,35 +87,35 @@ export interface DescribeScheduledActionsCommandOutput extends ScheduledActionsT * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe scheduled actions * ```javascript * // This example describes the scheduled actions for the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group" + * AutoScalingGroupName: "my-auto-scaling-group" * }; * const command = new DescribeScheduledActionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ScheduledUpdateGroupActions": [ + * ScheduledUpdateGroupActions: [ * { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "DesiredCapacity": 4, - * "MaxSize": 6, - * "MinSize": 2, - * "Recurrence": "30 0 1 12 0", - * "ScheduledActionARN": "arn:aws:autoscaling:us-west-2:123456789012:scheduledUpdateGroupAction:8e86b655-b2e6-4410-8f29-b4f094d6871c:autoScalingGroupName/my-auto-scaling-group:scheduledActionName/my-scheduled-action", - * "ScheduledActionName": "my-scheduled-action", - * "StartTime": "2016-12-01T00:30:00Z", - * "Time": "2016-12-01T00:30:00Z" + * AutoScalingGroupName: "my-auto-scaling-group", + * DesiredCapacity: 4, + * MaxSize: 6, + * MinSize: 2, + * Recurrence: "30 0 1 12 0", + * ScheduledActionARN: "arn:aws:autoscaling:us-west-2:123456789012:scheduledUpdateGroupAction:8e86b655-b2e6-4410-8f29-b4f094d6871c:autoScalingGroupName/my-auto-scaling-group:scheduledActionName/my-scheduled-action", + * ScheduledActionName: "my-scheduled-action", + * StartTime: "2016-12-01T00:30:00Z", + * Time: "2016-12-01T00:30:00Z" * } * ] * } * *\/ - * // example id: autoscaling-describe-scheduled-actions-1 * ``` * + * @public */ export class DescribeScheduledActionsCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeTagsCommand.ts b/clients/client-auto-scaling/src/commands/DescribeTagsCommand.ts index 7e672d917acad..81524a8437ccf 100644 --- a/clients/client-auto-scaling/src/commands/DescribeTagsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeTagsCommand.ts @@ -88,15 +88,15 @@ export interface DescribeTagsCommandOutput extends TagsType, __MetadataBearer {} * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe tags * ```javascript * // This example describes the tags for the specified Auto Scaling group. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "auto-scaling-group", - * "Values": [ + * Name: "auto-scaling-group", + * Values: [ * "my-auto-scaling-group" * ] * } @@ -104,29 +104,29 @@ export interface DescribeTagsCommandOutput extends TagsType, __MetadataBearer {} * }; * const command = new DescribeTagsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Tags": [ + * Tags: [ * { - * "Key": "Dept", - * "PropagateAtLaunch": true, - * "ResourceId": "my-auto-scaling-group", - * "ResourceType": "auto-scaling-group", - * "Value": "Research" + * Key: "Dept", + * PropagateAtLaunch: true, + * ResourceId: "my-auto-scaling-group", + * ResourceType: "auto-scaling-group", + * Value: "Research" * }, * { - * "Key": "Role", - * "PropagateAtLaunch": true, - * "ResourceId": "my-auto-scaling-group", - * "ResourceType": "auto-scaling-group", - * "Value": "WebServer" + * Key: "Role", + * PropagateAtLaunch: true, + * ResourceId: "my-auto-scaling-group", + * ResourceType: "auto-scaling-group", + * Value: "WebServer" * } * ] * } * *\/ - * // example id: autoscaling-describe-tags-1 * ``` * + * @public */ export class DescribeTagsCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeTerminationPolicyTypesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeTerminationPolicyTypesCommand.ts index 113e56ce580f9..3a701a106db1c 100644 --- a/clients/client-auto-scaling/src/commands/DescribeTerminationPolicyTypesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeTerminationPolicyTypesCommand.ts @@ -67,16 +67,16 @@ export interface DescribeTerminationPolicyTypesCommandOutput * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe termination policy types * ```javascript * // This example describes the available termination policy types. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeTerminationPolicyTypesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TerminationPolicyTypes": [ + * TerminationPolicyTypes: [ * "ClosestToNextInstanceHour", * "Default", * "NewestInstance", @@ -85,9 +85,9 @@ export interface DescribeTerminationPolicyTypesCommandOutput * ] * } * *\/ - * // example id: autoscaling-describe-termination-policy-types-1 * ``` * + * @public */ export class DescribeTerminationPolicyTypesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeTrafficSourcesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeTrafficSourcesCommand.ts index 060c2f7c17719..89e67c1ca1b15 100644 --- a/clients/client-auto-scaling/src/commands/DescribeTrafficSourcesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeTrafficSourcesCommand.ts @@ -77,30 +77,30 @@ export interface DescribeTrafficSourcesCommandOutput extends DescribeTrafficSour * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To describe the target groups for an Auto Scaling group * ```javascript * // This example describes the target groups attached to the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group" + * AutoScalingGroupName: "my-auto-scaling-group" * }; * const command = new DescribeTrafficSourcesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NextToken": "", - * "TrafficSources": [ + * NextToken: "", + * TrafficSources: [ * { - * "Identifier": "arn:aws:vpc-lattice:us-west-2:123456789012:targetgroup/tg-0e2f2665eEXAMPLE", - * "State": "InService", - * "Type": "vpc-lattice" + * Identifier: "arn:aws:vpc-lattice:us-west-2:123456789012:targetgroup/tg-0e2f2665eEXAMPLE", + * State: "InService", + * Type: "vpc-lattice" * } * ] * } * *\/ - * // example id: to-describe-the-target-groups-for-an-auto-scaling-group-1680040714521 * ``` * + * @public */ export class DescribeTrafficSourcesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DescribeWarmPoolCommand.ts b/clients/client-auto-scaling/src/commands/DescribeWarmPoolCommand.ts index 608a1f15d2c5b..71e837a534e57 100644 --- a/clients/client-auto-scaling/src/commands/DescribeWarmPoolCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeWarmPoolCommand.ts @@ -98,6 +98,7 @@ export interface DescribeWarmPoolCommandOutput extends DescribeWarmPoolAnswer, _ * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* + * * @public */ export class DescribeWarmPoolCommand extends $Command diff --git a/clients/client-auto-scaling/src/commands/DetachInstancesCommand.ts b/clients/client-auto-scaling/src/commands/DetachInstancesCommand.ts index a151a67d6e2b2..561abe558855b 100644 --- a/clients/client-auto-scaling/src/commands/DetachInstancesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DetachInstancesCommand.ts @@ -87,38 +87,38 @@ export interface DetachInstancesCommandOutput extends DetachInstancesAnswer, __M * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To detach an instance from an Auto Scaling group * ```javascript * // This example detaches the specified instance from the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "InstanceIds": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * InstanceIds: [ * "i-93633f9b" * ], - * "ShouldDecrementDesiredCapacity": true + * ShouldDecrementDesiredCapacity: true * }; * const command = new DetachInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Activities": [ + * Activities: [ * { - * "ActivityId": "5091cb52-547a-47ce-a236-c9ccbc2cb2c9", - * "AutoScalingGroupName": "my-auto-scaling-group", - * "Cause": "At 2015-04-12T15:02:16Z instance i-93633f9b was detached in response to a user request, shrinking the capacity from 2 to 1.", - * "Description": "Detaching EC2 instance: i-93633f9b", - * "Details": "details", - * "Progress": 50, - * "StartTime": "2015-04-12T15:02:16.179Z", - * "StatusCode": "InProgress" + * ActivityId: "5091cb52-547a-47ce-a236-c9ccbc2cb2c9", + * AutoScalingGroupName: "my-auto-scaling-group", + * Cause: "At 2015-04-12T15:02:16Z instance i-93633f9b was detached in response to a user request, shrinking the capacity from 2 to 1.", + * Description: "Detaching EC2 instance: i-93633f9b", + * Details: "details", + * Progress: 50, + * StartTime: "2015-04-12T15:02:16.179Z", + * StatusCode: "InProgress" * } * ] * } * *\/ - * // example id: autoscaling-detach-instances-1 * ``` * + * @public */ export class DetachInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DetachLoadBalancerTargetGroupsCommand.ts b/clients/client-auto-scaling/src/commands/DetachLoadBalancerTargetGroupsCommand.ts index dc3dd1dec4e1e..a52da7c6ba686 100644 --- a/clients/client-auto-scaling/src/commands/DetachLoadBalancerTargetGroupsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DetachLoadBalancerTargetGroupsCommand.ts @@ -83,21 +83,24 @@ export interface DetachLoadBalancerTargetGroupsCommandOutput * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To detach a target group from an Auto Scaling group * ```javascript * // This example detaches the specified target group from the specified Auto Scaling group * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "TargetGroupARNs": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * TargetGroupARNs: [ * "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" * ] * }; * const command = new DetachLoadBalancerTargetGroupsCommand(input); - * await client.send(command); - * // example id: autoscaling-detach-load-balancer-target-groups-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DetachLoadBalancerTargetGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DetachLoadBalancersCommand.ts b/clients/client-auto-scaling/src/commands/DetachLoadBalancersCommand.ts index 2c4f92b11e4da..736caf53e44cf 100644 --- a/clients/client-auto-scaling/src/commands/DetachLoadBalancersCommand.ts +++ b/clients/client-auto-scaling/src/commands/DetachLoadBalancersCommand.ts @@ -74,21 +74,24 @@ export interface DetachLoadBalancersCommandOutput extends DetachLoadBalancersRes * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To detach a load balancer from an Auto Scaling group * ```javascript * // This example detaches the specified load balancer from the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "LoadBalancerNames": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * LoadBalancerNames: [ * "my-load-balancer" * ] * }; * const command = new DetachLoadBalancersCommand(input); - * await client.send(command); - * // example id: autoscaling-detach-load-balancers-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DetachLoadBalancersCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DetachTrafficSourcesCommand.ts b/clients/client-auto-scaling/src/commands/DetachTrafficSourcesCommand.ts index 9d48766f1f687..a28ea02983321 100644 --- a/clients/client-auto-scaling/src/commands/DetachTrafficSourcesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DetachTrafficSourcesCommand.ts @@ -68,23 +68,26 @@ export interface DetachTrafficSourcesCommandOutput extends DetachTrafficSourcesR * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To detach a target group from an Auto Scaling group * ```javascript * // This example detaches the specified target group from the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "TrafficSources": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * TrafficSources: [ * { - * "Identifier": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" + * Identifier: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" * } * ] * }; * const command = new DetachTrafficSourcesCommand(input); - * await client.send(command); - * // example id: to-detach-a-target-group-from-an-auto-scaling-group-1680040404169 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DetachTrafficSourcesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/DisableMetricsCollectionCommand.ts b/clients/client-auto-scaling/src/commands/DisableMetricsCollectionCommand.ts index 2797deb6693d3..7a7261876508c 100644 --- a/clients/client-auto-scaling/src/commands/DisableMetricsCollectionCommand.ts +++ b/clients/client-auto-scaling/src/commands/DisableMetricsCollectionCommand.ts @@ -60,21 +60,24 @@ export interface DisableMetricsCollectionCommandOutput extends __MetadataBearer * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To disable metrics collection for an Auto Scaling group * ```javascript * // This example disables collecting data for the GroupDesiredCapacity metric for the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "Metrics": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * Metrics: [ * "GroupDesiredCapacity" * ] * }; * const command = new DisableMetricsCollectionCommand(input); - * await client.send(command); - * // example id: autoscaling-disable-metrics-collection-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DisableMetricsCollectionCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/EnableMetricsCollectionCommand.ts b/clients/client-auto-scaling/src/commands/EnableMetricsCollectionCommand.ts index d5c6e195d8391..a3fd9b75eeb9c 100644 --- a/clients/client-auto-scaling/src/commands/EnableMetricsCollectionCommand.ts +++ b/clients/client-auto-scaling/src/commands/EnableMetricsCollectionCommand.ts @@ -66,19 +66,22 @@ export interface EnableMetricsCollectionCommandOutput extends __MetadataBearer { * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To enable metrics collection for an Auto Scaling group * ```javascript * // This example enables data collection for the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "Granularity": "1Minute" + * AutoScalingGroupName: "my-auto-scaling-group", + * Granularity: "1Minute" * }; * const command = new EnableMetricsCollectionCommand(input); - * await client.send(command); - * // example id: autoscaling-enable-metrics-collection-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class EnableMetricsCollectionCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/EnterStandbyCommand.ts b/clients/client-auto-scaling/src/commands/EnterStandbyCommand.ts index ae55249504deb..e4a5a043c2df2 100644 --- a/clients/client-auto-scaling/src/commands/EnterStandbyCommand.ts +++ b/clients/client-auto-scaling/src/commands/EnterStandbyCommand.ts @@ -87,38 +87,38 @@ export interface EnterStandbyCommandOutput extends EnterStandbyAnswer, __Metadat * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To move instances into standby mode * ```javascript * // This example puts the specified instance into standby mode. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "InstanceIds": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * InstanceIds: [ * "i-93633f9b" * ], - * "ShouldDecrementDesiredCapacity": true + * ShouldDecrementDesiredCapacity: true * }; * const command = new EnterStandbyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Activities": [ + * Activities: [ * { - * "ActivityId": "ffa056b4-6ed3-41ba-ae7c-249dfae6eba1", - * "AutoScalingGroupName": "my-auto-scaling-group", - * "Cause": "At 2015-04-12T15:10:23Z instance i-93633f9b was moved to standby in response to a user request, shrinking the capacity from 2 to 1.", - * "Description": "Moving EC2 instance to Standby: i-93633f9b", - * "Details": "details", - * "Progress": 50, - * "StartTime": "2015-04-12T15:10:23.640Z", - * "StatusCode": "InProgress" + * ActivityId: "ffa056b4-6ed3-41ba-ae7c-249dfae6eba1", + * AutoScalingGroupName: "my-auto-scaling-group", + * Cause: "At 2015-04-12T15:10:23Z instance i-93633f9b was moved to standby in response to a user request, shrinking the capacity from 2 to 1.", + * Description: "Moving EC2 instance to Standby: i-93633f9b", + * Details: "details", + * Progress: 50, + * StartTime: "2015-04-12T15:10:23.640Z", + * StatusCode: "InProgress" * } * ] * } * *\/ - * // example id: autoscaling-enter-standby-1 * ``` * + * @public */ export class EnterStandbyCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/ExecutePolicyCommand.ts b/clients/client-auto-scaling/src/commands/ExecutePolicyCommand.ts index 9cb2505119908..2a804e1a03506 100644 --- a/clients/client-auto-scaling/src/commands/ExecutePolicyCommand.ts +++ b/clients/client-auto-scaling/src/commands/ExecutePolicyCommand.ts @@ -66,21 +66,24 @@ export interface ExecutePolicyCommandOutput extends __MetadataBearer {} * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To execute a scaling policy * ```javascript * // This example executes the specified policy. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "BreachThreshold": 50, - * "MetricValue": 59, - * "PolicyName": "my-step-scale-out-policy" + * AutoScalingGroupName: "my-auto-scaling-group", + * BreachThreshold: 50.0, + * MetricValue: 59.0, + * PolicyName: "my-step-scale-out-policy" * }; * const command = new ExecutePolicyCommand(input); - * await client.send(command); - * // example id: autoscaling-execute-policy-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ExecutePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/ExitStandbyCommand.ts b/clients/client-auto-scaling/src/commands/ExitStandbyCommand.ts index e2a3428754719..7fa839cb648ef 100644 --- a/clients/client-auto-scaling/src/commands/ExitStandbyCommand.ts +++ b/clients/client-auto-scaling/src/commands/ExitStandbyCommand.ts @@ -82,37 +82,37 @@ export interface ExitStandbyCommandOutput extends ExitStandbyAnswer, __MetadataB * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To move instances out of standby mode * ```javascript * // This example moves the specified instance out of standby mode. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "InstanceIds": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * InstanceIds: [ * "i-93633f9b" * ] * }; * const command = new ExitStandbyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Activities": [ + * Activities: [ * { - * "ActivityId": "142928e1-a2dc-453a-9b24-b85ad6735928", - * "AutoScalingGroupName": "my-auto-scaling-group", - * "Cause": "At 2015-04-12T15:14:29Z instance i-93633f9b was moved out of standby in response to a user request, increasing the capacity from 1 to 2.", - * "Description": "Moving EC2 instance out of Standby: i-93633f9b", - * "Details": "details", - * "Progress": 30, - * "StartTime": "2015-04-12T15:14:29.886Z", - * "StatusCode": "PreInService" + * ActivityId: "142928e1-a2dc-453a-9b24-b85ad6735928", + * AutoScalingGroupName: "my-auto-scaling-group", + * Cause: "At 2015-04-12T15:14:29Z instance i-93633f9b was moved out of standby in response to a user request, increasing the capacity from 1 to 2.", + * Description: "Moving EC2 instance out of Standby: i-93633f9b", + * Details: "details", + * Progress: 30, + * StartTime: "2015-04-12T15:14:29.886Z", + * StatusCode: "PreInService" * } * ] * } * *\/ - * // example id: autoscaling-exit-standby-1 * ``` * + * @public */ export class ExitStandbyCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts b/clients/client-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts index 0e71e3da12e78..556fe02a57e9c 100644 --- a/clients/client-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts +++ b/clients/client-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts @@ -177,6 +177,7 @@ export interface GetPredictiveScalingForecastCommandOutput * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* + * * @public */ export class GetPredictiveScalingForecastCommand extends $Command diff --git a/clients/client-auto-scaling/src/commands/PutLifecycleHookCommand.ts b/clients/client-auto-scaling/src/commands/PutLifecycleHookCommand.ts index e0497c9bbf444..cc6f350f579e5 100644 --- a/clients/client-auto-scaling/src/commands/PutLifecycleHookCommand.ts +++ b/clients/client-auto-scaling/src/commands/PutLifecycleHookCommand.ts @@ -113,22 +113,25 @@ export interface PutLifecycleHookCommandOutput extends PutLifecycleHookAnswer, _ * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To create a launch lifecycle hook * ```javascript * // This example creates a lifecycle hook for instance launch. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "DefaultResult": "CONTINUE", - * "HeartbeatTimeout": 300, - * "LifecycleHookName": "my-launch-lifecycle-hook", - * "LifecycleTransition": "autoscaling:EC2_INSTANCE_LAUNCHING" + * AutoScalingGroupName: "my-auto-scaling-group", + * DefaultResult: "CONTINUE", + * HeartbeatTimeout: 300, + * LifecycleHookName: "my-launch-lifecycle-hook", + * LifecycleTransition: "autoscaling:EC2_INSTANCE_LAUNCHING" * }; * const command = new PutLifecycleHookCommand(input); - * await client.send(command); - * // example id: autoscaling-put-lifecycle-hook-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutLifecycleHookCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/PutNotificationConfigurationCommand.ts b/clients/client-auto-scaling/src/commands/PutNotificationConfigurationCommand.ts index 31ee61b180526..4301459221cea 100644 --- a/clients/client-auto-scaling/src/commands/PutNotificationConfigurationCommand.ts +++ b/clients/client-auto-scaling/src/commands/PutNotificationConfigurationCommand.ts @@ -78,22 +78,25 @@ export interface PutNotificationConfigurationCommandOutput extends __MetadataBea * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To add an Auto Scaling notification * ```javascript * // This example adds the specified notification to the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "NotificationTypes": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * NotificationTypes: [ * "autoscaling:TEST_NOTIFICATION" * ], - * "TopicARN": "arn:aws:sns:us-west-2:123456789012:my-sns-topic" + * TopicARN: "arn:aws:sns:us-west-2:123456789012:my-sns-topic" * }; * const command = new PutNotificationConfigurationCommand(input); - * await client.send(command); - * // example id: autoscaling-put-notification-configuration-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutNotificationConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/PutScalingPolicyCommand.ts b/clients/client-auto-scaling/src/commands/PutScalingPolicyCommand.ts index 6b8903dc9ce3c..f86cbb5a17414 100644 --- a/clients/client-auto-scaling/src/commands/PutScalingPolicyCommand.ts +++ b/clients/client-auto-scaling/src/commands/PutScalingPolicyCommand.ts @@ -226,42 +226,42 @@ export interface PutScalingPolicyCommandOutput extends PolicyARNType, __Metadata * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To add a scaling policy to an Auto Scaling group * ```javascript * // This example adds the specified policy to the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "PolicyName": "alb1000-target-tracking-scaling-policy", - * "PolicyType": "TargetTrackingScaling", - * "TargetTrackingConfiguration": { - * "PredefinedMetricSpecification": { - * "PredefinedMetricType": "ALBRequestCountPerTarget", - * "ResourceLabel": "app/my-alb/778d41231b141a0f/targetgroup/my-alb-target-group/943f017f100becff" + * AutoScalingGroupName: "my-auto-scaling-group", + * PolicyName: "alb1000-target-tracking-scaling-policy", + * PolicyType: "TargetTrackingScaling", + * TargetTrackingConfiguration: { + * PredefinedMetricSpecification: { + * PredefinedMetricType: "ALBRequestCountPerTarget", + * ResourceLabel: "app/my-alb/778d41231b141a0f/targetgroup/my-alb-target-group/943f017f100becff" * }, - * "TargetValue": 1000 + * TargetValue: 1000.0 * } * }; * const command = new PutScalingPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Alarms": [ + * Alarms: [ * { - * "AlarmARN": "arn:aws:cloudwatch:us-west-2:123456789012:alarm:TargetTracking-my-asg-AlarmHigh-fc0e4183-23ac-497e-9992-691c9980c38e", - * "AlarmName": "TargetTracking-my-asg-AlarmHigh-fc0e4183-23ac-497e-9992-691c9980c38e" + * AlarmARN: "arn:aws:cloudwatch:us-west-2:123456789012:alarm:TargetTracking-my-asg-AlarmHigh-fc0e4183-23ac-497e-9992-691c9980c38e", + * AlarmName: "TargetTracking-my-asg-AlarmHigh-fc0e4183-23ac-497e-9992-691c9980c38e" * }, * { - * "AlarmARN": "arn:aws:cloudwatch:us-west-2:123456789012:alarm:TargetTracking-my-asg-AlarmLow-61a39305-ed0c-47af-bd9e-471a352ee1a2", - * "AlarmName": "TargetTracking-my-asg-AlarmLow-61a39305-ed0c-47af-bd9e-471a352ee1a2" + * AlarmARN: "arn:aws:cloudwatch:us-west-2:123456789012:alarm:TargetTracking-my-asg-AlarmLow-61a39305-ed0c-47af-bd9e-471a352ee1a2", + * AlarmName: "TargetTracking-my-asg-AlarmLow-61a39305-ed0c-47af-bd9e-471a352ee1a2" * } * ], - * "PolicyARN": "arn:aws:autoscaling:us-west-2:123456789012:scalingPolicy:228f02c2-c665-4bfd-aaac-8b04080bea3c:autoScalingGroupName/my-auto-scaling-group:policyName/alb1000-target-tracking-scaling-policy" + * PolicyARN: "arn:aws:autoscaling:us-west-2:123456789012:scalingPolicy:228f02c2-c665-4bfd-aaac-8b04080bea3c:autoScalingGroupName/my-auto-scaling-group:policyName/alb1000-target-tracking-scaling-policy" * } * *\/ - * // example id: autoscaling-put-scaling-policy-1 * ``` * + * @public */ export class PutScalingPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/PutScheduledUpdateGroupActionCommand.ts b/clients/client-auto-scaling/src/commands/PutScheduledUpdateGroupActionCommand.ts index 71745a2243cc3..1cb670509d654 100644 --- a/clients/client-auto-scaling/src/commands/PutScheduledUpdateGroupActionCommand.ts +++ b/clients/client-auto-scaling/src/commands/PutScheduledUpdateGroupActionCommand.ts @@ -86,24 +86,27 @@ export interface PutScheduledUpdateGroupActionCommandOutput extends __MetadataBe * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To add a scheduled action to an Auto Scaling group * ```javascript * // This example adds the specified scheduled action to the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "DesiredCapacity": 4, - * "EndTime": "2014-05-12T08:00:00Z", - * "MaxSize": 6, - * "MinSize": 2, - * "ScheduledActionName": "my-scheduled-action", - * "StartTime": "2014-05-12T08:00:00Z" + * AutoScalingGroupName: "my-auto-scaling-group", + * DesiredCapacity: 4, + * EndTime: "2014-05-12T08:00:00Z", + * MaxSize: 6, + * MinSize: 2, + * ScheduledActionName: "my-scheduled-action", + * StartTime: "2014-05-12T08:00:00Z" * }; * const command = new PutScheduledUpdateGroupActionCommand(input); - * await client.send(command); - * // example id: autoscaling-put-scheduled-update-group-action-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutScheduledUpdateGroupActionCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/PutWarmPoolCommand.ts b/clients/client-auto-scaling/src/commands/PutWarmPoolCommand.ts index 0efab60fb2f7a..dd61af1741dfb 100644 --- a/clients/client-auto-scaling/src/commands/PutWarmPoolCommand.ts +++ b/clients/client-auto-scaling/src/commands/PutWarmPoolCommand.ts @@ -78,23 +78,26 @@ export interface PutWarmPoolCommandOutput extends PutWarmPoolAnswer, __MetadataB * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To create a warm pool for an Auto Scaling group * ```javascript * // This example creates a warm pool for the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "InstanceReusePolicy": { - * "ReuseOnScaleIn": true + * AutoScalingGroupName: "my-auto-scaling-group", + * InstanceReusePolicy: { + * ReuseOnScaleIn: true * }, - * "MinSize": 30, - * "PoolState": "Hibernated" + * MinSize: 30, + * PoolState: "Hibernated" * }; * const command = new PutWarmPoolCommand(input); - * await client.send(command); - * // example id: to-add-a-warm-pool-to-an-auto-scaling-group-1617818810383 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutWarmPoolCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/RecordLifecycleActionHeartbeatCommand.ts b/clients/client-auto-scaling/src/commands/RecordLifecycleActionHeartbeatCommand.ts index f219e1d542e83..7faec45294262 100644 --- a/clients/client-auto-scaling/src/commands/RecordLifecycleActionHeartbeatCommand.ts +++ b/clients/client-auto-scaling/src/commands/RecordLifecycleActionHeartbeatCommand.ts @@ -102,20 +102,23 @@ export interface RecordLifecycleActionHeartbeatCommandOutput * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To record a lifecycle action heartbeat * ```javascript * // This example records a lifecycle action heartbeat to keep the instance in a pending state. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "LifecycleActionToken": "bcd2f1b8-9a78-44d3-8a7a-4dd07d7cf635", - * "LifecycleHookName": "my-lifecycle-hook" + * AutoScalingGroupName: "my-auto-scaling-group", + * LifecycleActionToken: "bcd2f1b8-9a78-44d3-8a7a-4dd07d7cf635", + * LifecycleHookName: "my-lifecycle-hook" * }; * const command = new RecordLifecycleActionHeartbeatCommand(input); - * await client.send(command); - * // example id: autoscaling-record-lifecycle-action-heartbeat-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RecordLifecycleActionHeartbeatCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/ResumeProcessesCommand.ts b/clients/client-auto-scaling/src/commands/ResumeProcessesCommand.ts index eacb9071bc8ad..e10c2a1d5da14 100644 --- a/clients/client-auto-scaling/src/commands/ResumeProcessesCommand.ts +++ b/clients/client-auto-scaling/src/commands/ResumeProcessesCommand.ts @@ -66,21 +66,24 @@ export interface ResumeProcessesCommandOutput extends __MetadataBearer {} * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To resume Auto Scaling processes * ```javascript * // This example resumes the specified suspended scaling process for the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "ScalingProcesses": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * ScalingProcesses: [ * "AlarmNotification" * ] * }; * const command = new ResumeProcessesCommand(input); - * await client.send(command); - * // example id: autoscaling-resume-processes-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ResumeProcessesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/RollbackInstanceRefreshCommand.ts b/clients/client-auto-scaling/src/commands/RollbackInstanceRefreshCommand.ts index d9dfb2582a428..4facf967f6468 100644 --- a/clients/client-auto-scaling/src/commands/RollbackInstanceRefreshCommand.ts +++ b/clients/client-auto-scaling/src/commands/RollbackInstanceRefreshCommand.ts @@ -98,6 +98,7 @@ export interface RollbackInstanceRefreshCommandOutput extends RollbackInstanceRe * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* + * * @public */ export class RollbackInstanceRefreshCommand extends $Command diff --git a/clients/client-auto-scaling/src/commands/SetDesiredCapacityCommand.ts b/clients/client-auto-scaling/src/commands/SetDesiredCapacityCommand.ts index 1e6f15991d8af..a02c5c1f2b2f9 100644 --- a/clients/client-auto-scaling/src/commands/SetDesiredCapacityCommand.ts +++ b/clients/client-auto-scaling/src/commands/SetDesiredCapacityCommand.ts @@ -68,20 +68,23 @@ export interface SetDesiredCapacityCommandOutput extends __MetadataBearer {} * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To set the desired capacity for an Auto Scaling group * ```javascript * // This example sets the desired capacity for the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "DesiredCapacity": 2, - * "HonorCooldown": true + * AutoScalingGroupName: "my-auto-scaling-group", + * DesiredCapacity: 2, + * HonorCooldown: true * }; * const command = new SetDesiredCapacityCommand(input); - * await client.send(command); - * // example id: autoscaling-set-desired-capacity-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetDesiredCapacityCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/SetInstanceHealthCommand.ts b/clients/client-auto-scaling/src/commands/SetInstanceHealthCommand.ts index 4689366f5856a..7f5b9d6aa33ef 100644 --- a/clients/client-auto-scaling/src/commands/SetInstanceHealthCommand.ts +++ b/clients/client-auto-scaling/src/commands/SetInstanceHealthCommand.ts @@ -62,19 +62,22 @@ export interface SetInstanceHealthCommandOutput extends __MetadataBearer {} * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To set the health status of an instance * ```javascript * // This example sets the health status of the specified instance to Unhealthy. * const input = { - * "HealthStatus": "Unhealthy", - * "InstanceId": "i-93633f9b" + * HealthStatus: "Unhealthy", + * InstanceId: "i-93633f9b" * }; * const command = new SetInstanceHealthCommand(input); - * await client.send(command); - * // example id: autoscaling-set-instance-health-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetInstanceHealthCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/SetInstanceProtectionCommand.ts b/clients/client-auto-scaling/src/commands/SetInstanceProtectionCommand.ts index d01d4ca7c27ff..d7fcdcae33f2f 100644 --- a/clients/client-auto-scaling/src/commands/SetInstanceProtectionCommand.ts +++ b/clients/client-auto-scaling/src/commands/SetInstanceProtectionCommand.ts @@ -73,37 +73,42 @@ export interface SetInstanceProtectionCommandOutput extends SetInstanceProtectio * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To enable instance protection for an instance * ```javascript * // This example enables instance protection for the specified instance. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "InstanceIds": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * InstanceIds: [ * "i-93633f9b" * ], - * "ProtectedFromScaleIn": true + * ProtectedFromScaleIn: true * }; * const command = new SetInstanceProtectionCommand(input); - * await client.send(command); - * // example id: autoscaling-set-instance-protection-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To disable instance protection for an instance * ```javascript * // This example disables instance protection for the specified instance. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "InstanceIds": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * InstanceIds: [ * "i-93633f9b" * ], - * "ProtectedFromScaleIn": false + * ProtectedFromScaleIn: false * }; * const command = new SetInstanceProtectionCommand(input); - * await client.send(command); - * // example id: autoscaling-set-instance-protection-2 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetInstanceProtectionCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/StartInstanceRefreshCommand.ts b/clients/client-auto-scaling/src/commands/StartInstanceRefreshCommand.ts index c9114af86e4a9..4a0b0aae39ee6 100644 --- a/clients/client-auto-scaling/src/commands/StartInstanceRefreshCommand.ts +++ b/clients/client-auto-scaling/src/commands/StartInstanceRefreshCommand.ts @@ -220,40 +220,40 @@ export interface StartInstanceRefreshCommandOutput extends StartInstanceRefreshA * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To start an instance refresh * ```javascript * // This example starts an instance refresh for the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "DesiredConfiguration": { - * "LaunchTemplate": { - * "LaunchTemplateName": "my-template-for-auto-scaling", - * "Version": "$Latest" + * AutoScalingGroupName: "my-auto-scaling-group", + * DesiredConfiguration: { + * LaunchTemplate: { + * LaunchTemplateName: "my-template-for-auto-scaling", + * Version: "$Latest" * } * }, - * "Preferences": { - * "AlarmSpecification": { - * "Alarms": [ + * Preferences: { + * AlarmSpecification: { + * Alarms: [ * "my-alarm" * ] * }, - * "AutoRollback": true, - * "InstanceWarmup": 200, - * "MaxHealthyPercentage": 120, - * "MinHealthyPercentage": 90 + * AutoRollback: true, + * InstanceWarmup: 200, + * MaxHealthyPercentage: 120, + * MinHealthyPercentage: 90 * } * }; * const command = new StartInstanceRefreshCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InstanceRefreshId": "08b91cf7-8fa6-48af-b6a6-d227f40f1b9b" + * InstanceRefreshId: "08b91cf7-8fa6-48af-b6a6-d227f40f1b9b" * } * *\/ - * // example id: to-start-an-instance-refresh-1592957271522 * ``` * + * @public */ export class StartInstanceRefreshCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/SuspendProcessesCommand.ts b/clients/client-auto-scaling/src/commands/SuspendProcessesCommand.ts index ab7caada55720..5b6e94e56d933 100644 --- a/clients/client-auto-scaling/src/commands/SuspendProcessesCommand.ts +++ b/clients/client-auto-scaling/src/commands/SuspendProcessesCommand.ts @@ -69,21 +69,24 @@ export interface SuspendProcessesCommandOutput extends __MetadataBearer {} * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To suspend Auto Scaling processes * ```javascript * // This example suspends the specified scaling process for the specified Auto Scaling group. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "ScalingProcesses": [ + * AutoScalingGroupName: "my-auto-scaling-group", + * ScalingProcesses: [ * "AlarmNotification" * ] * }; * const command = new SuspendProcessesCommand(input); - * await client.send(command); - * // example id: autoscaling-suspend-processes-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SuspendProcessesCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/TerminateInstanceInAutoScalingGroupCommand.ts b/clients/client-auto-scaling/src/commands/TerminateInstanceInAutoScalingGroupCommand.ts index 50fc0883d8491..6d6f6dc5edf57 100644 --- a/clients/client-auto-scaling/src/commands/TerminateInstanceInAutoScalingGroupCommand.ts +++ b/clients/client-auto-scaling/src/commands/TerminateInstanceInAutoScalingGroupCommand.ts @@ -92,19 +92,22 @@ export interface TerminateInstanceInAutoScalingGroupCommandOutput extends Activi * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To terminate an instance in an Auto Scaling group * ```javascript * // This example terminates the specified instance from the specified Auto Scaling group without updating the size of the group. Auto Scaling launches a replacement instance after the specified instance terminates. * const input = { - * "InstanceId": "i-93633f9b", - * "ShouldDecrementDesiredCapacity": false + * InstanceId: "i-93633f9b", + * ShouldDecrementDesiredCapacity: false * }; * const command = new TerminateInstanceInAutoScalingGroupCommand(input); - * await client.send(command); - * // example id: autoscaling-terminate-instance-in-auto-scaling-group-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class TerminateInstanceInAutoScalingGroupCommand extends $Command .classBuilder< diff --git a/clients/client-auto-scaling/src/commands/UpdateAutoScalingGroupCommand.ts b/clients/client-auto-scaling/src/commands/UpdateAutoScalingGroupCommand.ts index 27aed3d705741..9e60d598b5b7c 100644 --- a/clients/client-auto-scaling/src/commands/UpdateAutoScalingGroupCommand.ts +++ b/clients/client-auto-scaling/src/commands/UpdateAutoScalingGroupCommand.ts @@ -259,25 +259,28 @@ export interface UpdateAutoScalingGroupCommandOutput extends __MetadataBearer {} * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* - * @public + * * @example To update an Auto Scaling group * ```javascript * // This example updates multiple properties at the same time. * const input = { - * "AutoScalingGroupName": "my-auto-scaling-group", - * "LaunchTemplate": { - * "LaunchTemplateName": "my-template-for-auto-scaling", - * "Version": "2" + * AutoScalingGroupName: "my-auto-scaling-group", + * LaunchTemplate: { + * LaunchTemplateName: "my-template-for-auto-scaling", + * Version: "2" * }, - * "MaxSize": 5, - * "MinSize": 1, - * "NewInstancesProtectedFromScaleIn": true + * MaxSize: 5, + * MinSize: 1, + * NewInstancesProtectedFromScaleIn: true * }; * const command = new UpdateAutoScalingGroupCommand(input); - * await client.send(command); - * // example id: autoscaling-update-auto-scaling-group-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateAutoScalingGroupCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/CreateCapabilityCommand.ts b/clients/client-b2bi/src/commands/CreateCapabilityCommand.ts index 4645e3c790294..b9edf6c7cfdf6 100644 --- a/clients/client-b2bi/src/commands/CreateCapabilityCommand.ts +++ b/clients/client-b2bi/src/commands/CreateCapabilityCommand.ts @@ -140,85 +140,85 @@ export interface CreateCapabilityCommandOutput extends CreateCapabilityResponse, * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample CreateCapability call * ```javascript * // * const input = { - * "name": "b2biexample", - * "type": "edi", - * "clientToken": "foo", - * "configuration": { - * "edi": { - * "type": { - * "x12Details": { - * "version": "VERSION_4010", - * "transactionSet": "X12_110" - * } - * }, - * "inputLocation": { - * "key": "input/", - * "bucketName": "test-bucket" + * clientToken: "foo", + * configuration: { + * edi: { + * inputLocation: { + * bucketName: "test-bucket", + * key: "input/" * }, - * "outputLocation": { - * "key": "output/", - * "bucketName": "test-bucket" + * outputLocation: { + * bucketName: "test-bucket", + * key: "output/" * }, - * "transformerId": "tr-9a893cf536df4658b" + * transformerId: "tr-9a893cf536df4658b", + * type: { + * x12Details: { + * transactionSet: "X12_110", + * version: "VERSION_4010" + * } + * } * } * }, - * "instructionsDocuments": [ + * instructionsDocuments: [ * { - * "key": "instructiondoc.txt", - * "bucketName": "test-bucket" + * bucketName: "test-bucket", + * key: "instructiondoc.txt" * } * ], - * "tags": [ + * name: "b2biexample", + * tags: [ * { - * "Key": "capabilityKey1", - * "Value": "capabilityValue1" + * Key: "capabilityKey1", + * Value: "capabilityValue1" * } - * ] + * ], + * type: "edi" * }; * const command = new CreateCapabilityCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "b2biexample", - * "type": "edi", - * "capabilityArn": "arn:aws:b2bi:us-west-2:123456789012:capability/ca-963a8121e4fc4e348", - * "capabilityId": "ca-963a8121e4fc4e348", - * "configuration": { - * "edi": { - * "type": { - * "x12Details": { - * "version": "VERSION_4010", - * "transactionSet": "X12_110" - * } - * }, - * "inputLocation": { - * "key": "input/", - * "bucketName": "test-bucket" + * capabilityArn: "arn:aws:b2bi:us-west-2:123456789012:capability/ca-963a8121e4fc4e348", + * capabilityId: "ca-963a8121e4fc4e348", + * configuration: { + * edi: { + * inputLocation: { + * bucketName: "test-bucket", + * key: "input/" * }, - * "outputLocation": { - * "key": "output/", - * "bucketName": "test-bucket" + * outputLocation: { + * bucketName: "test-bucket", + * key: "output/" * }, - * "transformerId": "tr-9a893cf536df4658b" + * transformerId: "tr-9a893cf536df4658b", + * type: { + * x12Details: { + * transactionSet: "X12_110", + * version: "VERSION_4010" + * } + * } * } * }, - * "createdAt": "2023-11-01T21:51:05.504Z", - * "instructionsDocuments": [ + * createdAt: "2023-11-01T21:51:05.504Z", + * instructionsDocuments: [ * { - * "key": "instructiondoc.txt", - * "bucketName": "test-bucket" + * bucketName: "test-bucket", + * key: "instructiondoc.txt" * } - * ] + * ], + * name: "b2biexample", + * type: "edi" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateCapabilityCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/CreatePartnershipCommand.ts b/clients/client-b2bi/src/commands/CreatePartnershipCommand.ts index 0802c2c5673a7..a8c3c66143808 100644 --- a/clients/client-b2bi/src/commands/CreatePartnershipCommand.ts +++ b/clients/client-b2bi/src/commands/CreatePartnershipCommand.ts @@ -161,46 +161,46 @@ export interface CreatePartnershipCommandOutput extends CreatePartnershipRespons * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample CreatePartnership call * ```javascript * // * const input = { - * "name": "b2bipartner", - * "capabilities": [ + * capabilities: [ * "ca-963a8121e4fc4e348" * ], - * "clientToken": "foo", - * "email": "john@example.com", - * "phone": "5555555555", - * "profileId": "p-60fbc37c87f04fce9", - * "tags": [ + * clientToken: "foo", + * email: "john@example.com", + * name: "b2bipartner", + * phone: "5555555555", + * profileId: "p-60fbc37c87f04fce9", + * tags: [ * { - * "Key": "sampleKey1", - * "Value": "sampleValue1" + * Key: "sampleKey1", + * Value: "sampleValue1" * } * ] * }; * const command = new CreatePartnershipCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "b2bipartner", - * "capabilities": [ + * capabilities: [ * "ca-963a8121e4fc4e348" * ], - * "createdAt": "2023-11-01T21:51:05.504Z", - * "email": "john@example.com", - * "partnershipArn": "arn:aws:b2bi:us-west-2:123456789012:partnership/ps-60fbc37c87f04fce9", - * "partnershipId": "ps-219fa02f5b4242af8", - * "phone": "5555555555", - * "profileId": "p-60fbc37c87f04fce9", - * "tradingPartnerId": "tp-2a17ca447f6f4a8a8" + * createdAt: "2023-11-01T21:51:05.504Z", + * email: "john@example.com", + * name: "b2bipartner", + * partnershipArn: "arn:aws:b2bi:us-west-2:123456789012:partnership/ps-60fbc37c87f04fce9", + * partnershipId: "ps-219fa02f5b4242af8", + * phone: "5555555555", + * profileId: "p-60fbc37c87f04fce9", + * tradingPartnerId: "tp-2a17ca447f6f4a8a8" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreatePartnershipCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/CreateProfileCommand.ts b/clients/client-b2bi/src/commands/CreateProfileCommand.ts index 210f811250d4c..5fe09ba8722b2 100644 --- a/clients/client-b2bi/src/commands/CreateProfileCommand.ts +++ b/clients/client-b2bi/src/commands/CreateProfileCommand.ts @@ -101,42 +101,42 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample CreateProfile call * ```javascript * // * const input = { - * "name": "Shipping Profile", - * "businessName": "John's Shipping", - * "clientToken": "foo", - * "email": "john@example.com", - * "logging": "ENABLED", - * "phone": "5555555555", - * "tags": [ + * businessName: "John's Shipping", + * clientToken: "foo", + * email: "john@example.com", + * logging: "ENABLED", + * name: "Shipping Profile", + * phone: "5555555555", + * tags: [ * { - * "Key": "sampleKey", - * "Value": "sampleValue" + * Key: "sampleKey", + * Value: "sampleValue" * } * ] * }; * const command = new CreateProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "Shipping Profile", - * "businessName": "John's Trucking", - * "createdAt": "2023-11-01T21:51:05.504Z", - * "email": "john@example.com", - * "logGroupName": "b2bi/p-60fbc37c87f04fce9-Logs", - * "logging": "ENABLED", - * "phone": "5555555555", - * "profileArn": "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9", - * "profileId": "p-60fbc37c87f04fce9" + * businessName: "John's Trucking", + * createdAt: "2023-11-01T21:51:05.504Z", + * email: "john@example.com", + * logGroupName: "b2bi/p-60fbc37c87f04fce9-Logs", + * logging: "ENABLED", + * name: "Shipping Profile", + * phone: "5555555555", + * profileArn: "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9", + * profileId: "p-60fbc37c87f04fce9" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateProfileCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/CreateStarterMappingTemplateCommand.ts b/clients/client-b2bi/src/commands/CreateStarterMappingTemplateCommand.ts index 07ccde49e5121..b76095a47a741 100644 --- a/clients/client-b2bi/src/commands/CreateStarterMappingTemplateCommand.ts +++ b/clients/client-b2bi/src/commands/CreateStarterMappingTemplateCommand.ts @@ -88,33 +88,33 @@ export interface CreateStarterMappingTemplateCommandOutput * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample CreateStarterMappingTemplate call * ```javascript * // * const input = { - * "mappingType": "JSONATA", - * "outputSampleLocation": { - * "key": "output-sample-key", - * "bucketName": "output-sample-bucket" + * mappingType: "JSONATA", + * outputSampleLocation: { + * bucketName: "output-sample-bucket", + * key: "output-sample-key" * }, - * "templateDetails": { - * "x12": { - * "version": "VERSION_4010", - * "transactionSet": "X12_110" + * templateDetails: { + * x12: { + * transactionSet: "X12_110", + * version: "VERSION_4010" * } * } * }; * const command = new CreateStarterMappingTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "mappingTemplate": "Example Mapping Template" + * mappingTemplate: "Example Mapping Template" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateStarterMappingTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/CreateTransformerCommand.ts b/clients/client-b2bi/src/commands/CreateTransformerCommand.ts index 4a0b13b3256d8..b65e9db3dcc04 100644 --- a/clients/client-b2bi/src/commands/CreateTransformerCommand.ts +++ b/clients/client-b2bi/src/commands/CreateTransformerCommand.ts @@ -199,76 +199,76 @@ export interface CreateTransformerCommandOutput extends CreateTransformerRespons * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample CreateTransformer call * ```javascript * // * const input = { - * "name": "transformX12", - * "clientToken": "foo", - * "inputConversion": { - * "formatOptions": { - * "x12": { - * "version": "VERSION_4010", - * "transactionSet": "X12_110" + * clientToken: "foo", + * inputConversion: { + * formatOptions: { + * x12: { + * transactionSet: "X12_110", + * version: "VERSION_4010" * } * }, - * "fromFormat": "X12" + * fromFormat: "X12" * }, - * "mapping": { - * "template": "{}", - * "templateLanguage": "JSONATA" + * mapping: { + * template: "{}", + * templateLanguage: "JSONATA" * }, - * "sampleDocuments": { - * "bucketName": "test-bucket", - * "keys": [ + * name: "transformX12", + * sampleDocuments: { + * bucketName: "test-bucket", + * keys: [ * { - * "input": "sampleDoc.txt" + * input: "sampleDoc.txt" * } * ] * }, - * "tags": [ + * tags: [ * { - * "Key": "sampleKey", - * "Value": "sampleValue" + * Key: "sampleKey", + * Value: "sampleValue" * } * ] * }; * const command = new CreateTransformerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "transformX12", - * "createdAt": "2023-11-01T21:51:05.504Z", - * "inputConversion": { - * "formatOptions": { - * "x12": { - * "version": "VERSION_4010", - * "transactionSet": "X12_110" + * createdAt: "2023-11-01T21:51:05.504Z", + * inputConversion: { + * formatOptions: { + * x12: { + * transactionSet: "X12_110", + * version: "VERSION_4010" * } * }, - * "fromFormat": "X12" + * fromFormat: "X12" * }, - * "mapping": { - * "template": "{}", - * "templateLanguage": "JSONATA" + * mapping: { + * template: "{}", + * templateLanguage: "JSONATA" * }, - * "sampleDocuments": { - * "bucketName": "test-bucket", - * "keys": [ + * name: "transformX12", + * sampleDocuments: { + * bucketName: "test-bucket", + * keys: [ * { - * "input": "sampleDoc.txt" + * input: "sampleDoc.txt" * } * ] * }, - * "status": "inactive", - * "transformerArn": "arn:aws:b2bi:us-west-2:123456789012:transformer/tr-974c129999f84d8c9", - * "transformerId": "tr-974c129999f84d8c9" + * status: "inactive", + * transformerArn: "arn:aws:b2bi:us-west-2:123456789012:transformer/tr-974c129999f84d8c9", + * transformerId: "tr-974c129999f84d8c9" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateTransformerCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/DeleteCapabilityCommand.ts b/clients/client-b2bi/src/commands/DeleteCapabilityCommand.ts index 623a31f30085b..9557540102984 100644 --- a/clients/client-b2bi/src/commands/DeleteCapabilityCommand.ts +++ b/clients/client-b2bi/src/commands/DeleteCapabilityCommand.ts @@ -71,18 +71,21 @@ export interface DeleteCapabilityCommandOutput extends __MetadataBearer {} * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample DeleteCapabilty call * ```javascript * // * const input = { - * "capabilityId": "ca-963a8121e4fc4e348" + * capabilityId: "ca-963a8121e4fc4e348" * }; * const command = new DeleteCapabilityCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteCapabilityCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/DeletePartnershipCommand.ts b/clients/client-b2bi/src/commands/DeletePartnershipCommand.ts index efff793da4130..6c48f66323926 100644 --- a/clients/client-b2bi/src/commands/DeletePartnershipCommand.ts +++ b/clients/client-b2bi/src/commands/DeletePartnershipCommand.ts @@ -72,18 +72,21 @@ export interface DeletePartnershipCommandOutput extends __MetadataBearer {} * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample DeletePartnership call * ```javascript * // * const input = { - * "partnershipId": "ps-219fa02f5b4242af8" + * partnershipId: "ps-219fa02f5b4242af8" * }; * const command = new DeletePartnershipCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeletePartnershipCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/DeleteProfileCommand.ts b/clients/client-b2bi/src/commands/DeleteProfileCommand.ts index 71a8f60cdd095..07b24508b3622 100644 --- a/clients/client-b2bi/src/commands/DeleteProfileCommand.ts +++ b/clients/client-b2bi/src/commands/DeleteProfileCommand.ts @@ -72,18 +72,21 @@ export interface DeleteProfileCommandOutput extends __MetadataBearer {} * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample DeleteProfile call * ```javascript * // * const input = { - * "profileId": "p-60fbc37c87f04fce9" + * profileId: "p-60fbc37c87f04fce9" * }; * const command = new DeleteProfileCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteProfileCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/DeleteTransformerCommand.ts b/clients/client-b2bi/src/commands/DeleteTransformerCommand.ts index 2d1fc3f2bba16..7fbefdaa67de4 100644 --- a/clients/client-b2bi/src/commands/DeleteTransformerCommand.ts +++ b/clients/client-b2bi/src/commands/DeleteTransformerCommand.ts @@ -72,18 +72,21 @@ export interface DeleteTransformerCommandOutput extends __MetadataBearer {} * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample DeleteTransformer call * ```javascript * // * const input = { - * "transformerId": "tr-974c129999f84d8c9" + * transformerId: "tr-974c129999f84d8c9" * }; * const command = new DeleteTransformerCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteTransformerCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/GenerateMappingCommand.ts b/clients/client-b2bi/src/commands/GenerateMappingCommand.ts index 2ef14843ca699..e62b820c5690e 100644 --- a/clients/client-b2bi/src/commands/GenerateMappingCommand.ts +++ b/clients/client-b2bi/src/commands/GenerateMappingCommand.ts @@ -74,26 +74,26 @@ export interface GenerateMappingCommandOutput extends GenerateMappingResponse, _ * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample GenerateMapping call * ```javascript * // * const input = { - * "inputFileContent": "Sample input file content", - * "mappingType": "JSONATA", - * "outputFileContent": "Sample output file content" + * inputFileContent: "Sample input file content", + * mappingType: "JSONATA", + * outputFileContent: "Sample output file content" * }; * const command = new GenerateMappingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "mappingAccuracy": 0.95, - * "mappingTemplate": "Sample mapping content" + * mappingAccuracy: 0.95, + * mappingTemplate: "Sample mapping content" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GenerateMappingCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/GetCapabilityCommand.ts b/clients/client-b2bi/src/commands/GetCapabilityCommand.ts index aa5c638376296..127d5cd1b1e03 100644 --- a/clients/client-b2bi/src/commands/GetCapabilityCommand.ts +++ b/clients/client-b2bi/src/commands/GetCapabilityCommand.ts @@ -101,53 +101,53 @@ export interface GetCapabilityCommandOutput extends GetCapabilityResponse, __Met * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample GetCapabilty call * ```javascript * // * const input = { - * "capabilityId": "ca-963a8121e4fc4e348" + * capabilityId: "ca-963a8121e4fc4e348" * }; * const command = new GetCapabilityCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "b2biexample", - * "type": "edi", - * "capabilityArn": "arn:aws:b2bi:us-west-2:123456789012:capability/ca-963a8121e4fc4e348", - * "capabilityId": "ca-963a8121e4fc4e348", - * "configuration": { - * "edi": { - * "type": { - * "x12Details": { - * "version": "VERSION_4010", - * "transactionSet": "X12_110" - * } + * capabilityArn: "arn:aws:b2bi:us-west-2:123456789012:capability/ca-963a8121e4fc4e348", + * capabilityId: "ca-963a8121e4fc4e348", + * configuration: { + * edi: { + * inputLocation: { + * bucketName: "test-bucket", + * key: "input/" * }, - * "inputLocation": { - * "key": "input/", - * "bucketName": "test-bucket" + * outputLocation: { + * bucketName: "test-bucket", + * key: "output/" * }, - * "outputLocation": { - * "key": "output/", - * "bucketName": "test-bucket" - * }, - * "transformerId": "tr-9a893cf536df4658b" + * transformerId: "tr-9a893cf536df4658b", + * type: { + * x12Details: { + * transactionSet: "X12_110", + * version: "VERSION_4010" + * } + * } * } * }, - * "createdAt": "2023-11-01T21:51:05.504Z", - * "instructionsDocuments": [ + * createdAt: "2023-11-01T21:51:05.504Z", + * instructionsDocuments: [ * { - * "key": "instructiondoc.txt", - * "bucketName": "test-bucket" + * bucketName: "test-bucket", + * key: "instructiondoc.txt" * } * ], - * "modifiedAt": "2023-11-02T21:51:05.504Z" + * modifiedAt: "2023-11-02T21:51:05.504Z", + * name: "b2biexample", + * type: "edi" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetCapabilityCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/GetPartnershipCommand.ts b/clients/client-b2bi/src/commands/GetPartnershipCommand.ts index 17c11d021d686..522cbf72dc884 100644 --- a/clients/client-b2bi/src/commands/GetPartnershipCommand.ts +++ b/clients/client-b2bi/src/commands/GetPartnershipCommand.ts @@ -114,34 +114,34 @@ export interface GetPartnershipCommandOutput extends GetPartnershipResponse, __M * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample GetPartnership call * ```javascript * // * const input = { - * "partnershipId": "ps-219fa02f5b4242af8" + * partnershipId: "ps-219fa02f5b4242af8" * }; * const command = new GetPartnershipCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "b2bipartner", - * "capabilities": [ + * capabilities: [ * "ca-963a8121e4fc4e348" * ], - * "createdAt": "2023-11-01T21:51:05.504Z", - * "email": "john@example.com", - * "modifiedAt": "2023-11-01T21:51:05.504Z", - * "partnershipArn": "arn:aws:b2bi:us-west-2:123456789012:partnership/ps-219fa02f5b4242af8", - * "partnershipId": "ps-219fa02f5b4242af8", - * "phone": "5555555555", - * "profileId": "p-60fbc37c87f04fce9", - * "tradingPartnerId": "tp-2a17ca447f6f4a8a8" + * createdAt: "2023-11-01T21:51:05.504Z", + * email: "john@example.com", + * modifiedAt: "2023-11-01T21:51:05.504Z", + * name: "b2bipartner", + * partnershipArn: "arn:aws:b2bi:us-west-2:123456789012:partnership/ps-219fa02f5b4242af8", + * partnershipId: "ps-219fa02f5b4242af8", + * phone: "5555555555", + * profileId: "p-60fbc37c87f04fce9", + * tradingPartnerId: "tp-2a17ca447f6f4a8a8" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetPartnershipCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/GetProfileCommand.ts b/clients/client-b2bi/src/commands/GetProfileCommand.ts index 61467222dcaa3..ec05d65fbdee4 100644 --- a/clients/client-b2bi/src/commands/GetProfileCommand.ts +++ b/clients/client-b2bi/src/commands/GetProfileCommand.ts @@ -80,31 +80,31 @@ export interface GetProfileCommandOutput extends GetProfileResponse, __MetadataB * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample GetProfile call * ```javascript * // * const input = { - * "profileId": "p-60fbc37c87f04fce9" + * profileId: "p-60fbc37c87f04fce9" * }; * const command = new GetProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "Shipping Profile", - * "businessName": "John's Trucking", - * "createdAt": "2023-11-01T21:51:05.504Z", - * "email": "john@example.com", - * "logGroupName": "b2bi/p-60fbc37c87f04fce9-Logs", - * "logging": "ENABLED", - * "phone": "5555555555", - * "profileArn": "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9", - * "profileId": "p-60fbc37c87f04fce9" + * businessName: "John's Trucking", + * createdAt: "2023-11-01T21:51:05.504Z", + * email: "john@example.com", + * logGroupName: "b2bi/p-60fbc37c87f04fce9-Logs", + * logging: "ENABLED", + * name: "Shipping Profile", + * phone: "5555555555", + * profileArn: "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9", + * profileId: "p-60fbc37c87f04fce9" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetProfileCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/GetTransformerCommand.ts b/clients/client-b2bi/src/commands/GetTransformerCommand.ts index 399c810164b4a..cac874e2c7cce 100644 --- a/clients/client-b2bi/src/commands/GetTransformerCommand.ts +++ b/clients/client-b2bi/src/commands/GetTransformerCommand.ts @@ -116,48 +116,48 @@ export interface GetTransformerCommandOutput extends GetTransformerResponse, __M * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample GetTransformer call * ```javascript * // * const input = { - * "transformerId": "tr-974c129999f84d8c9" + * transformerId: "tr-974c129999f84d8c9" * }; * const command = new GetTransformerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "transformX12", - * "createdAt": "2023-11-01T21:51:05.504Z", - * "inputConversion": { - * "formatOptions": { - * "x12": { - * "version": "VERSION_4010", - * "transactionSet": "X12_110" + * createdAt: "2023-11-01T21:51:05.504Z", + * inputConversion: { + * formatOptions: { + * x12: { + * transactionSet: "X12_110", + * version: "VERSION_4010" * } * }, - * "fromFormat": "X12" + * fromFormat: "X12" * }, - * "mapping": { - * "template": "{}", - * "templateLanguage": "JSONATA" + * mapping: { + * template: "{}", + * templateLanguage: "JSONATA" * }, - * "sampleDocuments": { - * "bucketName": "test-bucket", - * "keys": [ + * name: "transformX12", + * sampleDocuments: { + * bucketName: "test-bucket", + * keys: [ * { - * "input": "sampleDoc.txt" + * input: "sampleDoc.txt" * } * ] * }, - * "status": "inactive", - * "transformerArn": "arn:aws:b2bi:us-west-2:123456789012:transformer/tr-974c129999f84d8c9", - * "transformerId": "tr-974c129999f84d8c9" + * status: "inactive", + * transformerArn: "arn:aws:b2bi:us-west-2:123456789012:transformer/tr-974c129999f84d8c9", + * transformerId: "tr-974c129999f84d8c9" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetTransformerCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/GetTransformerJobCommand.ts b/clients/client-b2bi/src/commands/GetTransformerJobCommand.ts index 321587e00a370..e1b47cc372b48 100644 --- a/clients/client-b2bi/src/commands/GetTransformerJobCommand.ts +++ b/clients/client-b2bi/src/commands/GetTransformerJobCommand.ts @@ -78,31 +78,31 @@ export interface GetTransformerJobCommandOutput extends GetTransformerJobRespons * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample GetTransformerJob call * ```javascript * // * const input = { - * "transformerId": "tr-974c129999f84d8c9", - * "transformerJobId": "tj-vpYxfV7yQOqjMSYllEslLw" + * transformerId: "tr-974c129999f84d8c9", + * transformerJobId: "tj-vpYxfV7yQOqjMSYllEslLw" * }; * const command = new GetTransformerJobCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "message": "Transformed, writing output", - * "outputFiles": [ + * message: "Transformed, writing output", + * outputFiles: [ * { - * "key": "output/sample-214.edi.2023-11-01T10:44:03.353Z.json", - * "bucketName": "gt-edi-test" + * bucketName: "gt-edi-test", + * key: "output/sample-214.edi.2023-11-01T10:44:03.353Z.json" * } * ], - * "status": "succeeded" + * status: "succeeded" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetTransformerJobCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/ListCapabilitiesCommand.ts b/clients/client-b2bi/src/commands/ListCapabilitiesCommand.ts index a14bbb52414e0..76bb7068c373c 100644 --- a/clients/client-b2bi/src/commands/ListCapabilitiesCommand.ts +++ b/clients/client-b2bi/src/commands/ListCapabilitiesCommand.ts @@ -77,33 +77,33 @@ export interface ListCapabilitiesCommandOutput extends ListCapabilitiesResponse, * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample ListCapabilities call * ```javascript * // * const input = { - * "maxResults": 50, - * "nextToken": "foo" + * maxResults: 50, + * nextToken: "foo" * }; * const command = new ListCapabilitiesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "capabilities": [ + * capabilities: [ * { - * "name": "b2biexample", - * "type": "edi", - * "capabilityId": "ca-963a8121e4fc4e348", - * "createdAt": "2023-11-01T21:51:05.504Z", - * "modifiedAt": "2023-11-01T21:51:05.504Z" + * capabilityId: "ca-963a8121e4fc4e348", + * createdAt: "2023-11-01T21:51:05.504Z", + * modifiedAt: "2023-11-01T21:51:05.504Z", + * name: "b2biexample", + * type: "edi" * } * ], - * "nextToken": "foo" + * nextToken: "foo" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListCapabilitiesCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/ListPartnershipsCommand.ts b/clients/client-b2bi/src/commands/ListPartnershipsCommand.ts index 9b51da2769b23..287a6a67c32bb 100644 --- a/clients/client-b2bi/src/commands/ListPartnershipsCommand.ts +++ b/clients/client-b2bi/src/commands/ListPartnershipsCommand.ts @@ -114,38 +114,38 @@ export interface ListPartnershipsCommandOutput extends ListPartnershipsResponse, * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample ListPartnerships call * ```javascript * // * const input = { - * "maxResults": 50, - * "nextToken": "foo", - * "profileId": "p-60fbc37c87f04fce9" + * maxResults: 50, + * nextToken: "foo", + * profileId: "p-60fbc37c87f04fce9" * }; * const command = new ListPartnershipsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "nextToken": "string", - * "partnerships": [ + * nextToken: "string", + * partnerships: [ * { - * "name": "b2bipartner", - * "capabilities": [ + * capabilities: [ * "ca-963a8121e4fc4e348" * ], - * "createdAt": "2023-11-01T21:51:05.504Z", - * "modifiedAt": "2023-11-01T21:51:05.504Z", - * "partnershipId": "ps-219fa02f5b4242af8", - * "profileId": "p-60fbc37c87f04fce9", - * "tradingPartnerId": "tp-2a17ca447f6f4a8a8" + * createdAt: "2023-11-01T21:51:05.504Z", + * modifiedAt: "2023-11-01T21:51:05.504Z", + * name: "b2bipartner", + * partnershipId: "ps-219fa02f5b4242af8", + * profileId: "p-60fbc37c87f04fce9", + * tradingPartnerId: "tp-2a17ca447f6f4a8a8" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListPartnershipsCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/ListProfilesCommand.ts b/clients/client-b2bi/src/commands/ListProfilesCommand.ts index 6420ebec4409e..6b0b418fc1aa8 100644 --- a/clients/client-b2bi/src/commands/ListProfilesCommand.ts +++ b/clients/client-b2bi/src/commands/ListProfilesCommand.ts @@ -80,34 +80,34 @@ export interface ListProfilesCommandOutput extends ListProfilesResponse, __Metad * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample ListProfiles call * ```javascript * // * const input = { - * "maxResults": 50, - * "nextToken": "foo" + * maxResults: 50, + * nextToken: "foo" * }; * const command = new ListProfilesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "nextToken": "foo", - * "profiles": [ + * nextToken: "foo", + * profiles: [ * { - * "name": "Shipping Profile", - * "businessName": "John's Trucking", - * "createdAt": "2023-11-01T21:51:05.504Z", - * "logGroupName": "b2bi/p-60fbc37c87f04fce9-Logs", - * "logging": "ENABLED", - * "profileId": "p-60fbc37c87f04fce9" + * businessName: "John's Trucking", + * createdAt: "2023-11-01T21:51:05.504Z", + * logGroupName: "b2bi/p-60fbc37c87f04fce9-Logs", + * logging: "ENABLED", + * name: "Shipping Profile", + * profileId: "p-60fbc37c87f04fce9" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListProfilesCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/ListTagsForResourceCommand.ts b/clients/client-b2bi/src/commands/ListTagsForResourceCommand.ts index 775ccc08c0ba9..41d4a60728932 100644 --- a/clients/client-b2bi/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-b2bi/src/commands/ListTagsForResourceCommand.ts @@ -69,28 +69,28 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample ListTagsForResources call * ```javascript * // * const input = { - * "ResourceARN": "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9" + * ResourceARN: "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Tags": [ + * Tags: [ * { - * "Key": "sampleKey", - * "Value": "SampleValue" + * Key: "sampleKey", + * Value: "SampleValue" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/ListTransformersCommand.ts b/clients/client-b2bi/src/commands/ListTransformersCommand.ts index 8643bd6ef5d8a..88abeba4e3c0e 100644 --- a/clients/client-b2bi/src/commands/ListTransformersCommand.ts +++ b/clients/client-b2bi/src/commands/ListTransformersCommand.ts @@ -118,42 +118,42 @@ export interface ListTransformersCommandOutput extends ListTransformersResponse, * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample ListTransformers call * ```javascript * // * const input = { - * "maxResults": 50, - * "nextToken": "foo" + * maxResults: 50, + * nextToken: "foo" * }; * const command = new ListTransformersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "nextToken": "foo", - * "transformers": [ + * nextToken: "foo", + * transformers: [ * { - * "name": "transformJSON", - * "createdAt": "2023-11-01T21:51:05.504Z", - * "ediType": { - * "x12Details": { - * "version": "VERSION_4010", - * "transactionSet": "X12_110" + * createdAt: "2023-11-01T21:51:05.504Z", + * ediType: { + * x12Details: { + * transactionSet: "X12_110", + * version: "VERSION_4010" * } * }, - * "fileFormat": "JSON", - * "mappingTemplate": "$", - * "modifiedAt": "2023-11-01T21:51:05.504Z", - * "sampleDocument": "s3://test-bucket/sampleDoc.txt", - * "status": "inactive", - * "transformerId": "tr-974c129999f84d8c9" + * fileFormat: "JSON", + * mappingTemplate: "$", + * modifiedAt: "2023-11-01T21:51:05.504Z", + * name: "transformJSON", + * sampleDocument: "s3://test-bucket/sampleDoc.txt", + * status: "inactive", + * transformerId: "tr-974c129999f84d8c9" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListTransformersCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/StartTransformerJobCommand.ts b/clients/client-b2bi/src/commands/StartTransformerJobCommand.ts index 317858f27809d..3db08f2569ef5 100644 --- a/clients/client-b2bi/src/commands/StartTransformerJobCommand.ts +++ b/clients/client-b2bi/src/commands/StartTransformerJobCommand.ts @@ -84,32 +84,32 @@ export interface StartTransformerJobCommandOutput extends StartTransformerJobRes * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample StartTransformerJob call * ```javascript * // * const input = { - * "clientToken": "foo", - * "inputFile": { - * "key": "input/inputFile.txt", - * "bucketName": "test-bucket" + * clientToken: "foo", + * inputFile: { + * bucketName: "test-bucket", + * key: "input/inputFile.txt" * }, - * "outputLocation": { - * "key": "output/", - * "bucketName": "test-bucket" + * outputLocation: { + * bucketName: "test-bucket", + * key: "output/" * }, - * "transformerId": "tr-974c129999f84d8c9" + * transformerId: "tr-974c129999f84d8c9" * }; * const command = new StartTransformerJobCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "transformerJobId": "tj-vpYxfV7yQOqjMSYllEslLw" + * transformerJobId: "tj-vpYxfV7yQOqjMSYllEslLw" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class StartTransformerJobCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/TagResourceCommand.ts b/clients/client-b2bi/src/commands/TagResourceCommand.ts index 3fbfd21250570..cec4623f69712 100644 --- a/clients/client-b2bi/src/commands/TagResourceCommand.ts +++ b/clients/client-b2bi/src/commands/TagResourceCommand.ts @@ -72,24 +72,27 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample TagResource call * ```javascript * // * const input = { - * "ResourceARN": "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9", - * "Tags": [ + * ResourceARN: "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9", + * Tags: [ * { - * "Key": "sampleKey", - * "Value": "SampleValue" + * Key: "sampleKey", + * Value: "SampleValue" * } * ] * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/TestConversionCommand.ts b/clients/client-b2bi/src/commands/TestConversionCommand.ts index b30442bf6ae10..90276a54d4382 100644 --- a/clients/client-b2bi/src/commands/TestConversionCommand.ts +++ b/clients/client-b2bi/src/commands/TestConversionCommand.ts @@ -93,38 +93,38 @@ export interface TestConversionCommandOutput extends TestConversionResponse, __M * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample TestConversion call * ```javascript * // * const input = { - * "source": { - * "fileFormat": "JSON", - * "inputFile": { - * "fileContent": "Sample file content" + * source: { + * fileFormat: "JSON", + * inputFile: { + * fileContent: "Sample file content" * } * }, - * "target": { - * "fileFormat": "X12", - * "formatDetails": { - * "x12": { - * "version": "VERSION_4010", - * "transactionSet": "X12_110" + * target: { + * fileFormat: "X12", + * formatDetails: { + * x12: { + * transactionSet: "X12_110", + * version: "VERSION_4010" * } * } * } * }; * const command = new TestConversionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "convertedFileContent": "Sample converted file content", - * "validationMessages": [] + * convertedFileContent: "Sample converted file content", + * validationMessages: [] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class TestConversionCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/TestMappingCommand.ts b/clients/client-b2bi/src/commands/TestMappingCommand.ts index a5b4dfb4dbb30..773c783e41e6a 100644 --- a/clients/client-b2bi/src/commands/TestMappingCommand.ts +++ b/clients/client-b2bi/src/commands/TestMappingCommand.ts @@ -72,25 +72,25 @@ export interface TestMappingCommandOutput extends TestMappingResponse, __Metadat * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample TestMapping call * ```javascript * // * const input = { - * "fileFormat": "JSON", - * "inputFileContent": "Sample file content", - * "mappingTemplate": "$" + * fileFormat: "JSON", + * inputFileContent: "Sample file content", + * mappingTemplate: "$" * }; * const command = new TestMappingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "mappedFileContent": "Sample file content" + * mappedFileContent: "Sample file content" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class TestMappingCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/TestParsingCommand.ts b/clients/client-b2bi/src/commands/TestParsingCommand.ts index fa2ab154759f4..6ffb2d757f4b7 100644 --- a/clients/client-b2bi/src/commands/TestParsingCommand.ts +++ b/clients/client-b2bi/src/commands/TestParsingCommand.ts @@ -80,33 +80,33 @@ export interface TestParsingCommandOutput extends TestParsingResponse, __Metadat * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample TestParsing call * ```javascript * // * const input = { - * "ediType": { - * "x12Details": { - * "version": "VERSION_4010", - * "transactionSet": "X12_110" + * ediType: { + * x12Details: { + * transactionSet: "X12_110", + * version: "VERSION_4010" * } * }, - * "fileFormat": "JSON", - * "inputFile": { - * "key": "sampleFile.txt", - * "bucketName": "test-bucket" + * fileFormat: "JSON", + * inputFile: { + * bucketName: "test-bucket", + * key: "sampleFile.txt" * } * }; * const command = new TestParsingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "parsedFileContent": "Sample parsed file content" + * parsedFileContent: "Sample parsed file content" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class TestParsingCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/UntagResourceCommand.ts b/clients/client-b2bi/src/commands/UntagResourceCommand.ts index f1fd954c6fe0b..1052a5412ea2d 100644 --- a/clients/client-b2bi/src/commands/UntagResourceCommand.ts +++ b/clients/client-b2bi/src/commands/UntagResourceCommand.ts @@ -65,21 +65,24 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample UntagResource call * ```javascript * // * const input = { - * "ResourceARN": "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9", - * "TagKeys": [ + * ResourceARN: "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9", + * TagKeys: [ * "sampleKey" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/UpdateCapabilityCommand.ts b/clients/client-b2bi/src/commands/UpdateCapabilityCommand.ts index f6affa9c899ad..e5f3033a7d274 100644 --- a/clients/client-b2bi/src/commands/UpdateCapabilityCommand.ts +++ b/clients/client-b2bi/src/commands/UpdateCapabilityCommand.ts @@ -135,79 +135,79 @@ export interface UpdateCapabilityCommandOutput extends UpdateCapabilityResponse, * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample UpdateCapability call * ```javascript * // * const input = { - * "name": "b2biexample", - * "capabilityId": "ca-963a8121e4fc4e348", - * "configuration": { - * "edi": { - * "type": { - * "x12Details": { - * "version": "VERSION_4010", - * "transactionSet": "X12_110" - * } + * capabilityId: "ca-963a8121e4fc4e348", + * configuration: { + * edi: { + * inputLocation: { + * bucketName: "test-bucket", + * key: "input/" * }, - * "inputLocation": { - * "key": "input/", - * "bucketName": "test-bucket" - * }, - * "outputLocation": { - * "key": "output/", - * "bucketName": "test-bucket" + * outputLocation: { + * bucketName: "test-bucket", + * key: "output/" * }, - * "transformerId": "tr-9a893cf536df4658b" + * transformerId: "tr-9a893cf536df4658b", + * type: { + * x12Details: { + * transactionSet: "X12_110", + * version: "VERSION_4010" + * } + * } * } * }, - * "instructionsDocuments": [ + * instructionsDocuments: [ * { - * "key": "instructiondoc.txt", - * "bucketName": "test-bucket" + * bucketName: "test-bucket", + * key: "instructiondoc.txt" * } - * ] + * ], + * name: "b2biexample" * }; * const command = new UpdateCapabilityCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "b2biexample", - * "type": "edi", - * "capabilityArn": "arn:aws:b2bi:us-west-2:123456789012:capability/ca-963a8121e4fc4e348", - * "capabilityId": "ca-963a8121e4fc4e348", - * "configuration": { - * "edi": { - * "type": { - * "x12Details": { - * "version": "VERSION_4010", - * "transactionSet": "X12_110" - * } - * }, - * "inputLocation": { - * "key": "input/", - * "bucketName": "test-bucket" + * capabilityArn: "arn:aws:b2bi:us-west-2:123456789012:capability/ca-963a8121e4fc4e348", + * capabilityId: "ca-963a8121e4fc4e348", + * configuration: { + * edi: { + * inputLocation: { + * bucketName: "test-bucket", + * key: "input/" * }, - * "outputLocation": { - * "key": "output/", - * "bucketName": "test-bucket" + * outputLocation: { + * bucketName: "test-bucket", + * key: "output/" * }, - * "transformerId": "tr-9a893cf536df4658b" + * transformerId: "tr-9a893cf536df4658b", + * type: { + * x12Details: { + * transactionSet: "X12_110", + * version: "VERSION_4010" + * } + * } * } * }, - * "createdAt": "2023-11-01T21:51:05.504Z", - * "instructionsDocuments": [ + * createdAt: "2023-11-01T21:51:05.504Z", + * instructionsDocuments: [ * { - * "key": "instructiondoc.txt", - * "bucketName": "test-bucket" + * bucketName: "test-bucket", + * key: "instructiondoc.txt" * } * ], - * "modifiedAt": "2023-11-01T21:51:05.504Z" + * modifiedAt: "2023-11-01T21:51:05.504Z", + * name: "b2biexample", + * type: "edi" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateCapabilityCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/UpdatePartnershipCommand.ts b/clients/client-b2bi/src/commands/UpdatePartnershipCommand.ts index ef6ad4a7ceedb..46fbd27e0c270 100644 --- a/clients/client-b2bi/src/commands/UpdatePartnershipCommand.ts +++ b/clients/client-b2bi/src/commands/UpdatePartnershipCommand.ts @@ -152,38 +152,38 @@ export interface UpdatePartnershipCommandOutput extends UpdatePartnershipRespons * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample UpdatePartnership call * ```javascript * // * const input = { - * "name": "b2bipartner", - * "capabilities": [ + * capabilities: [ * "ca-963a8121e4fc4e348" * ], - * "partnershipId": "ps-219fa02f5b4242af8" + * name: "b2bipartner", + * partnershipId: "ps-219fa02f5b4242af8" * }; * const command = new UpdatePartnershipCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "b2bipartner", - * "capabilities": [ + * capabilities: [ * "ca-963a8121e4fc4e348" * ], - * "createdAt": "2023-11-01T21:51:05.504Z", - * "email": "john@example.com", - * "modifiedAt": "2023-11-01T21:51:05.504Z", - * "partnershipArn": "arn:aws:b2bi:us-west-2:123456789012:partnership/ps-60fbc37c87f04fce9", - * "partnershipId": "ps-219fa02f5b4242af8", - * "phone": "5555555555", - * "profileId": "p-60fbc37c87f04fce9", - * "tradingPartnerId": "tp-2a17ca447f6f4a8a8" + * createdAt: "2023-11-01T21:51:05.504Z", + * email: "john@example.com", + * modifiedAt: "2023-11-01T21:51:05.504Z", + * name: "b2bipartner", + * partnershipArn: "arn:aws:b2bi:us-west-2:123456789012:partnership/ps-60fbc37c87f04fce9", + * partnershipId: "ps-219fa02f5b4242af8", + * phone: "5555555555", + * profileId: "p-60fbc37c87f04fce9", + * tradingPartnerId: "tp-2a17ca447f6f4a8a8" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdatePartnershipCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/UpdateProfileCommand.ts b/clients/client-b2bi/src/commands/UpdateProfileCommand.ts index f0968e2abf7e4..e021dd4b0e4e4 100644 --- a/clients/client-b2bi/src/commands/UpdateProfileCommand.ts +++ b/clients/client-b2bi/src/commands/UpdateProfileCommand.ts @@ -95,36 +95,36 @@ export interface UpdateProfileCommandOutput extends UpdateProfileResponse, __Met * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample UpdateProfile call * ```javascript * // * const input = { - * "name": "Shipping Profile", - * "businessName": "John's Shipping", - * "email": "john@example.com", - * "phone": "5555555555", - * "profileId": "p-60fbc37c87f04fce9" + * businessName: "John's Shipping", + * email: "john@example.com", + * name: "Shipping Profile", + * phone: "5555555555", + * profileId: "p-60fbc37c87f04fce9" * }; * const command = new UpdateProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "Shipping Profile", - * "businessName": "John's Trucking", - * "createdAt": "2023-11-01T21:51:05.504Z", - * "email": "john@example.com", - * "logGroupName": "b2bi/p-60fbc37c87f04fce9-Logs", - * "logging": "ENABLED", - * "modifiedAt": "2023-11-02T21:51:05.504Z", - * "phone": "5555555555", - * "profileArn": "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9", - * "profileId": "p-60fbc37c87f04fce9" + * businessName: "John's Trucking", + * createdAt: "2023-11-01T21:51:05.504Z", + * email: "john@example.com", + * logGroupName: "b2bi/p-60fbc37c87f04fce9-Logs", + * logging: "ENABLED", + * modifiedAt: "2023-11-02T21:51:05.504Z", + * name: "Shipping Profile", + * phone: "5555555555", + * profileArn: "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9", + * profileId: "p-60fbc37c87f04fce9" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateProfileCommand extends $Command .classBuilder< diff --git a/clients/client-b2bi/src/commands/UpdateTransformerCommand.ts b/clients/client-b2bi/src/commands/UpdateTransformerCommand.ts index 62d6277d11539..c144a63524201 100644 --- a/clients/client-b2bi/src/commands/UpdateTransformerCommand.ts +++ b/clients/client-b2bi/src/commands/UpdateTransformerCommand.ts @@ -164,72 +164,72 @@ export interface UpdateTransformerCommandOutput extends UpdateTransformerRespons * @throws {@link B2biServiceException} *

Base exception class for all service exceptions from B2bi service.

* - * @public + * * @example Sample UpdateTransformer call * ```javascript * // * const input = { - * "name": "transformX12", - * "inputConversion": { - * "formatOptions": { - * "x12": { - * "version": "VERSION_4010", - * "transactionSet": "X12_110" + * inputConversion: { + * formatOptions: { + * x12: { + * transactionSet: "X12_110", + * version: "VERSION_4010" * } * }, - * "fromFormat": "X12" + * fromFormat: "X12" * }, - * "mapping": { - * "template": "{}", - * "templateLanguage": "JSONATA" + * mapping: { + * template: "{}", + * templateLanguage: "JSONATA" * }, - * "sampleDocuments": { - * "bucketName": "test-bucket", - * "keys": [ + * name: "transformX12", + * sampleDocuments: { + * bucketName: "test-bucket", + * keys: [ * { - * "input": "sampleDoc.txt" + * input: "sampleDoc.txt" * } * ] * }, - * "status": "inactive", - * "transformerId": "tr-974c129999f84d8c9" + * status: "inactive", + * transformerId: "tr-974c129999f84d8c9" * }; * const command = new UpdateTransformerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "transformX12", - * "createdAt": "2023-11-01T21:51:05.504Z", - * "inputConversion": { - * "formatOptions": { - * "x12": { - * "version": "VERSION_4010", - * "transactionSet": "X12_110" + * createdAt: "2023-11-01T21:51:05.504Z", + * inputConversion: { + * formatOptions: { + * x12: { + * transactionSet: "X12_110", + * version: "VERSION_4010" * } * }, - * "fromFormat": "X12" + * fromFormat: "X12" * }, - * "mapping": { - * "template": "{}", - * "templateLanguage": "JSONATA" + * mapping: { + * template: "{}", + * templateLanguage: "JSONATA" * }, - * "modifiedAt": "2023-11-02T22:31:05.504Z", - * "sampleDocuments": { - * "bucketName": "test-bucket", - * "keys": [ + * modifiedAt: "2023-11-02T22:31:05.504Z", + * name: "transformX12", + * sampleDocuments: { + * bucketName: "test-bucket", + * keys: [ * { - * "input": "sampleDoc.txt" + * input: "sampleDoc.txt" * } * ] * }, - * "status": "inactive", - * "transformerArn": "arn:aws:b2bi:us-west-2:123456789012:transformer/tr-974c129999f84d8c9", - * "transformerId": "tr-974c129999f84d8c9" + * status: "inactive", + * transformerArn: "arn:aws:b2bi:us-west-2:123456789012:transformer/tr-974c129999f84d8c9", + * transformerId: "tr-974c129999f84d8c9" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateTransformerCommand extends $Command .classBuilder< diff --git a/clients/client-backup-gateway/src/commands/AssociateGatewayToServerCommand.ts b/clients/client-backup-gateway/src/commands/AssociateGatewayToServerCommand.ts index ff99866b99208..8406786d5a9dc 100644 --- a/clients/client-backup-gateway/src/commands/AssociateGatewayToServerCommand.ts +++ b/clients/client-backup-gateway/src/commands/AssociateGatewayToServerCommand.ts @@ -70,6 +70,7 @@ export interface AssociateGatewayToServerCommandOutput extends AssociateGatewayT * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class AssociateGatewayToServerCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/CreateGatewayCommand.ts b/clients/client-backup-gateway/src/commands/CreateGatewayCommand.ts index 4f3962e20c8ae..94bf4000872f6 100644 --- a/clients/client-backup-gateway/src/commands/CreateGatewayCommand.ts +++ b/clients/client-backup-gateway/src/commands/CreateGatewayCommand.ts @@ -74,6 +74,7 @@ export interface CreateGatewayCommandOutput extends CreateGatewayOutput, __Metad * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class CreateGatewayCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/DeleteGatewayCommand.ts b/clients/client-backup-gateway/src/commands/DeleteGatewayCommand.ts index 5a7f1abca4729..8cc259fa93d7e 100644 --- a/clients/client-backup-gateway/src/commands/DeleteGatewayCommand.ts +++ b/clients/client-backup-gateway/src/commands/DeleteGatewayCommand.ts @@ -68,6 +68,7 @@ export interface DeleteGatewayCommandOutput extends DeleteGatewayOutput, __Metad * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class DeleteGatewayCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/DeleteHypervisorCommand.ts b/clients/client-backup-gateway/src/commands/DeleteHypervisorCommand.ts index a7a79e890d780..df9b6f585ea0b 100644 --- a/clients/client-backup-gateway/src/commands/DeleteHypervisorCommand.ts +++ b/clients/client-backup-gateway/src/commands/DeleteHypervisorCommand.ts @@ -74,6 +74,7 @@ export interface DeleteHypervisorCommandOutput extends DeleteHypervisorOutput, _ * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class DeleteHypervisorCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/DisassociateGatewayFromServerCommand.ts b/clients/client-backup-gateway/src/commands/DisassociateGatewayFromServerCommand.ts index fbd32fec3e2ee..2ee200eeb3b39 100644 --- a/clients/client-backup-gateway/src/commands/DisassociateGatewayFromServerCommand.ts +++ b/clients/client-backup-gateway/src/commands/DisassociateGatewayFromServerCommand.ts @@ -77,6 +77,7 @@ export interface DisassociateGatewayFromServerCommandOutput * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class DisassociateGatewayFromServerCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/GetBandwidthRateLimitScheduleCommand.ts b/clients/client-backup-gateway/src/commands/GetBandwidthRateLimitScheduleCommand.ts index c9c58a332a411..7dd15a38ec692 100644 --- a/clients/client-backup-gateway/src/commands/GetBandwidthRateLimitScheduleCommand.ts +++ b/clients/client-backup-gateway/src/commands/GetBandwidthRateLimitScheduleCommand.ts @@ -88,6 +88,7 @@ export interface GetBandwidthRateLimitScheduleCommandOutput * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class GetBandwidthRateLimitScheduleCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/GetGatewayCommand.ts b/clients/client-backup-gateway/src/commands/GetGatewayCommand.ts index a14a938b6db27..40c88967b79eb 100644 --- a/clients/client-backup-gateway/src/commands/GetGatewayCommand.ts +++ b/clients/client-backup-gateway/src/commands/GetGatewayCommand.ts @@ -83,6 +83,7 @@ export interface GetGatewayCommandOutput extends GetGatewayOutput, __MetadataBea * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class GetGatewayCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/GetHypervisorCommand.ts b/clients/client-backup-gateway/src/commands/GetHypervisorCommand.ts index 99c02a0ad6d6c..1a0fd0a576ea5 100644 --- a/clients/client-backup-gateway/src/commands/GetHypervisorCommand.ts +++ b/clients/client-backup-gateway/src/commands/GetHypervisorCommand.ts @@ -80,6 +80,7 @@ export interface GetHypervisorCommandOutput extends GetHypervisorOutput, __Metad * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class GetHypervisorCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/GetHypervisorPropertyMappingsCommand.ts b/clients/client-backup-gateway/src/commands/GetHypervisorPropertyMappingsCommand.ts index 6c4caa1e36ede..9d28262f02b2b 100644 --- a/clients/client-backup-gateway/src/commands/GetHypervisorPropertyMappingsCommand.ts +++ b/clients/client-backup-gateway/src/commands/GetHypervisorPropertyMappingsCommand.ts @@ -84,6 +84,7 @@ export interface GetHypervisorPropertyMappingsCommandOutput * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class GetHypervisorPropertyMappingsCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/GetVirtualMachineCommand.ts b/clients/client-backup-gateway/src/commands/GetVirtualMachineCommand.ts index 5ee5923a77b9e..cc2c8e73929e6 100644 --- a/clients/client-backup-gateway/src/commands/GetVirtualMachineCommand.ts +++ b/clients/client-backup-gateway/src/commands/GetVirtualMachineCommand.ts @@ -82,6 +82,7 @@ export interface GetVirtualMachineCommandOutput extends GetVirtualMachineOutput, * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class GetVirtualMachineCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/ImportHypervisorConfigurationCommand.ts b/clients/client-backup-gateway/src/commands/ImportHypervisorConfigurationCommand.ts index fb6ab91fd803a..3b3b207e5276f 100644 --- a/clients/client-backup-gateway/src/commands/ImportHypervisorConfigurationCommand.ts +++ b/clients/client-backup-gateway/src/commands/ImportHypervisorConfigurationCommand.ts @@ -90,6 +90,7 @@ export interface ImportHypervisorConfigurationCommandOutput * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class ImportHypervisorConfigurationCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/ListGatewaysCommand.ts b/clients/client-backup-gateway/src/commands/ListGatewaysCommand.ts index 6f22f39090ee3..91655bab7f561 100644 --- a/clients/client-backup-gateway/src/commands/ListGatewaysCommand.ts +++ b/clients/client-backup-gateway/src/commands/ListGatewaysCommand.ts @@ -75,6 +75,7 @@ export interface ListGatewaysCommandOutput extends ListGatewaysOutput, __Metadat * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class ListGatewaysCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/ListHypervisorsCommand.ts b/clients/client-backup-gateway/src/commands/ListHypervisorsCommand.ts index 52877cbcd4dda..1359b415d4ddb 100644 --- a/clients/client-backup-gateway/src/commands/ListHypervisorsCommand.ts +++ b/clients/client-backup-gateway/src/commands/ListHypervisorsCommand.ts @@ -75,6 +75,7 @@ export interface ListHypervisorsCommandOutput extends ListHypervisorsOutput, __M * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class ListHypervisorsCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/ListTagsForResourceCommand.ts b/clients/client-backup-gateway/src/commands/ListTagsForResourceCommand.ts index a48f647d9a6a5..5384ea1ca7453 100644 --- a/clients/client-backup-gateway/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-backup-gateway/src/commands/ListTagsForResourceCommand.ts @@ -75,6 +75,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/ListVirtualMachinesCommand.ts b/clients/client-backup-gateway/src/commands/ListVirtualMachinesCommand.ts index 19dc87e0a2bfe..8c421f6f67fb2 100644 --- a/clients/client-backup-gateway/src/commands/ListVirtualMachinesCommand.ts +++ b/clients/client-backup-gateway/src/commands/ListVirtualMachinesCommand.ts @@ -77,6 +77,7 @@ export interface ListVirtualMachinesCommandOutput extends ListVirtualMachinesOut * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class ListVirtualMachinesCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/PutBandwidthRateLimitScheduleCommand.ts b/clients/client-backup-gateway/src/commands/PutBandwidthRateLimitScheduleCommand.ts index 42a68edb61dde..476af61ae1771 100644 --- a/clients/client-backup-gateway/src/commands/PutBandwidthRateLimitScheduleCommand.ts +++ b/clients/client-backup-gateway/src/commands/PutBandwidthRateLimitScheduleCommand.ts @@ -88,6 +88,7 @@ export interface PutBandwidthRateLimitScheduleCommandOutput * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class PutBandwidthRateLimitScheduleCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/PutHypervisorPropertyMappingsCommand.ts b/clients/client-backup-gateway/src/commands/PutHypervisorPropertyMappingsCommand.ts index 35b50e2a5830b..e02800a180c55 100644 --- a/clients/client-backup-gateway/src/commands/PutHypervisorPropertyMappingsCommand.ts +++ b/clients/client-backup-gateway/src/commands/PutHypervisorPropertyMappingsCommand.ts @@ -90,6 +90,7 @@ export interface PutHypervisorPropertyMappingsCommandOutput * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class PutHypervisorPropertyMappingsCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/PutMaintenanceStartTimeCommand.ts b/clients/client-backup-gateway/src/commands/PutMaintenanceStartTimeCommand.ts index 84d88c803f013..902eeb390b371 100644 --- a/clients/client-backup-gateway/src/commands/PutMaintenanceStartTimeCommand.ts +++ b/clients/client-backup-gateway/src/commands/PutMaintenanceStartTimeCommand.ts @@ -75,6 +75,7 @@ export interface PutMaintenanceStartTimeCommandOutput extends PutMaintenanceStar * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class PutMaintenanceStartTimeCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/StartVirtualMachinesMetadataSyncCommand.ts b/clients/client-backup-gateway/src/commands/StartVirtualMachinesMetadataSyncCommand.ts index b455dd2cb6aff..e1373dec98752 100644 --- a/clients/client-backup-gateway/src/commands/StartVirtualMachinesMetadataSyncCommand.ts +++ b/clients/client-backup-gateway/src/commands/StartVirtualMachinesMetadataSyncCommand.ts @@ -76,6 +76,7 @@ export interface StartVirtualMachinesMetadataSyncCommandOutput * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class StartVirtualMachinesMetadataSyncCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/TagResourceCommand.ts b/clients/client-backup-gateway/src/commands/TagResourceCommand.ts index 49940bc7a53e5..36342a9e9ad33 100644 --- a/clients/client-backup-gateway/src/commands/TagResourceCommand.ts +++ b/clients/client-backup-gateway/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/TestHypervisorConfigurationCommand.ts b/clients/client-backup-gateway/src/commands/TestHypervisorConfigurationCommand.ts index 02f1c7bf8a8c0..af40beee9ea12 100644 --- a/clients/client-backup-gateway/src/commands/TestHypervisorConfigurationCommand.ts +++ b/clients/client-backup-gateway/src/commands/TestHypervisorConfigurationCommand.ts @@ -77,6 +77,7 @@ export interface TestHypervisorConfigurationCommandOutput extends TestHypervisor * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class TestHypervisorConfigurationCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/UntagResourceCommand.ts b/clients/client-backup-gateway/src/commands/UntagResourceCommand.ts index 0e96ed41ac951..02bb9333e62be 100644 --- a/clients/client-backup-gateway/src/commands/UntagResourceCommand.ts +++ b/clients/client-backup-gateway/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/UpdateGatewayInformationCommand.ts b/clients/client-backup-gateway/src/commands/UpdateGatewayInformationCommand.ts index 7e4cd68c9aae0..d55828397cdca 100644 --- a/clients/client-backup-gateway/src/commands/UpdateGatewayInformationCommand.ts +++ b/clients/client-backup-gateway/src/commands/UpdateGatewayInformationCommand.ts @@ -73,6 +73,7 @@ export interface UpdateGatewayInformationCommandOutput extends UpdateGatewayInfo * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class UpdateGatewayInformationCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts b/clients/client-backup-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts index a8d1b789ac569..16bd720ed630e 100644 --- a/clients/client-backup-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts +++ b/clients/client-backup-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts @@ -74,6 +74,7 @@ export interface UpdateGatewaySoftwareNowCommandOutput extends UpdateGatewaySoft * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class UpdateGatewaySoftwareNowCommand extends $Command diff --git a/clients/client-backup-gateway/src/commands/UpdateHypervisorCommand.ts b/clients/client-backup-gateway/src/commands/UpdateHypervisorCommand.ts index 596e5cf9c752b..756813dfb5d9d 100644 --- a/clients/client-backup-gateway/src/commands/UpdateHypervisorCommand.ts +++ b/clients/client-backup-gateway/src/commands/UpdateHypervisorCommand.ts @@ -85,6 +85,7 @@ export interface UpdateHypervisorCommandOutput extends UpdateHypervisorOutput, _ * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* + * * @public */ export class UpdateHypervisorCommand extends $Command diff --git a/clients/client-backup/src/commands/CancelLegalHoldCommand.ts b/clients/client-backup/src/commands/CancelLegalHoldCommand.ts index ed3728a6b51c4..14a9c862e4c1a 100644 --- a/clients/client-backup/src/commands/CancelLegalHoldCommand.ts +++ b/clients/client-backup/src/commands/CancelLegalHoldCommand.ts @@ -73,6 +73,7 @@ export interface CancelLegalHoldCommandOutput extends CancelLegalHoldOutput, __M * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class CancelLegalHoldCommand extends $Command diff --git a/clients/client-backup/src/commands/CreateBackupPlanCommand.ts b/clients/client-backup/src/commands/CreateBackupPlanCommand.ts index 10e9528ab163f..10a6cd1cd0cbf 100644 --- a/clients/client-backup/src/commands/CreateBackupPlanCommand.ts +++ b/clients/client-backup/src/commands/CreateBackupPlanCommand.ts @@ -141,6 +141,7 @@ export interface CreateBackupPlanCommandOutput extends CreateBackupPlanOutput, _ * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class CreateBackupPlanCommand extends $Command diff --git a/clients/client-backup/src/commands/CreateBackupSelectionCommand.ts b/clients/client-backup/src/commands/CreateBackupSelectionCommand.ts index 834681832790a..b930919198578 100644 --- a/clients/client-backup/src/commands/CreateBackupSelectionCommand.ts +++ b/clients/client-backup/src/commands/CreateBackupSelectionCommand.ts @@ -119,6 +119,7 @@ export interface CreateBackupSelectionCommandOutput extends CreateBackupSelectio * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class CreateBackupSelectionCommand extends $Command diff --git a/clients/client-backup/src/commands/CreateBackupVaultCommand.ts b/clients/client-backup/src/commands/CreateBackupVaultCommand.ts index 3f5b2914ac2a9..3b86a92bd23e4 100644 --- a/clients/client-backup/src/commands/CreateBackupVaultCommand.ts +++ b/clients/client-backup/src/commands/CreateBackupVaultCommand.ts @@ -89,6 +89,7 @@ export interface CreateBackupVaultCommandOutput extends CreateBackupVaultOutput, * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class CreateBackupVaultCommand extends $Command diff --git a/clients/client-backup/src/commands/CreateFrameworkCommand.ts b/clients/client-backup/src/commands/CreateFrameworkCommand.ts index dcbcd16d7cb1c..0f31be117f11b 100644 --- a/clients/client-backup/src/commands/CreateFrameworkCommand.ts +++ b/clients/client-backup/src/commands/CreateFrameworkCommand.ts @@ -103,6 +103,7 @@ export interface CreateFrameworkCommandOutput extends CreateFrameworkOutput, __M * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class CreateFrameworkCommand extends $Command diff --git a/clients/client-backup/src/commands/CreateLegalHoldCommand.ts b/clients/client-backup/src/commands/CreateLegalHoldCommand.ts index 5aa816a88a7ef..07d8ce1b379ac 100644 --- a/clients/client-backup/src/commands/CreateLegalHoldCommand.ts +++ b/clients/client-backup/src/commands/CreateLegalHoldCommand.ts @@ -110,6 +110,7 @@ export interface CreateLegalHoldCommandOutput extends CreateLegalHoldOutput, __M * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class CreateLegalHoldCommand extends $Command diff --git a/clients/client-backup/src/commands/CreateLogicallyAirGappedBackupVaultCommand.ts b/clients/client-backup/src/commands/CreateLogicallyAirGappedBackupVaultCommand.ts index a38858efb47d4..eedd28198649f 100644 --- a/clients/client-backup/src/commands/CreateLogicallyAirGappedBackupVaultCommand.ts +++ b/clients/client-backup/src/commands/CreateLogicallyAirGappedBackupVaultCommand.ts @@ -101,6 +101,7 @@ export interface CreateLogicallyAirGappedBackupVaultCommandOutput * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class CreateLogicallyAirGappedBackupVaultCommand extends $Command diff --git a/clients/client-backup/src/commands/CreateReportPlanCommand.ts b/clients/client-backup/src/commands/CreateReportPlanCommand.ts index dba176118a4ce..5ed13ad749985 100644 --- a/clients/client-backup/src/commands/CreateReportPlanCommand.ts +++ b/clients/client-backup/src/commands/CreateReportPlanCommand.ts @@ -105,6 +105,7 @@ export interface CreateReportPlanCommandOutput extends CreateReportPlanOutput, _ * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class CreateReportPlanCommand extends $Command diff --git a/clients/client-backup/src/commands/CreateRestoreTestingPlanCommand.ts b/clients/client-backup/src/commands/CreateRestoreTestingPlanCommand.ts index ecd3b0d26a87e..66bab3e9b09b1 100644 --- a/clients/client-backup/src/commands/CreateRestoreTestingPlanCommand.ts +++ b/clients/client-backup/src/commands/CreateRestoreTestingPlanCommand.ts @@ -107,6 +107,7 @@ export interface CreateRestoreTestingPlanCommandOutput extends CreateRestoreTest * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class CreateRestoreTestingPlanCommand extends $Command diff --git a/clients/client-backup/src/commands/CreateRestoreTestingSelectionCommand.ts b/clients/client-backup/src/commands/CreateRestoreTestingSelectionCommand.ts index 086cbbd780744..2471141e2ff8c 100644 --- a/clients/client-backup/src/commands/CreateRestoreTestingSelectionCommand.ts +++ b/clients/client-backup/src/commands/CreateRestoreTestingSelectionCommand.ts @@ -137,6 +137,7 @@ export interface CreateRestoreTestingSelectionCommandOutput * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class CreateRestoreTestingSelectionCommand extends $Command diff --git a/clients/client-backup/src/commands/DeleteBackupPlanCommand.ts b/clients/client-backup/src/commands/DeleteBackupPlanCommand.ts index 401af5318f89e..19f9a06661ad2 100644 --- a/clients/client-backup/src/commands/DeleteBackupPlanCommand.ts +++ b/clients/client-backup/src/commands/DeleteBackupPlanCommand.ts @@ -77,6 +77,7 @@ export interface DeleteBackupPlanCommandOutput extends DeleteBackupPlanOutput, _ * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DeleteBackupPlanCommand extends $Command diff --git a/clients/client-backup/src/commands/DeleteBackupSelectionCommand.ts b/clients/client-backup/src/commands/DeleteBackupSelectionCommand.ts index 00fcfc54163ad..133c904034097 100644 --- a/clients/client-backup/src/commands/DeleteBackupSelectionCommand.ts +++ b/clients/client-backup/src/commands/DeleteBackupSelectionCommand.ts @@ -68,6 +68,7 @@ export interface DeleteBackupSelectionCommandOutput extends __MetadataBearer {} * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DeleteBackupSelectionCommand extends $Command diff --git a/clients/client-backup/src/commands/DeleteBackupVaultAccessPolicyCommand.ts b/clients/client-backup/src/commands/DeleteBackupVaultAccessPolicyCommand.ts index 3d2ab69fa9cc5..c47012f70cb43 100644 --- a/clients/client-backup/src/commands/DeleteBackupVaultAccessPolicyCommand.ts +++ b/clients/client-backup/src/commands/DeleteBackupVaultAccessPolicyCommand.ts @@ -69,6 +69,7 @@ export interface DeleteBackupVaultAccessPolicyCommandOutput extends __MetadataBe * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DeleteBackupVaultAccessPolicyCommand extends $Command diff --git a/clients/client-backup/src/commands/DeleteBackupVaultCommand.ts b/clients/client-backup/src/commands/DeleteBackupVaultCommand.ts index f80f87299abf8..85ac1b30682aa 100644 --- a/clients/client-backup/src/commands/DeleteBackupVaultCommand.ts +++ b/clients/client-backup/src/commands/DeleteBackupVaultCommand.ts @@ -71,6 +71,7 @@ export interface DeleteBackupVaultCommandOutput extends __MetadataBearer {} * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DeleteBackupVaultCommand extends $Command diff --git a/clients/client-backup/src/commands/DeleteBackupVaultLockConfigurationCommand.ts b/clients/client-backup/src/commands/DeleteBackupVaultLockConfigurationCommand.ts index 2e499aa6b586f..b0327f1b01294 100644 --- a/clients/client-backup/src/commands/DeleteBackupVaultLockConfigurationCommand.ts +++ b/clients/client-backup/src/commands/DeleteBackupVaultLockConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface DeleteBackupVaultLockConfigurationCommandOutput extends __Metad * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DeleteBackupVaultLockConfigurationCommand extends $Command diff --git a/clients/client-backup/src/commands/DeleteBackupVaultNotificationsCommand.ts b/clients/client-backup/src/commands/DeleteBackupVaultNotificationsCommand.ts index 9cc079486ba13..32817f7d8c647 100644 --- a/clients/client-backup/src/commands/DeleteBackupVaultNotificationsCommand.ts +++ b/clients/client-backup/src/commands/DeleteBackupVaultNotificationsCommand.ts @@ -69,6 +69,7 @@ export interface DeleteBackupVaultNotificationsCommandOutput extends __MetadataB * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DeleteBackupVaultNotificationsCommand extends $Command diff --git a/clients/client-backup/src/commands/DeleteFrameworkCommand.ts b/clients/client-backup/src/commands/DeleteFrameworkCommand.ts index 80f7fc7b84cee..a884d4c6738a7 100644 --- a/clients/client-backup/src/commands/DeleteFrameworkCommand.ts +++ b/clients/client-backup/src/commands/DeleteFrameworkCommand.ts @@ -70,6 +70,7 @@ export interface DeleteFrameworkCommandOutput extends __MetadataBearer {} * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DeleteFrameworkCommand extends $Command diff --git a/clients/client-backup/src/commands/DeleteRecoveryPointCommand.ts b/clients/client-backup/src/commands/DeleteRecoveryPointCommand.ts index 5c753db1675d9..401b09bb99d96 100644 --- a/clients/client-backup/src/commands/DeleteRecoveryPointCommand.ts +++ b/clients/client-backup/src/commands/DeleteRecoveryPointCommand.ts @@ -87,6 +87,7 @@ export interface DeleteRecoveryPointCommandOutput extends __MetadataBearer {} * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DeleteRecoveryPointCommand extends $Command diff --git a/clients/client-backup/src/commands/DeleteReportPlanCommand.ts b/clients/client-backup/src/commands/DeleteReportPlanCommand.ts index e91c62f0d4595..1717a95014a98 100644 --- a/clients/client-backup/src/commands/DeleteReportPlanCommand.ts +++ b/clients/client-backup/src/commands/DeleteReportPlanCommand.ts @@ -70,6 +70,7 @@ export interface DeleteReportPlanCommandOutput extends __MetadataBearer {} * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DeleteReportPlanCommand extends $Command diff --git a/clients/client-backup/src/commands/DeleteRestoreTestingPlanCommand.ts b/clients/client-backup/src/commands/DeleteRestoreTestingPlanCommand.ts index 3a29eaf93f8fc..6d2ae2e6f61a5 100644 --- a/clients/client-backup/src/commands/DeleteRestoreTestingPlanCommand.ts +++ b/clients/client-backup/src/commands/DeleteRestoreTestingPlanCommand.ts @@ -62,6 +62,7 @@ export interface DeleteRestoreTestingPlanCommandOutput extends __MetadataBearer * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DeleteRestoreTestingPlanCommand extends $Command diff --git a/clients/client-backup/src/commands/DeleteRestoreTestingSelectionCommand.ts b/clients/client-backup/src/commands/DeleteRestoreTestingSelectionCommand.ts index 95d183c514a4d..90555e83bd6d2 100644 --- a/clients/client-backup/src/commands/DeleteRestoreTestingSelectionCommand.ts +++ b/clients/client-backup/src/commands/DeleteRestoreTestingSelectionCommand.ts @@ -66,6 +66,7 @@ export interface DeleteRestoreTestingSelectionCommandOutput extends __MetadataBe * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DeleteRestoreTestingSelectionCommand extends $Command diff --git a/clients/client-backup/src/commands/DescribeBackupJobCommand.ts b/clients/client-backup/src/commands/DescribeBackupJobCommand.ts index 847f299f3f9ef..0b74c8178fbd1 100644 --- a/clients/client-backup/src/commands/DescribeBackupJobCommand.ts +++ b/clients/client-backup/src/commands/DescribeBackupJobCommand.ts @@ -106,6 +106,7 @@ export interface DescribeBackupJobCommandOutput extends DescribeBackupJobOutput, * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DescribeBackupJobCommand extends $Command diff --git a/clients/client-backup/src/commands/DescribeBackupVaultCommand.ts b/clients/client-backup/src/commands/DescribeBackupVaultCommand.ts index 4d3ab9c721221..4ebfa3ce7cfeb 100644 --- a/clients/client-backup/src/commands/DescribeBackupVaultCommand.ts +++ b/clients/client-backup/src/commands/DescribeBackupVaultCommand.ts @@ -80,6 +80,7 @@ export interface DescribeBackupVaultCommandOutput extends DescribeBackupVaultOut * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DescribeBackupVaultCommand extends $Command diff --git a/clients/client-backup/src/commands/DescribeCopyJobCommand.ts b/clients/client-backup/src/commands/DescribeCopyJobCommand.ts index 98102d55fb4ff..c985515072349 100644 --- a/clients/client-backup/src/commands/DescribeCopyJobCommand.ts +++ b/clients/client-backup/src/commands/DescribeCopyJobCommand.ts @@ -98,6 +98,7 @@ export interface DescribeCopyJobCommandOutput extends DescribeCopyJobOutput, __M * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DescribeCopyJobCommand extends $Command diff --git a/clients/client-backup/src/commands/DescribeFrameworkCommand.ts b/clients/client-backup/src/commands/DescribeFrameworkCommand.ts index 599c395100007..da9bc722a42f3 100644 --- a/clients/client-backup/src/commands/DescribeFrameworkCommand.ts +++ b/clients/client-backup/src/commands/DescribeFrameworkCommand.ts @@ -96,6 +96,7 @@ export interface DescribeFrameworkCommandOutput extends DescribeFrameworkOutput, * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DescribeFrameworkCommand extends $Command diff --git a/clients/client-backup/src/commands/DescribeGlobalSettingsCommand.ts b/clients/client-backup/src/commands/DescribeGlobalSettingsCommand.ts index 9be72b5926065..9a4d53bb451af 100644 --- a/clients/client-backup/src/commands/DescribeGlobalSettingsCommand.ts +++ b/clients/client-backup/src/commands/DescribeGlobalSettingsCommand.ts @@ -66,6 +66,7 @@ export interface DescribeGlobalSettingsCommandOutput extends DescribeGlobalSetti * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DescribeGlobalSettingsCommand extends $Command diff --git a/clients/client-backup/src/commands/DescribeProtectedResourceCommand.ts b/clients/client-backup/src/commands/DescribeProtectedResourceCommand.ts index 0846272c4a3a8..3a0402ca38e47 100644 --- a/clients/client-backup/src/commands/DescribeProtectedResourceCommand.ts +++ b/clients/client-backup/src/commands/DescribeProtectedResourceCommand.ts @@ -78,6 +78,7 @@ export interface DescribeProtectedResourceCommandOutput extends DescribeProtecte * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DescribeProtectedResourceCommand extends $Command diff --git a/clients/client-backup/src/commands/DescribeRecoveryPointCommand.ts b/clients/client-backup/src/commands/DescribeRecoveryPointCommand.ts index 3f7954eb7e89c..7dddb40179df3 100644 --- a/clients/client-backup/src/commands/DescribeRecoveryPointCommand.ts +++ b/clients/client-backup/src/commands/DescribeRecoveryPointCommand.ts @@ -108,6 +108,7 @@ export interface DescribeRecoveryPointCommandOutput extends DescribeRecoveryPoin * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DescribeRecoveryPointCommand extends $Command diff --git a/clients/client-backup/src/commands/DescribeRegionSettingsCommand.ts b/clients/client-backup/src/commands/DescribeRegionSettingsCommand.ts index f8a97ef461d32..1333e5c35eccc 100644 --- a/clients/client-backup/src/commands/DescribeRegionSettingsCommand.ts +++ b/clients/client-backup/src/commands/DescribeRegionSettingsCommand.ts @@ -65,6 +65,7 @@ export interface DescribeRegionSettingsCommandOutput extends DescribeRegionSetti * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DescribeRegionSettingsCommand extends $Command diff --git a/clients/client-backup/src/commands/DescribeReportJobCommand.ts b/clients/client-backup/src/commands/DescribeReportJobCommand.ts index 120c1a9d2af4a..7628b69a1290a 100644 --- a/clients/client-backup/src/commands/DescribeReportJobCommand.ts +++ b/clients/client-backup/src/commands/DescribeReportJobCommand.ts @@ -79,6 +79,7 @@ export interface DescribeReportJobCommandOutput extends DescribeReportJobOutput, * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DescribeReportJobCommand extends $Command diff --git a/clients/client-backup/src/commands/DescribeReportPlanCommand.ts b/clients/client-backup/src/commands/DescribeReportPlanCommand.ts index 1a816eaaf8a67..41c7347396171 100644 --- a/clients/client-backup/src/commands/DescribeReportPlanCommand.ts +++ b/clients/client-backup/src/commands/DescribeReportPlanCommand.ts @@ -99,6 +99,7 @@ export interface DescribeReportPlanCommandOutput extends DescribeReportPlanOutpu * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DescribeReportPlanCommand extends $Command diff --git a/clients/client-backup/src/commands/DescribeRestoreJobCommand.ts b/clients/client-backup/src/commands/DescribeRestoreJobCommand.ts index aee172996913c..a811895900dd5 100644 --- a/clients/client-backup/src/commands/DescribeRestoreJobCommand.ts +++ b/clients/client-backup/src/commands/DescribeRestoreJobCommand.ts @@ -91,6 +91,7 @@ export interface DescribeRestoreJobCommandOutput extends DescribeRestoreJobOutpu * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DescribeRestoreJobCommand extends $Command diff --git a/clients/client-backup/src/commands/DisassociateRecoveryPointCommand.ts b/clients/client-backup/src/commands/DisassociateRecoveryPointCommand.ts index bf76f6b0d7509..f07cd99b375a3 100644 --- a/clients/client-backup/src/commands/DisassociateRecoveryPointCommand.ts +++ b/clients/client-backup/src/commands/DisassociateRecoveryPointCommand.ts @@ -78,6 +78,7 @@ export interface DisassociateRecoveryPointCommandOutput extends __MetadataBearer * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DisassociateRecoveryPointCommand extends $Command diff --git a/clients/client-backup/src/commands/DisassociateRecoveryPointFromParentCommand.ts b/clients/client-backup/src/commands/DisassociateRecoveryPointFromParentCommand.ts index e2eadca9445fc..f1d8e13a50f37 100644 --- a/clients/client-backup/src/commands/DisassociateRecoveryPointFromParentCommand.ts +++ b/clients/client-backup/src/commands/DisassociateRecoveryPointFromParentCommand.ts @@ -75,6 +75,7 @@ export interface DisassociateRecoveryPointFromParentCommandOutput extends __Meta * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class DisassociateRecoveryPointFromParentCommand extends $Command diff --git a/clients/client-backup/src/commands/ExportBackupPlanTemplateCommand.ts b/clients/client-backup/src/commands/ExportBackupPlanTemplateCommand.ts index dba389021181f..81032cefd3221 100644 --- a/clients/client-backup/src/commands/ExportBackupPlanTemplateCommand.ts +++ b/clients/client-backup/src/commands/ExportBackupPlanTemplateCommand.ts @@ -68,6 +68,7 @@ export interface ExportBackupPlanTemplateCommandOutput extends ExportBackupPlanT * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ExportBackupPlanTemplateCommand extends $Command diff --git a/clients/client-backup/src/commands/GetBackupPlanCommand.ts b/clients/client-backup/src/commands/GetBackupPlanCommand.ts index f63cef10a6723..f3103af74b355 100644 --- a/clients/client-backup/src/commands/GetBackupPlanCommand.ts +++ b/clients/client-backup/src/commands/GetBackupPlanCommand.ts @@ -132,6 +132,7 @@ export interface GetBackupPlanCommandOutput extends GetBackupPlanOutput, __Metad * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class GetBackupPlanCommand extends $Command diff --git a/clients/client-backup/src/commands/GetBackupPlanFromJSONCommand.ts b/clients/client-backup/src/commands/GetBackupPlanFromJSONCommand.ts index b2858813c9de9..aa6a532c7beea 100644 --- a/clients/client-backup/src/commands/GetBackupPlanFromJSONCommand.ts +++ b/clients/client-backup/src/commands/GetBackupPlanFromJSONCommand.ts @@ -124,6 +124,7 @@ export interface GetBackupPlanFromJSONCommandOutput extends GetBackupPlanFromJSO * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class GetBackupPlanFromJSONCommand extends $Command diff --git a/clients/client-backup/src/commands/GetBackupPlanFromTemplateCommand.ts b/clients/client-backup/src/commands/GetBackupPlanFromTemplateCommand.ts index 8a30ff6320627..93be4d4757609 100644 --- a/clients/client-backup/src/commands/GetBackupPlanFromTemplateCommand.ts +++ b/clients/client-backup/src/commands/GetBackupPlanFromTemplateCommand.ts @@ -119,6 +119,7 @@ export interface GetBackupPlanFromTemplateCommandOutput extends GetBackupPlanFro * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class GetBackupPlanFromTemplateCommand extends $Command diff --git a/clients/client-backup/src/commands/GetBackupSelectionCommand.ts b/clients/client-backup/src/commands/GetBackupSelectionCommand.ts index b2004a9602672..eaced7f437e5a 100644 --- a/clients/client-backup/src/commands/GetBackupSelectionCommand.ts +++ b/clients/client-backup/src/commands/GetBackupSelectionCommand.ts @@ -116,6 +116,7 @@ export interface GetBackupSelectionCommandOutput extends GetBackupSelectionOutpu * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class GetBackupSelectionCommand extends $Command diff --git a/clients/client-backup/src/commands/GetBackupVaultAccessPolicyCommand.ts b/clients/client-backup/src/commands/GetBackupVaultAccessPolicyCommand.ts index 20fe917a04f44..1347e605cfd85 100644 --- a/clients/client-backup/src/commands/GetBackupVaultAccessPolicyCommand.ts +++ b/clients/client-backup/src/commands/GetBackupVaultAccessPolicyCommand.ts @@ -71,6 +71,7 @@ export interface GetBackupVaultAccessPolicyCommandOutput extends GetBackupVaultA * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class GetBackupVaultAccessPolicyCommand extends $Command diff --git a/clients/client-backup/src/commands/GetBackupVaultNotificationsCommand.ts b/clients/client-backup/src/commands/GetBackupVaultNotificationsCommand.ts index 5fb895907b579..c860121efd12d 100644 --- a/clients/client-backup/src/commands/GetBackupVaultNotificationsCommand.ts +++ b/clients/client-backup/src/commands/GetBackupVaultNotificationsCommand.ts @@ -76,6 +76,7 @@ export interface GetBackupVaultNotificationsCommandOutput extends GetBackupVault * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class GetBackupVaultNotificationsCommand extends $Command diff --git a/clients/client-backup/src/commands/GetLegalHoldCommand.ts b/clients/client-backup/src/commands/GetLegalHoldCommand.ts index 6bbd997ad7b1c..62bec831e4d69 100644 --- a/clients/client-backup/src/commands/GetLegalHoldCommand.ts +++ b/clients/client-backup/src/commands/GetLegalHoldCommand.ts @@ -89,6 +89,7 @@ export interface GetLegalHoldCommandOutput extends GetLegalHoldOutput, __Metadat * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class GetLegalHoldCommand extends $Command diff --git a/clients/client-backup/src/commands/GetRecoveryPointIndexDetailsCommand.ts b/clients/client-backup/src/commands/GetRecoveryPointIndexDetailsCommand.ts index 0a6649208f985..e72b22bd4649c 100644 --- a/clients/client-backup/src/commands/GetRecoveryPointIndexDetailsCommand.ts +++ b/clients/client-backup/src/commands/GetRecoveryPointIndexDetailsCommand.ts @@ -83,6 +83,7 @@ export interface GetRecoveryPointIndexDetailsCommandOutput * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class GetRecoveryPointIndexDetailsCommand extends $Command diff --git a/clients/client-backup/src/commands/GetRecoveryPointRestoreMetadataCommand.ts b/clients/client-backup/src/commands/GetRecoveryPointRestoreMetadataCommand.ts index 9917cd113eb3a..277ec71a83d47 100644 --- a/clients/client-backup/src/commands/GetRecoveryPointRestoreMetadataCommand.ts +++ b/clients/client-backup/src/commands/GetRecoveryPointRestoreMetadataCommand.ts @@ -84,6 +84,7 @@ export interface GetRecoveryPointRestoreMetadataCommandOutput * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class GetRecoveryPointRestoreMetadataCommand extends $Command diff --git a/clients/client-backup/src/commands/GetRestoreJobMetadataCommand.ts b/clients/client-backup/src/commands/GetRestoreJobMetadataCommand.ts index fea5d4beb5d4f..af8e697f62c6a 100644 --- a/clients/client-backup/src/commands/GetRestoreJobMetadataCommand.ts +++ b/clients/client-backup/src/commands/GetRestoreJobMetadataCommand.ts @@ -75,6 +75,7 @@ export interface GetRestoreJobMetadataCommandOutput extends GetRestoreJobMetadat * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class GetRestoreJobMetadataCommand extends $Command diff --git a/clients/client-backup/src/commands/GetRestoreTestingInferredMetadataCommand.ts b/clients/client-backup/src/commands/GetRestoreTestingInferredMetadataCommand.ts index 69e7dfa0e3109..0d0b2a9d03086 100644 --- a/clients/client-backup/src/commands/GetRestoreTestingInferredMetadataCommand.ts +++ b/clients/client-backup/src/commands/GetRestoreTestingInferredMetadataCommand.ts @@ -80,6 +80,7 @@ export interface GetRestoreTestingInferredMetadataCommandOutput * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class GetRestoreTestingInferredMetadataCommand extends $Command diff --git a/clients/client-backup/src/commands/GetRestoreTestingPlanCommand.ts b/clients/client-backup/src/commands/GetRestoreTestingPlanCommand.ts index 83844284a20ef..c6f32d02fed7e 100644 --- a/clients/client-backup/src/commands/GetRestoreTestingPlanCommand.ts +++ b/clients/client-backup/src/commands/GetRestoreTestingPlanCommand.ts @@ -86,6 +86,7 @@ export interface GetRestoreTestingPlanCommandOutput extends GetRestoreTestingPla * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class GetRestoreTestingPlanCommand extends $Command diff --git a/clients/client-backup/src/commands/GetRestoreTestingSelectionCommand.ts b/clients/client-backup/src/commands/GetRestoreTestingSelectionCommand.ts index f546c0bd8fe43..eb90437019104 100644 --- a/clients/client-backup/src/commands/GetRestoreTestingSelectionCommand.ts +++ b/clients/client-backup/src/commands/GetRestoreTestingSelectionCommand.ts @@ -95,6 +95,7 @@ export interface GetRestoreTestingSelectionCommandOutput extends GetRestoreTesti * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class GetRestoreTestingSelectionCommand extends $Command diff --git a/clients/client-backup/src/commands/GetSupportedResourceTypesCommand.ts b/clients/client-backup/src/commands/GetSupportedResourceTypesCommand.ts index 8a9c889b0e8e1..cb79001b1c477 100644 --- a/clients/client-backup/src/commands/GetSupportedResourceTypesCommand.ts +++ b/clients/client-backup/src/commands/GetSupportedResourceTypesCommand.ts @@ -58,6 +58,7 @@ export interface GetSupportedResourceTypesCommandOutput extends GetSupportedReso * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class GetSupportedResourceTypesCommand extends $Command diff --git a/clients/client-backup/src/commands/ListBackupJobSummariesCommand.ts b/clients/client-backup/src/commands/ListBackupJobSummariesCommand.ts index c3200b8cad46e..3a8a476ea3c97 100644 --- a/clients/client-backup/src/commands/ListBackupJobSummariesCommand.ts +++ b/clients/client-backup/src/commands/ListBackupJobSummariesCommand.ts @@ -88,6 +88,7 @@ export interface ListBackupJobSummariesCommandOutput extends ListBackupJobSummar * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListBackupJobSummariesCommand extends $Command diff --git a/clients/client-backup/src/commands/ListBackupJobsCommand.ts b/clients/client-backup/src/commands/ListBackupJobsCommand.ts index 4bc03e61dd28e..b7b2c7bbb03b4 100644 --- a/clients/client-backup/src/commands/ListBackupJobsCommand.ts +++ b/clients/client-backup/src/commands/ListBackupJobsCommand.ts @@ -111,6 +111,7 @@ export interface ListBackupJobsCommandOutput extends ListBackupJobsOutput, __Met * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListBackupJobsCommand extends $Command diff --git a/clients/client-backup/src/commands/ListBackupPlanTemplatesCommand.ts b/clients/client-backup/src/commands/ListBackupPlanTemplatesCommand.ts index 68f3004d5e154..4730fd90a2d00 100644 --- a/clients/client-backup/src/commands/ListBackupPlanTemplatesCommand.ts +++ b/clients/client-backup/src/commands/ListBackupPlanTemplatesCommand.ts @@ -75,6 +75,7 @@ export interface ListBackupPlanTemplatesCommandOutput extends ListBackupPlanTemp * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListBackupPlanTemplatesCommand extends $Command diff --git a/clients/client-backup/src/commands/ListBackupPlanVersionsCommand.ts b/clients/client-backup/src/commands/ListBackupPlanVersionsCommand.ts index 173907501fba9..f2e1a9449e1c6 100644 --- a/clients/client-backup/src/commands/ListBackupPlanVersionsCommand.ts +++ b/clients/client-backup/src/commands/ListBackupPlanVersionsCommand.ts @@ -91,6 +91,7 @@ export interface ListBackupPlanVersionsCommandOutput extends ListBackupPlanVersi * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListBackupPlanVersionsCommand extends $Command diff --git a/clients/client-backup/src/commands/ListBackupPlansCommand.ts b/clients/client-backup/src/commands/ListBackupPlansCommand.ts index 631fa3263139f..a766576cb6f49 100644 --- a/clients/client-backup/src/commands/ListBackupPlansCommand.ts +++ b/clients/client-backup/src/commands/ListBackupPlansCommand.ts @@ -90,6 +90,7 @@ export interface ListBackupPlansCommandOutput extends ListBackupPlansOutput, __M * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListBackupPlansCommand extends $Command diff --git a/clients/client-backup/src/commands/ListBackupSelectionsCommand.ts b/clients/client-backup/src/commands/ListBackupSelectionsCommand.ts index a184ef6c46b95..8bac0ef858862 100644 --- a/clients/client-backup/src/commands/ListBackupSelectionsCommand.ts +++ b/clients/client-backup/src/commands/ListBackupSelectionsCommand.ts @@ -81,6 +81,7 @@ export interface ListBackupSelectionsCommandOutput extends ListBackupSelectionsO * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListBackupSelectionsCommand extends $Command diff --git a/clients/client-backup/src/commands/ListBackupVaultsCommand.ts b/clients/client-backup/src/commands/ListBackupVaultsCommand.ts index c369672bda3ea..cb04ffa62bfd5 100644 --- a/clients/client-backup/src/commands/ListBackupVaultsCommand.ts +++ b/clients/client-backup/src/commands/ListBackupVaultsCommand.ts @@ -88,6 +88,7 @@ export interface ListBackupVaultsCommandOutput extends ListBackupVaultsOutput, _ * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListBackupVaultsCommand extends $Command diff --git a/clients/client-backup/src/commands/ListCopyJobSummariesCommand.ts b/clients/client-backup/src/commands/ListCopyJobSummariesCommand.ts index 0c1ca9a6ad196..6e6935d0c8d3e 100644 --- a/clients/client-backup/src/commands/ListCopyJobSummariesCommand.ts +++ b/clients/client-backup/src/commands/ListCopyJobSummariesCommand.ts @@ -88,6 +88,7 @@ export interface ListCopyJobSummariesCommandOutput extends ListCopyJobSummariesO * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListCopyJobSummariesCommand extends $Command diff --git a/clients/client-backup/src/commands/ListCopyJobsCommand.ts b/clients/client-backup/src/commands/ListCopyJobsCommand.ts index fb80b7fe13290..a5514d100ac1c 100644 --- a/clients/client-backup/src/commands/ListCopyJobsCommand.ts +++ b/clients/client-backup/src/commands/ListCopyJobsCommand.ts @@ -107,6 +107,7 @@ export interface ListCopyJobsCommandOutput extends ListCopyJobsOutput, __Metadat * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListCopyJobsCommand extends $Command diff --git a/clients/client-backup/src/commands/ListFrameworksCommand.ts b/clients/client-backup/src/commands/ListFrameworksCommand.ts index 10d4562f4a1cc..8ed8c76598d02 100644 --- a/clients/client-backup/src/commands/ListFrameworksCommand.ts +++ b/clients/client-backup/src/commands/ListFrameworksCommand.ts @@ -73,6 +73,7 @@ export interface ListFrameworksCommandOutput extends ListFrameworksOutput, __Met * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListFrameworksCommand extends $Command diff --git a/clients/client-backup/src/commands/ListIndexedRecoveryPointsCommand.ts b/clients/client-backup/src/commands/ListIndexedRecoveryPointsCommand.ts index f77d83498eadf..f22b4a75c2d7f 100644 --- a/clients/client-backup/src/commands/ListIndexedRecoveryPointsCommand.ts +++ b/clients/client-backup/src/commands/ListIndexedRecoveryPointsCommand.ts @@ -88,6 +88,7 @@ export interface ListIndexedRecoveryPointsCommandOutput extends ListIndexedRecov * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListIndexedRecoveryPointsCommand extends $Command diff --git a/clients/client-backup/src/commands/ListLegalHoldsCommand.ts b/clients/client-backup/src/commands/ListLegalHoldsCommand.ts index 0c87cbc9fcdff..12b3ccbecee98 100644 --- a/clients/client-backup/src/commands/ListLegalHoldsCommand.ts +++ b/clients/client-backup/src/commands/ListLegalHoldsCommand.ts @@ -74,6 +74,7 @@ export interface ListLegalHoldsCommandOutput extends ListLegalHoldsOutput, __Met * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListLegalHoldsCommand extends $Command diff --git a/clients/client-backup/src/commands/ListProtectedResourcesByBackupVaultCommand.ts b/clients/client-backup/src/commands/ListProtectedResourcesByBackupVaultCommand.ts index 5b7225ab2daaf..c04a841a49d50 100644 --- a/clients/client-backup/src/commands/ListProtectedResourcesByBackupVaultCommand.ts +++ b/clients/client-backup/src/commands/ListProtectedResourcesByBackupVaultCommand.ts @@ -86,6 +86,7 @@ export interface ListProtectedResourcesByBackupVaultCommandOutput * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListProtectedResourcesByBackupVaultCommand extends $Command diff --git a/clients/client-backup/src/commands/ListProtectedResourcesCommand.ts b/clients/client-backup/src/commands/ListProtectedResourcesCommand.ts index 810a4d6ccf544..a0dddecfe9c00 100644 --- a/clients/client-backup/src/commands/ListProtectedResourcesCommand.ts +++ b/clients/client-backup/src/commands/ListProtectedResourcesCommand.ts @@ -75,6 +75,7 @@ export interface ListProtectedResourcesCommandOutput extends ListProtectedResour * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListProtectedResourcesCommand extends $Command diff --git a/clients/client-backup/src/commands/ListRecoveryPointsByBackupVaultCommand.ts b/clients/client-backup/src/commands/ListRecoveryPointsByBackupVaultCommand.ts index 77920cfca2cfe..5f5f4435a5ea9 100644 --- a/clients/client-backup/src/commands/ListRecoveryPointsByBackupVaultCommand.ts +++ b/clients/client-backup/src/commands/ListRecoveryPointsByBackupVaultCommand.ts @@ -123,6 +123,7 @@ export interface ListRecoveryPointsByBackupVaultCommandOutput * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListRecoveryPointsByBackupVaultCommand extends $Command diff --git a/clients/client-backup/src/commands/ListRecoveryPointsByLegalHoldCommand.ts b/clients/client-backup/src/commands/ListRecoveryPointsByLegalHoldCommand.ts index 67dffea0e2879..d484bc6da7093 100644 --- a/clients/client-backup/src/commands/ListRecoveryPointsByLegalHoldCommand.ts +++ b/clients/client-backup/src/commands/ListRecoveryPointsByLegalHoldCommand.ts @@ -81,6 +81,7 @@ export interface ListRecoveryPointsByLegalHoldCommandOutput * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListRecoveryPointsByLegalHoldCommand extends $Command diff --git a/clients/client-backup/src/commands/ListRecoveryPointsByResourceCommand.ts b/clients/client-backup/src/commands/ListRecoveryPointsByResourceCommand.ts index 14035208cb63b..a3ca1dd8eecd8 100644 --- a/clients/client-backup/src/commands/ListRecoveryPointsByResourceCommand.ts +++ b/clients/client-backup/src/commands/ListRecoveryPointsByResourceCommand.ts @@ -98,6 +98,7 @@ export interface ListRecoveryPointsByResourceCommandOutput * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListRecoveryPointsByResourceCommand extends $Command diff --git a/clients/client-backup/src/commands/ListReportJobsCommand.ts b/clients/client-backup/src/commands/ListReportJobsCommand.ts index bd74340ccc997..07df3cfeb8470 100644 --- a/clients/client-backup/src/commands/ListReportJobsCommand.ts +++ b/clients/client-backup/src/commands/ListReportJobsCommand.ts @@ -87,6 +87,7 @@ export interface ListReportJobsCommandOutput extends ListReportJobsOutput, __Met * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListReportJobsCommand extends $Command diff --git a/clients/client-backup/src/commands/ListReportPlansCommand.ts b/clients/client-backup/src/commands/ListReportPlansCommand.ts index d72d74d2bea4f..ed54843615fd8 100644 --- a/clients/client-backup/src/commands/ListReportPlansCommand.ts +++ b/clients/client-backup/src/commands/ListReportPlansCommand.ts @@ -98,6 +98,7 @@ export interface ListReportPlansCommandOutput extends ListReportPlansOutput, __M * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListReportPlansCommand extends $Command diff --git a/clients/client-backup/src/commands/ListRestoreJobSummariesCommand.ts b/clients/client-backup/src/commands/ListRestoreJobSummariesCommand.ts index 329fac033fe4b..9a5be44c75404 100644 --- a/clients/client-backup/src/commands/ListRestoreJobSummariesCommand.ts +++ b/clients/client-backup/src/commands/ListRestoreJobSummariesCommand.ts @@ -86,6 +86,7 @@ export interface ListRestoreJobSummariesCommandOutput extends ListRestoreJobSumm * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListRestoreJobSummariesCommand extends $Command diff --git a/clients/client-backup/src/commands/ListRestoreJobsByProtectedResourceCommand.ts b/clients/client-backup/src/commands/ListRestoreJobsByProtectedResourceCommand.ts index d937a15de5206..a39f344a9ee9e 100644 --- a/clients/client-backup/src/commands/ListRestoreJobsByProtectedResourceCommand.ts +++ b/clients/client-backup/src/commands/ListRestoreJobsByProtectedResourceCommand.ts @@ -107,6 +107,7 @@ export interface ListRestoreJobsByProtectedResourceCommandOutput * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListRestoreJobsByProtectedResourceCommand extends $Command diff --git a/clients/client-backup/src/commands/ListRestoreJobsCommand.ts b/clients/client-backup/src/commands/ListRestoreJobsCommand.ts index 3949d0c32c8a6..63d0d75e20d2b 100644 --- a/clients/client-backup/src/commands/ListRestoreJobsCommand.ts +++ b/clients/client-backup/src/commands/ListRestoreJobsCommand.ts @@ -103,6 +103,7 @@ export interface ListRestoreJobsCommandOutput extends ListRestoreJobsOutput, __M * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListRestoreJobsCommand extends $Command diff --git a/clients/client-backup/src/commands/ListRestoreTestingPlansCommand.ts b/clients/client-backup/src/commands/ListRestoreTestingPlansCommand.ts index fb4e2cd1e708c..d5e82be8147dd 100644 --- a/clients/client-backup/src/commands/ListRestoreTestingPlansCommand.ts +++ b/clients/client-backup/src/commands/ListRestoreTestingPlansCommand.ts @@ -75,6 +75,7 @@ export interface ListRestoreTestingPlansCommandOutput extends ListRestoreTesting * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListRestoreTestingPlansCommand extends $Command diff --git a/clients/client-backup/src/commands/ListRestoreTestingSelectionsCommand.ts b/clients/client-backup/src/commands/ListRestoreTestingSelectionsCommand.ts index 52d43afbdf68d..c6db2b220b9ca 100644 --- a/clients/client-backup/src/commands/ListRestoreTestingSelectionsCommand.ts +++ b/clients/client-backup/src/commands/ListRestoreTestingSelectionsCommand.ts @@ -83,6 +83,7 @@ export interface ListRestoreTestingSelectionsCommandOutput * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListRestoreTestingSelectionsCommand extends $Command diff --git a/clients/client-backup/src/commands/ListTagsCommand.ts b/clients/client-backup/src/commands/ListTagsCommand.ts index 3aa6133803f5b..581fcc4181211 100644 --- a/clients/client-backup/src/commands/ListTagsCommand.ts +++ b/clients/client-backup/src/commands/ListTagsCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsCommandOutput extends ListTagsOutput, __MetadataBearer * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class ListTagsCommand extends $Command diff --git a/clients/client-backup/src/commands/PutBackupVaultAccessPolicyCommand.ts b/clients/client-backup/src/commands/PutBackupVaultAccessPolicyCommand.ts index b643c53af965e..92f67318bc13e 100644 --- a/clients/client-backup/src/commands/PutBackupVaultAccessPolicyCommand.ts +++ b/clients/client-backup/src/commands/PutBackupVaultAccessPolicyCommand.ts @@ -69,6 +69,7 @@ export interface PutBackupVaultAccessPolicyCommandOutput extends __MetadataBeare * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class PutBackupVaultAccessPolicyCommand extends $Command diff --git a/clients/client-backup/src/commands/PutBackupVaultLockConfigurationCommand.ts b/clients/client-backup/src/commands/PutBackupVaultLockConfigurationCommand.ts index b046c43d9c552..cd9612d007f38 100644 --- a/clients/client-backup/src/commands/PutBackupVaultLockConfigurationCommand.ts +++ b/clients/client-backup/src/commands/PutBackupVaultLockConfigurationCommand.ts @@ -89,6 +89,7 @@ export interface PutBackupVaultLockConfigurationCommandOutput extends __Metadata * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class PutBackupVaultLockConfigurationCommand extends $Command diff --git a/clients/client-backup/src/commands/PutBackupVaultNotificationsCommand.ts b/clients/client-backup/src/commands/PutBackupVaultNotificationsCommand.ts index 2838079cbd9d2..558f48f0ff169 100644 --- a/clients/client-backup/src/commands/PutBackupVaultNotificationsCommand.ts +++ b/clients/client-backup/src/commands/PutBackupVaultNotificationsCommand.ts @@ -73,6 +73,7 @@ export interface PutBackupVaultNotificationsCommandOutput extends __MetadataBear * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class PutBackupVaultNotificationsCommand extends $Command diff --git a/clients/client-backup/src/commands/PutRestoreValidationResultCommand.ts b/clients/client-backup/src/commands/PutRestoreValidationResultCommand.ts index c3e3941e571e3..72c6d7e61f59d 100644 --- a/clients/client-backup/src/commands/PutRestoreValidationResultCommand.ts +++ b/clients/client-backup/src/commands/PutRestoreValidationResultCommand.ts @@ -76,6 +76,7 @@ export interface PutRestoreValidationResultCommandOutput extends __MetadataBeare * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class PutRestoreValidationResultCommand extends $Command diff --git a/clients/client-backup/src/commands/StartBackupJobCommand.ts b/clients/client-backup/src/commands/StartBackupJobCommand.ts index 9435f9cccac97..19f4738c14b22 100644 --- a/clients/client-backup/src/commands/StartBackupJobCommand.ts +++ b/clients/client-backup/src/commands/StartBackupJobCommand.ts @@ -96,6 +96,7 @@ export interface StartBackupJobCommandOutput extends StartBackupJobOutput, __Met * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class StartBackupJobCommand extends $Command diff --git a/clients/client-backup/src/commands/StartCopyJobCommand.ts b/clients/client-backup/src/commands/StartCopyJobCommand.ts index c50e86fc659d0..d14bd7a377662 100644 --- a/clients/client-backup/src/commands/StartCopyJobCommand.ts +++ b/clients/client-backup/src/commands/StartCopyJobCommand.ts @@ -88,6 +88,7 @@ export interface StartCopyJobCommandOutput extends StartCopyJobOutput, __Metadat * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class StartCopyJobCommand extends $Command diff --git a/clients/client-backup/src/commands/StartReportJobCommand.ts b/clients/client-backup/src/commands/StartReportJobCommand.ts index b80cc9495d04f..508eace48dc02 100644 --- a/clients/client-backup/src/commands/StartReportJobCommand.ts +++ b/clients/client-backup/src/commands/StartReportJobCommand.ts @@ -69,6 +69,7 @@ export interface StartReportJobCommandOutput extends StartReportJobOutput, __Met * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class StartReportJobCommand extends $Command diff --git a/clients/client-backup/src/commands/StartRestoreJobCommand.ts b/clients/client-backup/src/commands/StartRestoreJobCommand.ts index b43ab8670af8e..f372f98415b1d 100644 --- a/clients/client-backup/src/commands/StartRestoreJobCommand.ts +++ b/clients/client-backup/src/commands/StartRestoreJobCommand.ts @@ -83,6 +83,7 @@ export interface StartRestoreJobCommandOutput extends StartRestoreJobOutput, __M * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class StartRestoreJobCommand extends $Command diff --git a/clients/client-backup/src/commands/StopBackupJobCommand.ts b/clients/client-backup/src/commands/StopBackupJobCommand.ts index 26f0bb5bad722..430534f5982fe 100644 --- a/clients/client-backup/src/commands/StopBackupJobCommand.ts +++ b/clients/client-backup/src/commands/StopBackupJobCommand.ts @@ -74,6 +74,7 @@ export interface StopBackupJobCommandOutput extends __MetadataBearer {} * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class StopBackupJobCommand extends $Command diff --git a/clients/client-backup/src/commands/TagResourceCommand.ts b/clients/client-backup/src/commands/TagResourceCommand.ts index 69a0e0a997daa..04b3afa435311 100644 --- a/clients/client-backup/src/commands/TagResourceCommand.ts +++ b/clients/client-backup/src/commands/TagResourceCommand.ts @@ -77,6 +77,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-backup/src/commands/UntagResourceCommand.ts b/clients/client-backup/src/commands/UntagResourceCommand.ts index 1dcd775177b24..e946c565fa627 100644 --- a/clients/client-backup/src/commands/UntagResourceCommand.ts +++ b/clients/client-backup/src/commands/UntagResourceCommand.ts @@ -73,6 +73,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-backup/src/commands/UpdateBackupPlanCommand.ts b/clients/client-backup/src/commands/UpdateBackupPlanCommand.ts index 3928f4260f482..7b2dfcdef5dd5 100644 --- a/clients/client-backup/src/commands/UpdateBackupPlanCommand.ts +++ b/clients/client-backup/src/commands/UpdateBackupPlanCommand.ts @@ -130,6 +130,7 @@ export interface UpdateBackupPlanCommandOutput extends UpdateBackupPlanOutput, _ * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class UpdateBackupPlanCommand extends $Command diff --git a/clients/client-backup/src/commands/UpdateFrameworkCommand.ts b/clients/client-backup/src/commands/UpdateFrameworkCommand.ts index f124e198217ac..b8132188eb73e 100644 --- a/clients/client-backup/src/commands/UpdateFrameworkCommand.ts +++ b/clients/client-backup/src/commands/UpdateFrameworkCommand.ts @@ -105,6 +105,7 @@ export interface UpdateFrameworkCommandOutput extends UpdateFrameworkOutput, __M * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class UpdateFrameworkCommand extends $Command diff --git a/clients/client-backup/src/commands/UpdateGlobalSettingsCommand.ts b/clients/client-backup/src/commands/UpdateGlobalSettingsCommand.ts index fed4e63fcdb21..35e24142db459 100644 --- a/clients/client-backup/src/commands/UpdateGlobalSettingsCommand.ts +++ b/clients/client-backup/src/commands/UpdateGlobalSettingsCommand.ts @@ -71,6 +71,7 @@ export interface UpdateGlobalSettingsCommandOutput extends __MetadataBearer {} * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class UpdateGlobalSettingsCommand extends $Command diff --git a/clients/client-backup/src/commands/UpdateRecoveryPointIndexSettingsCommand.ts b/clients/client-backup/src/commands/UpdateRecoveryPointIndexSettingsCommand.ts index 1829e839cb73c..d1428eace0177 100644 --- a/clients/client-backup/src/commands/UpdateRecoveryPointIndexSettingsCommand.ts +++ b/clients/client-backup/src/commands/UpdateRecoveryPointIndexSettingsCommand.ts @@ -84,6 +84,7 @@ export interface UpdateRecoveryPointIndexSettingsCommandOutput * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class UpdateRecoveryPointIndexSettingsCommand extends $Command diff --git a/clients/client-backup/src/commands/UpdateRecoveryPointLifecycleCommand.ts b/clients/client-backup/src/commands/UpdateRecoveryPointLifecycleCommand.ts index 92650765f7761..df67a8d836b86 100644 --- a/clients/client-backup/src/commands/UpdateRecoveryPointLifecycleCommand.ts +++ b/clients/client-backup/src/commands/UpdateRecoveryPointLifecycleCommand.ts @@ -108,6 +108,7 @@ export interface UpdateRecoveryPointLifecycleCommandOutput * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class UpdateRecoveryPointLifecycleCommand extends $Command diff --git a/clients/client-backup/src/commands/UpdateRegionSettingsCommand.ts b/clients/client-backup/src/commands/UpdateRegionSettingsCommand.ts index 17d3115e995c2..2c937f0312b96 100644 --- a/clients/client-backup/src/commands/UpdateRegionSettingsCommand.ts +++ b/clients/client-backup/src/commands/UpdateRegionSettingsCommand.ts @@ -71,6 +71,7 @@ export interface UpdateRegionSettingsCommandOutput extends __MetadataBearer {} * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class UpdateRegionSettingsCommand extends $Command diff --git a/clients/client-backup/src/commands/UpdateReportPlanCommand.ts b/clients/client-backup/src/commands/UpdateReportPlanCommand.ts index 44037630ebf88..a36825171d91d 100644 --- a/clients/client-backup/src/commands/UpdateReportPlanCommand.ts +++ b/clients/client-backup/src/commands/UpdateReportPlanCommand.ts @@ -99,6 +99,7 @@ export interface UpdateReportPlanCommandOutput extends UpdateReportPlanOutput, _ * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class UpdateReportPlanCommand extends $Command diff --git a/clients/client-backup/src/commands/UpdateRestoreTestingPlanCommand.ts b/clients/client-backup/src/commands/UpdateRestoreTestingPlanCommand.ts index 0592d810ea10f..c42d08d385413 100644 --- a/clients/client-backup/src/commands/UpdateRestoreTestingPlanCommand.ts +++ b/clients/client-backup/src/commands/UpdateRestoreTestingPlanCommand.ts @@ -124,6 +124,7 @@ export interface UpdateRestoreTestingPlanCommandOutput extends UpdateRestoreTest * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class UpdateRestoreTestingPlanCommand extends $Command diff --git a/clients/client-backup/src/commands/UpdateRestoreTestingSelectionCommand.ts b/clients/client-backup/src/commands/UpdateRestoreTestingSelectionCommand.ts index 2a56947a84f9d..7976581d613f4 100644 --- a/clients/client-backup/src/commands/UpdateRestoreTestingSelectionCommand.ts +++ b/clients/client-backup/src/commands/UpdateRestoreTestingSelectionCommand.ts @@ -113,6 +113,7 @@ export interface UpdateRestoreTestingSelectionCommandOutput * @throws {@link BackupServiceException} *

Base exception class for all service exceptions from Backup service.

* + * * @public */ export class UpdateRestoreTestingSelectionCommand extends $Command diff --git a/clients/client-backupsearch/src/commands/GetSearchJobCommand.ts b/clients/client-backupsearch/src/commands/GetSearchJobCommand.ts index 0e71463a091de..733de048a1214 100644 --- a/clients/client-backupsearch/src/commands/GetSearchJobCommand.ts +++ b/clients/client-backupsearch/src/commands/GetSearchJobCommand.ts @@ -171,6 +171,7 @@ export interface GetSearchJobCommandOutput extends GetSearchJobOutput, __Metadat * @throws {@link BackupSearchServiceException} *

Base exception class for all service exceptions from BackupSearch service.

* + * * @public */ export class GetSearchJobCommand extends $Command diff --git a/clients/client-backupsearch/src/commands/GetSearchResultExportJobCommand.ts b/clients/client-backupsearch/src/commands/GetSearchResultExportJobCommand.ts index 7c44830c84ae2..16529cbd5aeed 100644 --- a/clients/client-backupsearch/src/commands/GetSearchResultExportJobCommand.ts +++ b/clients/client-backupsearch/src/commands/GetSearchResultExportJobCommand.ts @@ -89,6 +89,7 @@ export interface GetSearchResultExportJobCommandOutput extends GetSearchResultEx * @throws {@link BackupSearchServiceException} *

Base exception class for all service exceptions from BackupSearch service.

* + * * @public */ export class GetSearchResultExportJobCommand extends $Command diff --git a/clients/client-backupsearch/src/commands/ListSearchJobBackupsCommand.ts b/clients/client-backupsearch/src/commands/ListSearchJobBackupsCommand.ts index 5710d2a03c096..858dd65e5c410 100644 --- a/clients/client-backupsearch/src/commands/ListSearchJobBackupsCommand.ts +++ b/clients/client-backupsearch/src/commands/ListSearchJobBackupsCommand.ts @@ -97,6 +97,7 @@ export interface ListSearchJobBackupsCommandOutput extends ListSearchJobBackupsO * @throws {@link BackupSearchServiceException} *

Base exception class for all service exceptions from BackupSearch service.

* + * * @public */ export class ListSearchJobBackupsCommand extends $Command diff --git a/clients/client-backupsearch/src/commands/ListSearchJobResultsCommand.ts b/clients/client-backupsearch/src/commands/ListSearchJobResultsCommand.ts index deb4d83e81b1b..0137c0b22d6a6 100644 --- a/clients/client-backupsearch/src/commands/ListSearchJobResultsCommand.ts +++ b/clients/client-backupsearch/src/commands/ListSearchJobResultsCommand.ts @@ -102,6 +102,7 @@ export interface ListSearchJobResultsCommandOutput extends ListSearchJobResultsO * @throws {@link BackupSearchServiceException} *

Base exception class for all service exceptions from BackupSearch service.

* + * * @public */ export class ListSearchJobResultsCommand extends $Command diff --git a/clients/client-backupsearch/src/commands/ListSearchJobsCommand.ts b/clients/client-backupsearch/src/commands/ListSearchJobsCommand.ts index 9c672996afde8..6be49f8d1db0e 100644 --- a/clients/client-backupsearch/src/commands/ListSearchJobsCommand.ts +++ b/clients/client-backupsearch/src/commands/ListSearchJobsCommand.ts @@ -85,6 +85,7 @@ export interface ListSearchJobsCommandOutput extends ListSearchJobsOutput, __Met * @throws {@link BackupSearchServiceException} *

Base exception class for all service exceptions from BackupSearch service.

* + * * @public */ export class ListSearchJobsCommand extends $Command diff --git a/clients/client-backupsearch/src/commands/ListSearchResultExportJobsCommand.ts b/clients/client-backupsearch/src/commands/ListSearchResultExportJobsCommand.ts index 30df4619642c6..c96e796e757c8 100644 --- a/clients/client-backupsearch/src/commands/ListSearchResultExportJobsCommand.ts +++ b/clients/client-backupsearch/src/commands/ListSearchResultExportJobsCommand.ts @@ -90,6 +90,7 @@ export interface ListSearchResultExportJobsCommandOutput extends ListSearchResul * @throws {@link BackupSearchServiceException} *

Base exception class for all service exceptions from BackupSearch service.

* + * * @public */ export class ListSearchResultExportJobsCommand extends $Command diff --git a/clients/client-backupsearch/src/commands/ListTagsForResourceCommand.ts b/clients/client-backupsearch/src/commands/ListTagsForResourceCommand.ts index b98ef69f73b8b..0a5d23ed9a25f 100644 --- a/clients/client-backupsearch/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-backupsearch/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link BackupSearchServiceException} *

Base exception class for all service exceptions from BackupSearch service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-backupsearch/src/commands/StartSearchJobCommand.ts b/clients/client-backupsearch/src/commands/StartSearchJobCommand.ts index 128ffbca72293..890bfb275d670 100644 --- a/clients/client-backupsearch/src/commands/StartSearchJobCommand.ts +++ b/clients/client-backupsearch/src/commands/StartSearchJobCommand.ts @@ -171,6 +171,7 @@ export interface StartSearchJobCommandOutput extends StartSearchJobOutput, __Met * @throws {@link BackupSearchServiceException} *

Base exception class for all service exceptions from BackupSearch service.

* + * * @public */ export class StartSearchJobCommand extends $Command diff --git a/clients/client-backupsearch/src/commands/StartSearchResultExportJobCommand.ts b/clients/client-backupsearch/src/commands/StartSearchResultExportJobCommand.ts index 43e0a665e9d91..5a4f656c765a3 100644 --- a/clients/client-backupsearch/src/commands/StartSearchResultExportJobCommand.ts +++ b/clients/client-backupsearch/src/commands/StartSearchResultExportJobCommand.ts @@ -96,6 +96,7 @@ export interface StartSearchResultExportJobCommandOutput extends StartSearchResu * @throws {@link BackupSearchServiceException} *

Base exception class for all service exceptions from BackupSearch service.

* + * * @public */ export class StartSearchResultExportJobCommand extends $Command diff --git a/clients/client-backupsearch/src/commands/StopSearchJobCommand.ts b/clients/client-backupsearch/src/commands/StopSearchJobCommand.ts index 118cf92418ec0..685fd44aa4ca3 100644 --- a/clients/client-backupsearch/src/commands/StopSearchJobCommand.ts +++ b/clients/client-backupsearch/src/commands/StopSearchJobCommand.ts @@ -80,6 +80,7 @@ export interface StopSearchJobCommandOutput extends StopSearchJobOutput, __Metad * @throws {@link BackupSearchServiceException} *

Base exception class for all service exceptions from BackupSearch service.

* + * * @public */ export class StopSearchJobCommand extends $Command diff --git a/clients/client-backupsearch/src/commands/TagResourceCommand.ts b/clients/client-backupsearch/src/commands/TagResourceCommand.ts index bb52676c435b8..9f8643af1f63e 100644 --- a/clients/client-backupsearch/src/commands/TagResourceCommand.ts +++ b/clients/client-backupsearch/src/commands/TagResourceCommand.ts @@ -73,6 +73,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link BackupSearchServiceException} *

Base exception class for all service exceptions from BackupSearch service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-backupsearch/src/commands/UntagResourceCommand.ts b/clients/client-backupsearch/src/commands/UntagResourceCommand.ts index 7e190d48638f2..17fc6ecb36865 100644 --- a/clients/client-backupsearch/src/commands/UntagResourceCommand.ts +++ b/clients/client-backupsearch/src/commands/UntagResourceCommand.ts @@ -73,6 +73,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link BackupSearchServiceException} *

Base exception class for all service exceptions from BackupSearch service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-batch/src/commands/CancelJobCommand.ts b/clients/client-batch/src/commands/CancelJobCommand.ts index 6158905e04549..c5f728f2b1b1d 100644 --- a/clients/client-batch/src/commands/CancelJobCommand.ts +++ b/clients/client-batch/src/commands/CancelJobCommand.ts @@ -74,19 +74,22 @@ export interface CancelJobCommandOutput extends CancelJobResponse, __MetadataBea * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To cancel a job * ```javascript * // This example cancels a job with the specified job ID. * const input = { - * "jobId": "1d828f65-7a4d-42e8-996d-3b900ed59dc4", - * "reason": "Cancelling job." + * jobId: "1d828f65-7a4d-42e8-996d-3b900ed59dc4", + * reason: "Cancelling job." * }; * const command = new CancelJobCommand(input); - * await client.send(command); - * // example id: to-cancel-a-job-1481152314733 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class CancelJobCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/CreateComputeEnvironmentCommand.ts b/clients/client-batch/src/commands/CreateComputeEnvironmentCommand.ts index b6a1915faed78..d97d2a5ff49a4 100644 --- a/clients/client-batch/src/commands/CreateComputeEnvironmentCommand.ts +++ b/clients/client-batch/src/commands/CreateComputeEnvironmentCommand.ts @@ -217,97 +217,96 @@ export interface CreateComputeEnvironmentCommandOutput extends CreateComputeEnvi * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To create a managed EC2 compute environment * ```javascript * // This example creates a managed compute environment with specific C4 instance types that are launched on demand. The compute environment is called C4OnDemand. * const input = { - * "type": "MANAGED", - * "computeEnvironmentName": "C4OnDemand", - * "computeResources": { - * "type": "EC2", - * "desiredvCpus": 48, - * "ec2KeyPair": "id_rsa", - * "instanceRole": "ecsInstanceRole", - * "instanceTypes": [ + * computeEnvironmentName: "C4OnDemand", + * computeResources: { + * desiredvCpus: 48, + * ec2KeyPair: "id_rsa", + * instanceRole: "ecsInstanceRole", + * instanceTypes: [ * "c4.large", * "c4.xlarge", * "c4.2xlarge", * "c4.4xlarge", * "c4.8xlarge" * ], - * "maxvCpus": 128, - * "minvCpus": 0, - * "securityGroupIds": [ + * maxvCpus: 128, + * minvCpus: 0, + * securityGroupIds: [ * "sg-cf5093b2" * ], - * "subnets": [ + * subnets: [ * "subnet-220c0e0a", * "subnet-1a95556d", * "subnet-978f6dce" * ], - * "tags": { - * "Name": "Batch Instance - C4OnDemand" - * } + * tags: { + * Name: "Batch Instance - C4OnDemand" + * }, + * type: "EC2" * }, - * "serviceRole": "arn:aws:iam::012345678910:role/AWSBatchServiceRole", - * "state": "ENABLED" + * serviceRole: "arn:aws:iam::012345678910:role/AWSBatchServiceRole", + * state: "ENABLED", + * type: "MANAGED" * }; * const command = new CreateComputeEnvironmentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "computeEnvironmentArn": "arn:aws:batch:us-east-1:012345678910:compute-environment/C4OnDemand", - * "computeEnvironmentName": "C4OnDemand" + * computeEnvironmentArn: "arn:aws:batch:us-east-1:012345678910:compute-environment/C4OnDemand", + * computeEnvironmentName: "C4OnDemand" * } * *\/ - * // example id: to-create-a-managed-ec2-compute-environment-1481152600017 * ``` * * @example To create a managed EC2 Spot compute environment * ```javascript * // This example creates a managed compute environment with the M4 instance type that is launched when the Spot bid price is at or below 20% of the On-Demand price for the instance type. The compute environment is called M4Spot. * const input = { - * "type": "MANAGED", - * "computeEnvironmentName": "M4Spot", - * "computeResources": { - * "type": "SPOT", - * "bidPercentage": 20, - * "desiredvCpus": 4, - * "ec2KeyPair": "id_rsa", - * "instanceRole": "ecsInstanceRole", - * "instanceTypes": [ + * computeEnvironmentName: "M4Spot", + * computeResources: { + * bidPercentage: 20, + * desiredvCpus: 4, + * ec2KeyPair: "id_rsa", + * instanceRole: "ecsInstanceRole", + * instanceTypes: [ * "m4" * ], - * "maxvCpus": 128, - * "minvCpus": 0, - * "securityGroupIds": [ + * maxvCpus: 128, + * minvCpus: 0, + * securityGroupIds: [ * "sg-cf5093b2" * ], - * "spotIamFleetRole": "arn:aws:iam::012345678910:role/aws-ec2-spot-fleet-role", - * "subnets": [ + * spotIamFleetRole: "arn:aws:iam::012345678910:role/aws-ec2-spot-fleet-role", + * subnets: [ * "subnet-220c0e0a", * "subnet-1a95556d", * "subnet-978f6dce" * ], - * "tags": { - * "Name": "Batch Instance - M4Spot" - * } + * tags: { + * Name: "Batch Instance - M4Spot" + * }, + * type: "SPOT" * }, - * "serviceRole": "arn:aws:iam::012345678910:role/AWSBatchServiceRole", - * "state": "ENABLED" + * serviceRole: "arn:aws:iam::012345678910:role/AWSBatchServiceRole", + * state: "ENABLED", + * type: "MANAGED" * }; * const command = new CreateComputeEnvironmentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "computeEnvironmentArn": "arn:aws:batch:us-east-1:012345678910:compute-environment/M4Spot", - * "computeEnvironmentName": "M4Spot" + * computeEnvironmentArn: "arn:aws:batch:us-east-1:012345678910:compute-environment/M4Spot", + * computeEnvironmentName: "M4Spot" * } * *\/ - * // example id: to-create-a-managed-ec2-spot-compute-environment-1481152844190 * ``` * + * @public */ export class CreateComputeEnvironmentCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/CreateConsumableResourceCommand.ts b/clients/client-batch/src/commands/CreateConsumableResourceCommand.ts index 309cc83b5f46d..740d3aa8a4706 100644 --- a/clients/client-batch/src/commands/CreateConsumableResourceCommand.ts +++ b/clients/client-batch/src/commands/CreateConsumableResourceCommand.ts @@ -69,30 +69,30 @@ export interface CreateConsumableResourceCommandOutput extends CreateConsumableR * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To create a consumable resource * ```javascript * // Creates a Batch consumable resource. * const input = { - * "consumableResourceName": "myConsumableResource", - * "resourceType": "REPLENISHABLE", - * "tags": { - * "Department": "Engineering", - * "User": "JaneDoe" + * consumableResourceName: "myConsumableResource", + * resourceType: "REPLENISHABLE", + * tags: { + * Department: "Engineering", + * User: "JaneDoe" * }, - * "totalQuantity": 123 + * totalQuantity: 123 * }; * const command = new CreateConsumableResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "consumableResourceArn": "arn:aws:batch:us-east-1:012345678910:consumable-resource/myConsumableResource", - * "consumableResourceName": "myConsumableResource" + * consumableResourceArn: "arn:aws:batch:us-east-1:012345678910:consumable-resource/myConsumableResource", + * consumableResourceName: "myConsumableResource" * } * *\/ - * // example id: to-create-a-consumable-resource-1739494856623 * ``` * + * @public */ export class CreateConsumableResourceCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/CreateJobQueueCommand.ts b/clients/client-batch/src/commands/CreateJobQueueCommand.ts index 69623a14f14c9..df404f6b99b6e 100644 --- a/clients/client-batch/src/commands/CreateJobQueueCommand.ts +++ b/clients/client-batch/src/commands/CreateJobQueueCommand.ts @@ -90,61 +90,60 @@ export interface CreateJobQueueCommandOutput extends CreateJobQueueResponse, __M * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To create a job queue with a single compute environment * ```javascript * // This example creates a job queue called LowPriority that uses the M4Spot compute environment. * const input = { - * "computeEnvironmentOrder": [ + * computeEnvironmentOrder: [ * { - * "computeEnvironment": "M4Spot", - * "order": 1 + * computeEnvironment: "M4Spot", + * order: 1 * } * ], - * "jobQueueName": "LowPriority", - * "priority": 1, - * "state": "ENABLED" + * jobQueueName: "LowPriority", + * priority: 1, + * state: "ENABLED" * }; * const command = new CreateJobQueueCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "jobQueueArn": "arn:aws:batch:us-east-1:012345678910:job-queue/LowPriority", - * "jobQueueName": "LowPriority" + * jobQueueArn: "arn:aws:batch:us-east-1:012345678910:job-queue/LowPriority", + * jobQueueName: "LowPriority" * } * *\/ - * // example id: to-create-a-job-queue-with-a-single-compute-environment-1481152967946 * ``` * * @example To create a job queue with multiple compute environments * ```javascript * // This example creates a job queue called HighPriority that uses the C4OnDemand compute environment with an order of 1 and the M4Spot compute environment with an order of 2. * const input = { - * "computeEnvironmentOrder": [ + * computeEnvironmentOrder: [ * { - * "computeEnvironment": "C4OnDemand", - * "order": 1 + * computeEnvironment: "C4OnDemand", + * order: 1 * }, * { - * "computeEnvironment": "M4Spot", - * "order": 2 + * computeEnvironment: "M4Spot", + * order: 2 * } * ], - * "jobQueueName": "HighPriority", - * "priority": 10, - * "state": "ENABLED" + * jobQueueName: "HighPriority", + * priority: 10, + * state: "ENABLED" * }; * const command = new CreateJobQueueCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "jobQueueArn": "arn:aws:batch:us-east-1:012345678910:job-queue/HighPriority", - * "jobQueueName": "HighPriority" + * jobQueueArn: "arn:aws:batch:us-east-1:012345678910:job-queue/HighPriority", + * jobQueueName: "HighPriority" * } * *\/ - * // example id: to-create-a-job-queue-with-multiple-compute-environments-1481153027051 * ``` * + * @public */ export class CreateJobQueueCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/CreateSchedulingPolicyCommand.ts b/clients/client-batch/src/commands/CreateSchedulingPolicyCommand.ts index d5e51e44497ce..7992dfa3f6d86 100644 --- a/clients/client-batch/src/commands/CreateSchedulingPolicyCommand.ts +++ b/clients/client-batch/src/commands/CreateSchedulingPolicyCommand.ts @@ -77,6 +77,7 @@ export interface CreateSchedulingPolicyCommandOutput extends CreateSchedulingPol * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* + * * @public */ export class CreateSchedulingPolicyCommand extends $Command diff --git a/clients/client-batch/src/commands/DeleteComputeEnvironmentCommand.ts b/clients/client-batch/src/commands/DeleteComputeEnvironmentCommand.ts index ce5e07ce32423..923e9cfb50b9f 100644 --- a/clients/client-batch/src/commands/DeleteComputeEnvironmentCommand.ts +++ b/clients/client-batch/src/commands/DeleteComputeEnvironmentCommand.ts @@ -67,18 +67,21 @@ export interface DeleteComputeEnvironmentCommandOutput extends DeleteComputeEnvi * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To delete a compute environment * ```javascript * // This example deletes the P2OnDemand compute environment. * const input = { - * "computeEnvironment": "P2OnDemand" + * computeEnvironment: "P2OnDemand" * }; * const command = new DeleteComputeEnvironmentCommand(input); - * await client.send(command); - * // example id: to-delete-a-compute-environment-1481153105644 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteComputeEnvironmentCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/DeleteConsumableResourceCommand.ts b/clients/client-batch/src/commands/DeleteConsumableResourceCommand.ts index d1ea7f3ac217e..e082ed24913e9 100644 --- a/clients/client-batch/src/commands/DeleteConsumableResourceCommand.ts +++ b/clients/client-batch/src/commands/DeleteConsumableResourceCommand.ts @@ -61,18 +61,21 @@ export interface DeleteConsumableResourceCommandOutput extends DeleteConsumableR * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To delete a consumable resource * ```javascript * // Deletes the specified consumable resource. * const input = { - * "consumableResource": "myConsumableResource" + * consumableResource: "myConsumableResource" * }; * const command = new DeleteConsumableResourceCommand(input); - * await client.send(command); - * // example id: to-delete-a-consumable-resource-1739495667751 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteConsumableResourceCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/DeleteJobQueueCommand.ts b/clients/client-batch/src/commands/DeleteJobQueueCommand.ts index d48cd2503442c..5a5bd6ee7d3be 100644 --- a/clients/client-batch/src/commands/DeleteJobQueueCommand.ts +++ b/clients/client-batch/src/commands/DeleteJobQueueCommand.ts @@ -66,18 +66,21 @@ export interface DeleteJobQueueCommandOutput extends DeleteJobQueueResponse, __M * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To delete a job queue * ```javascript * // This example deletes the GPGPU job queue. * const input = { - * "jobQueue": "GPGPU" + * jobQueue: "GPGPU" * }; * const command = new DeleteJobQueueCommand(input); - * await client.send(command); - * // example id: to-delete-a-job-queue-1481153508134 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteJobQueueCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/DeleteSchedulingPolicyCommand.ts b/clients/client-batch/src/commands/DeleteSchedulingPolicyCommand.ts index 8d5cdc3eb160b..bc888d08ce0e1 100644 --- a/clients/client-batch/src/commands/DeleteSchedulingPolicyCommand.ts +++ b/clients/client-batch/src/commands/DeleteSchedulingPolicyCommand.ts @@ -62,6 +62,7 @@ export interface DeleteSchedulingPolicyCommandOutput extends DeleteSchedulingPol * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* + * * @public */ export class DeleteSchedulingPolicyCommand extends $Command diff --git a/clients/client-batch/src/commands/DeregisterJobDefinitionCommand.ts b/clients/client-batch/src/commands/DeregisterJobDefinitionCommand.ts index fb948f523bcf0..53c061f87df3e 100644 --- a/clients/client-batch/src/commands/DeregisterJobDefinitionCommand.ts +++ b/clients/client-batch/src/commands/DeregisterJobDefinitionCommand.ts @@ -62,18 +62,21 @@ export interface DeregisterJobDefinitionCommandOutput extends DeregisterJobDefin * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To deregister a job definition * ```javascript * // This example deregisters a job definition called sleep10. * const input = { - * "jobDefinition": "sleep10" + * jobDefinition: "sleep10" * }; * const command = new DeregisterJobDefinitionCommand(input); - * await client.send(command); - * // example id: to-deregister-a-job-definition-1481153579565 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeregisterJobDefinitionCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/DescribeComputeEnvironmentsCommand.ts b/clients/client-batch/src/commands/DescribeComputeEnvironmentsCommand.ts index 1ab85702781d2..b31d9ab077b04 100644 --- a/clients/client-batch/src/commands/DescribeComputeEnvironmentsCommand.ts +++ b/clients/client-batch/src/commands/DescribeComputeEnvironmentsCommand.ts @@ -149,58 +149,58 @@ export interface DescribeComputeEnvironmentsCommandOutput * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To describe a compute environment * ```javascript * // This example describes the P2OnDemand compute environment. * const input = { - * "computeEnvironments": [ + * computeEnvironments: [ * "P2OnDemand" * ] * }; * const command = new DescribeComputeEnvironmentsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "computeEnvironments": [ + * computeEnvironments: [ * { - * "type": "MANAGED", - * "computeEnvironmentArn": "arn:aws:batch:us-east-1:012345678910:compute-environment/P2OnDemand", - * "computeEnvironmentName": "P2OnDemand", - * "computeResources": { - * "type": "EC2", - * "desiredvCpus": 48, - * "ec2KeyPair": "id_rsa", - * "instanceRole": "ecsInstanceRole", - * "instanceTypes": [ + * computeEnvironmentArn: "arn:aws:batch:us-east-1:012345678910:compute-environment/P2OnDemand", + * computeEnvironmentName: "P2OnDemand", + * computeResources: { + * desiredvCpus: 48, + * ec2KeyPair: "id_rsa", + * instanceRole: "ecsInstanceRole", + * instanceTypes: [ * "p2" * ], - * "maxvCpus": 128, - * "minvCpus": 0, - * "securityGroupIds": [ + * maxvCpus: 128, + * minvCpus: 0, + * securityGroupIds: [ * "sg-cf5093b2" * ], - * "subnets": [ + * subnets: [ * "subnet-220c0e0a", * "subnet-1a95556d", * "subnet-978f6dce" * ], - * "tags": { - * "Name": "Batch Instance - P2OnDemand" - * } + * tags: { + * Name: "Batch Instance - P2OnDemand" + * }, + * type: "EC2" * }, - * "ecsClusterArn": "arn:aws:ecs:us-east-1:012345678910:cluster/P2OnDemand_Batch_2c06f29d-d1fe-3a49-879d-42394c86effc", - * "serviceRole": "arn:aws:iam::012345678910:role/AWSBatchServiceRole", - * "state": "ENABLED", - * "status": "VALID", - * "statusReason": "ComputeEnvironment Healthy" + * ecsClusterArn: "arn:aws:ecs:us-east-1:012345678910:cluster/P2OnDemand_Batch_2c06f29d-d1fe-3a49-879d-42394c86effc", + * serviceRole: "arn:aws:iam::012345678910:role/AWSBatchServiceRole", + * state: "ENABLED", + * status: "VALID", + * statusReason: "ComputeEnvironment Healthy", + * type: "MANAGED" * } * ] * } * *\/ - * // example id: to-describe-a-compute-environment-1481153713334 * ``` * + * @public */ export class DescribeComputeEnvironmentsCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/DescribeConsumableResourceCommand.ts b/clients/client-batch/src/commands/DescribeConsumableResourceCommand.ts index a0ffdc1c24ec3..a8e1dbb08b50e 100644 --- a/clients/client-batch/src/commands/DescribeConsumableResourceCommand.ts +++ b/clients/client-batch/src/commands/DescribeConsumableResourceCommand.ts @@ -72,33 +72,33 @@ export interface DescribeConsumableResourceCommandOutput extends DescribeConsuma * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To get a description of a consumable resource * ```javascript * // Returns a description of the specified consumable resource. * const input = { - * "consumableResource": "myConsumableResource" + * consumableResource: "myConsumableResource" * }; * const command = new DescribeConsumableResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "availableQuantity": 123, - * "consumableResourceArn": "arn:aws:batch:us-east-1:012345678910:consumable-resource/myConsumableResource", - * "consumableResourceName": "myConsumableResource", - * "createdAt": 123, - * "inUseQuantity": 123, - * "resourceType": "REPLENISHABLE", - * "tags": { - * "Department": "Engineering", - * "User": "JaneDoe" + * availableQuantity: 123, + * consumableResourceArn: "arn:aws:batch:us-east-1:012345678910:consumable-resource/myConsumableResource", + * consumableResourceName: "myConsumableResource", + * createdAt: 123, + * inUseQuantity: 123, + * resourceType: "REPLENISHABLE", + * tags: { + * Department: "Engineering", + * User: "JaneDoe" * }, - * "totalQuantity": 123 + * totalQuantity: 123 * } * *\/ - * // example id: to-get-a-description-of-a-consumable-resource-1739495864808 * ``` * + * @public */ export class DescribeConsumableResourceCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/DescribeJobDefinitionsCommand.ts b/clients/client-batch/src/commands/DescribeJobDefinitionsCommand.ts index 46989ab03783e..ba056cc1199f3 100644 --- a/clients/client-batch/src/commands/DescribeJobDefinitionsCommand.ts +++ b/clients/client-batch/src/commands/DescribeJobDefinitionsCommand.ts @@ -671,52 +671,52 @@ export interface DescribeJobDefinitionsCommandOutput extends DescribeJobDefiniti * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To describe active job definitions * ```javascript * // This example describes all of your active job definitions. * const input = { - * "status": "ACTIVE" + * status: "ACTIVE" * }; * const command = new DescribeJobDefinitionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "jobDefinitions": [ + * jobDefinitions: [ * { - * "type": "container", - * "containerProperties": { - * "command": [ + * containerProperties: { + * command: [ * "sleep", * "60" * ], - * "environment": [], - * "image": "busybox", - * "mountPoints": [], - * "resourceRequirements": [ + * environment: [], + * image: "busybox", + * mountPoints: [], + * resourceRequirements: [ * { - * "type": "MEMORY", - * "value": "128" + * type: "MEMORY", + * value: "128" * }, * { - * "type": "VCPU", - * "value": "1" + * type: "VCPU", + * value: "1" * } * ], - * "ulimits": [], - * "volumes": [] + * ulimits: [], + * volumes: [] * }, - * "jobDefinitionArn": "arn:aws:batch:us-east-1:012345678910:job-definition/sleep60:1", - * "jobDefinitionName": "sleep60", - * "revision": 1, - * "status": "ACTIVE" + * jobDefinitionArn: "arn:aws:batch:us-east-1:012345678910:job-definition/sleep60:1", + * jobDefinitionName: "sleep60", + * revision: 1, + * status: "ACTIVE", + * type: "container" * } * ] * } * *\/ - * // example id: to-describe-active-job-definitions-1481153895831 * ``` * + * @public */ export class DescribeJobDefinitionsCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/DescribeJobQueuesCommand.ts b/clients/client-batch/src/commands/DescribeJobQueuesCommand.ts index 9c9a9de77cc7c..273ed9db10d06 100644 --- a/clients/client-batch/src/commands/DescribeJobQueuesCommand.ts +++ b/clients/client-batch/src/commands/DescribeJobQueuesCommand.ts @@ -95,40 +95,40 @@ export interface DescribeJobQueuesCommandOutput extends DescribeJobQueuesRespons * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To describe a job queue * ```javascript * // This example describes the HighPriority job queue. * const input = { - * "jobQueues": [ + * jobQueues: [ * "HighPriority" * ] * }; * const command = new DescribeJobQueuesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "jobQueues": [ + * jobQueues: [ * { - * "computeEnvironmentOrder": [ + * computeEnvironmentOrder: [ * { - * "computeEnvironment": "arn:aws:batch:us-east-1:012345678910:compute-environment/C4OnDemand", - * "order": 1 + * computeEnvironment: "arn:aws:batch:us-east-1:012345678910:compute-environment/C4OnDemand", + * order: 1 * } * ], - * "jobQueueArn": "arn:aws:batch:us-east-1:012345678910:job-queue/HighPriority", - * "jobQueueName": "HighPriority", - * "priority": 1, - * "state": "ENABLED", - * "status": "VALID", - * "statusReason": "JobQueue Healthy" + * jobQueueArn: "arn:aws:batch:us-east-1:012345678910:job-queue/HighPriority", + * jobQueueName: "HighPriority", + * priority: 1, + * state: "ENABLED", + * status: "VALID", + * statusReason: "JobQueue Healthy" * } * ] * } * *\/ - * // example id: to-describe-a-job-queue-1481153995804 * ``` * + * @public */ export class DescribeJobQueuesCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/DescribeJobsCommand.ts b/clients/client-batch/src/commands/DescribeJobsCommand.ts index 6289fb679bf35..6fee0e5a4ab35 100644 --- a/clients/client-batch/src/commands/DescribeJobsCommand.ts +++ b/clients/client-batch/src/commands/DescribeJobsCommand.ts @@ -776,53 +776,53 @@ export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __Metad * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To describe a specific job * ```javascript * // This example describes a job with the specified job ID. * const input = { - * "jobs": [ + * jobs: [ * "24fa2d7a-64c4-49d2-8b47-f8da4fbde8e9" * ] * }; * const command = new DescribeJobsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "jobs": [ + * jobs: [ * { - * "container": { - * "command": [ + * container: { + * command: [ * "sleep", * "60" * ], - * "containerInstanceArn": "arn:aws:ecs:us-east-1:012345678910:container-instance/5406d7cd-58bd-4b8f-9936-48d7c6b1526c", - * "environment": [], - * "exitCode": 0, - * "image": "busybox", - * "memory": 128, - * "mountPoints": [], - * "ulimits": [], - * "vcpus": 1, - * "volumes": [] + * containerInstanceArn: "arn:aws:ecs:us-east-1:012345678910:container-instance/5406d7cd-58bd-4b8f-9936-48d7c6b1526c", + * environment: [], + * exitCode: 0, + * image: "busybox", + * memory: 128, + * mountPoints: [], + * ulimits: [], + * vcpus: 1, + * volumes: [] * }, - * "createdAt": 1480460782010, - * "dependsOn": [], - * "jobDefinition": "sleep60", - * "jobId": "24fa2d7a-64c4-49d2-8b47-f8da4fbde8e9", - * "jobName": "example", - * "jobQueue": "arn:aws:batch:us-east-1:012345678910:job-queue/HighPriority", - * "parameters": {}, - * "startedAt": 1480460816500, - * "status": "SUCCEEDED", - * "stoppedAt": 1480460880699 + * createdAt: 1480460782010, + * dependsOn: [], + * jobDefinition: "sleep60", + * jobId: "24fa2d7a-64c4-49d2-8b47-f8da4fbde8e9", + * jobName: "example", + * jobQueue: "arn:aws:batch:us-east-1:012345678910:job-queue/HighPriority", + * parameters: { /* empty *\/ }, + * startedAt: 1480460816500, + * status: "SUCCEEDED", + * stoppedAt: 1480460880699 * } * ] * } * *\/ - * // example id: to-describe-a-specific-job-1481154090490 * ``` * + * @public */ export class DescribeJobsCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/DescribeSchedulingPoliciesCommand.ts b/clients/client-batch/src/commands/DescribeSchedulingPoliciesCommand.ts index 87a12a707c51c..76a1dd8ae1d3a 100644 --- a/clients/client-batch/src/commands/DescribeSchedulingPoliciesCommand.ts +++ b/clients/client-batch/src/commands/DescribeSchedulingPoliciesCommand.ts @@ -83,6 +83,7 @@ export interface DescribeSchedulingPoliciesCommandOutput extends DescribeSchedul * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* + * * @public */ export class DescribeSchedulingPoliciesCommand extends $Command diff --git a/clients/client-batch/src/commands/GetJobQueueSnapshotCommand.ts b/clients/client-batch/src/commands/GetJobQueueSnapshotCommand.ts index 0e80f6ed10587..3e706453633e0 100644 --- a/clients/client-batch/src/commands/GetJobQueueSnapshotCommand.ts +++ b/clients/client-batch/src/commands/GetJobQueueSnapshotCommand.ts @@ -71,6 +71,7 @@ export interface GetJobQueueSnapshotCommandOutput extends GetJobQueueSnapshotRes * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* + * * @public */ export class GetJobQueueSnapshotCommand extends $Command diff --git a/clients/client-batch/src/commands/ListConsumableResourcesCommand.ts b/clients/client-batch/src/commands/ListConsumableResourcesCommand.ts index f26f9ddaed7d5..5d9d8c01815d5 100644 --- a/clients/client-batch/src/commands/ListConsumableResourcesCommand.ts +++ b/clients/client-batch/src/commands/ListConsumableResourcesCommand.ts @@ -81,39 +81,39 @@ export interface ListConsumableResourcesCommandOutput extends ListConsumableReso * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To get a list of a consumable resources * ```javascript * // Returns a list of the consumable resources for your account. * const input = { - * "filters": [ + * filters: [ * { - * "name": "CONSUMABLE_RESOURCE_NAME", - * "values": [ + * name: "CONSUMABLE_RESOURCE_NAME", + * values: [ * "my*" * ] * } * ], - * "maxResults": 123 + * maxResults: 123 * }; * const command = new ListConsumableResourcesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "consumableResources": [ + * consumableResources: [ * { - * "consumableResourceArn": "arn:aws:batch:us-east-1:012345678910:consumable-resource/myConsumableResource", - * "consumableResourceName": "myConsumableResource", - * "inUseQuantity": 12, - * "resourceType": "REPLENISHABLE", - * "totalQuantity": 123 + * consumableResourceArn: "arn:aws:batch:us-east-1:012345678910:consumable-resource/myConsumableResource", + * consumableResourceName: "myConsumableResource", + * inUseQuantity: 12, + * resourceType: "REPLENISHABLE", + * totalQuantity: 123 * } * ] * } * *\/ - * // example id: to-get-a-list-of-a-consumable-resources-1739496071960 * ``` * + * @public */ export class ListConsumableResourcesCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/ListJobsByConsumableResourceCommand.ts b/clients/client-batch/src/commands/ListJobsByConsumableResourceCommand.ts index 2759c22d268c1..d657c3fcbb9c6 100644 --- a/clients/client-batch/src/commands/ListJobsByConsumableResourceCommand.ts +++ b/clients/client-batch/src/commands/ListJobsByConsumableResourceCommand.ts @@ -100,50 +100,50 @@ export interface ListJobsByConsumableResourceCommandOutput * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To get a list of Batch jobs by consumable resource * ```javascript * // Returns a list of Batch jobs that require a specific consumable resource. * const input = { - * "consumableResource": "myConsumableResource", - * "filters": [ + * consumableResource: "myConsumableResource", + * filters: [ * { - * "name": "CONSUMABLE_RESOURCE_NAME", - * "values": [ + * name: "CONSUMABLE_RESOURCE_NAME", + * values: [ * "my*" * ] * } * ], - * "maxResults": 123 + * maxResults: 123 * }; * const command = new ListJobsByConsumableResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "jobs": [ + * jobs: [ * { - * "consumableResourceProperties": { - * "consumableResourceList": [ + * consumableResourceProperties: { + * consumableResourceList: [ * { - * "consumableResource": "myConsumableResource", - * "quantity": 123 + * consumableResource: "myConsumableResource", + * quantity: 123 * } * ] * }, - * "createdAt": 1480460782010, - * "jobArn": "arn:aws:batch:us-east-1:012345678910:job/myJob", - * "jobDefinitionArn": "arn:aws:batch:us-east-1:012345678910:job-definition/myJobDef", - * "jobName": "myJob", - * "jobQueueArn": "arn:aws:batch:us-east-1:012345678910:job-queue/myJobQueue", - * "jobStatus": "PENDING", - * "quantity": 123 + * createdAt: 1480460782010, + * jobArn: "arn:aws:batch:us-east-1:012345678910:job/myJob", + * jobDefinitionArn: "arn:aws:batch:us-east-1:012345678910:job-definition/myJobDef", + * jobName: "myJob", + * jobQueueArn: "arn:aws:batch:us-east-1:012345678910:job-queue/myJobQueue", + * jobStatus: "PENDING", + * quantity: 123 * } * ] * } * *\/ - * // example id: to-get-a-list-of-batch-jobs-by-consumable-resource-1739496640347 * ``` * + * @public */ export class ListJobsByConsumableResourceCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/ListJobsCommand.ts b/clients/client-batch/src/commands/ListJobsCommand.ts index 689e97248cf65..d58dd66fc7e6f 100644 --- a/clients/client-batch/src/commands/ListJobsCommand.ts +++ b/clients/client-batch/src/commands/ListJobsCommand.ts @@ -116,50 +116,49 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To list running jobs * ```javascript * // This example lists the running jobs in the HighPriority job queue. * const input = { - * "jobQueue": "HighPriority" + * jobQueue: "HighPriority" * }; * const command = new ListJobsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "jobSummaryList": [ + * jobSummaryList: [ * { - * "jobId": "e66ff5fd-a1ff-4640-b1a2-0b0a142f49bb", - * "jobName": "example" + * jobId: "e66ff5fd-a1ff-4640-b1a2-0b0a142f49bb", + * jobName: "example" * } * ] * } * *\/ - * // example id: to-list-running-jobs-1481154202164 * ``` * * @example To list submitted jobs * ```javascript * // This example lists jobs in the HighPriority job queue that are in the SUBMITTED job status. * const input = { - * "jobQueue": "HighPriority", - * "jobStatus": "SUBMITTED" + * jobQueue: "HighPriority", + * jobStatus: "SUBMITTED" * }; * const command = new ListJobsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "jobSummaryList": [ + * jobSummaryList: [ * { - * "jobId": "68f0c163-fbd4-44e6-9fd1-25b14a434786", - * "jobName": "example" + * jobId: "68f0c163-fbd4-44e6-9fd1-25b14a434786", + * jobName: "example" * } * ] * } * *\/ - * // example id: to-list-submitted-jobs-1481154251623 * ``` * + * @public */ export class ListJobsCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/ListSchedulingPoliciesCommand.ts b/clients/client-batch/src/commands/ListSchedulingPoliciesCommand.ts index 419df554b95bd..cb03b3116f456 100644 --- a/clients/client-batch/src/commands/ListSchedulingPoliciesCommand.ts +++ b/clients/client-batch/src/commands/ListSchedulingPoliciesCommand.ts @@ -69,6 +69,7 @@ export interface ListSchedulingPoliciesCommandOutput extends ListSchedulingPolic * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* + * * @public */ export class ListSchedulingPoliciesCommand extends $Command diff --git a/clients/client-batch/src/commands/ListTagsForResourceCommand.ts b/clients/client-batch/src/commands/ListTagsForResourceCommand.ts index 5e222e1074168..30e2191bc5f1f 100644 --- a/clients/client-batch/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-batch/src/commands/ListTagsForResourceCommand.ts @@ -66,27 +66,27 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example ListTagsForResource Example * ```javascript * // This demonstrates calling the ListTagsForResource action. * const input = { - * "resourceArn": "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1" + * resourceArn: "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "tags": { - * "Department": "Engineering", - * "Stage": "Alpha", - * "User": "JaneDoe" + * tags: { + * Department: "Engineering", + * Stage: "Alpha", + * User: "JaneDoe" * } * } * *\/ - * // example id: listtagsforresource-example-1591293003710 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/RegisterJobDefinitionCommand.ts b/clients/client-batch/src/commands/RegisterJobDefinitionCommand.ts index d2d2b00f41746..794cb1a614349 100644 --- a/clients/client-batch/src/commands/RegisterJobDefinitionCommand.ts +++ b/clients/client-batch/src/commands/RegisterJobDefinitionCommand.ts @@ -657,83 +657,82 @@ export interface RegisterJobDefinitionCommandOutput extends RegisterJobDefinitio * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public - * @example To register a job definition + * + * @example RegisterJobDefinition with tags * ```javascript - * // This example registers a job definition for a simple container job. + * // This demonstrates calling the RegisterJobDefinition action, including tags. * const input = { - * "type": "container", - * "containerProperties": { - * "command": [ + * containerProperties: { + * command: [ * "sleep", - * "10" + * "30" * ], - * "image": "busybox", - * "resourceRequirements": [ + * image: "busybox", + * resourceRequirements: [ * { - * "type": "MEMORY", - * "value": "128" + * type: "MEMORY", + * value: "128" * }, * { - * "type": "VCPU", - * "value": "1" + * type: "VCPU", + * value: "1" * } * ] * }, - * "jobDefinitionName": "sleep10" + * jobDefinitionName: "sleep30", + * tags: { + * Department: "Engineering", + * User: "JaneDoe" + * }, + * type: "container" * }; * const command = new RegisterJobDefinitionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "jobDefinitionArn": "arn:aws:batch:us-east-1:012345678910:job-definition/sleep10:1", - * "jobDefinitionName": "sleep10", - * "revision": 1 + * jobDefinitionArn: "arn:aws:batch:us-east-1:012345678910:job-definition/sleep30:1", + * jobDefinitionName: "sleep30", + * revision: 1 * } * *\/ - * // example id: to-register-a-job-definition-1481154325325 * ``` * - * @example RegisterJobDefinition with tags + * @example To register a job definition * ```javascript - * // This demonstrates calling the RegisterJobDefinition action, including tags. + * // This example registers a job definition for a simple container job. * const input = { - * "type": "container", - * "containerProperties": { - * "command": [ + * containerProperties: { + * command: [ * "sleep", - * "30" + * "10" * ], - * "image": "busybox", - * "resourceRequirements": [ + * image: "busybox", + * resourceRequirements: [ * { - * "type": "MEMORY", - * "value": "128" + * type: "MEMORY", + * value: "128" * }, * { - * "type": "VCPU", - * "value": "1" + * type: "VCPU", + * value: "1" * } * ] * }, - * "jobDefinitionName": "sleep30", - * "tags": { - * "Department": "Engineering", - * "User": "JaneDoe" - * } + * jobDefinitionName: "sleep10", + * type: "container" * }; * const command = new RegisterJobDefinitionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "jobDefinitionArn": "arn:aws:batch:us-east-1:012345678910:job-definition/sleep30:1", - * "jobDefinitionName": "sleep30", - * "revision": 1 + * jobDefinitionArn: "arn:aws:batch:us-east-1:012345678910:job-definition/sleep10:1", + * jobDefinitionName: "sleep10", + * revision: 1 * } * *\/ - * // example id: registerjobdefinition-with-tags-1591290509028 * ``` * + * @public */ export class RegisterJobDefinitionCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/SubmitJobCommand.ts b/clients/client-batch/src/commands/SubmitJobCommand.ts index 324852b8d9cb5..8ea6b3e37b41a 100644 --- a/clients/client-batch/src/commands/SubmitJobCommand.ts +++ b/clients/client-batch/src/commands/SubmitJobCommand.ts @@ -320,26 +320,26 @@ export interface SubmitJobCommandOutput extends SubmitJobResponse, __MetadataBea * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To submit a job to a queue * ```javascript * // This example submits a simple container job called example to the HighPriority job queue. * const input = { - * "jobDefinition": "sleep60", - * "jobName": "example", - * "jobQueue": "HighPriority" + * jobDefinition: "sleep60", + * jobName: "example", + * jobQueue: "HighPriority" * }; * const command = new SubmitJobCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "jobId": "876da822-4198-45f2-a252-6cea32512ea8", - * "jobName": "example" + * jobId: "876da822-4198-45f2-a252-6cea32512ea8", + * jobName: "example" * } * *\/ - * // example id: to-submit-a-job-to-a-queue-1481154481673 * ``` * + * @public */ export class SubmitJobCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/TagResourceCommand.ts b/clients/client-batch/src/commands/TagResourceCommand.ts index 8cdd21e403096..cef36a1db1ea7 100644 --- a/clients/client-batch/src/commands/TagResourceCommand.ts +++ b/clients/client-batch/src/commands/TagResourceCommand.ts @@ -68,21 +68,24 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example TagResource Example * ```javascript * // This demonstrates calling the TagResource action. * const input = { - * "resourceArn": "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1", - * "tags": { - * "Stage": "Alpha" + * resourceArn: "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1", + * tags: { + * Stage: "Alpha" * } * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: tagresource-example-1591291959952 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/TerminateJobCommand.ts b/clients/client-batch/src/commands/TerminateJobCommand.ts index 39fba96679ae5..3c3dcbceb93aa 100644 --- a/clients/client-batch/src/commands/TerminateJobCommand.ts +++ b/clients/client-batch/src/commands/TerminateJobCommand.ts @@ -65,19 +65,22 @@ export interface TerminateJobCommandOutput extends TerminateJobResponse, __Metad * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To terminate a job * ```javascript * // This example terminates a job with the specified job ID. * const input = { - * "jobId": "61e743ed-35e4-48da-b2de-5c8333821c84", - * "reason": "Terminating job." + * jobId: "61e743ed-35e4-48da-b2de-5c8333821c84", + * reason: "Terminating job." * }; * const command = new TerminateJobCommand(input); - * await client.send(command); - * // example id: to-terminate-a-job-1481154558276 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class TerminateJobCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/UntagResourceCommand.ts b/clients/client-batch/src/commands/UntagResourceCommand.ts index 3f5afd9d00859..1e830661e4e0e 100644 --- a/clients/client-batch/src/commands/UntagResourceCommand.ts +++ b/clients/client-batch/src/commands/UntagResourceCommand.ts @@ -64,21 +64,24 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example UntagResource Example * ```javascript * // This demonstrates calling the UntagResource action. * const input = { - * "resourceArn": "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1", - * "tagKeys": [ + * resourceArn: "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1", + * tagKeys: [ * "Stage" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: untagresource-example-1591292811042 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/UpdateComputeEnvironmentCommand.ts b/clients/client-batch/src/commands/UpdateComputeEnvironmentCommand.ts index 6bb44423593fc..794bc853cbf18 100644 --- a/clients/client-batch/src/commands/UpdateComputeEnvironmentCommand.ts +++ b/clients/client-batch/src/commands/UpdateComputeEnvironmentCommand.ts @@ -119,25 +119,25 @@ export interface UpdateComputeEnvironmentCommandOutput extends UpdateComputeEnvi * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To update a compute environment * ```javascript * // This example disables the P2OnDemand compute environment so it can be deleted. * const input = { - * "computeEnvironment": "P2OnDemand", - * "state": "DISABLED" + * computeEnvironment: "P2OnDemand", + * state: "DISABLED" * }; * const command = new UpdateComputeEnvironmentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "computeEnvironmentArn": "arn:aws:batch:us-east-1:012345678910:compute-environment/P2OnDemand", - * "computeEnvironmentName": "P2OnDemand" + * computeEnvironmentArn: "arn:aws:batch:us-east-1:012345678910:compute-environment/P2OnDemand", + * computeEnvironmentName: "P2OnDemand" * } * *\/ - * // example id: to-update-a-compute-environment-1481154702731 * ``` * + * @public */ export class UpdateComputeEnvironmentCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/UpdateConsumableResourceCommand.ts b/clients/client-batch/src/commands/UpdateConsumableResourceCommand.ts index 6524c52b712c8..03c452547e0d7 100644 --- a/clients/client-batch/src/commands/UpdateConsumableResourceCommand.ts +++ b/clients/client-batch/src/commands/UpdateConsumableResourceCommand.ts @@ -68,27 +68,27 @@ export interface UpdateConsumableResourceCommandOutput extends UpdateConsumableR * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To update a consumable resource * ```javascript * // Updates a consumable resource. * const input = { - * "consumableResource": "myConsumableResource", - * "operation": "ADD", - * "quantity": 12 + * consumableResource: "myConsumableResource", + * operation: "ADD", + * quantity: 12 * }; * const command = new UpdateConsumableResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "consumableResourceArn": "arn:aws:batch:us-east-1:012345678910:consumable-resource/myConsumableResource", - * "consumableResourceName": "myConsumableResource", - * "totalQuantity": 135 + * consumableResourceArn: "arn:aws:batch:us-east-1:012345678910:consumable-resource/myConsumableResource", + * consumableResourceName: "myConsumableResource", + * totalQuantity: 135 * } * *\/ - * // example id: to-update-a-consumable-resource-1739497761692 * ``` * + * @public */ export class UpdateConsumableResourceCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/UpdateJobQueueCommand.ts b/clients/client-batch/src/commands/UpdateJobQueueCommand.ts index 9436170c87bea..ef7ee709854eb 100644 --- a/clients/client-batch/src/commands/UpdateJobQueueCommand.ts +++ b/clients/client-batch/src/commands/UpdateJobQueueCommand.ts @@ -81,25 +81,25 @@ export interface UpdateJobQueueCommandOutput extends UpdateJobQueueResponse, __M * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* - * @public + * * @example To update a job queue * ```javascript * // This example disables a job queue so that it can be deleted. * const input = { - * "jobQueue": "GPGPU", - * "state": "DISABLED" + * jobQueue: "GPGPU", + * state: "DISABLED" * }; * const command = new UpdateJobQueueCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "jobQueueArn": "arn:aws:batch:us-east-1:012345678910:job-queue/GPGPU", - * "jobQueueName": "GPGPU" + * jobQueueArn: "arn:aws:batch:us-east-1:012345678910:job-queue/GPGPU", + * jobQueueName: "GPGPU" * } * *\/ - * // example id: to-update-a-job-queue-1481154806981 * ``` * + * @public */ export class UpdateJobQueueCommand extends $Command .classBuilder< diff --git a/clients/client-batch/src/commands/UpdateSchedulingPolicyCommand.ts b/clients/client-batch/src/commands/UpdateSchedulingPolicyCommand.ts index 87b4161ce80bd..27313708f27c1 100644 --- a/clients/client-batch/src/commands/UpdateSchedulingPolicyCommand.ts +++ b/clients/client-batch/src/commands/UpdateSchedulingPolicyCommand.ts @@ -71,6 +71,7 @@ export interface UpdateSchedulingPolicyCommandOutput extends UpdateSchedulingPol * @throws {@link BatchServiceException} *

Base exception class for all service exceptions from Batch service.

* + * * @public */ export class UpdateSchedulingPolicyCommand extends $Command diff --git a/clients/client-bcm-data-exports/src/commands/CreateExportCommand.ts b/clients/client-bcm-data-exports/src/commands/CreateExportCommand.ts index d4978aa7f43d6..bcda474cf2acf 100644 --- a/clients/client-bcm-data-exports/src/commands/CreateExportCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/CreateExportCommand.ts @@ -120,6 +120,7 @@ export interface CreateExportCommandOutput extends CreateExportResponse, __Metad * @throws {@link BCMDataExportsServiceException} *

Base exception class for all service exceptions from BCMDataExports service.

* + * * @public */ export class CreateExportCommand extends $Command diff --git a/clients/client-bcm-data-exports/src/commands/DeleteExportCommand.ts b/clients/client-bcm-data-exports/src/commands/DeleteExportCommand.ts index 124267e7e0222..a6553f02a864f 100644 --- a/clients/client-bcm-data-exports/src/commands/DeleteExportCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/DeleteExportCommand.ts @@ -69,6 +69,7 @@ export interface DeleteExportCommandOutput extends DeleteExportResponse, __Metad * @throws {@link BCMDataExportsServiceException} *

Base exception class for all service exceptions from BCMDataExports service.

* + * * @public */ export class DeleteExportCommand extends $Command diff --git a/clients/client-bcm-data-exports/src/commands/GetExecutionCommand.ts b/clients/client-bcm-data-exports/src/commands/GetExecutionCommand.ts index 3dd78e0ea8742..fa6be87688dec 100644 --- a/clients/client-bcm-data-exports/src/commands/GetExecutionCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/GetExecutionCommand.ts @@ -106,6 +106,7 @@ export interface GetExecutionCommandOutput extends GetExecutionResponse, __Metad * @throws {@link BCMDataExportsServiceException} *

Base exception class for all service exceptions from BCMDataExports service.

* + * * @public */ export class GetExecutionCommand extends $Command diff --git a/clients/client-bcm-data-exports/src/commands/GetExportCommand.ts b/clients/client-bcm-data-exports/src/commands/GetExportCommand.ts index 0ff1412d55f4b..a477328e0708c 100644 --- a/clients/client-bcm-data-exports/src/commands/GetExportCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/GetExportCommand.ts @@ -104,6 +104,7 @@ export interface GetExportCommandOutput extends GetExportResponse, __MetadataBea * @throws {@link BCMDataExportsServiceException} *

Base exception class for all service exceptions from BCMDataExports service.

* + * * @public */ export class GetExportCommand extends $Command diff --git a/clients/client-bcm-data-exports/src/commands/GetTableCommand.ts b/clients/client-bcm-data-exports/src/commands/GetTableCommand.ts index 382b01bf2c975..6149aa7073913 100644 --- a/clients/client-bcm-data-exports/src/commands/GetTableCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/GetTableCommand.ts @@ -81,6 +81,7 @@ export interface GetTableCommandOutput extends GetTableResponse, __MetadataBeare * @throws {@link BCMDataExportsServiceException} *

Base exception class for all service exceptions from BCMDataExports service.

* + * * @public */ export class GetTableCommand extends $Command diff --git a/clients/client-bcm-data-exports/src/commands/ListExecutionsCommand.ts b/clients/client-bcm-data-exports/src/commands/ListExecutionsCommand.ts index fda08c10211f8..2cea2d9920ce9 100644 --- a/clients/client-bcm-data-exports/src/commands/ListExecutionsCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/ListExecutionsCommand.ts @@ -83,6 +83,7 @@ export interface ListExecutionsCommandOutput extends ListExecutionsResponse, __M * @throws {@link BCMDataExportsServiceException} *

Base exception class for all service exceptions from BCMDataExports service.

* + * * @public */ export class ListExecutionsCommand extends $Command diff --git a/clients/client-bcm-data-exports/src/commands/ListExportsCommand.ts b/clients/client-bcm-data-exports/src/commands/ListExportsCommand.ts index b0bf690ee396a..a99d586827f9f 100644 --- a/clients/client-bcm-data-exports/src/commands/ListExportsCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/ListExportsCommand.ts @@ -80,6 +80,7 @@ export interface ListExportsCommandOutput extends ListExportsResponse, __Metadat * @throws {@link BCMDataExportsServiceException} *

Base exception class for all service exceptions from BCMDataExports service.

* + * * @public */ export class ListExportsCommand extends $Command diff --git a/clients/client-bcm-data-exports/src/commands/ListTablesCommand.ts b/clients/client-bcm-data-exports/src/commands/ListTablesCommand.ts index cbbe8f4822e94..6a51ae994dfc7 100644 --- a/clients/client-bcm-data-exports/src/commands/ListTablesCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/ListTablesCommand.ts @@ -83,6 +83,7 @@ export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataB * @throws {@link BCMDataExportsServiceException} *

Base exception class for all service exceptions from BCMDataExports service.

* + * * @public */ export class ListTablesCommand extends $Command diff --git a/clients/client-bcm-data-exports/src/commands/ListTagsForResourceCommand.ts b/clients/client-bcm-data-exports/src/commands/ListTagsForResourceCommand.ts index fdd003564657d..fc6e10b171903 100644 --- a/clients/client-bcm-data-exports/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/ListTagsForResourceCommand.ts @@ -77,6 +77,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link BCMDataExportsServiceException} *

Base exception class for all service exceptions from BCMDataExports service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-bcm-data-exports/src/commands/TagResourceCommand.ts b/clients/client-bcm-data-exports/src/commands/TagResourceCommand.ts index fe4e13f288c6b..d082b4a44e128 100644 --- a/clients/client-bcm-data-exports/src/commands/TagResourceCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/TagResourceCommand.ts @@ -73,6 +73,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link BCMDataExportsServiceException} *

Base exception class for all service exceptions from BCMDataExports service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-bcm-data-exports/src/commands/UntagResourceCommand.ts b/clients/client-bcm-data-exports/src/commands/UntagResourceCommand.ts index f132a22196101..d567c00b4b17a 100644 --- a/clients/client-bcm-data-exports/src/commands/UntagResourceCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/UntagResourceCommand.ts @@ -70,6 +70,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link BCMDataExportsServiceException} *

Base exception class for all service exceptions from BCMDataExports service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-bcm-data-exports/src/commands/UpdateExportCommand.ts b/clients/client-bcm-data-exports/src/commands/UpdateExportCommand.ts index 9f1f6717bcbfd..7a976d5c3d211 100644 --- a/clients/client-bcm-data-exports/src/commands/UpdateExportCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/UpdateExportCommand.ts @@ -99,6 +99,7 @@ export interface UpdateExportCommandOutput extends UpdateExportResponse, __Metad * @throws {@link BCMDataExportsServiceException} *

Base exception class for all service exceptions from BCMDataExports service.

* + * * @public */ export class UpdateExportCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioCommitmentModificationCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioCommitmentModificationCommand.ts index c9df28e7e5286..1edea93e7c0cd 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioCommitmentModificationCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioCommitmentModificationCommand.ts @@ -163,6 +163,7 @@ export interface BatchCreateBillScenarioCommitmentModificationCommandOutput * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class BatchCreateBillScenarioCommitmentModificationCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioUsageModificationCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioUsageModificationCommand.ts index c78c7d03ef5ce..ea1a8fb3e09da 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioUsageModificationCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioUsageModificationCommand.ts @@ -286,6 +286,7 @@ export interface BatchCreateBillScenarioUsageModificationCommandOutput * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class BatchCreateBillScenarioUsageModificationCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchCreateWorkloadEstimateUsageCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchCreateWorkloadEstimateUsageCommand.ts index c038f70a1c7b9..fc6160867322f 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchCreateWorkloadEstimateUsageCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchCreateWorkloadEstimateUsageCommand.ts @@ -275,6 +275,7 @@ export interface BatchCreateWorkloadEstimateUsageCommandOutput * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class BatchCreateWorkloadEstimateUsageCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioCommitmentModificationCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioCommitmentModificationCommand.ts index c84110dd234e7..c5d08dca3546d 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioCommitmentModificationCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioCommitmentModificationCommand.ts @@ -123,6 +123,7 @@ export interface BatchDeleteBillScenarioCommitmentModificationCommandOutput * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class BatchDeleteBillScenarioCommitmentModificationCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioUsageModificationCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioUsageModificationCommand.ts index f025460bca829..134b42ab4d120 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioUsageModificationCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioUsageModificationCommand.ts @@ -126,6 +126,7 @@ export interface BatchDeleteBillScenarioUsageModificationCommandOutput * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class BatchDeleteBillScenarioUsageModificationCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteWorkloadEstimateUsageCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteWorkloadEstimateUsageCommand.ts index baf5707bd1650..ab8320dee81e1 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteWorkloadEstimateUsageCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteWorkloadEstimateUsageCommand.ts @@ -117,6 +117,7 @@ export interface BatchDeleteWorkloadEstimateUsageCommandOutput * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class BatchDeleteWorkloadEstimateUsageCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioCommitmentModificationCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioCommitmentModificationCommand.ts index f1148dabc57a1..d235ec4bd957e 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioCommitmentModificationCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioCommitmentModificationCommand.ts @@ -144,6 +144,7 @@ export interface BatchUpdateBillScenarioCommitmentModificationCommandOutput * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class BatchUpdateBillScenarioCommitmentModificationCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioUsageModificationCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioUsageModificationCommand.ts index 77b043bf45b3a..015d1d1ab55ce 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioUsageModificationCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioUsageModificationCommand.ts @@ -215,6 +215,7 @@ export interface BatchUpdateBillScenarioUsageModificationCommandOutput * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class BatchUpdateBillScenarioUsageModificationCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateWorkloadEstimateUsageCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateWorkloadEstimateUsageCommand.ts index 1b30f376d75d6..41122f85ce23b 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateWorkloadEstimateUsageCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateWorkloadEstimateUsageCommand.ts @@ -200,6 +200,7 @@ export interface BatchUpdateWorkloadEstimateUsageCommandOutput * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class BatchUpdateWorkloadEstimateUsageCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/CreateBillEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/CreateBillEstimateCommand.ts index ef2763ddea3cf..efd8c4779a4f1 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/CreateBillEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/CreateBillEstimateCommand.ts @@ -134,6 +134,7 @@ export interface CreateBillEstimateCommandOutput extends CreateBillEstimateRespo * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class CreateBillEstimateCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/CreateBillScenarioCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/CreateBillScenarioCommand.ts index d83e11add2ab3..f738c5c3d147b 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/CreateBillScenarioCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/CreateBillScenarioCommand.ts @@ -109,6 +109,7 @@ export interface CreateBillScenarioCommandOutput extends CreateBillScenarioRespo * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class CreateBillScenarioCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/CreateWorkloadEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/CreateWorkloadEstimateCommand.ts index 05f30d1369260..1625174d96e70 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/CreateWorkloadEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/CreateWorkloadEstimateCommand.ts @@ -110,6 +110,7 @@ export interface CreateWorkloadEstimateCommandOutput extends CreateWorkloadEstim * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class CreateWorkloadEstimateCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/DeleteBillEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/DeleteBillEstimateCommand.ts index fb1681df18e85..cb8c40be2dc82 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/DeleteBillEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/DeleteBillEstimateCommand.ts @@ -89,6 +89,7 @@ export interface DeleteBillEstimateCommandOutput extends DeleteBillEstimateRespo * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class DeleteBillEstimateCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/DeleteBillScenarioCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/DeleteBillScenarioCommand.ts index 7426634be3885..6c4ebcd09ba26 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/DeleteBillScenarioCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/DeleteBillScenarioCommand.ts @@ -89,6 +89,7 @@ export interface DeleteBillScenarioCommandOutput extends DeleteBillScenarioRespo * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class DeleteBillScenarioCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/DeleteWorkloadEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/DeleteWorkloadEstimateCommand.ts index c32cd29831049..ee66939aec6f7 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/DeleteWorkloadEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/DeleteWorkloadEstimateCommand.ts @@ -84,6 +84,7 @@ export interface DeleteWorkloadEstimateCommandOutput extends DeleteWorkloadEstim * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class DeleteWorkloadEstimateCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/GetBillEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/GetBillEstimateCommand.ts index e07e7b719dd2a..d417a0123975e 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/GetBillEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/GetBillEstimateCommand.ts @@ -124,6 +124,7 @@ export interface GetBillEstimateCommandOutput extends GetBillEstimateResponse, _ * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class GetBillEstimateCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/GetBillScenarioCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/GetBillScenarioCommand.ts index bd3ef755bffa8..f20a6f97ac12c 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/GetBillScenarioCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/GetBillScenarioCommand.ts @@ -100,6 +100,7 @@ export interface GetBillScenarioCommandOutput extends GetBillScenarioResponse, _ * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class GetBillScenarioCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/GetPreferencesCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/GetPreferencesCommand.ts index 5362cb303d020..5e2929a5205ab 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/GetPreferencesCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/GetPreferencesCommand.ts @@ -89,6 +89,7 @@ export interface GetPreferencesCommandOutput extends GetPreferencesResponse, __M * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class GetPreferencesCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/GetWorkloadEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/GetWorkloadEstimateCommand.ts index 4bc783eca29d7..51910721b199b 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/GetWorkloadEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/GetWorkloadEstimateCommand.ts @@ -100,6 +100,7 @@ export interface GetWorkloadEstimateCommandOutput extends GetWorkloadEstimateRes * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class GetWorkloadEstimateCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateCommitmentsCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateCommitmentsCommand.ts index 0a035bc7ed709..46e1e23a14982 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateCommitmentsCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateCommitmentsCommand.ts @@ -114,6 +114,7 @@ export interface ListBillEstimateCommitmentsCommandOutput * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class ListBillEstimateCommitmentsCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputCommitmentModificationsCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputCommitmentModificationsCommand.ts index bc94706d4b680..66dc6e97dd235 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputCommitmentModificationsCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputCommitmentModificationsCommand.ts @@ -125,6 +125,7 @@ export interface ListBillEstimateInputCommitmentModificationsCommandOutput * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class ListBillEstimateInputCommitmentModificationsCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputUsageModificationsCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputUsageModificationsCommand.ts index a13c22e1d128f..17bd448f5b291 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputUsageModificationsCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputUsageModificationsCommand.ts @@ -194,6 +194,7 @@ export interface ListBillEstimateInputUsageModificationsCommandOutput * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class ListBillEstimateInputUsageModificationsCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateLineItemsCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateLineItemsCommand.ts index 1bcce527e1034..adf1a616e6a8d 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateLineItemsCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateLineItemsCommand.ts @@ -135,6 +135,7 @@ export interface ListBillEstimateLineItemsCommandOutput extends ListBillEstimate * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class ListBillEstimateLineItemsCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimatesCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimatesCommand.ts index 86276cef11a28..8241db4ae67ff 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimatesCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimatesCommand.ts @@ -117,6 +117,7 @@ export interface ListBillEstimatesCommandOutput extends ListBillEstimatesRespons * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class ListBillEstimatesCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioCommitmentModificationsCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioCommitmentModificationsCommand.ts index 338d081b2fa63..410a770e71af6 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioCommitmentModificationsCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioCommitmentModificationsCommand.ts @@ -125,6 +125,7 @@ export interface ListBillScenarioCommitmentModificationsCommandOutput * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class ListBillScenarioCommitmentModificationsCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioUsageModificationsCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioUsageModificationsCommand.ts index 744b48b50e2f4..49401fc792cd6 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioUsageModificationsCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioUsageModificationsCommand.ts @@ -193,6 +193,7 @@ export interface ListBillScenarioUsageModificationsCommandOutput * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class ListBillScenarioUsageModificationsCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillScenariosCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillScenariosCommand.ts index 16ee224a097b4..f68c1381ef557 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillScenariosCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillScenariosCommand.ts @@ -118,6 +118,7 @@ export interface ListBillScenariosCommandOutput extends ListBillScenariosRespons * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class ListBillScenariosCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListTagsForResourceCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListTagsForResourceCommand.ts index a482a830fc944..14e7a1cbcf66e 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListTagsForResourceCommand.ts @@ -88,6 +88,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimateUsageCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimateUsageCommand.ts index db1f1463e14b2..e7b9a9d2c3698 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimateUsageCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimateUsageCommand.ts @@ -184,6 +184,7 @@ export interface ListWorkloadEstimateUsageCommandOutput extends ListWorkloadEsti * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class ListWorkloadEstimateUsageCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimatesCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimatesCommand.ts index a58ba5aeeb35d..bb208395fe3f1 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimatesCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimatesCommand.ts @@ -118,6 +118,7 @@ export interface ListWorkloadEstimatesCommandOutput extends ListWorkloadEstimate * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class ListWorkloadEstimatesCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/TagResourceCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/TagResourceCommand.ts index 0de5fdc5dd98a..c51531cfad699 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/TagResourceCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/TagResourceCommand.ts @@ -92,6 +92,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/UntagResourceCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/UntagResourceCommand.ts index 77df352e5c9b0..44e6e66bce182 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/UntagResourceCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/UntagResourceCommand.ts @@ -87,6 +87,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/UpdateBillEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/UpdateBillEstimateCommand.ts index e4377401f9403..2612b45e14e10 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/UpdateBillEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/UpdateBillEstimateCommand.ts @@ -131,6 +131,7 @@ export interface UpdateBillEstimateCommandOutput extends UpdateBillEstimateRespo * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class UpdateBillEstimateCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/UpdateBillScenarioCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/UpdateBillScenarioCommand.ts index fd1ca5865fef8..d0e691d757bcb 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/UpdateBillScenarioCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/UpdateBillScenarioCommand.ts @@ -107,6 +107,7 @@ export interface UpdateBillScenarioCommandOutput extends UpdateBillScenarioRespo * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class UpdateBillScenarioCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/UpdatePreferencesCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/UpdatePreferencesCommand.ts index 790832ac5af21..a389066d36ce2 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/UpdatePreferencesCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/UpdatePreferencesCommand.ts @@ -101,6 +101,7 @@ export interface UpdatePreferencesCommandOutput extends UpdatePreferencesRespons * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class UpdatePreferencesCommand extends $Command diff --git a/clients/client-bcm-pricing-calculator/src/commands/UpdateWorkloadEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/UpdateWorkloadEstimateCommand.ts index e37261742ca9c..51902afd12335 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/UpdateWorkloadEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/UpdateWorkloadEstimateCommand.ts @@ -107,6 +107,7 @@ export interface UpdateWorkloadEstimateCommandOutput extends UpdateWorkloadEstim * @throws {@link BCMPricingCalculatorServiceException} *

Base exception class for all service exceptions from BCMPricingCalculator service.

* + * * @public */ export class UpdateWorkloadEstimateCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/CreateInvocationCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/CreateInvocationCommand.ts index eea6367425f85..4b398e9279929 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/CreateInvocationCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/CreateInvocationCommand.ts @@ -103,6 +103,7 @@ export interface CreateInvocationCommandOutput extends CreateInvocationResponse, * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class CreateInvocationCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/CreateSessionCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/CreateSessionCommand.ts index f64685ba56be8..1fc99f028bbb4 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/CreateSessionCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/CreateSessionCommand.ts @@ -121,6 +121,7 @@ export interface CreateSessionCommandOutput extends CreateSessionResponse, __Met * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class CreateSessionCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/DeleteAgentMemoryCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/DeleteAgentMemoryCommand.ts index ff78684580bf6..b580d4252a5bf 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/DeleteAgentMemoryCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/DeleteAgentMemoryCommand.ts @@ -87,6 +87,7 @@ export interface DeleteAgentMemoryCommandOutput extends DeleteAgentMemoryRespons * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class DeleteAgentMemoryCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/DeleteSessionCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/DeleteSessionCommand.ts index d72bd2c7d75a7..67d4955e6276f 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/DeleteSessionCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/DeleteSessionCommand.ts @@ -77,6 +77,7 @@ export interface DeleteSessionCommandOutput extends DeleteSessionResponse, __Met * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class DeleteSessionCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/EndSessionCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/EndSessionCommand.ts index 28f267c7bb6b2..9a244a1192a65 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/EndSessionCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/EndSessionCommand.ts @@ -81,6 +81,7 @@ export interface EndSessionCommandOutput extends EndSessionResponse, __MetadataB * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class EndSessionCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/GenerateQueryCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/GenerateQueryCommand.ts index bcc98d257c6e4..d6eb559827810 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/GenerateQueryCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/GenerateQueryCommand.ts @@ -108,6 +108,7 @@ export interface GenerateQueryCommandOutput extends GenerateQueryResponse, __Met * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class GenerateQueryCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/GetAgentMemoryCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/GetAgentMemoryCommand.ts index 41fe396d0b3b6..938a912e8929b 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/GetAgentMemoryCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/GetAgentMemoryCommand.ts @@ -102,6 +102,7 @@ export interface GetAgentMemoryCommandOutput extends GetAgentMemoryResponse, __M * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class GetAgentMemoryCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/GetInvocationStepCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/GetInvocationStepCommand.ts index 3396e24e10300..d878ec7ce5743 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/GetInvocationStepCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/GetInvocationStepCommand.ts @@ -101,6 +101,7 @@ export interface GetInvocationStepCommandOutput extends GetInvocationStepRespons * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class GetInvocationStepCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/GetSessionCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/GetSessionCommand.ts index 3646b49f99129..5f2af1b411548 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/GetSessionCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/GetSessionCommand.ts @@ -82,6 +82,7 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class GetSessionCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/InvokeAgentCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/InvokeAgentCommand.ts index 6b2ccedc103fc..3019925e25360 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/InvokeAgentCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/InvokeAgentCommand.ts @@ -1229,6 +1229,7 @@ export interface InvokeAgentCommandOutput extends InvokeAgentResponse, __Metadat * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class InvokeAgentCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/InvokeFlowCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/InvokeFlowCommand.ts index 6481e3798927f..2dd5c13c4bb76 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/InvokeFlowCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/InvokeFlowCommand.ts @@ -198,6 +198,7 @@ export interface InvokeFlowCommandOutput extends InvokeFlowResponse, __MetadataB * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class InvokeFlowCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/InvokeInlineAgentCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/InvokeInlineAgentCommand.ts index 8b2e10b8c2551..96cc8f8465bfb 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/InvokeInlineAgentCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/InvokeInlineAgentCommand.ts @@ -1386,6 +1386,7 @@ export interface InvokeInlineAgentCommandOutput extends InvokeInlineAgentRespons * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class InvokeInlineAgentCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/ListInvocationStepsCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/ListInvocationStepsCommand.ts index 59ee687996207..8bad56f3109c2 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/ListInvocationStepsCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/ListInvocationStepsCommand.ts @@ -85,6 +85,7 @@ export interface ListInvocationStepsCommandOutput extends ListInvocationStepsRes * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class ListInvocationStepsCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/ListInvocationsCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/ListInvocationsCommand.ts index f1d4c11d8d4dd..16a6534cc4969 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/ListInvocationsCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/ListInvocationsCommand.ts @@ -83,6 +83,7 @@ export interface ListInvocationsCommandOutput extends ListInvocationsResponse, _ * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class ListInvocationsCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/ListSessionsCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/ListSessionsCommand.ts index 4e0142762ecaa..cd6fab0a5e0e7 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/ListSessionsCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/ListSessionsCommand.ts @@ -81,6 +81,7 @@ export interface ListSessionsCommandOutput extends ListSessionsResponse, __Metad * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class ListSessionsCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/ListTagsForResourceCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/ListTagsForResourceCommand.ts index f3f151a52d56d..9f3b9351ebb47 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/OptimizePromptCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/OptimizePromptCommand.ts index 471dbfd7058ec..70e76a62b81ad 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/OptimizePromptCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/OptimizePromptCommand.ts @@ -119,6 +119,7 @@ export interface OptimizePromptCommandOutput extends OptimizePromptResponse, __M * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class OptimizePromptCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/PutInvocationStepCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/PutInvocationStepCommand.ts index 601bbf01cda37..cc43eb971feea 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/PutInvocationStepCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/PutInvocationStepCommand.ts @@ -126,6 +126,7 @@ export interface PutInvocationStepCommandOutput extends PutInvocationStepRespons * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class PutInvocationStepCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/RerankCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/RerankCommand.ts index 395f21ffcd6fa..56f19faeca2d3 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/RerankCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/RerankCommand.ts @@ -136,6 +136,7 @@ export interface RerankCommandOutput extends RerankResponse, __MetadataBearer {} * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class RerankCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateCommand.ts index 833734bff5b37..52d84598a7095 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateCommand.ts @@ -348,6 +348,7 @@ export interface RetrieveAndGenerateCommandOutput extends RetrieveAndGenerateRes * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class RetrieveAndGenerateCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateStreamCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateStreamCommand.ts index 2cec6a6da4cfd..8f37ef893f8ac 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateStreamCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateStreamCommand.ts @@ -447,6 +447,7 @@ export interface RetrieveAndGenerateStreamCommandOutput extends RetrieveAndGener * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class RetrieveAndGenerateStreamCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/RetrieveCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/RetrieveCommand.ts index e3754bdfd8df5..922739b5e6fd2 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/RetrieveCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/RetrieveCommand.ts @@ -238,6 +238,7 @@ export interface RetrieveCommandOutput extends RetrieveResponse, __MetadataBeare * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class RetrieveCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/TagResourceCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/TagResourceCommand.ts index 22d21e1de6f22..fac2ead79a170 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/TagResourceCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/UntagResourceCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/UntagResourceCommand.ts index c42390585ba00..9cc7eec9e713d 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/UntagResourceCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/UntagResourceCommand.ts @@ -75,6 +75,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-bedrock-agent-runtime/src/commands/UpdateSessionCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/UpdateSessionCommand.ts index 8ba141c8b62fa..beb50a0a5df29 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/UpdateSessionCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/UpdateSessionCommand.ts @@ -84,6 +84,7 @@ export interface UpdateSessionCommandOutput extends UpdateSessionResponse, __Met * @throws {@link BedrockAgentRuntimeServiceException} *

Base exception class for all service exceptions from BedrockAgentRuntime service.

* + * * @public */ export class UpdateSessionCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/AssociateAgentCollaboratorCommand.ts b/clients/client-bedrock-agent/src/commands/AssociateAgentCollaboratorCommand.ts index 9591bbf0962ff..961088c610bb9 100644 --- a/clients/client-bedrock-agent/src/commands/AssociateAgentCollaboratorCommand.ts +++ b/clients/client-bedrock-agent/src/commands/AssociateAgentCollaboratorCommand.ts @@ -102,6 +102,7 @@ export interface AssociateAgentCollaboratorCommandOutput extends AssociateAgentC * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class AssociateAgentCollaboratorCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/AssociateAgentKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/AssociateAgentKnowledgeBaseCommand.ts index ac178f64c42bc..b873a1974e2aa 100644 --- a/clients/client-bedrock-agent/src/commands/AssociateAgentKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/AssociateAgentKnowledgeBaseCommand.ts @@ -93,6 +93,7 @@ export interface AssociateAgentKnowledgeBaseCommandOutput * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class AssociateAgentKnowledgeBaseCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/CreateAgentActionGroupCommand.ts b/clients/client-bedrock-agent/src/commands/CreateAgentActionGroupCommand.ts index dea2e11a94a0b..3095284f00164 100644 --- a/clients/client-bedrock-agent/src/commands/CreateAgentActionGroupCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateAgentActionGroupCommand.ts @@ -163,6 +163,7 @@ export interface CreateAgentActionGroupCommandOutput extends CreateAgentActionGr * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class CreateAgentActionGroupCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/CreateAgentAliasCommand.ts b/clients/client-bedrock-agent/src/commands/CreateAgentAliasCommand.ts index b3d140da71556..e2a819ff34a05 100644 --- a/clients/client-bedrock-agent/src/commands/CreateAgentAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateAgentAliasCommand.ts @@ -119,6 +119,7 @@ export interface CreateAgentAliasCommandOutput extends CreateAgentAliasResponse, * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class CreateAgentAliasCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/CreateAgentCommand.ts b/clients/client-bedrock-agent/src/commands/CreateAgentCommand.ts index aae89f0568729..22661bd5291db 100644 --- a/clients/client-bedrock-agent/src/commands/CreateAgentCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateAgentCommand.ts @@ -227,6 +227,7 @@ export interface CreateAgentCommandOutput extends CreateAgentResponse, __Metadat * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class CreateAgentCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/CreateDataSourceCommand.ts b/clients/client-bedrock-agent/src/commands/CreateDataSourceCommand.ts index e7fde97fbb710..6641bb5c51d79 100644 --- a/clients/client-bedrock-agent/src/commands/CreateDataSourceCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateDataSourceCommand.ts @@ -450,6 +450,7 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse, * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class CreateDataSourceCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/CreateFlowAliasCommand.ts b/clients/client-bedrock-agent/src/commands/CreateFlowAliasCommand.ts index 654205a4b39c8..22ca372994aa1 100644 --- a/clients/client-bedrock-agent/src/commands/CreateFlowAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateFlowAliasCommand.ts @@ -98,6 +98,7 @@ export interface CreateFlowAliasCommandOutput extends CreateFlowAliasResponse, _ * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class CreateFlowAliasCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/CreateFlowCommand.ts b/clients/client-bedrock-agent/src/commands/CreateFlowCommand.ts index 6b64946c782d4..65c6788fbf603 100644 --- a/clients/client-bedrock-agent/src/commands/CreateFlowCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateFlowCommand.ts @@ -434,6 +434,7 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class CreateFlowCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/CreateFlowVersionCommand.ts b/clients/client-bedrock-agent/src/commands/CreateFlowVersionCommand.ts index fb53ef4cbb70f..0f454e57edbbb 100644 --- a/clients/client-bedrock-agent/src/commands/CreateFlowVersionCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateFlowVersionCommand.ts @@ -260,6 +260,7 @@ export interface CreateFlowVersionCommandOutput extends CreateFlowVersionRespons * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class CreateFlowVersionCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/CreateKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/CreateKnowledgeBaseCommand.ts index c51804f8fb996..14d33858fbd19 100644 --- a/clients/client-bedrock-agent/src/commands/CreateKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateKnowledgeBaseCommand.ts @@ -445,6 +445,7 @@ export interface CreateKnowledgeBaseCommandOutput extends CreateKnowledgeBaseRes * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class CreateKnowledgeBaseCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/CreatePromptCommand.ts b/clients/client-bedrock-agent/src/commands/CreatePromptCommand.ts index af0ce3b436146..a948c4968b00b 100644 --- a/clients/client-bedrock-agent/src/commands/CreatePromptCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreatePromptCommand.ts @@ -271,6 +271,7 @@ export interface CreatePromptCommandOutput extends CreatePromptResponse, __Metad * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class CreatePromptCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/CreatePromptVersionCommand.ts b/clients/client-bedrock-agent/src/commands/CreatePromptVersionCommand.ts index c4dfe97d3a599..b9f8c3b93a5b9 100644 --- a/clients/client-bedrock-agent/src/commands/CreatePromptVersionCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreatePromptVersionCommand.ts @@ -182,6 +182,7 @@ export interface CreatePromptVersionCommandOutput extends CreatePromptVersionRes * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class CreatePromptVersionCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/DeleteAgentActionGroupCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteAgentActionGroupCommand.ts index 74df3f2665c76..d2d1aacef60ae 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteAgentActionGroupCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteAgentActionGroupCommand.ts @@ -74,6 +74,7 @@ export interface DeleteAgentActionGroupCommandOutput extends DeleteAgentActionGr * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class DeleteAgentActionGroupCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/DeleteAgentAliasCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteAgentAliasCommand.ts index 3642046686266..f02f24fb38afb 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteAgentAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteAgentAliasCommand.ts @@ -73,6 +73,7 @@ export interface DeleteAgentAliasCommandOutput extends DeleteAgentAliasResponse, * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class DeleteAgentAliasCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/DeleteAgentCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteAgentCommand.ts index 3ff8da5cf771b..ff42cbd1fde31 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteAgentCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteAgentCommand.ts @@ -75,6 +75,7 @@ export interface DeleteAgentCommandOutput extends DeleteAgentResponse, __Metadat * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class DeleteAgentCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/DeleteAgentVersionCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteAgentVersionCommand.ts index 7ba57ec73f89b..afa81314b9740 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteAgentVersionCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteAgentVersionCommand.ts @@ -77,6 +77,7 @@ export interface DeleteAgentVersionCommandOutput extends DeleteAgentVersionRespo * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class DeleteAgentVersionCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/DeleteDataSourceCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteDataSourceCommand.ts index 2e42b123153ed..4f3501b805f59 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteDataSourceCommand.ts @@ -76,6 +76,7 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceResponse, * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class DeleteDataSourceCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/DeleteFlowAliasCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteFlowAliasCommand.ts index 9d3a5050572f0..8560cae717f33 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteFlowAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteFlowAliasCommand.ts @@ -75,6 +75,7 @@ export interface DeleteFlowAliasCommandOutput extends DeleteFlowAliasResponse, _ * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class DeleteFlowAliasCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/DeleteFlowCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteFlowCommand.ts index 36dfe2888b2ff..3b2ce4d0f9424 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteFlowCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteFlowCommand.ts @@ -74,6 +74,7 @@ export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataB * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class DeleteFlowCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/DeleteFlowVersionCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteFlowVersionCommand.ts index 76489f470d150..4ce121a42647a 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteFlowVersionCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteFlowVersionCommand.ts @@ -76,6 +76,7 @@ export interface DeleteFlowVersionCommandOutput extends DeleteFlowVersionRespons * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class DeleteFlowVersionCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseCommand.ts index a592c19fee71e..537fb8add0aec 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseCommand.ts @@ -74,6 +74,7 @@ export interface DeleteKnowledgeBaseCommandOutput extends DeleteKnowledgeBaseRes * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class DeleteKnowledgeBaseCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseDocumentsCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseDocumentsCommand.ts index fa73deac1f73d..6ab0056ad8972 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseDocumentsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseDocumentsCommand.ts @@ -108,6 +108,7 @@ export interface DeleteKnowledgeBaseDocumentsCommandOutput * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class DeleteKnowledgeBaseDocumentsCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/DeletePromptCommand.ts b/clients/client-bedrock-agent/src/commands/DeletePromptCommand.ts index 06a942a7c0076..1ce7f1c146e65 100644 --- a/clients/client-bedrock-agent/src/commands/DeletePromptCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeletePromptCommand.ts @@ -75,6 +75,7 @@ export interface DeletePromptCommandOutput extends DeletePromptResponse, __Metad * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class DeletePromptCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/DisassociateAgentCollaboratorCommand.ts b/clients/client-bedrock-agent/src/commands/DisassociateAgentCollaboratorCommand.ts index 66fa132f7d6cf..a03a2d9e5bd75 100644 --- a/clients/client-bedrock-agent/src/commands/DisassociateAgentCollaboratorCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DisassociateAgentCollaboratorCommand.ts @@ -78,6 +78,7 @@ export interface DisassociateAgentCollaboratorCommandOutput * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class DisassociateAgentCollaboratorCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/DisassociateAgentKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/DisassociateAgentKnowledgeBaseCommand.ts index ab868d843c900..70b452858fc03 100644 --- a/clients/client-bedrock-agent/src/commands/DisassociateAgentKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DisassociateAgentKnowledgeBaseCommand.ts @@ -78,6 +78,7 @@ export interface DisassociateAgentKnowledgeBaseCommandOutput * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class DisassociateAgentKnowledgeBaseCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/GetAgentActionGroupCommand.ts b/clients/client-bedrock-agent/src/commands/GetAgentActionGroupCommand.ts index dc09cb6ab3da1..acbee021c622c 100644 --- a/clients/client-bedrock-agent/src/commands/GetAgentActionGroupCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetAgentActionGroupCommand.ts @@ -117,6 +117,7 @@ export interface GetAgentActionGroupCommandOutput extends GetAgentActionGroupRes * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class GetAgentActionGroupCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/GetAgentAliasCommand.ts b/clients/client-bedrock-agent/src/commands/GetAgentAliasCommand.ts index b3473c5557d49..60f9176a587e6 100644 --- a/clients/client-bedrock-agent/src/commands/GetAgentAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetAgentAliasCommand.ts @@ -102,6 +102,7 @@ export interface GetAgentAliasCommandOutput extends GetAgentAliasResponse, __Met * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class GetAgentAliasCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/GetAgentCollaboratorCommand.ts b/clients/client-bedrock-agent/src/commands/GetAgentCollaboratorCommand.ts index 704eef3b16a68..9ca335cdd1171 100644 --- a/clients/client-bedrock-agent/src/commands/GetAgentCollaboratorCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetAgentCollaboratorCommand.ts @@ -89,6 +89,7 @@ export interface GetAgentCollaboratorCommandOutput extends GetAgentCollaboratorR * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class GetAgentCollaboratorCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/GetAgentCommand.ts b/clients/client-bedrock-agent/src/commands/GetAgentCommand.ts index ac8d6f20024d2..a1fcc31ef5bce 100644 --- a/clients/client-bedrock-agent/src/commands/GetAgentCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetAgentCommand.ts @@ -135,6 +135,7 @@ export interface GetAgentCommandOutput extends GetAgentResponse, __MetadataBeare * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class GetAgentCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/GetAgentKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/GetAgentKnowledgeBaseCommand.ts index de2dcfe19c001..b5dd360ef2a7f 100644 --- a/clients/client-bedrock-agent/src/commands/GetAgentKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetAgentKnowledgeBaseCommand.ts @@ -80,6 +80,7 @@ export interface GetAgentKnowledgeBaseCommandOutput extends GetAgentKnowledgeBas * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class GetAgentKnowledgeBaseCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/GetAgentVersionCommand.ts b/clients/client-bedrock-agent/src/commands/GetAgentVersionCommand.ts index 4cd09d7fe2fa5..c50526e0b152b 100644 --- a/clients/client-bedrock-agent/src/commands/GetAgentVersionCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetAgentVersionCommand.ts @@ -132,6 +132,7 @@ export interface GetAgentVersionCommandOutput extends GetAgentVersionResponse, _ * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class GetAgentVersionCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/GetDataSourceCommand.ts b/clients/client-bedrock-agent/src/commands/GetDataSourceCommand.ts index 0dde6116e72a1..53b538a2d37a6 100644 --- a/clients/client-bedrock-agent/src/commands/GetDataSourceCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetDataSourceCommand.ts @@ -262,6 +262,7 @@ export interface GetDataSourceCommandOutput extends GetDataSourceResponse, __Met * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class GetDataSourceCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/GetFlowAliasCommand.ts b/clients/client-bedrock-agent/src/commands/GetFlowAliasCommand.ts index bf592fab30194..95f4487eda74d 100644 --- a/clients/client-bedrock-agent/src/commands/GetFlowAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetFlowAliasCommand.ts @@ -82,6 +82,7 @@ export interface GetFlowAliasCommandOutput extends GetFlowAliasResponse, __Metad * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class GetFlowAliasCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/GetFlowCommand.ts b/clients/client-bedrock-agent/src/commands/GetFlowCommand.ts index 144ffbf526ba0..d8bb3698607f9 100644 --- a/clients/client-bedrock-agent/src/commands/GetFlowCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetFlowCommand.ts @@ -349,6 +349,7 @@ export interface GetFlowCommandOutput extends GetFlowResponse, __MetadataBearer * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class GetFlowCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/GetFlowVersionCommand.ts b/clients/client-bedrock-agent/src/commands/GetFlowVersionCommand.ts index 0770b5806b38d..4de98c3ff677f 100644 --- a/clients/client-bedrock-agent/src/commands/GetFlowVersionCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetFlowVersionCommand.ts @@ -253,6 +253,7 @@ export interface GetFlowVersionCommandOutput extends GetFlowVersionResponse, __M * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class GetFlowVersionCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/GetIngestionJobCommand.ts b/clients/client-bedrock-agent/src/commands/GetIngestionJobCommand.ts index 6f0b5c1ecd0e2..4e4781edd938e 100644 --- a/clients/client-bedrock-agent/src/commands/GetIngestionJobCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetIngestionJobCommand.ts @@ -92,6 +92,7 @@ export interface GetIngestionJobCommandOutput extends GetIngestionJobResponse, _ * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class GetIngestionJobCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseCommand.ts index 9b692bb0cfec2..3b02f6a972dda 100644 --- a/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseCommand.ts @@ -245,6 +245,7 @@ export interface GetKnowledgeBaseCommandOutput extends GetKnowledgeBaseResponse, * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class GetKnowledgeBaseCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseDocumentsCommand.ts b/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseDocumentsCommand.ts index 17573a00f81c8..808e0acd12deb 100644 --- a/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseDocumentsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseDocumentsCommand.ts @@ -102,6 +102,7 @@ export interface GetKnowledgeBaseDocumentsCommandOutput extends GetKnowledgeBase * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class GetKnowledgeBaseDocumentsCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/GetPromptCommand.ts b/clients/client-bedrock-agent/src/commands/GetPromptCommand.ts index cafa98ad51075..f1b18b61a8e87 100644 --- a/clients/client-bedrock-agent/src/commands/GetPromptCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetPromptCommand.ts @@ -168,6 +168,7 @@ export interface GetPromptCommandOutput extends GetPromptResponse, __MetadataBea * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class GetPromptCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/IngestKnowledgeBaseDocumentsCommand.ts b/clients/client-bedrock-agent/src/commands/IngestKnowledgeBaseDocumentsCommand.ts index 926e060454392..471b1854a7936 100644 --- a/clients/client-bedrock-agent/src/commands/IngestKnowledgeBaseDocumentsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/IngestKnowledgeBaseDocumentsCommand.ts @@ -154,6 +154,7 @@ export interface IngestKnowledgeBaseDocumentsCommandOutput * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class IngestKnowledgeBaseDocumentsCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListAgentActionGroupsCommand.ts b/clients/client-bedrock-agent/src/commands/ListAgentActionGroupsCommand.ts index c8dde18cca57a..d376802bbb5ae 100644 --- a/clients/client-bedrock-agent/src/commands/ListAgentActionGroupsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListAgentActionGroupsCommand.ts @@ -82,6 +82,7 @@ export interface ListAgentActionGroupsCommandOutput extends ListAgentActionGroup * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListAgentActionGroupsCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListAgentAliasesCommand.ts b/clients/client-bedrock-agent/src/commands/ListAgentAliasesCommand.ts index 82cc386f139e0..056786f3b51b4 100644 --- a/clients/client-bedrock-agent/src/commands/ListAgentAliasesCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListAgentAliasesCommand.ts @@ -88,6 +88,7 @@ export interface ListAgentAliasesCommandOutput extends ListAgentAliasesResponse, * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListAgentAliasesCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListAgentCollaboratorsCommand.ts b/clients/client-bedrock-agent/src/commands/ListAgentCollaboratorsCommand.ts index 5196e451bfa86..6500d4c5aafa6 100644 --- a/clients/client-bedrock-agent/src/commands/ListAgentCollaboratorsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListAgentCollaboratorsCommand.ts @@ -92,6 +92,7 @@ export interface ListAgentCollaboratorsCommandOutput extends ListAgentCollaborat * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListAgentCollaboratorsCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListAgentKnowledgeBasesCommand.ts b/clients/client-bedrock-agent/src/commands/ListAgentKnowledgeBasesCommand.ts index 151f7b289560d..db3010e2243e5 100644 --- a/clients/client-bedrock-agent/src/commands/ListAgentKnowledgeBasesCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListAgentKnowledgeBasesCommand.ts @@ -81,6 +81,7 @@ export interface ListAgentKnowledgeBasesCommandOutput extends ListAgentKnowledge * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListAgentKnowledgeBasesCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListAgentVersionsCommand.ts b/clients/client-bedrock-agent/src/commands/ListAgentVersionsCommand.ts index d5dcf0c5fff9c..7eb9e66e288b9 100644 --- a/clients/client-bedrock-agent/src/commands/ListAgentVersionsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListAgentVersionsCommand.ts @@ -86,6 +86,7 @@ export interface ListAgentVersionsCommandOutput extends ListAgentVersionsRespons * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListAgentVersionsCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListAgentsCommand.ts b/clients/client-bedrock-agent/src/commands/ListAgentsCommand.ts index ca44f763f5e57..668009de35320 100644 --- a/clients/client-bedrock-agent/src/commands/ListAgentsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListAgentsCommand.ts @@ -82,6 +82,7 @@ export interface ListAgentsCommandOutput extends ListAgentsResponse, __MetadataB * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListAgentsCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListDataSourcesCommand.ts b/clients/client-bedrock-agent/src/commands/ListDataSourcesCommand.ts index f598feb722401..33c85ba11cf64 100644 --- a/clients/client-bedrock-agent/src/commands/ListDataSourcesCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListDataSourcesCommand.ts @@ -82,6 +82,7 @@ export interface ListDataSourcesCommandOutput extends ListDataSourcesResponse, _ * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListDataSourcesCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListFlowAliasesCommand.ts b/clients/client-bedrock-agent/src/commands/ListFlowAliasesCommand.ts index 14a70d21b43ca..41a1156f8a61d 100644 --- a/clients/client-bedrock-agent/src/commands/ListFlowAliasesCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListFlowAliasesCommand.ts @@ -88,6 +88,7 @@ export interface ListFlowAliasesCommandOutput extends ListFlowAliasesResponse, _ * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListFlowAliasesCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListFlowVersionsCommand.ts b/clients/client-bedrock-agent/src/commands/ListFlowVersionsCommand.ts index be806aa16c543..52e223baac66d 100644 --- a/clients/client-bedrock-agent/src/commands/ListFlowVersionsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListFlowVersionsCommand.ts @@ -81,6 +81,7 @@ export interface ListFlowVersionsCommandOutput extends ListFlowVersionsResponse, * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListFlowVersionsCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListFlowsCommand.ts b/clients/client-bedrock-agent/src/commands/ListFlowsCommand.ts index 148acac1e1bc4..dfd31678772c3 100644 --- a/clients/client-bedrock-agent/src/commands/ListFlowsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListFlowsCommand.ts @@ -80,6 +80,7 @@ export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBea * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListFlowsCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListIngestionJobsCommand.ts b/clients/client-bedrock-agent/src/commands/ListIngestionJobsCommand.ts index ea225d542c556..3e58987f0243d 100644 --- a/clients/client-bedrock-agent/src/commands/ListIngestionJobsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListIngestionJobsCommand.ts @@ -106,6 +106,7 @@ export interface ListIngestionJobsCommandOutput extends ListIngestionJobsRespons * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListIngestionJobsCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListKnowledgeBaseDocumentsCommand.ts b/clients/client-bedrock-agent/src/commands/ListKnowledgeBaseDocumentsCommand.ts index b0756aa788a16..cc08455b3445c 100644 --- a/clients/client-bedrock-agent/src/commands/ListKnowledgeBaseDocumentsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListKnowledgeBaseDocumentsCommand.ts @@ -94,6 +94,7 @@ export interface ListKnowledgeBaseDocumentsCommandOutput extends ListKnowledgeBa * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListKnowledgeBaseDocumentsCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListKnowledgeBasesCommand.ts b/clients/client-bedrock-agent/src/commands/ListKnowledgeBasesCommand.ts index c75323f807251..7ccd371beb98b 100644 --- a/clients/client-bedrock-agent/src/commands/ListKnowledgeBasesCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListKnowledgeBasesCommand.ts @@ -77,6 +77,7 @@ export interface ListKnowledgeBasesCommandOutput extends ListKnowledgeBasesRespo * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListKnowledgeBasesCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListPromptsCommand.ts b/clients/client-bedrock-agent/src/commands/ListPromptsCommand.ts index 6c8f2f189f83d..8207daf874afb 100644 --- a/clients/client-bedrock-agent/src/commands/ListPromptsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListPromptsCommand.ts @@ -83,6 +83,7 @@ export interface ListPromptsCommandOutput extends ListPromptsResponse, __Metadat * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListPromptsCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ListTagsForResourceCommand.ts b/clients/client-bedrock-agent/src/commands/ListTagsForResourceCommand.ts index 83e4f312c8366..194ab8d980c1b 100644 --- a/clients/client-bedrock-agent/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/PrepareAgentCommand.ts b/clients/client-bedrock-agent/src/commands/PrepareAgentCommand.ts index 2a8b8686ec04d..241af657c77f4 100644 --- a/clients/client-bedrock-agent/src/commands/PrepareAgentCommand.ts +++ b/clients/client-bedrock-agent/src/commands/PrepareAgentCommand.ts @@ -79,6 +79,7 @@ export interface PrepareAgentCommandOutput extends PrepareAgentResponse, __Metad * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class PrepareAgentCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/PrepareFlowCommand.ts b/clients/client-bedrock-agent/src/commands/PrepareFlowCommand.ts index 2d7eddaab185f..19a9c3a31e6ec 100644 --- a/clients/client-bedrock-agent/src/commands/PrepareFlowCommand.ts +++ b/clients/client-bedrock-agent/src/commands/PrepareFlowCommand.ts @@ -77,6 +77,7 @@ export interface PrepareFlowCommandOutput extends PrepareFlowResponse, __Metadat * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class PrepareFlowCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/StartIngestionJobCommand.ts b/clients/client-bedrock-agent/src/commands/StartIngestionJobCommand.ts index 08c8e77e317d2..a1d4ee82d1cc6 100644 --- a/clients/client-bedrock-agent/src/commands/StartIngestionJobCommand.ts +++ b/clients/client-bedrock-agent/src/commands/StartIngestionJobCommand.ts @@ -99,6 +99,7 @@ export interface StartIngestionJobCommandOutput extends StartIngestionJobRespons * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class StartIngestionJobCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/StopIngestionJobCommand.ts b/clients/client-bedrock-agent/src/commands/StopIngestionJobCommand.ts index 8400506b0898e..7b65f612341e0 100644 --- a/clients/client-bedrock-agent/src/commands/StopIngestionJobCommand.ts +++ b/clients/client-bedrock-agent/src/commands/StopIngestionJobCommand.ts @@ -95,6 +95,7 @@ export interface StopIngestionJobCommandOutput extends StopIngestionJobResponse, * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class StopIngestionJobCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/TagResourceCommand.ts b/clients/client-bedrock-agent/src/commands/TagResourceCommand.ts index 6d817f3933107..2a7eed2f4fe80 100644 --- a/clients/client-bedrock-agent/src/commands/TagResourceCommand.ts +++ b/clients/client-bedrock-agent/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/UntagResourceCommand.ts b/clients/client-bedrock-agent/src/commands/UntagResourceCommand.ts index 8644c05083ea6..d579c91eea133 100644 --- a/clients/client-bedrock-agent/src/commands/UntagResourceCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/UpdateAgentActionGroupCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateAgentActionGroupCommand.ts index ea3149f52c5e1..dc0e4b0971c0b 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateAgentActionGroupCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateAgentActionGroupCommand.ts @@ -158,6 +158,7 @@ export interface UpdateAgentActionGroupCommandOutput extends UpdateAgentActionGr * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class UpdateAgentActionGroupCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/UpdateAgentAliasCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateAgentAliasCommand.ts index 7b0a6bfdcc66e..34d7b04f16abd 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateAgentAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateAgentAliasCommand.ts @@ -116,6 +116,7 @@ export interface UpdateAgentAliasCommandOutput extends UpdateAgentAliasResponse, * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class UpdateAgentAliasCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/UpdateAgentCollaboratorCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateAgentCollaboratorCommand.ts index f987c3e764b05..7c1511f356b8f 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateAgentCollaboratorCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateAgentCollaboratorCommand.ts @@ -102,6 +102,7 @@ export interface UpdateAgentCollaboratorCommandOutput extends UpdateAgentCollabo * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class UpdateAgentCollaboratorCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/UpdateAgentCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateAgentCommand.ts index 44e01121fa8c0..e2f6ca88bd0ef 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateAgentCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateAgentCommand.ts @@ -196,6 +196,7 @@ export interface UpdateAgentCommandOutput extends UpdateAgentResponse, __Metadat * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class UpdateAgentCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/UpdateAgentKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateAgentKnowledgeBaseCommand.ts index 5133a873fd9dc..ff1adda819656 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateAgentKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateAgentKnowledgeBaseCommand.ts @@ -85,6 +85,7 @@ export interface UpdateAgentKnowledgeBaseCommandOutput extends UpdateAgentKnowle * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class UpdateAgentKnowledgeBaseCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/UpdateDataSourceCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateDataSourceCommand.ts index f9863ed6c5f85..f4f244f7f7e40 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateDataSourceCommand.ts @@ -447,6 +447,7 @@ export interface UpdateDataSourceCommandOutput extends UpdateDataSourceResponse, * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class UpdateDataSourceCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/UpdateFlowAliasCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateFlowAliasCommand.ts index 0cbc877fba486..83ee61b003bc5 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateFlowAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateFlowAliasCommand.ts @@ -95,6 +95,7 @@ export interface UpdateFlowAliasCommandOutput extends UpdateFlowAliasResponse, _ * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class UpdateFlowAliasCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/UpdateFlowCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateFlowCommand.ts index 10fe48b36f9f2..394dbdfbbd371 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateFlowCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateFlowCommand.ts @@ -434,6 +434,7 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class UpdateFlowCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/UpdateKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateKnowledgeBaseCommand.ts index 024e964d52873..93867deed8ff5 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateKnowledgeBaseCommand.ts @@ -430,6 +430,7 @@ export interface UpdateKnowledgeBaseCommandOutput extends UpdateKnowledgeBaseRes * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class UpdateKnowledgeBaseCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/UpdatePromptCommand.ts b/clients/client-bedrock-agent/src/commands/UpdatePromptCommand.ts index 9c78819a79a6b..7949141f72cf2 100644 --- a/clients/client-bedrock-agent/src/commands/UpdatePromptCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdatePromptCommand.ts @@ -271,6 +271,7 @@ export interface UpdatePromptCommandOutput extends UpdatePromptResponse, __Metad * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class UpdatePromptCommand extends $Command diff --git a/clients/client-bedrock-agent/src/commands/ValidateFlowDefinitionCommand.ts b/clients/client-bedrock-agent/src/commands/ValidateFlowDefinitionCommand.ts index 200fd4df5f2ad..1da8d4cf72db6 100644 --- a/clients/client-bedrock-agent/src/commands/ValidateFlowDefinitionCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ValidateFlowDefinitionCommand.ts @@ -340,6 +340,7 @@ export interface ValidateFlowDefinitionCommandOutput extends ValidateFlowDefinit * @throws {@link BedrockAgentServiceException} *

Base exception class for all service exceptions from BedrockAgent service.

* + * * @public */ export class ValidateFlowDefinitionCommand extends $Command diff --git a/clients/client-bedrock-data-automation-runtime/src/commands/GetDataAutomationStatusCommand.ts b/clients/client-bedrock-data-automation-runtime/src/commands/GetDataAutomationStatusCommand.ts index 1fba86df24c6d..c59a595e0eb1b 100644 --- a/clients/client-bedrock-data-automation-runtime/src/commands/GetDataAutomationStatusCommand.ts +++ b/clients/client-bedrock-data-automation-runtime/src/commands/GetDataAutomationStatusCommand.ts @@ -79,6 +79,7 @@ export interface GetDataAutomationStatusCommandOutput extends GetDataAutomationS * @throws {@link BedrockDataAutomationRuntimeServiceException} *

Base exception class for all service exceptions from BedrockDataAutomationRuntime service.

* + * * @public */ export class GetDataAutomationStatusCommand extends $Command diff --git a/clients/client-bedrock-data-automation-runtime/src/commands/InvokeDataAutomationAsyncCommand.ts b/clients/client-bedrock-data-automation-runtime/src/commands/InvokeDataAutomationAsyncCommand.ts index ae961745a9290..2f0415b07a7fd 100644 --- a/clients/client-bedrock-data-automation-runtime/src/commands/InvokeDataAutomationAsyncCommand.ts +++ b/clients/client-bedrock-data-automation-runtime/src/commands/InvokeDataAutomationAsyncCommand.ts @@ -109,6 +109,7 @@ export interface InvokeDataAutomationAsyncCommandOutput extends InvokeDataAutoma * @throws {@link BedrockDataAutomationRuntimeServiceException} *

Base exception class for all service exceptions from BedrockDataAutomationRuntime service.

* + * * @public */ export class InvokeDataAutomationAsyncCommand extends $Command diff --git a/clients/client-bedrock-data-automation-runtime/src/commands/ListTagsForResourceCommand.ts b/clients/client-bedrock-data-automation-runtime/src/commands/ListTagsForResourceCommand.ts index 92016a3e6dcb1..786e162c4032a 100644 --- a/clients/client-bedrock-data-automation-runtime/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bedrock-data-automation-runtime/src/commands/ListTagsForResourceCommand.ts @@ -79,6 +79,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link BedrockDataAutomationRuntimeServiceException} *

Base exception class for all service exceptions from BedrockDataAutomationRuntime service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-bedrock-data-automation-runtime/src/commands/TagResourceCommand.ts b/clients/client-bedrock-data-automation-runtime/src/commands/TagResourceCommand.ts index 354357928b9ee..4c03af622ebd5 100644 --- a/clients/client-bedrock-data-automation-runtime/src/commands/TagResourceCommand.ts +++ b/clients/client-bedrock-data-automation-runtime/src/commands/TagResourceCommand.ts @@ -81,6 +81,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link BedrockDataAutomationRuntimeServiceException} *

Base exception class for all service exceptions from BedrockDataAutomationRuntime service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-bedrock-data-automation-runtime/src/commands/UntagResourceCommand.ts b/clients/client-bedrock-data-automation-runtime/src/commands/UntagResourceCommand.ts index 98a1f7346c53f..9ebf07f68059e 100644 --- a/clients/client-bedrock-data-automation-runtime/src/commands/UntagResourceCommand.ts +++ b/clients/client-bedrock-data-automation-runtime/src/commands/UntagResourceCommand.ts @@ -75,6 +75,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link BedrockDataAutomationRuntimeServiceException} *

Base exception class for all service exceptions from BedrockDataAutomationRuntime service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-bedrock-data-automation/src/commands/CreateBlueprintCommand.ts b/clients/client-bedrock-data-automation/src/commands/CreateBlueprintCommand.ts index c102e9057a74b..16dd82ec95add 100644 --- a/clients/client-bedrock-data-automation/src/commands/CreateBlueprintCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/CreateBlueprintCommand.ts @@ -111,6 +111,7 @@ export interface CreateBlueprintCommandOutput extends CreateBlueprintResponse, _ * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* + * * @public */ export class CreateBlueprintCommand extends $Command diff --git a/clients/client-bedrock-data-automation/src/commands/CreateBlueprintVersionCommand.ts b/clients/client-bedrock-data-automation/src/commands/CreateBlueprintVersionCommand.ts index b39e25ab902e7..765e9da6c2dc0 100644 --- a/clients/client-bedrock-data-automation/src/commands/CreateBlueprintVersionCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/CreateBlueprintVersionCommand.ts @@ -95,6 +95,7 @@ export interface CreateBlueprintVersionCommandOutput extends CreateBlueprintVers * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* + * * @public */ export class CreateBlueprintVersionCommand extends $Command diff --git a/clients/client-bedrock-data-automation/src/commands/CreateDataAutomationProjectCommand.ts b/clients/client-bedrock-data-automation/src/commands/CreateDataAutomationProjectCommand.ts index 117b21b5cd2bf..861f433f84fdd 100644 --- a/clients/client-bedrock-data-automation/src/commands/CreateDataAutomationProjectCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/CreateDataAutomationProjectCommand.ts @@ -200,6 +200,7 @@ export interface CreateDataAutomationProjectCommandOutput * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* + * * @public */ export class CreateDataAutomationProjectCommand extends $Command diff --git a/clients/client-bedrock-data-automation/src/commands/DeleteBlueprintCommand.ts b/clients/client-bedrock-data-automation/src/commands/DeleteBlueprintCommand.ts index 6cc688e19ba47..f8ed18ab28750 100644 --- a/clients/client-bedrock-data-automation/src/commands/DeleteBlueprintCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/DeleteBlueprintCommand.ts @@ -73,6 +73,7 @@ export interface DeleteBlueprintCommandOutput extends DeleteBlueprintResponse, _ * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* + * * @public */ export class DeleteBlueprintCommand extends $Command diff --git a/clients/client-bedrock-data-automation/src/commands/DeleteDataAutomationProjectCommand.ts b/clients/client-bedrock-data-automation/src/commands/DeleteDataAutomationProjectCommand.ts index ac63f7f5dcd73..a5620b45e82e5 100644 --- a/clients/client-bedrock-data-automation/src/commands/DeleteDataAutomationProjectCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/DeleteDataAutomationProjectCommand.ts @@ -80,6 +80,7 @@ export interface DeleteDataAutomationProjectCommandOutput * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* + * * @public */ export class DeleteDataAutomationProjectCommand extends $Command diff --git a/clients/client-bedrock-data-automation/src/commands/GetBlueprintCommand.ts b/clients/client-bedrock-data-automation/src/commands/GetBlueprintCommand.ts index 78c0ec2b52cb4..d6a553aaf3f72 100644 --- a/clients/client-bedrock-data-automation/src/commands/GetBlueprintCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/GetBlueprintCommand.ts @@ -89,6 +89,7 @@ export interface GetBlueprintCommandOutput extends GetBlueprintResponse, __Metad * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* + * * @public */ export class GetBlueprintCommand extends $Command diff --git a/clients/client-bedrock-data-automation/src/commands/GetDataAutomationProjectCommand.ts b/clients/client-bedrock-data-automation/src/commands/GetDataAutomationProjectCommand.ts index 7dcdae0897bef..598091f3d2840 100644 --- a/clients/client-bedrock-data-automation/src/commands/GetDataAutomationProjectCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/GetDataAutomationProjectCommand.ts @@ -188,6 +188,7 @@ export interface GetDataAutomationProjectCommandOutput extends GetDataAutomation * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* + * * @public */ export class GetDataAutomationProjectCommand extends $Command diff --git a/clients/client-bedrock-data-automation/src/commands/ListBlueprintsCommand.ts b/clients/client-bedrock-data-automation/src/commands/ListBlueprintsCommand.ts index b5ef75b4135b2..9d2b6b1321444 100644 --- a/clients/client-bedrock-data-automation/src/commands/ListBlueprintsCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/ListBlueprintsCommand.ts @@ -96,6 +96,7 @@ export interface ListBlueprintsCommandOutput extends ListBlueprintsResponse, __M * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* + * * @public */ export class ListBlueprintsCommand extends $Command diff --git a/clients/client-bedrock-data-automation/src/commands/ListDataAutomationProjectsCommand.ts b/clients/client-bedrock-data-automation/src/commands/ListDataAutomationProjectsCommand.ts index a4508feb39649..7c21d8d08e95a 100644 --- a/clients/client-bedrock-data-automation/src/commands/ListDataAutomationProjectsCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/ListDataAutomationProjectsCommand.ts @@ -94,6 +94,7 @@ export interface ListDataAutomationProjectsCommandOutput extends ListDataAutomat * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* + * * @public */ export class ListDataAutomationProjectsCommand extends $Command diff --git a/clients/client-bedrock-data-automation/src/commands/ListTagsForResourceCommand.ts b/clients/client-bedrock-data-automation/src/commands/ListTagsForResourceCommand.ts index b24a5d28305b3..e81ac8457a0ff 100644 --- a/clients/client-bedrock-data-automation/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/ListTagsForResourceCommand.ts @@ -79,6 +79,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-bedrock-data-automation/src/commands/TagResourceCommand.ts b/clients/client-bedrock-data-automation/src/commands/TagResourceCommand.ts index aed98fb9b4ea4..34c0758df6dc1 100644 --- a/clients/client-bedrock-data-automation/src/commands/TagResourceCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/TagResourceCommand.ts @@ -81,6 +81,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-bedrock-data-automation/src/commands/UntagResourceCommand.ts b/clients/client-bedrock-data-automation/src/commands/UntagResourceCommand.ts index 37c1f9c28d04d..4f264211b2b23 100644 --- a/clients/client-bedrock-data-automation/src/commands/UntagResourceCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/UntagResourceCommand.ts @@ -75,6 +75,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-bedrock-data-automation/src/commands/UpdateBlueprintCommand.ts b/clients/client-bedrock-data-automation/src/commands/UpdateBlueprintCommand.ts index 0e04104f08bb8..3456d924e8c66 100644 --- a/clients/client-bedrock-data-automation/src/commands/UpdateBlueprintCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/UpdateBlueprintCommand.ts @@ -103,6 +103,7 @@ export interface UpdateBlueprintCommandOutput extends UpdateBlueprintResponse, _ * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* + * * @public */ export class UpdateBlueprintCommand extends $Command diff --git a/clients/client-bedrock-data-automation/src/commands/UpdateDataAutomationProjectCommand.ts b/clients/client-bedrock-data-automation/src/commands/UpdateDataAutomationProjectCommand.ts index 55e830fb61e2d..f1d74fdf5bc1e 100644 --- a/clients/client-bedrock-data-automation/src/commands/UpdateDataAutomationProjectCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/UpdateDataAutomationProjectCommand.ts @@ -196,6 +196,7 @@ export interface UpdateDataAutomationProjectCommandOutput * @throws {@link BedrockDataAutomationServiceException} *

Base exception class for all service exceptions from BedrockDataAutomation service.

* + * * @public */ export class UpdateDataAutomationProjectCommand extends $Command diff --git a/clients/client-bedrock-runtime/src/commands/ApplyGuardrailCommand.ts b/clients/client-bedrock-runtime/src/commands/ApplyGuardrailCommand.ts index 6638985b5575a..f86f9e20052d3 100644 --- a/clients/client-bedrock-runtime/src/commands/ApplyGuardrailCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/ApplyGuardrailCommand.ts @@ -211,6 +211,7 @@ export interface ApplyGuardrailCommandOutput extends ApplyGuardrailResponse, __M * @throws {@link BedrockRuntimeServiceException} *

Base exception class for all service exceptions from BedrockRuntime service.

* + * * @public */ export class ApplyGuardrailCommand extends $Command diff --git a/clients/client-bedrock-runtime/src/commands/ConverseCommand.ts b/clients/client-bedrock-runtime/src/commands/ConverseCommand.ts index f6397147b9468..52115a182173c 100644 --- a/clients/client-bedrock-runtime/src/commands/ConverseCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/ConverseCommand.ts @@ -566,6 +566,7 @@ export interface ConverseCommandOutput extends ConverseResponse, __MetadataBeare * @throws {@link BedrockRuntimeServiceException} *

Base exception class for all service exceptions from BedrockRuntime service.

* + * * @public */ export class ConverseCommand extends $Command diff --git a/clients/client-bedrock-runtime/src/commands/ConverseStreamCommand.ts b/clients/client-bedrock-runtime/src/commands/ConverseStreamCommand.ts index c667781dae4c4..c079c28d10008 100644 --- a/clients/client-bedrock-runtime/src/commands/ConverseStreamCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/ConverseStreamCommand.ts @@ -533,6 +533,7 @@ export interface ConverseStreamCommandOutput extends ConverseStreamResponse, __M * @throws {@link BedrockRuntimeServiceException} *

Base exception class for all service exceptions from BedrockRuntime service.

* + * * @public */ export class ConverseStreamCommand extends $Command diff --git a/clients/client-bedrock-runtime/src/commands/GetAsyncInvokeCommand.ts b/clients/client-bedrock-runtime/src/commands/GetAsyncInvokeCommand.ts index 860d164a95d7e..607ebef27532c 100644 --- a/clients/client-bedrock-runtime/src/commands/GetAsyncInvokeCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/GetAsyncInvokeCommand.ts @@ -89,6 +89,7 @@ export interface GetAsyncInvokeCommandOutput extends GetAsyncInvokeResponse, __M * @throws {@link BedrockRuntimeServiceException} *

Base exception class for all service exceptions from BedrockRuntime service.

* + * * @public */ export class GetAsyncInvokeCommand extends $Command diff --git a/clients/client-bedrock-runtime/src/commands/InvokeModelCommand.ts b/clients/client-bedrock-runtime/src/commands/InvokeModelCommand.ts index 3bf5b9580fad0..68b623010e3ab 100644 --- a/clients/client-bedrock-runtime/src/commands/InvokeModelCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/InvokeModelCommand.ts @@ -136,6 +136,7 @@ export interface InvokeModelCommandOutput extends InvokeModelCommandOutputType, * @throws {@link BedrockRuntimeServiceException} *

Base exception class for all service exceptions from BedrockRuntime service.

* + * * @public */ export class InvokeModelCommand extends $Command diff --git a/clients/client-bedrock-runtime/src/commands/InvokeModelWithResponseStreamCommand.ts b/clients/client-bedrock-runtime/src/commands/InvokeModelWithResponseStreamCommand.ts index 18ec3e293f228..afe76a2c89aa2 100644 --- a/clients/client-bedrock-runtime/src/commands/InvokeModelWithResponseStreamCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/InvokeModelWithResponseStreamCommand.ts @@ -165,6 +165,7 @@ export interface InvokeModelWithResponseStreamCommandOutput * @throws {@link BedrockRuntimeServiceException} *

Base exception class for all service exceptions from BedrockRuntime service.

* + * * @public */ export class InvokeModelWithResponseStreamCommand extends $Command diff --git a/clients/client-bedrock-runtime/src/commands/ListAsyncInvokesCommand.ts b/clients/client-bedrock-runtime/src/commands/ListAsyncInvokesCommand.ts index 1a753a74f7a44..dbb4a80adcde9 100644 --- a/clients/client-bedrock-runtime/src/commands/ListAsyncInvokesCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/ListAsyncInvokesCommand.ts @@ -100,6 +100,7 @@ export interface ListAsyncInvokesCommandOutput extends ListAsyncInvokesResponse, * @throws {@link BedrockRuntimeServiceException} *

Base exception class for all service exceptions from BedrockRuntime service.

* + * * @public */ export class ListAsyncInvokesCommand extends $Command diff --git a/clients/client-bedrock-runtime/src/commands/StartAsyncInvokeCommand.ts b/clients/client-bedrock-runtime/src/commands/StartAsyncInvokeCommand.ts index 981ae8fef52dd..85f08e340d846 100644 --- a/clients/client-bedrock-runtime/src/commands/StartAsyncInvokeCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/StartAsyncInvokeCommand.ts @@ -112,6 +112,7 @@ export interface StartAsyncInvokeCommandOutput extends StartAsyncInvokeResponse, * @throws {@link BedrockRuntimeServiceException} *

Base exception class for all service exceptions from BedrockRuntime service.

* + * * @public */ export class StartAsyncInvokeCommand extends $Command diff --git a/clients/client-bedrock/src/commands/BatchDeleteEvaluationJobCommand.ts b/clients/client-bedrock/src/commands/BatchDeleteEvaluationJobCommand.ts index 5671cc0f9fa43..cca5309185657 100644 --- a/clients/client-bedrock/src/commands/BatchDeleteEvaluationJobCommand.ts +++ b/clients/client-bedrock/src/commands/BatchDeleteEvaluationJobCommand.ts @@ -94,6 +94,7 @@ export interface BatchDeleteEvaluationJobCommandOutput extends BatchDeleteEvalua * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class BatchDeleteEvaluationJobCommand extends $Command diff --git a/clients/client-bedrock/src/commands/CreateEvaluationJobCommand.ts b/clients/client-bedrock/src/commands/CreateEvaluationJobCommand.ts index 30a6cf7d847fa..9bdb1846546c6 100644 --- a/clients/client-bedrock/src/commands/CreateEvaluationJobCommand.ts +++ b/clients/client-bedrock/src/commands/CreateEvaluationJobCommand.ts @@ -316,6 +316,7 @@ export interface CreateEvaluationJobCommandOutput extends CreateEvaluationJobRes * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class CreateEvaluationJobCommand extends $Command diff --git a/clients/client-bedrock/src/commands/CreateGuardrailCommand.ts b/clients/client-bedrock/src/commands/CreateGuardrailCommand.ts index 87263f99dbd44..907133846b8b9 100644 --- a/clients/client-bedrock/src/commands/CreateGuardrailCommand.ts +++ b/clients/client-bedrock/src/commands/CreateGuardrailCommand.ts @@ -192,6 +192,7 @@ export interface CreateGuardrailCommandOutput extends CreateGuardrailResponse, _ * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class CreateGuardrailCommand extends $Command diff --git a/clients/client-bedrock/src/commands/CreateGuardrailVersionCommand.ts b/clients/client-bedrock/src/commands/CreateGuardrailVersionCommand.ts index 9b7eec531f428..0b67fd42e5ec0 100644 --- a/clients/client-bedrock/src/commands/CreateGuardrailVersionCommand.ts +++ b/clients/client-bedrock/src/commands/CreateGuardrailVersionCommand.ts @@ -84,6 +84,7 @@ export interface CreateGuardrailVersionCommandOutput extends CreateGuardrailVers * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class CreateGuardrailVersionCommand extends $Command diff --git a/clients/client-bedrock/src/commands/CreateInferenceProfileCommand.ts b/clients/client-bedrock/src/commands/CreateInferenceProfileCommand.ts index dd43133e94069..8d04dce245c53 100644 --- a/clients/client-bedrock/src/commands/CreateInferenceProfileCommand.ts +++ b/clients/client-bedrock/src/commands/CreateInferenceProfileCommand.ts @@ -96,6 +96,7 @@ export interface CreateInferenceProfileCommandOutput extends CreateInferenceProf * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class CreateInferenceProfileCommand extends $Command diff --git a/clients/client-bedrock/src/commands/CreateMarketplaceModelEndpointCommand.ts b/clients/client-bedrock/src/commands/CreateMarketplaceModelEndpointCommand.ts index f4f44988fd1e8..97cc023e31581 100644 --- a/clients/client-bedrock/src/commands/CreateMarketplaceModelEndpointCommand.ts +++ b/clients/client-bedrock/src/commands/CreateMarketplaceModelEndpointCommand.ts @@ -132,6 +132,7 @@ export interface CreateMarketplaceModelEndpointCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class CreateMarketplaceModelEndpointCommand extends $Command diff --git a/clients/client-bedrock/src/commands/CreateModelCopyJobCommand.ts b/clients/client-bedrock/src/commands/CreateModelCopyJobCommand.ts index a90c62f20247b..2d43e4d8e175b 100644 --- a/clients/client-bedrock/src/commands/CreateModelCopyJobCommand.ts +++ b/clients/client-bedrock/src/commands/CreateModelCopyJobCommand.ts @@ -77,6 +77,7 @@ export interface CreateModelCopyJobCommandOutput extends CreateModelCopyJobRespo * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class CreateModelCopyJobCommand extends $Command diff --git a/clients/client-bedrock/src/commands/CreateModelCustomizationJobCommand.ts b/clients/client-bedrock/src/commands/CreateModelCustomizationJobCommand.ts index 29d23a087968a..2a508a408eb50 100644 --- a/clients/client-bedrock/src/commands/CreateModelCustomizationJobCommand.ts +++ b/clients/client-bedrock/src/commands/CreateModelCustomizationJobCommand.ts @@ -179,6 +179,7 @@ export interface CreateModelCustomizationJobCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class CreateModelCustomizationJobCommand extends $Command diff --git a/clients/client-bedrock/src/commands/CreateModelImportJobCommand.ts b/clients/client-bedrock/src/commands/CreateModelImportJobCommand.ts index 4f5feb2bc771f..8eab3f061bde0 100644 --- a/clients/client-bedrock/src/commands/CreateModelImportJobCommand.ts +++ b/clients/client-bedrock/src/commands/CreateModelImportJobCommand.ts @@ -111,6 +111,7 @@ export interface CreateModelImportJobCommandOutput extends CreateModelImportJobR * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class CreateModelImportJobCommand extends $Command diff --git a/clients/client-bedrock/src/commands/CreateModelInvocationJobCommand.ts b/clients/client-bedrock/src/commands/CreateModelInvocationJobCommand.ts index 7efc9591d70c3..38d3521105df4 100644 --- a/clients/client-bedrock/src/commands/CreateModelInvocationJobCommand.ts +++ b/clients/client-bedrock/src/commands/CreateModelInvocationJobCommand.ts @@ -109,6 +109,7 @@ export interface CreateModelInvocationJobCommandOutput extends CreateModelInvoca * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class CreateModelInvocationJobCommand extends $Command diff --git a/clients/client-bedrock/src/commands/CreatePromptRouterCommand.ts b/clients/client-bedrock/src/commands/CreatePromptRouterCommand.ts index ca709195bdf28..89908c34d7409 100644 --- a/clients/client-bedrock/src/commands/CreatePromptRouterCommand.ts +++ b/clients/client-bedrock/src/commands/CreatePromptRouterCommand.ts @@ -103,6 +103,7 @@ export interface CreatePromptRouterCommandOutput extends CreatePromptRouterRespo * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class CreatePromptRouterCommand extends $Command diff --git a/clients/client-bedrock/src/commands/CreateProvisionedModelThroughputCommand.ts b/clients/client-bedrock/src/commands/CreateProvisionedModelThroughputCommand.ts index c1bb2bcbea2f8..b6d0aab99d887 100644 --- a/clients/client-bedrock/src/commands/CreateProvisionedModelThroughputCommand.ts +++ b/clients/client-bedrock/src/commands/CreateProvisionedModelThroughputCommand.ts @@ -92,6 +92,7 @@ export interface CreateProvisionedModelThroughputCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class CreateProvisionedModelThroughputCommand extends $Command diff --git a/clients/client-bedrock/src/commands/DeleteCustomModelCommand.ts b/clients/client-bedrock/src/commands/DeleteCustomModelCommand.ts index 093b3126cf56e..00f6e2bae0d68 100644 --- a/clients/client-bedrock/src/commands/DeleteCustomModelCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteCustomModelCommand.ts @@ -71,6 +71,7 @@ export interface DeleteCustomModelCommandOutput extends DeleteCustomModelRespons * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class DeleteCustomModelCommand extends $Command diff --git a/clients/client-bedrock/src/commands/DeleteGuardrailCommand.ts b/clients/client-bedrock/src/commands/DeleteGuardrailCommand.ts index babbedc9f77c2..fc151384ffee6 100644 --- a/clients/client-bedrock/src/commands/DeleteGuardrailCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteGuardrailCommand.ts @@ -80,6 +80,7 @@ export interface DeleteGuardrailCommandOutput extends DeleteGuardrailResponse, _ * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class DeleteGuardrailCommand extends $Command diff --git a/clients/client-bedrock/src/commands/DeleteImportedModelCommand.ts b/clients/client-bedrock/src/commands/DeleteImportedModelCommand.ts index 372fd3afa6515..9a4decc074aef 100644 --- a/clients/client-bedrock/src/commands/DeleteImportedModelCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteImportedModelCommand.ts @@ -73,6 +73,7 @@ export interface DeleteImportedModelCommandOutput extends DeleteImportedModelRes * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class DeleteImportedModelCommand extends $Command diff --git a/clients/client-bedrock/src/commands/DeleteInferenceProfileCommand.ts b/clients/client-bedrock/src/commands/DeleteInferenceProfileCommand.ts index 3c58900552f9a..766454ff17fbb 100644 --- a/clients/client-bedrock/src/commands/DeleteInferenceProfileCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteInferenceProfileCommand.ts @@ -71,6 +71,7 @@ export interface DeleteInferenceProfileCommandOutput extends DeleteInferenceProf * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class DeleteInferenceProfileCommand extends $Command diff --git a/clients/client-bedrock/src/commands/DeleteMarketplaceModelEndpointCommand.ts b/clients/client-bedrock/src/commands/DeleteMarketplaceModelEndpointCommand.ts index cb658e396da33..3edc2701ae9a4 100644 --- a/clients/client-bedrock/src/commands/DeleteMarketplaceModelEndpointCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteMarketplaceModelEndpointCommand.ts @@ -73,6 +73,7 @@ export interface DeleteMarketplaceModelEndpointCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class DeleteMarketplaceModelEndpointCommand extends $Command diff --git a/clients/client-bedrock/src/commands/DeleteModelInvocationLoggingConfigurationCommand.ts b/clients/client-bedrock/src/commands/DeleteModelInvocationLoggingConfigurationCommand.ts index 81dc6346d2b28..628fe7b3e0caf 100644 --- a/clients/client-bedrock/src/commands/DeleteModelInvocationLoggingConfigurationCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteModelInvocationLoggingConfigurationCommand.ts @@ -69,6 +69,7 @@ export interface DeleteModelInvocationLoggingConfigurationCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class DeleteModelInvocationLoggingConfigurationCommand extends $Command diff --git a/clients/client-bedrock/src/commands/DeletePromptRouterCommand.ts b/clients/client-bedrock/src/commands/DeletePromptRouterCommand.ts index 9975c13dcef9c..8ee0b335093bd 100644 --- a/clients/client-bedrock/src/commands/DeletePromptRouterCommand.ts +++ b/clients/client-bedrock/src/commands/DeletePromptRouterCommand.ts @@ -68,6 +68,7 @@ export interface DeletePromptRouterCommandOutput extends DeletePromptRouterRespo * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class DeletePromptRouterCommand extends $Command diff --git a/clients/client-bedrock/src/commands/DeleteProvisionedModelThroughputCommand.ts b/clients/client-bedrock/src/commands/DeleteProvisionedModelThroughputCommand.ts index eba3f8c9bfd83..132f679371330 100644 --- a/clients/client-bedrock/src/commands/DeleteProvisionedModelThroughputCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteProvisionedModelThroughputCommand.ts @@ -76,6 +76,7 @@ export interface DeleteProvisionedModelThroughputCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class DeleteProvisionedModelThroughputCommand extends $Command diff --git a/clients/client-bedrock/src/commands/DeregisterMarketplaceModelEndpointCommand.ts b/clients/client-bedrock/src/commands/DeregisterMarketplaceModelEndpointCommand.ts index 353860fa481bd..d738d0fa1e63d 100644 --- a/clients/client-bedrock/src/commands/DeregisterMarketplaceModelEndpointCommand.ts +++ b/clients/client-bedrock/src/commands/DeregisterMarketplaceModelEndpointCommand.ts @@ -81,6 +81,7 @@ export interface DeregisterMarketplaceModelEndpointCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class DeregisterMarketplaceModelEndpointCommand extends $Command diff --git a/clients/client-bedrock/src/commands/GetCustomModelCommand.ts b/clients/client-bedrock/src/commands/GetCustomModelCommand.ts index b144a1e2f41ce..d85f654f793da 100644 --- a/clients/client-bedrock/src/commands/GetCustomModelCommand.ts +++ b/clients/client-bedrock/src/commands/GetCustomModelCommand.ts @@ -145,6 +145,7 @@ export interface GetCustomModelCommandOutput extends GetCustomModelResponse, __M * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class GetCustomModelCommand extends $Command diff --git a/clients/client-bedrock/src/commands/GetEvaluationJobCommand.ts b/clients/client-bedrock/src/commands/GetEvaluationJobCommand.ts index 202c25b7b5a83..328bec8a0e807 100644 --- a/clients/client-bedrock/src/commands/GetEvaluationJobCommand.ts +++ b/clients/client-bedrock/src/commands/GetEvaluationJobCommand.ts @@ -312,6 +312,7 @@ export interface GetEvaluationJobCommandOutput extends GetEvaluationJobResponse, * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class GetEvaluationJobCommand extends $Command diff --git a/clients/client-bedrock/src/commands/GetFoundationModelCommand.ts b/clients/client-bedrock/src/commands/GetFoundationModelCommand.ts index c239345337c68..70e545f5a37be 100644 --- a/clients/client-bedrock/src/commands/GetFoundationModelCommand.ts +++ b/clients/client-bedrock/src/commands/GetFoundationModelCommand.ts @@ -91,6 +91,7 @@ export interface GetFoundationModelCommandOutput extends GetFoundationModelRespo * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class GetFoundationModelCommand extends $Command diff --git a/clients/client-bedrock/src/commands/GetGuardrailCommand.ts b/clients/client-bedrock/src/commands/GetGuardrailCommand.ts index 2d07305066c2a..32a1342a410d2 100644 --- a/clients/client-bedrock/src/commands/GetGuardrailCommand.ts +++ b/clients/client-bedrock/src/commands/GetGuardrailCommand.ts @@ -150,6 +150,7 @@ export interface GetGuardrailCommandOutput extends GetGuardrailResponse, __Metad * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class GetGuardrailCommand extends $Command diff --git a/clients/client-bedrock/src/commands/GetImportedModelCommand.ts b/clients/client-bedrock/src/commands/GetImportedModelCommand.ts index 5ac627ffeee1d..9d3be91d7d67b 100644 --- a/clients/client-bedrock/src/commands/GetImportedModelCommand.ts +++ b/clients/client-bedrock/src/commands/GetImportedModelCommand.ts @@ -86,6 +86,7 @@ export interface GetImportedModelCommandOutput extends GetImportedModelResponse, * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class GetImportedModelCommand extends $Command diff --git a/clients/client-bedrock/src/commands/GetInferenceProfileCommand.ts b/clients/client-bedrock/src/commands/GetInferenceProfileCommand.ts index 096b0a5c90e3e..de9cbc50d1b70 100644 --- a/clients/client-bedrock/src/commands/GetInferenceProfileCommand.ts +++ b/clients/client-bedrock/src/commands/GetInferenceProfileCommand.ts @@ -86,6 +86,7 @@ export interface GetInferenceProfileCommandOutput extends GetInferenceProfileRes * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class GetInferenceProfileCommand extends $Command diff --git a/clients/client-bedrock/src/commands/GetMarketplaceModelEndpointCommand.ts b/clients/client-bedrock/src/commands/GetMarketplaceModelEndpointCommand.ts index dc2b98312b8a4..0851837db4868 100644 --- a/clients/client-bedrock/src/commands/GetMarketplaceModelEndpointCommand.ts +++ b/clients/client-bedrock/src/commands/GetMarketplaceModelEndpointCommand.ts @@ -100,6 +100,7 @@ export interface GetMarketplaceModelEndpointCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class GetMarketplaceModelEndpointCommand extends $Command diff --git a/clients/client-bedrock/src/commands/GetModelCopyJobCommand.ts b/clients/client-bedrock/src/commands/GetModelCopyJobCommand.ts index bd891ec6aaa99..4e5f8a46c2792 100644 --- a/clients/client-bedrock/src/commands/GetModelCopyJobCommand.ts +++ b/clients/client-bedrock/src/commands/GetModelCopyJobCommand.ts @@ -85,6 +85,7 @@ export interface GetModelCopyJobCommandOutput extends GetModelCopyJobResponse, _ * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class GetModelCopyJobCommand extends $Command diff --git a/clients/client-bedrock/src/commands/GetModelCustomizationJobCommand.ts b/clients/client-bedrock/src/commands/GetModelCustomizationJobCommand.ts index 9642147b280b2..f235c77a8648f 100644 --- a/clients/client-bedrock/src/commands/GetModelCustomizationJobCommand.ts +++ b/clients/client-bedrock/src/commands/GetModelCustomizationJobCommand.ts @@ -160,6 +160,7 @@ export interface GetModelCustomizationJobCommandOutput extends GetModelCustomiza * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class GetModelCustomizationJobCommand extends $Command diff --git a/clients/client-bedrock/src/commands/GetModelImportJobCommand.ts b/clients/client-bedrock/src/commands/GetModelImportJobCommand.ts index f31348860f3a6..910ffc6b714a3 100644 --- a/clients/client-bedrock/src/commands/GetModelImportJobCommand.ts +++ b/clients/client-bedrock/src/commands/GetModelImportJobCommand.ts @@ -95,6 +95,7 @@ export interface GetModelImportJobCommandOutput extends GetModelImportJobRespons * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class GetModelImportJobCommand extends $Command diff --git a/clients/client-bedrock/src/commands/GetModelInvocationJobCommand.ts b/clients/client-bedrock/src/commands/GetModelInvocationJobCommand.ts index 5d62161fa54db..409cfb8ea055a 100644 --- a/clients/client-bedrock/src/commands/GetModelInvocationJobCommand.ts +++ b/clients/client-bedrock/src/commands/GetModelInvocationJobCommand.ts @@ -108,6 +108,7 @@ export interface GetModelInvocationJobCommandOutput extends GetModelInvocationJo * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class GetModelInvocationJobCommand extends $Command diff --git a/clients/client-bedrock/src/commands/GetModelInvocationLoggingConfigurationCommand.ts b/clients/client-bedrock/src/commands/GetModelInvocationLoggingConfigurationCommand.ts index d268c021bce71..e2b79f2890826 100644 --- a/clients/client-bedrock/src/commands/GetModelInvocationLoggingConfigurationCommand.ts +++ b/clients/client-bedrock/src/commands/GetModelInvocationLoggingConfigurationCommand.ts @@ -88,6 +88,7 @@ export interface GetModelInvocationLoggingConfigurationCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class GetModelInvocationLoggingConfigurationCommand extends $Command diff --git a/clients/client-bedrock/src/commands/GetPromptRouterCommand.ts b/clients/client-bedrock/src/commands/GetPromptRouterCommand.ts index a5afbd5a7a0dd..edbcce6f0bc4b 100644 --- a/clients/client-bedrock/src/commands/GetPromptRouterCommand.ts +++ b/clients/client-bedrock/src/commands/GetPromptRouterCommand.ts @@ -91,6 +91,7 @@ export interface GetPromptRouterCommandOutput extends GetPromptRouterResponse, _ * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class GetPromptRouterCommand extends $Command diff --git a/clients/client-bedrock/src/commands/GetProvisionedModelThroughputCommand.ts b/clients/client-bedrock/src/commands/GetProvisionedModelThroughputCommand.ts index 56c90537e081d..f4bda96eb15b4 100644 --- a/clients/client-bedrock/src/commands/GetProvisionedModelThroughputCommand.ts +++ b/clients/client-bedrock/src/commands/GetProvisionedModelThroughputCommand.ts @@ -87,6 +87,7 @@ export interface GetProvisionedModelThroughputCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class GetProvisionedModelThroughputCommand extends $Command diff --git a/clients/client-bedrock/src/commands/ListCustomModelsCommand.ts b/clients/client-bedrock/src/commands/ListCustomModelsCommand.ts index ba11e45219ccc..d341f64efad7b 100644 --- a/clients/client-bedrock/src/commands/ListCustomModelsCommand.ts +++ b/clients/client-bedrock/src/commands/ListCustomModelsCommand.ts @@ -88,6 +88,7 @@ export interface ListCustomModelsCommandOutput extends ListCustomModelsResponse, * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class ListCustomModelsCommand extends $Command diff --git a/clients/client-bedrock/src/commands/ListEvaluationJobsCommand.ts b/clients/client-bedrock/src/commands/ListEvaluationJobsCommand.ts index d62bb30fe56d1..0aa053de420f3 100644 --- a/clients/client-bedrock/src/commands/ListEvaluationJobsCommand.ts +++ b/clients/client-bedrock/src/commands/ListEvaluationJobsCommand.ts @@ -115,6 +115,7 @@ export interface ListEvaluationJobsCommandOutput extends ListEvaluationJobsRespo * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class ListEvaluationJobsCommand extends $Command diff --git a/clients/client-bedrock/src/commands/ListFoundationModelsCommand.ts b/clients/client-bedrock/src/commands/ListFoundationModelsCommand.ts index d31ace787d82f..7e0874c0ed6a3 100644 --- a/clients/client-bedrock/src/commands/ListFoundationModelsCommand.ts +++ b/clients/client-bedrock/src/commands/ListFoundationModelsCommand.ts @@ -93,6 +93,7 @@ export interface ListFoundationModelsCommandOutput extends ListFoundationModelsR * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class ListFoundationModelsCommand extends $Command diff --git a/clients/client-bedrock/src/commands/ListGuardrailsCommand.ts b/clients/client-bedrock/src/commands/ListGuardrailsCommand.ts index 211a0bbae9280..147dc1e4a2308 100644 --- a/clients/client-bedrock/src/commands/ListGuardrailsCommand.ts +++ b/clients/client-bedrock/src/commands/ListGuardrailsCommand.ts @@ -89,6 +89,7 @@ export interface ListGuardrailsCommandOutput extends ListGuardrailsResponse, __M * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class ListGuardrailsCommand extends $Command diff --git a/clients/client-bedrock/src/commands/ListImportedModelsCommand.ts b/clients/client-bedrock/src/commands/ListImportedModelsCommand.ts index b0dfd902ba7a2..12b0ca3ea81af 100644 --- a/clients/client-bedrock/src/commands/ListImportedModelsCommand.ts +++ b/clients/client-bedrock/src/commands/ListImportedModelsCommand.ts @@ -84,6 +84,7 @@ export interface ListImportedModelsCommandOutput extends ListImportedModelsRespo * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class ListImportedModelsCommand extends $Command diff --git a/clients/client-bedrock/src/commands/ListInferenceProfilesCommand.ts b/clients/client-bedrock/src/commands/ListInferenceProfilesCommand.ts index 3d84db0bc60d5..9d7f9200bf556 100644 --- a/clients/client-bedrock/src/commands/ListInferenceProfilesCommand.ts +++ b/clients/client-bedrock/src/commands/ListInferenceProfilesCommand.ts @@ -90,6 +90,7 @@ export interface ListInferenceProfilesCommandOutput extends ListInferenceProfile * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class ListInferenceProfilesCommand extends $Command diff --git a/clients/client-bedrock/src/commands/ListMarketplaceModelEndpointsCommand.ts b/clients/client-bedrock/src/commands/ListMarketplaceModelEndpointsCommand.ts index 0298defe92027..6b5b0cc13d244 100644 --- a/clients/client-bedrock/src/commands/ListMarketplaceModelEndpointsCommand.ts +++ b/clients/client-bedrock/src/commands/ListMarketplaceModelEndpointsCommand.ts @@ -88,6 +88,7 @@ export interface ListMarketplaceModelEndpointsCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class ListMarketplaceModelEndpointsCommand extends $Command diff --git a/clients/client-bedrock/src/commands/ListModelCopyJobsCommand.ts b/clients/client-bedrock/src/commands/ListModelCopyJobsCommand.ts index ef3c419516cb1..4987dbfd54fd5 100644 --- a/clients/client-bedrock/src/commands/ListModelCopyJobsCommand.ts +++ b/clients/client-bedrock/src/commands/ListModelCopyJobsCommand.ts @@ -100,6 +100,7 @@ export interface ListModelCopyJobsCommandOutput extends ListModelCopyJobsRespons * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class ListModelCopyJobsCommand extends $Command diff --git a/clients/client-bedrock/src/commands/ListModelCustomizationJobsCommand.ts b/clients/client-bedrock/src/commands/ListModelCustomizationJobsCommand.ts index e948a6b724284..be724f3308f6e 100644 --- a/clients/client-bedrock/src/commands/ListModelCustomizationJobsCommand.ts +++ b/clients/client-bedrock/src/commands/ListModelCustomizationJobsCommand.ts @@ -90,6 +90,7 @@ export interface ListModelCustomizationJobsCommandOutput extends ListModelCustom * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class ListModelCustomizationJobsCommand extends $Command diff --git a/clients/client-bedrock/src/commands/ListModelImportJobsCommand.ts b/clients/client-bedrock/src/commands/ListModelImportJobsCommand.ts index 06b41d2918488..48896d521c5b1 100644 --- a/clients/client-bedrock/src/commands/ListModelImportJobsCommand.ts +++ b/clients/client-bedrock/src/commands/ListModelImportJobsCommand.ts @@ -88,6 +88,7 @@ export interface ListModelImportJobsCommandOutput extends ListModelImportJobsRes * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class ListModelImportJobsCommand extends $Command diff --git a/clients/client-bedrock/src/commands/ListModelInvocationJobsCommand.ts b/clients/client-bedrock/src/commands/ListModelInvocationJobsCommand.ts index f6bf4ae03fd83..139f4610d0095 100644 --- a/clients/client-bedrock/src/commands/ListModelInvocationJobsCommand.ts +++ b/clients/client-bedrock/src/commands/ListModelInvocationJobsCommand.ts @@ -116,6 +116,7 @@ export interface ListModelInvocationJobsCommandOutput extends ListModelInvocatio * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class ListModelInvocationJobsCommand extends $Command diff --git a/clients/client-bedrock/src/commands/ListPromptRoutersCommand.ts b/clients/client-bedrock/src/commands/ListPromptRoutersCommand.ts index 8bb297b86e09a..c8c3c2e41b1cc 100644 --- a/clients/client-bedrock/src/commands/ListPromptRoutersCommand.ts +++ b/clients/client-bedrock/src/commands/ListPromptRoutersCommand.ts @@ -95,6 +95,7 @@ export interface ListPromptRoutersCommandOutput extends ListPromptRoutersRespons * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class ListPromptRoutersCommand extends $Command diff --git a/clients/client-bedrock/src/commands/ListProvisionedModelThroughputsCommand.ts b/clients/client-bedrock/src/commands/ListProvisionedModelThroughputsCommand.ts index 9e9f7604d9520..112f45c7e4a4e 100644 --- a/clients/client-bedrock/src/commands/ListProvisionedModelThroughputsCommand.ts +++ b/clients/client-bedrock/src/commands/ListProvisionedModelThroughputsCommand.ts @@ -96,6 +96,7 @@ export interface ListProvisionedModelThroughputsCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class ListProvisionedModelThroughputsCommand extends $Command diff --git a/clients/client-bedrock/src/commands/ListTagsForResourceCommand.ts b/clients/client-bedrock/src/commands/ListTagsForResourceCommand.ts index 911968ecb7b8d..ef51853691fe6 100644 --- a/clients/client-bedrock/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bedrock/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-bedrock/src/commands/PutModelInvocationLoggingConfigurationCommand.ts b/clients/client-bedrock/src/commands/PutModelInvocationLoggingConfigurationCommand.ts index 55908ecf48b6e..2873483e3c55b 100644 --- a/clients/client-bedrock/src/commands/PutModelInvocationLoggingConfigurationCommand.ts +++ b/clients/client-bedrock/src/commands/PutModelInvocationLoggingConfigurationCommand.ts @@ -91,6 +91,7 @@ export interface PutModelInvocationLoggingConfigurationCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class PutModelInvocationLoggingConfigurationCommand extends $Command diff --git a/clients/client-bedrock/src/commands/RegisterMarketplaceModelEndpointCommand.ts b/clients/client-bedrock/src/commands/RegisterMarketplaceModelEndpointCommand.ts index c43bf96974006..38a3a854d6052 100644 --- a/clients/client-bedrock/src/commands/RegisterMarketplaceModelEndpointCommand.ts +++ b/clients/client-bedrock/src/commands/RegisterMarketplaceModelEndpointCommand.ts @@ -105,6 +105,7 @@ export interface RegisterMarketplaceModelEndpointCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class RegisterMarketplaceModelEndpointCommand extends $Command diff --git a/clients/client-bedrock/src/commands/StopEvaluationJobCommand.ts b/clients/client-bedrock/src/commands/StopEvaluationJobCommand.ts index bc9e36069010a..9bb59daab17d5 100644 --- a/clients/client-bedrock/src/commands/StopEvaluationJobCommand.ts +++ b/clients/client-bedrock/src/commands/StopEvaluationJobCommand.ts @@ -75,6 +75,7 @@ export interface StopEvaluationJobCommandOutput extends StopEvaluationJobRespons * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class StopEvaluationJobCommand extends $Command diff --git a/clients/client-bedrock/src/commands/StopModelCustomizationJobCommand.ts b/clients/client-bedrock/src/commands/StopModelCustomizationJobCommand.ts index d0cd71d355ab5..c9b6ed1ad867c 100644 --- a/clients/client-bedrock/src/commands/StopModelCustomizationJobCommand.ts +++ b/clients/client-bedrock/src/commands/StopModelCustomizationJobCommand.ts @@ -71,6 +71,7 @@ export interface StopModelCustomizationJobCommandOutput extends StopModelCustomi * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class StopModelCustomizationJobCommand extends $Command diff --git a/clients/client-bedrock/src/commands/StopModelInvocationJobCommand.ts b/clients/client-bedrock/src/commands/StopModelInvocationJobCommand.ts index a4ac645680fde..18aa86cd02572 100644 --- a/clients/client-bedrock/src/commands/StopModelInvocationJobCommand.ts +++ b/clients/client-bedrock/src/commands/StopModelInvocationJobCommand.ts @@ -71,6 +71,7 @@ export interface StopModelInvocationJobCommandOutput extends StopModelInvocation * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class StopModelInvocationJobCommand extends $Command diff --git a/clients/client-bedrock/src/commands/TagResourceCommand.ts b/clients/client-bedrock/src/commands/TagResourceCommand.ts index 082b3c2b8d038..e5a64b5d42edb 100644 --- a/clients/client-bedrock/src/commands/TagResourceCommand.ts +++ b/clients/client-bedrock/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-bedrock/src/commands/UntagResourceCommand.ts b/clients/client-bedrock/src/commands/UntagResourceCommand.ts index 4d1da23abef41..7380f6db4fca8 100644 --- a/clients/client-bedrock/src/commands/UntagResourceCommand.ts +++ b/clients/client-bedrock/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-bedrock/src/commands/UpdateGuardrailCommand.ts b/clients/client-bedrock/src/commands/UpdateGuardrailCommand.ts index 6607a2b0ac993..a1def13abf161 100644 --- a/clients/client-bedrock/src/commands/UpdateGuardrailCommand.ts +++ b/clients/client-bedrock/src/commands/UpdateGuardrailCommand.ts @@ -187,6 +187,7 @@ export interface UpdateGuardrailCommandOutput extends UpdateGuardrailResponse, _ * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class UpdateGuardrailCommand extends $Command diff --git a/clients/client-bedrock/src/commands/UpdateMarketplaceModelEndpointCommand.ts b/clients/client-bedrock/src/commands/UpdateMarketplaceModelEndpointCommand.ts index f3dacf0416810..4033d88decd8b 100644 --- a/clients/client-bedrock/src/commands/UpdateMarketplaceModelEndpointCommand.ts +++ b/clients/client-bedrock/src/commands/UpdateMarketplaceModelEndpointCommand.ts @@ -124,6 +124,7 @@ export interface UpdateMarketplaceModelEndpointCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class UpdateMarketplaceModelEndpointCommand extends $Command diff --git a/clients/client-bedrock/src/commands/UpdateProvisionedModelThroughputCommand.ts b/clients/client-bedrock/src/commands/UpdateProvisionedModelThroughputCommand.ts index 1442245aa5572..921c3807ed629 100644 --- a/clients/client-bedrock/src/commands/UpdateProvisionedModelThroughputCommand.ts +++ b/clients/client-bedrock/src/commands/UpdateProvisionedModelThroughputCommand.ts @@ -75,6 +75,7 @@ export interface UpdateProvisionedModelThroughputCommandOutput * @throws {@link BedrockServiceException} *

Base exception class for all service exceptions from Bedrock service.

* + * * @public */ export class UpdateProvisionedModelThroughputCommand extends $Command diff --git a/clients/client-billing/src/commands/CreateBillingViewCommand.ts b/clients/client-billing/src/commands/CreateBillingViewCommand.ts index c60e974a426e8..718587e977903 100644 --- a/clients/client-billing/src/commands/CreateBillingViewCommand.ts +++ b/clients/client-billing/src/commands/CreateBillingViewCommand.ts @@ -112,36 +112,36 @@ export interface CreateBillingViewCommandOutput extends CreateBillingViewRespons * @throws {@link BillingServiceException} *

Base exception class for all service exceptions from Billing service.

* - * @public + * * @example Invoke CreateBillingView * ```javascript * // * const input = { - * "name": "Example Custom Billing View", - * "dataFilterExpression": { - * "dimensions": { - * "key": "LINKED_ACCOUNT", - * "values": [ + * dataFilterExpression: { + * dimensions: { + * key: "LINKED_ACCOUNT", + * values: [ * "000000000000" * ] * } * }, - * "description": "Custom Billing View Example", - * "sourceViews": [ + * description: "Custom Billing View Example", + * name: "Example Custom Billing View", + * sourceViews: [ * "arn:aws:billing::123456789101:billingview/primary" * ] * }; * const command = new CreateBillingViewCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", - * "createdAt": 1719792001 + * arn: "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", + * createdAt: 1719792001 * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateBillingViewCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/DeleteBillingViewCommand.ts b/clients/client-billing/src/commands/DeleteBillingViewCommand.ts index 1dabf85532c4c..b480b0ad998ab 100644 --- a/clients/client-billing/src/commands/DeleteBillingViewCommand.ts +++ b/clients/client-billing/src/commands/DeleteBillingViewCommand.ts @@ -75,23 +75,23 @@ export interface DeleteBillingViewCommandOutput extends DeleteBillingViewRespons * @throws {@link BillingServiceException} *

Base exception class for all service exceptions from Billing service.

* - * @public + * * @example Invoke DeleteBillingView * ```javascript * // * const input = { - * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" + * arn: "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" * }; * const command = new DeleteBillingViewCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" + * arn: "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class DeleteBillingViewCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/GetBillingViewCommand.ts b/clients/client-billing/src/commands/GetBillingViewCommand.ts index e6edc70f59464..fa4650b1f0169 100644 --- a/clients/client-billing/src/commands/GetBillingViewCommand.ts +++ b/clients/client-billing/src/commands/GetBillingViewCommand.ts @@ -102,37 +102,37 @@ export interface GetBillingViewCommandOutput extends GetBillingViewResponse, __M * @throws {@link BillingServiceException} *

Base exception class for all service exceptions from Billing service.

* - * @public + * * @example Invoke GetBillingView * ```javascript * // * const input = { - * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" + * arn: "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" * }; * const command = new GetBillingViewCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "billingView": { - * "name": "Example Custom Billing View", - * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", - * "billingViewType": "CUSTOM", - * "dataFilterExpression": { - * "dimensions": { - * "key": "LINKED_ACCOUNT", - * "values": [ + * billingView: { + * arn: "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", + * billingViewType: "CUSTOM", + * dataFilterExpression: { + * dimensions: { + * key: "LINKED_ACCOUNT", + * values: [ * "000000000000" * ] * } * }, - * "description": "Custom Billing View Example -- updated description", - * "ownerAccountId": "123456789101" + * description: "Custom Billing View Example -- updated description", + * name: "Example Custom Billing View", + * ownerAccountId: "123456789101" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetBillingViewCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/GetResourcePolicyCommand.ts b/clients/client-billing/src/commands/GetResourcePolicyCommand.ts index c4bcc34a269a0..1b9f34bb84280 100644 --- a/clients/client-billing/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-billing/src/commands/GetResourcePolicyCommand.ts @@ -77,24 +77,24 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons * @throws {@link BillingServiceException} *

Base exception class for all service exceptions from Billing service.

* - * @public + * * @example Invoke GetResourcePolicy * ```javascript * // * const input = { - * "resourceArn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" + * resourceArn: "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" * }; * const command = new GetResourcePolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "policy": "{\"Version\":\"2012-10-17\",\"Id\":\"46f47cb2-a11d-43f3-983d-470b5708a899\",\"Statement\":[{\"Sid\":\"ExampleStatement1\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::000000000000:root\"},\"Action\":[\"ce:GetDimensionValues\",\"ce:GetCostAndUsageWithResources\",\"ce:GetCostAndUsage\",\"ce:GetCostForecast\",\"ce:GetTags\",\"ce:GetUsageForecast\",\"ce:GetCostCategories\",\"billing:GetBillingView\"],\"Resource\":\"arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899\"}]}", - * "resourceArn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" + * policy: `{"Version":"2012-10-17","Id":"46f47cb2-a11d-43f3-983d-470b5708a899","Statement":[{"Sid":"ExampleStatement1","Effect":"Allow","Principal":{"AWS":"arn:aws:iam::000000000000:root"},"Action":["ce:GetDimensionValues","ce:GetCostAndUsageWithResources","ce:GetCostAndUsage","ce:GetCostForecast","ce:GetTags","ce:GetUsageForecast","ce:GetCostCategories","billing:GetBillingView"],"Resource":"arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899"}]}`, + * resourceArn: "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetResourcePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/ListBillingViewsCommand.ts b/clients/client-billing/src/commands/ListBillingViewsCommand.ts index 2d4e8d690bc5c..f5e08c1c12e07 100644 --- a/clients/client-billing/src/commands/ListBillingViewsCommand.ts +++ b/clients/client-billing/src/commands/ListBillingViewsCommand.ts @@ -97,47 +97,49 @@ export interface ListBillingViewsCommandOutput extends ListBillingViewsResponse, * @throws {@link BillingServiceException} *

Base exception class for all service exceptions from Billing service.

* - * @public + * * @example Invoke ListBillingViews * ```javascript * // * const input = { - * "activeTimeRange": { - * "activeAfterInclusive": 1719792000, - * "activeBeforeInclusive": 1722470399.999 + * activeTimeRange: { + * activeAfterInclusive: 1719792000, + * activeBeforeInclusive: 1.722470399999E9 * } * }; * const command = new ListBillingViewsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "billingViews": [ + * billingViews: [ * { - * "name": "Primary Billing View Account 123456789101", - * "arn": "arn:aws:billing::123456789101:billingview/primary", - * "billingViewType": "PRIMARY", - * "ownerAccountId": "123456789101" + * arn: "arn:aws:billing::123456789101:billingview/primary", + * billingViewType: "PRIMARY", + * name: "Primary Billing View Account 123456789101", + * ownerAccountId: "123456789101" * } * ] * } * *\/ - * // example id: example-1 * ``` * * @example Error example for ListBillingViews * ```javascript * // * const input = { - * "activeTimeRange": { - * "activeAfterInclusive": 1719792001, - * "activeBeforeInclusive": 1719792000 + * activeTimeRange: { + * activeAfterInclusive: 1719792001, + * activeBeforeInclusive: 1719792000 * } * }; * const command = new ListBillingViewsCommand(input); - * await client.send(command); - * // example id: example-2 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ListBillingViewsCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/ListSourceViewsForBillingViewCommand.ts b/clients/client-billing/src/commands/ListSourceViewsForBillingViewCommand.ts index 770f5d3098ccc..d52044c206d19 100644 --- a/clients/client-billing/src/commands/ListSourceViewsForBillingViewCommand.ts +++ b/clients/client-billing/src/commands/ListSourceViewsForBillingViewCommand.ts @@ -86,25 +86,25 @@ export interface ListSourceViewsForBillingViewCommandOutput * @throws {@link BillingServiceException} *

Base exception class for all service exceptions from Billing service.

* - * @public + * * @example Invoke ListSourceViewsForBillingView * ```javascript * // * const input = { - * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" + * arn: "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" * }; * const command = new ListSourceViewsForBillingViewCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "sourceViews": [ + * sourceViews: [ * "arn:aws:billing::123456789101:billingview/primary" * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListSourceViewsForBillingViewCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/ListTagsForResourceCommand.ts b/clients/client-billing/src/commands/ListTagsForResourceCommand.ts index c5c42f835ed7c..2267064f3100e 100644 --- a/clients/client-billing/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-billing/src/commands/ListTagsForResourceCommand.ts @@ -81,28 +81,28 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link BillingServiceException} *

Base exception class for all service exceptions from Billing service.

* - * @public + * * @example Invoke ListTagsForResource * ```javascript * // * const input = { - * "resourceArn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" + * resourceArn: "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "resourceTags": [ + * resourceTags: [ * { - * "key": "ExampleTagKey", - * "value": "ExampleTagValue" + * key: "ExampleTagKey", + * value: "ExampleTagValue" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/TagResourceCommand.ts b/clients/client-billing/src/commands/TagResourceCommand.ts index 8c00dcbb03cf8..ef645a4279fca 100644 --- a/clients/client-billing/src/commands/TagResourceCommand.ts +++ b/clients/client-billing/src/commands/TagResourceCommand.ts @@ -81,24 +81,27 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link BillingServiceException} *

Base exception class for all service exceptions from Billing service.

* - * @public + * * @example Invoke TagResource * ```javascript * // * const input = { - * "resourceArn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", - * "resourceTags": [ + * resourceArn: "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", + * resourceTags: [ * { - * "key": "ExampleTagKey", - * "value": "ExampleTagValue" + * key: "ExampleTagKey", + * value: "ExampleTagValue" * } * ] * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/UntagResourceCommand.ts b/clients/client-billing/src/commands/UntagResourceCommand.ts index 9ccf962ea2065..b08d934c75243 100644 --- a/clients/client-billing/src/commands/UntagResourceCommand.ts +++ b/clients/client-billing/src/commands/UntagResourceCommand.ts @@ -78,21 +78,24 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link BillingServiceException} *

Base exception class for all service exceptions from Billing service.

* - * @public + * * @example Invoke UntagResource * ```javascript * // * const input = { - * "resourceArn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", - * "resourceTagKeys": [ + * resourceArn: "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", + * resourceTagKeys: [ * "ExampleTagKey" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-billing/src/commands/UpdateBillingViewCommand.ts b/clients/client-billing/src/commands/UpdateBillingViewCommand.ts index 00388aafa157e..9ca0fd2f3fcf6 100644 --- a/clients/client-billing/src/commands/UpdateBillingViewCommand.ts +++ b/clients/client-billing/src/commands/UpdateBillingViewCommand.ts @@ -107,34 +107,34 @@ export interface UpdateBillingViewCommandOutput extends UpdateBillingViewRespons * @throws {@link BillingServiceException} *

Base exception class for all service exceptions from Billing service.

* - * @public + * * @example Invoke UpdateBillingView * ```javascript * // * const input = { - * "name": "Example Custom Billing View", - * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", - * "dataFilterExpression": { - * "dimensions": { - * "key": "LINKED_ACCOUNT", - * "values": [ + * arn: "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", + * dataFilterExpression: { + * dimensions: { + * key: "LINKED_ACCOUNT", + * values: [ * "000000000000" * ] * } * }, - * "description": "Custom Billing View Example -- updated description" + * description: "Custom Billing View Example -- updated description", + * name: "Example Custom Billing View" * }; * const command = new UpdateBillingViewCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "arn": "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", - * "updatedAt": 1719792001 + * arn: "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899", + * updatedAt: 1719792001 * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateBillingViewCommand extends $Command .classBuilder< diff --git a/clients/client-billingconductor/src/commands/AssociateAccountsCommand.ts b/clients/client-billingconductor/src/commands/AssociateAccountsCommand.ts index 16611600ee9b3..0e7fafe9ece20 100644 --- a/clients/client-billingconductor/src/commands/AssociateAccountsCommand.ts +++ b/clients/client-billingconductor/src/commands/AssociateAccountsCommand.ts @@ -88,6 +88,7 @@ export interface AssociateAccountsCommandOutput extends AssociateAccountsOutput, * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class AssociateAccountsCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/AssociatePricingRulesCommand.ts b/clients/client-billingconductor/src/commands/AssociatePricingRulesCommand.ts index 5a8b8b68eb758..cf53a6ac4f03d 100644 --- a/clients/client-billingconductor/src/commands/AssociatePricingRulesCommand.ts +++ b/clients/client-billingconductor/src/commands/AssociatePricingRulesCommand.ts @@ -86,6 +86,7 @@ export interface AssociatePricingRulesCommandOutput extends AssociatePricingRule * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class AssociatePricingRulesCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/BatchAssociateResourcesToCustomLineItemCommand.ts b/clients/client-billingconductor/src/commands/BatchAssociateResourcesToCustomLineItemCommand.ts index 5b1d6521f209c..05f7ba8ee92e4 100644 --- a/clients/client-billingconductor/src/commands/BatchAssociateResourcesToCustomLineItemCommand.ts +++ b/clients/client-billingconductor/src/commands/BatchAssociateResourcesToCustomLineItemCommand.ts @@ -117,6 +117,7 @@ export interface BatchAssociateResourcesToCustomLineItemCommandOutput * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class BatchAssociateResourcesToCustomLineItemCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/BatchDisassociateResourcesFromCustomLineItemCommand.ts b/clients/client-billingconductor/src/commands/BatchDisassociateResourcesFromCustomLineItemCommand.ts index 7e0a0c4f3bf95..35ba44e182134 100644 --- a/clients/client-billingconductor/src/commands/BatchDisassociateResourcesFromCustomLineItemCommand.ts +++ b/clients/client-billingconductor/src/commands/BatchDisassociateResourcesFromCustomLineItemCommand.ts @@ -113,6 +113,7 @@ export interface BatchDisassociateResourcesFromCustomLineItemCommandOutput * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class BatchDisassociateResourcesFromCustomLineItemCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/CreateBillingGroupCommand.ts b/clients/client-billingconductor/src/commands/CreateBillingGroupCommand.ts index fdf6962a1dd28..fde09ff66f045 100644 --- a/clients/client-billingconductor/src/commands/CreateBillingGroupCommand.ts +++ b/clients/client-billingconductor/src/commands/CreateBillingGroupCommand.ts @@ -99,6 +99,7 @@ export interface CreateBillingGroupCommandOutput extends CreateBillingGroupOutpu * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class CreateBillingGroupCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/CreateCustomLineItemCommand.ts b/clients/client-billingconductor/src/commands/CreateCustomLineItemCommand.ts index dd8a504dee3fb..fc6f3ecf3b089 100644 --- a/clients/client-billingconductor/src/commands/CreateCustomLineItemCommand.ts +++ b/clients/client-billingconductor/src/commands/CreateCustomLineItemCommand.ts @@ -116,6 +116,7 @@ export interface CreateCustomLineItemCommandOutput extends CreateCustomLineItemO * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class CreateCustomLineItemCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/CreatePricingPlanCommand.ts b/clients/client-billingconductor/src/commands/CreatePricingPlanCommand.ts index 64994c81a8840..cca717beea42f 100644 --- a/clients/client-billingconductor/src/commands/CreatePricingPlanCommand.ts +++ b/clients/client-billingconductor/src/commands/CreatePricingPlanCommand.ts @@ -95,6 +95,7 @@ export interface CreatePricingPlanCommandOutput extends CreatePricingPlanOutput, * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class CreatePricingPlanCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/CreatePricingRuleCommand.ts b/clients/client-billingconductor/src/commands/CreatePricingRuleCommand.ts index 99037fdc560b4..0eb6b20b8c829 100644 --- a/clients/client-billingconductor/src/commands/CreatePricingRuleCommand.ts +++ b/clients/client-billingconductor/src/commands/CreatePricingRuleCommand.ts @@ -101,6 +101,7 @@ export interface CreatePricingRuleCommandOutput extends CreatePricingRuleOutput, * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class CreatePricingRuleCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/DeleteBillingGroupCommand.ts b/clients/client-billingconductor/src/commands/DeleteBillingGroupCommand.ts index db51751246f69..fa7ed23279b2c 100644 --- a/clients/client-billingconductor/src/commands/DeleteBillingGroupCommand.ts +++ b/clients/client-billingconductor/src/commands/DeleteBillingGroupCommand.ts @@ -72,6 +72,7 @@ export interface DeleteBillingGroupCommandOutput extends DeleteBillingGroupOutpu * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class DeleteBillingGroupCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/DeleteCustomLineItemCommand.ts b/clients/client-billingconductor/src/commands/DeleteCustomLineItemCommand.ts index c3828401716ba..f3269817025db 100644 --- a/clients/client-billingconductor/src/commands/DeleteCustomLineItemCommand.ts +++ b/clients/client-billingconductor/src/commands/DeleteCustomLineItemCommand.ts @@ -80,6 +80,7 @@ export interface DeleteCustomLineItemCommandOutput extends DeleteCustomLineItemO * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class DeleteCustomLineItemCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/DeletePricingPlanCommand.ts b/clients/client-billingconductor/src/commands/DeletePricingPlanCommand.ts index 9f7eb6cf07872..0d21457722d92 100644 --- a/clients/client-billingconductor/src/commands/DeletePricingPlanCommand.ts +++ b/clients/client-billingconductor/src/commands/DeletePricingPlanCommand.ts @@ -75,6 +75,7 @@ export interface DeletePricingPlanCommandOutput extends DeletePricingPlanOutput, * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class DeletePricingPlanCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/DeletePricingRuleCommand.ts b/clients/client-billingconductor/src/commands/DeletePricingRuleCommand.ts index d2abf692b402f..8d71fad7ceb60 100644 --- a/clients/client-billingconductor/src/commands/DeletePricingRuleCommand.ts +++ b/clients/client-billingconductor/src/commands/DeletePricingRuleCommand.ts @@ -74,6 +74,7 @@ export interface DeletePricingRuleCommandOutput extends DeletePricingRuleOutput, * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class DeletePricingRuleCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/DisassociateAccountsCommand.ts b/clients/client-billingconductor/src/commands/DisassociateAccountsCommand.ts index 78d6780967aca..ac472c9bb0df5 100644 --- a/clients/client-billingconductor/src/commands/DisassociateAccountsCommand.ts +++ b/clients/client-billingconductor/src/commands/DisassociateAccountsCommand.ts @@ -81,6 +81,7 @@ export interface DisassociateAccountsCommandOutput extends DisassociateAccountsO * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class DisassociateAccountsCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/DisassociatePricingRulesCommand.ts b/clients/client-billingconductor/src/commands/DisassociatePricingRulesCommand.ts index 469ff03c09dba..228fa5a2409c0 100644 --- a/clients/client-billingconductor/src/commands/DisassociatePricingRulesCommand.ts +++ b/clients/client-billingconductor/src/commands/DisassociatePricingRulesCommand.ts @@ -83,6 +83,7 @@ export interface DisassociatePricingRulesCommandOutput extends DisassociatePrici * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class DisassociatePricingRulesCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/GetBillingGroupCostReportCommand.ts b/clients/client-billingconductor/src/commands/GetBillingGroupCostReportCommand.ts index 6ca7107d2d54f..ec9258b41f2bc 100644 --- a/clients/client-billingconductor/src/commands/GetBillingGroupCostReportCommand.ts +++ b/clients/client-billingconductor/src/commands/GetBillingGroupCostReportCommand.ts @@ -100,6 +100,7 @@ export interface GetBillingGroupCostReportCommandOutput extends GetBillingGroupC * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class GetBillingGroupCostReportCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/ListAccountAssociationsCommand.ts b/clients/client-billingconductor/src/commands/ListAccountAssociationsCommand.ts index 5d09879a69ecf..9b239ac5bf3bc 100644 --- a/clients/client-billingconductor/src/commands/ListAccountAssociationsCommand.ts +++ b/clients/client-billingconductor/src/commands/ListAccountAssociationsCommand.ts @@ -97,6 +97,7 @@ export interface ListAccountAssociationsCommandOutput extends ListAccountAssocia * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class ListAccountAssociationsCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/ListBillingGroupCostReportsCommand.ts b/clients/client-billingconductor/src/commands/ListBillingGroupCostReportsCommand.ts index 3a69c7a5c0b43..7fe8349b4ec9a 100644 --- a/clients/client-billingconductor/src/commands/ListBillingGroupCostReportsCommand.ts +++ b/clients/client-billingconductor/src/commands/ListBillingGroupCostReportsCommand.ts @@ -95,6 +95,7 @@ export interface ListBillingGroupCostReportsCommandOutput extends ListBillingGro * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class ListBillingGroupCostReportsCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/ListBillingGroupsCommand.ts b/clients/client-billingconductor/src/commands/ListBillingGroupsCommand.ts index 2630d198befb5..53a2e251cc668 100644 --- a/clients/client-billingconductor/src/commands/ListBillingGroupsCommand.ts +++ b/clients/client-billingconductor/src/commands/ListBillingGroupsCommand.ts @@ -109,6 +109,7 @@ export interface ListBillingGroupsCommandOutput extends ListBillingGroupsOutput, * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class ListBillingGroupsCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/ListCustomLineItemVersionsCommand.ts b/clients/client-billingconductor/src/commands/ListCustomLineItemVersionsCommand.ts index f239a6b280536..99f33aeba416a 100644 --- a/clients/client-billingconductor/src/commands/ListCustomLineItemVersionsCommand.ts +++ b/clients/client-billingconductor/src/commands/ListCustomLineItemVersionsCommand.ts @@ -117,6 +117,7 @@ export interface ListCustomLineItemVersionsCommandOutput extends ListCustomLineI * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class ListCustomLineItemVersionsCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/ListCustomLineItemsCommand.ts b/clients/client-billingconductor/src/commands/ListCustomLineItemsCommand.ts index ebbce38576b73..e717091538b09 100644 --- a/clients/client-billingconductor/src/commands/ListCustomLineItemsCommand.ts +++ b/clients/client-billingconductor/src/commands/ListCustomLineItemsCommand.ts @@ -129,6 +129,7 @@ export interface ListCustomLineItemsCommandOutput extends ListCustomLineItemsOut * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class ListCustomLineItemsCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/ListPricingPlansAssociatedWithPricingRuleCommand.ts b/clients/client-billingconductor/src/commands/ListPricingPlansAssociatedWithPricingRuleCommand.ts index 4a8745ef706ec..c90bff242cddc 100644 --- a/clients/client-billingconductor/src/commands/ListPricingPlansAssociatedWithPricingRuleCommand.ts +++ b/clients/client-billingconductor/src/commands/ListPricingPlansAssociatedWithPricingRuleCommand.ts @@ -93,6 +93,7 @@ export interface ListPricingPlansAssociatedWithPricingRuleCommandOutput * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class ListPricingPlansAssociatedWithPricingRuleCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/ListPricingPlansCommand.ts b/clients/client-billingconductor/src/commands/ListPricingPlansCommand.ts index 769bf828015f8..cc5d9a7eed25f 100644 --- a/clients/client-billingconductor/src/commands/ListPricingPlansCommand.ts +++ b/clients/client-billingconductor/src/commands/ListPricingPlansCommand.ts @@ -93,6 +93,7 @@ export interface ListPricingPlansCommandOutput extends ListPricingPlansOutput, _ * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class ListPricingPlansCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/ListPricingRulesAssociatedToPricingPlanCommand.ts b/clients/client-billingconductor/src/commands/ListPricingRulesAssociatedToPricingPlanCommand.ts index 894c9e389f052..a1bd948434a42 100644 --- a/clients/client-billingconductor/src/commands/ListPricingRulesAssociatedToPricingPlanCommand.ts +++ b/clients/client-billingconductor/src/commands/ListPricingRulesAssociatedToPricingPlanCommand.ts @@ -93,6 +93,7 @@ export interface ListPricingRulesAssociatedToPricingPlanCommandOutput * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class ListPricingRulesAssociatedToPricingPlanCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/ListPricingRulesCommand.ts b/clients/client-billingconductor/src/commands/ListPricingRulesCommand.ts index 82ddc6a004ac1..006fa8bef0a05 100644 --- a/clients/client-billingconductor/src/commands/ListPricingRulesCommand.ts +++ b/clients/client-billingconductor/src/commands/ListPricingRulesCommand.ts @@ -106,6 +106,7 @@ export interface ListPricingRulesCommandOutput extends ListPricingRulesOutput, _ * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class ListPricingRulesCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/ListResourcesAssociatedToCustomLineItemCommand.ts b/clients/client-billingconductor/src/commands/ListResourcesAssociatedToCustomLineItemCommand.ts index 90af76724d821..9353a434e4581 100644 --- a/clients/client-billingconductor/src/commands/ListResourcesAssociatedToCustomLineItemCommand.ts +++ b/clients/client-billingconductor/src/commands/ListResourcesAssociatedToCustomLineItemCommand.ts @@ -99,6 +99,7 @@ export interface ListResourcesAssociatedToCustomLineItemCommandOutput * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class ListResourcesAssociatedToCustomLineItemCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/ListTagsForResourceCommand.ts b/clients/client-billingconductor/src/commands/ListTagsForResourceCommand.ts index 67bf16c5f14ca..b02f5ad8756ff 100644 --- a/clients/client-billingconductor/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-billingconductor/src/commands/ListTagsForResourceCommand.ts @@ -78,6 +78,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/TagResourceCommand.ts b/clients/client-billingconductor/src/commands/TagResourceCommand.ts index 60f252830b986..f5fd775c7354e 100644 --- a/clients/client-billingconductor/src/commands/TagResourceCommand.ts +++ b/clients/client-billingconductor/src/commands/TagResourceCommand.ts @@ -77,6 +77,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/UntagResourceCommand.ts b/clients/client-billingconductor/src/commands/UntagResourceCommand.ts index 09b1a60761ebb..6891eac9b11e7 100644 --- a/clients/client-billingconductor/src/commands/UntagResourceCommand.ts +++ b/clients/client-billingconductor/src/commands/UntagResourceCommand.ts @@ -77,6 +77,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/UpdateBillingGroupCommand.ts b/clients/client-billingconductor/src/commands/UpdateBillingGroupCommand.ts index 37540e9ad11cd..36c2c628132bc 100644 --- a/clients/client-billingconductor/src/commands/UpdateBillingGroupCommand.ts +++ b/clients/client-billingconductor/src/commands/UpdateBillingGroupCommand.ts @@ -104,6 +104,7 @@ export interface UpdateBillingGroupCommandOutput extends UpdateBillingGroupOutpu * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class UpdateBillingGroupCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/UpdateCustomLineItemCommand.ts b/clients/client-billingconductor/src/commands/UpdateCustomLineItemCommand.ts index c66cd2ff1dabc..122420b310acf 100644 --- a/clients/client-billingconductor/src/commands/UpdateCustomLineItemCommand.ts +++ b/clients/client-billingconductor/src/commands/UpdateCustomLineItemCommand.ts @@ -127,6 +127,7 @@ export interface UpdateCustomLineItemCommandOutput extends UpdateCustomLineItemO * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class UpdateCustomLineItemCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/UpdatePricingPlanCommand.ts b/clients/client-billingconductor/src/commands/UpdatePricingPlanCommand.ts index 97467432fa85c..cef2357288de7 100644 --- a/clients/client-billingconductor/src/commands/UpdatePricingPlanCommand.ts +++ b/clients/client-billingconductor/src/commands/UpdatePricingPlanCommand.ts @@ -90,6 +90,7 @@ export interface UpdatePricingPlanCommandOutput extends UpdatePricingPlanOutput, * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class UpdatePricingPlanCommand extends $Command diff --git a/clients/client-billingconductor/src/commands/UpdatePricingRuleCommand.ts b/clients/client-billingconductor/src/commands/UpdatePricingRuleCommand.ts index 93c973897cad5..73ccb561f2e66 100644 --- a/clients/client-billingconductor/src/commands/UpdatePricingRuleCommand.ts +++ b/clients/client-billingconductor/src/commands/UpdatePricingRuleCommand.ts @@ -110,6 +110,7 @@ export interface UpdatePricingRuleCommandOutput extends UpdatePricingRuleOutput, * @throws {@link BillingconductorServiceException} *

Base exception class for all service exceptions from Billingconductor service.

* + * * @public */ export class UpdatePricingRuleCommand extends $Command diff --git a/clients/client-braket/src/commands/CancelJobCommand.ts b/clients/client-braket/src/commands/CancelJobCommand.ts index 7da8488502831..2ab329aa2f8db 100644 --- a/clients/client-braket/src/commands/CancelJobCommand.ts +++ b/clients/client-braket/src/commands/CancelJobCommand.ts @@ -75,6 +75,7 @@ export interface CancelJobCommandOutput extends CancelJobResponse, __MetadataBea * @throws {@link BraketServiceException} *

Base exception class for all service exceptions from Braket service.

* + * * @public */ export class CancelJobCommand extends $Command diff --git a/clients/client-braket/src/commands/CancelQuantumTaskCommand.ts b/clients/client-braket/src/commands/CancelQuantumTaskCommand.ts index 1e49bded94169..0c726abadda59 100644 --- a/clients/client-braket/src/commands/CancelQuantumTaskCommand.ts +++ b/clients/client-braket/src/commands/CancelQuantumTaskCommand.ts @@ -76,6 +76,7 @@ export interface CancelQuantumTaskCommandOutput extends CancelQuantumTaskRespons * @throws {@link BraketServiceException} *

Base exception class for all service exceptions from Braket service.

* + * * @public */ export class CancelQuantumTaskCommand extends $Command diff --git a/clients/client-braket/src/commands/CreateJobCommand.ts b/clients/client-braket/src/commands/CreateJobCommand.ts index 6a7ee9429ba8b..17bad276ecb7c 100644 --- a/clients/client-braket/src/commands/CreateJobCommand.ts +++ b/clients/client-braket/src/commands/CreateJobCommand.ts @@ -134,6 +134,7 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea * @throws {@link BraketServiceException} *

Base exception class for all service exceptions from Braket service.

* + * * @public */ export class CreateJobCommand extends $Command diff --git a/clients/client-braket/src/commands/CreateQuantumTaskCommand.ts b/clients/client-braket/src/commands/CreateQuantumTaskCommand.ts index 7e8c3accbffb0..01fe47697c8ad 100644 --- a/clients/client-braket/src/commands/CreateQuantumTaskCommand.ts +++ b/clients/client-braket/src/commands/CreateQuantumTaskCommand.ts @@ -93,6 +93,7 @@ export interface CreateQuantumTaskCommandOutput extends CreateQuantumTaskRespons * @throws {@link BraketServiceException} *

Base exception class for all service exceptions from Braket service.

* + * * @public */ export class CreateQuantumTaskCommand extends $Command diff --git a/clients/client-braket/src/commands/GetDeviceCommand.ts b/clients/client-braket/src/commands/GetDeviceCommand.ts index 9de914f255329..7910647a0adf0 100644 --- a/clients/client-braket/src/commands/GetDeviceCommand.ts +++ b/clients/client-braket/src/commands/GetDeviceCommand.ts @@ -92,6 +92,7 @@ export interface GetDeviceCommandOutput extends GetDeviceResponse, __MetadataBea * @throws {@link BraketServiceException} *

Base exception class for all service exceptions from Braket service.

* + * * @public */ export class GetDeviceCommand extends $Command diff --git a/clients/client-braket/src/commands/GetJobCommand.ts b/clients/client-braket/src/commands/GetJobCommand.ts index 4b9f5c207fdb8..945ffa15f11c3 100644 --- a/clients/client-braket/src/commands/GetJobCommand.ts +++ b/clients/client-braket/src/commands/GetJobCommand.ts @@ -146,6 +146,7 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {} * @throws {@link BraketServiceException} *

Base exception class for all service exceptions from Braket service.

* + * * @public */ export class GetJobCommand extends $Command diff --git a/clients/client-braket/src/commands/GetQuantumTaskCommand.ts b/clients/client-braket/src/commands/GetQuantumTaskCommand.ts index 2d94fb44adc89..a96a8eb7c485b 100644 --- a/clients/client-braket/src/commands/GetQuantumTaskCommand.ts +++ b/clients/client-braket/src/commands/GetQuantumTaskCommand.ts @@ -99,6 +99,7 @@ export interface GetQuantumTaskCommandOutput extends GetQuantumTaskResponse, __M * @throws {@link BraketServiceException} *

Base exception class for all service exceptions from Braket service.

* + * * @public */ export class GetQuantumTaskCommand extends $Command diff --git a/clients/client-braket/src/commands/ListTagsForResourceCommand.ts b/clients/client-braket/src/commands/ListTagsForResourceCommand.ts index 8a44f57ea3161..22e9e5a1298d9 100644 --- a/clients/client-braket/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-braket/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link BraketServiceException} *

Base exception class for all service exceptions from Braket service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-braket/src/commands/SearchDevicesCommand.ts b/clients/client-braket/src/commands/SearchDevicesCommand.ts index df596c9463ef3..d7c0e178a1bdb 100644 --- a/clients/client-braket/src/commands/SearchDevicesCommand.ts +++ b/clients/client-braket/src/commands/SearchDevicesCommand.ts @@ -86,6 +86,7 @@ export interface SearchDevicesCommandOutput extends SearchDevicesResponse, __Met * @throws {@link BraketServiceException} *

Base exception class for all service exceptions from Braket service.

* + * * @public */ export class SearchDevicesCommand extends $Command diff --git a/clients/client-braket/src/commands/SearchJobsCommand.ts b/clients/client-braket/src/commands/SearchJobsCommand.ts index a6d7dbd1a8fe3..457e34ee070e9 100644 --- a/clients/client-braket/src/commands/SearchJobsCommand.ts +++ b/clients/client-braket/src/commands/SearchJobsCommand.ts @@ -92,6 +92,7 @@ export interface SearchJobsCommandOutput extends SearchJobsResponse, __MetadataB * @throws {@link BraketServiceException} *

Base exception class for all service exceptions from Braket service.

* + * * @public */ export class SearchJobsCommand extends $Command diff --git a/clients/client-braket/src/commands/SearchQuantumTasksCommand.ts b/clients/client-braket/src/commands/SearchQuantumTasksCommand.ts index 2a2fc665fad8d..0549b5cc6c188 100644 --- a/clients/client-braket/src/commands/SearchQuantumTasksCommand.ts +++ b/clients/client-braket/src/commands/SearchQuantumTasksCommand.ts @@ -93,6 +93,7 @@ export interface SearchQuantumTasksCommandOutput extends SearchQuantumTasksRespo * @throws {@link BraketServiceException} *

Base exception class for all service exceptions from Braket service.

* + * * @public */ export class SearchQuantumTasksCommand extends $Command diff --git a/clients/client-braket/src/commands/TagResourceCommand.ts b/clients/client-braket/src/commands/TagResourceCommand.ts index 52a18fcf4e82c..ee187199c8bf0 100644 --- a/clients/client-braket/src/commands/TagResourceCommand.ts +++ b/clients/client-braket/src/commands/TagResourceCommand.ts @@ -66,6 +66,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link BraketServiceException} *

Base exception class for all service exceptions from Braket service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-braket/src/commands/UntagResourceCommand.ts b/clients/client-braket/src/commands/UntagResourceCommand.ts index f0b2190b7971f..a7e557b514470 100644 --- a/clients/client-braket/src/commands/UntagResourceCommand.ts +++ b/clients/client-braket/src/commands/UntagResourceCommand.ts @@ -66,6 +66,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link BraketServiceException} *

Base exception class for all service exceptions from Braket service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-budgets/src/commands/CreateBudgetActionCommand.ts b/clients/client-budgets/src/commands/CreateBudgetActionCommand.ts index 6b87fa237f821..f40b7ba447b2c 100644 --- a/clients/client-budgets/src/commands/CreateBudgetActionCommand.ts +++ b/clients/client-budgets/src/commands/CreateBudgetActionCommand.ts @@ -136,6 +136,7 @@ export interface CreateBudgetActionCommandOutput extends CreateBudgetActionRespo * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class CreateBudgetActionCommand extends $Command diff --git a/clients/client-budgets/src/commands/CreateBudgetCommand.ts b/clients/client-budgets/src/commands/CreateBudgetCommand.ts index e9d61beb2d388..94b71a24b812c 100644 --- a/clients/client-budgets/src/commands/CreateBudgetCommand.ts +++ b/clients/client-budgets/src/commands/CreateBudgetCommand.ts @@ -157,6 +157,7 @@ export interface CreateBudgetCommandOutput extends CreateBudgetResponse, __Metad * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class CreateBudgetCommand extends $Command diff --git a/clients/client-budgets/src/commands/CreateNotificationCommand.ts b/clients/client-budgets/src/commands/CreateNotificationCommand.ts index df63f646d01ea..861a049bc55de 100644 --- a/clients/client-budgets/src/commands/CreateNotificationCommand.ts +++ b/clients/client-budgets/src/commands/CreateNotificationCommand.ts @@ -93,6 +93,7 @@ export interface CreateNotificationCommandOutput extends CreateNotificationRespo * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class CreateNotificationCommand extends $Command diff --git a/clients/client-budgets/src/commands/CreateSubscriberCommand.ts b/clients/client-budgets/src/commands/CreateSubscriberCommand.ts index 5f1ddf0176c95..faef09a6dd088 100644 --- a/clients/client-budgets/src/commands/CreateSubscriberCommand.ts +++ b/clients/client-budgets/src/commands/CreateSubscriberCommand.ts @@ -91,6 +91,7 @@ export interface CreateSubscriberCommandOutput extends CreateSubscriberResponse, * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class CreateSubscriberCommand extends $Command diff --git a/clients/client-budgets/src/commands/DeleteBudgetActionCommand.ts b/clients/client-budgets/src/commands/DeleteBudgetActionCommand.ts index 5904f65eff602..dbe8d075c8dfd 100644 --- a/clients/client-budgets/src/commands/DeleteBudgetActionCommand.ts +++ b/clients/client-budgets/src/commands/DeleteBudgetActionCommand.ts @@ -130,6 +130,7 @@ export interface DeleteBudgetActionCommandOutput extends DeleteBudgetActionRespo * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class DeleteBudgetActionCommand extends $Command diff --git a/clients/client-budgets/src/commands/DeleteBudgetCommand.ts b/clients/client-budgets/src/commands/DeleteBudgetCommand.ts index 8bda54945b900..d39cddb26cc99 100644 --- a/clients/client-budgets/src/commands/DeleteBudgetCommand.ts +++ b/clients/client-budgets/src/commands/DeleteBudgetCommand.ts @@ -73,6 +73,7 @@ export interface DeleteBudgetCommandOutput extends DeleteBudgetResponse, __Metad * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class DeleteBudgetCommand extends $Command diff --git a/clients/client-budgets/src/commands/DeleteNotificationCommand.ts b/clients/client-budgets/src/commands/DeleteNotificationCommand.ts index 70a546a4d3a1b..e3ab32eafa978 100644 --- a/clients/client-budgets/src/commands/DeleteNotificationCommand.ts +++ b/clients/client-budgets/src/commands/DeleteNotificationCommand.ts @@ -80,6 +80,7 @@ export interface DeleteNotificationCommandOutput extends DeleteNotificationRespo * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class DeleteNotificationCommand extends $Command diff --git a/clients/client-budgets/src/commands/DeleteSubscriberCommand.ts b/clients/client-budgets/src/commands/DeleteSubscriberCommand.ts index cef4fc7c513dd..f34d631162339 100644 --- a/clients/client-budgets/src/commands/DeleteSubscriberCommand.ts +++ b/clients/client-budgets/src/commands/DeleteSubscriberCommand.ts @@ -88,6 +88,7 @@ export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse, * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class DeleteSubscriberCommand extends $Command diff --git a/clients/client-budgets/src/commands/DescribeBudgetActionCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetActionCommand.ts index 5219e22029d01..a7da65e07fe26 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetActionCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetActionCommand.ts @@ -126,6 +126,7 @@ export interface DescribeBudgetActionCommandOutput extends DescribeBudgetActionR * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class DescribeBudgetActionCommand extends $Command diff --git a/clients/client-budgets/src/commands/DescribeBudgetActionHistoriesCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetActionHistoriesCommand.ts index 69caaad7cb778..9373326538a95 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetActionHistoriesCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetActionHistoriesCommand.ts @@ -149,6 +149,7 @@ export interface DescribeBudgetActionHistoriesCommandOutput * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class DescribeBudgetActionHistoriesCommand extends $Command diff --git a/clients/client-budgets/src/commands/DescribeBudgetActionsForAccountCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetActionsForAccountCommand.ts index 973082e2f7863..9dda3dc58dff0 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetActionsForAccountCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetActionsForAccountCommand.ts @@ -132,6 +132,7 @@ export interface DescribeBudgetActionsForAccountCommandOutput * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class DescribeBudgetActionsForAccountCommand extends $Command diff --git a/clients/client-budgets/src/commands/DescribeBudgetActionsForBudgetCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetActionsForBudgetCommand.ts index e169cf7921e5f..548a496fceaf4 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetActionsForBudgetCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetActionsForBudgetCommand.ts @@ -136,6 +136,7 @@ export interface DescribeBudgetActionsForBudgetCommandOutput * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class DescribeBudgetActionsForBudgetCommand extends $Command diff --git a/clients/client-budgets/src/commands/DescribeBudgetCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetCommand.ts index 45e5c61a9fd0c..f5145e356a1a4 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetCommand.ts @@ -130,6 +130,7 @@ export interface DescribeBudgetCommandOutput extends DescribeBudgetResponse, __M * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class DescribeBudgetCommand extends $Command diff --git a/clients/client-budgets/src/commands/DescribeBudgetNotificationsForAccountCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetNotificationsForAccountCommand.ts index a23d1c302afc6..e9d69cb744eb2 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetNotificationsForAccountCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetNotificationsForAccountCommand.ts @@ -102,6 +102,7 @@ export interface DescribeBudgetNotificationsForAccountCommandOutput * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class DescribeBudgetNotificationsForAccountCommand extends $Command diff --git a/clients/client-budgets/src/commands/DescribeBudgetPerformanceHistoryCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetPerformanceHistoryCommand.ts index 03ef12aeba0ec..2dcccedc22958 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetPerformanceHistoryCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetPerformanceHistoryCommand.ts @@ -128,6 +128,7 @@ export interface DescribeBudgetPerformanceHistoryCommandOutput * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class DescribeBudgetPerformanceHistoryCommand extends $Command diff --git a/clients/client-budgets/src/commands/DescribeBudgetsCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetsCommand.ts index 30f169bfa6045..6f43189fee522 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetsCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetsCommand.ts @@ -140,6 +140,7 @@ export interface DescribeBudgetsCommandOutput extends DescribeBudgetsResponse, _ * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class DescribeBudgetsCommand extends $Command diff --git a/clients/client-budgets/src/commands/DescribeNotificationsForBudgetCommand.ts b/clients/client-budgets/src/commands/DescribeNotificationsForBudgetCommand.ts index ff0885d235ca7..716f1553e1400 100644 --- a/clients/client-budgets/src/commands/DescribeNotificationsForBudgetCommand.ts +++ b/clients/client-budgets/src/commands/DescribeNotificationsForBudgetCommand.ts @@ -94,6 +94,7 @@ export interface DescribeNotificationsForBudgetCommandOutput * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class DescribeNotificationsForBudgetCommand extends $Command diff --git a/clients/client-budgets/src/commands/DescribeSubscribersForNotificationCommand.ts b/clients/client-budgets/src/commands/DescribeSubscribersForNotificationCommand.ts index 18f868775f902..bf8a929809d2c 100644 --- a/clients/client-budgets/src/commands/DescribeSubscribersForNotificationCommand.ts +++ b/clients/client-budgets/src/commands/DescribeSubscribersForNotificationCommand.ts @@ -102,6 +102,7 @@ export interface DescribeSubscribersForNotificationCommandOutput * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class DescribeSubscribersForNotificationCommand extends $Command diff --git a/clients/client-budgets/src/commands/ExecuteBudgetActionCommand.ts b/clients/client-budgets/src/commands/ExecuteBudgetActionCommand.ts index 2e2ca09b593ab..39c30cad6f2d8 100644 --- a/clients/client-budgets/src/commands/ExecuteBudgetActionCommand.ts +++ b/clients/client-budgets/src/commands/ExecuteBudgetActionCommand.ts @@ -83,6 +83,7 @@ export interface ExecuteBudgetActionCommandOutput extends ExecuteBudgetActionRes * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class ExecuteBudgetActionCommand extends $Command diff --git a/clients/client-budgets/src/commands/ListTagsForResourceCommand.ts b/clients/client-budgets/src/commands/ListTagsForResourceCommand.ts index 5b18618187425..cd9ced6f3ad37 100644 --- a/clients/client-budgets/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-budgets/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-budgets/src/commands/TagResourceCommand.ts b/clients/client-budgets/src/commands/TagResourceCommand.ts index be9d836c3f37d..0903e4d8349e6 100644 --- a/clients/client-budgets/src/commands/TagResourceCommand.ts +++ b/clients/client-budgets/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-budgets/src/commands/UntagResourceCommand.ts b/clients/client-budgets/src/commands/UntagResourceCommand.ts index bfcab383eef2e..7ef322ff5895a 100644 --- a/clients/client-budgets/src/commands/UntagResourceCommand.ts +++ b/clients/client-budgets/src/commands/UntagResourceCommand.ts @@ -72,6 +72,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-budgets/src/commands/UpdateBudgetActionCommand.ts b/clients/client-budgets/src/commands/UpdateBudgetActionCommand.ts index 1c27888934883..ef7025d31a833 100644 --- a/clients/client-budgets/src/commands/UpdateBudgetActionCommand.ts +++ b/clients/client-budgets/src/commands/UpdateBudgetActionCommand.ts @@ -217,6 +217,7 @@ export interface UpdateBudgetActionCommandOutput extends UpdateBudgetActionRespo * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class UpdateBudgetActionCommand extends $Command diff --git a/clients/client-budgets/src/commands/UpdateBudgetCommand.ts b/clients/client-budgets/src/commands/UpdateBudgetCommand.ts index 485490894ca8f..62e723eb19c47 100644 --- a/clients/client-budgets/src/commands/UpdateBudgetCommand.ts +++ b/clients/client-budgets/src/commands/UpdateBudgetCommand.ts @@ -128,6 +128,7 @@ export interface UpdateBudgetCommandOutput extends UpdateBudgetResponse, __Metad * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class UpdateBudgetCommand extends $Command diff --git a/clients/client-budgets/src/commands/UpdateNotificationCommand.ts b/clients/client-budgets/src/commands/UpdateNotificationCommand.ts index cf2176c5fc964..0b458a9c484d0 100644 --- a/clients/client-budgets/src/commands/UpdateNotificationCommand.ts +++ b/clients/client-budgets/src/commands/UpdateNotificationCommand.ts @@ -87,6 +87,7 @@ export interface UpdateNotificationCommandOutput extends UpdateNotificationRespo * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class UpdateNotificationCommand extends $Command diff --git a/clients/client-budgets/src/commands/UpdateSubscriberCommand.ts b/clients/client-budgets/src/commands/UpdateSubscriberCommand.ts index 3212bcc05bc6b..33e9d2cdf503c 100644 --- a/clients/client-budgets/src/commands/UpdateSubscriberCommand.ts +++ b/clients/client-budgets/src/commands/UpdateSubscriberCommand.ts @@ -92,6 +92,7 @@ export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse, * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* + * * @public */ export class UpdateSubscriberCommand extends $Command diff --git a/clients/client-chatbot/src/commands/AssociateToConfigurationCommand.ts b/clients/client-chatbot/src/commands/AssociateToConfigurationCommand.ts index d6176bcae52e5..a3eca6c49bfd1 100644 --- a/clients/client-chatbot/src/commands/AssociateToConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/AssociateToConfigurationCommand.ts @@ -63,19 +63,22 @@ export interface AssociateToConfigurationCommandOutput extends AssociateToConfig * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* - * @public + * * @example Associate a custom action to a configuration * ```javascript * // Associate a custom action to a channel configuration, allowing it to be used in that channel * const input = { - * "ChatConfiguration": "arn:aws:chatbot::1234567890:chat-configuration/slack-channel/my-channel", - * "Resource": "arn:aws:chatbot::1234567890:custom-action/my-custom-action" + * ChatConfiguration: "arn:aws:chatbot::1234567890:chat-configuration/slack-channel/my-channel", + * Resource: "arn:aws:chatbot::1234567890:custom-action/my-custom-action" * }; * const command = new AssociateToConfigurationCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class AssociateToConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-chatbot/src/commands/CreateChimeWebhookConfigurationCommand.ts b/clients/client-chatbot/src/commands/CreateChimeWebhookConfigurationCommand.ts index eac1f80c2f0c6..956902ddf2597 100644 --- a/clients/client-chatbot/src/commands/CreateChimeWebhookConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/CreateChimeWebhookConfigurationCommand.ts @@ -110,6 +110,7 @@ export interface CreateChimeWebhookConfigurationCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class CreateChimeWebhookConfigurationCommand extends $Command diff --git a/clients/client-chatbot/src/commands/CreateCustomActionCommand.ts b/clients/client-chatbot/src/commands/CreateCustomActionCommand.ts index 18aba35dbc24d..ec9c665ce7cd6 100644 --- a/clients/client-chatbot/src/commands/CreateCustomActionCommand.ts +++ b/clients/client-chatbot/src/commands/CreateCustomActionCommand.ts @@ -97,52 +97,51 @@ export interface CreateCustomActionCommandOutput extends CreateCustomActionResul * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* - * @public + * * @example Create an alias that invokes a Lambda function * ```javascript * // Creates an alias that invokes a Lambda function from chat channels. You can use this alias by entering 'run invoke', after which you're prompted for the function name. * const input = { - * "ActionName": "my-custom-action", - * "AliasName": "invoke", - * "Definition": { - * "CommandText": "lambda invoke $functionName" + * ActionName: "my-custom-action", + * AliasName: "invoke", + * Definition: { + * CommandText: "lambda invoke $functionName" * } * }; * const command = new CreateCustomActionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CustomActionArn": "arn:aws:chatbot::1234567890:custom-action/my-custom-action" + * CustomActionArn: "arn:aws:chatbot::1234567890:custom-action/my-custom-action" * } * *\/ - * // example id: example-1 * ``` * * @example Create a custom action to list alarms * ```javascript * // Creates a button on all Cloudwatch notifications that lists alarms in the ‘ALARM’ state. * const input = { - * "ActionName": "describe-alarms", - * "Attachments": [ + * ActionName: "describe-alarms", + * Attachments: [ * { - * "ButtonText": "List alarms", - * "NotificationType": "CloudWatch" + * ButtonText: "List alarms", + * NotificationType: "CloudWatch" * } * ], - * "Definition": { - * "CommandText": "cloudwatch describe-alarms --state-value ALARM" + * Definition: { + * CommandText: "cloudwatch describe-alarms --state-value ALARM" * } * }; * const command = new CreateCustomActionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CustomActionArn": "arn:aws:chatbot::1234567890:custom-action/describe-alarms" + * CustomActionArn: "arn:aws:chatbot::1234567890:custom-action/describe-alarms" * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class CreateCustomActionCommand extends $Command .classBuilder< diff --git a/clients/client-chatbot/src/commands/CreateMicrosoftTeamsChannelConfigurationCommand.ts b/clients/client-chatbot/src/commands/CreateMicrosoftTeamsChannelConfigurationCommand.ts index 9ee7b0b11376c..9f5976ba3c1bd 100644 --- a/clients/client-chatbot/src/commands/CreateMicrosoftTeamsChannelConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/CreateMicrosoftTeamsChannelConfigurationCommand.ts @@ -125,6 +125,7 @@ export interface CreateMicrosoftTeamsChannelConfigurationCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class CreateMicrosoftTeamsChannelConfigurationCommand extends $Command diff --git a/clients/client-chatbot/src/commands/CreateSlackChannelConfigurationCommand.ts b/clients/client-chatbot/src/commands/CreateSlackChannelConfigurationCommand.ts index 94b7761c10dd4..bec821d45d561 100644 --- a/clients/client-chatbot/src/commands/CreateSlackChannelConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/CreateSlackChannelConfigurationCommand.ts @@ -122,6 +122,7 @@ export interface CreateSlackChannelConfigurationCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class CreateSlackChannelConfigurationCommand extends $Command diff --git a/clients/client-chatbot/src/commands/DeleteChimeWebhookConfigurationCommand.ts b/clients/client-chatbot/src/commands/DeleteChimeWebhookConfigurationCommand.ts index 74eba7793be55..f23a2a7ff583c 100644 --- a/clients/client-chatbot/src/commands/DeleteChimeWebhookConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteChimeWebhookConfigurationCommand.ts @@ -70,6 +70,7 @@ export interface DeleteChimeWebhookConfigurationCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class DeleteChimeWebhookConfigurationCommand extends $Command diff --git a/clients/client-chatbot/src/commands/DeleteCustomActionCommand.ts b/clients/client-chatbot/src/commands/DeleteCustomActionCommand.ts index 8cfd951461d1c..57db1b844749f 100644 --- a/clients/client-chatbot/src/commands/DeleteCustomActionCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteCustomActionCommand.ts @@ -65,18 +65,21 @@ export interface DeleteCustomActionCommandOutput extends DeleteCustomActionResul * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* - * @public + * * @example Delete a custom action * ```javascript * // * const input = { - * "CustomActionArn": "arn:aws:chatbot::1234567890:custom-action/my-custom-action" + * CustomActionArn: "arn:aws:chatbot::1234567890:custom-action/my-custom-action" * }; * const command = new DeleteCustomActionCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteCustomActionCommand extends $Command .classBuilder< diff --git a/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsChannelConfigurationCommand.ts b/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsChannelConfigurationCommand.ts index ab96d231af802..51fb415765a7a 100644 --- a/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsChannelConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsChannelConfigurationCommand.ts @@ -70,6 +70,7 @@ export interface DeleteMicrosoftTeamsChannelConfigurationCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class DeleteMicrosoftTeamsChannelConfigurationCommand extends $Command diff --git a/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsConfiguredTeamCommand.ts b/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsConfiguredTeamCommand.ts index 080a46216c188..4a38de676e433 100644 --- a/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsConfiguredTeamCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsConfiguredTeamCommand.ts @@ -65,6 +65,7 @@ export interface DeleteMicrosoftTeamsConfiguredTeamCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class DeleteMicrosoftTeamsConfiguredTeamCommand extends $Command diff --git a/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsUserIdentityCommand.ts b/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsUserIdentityCommand.ts index ee58716217bbc..9c2e82c62abca 100644 --- a/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsUserIdentityCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsUserIdentityCommand.ts @@ -68,6 +68,7 @@ export interface DeleteMicrosoftTeamsUserIdentityCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class DeleteMicrosoftTeamsUserIdentityCommand extends $Command diff --git a/clients/client-chatbot/src/commands/DeleteSlackChannelConfigurationCommand.ts b/clients/client-chatbot/src/commands/DeleteSlackChannelConfigurationCommand.ts index 4bac04e42903d..60407229b8379 100644 --- a/clients/client-chatbot/src/commands/DeleteSlackChannelConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteSlackChannelConfigurationCommand.ts @@ -70,6 +70,7 @@ export interface DeleteSlackChannelConfigurationCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class DeleteSlackChannelConfigurationCommand extends $Command diff --git a/clients/client-chatbot/src/commands/DeleteSlackUserIdentityCommand.ts b/clients/client-chatbot/src/commands/DeleteSlackUserIdentityCommand.ts index e4fdc08463bd0..911603c6e9e8d 100644 --- a/clients/client-chatbot/src/commands/DeleteSlackUserIdentityCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteSlackUserIdentityCommand.ts @@ -64,6 +64,7 @@ export interface DeleteSlackUserIdentityCommandOutput extends DeleteSlackUserIde * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class DeleteSlackUserIdentityCommand extends $Command diff --git a/clients/client-chatbot/src/commands/DeleteSlackWorkspaceAuthorizationCommand.ts b/clients/client-chatbot/src/commands/DeleteSlackWorkspaceAuthorizationCommand.ts index 137c37c2afe61..870394590f6b7 100644 --- a/clients/client-chatbot/src/commands/DeleteSlackWorkspaceAuthorizationCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteSlackWorkspaceAuthorizationCommand.ts @@ -65,6 +65,7 @@ export interface DeleteSlackWorkspaceAuthorizationCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class DeleteSlackWorkspaceAuthorizationCommand extends $Command diff --git a/clients/client-chatbot/src/commands/DescribeChimeWebhookConfigurationsCommand.ts b/clients/client-chatbot/src/commands/DescribeChimeWebhookConfigurationsCommand.ts index 7f65c147ae289..7d3d4d45988a9 100644 --- a/clients/client-chatbot/src/commands/DescribeChimeWebhookConfigurationsCommand.ts +++ b/clients/client-chatbot/src/commands/DescribeChimeWebhookConfigurationsCommand.ts @@ -95,6 +95,7 @@ export interface DescribeChimeWebhookConfigurationsCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class DescribeChimeWebhookConfigurationsCommand extends $Command diff --git a/clients/client-chatbot/src/commands/DescribeSlackChannelConfigurationsCommand.ts b/clients/client-chatbot/src/commands/DescribeSlackChannelConfigurationsCommand.ts index 9c2802002ea6e..6865f229b7714 100644 --- a/clients/client-chatbot/src/commands/DescribeSlackChannelConfigurationsCommand.ts +++ b/clients/client-chatbot/src/commands/DescribeSlackChannelConfigurationsCommand.ts @@ -102,6 +102,7 @@ export interface DescribeSlackChannelConfigurationsCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class DescribeSlackChannelConfigurationsCommand extends $Command diff --git a/clients/client-chatbot/src/commands/DescribeSlackUserIdentitiesCommand.ts b/clients/client-chatbot/src/commands/DescribeSlackUserIdentitiesCommand.ts index 61a68f9c47aad..6c7fed61f6d3a 100644 --- a/clients/client-chatbot/src/commands/DescribeSlackUserIdentitiesCommand.ts +++ b/clients/client-chatbot/src/commands/DescribeSlackUserIdentitiesCommand.ts @@ -78,6 +78,7 @@ export interface DescribeSlackUserIdentitiesCommandOutput extends DescribeSlackU * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class DescribeSlackUserIdentitiesCommand extends $Command diff --git a/clients/client-chatbot/src/commands/DescribeSlackWorkspacesCommand.ts b/clients/client-chatbot/src/commands/DescribeSlackWorkspacesCommand.ts index d7a0a6a91c9e7..6f8411eef8225 100644 --- a/clients/client-chatbot/src/commands/DescribeSlackWorkspacesCommand.ts +++ b/clients/client-chatbot/src/commands/DescribeSlackWorkspacesCommand.ts @@ -73,6 +73,7 @@ export interface DescribeSlackWorkspacesCommandOutput extends DescribeSlackWorks * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class DescribeSlackWorkspacesCommand extends $Command diff --git a/clients/client-chatbot/src/commands/DisassociateFromConfigurationCommand.ts b/clients/client-chatbot/src/commands/DisassociateFromConfigurationCommand.ts index 785c626e65e74..923bd651dd3ff 100644 --- a/clients/client-chatbot/src/commands/DisassociateFromConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/DisassociateFromConfigurationCommand.ts @@ -68,19 +68,22 @@ export interface DisassociateFromConfigurationCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* - * @public + * * @example Disassociate a custom action from a configuration * ```javascript * // * const input = { - * "ChatConfiguration": "arn:aws:chatbot::1234567890:chat-configuration/slack-channel/my-channel", - * "Resource": "arn:aws:chatbot::1234567890:custom-action/my-custom-action" + * ChatConfiguration: "arn:aws:chatbot::1234567890:chat-configuration/slack-channel/my-channel", + * Resource: "arn:aws:chatbot::1234567890:custom-action/my-custom-action" * }; * const command = new DisassociateFromConfigurationCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DisassociateFromConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-chatbot/src/commands/GetAccountPreferencesCommand.ts b/clients/client-chatbot/src/commands/GetAccountPreferencesCommand.ts index feebd474b2936..77c78c9fb5290 100644 --- a/clients/client-chatbot/src/commands/GetAccountPreferencesCommand.ts +++ b/clients/client-chatbot/src/commands/GetAccountPreferencesCommand.ts @@ -62,6 +62,7 @@ export interface GetAccountPreferencesCommandOutput extends GetAccountPreference * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class GetAccountPreferencesCommand extends $Command diff --git a/clients/client-chatbot/src/commands/GetCustomActionCommand.ts b/clients/client-chatbot/src/commands/GetCustomActionCommand.ts index 74d82f17d236c..9873b2e91e541 100644 --- a/clients/client-chatbot/src/commands/GetCustomActionCommand.ts +++ b/clients/client-chatbot/src/commands/GetCustomActionCommand.ts @@ -90,29 +90,29 @@ export interface GetCustomActionCommandOutput extends GetCustomActionResult, __M * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* - * @public + * * @example Get a custom action * ```javascript * // * const input = { - * "CustomActionArn": "arn:aws:chatbot::1234567890:custom-action/my-custom-action" + * CustomActionArn: "arn:aws:chatbot::1234567890:custom-action/my-custom-action" * }; * const command = new GetCustomActionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CustomAction": { - * "ActionName": "my-custom-action", - * "CustomActionArn": "arn:aws:chatbot::1234567890:custom-action/my-custom-action", - * "Definition": { - * "CommandText": "lambda invoke $functionName" + * CustomAction: { + * ActionName: "my-custom-action", + * CustomActionArn: "arn:aws:chatbot::1234567890:custom-action/my-custom-action", + * Definition: { + * CommandText: "lambda invoke $functionName" * } * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetCustomActionCommand extends $Command .classBuilder< diff --git a/clients/client-chatbot/src/commands/GetMicrosoftTeamsChannelConfigurationCommand.ts b/clients/client-chatbot/src/commands/GetMicrosoftTeamsChannelConfigurationCommand.ts index b1af476b26989..a0d7c6776fa25 100644 --- a/clients/client-chatbot/src/commands/GetMicrosoftTeamsChannelConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/GetMicrosoftTeamsChannelConfigurationCommand.ts @@ -98,6 +98,7 @@ export interface GetMicrosoftTeamsChannelConfigurationCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class GetMicrosoftTeamsChannelConfigurationCommand extends $Command diff --git a/clients/client-chatbot/src/commands/ListAssociationsCommand.ts b/clients/client-chatbot/src/commands/ListAssociationsCommand.ts index edfe137c60633..8ab87896f546f 100644 --- a/clients/client-chatbot/src/commands/ListAssociationsCommand.ts +++ b/clients/client-chatbot/src/commands/ListAssociationsCommand.ts @@ -62,27 +62,27 @@ export interface ListAssociationsCommandOutput extends ListAssociationsResult, _ * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* - * @public + * * @example List custom actions associated with a configuration * ```javascript * // * const input = { - * "ChatConfiguration": "arn:aws:chatbot::1234567890:chat-configuration/slack-channel/my-channel" + * ChatConfiguration: "arn:aws:chatbot::1234567890:chat-configuration/slack-channel/my-channel" * }; * const command = new ListAssociationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Associations": [ + * Associations: [ * { - * "Resource": "arn:aws:chatbot::1234567890:custom-action/my-custom-action" + * Resource: "arn:aws:chatbot::1234567890:custom-action/my-custom-action" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListAssociationsCommand extends $Command .classBuilder< diff --git a/clients/client-chatbot/src/commands/ListCustomActionsCommand.ts b/clients/client-chatbot/src/commands/ListCustomActionsCommand.ts index 337e54faf2f0a..455a3248eb8f8 100644 --- a/clients/client-chatbot/src/commands/ListCustomActionsCommand.ts +++ b/clients/client-chatbot/src/commands/ListCustomActionsCommand.ts @@ -68,23 +68,23 @@ export interface ListCustomActionsCommandOutput extends ListCustomActionsResult, * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* - * @public + * * @example List custom actions * ```javascript * // - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListCustomActionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CustomActions": [ + * CustomActions: [ * "arn:aws:chatbot::1234567890:custom-action/my-custom-action" * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListCustomActionsCommand extends $Command .classBuilder< diff --git a/clients/client-chatbot/src/commands/ListMicrosoftTeamsChannelConfigurationsCommand.ts b/clients/client-chatbot/src/commands/ListMicrosoftTeamsChannelConfigurationsCommand.ts index 8aa8723b1393a..1deceb517afc3 100644 --- a/clients/client-chatbot/src/commands/ListMicrosoftTeamsChannelConfigurationsCommand.ts +++ b/clients/client-chatbot/src/commands/ListMicrosoftTeamsChannelConfigurationsCommand.ts @@ -103,6 +103,7 @@ export interface ListMicrosoftTeamsChannelConfigurationsCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class ListMicrosoftTeamsChannelConfigurationsCommand extends $Command diff --git a/clients/client-chatbot/src/commands/ListMicrosoftTeamsConfiguredTeamsCommand.ts b/clients/client-chatbot/src/commands/ListMicrosoftTeamsConfiguredTeamsCommand.ts index 05b9962562f0b..72aa361b5da69 100644 --- a/clients/client-chatbot/src/commands/ListMicrosoftTeamsConfiguredTeamsCommand.ts +++ b/clients/client-chatbot/src/commands/ListMicrosoftTeamsConfiguredTeamsCommand.ts @@ -79,6 +79,7 @@ export interface ListMicrosoftTeamsConfiguredTeamsCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class ListMicrosoftTeamsConfiguredTeamsCommand extends $Command diff --git a/clients/client-chatbot/src/commands/ListMicrosoftTeamsUserIdentitiesCommand.ts b/clients/client-chatbot/src/commands/ListMicrosoftTeamsUserIdentitiesCommand.ts index 78075979b883c..6a171b4634471 100644 --- a/clients/client-chatbot/src/commands/ListMicrosoftTeamsUserIdentitiesCommand.ts +++ b/clients/client-chatbot/src/commands/ListMicrosoftTeamsUserIdentitiesCommand.ts @@ -82,6 +82,7 @@ export interface ListMicrosoftTeamsUserIdentitiesCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class ListMicrosoftTeamsUserIdentitiesCommand extends $Command diff --git a/clients/client-chatbot/src/commands/ListTagsForResourceCommand.ts b/clients/client-chatbot/src/commands/ListTagsForResourceCommand.ts index 65fac95ae1ce4..7ae9e175eff7b 100644 --- a/clients/client-chatbot/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-chatbot/src/commands/ListTagsForResourceCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-chatbot/src/commands/TagResourceCommand.ts b/clients/client-chatbot/src/commands/TagResourceCommand.ts index 18a18afbfab2a..c4189363d79fd 100644 --- a/clients/client-chatbot/src/commands/TagResourceCommand.ts +++ b/clients/client-chatbot/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-chatbot/src/commands/UntagResourceCommand.ts b/clients/client-chatbot/src/commands/UntagResourceCommand.ts index 749961689ad18..b568ff988976c 100644 --- a/clients/client-chatbot/src/commands/UntagResourceCommand.ts +++ b/clients/client-chatbot/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-chatbot/src/commands/UpdateAccountPreferencesCommand.ts b/clients/client-chatbot/src/commands/UpdateAccountPreferencesCommand.ts index 04500b915a983..351cae2d658d6 100644 --- a/clients/client-chatbot/src/commands/UpdateAccountPreferencesCommand.ts +++ b/clients/client-chatbot/src/commands/UpdateAccountPreferencesCommand.ts @@ -68,6 +68,7 @@ export interface UpdateAccountPreferencesCommandOutput extends UpdateAccountPref * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class UpdateAccountPreferencesCommand extends $Command diff --git a/clients/client-chatbot/src/commands/UpdateChimeWebhookConfigurationCommand.ts b/clients/client-chatbot/src/commands/UpdateChimeWebhookConfigurationCommand.ts index 19b66322c7c7b..bbcc4907b147c 100644 --- a/clients/client-chatbot/src/commands/UpdateChimeWebhookConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/UpdateChimeWebhookConfigurationCommand.ts @@ -101,6 +101,7 @@ export interface UpdateChimeWebhookConfigurationCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class UpdateChimeWebhookConfigurationCommand extends $Command diff --git a/clients/client-chatbot/src/commands/UpdateCustomActionCommand.ts b/clients/client-chatbot/src/commands/UpdateCustomActionCommand.ts index d507149c5078b..52bee83b7a9aa 100644 --- a/clients/client-chatbot/src/commands/UpdateCustomActionCommand.ts +++ b/clients/client-chatbot/src/commands/UpdateCustomActionCommand.ts @@ -87,26 +87,26 @@ export interface UpdateCustomActionCommandOutput extends UpdateCustomActionResul * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* - * @public + * * @example Update the command definition of an existing action * ```javascript * // Updates the command text of a custom action without altering the existing alias name or attachment criteria * const input = { - * "CustomActionArn": "arn:aws:chatbot::1234567890:custom-action/my-custom-action", - * "Definition": { - * "CommandText": "lambda invoke MyNewFunction" + * CustomActionArn: "arn:aws:chatbot::1234567890:custom-action/my-custom-action", + * Definition: { + * CommandText: "lambda invoke MyNewFunction" * } * }; * const command = new UpdateCustomActionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CustomActionArn": "arn:aws:chatbot::1234567890:custom-action/my-custom-action" + * CustomActionArn: "arn:aws:chatbot::1234567890:custom-action/my-custom-action" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateCustomActionCommand extends $Command .classBuilder< diff --git a/clients/client-chatbot/src/commands/UpdateMicrosoftTeamsChannelConfigurationCommand.ts b/clients/client-chatbot/src/commands/UpdateMicrosoftTeamsChannelConfigurationCommand.ts index db8369154fd1e..e1093300b86ee 100644 --- a/clients/client-chatbot/src/commands/UpdateMicrosoftTeamsChannelConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/UpdateMicrosoftTeamsChannelConfigurationCommand.ts @@ -113,6 +113,7 @@ export interface UpdateMicrosoftTeamsChannelConfigurationCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class UpdateMicrosoftTeamsChannelConfigurationCommand extends $Command diff --git a/clients/client-chatbot/src/commands/UpdateSlackChannelConfigurationCommand.ts b/clients/client-chatbot/src/commands/UpdateSlackChannelConfigurationCommand.ts index e4fcef767b920..cd395d1d098fb 100644 --- a/clients/client-chatbot/src/commands/UpdateSlackChannelConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/UpdateSlackChannelConfigurationCommand.ts @@ -112,6 +112,7 @@ export interface UpdateSlackChannelConfigurationCommandOutput * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* + * * @public */ export class UpdateSlackChannelConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceAdminCommand.ts b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceAdminCommand.ts index 65c8f07eeba6f..421be62a5b24e 100644 --- a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceAdminCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceAdminCommand.ts @@ -104,6 +104,7 @@ export interface CreateAppInstanceAdminCommandOutput extends CreateAppInstanceAd * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class CreateAppInstanceAdminCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceBotCommand.ts b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceBotCommand.ts index a5e867fd2f4a2..e2087ab878f62 100644 --- a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceBotCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceBotCommand.ts @@ -106,6 +106,7 @@ export interface CreateAppInstanceBotCommandOutput extends CreateAppInstanceBotR * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class CreateAppInstanceBotCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceCommand.ts b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceCommand.ts index b77b7bca82053..f3fd17dc28ccb 100644 --- a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceCommand.ts @@ -95,6 +95,7 @@ export interface CreateAppInstanceCommandOutput extends CreateAppInstanceRespons * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class CreateAppInstanceCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceUserCommand.ts b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceUserCommand.ts index 69e1f741ff6b9..be24e0ef37b90 100644 --- a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceUserCommand.ts @@ -99,6 +99,7 @@ export interface CreateAppInstanceUserCommandOutput extends CreateAppInstanceUse * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class CreateAppInstanceUserCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceAdminCommand.ts b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceAdminCommand.ts index 4b59c239eeadd..409693e97a2b0 100644 --- a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceAdminCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceAdminCommand.ts @@ -81,6 +81,7 @@ export interface DeleteAppInstanceAdminCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class DeleteAppInstanceAdminCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceBotCommand.ts b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceBotCommand.ts index 6390e62c4c42e..04bfeb26ea689 100644 --- a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceBotCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceBotCommand.ts @@ -78,6 +78,7 @@ export interface DeleteAppInstanceBotCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class DeleteAppInstanceBotCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceCommand.ts b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceCommand.ts index 14480b48bb332..840a3952c765e 100644 --- a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceCommand.ts @@ -74,6 +74,7 @@ export interface DeleteAppInstanceCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class DeleteAppInstanceCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceUserCommand.ts b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceUserCommand.ts index 07fdd6e75bfb8..f20753316d5f4 100644 --- a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceUserCommand.ts @@ -78,6 +78,7 @@ export interface DeleteAppInstanceUserCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class DeleteAppInstanceUserCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/DeregisterAppInstanceUserEndpointCommand.ts b/clients/client-chime-sdk-identity/src/commands/DeregisterAppInstanceUserEndpointCommand.ts index d70f6bf8bc27a..cbc01c33e64e9 100644 --- a/clients/client-chime-sdk-identity/src/commands/DeregisterAppInstanceUserEndpointCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DeregisterAppInstanceUserEndpointCommand.ts @@ -75,6 +75,7 @@ export interface DeregisterAppInstanceUserEndpointCommandOutput extends __Metada * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class DeregisterAppInstanceUserEndpointCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceAdminCommand.ts b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceAdminCommand.ts index a24fb376cb8e7..6c29e64994c6b 100644 --- a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceAdminCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceAdminCommand.ts @@ -85,6 +85,7 @@ export interface DescribeAppInstanceAdminCommandOutput extends DescribeAppInstan * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class DescribeAppInstanceAdminCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceBotCommand.ts b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceBotCommand.ts index 28275090987bb..2e46d65e66802 100644 --- a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceBotCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceBotCommand.ts @@ -98,6 +98,7 @@ export interface DescribeAppInstanceBotCommandOutput extends DescribeAppInstance * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class DescribeAppInstanceBotCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceCommand.ts b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceCommand.ts index 2eadefa60c884..342e4c97b3a89 100644 --- a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceCommand.ts @@ -83,6 +83,7 @@ export interface DescribeAppInstanceCommandOutput extends DescribeAppInstanceRes * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class DescribeAppInstanceCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserCommand.ts b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserCommand.ts index b2f222ea915f2..25c1c252db24c 100644 --- a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserCommand.ts @@ -87,6 +87,7 @@ export interface DescribeAppInstanceUserCommandOutput extends DescribeAppInstanc * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class DescribeAppInstanceUserCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserEndpointCommand.ts b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserEndpointCommand.ts index 0f287aa784933..0d1a9aaf09799 100644 --- a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserEndpointCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserEndpointCommand.ts @@ -100,6 +100,7 @@ export interface DescribeAppInstanceUserEndpointCommandOutput * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class DescribeAppInstanceUserEndpointCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/GetAppInstanceRetentionSettingsCommand.ts b/clients/client-chime-sdk-identity/src/commands/GetAppInstanceRetentionSettingsCommand.ts index 571a1ae3f7e39..3181bae903063 100644 --- a/clients/client-chime-sdk-identity/src/commands/GetAppInstanceRetentionSettingsCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/GetAppInstanceRetentionSettingsCommand.ts @@ -83,6 +83,7 @@ export interface GetAppInstanceRetentionSettingsCommandOutput * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class GetAppInstanceRetentionSettingsCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceAdminsCommand.ts b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceAdminsCommand.ts index 567148c9de51a..536c25b5ffea5 100644 --- a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceAdminsCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceAdminsCommand.ts @@ -92,6 +92,7 @@ export interface ListAppInstanceAdminsCommandOutput extends ListAppInstanceAdmin * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class ListAppInstanceAdminsCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceBotsCommand.ts b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceBotsCommand.ts index 93a761489c1f3..5978d32e140d7 100644 --- a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceBotsCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceBotsCommand.ts @@ -91,6 +91,7 @@ export interface ListAppInstanceBotsCommandOutput extends ListAppInstanceBotsRes * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class ListAppInstanceBotsCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUserEndpointsCommand.ts b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUserEndpointsCommand.ts index ab9fe0f2de4ae..6a87f480df27b 100644 --- a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUserEndpointsCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUserEndpointsCommand.ts @@ -98,6 +98,7 @@ export interface ListAppInstanceUserEndpointsCommandOutput * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class ListAppInstanceUserEndpointsCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUsersCommand.ts b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUsersCommand.ts index 00f4ef3346683..b1c4e84ea4af6 100644 --- a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUsersCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUsersCommand.ts @@ -89,6 +89,7 @@ export interface ListAppInstanceUsersCommandOutput extends ListAppInstanceUsersR * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class ListAppInstanceUsersCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/ListAppInstancesCommand.ts b/clients/client-chime-sdk-identity/src/commands/ListAppInstancesCommand.ts index c0fe69755e831..bd5ed5aeab53d 100644 --- a/clients/client-chime-sdk-identity/src/commands/ListAppInstancesCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/ListAppInstancesCommand.ts @@ -87,6 +87,7 @@ export interface ListAppInstancesCommandOutput extends ListAppInstancesResponse, * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class ListAppInstancesCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/ListTagsForResourceCommand.ts b/clients/client-chime-sdk-identity/src/commands/ListTagsForResourceCommand.ts index 8028da4f13e0d..6194aba4eed6f 100644 --- a/clients/client-chime-sdk-identity/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/ListTagsForResourceCommand.ts @@ -82,6 +82,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/PutAppInstanceRetentionSettingsCommand.ts b/clients/client-chime-sdk-identity/src/commands/PutAppInstanceRetentionSettingsCommand.ts index 39666b902086e..3c9b0ce6e5481 100644 --- a/clients/client-chime-sdk-identity/src/commands/PutAppInstanceRetentionSettingsCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/PutAppInstanceRetentionSettingsCommand.ts @@ -89,6 +89,7 @@ export interface PutAppInstanceRetentionSettingsCommandOutput * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class PutAppInstanceRetentionSettingsCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/PutAppInstanceUserExpirationSettingsCommand.ts b/clients/client-chime-sdk-identity/src/commands/PutAppInstanceUserExpirationSettingsCommand.ts index 04f40e4f2afef..eeb8d8c6ac340 100644 --- a/clients/client-chime-sdk-identity/src/commands/PutAppInstanceUserExpirationSettingsCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/PutAppInstanceUserExpirationSettingsCommand.ts @@ -99,6 +99,7 @@ export interface PutAppInstanceUserExpirationSettingsCommandOutput * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class PutAppInstanceUserExpirationSettingsCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/RegisterAppInstanceUserEndpointCommand.ts b/clients/client-chime-sdk-identity/src/commands/RegisterAppInstanceUserEndpointCommand.ts index 0dcc789bb4534..cd7555b7287f1 100644 --- a/clients/client-chime-sdk-identity/src/commands/RegisterAppInstanceUserEndpointCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/RegisterAppInstanceUserEndpointCommand.ts @@ -99,6 +99,7 @@ export interface RegisterAppInstanceUserEndpointCommandOutput * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class RegisterAppInstanceUserEndpointCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/TagResourceCommand.ts b/clients/client-chime-sdk-identity/src/commands/TagResourceCommand.ts index 64eecc09ab873..201e12be6773c 100644 --- a/clients/client-chime-sdk-identity/src/commands/TagResourceCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/TagResourceCommand.ts @@ -80,6 +80,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/UntagResourceCommand.ts b/clients/client-chime-sdk-identity/src/commands/UntagResourceCommand.ts index 668fa8ae3a7c0..9511756dc9b80 100644 --- a/clients/client-chime-sdk-identity/src/commands/UntagResourceCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/UntagResourceCommand.ts @@ -74,6 +74,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceBotCommand.ts b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceBotCommand.ts index 1a45e53539d05..d9d5ed37be909 100644 --- a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceBotCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceBotCommand.ts @@ -98,6 +98,7 @@ export interface UpdateAppInstanceBotCommandOutput extends UpdateAppInstanceBotR * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class UpdateAppInstanceBotCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceCommand.ts b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceCommand.ts index 2e46d416ae7ce..4fd6c24d45f84 100644 --- a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceCommand.ts @@ -83,6 +83,7 @@ export interface UpdateAppInstanceCommandOutput extends UpdateAppInstanceRespons * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class UpdateAppInstanceCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserCommand.ts b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserCommand.ts index ffb5a3399c89c..1a84c99e1a439 100644 --- a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserCommand.ts @@ -87,6 +87,7 @@ export interface UpdateAppInstanceUserCommandOutput extends UpdateAppInstanceUse * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class UpdateAppInstanceUserCommand extends $Command diff --git a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserEndpointCommand.ts b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserEndpointCommand.ts index d3d9f26cfea8c..0ff416917eefa 100644 --- a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserEndpointCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserEndpointCommand.ts @@ -90,6 +90,7 @@ export interface UpdateAppInstanceUserEndpointCommandOutput * @throws {@link ChimeSDKIdentityServiceException} *

Base exception class for all service exceptions from ChimeSDKIdentity service.

* + * * @public */ export class UpdateAppInstanceUserEndpointCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaCapturePipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaCapturePipelineCommand.ts index 7a6f5290f9e8d..2cee35e425b4b 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaCapturePipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaCapturePipelineCommand.ts @@ -229,6 +229,7 @@ export interface CreateMediaCapturePipelineCommandOutput extends CreateMediaCapt * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class CreateMediaCapturePipelineCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaConcatenationPipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaConcatenationPipelineCommand.ts index ec879fb56a8db..3c5fef79e0140 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaConcatenationPipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaConcatenationPipelineCommand.ts @@ -184,6 +184,7 @@ export interface CreateMediaConcatenationPipelineCommandOutput * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class CreateMediaConcatenationPipelineCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineCommand.ts index 45e868d58cf69..dc5d31f875ff4 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineCommand.ts @@ -192,6 +192,7 @@ export interface CreateMediaInsightsPipelineCommandOutput * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class CreateMediaInsightsPipelineCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineConfigurationCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineConfigurationCommand.ts index 2693362b2a2ec..7eafc2a7971d4 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineConfigurationCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineConfigurationCommand.ts @@ -296,6 +296,7 @@ export interface CreateMediaInsightsPipelineConfigurationCommandOutput * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class CreateMediaInsightsPipelineConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaLiveConnectorPipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaLiveConnectorPipelineCommand.ts index ac0dcdb7fd1db..fc2716c29718a 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaLiveConnectorPipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaLiveConnectorPipelineCommand.ts @@ -224,6 +224,7 @@ export interface CreateMediaLiveConnectorPipelineCommandOutput * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class CreateMediaLiveConnectorPipelineCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaPipelineKinesisVideoStreamPoolCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaPipelineKinesisVideoStreamPoolCommand.ts index 14d00018ba55a..b4713f50b4eba 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaPipelineKinesisVideoStreamPoolCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaPipelineKinesisVideoStreamPoolCommand.ts @@ -133,6 +133,7 @@ export interface CreateMediaPipelineKinesisVideoStreamPoolCommandOutput * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class CreateMediaPipelineKinesisVideoStreamPoolCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaStreamPipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaStreamPipelineCommand.ts index 54d63dd8cf777..25f629bf855b4 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaStreamPipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaStreamPipelineCommand.ts @@ -128,6 +128,7 @@ export interface CreateMediaStreamPipelineCommandOutput extends CreateMediaStrea * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class CreateMediaStreamPipelineCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaCapturePipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaCapturePipelineCommand.ts index 2bf1d9ef67968..54a04cedb3e09 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaCapturePipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaCapturePipelineCommand.ts @@ -78,6 +78,7 @@ export interface DeleteMediaCapturePipelineCommandOutput extends __MetadataBeare * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class DeleteMediaCapturePipelineCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaInsightsPipelineConfigurationCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaInsightsPipelineConfigurationCommand.ts index c043fd979f055..47cfedde839d2 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaInsightsPipelineConfigurationCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaInsightsPipelineConfigurationCommand.ts @@ -86,6 +86,7 @@ export interface DeleteMediaInsightsPipelineConfigurationCommandOutput extends _ * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class DeleteMediaInsightsPipelineConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineCommand.ts index f287504625bea..d74eecfc3b906 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineCommand.ts @@ -82,6 +82,7 @@ export interface DeleteMediaPipelineCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class DeleteMediaPipelineCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand.ts index b2f714e201dda..9e2e1956b5e3e 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand.ts @@ -86,6 +86,7 @@ export interface DeleteMediaPipelineKinesisVideoStreamPoolCommandOutput extends * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class DeleteMediaPipelineKinesisVideoStreamPoolCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaCapturePipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaCapturePipelineCommand.ts index e844d428067b7..cbffa25f9a185 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaCapturePipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaCapturePipelineCommand.ts @@ -156,6 +156,7 @@ export interface GetMediaCapturePipelineCommandOutput extends GetMediaCapturePip * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class GetMediaCapturePipelineCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaInsightsPipelineConfigurationCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaInsightsPipelineConfigurationCommand.ts index 23ac018ff10d7..705048637c84e 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaInsightsPipelineConfigurationCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaInsightsPipelineConfigurationCommand.ts @@ -190,6 +190,7 @@ export interface GetMediaInsightsPipelineConfigurationCommandOutput * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class GetMediaInsightsPipelineConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineCommand.ts index 2760f8b194426..da587a012b5f0 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineCommand.ts @@ -348,6 +348,7 @@ export interface GetMediaPipelineCommandOutput extends GetMediaPipelineResponse, * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class GetMediaPipelineCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineKinesisVideoStreamPoolCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineKinesisVideoStreamPoolCommand.ts index d2d6a334e89b9..1a5ae19c8fc7a 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineKinesisVideoStreamPoolCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineKinesisVideoStreamPoolCommand.ts @@ -102,6 +102,7 @@ export interface GetMediaPipelineKinesisVideoStreamPoolCommandOutput * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class GetMediaPipelineKinesisVideoStreamPoolCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/GetSpeakerSearchTaskCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/GetSpeakerSearchTaskCommand.ts index 1ef9948fc7567..2948aa9ba6365 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/GetSpeakerSearchTaskCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/GetSpeakerSearchTaskCommand.ts @@ -86,6 +86,7 @@ export interface GetSpeakerSearchTaskCommandOutput extends GetSpeakerSearchTaskR * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class GetSpeakerSearchTaskCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/GetVoiceToneAnalysisTaskCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/GetVoiceToneAnalysisTaskCommand.ts index df1220a45057a..7f3cbc72f43fd 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/GetVoiceToneAnalysisTaskCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/GetVoiceToneAnalysisTaskCommand.ts @@ -86,6 +86,7 @@ export interface GetVoiceToneAnalysisTaskCommandOutput extends GetVoiceToneAnaly * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class GetVoiceToneAnalysisTaskCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaCapturePipelinesCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaCapturePipelinesCommand.ts index c4522a4105495..f12766b675e66 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaCapturePipelinesCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaCapturePipelinesCommand.ts @@ -87,6 +87,7 @@ export interface ListMediaCapturePipelinesCommandOutput extends ListMediaCapture * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class ListMediaCapturePipelinesCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaInsightsPipelineConfigurationsCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaInsightsPipelineConfigurationsCommand.ts index 56e0cb1691ad5..55d87a7469659 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaInsightsPipelineConfigurationsCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaInsightsPipelineConfigurationsCommand.ts @@ -98,6 +98,7 @@ export interface ListMediaInsightsPipelineConfigurationsCommandOutput * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class ListMediaInsightsPipelineConfigurationsCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelineKinesisVideoStreamPoolsCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelineKinesisVideoStreamPoolsCommand.ts index f60f9c45257cb..fe8245032d7ae 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelineKinesisVideoStreamPoolsCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelineKinesisVideoStreamPoolsCommand.ts @@ -98,6 +98,7 @@ export interface ListMediaPipelineKinesisVideoStreamPoolsCommandOutput * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class ListMediaPipelineKinesisVideoStreamPoolsCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelinesCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelinesCommand.ts index 57fef9e9b8434..2cc8708b9dc65 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelinesCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelinesCommand.ts @@ -87,6 +87,7 @@ export interface ListMediaPipelinesCommandOutput extends ListMediaPipelinesRespo * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class ListMediaPipelinesCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/ListTagsForResourceCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/ListTagsForResourceCommand.ts index a162d6ff49a76..8e116f45fd74a 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/ListTagsForResourceCommand.ts @@ -85,6 +85,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/StartSpeakerSearchTaskCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/StartSpeakerSearchTaskCommand.ts index 410c4e49333ad..47419b582ea71 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/StartSpeakerSearchTaskCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/StartSpeakerSearchTaskCommand.ts @@ -104,6 +104,7 @@ export interface StartSpeakerSearchTaskCommandOutput extends StartSpeakerSearchT * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class StartSpeakerSearchTaskCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/StartVoiceToneAnalysisTaskCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/StartVoiceToneAnalysisTaskCommand.ts index 0392aa9c569bb..27611b9b0cd9a 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/StartVoiceToneAnalysisTaskCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/StartVoiceToneAnalysisTaskCommand.ts @@ -106,6 +106,7 @@ export interface StartVoiceToneAnalysisTaskCommandOutput extends StartVoiceToneA * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class StartVoiceToneAnalysisTaskCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/StopSpeakerSearchTaskCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/StopSpeakerSearchTaskCommand.ts index 8e13f69f55f2c..c66673a373257 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/StopSpeakerSearchTaskCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/StopSpeakerSearchTaskCommand.ts @@ -83,6 +83,7 @@ export interface StopSpeakerSearchTaskCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class StopSpeakerSearchTaskCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/StopVoiceToneAnalysisTaskCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/StopVoiceToneAnalysisTaskCommand.ts index debb00639d3cd..e8bd2754e720e 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/StopVoiceToneAnalysisTaskCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/StopVoiceToneAnalysisTaskCommand.ts @@ -83,6 +83,7 @@ export interface StopVoiceToneAnalysisTaskCommandOutput extends __MetadataBearer * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class StopVoiceToneAnalysisTaskCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/TagResourceCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/TagResourceCommand.ts index a1d81375f4ceb..3a02ea9e5d97a 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/TagResourceCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/TagResourceCommand.ts @@ -84,6 +84,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/UntagResourceCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/UntagResourceCommand.ts index ad72d401781b3..105a16ad98b23 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/UntagResourceCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/UntagResourceCommand.ts @@ -81,6 +81,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineConfigurationCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineConfigurationCommand.ts index 639384fdee969..49a3899af65c2 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineConfigurationCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineConfigurationCommand.ts @@ -289,6 +289,7 @@ export interface UpdateMediaInsightsPipelineConfigurationCommandOutput * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class UpdateMediaInsightsPipelineConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineStatusCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineStatusCommand.ts index 825740e402954..b472473a6f0db 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineStatusCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineStatusCommand.ts @@ -86,6 +86,7 @@ export interface UpdateMediaInsightsPipelineStatusCommandOutput extends __Metada * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class UpdateMediaInsightsPipelineStatusCommand extends $Command diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand.ts index 8e0130c35983f..1f5421a65a8df 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand.ts @@ -109,6 +109,7 @@ export interface UpdateMediaPipelineKinesisVideoStreamPoolCommandOutput * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* + * * @public */ export class UpdateMediaPipelineKinesisVideoStreamPoolCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/BatchCreateAttendeeCommand.ts b/clients/client-chime-sdk-meetings/src/commands/BatchCreateAttendeeCommand.ts index 7b9ced8651f9a..e0c27f84917e6 100644 --- a/clients/client-chime-sdk-meetings/src/commands/BatchCreateAttendeeCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/BatchCreateAttendeeCommand.ts @@ -116,6 +116,7 @@ export interface BatchCreateAttendeeCommandOutput extends BatchCreateAttendeeRes * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class BatchCreateAttendeeCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.ts b/clients/client-chime-sdk-meetings/src/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.ts index 2a78db7f99b22..28b0cda9ce4e9 100644 --- a/clients/client-chime-sdk-meetings/src/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.ts @@ -119,6 +119,7 @@ export interface BatchUpdateAttendeeCapabilitiesExceptCommandOutput extends __Me * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class BatchUpdateAttendeeCapabilitiesExceptCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/CreateAttendeeCommand.ts b/clients/client-chime-sdk-meetings/src/commands/CreateAttendeeCommand.ts index da5551726e988..6da329812b2ec 100644 --- a/clients/client-chime-sdk-meetings/src/commands/CreateAttendeeCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/CreateAttendeeCommand.ts @@ -107,6 +107,7 @@ export interface CreateAttendeeCommandOutput extends CreateAttendeeResponse, __M * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class CreateAttendeeCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/CreateMeetingCommand.ts b/clients/client-chime-sdk-meetings/src/commands/CreateMeetingCommand.ts index 252f1d71588b1..eb2386042e374 100644 --- a/clients/client-chime-sdk-meetings/src/commands/CreateMeetingCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/CreateMeetingCommand.ts @@ -156,6 +156,7 @@ export interface CreateMeetingCommandOutput extends CreateMeetingResponse, __Met * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class CreateMeetingCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/CreateMeetingWithAttendeesCommand.ts b/clients/client-chime-sdk-meetings/src/commands/CreateMeetingWithAttendeesCommand.ts index f7f34b8d20c5d..b0f31be758d83 100644 --- a/clients/client-chime-sdk-meetings/src/commands/CreateMeetingWithAttendeesCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/CreateMeetingWithAttendeesCommand.ts @@ -185,6 +185,7 @@ export interface CreateMeetingWithAttendeesCommandOutput extends CreateMeetingWi * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class CreateMeetingWithAttendeesCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/DeleteAttendeeCommand.ts b/clients/client-chime-sdk-meetings/src/commands/DeleteAttendeeCommand.ts index 8fc16780e5d30..ae00cdb80a331 100644 --- a/clients/client-chime-sdk-meetings/src/commands/DeleteAttendeeCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/DeleteAttendeeCommand.ts @@ -78,6 +78,7 @@ export interface DeleteAttendeeCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class DeleteAttendeeCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/DeleteMeetingCommand.ts b/clients/client-chime-sdk-meetings/src/commands/DeleteMeetingCommand.ts index a77612f980713..a071d660fd82e 100644 --- a/clients/client-chime-sdk-meetings/src/commands/DeleteMeetingCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/DeleteMeetingCommand.ts @@ -77,6 +77,7 @@ export interface DeleteMeetingCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class DeleteMeetingCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/GetAttendeeCommand.ts b/clients/client-chime-sdk-meetings/src/commands/GetAttendeeCommand.ts index 9d26cc6aff59b..1dfafa9a779e2 100644 --- a/clients/client-chime-sdk-meetings/src/commands/GetAttendeeCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/GetAttendeeCommand.ts @@ -90,6 +90,7 @@ export interface GetAttendeeCommandOutput extends GetAttendeeResponse, __Metadat * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class GetAttendeeCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/GetMeetingCommand.ts b/clients/client-chime-sdk-meetings/src/commands/GetMeetingCommand.ts index a6e2f25cf7174..ef0425803e16c 100644 --- a/clients/client-chime-sdk-meetings/src/commands/GetMeetingCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/GetMeetingCommand.ts @@ -112,6 +112,7 @@ export interface GetMeetingCommandOutput extends GetMeetingResponse, __MetadataB * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class GetMeetingCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/ListAttendeesCommand.ts b/clients/client-chime-sdk-meetings/src/commands/ListAttendeesCommand.ts index ea6d68c98319a..9b5e214885ef7 100644 --- a/clients/client-chime-sdk-meetings/src/commands/ListAttendeesCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/ListAttendeesCommand.ts @@ -98,6 +98,7 @@ export interface ListAttendeesCommandOutput extends ListAttendeesResponse, __Met * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class ListAttendeesCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/ListTagsForResourceCommand.ts b/clients/client-chime-sdk-meetings/src/commands/ListTagsForResourceCommand.ts index 61f771e96d50f..cef7f21f5f596 100644 --- a/clients/client-chime-sdk-meetings/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/ListTagsForResourceCommand.ts @@ -84,6 +84,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/StartMeetingTranscriptionCommand.ts b/clients/client-chime-sdk-meetings/src/commands/StartMeetingTranscriptionCommand.ts index 9c654a487ca84..70d3442faac7d 100644 --- a/clients/client-chime-sdk-meetings/src/commands/StartMeetingTranscriptionCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/StartMeetingTranscriptionCommand.ts @@ -122,6 +122,7 @@ export interface StartMeetingTranscriptionCommandOutput extends __MetadataBearer * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class StartMeetingTranscriptionCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/StopMeetingTranscriptionCommand.ts b/clients/client-chime-sdk-meetings/src/commands/StopMeetingTranscriptionCommand.ts index 0de6e8afed5e6..1d9da4f311a9c 100644 --- a/clients/client-chime-sdk-meetings/src/commands/StopMeetingTranscriptionCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/StopMeetingTranscriptionCommand.ts @@ -87,6 +87,7 @@ export interface StopMeetingTranscriptionCommandOutput extends __MetadataBearer * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class StopMeetingTranscriptionCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/TagResourceCommand.ts b/clients/client-chime-sdk-meetings/src/commands/TagResourceCommand.ts index 8918674161c8d..325e1e60cd1d8 100644 --- a/clients/client-chime-sdk-meetings/src/commands/TagResourceCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/TagResourceCommand.ts @@ -86,6 +86,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/UntagResourceCommand.ts b/clients/client-chime-sdk-meetings/src/commands/UntagResourceCommand.ts index 4b7f3f4a9e2b4..9e50a12005fde 100644 --- a/clients/client-chime-sdk-meetings/src/commands/UntagResourceCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/UntagResourceCommand.ts @@ -101,6 +101,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-chime-sdk-meetings/src/commands/UpdateAttendeeCapabilitiesCommand.ts b/clients/client-chime-sdk-meetings/src/commands/UpdateAttendeeCapabilitiesCommand.ts index 3f6775dff12af..50493af793530 100644 --- a/clients/client-chime-sdk-meetings/src/commands/UpdateAttendeeCapabilitiesCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/UpdateAttendeeCapabilitiesCommand.ts @@ -126,6 +126,7 @@ export interface UpdateAttendeeCapabilitiesCommandOutput extends UpdateAttendeeC * @throws {@link ChimeSDKMeetingsServiceException} *

Base exception class for all service exceptions from ChimeSDKMeetings service.

* + * * @public */ export class UpdateAttendeeCapabilitiesCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/AssociateChannelFlowCommand.ts b/clients/client-chime-sdk-messaging/src/commands/AssociateChannelFlowCommand.ts index bb95e00ce6c76..b84953073978e 100644 --- a/clients/client-chime-sdk-messaging/src/commands/AssociateChannelFlowCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/AssociateChannelFlowCommand.ts @@ -91,6 +91,7 @@ export interface AssociateChannelFlowCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class AssociateChannelFlowCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/BatchCreateChannelMembershipCommand.ts b/clients/client-chime-sdk-messaging/src/commands/BatchCreateChannelMembershipCommand.ts index eff1d87ab7ff5..5c08e013ebed3 100644 --- a/clients/client-chime-sdk-messaging/src/commands/BatchCreateChannelMembershipCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/BatchCreateChannelMembershipCommand.ts @@ -119,6 +119,7 @@ export interface BatchCreateChannelMembershipCommandOutput * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class BatchCreateChannelMembershipCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/ChannelFlowCallbackCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ChannelFlowCallbackCommand.ts index 11b9ce858e61e..80d9464a21faf 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ChannelFlowCallbackCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ChannelFlowCallbackCommand.ts @@ -119,6 +119,7 @@ export interface ChannelFlowCallbackCommandOutput extends ChannelFlowCallbackRes * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class ChannelFlowCallbackCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/CreateChannelBanCommand.ts b/clients/client-chime-sdk-messaging/src/commands/CreateChannelBanCommand.ts index 1614879a105dd..824f4cae7ebd0 100644 --- a/clients/client-chime-sdk-messaging/src/commands/CreateChannelBanCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/CreateChannelBanCommand.ts @@ -104,6 +104,7 @@ export interface CreateChannelBanCommandOutput extends CreateChannelBanResponse, * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class CreateChannelBanCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/CreateChannelCommand.ts b/clients/client-chime-sdk-messaging/src/commands/CreateChannelCommand.ts index e8a099e5be203..f725c854a41cf 100644 --- a/clients/client-chime-sdk-messaging/src/commands/CreateChannelCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/CreateChannelCommand.ts @@ -124,6 +124,7 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class CreateChannelCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/CreateChannelFlowCommand.ts b/clients/client-chime-sdk-messaging/src/commands/CreateChannelFlowCommand.ts index 5387142acb238..ba03e24783c10 100644 --- a/clients/client-chime-sdk-messaging/src/commands/CreateChannelFlowCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/CreateChannelFlowCommand.ts @@ -128,6 +128,7 @@ export interface CreateChannelFlowCommandOutput extends CreateChannelFlowRespons * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class CreateChannelFlowCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/CreateChannelMembershipCommand.ts b/clients/client-chime-sdk-messaging/src/commands/CreateChannelMembershipCommand.ts index a5dc53cebc388..427812dcc50f8 100644 --- a/clients/client-chime-sdk-messaging/src/commands/CreateChannelMembershipCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/CreateChannelMembershipCommand.ts @@ -133,6 +133,7 @@ export interface CreateChannelMembershipCommandOutput extends CreateChannelMembe * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class CreateChannelMembershipCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/CreateChannelModeratorCommand.ts b/clients/client-chime-sdk-messaging/src/commands/CreateChannelModeratorCommand.ts index 37c1b40d312c3..30b7bc6cc9ab0 100644 --- a/clients/client-chime-sdk-messaging/src/commands/CreateChannelModeratorCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/CreateChannelModeratorCommand.ts @@ -116,6 +116,7 @@ export interface CreateChannelModeratorCommandOutput extends CreateChannelModera * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class CreateChannelModeratorCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelBanCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelBanCommand.ts index 04f87047c9f1f..39c3e622d881a 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelBanCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelBanCommand.ts @@ -82,6 +82,7 @@ export interface DeleteChannelBanCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DeleteChannelBanCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelCommand.ts index dc312799d4262..3272eef70eb81 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelCommand.ts @@ -86,6 +86,7 @@ export interface DeleteChannelCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DeleteChannelCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelFlowCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelFlowCommand.ts index caac7222e1ac9..f6b2c45609fb5 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelFlowCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelFlowCommand.ts @@ -83,6 +83,7 @@ export interface DeleteChannelFlowCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DeleteChannelFlowCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMembershipCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMembershipCommand.ts index 2a19eb2cfcd9e..36354ed4d2ba9 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMembershipCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMembershipCommand.ts @@ -87,6 +87,7 @@ export interface DeleteChannelMembershipCommandOutput extends __MetadataBearer { * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DeleteChannelMembershipCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMessageCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMessageCommand.ts index c39cdfcc5477a..afdcfe1367a5e 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMessageCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMessageCommand.ts @@ -85,6 +85,7 @@ export interface DeleteChannelMessageCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DeleteChannelMessageCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelModeratorCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelModeratorCommand.ts index 789c893bd1108..8e6b4007ac82b 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelModeratorCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelModeratorCommand.ts @@ -82,6 +82,7 @@ export interface DeleteChannelModeratorCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DeleteChannelModeratorCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DeleteMessagingStreamingConfigurationsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DeleteMessagingStreamingConfigurationsCommand.ts index 46a7b465bffd9..e34d00384ad9f 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DeleteMessagingStreamingConfigurationsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DeleteMessagingStreamingConfigurationsCommand.ts @@ -80,6 +80,7 @@ export interface DeleteMessagingStreamingConfigurationsCommandOutput extends __M * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DeleteMessagingStreamingConfigurationsCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelBanCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelBanCommand.ts index 46bd614d4fabb..2074ce8efde3f 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelBanCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelBanCommand.ts @@ -102,6 +102,7 @@ export interface DescribeChannelBanCommandOutput extends DescribeChannelBanRespo * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DescribeChannelBanCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelCommand.ts index a100aa1a6c595..15c6a11316eda 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelCommand.ts @@ -111,6 +111,7 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _ * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DescribeChannelCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelFlowCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelFlowCommand.ts index 97656787dc597..b4cfb7f0854e6 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelFlowCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelFlowCommand.ts @@ -99,6 +99,7 @@ export interface DescribeChannelFlowCommandOutput extends DescribeChannelFlowRes * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DescribeChannelFlowCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipCommand.ts index 696d19a52c172..7ab59d04c7678 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipCommand.ts @@ -106,6 +106,7 @@ export interface DescribeChannelMembershipCommandOutput extends DescribeChannelM * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DescribeChannelMembershipCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipForAppInstanceUserCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipForAppInstanceUserCommand.ts index 342a761f8db4e..4add52f6edf6c 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipForAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipForAppInstanceUserCommand.ts @@ -109,6 +109,7 @@ export interface DescribeChannelMembershipForAppInstanceUserCommandOutput * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DescribeChannelMembershipForAppInstanceUserCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratedByAppInstanceUserCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratedByAppInstanceUserCommand.ts index 81ead86bfb240..7a232cd867537 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratedByAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratedByAppInstanceUserCommand.ts @@ -104,6 +104,7 @@ export interface DescribeChannelModeratedByAppInstanceUserCommandOutput * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DescribeChannelModeratedByAppInstanceUserCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratorCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratorCommand.ts index be6c7ec6a9b0d..912b77bf918b3 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratorCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratorCommand.ts @@ -102,6 +102,7 @@ export interface DescribeChannelModeratorCommandOutput extends DescribeChannelMo * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DescribeChannelModeratorCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/DisassociateChannelFlowCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DisassociateChannelFlowCommand.ts index 04e68bc0164bb..ac6a08e276005 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DisassociateChannelFlowCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DisassociateChannelFlowCommand.ts @@ -91,6 +91,7 @@ export interface DisassociateChannelFlowCommandOutput extends __MetadataBearer { * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class DisassociateChannelFlowCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/GetChannelMembershipPreferencesCommand.ts b/clients/client-chime-sdk-messaging/src/commands/GetChannelMembershipPreferencesCommand.ts index 8c261748faa9e..dd1bdb2d89385 100644 --- a/clients/client-chime-sdk-messaging/src/commands/GetChannelMembershipPreferencesCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/GetChannelMembershipPreferencesCommand.ts @@ -107,6 +107,7 @@ export interface GetChannelMembershipPreferencesCommandOutput * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class GetChannelMembershipPreferencesCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageCommand.ts b/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageCommand.ts index 8b5e323636674..832c31a6a480e 100644 --- a/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageCommand.ts @@ -125,6 +125,7 @@ export interface GetChannelMessageCommandOutput extends GetChannelMessageRespons * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class GetChannelMessageCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageStatusCommand.ts b/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageStatusCommand.ts index 830d5a748cf85..0dc151e351eac 100644 --- a/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageStatusCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageStatusCommand.ts @@ -118,6 +118,7 @@ export interface GetChannelMessageStatusCommandOutput extends GetChannelMessageS * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class GetChannelMessageStatusCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/GetMessagingSessionEndpointCommand.ts b/clients/client-chime-sdk-messaging/src/commands/GetMessagingSessionEndpointCommand.ts index 6a9184432a45a..5bf71b1178a11 100644 --- a/clients/client-chime-sdk-messaging/src/commands/GetMessagingSessionEndpointCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/GetMessagingSessionEndpointCommand.ts @@ -79,6 +79,7 @@ export interface GetMessagingSessionEndpointCommandOutput * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class GetMessagingSessionEndpointCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/GetMessagingStreamingConfigurationsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/GetMessagingStreamingConfigurationsCommand.ts index 42dbaea31e96e..e5a194e69c2b6 100644 --- a/clients/client-chime-sdk-messaging/src/commands/GetMessagingStreamingConfigurationsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/GetMessagingStreamingConfigurationsCommand.ts @@ -94,6 +94,7 @@ export interface GetMessagingStreamingConfigurationsCommandOutput * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class GetMessagingStreamingConfigurationsCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelBansCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelBansCommand.ts index b27ead9c1f1e9..6607c149eab52 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelBansCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelBansCommand.ts @@ -99,6 +99,7 @@ export interface ListChannelBansCommandOutput extends ListChannelBansResponse, _ * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class ListChannelBansCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelFlowsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelFlowsCommand.ts index 06356da5f762f..49c4ed8714071 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelFlowsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelFlowsCommand.ts @@ -103,6 +103,7 @@ export interface ListChannelFlowsCommandOutput extends ListChannelFlowsResponse, * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class ListChannelFlowsCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsCommand.ts index 7b8d54cbf5b47..4ad2273e05df3 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsCommand.ts @@ -103,6 +103,7 @@ export interface ListChannelMembershipsCommandOutput extends ListChannelMembersh * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class ListChannelMembershipsCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsForAppInstanceUserCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsForAppInstanceUserCommand.ts index be3620bc14a1d..be3dd2bf53600 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsForAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsForAppInstanceUserCommand.ts @@ -114,6 +114,7 @@ export interface ListChannelMembershipsForAppInstanceUserCommandOutput * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class ListChannelMembershipsForAppInstanceUserCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelMessagesCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelMessagesCommand.ts index 4a9997b691641..61f6269184b98 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelMessagesCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelMessagesCommand.ts @@ -134,6 +134,7 @@ export interface ListChannelMessagesCommandOutput extends ListChannelMessagesRes * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class ListChannelMessagesCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelModeratorsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelModeratorsCommand.ts index 8980685840f93..7566dd15c7d66 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelModeratorsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelModeratorsCommand.ts @@ -99,6 +99,7 @@ export interface ListChannelModeratorsCommandOutput extends ListChannelModerator * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class ListChannelModeratorsCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelsAssociatedWithChannelFlowCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelsAssociatedWithChannelFlowCommand.ts index 932c9f85abc39..dd0408a7a5e35 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelsAssociatedWithChannelFlowCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelsAssociatedWithChannelFlowCommand.ts @@ -99,6 +99,7 @@ export interface ListChannelsAssociatedWithChannelFlowCommandOutput * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class ListChannelsAssociatedWithChannelFlowCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelsCommand.ts index a926ec88c9cb9..4aca078a6dab1 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelsCommand.ts @@ -115,6 +115,7 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class ListChannelsCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelsModeratedByAppInstanceUserCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelsModeratedByAppInstanceUserCommand.ts index 82e8a03f62b88..a231c7437dd73 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelsModeratedByAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelsModeratedByAppInstanceUserCommand.ts @@ -108,6 +108,7 @@ export interface ListChannelsModeratedByAppInstanceUserCommandOutput * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class ListChannelsModeratedByAppInstanceUserCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/ListSubChannelsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListSubChannelsCommand.ts index 9d60c04f675a9..1300cebf0e672 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListSubChannelsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListSubChannelsCommand.ts @@ -92,6 +92,7 @@ export interface ListSubChannelsCommandOutput extends ListSubChannelsResponse, _ * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class ListSubChannelsCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/ListTagsForResourceCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListTagsForResourceCommand.ts index 22d640e9e9f90..4b8d7bb7e166f 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListTagsForResourceCommand.ts @@ -86,6 +86,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/PutChannelExpirationSettingsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/PutChannelExpirationSettingsCommand.ts index 07e46098f7a26..972909d7c6cba 100644 --- a/clients/client-chime-sdk-messaging/src/commands/PutChannelExpirationSettingsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/PutChannelExpirationSettingsCommand.ts @@ -112,6 +112,7 @@ export interface PutChannelExpirationSettingsCommandOutput * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class PutChannelExpirationSettingsCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/PutChannelMembershipPreferencesCommand.ts b/clients/client-chime-sdk-messaging/src/commands/PutChannelMembershipPreferencesCommand.ts index 2bb672b4e6afc..4dbf3070ee1ca 100644 --- a/clients/client-chime-sdk-messaging/src/commands/PutChannelMembershipPreferencesCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/PutChannelMembershipPreferencesCommand.ts @@ -118,6 +118,7 @@ export interface PutChannelMembershipPreferencesCommandOutput * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class PutChannelMembershipPreferencesCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/PutMessagingStreamingConfigurationsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/PutMessagingStreamingConfigurationsCommand.ts index beb40c18f8b06..34ccca5a63427 100644 --- a/clients/client-chime-sdk-messaging/src/commands/PutMessagingStreamingConfigurationsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/PutMessagingStreamingConfigurationsCommand.ts @@ -104,6 +104,7 @@ export interface PutMessagingStreamingConfigurationsCommandOutput * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class PutMessagingStreamingConfigurationsCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/RedactChannelMessageCommand.ts b/clients/client-chime-sdk-messaging/src/commands/RedactChannelMessageCommand.ts index 5f6dd2764726a..add065f48f335 100644 --- a/clients/client-chime-sdk-messaging/src/commands/RedactChannelMessageCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/RedactChannelMessageCommand.ts @@ -92,6 +92,7 @@ export interface RedactChannelMessageCommandOutput extends RedactChannelMessageR * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class RedactChannelMessageCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/SearchChannelsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/SearchChannelsCommand.ts index 77fc8bfafd09e..7e4a17021bbcf 100644 --- a/clients/client-chime-sdk-messaging/src/commands/SearchChannelsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/SearchChannelsCommand.ts @@ -108,6 +108,7 @@ export interface SearchChannelsCommandOutput extends SearchChannelsResponse, __M * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class SearchChannelsCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/SendChannelMessageCommand.ts b/clients/client-chime-sdk-messaging/src/commands/SendChannelMessageCommand.ts index b65c9d4a5f758..495903ba2a384 100644 --- a/clients/client-chime-sdk-messaging/src/commands/SendChannelMessageCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/SendChannelMessageCommand.ts @@ -125,6 +125,7 @@ export interface SendChannelMessageCommandOutput extends SendChannelMessageRespo * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class SendChannelMessageCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/TagResourceCommand.ts b/clients/client-chime-sdk-messaging/src/commands/TagResourceCommand.ts index a10771e451e28..033b95a1602a5 100644 --- a/clients/client-chime-sdk-messaging/src/commands/TagResourceCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/TagResourceCommand.ts @@ -84,6 +84,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/UntagResourceCommand.ts b/clients/client-chime-sdk-messaging/src/commands/UntagResourceCommand.ts index f336066d21d37..d867748fd05f3 100644 --- a/clients/client-chime-sdk-messaging/src/commands/UntagResourceCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/UntagResourceCommand.ts @@ -78,6 +78,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelCommand.ts b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelCommand.ts index ec7cb264558bb..8f06d5adfd313 100644 --- a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelCommand.ts @@ -96,6 +96,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class UpdateChannelCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelFlowCommand.ts b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelFlowCommand.ts index e6a16d6f8d059..360b486519411 100644 --- a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelFlowCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelFlowCommand.ts @@ -99,6 +99,7 @@ export interface UpdateChannelFlowCommandOutput extends UpdateChannelFlowRespons * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class UpdateChannelFlowCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelMessageCommand.ts b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelMessageCommand.ts index 35c04ed3e6128..7d2883467ae1d 100644 --- a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelMessageCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelMessageCommand.ts @@ -102,6 +102,7 @@ export interface UpdateChannelMessageCommandOutput extends UpdateChannelMessageR * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class UpdateChannelMessageCommand extends $Command diff --git a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelReadMarkerCommand.ts b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelReadMarkerCommand.ts index 8cccaef25fd33..ae5bf3610fe15 100644 --- a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelReadMarkerCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelReadMarkerCommand.ts @@ -87,6 +87,7 @@ export interface UpdateChannelReadMarkerCommandOutput extends UpdateChannelReadM * @throws {@link ChimeSDKMessagingServiceException} *

Base exception class for all service exceptions from ChimeSDKMessaging service.

* + * * @public */ export class UpdateChannelReadMarkerCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorCommand.ts b/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorCommand.ts index e5be4124800f5..3d479f89855bc 100644 --- a/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorCommand.ts @@ -100,6 +100,7 @@ export interface AssociatePhoneNumbersWithVoiceConnectorCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class AssociatePhoneNumbersWithVoiceConnectorCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorGroupCommand.ts b/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorGroupCommand.ts index 1a652079792d0..5ef8796e04854 100644 --- a/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorGroupCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorGroupCommand.ts @@ -100,6 +100,7 @@ export interface AssociatePhoneNumbersWithVoiceConnectorGroupCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class AssociatePhoneNumbersWithVoiceConnectorGroupCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/BatchDeletePhoneNumberCommand.ts b/clients/client-chime-sdk-voice/src/commands/BatchDeletePhoneNumberCommand.ts index 65f58d84cc37e..595c09dbffefb 100644 --- a/clients/client-chime-sdk-voice/src/commands/BatchDeletePhoneNumberCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/BatchDeletePhoneNumberCommand.ts @@ -95,6 +95,7 @@ export interface BatchDeletePhoneNumberCommandOutput extends BatchDeletePhoneNum * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class BatchDeletePhoneNumberCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/BatchUpdatePhoneNumberCommand.ts b/clients/client-chime-sdk-voice/src/commands/BatchUpdatePhoneNumberCommand.ts index 20e502df67e8b..8cf37328b94d9 100644 --- a/clients/client-chime-sdk-voice/src/commands/BatchUpdatePhoneNumberCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/BatchUpdatePhoneNumberCommand.ts @@ -99,6 +99,7 @@ export interface BatchUpdatePhoneNumberCommandOutput extends BatchUpdatePhoneNum * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class BatchUpdatePhoneNumberCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/CreatePhoneNumberOrderCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreatePhoneNumberOrderCommand.ts index 4778ec8f0acb6..cc0915f2966bf 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreatePhoneNumberOrderCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreatePhoneNumberOrderCommand.ts @@ -101,6 +101,7 @@ export interface CreatePhoneNumberOrderCommandOutput extends CreatePhoneNumberOr * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class CreatePhoneNumberOrderCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/CreateProxySessionCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateProxySessionCommand.ts index 6910e007c8130..b70366bd8d884 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateProxySessionCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateProxySessionCommand.ts @@ -120,6 +120,7 @@ export interface CreateProxySessionCommandOutput extends CreateProxySessionRespo * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class CreateProxySessionCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCallCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCallCommand.ts index b4fe25ca0a7aa..985f41ac0fed6 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCallCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCallCommand.ts @@ -100,6 +100,7 @@ export interface CreateSipMediaApplicationCallCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class CreateSipMediaApplicationCallCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCommand.ts index 47bc178b9335d..9e1d0e4dbee9d 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCommand.ts @@ -112,6 +112,7 @@ export interface CreateSipMediaApplicationCommandOutput extends CreateSipMediaAp * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class CreateSipMediaApplicationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/CreateSipRuleCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateSipRuleCommand.ts index 55024292b9f74..1a02ca99cc9c4 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateSipRuleCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateSipRuleCommand.ts @@ -108,6 +108,7 @@ export interface CreateSipRuleCommandOutput extends CreateSipRuleResponse, __Met * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class CreateSipRuleCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorCommand.ts index 4644db4313b20..f0fcd122704d0 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorCommand.ts @@ -105,6 +105,7 @@ export interface CreateVoiceConnectorCommandOutput extends CreateVoiceConnectorR * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class CreateVoiceConnectorCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorGroupCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorGroupCommand.ts index f6c16db2a067c..106cc2de1e469 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorGroupCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorGroupCommand.ts @@ -102,6 +102,7 @@ export interface CreateVoiceConnectorGroupCommandOutput extends CreateVoiceConne * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class CreateVoiceConnectorGroupCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileCommand.ts index ff9072c473a8d..1e0617b883b89 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileCommand.ts @@ -105,6 +105,7 @@ export interface CreateVoiceProfileCommandOutput extends CreateVoiceProfileRespo * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class CreateVoiceProfileCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileDomainCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileDomainCommand.ts index 4b267230b122e..f28ee637da3b5 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileDomainCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileDomainCommand.ts @@ -114,6 +114,7 @@ export interface CreateVoiceProfileDomainCommandOutput extends CreateVoiceProfil * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class CreateVoiceProfileDomainCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeletePhoneNumberCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeletePhoneNumberCommand.ts index 67c39293baeeb..d08292407b91e 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeletePhoneNumberCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeletePhoneNumberCommand.ts @@ -80,6 +80,7 @@ export interface DeletePhoneNumberCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeletePhoneNumberCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteProxySessionCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteProxySessionCommand.ts index 129e7f354d375..4620058da070c 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteProxySessionCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteProxySessionCommand.ts @@ -76,6 +76,7 @@ export interface DeleteProxySessionCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeleteProxySessionCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteSipMediaApplicationCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteSipMediaApplicationCommand.ts index 45aacc8223727..f487118f438d3 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteSipMediaApplicationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteSipMediaApplicationCommand.ts @@ -77,6 +77,7 @@ export interface DeleteSipMediaApplicationCommandOutput extends __MetadataBearer * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeleteSipMediaApplicationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteSipRuleCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteSipRuleCommand.ts index 8b9375a1384d4..c2b8d48e83b46 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteSipRuleCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteSipRuleCommand.ts @@ -77,6 +77,7 @@ export interface DeleteSipRuleCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeleteSipRuleCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorCommand.ts index bf7235bb71897..002229fae3285 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorCommand.ts @@ -79,6 +79,7 @@ export interface DeleteVoiceConnectorCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeleteVoiceConnectorCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorEmergencyCallingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorEmergencyCallingConfigurationCommand.ts index b481de0151e94..e06a16fa7f623 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorEmergencyCallingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorEmergencyCallingConfigurationCommand.ts @@ -79,6 +79,7 @@ export interface DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeleteVoiceConnectorEmergencyCallingConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.ts index cca65e28989a5..f4382dda1fb55 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput e * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeleteVoiceConnectorExternalSystemsConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorGroupCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorGroupCommand.ts index 2053bdaebcf97..a119ae69a3e9d 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorGroupCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorGroupCommand.ts @@ -79,6 +79,7 @@ export interface DeleteVoiceConnectorGroupCommandOutput extends __MetadataBearer * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeleteVoiceConnectorGroupCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorOriginationCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorOriginationCommand.ts index 656a39ab40dad..e8d1028ad9f88 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorOriginationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorOriginationCommand.ts @@ -81,6 +81,7 @@ export interface DeleteVoiceConnectorOriginationCommandOutput extends __Metadata * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeleteVoiceConnectorOriginationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorProxyCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorProxyCommand.ts index 6a77aa21f6a3e..8ccd9fe89fb3e 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorProxyCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorProxyCommand.ts @@ -74,6 +74,7 @@ export interface DeleteVoiceConnectorProxyCommandOutput extends __MetadataBearer * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeleteVoiceConnectorProxyCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorStreamingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorStreamingConfigurationCommand.ts index 25f4d184fcd69..f27bd52ddb3a0 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorStreamingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorStreamingConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface DeleteVoiceConnectorStreamingConfigurationCommandOutput extends * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeleteVoiceConnectorStreamingConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCommand.ts index 9a21ef78e8d1d..0c40d8c3d5442 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCommand.ts @@ -81,6 +81,7 @@ export interface DeleteVoiceConnectorTerminationCommandOutput extends __Metadata * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeleteVoiceConnectorTerminationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCredentialsCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCredentialsCommand.ts index 926dd762e20ef..b82ace8064f5f 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCredentialsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCredentialsCommand.ts @@ -85,6 +85,7 @@ export interface DeleteVoiceConnectorTerminationCredentialsCommandOutput extends * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeleteVoiceConnectorTerminationCredentialsCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileCommand.ts index 8efecf7206392..578fc1a9aa695 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileCommand.ts @@ -80,6 +80,7 @@ export interface DeleteVoiceProfileCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeleteVoiceProfileCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileDomainCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileDomainCommand.ts index 3784746219dd8..67e9175d3e370 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileDomainCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileDomainCommand.ts @@ -80,6 +80,7 @@ export interface DeleteVoiceProfileDomainCommandOutput extends __MetadataBearer * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DeleteVoiceProfileDomainCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorCommand.ts b/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorCommand.ts index c1348470aab3a..51bbc918d3954 100644 --- a/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorCommand.ts @@ -97,6 +97,7 @@ export interface DisassociatePhoneNumbersFromVoiceConnectorCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DisassociatePhoneNumbersFromVoiceConnectorCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorGroupCommand.ts b/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorGroupCommand.ts index 38e1169e630ad..6ac388f0132d5 100644 --- a/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorGroupCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorGroupCommand.ts @@ -97,6 +97,7 @@ export interface DisassociatePhoneNumbersFromVoiceConnectorGroupCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class DisassociatePhoneNumbersFromVoiceConnectorGroupCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetGlobalSettingsCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetGlobalSettingsCommand.ts index 14a0c34f9c07e..56308800421cf 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetGlobalSettingsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetGlobalSettingsCommand.ts @@ -73,6 +73,7 @@ export interface GetGlobalSettingsCommandOutput extends GetGlobalSettingsRespons * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetGlobalSettingsCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberCommand.ts index 1ab2a3aa9c3fe..56de49dd3b298 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberCommand.ts @@ -111,6 +111,7 @@ export interface GetPhoneNumberCommandOutput extends GetPhoneNumberResponse, __M * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetPhoneNumberCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberOrderCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberOrderCommand.ts index 289f0b0026338..87e454aae6716 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberOrderCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberOrderCommand.ts @@ -95,6 +95,7 @@ export interface GetPhoneNumberOrderCommandOutput extends GetPhoneNumberOrderRes * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetPhoneNumberOrderCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberSettingsCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberSettingsCommand.ts index 45317556e52bc..6811b2dc86c3c 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberSettingsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberSettingsCommand.ts @@ -73,6 +73,7 @@ export interface GetPhoneNumberSettingsCommandOutput extends GetPhoneNumberSetti * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetPhoneNumberSettingsCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetProxySessionCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetProxySessionCommand.ts index e12d5bb6bd497..b2fb9a1f578fc 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetProxySessionCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetProxySessionCommand.ts @@ -105,6 +105,7 @@ export interface GetProxySessionCommandOutput extends GetProxySessionResponse, _ * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetProxySessionCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationAlexaSkillConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationAlexaSkillConfigurationCommand.ts index 969fe7cf3454a..2abcf645ed507 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationAlexaSkillConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationAlexaSkillConfigurationCommand.ts @@ -97,6 +97,7 @@ export interface GetSipMediaApplicationAlexaSkillConfigurationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetSipMediaApplicationAlexaSkillConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationCommand.ts index 42e2591b6442e..eef613492b6c8 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationCommand.ts @@ -93,6 +93,7 @@ export interface GetSipMediaApplicationCommandOutput extends GetSipMediaApplicat * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetSipMediaApplicationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationLoggingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationLoggingConfigurationCommand.ts index 943903a7c85e4..cae5b36903fc6 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationLoggingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationLoggingConfigurationCommand.ts @@ -87,6 +87,7 @@ export interface GetSipMediaApplicationLoggingConfigurationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetSipMediaApplicationLoggingConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetSipRuleCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetSipRuleCommand.ts index 13604e378afbc..1ed6c335ca1ed 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetSipRuleCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetSipRuleCommand.ts @@ -92,6 +92,7 @@ export interface GetSipRuleCommandOutput extends GetSipRuleResponse, __MetadataB * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetSipRuleCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetSpeakerSearchTaskCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetSpeakerSearchTaskCommand.ts index d533a68262470..00f79a4758a33 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetSpeakerSearchTaskCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetSpeakerSearchTaskCommand.ts @@ -104,6 +104,7 @@ export interface GetSpeakerSearchTaskCommandOutput extends GetSpeakerSearchTaskR * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetSpeakerSearchTaskCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorCommand.ts index d2ef951f4f7de..e9330e2d46002 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorCommand.ts @@ -87,6 +87,7 @@ export interface GetVoiceConnectorCommandOutput extends GetVoiceConnectorRespons * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetVoiceConnectorCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorEmergencyCallingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorEmergencyCallingConfigurationCommand.ts index f6bdc21bf8679..e0627d05c66ed 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorEmergencyCallingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorEmergencyCallingConfigurationCommand.ts @@ -94,6 +94,7 @@ export interface GetVoiceConnectorEmergencyCallingConfigurationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetVoiceConnectorEmergencyCallingConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.ts index 4e4cac59e6b4c..36ebf98ac98d2 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.ts @@ -93,6 +93,7 @@ export interface GetVoiceConnectorExternalSystemsConfigurationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetVoiceConnectorExternalSystemsConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorGroupCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorGroupCommand.ts index d0df565ddc7bc..cef781c176570 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorGroupCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorGroupCommand.ts @@ -89,6 +89,7 @@ export interface GetVoiceConnectorGroupCommandOutput extends GetVoiceConnectorGr * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetVoiceConnectorGroupCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorLoggingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorLoggingConfigurationCommand.ts index 9396c49bf661a..52d1e1da85956 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorLoggingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorLoggingConfigurationCommand.ts @@ -89,6 +89,7 @@ export interface GetVoiceConnectorLoggingConfigurationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetVoiceConnectorLoggingConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorOriginationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorOriginationCommand.ts index b505b3b28b830..dfecf2a85c2ee 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorOriginationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorOriginationCommand.ts @@ -92,6 +92,7 @@ export interface GetVoiceConnectorOriginationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetVoiceConnectorOriginationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorProxyCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorProxyCommand.ts index b6f785f5f513c..4a7e84f719694 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorProxyCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorProxyCommand.ts @@ -88,6 +88,7 @@ export interface GetVoiceConnectorProxyCommandOutput extends GetVoiceConnectorPr * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetVoiceConnectorProxyCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorStreamingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorStreamingConfigurationCommand.ts index 097f3dea79310..785aaacf66228 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorStreamingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorStreamingConfigurationCommand.ts @@ -100,6 +100,7 @@ export interface GetVoiceConnectorStreamingConfigurationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetVoiceConnectorStreamingConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationCommand.ts index 49338bfa02b88..2c1d4cfdfffb6 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationCommand.ts @@ -95,6 +95,7 @@ export interface GetVoiceConnectorTerminationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetVoiceConnectorTerminationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationHealthCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationHealthCommand.ts index 7911c8740106c..7094c1f48657a 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationHealthCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationHealthCommand.ts @@ -89,6 +89,7 @@ export interface GetVoiceConnectorTerminationHealthCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetVoiceConnectorTerminationHealthCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileCommand.ts index d44413ccf6f10..9109ec564dd51 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileCommand.ts @@ -90,6 +90,7 @@ export interface GetVoiceProfileCommandOutput extends GetVoiceProfileResponse, _ * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetVoiceProfileCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileDomainCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileDomainCommand.ts index 92023af640d1a..626818f27e533 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileDomainCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileDomainCommand.ts @@ -93,6 +93,7 @@ export interface GetVoiceProfileDomainCommandOutput extends GetVoiceProfileDomai * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetVoiceProfileDomainCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceToneAnalysisTaskCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceToneAnalysisTaskCommand.ts index e7f521cf3708a..531e8429b031f 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceToneAnalysisTaskCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceToneAnalysisTaskCommand.ts @@ -96,6 +96,7 @@ export interface GetVoiceToneAnalysisTaskCommandOutput extends GetVoiceToneAnaly * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class GetVoiceToneAnalysisTaskCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/ListAvailableVoiceConnectorRegionsCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListAvailableVoiceConnectorRegionsCommand.ts index 84982f5edfe3a..81cb0b63295ba 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListAvailableVoiceConnectorRegionsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListAvailableVoiceConnectorRegionsCommand.ts @@ -78,6 +78,7 @@ export interface ListAvailableVoiceConnectorRegionsCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class ListAvailableVoiceConnectorRegionsCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/ListPhoneNumberOrdersCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListPhoneNumberOrdersCommand.ts index ac39d59eadaa1..c1d4e6d1bc579 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListPhoneNumberOrdersCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListPhoneNumberOrdersCommand.ts @@ -94,6 +94,7 @@ export interface ListPhoneNumberOrdersCommandOutput extends ListPhoneNumberOrder * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class ListPhoneNumberOrdersCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/ListPhoneNumbersCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListPhoneNumbersCommand.ts index e08d3c265b766..df783fd47f5cb 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListPhoneNumbersCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListPhoneNumbersCommand.ts @@ -119,6 +119,7 @@ export interface ListPhoneNumbersCommandOutput extends ListPhoneNumbersResponse, * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class ListPhoneNumbersCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/ListProxySessionsCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListProxySessionsCommand.ts index 23456fd9f8763..255dd6305f494 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListProxySessionsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListProxySessionsCommand.ts @@ -110,6 +110,7 @@ export interface ListProxySessionsCommandOutput extends ListProxySessionsRespons * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class ListProxySessionsCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/ListSipMediaApplicationsCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListSipMediaApplicationsCommand.ts index 1b46765461c94..08417b755edf7 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListSipMediaApplicationsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListSipMediaApplicationsCommand.ts @@ -93,6 +93,7 @@ export interface ListSipMediaApplicationsCommandOutput extends ListSipMediaAppli * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class ListSipMediaApplicationsCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/ListSipRulesCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListSipRulesCommand.ts index a4f48f703a472..b7baf134d762f 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListSipRulesCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListSipRulesCommand.ts @@ -93,6 +93,7 @@ export interface ListSipRulesCommandOutput extends ListSipRulesResponse, __Metad * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class ListSipRulesCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/ListSupportedPhoneNumberCountriesCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListSupportedPhoneNumberCountriesCommand.ts index febe855ae62fc..afdf701675e4e 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListSupportedPhoneNumberCountriesCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListSupportedPhoneNumberCountriesCommand.ts @@ -91,6 +91,7 @@ export interface ListSupportedPhoneNumberCountriesCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class ListSupportedPhoneNumberCountriesCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/ListTagsForResourceCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListTagsForResourceCommand.ts index 365842d76a5b1..131d0f0552e95 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListTagsForResourceCommand.ts @@ -83,6 +83,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorGroupsCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorGroupsCommand.ts index 0c3fdce418e0a..c6a23ca99e61b 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorGroupsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorGroupsCommand.ts @@ -90,6 +90,7 @@ export interface ListVoiceConnectorGroupsCommandOutput extends ListVoiceConnecto * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class ListVoiceConnectorGroupsCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorTerminationCredentialsCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorTerminationCredentialsCommand.ts index 4916e5f9143ad..8daf2d9656521 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorTerminationCredentialsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorTerminationCredentialsCommand.ts @@ -88,6 +88,7 @@ export interface ListVoiceConnectorTerminationCredentialsCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class ListVoiceConnectorTerminationCredentialsCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorsCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorsCommand.ts index d1378125e570f..60a9c6ddf960b 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorsCommand.ts @@ -88,6 +88,7 @@ export interface ListVoiceConnectorsCommandOutput extends ListVoiceConnectorsRes * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class ListVoiceConnectorsCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/ListVoiceProfileDomainsCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListVoiceProfileDomainsCommand.ts index 87dd27c3c9226..c7d0feeeeba3f 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListVoiceProfileDomainsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListVoiceProfileDomainsCommand.ts @@ -92,6 +92,7 @@ export interface ListVoiceProfileDomainsCommandOutput extends ListVoiceProfileDo * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class ListVoiceProfileDomainsCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/ListVoiceProfilesCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListVoiceProfilesCommand.ts index 8987d3fcf96b3..caeddd1ff742e 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListVoiceProfilesCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListVoiceProfilesCommand.ts @@ -92,6 +92,7 @@ export interface ListVoiceProfilesCommandOutput extends ListVoiceProfilesRespons * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class ListVoiceProfilesCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationAlexaSkillConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationAlexaSkillConfigurationCommand.ts index d523a0339aa31..60101a69397d4 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationAlexaSkillConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationAlexaSkillConfigurationCommand.ts @@ -104,6 +104,7 @@ export interface PutSipMediaApplicationAlexaSkillConfigurationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class PutSipMediaApplicationAlexaSkillConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationLoggingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationLoggingConfigurationCommand.ts index f8006aaf5008d..d9ef5e57a9fce 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationLoggingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationLoggingConfigurationCommand.ts @@ -90,6 +90,7 @@ export interface PutSipMediaApplicationLoggingConfigurationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class PutSipMediaApplicationLoggingConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorEmergencyCallingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorEmergencyCallingConfigurationCommand.ts index 18394bd36b419..a4b5b7fde354f 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorEmergencyCallingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorEmergencyCallingConfigurationCommand.ts @@ -104,6 +104,7 @@ export interface PutVoiceConnectorEmergencyCallingConfigurationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class PutVoiceConnectorEmergencyCallingConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.ts index 869107e3a4702..6a7ce1e171fdc 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.ts @@ -101,6 +101,7 @@ export interface PutVoiceConnectorExternalSystemsConfigurationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class PutVoiceConnectorExternalSystemsConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorLoggingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorLoggingConfigurationCommand.ts index 74b04566bb0af..d2fbe7b1f9560 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorLoggingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorLoggingConfigurationCommand.ts @@ -92,6 +92,7 @@ export interface PutVoiceConnectorLoggingConfigurationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class PutVoiceConnectorLoggingConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorOriginationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorOriginationCommand.ts index 45443b0c3db3c..3404784d9d775 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorOriginationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorOriginationCommand.ts @@ -104,6 +104,7 @@ export interface PutVoiceConnectorOriginationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class PutVoiceConnectorOriginationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorProxyCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorProxyCommand.ts index 0af8570afd256..a7206e61bf098 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorProxyCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorProxyCommand.ts @@ -97,6 +97,7 @@ export interface PutVoiceConnectorProxyCommandOutput extends PutVoiceConnectorPr * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class PutVoiceConnectorProxyCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorStreamingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorStreamingConfigurationCommand.ts index 7f463a80963b8..2c0df5a69b9c4 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorStreamingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorStreamingConfigurationCommand.ts @@ -112,6 +112,7 @@ export interface PutVoiceConnectorStreamingConfigurationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class PutVoiceConnectorStreamingConfigurationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCommand.ts index f62f1635337b9..ec9c7c8ddd79f 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCommand.ts @@ -110,6 +110,7 @@ export interface PutVoiceConnectorTerminationCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class PutVoiceConnectorTerminationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCredentialsCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCredentialsCommand.ts index bd672023d7858..c349139d21ca8 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCredentialsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCredentialsCommand.ts @@ -87,6 +87,7 @@ export interface PutVoiceConnectorTerminationCredentialsCommandOutput extends __ * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class PutVoiceConnectorTerminationCredentialsCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/RestorePhoneNumberCommand.ts b/clients/client-chime-sdk-voice/src/commands/RestorePhoneNumberCommand.ts index 216bb414de9ec..2fcd9390d4edb 100644 --- a/clients/client-chime-sdk-voice/src/commands/RestorePhoneNumberCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/RestorePhoneNumberCommand.ts @@ -113,6 +113,7 @@ export interface RestorePhoneNumberCommandOutput extends RestorePhoneNumberRespo * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class RestorePhoneNumberCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/SearchAvailablePhoneNumbersCommand.ts b/clients/client-chime-sdk-voice/src/commands/SearchAvailablePhoneNumbersCommand.ts index badf1f326c4b2..a917390cb384f 100644 --- a/clients/client-chime-sdk-voice/src/commands/SearchAvailablePhoneNumbersCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/SearchAvailablePhoneNumbersCommand.ts @@ -95,6 +95,7 @@ export interface SearchAvailablePhoneNumbersCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class SearchAvailablePhoneNumbersCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/StartSpeakerSearchTaskCommand.ts b/clients/client-chime-sdk-voice/src/commands/StartSpeakerSearchTaskCommand.ts index da3c122afff7b..469fd3dbde827 100644 --- a/clients/client-chime-sdk-voice/src/commands/StartSpeakerSearchTaskCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/StartSpeakerSearchTaskCommand.ts @@ -120,6 +120,7 @@ export interface StartSpeakerSearchTaskCommandOutput extends StartSpeakerSearchT * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class StartSpeakerSearchTaskCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/StartVoiceToneAnalysisTaskCommand.ts b/clients/client-chime-sdk-voice/src/commands/StartVoiceToneAnalysisTaskCommand.ts index adf5dbcd1add8..086eca5804a46 100644 --- a/clients/client-chime-sdk-voice/src/commands/StartVoiceToneAnalysisTaskCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/StartVoiceToneAnalysisTaskCommand.ts @@ -112,6 +112,7 @@ export interface StartVoiceToneAnalysisTaskCommandOutput extends StartVoiceToneA * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class StartVoiceToneAnalysisTaskCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/StopSpeakerSearchTaskCommand.ts b/clients/client-chime-sdk-voice/src/commands/StopSpeakerSearchTaskCommand.ts index e6f0be1fb43f6..425e6c521a2af 100644 --- a/clients/client-chime-sdk-voice/src/commands/StopSpeakerSearchTaskCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/StopSpeakerSearchTaskCommand.ts @@ -84,6 +84,7 @@ export interface StopSpeakerSearchTaskCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class StopSpeakerSearchTaskCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/StopVoiceToneAnalysisTaskCommand.ts b/clients/client-chime-sdk-voice/src/commands/StopVoiceToneAnalysisTaskCommand.ts index 8ba3d9821d8d6..b17dbdb070f5a 100644 --- a/clients/client-chime-sdk-voice/src/commands/StopVoiceToneAnalysisTaskCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/StopVoiceToneAnalysisTaskCommand.ts @@ -84,6 +84,7 @@ export interface StopVoiceToneAnalysisTaskCommandOutput extends __MetadataBearer * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class StopVoiceToneAnalysisTaskCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/TagResourceCommand.ts b/clients/client-chime-sdk-voice/src/commands/TagResourceCommand.ts index 5b51cc702151a..e689a0b4bd619 100644 --- a/clients/client-chime-sdk-voice/src/commands/TagResourceCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/TagResourceCommand.ts @@ -80,6 +80,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/UntagResourceCommand.ts b/clients/client-chime-sdk-voice/src/commands/UntagResourceCommand.ts index 5a38cf5051063..789536840e311 100644 --- a/clients/client-chime-sdk-voice/src/commands/UntagResourceCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UntagResourceCommand.ts @@ -74,6 +74,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateGlobalSettingsCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateGlobalSettingsCommand.ts index 461550e219cb8..a1801df91fdc3 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateGlobalSettingsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateGlobalSettingsCommand.ts @@ -73,6 +73,7 @@ export interface UpdateGlobalSettingsCommandOutput extends __MetadataBearer {} * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class UpdateGlobalSettingsCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberCommand.ts index 57d8476f08332..9c30e2268ac5c 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberCommand.ts @@ -123,6 +123,7 @@ export interface UpdatePhoneNumberCommandOutput extends UpdatePhoneNumberRespons * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class UpdatePhoneNumberCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberSettingsCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberSettingsCommand.ts index b252d0f79964c..3e5812dc46ba1 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberSettingsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberSettingsCommand.ts @@ -77,6 +77,7 @@ export interface UpdatePhoneNumberSettingsCommandOutput extends __MetadataBearer * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class UpdatePhoneNumberSettingsCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateProxySessionCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateProxySessionCommand.ts index 8e7b66df1dde7..0370174ff28ef 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateProxySessionCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateProxySessionCommand.ts @@ -109,6 +109,7 @@ export interface UpdateProxySessionCommandOutput extends UpdateProxySessionRespo * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class UpdateProxySessionCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCallCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCallCommand.ts index 5866b18ab989f..e78614ef094f6 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCallCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCallCommand.ts @@ -96,6 +96,7 @@ export interface UpdateSipMediaApplicationCallCommandOutput * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class UpdateSipMediaApplicationCallCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCommand.ts index 0ecf40c330729..3f65fe246c1e3 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCommand.ts @@ -102,6 +102,7 @@ export interface UpdateSipMediaApplicationCommandOutput extends UpdateSipMediaAp * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class UpdateSipMediaApplicationCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateSipRuleCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateSipRuleCommand.ts index 034aee23ae4e4..a617a2699b622 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateSipRuleCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateSipRuleCommand.ts @@ -106,6 +106,7 @@ export interface UpdateSipRuleCommandOutput extends UpdateSipRuleResponse, __Met * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class UpdateSipRuleCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorCommand.ts index cd7b1d7626648..6330282fc84de 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorCommand.ts @@ -88,6 +88,7 @@ export interface UpdateVoiceConnectorCommandOutput extends UpdateVoiceConnectorR * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class UpdateVoiceConnectorCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorGroupCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorGroupCommand.ts index cdeadbf4fce4b..233e29b080944 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorGroupCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorGroupCommand.ts @@ -98,6 +98,7 @@ export interface UpdateVoiceConnectorGroupCommandOutput extends UpdateVoiceConne * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class UpdateVoiceConnectorGroupCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileCommand.ts index e334da54e0e34..70989fc2f5ba6 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileCommand.ts @@ -106,6 +106,7 @@ export interface UpdateVoiceProfileCommandOutput extends UpdateVoiceProfileRespo * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class UpdateVoiceProfileCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileDomainCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileDomainCommand.ts index 1c490af7b17f1..a40df916503b1 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileDomainCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileDomainCommand.ts @@ -95,6 +95,7 @@ export interface UpdateVoiceProfileDomainCommandOutput extends UpdateVoiceProfil * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class UpdateVoiceProfileDomainCommand extends $Command diff --git a/clients/client-chime-sdk-voice/src/commands/ValidateE911AddressCommand.ts b/clients/client-chime-sdk-voice/src/commands/ValidateE911AddressCommand.ts index d8420cb97b7f3..4aed32d4afb5e 100644 --- a/clients/client-chime-sdk-voice/src/commands/ValidateE911AddressCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ValidateE911AddressCommand.ts @@ -114,6 +114,7 @@ export interface ValidateE911AddressCommandOutput extends ValidateE911AddressRes * @throws {@link ChimeSDKVoiceServiceException} *

Base exception class for all service exceptions from ChimeSDKVoice service.

* + * * @public */ export class ValidateE911AddressCommand extends $Command diff --git a/clients/client-chime/src/commands/AssociatePhoneNumberWithUserCommand.ts b/clients/client-chime/src/commands/AssociatePhoneNumberWithUserCommand.ts index 6d65f748dd27b..36b52de136abf 100644 --- a/clients/client-chime/src/commands/AssociatePhoneNumberWithUserCommand.ts +++ b/clients/client-chime/src/commands/AssociatePhoneNumberWithUserCommand.ts @@ -88,6 +88,7 @@ export interface AssociatePhoneNumberWithUserCommandOutput * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class AssociatePhoneNumberWithUserCommand extends $Command diff --git a/clients/client-chime/src/commands/AssociateSigninDelegateGroupsWithAccountCommand.ts b/clients/client-chime/src/commands/AssociateSigninDelegateGroupsWithAccountCommand.ts index b5728252e407d..3fe907a9fc34c 100644 --- a/clients/client-chime/src/commands/AssociateSigninDelegateGroupsWithAccountCommand.ts +++ b/clients/client-chime/src/commands/AssociateSigninDelegateGroupsWithAccountCommand.ts @@ -88,6 +88,7 @@ export interface AssociateSigninDelegateGroupsWithAccountCommandOutput * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class AssociateSigninDelegateGroupsWithAccountCommand extends $Command diff --git a/clients/client-chime/src/commands/BatchCreateRoomMembershipCommand.ts b/clients/client-chime/src/commands/BatchCreateRoomMembershipCommand.ts index b0e140e553d9d..55c7c6138d0da 100644 --- a/clients/client-chime/src/commands/BatchCreateRoomMembershipCommand.ts +++ b/clients/client-chime/src/commands/BatchCreateRoomMembershipCommand.ts @@ -90,6 +90,7 @@ export interface BatchCreateRoomMembershipCommandOutput extends BatchCreateRoomM * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class BatchCreateRoomMembershipCommand extends $Command diff --git a/clients/client-chime/src/commands/BatchDeletePhoneNumberCommand.ts b/clients/client-chime/src/commands/BatchDeletePhoneNumberCommand.ts index 3feeaa5014ffd..53297bdbf4205 100644 --- a/clients/client-chime/src/commands/BatchDeletePhoneNumberCommand.ts +++ b/clients/client-chime/src/commands/BatchDeletePhoneNumberCommand.ts @@ -91,6 +91,7 @@ export interface BatchDeletePhoneNumberCommandOutput extends BatchDeletePhoneNum * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class BatchDeletePhoneNumberCommand extends $Command diff --git a/clients/client-chime/src/commands/BatchSuspendUserCommand.ts b/clients/client-chime/src/commands/BatchSuspendUserCommand.ts index 1fb166ed318a1..81e20d11a98db 100644 --- a/clients/client-chime/src/commands/BatchSuspendUserCommand.ts +++ b/clients/client-chime/src/commands/BatchSuspendUserCommand.ts @@ -97,6 +97,7 @@ export interface BatchSuspendUserCommandOutput extends BatchSuspendUserResponse, * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class BatchSuspendUserCommand extends $Command diff --git a/clients/client-chime/src/commands/BatchUnsuspendUserCommand.ts b/clients/client-chime/src/commands/BatchUnsuspendUserCommand.ts index bcf631a0a9f43..b27a39f378fe2 100644 --- a/clients/client-chime/src/commands/BatchUnsuspendUserCommand.ts +++ b/clients/client-chime/src/commands/BatchUnsuspendUserCommand.ts @@ -94,6 +94,7 @@ export interface BatchUnsuspendUserCommandOutput extends BatchUnsuspendUserRespo * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class BatchUnsuspendUserCommand extends $Command diff --git a/clients/client-chime/src/commands/BatchUpdatePhoneNumberCommand.ts b/clients/client-chime/src/commands/BatchUpdatePhoneNumberCommand.ts index b91fa695beed0..c174cbcced79f 100644 --- a/clients/client-chime/src/commands/BatchUpdatePhoneNumberCommand.ts +++ b/clients/client-chime/src/commands/BatchUpdatePhoneNumberCommand.ts @@ -94,6 +94,7 @@ export interface BatchUpdatePhoneNumberCommandOutput extends BatchUpdatePhoneNum * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class BatchUpdatePhoneNumberCommand extends $Command diff --git a/clients/client-chime/src/commands/BatchUpdateUserCommand.ts b/clients/client-chime/src/commands/BatchUpdateUserCommand.ts index a0d348e66cbaa..3cb1dd84da5c6 100644 --- a/clients/client-chime/src/commands/BatchUpdateUserCommand.ts +++ b/clients/client-chime/src/commands/BatchUpdateUserCommand.ts @@ -97,6 +97,7 @@ export interface BatchUpdateUserCommandOutput extends BatchUpdateUserResponse, _ * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class BatchUpdateUserCommand extends $Command diff --git a/clients/client-chime/src/commands/CreateAccountCommand.ts b/clients/client-chime/src/commands/CreateAccountCommand.ts index c250323f176b1..c4029aebfa6be 100644 --- a/clients/client-chime/src/commands/CreateAccountCommand.ts +++ b/clients/client-chime/src/commands/CreateAccountCommand.ts @@ -95,6 +95,7 @@ export interface CreateAccountCommandOutput extends CreateAccountResponse, __Met * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class CreateAccountCommand extends $Command diff --git a/clients/client-chime/src/commands/CreateBotCommand.ts b/clients/client-chime/src/commands/CreateBotCommand.ts index e90ebdb157abc..c93140139e385 100644 --- a/clients/client-chime/src/commands/CreateBotCommand.ts +++ b/clients/client-chime/src/commands/CreateBotCommand.ts @@ -96,6 +96,7 @@ export interface CreateBotCommandOutput extends CreateBotResponse, __MetadataBea * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class CreateBotCommand extends $Command diff --git a/clients/client-chime/src/commands/CreateMeetingDialOutCommand.ts b/clients/client-chime/src/commands/CreateMeetingDialOutCommand.ts index cab143c40801c..f4d310e665218 100644 --- a/clients/client-chime/src/commands/CreateMeetingDialOutCommand.ts +++ b/clients/client-chime/src/commands/CreateMeetingDialOutCommand.ts @@ -94,6 +94,7 @@ export interface CreateMeetingDialOutCommandOutput extends CreateMeetingDialOutR * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class CreateMeetingDialOutCommand extends $Command diff --git a/clients/client-chime/src/commands/CreatePhoneNumberOrderCommand.ts b/clients/client-chime/src/commands/CreatePhoneNumberOrderCommand.ts index 5e17713d6abc8..f9f73d16feab3 100644 --- a/clients/client-chime/src/commands/CreatePhoneNumberOrderCommand.ts +++ b/clients/client-chime/src/commands/CreatePhoneNumberOrderCommand.ts @@ -100,6 +100,7 @@ export interface CreatePhoneNumberOrderCommandOutput extends CreatePhoneNumberOr * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class CreatePhoneNumberOrderCommand extends $Command diff --git a/clients/client-chime/src/commands/CreateRoomCommand.ts b/clients/client-chime/src/commands/CreateRoomCommand.ts index 768c8f8fd0383..5e518e46c4f89 100644 --- a/clients/client-chime/src/commands/CreateRoomCommand.ts +++ b/clients/client-chime/src/commands/CreateRoomCommand.ts @@ -93,6 +93,7 @@ export interface CreateRoomCommandOutput extends CreateRoomResponse, __MetadataB * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class CreateRoomCommand extends $Command diff --git a/clients/client-chime/src/commands/CreateRoomMembershipCommand.ts b/clients/client-chime/src/commands/CreateRoomMembershipCommand.ts index 582e79c6b6899..3c49ab401bc28 100644 --- a/clients/client-chime/src/commands/CreateRoomMembershipCommand.ts +++ b/clients/client-chime/src/commands/CreateRoomMembershipCommand.ts @@ -102,6 +102,7 @@ export interface CreateRoomMembershipCommandOutput extends CreateRoomMembershipR * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class CreateRoomMembershipCommand extends $Command diff --git a/clients/client-chime/src/commands/CreateUserCommand.ts b/clients/client-chime/src/commands/CreateUserCommand.ts index d7fae98bf435f..33b110d7aec5d 100644 --- a/clients/client-chime/src/commands/CreateUserCommand.ts +++ b/clients/client-chime/src/commands/CreateUserCommand.ts @@ -105,6 +105,7 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class CreateUserCommand extends $Command diff --git a/clients/client-chime/src/commands/DeleteAccountCommand.ts b/clients/client-chime/src/commands/DeleteAccountCommand.ts index 55113346c9639..401e9fac83c7b 100644 --- a/clients/client-chime/src/commands/DeleteAccountCommand.ts +++ b/clients/client-chime/src/commands/DeleteAccountCommand.ts @@ -87,6 +87,7 @@ export interface DeleteAccountCommandOutput extends DeleteAccountResponse, __Met * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class DeleteAccountCommand extends $Command diff --git a/clients/client-chime/src/commands/DeleteEventsConfigurationCommand.ts b/clients/client-chime/src/commands/DeleteEventsConfigurationCommand.ts index fbe6e94d80213..085330951dc8c 100644 --- a/clients/client-chime/src/commands/DeleteEventsConfigurationCommand.ts +++ b/clients/client-chime/src/commands/DeleteEventsConfigurationCommand.ts @@ -72,6 +72,7 @@ export interface DeleteEventsConfigurationCommandOutput extends __MetadataBearer * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class DeleteEventsConfigurationCommand extends $Command diff --git a/clients/client-chime/src/commands/DeletePhoneNumberCommand.ts b/clients/client-chime/src/commands/DeletePhoneNumberCommand.ts index fdd104c3822e1..075e1b63917c4 100644 --- a/clients/client-chime/src/commands/DeletePhoneNumberCommand.ts +++ b/clients/client-chime/src/commands/DeletePhoneNumberCommand.ts @@ -79,6 +79,7 @@ export interface DeletePhoneNumberCommandOutput extends __MetadataBearer {} * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class DeletePhoneNumberCommand extends $Command diff --git a/clients/client-chime/src/commands/DeleteRoomCommand.ts b/clients/client-chime/src/commands/DeleteRoomCommand.ts index 231a5105a37bb..482cfadb1da91 100644 --- a/clients/client-chime/src/commands/DeleteRoomCommand.ts +++ b/clients/client-chime/src/commands/DeleteRoomCommand.ts @@ -75,6 +75,7 @@ export interface DeleteRoomCommandOutput extends __MetadataBearer {} * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class DeleteRoomCommand extends $Command diff --git a/clients/client-chime/src/commands/DeleteRoomMembershipCommand.ts b/clients/client-chime/src/commands/DeleteRoomMembershipCommand.ts index 389856c7bd93b..ab228d34c158f 100644 --- a/clients/client-chime/src/commands/DeleteRoomMembershipCommand.ts +++ b/clients/client-chime/src/commands/DeleteRoomMembershipCommand.ts @@ -76,6 +76,7 @@ export interface DeleteRoomMembershipCommandOutput extends __MetadataBearer {} * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class DeleteRoomMembershipCommand extends $Command diff --git a/clients/client-chime/src/commands/DisassociatePhoneNumberFromUserCommand.ts b/clients/client-chime/src/commands/DisassociatePhoneNumberFromUserCommand.ts index 597c7e6604359..b894737b07e10 100644 --- a/clients/client-chime/src/commands/DisassociatePhoneNumberFromUserCommand.ts +++ b/clients/client-chime/src/commands/DisassociatePhoneNumberFromUserCommand.ts @@ -80,6 +80,7 @@ export interface DisassociatePhoneNumberFromUserCommandOutput * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class DisassociatePhoneNumberFromUserCommand extends $Command diff --git a/clients/client-chime/src/commands/DisassociateSigninDelegateGroupsFromAccountCommand.ts b/clients/client-chime/src/commands/DisassociateSigninDelegateGroupsFromAccountCommand.ts index 1c7efda104206..8f958e6b2ece0 100644 --- a/clients/client-chime/src/commands/DisassociateSigninDelegateGroupsFromAccountCommand.ts +++ b/clients/client-chime/src/commands/DisassociateSigninDelegateGroupsFromAccountCommand.ts @@ -86,6 +86,7 @@ export interface DisassociateSigninDelegateGroupsFromAccountCommandOutput * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class DisassociateSigninDelegateGroupsFromAccountCommand extends $Command diff --git a/clients/client-chime/src/commands/GetAccountCommand.ts b/clients/client-chime/src/commands/GetAccountCommand.ts index 73ba7546241e1..d8566564719e8 100644 --- a/clients/client-chime/src/commands/GetAccountCommand.ts +++ b/clients/client-chime/src/commands/GetAccountCommand.ts @@ -93,6 +93,7 @@ export interface GetAccountCommandOutput extends GetAccountResponse, __MetadataB * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class GetAccountCommand extends $Command diff --git a/clients/client-chime/src/commands/GetAccountSettingsCommand.ts b/clients/client-chime/src/commands/GetAccountSettingsCommand.ts index 8f9032bbc18ed..d0138fc5b3e6b 100644 --- a/clients/client-chime/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-chime/src/commands/GetAccountSettingsCommand.ts @@ -82,6 +82,7 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsRespo * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class GetAccountSettingsCommand extends $Command diff --git a/clients/client-chime/src/commands/GetBotCommand.ts b/clients/client-chime/src/commands/GetBotCommand.ts index 0b713a07665e2..cb81c7f819830 100644 --- a/clients/client-chime/src/commands/GetBotCommand.ts +++ b/clients/client-chime/src/commands/GetBotCommand.ts @@ -87,6 +87,7 @@ export interface GetBotCommandOutput extends GetBotResponse, __MetadataBearer {} * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class GetBotCommand extends $Command diff --git a/clients/client-chime/src/commands/GetEventsConfigurationCommand.ts b/clients/client-chime/src/commands/GetEventsConfigurationCommand.ts index ad2593b919ce0..239a3a9a64208 100644 --- a/clients/client-chime/src/commands/GetEventsConfigurationCommand.ts +++ b/clients/client-chime/src/commands/GetEventsConfigurationCommand.ts @@ -85,6 +85,7 @@ export interface GetEventsConfigurationCommandOutput extends GetEventsConfigurat * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class GetEventsConfigurationCommand extends $Command diff --git a/clients/client-chime/src/commands/GetGlobalSettingsCommand.ts b/clients/client-chime/src/commands/GetGlobalSettingsCommand.ts index 5c6ff6a9ad7f4..87aeea4c10ca9 100644 --- a/clients/client-chime/src/commands/GetGlobalSettingsCommand.ts +++ b/clients/client-chime/src/commands/GetGlobalSettingsCommand.ts @@ -77,6 +77,7 @@ export interface GetGlobalSettingsCommandOutput extends GetGlobalSettingsRespons * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class GetGlobalSettingsCommand extends $Command diff --git a/clients/client-chime/src/commands/GetPhoneNumberCommand.ts b/clients/client-chime/src/commands/GetPhoneNumberCommand.ts index d53c2b7585c5b..f0c04f8705b34 100644 --- a/clients/client-chime/src/commands/GetPhoneNumberCommand.ts +++ b/clients/client-chime/src/commands/GetPhoneNumberCommand.ts @@ -107,6 +107,7 @@ export interface GetPhoneNumberCommandOutput extends GetPhoneNumberResponse, __M * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class GetPhoneNumberCommand extends $Command diff --git a/clients/client-chime/src/commands/GetPhoneNumberOrderCommand.ts b/clients/client-chime/src/commands/GetPhoneNumberOrderCommand.ts index e88cc72efda37..5485cd622dc88 100644 --- a/clients/client-chime/src/commands/GetPhoneNumberOrderCommand.ts +++ b/clients/client-chime/src/commands/GetPhoneNumberOrderCommand.ts @@ -93,6 +93,7 @@ export interface GetPhoneNumberOrderCommandOutput extends GetPhoneNumberOrderRes * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class GetPhoneNumberOrderCommand extends $Command diff --git a/clients/client-chime/src/commands/GetPhoneNumberSettingsCommand.ts b/clients/client-chime/src/commands/GetPhoneNumberSettingsCommand.ts index 4294f7c31ac1b..3a8f0c8612ce3 100644 --- a/clients/client-chime/src/commands/GetPhoneNumberSettingsCommand.ts +++ b/clients/client-chime/src/commands/GetPhoneNumberSettingsCommand.ts @@ -72,6 +72,7 @@ export interface GetPhoneNumberSettingsCommandOutput extends GetPhoneNumberSetti * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class GetPhoneNumberSettingsCommand extends $Command diff --git a/clients/client-chime/src/commands/GetRetentionSettingsCommand.ts b/clients/client-chime/src/commands/GetRetentionSettingsCommand.ts index a39a038968e0e..4b3cc0fad81c5 100644 --- a/clients/client-chime/src/commands/GetRetentionSettingsCommand.ts +++ b/clients/client-chime/src/commands/GetRetentionSettingsCommand.ts @@ -87,6 +87,7 @@ export interface GetRetentionSettingsCommandOutput extends GetRetentionSettingsR * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class GetRetentionSettingsCommand extends $Command diff --git a/clients/client-chime/src/commands/GetRoomCommand.ts b/clients/client-chime/src/commands/GetRoomCommand.ts index da71b7888b7a2..9bd879332473f 100644 --- a/clients/client-chime/src/commands/GetRoomCommand.ts +++ b/clients/client-chime/src/commands/GetRoomCommand.ts @@ -84,6 +84,7 @@ export interface GetRoomCommandOutput extends GetRoomResponse, __MetadataBearer * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class GetRoomCommand extends $Command diff --git a/clients/client-chime/src/commands/GetUserCommand.ts b/clients/client-chime/src/commands/GetUserCommand.ts index d95ecc3038dcc..1337e7d068e27 100644 --- a/clients/client-chime/src/commands/GetUserCommand.ts +++ b/clients/client-chime/src/commands/GetUserCommand.ts @@ -98,6 +98,7 @@ export interface GetUserCommandOutput extends GetUserResponse, __MetadataBearer * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class GetUserCommand extends $Command diff --git a/clients/client-chime/src/commands/GetUserSettingsCommand.ts b/clients/client-chime/src/commands/GetUserSettingsCommand.ts index 05995239e3603..ae36a1fab897f 100644 --- a/clients/client-chime/src/commands/GetUserSettingsCommand.ts +++ b/clients/client-chime/src/commands/GetUserSettingsCommand.ts @@ -83,6 +83,7 @@ export interface GetUserSettingsCommandOutput extends GetUserSettingsResponse, _ * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class GetUserSettingsCommand extends $Command diff --git a/clients/client-chime/src/commands/InviteUsersCommand.ts b/clients/client-chime/src/commands/InviteUsersCommand.ts index 5f06c003f3ccf..c557a433060e4 100644 --- a/clients/client-chime/src/commands/InviteUsersCommand.ts +++ b/clients/client-chime/src/commands/InviteUsersCommand.ts @@ -94,6 +94,7 @@ export interface InviteUsersCommandOutput extends InviteUsersResponse, __Metadat * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class InviteUsersCommand extends $Command diff --git a/clients/client-chime/src/commands/ListAccountsCommand.ts b/clients/client-chime/src/commands/ListAccountsCommand.ts index 30aaffb49ca39..1983c5fb940a0 100644 --- a/clients/client-chime/src/commands/ListAccountsCommand.ts +++ b/clients/client-chime/src/commands/ListAccountsCommand.ts @@ -100,6 +100,7 @@ export interface ListAccountsCommandOutput extends ListAccountsResponse, __Metad * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class ListAccountsCommand extends $Command diff --git a/clients/client-chime/src/commands/ListBotsCommand.ts b/clients/client-chime/src/commands/ListBotsCommand.ts index 1b6fbd3eedc65..e644f1cc30a20 100644 --- a/clients/client-chime/src/commands/ListBotsCommand.ts +++ b/clients/client-chime/src/commands/ListBotsCommand.ts @@ -91,6 +91,7 @@ export interface ListBotsCommandOutput extends ListBotsResponse, __MetadataBeare * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class ListBotsCommand extends $Command diff --git a/clients/client-chime/src/commands/ListPhoneNumberOrdersCommand.ts b/clients/client-chime/src/commands/ListPhoneNumberOrdersCommand.ts index e9a257fe1e847..45af43cb24c96 100644 --- a/clients/client-chime/src/commands/ListPhoneNumberOrdersCommand.ts +++ b/clients/client-chime/src/commands/ListPhoneNumberOrdersCommand.ts @@ -93,6 +93,7 @@ export interface ListPhoneNumberOrdersCommandOutput extends ListPhoneNumberOrder * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class ListPhoneNumberOrdersCommand extends $Command diff --git a/clients/client-chime/src/commands/ListPhoneNumbersCommand.ts b/clients/client-chime/src/commands/ListPhoneNumbersCommand.ts index 2b8a3b231cab4..ff0d956085861 100644 --- a/clients/client-chime/src/commands/ListPhoneNumbersCommand.ts +++ b/clients/client-chime/src/commands/ListPhoneNumbersCommand.ts @@ -115,6 +115,7 @@ export interface ListPhoneNumbersCommandOutput extends ListPhoneNumbersResponse, * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class ListPhoneNumbersCommand extends $Command diff --git a/clients/client-chime/src/commands/ListRoomMembershipsCommand.ts b/clients/client-chime/src/commands/ListRoomMembershipsCommand.ts index cf9a407742755..0b4e21969105f 100644 --- a/clients/client-chime/src/commands/ListRoomMembershipsCommand.ts +++ b/clients/client-chime/src/commands/ListRoomMembershipsCommand.ts @@ -99,6 +99,7 @@ export interface ListRoomMembershipsCommandOutput extends ListRoomMembershipsRes * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class ListRoomMembershipsCommand extends $Command diff --git a/clients/client-chime/src/commands/ListRoomsCommand.ts b/clients/client-chime/src/commands/ListRoomsCommand.ts index 1cb52a0795432..70faa6f925854 100644 --- a/clients/client-chime/src/commands/ListRoomsCommand.ts +++ b/clients/client-chime/src/commands/ListRoomsCommand.ts @@ -89,6 +89,7 @@ export interface ListRoomsCommandOutput extends ListRoomsResponse, __MetadataBea * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class ListRoomsCommand extends $Command diff --git a/clients/client-chime/src/commands/ListSupportedPhoneNumberCountriesCommand.ts b/clients/client-chime/src/commands/ListSupportedPhoneNumberCountriesCommand.ts index ce6ae88df4c42..b3bf04f418e5f 100644 --- a/clients/client-chime/src/commands/ListSupportedPhoneNumberCountriesCommand.ts +++ b/clients/client-chime/src/commands/ListSupportedPhoneNumberCountriesCommand.ts @@ -91,6 +91,7 @@ export interface ListSupportedPhoneNumberCountriesCommandOutput * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class ListSupportedPhoneNumberCountriesCommand extends $Command diff --git a/clients/client-chime/src/commands/ListUsersCommand.ts b/clients/client-chime/src/commands/ListUsersCommand.ts index ad28f8764d2a2..7bdc38118b9b1 100644 --- a/clients/client-chime/src/commands/ListUsersCommand.ts +++ b/clients/client-chime/src/commands/ListUsersCommand.ts @@ -106,6 +106,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class ListUsersCommand extends $Command diff --git a/clients/client-chime/src/commands/LogoutUserCommand.ts b/clients/client-chime/src/commands/LogoutUserCommand.ts index 4b2516ea008d7..1b9ba1c4b3f42 100644 --- a/clients/client-chime/src/commands/LogoutUserCommand.ts +++ b/clients/client-chime/src/commands/LogoutUserCommand.ts @@ -75,6 +75,7 @@ export interface LogoutUserCommandOutput extends LogoutUserResponse, __MetadataB * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class LogoutUserCommand extends $Command diff --git a/clients/client-chime/src/commands/PutEventsConfigurationCommand.ts b/clients/client-chime/src/commands/PutEventsConfigurationCommand.ts index df5d695a88e43..e1fbe9b1f27eb 100644 --- a/clients/client-chime/src/commands/PutEventsConfigurationCommand.ts +++ b/clients/client-chime/src/commands/PutEventsConfigurationCommand.ts @@ -90,6 +90,7 @@ export interface PutEventsConfigurationCommandOutput extends PutEventsConfigurat * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class PutEventsConfigurationCommand extends $Command diff --git a/clients/client-chime/src/commands/PutRetentionSettingsCommand.ts b/clients/client-chime/src/commands/PutRetentionSettingsCommand.ts index 54008a2986b55..6e31cbde64337 100644 --- a/clients/client-chime/src/commands/PutRetentionSettingsCommand.ts +++ b/clients/client-chime/src/commands/PutRetentionSettingsCommand.ts @@ -107,6 +107,7 @@ export interface PutRetentionSettingsCommandOutput extends PutRetentionSettingsR * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class PutRetentionSettingsCommand extends $Command diff --git a/clients/client-chime/src/commands/RedactConversationMessageCommand.ts b/clients/client-chime/src/commands/RedactConversationMessageCommand.ts index 27f8951267115..dafbca9ecb383 100644 --- a/clients/client-chime/src/commands/RedactConversationMessageCommand.ts +++ b/clients/client-chime/src/commands/RedactConversationMessageCommand.ts @@ -76,6 +76,7 @@ export interface RedactConversationMessageCommandOutput extends RedactConversati * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class RedactConversationMessageCommand extends $Command diff --git a/clients/client-chime/src/commands/RedactRoomMessageCommand.ts b/clients/client-chime/src/commands/RedactRoomMessageCommand.ts index be90ec4b05cde..30901d12f86e6 100644 --- a/clients/client-chime/src/commands/RedactRoomMessageCommand.ts +++ b/clients/client-chime/src/commands/RedactRoomMessageCommand.ts @@ -76,6 +76,7 @@ export interface RedactRoomMessageCommandOutput extends RedactRoomMessageRespons * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class RedactRoomMessageCommand extends $Command diff --git a/clients/client-chime/src/commands/RegenerateSecurityTokenCommand.ts b/clients/client-chime/src/commands/RegenerateSecurityTokenCommand.ts index e2dedca0c0f14..5f835ac0fb41e 100644 --- a/clients/client-chime/src/commands/RegenerateSecurityTokenCommand.ts +++ b/clients/client-chime/src/commands/RegenerateSecurityTokenCommand.ts @@ -91,6 +91,7 @@ export interface RegenerateSecurityTokenCommandOutput extends RegenerateSecurity * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class RegenerateSecurityTokenCommand extends $Command diff --git a/clients/client-chime/src/commands/ResetPersonalPINCommand.ts b/clients/client-chime/src/commands/ResetPersonalPINCommand.ts index 6df498ee8f76d..9332c69494fb7 100644 --- a/clients/client-chime/src/commands/ResetPersonalPINCommand.ts +++ b/clients/client-chime/src/commands/ResetPersonalPINCommand.ts @@ -99,6 +99,7 @@ export interface ResetPersonalPINCommandOutput extends ResetPersonalPINResponse, * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class ResetPersonalPINCommand extends $Command diff --git a/clients/client-chime/src/commands/RestorePhoneNumberCommand.ts b/clients/client-chime/src/commands/RestorePhoneNumberCommand.ts index ec4e657d1ff9f..a6a9d953db91f 100644 --- a/clients/client-chime/src/commands/RestorePhoneNumberCommand.ts +++ b/clients/client-chime/src/commands/RestorePhoneNumberCommand.ts @@ -111,6 +111,7 @@ export interface RestorePhoneNumberCommandOutput extends RestorePhoneNumberRespo * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class RestorePhoneNumberCommand extends $Command diff --git a/clients/client-chime/src/commands/SearchAvailablePhoneNumbersCommand.ts b/clients/client-chime/src/commands/SearchAvailablePhoneNumbersCommand.ts index 6ddca726c614c..be03f4fb44959 100644 --- a/clients/client-chime/src/commands/SearchAvailablePhoneNumbersCommand.ts +++ b/clients/client-chime/src/commands/SearchAvailablePhoneNumbersCommand.ts @@ -99,6 +99,7 @@ export interface SearchAvailablePhoneNumbersCommandOutput * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class SearchAvailablePhoneNumbersCommand extends $Command diff --git a/clients/client-chime/src/commands/UpdateAccountCommand.ts b/clients/client-chime/src/commands/UpdateAccountCommand.ts index 942bb8ebbca81..988991e681eca 100644 --- a/clients/client-chime/src/commands/UpdateAccountCommand.ts +++ b/clients/client-chime/src/commands/UpdateAccountCommand.ts @@ -94,6 +94,7 @@ export interface UpdateAccountCommandOutput extends UpdateAccountResponse, __Met * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class UpdateAccountCommand extends $Command diff --git a/clients/client-chime/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-chime/src/commands/UpdateAccountSettingsCommand.ts index 911746bdd6047..db0ef8d477e46 100644 --- a/clients/client-chime/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-chime/src/commands/UpdateAccountSettingsCommand.ts @@ -86,6 +86,7 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class UpdateAccountSettingsCommand extends $Command diff --git a/clients/client-chime/src/commands/UpdateBotCommand.ts b/clients/client-chime/src/commands/UpdateBotCommand.ts index dd2c67d859821..ff529d5b65426 100644 --- a/clients/client-chime/src/commands/UpdateBotCommand.ts +++ b/clients/client-chime/src/commands/UpdateBotCommand.ts @@ -88,6 +88,7 @@ export interface UpdateBotCommandOutput extends UpdateBotResponse, __MetadataBea * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class UpdateBotCommand extends $Command diff --git a/clients/client-chime/src/commands/UpdateGlobalSettingsCommand.ts b/clients/client-chime/src/commands/UpdateGlobalSettingsCommand.ts index acea4d7efadae..67afed00cfa75 100644 --- a/clients/client-chime/src/commands/UpdateGlobalSettingsCommand.ts +++ b/clients/client-chime/src/commands/UpdateGlobalSettingsCommand.ts @@ -76,6 +76,7 @@ export interface UpdateGlobalSettingsCommandOutput extends __MetadataBearer {} * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class UpdateGlobalSettingsCommand extends $Command diff --git a/clients/client-chime/src/commands/UpdatePhoneNumberCommand.ts b/clients/client-chime/src/commands/UpdatePhoneNumberCommand.ts index ffe89f809c749..a6b42f75e527e 100644 --- a/clients/client-chime/src/commands/UpdatePhoneNumberCommand.ts +++ b/clients/client-chime/src/commands/UpdatePhoneNumberCommand.ts @@ -116,6 +116,7 @@ export interface UpdatePhoneNumberCommandOutput extends UpdatePhoneNumberRespons * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class UpdatePhoneNumberCommand extends $Command diff --git a/clients/client-chime/src/commands/UpdatePhoneNumberSettingsCommand.ts b/clients/client-chime/src/commands/UpdatePhoneNumberSettingsCommand.ts index edac4b1da45f7..6986bef63f872 100644 --- a/clients/client-chime/src/commands/UpdatePhoneNumberSettingsCommand.ts +++ b/clients/client-chime/src/commands/UpdatePhoneNumberSettingsCommand.ts @@ -76,6 +76,7 @@ export interface UpdatePhoneNumberSettingsCommandOutput extends __MetadataBearer * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class UpdatePhoneNumberSettingsCommand extends $Command diff --git a/clients/client-chime/src/commands/UpdateRoomCommand.ts b/clients/client-chime/src/commands/UpdateRoomCommand.ts index d89a12d3500ed..fd0b3687fa054 100644 --- a/clients/client-chime/src/commands/UpdateRoomCommand.ts +++ b/clients/client-chime/src/commands/UpdateRoomCommand.ts @@ -90,6 +90,7 @@ export interface UpdateRoomCommandOutput extends UpdateRoomResponse, __MetadataB * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class UpdateRoomCommand extends $Command diff --git a/clients/client-chime/src/commands/UpdateRoomMembershipCommand.ts b/clients/client-chime/src/commands/UpdateRoomMembershipCommand.ts index e41282f519edc..7747901dda6dd 100644 --- a/clients/client-chime/src/commands/UpdateRoomMembershipCommand.ts +++ b/clients/client-chime/src/commands/UpdateRoomMembershipCommand.ts @@ -98,6 +98,7 @@ export interface UpdateRoomMembershipCommandOutput extends UpdateRoomMembershipR * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class UpdateRoomMembershipCommand extends $Command diff --git a/clients/client-chime/src/commands/UpdateUserCommand.ts b/clients/client-chime/src/commands/UpdateUserCommand.ts index 8e21c6e9e4dee..d9e7f531d3eb9 100644 --- a/clients/client-chime/src/commands/UpdateUserCommand.ts +++ b/clients/client-chime/src/commands/UpdateUserCommand.ts @@ -105,6 +105,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class UpdateUserCommand extends $Command diff --git a/clients/client-chime/src/commands/UpdateUserSettingsCommand.ts b/clients/client-chime/src/commands/UpdateUserSettingsCommand.ts index ec707c1352c89..5b21269ed8c67 100644 --- a/clients/client-chime/src/commands/UpdateUserSettingsCommand.ts +++ b/clients/client-chime/src/commands/UpdateUserSettingsCommand.ts @@ -82,6 +82,7 @@ export interface UpdateUserSettingsCommandOutput extends __MetadataBearer {} * @throws {@link ChimeServiceException} *

Base exception class for all service exceptions from Chime service.

* + * * @public */ export class UpdateUserSettingsCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/BatchGetCollaborationAnalysisTemplateCommand.ts b/clients/client-cleanrooms/src/commands/BatchGetCollaborationAnalysisTemplateCommand.ts index dce35f6b539a5..1d0718bf29e13 100644 --- a/clients/client-cleanrooms/src/commands/BatchGetCollaborationAnalysisTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/BatchGetCollaborationAnalysisTemplateCommand.ts @@ -158,6 +158,7 @@ export interface BatchGetCollaborationAnalysisTemplateCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class BatchGetCollaborationAnalysisTemplateCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/BatchGetSchemaAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/BatchGetSchemaAnalysisRuleCommand.ts index 0c9029d84e2a5..a4c474eb72508 100644 --- a/clients/client-cleanrooms/src/commands/BatchGetSchemaAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/BatchGetSchemaAnalysisRuleCommand.ts @@ -267,6 +267,7 @@ export interface BatchGetSchemaAnalysisRuleCommandOutput extends BatchGetSchemaA * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class BatchGetSchemaAnalysisRuleCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/BatchGetSchemaCommand.ts b/clients/client-cleanrooms/src/commands/BatchGetSchemaCommand.ts index 172aa549de171..b75729939efdb 100644 --- a/clients/client-cleanrooms/src/commands/BatchGetSchemaCommand.ts +++ b/clients/client-cleanrooms/src/commands/BatchGetSchemaCommand.ts @@ -136,6 +136,7 @@ export interface BatchGetSchemaCommandOutput extends BatchGetSchemaOutput, __Met * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class BatchGetSchemaCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/CreateAnalysisTemplateCommand.ts b/clients/client-cleanrooms/src/commands/CreateAnalysisTemplateCommand.ts index 91f6d007db295..89f358e70c515 100644 --- a/clients/client-cleanrooms/src/commands/CreateAnalysisTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateAnalysisTemplateCommand.ts @@ -186,6 +186,7 @@ export interface CreateAnalysisTemplateCommandOutput extends CreateAnalysisTempl * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class CreateAnalysisTemplateCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/CreateCollaborationCommand.ts b/clients/client-cleanrooms/src/commands/CreateCollaborationCommand.ts index 1b033168067cf..db7193728e151 100644 --- a/clients/client-cleanrooms/src/commands/CreateCollaborationCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateCollaborationCommand.ts @@ -159,6 +159,7 @@ export interface CreateCollaborationCommandOutput extends CreateCollaborationOut * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class CreateCollaborationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/CreateConfiguredAudienceModelAssociationCommand.ts b/clients/client-cleanrooms/src/commands/CreateConfiguredAudienceModelAssociationCommand.ts index 412ad1151858a..59d2f9b4c90d9 100644 --- a/clients/client-cleanrooms/src/commands/CreateConfiguredAudienceModelAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateConfiguredAudienceModelAssociationCommand.ts @@ -105,6 +105,7 @@ export interface CreateConfiguredAudienceModelAssociationCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class CreateConfiguredAudienceModelAssociationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/CreateConfiguredTableAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/CreateConfiguredTableAnalysisRuleCommand.ts index 460644070dfeb..3e7645616414e 100644 --- a/clients/client-cleanrooms/src/commands/CreateConfiguredTableAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateConfiguredTableAnalysisRuleCommand.ts @@ -221,6 +221,7 @@ export interface CreateConfiguredTableAnalysisRuleCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class CreateConfiguredTableAnalysisRuleCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.ts index a371f8f8fa199..e91a972c31530 100644 --- a/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.ts @@ -147,6 +147,7 @@ export interface CreateConfiguredTableAssociationAnalysisRuleCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class CreateConfiguredTableAssociationAnalysisRuleCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationCommand.ts b/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationCommand.ts index 821ea31971a63..6ae7700899132 100644 --- a/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationCommand.ts @@ -104,6 +104,7 @@ export interface CreateConfiguredTableAssociationCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class CreateConfiguredTableAssociationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/CreateConfiguredTableCommand.ts b/clients/client-cleanrooms/src/commands/CreateConfiguredTableCommand.ts index 355be065543b0..30ad9f5d376c3 100644 --- a/clients/client-cleanrooms/src/commands/CreateConfiguredTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateConfiguredTableCommand.ts @@ -158,6 +158,7 @@ export interface CreateConfiguredTableCommandOutput extends CreateConfiguredTabl * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class CreateConfiguredTableCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/CreateIdMappingTableCommand.ts b/clients/client-cleanrooms/src/commands/CreateIdMappingTableCommand.ts index 213af76181d96..3bc8dad22a142 100644 --- a/clients/client-cleanrooms/src/commands/CreateIdMappingTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateIdMappingTableCommand.ts @@ -110,6 +110,7 @@ export interface CreateIdMappingTableCommandOutput extends CreateIdMappingTableO * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class CreateIdMappingTableCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/CreateIdNamespaceAssociationCommand.ts b/clients/client-cleanrooms/src/commands/CreateIdNamespaceAssociationCommand.ts index 65473189050dd..a0d8592f1e1e9 100644 --- a/clients/client-cleanrooms/src/commands/CreateIdNamespaceAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateIdNamespaceAssociationCommand.ts @@ -117,6 +117,7 @@ export interface CreateIdNamespaceAssociationCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class CreateIdNamespaceAssociationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/CreateMembershipCommand.ts b/clients/client-cleanrooms/src/commands/CreateMembershipCommand.ts index 2f65355e93c80..3519e1d57c86b 100644 --- a/clients/client-cleanrooms/src/commands/CreateMembershipCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateMembershipCommand.ts @@ -175,6 +175,7 @@ export interface CreateMembershipCommandOutput extends CreateMembershipOutput, _ * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class CreateMembershipCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/CreatePrivacyBudgetTemplateCommand.ts b/clients/client-cleanrooms/src/commands/CreatePrivacyBudgetTemplateCommand.ts index 3cf83836b44c8..679db8e556280 100644 --- a/clients/client-cleanrooms/src/commands/CreatePrivacyBudgetTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreatePrivacyBudgetTemplateCommand.ts @@ -104,6 +104,7 @@ export interface CreatePrivacyBudgetTemplateCommandOutput extends CreatePrivacyB * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class CreatePrivacyBudgetTemplateCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/DeleteAnalysisTemplateCommand.ts b/clients/client-cleanrooms/src/commands/DeleteAnalysisTemplateCommand.ts index 397347e7fb913..2351140cfaf1e 100644 --- a/clients/client-cleanrooms/src/commands/DeleteAnalysisTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteAnalysisTemplateCommand.ts @@ -69,6 +69,7 @@ export interface DeleteAnalysisTemplateCommandOutput extends DeleteAnalysisTempl * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class DeleteAnalysisTemplateCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/DeleteCollaborationCommand.ts b/clients/client-cleanrooms/src/commands/DeleteCollaborationCommand.ts index 3bc151cc287e6..f141d99a0f57c 100644 --- a/clients/client-cleanrooms/src/commands/DeleteCollaborationCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteCollaborationCommand.ts @@ -65,6 +65,7 @@ export interface DeleteCollaborationCommandOutput extends DeleteCollaborationOut * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class DeleteCollaborationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/DeleteConfiguredAudienceModelAssociationCommand.ts b/clients/client-cleanrooms/src/commands/DeleteConfiguredAudienceModelAssociationCommand.ts index b148d89d3331c..1a42256966767 100644 --- a/clients/client-cleanrooms/src/commands/DeleteConfiguredAudienceModelAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteConfiguredAudienceModelAssociationCommand.ts @@ -78,6 +78,7 @@ export interface DeleteConfiguredAudienceModelAssociationCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class DeleteConfiguredAudienceModelAssociationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAnalysisRuleCommand.ts index 979bdfad573d6..c841eddc3babe 100644 --- a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAnalysisRuleCommand.ts @@ -77,6 +77,7 @@ export interface DeleteConfiguredTableAnalysisRuleCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class DeleteConfiguredTableAnalysisRuleCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.ts index 4413506dacf9f..8a9915970ca16 100644 --- a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.ts @@ -82,6 +82,7 @@ export interface DeleteConfiguredTableAssociationAnalysisRuleCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class DeleteConfiguredTableAssociationAnalysisRuleCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationCommand.ts b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationCommand.ts index 06e95857502db..97aab9e550b11 100644 --- a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationCommand.ts @@ -77,6 +77,7 @@ export interface DeleteConfiguredTableAssociationCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class DeleteConfiguredTableAssociationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableCommand.ts b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableCommand.ts index 74f29605d3cd1..5d2c5f0bcc71b 100644 --- a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableCommand.ts @@ -71,6 +71,7 @@ export interface DeleteConfiguredTableCommandOutput extends DeleteConfiguredTabl * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class DeleteConfiguredTableCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/DeleteIdMappingTableCommand.ts b/clients/client-cleanrooms/src/commands/DeleteIdMappingTableCommand.ts index 07f4960efeef1..ae9b651a2253f 100644 --- a/clients/client-cleanrooms/src/commands/DeleteIdMappingTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteIdMappingTableCommand.ts @@ -69,6 +69,7 @@ export interface DeleteIdMappingTableCommandOutput extends DeleteIdMappingTableO * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class DeleteIdMappingTableCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/DeleteIdNamespaceAssociationCommand.ts b/clients/client-cleanrooms/src/commands/DeleteIdNamespaceAssociationCommand.ts index 84f63b53beea2..03b9d23a08f07 100644 --- a/clients/client-cleanrooms/src/commands/DeleteIdNamespaceAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteIdNamespaceAssociationCommand.ts @@ -74,6 +74,7 @@ export interface DeleteIdNamespaceAssociationCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class DeleteIdNamespaceAssociationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/DeleteMemberCommand.ts b/clients/client-cleanrooms/src/commands/DeleteMemberCommand.ts index 9ec8d6b80ea99..5f97c317a5c88 100644 --- a/clients/client-cleanrooms/src/commands/DeleteMemberCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteMemberCommand.ts @@ -74,6 +74,7 @@ export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __Metadat * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class DeleteMemberCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/DeleteMembershipCommand.ts b/clients/client-cleanrooms/src/commands/DeleteMembershipCommand.ts index b318e3944b04e..6a39b13175ea7 100644 --- a/clients/client-cleanrooms/src/commands/DeleteMembershipCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteMembershipCommand.ts @@ -71,6 +71,7 @@ export interface DeleteMembershipCommandOutput extends DeleteMembershipOutput, _ * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class DeleteMembershipCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/DeletePrivacyBudgetTemplateCommand.ts b/clients/client-cleanrooms/src/commands/DeletePrivacyBudgetTemplateCommand.ts index 77f46c200d06f..b51a21dd3a8dd 100644 --- a/clients/client-cleanrooms/src/commands/DeletePrivacyBudgetTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeletePrivacyBudgetTemplateCommand.ts @@ -72,6 +72,7 @@ export interface DeletePrivacyBudgetTemplateCommandOutput extends DeletePrivacyB * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class DeletePrivacyBudgetTemplateCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetAnalysisTemplateCommand.ts b/clients/client-cleanrooms/src/commands/GetAnalysisTemplateCommand.ts index 464283d0750a9..9ebdb38c85ab6 100644 --- a/clients/client-cleanrooms/src/commands/GetAnalysisTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetAnalysisTemplateCommand.ts @@ -142,6 +142,7 @@ export interface GetAnalysisTemplateCommandOutput extends GetAnalysisTemplateOut * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetAnalysisTemplateCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetCollaborationAnalysisTemplateCommand.ts b/clients/client-cleanrooms/src/commands/GetCollaborationAnalysisTemplateCommand.ts index c090f2d92c78e..262a9a38136da 100644 --- a/clients/client-cleanrooms/src/commands/GetCollaborationAnalysisTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetCollaborationAnalysisTemplateCommand.ts @@ -146,6 +146,7 @@ export interface GetCollaborationAnalysisTemplateCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetCollaborationAnalysisTemplateCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetCollaborationCommand.ts b/clients/client-cleanrooms/src/commands/GetCollaborationCommand.ts index 828205e85d57f..fb75bf77015dc 100644 --- a/clients/client-cleanrooms/src/commands/GetCollaborationCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetCollaborationCommand.ts @@ -88,6 +88,7 @@ export interface GetCollaborationCommandOutput extends GetCollaborationOutput, _ * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetCollaborationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetCollaborationConfiguredAudienceModelAssociationCommand.ts b/clients/client-cleanrooms/src/commands/GetCollaborationConfiguredAudienceModelAssociationCommand.ts index 5f4a1e25c6d72..1bb376c54957a 100644 --- a/clients/client-cleanrooms/src/commands/GetCollaborationConfiguredAudienceModelAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetCollaborationConfiguredAudienceModelAssociationCommand.ts @@ -91,6 +91,7 @@ export interface GetCollaborationConfiguredAudienceModelAssociationCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetCollaborationConfiguredAudienceModelAssociationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetCollaborationIdNamespaceAssociationCommand.ts b/clients/client-cleanrooms/src/commands/GetCollaborationIdNamespaceAssociationCommand.ts index ab882f1715231..709f7042e0997 100644 --- a/clients/client-cleanrooms/src/commands/GetCollaborationIdNamespaceAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetCollaborationIdNamespaceAssociationCommand.ts @@ -103,6 +103,7 @@ export interface GetCollaborationIdNamespaceAssociationCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetCollaborationIdNamespaceAssociationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetCollaborationPrivacyBudgetTemplateCommand.ts b/clients/client-cleanrooms/src/commands/GetCollaborationPrivacyBudgetTemplateCommand.ts index 31710d565132c..dcebe4836e5ab 100644 --- a/clients/client-cleanrooms/src/commands/GetCollaborationPrivacyBudgetTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetCollaborationPrivacyBudgetTemplateCommand.ts @@ -95,6 +95,7 @@ export interface GetCollaborationPrivacyBudgetTemplateCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetCollaborationPrivacyBudgetTemplateCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetConfiguredAudienceModelAssociationCommand.ts b/clients/client-cleanrooms/src/commands/GetConfiguredAudienceModelAssociationCommand.ts index 4514e0443f676..c2998af231ade 100644 --- a/clients/client-cleanrooms/src/commands/GetConfiguredAudienceModelAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetConfiguredAudienceModelAssociationCommand.ts @@ -92,6 +92,7 @@ export interface GetConfiguredAudienceModelAssociationCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetConfiguredAudienceModelAssociationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetConfiguredTableAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/GetConfiguredTableAnalysisRuleCommand.ts index 872551542eca6..cda4300c436f7 100644 --- a/clients/client-cleanrooms/src/commands/GetConfiguredTableAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetConfiguredTableAnalysisRuleCommand.ts @@ -148,6 +148,7 @@ export interface GetConfiguredTableAnalysisRuleCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetConfiguredTableAnalysisRuleCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationAnalysisRuleCommand.ts index 18d1514c5e8cb..b5d7d94ff94a8 100644 --- a/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationAnalysisRuleCommand.ts @@ -116,6 +116,7 @@ export interface GetConfiguredTableAssociationAnalysisRuleCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetConfiguredTableAssociationAnalysisRuleCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationCommand.ts b/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationCommand.ts index 17a95ce10dd87..de8c1986ffed8 100644 --- a/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationCommand.ts @@ -91,6 +91,7 @@ export interface GetConfiguredTableAssociationCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetConfiguredTableAssociationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetConfiguredTableCommand.ts b/clients/client-cleanrooms/src/commands/GetConfiguredTableCommand.ts index 2f4ea1ff3bc09..537d427422dac 100644 --- a/clients/client-cleanrooms/src/commands/GetConfiguredTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetConfiguredTableCommand.ts @@ -114,6 +114,7 @@ export interface GetConfiguredTableCommandOutput extends GetConfiguredTableOutpu * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetConfiguredTableCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetIdMappingTableCommand.ts b/clients/client-cleanrooms/src/commands/GetIdMappingTableCommand.ts index f162f9b3244b7..114b11d382633 100644 --- a/clients/client-cleanrooms/src/commands/GetIdMappingTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetIdMappingTableCommand.ts @@ -95,6 +95,7 @@ export interface GetIdMappingTableCommandOutput extends GetIdMappingTableOutput, * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetIdMappingTableCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetIdNamespaceAssociationCommand.ts b/clients/client-cleanrooms/src/commands/GetIdNamespaceAssociationCommand.ts index 0826dee8c3d04..920a50d005fd6 100644 --- a/clients/client-cleanrooms/src/commands/GetIdNamespaceAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetIdNamespaceAssociationCommand.ts @@ -95,6 +95,7 @@ export interface GetIdNamespaceAssociationCommandOutput extends GetIdNamespaceAs * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetIdNamespaceAssociationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetMembershipCommand.ts b/clients/client-cleanrooms/src/commands/GetMembershipCommand.ts index 3f299ce2c0191..b6cf2fceb1a5b 100644 --- a/clients/client-cleanrooms/src/commands/GetMembershipCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetMembershipCommand.ts @@ -127,6 +127,7 @@ export interface GetMembershipCommandOutput extends GetMembershipOutput, __Metad * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetMembershipCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetPrivacyBudgetTemplateCommand.ts b/clients/client-cleanrooms/src/commands/GetPrivacyBudgetTemplateCommand.ts index e5e68153cc650..7b8fa711f5d5d 100644 --- a/clients/client-cleanrooms/src/commands/GetPrivacyBudgetTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetPrivacyBudgetTemplateCommand.ts @@ -88,6 +88,7 @@ export interface GetPrivacyBudgetTemplateCommandOutput extends GetPrivacyBudgetT * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetPrivacyBudgetTemplateCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetProtectedJobCommand.ts b/clients/client-cleanrooms/src/commands/GetProtectedJobCommand.ts index aace593db6d5b..9cc4429fa93d3 100644 --- a/clients/client-cleanrooms/src/commands/GetProtectedJobCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetProtectedJobCommand.ts @@ -114,6 +114,7 @@ export interface GetProtectedJobCommandOutput extends GetProtectedJobOutput, __M * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetProtectedJobCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetProtectedQueryCommand.ts b/clients/client-cleanrooms/src/commands/GetProtectedQueryCommand.ts index 73736c91eefda..f3ba96723fb56 100644 --- a/clients/client-cleanrooms/src/commands/GetProtectedQueryCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetProtectedQueryCommand.ts @@ -140,6 +140,7 @@ export interface GetProtectedQueryCommandOutput extends GetProtectedQueryOutput, * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetProtectedQueryCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetSchemaAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/GetSchemaAnalysisRuleCommand.ts index b9d122552098c..0bc4a56f35cdf 100644 --- a/clients/client-cleanrooms/src/commands/GetSchemaAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetSchemaAnalysisRuleCommand.ts @@ -253,6 +253,7 @@ export interface GetSchemaAnalysisRuleCommandOutput extends GetSchemaAnalysisRul * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetSchemaAnalysisRuleCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/GetSchemaCommand.ts b/clients/client-cleanrooms/src/commands/GetSchemaCommand.ts index ac7a1bcb34f13..73cae69299e03 100644 --- a/clients/client-cleanrooms/src/commands/GetSchemaCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetSchemaCommand.ts @@ -125,6 +125,7 @@ export interface GetSchemaCommandOutput extends GetSchemaOutput, __MetadataBeare * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class GetSchemaCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListAnalysisTemplatesCommand.ts b/clients/client-cleanrooms/src/commands/ListAnalysisTemplatesCommand.ts index 0668ca2d6a3f0..031aade14d789 100644 --- a/clients/client-cleanrooms/src/commands/ListAnalysisTemplatesCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListAnalysisTemplatesCommand.ts @@ -86,6 +86,7 @@ export interface ListAnalysisTemplatesCommandOutput extends ListAnalysisTemplate * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListAnalysisTemplatesCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListCollaborationAnalysisTemplatesCommand.ts b/clients/client-cleanrooms/src/commands/ListCollaborationAnalysisTemplatesCommand.ts index 31a6ea35a9f33..70ca50a07e774 100644 --- a/clients/client-cleanrooms/src/commands/ListCollaborationAnalysisTemplatesCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListCollaborationAnalysisTemplatesCommand.ts @@ -90,6 +90,7 @@ export interface ListCollaborationAnalysisTemplatesCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListCollaborationAnalysisTemplatesCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListCollaborationConfiguredAudienceModelAssociationsCommand.ts b/clients/client-cleanrooms/src/commands/ListCollaborationConfiguredAudienceModelAssociationsCommand.ts index 2ab7ea2c4d43a..9fdd7268aafee 100644 --- a/clients/client-cleanrooms/src/commands/ListCollaborationConfiguredAudienceModelAssociationsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListCollaborationConfiguredAudienceModelAssociationsCommand.ts @@ -94,6 +94,7 @@ export interface ListCollaborationConfiguredAudienceModelAssociationsCommandOutp * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListCollaborationConfiguredAudienceModelAssociationsCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListCollaborationIdNamespaceAssociationsCommand.ts b/clients/client-cleanrooms/src/commands/ListCollaborationIdNamespaceAssociationsCommand.ts index e32399f04d044..828602350248d 100644 --- a/clients/client-cleanrooms/src/commands/ListCollaborationIdNamespaceAssociationsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListCollaborationIdNamespaceAssociationsCommand.ts @@ -101,6 +101,7 @@ export interface ListCollaborationIdNamespaceAssociationsCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListCollaborationIdNamespaceAssociationsCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetTemplatesCommand.ts b/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetTemplatesCommand.ts index 5356be18b373c..ed2767f3db8b7 100644 --- a/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetTemplatesCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetTemplatesCommand.ts @@ -93,6 +93,7 @@ export interface ListCollaborationPrivacyBudgetTemplatesCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListCollaborationPrivacyBudgetTemplatesCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetsCommand.ts b/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetsCommand.ts index e43cd209d56e7..5a30bd65e13bc 100644 --- a/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetsCommand.ts @@ -103,6 +103,7 @@ export interface ListCollaborationPrivacyBudgetsCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListCollaborationPrivacyBudgetsCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListCollaborationsCommand.ts b/clients/client-cleanrooms/src/commands/ListCollaborationsCommand.ts index fe96056e8f09b..55e04aa09be00 100644 --- a/clients/client-cleanrooms/src/commands/ListCollaborationsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListCollaborationsCommand.ts @@ -84,6 +84,7 @@ export interface ListCollaborationsCommandOutput extends ListCollaborationsOutpu * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListCollaborationsCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListConfiguredAudienceModelAssociationsCommand.ts b/clients/client-cleanrooms/src/commands/ListConfiguredAudienceModelAssociationsCommand.ts index 5e9f854890544..809b87c949517 100644 --- a/clients/client-cleanrooms/src/commands/ListConfiguredAudienceModelAssociationsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListConfiguredAudienceModelAssociationsCommand.ts @@ -96,6 +96,7 @@ export interface ListConfiguredAudienceModelAssociationsCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListConfiguredAudienceModelAssociationsCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListConfiguredTableAssociationsCommand.ts b/clients/client-cleanrooms/src/commands/ListConfiguredTableAssociationsCommand.ts index 432566c2ac91e..42e0b64cdbbd0 100644 --- a/clients/client-cleanrooms/src/commands/ListConfiguredTableAssociationsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListConfiguredTableAssociationsCommand.ts @@ -92,6 +92,7 @@ export interface ListConfiguredTableAssociationsCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListConfiguredTableAssociationsCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListConfiguredTablesCommand.ts b/clients/client-cleanrooms/src/commands/ListConfiguredTablesCommand.ts index ac65c12bbf067..a68cc92bfb7c9 100644 --- a/clients/client-cleanrooms/src/commands/ListConfiguredTablesCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListConfiguredTablesCommand.ts @@ -84,6 +84,7 @@ export interface ListConfiguredTablesCommandOutput extends ListConfiguredTablesO * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListConfiguredTablesCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListIdMappingTablesCommand.ts b/clients/client-cleanrooms/src/commands/ListIdMappingTablesCommand.ts index ffe574c5fb1d8..480a0a5e760e1 100644 --- a/clients/client-cleanrooms/src/commands/ListIdMappingTablesCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListIdMappingTablesCommand.ts @@ -90,6 +90,7 @@ export interface ListIdMappingTablesCommandOutput extends ListIdMappingTablesOut * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListIdMappingTablesCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListIdNamespaceAssociationsCommand.ts b/clients/client-cleanrooms/src/commands/ListIdNamespaceAssociationsCommand.ts index e0c53bb443091..ab0245e50c004 100644 --- a/clients/client-cleanrooms/src/commands/ListIdNamespaceAssociationsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListIdNamespaceAssociationsCommand.ts @@ -96,6 +96,7 @@ export interface ListIdNamespaceAssociationsCommandOutput extends ListIdNamespac * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListIdNamespaceAssociationsCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListMembersCommand.ts b/clients/client-cleanrooms/src/commands/ListMembersCommand.ts index d67fa0b2f3fef..26d2a53b6c862 100644 --- a/clients/client-cleanrooms/src/commands/ListMembersCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListMembersCommand.ts @@ -107,6 +107,7 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListMembersCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListMembershipsCommand.ts b/clients/client-cleanrooms/src/commands/ListMembershipsCommand.ts index b6020e80b66e0..0256ec4e49377 100644 --- a/clients/client-cleanrooms/src/commands/ListMembershipsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListMembershipsCommand.ts @@ -107,6 +107,7 @@ export interface ListMembershipsCommandOutput extends ListMembershipsOutput, __M * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListMembershipsCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListPrivacyBudgetTemplatesCommand.ts b/clients/client-cleanrooms/src/commands/ListPrivacyBudgetTemplatesCommand.ts index c552471164ae5..97dd2f826ddf8 100644 --- a/clients/client-cleanrooms/src/commands/ListPrivacyBudgetTemplatesCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListPrivacyBudgetTemplatesCommand.ts @@ -85,6 +85,7 @@ export interface ListPrivacyBudgetTemplatesCommandOutput extends ListPrivacyBudg * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListPrivacyBudgetTemplatesCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListPrivacyBudgetsCommand.ts b/clients/client-cleanrooms/src/commands/ListPrivacyBudgetsCommand.ts index 19db1e039fa49..310105639e0c6 100644 --- a/clients/client-cleanrooms/src/commands/ListPrivacyBudgetsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListPrivacyBudgetsCommand.ts @@ -99,6 +99,7 @@ export interface ListPrivacyBudgetsCommandOutput extends ListPrivacyBudgetsOutpu * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListPrivacyBudgetsCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListProtectedJobsCommand.ts b/clients/client-cleanrooms/src/commands/ListProtectedJobsCommand.ts index 46a8b216b99ad..836b6fe97f532 100644 --- a/clients/client-cleanrooms/src/commands/ListProtectedJobsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListProtectedJobsCommand.ts @@ -94,6 +94,7 @@ export interface ListProtectedJobsCommandOutput extends ListProtectedJobsOutput, * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListProtectedJobsCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListProtectedQueriesCommand.ts b/clients/client-cleanrooms/src/commands/ListProtectedQueriesCommand.ts index 8b51dd7df9af9..f6f72e801cfab 100644 --- a/clients/client-cleanrooms/src/commands/ListProtectedQueriesCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListProtectedQueriesCommand.ts @@ -94,6 +94,7 @@ export interface ListProtectedQueriesCommandOutput extends ListProtectedQueriesO * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListProtectedQueriesCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListSchemasCommand.ts b/clients/client-cleanrooms/src/commands/ListSchemasCommand.ts index cbd1958e066e2..e200ce379d6c7 100644 --- a/clients/client-cleanrooms/src/commands/ListSchemasCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListSchemasCommand.ts @@ -91,6 +91,7 @@ export interface ListSchemasCommandOutput extends ListSchemasOutput, __MetadataB * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListSchemasCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/ListTagsForResourceCommand.ts b/clients/client-cleanrooms/src/commands/ListTagsForResourceCommand.ts index 4d68d43d0c47f..609e92d5ec712 100644 --- a/clients/client-cleanrooms/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListTagsForResourceCommand.ts @@ -63,6 +63,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/PopulateIdMappingTableCommand.ts b/clients/client-cleanrooms/src/commands/PopulateIdMappingTableCommand.ts index da0e1c310b8cf..d6bdf1ae0ac9f 100644 --- a/clients/client-cleanrooms/src/commands/PopulateIdMappingTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/PopulateIdMappingTableCommand.ts @@ -77,6 +77,7 @@ export interface PopulateIdMappingTableCommandOutput extends PopulateIdMappingTa * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class PopulateIdMappingTableCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/PreviewPrivacyImpactCommand.ts b/clients/client-cleanrooms/src/commands/PreviewPrivacyImpactCommand.ts index fed9ec0c87e53..f48c56a62f354 100644 --- a/clients/client-cleanrooms/src/commands/PreviewPrivacyImpactCommand.ts +++ b/clients/client-cleanrooms/src/commands/PreviewPrivacyImpactCommand.ts @@ -85,6 +85,7 @@ export interface PreviewPrivacyImpactCommandOutput extends PreviewPrivacyImpactO * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class PreviewPrivacyImpactCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/StartProtectedJobCommand.ts b/clients/client-cleanrooms/src/commands/StartProtectedJobCommand.ts index df00ec3218618..218f6ccf795bb 100644 --- a/clients/client-cleanrooms/src/commands/StartProtectedJobCommand.ts +++ b/clients/client-cleanrooms/src/commands/StartProtectedJobCommand.ts @@ -126,6 +126,7 @@ export interface StartProtectedJobCommandOutput extends StartProtectedJobOutput, * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class StartProtectedJobCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/StartProtectedQueryCommand.ts b/clients/client-cleanrooms/src/commands/StartProtectedQueryCommand.ts index 152e680f7f1a4..3644510cfa70d 100644 --- a/clients/client-cleanrooms/src/commands/StartProtectedQueryCommand.ts +++ b/clients/client-cleanrooms/src/commands/StartProtectedQueryCommand.ts @@ -170,6 +170,7 @@ export interface StartProtectedQueryCommandOutput extends StartProtectedQueryOut * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class StartProtectedQueryCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/TagResourceCommand.ts b/clients/client-cleanrooms/src/commands/TagResourceCommand.ts index a056b71bb7e5e..a484b3df0b4b0 100644 --- a/clients/client-cleanrooms/src/commands/TagResourceCommand.ts +++ b/clients/client-cleanrooms/src/commands/TagResourceCommand.ts @@ -62,6 +62,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/UntagResourceCommand.ts b/clients/client-cleanrooms/src/commands/UntagResourceCommand.ts index 272e061794cb8..f7fa7f910be0a 100644 --- a/clients/client-cleanrooms/src/commands/UntagResourceCommand.ts +++ b/clients/client-cleanrooms/src/commands/UntagResourceCommand.ts @@ -62,6 +62,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/UpdateAnalysisTemplateCommand.ts b/clients/client-cleanrooms/src/commands/UpdateAnalysisTemplateCommand.ts index 0b6ed3defc71f..bb17caacb8968 100644 --- a/clients/client-cleanrooms/src/commands/UpdateAnalysisTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateAnalysisTemplateCommand.ts @@ -143,6 +143,7 @@ export interface UpdateAnalysisTemplateCommandOutput extends UpdateAnalysisTempl * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class UpdateAnalysisTemplateCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/UpdateCollaborationCommand.ts b/clients/client-cleanrooms/src/commands/UpdateCollaborationCommand.ts index 477276325de85..7a1b5613bd2e2 100644 --- a/clients/client-cleanrooms/src/commands/UpdateCollaborationCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateCollaborationCommand.ts @@ -90,6 +90,7 @@ export interface UpdateCollaborationCommandOutput extends UpdateCollaborationOut * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class UpdateCollaborationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/UpdateConfiguredAudienceModelAssociationCommand.ts b/clients/client-cleanrooms/src/commands/UpdateConfiguredAudienceModelAssociationCommand.ts index 01b1aa0532751..febf2c9231ed4 100644 --- a/clients/client-cleanrooms/src/commands/UpdateConfiguredAudienceModelAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateConfiguredAudienceModelAssociationCommand.ts @@ -95,6 +95,7 @@ export interface UpdateConfiguredAudienceModelAssociationCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class UpdateConfiguredAudienceModelAssociationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAnalysisRuleCommand.ts index 99518720eb66d..332716fc9266f 100644 --- a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAnalysisRuleCommand.ts @@ -217,6 +217,7 @@ export interface UpdateConfiguredTableAnalysisRuleCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class UpdateConfiguredTableAnalysisRuleCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.ts index 0d45c1bbf5da2..9a8d788c4cb77 100644 --- a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.ts @@ -147,6 +147,7 @@ export interface UpdateConfiguredTableAssociationAnalysisRuleCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class UpdateConfiguredTableAssociationAnalysisRuleCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationCommand.ts b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationCommand.ts index 8261c503c9a4c..8687f0f1bedfb 100644 --- a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationCommand.ts @@ -96,6 +96,7 @@ export interface UpdateConfiguredTableAssociationCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class UpdateConfiguredTableAssociationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableCommand.ts b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableCommand.ts index eefca3ebc8f63..8f112613247b1 100644 --- a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableCommand.ts @@ -123,6 +123,7 @@ export interface UpdateConfiguredTableCommandOutput extends UpdateConfiguredTabl * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class UpdateConfiguredTableCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/UpdateIdMappingTableCommand.ts b/clients/client-cleanrooms/src/commands/UpdateIdMappingTableCommand.ts index ce61d3e45ae8b..eb509699e4995 100644 --- a/clients/client-cleanrooms/src/commands/UpdateIdMappingTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateIdMappingTableCommand.ts @@ -97,6 +97,7 @@ export interface UpdateIdMappingTableCommandOutput extends UpdateIdMappingTableO * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class UpdateIdMappingTableCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/UpdateIdNamespaceAssociationCommand.ts b/clients/client-cleanrooms/src/commands/UpdateIdNamespaceAssociationCommand.ts index e02a32670f247..8f3ba33597aad 100644 --- a/clients/client-cleanrooms/src/commands/UpdateIdNamespaceAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateIdNamespaceAssociationCommand.ts @@ -105,6 +105,7 @@ export interface UpdateIdNamespaceAssociationCommandOutput * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class UpdateIdNamespaceAssociationCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/UpdateMembershipCommand.ts b/clients/client-cleanrooms/src/commands/UpdateMembershipCommand.ts index 6b48889190bdb..bdc95bc5b8f30 100644 --- a/clients/client-cleanrooms/src/commands/UpdateMembershipCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateMembershipCommand.ts @@ -152,6 +152,7 @@ export interface UpdateMembershipCommandOutput extends UpdateMembershipOutput, _ * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class UpdateMembershipCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/UpdatePrivacyBudgetTemplateCommand.ts b/clients/client-cleanrooms/src/commands/UpdatePrivacyBudgetTemplateCommand.ts index acfab3d0b61dd..05570d5167107 100644 --- a/clients/client-cleanrooms/src/commands/UpdatePrivacyBudgetTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdatePrivacyBudgetTemplateCommand.ts @@ -101,6 +101,7 @@ export interface UpdatePrivacyBudgetTemplateCommandOutput extends UpdatePrivacyB * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class UpdatePrivacyBudgetTemplateCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/UpdateProtectedJobCommand.ts b/clients/client-cleanrooms/src/commands/UpdateProtectedJobCommand.ts index 13d4aa577db58..2346ba8485a7d 100644 --- a/clients/client-cleanrooms/src/commands/UpdateProtectedJobCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateProtectedJobCommand.ts @@ -117,6 +117,7 @@ export interface UpdateProtectedJobCommandOutput extends UpdateProtectedJobOutpu * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class UpdateProtectedJobCommand extends $Command diff --git a/clients/client-cleanrooms/src/commands/UpdateProtectedQueryCommand.ts b/clients/client-cleanrooms/src/commands/UpdateProtectedQueryCommand.ts index 174df904ed528..8c0474306f2b3 100644 --- a/clients/client-cleanrooms/src/commands/UpdateProtectedQueryCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateProtectedQueryCommand.ts @@ -144,6 +144,7 @@ export interface UpdateProtectedQueryCommandOutput extends UpdateProtectedQueryO * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* + * * @public */ export class UpdateProtectedQueryCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/CancelTrainedModelCommand.ts b/clients/client-cleanroomsml/src/commands/CancelTrainedModelCommand.ts index 6fdbf617c52e1..b6632b27121ea 100644 --- a/clients/client-cleanroomsml/src/commands/CancelTrainedModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CancelTrainedModelCommand.ts @@ -66,6 +66,7 @@ export interface CancelTrainedModelCommandOutput extends __MetadataBearer {} * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class CancelTrainedModelCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/CancelTrainedModelInferenceJobCommand.ts b/clients/client-cleanroomsml/src/commands/CancelTrainedModelInferenceJobCommand.ts index c962c1f3b0bfd..25ac0e4fa426f 100644 --- a/clients/client-cleanroomsml/src/commands/CancelTrainedModelInferenceJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CancelTrainedModelInferenceJobCommand.ts @@ -69,6 +69,7 @@ export interface CancelTrainedModelInferenceJobCommandOutput extends __MetadataB * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class CancelTrainedModelInferenceJobCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/CreateAudienceModelCommand.ts b/clients/client-cleanroomsml/src/commands/CreateAudienceModelCommand.ts index 7b7f53fd9aea9..6ef9891e386e0 100644 --- a/clients/client-cleanroomsml/src/commands/CreateAudienceModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CreateAudienceModelCommand.ts @@ -78,6 +78,7 @@ export interface CreateAudienceModelCommandOutput extends CreateAudienceModelRes * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class CreateAudienceModelCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/CreateConfiguredAudienceModelCommand.ts b/clients/client-cleanroomsml/src/commands/CreateConfiguredAudienceModelCommand.ts index d98f63319fbd6..cb61acd6e51ac 100644 --- a/clients/client-cleanroomsml/src/commands/CreateConfiguredAudienceModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CreateConfiguredAudienceModelCommand.ts @@ -99,6 +99,7 @@ export interface CreateConfiguredAudienceModelCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class CreateConfiguredAudienceModelCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmAssociationCommand.ts b/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmAssociationCommand.ts index 8528606097234..93bd99de8a277 100644 --- a/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmAssociationCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmAssociationCommand.ts @@ -125,6 +125,7 @@ export interface CreateConfiguredModelAlgorithmAssociationCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class CreateConfiguredModelAlgorithmAssociationCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmCommand.ts b/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmCommand.ts index 5f2326280b4ce..9e9e7023a1512 100644 --- a/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmCommand.ts @@ -96,6 +96,7 @@ export interface CreateConfiguredModelAlgorithmCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class CreateConfiguredModelAlgorithmCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/CreateMLInputChannelCommand.ts b/clients/client-cleanroomsml/src/commands/CreateMLInputChannelCommand.ts index 5aa326d9ef26b..6a861c787ab5b 100644 --- a/clients/client-cleanroomsml/src/commands/CreateMLInputChannelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CreateMLInputChannelCommand.ts @@ -104,6 +104,7 @@ export interface CreateMLInputChannelCommandOutput extends CreateMLInputChannelR * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class CreateMLInputChannelCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/CreateTrainedModelCommand.ts b/clients/client-cleanroomsml/src/commands/CreateTrainedModelCommand.ts index 3017c3e98f292..e0cd888502ec9 100644 --- a/clients/client-cleanroomsml/src/commands/CreateTrainedModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CreateTrainedModelCommand.ts @@ -97,6 +97,7 @@ export interface CreateTrainedModelCommandOutput extends CreateTrainedModelRespo * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class CreateTrainedModelCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/CreateTrainingDatasetCommand.ts b/clients/client-cleanroomsml/src/commands/CreateTrainingDatasetCommand.ts index 1293bcef44507..d22fbb39ba81e 100644 --- a/clients/client-cleanroomsml/src/commands/CreateTrainingDatasetCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CreateTrainingDatasetCommand.ts @@ -91,6 +91,7 @@ export interface CreateTrainingDatasetCommandOutput extends CreateTrainingDatase * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class CreateTrainingDatasetCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/DeleteAudienceGenerationJobCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteAudienceGenerationJobCommand.ts index 6c80c0c589f00..df81e4615a34d 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteAudienceGenerationJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteAudienceGenerationJobCommand.ts @@ -68,6 +68,7 @@ export interface DeleteAudienceGenerationJobCommandOutput extends __MetadataBear * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class DeleteAudienceGenerationJobCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/DeleteAudienceModelCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteAudienceModelCommand.ts index 43321d196c347..3b30215df8cce 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteAudienceModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteAudienceModelCommand.ts @@ -65,6 +65,7 @@ export interface DeleteAudienceModelCommandOutput extends __MetadataBearer {} * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class DeleteAudienceModelCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelCommand.ts index e3a3a45a37cb7..1964c0b6ddcb4 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelCommand.ts @@ -68,6 +68,7 @@ export interface DeleteConfiguredAudienceModelCommandOutput extends __MetadataBe * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class DeleteConfiguredAudienceModelCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelPolicyCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelPolicyCommand.ts index cdb31d24d58fc..7b50b7330e6b4 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelPolicyCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelPolicyCommand.ts @@ -65,6 +65,7 @@ export interface DeleteConfiguredAudienceModelPolicyCommandOutput extends __Meta * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class DeleteConfiguredAudienceModelPolicyCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmAssociationCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmAssociationCommand.ts index 4f17337e4a5e9..4a83b5729b80a 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmAssociationCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmAssociationCommand.ts @@ -70,6 +70,7 @@ export interface DeleteConfiguredModelAlgorithmAssociationCommandOutput extends * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class DeleteConfiguredModelAlgorithmAssociationCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmCommand.ts index ae3702b8faade..c5077c54fb5b6 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmCommand.ts @@ -68,6 +68,7 @@ export interface DeleteConfiguredModelAlgorithmCommandOutput extends __MetadataB * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class DeleteConfiguredModelAlgorithmCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/DeleteMLConfigurationCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteMLConfigurationCommand.ts index 6d160095e0229..4a16f845fd079 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteMLConfigurationCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteMLConfigurationCommand.ts @@ -62,6 +62,7 @@ export interface DeleteMLConfigurationCommandOutput extends __MetadataBearer {} * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class DeleteMLConfigurationCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/DeleteMLInputChannelDataCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteMLInputChannelDataCommand.ts index 75350867846f6..8a980da27f200 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteMLInputChannelDataCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteMLInputChannelDataCommand.ts @@ -66,6 +66,7 @@ export interface DeleteMLInputChannelDataCommandOutput extends __MetadataBearer * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class DeleteMLInputChannelDataCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/DeleteTrainedModelOutputCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteTrainedModelOutputCommand.ts index ee2cf45978016..f627708b76a14 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteTrainedModelOutputCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteTrainedModelOutputCommand.ts @@ -66,6 +66,7 @@ export interface DeleteTrainedModelOutputCommandOutput extends __MetadataBearer * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class DeleteTrainedModelOutputCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/DeleteTrainingDatasetCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteTrainingDatasetCommand.ts index 31c06a7ead4e9..87bfc8fe7b5a6 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteTrainingDatasetCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteTrainingDatasetCommand.ts @@ -65,6 +65,7 @@ export interface DeleteTrainingDatasetCommandOutput extends __MetadataBearer {} * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class DeleteTrainingDatasetCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/GetAudienceGenerationJobCommand.ts b/clients/client-cleanroomsml/src/commands/GetAudienceGenerationJobCommand.ts index 54d3e713808c7..e92f4aba0027a 100644 --- a/clients/client-cleanroomsml/src/commands/GetAudienceGenerationJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetAudienceGenerationJobCommand.ts @@ -116,6 +116,7 @@ export interface GetAudienceGenerationJobCommandOutput extends GetAudienceGenera * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class GetAudienceGenerationJobCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/GetAudienceModelCommand.ts b/clients/client-cleanroomsml/src/commands/GetAudienceModelCommand.ts index eae3476f01659..f2b5210d5854e 100644 --- a/clients/client-cleanroomsml/src/commands/GetAudienceModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetAudienceModelCommand.ts @@ -80,6 +80,7 @@ export interface GetAudienceModelCommandOutput extends GetAudienceModelResponse, * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class GetAudienceModelCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.ts b/clients/client-cleanroomsml/src/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.ts index 759a7671550d9..5245a706e58ff 100644 --- a/clients/client-cleanroomsml/src/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.ts @@ -122,6 +122,7 @@ export interface GetCollaborationConfiguredModelAlgorithmAssociationCommandOutpu * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class GetCollaborationConfiguredModelAlgorithmAssociationCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/GetCollaborationMLInputChannelCommand.ts b/clients/client-cleanroomsml/src/commands/GetCollaborationMLInputChannelCommand.ts index f360052e63f2d..e96dd72bf0043 100644 --- a/clients/client-cleanroomsml/src/commands/GetCollaborationMLInputChannelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetCollaborationMLInputChannelCommand.ts @@ -87,6 +87,7 @@ export interface GetCollaborationMLInputChannelCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class GetCollaborationMLInputChannelCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/GetCollaborationTrainedModelCommand.ts b/clients/client-cleanroomsml/src/commands/GetCollaborationTrainedModelCommand.ts index ec0733c780522..d7170db5389d9 100644 --- a/clients/client-cleanroomsml/src/commands/GetCollaborationTrainedModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetCollaborationTrainedModelCommand.ts @@ -96,6 +96,7 @@ export interface GetCollaborationTrainedModelCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class GetCollaborationTrainedModelCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelCommand.ts b/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelCommand.ts index e2a3b45982393..f14b257f4c4b7 100644 --- a/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelCommand.ts @@ -92,6 +92,7 @@ export interface GetConfiguredAudienceModelCommandOutput extends GetConfiguredAu * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class GetConfiguredAudienceModelCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelPolicyCommand.ts b/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelPolicyCommand.ts index e57e416aa706e..9193f4c4a7a56 100644 --- a/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelPolicyCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelPolicyCommand.ts @@ -71,6 +71,7 @@ export interface GetConfiguredAudienceModelPolicyCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class GetConfiguredAudienceModelPolicyCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmAssociationCommand.ts b/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmAssociationCommand.ts index 8a8b955e44777..2bdd3089ea77d 100644 --- a/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmAssociationCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmAssociationCommand.ts @@ -124,6 +124,7 @@ export interface GetConfiguredModelAlgorithmAssociationCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class GetConfiguredModelAlgorithmAssociationCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmCommand.ts b/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmCommand.ts index 210c491d29a23..98dab751ff6fd 100644 --- a/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmCommand.ts @@ -96,6 +96,7 @@ export interface GetConfiguredModelAlgorithmCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class GetConfiguredModelAlgorithmCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/GetMLConfigurationCommand.ts b/clients/client-cleanroomsml/src/commands/GetMLConfigurationCommand.ts index ea706ca05235f..9e16c6c596519 100644 --- a/clients/client-cleanroomsml/src/commands/GetMLConfigurationCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetMLConfigurationCommand.ts @@ -74,6 +74,7 @@ export interface GetMLConfigurationCommandOutput extends GetMLConfigurationRespo * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class GetMLConfigurationCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/GetMLInputChannelCommand.ts b/clients/client-cleanroomsml/src/commands/GetMLInputChannelCommand.ts index 0f962efb8a438..380e21897aaae 100644 --- a/clients/client-cleanroomsml/src/commands/GetMLInputChannelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetMLInputChannelCommand.ts @@ -112,6 +112,7 @@ export interface GetMLInputChannelCommandOutput extends GetMLInputChannelRespons * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class GetMLInputChannelCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/GetTrainedModelCommand.ts b/clients/client-cleanroomsml/src/commands/GetTrainedModelCommand.ts index efbfb8db13c92..ba35c47f24318 100644 --- a/clients/client-cleanroomsml/src/commands/GetTrainedModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetTrainedModelCommand.ts @@ -106,6 +106,7 @@ export interface GetTrainedModelCommandOutput extends GetTrainedModelResponse, _ * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class GetTrainedModelCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/GetTrainedModelInferenceJobCommand.ts b/clients/client-cleanroomsml/src/commands/GetTrainedModelInferenceJobCommand.ts index 0927b6e8192a7..978ac381cd191 100644 --- a/clients/client-cleanroomsml/src/commands/GetTrainedModelInferenceJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetTrainedModelInferenceJobCommand.ts @@ -112,6 +112,7 @@ export interface GetTrainedModelInferenceJobCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class GetTrainedModelInferenceJobCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/GetTrainingDatasetCommand.ts b/clients/client-cleanroomsml/src/commands/GetTrainingDatasetCommand.ts index 053526403381e..9bddc6f467b92 100644 --- a/clients/client-cleanroomsml/src/commands/GetTrainingDatasetCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetTrainingDatasetCommand.ts @@ -95,6 +95,7 @@ export interface GetTrainingDatasetCommandOutput extends GetTrainingDatasetRespo * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class GetTrainingDatasetCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListAudienceExportJobsCommand.ts b/clients/client-cleanroomsml/src/commands/ListAudienceExportJobsCommand.ts index 7a1a3bc6944cf..99566a45adb19 100644 --- a/clients/client-cleanroomsml/src/commands/ListAudienceExportJobsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListAudienceExportJobsCommand.ts @@ -82,6 +82,7 @@ export interface ListAudienceExportJobsCommandOutput extends ListAudienceExportJ * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListAudienceExportJobsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListAudienceGenerationJobsCommand.ts b/clients/client-cleanroomsml/src/commands/ListAudienceGenerationJobsCommand.ts index 99089b78866e2..d9a2a60fd6ba4 100644 --- a/clients/client-cleanroomsml/src/commands/ListAudienceGenerationJobsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListAudienceGenerationJobsCommand.ts @@ -77,6 +77,7 @@ export interface ListAudienceGenerationJobsCommandOutput extends ListAudienceGen * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListAudienceGenerationJobsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListAudienceModelsCommand.ts b/clients/client-cleanroomsml/src/commands/ListAudienceModelsCommand.ts index aeddd132c7549..dade95cdba7e9 100644 --- a/clients/client-cleanroomsml/src/commands/ListAudienceModelsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListAudienceModelsCommand.ts @@ -73,6 +73,7 @@ export interface ListAudienceModelsCommandOutput extends ListAudienceModelsRespo * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListAudienceModelsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.ts b/clients/client-cleanroomsml/src/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.ts index 80f51ce5888a0..3572d97ba6399 100644 --- a/clients/client-cleanroomsml/src/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.ts @@ -85,6 +85,7 @@ export interface ListCollaborationConfiguredModelAlgorithmAssociationsCommandOut * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListCollaborationConfiguredModelAlgorithmAssociationsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListCollaborationMLInputChannelsCommand.ts b/clients/client-cleanroomsml/src/commands/ListCollaborationMLInputChannelsCommand.ts index c1bc2c6d05d68..0e51ce77b96fd 100644 --- a/clients/client-cleanroomsml/src/commands/ListCollaborationMLInputChannelsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListCollaborationMLInputChannelsCommand.ts @@ -84,6 +84,7 @@ export interface ListCollaborationMLInputChannelsCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListCollaborationMLInputChannelsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelExportJobsCommand.ts b/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelExportJobsCommand.ts index bce87da5df19d..bd7b9bc70951d 100644 --- a/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelExportJobsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelExportJobsCommand.ts @@ -97,6 +97,7 @@ export interface ListCollaborationTrainedModelExportJobsCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListCollaborationTrainedModelExportJobsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelInferenceJobsCommand.ts b/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelInferenceJobsCommand.ts index 4bd370021d2b2..2227297f6b751 100644 --- a/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelInferenceJobsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelInferenceJobsCommand.ts @@ -100,6 +100,7 @@ export interface ListCollaborationTrainedModelInferenceJobsCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListCollaborationTrainedModelInferenceJobsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelsCommand.ts b/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelsCommand.ts index 60590eb0c31ed..5f5b42cf1e873 100644 --- a/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelsCommand.ts @@ -82,6 +82,7 @@ export interface ListCollaborationTrainedModelsCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListCollaborationTrainedModelsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListConfiguredAudienceModelsCommand.ts b/clients/client-cleanroomsml/src/commands/ListConfiguredAudienceModelsCommand.ts index 1397e2de89b12..f4ece057cbadf 100644 --- a/clients/client-cleanroomsml/src/commands/ListConfiguredAudienceModelsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListConfiguredAudienceModelsCommand.ts @@ -86,6 +86,7 @@ export interface ListConfiguredAudienceModelsCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListConfiguredAudienceModelsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmAssociationsCommand.ts b/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmAssociationsCommand.ts index 0d1d226687ca8..3959549726b4b 100644 --- a/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmAssociationsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmAssociationsCommand.ts @@ -84,6 +84,7 @@ export interface ListConfiguredModelAlgorithmAssociationsCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListConfiguredModelAlgorithmAssociationsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmsCommand.ts b/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmsCommand.ts index 26de26b787d70..1ed4a8bb0eb1a 100644 --- a/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmsCommand.ts @@ -76,6 +76,7 @@ export interface ListConfiguredModelAlgorithmsCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListConfiguredModelAlgorithmsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListMLInputChannelsCommand.ts b/clients/client-cleanroomsml/src/commands/ListMLInputChannelsCommand.ts index 818353e79dce9..7903bf00127fa 100644 --- a/clients/client-cleanroomsml/src/commands/ListMLInputChannelsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListMLInputChannelsCommand.ts @@ -79,6 +79,7 @@ export interface ListMLInputChannelsCommandOutput extends ListMLInputChannelsRes * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListMLInputChannelsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListTagsForResourceCommand.ts b/clients/client-cleanroomsml/src/commands/ListTagsForResourceCommand.ts index fcc8aca64d5b8..d811da1597c7c 100644 --- a/clients/client-cleanroomsml/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListTrainedModelInferenceJobsCommand.ts b/clients/client-cleanroomsml/src/commands/ListTrainedModelInferenceJobsCommand.ts index 3f2f90bcebbed..de6021d43823a 100644 --- a/clients/client-cleanroomsml/src/commands/ListTrainedModelInferenceJobsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListTrainedModelInferenceJobsCommand.ts @@ -95,6 +95,7 @@ export interface ListTrainedModelInferenceJobsCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListTrainedModelInferenceJobsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListTrainedModelsCommand.ts b/clients/client-cleanroomsml/src/commands/ListTrainedModelsCommand.ts index 8ab712aeff63d..2409988620920 100644 --- a/clients/client-cleanroomsml/src/commands/ListTrainedModelsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListTrainedModelsCommand.ts @@ -76,6 +76,7 @@ export interface ListTrainedModelsCommandOutput extends ListTrainedModelsRespons * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListTrainedModelsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/ListTrainingDatasetsCommand.ts b/clients/client-cleanroomsml/src/commands/ListTrainingDatasetsCommand.ts index 2d63de641633b..17ad8feb0094e 100644 --- a/clients/client-cleanroomsml/src/commands/ListTrainingDatasetsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListTrainingDatasetsCommand.ts @@ -72,6 +72,7 @@ export interface ListTrainingDatasetsCommandOutput extends ListTrainingDatasetsR * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class ListTrainingDatasetsCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/PutConfiguredAudienceModelPolicyCommand.ts b/clients/client-cleanroomsml/src/commands/PutConfiguredAudienceModelPolicyCommand.ts index 53b28a6544e7d..d73f4ecf838f4 100644 --- a/clients/client-cleanroomsml/src/commands/PutConfiguredAudienceModelPolicyCommand.ts +++ b/clients/client-cleanroomsml/src/commands/PutConfiguredAudienceModelPolicyCommand.ts @@ -73,6 +73,7 @@ export interface PutConfiguredAudienceModelPolicyCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class PutConfiguredAudienceModelPolicyCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/PutMLConfigurationCommand.ts b/clients/client-cleanroomsml/src/commands/PutMLConfigurationCommand.ts index a585e4890a3e3..4b6616fea92ad 100644 --- a/clients/client-cleanroomsml/src/commands/PutMLConfigurationCommand.ts +++ b/clients/client-cleanroomsml/src/commands/PutMLConfigurationCommand.ts @@ -67,6 +67,7 @@ export interface PutMLConfigurationCommandOutput extends __MetadataBearer {} * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class PutMLConfigurationCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/StartAudienceExportJobCommand.ts b/clients/client-cleanroomsml/src/commands/StartAudienceExportJobCommand.ts index 90f2dd84f2924..c9b21c4c4aede 100644 --- a/clients/client-cleanroomsml/src/commands/StartAudienceExportJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/StartAudienceExportJobCommand.ts @@ -74,6 +74,7 @@ export interface StartAudienceExportJobCommandOutput extends __MetadataBearer {} * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class StartAudienceExportJobCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/StartAudienceGenerationJobCommand.ts b/clients/client-cleanroomsml/src/commands/StartAudienceGenerationJobCommand.ts index c9d4d0ed45f67..99fd8d889d955 100644 --- a/clients/client-cleanroomsml/src/commands/StartAudienceGenerationJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/StartAudienceGenerationJobCommand.ts @@ -100,6 +100,7 @@ export interface StartAudienceGenerationJobCommandOutput extends StartAudienceGe * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class StartAudienceGenerationJobCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/StartTrainedModelExportJobCommand.ts b/clients/client-cleanroomsml/src/commands/StartTrainedModelExportJobCommand.ts index 4eeb019204cf1..31fc37cb409ad 100644 --- a/clients/client-cleanroomsml/src/commands/StartTrainedModelExportJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/StartTrainedModelExportJobCommand.ts @@ -75,6 +75,7 @@ export interface StartTrainedModelExportJobCommandOutput extends __MetadataBeare * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class StartTrainedModelExportJobCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/StartTrainedModelInferenceJobCommand.ts b/clients/client-cleanroomsml/src/commands/StartTrainedModelInferenceJobCommand.ts index 1c9a1341f0b01..b240059b80172 100644 --- a/clients/client-cleanroomsml/src/commands/StartTrainedModelInferenceJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/StartTrainedModelInferenceJobCommand.ts @@ -104,6 +104,7 @@ export interface StartTrainedModelInferenceJobCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class StartTrainedModelInferenceJobCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/TagResourceCommand.ts b/clients/client-cleanroomsml/src/commands/TagResourceCommand.ts index f791bbd6e8029..f85ecb066a2f3 100644 --- a/clients/client-cleanroomsml/src/commands/TagResourceCommand.ts +++ b/clients/client-cleanroomsml/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/UntagResourceCommand.ts b/clients/client-cleanroomsml/src/commands/UntagResourceCommand.ts index afdbea1ce6038..ebe673167ba1d 100644 --- a/clients/client-cleanroomsml/src/commands/UntagResourceCommand.ts +++ b/clients/client-cleanroomsml/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-cleanroomsml/src/commands/UpdateConfiguredAudienceModelCommand.ts b/clients/client-cleanroomsml/src/commands/UpdateConfiguredAudienceModelCommand.ts index bfdfee49a1392..620ef3ca3e0b3 100644 --- a/clients/client-cleanroomsml/src/commands/UpdateConfiguredAudienceModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/UpdateConfiguredAudienceModelCommand.ts @@ -92,6 +92,7 @@ export interface UpdateConfiguredAudienceModelCommandOutput * @throws {@link CleanRoomsMLServiceException} *

Base exception class for all service exceptions from CleanRoomsML service.

* + * * @public */ export class UpdateConfiguredAudienceModelCommand extends $Command diff --git a/clients/client-cloud9/src/commands/CreateEnvironmentEC2Command.ts b/clients/client-cloud9/src/commands/CreateEnvironmentEC2Command.ts index c5c0ab37a534e..7defeced59318 100644 --- a/clients/client-cloud9/src/commands/CreateEnvironmentEC2Command.ts +++ b/clients/client-cloud9/src/commands/CreateEnvironmentEC2Command.ts @@ -102,29 +102,29 @@ export interface CreateEnvironmentEC2CommandOutput extends CreateEnvironmentEC2R * @throws {@link Cloud9ServiceException} *

Base exception class for all service exceptions from Cloud9 service.

* - * @public + * * @example CreateEnvironmentEC2 * ```javascript * // * const input = { - * "name": "my-demo-environment", - * "automaticStopTimeMinutes": 60, - * "description": "This is my demonstration environment.", - * "imageId": "amazonlinux-2023-x86_64", - * "instanceType": "t2.micro", - * "ownerArn": "arn:aws:iam::123456789012:user/MyDemoUser", - * "subnetId": "subnet-6300cd1b" + * automaticStopTimeMinutes: 60, + * description: "This is my demonstration environment.", + * imageId: "amazonlinux-2023-x86_64", + * instanceType: "t2.micro", + * name: "my-demo-environment", + * ownerArn: "arn:aws:iam::123456789012:user/MyDemoUser", + * subnetId: "subnet-6300cd1b" * }; * const command = new CreateEnvironmentEC2Command(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "environmentId": "8d9967e2f0624182b74e7690ad69ebEX" + * environmentId: "8d9967e2f0624182b74e7690ad69ebEX" * } * *\/ - * // example id: createenvironmentec2-1516821730547 * ``` * + * @public */ export class CreateEnvironmentEC2Command extends $Command .classBuilder< diff --git a/clients/client-cloud9/src/commands/CreateEnvironmentMembershipCommand.ts b/clients/client-cloud9/src/commands/CreateEnvironmentMembershipCommand.ts index 81a37d641a8a8..84548f9beec90 100644 --- a/clients/client-cloud9/src/commands/CreateEnvironmentMembershipCommand.ts +++ b/clients/client-cloud9/src/commands/CreateEnvironmentMembershipCommand.ts @@ -90,30 +90,30 @@ export interface CreateEnvironmentMembershipCommandOutput extends CreateEnvironm * @throws {@link Cloud9ServiceException} *

Base exception class for all service exceptions from Cloud9 service.

* - * @public + * * @example CreateEnvironmentMembership * ```javascript * // * const input = { - * "environmentId": "8d9967e2f0624182b74e7690ad69ebEX", - * "permissions": "read-write", - * "userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser" + * environmentId: "8d9967e2f0624182b74e7690ad69ebEX", + * permissions: "read-write", + * userArn: "arn:aws:iam::123456789012:user/AnotherDemoUser" * }; * const command = new CreateEnvironmentMembershipCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "membership": { - * "environmentId": "8d9967e2f0624182b74e7690ad69ebEX", - * "permissions": "read-write", - * "userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser", - * "userId": "AIDAJ3BA6O2FMJWCWXHEX" + * membership: { + * environmentId: "8d9967e2f0624182b74e7690ad69ebEX", + * permissions: "read-write", + * userArn: "arn:aws:iam::123456789012:user/AnotherDemoUser", + * userId: "AIDAJ3BA6O2FMJWCWXHEX" * } * } * *\/ - * // example id: createenvironmentmembership-1516822583452 * ``` * + * @public */ export class CreateEnvironmentMembershipCommand extends $Command .classBuilder< diff --git a/clients/client-cloud9/src/commands/DeleteEnvironmentCommand.ts b/clients/client-cloud9/src/commands/DeleteEnvironmentCommand.ts index 0bc395fd7f313..6a86b653f3018 100644 --- a/clients/client-cloud9/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-cloud9/src/commands/DeleteEnvironmentCommand.ts @@ -81,18 +81,21 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentResult, * @throws {@link Cloud9ServiceException} *

Base exception class for all service exceptions from Cloud9 service.

* - * @public + * * @example DeleteEnvironment * ```javascript * // * const input = { - * "environmentId": "8d9967e2f0624182b74e7690ad69ebEX" + * environmentId: "8d9967e2f0624182b74e7690ad69ebEX" * }; * const command = new DeleteEnvironmentCommand(input); - * await client.send(command); - * // example id: deleteenvironment-1516822903149 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteEnvironmentCommand extends $Command .classBuilder< diff --git a/clients/client-cloud9/src/commands/DeleteEnvironmentMembershipCommand.ts b/clients/client-cloud9/src/commands/DeleteEnvironmentMembershipCommand.ts index 2af96fa2b321c..8fcd6225a9eac 100644 --- a/clients/client-cloud9/src/commands/DeleteEnvironmentMembershipCommand.ts +++ b/clients/client-cloud9/src/commands/DeleteEnvironmentMembershipCommand.ts @@ -81,19 +81,22 @@ export interface DeleteEnvironmentMembershipCommandOutput extends DeleteEnvironm * @throws {@link Cloud9ServiceException} *

Base exception class for all service exceptions from Cloud9 service.

* - * @public + * * @example DeleteEnvironmentMembership * ```javascript * // * const input = { - * "environmentId": "8d9967e2f0624182b74e7690ad69ebEX", - * "userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser" + * environmentId: "8d9967e2f0624182b74e7690ad69ebEX", + * userArn: "arn:aws:iam::123456789012:user/AnotherDemoUser" * }; * const command = new DeleteEnvironmentMembershipCommand(input); - * await client.send(command); - * // example id: deleteenvironmentmembership-1516822975655 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteEnvironmentMembershipCommand extends $Command .classBuilder< diff --git a/clients/client-cloud9/src/commands/DescribeEnvironmentMembershipsCommand.ts b/clients/client-cloud9/src/commands/DescribeEnvironmentMembershipsCommand.ts index 8da3f8adb819c..d7d4f323510ab 100644 --- a/clients/client-cloud9/src/commands/DescribeEnvironmentMembershipsCommand.ts +++ b/clients/client-cloud9/src/commands/DescribeEnvironmentMembershipsCommand.ts @@ -102,93 +102,91 @@ export interface DescribeEnvironmentMembershipsCommandOutput * @throws {@link Cloud9ServiceException} *

Base exception class for all service exceptions from Cloud9 service.

* - * @public - * @example DescribeEnvironmentMemberships1 + * + * @example DescribeEnvironmentMemberships2 * ```javascript - * // The following example gets information about all of the environment members for the specified development environment. + * // The following example gets information about the owner of the specified development environment. * const input = { - * "environmentId": "8d9967e2f0624182b74e7690ad69ebEX" + * environmentId: "8d9967e2f0624182b74e7690ad69ebEX", + * permissions: [ + * "owner" + * ] * }; * const command = new DescribeEnvironmentMembershipsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "memberships": [ - * { - * "environmentId": "8d9967e2f0624182b74e7690ad69ebEX", - * "permissions": "read-write", - * "userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser", - * "userId": "AIDAJ3BA6O2FMJWCWXHEX" - * }, + * memberships: [ * { - * "environmentId": "8d9967e2f0624182b74e7690ad69ebEX", - * "permissions": "owner", - * "userArn": "arn:aws:iam::123456789012:user/MyDemoUser", - * "userId": "AIDAJNUEDQAQWFELJDLEX" + * environmentId: "8d9967e2f0624182b74e7690ad69ebEX", + * permissions: "owner", + * userArn: "arn:aws:iam::123456789012:user/MyDemoUser", + * userId: "AIDAJNUEDQAQWFELJDLEX" * } * ] * } * *\/ - * // example id: describeenvironmentmemberships1-1516823070453 * ``` * - * @example DescribeEnvironmentMemberships2 + * @example DescribeEnvironmentMemberships3 * ```javascript - * // The following example gets information about the owner of the specified development environment. + * // The following example gets development environment membership information for the specified user. * const input = { - * "environmentId": "8d9967e2f0624182b74e7690ad69ebEX", - * "permissions": [ - * "owner" - * ] + * userArn: "arn:aws:iam::123456789012:user/MyDemoUser" * }; * const command = new DescribeEnvironmentMembershipsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "memberships": [ + * memberships: [ + * { + * environmentId: "10a75714bd494714929e7f5ec4125aEX", + * lastAccess: "2018-01-19T11:06:13Z", + * permissions: "owner", + * userArn: "arn:aws:iam::123456789012:user/MyDemoUser", + * userId: "AIDAJNUEDQAQWFELJDLEX" + * }, * { - * "environmentId": "8d9967e2f0624182b74e7690ad69ebEX", - * "permissions": "owner", - * "userArn": "arn:aws:iam::123456789012:user/MyDemoUser", - * "userId": "AIDAJNUEDQAQWFELJDLEX" + * environmentId: "12bfc3cd537f41cb9776f8af5525c9EX", + * lastAccess: "2018-01-19T11:39:19Z", + * permissions: "owner", + * userArn: "arn:aws:iam::123456789012:user/MyDemoUser", + * userId: "AIDAJNUEDQAQWFELJDLEX" * } * ] * } * *\/ - * // example id: describeenvironmentmemberships2-1516823191355 * ``` * - * @example DescribeEnvironmentMemberships3 + * @example DescribeEnvironmentMemberships1 * ```javascript - * // The following example gets development environment membership information for the specified user. + * // The following example gets information about all of the environment members for the specified development environment. * const input = { - * "userArn": "arn:aws:iam::123456789012:user/MyDemoUser" + * environmentId: "8d9967e2f0624182b74e7690ad69ebEX" * }; * const command = new DescribeEnvironmentMembershipsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "memberships": [ + * memberships: [ * { - * "environmentId": "10a75714bd494714929e7f5ec4125aEX", - * "lastAccess": "2018-01-19T11:06:13Z", - * "permissions": "owner", - * "userArn": "arn:aws:iam::123456789012:user/MyDemoUser", - * "userId": "AIDAJNUEDQAQWFELJDLEX" + * environmentId: "8d9967e2f0624182b74e7690ad69ebEX", + * permissions: "read-write", + * userArn: "arn:aws:iam::123456789012:user/AnotherDemoUser", + * userId: "AIDAJ3BA6O2FMJWCWXHEX" * }, * { - * "environmentId": "12bfc3cd537f41cb9776f8af5525c9EX", - * "lastAccess": "2018-01-19T11:39:19Z", - * "permissions": "owner", - * "userArn": "arn:aws:iam::123456789012:user/MyDemoUser", - * "userId": "AIDAJNUEDQAQWFELJDLEX" + * environmentId: "8d9967e2f0624182b74e7690ad69ebEX", + * permissions: "owner", + * userArn: "arn:aws:iam::123456789012:user/MyDemoUser", + * userId: "AIDAJNUEDQAQWFELJDLEX" * } * ] * } * *\/ - * // example id: describeenvironmentmemberships3-1516823268793 * ``` * + * @public */ export class DescribeEnvironmentMembershipsCommand extends $Command .classBuilder< diff --git a/clients/client-cloud9/src/commands/DescribeEnvironmentStatusCommand.ts b/clients/client-cloud9/src/commands/DescribeEnvironmentStatusCommand.ts index 6831e9af4609a..c898b7ee28c62 100644 --- a/clients/client-cloud9/src/commands/DescribeEnvironmentStatusCommand.ts +++ b/clients/client-cloud9/src/commands/DescribeEnvironmentStatusCommand.ts @@ -83,24 +83,24 @@ export interface DescribeEnvironmentStatusCommandOutput extends DescribeEnvironm * @throws {@link Cloud9ServiceException} *

Base exception class for all service exceptions from Cloud9 service.

* - * @public + * * @example DescribeEnvironmentStatus * ```javascript * // * const input = { - * "environmentId": "8d9967e2f0624182b74e7690ad69ebEX" + * environmentId: "8d9967e2f0624182b74e7690ad69ebEX" * }; * const command = new DescribeEnvironmentStatusCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "message": "Environment is ready to use", - * "status": "ready" + * message: "Environment is ready to use", + * status: "ready" * } * *\/ - * // example id: describeenvironmentstatus-1516823462133 * ``` * + * @public */ export class DescribeEnvironmentStatusCommand extends $Command .classBuilder< diff --git a/clients/client-cloud9/src/commands/DescribeEnvironmentsCommand.ts b/clients/client-cloud9/src/commands/DescribeEnvironmentsCommand.ts index 15127b8b3e8e3..44ce63a48af93 100644 --- a/clients/client-cloud9/src/commands/DescribeEnvironmentsCommand.ts +++ b/clients/client-cloud9/src/commands/DescribeEnvironmentsCommand.ts @@ -104,49 +104,49 @@ export interface DescribeEnvironmentsCommandOutput extends DescribeEnvironmentsR * @throws {@link Cloud9ServiceException} *

Base exception class for all service exceptions from Cloud9 service.

* - * @public + * * @example DescribeEnvironments * ```javascript * // * const input = { - * "environmentIds": [ + * environmentIds: [ * "8d9967e2f0624182b74e7690ad69ebEX", * "349c86d4579e4e7298d500ff57a6b2EX" * ] * }; * const command = new DescribeEnvironmentsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "environments": [ + * environments: [ * { - * "name": "my-demo-environment", - * "type": "ec2", - * "arn": "arn:aws:cloud9:us-east-2:123456789012:environment:8d9967e2f0624182b74e7690ad69ebEX", - * "description": "This is my demonstration environment.", - * "id": "8d9967e2f0624182b74e7690ad69ebEX", - * "lifecycle": { - * "status": "CREATED" + * arn: "arn:aws:cloud9:us-east-2:123456789012:environment:8d9967e2f0624182b74e7690ad69ebEX", + * description: "This is my demonstration environment.", + * id: "8d9967e2f0624182b74e7690ad69ebEX", + * lifecycle: { + * status: "CREATED" * }, - * "ownerArn": "arn:aws:iam::123456789012:user/MyDemoUser" + * name: "my-demo-environment", + * ownerArn: "arn:aws:iam::123456789012:user/MyDemoUser", + * type: "ec2" * }, * { - * "name": "another-demo-environment", - * "type": "ssh", - * "arn": "arn:aws:cloud9:us-east-2:123456789012:environment:349c86d4579e4e7298d500ff57a6b2EX", - * "description": "", - * "id": "349c86d4579e4e7298d500ff57a6b2EX", - * "lifecycle": { - * "status": "CREATED" + * arn: "arn:aws:cloud9:us-east-2:123456789012:environment:349c86d4579e4e7298d500ff57a6b2EX", + * description: "", + * id: "349c86d4579e4e7298d500ff57a6b2EX", + * lifecycle: { + * status: "CREATED" * }, - * "ownerArn": "arn:aws:sts::123456789012:assumed-role/AnotherDemoUser/AnotherDemoUser" + * name: "another-demo-environment", + * ownerArn: "arn:aws:sts::123456789012:assumed-role/AnotherDemoUser/AnotherDemoUser", + * type: "ssh" * } * ] * } * *\/ - * // example id: describeenvironments-1516823568291 * ``` * + * @public */ export class DescribeEnvironmentsCommand extends $Command .classBuilder< diff --git a/clients/client-cloud9/src/commands/ListEnvironmentsCommand.ts b/clients/client-cloud9/src/commands/ListEnvironmentsCommand.ts index b692cecea0122..896691e83088a 100644 --- a/clients/client-cloud9/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-cloud9/src/commands/ListEnvironmentsCommand.ts @@ -92,24 +92,24 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResult, _ * @throws {@link Cloud9ServiceException} *

Base exception class for all service exceptions from Cloud9 service.

* - * @public + * * @example ListEnvironments * ```javascript * // - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListEnvironmentsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "environmentIds": [ + * environmentIds: [ * "349c86d4579e4e7298d500ff57a6b2EX", * "45a3da47af0840f2b0c0824f5ee232EX" * ] * } * *\/ - * // example id: listenvironments-1516823687205 * ``` * + * @public */ export class ListEnvironmentsCommand extends $Command .classBuilder< diff --git a/clients/client-cloud9/src/commands/ListTagsForResourceCommand.ts b/clients/client-cloud9/src/commands/ListTagsForResourceCommand.ts index 0e3a2504f5a2a..4a9211c136c29 100644 --- a/clients/client-cloud9/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cloud9/src/commands/ListTagsForResourceCommand.ts @@ -79,6 +79,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link Cloud9ServiceException} *

Base exception class for all service exceptions from Cloud9 service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-cloud9/src/commands/TagResourceCommand.ts b/clients/client-cloud9/src/commands/TagResourceCommand.ts index c7e9dd31e1d51..5b6d80315d115 100644 --- a/clients/client-cloud9/src/commands/TagResourceCommand.ts +++ b/clients/client-cloud9/src/commands/TagResourceCommand.ts @@ -81,6 +81,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link Cloud9ServiceException} *

Base exception class for all service exceptions from Cloud9 service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-cloud9/src/commands/UntagResourceCommand.ts b/clients/client-cloud9/src/commands/UntagResourceCommand.ts index d434be36037aa..6cea6b835e80d 100644 --- a/clients/client-cloud9/src/commands/UntagResourceCommand.ts +++ b/clients/client-cloud9/src/commands/UntagResourceCommand.ts @@ -78,6 +78,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link Cloud9ServiceException} *

Base exception class for all service exceptions from Cloud9 service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-cloud9/src/commands/UpdateEnvironmentCommand.ts b/clients/client-cloud9/src/commands/UpdateEnvironmentCommand.ts index 6487897cefaf8..c6f961d31b6b2 100644 --- a/clients/client-cloud9/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-cloud9/src/commands/UpdateEnvironmentCommand.ts @@ -87,20 +87,23 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentResult, * @throws {@link Cloud9ServiceException} *

Base exception class for all service exceptions from Cloud9 service.

* - * @public + * * @example UpdateEnvironment * ```javascript * // * const input = { - * "name": "my-changed-demo-environment", - * "description": "This is my changed demonstration environment.", - * "environmentId": "8d9967e2f0624182b74e7690ad69ebEX" + * description: "This is my changed demonstration environment.", + * environmentId: "8d9967e2f0624182b74e7690ad69ebEX", + * name: "my-changed-demo-environment" * }; * const command = new UpdateEnvironmentCommand(input); - * await client.send(command); - * // example id: updateenvironment-1516823781910 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UpdateEnvironmentCommand extends $Command .classBuilder< diff --git a/clients/client-cloud9/src/commands/UpdateEnvironmentMembershipCommand.ts b/clients/client-cloud9/src/commands/UpdateEnvironmentMembershipCommand.ts index 291aa3f0abb16..f96bfed28a2d3 100644 --- a/clients/client-cloud9/src/commands/UpdateEnvironmentMembershipCommand.ts +++ b/clients/client-cloud9/src/commands/UpdateEnvironmentMembershipCommand.ts @@ -91,30 +91,30 @@ export interface UpdateEnvironmentMembershipCommandOutput extends UpdateEnvironm * @throws {@link Cloud9ServiceException} *

Base exception class for all service exceptions from Cloud9 service.

* - * @public + * * @example UpdateEnvironmentMembership * ```javascript * // * const input = { - * "environmentId": "8d9967e2f0624182b74e7690ad69ebEX", - * "permissions": "read-only", - * "userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser" + * environmentId: "8d9967e2f0624182b74e7690ad69ebEX", + * permissions: "read-only", + * userArn: "arn:aws:iam::123456789012:user/AnotherDemoUser" * }; * const command = new UpdateEnvironmentMembershipCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "membership": { - * "environmentId": "8d9967e2f0624182b74e7690ad69eb31", - * "permissions": "read-only", - * "userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser", - * "userId": "AIDAJ3BA6O2FMJWCWXHEX" + * membership: { + * environmentId: "8d9967e2f0624182b74e7690ad69eb31", + * permissions: "read-only", + * userArn: "arn:aws:iam::123456789012:user/AnotherDemoUser", + * userId: "AIDAJ3BA6O2FMJWCWXHEX" * } * } * *\/ - * // example id: updateenvironmentmembership-1516823876645 * ``` * + * @public */ export class UpdateEnvironmentMembershipCommand extends $Command .classBuilder< diff --git a/clients/client-cloudcontrol/src/commands/CancelResourceRequestCommand.ts b/clients/client-cloudcontrol/src/commands/CancelResourceRequestCommand.ts index 37aeeb6fea0d9..27bdadb0029be 100644 --- a/clients/client-cloudcontrol/src/commands/CancelResourceRequestCommand.ts +++ b/clients/client-cloudcontrol/src/commands/CancelResourceRequestCommand.ts @@ -80,6 +80,7 @@ export interface CancelResourceRequestCommandOutput extends CancelResourceReques * @throws {@link CloudControlServiceException} *

Base exception class for all service exceptions from CloudControl service.

* + * * @public */ export class CancelResourceRequestCommand extends $Command diff --git a/clients/client-cloudcontrol/src/commands/CreateResourceCommand.ts b/clients/client-cloudcontrol/src/commands/CreateResourceCommand.ts index 3fbdd956b62cb..30603835a7a28 100644 --- a/clients/client-cloudcontrol/src/commands/CreateResourceCommand.ts +++ b/clients/client-cloudcontrol/src/commands/CreateResourceCommand.ts @@ -153,6 +153,7 @@ export interface CreateResourceCommandOutput extends CreateResourceOutput, __Met * @throws {@link CloudControlServiceException} *

Base exception class for all service exceptions from CloudControl service.

* + * * @public */ export class CreateResourceCommand extends $Command diff --git a/clients/client-cloudcontrol/src/commands/DeleteResourceCommand.ts b/clients/client-cloudcontrol/src/commands/DeleteResourceCommand.ts index 9b46b9c3aa7f8..131b4c13a5daa 100644 --- a/clients/client-cloudcontrol/src/commands/DeleteResourceCommand.ts +++ b/clients/client-cloudcontrol/src/commands/DeleteResourceCommand.ts @@ -148,6 +148,7 @@ export interface DeleteResourceCommandOutput extends DeleteResourceOutput, __Met * @throws {@link CloudControlServiceException} *

Base exception class for all service exceptions from CloudControl service.

* + * * @public */ export class DeleteResourceCommand extends $Command diff --git a/clients/client-cloudcontrol/src/commands/GetResourceCommand.ts b/clients/client-cloudcontrol/src/commands/GetResourceCommand.ts index 3d3ecfde8a5bf..3ea97c1858ebf 100644 --- a/clients/client-cloudcontrol/src/commands/GetResourceCommand.ts +++ b/clients/client-cloudcontrol/src/commands/GetResourceCommand.ts @@ -130,6 +130,7 @@ export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataB * @throws {@link CloudControlServiceException} *

Base exception class for all service exceptions from CloudControl service.

* + * * @public */ export class GetResourceCommand extends $Command diff --git a/clients/client-cloudcontrol/src/commands/GetResourceRequestStatusCommand.ts b/clients/client-cloudcontrol/src/commands/GetResourceRequestStatusCommand.ts index 0bda15f94e95d..44f9d9b0ebb1c 100644 --- a/clients/client-cloudcontrol/src/commands/GetResourceRequestStatusCommand.ts +++ b/clients/client-cloudcontrol/src/commands/GetResourceRequestStatusCommand.ts @@ -88,6 +88,7 @@ export interface GetResourceRequestStatusCommandOutput extends GetResourceReques * @throws {@link CloudControlServiceException} *

Base exception class for all service exceptions from CloudControl service.

* + * * @public */ export class GetResourceRequestStatusCommand extends $Command diff --git a/clients/client-cloudcontrol/src/commands/ListResourceRequestsCommand.ts b/clients/client-cloudcontrol/src/commands/ListResourceRequestsCommand.ts index 0ae72be33e92b..21379612f896e 100644 --- a/clients/client-cloudcontrol/src/commands/ListResourceRequestsCommand.ts +++ b/clients/client-cloudcontrol/src/commands/ListResourceRequestsCommand.ts @@ -88,6 +88,7 @@ export interface ListResourceRequestsCommandOutput extends ListResourceRequestsO * @throws {@link CloudControlServiceException} *

Base exception class for all service exceptions from CloudControl service.

* + * * @public */ export class ListResourceRequestsCommand extends $Command diff --git a/clients/client-cloudcontrol/src/commands/ListResourcesCommand.ts b/clients/client-cloudcontrol/src/commands/ListResourcesCommand.ts index 532da1a0c99af..f049aa5570ad8 100644 --- a/clients/client-cloudcontrol/src/commands/ListResourcesCommand.ts +++ b/clients/client-cloudcontrol/src/commands/ListResourcesCommand.ts @@ -139,6 +139,7 @@ export interface ListResourcesCommandOutput extends ListResourcesOutput, __Metad * @throws {@link CloudControlServiceException} *

Base exception class for all service exceptions from CloudControl service.

* + * * @public */ export class ListResourcesCommand extends $Command diff --git a/clients/client-cloudcontrol/src/commands/UpdateResourceCommand.ts b/clients/client-cloudcontrol/src/commands/UpdateResourceCommand.ts index d7ccef57f7231..41ea0d99ed7ae 100644 --- a/clients/client-cloudcontrol/src/commands/UpdateResourceCommand.ts +++ b/clients/client-cloudcontrol/src/commands/UpdateResourceCommand.ts @@ -161,6 +161,7 @@ export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __Met * @throws {@link CloudControlServiceException} *

Base exception class for all service exceptions from CloudControl service.

* + * * @public */ export class UpdateResourceCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/AddFacetToObjectCommand.ts b/clients/client-clouddirectory/src/commands/AddFacetToObjectCommand.ts index 20a6e8ef98628..dad9a1d8f3454 100644 --- a/clients/client-clouddirectory/src/commands/AddFacetToObjectCommand.ts +++ b/clients/client-clouddirectory/src/commands/AddFacetToObjectCommand.ts @@ -105,26 +105,29 @@ export interface AddFacetToObjectCommandOutput extends AddFacetToObjectResponse, * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To add a facet to an object * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "ObjectAttributeList": [], - * "ObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWmspn1fxfQmSQaaVKSbvEiQ" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * ObjectAttributeList: [], + * ObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWmspn1fxfQmSQaaVKSbvEiQ" * }, - * "SchemaFacet": { - * "FacetName": "node1", - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" + * SchemaFacet: { + * FacetName: "node1", + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" * } * }; * const command = new AddFacetToObjectCommand(input); - * await client.send(command); - * // example id: to-add-a-facet-to-an-object-1507568792747 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class AddFacetToObjectCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/ApplySchemaCommand.ts b/clients/client-clouddirectory/src/commands/ApplySchemaCommand.ts index efa2ee1993f80..e3f3b1dc4782d 100644 --- a/clients/client-clouddirectory/src/commands/ApplySchemaCommand.ts +++ b/clients/client-clouddirectory/src/commands/ApplySchemaCommand.ts @@ -88,25 +88,25 @@ export interface ApplySchemaCommandOutput extends ApplySchemaResponse, __Metadat * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To apply a schema * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI", - * "PublishedSchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:schema/published/org/1" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI", + * PublishedSchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:schema/published/org/1" * }; * const command = new ApplySchemaCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AppliedSchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI/schema/org/1", - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI" + * AppliedSchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI/schema/org/1", + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI" * } * *\/ - * // example id: to-apply-a-schema-1507061899015 * ``` * + * @public */ export class ApplySchemaCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/AttachObjectCommand.ts b/clients/client-clouddirectory/src/commands/AttachObjectCommand.ts index d0f0369146acf..bde4db22cb401 100644 --- a/clients/client-clouddirectory/src/commands/AttachObjectCommand.ts +++ b/clients/client-clouddirectory/src/commands/AttachObjectCommand.ts @@ -109,30 +109,30 @@ export interface AttachObjectCommandOutput extends AttachObjectResponse, __Metad * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To attach an object * ```javascript * // * const input = { - * "ChildReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" + * ChildReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" * }, - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "LinkName": "link2", - * "ParentReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * LinkName: "link2", + * ParentReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * } * }; * const command = new AttachObjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AttachedObjectIdentifier": "AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" + * AttachedObjectIdentifier: "AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" * } * *\/ - * // example id: to-attach-an-object-1507060976164 * ``` * + * @public */ export class AttachObjectCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/AttachPolicyCommand.ts b/clients/client-clouddirectory/src/commands/AttachPolicyCommand.ts index a0f798ed5a51c..7f10e7919e7d0 100644 --- a/clients/client-clouddirectory/src/commands/AttachPolicyCommand.ts +++ b/clients/client-clouddirectory/src/commands/AttachPolicyCommand.ts @@ -88,24 +88,27 @@ export interface AttachPolicyCommandOutput extends AttachPolicyResponse, __Metad * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To attach a policy to an object * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "ObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWQoovm1s3Ts2v0NKrzdVnPw" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * ObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWQoovm1s3Ts2v0NKrzdVnPw" * }, - * "PolicyReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWgcBsTVmcQEWs6jlygfhuew" + * PolicyReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWgcBsTVmcQEWs6jlygfhuew" * } * }; * const command = new AttachPolicyCommand(input); - * await client.send(command); - * // example id: to-attach-a-policy-to-an-object-1508268194724 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class AttachPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/AttachToIndexCommand.ts b/clients/client-clouddirectory/src/commands/AttachToIndexCommand.ts index 4243d96057dab..852e1f8c1668c 100644 --- a/clients/client-clouddirectory/src/commands/AttachToIndexCommand.ts +++ b/clients/client-clouddirectory/src/commands/AttachToIndexCommand.ts @@ -100,29 +100,29 @@ export interface AttachToIndexCommandOutput extends AttachToIndexResponse, __Met * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To attach a index to an object * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "IndexReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * IndexReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q" * }, - * "TargetReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * TargetReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * } * }; * const command = new AttachToIndexCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AttachedObjectIdentifier": "AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * AttachedObjectIdentifier: "AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * } * *\/ - * // example id: to-attach-a-index-to-an-object-1506532855758 * ``` * + * @public */ export class AttachToIndexCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/AttachTypedLinkCommand.ts b/clients/client-clouddirectory/src/commands/AttachTypedLinkCommand.ts index a0a634984073f..320d076c2df8e 100644 --- a/clients/client-clouddirectory/src/commands/AttachTypedLinkCommand.ts +++ b/clients/client-clouddirectory/src/commands/AttachTypedLinkCommand.ts @@ -133,60 +133,60 @@ export interface AttachTypedLinkCommandOutput extends AttachTypedLinkResponse, _ * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To attach a typed link to an object * ```javascript * // * const input = { - * "Attributes": [ + * Attributes: [ * { - * "AttributeName": "22", - * "Value": { - * "BinaryValue": "c3Ry" + * AttributeName: "22", + * Value: { + * BinaryValue: "c3Ry" * } * } * ], - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "SourceObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * SourceObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" * }, - * "TargetObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * TargetObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * }, - * "TypedLinkFacet": { - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1", - * "TypedLinkName": "exampletypedlink8" + * TypedLinkFacet: { + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1", + * TypedLinkName: "exampletypedlink8" * } * }; * const command = new AttachTypedLinkCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TypedLinkSpecifier": { - * "IdentityAttributeValues": [ + * TypedLinkSpecifier: { + * IdentityAttributeValues: [ * { - * "AttributeName": "22", - * "Value": { - * "BinaryValue": "c3Ry" + * AttributeName: "22", + * Value: { + * BinaryValue: "c3Ry" * } * } * ], - * "SourceObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" + * SourceObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" * }, - * "TargetObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * TargetObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * }, - * "TypedLinkFacet": { - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1", - * "TypedLinkName": "exampletypedlink8" + * TypedLinkFacet: { + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1", + * TypedLinkName: "exampletypedlink8" * } * } * } * *\/ - * // example id: to-attach-a-typed-link-to-an-object-1506559900588 * ``` * + * @public */ export class AttachTypedLinkCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/BatchReadCommand.ts b/clients/client-clouddirectory/src/commands/BatchReadCommand.ts index 18d7f42e86ace..6104c65163de5 100644 --- a/clients/client-clouddirectory/src/commands/BatchReadCommand.ts +++ b/clients/client-clouddirectory/src/commands/BatchReadCommand.ts @@ -478,25 +478,25 @@ export interface BatchReadCommandOutput extends BatchReadResponse, __MetadataBea * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To run a batch read command * ```javascript * // * const input = { - * "ConsistencyLevel": "EVENTUAL", - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "Operations": [] + * ConsistencyLevel: "EVENTUAL", + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * Operations: [] * }; * const command = new BatchReadCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Responses": [] + * Responses: [] * } * *\/ - * // example id: to-run-a-batch-read-command-1506123433380 * ``` * + * @public */ export class BatchReadCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/BatchWriteCommand.ts b/clients/client-clouddirectory/src/commands/BatchWriteCommand.ts index 44f24f5da83d8..bec1f6031c75a 100644 --- a/clients/client-clouddirectory/src/commands/BatchWriteCommand.ts +++ b/clients/client-clouddirectory/src/commands/BatchWriteCommand.ts @@ -344,24 +344,24 @@ export interface BatchWriteCommandOutput extends BatchWriteResponse, __MetadataB * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To run a batch write command * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "Operations": [] + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * Operations: [] * }; * const command = new BatchWriteCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Responses": [] + * Responses: [] * } * *\/ - * // example id: to-run-a-batch-write-command-1506122878964 * ``` * + * @public */ export class BatchWriteCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/CreateDirectoryCommand.ts b/clients/client-clouddirectory/src/commands/CreateDirectoryCommand.ts index e705118d0f44e..0171dbc823d1e 100644 --- a/clients/client-clouddirectory/src/commands/CreateDirectoryCommand.ts +++ b/clients/client-clouddirectory/src/commands/CreateDirectoryCommand.ts @@ -88,27 +88,27 @@ export interface CreateDirectoryCommandOutput extends CreateDirectoryResponse, _ * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To create a new Cloud Directory * ```javascript * // * const input = { - * "Name": "ExampleCD", - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:schema/published/person/1" + * Name: "ExampleCD", + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:schema/published/person/1" * }; * const command = new CreateDirectoryCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AppliedSchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI/schema/person/1", - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI", - * "Name": "ExampleCD", - * "ObjectIdentifier": "AQHzK-KsptZGU78KjmnwGH6i-4guCM3uQFOTA9_NjeHDrg" + * AppliedSchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI/schema/person/1", + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI", + * Name: "ExampleCD", + * ObjectIdentifier: "AQHzK-KsptZGU78KjmnwGH6i-4guCM3uQFOTA9_NjeHDrg" * } * *\/ - * // example id: to-create-a-new-cloud-directory-1506119878996 * ``` * + * @public */ export class CreateDirectoryCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/CreateFacetCommand.ts b/clients/client-clouddirectory/src/commands/CreateFacetCommand.ts index a4d37f2c71cf9..efd029e976154 100644 --- a/clients/client-clouddirectory/src/commands/CreateFacetCommand.ts +++ b/clients/client-clouddirectory/src/commands/CreateFacetCommand.ts @@ -118,20 +118,23 @@ export interface CreateFacetCommandOutput extends CreateFacetResponse, __Metadat * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To create a facet * ```javascript * // * const input = { - * "Name": "node1", - * "ObjectType": "NODE", - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" + * Name: "node1", + * ObjectType: "NODE", + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" * }; * const command = new CreateFacetCommand(input); - * await client.send(command); - * // example id: to-create-a-facet-1506112442334 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class CreateFacetCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/CreateIndexCommand.ts b/clients/client-clouddirectory/src/commands/CreateIndexCommand.ts index 461bcb3aa1e03..1478300328efc 100644 --- a/clients/client-clouddirectory/src/commands/CreateIndexCommand.ts +++ b/clients/client-clouddirectory/src/commands/CreateIndexCommand.ts @@ -103,27 +103,27 @@ export interface CreateIndexCommandOutput extends CreateIndexResponse, __Metadat * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To create an index * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8", - * "IsUnique": true, - * "LinkName": "Examplelink", - * "OrderedIndexedAttributeList": [], - * "ParentReference": {} + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8", + * IsUnique: true, + * LinkName: "Examplelink", + * OrderedIndexedAttributeList: [], + * ParentReference: { /* empty *\/ } * }; * const command = new CreateIndexCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ObjectIdentifier": "AQF0Fw173YJDlpLUV1eB50WvYsWFtVoUSmOzZjz_BLULIA" + * ObjectIdentifier: "AQF0Fw173YJDlpLUV1eB50WvYsWFtVoUSmOzZjz_BLULIA" * } * *\/ - * // example id: to-create-an-index-1505339563796 * ``` * + * @public */ export class CreateIndexCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/CreateObjectCommand.ts b/clients/client-clouddirectory/src/commands/CreateObjectCommand.ts index b91a051e0b8cd..85fdee4daa819 100644 --- a/clients/client-clouddirectory/src/commands/CreateObjectCommand.ts +++ b/clients/client-clouddirectory/src/commands/CreateObjectCommand.ts @@ -120,29 +120,29 @@ export interface CreateObjectCommandOutput extends CreateObjectResponse, __Metad * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To create an object * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8", - * "SchemaFacets": [ + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8", + * SchemaFacets: [ * { - * "FacetName": "Organization_Person", - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8/schema/ExampleOrgPersonSchema/1" + * FacetName: "Organization_Person", + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8/schema/ExampleOrgPersonSchema/1" * } * ] * }; * const command = new CreateObjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ObjectIdentifier": "AQF0Fw173YJDlpLUV1eB50WvScvjsYXcS3K2nP1HwDuuYQ" + * ObjectIdentifier: "AQF0Fw173YJDlpLUV1eB50WvScvjsYXcS3K2nP1HwDuuYQ" * } * *\/ - * // example id: to-create-an-object-1494010287120 * ``` * + * @public */ export class CreateObjectCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/CreateSchemaCommand.ts b/clients/client-clouddirectory/src/commands/CreateSchemaCommand.ts index fcd74a3ced6b9..1f34a45fea6fd 100644 --- a/clients/client-clouddirectory/src/commands/CreateSchemaCommand.ts +++ b/clients/client-clouddirectory/src/commands/CreateSchemaCommand.ts @@ -98,23 +98,23 @@ export interface CreateSchemaCommandOutput extends CreateSchemaResponse, __Metad * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To create a schema * ```javascript * // * const input = { - * "Name": "Customers" + * Name: "Customers" * }; * const command = new CreateSchemaCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:schema/development/Customers" + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:schema/development/Customers" * } * *\/ - * // example id: to-create-a-schema-1506530911949 * ``` * + * @public */ export class CreateSchemaCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/CreateTypedLinkFacetCommand.ts b/clients/client-clouddirectory/src/commands/CreateTypedLinkFacetCommand.ts index ad130edd20fdb..62efc73c88333 100644 --- a/clients/client-clouddirectory/src/commands/CreateTypedLinkFacetCommand.ts +++ b/clients/client-clouddirectory/src/commands/CreateTypedLinkFacetCommand.ts @@ -114,31 +114,34 @@ export interface CreateTypedLinkFacetCommandOutput extends CreateTypedLinkFacetR * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To create a typed link facet * ```javascript * // * const input = { - * "Facet": { - * "Attributes": [ + * Facet: { + * Attributes: [ * { - * "Name": "1", - * "RequiredBehavior": "REQUIRED_ALWAYS", - * "Type": "BINARY" + * Name: "1", + * RequiredBehavior: "REQUIRED_ALWAYS", + * Type: "BINARY" * } * ], - * "IdentityAttributeOrder": [ + * IdentityAttributeOrder: [ * "1" * ], - * "Name": "FacetExample" + * Name: "FacetExample" * }, - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:schema/development/typedlinkschema" + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:schema/development/typedlinkschema" * }; * const command = new CreateTypedLinkFacetCommand(input); - * await client.send(command); - * // example id: to-create-a-typed-link-facet-1506127699199 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class CreateTypedLinkFacetCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/DeleteDirectoryCommand.ts b/clients/client-clouddirectory/src/commands/DeleteDirectoryCommand.ts index 3ec8b6fe90d92..40075603cadbe 100644 --- a/clients/client-clouddirectory/src/commands/DeleteDirectoryCommand.ts +++ b/clients/client-clouddirectory/src/commands/DeleteDirectoryCommand.ts @@ -86,23 +86,23 @@ export interface DeleteDirectoryCommandOutput extends DeleteDirectoryResponse, _ * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To delete a directory * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8" * }; * const command = new DeleteDirectoryCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8" * } * *\/ - * // example id: to-delete-a-directory-1507570867859 * ``` * + * @public */ export class DeleteDirectoryCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/DeleteFacetCommand.ts b/clients/client-clouddirectory/src/commands/DeleteFacetCommand.ts index 435b52cd475ce..b3ab05b1047f9 100644 --- a/clients/client-clouddirectory/src/commands/DeleteFacetCommand.ts +++ b/clients/client-clouddirectory/src/commands/DeleteFacetCommand.ts @@ -85,19 +85,22 @@ export interface DeleteFacetCommandOutput extends DeleteFacetResponse, __Metadat * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To delete a facet * ```javascript * // * const input = { - * "Name": "Organization", - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:schema/development/exampleorgtest" + * Name: "Organization", + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:schema/development/exampleorgtest" * }; * const command = new DeleteFacetCommand(input); - * await client.send(command); - * // example id: to-delete-a-facet-1507573383449 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteFacetCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/DeleteObjectCommand.ts b/clients/client-clouddirectory/src/commands/DeleteObjectCommand.ts index 2a908078c4fc2..0c1b99a3ead36 100644 --- a/clients/client-clouddirectory/src/commands/DeleteObjectCommand.ts +++ b/clients/client-clouddirectory/src/commands/DeleteObjectCommand.ts @@ -86,21 +86,24 @@ export interface DeleteObjectCommandOutput extends DeleteObjectResponse, __Metad * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To delete an object * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI", - * "ObjectReference": { - * "Selector": "$AQHzK-KsptZGU78KjmnwGH6i8H-voMZDSNCqfx-fRUcBFg" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI", + * ObjectReference: { + * Selector: "$AQHzK-KsptZGU78KjmnwGH6i8H-voMZDSNCqfx-fRUcBFg" * } * }; * const command = new DeleteObjectCommand(input); - * await client.send(command); - * // example id: to-delete-an-object-1507574607158 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteObjectCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/DeleteSchemaCommand.ts b/clients/client-clouddirectory/src/commands/DeleteSchemaCommand.ts index cb889a401314a..878339663d087 100644 --- a/clients/client-clouddirectory/src/commands/DeleteSchemaCommand.ts +++ b/clients/client-clouddirectory/src/commands/DeleteSchemaCommand.ts @@ -81,23 +81,23 @@ export interface DeleteSchemaCommandOutput extends DeleteSchemaResponse, __Metad * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To delete a schema * ```javascript * // * const input = { - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:schema/development/exampleorgtest" + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:schema/development/exampleorgtest" * }; * const command = new DeleteSchemaCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:schema/development/exampleorgtest" + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:schema/development/exampleorgtest" * } * *\/ - * // example id: to-delete-a-schema-1507575230059 * ``` * + * @public */ export class DeleteSchemaCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/DeleteTypedLinkFacetCommand.ts b/clients/client-clouddirectory/src/commands/DeleteTypedLinkFacetCommand.ts index d8a346492595d..d434c9aaea039 100644 --- a/clients/client-clouddirectory/src/commands/DeleteTypedLinkFacetCommand.ts +++ b/clients/client-clouddirectory/src/commands/DeleteTypedLinkFacetCommand.ts @@ -79,19 +79,22 @@ export interface DeleteTypedLinkFacetCommandOutput extends DeleteTypedLinkFacetR * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To delete a typed link facet * ```javascript * // * const input = { - * "Name": "ExampleFacet", - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:schema/development/typedlinkschematest" + * Name: "ExampleFacet", + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:schema/development/typedlinkschematest" * }; * const command = new DeleteTypedLinkFacetCommand(input); - * await client.send(command); - * // example id: to-delete-a-typed-link-facet-1507576290714 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteTypedLinkFacetCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/DetachFromIndexCommand.ts b/clients/client-clouddirectory/src/commands/DetachFromIndexCommand.ts index c341d73e116ac..26f3e6204d899 100644 --- a/clients/client-clouddirectory/src/commands/DetachFromIndexCommand.ts +++ b/clients/client-clouddirectory/src/commands/DetachFromIndexCommand.ts @@ -92,29 +92,29 @@ export interface DetachFromIndexCommandOutput extends DetachFromIndexResponse, _ * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To detach an object from an index * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "IndexReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * IndexReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q" * }, - * "TargetReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * TargetReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * } * }; * const command = new DetachFromIndexCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DetachedObjectIdentifier": "AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * DetachedObjectIdentifier: "AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * } * *\/ - * // example id: to-detach-an-object-from-an-index-1507579662964 * ``` * + * @public */ export class DetachFromIndexCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/DetachObjectCommand.ts b/clients/client-clouddirectory/src/commands/DetachObjectCommand.ts index 00f5c577f15cf..1abde06af64fa 100644 --- a/clients/client-clouddirectory/src/commands/DetachObjectCommand.ts +++ b/clients/client-clouddirectory/src/commands/DetachObjectCommand.ts @@ -89,27 +89,27 @@ export interface DetachObjectCommandOutput extends DetachObjectResponse, __Metad * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To detach an object from its parent object * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "LinkName": "link2", - * "ParentReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * LinkName: "link2", + * ParentReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * } * }; * const command = new DetachObjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DetachedObjectIdentifier": "AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" + * DetachedObjectIdentifier: "AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" * } * *\/ - * // example id: to-detach-an-object-from-its-parent-object-1508196401149 * ``` * + * @public */ export class DetachObjectCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/DetachPolicyCommand.ts b/clients/client-clouddirectory/src/commands/DetachPolicyCommand.ts index 7b594ceab686c..3aa149e30b260 100644 --- a/clients/client-clouddirectory/src/commands/DetachPolicyCommand.ts +++ b/clients/client-clouddirectory/src/commands/DetachPolicyCommand.ts @@ -87,24 +87,27 @@ export interface DetachPolicyCommandOutput extends DetachPolicyResponse, __Metad * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To detach a policy from an object * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "ObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWQoovm1s3Ts2v0NKrzdVnPw" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * ObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWQoovm1s3Ts2v0NKrzdVnPw" * }, - * "PolicyReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWgcBsTVmcQEWs6jlygfhuew" + * PolicyReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWgcBsTVmcQEWs6jlygfhuew" * } * }; * const command = new DetachPolicyCommand(input); - * await client.send(command); - * // example id: to-detach-a-policy-from-an-object-1508268395318 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DetachPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/DetachTypedLinkCommand.ts b/clients/client-clouddirectory/src/commands/DetachTypedLinkCommand.ts index 2e0d26011c8f1..1b2ee4c4f002b 100644 --- a/clients/client-clouddirectory/src/commands/DetachTypedLinkCommand.ts +++ b/clients/client-clouddirectory/src/commands/DetachTypedLinkCommand.ts @@ -106,38 +106,41 @@ export interface DetachTypedLinkCommandOutput extends __MetadataBearer {} * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To detach a typed link from an object * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "TypedLinkSpecifier": { - * "IdentityAttributeValues": [ + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * TypedLinkSpecifier: { + * IdentityAttributeValues: [ * { - * "AttributeName": "22", - * "Value": { - * "BinaryValue": "c3Ry" + * AttributeName: "22", + * Value: { + * BinaryValue: "c3Ry" * } * } * ], - * "SourceObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" + * SourceObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" * }, - * "TargetObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * TargetObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * }, - * "TypedLinkFacet": { - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1", - * "TypedLinkName": "exampletypedlink8" + * TypedLinkFacet: { + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1", + * TypedLinkName: "exampletypedlink8" * } * } * }; * const command = new DetachTypedLinkCommand(input); - * await client.send(command); - * // example id: to-detach-a-typed-link-from-an-object-1506540145856 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DetachTypedLinkCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/DisableDirectoryCommand.ts b/clients/client-clouddirectory/src/commands/DisableDirectoryCommand.ts index 669ce774774b0..2940503a1facd 100644 --- a/clients/client-clouddirectory/src/commands/DisableDirectoryCommand.ts +++ b/clients/client-clouddirectory/src/commands/DisableDirectoryCommand.ts @@ -82,23 +82,23 @@ export interface DisableDirectoryCommandOutput extends DisableDirectoryResponse, * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To disable a directory * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8" * }; * const command = new DisableDirectoryCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8" * } * *\/ - * // example id: to-disable-a-directory-1507253386265 * ``` * + * @public */ export class DisableDirectoryCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/EnableDirectoryCommand.ts b/clients/client-clouddirectory/src/commands/EnableDirectoryCommand.ts index 347cd42e69aa9..b1e94e53d963e 100644 --- a/clients/client-clouddirectory/src/commands/EnableDirectoryCommand.ts +++ b/clients/client-clouddirectory/src/commands/EnableDirectoryCommand.ts @@ -82,23 +82,23 @@ export interface EnableDirectoryCommandOutput extends EnableDirectoryResponse, _ * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To enable a disabled directory * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8" * }; * const command = new EnableDirectoryCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8" * } * *\/ - * // example id: to-enable-a-disabled-directory-1507253506378 * ``` * + * @public */ export class EnableDirectoryCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/GetAppliedSchemaVersionCommand.ts b/clients/client-clouddirectory/src/commands/GetAppliedSchemaVersionCommand.ts index 7d34caaad775f..e15363227a4b3 100644 --- a/clients/client-clouddirectory/src/commands/GetAppliedSchemaVersionCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetAppliedSchemaVersionCommand.ts @@ -77,6 +77,7 @@ export interface GetAppliedSchemaVersionCommandOutput extends GetAppliedSchemaVe * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class GetAppliedSchemaVersionCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/GetDirectoryCommand.ts b/clients/client-clouddirectory/src/commands/GetDirectoryCommand.ts index da7dec06fd921..e840471445193 100644 --- a/clients/client-clouddirectory/src/commands/GetDirectoryCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetDirectoryCommand.ts @@ -79,28 +79,28 @@ export interface GetDirectoryCommandOutput extends GetDirectoryResponse, __Metad * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To get information about a directory * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY" * }; * const command = new GetDirectoryCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Directory": { - * "CreationDateTime": 1506115781.186, - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "Name": "ExampleCD", - * "State": "ENABLED" + * Directory: { + * CreationDateTime: 1.506115781186E9, + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * Name: "ExampleCD", + * State: "ENABLED" * } * } * *\/ - * // example id: to-get-information-about-a-directory-1507235667410 * ``` * + * @public */ export class GetDirectoryCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/GetFacetCommand.ts b/clients/client-clouddirectory/src/commands/GetFacetCommand.ts index ee1c3acad546e..195c889259c18 100644 --- a/clients/client-clouddirectory/src/commands/GetFacetCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetFacetCommand.ts @@ -86,27 +86,27 @@ export interface GetFacetCommandOutput extends GetFacetResponse, __MetadataBeare * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To get information about a facet * ```javascript * // * const input = { - * "Name": "node2", - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" + * Name: "node2", + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" * }; * const command = new GetFacetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Facet": { - * "Name": "node2", - * "ObjectType": "NODE" + * Facet: { + * Name: "node2", + * ObjectType: "NODE" * } * } * *\/ - * // example id: to-get-information-about-a-facet-1507234748374 * ``` * + * @public */ export class GetFacetCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/GetLinkAttributesCommand.ts b/clients/client-clouddirectory/src/commands/GetLinkAttributesCommand.ts index 8567be613e111..4eba6f9345885 100644 --- a/clients/client-clouddirectory/src/commands/GetLinkAttributesCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetLinkAttributesCommand.ts @@ -127,6 +127,7 @@ export interface GetLinkAttributesCommandOutput extends GetLinkAttributesRespons * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class GetLinkAttributesCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/GetObjectAttributesCommand.ts b/clients/client-clouddirectory/src/commands/GetObjectAttributesCommand.ts index 0dde0d1958301..41eb44f10391e 100644 --- a/clients/client-clouddirectory/src/commands/GetObjectAttributesCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetObjectAttributesCommand.ts @@ -110,6 +110,7 @@ export interface GetObjectAttributesCommandOutput extends GetObjectAttributesRes * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class GetObjectAttributesCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/GetObjectInformationCommand.ts b/clients/client-clouddirectory/src/commands/GetObjectInformationCommand.ts index 5fd329c7a95d5..f074a387e0433 100644 --- a/clients/client-clouddirectory/src/commands/GetObjectInformationCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetObjectInformationCommand.ts @@ -90,33 +90,33 @@ export interface GetObjectInformationCommandOutput extends GetObjectInformationR * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To get information about an object * ```javascript * // * const input = { - * "ConsistencyLevel": "SERIALIZABLE", - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "ObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWmspn1fxfQmSQaaVKSbvEiQ" + * ConsistencyLevel: "SERIALIZABLE", + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * ObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWmspn1fxfQmSQaaVKSbvEiQ" * } * }; * const command = new GetObjectInformationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ObjectIdentifier": "AQGG_ADlfNZBzYHY_JgDt3TWmspn1fxfQmSQaaVKSbvEiQ", - * "SchemaFacets": [ + * ObjectIdentifier: "AQGG_ADlfNZBzYHY_JgDt3TWmspn1fxfQmSQaaVKSbvEiQ", + * SchemaFacets: [ * { - * "FacetName": "node2", - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" + * FacetName: "node2", + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" * } * ] * } * *\/ - * // example id: to-get-information-about-an-object-1507228370573 * ``` * + * @public */ export class GetObjectInformationCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/GetSchemaAsJsonCommand.ts b/clients/client-clouddirectory/src/commands/GetSchemaAsJsonCommand.ts index 40650f7097c0f..04ad37b619c1e 100644 --- a/clients/client-clouddirectory/src/commands/GetSchemaAsJsonCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetSchemaAsJsonCommand.ts @@ -78,24 +78,24 @@ export interface GetSchemaAsJsonCommandOutput extends GetSchemaAsJsonResponse, _ * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To get schema information and display it in JSON format * ```javascript * // * const input = { - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" * }; * const command = new GetSchemaAsJsonCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Document": "{\"sourceSchemaArn\":\"arn:aws:clouddirectory:us-west-2:45132example:schema/published/org/1\",\"facets\":{\"node2\":{\"facetAttributes\":{},\"objectType\":\"NODE\"},\"Organization\":{\"facetAttributes\":{\"account_id\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"account_name\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"telephone_number\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"description\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"mailing_address_country\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"mailing_address_state\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"mailing_address_street2\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"mailing_address_street1\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"web_site\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"email\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"mailing_address_city\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"organization_status\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"mailing_address_postal_code\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"}},\"objectType\":\"LEAF_NODE\"},\"nodex\":{\"facetAttributes\":{},\"objectType\":\"NODE\"},\"Legal_Entity\":{\"facetAttributes\":{\"industry_vertical\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"registered_company_name\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"billing_currency\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"mailing_address_country\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"mailing_address_state\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"mailing_address_street2\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"mailing_address_street1\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"tax_id\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"mailing_address_city\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"},\"mailing_address_postal_code\":{\"attributeDefinition\":{\"attributeType\":\"STRING\",\"isImmutable\":false,\"attributeRules\":{\"nameLength\":{\"parameters\":{\"min\":\"1\",\"max\":\"1024\"},\"ruleType\":\"STRING_LENGTH\"}}},\"requiredBehavior\":\"NOT_REQUIRED\"}},\"objectType\":\"LEAF_NODE\"},\"policyfacet\":{\"facetAttributes\":{},\"objectType\":\"POLICY\"},\"node1\":{\"facetAttributes\":{},\"objectType\":\"NODE\"}},\"typedLinkFacets\":{\"exampletypedlink\":{\"facetAttributes\":{\"1\":{\"attributeDefinition\":{\"attributeType\":\"BINARY\",\"isImmutable\":false,\"attributeRules\":{}},\"requiredBehavior\":\"REQUIRED_ALWAYS\"}},\"identityAttributeOrder\":[\"1\"]},\"exampletypedlink8\":{\"facetAttributes\":{\"22\":{\"attributeDefinition\":{\"attributeType\":\"BINARY\",\"isImmutable\":false,\"attributeRules\":{}},\"requiredBehavior\":\"REQUIRED_ALWAYS\"}},\"identityAttributeOrder\":[\"22\"]}}}", - * "Name": "org" + * Document: `{"sourceSchemaArn":"arn:aws:clouddirectory:us-west-2:45132example:schema/published/org/1","facets":{"node2":{"facetAttributes":{},"objectType":"NODE"},"Organization":{"facetAttributes":{"account_id":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"account_name":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"telephone_number":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"description":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_country":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_state":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_street2":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_street1":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"web_site":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"email":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_city":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"organization_status":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_postal_code":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"}},"objectType":"LEAF_NODE"},"nodex":{"facetAttributes":{},"objectType":"NODE"},"Legal_Entity":{"facetAttributes":{"industry_vertical":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"registered_company_name":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"billing_currency":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_country":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_state":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_street2":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_street1":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"tax_id":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_city":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_postal_code":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"}},"objectType":"LEAF_NODE"},"policyfacet":{"facetAttributes":{},"objectType":"POLICY"},"node1":{"facetAttributes":{},"objectType":"NODE"}},"typedLinkFacets":{"exampletypedlink":{"facetAttributes":{"1":{"attributeDefinition":{"attributeType":"BINARY","isImmutable":false,"attributeRules":{}},"requiredBehavior":"REQUIRED_ALWAYS"}},"identityAttributeOrder":["1"]},"exampletypedlink8":{"facetAttributes":{"22":{"attributeDefinition":{"attributeType":"BINARY","isImmutable":false,"attributeRules":{}},"requiredBehavior":"REQUIRED_ALWAYS"}},"identityAttributeOrder":["22"]}}}`, + * Name: "org" * } * *\/ - * // example id: to-get-schema-information-and-display-it-in-json-format-1507249604181 * ``` * + * @public */ export class GetSchemaAsJsonCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/GetTypedLinkFacetInformationCommand.ts b/clients/client-clouddirectory/src/commands/GetTypedLinkFacetInformationCommand.ts index f4541490db7ef..b03ee941f0ef4 100644 --- a/clients/client-clouddirectory/src/commands/GetTypedLinkFacetInformationCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetTypedLinkFacetInformationCommand.ts @@ -91,26 +91,26 @@ export interface GetTypedLinkFacetInformationCommandOutput * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To get information about a typed link facet * ```javascript * // * const input = { - * "Name": "exampletypedlink8", - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" + * Name: "exampletypedlink8", + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" * }; * const command = new GetTypedLinkFacetInformationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "IdentityAttributeOrder": [ + * IdentityAttributeOrder: [ * "22" * ] * } * *\/ - * // example id: to-get-information-about-a-typed-link-facet-1507251423121 * ``` * + * @public */ export class GetTypedLinkFacetInformationCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/ListAppliedSchemaArnsCommand.ts b/clients/client-clouddirectory/src/commands/ListAppliedSchemaArnsCommand.ts index bcd6d3ddb172a..5940bf38f0621 100644 --- a/clients/client-clouddirectory/src/commands/ListAppliedSchemaArnsCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListAppliedSchemaArnsCommand.ts @@ -86,25 +86,25 @@ export interface ListAppliedSchemaArnsCommandOutput extends ListAppliedSchemaArn * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To list applied schema ARNs for a specified directory * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY" * }; * const command = new ListAppliedSchemaArnsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SchemaArns": [ + * SchemaArns: [ * "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" * ] * } * *\/ - * // example id: to-list-applied-schema-arns-for-a-specified-directory-1508194900072 * ``` * + * @public */ export class ListAppliedSchemaArnsCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/ListAttachedIndicesCommand.ts b/clients/client-clouddirectory/src/commands/ListAttachedIndicesCommand.ts index dad513df40f51..9fc5d17a26f02 100644 --- a/clients/client-clouddirectory/src/commands/ListAttachedIndicesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListAttachedIndicesCommand.ts @@ -107,31 +107,31 @@ export interface ListAttachedIndicesCommandOutput extends ListAttachedIndicesRes * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To list the indices attached to an object * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "TargetReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * TargetReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * } * }; * const command = new ListAttachedIndicesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "IndexAttachments": [ + * IndexAttachments: [ * { - * "IndexedAttributes": [], - * "ObjectIdentifier": "AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q" + * IndexedAttributes: [], + * ObjectIdentifier: "AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q" * } * ] * } * *\/ - * // example id: to-list-the-indices-attached-to-an-object-1507579868633 * ``` * + * @public */ export class ListAttachedIndicesCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/ListDevelopmentSchemaArnsCommand.ts b/clients/client-clouddirectory/src/commands/ListDevelopmentSchemaArnsCommand.ts index bd937b4793e21..f2b71dbf6eaf3 100644 --- a/clients/client-clouddirectory/src/commands/ListDevelopmentSchemaArnsCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListDevelopmentSchemaArnsCommand.ts @@ -85,16 +85,16 @@ export interface ListDevelopmentSchemaArnsCommandOutput extends ListDevelopmentS * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To list all development schema arns in your AWS account * ```javascript * // - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListDevelopmentSchemaArnsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SchemaArns": [ + * SchemaArns: [ * "arn:aws:clouddirectory:us-west-2:45132example:schema/development/typedlinkschematest", * "arn:aws:clouddirectory:us-west-2:45132example:schema/development/testCDschema", * "arn:aws:clouddirectory:us-west-2:45132example:schema/development/Customers", @@ -104,9 +104,9 @@ export interface ListDevelopmentSchemaArnsCommandOutput extends ListDevelopmentS * ] * } * *\/ - * // example id: to-list-the-development-schema-arns-1508262502911 * ``` * + * @public */ export class ListDevelopmentSchemaArnsCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/ListDirectoriesCommand.ts b/clients/client-clouddirectory/src/commands/ListDirectoriesCommand.ts index 11c4d50671e26..8e129099451f6 100644 --- a/clients/client-clouddirectory/src/commands/ListDirectoriesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListDirectoriesCommand.ts @@ -87,52 +87,52 @@ export interface ListDirectoriesCommandOutput extends ListDirectoriesResponse, _ * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To list all directories in your AWS account * ```javascript * // - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListDirectoriesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Directories": [ + * Directories: [ * { - * "CreationDateTime": 1506121791.167, - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/Ae89hOKmw0bRpvYgW8EAsus", - * "Name": "ExampleCD4", - * "State": "ENABLED" + * CreationDateTime: 1.506121791167E9, + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/Ae89hOKmw0bRpvYgW8EAsus", + * Name: "ExampleCD4", + * State: "ENABLED" * }, * { - * "CreationDateTime": 1485473189.746, - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8", - * "Name": "testCD", - * "State": "DELETED" + * CreationDateTime: 1.485473189746E9, + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8", + * Name: "testCD", + * State: "DELETED" * }, * { - * "CreationDateTime": 1506115781.186, - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "Name": "ExampleCD", - * "State": "ENABLED" + * CreationDateTime: 1.506115781186E9, + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * Name: "ExampleCD", + * State: "ENABLED" * }, * { - * "CreationDateTime": 1506118003.859, - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI", - * "Name": "ExampleCD2", - * "State": "ENABLED" + * CreationDateTime: 1.506118003859E9, + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI", + * Name: "ExampleCD2", + * State: "ENABLED" * }, * { - * "CreationDateTime": 1485477107.925, - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AWeI1yjiB0SylWVTvQklCD0", - * "Name": "testCD2", - * "State": "DELETED" + * CreationDateTime: 1.485477107925E9, + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AWeI1yjiB0SylWVTvQklCD0", + * Name: "testCD2", + * State: "DELETED" * } * ] * } * *\/ - * // example id: to-list-all-directories-in-your-aws-account-1508262706411 * ``` * + * @public */ export class ListDirectoriesCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/ListFacetAttributesCommand.ts b/clients/client-clouddirectory/src/commands/ListFacetAttributesCommand.ts index 3b7d2b6f1f9d9..da1c83bb34ad0 100644 --- a/clients/client-clouddirectory/src/commands/ListFacetAttributesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListFacetAttributesCommand.ts @@ -115,196 +115,196 @@ export interface ListFacetAttributesCommandOutput extends ListFacetAttributesRes * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To list facet attributes * ```javascript * // * const input = { - * "Name": "Organization", - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" + * Name: "Organization", + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" * }; * const command = new ListFacetAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Attributes": [ + * Attributes: [ * { - * "AttributeDefinition": { - * "IsImmutable": false, - * "Rules": { - * "nameLength": { - * "Parameters": { - * "max": "1024", - * "min": "1" + * AttributeDefinition: { + * IsImmutable: false, + * Rules: { + * nameLength: { + * Parameters: { + * max: "1024", + * min: "1" * }, - * "Type": "STRING_LENGTH" + * Type: "STRING_LENGTH" * } * }, - * "Type": "STRING" + * Type: "STRING" * }, - * "Name": "account_id", - * "RequiredBehavior": "NOT_REQUIRED" + * Name: "account_id", + * RequiredBehavior: "NOT_REQUIRED" * }, * { - * "AttributeDefinition": { - * "IsImmutable": false, - * "Rules": { - * "nameLength": { - * "Parameters": { - * "max": "1024", - * "min": "1" + * AttributeDefinition: { + * IsImmutable: false, + * Rules: { + * nameLength: { + * Parameters: { + * max: "1024", + * min: "1" * }, - * "Type": "STRING_LENGTH" + * Type: "STRING_LENGTH" * } * }, - * "Type": "STRING" + * Type: "STRING" * }, - * "Name": "account_name", - * "RequiredBehavior": "NOT_REQUIRED" + * Name: "account_name", + * RequiredBehavior: "NOT_REQUIRED" * }, * { - * "AttributeDefinition": { - * "IsImmutable": false, - * "Rules": { - * "nameLength": { - * "Parameters": { - * "max": "1024", - * "min": "1" + * AttributeDefinition: { + * IsImmutable: false, + * Rules: { + * nameLength: { + * Parameters: { + * max: "1024", + * min: "1" * }, - * "Type": "STRING_LENGTH" + * Type: "STRING_LENGTH" * } * }, - * "Type": "STRING" + * Type: "STRING" * }, - * "Name": "description", - * "RequiredBehavior": "NOT_REQUIRED" + * Name: "description", + * RequiredBehavior: "NOT_REQUIRED" * }, * { - * "AttributeDefinition": { - * "IsImmutable": false, - * "Rules": { - * "nameLength": { - * "Parameters": { - * "max": "1024", - * "min": "1" + * AttributeDefinition: { + * IsImmutable: false, + * Rules: { + * nameLength: { + * Parameters: { + * max: "1024", + * min: "1" * }, - * "Type": "STRING_LENGTH" + * Type: "STRING_LENGTH" * } * }, - * "Type": "STRING" + * Type: "STRING" * }, - * "Name": "email", - * "RequiredBehavior": "NOT_REQUIRED" + * Name: "email", + * RequiredBehavior: "NOT_REQUIRED" * }, * { - * "AttributeDefinition": { - * "IsImmutable": false, - * "Rules": { - * "nameLength": { - * "Parameters": { - * "max": "1024", - * "min": "1" + * AttributeDefinition: { + * IsImmutable: false, + * Rules: { + * nameLength: { + * Parameters: { + * max: "1024", + * min: "1" * }, - * "Type": "STRING_LENGTH" + * Type: "STRING_LENGTH" * } * }, - * "Type": "STRING" + * Type: "STRING" * }, - * "Name": "mailing_address_city", - * "RequiredBehavior": "NOT_REQUIRED" + * Name: "mailing_address_city", + * RequiredBehavior: "NOT_REQUIRED" * }, * { - * "AttributeDefinition": { - * "IsImmutable": false, - * "Rules": { - * "nameLength": { - * "Parameters": { - * "max": "1024", - * "min": "1" + * AttributeDefinition: { + * IsImmutable: false, + * Rules: { + * nameLength: { + * Parameters: { + * max: "1024", + * min: "1" * }, - * "Type": "STRING_LENGTH" + * Type: "STRING_LENGTH" * } * }, - * "Type": "STRING" + * Type: "STRING" * }, - * "Name": "mailing_address_country", - * "RequiredBehavior": "NOT_REQUIRED" + * Name: "mailing_address_country", + * RequiredBehavior: "NOT_REQUIRED" * }, * { - * "AttributeDefinition": { - * "IsImmutable": false, - * "Rules": { - * "nameLength": { - * "Parameters": { - * "max": "1024", - * "min": "1" + * AttributeDefinition: { + * IsImmutable: false, + * Rules: { + * nameLength: { + * Parameters: { + * max: "1024", + * min: "1" * }, - * "Type": "STRING_LENGTH" + * Type: "STRING_LENGTH" * } * }, - * "Type": "STRING" + * Type: "STRING" * }, - * "Name": "mailing_address_postal_code", - * "RequiredBehavior": "NOT_REQUIRED" + * Name: "mailing_address_postal_code", + * RequiredBehavior: "NOT_REQUIRED" * }, * { - * "AttributeDefinition": { - * "IsImmutable": false, - * "Rules": { - * "nameLength": { - * "Parameters": { - * "max": "1024", - * "min": "1" + * AttributeDefinition: { + * IsImmutable: false, + * Rules: { + * nameLength: { + * Parameters: { + * max: "1024", + * min: "1" * }, - * "Type": "STRING_LENGTH" + * Type: "STRING_LENGTH" * } * }, - * "Type": "STRING" + * Type: "STRING" * }, - * "Name": "mailing_address_state", - * "RequiredBehavior": "NOT_REQUIRED" + * Name: "mailing_address_state", + * RequiredBehavior: "NOT_REQUIRED" * }, * { - * "AttributeDefinition": { - * "IsImmutable": false, - * "Rules": { - * "nameLength": { - * "Parameters": { - * "max": "1024", - * "min": "1" + * AttributeDefinition: { + * IsImmutable: false, + * Rules: { + * nameLength: { + * Parameters: { + * max: "1024", + * min: "1" * }, - * "Type": "STRING_LENGTH" + * Type: "STRING_LENGTH" * } * }, - * "Type": "STRING" + * Type: "STRING" * }, - * "Name": "mailing_address_street1", - * "RequiredBehavior": "NOT_REQUIRED" + * Name: "mailing_address_street1", + * RequiredBehavior: "NOT_REQUIRED" * }, * { - * "AttributeDefinition": { - * "IsImmutable": false, - * "Rules": { - * "nameLength": { - * "Parameters": { - * "max": "1024", - * "min": "1" + * AttributeDefinition: { + * IsImmutable: false, + * Rules: { + * nameLength: { + * Parameters: { + * max: "1024", + * min: "1" * }, - * "Type": "STRING_LENGTH" + * Type: "STRING_LENGTH" * } * }, - * "Type": "STRING" + * Type: "STRING" * }, - * "Name": "mailing_address_street2", - * "RequiredBehavior": "NOT_REQUIRED" + * Name: "mailing_address_street2", + * RequiredBehavior: "NOT_REQUIRED" * } * ], - * "NextToken": "V0b3JnYW5pemF0aW9uX3N0YXR1cw==" + * NextToken: "V0b3JnYW5pemF0aW9uX3N0YXR1cw==" * } * *\/ - * // example id: to-list-facet-attributes-1508275015421 * ``` * + * @public */ export class ListFacetAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/ListFacetNamesCommand.ts b/clients/client-clouddirectory/src/commands/ListFacetNamesCommand.ts index 72e8d2c59a3c0..138636147b0d3 100644 --- a/clients/client-clouddirectory/src/commands/ListFacetNamesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListFacetNamesCommand.ts @@ -85,18 +85,18 @@ export interface ListFacetNamesCommandOutput extends ListFacetNamesResponse, __M * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To list facet names * ```javascript * // * const input = { - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" * }; * const command = new ListFacetNamesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FacetNames": [ + * FacetNames: [ * "Legal_Entity", * "Organization", * "node1", @@ -106,9 +106,9 @@ export interface ListFacetNamesCommandOutput extends ListFacetNamesResponse, __M * ] * } * *\/ - * // example id: to-list-facet-names-1508275974689 * ``` * + * @public */ export class ListFacetNamesCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/ListIncomingTypedLinksCommand.ts b/clients/client-clouddirectory/src/commands/ListIncomingTypedLinksCommand.ts index 9afb01e19b28c..0562dd5185089 100644 --- a/clients/client-clouddirectory/src/commands/ListIncomingTypedLinksCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListIncomingTypedLinksCommand.ts @@ -148,88 +148,88 @@ export interface ListIncomingTypedLinksCommandOutput extends ListIncomingTypedLi * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To list incoming typed links * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "ObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * ObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * } * }; * const command = new ListIncomingTypedLinksCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LinkSpecifiers": [ + * LinkSpecifiers: [ * { - * "IdentityAttributeValues": [ + * IdentityAttributeValues: [ * { - * "AttributeName": "22", - * "Value": { - * "BinaryValue": "" + * AttributeName: "22", + * Value: { + * BinaryValue: "" * } * } * ], - * "SourceObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" + * SourceObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" * }, - * "TargetObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * TargetObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * }, - * "TypedLinkFacet": { - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1", - * "TypedLinkName": "exampletypedlink8" + * TypedLinkFacet: { + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1", + * TypedLinkName: "exampletypedlink8" * } * }, * { - * "IdentityAttributeValues": [ + * IdentityAttributeValues: [ * { - * "AttributeName": "22", - * "Value": { - * "BinaryValue": "MA==" + * AttributeName: "22", + * Value: { + * BinaryValue: "MA==" * } * } * ], - * "SourceObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" + * SourceObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" * }, - * "TargetObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * TargetObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * }, - * "TypedLinkFacet": { - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1", - * "TypedLinkName": "exampletypedlink8" + * TypedLinkFacet: { + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1", + * TypedLinkName: "exampletypedlink8" * } * }, * { - * "IdentityAttributeValues": [ + * IdentityAttributeValues: [ * { - * "AttributeName": "22", - * "Value": { - * "BinaryValue": "c3Ry" + * AttributeName: "22", + * Value: { + * BinaryValue: "c3Ry" * } * } * ], - * "SourceObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" + * SourceObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" * }, - * "TargetObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * TargetObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * }, - * "TypedLinkFacet": { - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1", - * "TypedLinkName": "exampletypedlink8" + * TypedLinkFacet: { + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1", + * TypedLinkName: "exampletypedlink8" * } * } * ], - * "NextToken": "" + * NextToken: "" * } * *\/ - * // example id: to-list-incoming-typed-links-1508276145750 * ``` * + * @public */ export class ListIncomingTypedLinksCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/ListIndexCommand.ts b/clients/client-clouddirectory/src/commands/ListIndexCommand.ts index cef0a81bb3d98..5935f001e7e6c 100644 --- a/clients/client-clouddirectory/src/commands/ListIndexCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListIndexCommand.ts @@ -144,40 +144,40 @@ export interface ListIndexCommandOutput extends ListIndexResponse, __MetadataBea * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To list an index * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "IndexReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * IndexReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q" * } * }; * const command = new ListIndexCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "IndexAttachments": [ + * IndexAttachments: [ * { - * "IndexedAttributes": [ + * IndexedAttributes: [ * { - * "Key": { - * "FacetName": "Organization", - * "Name": "description", - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" + * Key: { + * FacetName: "Organization", + * Name: "description", + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1" * }, - * "Value": {} + * Value: { /* empty *\/ } * } * ], - * "ObjectIdentifier": "AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * ObjectIdentifier: "AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * } * ] * } * *\/ - * // example id: to-list-an-index-1508281185950 * ``` * + * @public */ export class ListIndexCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/ListManagedSchemaArnsCommand.ts b/clients/client-clouddirectory/src/commands/ListManagedSchemaArnsCommand.ts index 46baa4afbac81..a3ad3728157f2 100644 --- a/clients/client-clouddirectory/src/commands/ListManagedSchemaArnsCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListManagedSchemaArnsCommand.ts @@ -79,6 +79,7 @@ export interface ListManagedSchemaArnsCommandOutput extends ListManagedSchemaArn * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class ListManagedSchemaArnsCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/ListObjectAttributesCommand.ts b/clients/client-clouddirectory/src/commands/ListObjectAttributesCommand.ts index dcda1e65da930..f932a57aef533 100644 --- a/clients/client-clouddirectory/src/commands/ListObjectAttributesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListObjectAttributesCommand.ts @@ -114,47 +114,47 @@ export interface ListObjectAttributesCommandOutput extends ListObjectAttributesR * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To list object attributes * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "ObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * ObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q" * } * }; * const command = new ListObjectAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Attributes": [ + * Attributes: [ * { - * "Key": { - * "FacetName": "INDEX", - * "Name": "index_is_unique", - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/CloudDirectory/1.0" + * Key: { + * FacetName: "INDEX", + * Name: "index_is_unique", + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/CloudDirectory/1.0" * }, - * "Value": { - * "BooleanValue": true + * Value: { + * BooleanValue: true * } * }, * { - * "Key": { - * "FacetName": "INDEX", - * "Name": "ordered_indexed_attributes", - * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/CloudDirectory/1.0" + * Key: { + * FacetName: "INDEX", + * Name: "ordered_indexed_attributes", + * SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/CloudDirectory/1.0" * }, - * "Value": { - * "StringValue": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1*Organization*description" + * Value: { + * StringValue: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1*Organization*description" * } * } * ] * } * *\/ - * // example id: to-list-object-attributes-1508281422770 * ``` * + * @public */ export class ListObjectAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/ListObjectChildrenCommand.ts b/clients/client-clouddirectory/src/commands/ListObjectChildrenCommand.ts index b5f6004ebd68a..818b31fc67534 100644 --- a/clients/client-clouddirectory/src/commands/ListObjectChildrenCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListObjectChildrenCommand.ts @@ -97,28 +97,28 @@ export interface ListObjectChildrenCommandOutput extends ListObjectChildrenRespo * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* - * @public + * * @example To list an objects children * ```javascript * // * const input = { - * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", - * "ObjectReference": { - * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" + * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", + * ObjectReference: { + * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * } * }; * const command = new ListObjectChildrenCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Children": { - * "link2": "AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" + * Children: { + * link2: "AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA" * } * } * *\/ - * // example id: to-list-an-objects-children-1508281694794 * ``` * + * @public */ export class ListObjectChildrenCommand extends $Command .classBuilder< diff --git a/clients/client-clouddirectory/src/commands/ListObjectParentPathsCommand.ts b/clients/client-clouddirectory/src/commands/ListObjectParentPathsCommand.ts index e3dd1ca7432c7..81248686a7d6e 100644 --- a/clients/client-clouddirectory/src/commands/ListObjectParentPathsCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListObjectParentPathsCommand.ts @@ -103,6 +103,7 @@ export interface ListObjectParentPathsCommandOutput extends ListObjectParentPath * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class ListObjectParentPathsCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/ListObjectParentsCommand.ts b/clients/client-clouddirectory/src/commands/ListObjectParentsCommand.ts index 89625ec5bd549..77db4d4be7d33 100644 --- a/clients/client-clouddirectory/src/commands/ListObjectParentsCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListObjectParentsCommand.ts @@ -103,6 +103,7 @@ export interface ListObjectParentsCommandOutput extends ListObjectParentsRespons * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class ListObjectParentsCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/ListObjectPoliciesCommand.ts b/clients/client-clouddirectory/src/commands/ListObjectPoliciesCommand.ts index 12a10895e5c38..89ec452152164 100644 --- a/clients/client-clouddirectory/src/commands/ListObjectPoliciesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListObjectPoliciesCommand.ts @@ -92,6 +92,7 @@ export interface ListObjectPoliciesCommandOutput extends ListObjectPoliciesRespo * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class ListObjectPoliciesCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/ListOutgoingTypedLinksCommand.ts b/clients/client-clouddirectory/src/commands/ListOutgoingTypedLinksCommand.ts index f146f5c3e3fef..5bee14d74a610 100644 --- a/clients/client-clouddirectory/src/commands/ListOutgoingTypedLinksCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListOutgoingTypedLinksCommand.ts @@ -148,6 +148,7 @@ export interface ListOutgoingTypedLinksCommandOutput extends ListOutgoingTypedLi * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class ListOutgoingTypedLinksCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/ListPolicyAttachmentsCommand.ts b/clients/client-clouddirectory/src/commands/ListPolicyAttachmentsCommand.ts index e443b90592965..43c72ee391f75 100644 --- a/clients/client-clouddirectory/src/commands/ListPolicyAttachmentsCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListPolicyAttachmentsCommand.ts @@ -95,6 +95,7 @@ export interface ListPolicyAttachmentsCommandOutput extends ListPolicyAttachment * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class ListPolicyAttachmentsCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/ListPublishedSchemaArnsCommand.ts b/clients/client-clouddirectory/src/commands/ListPublishedSchemaArnsCommand.ts index bc45026aa92f6..3caa14ceb5529 100644 --- a/clients/client-clouddirectory/src/commands/ListPublishedSchemaArnsCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListPublishedSchemaArnsCommand.ts @@ -85,6 +85,7 @@ export interface ListPublishedSchemaArnsCommandOutput extends ListPublishedSchem * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class ListPublishedSchemaArnsCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/ListTagsForResourceCommand.ts b/clients/client-clouddirectory/src/commands/ListTagsForResourceCommand.ts index 288f6a9f8cfc0..cbebad0a2c6b3 100644 --- a/clients/client-clouddirectory/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListTagsForResourceCommand.ts @@ -90,6 +90,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/ListTypedLinkFacetAttributesCommand.ts b/clients/client-clouddirectory/src/commands/ListTypedLinkFacetAttributesCommand.ts index b9e588c81979d..0d45064fb0575 100644 --- a/clients/client-clouddirectory/src/commands/ListTypedLinkFacetAttributesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListTypedLinkFacetAttributesCommand.ts @@ -114,6 +114,7 @@ export interface ListTypedLinkFacetAttributesCommandOutput * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class ListTypedLinkFacetAttributesCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/ListTypedLinkFacetNamesCommand.ts b/clients/client-clouddirectory/src/commands/ListTypedLinkFacetNamesCommand.ts index cfd888bb9d54e..6d7c59c88313d 100644 --- a/clients/client-clouddirectory/src/commands/ListTypedLinkFacetNamesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListTypedLinkFacetNamesCommand.ts @@ -86,6 +86,7 @@ export interface ListTypedLinkFacetNamesCommandOutput extends ListTypedLinkFacet * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class ListTypedLinkFacetNamesCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/LookupPolicyCommand.ts b/clients/client-clouddirectory/src/commands/LookupPolicyCommand.ts index 7a294f9d61194..8f49546c32a9a 100644 --- a/clients/client-clouddirectory/src/commands/LookupPolicyCommand.ts +++ b/clients/client-clouddirectory/src/commands/LookupPolicyCommand.ts @@ -105,6 +105,7 @@ export interface LookupPolicyCommandOutput extends LookupPolicyResponse, __Metad * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class LookupPolicyCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/PublishSchemaCommand.ts b/clients/client-clouddirectory/src/commands/PublishSchemaCommand.ts index 66b176d12dd5a..2928126fc2777 100644 --- a/clients/client-clouddirectory/src/commands/PublishSchemaCommand.ts +++ b/clients/client-clouddirectory/src/commands/PublishSchemaCommand.ts @@ -83,6 +83,7 @@ export interface PublishSchemaCommandOutput extends PublishSchemaResponse, __Met * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class PublishSchemaCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/PutSchemaFromJsonCommand.ts b/clients/client-clouddirectory/src/commands/PutSchemaFromJsonCommand.ts index 26527fb10665f..4993ef0518e2f 100644 --- a/clients/client-clouddirectory/src/commands/PutSchemaFromJsonCommand.ts +++ b/clients/client-clouddirectory/src/commands/PutSchemaFromJsonCommand.ts @@ -81,6 +81,7 @@ export interface PutSchemaFromJsonCommandOutput extends PutSchemaFromJsonRespons * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class PutSchemaFromJsonCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/RemoveFacetFromObjectCommand.ts b/clients/client-clouddirectory/src/commands/RemoveFacetFromObjectCommand.ts index 5ddd477cce719..dd88905a8d8b3 100644 --- a/clients/client-clouddirectory/src/commands/RemoveFacetFromObjectCommand.ts +++ b/clients/client-clouddirectory/src/commands/RemoveFacetFromObjectCommand.ts @@ -89,6 +89,7 @@ export interface RemoveFacetFromObjectCommandOutput extends RemoveFacetFromObjec * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class RemoveFacetFromObjectCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/TagResourceCommand.ts b/clients/client-clouddirectory/src/commands/TagResourceCommand.ts index 98dd57b42c6c3..6fe154d10e0d6 100644 --- a/clients/client-clouddirectory/src/commands/TagResourceCommand.ts +++ b/clients/client-clouddirectory/src/commands/TagResourceCommand.ts @@ -84,6 +84,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/UntagResourceCommand.ts b/clients/client-clouddirectory/src/commands/UntagResourceCommand.ts index 1c75eb776686e..39524c5707ccd 100644 --- a/clients/client-clouddirectory/src/commands/UntagResourceCommand.ts +++ b/clients/client-clouddirectory/src/commands/UntagResourceCommand.ts @@ -81,6 +81,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/UpdateFacetCommand.ts b/clients/client-clouddirectory/src/commands/UpdateFacetCommand.ts index 51b14ec7c83d9..4867cc3e0d9fe 100644 --- a/clients/client-clouddirectory/src/commands/UpdateFacetCommand.ts +++ b/clients/client-clouddirectory/src/commands/UpdateFacetCommand.ts @@ -134,6 +134,7 @@ export interface UpdateFacetCommandOutput extends UpdateFacetResponse, __Metadat * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class UpdateFacetCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/UpdateLinkAttributesCommand.ts b/clients/client-clouddirectory/src/commands/UpdateLinkAttributesCommand.ts index add16f40bd69c..29f43127e955b 100644 --- a/clients/client-clouddirectory/src/commands/UpdateLinkAttributesCommand.ts +++ b/clients/client-clouddirectory/src/commands/UpdateLinkAttributesCommand.ts @@ -125,6 +125,7 @@ export interface UpdateLinkAttributesCommandOutput extends UpdateLinkAttributesR * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class UpdateLinkAttributesCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/UpdateObjectAttributesCommand.ts b/clients/client-clouddirectory/src/commands/UpdateObjectAttributesCommand.ts index 0e509a860ef10..e7397ca3fb72b 100644 --- a/clients/client-clouddirectory/src/commands/UpdateObjectAttributesCommand.ts +++ b/clients/client-clouddirectory/src/commands/UpdateObjectAttributesCommand.ts @@ -110,6 +110,7 @@ export interface UpdateObjectAttributesCommandOutput extends UpdateObjectAttribu * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class UpdateObjectAttributesCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/UpdateSchemaCommand.ts b/clients/client-clouddirectory/src/commands/UpdateSchemaCommand.ts index 46afd6cbf86ae..a922e3a6138ed 100644 --- a/clients/client-clouddirectory/src/commands/UpdateSchemaCommand.ts +++ b/clients/client-clouddirectory/src/commands/UpdateSchemaCommand.ts @@ -79,6 +79,7 @@ export interface UpdateSchemaCommandOutput extends UpdateSchemaResponse, __Metad * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class UpdateSchemaCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/UpdateTypedLinkFacetCommand.ts b/clients/client-clouddirectory/src/commands/UpdateTypedLinkFacetCommand.ts index 28129da05f0ec..e2a36705733a5 100644 --- a/clients/client-clouddirectory/src/commands/UpdateTypedLinkFacetCommand.ts +++ b/clients/client-clouddirectory/src/commands/UpdateTypedLinkFacetCommand.ts @@ -119,6 +119,7 @@ export interface UpdateTypedLinkFacetCommandOutput extends UpdateTypedLinkFacetR * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class UpdateTypedLinkFacetCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/UpgradeAppliedSchemaCommand.ts b/clients/client-clouddirectory/src/commands/UpgradeAppliedSchemaCommand.ts index aa51b7c09ab4c..455a571ee32cd 100644 --- a/clients/client-clouddirectory/src/commands/UpgradeAppliedSchemaCommand.ts +++ b/clients/client-clouddirectory/src/commands/UpgradeAppliedSchemaCommand.ts @@ -88,6 +88,7 @@ export interface UpgradeAppliedSchemaCommandOutput extends UpgradeAppliedSchemaR * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class UpgradeAppliedSchemaCommand extends $Command diff --git a/clients/client-clouddirectory/src/commands/UpgradePublishedSchemaCommand.ts b/clients/client-clouddirectory/src/commands/UpgradePublishedSchemaCommand.ts index 5a445992f2289..6a1cffa116269 100644 --- a/clients/client-clouddirectory/src/commands/UpgradePublishedSchemaCommand.ts +++ b/clients/client-clouddirectory/src/commands/UpgradePublishedSchemaCommand.ts @@ -87,6 +87,7 @@ export interface UpgradePublishedSchemaCommandOutput extends UpgradePublishedSch * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* + * * @public */ export class UpgradePublishedSchemaCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ActivateOrganizationsAccessCommand.ts b/clients/client-cloudformation/src/commands/ActivateOrganizationsAccessCommand.ts index 378fbbfc7e5bb..ee2ceff17da8b 100644 --- a/clients/client-cloudformation/src/commands/ActivateOrganizationsAccessCommand.ts +++ b/clients/client-cloudformation/src/commands/ActivateOrganizationsAccessCommand.ts @@ -59,6 +59,7 @@ export interface ActivateOrganizationsAccessCommandOutput extends ActivateOrgani * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ActivateOrganizationsAccessCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ActivateTypeCommand.ts b/clients/client-cloudformation/src/commands/ActivateTypeCommand.ts index d3e0807fe67be..03c1896a16e20 100644 --- a/clients/client-cloudformation/src/commands/ActivateTypeCommand.ts +++ b/clients/client-cloudformation/src/commands/ActivateTypeCommand.ts @@ -76,6 +76,7 @@ export interface ActivateTypeCommandOutput extends ActivateTypeOutput, __Metadat * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ActivateTypeCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/BatchDescribeTypeConfigurationsCommand.ts b/clients/client-cloudformation/src/commands/BatchDescribeTypeConfigurationsCommand.ts index 69426f59690e0..4ec3acca2d59f 100644 --- a/clients/client-cloudformation/src/commands/BatchDescribeTypeConfigurationsCommand.ts +++ b/clients/client-cloudformation/src/commands/BatchDescribeTypeConfigurationsCommand.ts @@ -110,6 +110,7 @@ export interface BatchDescribeTypeConfigurationsCommandOutput * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class BatchDescribeTypeConfigurationsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/CancelUpdateStackCommand.ts b/clients/client-cloudformation/src/commands/CancelUpdateStackCommand.ts index 1baff102ebe30..82e399ee5a137 100644 --- a/clients/client-cloudformation/src/commands/CancelUpdateStackCommand.ts +++ b/clients/client-cloudformation/src/commands/CancelUpdateStackCommand.ts @@ -61,6 +61,7 @@ export interface CancelUpdateStackCommandOutput extends __MetadataBearer {} * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class CancelUpdateStackCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ContinueUpdateRollbackCommand.ts b/clients/client-cloudformation/src/commands/ContinueUpdateRollbackCommand.ts index d985c44599699..d6b8244a115ba 100644 --- a/clients/client-cloudformation/src/commands/ContinueUpdateRollbackCommand.ts +++ b/clients/client-cloudformation/src/commands/ContinueUpdateRollbackCommand.ts @@ -70,6 +70,7 @@ export interface ContinueUpdateRollbackCommandOutput extends ContinueUpdateRollb * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ContinueUpdateRollbackCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/CreateChangeSetCommand.ts b/clients/client-cloudformation/src/commands/CreateChangeSetCommand.ts index 5f7112299ed84..374e8263ee700 100644 --- a/clients/client-cloudformation/src/commands/CreateChangeSetCommand.ts +++ b/clients/client-cloudformation/src/commands/CreateChangeSetCommand.ts @@ -137,6 +137,7 @@ export interface CreateChangeSetCommandOutput extends CreateChangeSetOutput, __M * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class CreateChangeSetCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/CreateGeneratedTemplateCommand.ts b/clients/client-cloudformation/src/commands/CreateGeneratedTemplateCommand.ts index 825a039826115..92291647727a7 100644 --- a/clients/client-cloudformation/src/commands/CreateGeneratedTemplateCommand.ts +++ b/clients/client-cloudformation/src/commands/CreateGeneratedTemplateCommand.ts @@ -84,37 +84,37 @@ export interface CreateGeneratedTemplateCommandOutput extends CreateGeneratedTem * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* - * @public + * * @example To create a generated template * ```javascript * // This example creates a generated template with a resources file. * const input = { - * "GeneratedTemplateName": "JazzyTemplate", - * "Resources": [ + * GeneratedTemplateName: "JazzyTemplate", + * Resources: [ * { - * "ResourceIdentifier": { - * "BucketName": "jazz-bucket" + * ResourceIdentifier: { + * BucketName: "jazz-bucket" * }, - * "ResourceType": "AWS::S3::Bucket" + * ResourceType: "AWS::S3::Bucket" * }, * { - * "ResourceIdentifier": { - * "DhcpOptionsId": "random-id123" + * ResourceIdentifier: { + * DhcpOptionsId: "random-id123" * }, - * "ResourceType": "AWS::EC2::DHCPOptions" + * ResourceType: "AWS::EC2::DHCPOptions" * } * ] * }; * const command = new CreateGeneratedTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GeneratedTemplateId": "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/88f09db1-d211-4cb7-964b-434e2b8469ca" + * GeneratedTemplateId: "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/88f09db1-d211-4cb7-964b-434e2b8469ca" * } * *\/ - * // example id: to-create-a-generated-template * ``` * + * @public */ export class CreateGeneratedTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-cloudformation/src/commands/CreateStackCommand.ts b/clients/client-cloudformation/src/commands/CreateStackCommand.ts index 6de79089eda79..fc76a1bda46ce 100644 --- a/clients/client-cloudformation/src/commands/CreateStackCommand.ts +++ b/clients/client-cloudformation/src/commands/CreateStackCommand.ts @@ -116,6 +116,7 @@ export interface CreateStackCommandOutput extends CreateStackOutput, __MetadataB * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class CreateStackCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/CreateStackInstancesCommand.ts b/clients/client-cloudformation/src/commands/CreateStackInstancesCommand.ts index 99ab8ee9e0fc6..3e944b51b8c33 100644 --- a/clients/client-cloudformation/src/commands/CreateStackInstancesCommand.ts +++ b/clients/client-cloudformation/src/commands/CreateStackInstancesCommand.ts @@ -116,6 +116,7 @@ export interface CreateStackInstancesCommandOutput extends CreateStackInstancesO * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class CreateStackInstancesCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/CreateStackRefactorCommand.ts b/clients/client-cloudformation/src/commands/CreateStackRefactorCommand.ts index 3bffb5339d07c..c53b9d295a470 100644 --- a/clients/client-cloudformation/src/commands/CreateStackRefactorCommand.ts +++ b/clients/client-cloudformation/src/commands/CreateStackRefactorCommand.ts @@ -75,6 +75,7 @@ export interface CreateStackRefactorCommandOutput extends CreateStackRefactorOut * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class CreateStackRefactorCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/CreateStackSetCommand.ts b/clients/client-cloudformation/src/commands/CreateStackSetCommand.ts index 67dbec8995f21..1660d183c2493 100644 --- a/clients/client-cloudformation/src/commands/CreateStackSetCommand.ts +++ b/clients/client-cloudformation/src/commands/CreateStackSetCommand.ts @@ -99,6 +99,7 @@ export interface CreateStackSetCommandOutput extends CreateStackSetOutput, __Met * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class CreateStackSetCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DeactivateOrganizationsAccessCommand.ts b/clients/client-cloudformation/src/commands/DeactivateOrganizationsAccessCommand.ts index b0735f1e2705a..f0c4a8bfbecba 100644 --- a/clients/client-cloudformation/src/commands/DeactivateOrganizationsAccessCommand.ts +++ b/clients/client-cloudformation/src/commands/DeactivateOrganizationsAccessCommand.ts @@ -64,6 +64,7 @@ export interface DeactivateOrganizationsAccessCommandOutput * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DeactivateOrganizationsAccessCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DeactivateTypeCommand.ts b/clients/client-cloudformation/src/commands/DeactivateTypeCommand.ts index 4c523966d757b..2c5441177bc55 100644 --- a/clients/client-cloudformation/src/commands/DeactivateTypeCommand.ts +++ b/clients/client-cloudformation/src/commands/DeactivateTypeCommand.ts @@ -66,6 +66,7 @@ export interface DeactivateTypeCommandOutput extends DeactivateTypeOutput, __Met * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DeactivateTypeCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DeleteChangeSetCommand.ts b/clients/client-cloudformation/src/commands/DeleteChangeSetCommand.ts index 02021c038037f..8cba99d38f838 100644 --- a/clients/client-cloudformation/src/commands/DeleteChangeSetCommand.ts +++ b/clients/client-cloudformation/src/commands/DeleteChangeSetCommand.ts @@ -64,6 +64,7 @@ export interface DeleteChangeSetCommandOutput extends DeleteChangeSetOutput, __M * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DeleteChangeSetCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DeleteGeneratedTemplateCommand.ts b/clients/client-cloudformation/src/commands/DeleteGeneratedTemplateCommand.ts index f1122586bfbde..27d79f2fac26a 100644 --- a/clients/client-cloudformation/src/commands/DeleteGeneratedTemplateCommand.ts +++ b/clients/client-cloudformation/src/commands/DeleteGeneratedTemplateCommand.ts @@ -61,18 +61,21 @@ export interface DeleteGeneratedTemplateCommandOutput extends __MetadataBearer { * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* - * @public + * * @example To delete a generated template * ```javascript * // This example deletes a generated template * const input = { - * "GeneratedTemplateName": "JazzyTemplate" + * GeneratedTemplateName: "JazzyTemplate" * }; * const command = new DeleteGeneratedTemplateCommand(input); - * await client.send(command); - * // example id: to-delete-a-generated-template + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteGeneratedTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-cloudformation/src/commands/DeleteStackCommand.ts b/clients/client-cloudformation/src/commands/DeleteStackCommand.ts index 1eabb017b2537..e92c9d9ecdbd8 100644 --- a/clients/client-cloudformation/src/commands/DeleteStackCommand.ts +++ b/clients/client-cloudformation/src/commands/DeleteStackCommand.ts @@ -66,6 +66,7 @@ export interface DeleteStackCommandOutput extends __MetadataBearer {} * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DeleteStackCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DeleteStackInstancesCommand.ts b/clients/client-cloudformation/src/commands/DeleteStackInstancesCommand.ts index a69893b16431e..ae4e95d69a575 100644 --- a/clients/client-cloudformation/src/commands/DeleteStackInstancesCommand.ts +++ b/clients/client-cloudformation/src/commands/DeleteStackInstancesCommand.ts @@ -101,6 +101,7 @@ export interface DeleteStackInstancesCommandOutput extends DeleteStackInstancesO * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DeleteStackInstancesCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DeleteStackSetCommand.ts b/clients/client-cloudformation/src/commands/DeleteStackSetCommand.ts index c6a4311f80f7e..c0bd2c206d3cd 100644 --- a/clients/client-cloudformation/src/commands/DeleteStackSetCommand.ts +++ b/clients/client-cloudformation/src/commands/DeleteStackSetCommand.ts @@ -63,6 +63,7 @@ export interface DeleteStackSetCommandOutput extends DeleteStackSetOutput, __Met * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DeleteStackSetCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DeregisterTypeCommand.ts b/clients/client-cloudformation/src/commands/DeregisterTypeCommand.ts index f79ef93e78295..9b5818b50c59c 100644 --- a/clients/client-cloudformation/src/commands/DeregisterTypeCommand.ts +++ b/clients/client-cloudformation/src/commands/DeregisterTypeCommand.ts @@ -72,6 +72,7 @@ export interface DeregisterTypeCommandOutput extends DeregisterTypeOutput, __Met * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DeregisterTypeCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeAccountLimitsCommand.ts b/clients/client-cloudformation/src/commands/DescribeAccountLimitsCommand.ts index 69339a6dbfbae..61cad2b971eee 100644 --- a/clients/client-cloudformation/src/commands/DescribeAccountLimitsCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeAccountLimitsCommand.ts @@ -62,6 +62,7 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeAccountLimitsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeChangeSetCommand.ts b/clients/client-cloudformation/src/commands/DescribeChangeSetCommand.ts index d4de02616e6da..3eaa23260935c 100644 --- a/clients/client-cloudformation/src/commands/DescribeChangeSetCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeChangeSetCommand.ts @@ -148,6 +148,7 @@ export interface DescribeChangeSetCommandOutput extends DescribeChangeSetOutput, * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeChangeSetCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeChangeSetHooksCommand.ts b/clients/client-cloudformation/src/commands/DescribeChangeSetHooksCommand.ts index 25e9ca33fdaef..a32d75c7fa883 100644 --- a/clients/client-cloudformation/src/commands/DescribeChangeSetHooksCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeChangeSetHooksCommand.ts @@ -85,6 +85,7 @@ export interface DescribeChangeSetHooksCommandOutput extends DescribeChangeSetHo * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeChangeSetHooksCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeGeneratedTemplateCommand.ts b/clients/client-cloudformation/src/commands/DescribeGeneratedTemplateCommand.ts index ce23988c443d1..0ce92f466dfd3 100644 --- a/clients/client-cloudformation/src/commands/DescribeGeneratedTemplateCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeGeneratedTemplateCommand.ts @@ -101,39 +101,8 @@ export interface DescribeGeneratedTemplateCommandOutput extends DescribeGenerate * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* - * @public - * @example To describe a generated template - * ```javascript - * // This example describes a generated template - * const input = { - * "GeneratedTemplateName": "JazzyTemplate" - * }; - * const command = new DescribeGeneratedTemplateCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "CreationTime": "2023-12-28T17:55:20.086000+00:00", - * "GeneratedTemplateId": "arn:aws:cloudformation:us-east-1:*:generatedtemplate/*", - * "GeneratedTemplateName": "DeletedResourceTest", - * "LastUpdatedTime": "2023-12-28T17:57:16.610000+00:00", - * "Progress": { - * "ResourcesFailed": 0, - * "ResourcesPending": 0, - * "ResourcesProcessing": 0, - * "ResourcesSucceeded": 0 - * }, - * "Status": "COMPLETE", - * "StatusReason": "All resources complete", - * "TemplateConfiguration": { - * "DeletionPolicy": "RETAIN", - * "UpdateReplacePolicy": "RETAIN" - * }, - * "TotalWarnings": 0 - * } - * *\/ - * // example id: to-describe-a-generated-template - * ``` * + * @public */ export class DescribeGeneratedTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-cloudformation/src/commands/DescribeOrganizationsAccessCommand.ts b/clients/client-cloudformation/src/commands/DescribeOrganizationsAccessCommand.ts index 5d23be6854f70..772723a29f6b5 100644 --- a/clients/client-cloudformation/src/commands/DescribeOrganizationsAccessCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeOrganizationsAccessCommand.ts @@ -64,6 +64,7 @@ export interface DescribeOrganizationsAccessCommandOutput extends DescribeOrgani * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeOrganizationsAccessCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribePublisherCommand.ts b/clients/client-cloudformation/src/commands/DescribePublisherCommand.ts index ecab1e7427c65..9467e4f43f059 100644 --- a/clients/client-cloudformation/src/commands/DescribePublisherCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribePublisherCommand.ts @@ -79,6 +79,7 @@ export interface DescribePublisherCommandOutput extends DescribePublisherOutput, * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribePublisherCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeResourceScanCommand.ts b/clients/client-cloudformation/src/commands/DescribeResourceScanCommand.ts index f0696b9a02d74..3353a7faba583 100644 --- a/clients/client-cloudformation/src/commands/DescribeResourceScanCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeResourceScanCommand.ts @@ -68,104 +68,8 @@ export interface DescribeResourceScanCommandOutput extends DescribeResourceScanO * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* - * @public - * @example To describe a selected resource scan - * ```javascript - * // This example describes a selected resource scan - * const input = { - * "ResourceScanId": "arn:aws:cloudformation:us-east-1:123456789012:resourceScan/c19304f6-c4f1-4ff8-8e1f-35162e41d7e1" - * }; - * const command = new DescribeResourceScanCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "EndTime": "2024-01-02T23:25:48.075000+00:00", - * "PercentageCompleted": 100, - * "ResourceScanId": "arn:aws:cloudformation:us-east-1:123456789012:resourceScan/c19304f6-c4f1-4ff8-8e1f-35162e41d7e1", - * "ResourceTypes": [ - * "AWS::Amplify::App", - * "AWS::ApiGateway::Deployment", - * "AWS::ApiGateway::DocumentationPart", - * "AWS::ApiGateway::Model", - * "AWS::ApiGateway::Resource", - * "AWS::ApiGateway::RestApi", - * "AWS::ApiGateway::Stage", - * "AWS::AppConfig::Extension", - * "AWS::ApplicationAutoScaling::ScalableTarget", - * "AWS::Athena::WorkGroup", - * "AWS::Cassandra::Keyspace", - * "AWS::CloudFront::CachePolicy", - * "AWS::CloudFront::Function", - * "AWS::CloudFront::OriginRequestPolicy", - * "AWS::CloudTrail::Trail", - * "AWS::CloudWatch::Alarm", - * "AWS::CodeDeploy::Application", - * "AWS::CodeDeploy::DeploymentConfig", - * "AWS::Cognito::UserPool", - * "AWS::Cognito::UserPoolGroup", - * "AWS::Cognito::UserPoolUser", - * "AWS::DynamoDB::Table", - * "AWS::EC2::DHCPOptions", - * "AWS::EC2::EIP", - * "AWS::EC2::InternetGateway", - * "AWS::EC2::LaunchTemplate", - * "AWS::EC2::NetworkAcl", - * "AWS::EC2::Route", - * "AWS::EC2::RouteTable", - * "AWS::EC2::SubnetNetworkAclAssociation", - * "AWS::EC2::SubnetRouteTableAssociation", - * "AWS::EC2::VPC", - * "AWS::EC2::VPCDHCPOptionsAssociation", - * "AWS::EC2::VPCGatewayAttachment", - * "AWS::ECR::Repository", - * "AWS::ECS::Cluster", - * "AWS::ECS::ClusterCapacityProviderAssociations", - * "AWS::ECS::Service", - * "AWS::ECS::TaskDefinition", - * "AWS::ElastiCache::SubnetGroup", - * "AWS::ElastiCache::User", - * "AWS::Events::EventBus", - * "AWS::Events::Rule", - * "AWS::GameLift::Location", - * "AWS::GuardDuty::Detector", - * "AWS::IAM::InstanceProfile", - * "AWS::IAM::ManagedPolicy", - * "AWS::IAM::Role", - * "AWS::IAM::User", - * "AWS::IoT::DomainConfiguration", - * "AWS::KMS::Alias", - * "AWS::KMS::Key", - * "AWS::Lambda::EventSourceMapping", - * "AWS::Lambda::Function", - * "AWS::Lambda::Permission", - * "AWS::Lambda::Version", - * "AWS::Logs::LogGroup", - * "AWS::Logs::LogStream", - * "AWS::MemoryDB::ACL", - * "AWS::MemoryDB::ParameterGroup", - * "AWS::MemoryDB::User", - * "AWS::RAM::Permission", - * "AWS::RDS::CustomDBEngineVersion", - * "AWS::Route53Resolver::ResolverRuleAssociation", - * "AWS::S3::AccessPoint", - * "AWS::S3::BucketPolicy", - * "AWS::S3::StorageLens", - * "AWS::SNS::Topic", - * "AWS::SQS::Queue", - * "AWS::SSM::Association", - * "AWS::SSM::Document", - * "AWS::StepFunctions::StateMachine", - * "AWS::XRay::Group", - * "AWS::XRay::SamplingRule" - * ], - * "ResourcesRead": 25107, - * "StartTime": "2024-01-02T22:15:18.382000+00:00", - * "Status": "COMPLETE" - * } - * *\/ - * // example id: to-describe-a-generated-template - * ``` * + * @public */ export class DescribeResourceScanCommand extends $Command .classBuilder< diff --git a/clients/client-cloudformation/src/commands/DescribeStackDriftDetectionStatusCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackDriftDetectionStatusCommand.ts index e685311b6cfc2..1f759dba0eb0e 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackDriftDetectionStatusCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackDriftDetectionStatusCommand.ts @@ -77,6 +77,7 @@ export interface DescribeStackDriftDetectionStatusCommandOutput * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeStackDriftDetectionStatusCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeStackEventsCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackEventsCommand.ts index 2695a5fda6094..26bac51e2c05e 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackEventsCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackEventsCommand.ts @@ -83,6 +83,7 @@ export interface DescribeStackEventsCommandOutput extends DescribeStackEventsOut * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeStackEventsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeStackInstanceCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackInstanceCommand.ts index c087a0f4a1fe6..0ae1411b75b10 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackInstanceCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackInstanceCommand.ts @@ -88,6 +88,7 @@ export interface DescribeStackInstanceCommandOutput extends DescribeStackInstanc * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeStackInstanceCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeStackRefactorCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackRefactorCommand.ts index 3a40e3aef8f58..803d226a59f8a 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackRefactorCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackRefactorCommand.ts @@ -66,6 +66,7 @@ export interface DescribeStackRefactorCommandOutput extends DescribeStackRefacto * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeStackRefactorCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeStackResourceCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackResourceCommand.ts index e377606cd55d0..cbdd4c70b9189 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackResourceCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackResourceCommand.ts @@ -77,6 +77,7 @@ export interface DescribeStackResourceCommandOutput extends DescribeStackResourc * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeStackResourceCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeStackResourceDriftsCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackResourceDriftsCommand.ts index 48a1b7f253b37..ebaabdf73a4b6 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackResourceDriftsCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackResourceDriftsCommand.ts @@ -100,6 +100,7 @@ export interface DescribeStackResourceDriftsCommandOutput extends DescribeStackR * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeStackResourceDriftsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeStackResourcesCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackResourcesCommand.ts index 83a277ea1f30d..6a66e7cb7ef9d 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackResourcesCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackResourcesCommand.ts @@ -94,6 +94,7 @@ export interface DescribeStackResourcesCommandOutput extends DescribeStackResour * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeStackResourcesCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeStackSetCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackSetCommand.ts index affe16fbf8772..82bc711a2a2cd 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackSetCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackSetCommand.ts @@ -109,6 +109,7 @@ export interface DescribeStackSetCommandOutput extends DescribeStackSetOutput, _ * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeStackSetCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeStackSetOperationCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackSetOperationCommand.ts index 259e180d45893..edffe93231afb 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackSetOperationCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackSetOperationCommand.ts @@ -108,6 +108,7 @@ export interface DescribeStackSetOperationCommandOutput extends DescribeStackSet * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeStackSetOperationCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeStacksCommand.ts b/clients/client-cloudformation/src/commands/DescribeStacksCommand.ts index cb2ce61762ff9..e19be8027919b 100644 --- a/clients/client-cloudformation/src/commands/DescribeStacksCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStacksCommand.ts @@ -125,6 +125,7 @@ export interface DescribeStacksCommandOutput extends DescribeStacksOutput, __Met * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeStacksCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeTypeCommand.ts b/clients/client-cloudformation/src/commands/DescribeTypeCommand.ts index 8931769d748d2..fc85b31c6309d 100644 --- a/clients/client-cloudformation/src/commands/DescribeTypeCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeTypeCommand.ts @@ -107,6 +107,7 @@ export interface DescribeTypeCommandOutput extends DescribeTypeOutput, __Metadat * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeTypeCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DescribeTypeRegistrationCommand.ts b/clients/client-cloudformation/src/commands/DescribeTypeRegistrationCommand.ts index cf97db01c683f..431fe928227eb 100644 --- a/clients/client-cloudformation/src/commands/DescribeTypeRegistrationCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeTypeRegistrationCommand.ts @@ -67,6 +67,7 @@ export interface DescribeTypeRegistrationCommandOutput extends DescribeTypeRegis * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DescribeTypeRegistrationCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DetectStackDriftCommand.ts b/clients/client-cloudformation/src/commands/DetectStackDriftCommand.ts index 40d5c51afd15d..6d03cf81ebc46 100644 --- a/clients/client-cloudformation/src/commands/DetectStackDriftCommand.ts +++ b/clients/client-cloudformation/src/commands/DetectStackDriftCommand.ts @@ -79,6 +79,7 @@ export interface DetectStackDriftCommandOutput extends DetectStackDriftOutput, _ * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DetectStackDriftCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DetectStackResourceDriftCommand.ts b/clients/client-cloudformation/src/commands/DetectStackResourceDriftCommand.ts index 1270265f0a12e..e0c0918434657 100644 --- a/clients/client-cloudformation/src/commands/DetectStackResourceDriftCommand.ts +++ b/clients/client-cloudformation/src/commands/DetectStackResourceDriftCommand.ts @@ -95,6 +95,7 @@ export interface DetectStackResourceDriftCommandOutput extends DetectStackResour * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DetectStackResourceDriftCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/DetectStackSetDriftCommand.ts b/clients/client-cloudformation/src/commands/DetectStackSetDriftCommand.ts index 231411244c203..c2c09a7b6f3d3 100644 --- a/clients/client-cloudformation/src/commands/DetectStackSetDriftCommand.ts +++ b/clients/client-cloudformation/src/commands/DetectStackSetDriftCommand.ts @@ -109,6 +109,7 @@ export interface DetectStackSetDriftCommandOutput extends DetectStackSetDriftOut * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class DetectStackSetDriftCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/EstimateTemplateCostCommand.ts b/clients/client-cloudformation/src/commands/EstimateTemplateCostCommand.ts index 2758b32ac107b..a9c4db0a100fd 100644 --- a/clients/client-cloudformation/src/commands/EstimateTemplateCostCommand.ts +++ b/clients/client-cloudformation/src/commands/EstimateTemplateCostCommand.ts @@ -66,6 +66,7 @@ export interface EstimateTemplateCostCommandOutput extends EstimateTemplateCostO * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class EstimateTemplateCostCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ExecuteChangeSetCommand.ts b/clients/client-cloudformation/src/commands/ExecuteChangeSetCommand.ts index fffdc177406de..a9a1ff9539489 100644 --- a/clients/client-cloudformation/src/commands/ExecuteChangeSetCommand.ts +++ b/clients/client-cloudformation/src/commands/ExecuteChangeSetCommand.ts @@ -79,6 +79,7 @@ export interface ExecuteChangeSetCommandOutput extends ExecuteChangeSetOutput, _ * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ExecuteChangeSetCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ExecuteStackRefactorCommand.ts b/clients/client-cloudformation/src/commands/ExecuteStackRefactorCommand.ts index b8f04815c3ce0..669eebe911de5 100644 --- a/clients/client-cloudformation/src/commands/ExecuteStackRefactorCommand.ts +++ b/clients/client-cloudformation/src/commands/ExecuteStackRefactorCommand.ts @@ -53,6 +53,7 @@ export interface ExecuteStackRefactorCommandOutput extends __MetadataBearer {} * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ExecuteStackRefactorCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/GetGeneratedTemplateCommand.ts b/clients/client-cloudformation/src/commands/GetGeneratedTemplateCommand.ts index 7e55d44e10045..6689d6840b79d 100644 --- a/clients/client-cloudformation/src/commands/GetGeneratedTemplateCommand.ts +++ b/clients/client-cloudformation/src/commands/GetGeneratedTemplateCommand.ts @@ -63,42 +63,77 @@ export interface GetGeneratedTemplateCommandOutput extends GetGeneratedTemplateO * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* - * @public + * * @example To get a generated template in JSON format * ```javascript * // This example gets a generated template ins JSON format. * const input = { - * "GeneratedTemplateName": "JazzyTemplate" + * GeneratedTemplateName: "JazzyTemplate" * }; * const command = new GetGeneratedTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Status": "COMPLETE", - * "TemplateBody": "{\"Metadata\":{\"TemplateId\":\"arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/*\"},\"Parameters\":{\"Stage\":{\"Default\":\"beta\",\"Type\":\"String\"}},\"Resources\":{\"TestRole\":{\"Properties\":{\"AssumeRolePolicyDocument\":{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Principal\":{\"AWS\":{\"Fn::Sub\":[\"arn:${AWS::Partition}:iam::${AccountId}:root\",{\"AccountId\":{\"Fn::AccountIdFromAlias\":\"test-account-alias\"}}]}},\"Action\":\"sts:AssumeRole\"}]}},\"Type\":\"AWS::IAM::Role\",\"DeletionPolicy\":\"Delete\"},\"DocumentationPartl7ob4vsd76vs\":{\"UpdateReplacePolicy\":\"Retain\",\"Type\":\"AWS::ApiGateway::DocumentationPart\",\"DeletionPolicy\":\"Retain\",\"Properties\":{\"RestApiId\":\"l7ob4vsd76\",\"Properties\":\"{\\n \\\"description\\\" : \\\"ListGeneratedTemplates 200 response\\\"\\n}\",\"Location\":{\"Path\":\"/ListGeneratedTemplates\",\"Type\":\"RESPONSE\",\"Method\":\"POST\",\"StatusCode\":\"200\"}}}}}" + * Status: "COMPLETE", + * TemplateBody: `{"Metadata":{"TemplateId":"arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/*"},"Parameters":{"Stage":{"Default":"beta","Type":"String"}},"Resources":{"TestRole":{"Properties":{"AssumeRolePolicyDocument":{"Version":"2012-10-17","Statement":[{"Effect":"Allow","Principal":{"AWS":{"Fn::Sub":["arn:${AWS::Partition}:iam::${AccountId}:root",{"AccountId":{"Fn::AccountIdFromAlias":"test-account-alias"}}]}},"Action":"sts:AssumeRole"}]}},"Type":"AWS::IAM::Role","DeletionPolicy":"Delete"},"DocumentationPartl7ob4vsd76vs":{"UpdateReplacePolicy":"Retain","Type":"AWS::ApiGateway::DocumentationPart","DeletionPolicy":"Retain","Properties":{"RestApiId":"l7ob4vsd76","Properties":"{\n \"description\" : \"ListGeneratedTemplates 200 response\"\n}","Location":{"Path":"/ListGeneratedTemplates","Type":"RESPONSE","Method":"POST","StatusCode":"200"}}}}}` * } * *\/ - * // example id: to-get-a-generated-template-json * ``` * * @example To get a generated template in YAML format * ```javascript * // This example gets a generated template in YAML format. * const input = { - * "Format": "YAML", - * "GeneratedTemplateName": "JazzyTemplate" + * Format: "YAML", + * GeneratedTemplateName: "JazzyTemplate" * }; * const command = new GetGeneratedTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Status": "COMPLETE", - * "TemplateBody": "---\nMetadata:\n TemplateId: \"arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/*\"\nParameters:\n Stage:\n Default: \"beta\"\n Type: \"String\"\nResources:\n TestRole:\n Properties:\n AssumeRolePolicyDocument:\n Version: \"2012-10-17\"\n Statement:\n - Effect: \"Allow\"\n Principal:\n AWS:\n Fn::Sub:\n - \"arn:${AWS::Partition}:iam::${AccountId}:root\"\n - AccountId:\n Fn::AccountIdFromAlias: \"test-account-alias\"\n Action: \"sts:AssumeRole\"\n Type: \"AWS::IAM::Role\"\n DeletionPolicy: \"Delete\"\n DocumentationPartl7ob4vsd76vsnAlFMLXKVm:\n UpdateReplacePolicy: \"Retain\"\n Type: \"AWS::ApiGateway::DocumentationPart\"\n DeletionPolicy: \"Retain\"\n Properties:\n RestApiId: \"l7ob4vsd76\"\n Properties: \"{\\n \\\"description\\\" : \\\"ListGeneratedTemplates 200 response\\\"\\n\\\n }\"\n Location:\n Path: \"/ListGeneratedTemplates\"\n Type: \"RESPONSE\"\n Method: \"POST\"\n StatusCode: \"200\"\n" + * Status: "COMPLETE", + * TemplateBody: `--- + * Metadata: + * TemplateId: "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/*" + * Parameters: + * Stage: + * Default: "beta" + * Type: "String" + * Resources: + * TestRole: + * Properties: + * AssumeRolePolicyDocument: + * Version: "2012-10-17" + * Statement: + * - Effect: "Allow" + * Principal: + * AWS: + * Fn::Sub: + * - "arn:${AWS::Partition}:iam::${AccountId}:root" + * - AccountId: + * Fn::AccountIdFromAlias: "test-account-alias" + * Action: "sts:AssumeRole" + * Type: "AWS::IAM::Role" + * DeletionPolicy: "Delete" + * DocumentationPartl7ob4vsd76vsnAlFMLXKVm: + * UpdateReplacePolicy: "Retain" + * Type: "AWS::ApiGateway::DocumentationPart" + * DeletionPolicy: "Retain" + * Properties: + * RestApiId: "l7ob4vsd76" + * Properties: "{\n \"description\" : \"ListGeneratedTemplates 200 response\"\n\ + * }" + * Location: + * Path: "/ListGeneratedTemplates" + * Type: "RESPONSE" + * Method: "POST" + * StatusCode: "200" + * ` * } * *\/ - * // example id: to-get-a-generated-template-yaml * ``` * + * @public */ export class GetGeneratedTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-cloudformation/src/commands/GetStackPolicyCommand.ts b/clients/client-cloudformation/src/commands/GetStackPolicyCommand.ts index 629e085193a0f..58411282ba934 100644 --- a/clients/client-cloudformation/src/commands/GetStackPolicyCommand.ts +++ b/clients/client-cloudformation/src/commands/GetStackPolicyCommand.ts @@ -56,6 +56,7 @@ export interface GetStackPolicyCommandOutput extends GetStackPolicyOutput, __Met * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class GetStackPolicyCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/GetTemplateCommand.ts b/clients/client-cloudformation/src/commands/GetTemplateCommand.ts index a7fa67e17b24e..cb428ba1a00c3 100644 --- a/clients/client-cloudformation/src/commands/GetTemplateCommand.ts +++ b/clients/client-cloudformation/src/commands/GetTemplateCommand.ts @@ -70,6 +70,7 @@ export interface GetTemplateCommandOutput extends GetTemplateOutput, __MetadataB * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class GetTemplateCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/GetTemplateSummaryCommand.ts b/clients/client-cloudformation/src/commands/GetTemplateSummaryCommand.ts index 7dd0a18d461ec..00cbf41e638ff 100644 --- a/clients/client-cloudformation/src/commands/GetTemplateSummaryCommand.ts +++ b/clients/client-cloudformation/src/commands/GetTemplateSummaryCommand.ts @@ -114,6 +114,7 @@ export interface GetTemplateSummaryCommandOutput extends GetTemplateSummaryOutpu * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class GetTemplateSummaryCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ImportStacksToStackSetCommand.ts b/clients/client-cloudformation/src/commands/ImportStacksToStackSetCommand.ts index 7f2446b4cc17d..055a8975b07a4 100644 --- a/clients/client-cloudformation/src/commands/ImportStacksToStackSetCommand.ts +++ b/clients/client-cloudformation/src/commands/ImportStacksToStackSetCommand.ts @@ -102,6 +102,7 @@ export interface ImportStacksToStackSetCommandOutput extends ImportStacksToStack * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ImportStacksToStackSetCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListChangeSetsCommand.ts b/clients/client-cloudformation/src/commands/ListChangeSetsCommand.ts index fffdb85ad9a80..435e3b64eaa80 100644 --- a/clients/client-cloudformation/src/commands/ListChangeSetsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListChangeSetsCommand.ts @@ -75,6 +75,7 @@ export interface ListChangeSetsCommandOutput extends ListChangeSetsOutput, __Met * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListChangeSetsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListExportsCommand.ts b/clients/client-cloudformation/src/commands/ListExportsCommand.ts index 1660f283c7d92..997921e9dcde6 100644 --- a/clients/client-cloudformation/src/commands/ListExportsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListExportsCommand.ts @@ -66,6 +66,7 @@ export interface ListExportsCommandOutput extends ListExportsOutput, __MetadataB * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListExportsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListGeneratedTemplatesCommand.ts b/clients/client-cloudformation/src/commands/ListGeneratedTemplatesCommand.ts index 3215454acf45b..f7d3bd1469e57 100644 --- a/clients/client-cloudformation/src/commands/ListGeneratedTemplatesCommand.ts +++ b/clients/client-cloudformation/src/commands/ListGeneratedTemplatesCommand.ts @@ -67,49 +67,8 @@ export interface ListGeneratedTemplatesCommandOutput extends ListGeneratedTempla * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* - * @public - * @example To list generated templates - * ```javascript - * // This example lists the generated templates. - * const input = {}; - * const command = new ListGeneratedTemplatesCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Summaries": [ - * { - * "CreationTime": "2023-12-28T17:55:20.086000+00:00", - * "GeneratedTemplateId": "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/abcdefghi-1234-abcd-abcd-abcdefgh1234567", - * "GeneratedTemplateName": "Template3", - * "LastUpdatedTime": "2023-12-28T17:57:16.610000+00:00", - * "NumberOfResources": 85, - * "Status": "COMPLETE", - * "StatusReason": "All resources complete" - * }, - * { - * "CreationTime": "2023-12-21T01:51:07.764000+00:00", - * "GeneratedTemplateId": "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/bbcdefghi-1234-abcd-abcd-abcdefgh1234567", - * "GeneratedTemplateName": "Template2", - * "LastUpdatedTime": "2023-12-21T01:51:22.664000+00:00", - * "NumberOfResources": 12, - * "Status": "COMPLETE", - * "StatusReason": "All resources complete" - * }, - * { - * "CreationTime": "2023-11-20T23:53:28.722000+00:00", - * "GeneratedTemplateId": "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/cbcdefghi-1234-abcd-abcd-abcdefgh1234567", - * "GeneratedTemplateName": "Template1", - * "LastUpdatedTime": "2023-11-21T04:25:30.527000+00:00", - * "NumberOfResources": 19, - * "Status": "COMPLETE", - * "StatusReason": "All resources complete" - * } - * ] - * } - * *\/ - * // example id: to-list-generated-templates - * ``` * + * @public */ export class ListGeneratedTemplatesCommand extends $Command .classBuilder< diff --git a/clients/client-cloudformation/src/commands/ListHookResultsCommand.ts b/clients/client-cloudformation/src/commands/ListHookResultsCommand.ts index 772a670b811b0..9e17280f834ec 100644 --- a/clients/client-cloudformation/src/commands/ListHookResultsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListHookResultsCommand.ts @@ -73,6 +73,7 @@ export interface ListHookResultsCommandOutput extends ListHookResultsOutput, __M * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListHookResultsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListImportsCommand.ts b/clients/client-cloudformation/src/commands/ListImportsCommand.ts index 973873f7448e6..1a913122cad46 100644 --- a/clients/client-cloudformation/src/commands/ListImportsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListImportsCommand.ts @@ -62,6 +62,7 @@ export interface ListImportsCommandOutput extends ListImportsOutput, __MetadataB * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListImportsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListResourceScanRelatedResourcesCommand.ts b/clients/client-cloudformation/src/commands/ListResourceScanRelatedResourcesCommand.ts index 26d9c11676408..8b381749f1d24 100644 --- a/clients/client-cloudformation/src/commands/ListResourceScanRelatedResourcesCommand.ts +++ b/clients/client-cloudformation/src/commands/ListResourceScanRelatedResourcesCommand.ts @@ -86,68 +86,68 @@ export interface ListResourceScanRelatedResourcesCommandOutput * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* - * @public + * * @example To list resource scan related resources * ```javascript * // This example lists the resources related to the passed in resources * const input = { - * "ResourceScanId": "arn:aws:cloudformation:us-east-1:123456789012:resourceScan/c19304f6-c4f1-4ff8-8e1f-35162e41d7e1", - * "Resources": [ + * ResourceScanId: "arn:aws:cloudformation:us-east-1:123456789012:resourceScan/c19304f6-c4f1-4ff8-8e1f-35162e41d7e1", + * Resources: [ * { - * "ResourceIdentifier": { - * "BucketName": "jazz-bucket" + * ResourceIdentifier: { + * BucketName: "jazz-bucket" * }, - * "ResourceType": "AWS::S3::Bucket" + * ResourceType: "AWS::S3::Bucket" * }, * { - * "ResourceIdentifier": { - * "DhcpOptionsId": "random-id123" + * ResourceIdentifier: { + * DhcpOptionsId: "random-id123" * }, - * "ResourceType": "AWS::EC2::DHCPOptions" + * ResourceType: "AWS::EC2::DHCPOptions" * } * ] * }; * const command = new ListResourceScanRelatedResourcesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RelatedResources": [ + * RelatedResources: [ * { - * "ManagedByStack": false, - * "ResourceIdentifier": { - * "DhcpOptionsId": "dopt-98765edcba", - * "VpcId": "vpc-0123456abcdefg" + * ManagedByStack: false, + * ResourceIdentifier: { + * DhcpOptionsId: "dopt-98765edcba", + * VpcId: "vpc-0123456abcdefg" * }, - * "ResourceType": "AWS::EC2::VPCDHCPOptionsAssociation" + * ResourceType: "AWS::EC2::VPCDHCPOptionsAssociation" * }, * { - * "ManagedByStack": false, - * "ResourceIdentifier": { - * "VpcId": "vpc-0123456abcdefgabc" + * ManagedByStack: false, + * ResourceIdentifier: { + * VpcId: "vpc-0123456abcdefgabc" * }, - * "ResourceType": "AWS::EC2::VPC" + * ResourceType: "AWS::EC2::VPC" * }, * { - * "ManagedByStack": false, - * "ResourceIdentifier": { - * "DhcpOptionsId": "dopt-98765edcba", - * "VpcId": "vpc-123456abcdef" + * ManagedByStack: false, + * ResourceIdentifier: { + * DhcpOptionsId: "dopt-98765edcba", + * VpcId: "vpc-123456abcdef" * }, - * "ResourceType": "AWS::EC2::VPCDHCPOptionsAssociation" + * ResourceType: "AWS::EC2::VPCDHCPOptionsAssociation" * }, * { - * "ManagedByStack": false, - * "ResourceIdentifier": { - * "VpcId": "vpc-12345678abcd" + * ManagedByStack: false, + * ResourceIdentifier: { + * VpcId: "vpc-12345678abcd" * }, - * "ResourceType": "AWS::EC2::VPC" + * ResourceType: "AWS::EC2::VPC" * } * ] * } * *\/ - * // example id: to-list-resource-scan-related-resources * ``` * + * @public */ export class ListResourceScanRelatedResourcesCommand extends $Command .classBuilder< diff --git a/clients/client-cloudformation/src/commands/ListResourceScanResourcesCommand.ts b/clients/client-cloudformation/src/commands/ListResourceScanResourcesCommand.ts index f2144392cccfc..af946fe5363b7 100644 --- a/clients/client-cloudformation/src/commands/ListResourceScanResourcesCommand.ts +++ b/clients/client-cloudformation/src/commands/ListResourceScanResourcesCommand.ts @@ -79,73 +79,72 @@ export interface ListResourceScanResourcesCommandOutput extends ListResourceScan * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* - * @public + * * @example To list the resources in your resource scan * ```javascript * // This example lists the resources in your resource scan * const input = { - * "ResourceScanId": "arn:aws:cloudformation:us-east-1:123456789012:resourceScan/c19304f6-c4f1-4ff8-8e1f-35162e41d7e1" + * ResourceScanId: "arn:aws:cloudformation:us-east-1:123456789012:resourceScan/c19304f6-c4f1-4ff8-8e1f-35162e41d7e1" * }; * const command = new ListResourceScanResourcesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NextToken": "AQICAHjOiFofVZCZ0aEN1VnF1m9jq/xxpTY7MyPexz72BHuAkgETVS8c+PVCFpE6uGVJDxCFAAACbjCCAmoGCSqGSIb3DQEHBqCCAlswggJXAgEAMIICUAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAwJ9QJAYeDzUoBeimECARCAggIh8brcL6H6uMvcZafRTB79hUkdJlOoFavrhYA2U7qdlPUwyvaVqN2DvFMxsl2XC1SaWmr5esMKxg1fLjbOEF32lVQn0Jp8QuoFUvREnqEsR32ZQmiI/Oc9HmwIr/BS3rzljki2Kr8Y0nriS7aFDLUCYsdsRdQ9iL5/iCc6oW7IisCzq1VKcHijlXvuiEipZAinsxEbmYBjmWgT7UYZdrrb6Hq3COEgPzS490ucndtwPjyvuCIMiAfTLMuBgjkzEfp4U97aLwPWaiKw94dMXj/3K67uuH9BjWZO+j6d3nnyZ14FOgI7SQvvVBnxARbTmINttHWjXPrIuE9YuuSWgn6GmuzEEDqkuglOS/OeTHYSPvLPRrFieUiawblljLVoVY9/HDjL/EErSTWiCnytGXIRoMI9Ozp2Yjfm3MBwSDXvMIrscw6QAa3bUA6uJSV2skCBnDoqV8EXd8umh788OgEtDxQ7d/NlUYEhN6AJ0K9TVz/2rZgOlzLCmtvmbIy7loAZCmf/uPNkyu6WuoLWTzQz78SnA8jWPKnxrzhNyPuaIgUH23U3mExhfMRDczitpOo5JM81oHVPECslGoqktLhP55BQqMbJy4w16SZJfr993TXhF5jOZenRN1zDsK3J5cLdJgPK1Ds1Z9DnRKMfXOqoAyme2l94/h0kLIxgAtxOeJFP/g/9hUtt1qGkZeV3Xqw1nkFQnafGIg4fJoWg74Sr7yo=", - * "Resources": [ + * NextToken: "AQICAHjOiFofVZCZ0aEN1VnF1m9jq/xxpTY7MyPexz72BHuAkgETVS8c+PVCFpE6uGVJDxCFAAACbjCCAmoGCSqGSIb3DQEHBqCCAlswggJXAgEAMIICUAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAwJ9QJAYeDzUoBeimECARCAggIh8brcL6H6uMvcZafRTB79hUkdJlOoFavrhYA2U7qdlPUwyvaVqN2DvFMxsl2XC1SaWmr5esMKxg1fLjbOEF32lVQn0Jp8QuoFUvREnqEsR32ZQmiI/Oc9HmwIr/BS3rzljki2Kr8Y0nriS7aFDLUCYsdsRdQ9iL5/iCc6oW7IisCzq1VKcHijlXvuiEipZAinsxEbmYBjmWgT7UYZdrrb6Hq3COEgPzS490ucndtwPjyvuCIMiAfTLMuBgjkzEfp4U97aLwPWaiKw94dMXj/3K67uuH9BjWZO+j6d3nnyZ14FOgI7SQvvVBnxARbTmINttHWjXPrIuE9YuuSWgn6GmuzEEDqkuglOS/OeTHYSPvLPRrFieUiawblljLVoVY9/HDjL/EErSTWiCnytGXIRoMI9Ozp2Yjfm3MBwSDXvMIrscw6QAa3bUA6uJSV2skCBnDoqV8EXd8umh788OgEtDxQ7d/NlUYEhN6AJ0K9TVz/2rZgOlzLCmtvmbIy7loAZCmf/uPNkyu6WuoLWTzQz78SnA8jWPKnxrzhNyPuaIgUH23U3mExhfMRDczitpOo5JM81oHVPECslGoqktLhP55BQqMbJy4w16SZJfr993TXhF5jOZenRN1zDsK3J5cLdJgPK1Ds1Z9DnRKMfXOqoAyme2l94/h0kLIxgAtxOeJFP/g/9hUtt1qGkZeV3Xqw1nkFQnafGIg4fJoWg74Sr7yo=", + * Resources: [ * { - * "ManagedByStack": false, - * "ResourceIdentifier": { - * "Arn": "arn:aws:amplify:us-east-1:123456789012:apps/12345678" + * ManagedByStack: false, + * ResourceIdentifier: { + * Arn: "arn:aws:amplify:us-east-1:123456789012:apps/12345678" * }, - * "ResourceType": "AWS::Amplify::App" + * ResourceType: "AWS::Amplify::App" * }, * { - * "ManagedByStack": true, - * "ResourceIdentifier": { - * "DeploymentId": "1234567", - * "RestApiId": "abcdefgh" + * ManagedByStack: true, + * ResourceIdentifier: { + * DeploymentId: "1234567", + * RestApiId: "abcdefgh" * }, - * "ResourceType": "AWS::ApiGateway::Deployment" + * ResourceType: "AWS::ApiGateway::Deployment" * } * ] * } * *\/ - * // example id: to-list-resource-scan-resources * ``` * * @example To list the resources in your resource scan for specific resource type * ```javascript * // This example lists the resources in your resource scan filtering only the resources that start with the passed in prefix * const input = { - * "ResourceScanId": "arn:aws:cloudformation:us-east-1:123456789012:resourceScan/c19304f6-c4f1-4ff8-8e1f-35162e41d7e1", - * "ResourceTypePrefix": "AWS::S3" + * ResourceScanId: "arn:aws:cloudformation:us-east-1:123456789012:resourceScan/c19304f6-c4f1-4ff8-8e1f-35162e41d7e1", + * ResourceTypePrefix: "AWS::S3" * }; * const command = new ListResourceScanResourcesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NextToken": "AQICAHjOiFofVZCZ0aEN1VnF1m9jq/xxpTY7MyPexz72BHuAkgETVS8c+PVCFpE6uGVJDxCFAAACbjCCAmoGCSqGSIb3DQEHBqCCAlswggJXAgEAMIICUAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAwJ9QJAYeDzUoBeimECARCAggIh8brcL6H6uMvcZafRTB79hUkdJlOoFavrhYA2U7qdlPUwyvaVqN2DvFMxsl2XC1SaWmr5esMKxg1fLjbOEF32lVQn0Jp8QuoFUvREnqEsR32ZQmiI/Oc9HmwIr/BS3rzljki2Kr8Y0nriS7aFDLUCYsdsRdQ9iL5/iCc6oW7IisCzq1VKcHijlXvuiEipZAinsxEbmYBjmWgT7UYZdrrb6Hq3COEgPzS490ucndtwPjyvuCIMiAfTLMuBgjkzEfp4U97aLwPWaiKw94dMXj/3K67uuH9BjWZO+j6d3nnyZ14FOgI7SQvvVBnxARbTmINttHWjXPrIuE9YuuSWgn6GmuzEEDqkuglOS/OeTHYSPvLPRrFieUiawblljLVoVY9/HDjL/EErSTWiCnytGXIRoMI9Ozp2Yjfm3MBwSDXvMIrscw6QAa3bUA6uJSV2skCBnDoqV8EXd8umh788OgEtDxQ7d/NlUYEhN6AJ0K9TVz/2rZgOlzLCmtvmbIy7loAZCmf/uPNkyu6WuoLWTzQz78SnA8jWPKnxrzhNyPuaIgUH23U3mExhfMRDczitpOo5JM81oHVPECslGoqktLhP55BQqMbJy4w16SZJfr993TXhF5jOZenRN1zDsK3J5cLdJgPK1Ds1Z9DnRKMfXOqoAyme2l94/h0kLIxgAtxOeJFP/g/9hUtt1qGkZeV3Xqw1nkFQnafGIg4fJoWg74Sr7yo=", - * "Resources": [ + * NextToken: "AQICAHjOiFofVZCZ0aEN1VnF1m9jq/xxpTY7MyPexz72BHuAkgETVS8c+PVCFpE6uGVJDxCFAAACbjCCAmoGCSqGSIb3DQEHBqCCAlswggJXAgEAMIICUAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAwJ9QJAYeDzUoBeimECARCAggIh8brcL6H6uMvcZafRTB79hUkdJlOoFavrhYA2U7qdlPUwyvaVqN2DvFMxsl2XC1SaWmr5esMKxg1fLjbOEF32lVQn0Jp8QuoFUvREnqEsR32ZQmiI/Oc9HmwIr/BS3rzljki2Kr8Y0nriS7aFDLUCYsdsRdQ9iL5/iCc6oW7IisCzq1VKcHijlXvuiEipZAinsxEbmYBjmWgT7UYZdrrb6Hq3COEgPzS490ucndtwPjyvuCIMiAfTLMuBgjkzEfp4U97aLwPWaiKw94dMXj/3K67uuH9BjWZO+j6d3nnyZ14FOgI7SQvvVBnxARbTmINttHWjXPrIuE9YuuSWgn6GmuzEEDqkuglOS/OeTHYSPvLPRrFieUiawblljLVoVY9/HDjL/EErSTWiCnytGXIRoMI9Ozp2Yjfm3MBwSDXvMIrscw6QAa3bUA6uJSV2skCBnDoqV8EXd8umh788OgEtDxQ7d/NlUYEhN6AJ0K9TVz/2rZgOlzLCmtvmbIy7loAZCmf/uPNkyu6WuoLWTzQz78SnA8jWPKnxrzhNyPuaIgUH23U3mExhfMRDczitpOo5JM81oHVPECslGoqktLhP55BQqMbJy4w16SZJfr993TXhF5jOZenRN1zDsK3J5cLdJgPK1Ds1Z9DnRKMfXOqoAyme2l94/h0kLIxgAtxOeJFP/g/9hUtt1qGkZeV3Xqw1nkFQnafGIg4fJoWg74Sr7yo=", + * Resources: [ * { - * "ManagedByStack": true, - * "ResourceIdentifier": { - * "Name": "test-access-point" + * ManagedByStack: true, + * ResourceIdentifier: { + * Name: "test-access-point" * }, - * "ResourceType": "AWS::S3::AccessPoint" + * ResourceType: "AWS::S3::AccessPoint" * }, * { - * "ManagedByStack": false, - * "ResourceIdentifier": { - * "Bucket": "a-random-bucket" + * ManagedByStack: false, + * ResourceIdentifier: { + * Bucket: "a-random-bucket" * }, - * "ResourceType": "AWS::S3::BucketPolicy" + * ResourceType: "AWS::S3::BucketPolicy" * } * ] * } * *\/ - * // example id: to-list-resource-scan-resources-with-resource-type-prefix * ``` * + * @public */ export class ListResourceScanResourcesCommand extends $Command .classBuilder< diff --git a/clients/client-cloudformation/src/commands/ListResourceScansCommand.ts b/clients/client-cloudformation/src/commands/ListResourceScansCommand.ts index 142e9ef72351d..8f1def1c03d99 100644 --- a/clients/client-cloudformation/src/commands/ListResourceScansCommand.ts +++ b/clients/client-cloudformation/src/commands/ListResourceScansCommand.ts @@ -67,35 +67,8 @@ export interface ListResourceScansCommandOutput extends ListResourceScansOutput, * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* - * @public - * @example Listing Resource Scans - * ```javascript - * // This example shows how to list resource scans - * const input = {}; - * const command = new ListResourceScansCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ResourceScanSummaries": [ - * { - * "PercentageCompleted": 37.4, - * "ResourceScanId": "arn:aws:cloudformation:us-east-1:123456789012:resourceScan/51448627-817f-40f0-b37c-f6e0f974340c", - * "StartTime": "2024-01-24T00:33:29.673000+00:00", - * "Status": "IN_PROGRESS" - * }, - * { - * "EndTime": "2024-01-02T23:25:48.075000+00:00", - * "PercentageCompleted": 100, - * "ResourceScanId": "arn:aws:cloudformation:us-east-1:123456789012:resourceScan/c19304f6-c4f1-4ff8-8e1f-35162e41d7e1", - * "StartTime": "2024-01-02T22:15:18.382000+00:00", - * "Status": "COMPLETE" - * } - * ] - * } - * *\/ - * // example id: to-list-resource-scans - * ``` * + * @public */ export class ListResourceScansCommand extends $Command .classBuilder< diff --git a/clients/client-cloudformation/src/commands/ListStackInstanceResourceDriftsCommand.ts b/clients/client-cloudformation/src/commands/ListStackInstanceResourceDriftsCommand.ts index 9cc3c8803a367..0f94e97153bf3 100644 --- a/clients/client-cloudformation/src/commands/ListStackInstanceResourceDriftsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackInstanceResourceDriftsCommand.ts @@ -108,6 +108,7 @@ export interface ListStackInstanceResourceDriftsCommandOutput * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListStackInstanceResourceDriftsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListStackInstancesCommand.ts b/clients/client-cloudformation/src/commands/ListStackInstancesCommand.ts index 683b28e73ae39..aa4868a0a25f1 100644 --- a/clients/client-cloudformation/src/commands/ListStackInstancesCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackInstancesCommand.ts @@ -88,6 +88,7 @@ export interface ListStackInstancesCommandOutput extends ListStackInstancesOutpu * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListStackInstancesCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListStackRefactorActionsCommand.ts b/clients/client-cloudformation/src/commands/ListStackRefactorActionsCommand.ts index ee58b36c52c35..672210a92bc56 100644 --- a/clients/client-cloudformation/src/commands/ListStackRefactorActionsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackRefactorActionsCommand.ts @@ -87,6 +87,7 @@ export interface ListStackRefactorActionsCommandOutput extends ListStackRefactor * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListStackRefactorActionsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListStackRefactorsCommand.ts b/clients/client-cloudformation/src/commands/ListStackRefactorsCommand.ts index 75129404199ea..34ba4b8051425 100644 --- a/clients/client-cloudformation/src/commands/ListStackRefactorsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackRefactorsCommand.ts @@ -69,6 +69,7 @@ export interface ListStackRefactorsCommandOutput extends ListStackRefactorsOutpu * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListStackRefactorsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListStackResourcesCommand.ts b/clients/client-cloudformation/src/commands/ListStackResourcesCommand.ts index 5e990bc028b64..07cdd9d6baaa2 100644 --- a/clients/client-cloudformation/src/commands/ListStackResourcesCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackResourcesCommand.ts @@ -76,6 +76,7 @@ export interface ListStackResourcesCommandOutput extends ListStackResourcesOutpu * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListStackResourcesCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListStackSetAutoDeploymentTargetsCommand.ts b/clients/client-cloudformation/src/commands/ListStackSetAutoDeploymentTargetsCommand.ts index 188f5ba7c28ac..cb6656d68b8b5 100644 --- a/clients/client-cloudformation/src/commands/ListStackSetAutoDeploymentTargetsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackSetAutoDeploymentTargetsCommand.ts @@ -74,6 +74,7 @@ export interface ListStackSetAutoDeploymentTargetsCommandOutput * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListStackSetAutoDeploymentTargetsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListStackSetOperationResultsCommand.ts b/clients/client-cloudformation/src/commands/ListStackSetOperationResultsCommand.ts index b4a42930ae1ae..5fd1be2e37bb5 100644 --- a/clients/client-cloudformation/src/commands/ListStackSetOperationResultsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackSetOperationResultsCommand.ts @@ -86,6 +86,7 @@ export interface ListStackSetOperationResultsCommandOutput * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListStackSetOperationResultsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListStackSetOperationsCommand.ts b/clients/client-cloudformation/src/commands/ListStackSetOperationsCommand.ts index 97010ef604ced..94585f91229cb 100644 --- a/clients/client-cloudformation/src/commands/ListStackSetOperationsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackSetOperationsCommand.ts @@ -85,6 +85,7 @@ export interface ListStackSetOperationsCommandOutput extends ListStackSetOperati * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListStackSetOperationsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListStackSetsCommand.ts b/clients/client-cloudformation/src/commands/ListStackSetsCommand.ts index c44983eb9046c..cc8abf5039b4b 100644 --- a/clients/client-cloudformation/src/commands/ListStackSetsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackSetsCommand.ts @@ -95,6 +95,7 @@ export interface ListStackSetsCommandOutput extends ListStackSetsOutput, __Metad * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListStackSetsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListStacksCommand.ts b/clients/client-cloudformation/src/commands/ListStacksCommand.ts index ff3915ad8a624..560272d5560bf 100644 --- a/clients/client-cloudformation/src/commands/ListStacksCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStacksCommand.ts @@ -79,6 +79,7 @@ export interface ListStacksCommandOutput extends ListStacksOutput, __MetadataBea * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListStacksCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListTypeRegistrationsCommand.ts b/clients/client-cloudformation/src/commands/ListTypeRegistrationsCommand.ts index 7ecfe47cde8be..964271390d29b 100644 --- a/clients/client-cloudformation/src/commands/ListTypeRegistrationsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListTypeRegistrationsCommand.ts @@ -66,6 +66,7 @@ export interface ListTypeRegistrationsCommandOutput extends ListTypeRegistration * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListTypeRegistrationsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListTypeVersionsCommand.ts b/clients/client-cloudformation/src/commands/ListTypeVersionsCommand.ts index 749b5d14dab21..33a72456eb857 100644 --- a/clients/client-cloudformation/src/commands/ListTypeVersionsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListTypeVersionsCommand.ts @@ -76,6 +76,7 @@ export interface ListTypeVersionsCommandOutput extends ListTypeVersionsOutput, _ * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListTypeVersionsCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ListTypesCommand.ts b/clients/client-cloudformation/src/commands/ListTypesCommand.ts index 4ae3b1227a7cc..7789a1e3d9db2 100644 --- a/clients/client-cloudformation/src/commands/ListTypesCommand.ts +++ b/clients/client-cloudformation/src/commands/ListTypesCommand.ts @@ -86,6 +86,7 @@ export interface ListTypesCommandOutput extends ListTypesOutput, __MetadataBeare * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ListTypesCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/PublishTypeCommand.ts b/clients/client-cloudformation/src/commands/PublishTypeCommand.ts index 0198df2b94ce8..a8a2e8cfe7b8e 100644 --- a/clients/client-cloudformation/src/commands/PublishTypeCommand.ts +++ b/clients/client-cloudformation/src/commands/PublishTypeCommand.ts @@ -70,6 +70,7 @@ export interface PublishTypeCommandOutput extends PublishTypeOutput, __MetadataB * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class PublishTypeCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/RecordHandlerProgressCommand.ts b/clients/client-cloudformation/src/commands/RecordHandlerProgressCommand.ts index 0250f514673cd..9506bc7055484 100644 --- a/clients/client-cloudformation/src/commands/RecordHandlerProgressCommand.ts +++ b/clients/client-cloudformation/src/commands/RecordHandlerProgressCommand.ts @@ -69,6 +69,7 @@ export interface RecordHandlerProgressCommandOutput extends RecordHandlerProgres * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class RecordHandlerProgressCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/RegisterPublisherCommand.ts b/clients/client-cloudformation/src/commands/RegisterPublisherCommand.ts index 1b57108e66deb..367e18cfe8e7d 100644 --- a/clients/client-cloudformation/src/commands/RegisterPublisherCommand.ts +++ b/clients/client-cloudformation/src/commands/RegisterPublisherCommand.ts @@ -65,6 +65,7 @@ export interface RegisterPublisherCommandOutput extends RegisterPublisherOutput, * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class RegisterPublisherCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/RegisterTypeCommand.ts b/clients/client-cloudformation/src/commands/RegisterTypeCommand.ts index da8a83e7f5f5b..80a6ca12f5e78 100644 --- a/clients/client-cloudformation/src/commands/RegisterTypeCommand.ts +++ b/clients/client-cloudformation/src/commands/RegisterTypeCommand.ts @@ -91,6 +91,7 @@ export interface RegisterTypeCommandOutput extends RegisterTypeOutput, __Metadat * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class RegisterTypeCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/RollbackStackCommand.ts b/clients/client-cloudformation/src/commands/RollbackStackCommand.ts index 4c53e0fedb0bc..4c3cb03bf6323 100644 --- a/clients/client-cloudformation/src/commands/RollbackStackCommand.ts +++ b/clients/client-cloudformation/src/commands/RollbackStackCommand.ts @@ -95,6 +95,7 @@ export interface RollbackStackCommandOutput extends RollbackStackOutput, __Metad * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class RollbackStackCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/SetStackPolicyCommand.ts b/clients/client-cloudformation/src/commands/SetStackPolicyCommand.ts index 0497e90ab18b1..fc7d60efed320 100644 --- a/clients/client-cloudformation/src/commands/SetStackPolicyCommand.ts +++ b/clients/client-cloudformation/src/commands/SetStackPolicyCommand.ts @@ -55,6 +55,7 @@ export interface SetStackPolicyCommandOutput extends __MetadataBearer {} * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class SetStackPolicyCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/SetTypeConfigurationCommand.ts b/clients/client-cloudformation/src/commands/SetTypeConfigurationCommand.ts index 28e3aa5450b34..97742f7b6392f 100644 --- a/clients/client-cloudformation/src/commands/SetTypeConfigurationCommand.ts +++ b/clients/client-cloudformation/src/commands/SetTypeConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface SetTypeConfigurationCommandOutput extends SetTypeConfigurationO * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class SetTypeConfigurationCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/SetTypeDefaultVersionCommand.ts b/clients/client-cloudformation/src/commands/SetTypeDefaultVersionCommand.ts index 352c5f93f6a45..d2a5ee22a0387 100644 --- a/clients/client-cloudformation/src/commands/SetTypeDefaultVersionCommand.ts +++ b/clients/client-cloudformation/src/commands/SetTypeDefaultVersionCommand.ts @@ -63,6 +63,7 @@ export interface SetTypeDefaultVersionCommandOutput extends SetTypeDefaultVersio * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class SetTypeDefaultVersionCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/SignalResourceCommand.ts b/clients/client-cloudformation/src/commands/SignalResourceCommand.ts index 2ea27cb84fb53..e44553968134c 100644 --- a/clients/client-cloudformation/src/commands/SignalResourceCommand.ts +++ b/clients/client-cloudformation/src/commands/SignalResourceCommand.ts @@ -61,6 +61,7 @@ export interface SignalResourceCommandOutput extends __MetadataBearer {} * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class SignalResourceCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/StartResourceScanCommand.ts b/clients/client-cloudformation/src/commands/StartResourceScanCommand.ts index 32170dddaaac4..ee9bc7d790df8 100644 --- a/clients/client-cloudformation/src/commands/StartResourceScanCommand.ts +++ b/clients/client-cloudformation/src/commands/StartResourceScanCommand.ts @@ -74,21 +74,21 @@ export interface StartResourceScanCommandOutput extends StartResourceScanOutput, * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* - * @public + * * @example To start a resource scan * ```javascript * // This example shows how to start a new resource scan - * const input = {}; + * const input = { /* empty *\/ }; * const command = new StartResourceScanCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ResourceScanId": "arn:aws:cloudformation:us-east-1:123456789012:resourceScan/88f09db1-d211-4cb7-964b-434e2b8469ca" + * ResourceScanId: "arn:aws:cloudformation:us-east-1:123456789012:resourceScan/88f09db1-d211-4cb7-964b-434e2b8469ca" * } * *\/ - * // example id: to-start-a-generated-template * ``` * + * @public */ export class StartResourceScanCommand extends $Command .classBuilder< diff --git a/clients/client-cloudformation/src/commands/StopStackSetOperationCommand.ts b/clients/client-cloudformation/src/commands/StopStackSetOperationCommand.ts index 19de8ff1af213..e6a7c4179b57b 100644 --- a/clients/client-cloudformation/src/commands/StopStackSetOperationCommand.ts +++ b/clients/client-cloudformation/src/commands/StopStackSetOperationCommand.ts @@ -66,6 +66,7 @@ export interface StopStackSetOperationCommandOutput extends StopStackSetOperatio * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class StopStackSetOperationCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/TestTypeCommand.ts b/clients/client-cloudformation/src/commands/TestTypeCommand.ts index 9b2192480a50c..90873dbb5b086 100644 --- a/clients/client-cloudformation/src/commands/TestTypeCommand.ts +++ b/clients/client-cloudformation/src/commands/TestTypeCommand.ts @@ -89,6 +89,7 @@ export interface TestTypeCommandOutput extends TestTypeOutput, __MetadataBearer * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class TestTypeCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/UpdateGeneratedTemplateCommand.ts b/clients/client-cloudformation/src/commands/UpdateGeneratedTemplateCommand.ts index 3c101f13a4328..45845b90f6e13 100644 --- a/clients/client-cloudformation/src/commands/UpdateGeneratedTemplateCommand.ts +++ b/clients/client-cloudformation/src/commands/UpdateGeneratedTemplateCommand.ts @@ -87,74 +87,72 @@ export interface UpdateGeneratedTemplateCommandOutput extends UpdateGeneratedTem * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* - * @public - * @example To update a generated template's name + * + * @example To add resources to a generated template * ```javascript - * // This example updates a generated template with a new name. + * // This example adds resources to a generated template * const input = { - * "GeneratedTemplateName": "JazzyTemplate", - * "NewGeneratedTemplateName": "JazzierTemplate" + * AddResources: [ + * { + * ResourceIdentifier: { + * BucketName: "jazz-bucket" + * }, + * ResourceType: "AWS::S3::Bucket" + * }, + * { + * ResourceIdentifier: { + * DhcpOptionsId: "random-id123" + * }, + * ResourceType: "AWS::EC2::DHCPOptions" + * } + * ], + * GeneratedTemplateName: "JazzyTemplate" * }; * const command = new UpdateGeneratedTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GeneratedTemplateId": "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/88f09db1-d211-4cb7-964b-434e2b8469ca" + * GeneratedTemplateId: "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/88f09db1-d211-4cb7-964b-434e2b8469ca" * } * *\/ - * // example id: to-update-a-generated-template-new-name * ``` * - * @example To remove resources from a generated template + * @example To update a generated template's name * ```javascript - * // This example removes resources from a generated template + * // This example updates a generated template with a new name. * const input = { - * "GeneratedTemplateName": "JazzyTemplate", - * "RemoveResources": [ - * "LogicalResourceId1", - * "LogicalResourceId2" - * ] + * GeneratedTemplateName: "JazzyTemplate", + * NewGeneratedTemplateName: "JazzierTemplate" * }; * const command = new UpdateGeneratedTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GeneratedTemplateId": "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/88f09db1-d211-4cb7-964b-434e2b8469ca" + * GeneratedTemplateId: "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/88f09db1-d211-4cb7-964b-434e2b8469ca" * } * *\/ - * // example id: to-update-a-generated-template-remove-resources * ``` * - * @example To add resources to a generated template + * @example To remove resources from a generated template * ```javascript - * // This example adds resources to a generated template + * // This example removes resources from a generated template * const input = { - * "AddResources": [ - * { - * "ResourceIdentifier": { - * "BucketName": "jazz-bucket" - * }, - * "ResourceType": "AWS::S3::Bucket" - * }, - * { - * "ResourceIdentifier": { - * "DhcpOptionsId": "random-id123" - * }, - * "ResourceType": "AWS::EC2::DHCPOptions" - * } - * ], - * "GeneratedTemplateName": "JazzyTemplate" + * GeneratedTemplateName: "JazzyTemplate", + * RemoveResources: [ + * "LogicalResourceId1", + * "LogicalResourceId2" + * ] * }; * const command = new UpdateGeneratedTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GeneratedTemplateId": "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/88f09db1-d211-4cb7-964b-434e2b8469ca" + * GeneratedTemplateId: "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/88f09db1-d211-4cb7-964b-434e2b8469ca" * } * *\/ - * // example id: to-update-a-generated-template-add-resources * ``` * + * @public */ export class UpdateGeneratedTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-cloudformation/src/commands/UpdateStackCommand.ts b/clients/client-cloudformation/src/commands/UpdateStackCommand.ts index 00ddd8e7cf6a4..73841d3a1578d 100644 --- a/clients/client-cloudformation/src/commands/UpdateStackCommand.ts +++ b/clients/client-cloudformation/src/commands/UpdateStackCommand.ts @@ -110,6 +110,7 @@ export interface UpdateStackCommandOutput extends UpdateStackOutput, __MetadataB * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class UpdateStackCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/UpdateStackInstancesCommand.ts b/clients/client-cloudformation/src/commands/UpdateStackInstancesCommand.ts index 97cbd3c2ab664..7b01e30b4f409 100644 --- a/clients/client-cloudformation/src/commands/UpdateStackInstancesCommand.ts +++ b/clients/client-cloudformation/src/commands/UpdateStackInstancesCommand.ts @@ -124,6 +124,7 @@ export interface UpdateStackInstancesCommandOutput extends UpdateStackInstancesO * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class UpdateStackInstancesCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/UpdateStackSetCommand.ts b/clients/client-cloudformation/src/commands/UpdateStackSetCommand.ts index 29cef2ddf17bf..f66f4df60a5bf 100644 --- a/clients/client-cloudformation/src/commands/UpdateStackSetCommand.ts +++ b/clients/client-cloudformation/src/commands/UpdateStackSetCommand.ts @@ -139,6 +139,7 @@ export interface UpdateStackSetCommandOutput extends UpdateStackSetOutput, __Met * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class UpdateStackSetCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/UpdateTerminationProtectionCommand.ts b/clients/client-cloudformation/src/commands/UpdateTerminationProtectionCommand.ts index 8bd7c7f3a54f4..3c7c4ec4dbd20 100644 --- a/clients/client-cloudformation/src/commands/UpdateTerminationProtectionCommand.ts +++ b/clients/client-cloudformation/src/commands/UpdateTerminationProtectionCommand.ts @@ -62,6 +62,7 @@ export interface UpdateTerminationProtectionCommandOutput extends UpdateTerminat * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class UpdateTerminationProtectionCommand extends $Command diff --git a/clients/client-cloudformation/src/commands/ValidateTemplateCommand.ts b/clients/client-cloudformation/src/commands/ValidateTemplateCommand.ts index d310ffb858cca..9e36485b563de 100644 --- a/clients/client-cloudformation/src/commands/ValidateTemplateCommand.ts +++ b/clients/client-cloudformation/src/commands/ValidateTemplateCommand.ts @@ -73,6 +73,7 @@ export interface ValidateTemplateCommandOutput extends ValidateTemplateOutput, _ * @throws {@link CloudFormationServiceException} *

Base exception class for all service exceptions from CloudFormation service.

* + * * @public */ export class ValidateTemplateCommand extends $Command diff --git a/clients/client-cloudfront-keyvaluestore/src/commands/DeleteKeyCommand.ts b/clients/client-cloudfront-keyvaluestore/src/commands/DeleteKeyCommand.ts index 966aca1c820e5..05fc639f1e940 100644 --- a/clients/client-cloudfront-keyvaluestore/src/commands/DeleteKeyCommand.ts +++ b/clients/client-cloudfront-keyvaluestore/src/commands/DeleteKeyCommand.ts @@ -81,6 +81,26 @@ export interface DeleteKeyCommandOutput extends DeleteKeyResponse, __MetadataBea * @throws {@link CloudFrontKeyValueStoreServiceException} *

Base exception class for all service exceptions from CloudFrontKeyValueStore service.

* + * + * @example Delete 'key1' from the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58' + * ```javascript + * // + * const input = { + * IfMatch: "KV0AB12C3DEF456", + * Key: "key1", + * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58" + * }; + * const command = new DeleteKeyCommand(input); + * const response = await client.send(command); + * /* response is + * { + * ETag: "KV7XY89Z0ABC012", + * ItemCount: 3, + * TotalSizeInBytes: 5 + * } + * *\/ + * ``` + * * @public */ export class DeleteKeyCommand extends $Command diff --git a/clients/client-cloudfront-keyvaluestore/src/commands/DescribeKeyValueStoreCommand.ts b/clients/client-cloudfront-keyvaluestore/src/commands/DescribeKeyValueStoreCommand.ts index 9a147fe5f7cf7..cc379abb21870 100644 --- a/clients/client-cloudfront-keyvaluestore/src/commands/DescribeKeyValueStoreCommand.ts +++ b/clients/client-cloudfront-keyvaluestore/src/commands/DescribeKeyValueStoreCommand.ts @@ -78,6 +78,50 @@ export interface DescribeKeyValueStoreCommandOutput extends DescribeKeyValueStor * @throws {@link CloudFrontKeyValueStoreServiceException} *

Base exception class for all service exceptions from CloudFrontKeyValueStore service.

* + * + * @example Describe the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58' + * ```javascript + * // + * const input = { + * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58" + * }; + * const command = new DescribeKeyValueStoreCommand(input); + * const response = await client.send(command); + * /* response is + * { + * Created: "2023-11-01T22:18:46Z", + * ETag: "KV7XY89Z0ABC012", + * FailureReason: "Datasource size exceeds the allowed limit", + * ItemCount: 0, + * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58", + * LastModified: "2023-11-01T14:28:17Z", + * Status: "IMPORT_FAILURE", + * TotalSizeInBytes: 0 + * } + * *\/ + * ``` + * + * @example Describe the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-1234a9d35678' + * ```javascript + * // + * const input = { + * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-1234a9d35678" + * }; + * const command = new DescribeKeyValueStoreCommand(input); + * const response = await client.send(command); + * /* response is + * { + * Created: "2023-11-01T22:18:46Z", + * ETag: "KV7XY89Z0ABC012", + * ItemCount: 4, + * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-1234a9d35678", + * LastModified: "2023-11-01T14:28:17Z", + * Status: "READY", + * TotalSizeInBytes: 15 + * } + * *\/ + * ``` + * * @public */ export class DescribeKeyValueStoreCommand extends $Command diff --git a/clients/client-cloudfront-keyvaluestore/src/commands/GetKeyCommand.ts b/clients/client-cloudfront-keyvaluestore/src/commands/GetKeyCommand.ts index f9c5147a43b9d..6aa7b18a715c0 100644 --- a/clients/client-cloudfront-keyvaluestore/src/commands/GetKeyCommand.ts +++ b/clients/client-cloudfront-keyvaluestore/src/commands/GetKeyCommand.ts @@ -75,6 +75,26 @@ export interface GetKeyCommandOutput extends GetKeyResponse, __MetadataBearer {} * @throws {@link CloudFrontKeyValueStoreServiceException} *

Base exception class for all service exceptions from CloudFrontKeyValueStore service.

* + * + * @example Get 'key1' from the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58' + * ```javascript + * // + * const input = { + * Key: "key1", + * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58" + * }; + * const command = new GetKeyCommand(input); + * const response = await client.send(command); + * /* response is + * { + * ItemCount: 4, + * Key: "key1", + * TotalSizeInBytes: 15, + * Value: "value1" + * } + * *\/ + * ``` + * * @public */ export class GetKeyCommand extends $Command diff --git a/clients/client-cloudfront-keyvaluestore/src/commands/ListKeysCommand.ts b/clients/client-cloudfront-keyvaluestore/src/commands/ListKeysCommand.ts index 418e0a27f6e9e..287d3ab6386db 100644 --- a/clients/client-cloudfront-keyvaluestore/src/commands/ListKeysCommand.ts +++ b/clients/client-cloudfront-keyvaluestore/src/commands/ListKeysCommand.ts @@ -82,6 +82,68 @@ export interface ListKeysCommandOutput extends ListKeysResponse, __MetadataBeare * @throws {@link CloudFrontKeyValueStoreServiceException} *

Base exception class for all service exceptions from CloudFrontKeyValueStore service.

* + * + * @example List keys in the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58' + * ```javascript + * // + * const input = { + * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58", + * MaxResults: 3 + * }; + * const command = new ListKeysCommand(input); + * const response = await client.send(command); + * /* response is + * { + * Items: [ + * { + * Key: "key1", + * Value: "value1" + * }, + * { + * Key: "key2", + * Value: "value2" + * }, + * { + * Key: "key3", + * Value: "value3" + * } + * ], + * NextToken: "hVTTZndkpBZ0VRZ0R1RF" + * } + * *\/ + * ``` + * + * @example List the next page in the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58' + * ```javascript + * // + * const input = { + * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58", + * MaxResults: 3, + * NextToken: "hVTTZndkpBZ0VRZ0R1RF" + * }; + * const command = new ListKeysCommand(input); + * const response = await client.send(command); + * /* response is + * { + * Items: [ + * { + * Key: "key4", + * Value: "value4" + * }, + * { + * Key: "key5", + * Value: "value5" + * }, + * { + * Key: "key6", + * Value: "value6" + * } + * ], + * NextToken: "hQTlB5YmM5UFNoFQvMk" + * } + * *\/ + * ``` + * * @public */ export class ListKeysCommand extends $Command diff --git a/clients/client-cloudfront-keyvaluestore/src/commands/PutKeyCommand.ts b/clients/client-cloudfront-keyvaluestore/src/commands/PutKeyCommand.ts index bcc2b5395f704..714312b9c055c 100644 --- a/clients/client-cloudfront-keyvaluestore/src/commands/PutKeyCommand.ts +++ b/clients/client-cloudfront-keyvaluestore/src/commands/PutKeyCommand.ts @@ -82,6 +82,27 @@ export interface PutKeyCommandOutput extends PutKeyResponse, __MetadataBearer {} * @throws {@link CloudFrontKeyValueStoreServiceException} *

Base exception class for all service exceptions from CloudFrontKeyValueStore service.

* + * + * @example Put 'key1' with 'value1' into the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58' + * ```javascript + * // + * const input = { + * IfMatch: "KV0AB12C3DEF456", + * Key: "key1", + * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58", + * Value: "value1" + * }; + * const command = new PutKeyCommand(input); + * const response = await client.send(command); + * /* response is + * { + * ETag: "KV7XY89Z0ABC012", + * ItemCount: 4, + * TotalSizeInBytes: 15 + * } + * *\/ + * ``` + * * @public */ export class PutKeyCommand extends $Command diff --git a/clients/client-cloudfront-keyvaluestore/src/commands/UpdateKeysCommand.ts b/clients/client-cloudfront-keyvaluestore/src/commands/UpdateKeysCommand.ts index 9365abdc47dbe..ae37732782656 100644 --- a/clients/client-cloudfront-keyvaluestore/src/commands/UpdateKeysCommand.ts +++ b/clients/client-cloudfront-keyvaluestore/src/commands/UpdateKeysCommand.ts @@ -91,6 +91,97 @@ export interface UpdateKeysCommandOutput extends UpdateKeysResponse, __MetadataB * @throws {@link CloudFrontKeyValueStoreServiceException} *

Base exception class for all service exceptions from CloudFrontKeyValueStore service.

* + * + * @example Put 2 keys into the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58' + * ```javascript + * // + * const input = { + * IfMatch: "KV0AB12C3DEF456", + * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58", + * Puts: [ + * { + * Key: "key1", + * Value: "value1" + * }, + * { + * Key: "key2", + * Value: "value2" + * } + * ] + * }; + * const command = new UpdateKeysCommand(input); + * const response = await client.send(command); + * /* response is + * { + * ETag: "KV7XY89Z0ABC012", + * ItemCount: 4, + * TotalSizeInBytes: 15 + * } + * *\/ + * ``` + * + * @example Delete 2 keys from the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58' + * ```javascript + * // + * const input = { + * Deletes: [ + * { + * Key: "key1" + * }, + * { + * Key: "key2" + * } + * ], + * IfMatch: "KV0AB12C3DEF456", + * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58" + * }; + * const command = new UpdateKeysCommand(input); + * const response = await client.send(command); + * /* response is + * { + * ETag: "KV7XY89Z0ABC012", + * ItemCount: 4, + * TotalSizeInBytes: 15 + * } + * *\/ + * ``` + * + * @example Put 2 keys into and delete 1 key from the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58' + * ```javascript + * // + * const input = { + * Deletes: [ + * { + * Key: "key3" + * }, + * { + * Key: "key4" + * } + * ], + * IfMatch: "KV0AB12C3DEF456", + * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58", + * Puts: [ + * { + * Key: "key1", + * Value: "value1" + * }, + * { + * Key: "key2", + * Value: "value2" + * } + * ] + * }; + * const command = new UpdateKeysCommand(input); + * const response = await client.send(command); + * /* response is + * { + * ETag: "KV7XY89Z0ABC012", + * ItemCount: 4, + * TotalSizeInBytes: 15 + * } + * *\/ + * ``` + * * @public */ export class UpdateKeysCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/AssociateAliasCommand.ts b/clients/client-cloudfront/src/commands/AssociateAliasCommand.ts index 1dbae513c092a..ec0a98e2f33b9 100644 --- a/clients/client-cloudfront/src/commands/AssociateAliasCommand.ts +++ b/clients/client-cloudfront/src/commands/AssociateAliasCommand.ts @@ -79,6 +79,7 @@ export interface AssociateAliasCommandOutput extends __MetadataBearer {} * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class AssociateAliasCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CopyDistributionCommand.ts b/clients/client-cloudfront/src/commands/CopyDistributionCommand.ts index 03db3c936bd23..82a26e7718c96 100644 --- a/clients/client-cloudfront/src/commands/CopyDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/CopyDistributionCommand.ts @@ -664,6 +664,7 @@ export interface CopyDistributionCommandOutput extends CopyDistributionResult, _ * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CopyDistributionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateAnycastIpListCommand.ts b/clients/client-cloudfront/src/commands/CreateAnycastIpListCommand.ts index 83b7dd1be7281..c052e63063037 100644 --- a/clients/client-cloudfront/src/commands/CreateAnycastIpListCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateAnycastIpListCommand.ts @@ -94,6 +94,7 @@ export interface CreateAnycastIpListCommandOutput extends CreateAnycastIpListRes * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateAnycastIpListCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateCachePolicyCommand.ts b/clients/client-cloudfront/src/commands/CreateCachePolicyCommand.ts index 8e4b5240c9051..543af6c774610 100644 --- a/clients/client-cloudfront/src/commands/CreateCachePolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateCachePolicyCommand.ts @@ -191,6 +191,7 @@ export interface CreateCachePolicyCommandOutput extends CreateCachePolicyResult, * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateCachePolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateCloudFrontOriginAccessIdentityCommand.ts b/clients/client-cloudfront/src/commands/CreateCloudFrontOriginAccessIdentityCommand.ts index 8585c6b73b8fa..fe659d3f69bf1 100644 --- a/clients/client-cloudfront/src/commands/CreateCloudFrontOriginAccessIdentityCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateCloudFrontOriginAccessIdentityCommand.ts @@ -101,6 +101,7 @@ export interface CreateCloudFrontOriginAccessIdentityCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateCloudFrontOriginAccessIdentityCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateContinuousDeploymentPolicyCommand.ts b/clients/client-cloudfront/src/commands/CreateContinuousDeploymentPolicyCommand.ts index 5f2d7c68e3196..9e285f3f04194 100644 --- a/clients/client-cloudfront/src/commands/CreateContinuousDeploymentPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateContinuousDeploymentPolicyCommand.ts @@ -138,6 +138,7 @@ export interface CreateContinuousDeploymentPolicyCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateContinuousDeploymentPolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateDistributionCommand.ts b/clients/client-cloudfront/src/commands/CreateDistributionCommand.ts index 48fa0b2245e6a..02342c55e6619 100644 --- a/clients/client-cloudfront/src/commands/CreateDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateDistributionCommand.ts @@ -944,6 +944,7 @@ export interface CreateDistributionCommandOutput extends CreateDistributionResul * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateDistributionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateDistributionWithTagsCommand.ts b/clients/client-cloudfront/src/commands/CreateDistributionWithTagsCommand.ts index 350f2b063175b..7b5592dde1b70 100644 --- a/clients/client-cloudfront/src/commands/CreateDistributionWithTagsCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateDistributionWithTagsCommand.ts @@ -970,6 +970,7 @@ export interface CreateDistributionWithTagsCommandOutput extends CreateDistribut * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateDistributionWithTagsCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionConfigCommand.ts b/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionConfigCommand.ts index 342e1e0ac076e..e0062915ce7b5 100644 --- a/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionConfigCommand.ts @@ -150,6 +150,7 @@ export interface CreateFieldLevelEncryptionConfigCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateFieldLevelEncryptionConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionProfileCommand.ts b/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionProfileCommand.ts index e9d5a40a37389..ff5d0e6eed538 100644 --- a/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionProfileCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionProfileCommand.ts @@ -131,6 +131,7 @@ export interface CreateFieldLevelEncryptionProfileCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateFieldLevelEncryptionProfileCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateFunctionCommand.ts b/clients/client-cloudfront/src/commands/CreateFunctionCommand.ts index ce08a0ad2a0a5..a8bea0758de64 100644 --- a/clients/client-cloudfront/src/commands/CreateFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateFunctionCommand.ts @@ -125,59 +125,59 @@ export interface CreateFunctionCommandOutput extends CreateFunctionResult, __Met * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* - * @public + * * @example To create a function * ```javascript * // Use the following command to create a function. * const input = { - * "FunctionCode": "function-code.js", - * "FunctionConfig": { - * "Comment": "my-function-comment", - * "KeyValueStoreAssociations": { - * "Items": [ + * FunctionCode: "function-code.js", + * FunctionConfig: { + * Comment: "my-function-comment", + * KeyValueStoreAssociations: { + * Items: [ * { - * "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889" + * KeyValueStoreARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889" * } * ], - * "Quantity": 1 + * Quantity: 1 * }, - * "Runtime": "cloudfront-js-2.0" + * Runtime: "cloudfront-js-2.0" * }, - * "Name": "my-function-name" + * Name: "my-function-name" * }; * const command = new CreateFunctionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "ETVPDKIKX0DER", - * "FunctionSummary": { - * "FunctionConfig": { - * "Comment": "my-function-comment", - * "KeyValueStoreAssociations": { - * "Items": [ + * ETag: "ETVPDKIKX0DER", + * FunctionSummary: { + * FunctionConfig: { + * Comment: "my-function-comment", + * KeyValueStoreAssociations: { + * Items: [ * { - * "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889" + * KeyValueStoreARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889" * } * ], - * "Quantity": 1 + * Quantity: 1 * }, - * "Runtime": "cloudfront-js-2.0" + * Runtime: "cloudfront-js-2.0" * }, - * "FunctionMetadata": { - * "CreatedTime": "2023-11-07T19:53:50.334Z", - * "FunctionARN": "arn:aws:cloudfront::123456789012:function/my-function-name", - * "LastModifiedTime": "2023-11-07T19:53:50.334Z", - * "Stage": "DEVELOPMENT" + * FunctionMetadata: { + * CreatedTime: "2023-11-07T19:53:50.334Z", + * FunctionARN: "arn:aws:cloudfront::123456789012:function/my-function-name", + * LastModifiedTime: "2023-11-07T19:53:50.334Z", + * Stage: "DEVELOPMENT" * }, - * "Name": "my-function-name", - * "Status": "UNPUBLISHED" + * Name: "my-function-name", + * Status: "UNPUBLISHED" * }, - * "Location": "https://cloudfront.amazonaws.com/2020-05-31/function/arn:aws:cloudfront::123456789012:function/my-function-name" + * Location: "https://cloudfront.amazonaws.com/2020-05-31/function/arn:aws:cloudfront::123456789012:function/my-function-name" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateFunctionCommand extends $Command .classBuilder< diff --git a/clients/client-cloudfront/src/commands/CreateInvalidationCommand.ts b/clients/client-cloudfront/src/commands/CreateInvalidationCommand.ts index d8960b185916b..6d34e1dde5290 100644 --- a/clients/client-cloudfront/src/commands/CreateInvalidationCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateInvalidationCommand.ts @@ -102,6 +102,7 @@ export interface CreateInvalidationCommandOutput extends CreateInvalidationResul * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateInvalidationCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateKeyGroupCommand.ts b/clients/client-cloudfront/src/commands/CreateKeyGroupCommand.ts index 31341ce90189e..fc8bb2585db1b 100644 --- a/clients/client-cloudfront/src/commands/CreateKeyGroupCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateKeyGroupCommand.ts @@ -98,6 +98,7 @@ export interface CreateKeyGroupCommandOutput extends CreateKeyGroupResult, __Met * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateKeyGroupCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateKeyValueStoreCommand.ts b/clients/client-cloudfront/src/commands/CreateKeyValueStoreCommand.ts index 3e2c8af1aeed5..71f467a81b389 100644 --- a/clients/client-cloudfront/src/commands/CreateKeyValueStoreCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateKeyValueStoreCommand.ts @@ -88,37 +88,37 @@ export interface CreateKeyValueStoreCommandOutput extends CreateKeyValueStoreRes * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* - * @public + * * @example To create a KeyValueStore * ```javascript * // Use the following command to create a KeyValueStore. * const input = { - * "Comment": "my-key-valuestore-comment", - * "ImportSource": { - * "SourceARN": "arn:aws:s3:::amzn-s3-demo-bucket/validJSON.json", - * "SourceType": "S3" + * Comment: "my-key-valuestore-comment", + * ImportSource: { + * SourceARN: "arn:aws:s3:::amzn-s3-demo-bucket/validJSON.json", + * SourceType: "S3" * }, - * "Name": "my-keyvaluestore-name" + * Name: "my-keyvaluestore-name" * }; * const command = new CreateKeyValueStoreCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "ETVPDKIKX0DER", - * "KeyValueStore": { - * "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889", - * "Comment": "my-key-valuestore-comment", - * "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889", - * "LastModifiedTime": "2023-11-07T18:15:52.042Z", - * "Name": "my-keyvaluestore-name", - * "Status": "PROVISIONING" + * ETag: "ETVPDKIKX0DER", + * KeyValueStore: { + * ARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889", + * Comment: "my-key-valuestore-comment", + * Id: "54947df8-0e9e-4471-a2f9-9af509fb5889", + * LastModifiedTime: "2023-11-07T18:15:52.042Z", + * Name: "my-keyvaluestore-name", + * Status: "PROVISIONING" * }, - * "Location": "https://cloudfront.amazonaws.com/2020-05-31/key-value-store/arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889" + * Location: "https://cloudfront.amazonaws.com/2020-05-31/key-value-store/arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateKeyValueStoreCommand extends $Command .classBuilder< diff --git a/clients/client-cloudfront/src/commands/CreateMonitoringSubscriptionCommand.ts b/clients/client-cloudfront/src/commands/CreateMonitoringSubscriptionCommand.ts index 6b563ab2d81bc..83cfa751f1902 100644 --- a/clients/client-cloudfront/src/commands/CreateMonitoringSubscriptionCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateMonitoringSubscriptionCommand.ts @@ -84,6 +84,7 @@ export interface CreateMonitoringSubscriptionCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateMonitoringSubscriptionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateOriginAccessControlCommand.ts b/clients/client-cloudfront/src/commands/CreateOriginAccessControlCommand.ts index dea55f63f0ce6..98c1780ca3a42 100644 --- a/clients/client-cloudfront/src/commands/CreateOriginAccessControlCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateOriginAccessControlCommand.ts @@ -90,6 +90,7 @@ export interface CreateOriginAccessControlCommandOutput extends CreateOriginAcce * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateOriginAccessControlCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateOriginRequestPolicyCommand.ts b/clients/client-cloudfront/src/commands/CreateOriginRequestPolicyCommand.ts index 94c87425d5f4e..d0fea47901ca6 100644 --- a/clients/client-cloudfront/src/commands/CreateOriginRequestPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateOriginRequestPolicyCommand.ts @@ -182,6 +182,7 @@ export interface CreateOriginRequestPolicyCommandOutput extends CreateOriginRequ * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateOriginRequestPolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreatePublicKeyCommand.ts b/clients/client-cloudfront/src/commands/CreatePublicKeyCommand.ts index 1af7e24386b05..f70078dbeb2a5 100644 --- a/clients/client-cloudfront/src/commands/CreatePublicKeyCommand.ts +++ b/clients/client-cloudfront/src/commands/CreatePublicKeyCommand.ts @@ -81,6 +81,7 @@ export interface CreatePublicKeyCommandOutput extends CreatePublicKeyResult, __M * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreatePublicKeyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateRealtimeLogConfigCommand.ts b/clients/client-cloudfront/src/commands/CreateRealtimeLogConfigCommand.ts index a6f144d0eaf03..c28c0704fedcb 100644 --- a/clients/client-cloudfront/src/commands/CreateRealtimeLogConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateRealtimeLogConfigCommand.ts @@ -104,6 +104,7 @@ export interface CreateRealtimeLogConfigCommandOutput extends CreateRealtimeLogC * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateRealtimeLogConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateResponseHeadersPolicyCommand.ts b/clients/client-cloudfront/src/commands/CreateResponseHeadersPolicyCommand.ts index e9a5b2f67ed82..1d6a3af4439d2 100644 --- a/clients/client-cloudfront/src/commands/CreateResponseHeadersPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateResponseHeadersPolicyCommand.ts @@ -276,6 +276,7 @@ export interface CreateResponseHeadersPolicyCommandOutput extends CreateResponse * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateResponseHeadersPolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateStreamingDistributionCommand.ts b/clients/client-cloudfront/src/commands/CreateStreamingDistributionCommand.ts index b411c4c9d3113..8952bdff5c608 100644 --- a/clients/client-cloudfront/src/commands/CreateStreamingDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateStreamingDistributionCommand.ts @@ -178,6 +178,7 @@ export interface CreateStreamingDistributionCommandOutput extends CreateStreamin * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateStreamingDistributionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateStreamingDistributionWithTagsCommand.ts b/clients/client-cloudfront/src/commands/CreateStreamingDistributionWithTagsCommand.ts index 2aff95c934313..e76104104a64a 100644 --- a/clients/client-cloudfront/src/commands/CreateStreamingDistributionWithTagsCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateStreamingDistributionWithTagsCommand.ts @@ -199,6 +199,7 @@ export interface CreateStreamingDistributionWithTagsCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class CreateStreamingDistributionWithTagsCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/CreateVpcOriginCommand.ts b/clients/client-cloudfront/src/commands/CreateVpcOriginCommand.ts index abc674015266f..0bc4b29585a7c 100644 --- a/clients/client-cloudfront/src/commands/CreateVpcOriginCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateVpcOriginCommand.ts @@ -119,58 +119,58 @@ export interface CreateVpcOriginCommandOutput extends CreateVpcOriginResult, __M * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* - * @public + * * @example To create a VPC origin * ```javascript * // The following command creates a VPC origin: * const input = { - * "VpcOriginEndpointConfig": { - * "Arn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-alb-us-west-2/e6aa5c7d26415c6d", - * "HTTPPort": 80, - * "HTTPSPort": 443, - * "Name": "my-vpcorigin-name", - * "OriginProtocolPolicy": "match-viewer", - * "OriginSslProtocols": { - * "Items": [ + * VpcOriginEndpointConfig: { + * Arn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-alb-us-west-2/e6aa5c7d26415c6d", + * HTTPPort: 80, + * HTTPSPort: 443, + * Name: "my-vpcorigin-name", + * OriginProtocolPolicy: "match-viewer", + * OriginSslProtocols: { + * Items: [ * "TLSv1.1", * "TLSv1.2" * ], - * "Quantity": 2 + * Quantity: 2 * } * } * }; * const command = new CreateVpcOriginCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "E23ZP02F085DFQ", - * "Location": "https://cloudfront.amazonaws.com/2020-05-31/vpc-origin/vo_BQwjxxQxjCaBcQLzJUFkDM", - * "VpcOrigin": { - * "Arn": "arn:aws:cloudfront::123456789012:vpcorigin/vo_BQwjxxQxjCaBcQLzJUFkDM", - * "CreatedTime": "2024-10-15T17:19:42.318Z", - * "Id": "vo_BQwjxxQxjCaBcQLzJUFkDM", - * "LastModifiedTime": "2024-10-15T17:19:42.318Z", - * "Status": "Deploying", - * "VpcOriginEndpointConfig": { - * "Arn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-alb-us-west-2/e6aa5c7d26415c6d", - * "HTTPPort": 80, - * "HTTPSPort": 443, - * "Name": "my-vpcorigin-name", - * "OriginProtocolPolicy": "match-viewer", - * "OriginSslProtocols": { - * "Items": [ + * ETag: "E23ZP02F085DFQ", + * Location: "https://cloudfront.amazonaws.com/2020-05-31/vpc-origin/vo_BQwjxxQxjCaBcQLzJUFkDM", + * VpcOrigin: { + * Arn: "arn:aws:cloudfront::123456789012:vpcorigin/vo_BQwjxxQxjCaBcQLzJUFkDM", + * CreatedTime: "2024-10-15T17:19:42.318Z", + * Id: "vo_BQwjxxQxjCaBcQLzJUFkDM", + * LastModifiedTime: "2024-10-15T17:19:42.318Z", + * Status: "Deploying", + * VpcOriginEndpointConfig: { + * Arn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-alb-us-west-2/e6aa5c7d26415c6d", + * HTTPPort: 80, + * HTTPSPort: 443, + * Name: "my-vpcorigin-name", + * OriginProtocolPolicy: "match-viewer", + * OriginSslProtocols: { + * Items: [ * "TLSv1.1", * "TLSv1.2" * ], - * "Quantity": 2 + * Quantity: 2 * } * } * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateVpcOriginCommand extends $Command .classBuilder< diff --git a/clients/client-cloudfront/src/commands/DeleteAnycastIpListCommand.ts b/clients/client-cloudfront/src/commands/DeleteAnycastIpListCommand.ts index 00180a8c56e78..bad211e9d2a2f 100644 --- a/clients/client-cloudfront/src/commands/DeleteAnycastIpListCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteAnycastIpListCommand.ts @@ -79,6 +79,7 @@ export interface DeleteAnycastIpListCommandOutput extends __MetadataBearer {} * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteAnycastIpListCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteCachePolicyCommand.ts b/clients/client-cloudfront/src/commands/DeleteCachePolicyCommand.ts index 322795e79274c..6a64b28e9a928 100644 --- a/clients/client-cloudfront/src/commands/DeleteCachePolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteCachePolicyCommand.ts @@ -80,6 +80,7 @@ export interface DeleteCachePolicyCommandOutput extends __MetadataBearer {} * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteCachePolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteCloudFrontOriginAccessIdentityCommand.ts b/clients/client-cloudfront/src/commands/DeleteCloudFrontOriginAccessIdentityCommand.ts index cb170813c975b..e366a67009253 100644 --- a/clients/client-cloudfront/src/commands/DeleteCloudFrontOriginAccessIdentityCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteCloudFrontOriginAccessIdentityCommand.ts @@ -73,6 +73,7 @@ export interface DeleteCloudFrontOriginAccessIdentityCommandOutput extends __Met * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteCloudFrontOriginAccessIdentityCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteContinuousDeploymentPolicyCommand.ts b/clients/client-cloudfront/src/commands/DeleteContinuousDeploymentPolicyCommand.ts index 1e4896c776cd9..ed242c5b70ba2 100644 --- a/clients/client-cloudfront/src/commands/DeleteContinuousDeploymentPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteContinuousDeploymentPolicyCommand.ts @@ -80,6 +80,7 @@ export interface DeleteContinuousDeploymentPolicyCommandOutput extends __Metadat * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteContinuousDeploymentPolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteDistributionCommand.ts b/clients/client-cloudfront/src/commands/DeleteDistributionCommand.ts index 463952f604422..639ce0bf19248 100644 --- a/clients/client-cloudfront/src/commands/DeleteDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteDistributionCommand.ts @@ -71,6 +71,7 @@ export interface DeleteDistributionCommandOutput extends __MetadataBearer {} * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteDistributionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionConfigCommand.ts b/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionConfigCommand.ts index f2898ad90c274..5d1575a9ad526 100644 --- a/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionConfigCommand.ts @@ -73,6 +73,7 @@ export interface DeleteFieldLevelEncryptionConfigCommandOutput extends __Metadat * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteFieldLevelEncryptionConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionProfileCommand.ts b/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionProfileCommand.ts index 18a3af8aadbc6..f5490e4be820a 100644 --- a/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionProfileCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionProfileCommand.ts @@ -73,6 +73,7 @@ export interface DeleteFieldLevelEncryptionProfileCommandOutput extends __Metada * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteFieldLevelEncryptionProfileCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteFunctionCommand.ts b/clients/client-cloudfront/src/commands/DeleteFunctionCommand.ts index a1f0cdfaad8af..d927f860789ff 100644 --- a/clients/client-cloudfront/src/commands/DeleteFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteFunctionCommand.ts @@ -77,6 +77,7 @@ export interface DeleteFunctionCommandOutput extends __MetadataBearer {} * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteFunctionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteKeyGroupCommand.ts b/clients/client-cloudfront/src/commands/DeleteKeyGroupCommand.ts index 32308aa19a53a..0bf666211aabe 100644 --- a/clients/client-cloudfront/src/commands/DeleteKeyGroupCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteKeyGroupCommand.ts @@ -73,6 +73,7 @@ export interface DeleteKeyGroupCommandOutput extends __MetadataBearer {} * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteKeyGroupCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteKeyValueStoreCommand.ts b/clients/client-cloudfront/src/commands/DeleteKeyValueStoreCommand.ts index 0c06724a3e95b..b5ed5df9926a2 100644 --- a/clients/client-cloudfront/src/commands/DeleteKeyValueStoreCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteKeyValueStoreCommand.ts @@ -73,19 +73,22 @@ export interface DeleteKeyValueStoreCommandOutput extends __MetadataBearer {} * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* - * @public + * * @example To delete a KeyValueStore * ```javascript * // Use the following command to delete a KeyValueStore. * const input = { - * "IfMatch": "ETVPDKIKX0DER", - * "Name": "my-keyvaluestore-name" + * IfMatch: "ETVPDKIKX0DER", + * Name: "my-keyvaluestore-name" * }; * const command = new DeleteKeyValueStoreCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteKeyValueStoreCommand extends $Command .classBuilder< diff --git a/clients/client-cloudfront/src/commands/DeleteMonitoringSubscriptionCommand.ts b/clients/client-cloudfront/src/commands/DeleteMonitoringSubscriptionCommand.ts index 3cbea9b7cb3c8..aafca3b61ecf5 100644 --- a/clients/client-cloudfront/src/commands/DeleteMonitoringSubscriptionCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteMonitoringSubscriptionCommand.ts @@ -70,6 +70,7 @@ export interface DeleteMonitoringSubscriptionCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteMonitoringSubscriptionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteOriginAccessControlCommand.ts b/clients/client-cloudfront/src/commands/DeleteOriginAccessControlCommand.ts index 89aa7a46a28b9..9cc6ddb7a2a69 100644 --- a/clients/client-cloudfront/src/commands/DeleteOriginAccessControlCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteOriginAccessControlCommand.ts @@ -74,6 +74,7 @@ export interface DeleteOriginAccessControlCommandOutput extends __MetadataBearer * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteOriginAccessControlCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteOriginRequestPolicyCommand.ts b/clients/client-cloudfront/src/commands/DeleteOriginRequestPolicyCommand.ts index ca68049a0f6ff..83f865dd637d9 100644 --- a/clients/client-cloudfront/src/commands/DeleteOriginRequestPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteOriginRequestPolicyCommand.ts @@ -80,6 +80,7 @@ export interface DeleteOriginRequestPolicyCommandOutput extends __MetadataBearer * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteOriginRequestPolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeletePublicKeyCommand.ts b/clients/client-cloudfront/src/commands/DeletePublicKeyCommand.ts index 34a5ea0b6a6b7..baac8f385861d 100644 --- a/clients/client-cloudfront/src/commands/DeletePublicKeyCommand.ts +++ b/clients/client-cloudfront/src/commands/DeletePublicKeyCommand.ts @@ -70,6 +70,7 @@ export interface DeletePublicKeyCommandOutput extends __MetadataBearer {} * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeletePublicKeyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteRealtimeLogConfigCommand.ts b/clients/client-cloudfront/src/commands/DeleteRealtimeLogConfigCommand.ts index b10f5c5477c83..4241191ad6ef5 100644 --- a/clients/client-cloudfront/src/commands/DeleteRealtimeLogConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteRealtimeLogConfigCommand.ts @@ -73,6 +73,7 @@ export interface DeleteRealtimeLogConfigCommandOutput extends __MetadataBearer { * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteRealtimeLogConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteResponseHeadersPolicyCommand.ts b/clients/client-cloudfront/src/commands/DeleteResponseHeadersPolicyCommand.ts index 086ed5009bc81..ff527094e4e71 100644 --- a/clients/client-cloudfront/src/commands/DeleteResponseHeadersPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteResponseHeadersPolicyCommand.ts @@ -80,6 +80,7 @@ export interface DeleteResponseHeadersPolicyCommandOutput extends __MetadataBear * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteResponseHeadersPolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteStreamingDistributionCommand.ts b/clients/client-cloudfront/src/commands/DeleteStreamingDistributionCommand.ts index 2b19db6fc661c..4b6f9bb72e154 100644 --- a/clients/client-cloudfront/src/commands/DeleteStreamingDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteStreamingDistributionCommand.ts @@ -119,6 +119,7 @@ export interface DeleteStreamingDistributionCommandOutput extends __MetadataBear * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DeleteStreamingDistributionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DeleteVpcOriginCommand.ts b/clients/client-cloudfront/src/commands/DeleteVpcOriginCommand.ts index 14248835e7565..10390bbeb05f9 100644 --- a/clients/client-cloudfront/src/commands/DeleteVpcOriginCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteVpcOriginCommand.ts @@ -101,45 +101,45 @@ export interface DeleteVpcOriginCommandOutput extends DeleteVpcOriginResult, __M * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* - * @public + * * @example To delete a VPC origin * ```javascript * // The following command deletes a VPC origin: * const input = { - * "Id": "vo_BQwjxxQxjCaBcQLzJUFkDM", - * "IfMatch": "E1F83G8C2ARO7P" + * Id: "vo_BQwjxxQxjCaBcQLzJUFkDM", + * IfMatch: "E1F83G8C2ARO7P" * }; * const command = new DeleteVpcOriginCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "E1PA6795UKMFR9", - * "VpcOrigin": { - * "Arn": "arn:aws:cloudfront::123456789012:vpcorigin/vo_BQwjxxQxjCaBcQLzJUFkDM", - * "CreatedTime": "2024-10-15T17:19:42.318Z", - * "Id": "vo_BQwjxxQxjCaBcQLzJUFkDM", - * "LastModifiedTime": "2024-10-15T17:57:08.965Z", - * "Status": "Deploying", - * "VpcOriginEndpointConfig": { - * "Arn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-alb-us-west-2/e6aa5c7d26415c6d", - * "HTTPPort": 80, - * "HTTPSPort": 443, - * "Name": "my-vpcorigin-name", - * "OriginProtocolPolicy": "match-viewer", - * "OriginSslProtocols": { - * "Items": [ + * ETag: "E1PA6795UKMFR9", + * VpcOrigin: { + * Arn: "arn:aws:cloudfront::123456789012:vpcorigin/vo_BQwjxxQxjCaBcQLzJUFkDM", + * CreatedTime: "2024-10-15T17:19:42.318Z", + * Id: "vo_BQwjxxQxjCaBcQLzJUFkDM", + * LastModifiedTime: "2024-10-15T17:57:08.965Z", + * Status: "Deploying", + * VpcOriginEndpointConfig: { + * Arn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-alb-us-west-2/e6aa5c7d26415c6d", + * HTTPPort: 80, + * HTTPSPort: 443, + * Name: "my-vpcorigin-name", + * OriginProtocolPolicy: "match-viewer", + * OriginSslProtocols: { + * Items: [ * "TLSv1.1", * "TLSv1.2" * ], - * "Quantity": 2 + * Quantity: 2 * } * } * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class DeleteVpcOriginCommand extends $Command .classBuilder< diff --git a/clients/client-cloudfront/src/commands/DescribeFunctionCommand.ts b/clients/client-cloudfront/src/commands/DescribeFunctionCommand.ts index bd1a73366761c..2805e38b3c8dd 100644 --- a/clients/client-cloudfront/src/commands/DescribeFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/DescribeFunctionCommand.ts @@ -88,6 +88,7 @@ export interface DescribeFunctionCommandOutput extends DescribeFunctionResult, _ * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class DescribeFunctionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/DescribeKeyValueStoreCommand.ts b/clients/client-cloudfront/src/commands/DescribeKeyValueStoreCommand.ts index f306087acd47e..8c52aaa97d368 100644 --- a/clients/client-cloudfront/src/commands/DescribeKeyValueStoreCommand.ts +++ b/clients/client-cloudfront/src/commands/DescribeKeyValueStoreCommand.ts @@ -75,31 +75,31 @@ export interface DescribeKeyValueStoreCommandOutput extends DescribeKeyValueStor * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* - * @public + * * @example To describe a KeyValueStore * ```javascript * // Use the following command to describe a KeyValueStore. * const input = { - * "Name": "my-keyvaluestore-name" + * Name: "my-keyvaluestore-name" * }; * const command = new DescribeKeyValueStoreCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "ETVPDKIKX0DER", - * "KeyValueStore": { - * "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889", - * "Comment": "my-key-valuestore-comment", - * "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889", - * "LastModifiedTime": "2023-11-07T18:20:33.056Z", - * "Name": "my-keyvaluestore-name", - * "Status": "READY" + * ETag: "ETVPDKIKX0DER", + * KeyValueStore: { + * ARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889", + * Comment: "my-key-valuestore-comment", + * Id: "54947df8-0e9e-4471-a2f9-9af509fb5889", + * LastModifiedTime: "2023-11-07T18:20:33.056Z", + * Name: "my-keyvaluestore-name", + * Status: "READY" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class DescribeKeyValueStoreCommand extends $Command .classBuilder< diff --git a/clients/client-cloudfront/src/commands/GetAnycastIpListCommand.ts b/clients/client-cloudfront/src/commands/GetAnycastIpListCommand.ts index ec526ae5aadbd..5b8dbaee63f5f 100644 --- a/clients/client-cloudfront/src/commands/GetAnycastIpListCommand.ts +++ b/clients/client-cloudfront/src/commands/GetAnycastIpListCommand.ts @@ -78,6 +78,7 @@ export interface GetAnycastIpListCommandOutput extends GetAnycastIpListResult, _ * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetAnycastIpListCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetCachePolicyCommand.ts b/clients/client-cloudfront/src/commands/GetCachePolicyCommand.ts index b911a7d7f219f..ad22c56952e3c 100644 --- a/clients/client-cloudfront/src/commands/GetCachePolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/GetCachePolicyCommand.ts @@ -116,6 +116,7 @@ export interface GetCachePolicyCommandOutput extends GetCachePolicyResult, __Met * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetCachePolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetCachePolicyConfigCommand.ts b/clients/client-cloudfront/src/commands/GetCachePolicyConfigCommand.ts index e054d1440784d..dff0848678665 100644 --- a/clients/client-cloudfront/src/commands/GetCachePolicyConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetCachePolicyConfigCommand.ts @@ -104,6 +104,7 @@ export interface GetCachePolicyConfigCommandOutput extends GetCachePolicyConfigR * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetCachePolicyConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityCommand.ts b/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityCommand.ts index 680d48a79957f..a46cc962e7519 100644 --- a/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityCommand.ts +++ b/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityCommand.ts @@ -74,6 +74,7 @@ export interface GetCloudFrontOriginAccessIdentityCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetCloudFrontOriginAccessIdentityCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityConfigCommand.ts b/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityConfigCommand.ts index bc4925a181354..cfc5c7244ce37 100644 --- a/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityConfigCommand.ts @@ -74,6 +74,7 @@ export interface GetCloudFrontOriginAccessIdentityConfigCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetCloudFrontOriginAccessIdentityConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyCommand.ts b/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyCommand.ts index bfb6bcf861801..4b446423f98ac 100644 --- a/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyCommand.ts @@ -94,6 +94,7 @@ export interface GetContinuousDeploymentPolicyCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetContinuousDeploymentPolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyConfigCommand.ts b/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyConfigCommand.ts index b7f74887208be..220465c48f588 100644 --- a/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyConfigCommand.ts @@ -92,6 +92,7 @@ export interface GetContinuousDeploymentPolicyConfigCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetContinuousDeploymentPolicyConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetDistributionCommand.ts b/clients/client-cloudfront/src/commands/GetDistributionCommand.ts index 90f6f4465797b..29b608c437638 100644 --- a/clients/client-cloudfront/src/commands/GetDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/GetDistributionCommand.ts @@ -409,6 +409,7 @@ export interface GetDistributionCommandOutput extends GetDistributionResult, __M * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetDistributionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetDistributionConfigCommand.ts b/clients/client-cloudfront/src/commands/GetDistributionConfigCommand.ts index 595bb03d62a34..aefcea0ad8187 100644 --- a/clients/client-cloudfront/src/commands/GetDistributionConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetDistributionConfigCommand.ts @@ -365,6 +365,7 @@ export interface GetDistributionConfigCommandOutput extends GetDistributionConfi * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetDistributionConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionCommand.ts b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionCommand.ts index 0c621b49a78d5..143898ab786d6 100644 --- a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionCommand.ts +++ b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionCommand.ts @@ -94,6 +94,7 @@ export interface GetFieldLevelEncryptionCommandOutput extends GetFieldLevelEncry * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetFieldLevelEncryptionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionConfigCommand.ts b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionConfigCommand.ts index c2156740a0cb1..91cee2f60aadf 100644 --- a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionConfigCommand.ts @@ -95,6 +95,7 @@ export interface GetFieldLevelEncryptionConfigCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetFieldLevelEncryptionConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileCommand.ts b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileCommand.ts index 3f4631a525c12..959743157051e 100644 --- a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileCommand.ts +++ b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileCommand.ts @@ -90,6 +90,7 @@ export interface GetFieldLevelEncryptionProfileCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetFieldLevelEncryptionProfileCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileConfigCommand.ts b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileConfigCommand.ts index a892e0dc3a044..023e1204ff51a 100644 --- a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileConfigCommand.ts @@ -89,6 +89,7 @@ export interface GetFieldLevelEncryptionProfileConfigCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetFieldLevelEncryptionProfileConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetFunctionCommand.ts b/clients/client-cloudfront/src/commands/GetFunctionCommand.ts index e30c7d9c158cf..20f0b5811e081 100644 --- a/clients/client-cloudfront/src/commands/GetFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/GetFunctionCommand.ts @@ -75,6 +75,7 @@ export interface GetFunctionCommandOutput extends GetFunctionCommandOutputType, * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetFunctionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetInvalidationCommand.ts b/clients/client-cloudfront/src/commands/GetInvalidationCommand.ts index b8dc0bc502d9e..3d7909e51cea8 100644 --- a/clients/client-cloudfront/src/commands/GetInvalidationCommand.ts +++ b/clients/client-cloudfront/src/commands/GetInvalidationCommand.ts @@ -78,6 +78,7 @@ export interface GetInvalidationCommandOutput extends GetInvalidationResult, __M * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetInvalidationCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetKeyGroupCommand.ts b/clients/client-cloudfront/src/commands/GetKeyGroupCommand.ts index 850ba3b4bdcb9..3f5d2be2b27f5 100644 --- a/clients/client-cloudfront/src/commands/GetKeyGroupCommand.ts +++ b/clients/client-cloudfront/src/commands/GetKeyGroupCommand.ts @@ -75,6 +75,7 @@ export interface GetKeyGroupCommandOutput extends GetKeyGroupResult, __MetadataB * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetKeyGroupCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetKeyGroupConfigCommand.ts b/clients/client-cloudfront/src/commands/GetKeyGroupConfigCommand.ts index 4ff7c749dbb1c..44c9b9b33a79b 100644 --- a/clients/client-cloudfront/src/commands/GetKeyGroupConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetKeyGroupConfigCommand.ts @@ -70,6 +70,7 @@ export interface GetKeyGroupConfigCommandOutput extends GetKeyGroupConfigResult, * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetKeyGroupConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetMonitoringSubscriptionCommand.ts b/clients/client-cloudfront/src/commands/GetMonitoringSubscriptionCommand.ts index cd49d7538f3eb..41d910d0601d9 100644 --- a/clients/client-cloudfront/src/commands/GetMonitoringSubscriptionCommand.ts +++ b/clients/client-cloudfront/src/commands/GetMonitoringSubscriptionCommand.ts @@ -72,6 +72,7 @@ export interface GetMonitoringSubscriptionCommandOutput extends GetMonitoringSub * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetMonitoringSubscriptionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetOriginAccessControlCommand.ts b/clients/client-cloudfront/src/commands/GetOriginAccessControlCommand.ts index 80b946771c496..b44156c24adf9 100644 --- a/clients/client-cloudfront/src/commands/GetOriginAccessControlCommand.ts +++ b/clients/client-cloudfront/src/commands/GetOriginAccessControlCommand.ts @@ -71,6 +71,7 @@ export interface GetOriginAccessControlCommandOutput extends GetOriginAccessCont * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetOriginAccessControlCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetOriginAccessControlConfigCommand.ts b/clients/client-cloudfront/src/commands/GetOriginAccessControlConfigCommand.ts index 3af791e3e4d32..e659dac1a5c49 100644 --- a/clients/client-cloudfront/src/commands/GetOriginAccessControlConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetOriginAccessControlConfigCommand.ts @@ -73,6 +73,7 @@ export interface GetOriginAccessControlConfigCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetOriginAccessControlConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetOriginRequestPolicyCommand.ts b/clients/client-cloudfront/src/commands/GetOriginRequestPolicyCommand.ts index 1d0834d1b381a..8d1d3b76c6e8f 100644 --- a/clients/client-cloudfront/src/commands/GetOriginRequestPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/GetOriginRequestPolicyCommand.ts @@ -110,6 +110,7 @@ export interface GetOriginRequestPolicyCommandOutput extends GetOriginRequestPol * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetOriginRequestPolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetOriginRequestPolicyConfigCommand.ts b/clients/client-cloudfront/src/commands/GetOriginRequestPolicyConfigCommand.ts index 871ef1fd38c64..c59ffffb7156a 100644 --- a/clients/client-cloudfront/src/commands/GetOriginRequestPolicyConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetOriginRequestPolicyConfigCommand.ts @@ -103,6 +103,7 @@ export interface GetOriginRequestPolicyConfigCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetOriginRequestPolicyConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetPublicKeyCommand.ts b/clients/client-cloudfront/src/commands/GetPublicKeyCommand.ts index 1f5f19c01d811..5e0c50c3203d9 100644 --- a/clients/client-cloudfront/src/commands/GetPublicKeyCommand.ts +++ b/clients/client-cloudfront/src/commands/GetPublicKeyCommand.ts @@ -71,6 +71,7 @@ export interface GetPublicKeyCommandOutput extends GetPublicKeyResult, __Metadat * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetPublicKeyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetPublicKeyConfigCommand.ts b/clients/client-cloudfront/src/commands/GetPublicKeyConfigCommand.ts index 6075caca187de..a61dc601c2ff2 100644 --- a/clients/client-cloudfront/src/commands/GetPublicKeyConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetPublicKeyConfigCommand.ts @@ -67,6 +67,7 @@ export interface GetPublicKeyConfigCommandOutput extends GetPublicKeyConfigResul * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetPublicKeyConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetRealtimeLogConfigCommand.ts b/clients/client-cloudfront/src/commands/GetRealtimeLogConfigCommand.ts index 935e3db0a8d12..a0b8719f07b37 100644 --- a/clients/client-cloudfront/src/commands/GetRealtimeLogConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetRealtimeLogConfigCommand.ts @@ -84,6 +84,7 @@ export interface GetRealtimeLogConfigCommandOutput extends GetRealtimeLogConfigR * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetRealtimeLogConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyCommand.ts b/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyCommand.ts index 6d13847344978..2cf7ea6df84b1 100644 --- a/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyCommand.ts @@ -156,6 +156,7 @@ export interface GetResponseHeadersPolicyCommandOutput extends GetResponseHeader * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetResponseHeadersPolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyConfigCommand.ts b/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyConfigCommand.ts index a89779cdf9bef..6633d92f8d1d0 100644 --- a/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyConfigCommand.ts @@ -156,6 +156,7 @@ export interface GetResponseHeadersPolicyConfigCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetResponseHeadersPolicyConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetStreamingDistributionCommand.ts b/clients/client-cloudfront/src/commands/GetStreamingDistributionCommand.ts index f7f40f7f177fb..0a4927b9b6406 100644 --- a/clients/client-cloudfront/src/commands/GetStreamingDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/GetStreamingDistributionCommand.ts @@ -112,6 +112,7 @@ export interface GetStreamingDistributionCommandOutput extends GetStreamingDistr * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetStreamingDistributionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetStreamingDistributionConfigCommand.ts b/clients/client-cloudfront/src/commands/GetStreamingDistributionConfigCommand.ts index 5dd9ee42c3208..353375320d34e 100644 --- a/clients/client-cloudfront/src/commands/GetStreamingDistributionConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetStreamingDistributionConfigCommand.ts @@ -94,6 +94,7 @@ export interface GetStreamingDistributionConfigCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class GetStreamingDistributionConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/GetVpcOriginCommand.ts b/clients/client-cloudfront/src/commands/GetVpcOriginCommand.ts index adb37a9440cc8..0d92403e9cf97 100644 --- a/clients/client-cloudfront/src/commands/GetVpcOriginCommand.ts +++ b/clients/client-cloudfront/src/commands/GetVpcOriginCommand.ts @@ -87,44 +87,44 @@ export interface GetVpcOriginCommandOutput extends GetVpcOriginResult, __Metadat * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* - * @public + * * @example To get a VPC origin * ```javascript * // The following command gets a VPC origin: * const input = { - * "Id": "vo_BQwjxxQxjCaBcQLzJUFkDM" + * Id: "vo_BQwjxxQxjCaBcQLzJUFkDM" * }; * const command = new GetVpcOriginCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "ETVPDKIKX0DER", - * "VpcOrigin": { - * "Arn": "arn:aws:cloudfront::123456789012:vpcorigin/vo_BQwjxxQxjCaBcQLzJUFkDM", - * "CreatedTime": "2024-10-15T17:19:42.318Z", - * "Id": "vo_BQwjxxQxjCaBcQLzJUFkDM", - * "LastModifiedTime": "2024-10-15T17:24:35.188Z", - * "Status": "Deployed", - * "VpcOriginEndpointConfig": { - * "Arn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-alb-us-west-2/e6aa5c7d26415c6d", - * "HTTPPort": 80, - * "HTTPSPort": 443, - * "Name": "my-vpcorigin-name", - * "OriginProtocolPolicy": "match-viewer", - * "OriginSslProtocols": { - * "Items": [ + * ETag: "ETVPDKIKX0DER", + * VpcOrigin: { + * Arn: "arn:aws:cloudfront::123456789012:vpcorigin/vo_BQwjxxQxjCaBcQLzJUFkDM", + * CreatedTime: "2024-10-15T17:19:42.318Z", + * Id: "vo_BQwjxxQxjCaBcQLzJUFkDM", + * LastModifiedTime: "2024-10-15T17:24:35.188Z", + * Status: "Deployed", + * VpcOriginEndpointConfig: { + * Arn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-alb-us-west-2/e6aa5c7d26415c6d", + * HTTPPort: 80, + * HTTPSPort: 443, + * Name: "my-vpcorigin-name", + * OriginProtocolPolicy: "match-viewer", + * OriginSslProtocols: { + * Items: [ * "TLSv1.1", * "TLSv1.2" * ], - * "Quantity": 2 + * Quantity: 2 * } * } * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetVpcOriginCommand extends $Command .classBuilder< diff --git a/clients/client-cloudfront/src/commands/ListAnycastIpListsCommand.ts b/clients/client-cloudfront/src/commands/ListAnycastIpListsCommand.ts index 9efd522c425d4..64de6a5b09dd1 100644 --- a/clients/client-cloudfront/src/commands/ListAnycastIpListsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListAnycastIpListsCommand.ts @@ -84,6 +84,7 @@ export interface ListAnycastIpListsCommandOutput extends ListAnycastIpListsResul * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListAnycastIpListsCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListCachePoliciesCommand.ts b/clients/client-cloudfront/src/commands/ListCachePoliciesCommand.ts index 64aec0d3ee38c..95039d62dfcfd 100644 --- a/clients/client-cloudfront/src/commands/ListCachePoliciesCommand.ts +++ b/clients/client-cloudfront/src/commands/ListCachePoliciesCommand.ts @@ -124,6 +124,7 @@ export interface ListCachePoliciesCommandOutput extends ListCachePoliciesResult, * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListCachePoliciesCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListCloudFrontOriginAccessIdentitiesCommand.ts b/clients/client-cloudfront/src/commands/ListCloudFrontOriginAccessIdentitiesCommand.ts index 032bb4cefc3f4..ecf46d3eaa0dd 100644 --- a/clients/client-cloudfront/src/commands/ListCloudFrontOriginAccessIdentitiesCommand.ts +++ b/clients/client-cloudfront/src/commands/ListCloudFrontOriginAccessIdentitiesCommand.ts @@ -80,6 +80,7 @@ export interface ListCloudFrontOriginAccessIdentitiesCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListCloudFrontOriginAccessIdentitiesCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListConflictingAliasesCommand.ts b/clients/client-cloudfront/src/commands/ListConflictingAliasesCommand.ts index b6ffe349a5e8a..3a94d3a780973 100644 --- a/clients/client-cloudfront/src/commands/ListConflictingAliasesCommand.ts +++ b/clients/client-cloudfront/src/commands/ListConflictingAliasesCommand.ts @@ -97,6 +97,7 @@ export interface ListConflictingAliasesCommandOutput extends ListConflictingAlia * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListConflictingAliasesCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListContinuousDeploymentPoliciesCommand.ts b/clients/client-cloudfront/src/commands/ListContinuousDeploymentPoliciesCommand.ts index fc8f946e4be23..6af99cf1fdeb4 100644 --- a/clients/client-cloudfront/src/commands/ListContinuousDeploymentPoliciesCommand.ts +++ b/clients/client-cloudfront/src/commands/ListContinuousDeploymentPoliciesCommand.ts @@ -110,6 +110,7 @@ export interface ListContinuousDeploymentPoliciesCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListContinuousDeploymentPoliciesCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByAnycastIpListIdCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByAnycastIpListIdCommand.ts index 95ef278ccbeea..7986ae7fae5b2 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByAnycastIpListIdCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByAnycastIpListIdCommand.ts @@ -388,6 +388,7 @@ export interface ListDistributionsByAnycastIpListIdCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListDistributionsByAnycastIpListIdCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByCachePolicyIdCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByCachePolicyIdCommand.ts index c3c60ea499d2b..3c48122dd4216 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByCachePolicyIdCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByCachePolicyIdCommand.ts @@ -86,6 +86,7 @@ export interface ListDistributionsByCachePolicyIdCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListDistributionsByCachePolicyIdCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByKeyGroupCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByKeyGroupCommand.ts index f721719f230b5..eb6861d3d8c46 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByKeyGroupCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByKeyGroupCommand.ts @@ -78,6 +78,7 @@ export interface ListDistributionsByKeyGroupCommandOutput extends ListDistributi * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListDistributionsByKeyGroupCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByOriginRequestPolicyIdCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByOriginRequestPolicyIdCommand.ts index 18495934ae3d1..8e5e0cc5a418f 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByOriginRequestPolicyIdCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByOriginRequestPolicyIdCommand.ts @@ -90,6 +90,7 @@ export interface ListDistributionsByOriginRequestPolicyIdCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListDistributionsByOriginRequestPolicyIdCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByRealtimeLogConfigCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByRealtimeLogConfigCommand.ts index c17d67edbd641..886b5124294c3 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByRealtimeLogConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByRealtimeLogConfigCommand.ts @@ -389,6 +389,7 @@ export interface ListDistributionsByRealtimeLogConfigCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListDistributionsByRealtimeLogConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByResponseHeadersPolicyIdCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByResponseHeadersPolicyIdCommand.ts index d6efc8404d806..1740d8b8bbc3c 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByResponseHeadersPolicyIdCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByResponseHeadersPolicyIdCommand.ts @@ -90,6 +90,7 @@ export interface ListDistributionsByResponseHeadersPolicyIdCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListDistributionsByResponseHeadersPolicyIdCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByVpcOriginIdCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByVpcOriginIdCommand.ts index be50aa8fe398d..57e7e439bc814 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByVpcOriginIdCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByVpcOriginIdCommand.ts @@ -83,29 +83,29 @@ export interface ListDistributionsByVpcOriginIdCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* - * @public + * * @example To list distributions by VPC origin ID * ```javascript * // The following command lists distributions by VPC origin ID: * const input = { - * "VpcOriginId": "vo_BQwjxxQxjCaBcQLzJUFkDM" + * VpcOriginId: "vo_BQwjxxQxjCaBcQLzJUFkDM" * }; * const command = new ListDistributionsByVpcOriginIdCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DistributionIdList": { - * "IsTruncated": false, - * "Items": [], - * "Marker": "a", - * "MaxItems": 100, - * "Quantity": 0 + * DistributionIdList: { + * IsTruncated: false, + * Items: [], + * Marker: "a", + * MaxItems: 100, + * Quantity: 0 * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListDistributionsByVpcOriginIdCommand extends $Command .classBuilder< diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByWebACLIdCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByWebACLIdCommand.ts index be0d5c96f5971..993557d5b139e 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByWebACLIdCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByWebACLIdCommand.ts @@ -381,6 +381,7 @@ export interface ListDistributionsByWebACLIdCommandOutput extends ListDistributi * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListDistributionsByWebACLIdCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListDistributionsCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsCommand.ts index 792adb2bbe10b..6c32cf6801cd6 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsCommand.ts @@ -373,6 +373,7 @@ export interface ListDistributionsCommandOutput extends ListDistributionsResult, * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListDistributionsCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionConfigsCommand.ts b/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionConfigsCommand.ts index a1817dd6332db..e204fb4c65da9 100644 --- a/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionConfigsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionConfigsCommand.ts @@ -101,6 +101,7 @@ export interface ListFieldLevelEncryptionConfigsCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListFieldLevelEncryptionConfigsCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionProfilesCommand.ts b/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionProfilesCommand.ts index 2b322041c4230..86d0e693b41b2 100644 --- a/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionProfilesCommand.ts +++ b/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionProfilesCommand.ts @@ -92,6 +92,7 @@ export interface ListFieldLevelEncryptionProfilesCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListFieldLevelEncryptionProfilesCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListFunctionsCommand.ts b/clients/client-cloudfront/src/commands/ListFunctionsCommand.ts index d80abb1afcd39..768f610b8b5db 100644 --- a/clients/client-cloudfront/src/commands/ListFunctionsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListFunctionsCommand.ts @@ -98,6 +98,7 @@ export interface ListFunctionsCommandOutput extends ListFunctionsResult, __Metad * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListFunctionsCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListInvalidationsCommand.ts b/clients/client-cloudfront/src/commands/ListInvalidationsCommand.ts index 8b5439e1da22d..89ebe4e1c8d83 100644 --- a/clients/client-cloudfront/src/commands/ListInvalidationsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListInvalidationsCommand.ts @@ -79,6 +79,7 @@ export interface ListInvalidationsCommandOutput extends ListInvalidationsResult, * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListInvalidationsCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListKeyGroupsCommand.ts b/clients/client-cloudfront/src/commands/ListKeyGroupsCommand.ts index 23873bd40a247..67a87e4cea25f 100644 --- a/clients/client-cloudfront/src/commands/ListKeyGroupsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListKeyGroupsCommand.ts @@ -83,6 +83,7 @@ export interface ListKeyGroupsCommandOutput extends ListKeyGroupsResult, __Metad * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListKeyGroupsCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListKeyValueStoresCommand.ts b/clients/client-cloudfront/src/commands/ListKeyValueStoresCommand.ts index 81c7de04e3708..5a14b2b39cd60 100644 --- a/clients/client-cloudfront/src/commands/ListKeyValueStoresCommand.ts +++ b/clients/client-cloudfront/src/commands/ListKeyValueStoresCommand.ts @@ -80,37 +80,37 @@ export interface ListKeyValueStoresCommandOutput extends ListKeyValueStoresResul * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* - * @public + * * @example To get a list of KeyValueStores * ```javascript * // The following command retrieves a list of KeyValueStores with READY status. * const input = { - * "Status": "READY" + * Status: "READY" * }; * const command = new ListKeyValueStoresCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyValueStoreList": { - * "Items": [ + * KeyValueStoreList: { + * Items: [ * { - * "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889", - * "Comment": "", - * "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889", - * "LastModifiedTime": "2023-11-07T18:45:21.069Z", - * "Name": "my-keyvaluestore-name", - * "Status": "READY" + * ARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889", + * Comment: "", + * Id: "54947df8-0e9e-4471-a2f9-9af509fb5889", + * LastModifiedTime: "2023-11-07T18:45:21.069Z", + * Name: "my-keyvaluestore-name", + * Status: "READY" * } * ], - * "MaxItems": 100, - * "NextMarker": "", - * "Quantity": 1 + * MaxItems: 100, + * NextMarker: "", + * Quantity: 1 * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListKeyValueStoresCommand extends $Command .classBuilder< diff --git a/clients/client-cloudfront/src/commands/ListOriginAccessControlsCommand.ts b/clients/client-cloudfront/src/commands/ListOriginAccessControlsCommand.ts index 938fcdb99f2b1..c237977069f55 100644 --- a/clients/client-cloudfront/src/commands/ListOriginAccessControlsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListOriginAccessControlsCommand.ts @@ -85,6 +85,7 @@ export interface ListOriginAccessControlsCommandOutput extends ListOriginAccessC * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListOriginAccessControlsCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListOriginRequestPoliciesCommand.ts b/clients/client-cloudfront/src/commands/ListOriginRequestPoliciesCommand.ts index d113737bbce31..9d6a1416ad5ad 100644 --- a/clients/client-cloudfront/src/commands/ListOriginRequestPoliciesCommand.ts +++ b/clients/client-cloudfront/src/commands/ListOriginRequestPoliciesCommand.ts @@ -117,6 +117,7 @@ export interface ListOriginRequestPoliciesCommandOutput extends ListOriginReques * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListOriginRequestPoliciesCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListPublicKeysCommand.ts b/clients/client-cloudfront/src/commands/ListPublicKeysCommand.ts index 7b9f0367b8064..a01c26cd7373e 100644 --- a/clients/client-cloudfront/src/commands/ListPublicKeysCommand.ts +++ b/clients/client-cloudfront/src/commands/ListPublicKeysCommand.ts @@ -72,6 +72,7 @@ export interface ListPublicKeysCommandOutput extends ListPublicKeysResult, __Met * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListPublicKeysCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListRealtimeLogConfigsCommand.ts b/clients/client-cloudfront/src/commands/ListRealtimeLogConfigsCommand.ts index 3048e0850073e..e4e65239067a6 100644 --- a/clients/client-cloudfront/src/commands/ListRealtimeLogConfigsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListRealtimeLogConfigsCommand.ts @@ -94,6 +94,7 @@ export interface ListRealtimeLogConfigsCommandOutput extends ListRealtimeLogConf * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListRealtimeLogConfigsCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListResponseHeadersPoliciesCommand.ts b/clients/client-cloudfront/src/commands/ListResponseHeadersPoliciesCommand.ts index 19153d67520f5..782530b96f359 100644 --- a/clients/client-cloudfront/src/commands/ListResponseHeadersPoliciesCommand.ts +++ b/clients/client-cloudfront/src/commands/ListResponseHeadersPoliciesCommand.ts @@ -170,6 +170,7 @@ export interface ListResponseHeadersPoliciesCommandOutput extends ListResponseHe * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListResponseHeadersPoliciesCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListStreamingDistributionsCommand.ts b/clients/client-cloudfront/src/commands/ListStreamingDistributionsCommand.ts index ff291a3f57db5..2cb2e6c3e81ea 100644 --- a/clients/client-cloudfront/src/commands/ListStreamingDistributionsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListStreamingDistributionsCommand.ts @@ -94,6 +94,7 @@ export interface ListStreamingDistributionsCommandOutput extends ListStreamingDi * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListStreamingDistributionsCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListTagsForResourceCommand.ts b/clients/client-cloudfront/src/commands/ListTagsForResourceCommand.ts index bfc088d5c9e8a..2ecbaad08e0a8 100644 --- a/clients/client-cloudfront/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cloudfront/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/ListVpcOriginsCommand.ts b/clients/client-cloudfront/src/commands/ListVpcOriginsCommand.ts index fe00e6095550a..b6a36636bd89d 100644 --- a/clients/client-cloudfront/src/commands/ListVpcOriginsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListVpcOriginsCommand.ts @@ -85,37 +85,37 @@ export interface ListVpcOriginsCommandOutput extends ListVpcOriginsResult, __Met * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* - * @public + * * @example To list VPC origins * ```javascript * // The following command lists VPC origins: - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListVpcOriginsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "VpcOriginList": { - * "IsTruncated": true, - * "Items": [ + * VpcOriginList: { + * IsTruncated: true, + * Items: [ * { - * "Arn": "arn:aws:cloudfront::123456789012:vpcorigin/vo_BQwjxxQxjCaBcQLzJUFkDM", - * "CreatedTime": "2024-10-15T17:19:42.318Z", - * "Id": "vo_BQwjxxQxjCaBcQLzJUFkDM", - * "LastModifiedTime": "2024-10-15T17:24:35.188Z", - * "Name": "my-vpcorigin-name", - * "OriginEndpointArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-alb-us-west-2/e6aa5c7d26415c6d", - * "Status": "Deployed" + * Arn: "arn:aws:cloudfront::123456789012:vpcorigin/vo_BQwjxxQxjCaBcQLzJUFkDM", + * CreatedTime: "2024-10-15T17:19:42.318Z", + * Id: "vo_BQwjxxQxjCaBcQLzJUFkDM", + * LastModifiedTime: "2024-10-15T17:24:35.188Z", + * Name: "my-vpcorigin-name", + * OriginEndpointArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-alb-us-west-2/e6aa5c7d26415c6d", + * Status: "Deployed" * } * ], - * "Marker": "a", - * "MaxItems": 100, - * "Quantity": 1 + * Marker: "a", + * MaxItems: 100, + * Quantity: 1 * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListVpcOriginsCommand extends $Command .classBuilder< diff --git a/clients/client-cloudfront/src/commands/PublishFunctionCommand.ts b/clients/client-cloudfront/src/commands/PublishFunctionCommand.ts index 4f1b0447fa685..746f673ad7a26 100644 --- a/clients/client-cloudfront/src/commands/PublishFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/PublishFunctionCommand.ts @@ -102,6 +102,7 @@ export interface PublishFunctionCommandOutput extends PublishFunctionResult, __M * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class PublishFunctionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/TagResourceCommand.ts b/clients/client-cloudfront/src/commands/TagResourceCommand.ts index e82e5ba528b0a..171a3e20da110 100644 --- a/clients/client-cloudfront/src/commands/TagResourceCommand.ts +++ b/clients/client-cloudfront/src/commands/TagResourceCommand.ts @@ -73,6 +73,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/TestFunctionCommand.ts b/clients/client-cloudfront/src/commands/TestFunctionCommand.ts index 984b3847a54bd..85b74318dfdae 100644 --- a/clients/client-cloudfront/src/commands/TestFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/TestFunctionCommand.ts @@ -116,6 +116,7 @@ export interface TestFunctionCommandOutput extends TestFunctionResult, __Metadat * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class TestFunctionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UntagResourceCommand.ts b/clients/client-cloudfront/src/commands/UntagResourceCommand.ts index 69fc5492c74b5..af8b3b1212803 100644 --- a/clients/client-cloudfront/src/commands/UntagResourceCommand.ts +++ b/clients/client-cloudfront/src/commands/UntagResourceCommand.ts @@ -70,6 +70,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdateCachePolicyCommand.ts b/clients/client-cloudfront/src/commands/UpdateCachePolicyCommand.ts index c4c295ea70765..f618aeca771a7 100644 --- a/clients/client-cloudfront/src/commands/UpdateCachePolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateCachePolicyCommand.ts @@ -195,6 +195,7 @@ export interface UpdateCachePolicyCommandOutput extends UpdateCachePolicyResult, * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UpdateCachePolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdateCloudFrontOriginAccessIdentityCommand.ts b/clients/client-cloudfront/src/commands/UpdateCloudFrontOriginAccessIdentityCommand.ts index e17566079f9d8..6d0364a463bd2 100644 --- a/clients/client-cloudfront/src/commands/UpdateCloudFrontOriginAccessIdentityCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateCloudFrontOriginAccessIdentityCommand.ts @@ -103,6 +103,7 @@ export interface UpdateCloudFrontOriginAccessIdentityCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UpdateCloudFrontOriginAccessIdentityCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdateContinuousDeploymentPolicyCommand.ts b/clients/client-cloudfront/src/commands/UpdateContinuousDeploymentPolicyCommand.ts index 5d19902c0b184..1c9d4403a7f6d 100644 --- a/clients/client-cloudfront/src/commands/UpdateContinuousDeploymentPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateContinuousDeploymentPolicyCommand.ts @@ -155,6 +155,7 @@ export interface UpdateContinuousDeploymentPolicyCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UpdateContinuousDeploymentPolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdateDistributionCommand.ts b/clients/client-cloudfront/src/commands/UpdateDistributionCommand.ts index 165d8f9af6727..c95f87cc2601d 100644 --- a/clients/client-cloudfront/src/commands/UpdateDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateDistributionCommand.ts @@ -979,6 +979,7 @@ export interface UpdateDistributionCommandOutput extends UpdateDistributionResul * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UpdateDistributionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdateDistributionWithStagingConfigCommand.ts b/clients/client-cloudfront/src/commands/UpdateDistributionWithStagingConfigCommand.ts index 7877d801cccfa..6b8d59a517dbb 100644 --- a/clients/client-cloudfront/src/commands/UpdateDistributionWithStagingConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateDistributionWithStagingConfigCommand.ts @@ -655,6 +655,7 @@ export interface UpdateDistributionWithStagingConfigCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UpdateDistributionWithStagingConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionConfigCommand.ts b/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionConfigCommand.ts index 7ca875ed0f37e..d503911128286 100644 --- a/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionConfigCommand.ts @@ -160,6 +160,7 @@ export interface UpdateFieldLevelEncryptionConfigCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UpdateFieldLevelEncryptionConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionProfileCommand.ts b/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionProfileCommand.ts index d384789e8dcd4..c92d0bcc113e7 100644 --- a/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionProfileCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionProfileCommand.ts @@ -145,6 +145,7 @@ export interface UpdateFieldLevelEncryptionProfileCommandOutput * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UpdateFieldLevelEncryptionProfileCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdateFunctionCommand.ts b/clients/client-cloudfront/src/commands/UpdateFunctionCommand.ts index 109674665a1a6..5655e5c1e7b42 100644 --- a/clients/client-cloudfront/src/commands/UpdateFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateFunctionCommand.ts @@ -120,59 +120,59 @@ export interface UpdateFunctionCommandOutput extends UpdateFunctionResult, __Met * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* - * @public + * * @example To update a function * ```javascript * // Use the following command to update a function. * const input = { - * "FunctionCode": "function-code-changed.js", - * "FunctionConfig": { - * "Comment": "my-changed-comment", - * "KeyValueStoreAssociations": { - * "Items": [ + * FunctionCode: "function-code-changed.js", + * FunctionConfig: { + * Comment: "my-changed-comment", + * KeyValueStoreAssociations: { + * Items: [ * { - * "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889" + * KeyValueStoreARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889" * } * ], - * "Quantity": 1 + * Quantity: 1 * }, - * "Runtime": "cloudfront-js-2.0" + * Runtime: "cloudfront-js-2.0" * }, - * "IfMatch": "ETVPDKIKX0DER", - * "Name": "my-function-name" + * IfMatch: "ETVPDKIKX0DER", + * Name: "my-function-name" * }; * const command = new UpdateFunctionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "E3UN6WX5RRO2AG", - * "FunctionSummary": { - * "FunctionConfig": { - * "Comment": "my-changed-comment", - * "KeyValueStoreAssociations": { - * "Items": [ + * ETag: "E3UN6WX5RRO2AG", + * FunctionSummary: { + * FunctionConfig: { + * Comment: "my-changed-comment", + * KeyValueStoreAssociations: { + * Items: [ * { - * "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889" + * KeyValueStoreARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889" * } * ], - * "Quantity": 1 + * Quantity: 1 * }, - * "Runtime": "cloudfront-js-2.0" + * Runtime: "cloudfront-js-2.0" * }, - * "FunctionMetadata": { - * "CreatedTime": "2023-11-07T19:53:50.334Z", - * "FunctionARN": "arn:aws:cloudfront::123456789012:function/my-function-name", - * "LastModifiedTime": "2023-11-07T20:01:37.174Z", - * "Stage": "DEVELOPMENT" + * FunctionMetadata: { + * CreatedTime: "2023-11-07T19:53:50.334Z", + * FunctionARN: "arn:aws:cloudfront::123456789012:function/my-function-name", + * LastModifiedTime: "2023-11-07T20:01:37.174Z", + * Stage: "DEVELOPMENT" * }, - * "Name": "my-function-name", - * "Status": "UNPUBLISHED" + * Name: "my-function-name", + * Status: "UNPUBLISHED" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateFunctionCommand extends $Command .classBuilder< diff --git a/clients/client-cloudfront/src/commands/UpdateKeyGroupCommand.ts b/clients/client-cloudfront/src/commands/UpdateKeyGroupCommand.ts index 2c12663b2e0f7..56fa70943b677 100644 --- a/clients/client-cloudfront/src/commands/UpdateKeyGroupCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateKeyGroupCommand.ts @@ -113,6 +113,7 @@ export interface UpdateKeyGroupCommandOutput extends UpdateKeyGroupResult, __Met * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UpdateKeyGroupCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdateKeyValueStoreCommand.ts b/clients/client-cloudfront/src/commands/UpdateKeyValueStoreCommand.ts index 9b46c8d3ec5c2..5e7e367dc7676 100644 --- a/clients/client-cloudfront/src/commands/UpdateKeyValueStoreCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateKeyValueStoreCommand.ts @@ -84,33 +84,33 @@ export interface UpdateKeyValueStoreCommandOutput extends UpdateKeyValueStoreRes * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* - * @public + * * @example To update a KeyValueStore * ```javascript * // Use the following command to update a KeyValueStore. * const input = { - * "Comment": "my-changed-comment", - * "IfMatch": "ETVPDKIKX0DER", - * "Name": "my-keyvaluestore-name" + * Comment: "my-changed-comment", + * IfMatch: "ETVPDKIKX0DER", + * Name: "my-keyvaluestore-name" * }; * const command = new UpdateKeyValueStoreCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "E3UN6WX5RRO2AG", - * "KeyValueStore": { - * "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889", - * "Comment": "my-changed-comment", - * "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889", - * "LastModifiedTime": "2023-11-07T18:45:21.069Z", - * "Name": "my-keyvaluestore-name", - * "Status": "READY" + * ETag: "E3UN6WX5RRO2AG", + * KeyValueStore: { + * ARN: "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889", + * Comment: "my-changed-comment", + * Id: "54947df8-0e9e-4471-a2f9-9af509fb5889", + * LastModifiedTime: "2023-11-07T18:45:21.069Z", + * Name: "my-keyvaluestore-name", + * Status: "READY" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateKeyValueStoreCommand extends $Command .classBuilder< diff --git a/clients/client-cloudfront/src/commands/UpdateOriginAccessControlCommand.ts b/clients/client-cloudfront/src/commands/UpdateOriginAccessControlCommand.ts index c527d49851179..ed67058798931 100644 --- a/clients/client-cloudfront/src/commands/UpdateOriginAccessControlCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateOriginAccessControlCommand.ts @@ -95,6 +95,7 @@ export interface UpdateOriginAccessControlCommandOutput extends UpdateOriginAcce * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UpdateOriginAccessControlCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdateOriginRequestPolicyCommand.ts b/clients/client-cloudfront/src/commands/UpdateOriginRequestPolicyCommand.ts index ac31e443c244d..2509b37515b09 100644 --- a/clients/client-cloudfront/src/commands/UpdateOriginRequestPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateOriginRequestPolicyCommand.ts @@ -183,6 +183,7 @@ export interface UpdateOriginRequestPolicyCommandOutput extends UpdateOriginRequ * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UpdateOriginRequestPolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdatePublicKeyCommand.ts b/clients/client-cloudfront/src/commands/UpdatePublicKeyCommand.ts index a75008ce07f91..fd14f3868ab1b 100644 --- a/clients/client-cloudfront/src/commands/UpdatePublicKeyCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdatePublicKeyCommand.ts @@ -95,6 +95,7 @@ export interface UpdatePublicKeyCommandOutput extends UpdatePublicKeyResult, __M * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UpdatePublicKeyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdateRealtimeLogConfigCommand.ts b/clients/client-cloudfront/src/commands/UpdateRealtimeLogConfigCommand.ts index 2601e6586faa2..48ed72191ec7b 100644 --- a/clients/client-cloudfront/src/commands/UpdateRealtimeLogConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateRealtimeLogConfigCommand.ts @@ -114,6 +114,7 @@ export interface UpdateRealtimeLogConfigCommandOutput extends UpdateRealtimeLogC * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UpdateRealtimeLogConfigCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdateResponseHeadersPolicyCommand.ts b/clients/client-cloudfront/src/commands/UpdateResponseHeadersPolicyCommand.ts index 38b693ee5011d..bde05626f7a48 100644 --- a/clients/client-cloudfront/src/commands/UpdateResponseHeadersPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateResponseHeadersPolicyCommand.ts @@ -292,6 +292,7 @@ export interface UpdateResponseHeadersPolicyCommandOutput extends UpdateResponse * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UpdateResponseHeadersPolicyCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdateStreamingDistributionCommand.ts b/clients/client-cloudfront/src/commands/UpdateStreamingDistributionCommand.ts index e57c3873ed347..49e0cfe8b4844 100644 --- a/clients/client-cloudfront/src/commands/UpdateStreamingDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateStreamingDistributionCommand.ts @@ -179,6 +179,7 @@ export interface UpdateStreamingDistributionCommandOutput extends UpdateStreamin * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* + * * @public */ export class UpdateStreamingDistributionCommand extends $Command diff --git a/clients/client-cloudfront/src/commands/UpdateVpcOriginCommand.ts b/clients/client-cloudfront/src/commands/UpdateVpcOriginCommand.ts index 2d2b7fde47b8a..856bbb8ff6293 100644 --- a/clients/client-cloudfront/src/commands/UpdateVpcOriginCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateVpcOriginCommand.ts @@ -125,59 +125,59 @@ export interface UpdateVpcOriginCommandOutput extends UpdateVpcOriginResult, __M * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* - * @public + * * @example To update a VPC origin * ```javascript * // The following command updates a VPC origin: * const input = { - * "Id": "vo_BQwjxxQxjCaBcQLzJUFkDM", - * "IfMatch": "ETVPDKIKX0DER", - * "VpcOriginEndpointConfig": { - * "Arn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-alb-us-west-2/e6aa5c7d26415c6d", - * "HTTPPort": 80, - * "HTTPSPort": 443, - * "Name": "my-vpcorigin-name", - * "OriginProtocolPolicy": "match-viewer", - * "OriginSslProtocols": { - * "Items": [ + * Id: "vo_BQwjxxQxjCaBcQLzJUFkDM", + * IfMatch: "ETVPDKIKX0DER", + * VpcOriginEndpointConfig: { + * Arn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-alb-us-west-2/e6aa5c7d26415c6d", + * HTTPPort: 80, + * HTTPSPort: 443, + * Name: "my-vpcorigin-name", + * OriginProtocolPolicy: "match-viewer", + * OriginSslProtocols: { + * Items: [ * "TLSv1.1", * "TLSv1.2" * ], - * "Quantity": 2 + * Quantity: 2 * } * } * }; * const command = new UpdateVpcOriginCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "E3UN6WX5RRO2AG", - * "VpcOrigin": { - * "Arn": "arn:aws:cloudfront::123456789012:vpcorigin/vo_BQwjxxQxjCaBcQLzJUFkDM", - * "CreatedTime": "2024-10-15T17:19:42.318Z", - * "Id": "vo_BQwjxxQxjCaBcQLzJUFkDM", - * "LastModifiedTime": "2024-10-15T17:47:08.133Z", - * "Status": "Deploying", - * "VpcOriginEndpointConfig": { - * "Arn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-alb-us-west-2/e6aa5c7d26415c6d", - * "HTTPPort": 80, - * "HTTPSPort": 443, - * "Name": "my-vpcorigin-name", - * "OriginProtocolPolicy": "match-viewer", - * "OriginSslProtocols": { - * "Items": [ + * ETag: "E3UN6WX5RRO2AG", + * VpcOrigin: { + * Arn: "arn:aws:cloudfront::123456789012:vpcorigin/vo_BQwjxxQxjCaBcQLzJUFkDM", + * CreatedTime: "2024-10-15T17:19:42.318Z", + * Id: "vo_BQwjxxQxjCaBcQLzJUFkDM", + * LastModifiedTime: "2024-10-15T17:47:08.133Z", + * Status: "Deploying", + * VpcOriginEndpointConfig: { + * Arn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-alb-us-west-2/e6aa5c7d26415c6d", + * HTTPPort: 80, + * HTTPSPort: 443, + * Name: "my-vpcorigin-name", + * OriginProtocolPolicy: "match-viewer", + * OriginSslProtocols: { + * Items: [ * "TLSv1.1", * "TLSv1.2" * ], - * "Quantity": 2 + * Quantity: 2 * } * } * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateVpcOriginCommand extends $Command .classBuilder< diff --git a/clients/client-cloudhsm-v2/src/commands/CopyBackupToRegionCommand.ts b/clients/client-cloudhsm-v2/src/commands/CopyBackupToRegionCommand.ts index e4da51b5ffec2..5fe28f6fec31a 100644 --- a/clients/client-cloudhsm-v2/src/commands/CopyBackupToRegionCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/CopyBackupToRegionCommand.ts @@ -90,6 +90,7 @@ export interface CopyBackupToRegionCommandOutput extends CopyBackupToRegionRespo * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class CopyBackupToRegionCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/CreateClusterCommand.ts b/clients/client-cloudhsm-v2/src/commands/CreateClusterCommand.ts index 67b19eeaa538a..ecf3a81f940a5 100644 --- a/clients/client-cloudhsm-v2/src/commands/CreateClusterCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/CreateClusterCommand.ts @@ -143,6 +143,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class CreateClusterCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/CreateHsmCommand.ts b/clients/client-cloudhsm-v2/src/commands/CreateHsmCommand.ts index ea955c2e119ac..4569650d7405c 100644 --- a/clients/client-cloudhsm-v2/src/commands/CreateHsmCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/CreateHsmCommand.ts @@ -89,6 +89,7 @@ export interface CreateHsmCommandOutput extends CreateHsmResponse, __MetadataBea * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class CreateHsmCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/DeleteBackupCommand.ts b/clients/client-cloudhsm-v2/src/commands/DeleteBackupCommand.ts index 71025b005ddce..fe7c7e7fe69a8 100644 --- a/clients/client-cloudhsm-v2/src/commands/DeleteBackupCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/DeleteBackupCommand.ts @@ -97,6 +97,7 @@ export interface DeleteBackupCommandOutput extends DeleteBackupResponse, __Metad * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class DeleteBackupCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/DeleteClusterCommand.ts b/clients/client-cloudhsm-v2/src/commands/DeleteClusterCommand.ts index 77a54847f6460..32c4747bec6eb 100644 --- a/clients/client-cloudhsm-v2/src/commands/DeleteClusterCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/DeleteClusterCommand.ts @@ -127,6 +127,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class DeleteClusterCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/DeleteHsmCommand.ts b/clients/client-cloudhsm-v2/src/commands/DeleteHsmCommand.ts index a83478edbc6c3..6c6363a4d795a 100644 --- a/clients/client-cloudhsm-v2/src/commands/DeleteHsmCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/DeleteHsmCommand.ts @@ -80,6 +80,7 @@ export interface DeleteHsmCommandOutput extends DeleteHsmResponse, __MetadataBea * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class DeleteHsmCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-cloudhsm-v2/src/commands/DeleteResourcePolicyCommand.ts index b942d65af86df..fc172bc0a729e 100644 --- a/clients/client-cloudhsm-v2/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/DeleteResourcePolicyCommand.ts @@ -78,6 +78,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/DescribeBackupsCommand.ts b/clients/client-cloudhsm-v2/src/commands/DescribeBackupsCommand.ts index eef9a0b56e756..4c9f4916874f0 100644 --- a/clients/client-cloudhsm-v2/src/commands/DescribeBackupsCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/DescribeBackupsCommand.ts @@ -114,6 +114,7 @@ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, _ * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class DescribeBackupsCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/DescribeClustersCommand.ts b/clients/client-cloudhsm-v2/src/commands/DescribeClustersCommand.ts index 16272ad5016d8..f759a173b3e27 100644 --- a/clients/client-cloudhsm-v2/src/commands/DescribeClustersCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/DescribeClustersCommand.ts @@ -136,6 +136,7 @@ export interface DescribeClustersCommandOutput extends DescribeClustersResponse, * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class DescribeClustersCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/GetResourcePolicyCommand.ts b/clients/client-cloudhsm-v2/src/commands/GetResourcePolicyCommand.ts index b0705091d8a07..0df413abad7fb 100644 --- a/clients/client-cloudhsm-v2/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/GetResourcePolicyCommand.ts @@ -75,6 +75,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/InitializeClusterCommand.ts b/clients/client-cloudhsm-v2/src/commands/InitializeClusterCommand.ts index 82bd2e0223254..a6ec8cd1ba8ca 100644 --- a/clients/client-cloudhsm-v2/src/commands/InitializeClusterCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/InitializeClusterCommand.ts @@ -81,6 +81,7 @@ export interface InitializeClusterCommandOutput extends InitializeClusterRespons * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class InitializeClusterCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/ListTagsCommand.ts b/clients/client-cloudhsm-v2/src/commands/ListTagsCommand.ts index dfdc4d493d411..bc0ec108a6554 100644 --- a/clients/client-cloudhsm-v2/src/commands/ListTagsCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/ListTagsCommand.ts @@ -91,6 +91,7 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class ListTagsCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/ModifyBackupAttributesCommand.ts b/clients/client-cloudhsm-v2/src/commands/ModifyBackupAttributesCommand.ts index 9fdd9744e61ab..cbb4536ea0bfa 100644 --- a/clients/client-cloudhsm-v2/src/commands/ModifyBackupAttributesCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/ModifyBackupAttributesCommand.ts @@ -96,6 +96,7 @@ export interface ModifyBackupAttributesCommandOutput extends ModifyBackupAttribu * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class ModifyBackupAttributesCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/ModifyClusterCommand.ts b/clients/client-cloudhsm-v2/src/commands/ModifyClusterCommand.ts index 2f8fc762e65fa..c81d25a654fed 100644 --- a/clients/client-cloudhsm-v2/src/commands/ModifyClusterCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/ModifyClusterCommand.ts @@ -128,6 +128,7 @@ export interface ModifyClusterCommandOutput extends ModifyClusterResponse, __Met * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class ModifyClusterCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/PutResourcePolicyCommand.ts b/clients/client-cloudhsm-v2/src/commands/PutResourcePolicyCommand.ts index 87af037629af2..e45df31cd58cb 100644 --- a/clients/client-cloudhsm-v2/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/PutResourcePolicyCommand.ts @@ -94,6 +94,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/RestoreBackupCommand.ts b/clients/client-cloudhsm-v2/src/commands/RestoreBackupCommand.ts index ddd8576352849..50e6c872f6da7 100644 --- a/clients/client-cloudhsm-v2/src/commands/RestoreBackupCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/RestoreBackupCommand.ts @@ -97,6 +97,7 @@ export interface RestoreBackupCommandOutput extends RestoreBackupResponse, __Met * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class RestoreBackupCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/TagResourceCommand.ts b/clients/client-cloudhsm-v2/src/commands/TagResourceCommand.ts index c394ebcc1d689..e974952ebcbf8 100644 --- a/clients/client-cloudhsm-v2/src/commands/TagResourceCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/TagResourceCommand.ts @@ -85,6 +85,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-cloudhsm-v2/src/commands/UntagResourceCommand.ts b/clients/client-cloudhsm-v2/src/commands/UntagResourceCommand.ts index f98de1352de25..c58bee94945f6 100644 --- a/clients/client-cloudhsm-v2/src/commands/UntagResourceCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/UntagResourceCommand.ts @@ -79,6 +79,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link CloudHSMV2ServiceException} *

Base exception class for all service exceptions from CloudHSMV2 service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/AddTagsToResourceCommand.ts b/clients/client-cloudhsm/src/commands/AddTagsToResourceCommand.ts index f007924fbffb1..780827652b450 100644 --- a/clients/client-cloudhsm/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-cloudhsm/src/commands/AddTagsToResourceCommand.ts @@ -84,6 +84,7 @@ export interface AddTagsToResourceCommandOutput extends AddTagsToResourceRespons * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class AddTagsToResourceCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/CreateHapgCommand.ts b/clients/client-cloudhsm/src/commands/CreateHapgCommand.ts index 4469568d48a83..be6a979a73e07 100644 --- a/clients/client-cloudhsm/src/commands/CreateHapgCommand.ts +++ b/clients/client-cloudhsm/src/commands/CreateHapgCommand.ts @@ -77,6 +77,7 @@ export interface CreateHapgCommandOutput extends CreateHapgResponse, __MetadataB * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class CreateHapgCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/CreateHsmCommand.ts b/clients/client-cloudhsm/src/commands/CreateHsmCommand.ts index b5aa032c7a4ca..19d7df6a0f77a 100644 --- a/clients/client-cloudhsm/src/commands/CreateHsmCommand.ts +++ b/clients/client-cloudhsm/src/commands/CreateHsmCommand.ts @@ -92,6 +92,7 @@ export interface CreateHsmCommandOutput extends CreateHsmResponse, __MetadataBea * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class CreateHsmCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/CreateLunaClientCommand.ts b/clients/client-cloudhsm/src/commands/CreateLunaClientCommand.ts index 00720d38adc9b..a157107a9dab3 100644 --- a/clients/client-cloudhsm/src/commands/CreateLunaClientCommand.ts +++ b/clients/client-cloudhsm/src/commands/CreateLunaClientCommand.ts @@ -77,6 +77,7 @@ export interface CreateLunaClientCommandOutput extends CreateLunaClientResponse, * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class CreateLunaClientCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/DeleteHapgCommand.ts b/clients/client-cloudhsm/src/commands/DeleteHapgCommand.ts index e0c0d6e0c5d47..c27225f83eeca 100644 --- a/clients/client-cloudhsm/src/commands/DeleteHapgCommand.ts +++ b/clients/client-cloudhsm/src/commands/DeleteHapgCommand.ts @@ -76,6 +76,7 @@ export interface DeleteHapgCommandOutput extends DeleteHapgResponse, __MetadataB * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class DeleteHapgCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/DeleteHsmCommand.ts b/clients/client-cloudhsm/src/commands/DeleteHsmCommand.ts index 8d9e41849d2a2..d0e371ba738de 100644 --- a/clients/client-cloudhsm/src/commands/DeleteHsmCommand.ts +++ b/clients/client-cloudhsm/src/commands/DeleteHsmCommand.ts @@ -77,6 +77,7 @@ export interface DeleteHsmCommandOutput extends DeleteHsmResponse, __MetadataBea * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class DeleteHsmCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/DeleteLunaClientCommand.ts b/clients/client-cloudhsm/src/commands/DeleteLunaClientCommand.ts index f1184210e45e9..87a1f4ee583eb 100644 --- a/clients/client-cloudhsm/src/commands/DeleteLunaClientCommand.ts +++ b/clients/client-cloudhsm/src/commands/DeleteLunaClientCommand.ts @@ -76,6 +76,7 @@ export interface DeleteLunaClientCommandOutput extends DeleteLunaClientResponse, * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class DeleteLunaClientCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/DescribeHapgCommand.ts b/clients/client-cloudhsm/src/commands/DescribeHapgCommand.ts index 238a046c16f6a..5a11addac8bab 100644 --- a/clients/client-cloudhsm/src/commands/DescribeHapgCommand.ts +++ b/clients/client-cloudhsm/src/commands/DescribeHapgCommand.ts @@ -92,6 +92,7 @@ export interface DescribeHapgCommandOutput extends DescribeHapgResponse, __Metad * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class DescribeHapgCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/DescribeHsmCommand.ts b/clients/client-cloudhsm/src/commands/DescribeHsmCommand.ts index 958535edb02b7..eec3e89682067 100644 --- a/clients/client-cloudhsm/src/commands/DescribeHsmCommand.ts +++ b/clients/client-cloudhsm/src/commands/DescribeHsmCommand.ts @@ -100,6 +100,7 @@ export interface DescribeHsmCommandOutput extends DescribeHsmResponse, __Metadat * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class DescribeHsmCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/DescribeLunaClientCommand.ts b/clients/client-cloudhsm/src/commands/DescribeLunaClientCommand.ts index 312ce4ca0d685..00c8e8fbde2dc 100644 --- a/clients/client-cloudhsm/src/commands/DescribeLunaClientCommand.ts +++ b/clients/client-cloudhsm/src/commands/DescribeLunaClientCommand.ts @@ -81,6 +81,7 @@ export interface DescribeLunaClientCommandOutput extends DescribeLunaClientRespo * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class DescribeLunaClientCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/GetConfigCommand.ts b/clients/client-cloudhsm/src/commands/GetConfigCommand.ts index 521317ed909de..2f7a33839880e 100644 --- a/clients/client-cloudhsm/src/commands/GetConfigCommand.ts +++ b/clients/client-cloudhsm/src/commands/GetConfigCommand.ts @@ -83,6 +83,7 @@ export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBea * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class GetConfigCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/ListAvailableZonesCommand.ts b/clients/client-cloudhsm/src/commands/ListAvailableZonesCommand.ts index 2c04124612d45..706e5a9709467 100644 --- a/clients/client-cloudhsm/src/commands/ListAvailableZonesCommand.ts +++ b/clients/client-cloudhsm/src/commands/ListAvailableZonesCommand.ts @@ -76,6 +76,7 @@ export interface ListAvailableZonesCommandOutput extends ListAvailableZonesRespo * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class ListAvailableZonesCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/ListHapgsCommand.ts b/clients/client-cloudhsm/src/commands/ListHapgsCommand.ts index d5488690693ff..14806fb3f99af 100644 --- a/clients/client-cloudhsm/src/commands/ListHapgsCommand.ts +++ b/clients/client-cloudhsm/src/commands/ListHapgsCommand.ts @@ -83,6 +83,7 @@ export interface ListHapgsCommandOutput extends ListHapgsResponse, __MetadataBea * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class ListHapgsCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/ListHsmsCommand.ts b/clients/client-cloudhsm/src/commands/ListHsmsCommand.ts index 382f863fde165..f22abb3d2b136 100644 --- a/clients/client-cloudhsm/src/commands/ListHsmsCommand.ts +++ b/clients/client-cloudhsm/src/commands/ListHsmsCommand.ts @@ -84,6 +84,7 @@ export interface ListHsmsCommandOutput extends ListHsmsResponse, __MetadataBeare * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class ListHsmsCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/ListLunaClientsCommand.ts b/clients/client-cloudhsm/src/commands/ListLunaClientsCommand.ts index d4f9b00dbe8f9..258d09a6cb9b5 100644 --- a/clients/client-cloudhsm/src/commands/ListLunaClientsCommand.ts +++ b/clients/client-cloudhsm/src/commands/ListLunaClientsCommand.ts @@ -83,6 +83,7 @@ export interface ListLunaClientsCommandOutput extends ListLunaClientsResponse, _ * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class ListLunaClientsCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/ListTagsForResourceCommand.ts b/clients/client-cloudhsm/src/commands/ListTagsForResourceCommand.ts index 7bc6d2185715a..0d5d25f9f1eaf 100644 --- a/clients/client-cloudhsm/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cloudhsm/src/commands/ListTagsForResourceCommand.ts @@ -81,6 +81,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/ModifyHapgCommand.ts b/clients/client-cloudhsm/src/commands/ModifyHapgCommand.ts index b71ca06fd60ae..9b781ad03fdcb 100644 --- a/clients/client-cloudhsm/src/commands/ModifyHapgCommand.ts +++ b/clients/client-cloudhsm/src/commands/ModifyHapgCommand.ts @@ -80,6 +80,7 @@ export interface ModifyHapgCommandOutput extends ModifyHapgResponse, __MetadataB * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class ModifyHapgCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/ModifyHsmCommand.ts b/clients/client-cloudhsm/src/commands/ModifyHsmCommand.ts index 41f310eab14af..c057a218198be 100644 --- a/clients/client-cloudhsm/src/commands/ModifyHsmCommand.ts +++ b/clients/client-cloudhsm/src/commands/ModifyHsmCommand.ts @@ -87,6 +87,7 @@ export interface ModifyHsmCommandOutput extends ModifyHsmResponse, __MetadataBea * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class ModifyHsmCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/ModifyLunaClientCommand.ts b/clients/client-cloudhsm/src/commands/ModifyLunaClientCommand.ts index 342b2a31e3c4e..a0fbd35ae5d89 100644 --- a/clients/client-cloudhsm/src/commands/ModifyLunaClientCommand.ts +++ b/clients/client-cloudhsm/src/commands/ModifyLunaClientCommand.ts @@ -73,6 +73,7 @@ export interface ModifyLunaClientCommandOutput extends ModifyLunaClientResponse, * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class ModifyLunaClientCommand extends $Command diff --git a/clients/client-cloudhsm/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-cloudhsm/src/commands/RemoveTagsFromResourceCommand.ts index bfaa7890f48e6..c4b866dbc2b79 100644 --- a/clients/client-cloudhsm/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-cloudhsm/src/commands/RemoveTagsFromResourceCommand.ts @@ -81,6 +81,7 @@ export interface RemoveTagsFromResourceCommandOutput extends RemoveTagsFromResou * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* + * * @public */ export class RemoveTagsFromResourceCommand extends $Command diff --git a/clients/client-cloudsearch-domain/src/commands/SearchCommand.ts b/clients/client-cloudsearch-domain/src/commands/SearchCommand.ts index df792faa28edb..5581e46d43481 100644 --- a/clients/client-cloudsearch-domain/src/commands/SearchCommand.ts +++ b/clients/client-cloudsearch-domain/src/commands/SearchCommand.ts @@ -129,6 +129,7 @@ export interface SearchCommandOutput extends SearchResponse, __MetadataBearer {} * @throws {@link CloudSearchDomainServiceException} *

Base exception class for all service exceptions from CloudSearchDomain service.

* + * * @public */ export class SearchCommand extends $Command diff --git a/clients/client-cloudsearch-domain/src/commands/SuggestCommand.ts b/clients/client-cloudsearch-domain/src/commands/SuggestCommand.ts index 1b5e988a6390f..25e231b80150c 100644 --- a/clients/client-cloudsearch-domain/src/commands/SuggestCommand.ts +++ b/clients/client-cloudsearch-domain/src/commands/SuggestCommand.ts @@ -81,6 +81,7 @@ export interface SuggestCommandOutput extends SuggestResponse, __MetadataBearer * @throws {@link CloudSearchDomainServiceException} *

Base exception class for all service exceptions from CloudSearchDomain service.

* + * * @public */ export class SuggestCommand extends $Command diff --git a/clients/client-cloudsearch-domain/src/commands/UploadDocumentsCommand.ts b/clients/client-cloudsearch-domain/src/commands/UploadDocumentsCommand.ts index e4870e65dec1b..ef4c87bd5e4ff 100644 --- a/clients/client-cloudsearch-domain/src/commands/UploadDocumentsCommand.ts +++ b/clients/client-cloudsearch-domain/src/commands/UploadDocumentsCommand.ts @@ -80,6 +80,7 @@ export interface UploadDocumentsCommandOutput extends UploadDocumentsResponse, _ * @throws {@link CloudSearchDomainServiceException} *

Base exception class for all service exceptions from CloudSearchDomain service.

* + * * @public */ export class UploadDocumentsCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/BuildSuggestersCommand.ts b/clients/client-cloudsearch/src/commands/BuildSuggestersCommand.ts index 3dc379cdde11e..3b39b48cf1004 100644 --- a/clients/client-cloudsearch/src/commands/BuildSuggestersCommand.ts +++ b/clients/client-cloudsearch/src/commands/BuildSuggestersCommand.ts @@ -70,6 +70,7 @@ export interface BuildSuggestersCommandOutput extends BuildSuggestersResponse, _ * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class BuildSuggestersCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/CreateDomainCommand.ts b/clients/client-cloudsearch/src/commands/CreateDomainCommand.ts index 5be1f1dc96480..3d30b5f2192ca 100644 --- a/clients/client-cloudsearch/src/commands/CreateDomainCommand.ts +++ b/clients/client-cloudsearch/src/commands/CreateDomainCommand.ts @@ -93,6 +93,7 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class CreateDomainCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DefineAnalysisSchemeCommand.ts b/clients/client-cloudsearch/src/commands/DefineAnalysisSchemeCommand.ts index cd91a9184dd1b..83d9121c0aa61 100644 --- a/clients/client-cloudsearch/src/commands/DefineAnalysisSchemeCommand.ts +++ b/clients/client-cloudsearch/src/commands/DefineAnalysisSchemeCommand.ts @@ -104,6 +104,7 @@ export interface DefineAnalysisSchemeCommandOutput extends DefineAnalysisSchemeR * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DefineAnalysisSchemeCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DefineExpressionCommand.ts b/clients/client-cloudsearch/src/commands/DefineExpressionCommand.ts index c02fcc543291d..cf28876182576 100644 --- a/clients/client-cloudsearch/src/commands/DefineExpressionCommand.ts +++ b/clients/client-cloudsearch/src/commands/DefineExpressionCommand.ts @@ -90,6 +90,7 @@ export interface DefineExpressionCommandOutput extends DefineExpressionResponse, * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DefineExpressionCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DefineIndexFieldCommand.ts b/clients/client-cloudsearch/src/commands/DefineIndexFieldCommand.ts index 89b8cec633d00..8b0d5668293c3 100644 --- a/clients/client-cloudsearch/src/commands/DefineIndexFieldCommand.ts +++ b/clients/client-cloudsearch/src/commands/DefineIndexFieldCommand.ts @@ -256,6 +256,7 @@ export interface DefineIndexFieldCommandOutput extends DefineIndexFieldResponse, * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DefineIndexFieldCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DefineSuggesterCommand.ts b/clients/client-cloudsearch/src/commands/DefineSuggesterCommand.ts index d8ad01fb79f5d..c90064bee0968 100644 --- a/clients/client-cloudsearch/src/commands/DefineSuggesterCommand.ts +++ b/clients/client-cloudsearch/src/commands/DefineSuggesterCommand.ts @@ -98,6 +98,7 @@ export interface DefineSuggesterCommandOutput extends DefineSuggesterResponse, _ * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DefineSuggesterCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DeleteAnalysisSchemeCommand.ts b/clients/client-cloudsearch/src/commands/DeleteAnalysisSchemeCommand.ts index 91d2b003fc767..731d0dfe1ab99 100644 --- a/clients/client-cloudsearch/src/commands/DeleteAnalysisSchemeCommand.ts +++ b/clients/client-cloudsearch/src/commands/DeleteAnalysisSchemeCommand.ts @@ -91,6 +91,7 @@ export interface DeleteAnalysisSchemeCommandOutput extends DeleteAnalysisSchemeR * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DeleteAnalysisSchemeCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DeleteDomainCommand.ts b/clients/client-cloudsearch/src/commands/DeleteDomainCommand.ts index 01d05adc37059..d7fcec76b8da6 100644 --- a/clients/client-cloudsearch/src/commands/DeleteDomainCommand.ts +++ b/clients/client-cloudsearch/src/commands/DeleteDomainCommand.ts @@ -84,6 +84,7 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __Metad * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DeleteDomainCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DeleteExpressionCommand.ts b/clients/client-cloudsearch/src/commands/DeleteExpressionCommand.ts index 99644d6ab0205..f4d0135b73635 100644 --- a/clients/client-cloudsearch/src/commands/DeleteExpressionCommand.ts +++ b/clients/client-cloudsearch/src/commands/DeleteExpressionCommand.ts @@ -84,6 +84,7 @@ export interface DeleteExpressionCommandOutput extends DeleteExpressionResponse, * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DeleteExpressionCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DeleteIndexFieldCommand.ts b/clients/client-cloudsearch/src/commands/DeleteIndexFieldCommand.ts index b7c4ed39243d4..82bc990dce940 100644 --- a/clients/client-cloudsearch/src/commands/DeleteIndexFieldCommand.ts +++ b/clients/client-cloudsearch/src/commands/DeleteIndexFieldCommand.ts @@ -167,6 +167,7 @@ export interface DeleteIndexFieldCommandOutput extends DeleteIndexFieldResponse, * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DeleteIndexFieldCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DeleteSuggesterCommand.ts b/clients/client-cloudsearch/src/commands/DeleteSuggesterCommand.ts index c4296c48e9532..ec15604d41f03 100644 --- a/clients/client-cloudsearch/src/commands/DeleteSuggesterCommand.ts +++ b/clients/client-cloudsearch/src/commands/DeleteSuggesterCommand.ts @@ -88,6 +88,7 @@ export interface DeleteSuggesterCommandOutput extends DeleteSuggesterResponse, _ * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DeleteSuggesterCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DescribeAnalysisSchemesCommand.ts b/clients/client-cloudsearch/src/commands/DescribeAnalysisSchemesCommand.ts index 06a04f3cdd79c..d444f3f4e391a 100644 --- a/clients/client-cloudsearch/src/commands/DescribeAnalysisSchemesCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeAnalysisSchemesCommand.ts @@ -90,6 +90,7 @@ export interface DescribeAnalysisSchemesCommandOutput extends DescribeAnalysisSc * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DescribeAnalysisSchemesCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DescribeAvailabilityOptionsCommand.ts b/clients/client-cloudsearch/src/commands/DescribeAvailabilityOptionsCommand.ts index 397a4085b06bc..2950f1c51fb9e 100644 --- a/clients/client-cloudsearch/src/commands/DescribeAvailabilityOptionsCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeAvailabilityOptionsCommand.ts @@ -86,6 +86,7 @@ export interface DescribeAvailabilityOptionsCommandOutput * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DescribeAvailabilityOptionsCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DescribeDomainEndpointOptionsCommand.ts b/clients/client-cloudsearch/src/commands/DescribeDomainEndpointOptionsCommand.ts index 6e2ab8364ad52..a1c698259e0e1 100644 --- a/clients/client-cloudsearch/src/commands/DescribeDomainEndpointOptionsCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeDomainEndpointOptionsCommand.ts @@ -89,6 +89,7 @@ export interface DescribeDomainEndpointOptionsCommandOutput * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DescribeDomainEndpointOptionsCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DescribeDomainsCommand.ts b/clients/client-cloudsearch/src/commands/DescribeDomainsCommand.ts index 0d408bf8161e4..509208291fdb1 100644 --- a/clients/client-cloudsearch/src/commands/DescribeDomainsCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeDomainsCommand.ts @@ -89,6 +89,7 @@ export interface DescribeDomainsCommandOutput extends DescribeDomainsResponse, _ * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DescribeDomainsCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DescribeExpressionsCommand.ts b/clients/client-cloudsearch/src/commands/DescribeExpressionsCommand.ts index d97387dc5a781..869f9aad9587f 100644 --- a/clients/client-cloudsearch/src/commands/DescribeExpressionsCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeExpressionsCommand.ts @@ -83,6 +83,7 @@ export interface DescribeExpressionsCommandOutput extends DescribeExpressionsRes * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DescribeExpressionsCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DescribeIndexFieldsCommand.ts b/clients/client-cloudsearch/src/commands/DescribeIndexFieldsCommand.ts index cfae4b02d6f4a..53ba62eb33d1f 100644 --- a/clients/client-cloudsearch/src/commands/DescribeIndexFieldsCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeIndexFieldsCommand.ts @@ -168,6 +168,7 @@ export interface DescribeIndexFieldsCommandOutput extends DescribeIndexFieldsRes * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DescribeIndexFieldsCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DescribeScalingParametersCommand.ts b/clients/client-cloudsearch/src/commands/DescribeScalingParametersCommand.ts index e12ffcdcdf3e1..5d8f5323feed6 100644 --- a/clients/client-cloudsearch/src/commands/DescribeScalingParametersCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeScalingParametersCommand.ts @@ -78,6 +78,7 @@ export interface DescribeScalingParametersCommandOutput extends DescribeScalingP * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DescribeScalingParametersCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DescribeServiceAccessPoliciesCommand.ts b/clients/client-cloudsearch/src/commands/DescribeServiceAccessPoliciesCommand.ts index 905bb14cec2dc..163fbe38cc94a 100644 --- a/clients/client-cloudsearch/src/commands/DescribeServiceAccessPoliciesCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeServiceAccessPoliciesCommand.ts @@ -81,6 +81,7 @@ export interface DescribeServiceAccessPoliciesCommandOutput * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DescribeServiceAccessPoliciesCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/DescribeSuggestersCommand.ts b/clients/client-cloudsearch/src/commands/DescribeSuggestersCommand.ts index 8db70992ebf14..a7a836086199a 100644 --- a/clients/client-cloudsearch/src/commands/DescribeSuggestersCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeSuggestersCommand.ts @@ -87,6 +87,7 @@ export interface DescribeSuggestersCommandOutput extends DescribeSuggestersRespo * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class DescribeSuggestersCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/IndexDocumentsCommand.ts b/clients/client-cloudsearch/src/commands/IndexDocumentsCommand.ts index af08c473adf0e..d1834a431e0b3 100644 --- a/clients/client-cloudsearch/src/commands/IndexDocumentsCommand.ts +++ b/clients/client-cloudsearch/src/commands/IndexDocumentsCommand.ts @@ -70,6 +70,7 @@ export interface IndexDocumentsCommandOutput extends IndexDocumentsResponse, __M * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class IndexDocumentsCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/ListDomainNamesCommand.ts b/clients/client-cloudsearch/src/commands/ListDomainNamesCommand.ts index 8f336b3c2e41f..50dc57392462f 100644 --- a/clients/client-cloudsearch/src/commands/ListDomainNamesCommand.ts +++ b/clients/client-cloudsearch/src/commands/ListDomainNamesCommand.ts @@ -58,6 +58,7 @@ export interface ListDomainNamesCommandOutput extends ListDomainNamesResponse, _ * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class ListDomainNamesCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/UpdateAvailabilityOptionsCommand.ts b/clients/client-cloudsearch/src/commands/UpdateAvailabilityOptionsCommand.ts index 9f24931ad2ffd..a8b6681b943a0 100644 --- a/clients/client-cloudsearch/src/commands/UpdateAvailabilityOptionsCommand.ts +++ b/clients/client-cloudsearch/src/commands/UpdateAvailabilityOptionsCommand.ts @@ -87,6 +87,7 @@ export interface UpdateAvailabilityOptionsCommandOutput extends UpdateAvailabili * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class UpdateAvailabilityOptionsCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/UpdateDomainEndpointOptionsCommand.ts b/clients/client-cloudsearch/src/commands/UpdateDomainEndpointOptionsCommand.ts index 94708c96b3830..a6f7ed44c31cd 100644 --- a/clients/client-cloudsearch/src/commands/UpdateDomainEndpointOptionsCommand.ts +++ b/clients/client-cloudsearch/src/commands/UpdateDomainEndpointOptionsCommand.ts @@ -95,6 +95,7 @@ export interface UpdateDomainEndpointOptionsCommandOutput * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class UpdateDomainEndpointOptionsCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/UpdateScalingParametersCommand.ts b/clients/client-cloudsearch/src/commands/UpdateScalingParametersCommand.ts index 96c9f0e15894a..9adbdad43cd2a 100644 --- a/clients/client-cloudsearch/src/commands/UpdateScalingParametersCommand.ts +++ b/clients/client-cloudsearch/src/commands/UpdateScalingParametersCommand.ts @@ -92,6 +92,7 @@ export interface UpdateScalingParametersCommandOutput extends UpdateScalingParam * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class UpdateScalingParametersCommand extends $Command diff --git a/clients/client-cloudsearch/src/commands/UpdateServiceAccessPoliciesCommand.ts b/clients/client-cloudsearch/src/commands/UpdateServiceAccessPoliciesCommand.ts index 70934200d4ff4..ec7ff8386c41b 100644 --- a/clients/client-cloudsearch/src/commands/UpdateServiceAccessPoliciesCommand.ts +++ b/clients/client-cloudsearch/src/commands/UpdateServiceAccessPoliciesCommand.ts @@ -88,6 +88,7 @@ export interface UpdateServiceAccessPoliciesCommandOutput * @throws {@link CloudSearchServiceException} *

Base exception class for all service exceptions from CloudSearch service.

* + * * @public */ export class UpdateServiceAccessPoliciesCommand extends $Command diff --git a/clients/client-cloudtrail-data/src/commands/PutAuditEventsCommand.ts b/clients/client-cloudtrail-data/src/commands/PutAuditEventsCommand.ts index 3318fad1abec4..3e117858e6733 100644 --- a/clients/client-cloudtrail-data/src/commands/PutAuditEventsCommand.ts +++ b/clients/client-cloudtrail-data/src/commands/PutAuditEventsCommand.ts @@ -98,6 +98,7 @@ export interface PutAuditEventsCommandOutput extends PutAuditEventsResponse, __M * @throws {@link CloudTrailDataServiceException} *

Base exception class for all service exceptions from CloudTrailData service.

* + * * @public */ export class PutAuditEventsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/AddTagsCommand.ts b/clients/client-cloudtrail/src/commands/AddTagsCommand.ts index b29b8a6af73b1..e6ee66bd1587c 100644 --- a/clients/client-cloudtrail/src/commands/AddTagsCommand.ts +++ b/clients/client-cloudtrail/src/commands/AddTagsCommand.ts @@ -153,6 +153,7 @@ export interface AddTagsCommandOutput extends AddTagsResponse, __MetadataBearer * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class AddTagsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/CancelQueryCommand.ts b/clients/client-cloudtrail/src/commands/CancelQueryCommand.ts index 1f4f0638c29e4..1d1e97131b2a2 100644 --- a/clients/client-cloudtrail/src/commands/CancelQueryCommand.ts +++ b/clients/client-cloudtrail/src/commands/CancelQueryCommand.ts @@ -100,6 +100,7 @@ export interface CancelQueryCommandOutput extends CancelQueryResponse, __Metadat * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class CancelQueryCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/CreateChannelCommand.ts b/clients/client-cloudtrail/src/commands/CreateChannelCommand.ts index 11a026a809959..8d21dd521c797 100644 --- a/clients/client-cloudtrail/src/commands/CreateChannelCommand.ts +++ b/clients/client-cloudtrail/src/commands/CreateChannelCommand.ts @@ -128,6 +128,7 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class CreateChannelCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/CreateDashboardCommand.ts b/clients/client-cloudtrail/src/commands/CreateDashboardCommand.ts index 614bf0ab24f72..43c60363b3135 100644 --- a/clients/client-cloudtrail/src/commands/CreateDashboardCommand.ts +++ b/clients/client-cloudtrail/src/commands/CreateDashboardCommand.ts @@ -173,6 +173,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _ * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class CreateDashboardCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/CreateEventDataStoreCommand.ts b/clients/client-cloudtrail/src/commands/CreateEventDataStoreCommand.ts index b7a21471fabd9..eab4320c333ee 100644 --- a/clients/client-cloudtrail/src/commands/CreateEventDataStoreCommand.ts +++ b/clients/client-cloudtrail/src/commands/CreateEventDataStoreCommand.ts @@ -238,6 +238,7 @@ export interface CreateEventDataStoreCommandOutput extends CreateEventDataStoreR * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class CreateEventDataStoreCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/CreateTrailCommand.ts b/clients/client-cloudtrail/src/commands/CreateTrailCommand.ts index 20585722fb4e7..854a26ff533d0 100644 --- a/clients/client-cloudtrail/src/commands/CreateTrailCommand.ts +++ b/clients/client-cloudtrail/src/commands/CreateTrailCommand.ts @@ -232,6 +232,7 @@ export interface CreateTrailCommandOutput extends CreateTrailResponse, __Metadat * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class CreateTrailCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/DeleteChannelCommand.ts b/clients/client-cloudtrail/src/commands/DeleteChannelCommand.ts index dea117363b959..52ad509f7414b 100644 --- a/clients/client-cloudtrail/src/commands/DeleteChannelCommand.ts +++ b/clients/client-cloudtrail/src/commands/DeleteChannelCommand.ts @@ -66,6 +66,7 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class DeleteChannelCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/DeleteDashboardCommand.ts b/clients/client-cloudtrail/src/commands/DeleteDashboardCommand.ts index ffbe1069bfd5a..2c38c0e89e9df 100644 --- a/clients/client-cloudtrail/src/commands/DeleteDashboardCommand.ts +++ b/clients/client-cloudtrail/src/commands/DeleteDashboardCommand.ts @@ -67,6 +67,7 @@ export interface DeleteDashboardCommandOutput extends DeleteDashboardResponse, _ * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class DeleteDashboardCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/DeleteEventDataStoreCommand.ts b/clients/client-cloudtrail/src/commands/DeleteEventDataStoreCommand.ts index 8e5966439a171..57e4ffdc46dc1 100644 --- a/clients/client-cloudtrail/src/commands/DeleteEventDataStoreCommand.ts +++ b/clients/client-cloudtrail/src/commands/DeleteEventDataStoreCommand.ts @@ -120,6 +120,7 @@ export interface DeleteEventDataStoreCommandOutput extends DeleteEventDataStoreR * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class DeleteEventDataStoreCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-cloudtrail/src/commands/DeleteResourcePolicyCommand.ts index d59c799c89cbe..bc55d7dbd8e73 100644 --- a/clients/client-cloudtrail/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-cloudtrail/src/commands/DeleteResourcePolicyCommand.ts @@ -91,6 +91,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/DeleteTrailCommand.ts b/clients/client-cloudtrail/src/commands/DeleteTrailCommand.ts index df8801d7b6380..c5bc83b3b256c 100644 --- a/clients/client-cloudtrail/src/commands/DeleteTrailCommand.ts +++ b/clients/client-cloudtrail/src/commands/DeleteTrailCommand.ts @@ -129,6 +129,7 @@ export interface DeleteTrailCommandOutput extends DeleteTrailResponse, __Metadat * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class DeleteTrailCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/DeregisterOrganizationDelegatedAdminCommand.ts b/clients/client-cloudtrail/src/commands/DeregisterOrganizationDelegatedAdminCommand.ts index b54be998004cf..a884db7fd2738 100644 --- a/clients/client-cloudtrail/src/commands/DeregisterOrganizationDelegatedAdminCommand.ts +++ b/clients/client-cloudtrail/src/commands/DeregisterOrganizationDelegatedAdminCommand.ts @@ -106,6 +106,7 @@ export interface DeregisterOrganizationDelegatedAdminCommandOutput * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class DeregisterOrganizationDelegatedAdminCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/DescribeQueryCommand.ts b/clients/client-cloudtrail/src/commands/DescribeQueryCommand.ts index 3f276456a66cc..890d7736ccc9a 100644 --- a/clients/client-cloudtrail/src/commands/DescribeQueryCommand.ts +++ b/clients/client-cloudtrail/src/commands/DescribeQueryCommand.ts @@ -105,6 +105,7 @@ export interface DescribeQueryCommandOutput extends DescribeQueryResponse, __Met * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class DescribeQueryCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/DescribeTrailsCommand.ts b/clients/client-cloudtrail/src/commands/DescribeTrailsCommand.ts index ac4535b2dcf48..d393ed2b0db1d 100644 --- a/clients/client-cloudtrail/src/commands/DescribeTrailsCommand.ts +++ b/clients/client-cloudtrail/src/commands/DescribeTrailsCommand.ts @@ -124,6 +124,7 @@ export interface DescribeTrailsCommandOutput extends DescribeTrailsResponse, __M * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class DescribeTrailsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/DisableFederationCommand.ts b/clients/client-cloudtrail/src/commands/DisableFederationCommand.ts index 1347f003319ed..71246342e5217 100644 --- a/clients/client-cloudtrail/src/commands/DisableFederationCommand.ts +++ b/clients/client-cloudtrail/src/commands/DisableFederationCommand.ts @@ -116,6 +116,7 @@ export interface DisableFederationCommandOutput extends DisableFederationRespons * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class DisableFederationCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/EnableFederationCommand.ts b/clients/client-cloudtrail/src/commands/EnableFederationCommand.ts index 9c20908471054..68638dd6dfc53 100644 --- a/clients/client-cloudtrail/src/commands/EnableFederationCommand.ts +++ b/clients/client-cloudtrail/src/commands/EnableFederationCommand.ts @@ -130,6 +130,7 @@ export interface EnableFederationCommandOutput extends EnableFederationResponse, * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class EnableFederationCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/GenerateQueryCommand.ts b/clients/client-cloudtrail/src/commands/GenerateQueryCommand.ts index 98ab2468e2b9e..b9bbf0442ad73 100644 --- a/clients/client-cloudtrail/src/commands/GenerateQueryCommand.ts +++ b/clients/client-cloudtrail/src/commands/GenerateQueryCommand.ts @@ -103,6 +103,7 @@ export interface GenerateQueryCommandOutput extends GenerateQueryResponse, __Met * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class GenerateQueryCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/GetChannelCommand.ts b/clients/client-cloudtrail/src/commands/GetChannelCommand.ts index e42cb4d2312eb..72eedf5f997c1 100644 --- a/clients/client-cloudtrail/src/commands/GetChannelCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetChannelCommand.ts @@ -113,6 +113,7 @@ export interface GetChannelCommandOutput extends GetChannelResponse, __MetadataB * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class GetChannelCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/GetDashboardCommand.ts b/clients/client-cloudtrail/src/commands/GetDashboardCommand.ts index 16821b66259ff..6857cb2e26efa 100644 --- a/clients/client-cloudtrail/src/commands/GetDashboardCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetDashboardCommand.ts @@ -90,6 +90,7 @@ export interface GetDashboardCommandOutput extends GetDashboardResponse, __Metad * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class GetDashboardCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/GetEventDataStoreCommand.ts b/clients/client-cloudtrail/src/commands/GetEventDataStoreCommand.ts index 1e4bf9a8e4624..69b6cd7f3989e 100644 --- a/clients/client-cloudtrail/src/commands/GetEventDataStoreCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetEventDataStoreCommand.ts @@ -120,6 +120,7 @@ export interface GetEventDataStoreCommandOutput extends GetEventDataStoreRespons * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class GetEventDataStoreCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/GetEventSelectorsCommand.ts b/clients/client-cloudtrail/src/commands/GetEventSelectorsCommand.ts index b9bd214727b8e..622b9338c6cf5 100644 --- a/clients/client-cloudtrail/src/commands/GetEventSelectorsCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetEventSelectorsCommand.ts @@ -184,6 +184,7 @@ export interface GetEventSelectorsCommandOutput extends GetEventSelectorsRespons * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class GetEventSelectorsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/GetImportCommand.ts b/clients/client-cloudtrail/src/commands/GetImportCommand.ts index ba3d6251dd9d9..62d6700e14463 100644 --- a/clients/client-cloudtrail/src/commands/GetImportCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetImportCommand.ts @@ -89,6 +89,7 @@ export interface GetImportCommandOutput extends GetImportResponse, __MetadataBea * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class GetImportCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/GetInsightSelectorsCommand.ts b/clients/client-cloudtrail/src/commands/GetInsightSelectorsCommand.ts index 66b909deaf7c7..7fa8e099ea729 100644 --- a/clients/client-cloudtrail/src/commands/GetInsightSelectorsCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetInsightSelectorsCommand.ts @@ -137,6 +137,7 @@ export interface GetInsightSelectorsCommandOutput extends GetInsightSelectorsRes * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class GetInsightSelectorsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/GetQueryResultsCommand.ts b/clients/client-cloudtrail/src/commands/GetQueryResultsCommand.ts index cff5bdd8e3f38..f1048af40a4b6 100644 --- a/clients/client-cloudtrail/src/commands/GetQueryResultsCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetQueryResultsCommand.ts @@ -115,6 +115,7 @@ export interface GetQueryResultsCommandOutput extends GetQueryResultsResponse, _ * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class GetQueryResultsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/GetResourcePolicyCommand.ts b/clients/client-cloudtrail/src/commands/GetResourcePolicyCommand.ts index 0dd6d5ca2052c..2b820279d655e 100644 --- a/clients/client-cloudtrail/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetResourcePolicyCommand.ts @@ -89,6 +89,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/GetTrailCommand.ts b/clients/client-cloudtrail/src/commands/GetTrailCommand.ts index dd61f7c0ff955..3a3b0f5ca3a53 100644 --- a/clients/client-cloudtrail/src/commands/GetTrailCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetTrailCommand.ts @@ -117,6 +117,7 @@ export interface GetTrailCommandOutput extends GetTrailResponse, __MetadataBeare * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class GetTrailCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/GetTrailStatusCommand.ts b/clients/client-cloudtrail/src/commands/GetTrailStatusCommand.ts index 413250853dc20..38d7704dd416d 100644 --- a/clients/client-cloudtrail/src/commands/GetTrailStatusCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetTrailStatusCommand.ts @@ -120,6 +120,7 @@ export interface GetTrailStatusCommandOutput extends GetTrailStatusResponse, __M * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class GetTrailStatusCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/ListChannelsCommand.ts b/clients/client-cloudtrail/src/commands/ListChannelsCommand.ts index d63596a4a68e1..f8688396ffa9e 100644 --- a/clients/client-cloudtrail/src/commands/ListChannelsCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListChannelsCommand.ts @@ -73,6 +73,7 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class ListChannelsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/ListDashboardsCommand.ts b/clients/client-cloudtrail/src/commands/ListDashboardsCommand.ts index 63670eb507d2a..b44804d683dd4 100644 --- a/clients/client-cloudtrail/src/commands/ListDashboardsCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListDashboardsCommand.ts @@ -69,6 +69,7 @@ export interface ListDashboardsCommandOutput extends ListDashboardsResponse, __M * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class ListDashboardsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/ListEventDataStoresCommand.ts b/clients/client-cloudtrail/src/commands/ListEventDataStoresCommand.ts index 8a9e64cc7246a..cc82379407d43 100644 --- a/clients/client-cloudtrail/src/commands/ListEventDataStoresCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListEventDataStoresCommand.ts @@ -113,6 +113,7 @@ export interface ListEventDataStoresCommandOutput extends ListEventDataStoresRes * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class ListEventDataStoresCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/ListImportFailuresCommand.ts b/clients/client-cloudtrail/src/commands/ListImportFailuresCommand.ts index f645bff71782f..8e64ce18075ae 100644 --- a/clients/client-cloudtrail/src/commands/ListImportFailuresCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListImportFailuresCommand.ts @@ -79,6 +79,7 @@ export interface ListImportFailuresCommandOutput extends ListImportFailuresRespo * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class ListImportFailuresCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/ListImportsCommand.ts b/clients/client-cloudtrail/src/commands/ListImportsCommand.ts index b7ce8b03b1031..587086b6830b0 100644 --- a/clients/client-cloudtrail/src/commands/ListImportsCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListImportsCommand.ts @@ -87,6 +87,7 @@ export interface ListImportsCommandOutput extends ListImportsResponse, __Metadat * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class ListImportsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/ListInsightsMetricDataCommand.ts b/clients/client-cloudtrail/src/commands/ListInsightsMetricDataCommand.ts index e2be0729112ba..4a1a7485f7fae 100644 --- a/clients/client-cloudtrail/src/commands/ListInsightsMetricDataCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListInsightsMetricDataCommand.ts @@ -99,6 +99,7 @@ export interface ListInsightsMetricDataCommandOutput extends ListInsightsMetricD * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class ListInsightsMetricDataCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/ListPublicKeysCommand.ts b/clients/client-cloudtrail/src/commands/ListPublicKeysCommand.ts index 1385ed5a83c06..f7b5a49123597 100644 --- a/clients/client-cloudtrail/src/commands/ListPublicKeysCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListPublicKeysCommand.ts @@ -86,6 +86,7 @@ export interface ListPublicKeysCommandOutput extends ListPublicKeysResponse, __M * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class ListPublicKeysCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/ListQueriesCommand.ts b/clients/client-cloudtrail/src/commands/ListQueriesCommand.ts index 2859b1fe9e72c..d0d00998d8939 100644 --- a/clients/client-cloudtrail/src/commands/ListQueriesCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListQueriesCommand.ts @@ -111,6 +111,7 @@ export interface ListQueriesCommandOutput extends ListQueriesResponse, __Metadat * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class ListQueriesCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/ListTagsCommand.ts b/clients/client-cloudtrail/src/commands/ListTagsCommand.ts index 62df1e043c057..f9cd9125f7d4e 100644 --- a/clients/client-cloudtrail/src/commands/ListTagsCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListTagsCommand.ts @@ -138,6 +138,7 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class ListTagsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/ListTrailsCommand.ts b/clients/client-cloudtrail/src/commands/ListTrailsCommand.ts index 7fa82cf8e4225..cb809f1bef95c 100644 --- a/clients/client-cloudtrail/src/commands/ListTrailsCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListTrailsCommand.ts @@ -68,6 +68,7 @@ export interface ListTrailsCommandOutput extends ListTrailsResponse, __MetadataB * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class ListTrailsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/LookupEventsCommand.ts b/clients/client-cloudtrail/src/commands/LookupEventsCommand.ts index 1d7f9011413b7..e4ce6d4f1dabd 100644 --- a/clients/client-cloudtrail/src/commands/LookupEventsCommand.ts +++ b/clients/client-cloudtrail/src/commands/LookupEventsCommand.ts @@ -159,6 +159,7 @@ export interface LookupEventsCommandOutput extends LookupEventsResponse, __Metad * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class LookupEventsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/PutEventSelectorsCommand.ts b/clients/client-cloudtrail/src/commands/PutEventSelectorsCommand.ts index ee64026a6aed3..26663557ce57a 100644 --- a/clients/client-cloudtrail/src/commands/PutEventSelectorsCommand.ts +++ b/clients/client-cloudtrail/src/commands/PutEventSelectorsCommand.ts @@ -309,6 +309,7 @@ export interface PutEventSelectorsCommandOutput extends PutEventSelectorsRespons * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class PutEventSelectorsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/PutInsightSelectorsCommand.ts b/clients/client-cloudtrail/src/commands/PutInsightSelectorsCommand.ts index b7a3b8dfe8d89..fe89e569cf7cf 100644 --- a/clients/client-cloudtrail/src/commands/PutInsightSelectorsCommand.ts +++ b/clients/client-cloudtrail/src/commands/PutInsightSelectorsCommand.ts @@ -183,6 +183,7 @@ export interface PutInsightSelectorsCommandOutput extends PutInsightSelectorsRes * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class PutInsightSelectorsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/PutResourcePolicyCommand.ts b/clients/client-cloudtrail/src/commands/PutResourcePolicyCommand.ts index 84a86f2971c43..22e7f5c071705 100644 --- a/clients/client-cloudtrail/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-cloudtrail/src/commands/PutResourcePolicyCommand.ts @@ -98,6 +98,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/RegisterOrganizationDelegatedAdminCommand.ts b/clients/client-cloudtrail/src/commands/RegisterOrganizationDelegatedAdminCommand.ts index 97059f361af0a..bff6cd06284c7 100644 --- a/clients/client-cloudtrail/src/commands/RegisterOrganizationDelegatedAdminCommand.ts +++ b/clients/client-cloudtrail/src/commands/RegisterOrganizationDelegatedAdminCommand.ts @@ -114,6 +114,7 @@ export interface RegisterOrganizationDelegatedAdminCommandOutput * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class RegisterOrganizationDelegatedAdminCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/RemoveTagsCommand.ts b/clients/client-cloudtrail/src/commands/RemoveTagsCommand.ts index 1d1d122841963..2b402704c02bb 100644 --- a/clients/client-cloudtrail/src/commands/RemoveTagsCommand.ts +++ b/clients/client-cloudtrail/src/commands/RemoveTagsCommand.ts @@ -143,6 +143,7 @@ export interface RemoveTagsCommandOutput extends RemoveTagsResponse, __MetadataB * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class RemoveTagsCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/RestoreEventDataStoreCommand.ts b/clients/client-cloudtrail/src/commands/RestoreEventDataStoreCommand.ts index a1e9fce47a39c..0a1a63c367b55 100644 --- a/clients/client-cloudtrail/src/commands/RestoreEventDataStoreCommand.ts +++ b/clients/client-cloudtrail/src/commands/RestoreEventDataStoreCommand.ts @@ -143,6 +143,7 @@ export interface RestoreEventDataStoreCommandOutput extends RestoreEventDataStor * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class RestoreEventDataStoreCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/SearchSampleQueriesCommand.ts b/clients/client-cloudtrail/src/commands/SearchSampleQueriesCommand.ts index ab2126f2c1a85..3ebb7890e9b20 100644 --- a/clients/client-cloudtrail/src/commands/SearchSampleQueriesCommand.ts +++ b/clients/client-cloudtrail/src/commands/SearchSampleQueriesCommand.ts @@ -77,6 +77,7 @@ export interface SearchSampleQueriesCommandOutput extends SearchSampleQueriesRes * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class SearchSampleQueriesCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/StartDashboardRefreshCommand.ts b/clients/client-cloudtrail/src/commands/StartDashboardRefreshCommand.ts index 33769f2f52a9d..a86decca401cc 100644 --- a/clients/client-cloudtrail/src/commands/StartDashboardRefreshCommand.ts +++ b/clients/client-cloudtrail/src/commands/StartDashboardRefreshCommand.ts @@ -82,6 +82,7 @@ export interface StartDashboardRefreshCommandOutput extends StartDashboardRefres * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class StartDashboardRefreshCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/StartEventDataStoreIngestionCommand.ts b/clients/client-cloudtrail/src/commands/StartEventDataStoreIngestionCommand.ts index d2379a84c96e8..9b3c4645d6df4 100644 --- a/clients/client-cloudtrail/src/commands/StartEventDataStoreIngestionCommand.ts +++ b/clients/client-cloudtrail/src/commands/StartEventDataStoreIngestionCommand.ts @@ -96,6 +96,7 @@ export interface StartEventDataStoreIngestionCommandOutput * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class StartEventDataStoreIngestionCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/StartImportCommand.ts b/clients/client-cloudtrail/src/commands/StartImportCommand.ts index 78d96d9a994f5..573dee6045a25 100644 --- a/clients/client-cloudtrail/src/commands/StartImportCommand.ts +++ b/clients/client-cloudtrail/src/commands/StartImportCommand.ts @@ -143,6 +143,7 @@ export interface StartImportCommandOutput extends StartImportResponse, __Metadat * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class StartImportCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/StartLoggingCommand.ts b/clients/client-cloudtrail/src/commands/StartLoggingCommand.ts index 1d4eadf4b1d08..06904bb609423 100644 --- a/clients/client-cloudtrail/src/commands/StartLoggingCommand.ts +++ b/clients/client-cloudtrail/src/commands/StartLoggingCommand.ts @@ -130,6 +130,7 @@ export interface StartLoggingCommandOutput extends StartLoggingResponse, __Metad * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class StartLoggingCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/StartQueryCommand.ts b/clients/client-cloudtrail/src/commands/StartQueryCommand.ts index 5e33785ec41fa..9d98aeb674d63 100644 --- a/clients/client-cloudtrail/src/commands/StartQueryCommand.ts +++ b/clients/client-cloudtrail/src/commands/StartQueryCommand.ts @@ -120,6 +120,7 @@ export interface StartQueryCommandOutput extends StartQueryResponse, __MetadataB * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class StartQueryCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/StopEventDataStoreIngestionCommand.ts b/clients/client-cloudtrail/src/commands/StopEventDataStoreIngestionCommand.ts index c16b8730d80fc..7694c96e6dac2 100644 --- a/clients/client-cloudtrail/src/commands/StopEventDataStoreIngestionCommand.ts +++ b/clients/client-cloudtrail/src/commands/StopEventDataStoreIngestionCommand.ts @@ -93,6 +93,7 @@ export interface StopEventDataStoreIngestionCommandOutput * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class StopEventDataStoreIngestionCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/StopImportCommand.ts b/clients/client-cloudtrail/src/commands/StopImportCommand.ts index cd6795d6e6a87..0ccbbf95634f0 100644 --- a/clients/client-cloudtrail/src/commands/StopImportCommand.ts +++ b/clients/client-cloudtrail/src/commands/StopImportCommand.ts @@ -89,6 +89,7 @@ export interface StopImportCommandOutput extends StopImportResponse, __MetadataB * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class StopImportCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/StopLoggingCommand.ts b/clients/client-cloudtrail/src/commands/StopLoggingCommand.ts index 00f555a3081c9..f7fbc26d1c89b 100644 --- a/clients/client-cloudtrail/src/commands/StopLoggingCommand.ts +++ b/clients/client-cloudtrail/src/commands/StopLoggingCommand.ts @@ -133,6 +133,7 @@ export interface StopLoggingCommandOutput extends StopLoggingResponse, __Metadat * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class StopLoggingCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/UpdateChannelCommand.ts b/clients/client-cloudtrail/src/commands/UpdateChannelCommand.ts index 02a074885e957..8bc9eaa5b26d5 100644 --- a/clients/client-cloudtrail/src/commands/UpdateChannelCommand.ts +++ b/clients/client-cloudtrail/src/commands/UpdateChannelCommand.ts @@ -105,6 +105,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class UpdateChannelCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/UpdateDashboardCommand.ts b/clients/client-cloudtrail/src/commands/UpdateDashboardCommand.ts index 0b1230a98de29..41aed19500457 100644 --- a/clients/client-cloudtrail/src/commands/UpdateDashboardCommand.ts +++ b/clients/client-cloudtrail/src/commands/UpdateDashboardCommand.ts @@ -148,6 +148,7 @@ export interface UpdateDashboardCommandOutput extends UpdateDashboardResponse, _ * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class UpdateDashboardCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/UpdateEventDataStoreCommand.ts b/clients/client-cloudtrail/src/commands/UpdateEventDataStoreCommand.ts index a62589f2ae3e7..b098df575ee15 100644 --- a/clients/client-cloudtrail/src/commands/UpdateEventDataStoreCommand.ts +++ b/clients/client-cloudtrail/src/commands/UpdateEventDataStoreCommand.ts @@ -249,6 +249,7 @@ export interface UpdateEventDataStoreCommandOutput extends UpdateEventDataStoreR * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class UpdateEventDataStoreCommand extends $Command diff --git a/clients/client-cloudtrail/src/commands/UpdateTrailCommand.ts b/clients/client-cloudtrail/src/commands/UpdateTrailCommand.ts index 1b9b24b28881b..958ed71e9176a 100644 --- a/clients/client-cloudtrail/src/commands/UpdateTrailCommand.ts +++ b/clients/client-cloudtrail/src/commands/UpdateTrailCommand.ts @@ -266,6 +266,7 @@ export interface UpdateTrailCommandOutput extends UpdateTrailResponse, __Metadat * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* + * * @public */ export class UpdateTrailCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/ActivateEventSourceCommand.ts b/clients/client-cloudwatch-events/src/commands/ActivateEventSourceCommand.ts index 67061923ad888..91083527bf724 100644 --- a/clients/client-cloudwatch-events/src/commands/ActivateEventSourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ActivateEventSourceCommand.ts @@ -69,6 +69,7 @@ export interface ActivateEventSourceCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class ActivateEventSourceCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/CancelReplayCommand.ts b/clients/client-cloudwatch-events/src/commands/CancelReplayCommand.ts index 5b17cc5c3beb8..f015069b6a349 100644 --- a/clients/client-cloudwatch-events/src/commands/CancelReplayCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/CancelReplayCommand.ts @@ -70,6 +70,7 @@ export interface CancelReplayCommandOutput extends CancelReplayResponse, __Metad * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class CancelReplayCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/CreateApiDestinationCommand.ts b/clients/client-cloudwatch-events/src/commands/CreateApiDestinationCommand.ts index 1a152287f29ea..2823232bd2b1d 100644 --- a/clients/client-cloudwatch-events/src/commands/CreateApiDestinationCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/CreateApiDestinationCommand.ts @@ -77,6 +77,7 @@ export interface CreateApiDestinationCommandOutput extends CreateApiDestinationR * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class CreateApiDestinationCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/CreateArchiveCommand.ts b/clients/client-cloudwatch-events/src/commands/CreateArchiveCommand.ts index eb169e7988d3d..8059617cf266d 100644 --- a/clients/client-cloudwatch-events/src/commands/CreateArchiveCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/CreateArchiveCommand.ts @@ -85,6 +85,7 @@ export interface CreateArchiveCommandOutput extends CreateArchiveResponse, __Met * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class CreateArchiveCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/CreateConnectionCommand.ts b/clients/client-cloudwatch-events/src/commands/CreateConnectionCommand.ts index 4fa6ca1437522..be07c4494afcc 100644 --- a/clients/client-cloudwatch-events/src/commands/CreateConnectionCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/CreateConnectionCommand.ts @@ -139,6 +139,7 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse, * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class CreateConnectionCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/CreateEventBusCommand.ts b/clients/client-cloudwatch-events/src/commands/CreateEventBusCommand.ts index f617f9102c7a9..ec2e9e8f76d6f 100644 --- a/clients/client-cloudwatch-events/src/commands/CreateEventBusCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/CreateEventBusCommand.ts @@ -86,6 +86,7 @@ export interface CreateEventBusCommandOutput extends CreateEventBusResponse, __M * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class CreateEventBusCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/CreatePartnerEventSourceCommand.ts b/clients/client-cloudwatch-events/src/commands/CreatePartnerEventSourceCommand.ts index ebf414d9672a8..f4851c339956b 100644 --- a/clients/client-cloudwatch-events/src/commands/CreatePartnerEventSourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/CreatePartnerEventSourceCommand.ts @@ -95,6 +95,7 @@ export interface CreatePartnerEventSourceCommandOutput extends CreatePartnerEven * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class CreatePartnerEventSourceCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DeactivateEventSourceCommand.ts b/clients/client-cloudwatch-events/src/commands/DeactivateEventSourceCommand.ts index bf36ab20e3962..4797c16bc8126 100644 --- a/clients/client-cloudwatch-events/src/commands/DeactivateEventSourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeactivateEventSourceCommand.ts @@ -72,6 +72,7 @@ export interface DeactivateEventSourceCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DeactivateEventSourceCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DeauthorizeConnectionCommand.ts b/clients/client-cloudwatch-events/src/commands/DeauthorizeConnectionCommand.ts index f1ca601d1c5bc..f1c686fdd003b 100644 --- a/clients/client-cloudwatch-events/src/commands/DeauthorizeConnectionCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeauthorizeConnectionCommand.ts @@ -69,6 +69,7 @@ export interface DeauthorizeConnectionCommandOutput extends DeauthorizeConnectio * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DeauthorizeConnectionCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DeleteApiDestinationCommand.ts b/clients/client-cloudwatch-events/src/commands/DeleteApiDestinationCommand.ts index d8ad15c5afd5a..83d317b0ecd76 100644 --- a/clients/client-cloudwatch-events/src/commands/DeleteApiDestinationCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeleteApiDestinationCommand.ts @@ -62,6 +62,7 @@ export interface DeleteApiDestinationCommandOutput extends DeleteApiDestinationR * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DeleteApiDestinationCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DeleteArchiveCommand.ts b/clients/client-cloudwatch-events/src/commands/DeleteArchiveCommand.ts index 5f3068c3951aa..8cf82ee91b3be 100644 --- a/clients/client-cloudwatch-events/src/commands/DeleteArchiveCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeleteArchiveCommand.ts @@ -62,6 +62,7 @@ export interface DeleteArchiveCommandOutput extends DeleteArchiveResponse, __Met * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DeleteArchiveCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DeleteConnectionCommand.ts b/clients/client-cloudwatch-events/src/commands/DeleteConnectionCommand.ts index 9e81d22e095a9..2462120084b02 100644 --- a/clients/client-cloudwatch-events/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeleteConnectionCommand.ts @@ -68,6 +68,7 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse, * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DeleteConnectionCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DeleteEventBusCommand.ts b/clients/client-cloudwatch-events/src/commands/DeleteEventBusCommand.ts index 2a7eeb2f4566b..dd2e5d944b276 100644 --- a/clients/client-cloudwatch-events/src/commands/DeleteEventBusCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeleteEventBusCommand.ts @@ -60,6 +60,7 @@ export interface DeleteEventBusCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DeleteEventBusCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DeletePartnerEventSourceCommand.ts b/clients/client-cloudwatch-events/src/commands/DeletePartnerEventSourceCommand.ts index 2c2c7563f27d5..f638d30e60ce9 100644 --- a/clients/client-cloudwatch-events/src/commands/DeletePartnerEventSourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeletePartnerEventSourceCommand.ts @@ -67,6 +67,7 @@ export interface DeletePartnerEventSourceCommandOutput extends __MetadataBearer * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DeletePartnerEventSourceCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DeleteRuleCommand.ts b/clients/client-cloudwatch-events/src/commands/DeleteRuleCommand.ts index 20fd3c5e9abb3..379bd241aa399 100644 --- a/clients/client-cloudwatch-events/src/commands/DeleteRuleCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeleteRuleCommand.ts @@ -82,6 +82,7 @@ export interface DeleteRuleCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DeleteRuleCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DescribeApiDestinationCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribeApiDestinationCommand.ts index b57f02c57647c..66dcb3b896907 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribeApiDestinationCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribeApiDestinationCommand.ts @@ -70,6 +70,7 @@ export interface DescribeApiDestinationCommandOutput extends DescribeApiDestinat * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DescribeApiDestinationCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DescribeArchiveCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribeArchiveCommand.ts index 3ec5c2ac74454..a9a466bb9e7ad 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribeArchiveCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribeArchiveCommand.ts @@ -74,6 +74,7 @@ export interface DescribeArchiveCommandOutput extends DescribeArchiveResponse, _ * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DescribeArchiveCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DescribeConnectionCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribeConnectionCommand.ts index be02fbce28117..db4b64b6312e1 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribeConnectionCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribeConnectionCommand.ts @@ -135,6 +135,7 @@ export interface DescribeConnectionCommandOutput extends DescribeConnectionRespo * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DescribeConnectionCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DescribeEventBusCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribeEventBusCommand.ts index 4db57d2787607..c05d74119636b 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribeEventBusCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribeEventBusCommand.ts @@ -69,6 +69,7 @@ export interface DescribeEventBusCommandOutput extends DescribeEventBusResponse, * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DescribeEventBusCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DescribeEventSourceCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribeEventSourceCommand.ts index a9db7217835bd..dd38bb4530143 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribeEventSourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribeEventSourceCommand.ts @@ -70,6 +70,7 @@ export interface DescribeEventSourceCommandOutput extends DescribeEventSourceRes * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DescribeEventSourceCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DescribePartnerEventSourceCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribePartnerEventSourceCommand.ts index ace5dd5602b56..7e63e4c3db895 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribePartnerEventSourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribePartnerEventSourceCommand.ts @@ -68,6 +68,7 @@ export interface DescribePartnerEventSourceCommandOutput extends DescribePartner * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DescribePartnerEventSourceCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DescribeReplayCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribeReplayCommand.ts index 5bb0583a2713d..8b6641b473c76 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribeReplayCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribeReplayCommand.ts @@ -85,6 +85,7 @@ export interface DescribeReplayCommandOutput extends DescribeReplayResponse, __M * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DescribeReplayCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DescribeRuleCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribeRuleCommand.ts index e5b11481755ab..c2c84c3e17617 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribeRuleCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribeRuleCommand.ts @@ -73,6 +73,7 @@ export interface DescribeRuleCommandOutput extends DescribeRuleResponse, __Metad * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DescribeRuleCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/DisableRuleCommand.ts b/clients/client-cloudwatch-events/src/commands/DisableRuleCommand.ts index fdaad713dc62f..8e369f7721bb9 100644 --- a/clients/client-cloudwatch-events/src/commands/DisableRuleCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DisableRuleCommand.ts @@ -74,6 +74,7 @@ export interface DisableRuleCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class DisableRuleCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/EnableRuleCommand.ts b/clients/client-cloudwatch-events/src/commands/EnableRuleCommand.ts index fec7a814108e0..74593015e7a27 100644 --- a/clients/client-cloudwatch-events/src/commands/EnableRuleCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/EnableRuleCommand.ts @@ -73,6 +73,7 @@ export interface EnableRuleCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class EnableRuleCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/ListApiDestinationsCommand.ts b/clients/client-cloudwatch-events/src/commands/ListApiDestinationsCommand.ts index 027bf492e8881..dec77f11d5986 100644 --- a/clients/client-cloudwatch-events/src/commands/ListApiDestinationsCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListApiDestinationsCommand.ts @@ -74,6 +74,7 @@ export interface ListApiDestinationsCommandOutput extends ListApiDestinationsRes * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class ListApiDestinationsCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/ListArchivesCommand.ts b/clients/client-cloudwatch-events/src/commands/ListArchivesCommand.ts index 7ad6ca7f7cd69..2ea79b40a52a3 100644 --- a/clients/client-cloudwatch-events/src/commands/ListArchivesCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListArchivesCommand.ts @@ -78,6 +78,7 @@ export interface ListArchivesCommandOutput extends ListArchivesResponse, __Metad * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class ListArchivesCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/ListConnectionsCommand.ts b/clients/client-cloudwatch-events/src/commands/ListConnectionsCommand.ts index 810f5f6ca94d3..c2b601f130150 100644 --- a/clients/client-cloudwatch-events/src/commands/ListConnectionsCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListConnectionsCommand.ts @@ -73,6 +73,7 @@ export interface ListConnectionsCommandOutput extends ListConnectionsResponse, _ * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class ListConnectionsCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/ListEventBusesCommand.ts b/clients/client-cloudwatch-events/src/commands/ListEventBusesCommand.ts index c59c828d07343..a26c07864867a 100644 --- a/clients/client-cloudwatch-events/src/commands/ListEventBusesCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListEventBusesCommand.ts @@ -68,6 +68,7 @@ export interface ListEventBusesCommandOutput extends ListEventBusesResponse, __M * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class ListEventBusesCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/ListEventSourcesCommand.ts b/clients/client-cloudwatch-events/src/commands/ListEventSourcesCommand.ts index ca57506b991ed..152ebc6218b5e 100644 --- a/clients/client-cloudwatch-events/src/commands/ListEventSourcesCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListEventSourcesCommand.ts @@ -74,6 +74,7 @@ export interface ListEventSourcesCommandOutput extends ListEventSourcesResponse, * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class ListEventSourcesCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourceAccountsCommand.ts b/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourceAccountsCommand.ts index f957c18cb212e..8fc29b176df39 100644 --- a/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourceAccountsCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourceAccountsCommand.ts @@ -81,6 +81,7 @@ export interface ListPartnerEventSourceAccountsCommandOutput * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class ListPartnerEventSourceAccountsCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourcesCommand.ts b/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourcesCommand.ts index 6070436ef00db..ce8a65c7d075c 100644 --- a/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourcesCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourcesCommand.ts @@ -70,6 +70,7 @@ export interface ListPartnerEventSourcesCommandOutput extends ListPartnerEventSo * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class ListPartnerEventSourcesCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/ListReplaysCommand.ts b/clients/client-cloudwatch-events/src/commands/ListReplaysCommand.ts index aa7136c0d6cf3..eb3291ceda39d 100644 --- a/clients/client-cloudwatch-events/src/commands/ListReplaysCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListReplaysCommand.ts @@ -76,6 +76,7 @@ export interface ListReplaysCommandOutput extends ListReplaysResponse, __Metadat * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class ListReplaysCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/ListRuleNamesByTargetCommand.ts b/clients/client-cloudwatch-events/src/commands/ListRuleNamesByTargetCommand.ts index 7a14366a170ea..237ba9ade26e6 100644 --- a/clients/client-cloudwatch-events/src/commands/ListRuleNamesByTargetCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListRuleNamesByTargetCommand.ts @@ -68,6 +68,7 @@ export interface ListRuleNamesByTargetCommandOutput extends ListRuleNamesByTarge * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class ListRuleNamesByTargetCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/ListRulesCommand.ts b/clients/client-cloudwatch-events/src/commands/ListRulesCommand.ts index 31660601db4b0..9012f8547d1d5 100644 --- a/clients/client-cloudwatch-events/src/commands/ListRulesCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListRulesCommand.ts @@ -80,6 +80,7 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class ListRulesCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/ListTagsForResourceCommand.ts b/clients/client-cloudwatch-events/src/commands/ListTagsForResourceCommand.ts index 55e130eaad7fe..94a200bd20008 100644 --- a/clients/client-cloudwatch-events/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/ListTargetsByRuleCommand.ts b/clients/client-cloudwatch-events/src/commands/ListTargetsByRuleCommand.ts index 7e9552312d709..2571377f3f992 100644 --- a/clients/client-cloudwatch-events/src/commands/ListTargetsByRuleCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListTargetsByRuleCommand.ts @@ -186,6 +186,7 @@ export interface ListTargetsByRuleCommandOutput extends ListTargetsByRuleRespons * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class ListTargetsByRuleCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/PutEventsCommand.ts b/clients/client-cloudwatch-events/src/commands/PutEventsCommand.ts index dcbad4367d9ca..9b4a49846ce40 100644 --- a/clients/client-cloudwatch-events/src/commands/PutEventsCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/PutEventsCommand.ts @@ -77,6 +77,7 @@ export interface PutEventsCommandOutput extends PutEventsResponse, __MetadataBea * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class PutEventsCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/PutPartnerEventsCommand.ts b/clients/client-cloudwatch-events/src/commands/PutPartnerEventsCommand.ts index 33ee6e14fbe06..0c1fe4d7f4f59 100644 --- a/clients/client-cloudwatch-events/src/commands/PutPartnerEventsCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/PutPartnerEventsCommand.ts @@ -79,6 +79,7 @@ export interface PutPartnerEventsCommandOutput extends PutPartnerEventsResponse, * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class PutPartnerEventsCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/PutPermissionCommand.ts b/clients/client-cloudwatch-events/src/commands/PutPermissionCommand.ts index eea0dd5626288..092d3d4b6e363 100644 --- a/clients/client-cloudwatch-events/src/commands/PutPermissionCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/PutPermissionCommand.ts @@ -93,6 +93,7 @@ export interface PutPermissionCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class PutPermissionCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/PutRuleCommand.ts b/clients/client-cloudwatch-events/src/commands/PutRuleCommand.ts index 2f2e60e56c4f2..3346c5b7976e7 100644 --- a/clients/client-cloudwatch-events/src/commands/PutRuleCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/PutRuleCommand.ts @@ -130,6 +130,7 @@ export interface PutRuleCommandOutput extends PutRuleResponse, __MetadataBearer * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class PutRuleCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/PutTargetsCommand.ts b/clients/client-cloudwatch-events/src/commands/PutTargetsCommand.ts index 791ce179ea197..84cb9aa054b86 100644 --- a/clients/client-cloudwatch-events/src/commands/PutTargetsCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/PutTargetsCommand.ts @@ -358,6 +358,7 @@ export interface PutTargetsCommandOutput extends PutTargetsResponse, __MetadataB * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class PutTargetsCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/RemovePermissionCommand.ts b/clients/client-cloudwatch-events/src/commands/RemovePermissionCommand.ts index 90d16f868450b..1836e77cc3aea 100644 --- a/clients/client-cloudwatch-events/src/commands/RemovePermissionCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/RemovePermissionCommand.ts @@ -70,6 +70,7 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class RemovePermissionCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/RemoveTargetsCommand.ts b/clients/client-cloudwatch-events/src/commands/RemoveTargetsCommand.ts index 8f945bf0c9cd9..1ac0012e58025 100644 --- a/clients/client-cloudwatch-events/src/commands/RemoveTargetsCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/RemoveTargetsCommand.ts @@ -90,6 +90,7 @@ export interface RemoveTargetsCommandOutput extends RemoveTargetsResponse, __Met * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class RemoveTargetsCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/StartReplayCommand.ts b/clients/client-cloudwatch-events/src/commands/StartReplayCommand.ts index 30bfc8f5270d9..8f9a791fde869 100644 --- a/clients/client-cloudwatch-events/src/commands/StartReplayCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/StartReplayCommand.ts @@ -92,6 +92,7 @@ export interface StartReplayCommandOutput extends StartReplayResponse, __Metadat * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class StartReplayCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/TagResourceCommand.ts b/clients/client-cloudwatch-events/src/commands/TagResourceCommand.ts index 70a94efb4403a..2ee987071f7ae 100644 --- a/clients/client-cloudwatch-events/src/commands/TagResourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/TagResourceCommand.ts @@ -86,6 +86,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/TestEventPatternCommand.ts b/clients/client-cloudwatch-events/src/commands/TestEventPatternCommand.ts index 3169c547a9c25..73c036e6fd267 100644 --- a/clients/client-cloudwatch-events/src/commands/TestEventPatternCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/TestEventPatternCommand.ts @@ -66,6 +66,7 @@ export interface TestEventPatternCommandOutput extends TestEventPatternResponse, * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class TestEventPatternCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/UntagResourceCommand.ts b/clients/client-cloudwatch-events/src/commands/UntagResourceCommand.ts index 821dec61e1625..f5268dcdcbaef 100644 --- a/clients/client-cloudwatch-events/src/commands/UntagResourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/UntagResourceCommand.ts @@ -74,6 +74,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/UpdateApiDestinationCommand.ts b/clients/client-cloudwatch-events/src/commands/UpdateApiDestinationCommand.ts index 9ae4b3d9513bf..294b54e18ce7a 100644 --- a/clients/client-cloudwatch-events/src/commands/UpdateApiDestinationCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/UpdateApiDestinationCommand.ts @@ -76,6 +76,7 @@ export interface UpdateApiDestinationCommandOutput extends UpdateApiDestinationR * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class UpdateApiDestinationCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/UpdateArchiveCommand.ts b/clients/client-cloudwatch-events/src/commands/UpdateArchiveCommand.ts index f0f21e7caa00c..b9fbb5190db65 100644 --- a/clients/client-cloudwatch-events/src/commands/UpdateArchiveCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/UpdateArchiveCommand.ts @@ -77,6 +77,7 @@ export interface UpdateArchiveCommandOutput extends UpdateArchiveResponse, __Met * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class UpdateArchiveCommand extends $Command diff --git a/clients/client-cloudwatch-events/src/commands/UpdateConnectionCommand.ts b/clients/client-cloudwatch-events/src/commands/UpdateConnectionCommand.ts index da8aea5c9090f..7634964ed0053 100644 --- a/clients/client-cloudwatch-events/src/commands/UpdateConnectionCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/UpdateConnectionCommand.ts @@ -142,6 +142,7 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse, * @throws {@link CloudWatchEventsServiceException} *

Base exception class for all service exceptions from CloudWatchEvents service.

* + * * @public */ export class UpdateConnectionCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/AssociateKmsKeyCommand.ts b/clients/client-cloudwatch-logs/src/commands/AssociateKmsKeyCommand.ts index b41971084ee74..69d01fb0c7135 100644 --- a/clients/client-cloudwatch-logs/src/commands/AssociateKmsKeyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/AssociateKmsKeyCommand.ts @@ -110,6 +110,7 @@ export interface AssociateKmsKeyCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class AssociateKmsKeyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/CancelExportTaskCommand.ts b/clients/client-cloudwatch-logs/src/commands/CancelExportTaskCommand.ts index 38966a26a5f68..664fffc76526c 100644 --- a/clients/client-cloudwatch-logs/src/commands/CancelExportTaskCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/CancelExportTaskCommand.ts @@ -66,6 +66,7 @@ export interface CancelExportTaskCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class CancelExportTaskCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/CreateDeliveryCommand.ts b/clients/client-cloudwatch-logs/src/commands/CreateDeliveryCommand.ts index 6947c96726004..457b54123f687 100644 --- a/clients/client-cloudwatch-logs/src/commands/CreateDeliveryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/CreateDeliveryCommand.ts @@ -140,6 +140,7 @@ export interface CreateDeliveryCommandOutput extends CreateDeliveryResponse, __M * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class CreateDeliveryCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/CreateExportTaskCommand.ts b/clients/client-cloudwatch-logs/src/commands/CreateExportTaskCommand.ts index d8a0907eec71a..4e4d1dc8678bd 100644 --- a/clients/client-cloudwatch-logs/src/commands/CreateExportTaskCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/CreateExportTaskCommand.ts @@ -103,6 +103,7 @@ export interface CreateExportTaskCommandOutput extends CreateExportTaskResponse, * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class CreateExportTaskCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/CreateLogAnomalyDetectorCommand.ts b/clients/client-cloudwatch-logs/src/commands/CreateLogAnomalyDetectorCommand.ts index c4314e4d42d23..04fb91f79a3cd 100644 --- a/clients/client-cloudwatch-logs/src/commands/CreateLogAnomalyDetectorCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/CreateLogAnomalyDetectorCommand.ts @@ -111,6 +111,7 @@ export interface CreateLogAnomalyDetectorCommandOutput extends CreateLogAnomalyD * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class CreateLogAnomalyDetectorCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/CreateLogGroupCommand.ts b/clients/client-cloudwatch-logs/src/commands/CreateLogGroupCommand.ts index ed44a493f63b2..3f355afa689d7 100644 --- a/clients/client-cloudwatch-logs/src/commands/CreateLogGroupCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/CreateLogGroupCommand.ts @@ -105,6 +105,7 @@ export interface CreateLogGroupCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class CreateLogGroupCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/CreateLogStreamCommand.ts b/clients/client-cloudwatch-logs/src/commands/CreateLogStreamCommand.ts index 44135fd34033a..2c1119c72d219 100644 --- a/clients/client-cloudwatch-logs/src/commands/CreateLogStreamCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/CreateLogStreamCommand.ts @@ -82,6 +82,7 @@ export interface CreateLogStreamCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class CreateLogStreamCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteAccountPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteAccountPolicyCommand.ts index b2598a6cf71a2..5ad3c0223aaa6 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteAccountPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteAccountPolicyCommand.ts @@ -88,6 +88,7 @@ export interface DeleteAccountPolicyCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteAccountPolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteDataProtectionPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteDataProtectionPolicyCommand.ts index 610bd2f77ce16..0e6cace62158a 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteDataProtectionPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteDataProtectionPolicyCommand.ts @@ -66,6 +66,7 @@ export interface DeleteDataProtectionPolicyCommandOutput extends __MetadataBeare * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteDataProtectionPolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryCommand.ts index a7206148d5a79..9f653fc9f801b 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryCommand.ts @@ -73,6 +73,7 @@ export interface DeleteDeliveryCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteDeliveryCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationCommand.ts index d5e41e27a128a..17afca005c17b 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationCommand.ts @@ -74,6 +74,7 @@ export interface DeleteDeliveryDestinationCommandOutput extends __MetadataBearer * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteDeliveryDestinationCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationPolicyCommand.ts index c2536b3062e05..6e470a7a6d352 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationPolicyCommand.ts @@ -69,6 +69,7 @@ export interface DeleteDeliveryDestinationPolicyCommandOutput extends __Metadata * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteDeliveryDestinationPolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteDeliverySourceCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteDeliverySourceCommand.ts index c0a1b86d445ee..bbfa4593a029f 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteDeliverySourceCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteDeliverySourceCommand.ts @@ -74,6 +74,7 @@ export interface DeleteDeliverySourceCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteDeliverySourceCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteDestinationCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteDestinationCommand.ts index 1646a729d1c25..806b7579ba6cb 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteDestinationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteDestinationCommand.ts @@ -67,6 +67,7 @@ export interface DeleteDestinationCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteDestinationCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteIndexPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteIndexPolicyCommand.ts index 4a2a1c4748ca6..d4a5d702e64d2 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteIndexPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteIndexPolicyCommand.ts @@ -73,6 +73,7 @@ export interface DeleteIndexPolicyCommandOutput extends DeleteIndexPolicyRespons * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteIndexPolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteIntegrationCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteIntegrationCommand.ts index 7a2b1a230b9f4..b028143c91e29 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteIntegrationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteIntegrationCommand.ts @@ -70,6 +70,7 @@ export interface DeleteIntegrationCommandOutput extends DeleteIntegrationRespons * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteIntegrationCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteLogAnomalyDetectorCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteLogAnomalyDetectorCommand.ts index 2c016d7d4d12a..9e859823cdc52 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteLogAnomalyDetectorCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteLogAnomalyDetectorCommand.ts @@ -65,6 +65,7 @@ export interface DeleteLogAnomalyDetectorCommandOutput extends __MetadataBearer * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteLogAnomalyDetectorCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteLogGroupCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteLogGroupCommand.ts index d4b06b0c100a7..e466bea84654b 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteLogGroupCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteLogGroupCommand.ts @@ -66,6 +66,7 @@ export interface DeleteLogGroupCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteLogGroupCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteLogStreamCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteLogStreamCommand.ts index 51bf2a5a7a796..6035c46420a0c 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteLogStreamCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteLogStreamCommand.ts @@ -67,6 +67,7 @@ export interface DeleteLogStreamCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteLogStreamCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteMetricFilterCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteMetricFilterCommand.ts index 893395fb48a50..91d3fa07078b7 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteMetricFilterCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteMetricFilterCommand.ts @@ -66,6 +66,7 @@ export interface DeleteMetricFilterCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteMetricFilterCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteQueryDefinitionCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteQueryDefinitionCommand.ts index 4c95a3839e55d..3c361d4c15611 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteQueryDefinitionCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteQueryDefinitionCommand.ts @@ -68,6 +68,7 @@ export interface DeleteQueryDefinitionCommandOutput extends DeleteQueryDefinitio * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteQueryDefinitionCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteResourcePolicyCommand.ts index 5406437aa9878..3739f076e7ecd 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteResourcePolicyCommand.ts @@ -63,6 +63,7 @@ export interface DeleteResourcePolicyCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteRetentionPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteRetentionPolicyCommand.ts index b95de3abae66e..709df6fa68345 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteRetentionPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteRetentionPolicyCommand.ts @@ -66,6 +66,7 @@ export interface DeleteRetentionPolicyCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteRetentionPolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteSubscriptionFilterCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteSubscriptionFilterCommand.ts index be57105c5e6e7..4b0565dc02d96 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteSubscriptionFilterCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteSubscriptionFilterCommand.ts @@ -66,6 +66,7 @@ export interface DeleteSubscriptionFilterCommandOutput extends __MetadataBearer * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteSubscriptionFilterCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteTransformerCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteTransformerCommand.ts index 0bbf53fa9765d..dfa0519f4133e 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteTransformerCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteTransformerCommand.ts @@ -73,6 +73,7 @@ export interface DeleteTransformerCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DeleteTransformerCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeAccountPoliciesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeAccountPoliciesCommand.ts index 737897af3fc95..c36d3e04928f7 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeAccountPoliciesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeAccountPoliciesCommand.ts @@ -101,6 +101,7 @@ export interface DescribeAccountPoliciesCommandOutput extends DescribeAccountPol * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeAccountPoliciesCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeConfigurationTemplatesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeConfigurationTemplatesCommand.ts index b5f2f6e8d0c4f..004b1f697220e 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeConfigurationTemplatesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeConfigurationTemplatesCommand.ts @@ -118,6 +118,7 @@ export interface DescribeConfigurationTemplatesCommandOutput * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeConfigurationTemplatesCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeDeliveriesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeDeliveriesCommand.ts index bf402eeb693ff..9560b02544fe9 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeDeliveriesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeDeliveriesCommand.ts @@ -101,6 +101,7 @@ export interface DescribeDeliveriesCommandOutput extends DescribeDeliveriesRespo * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeDeliveriesCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeDeliveryDestinationsCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeDeliveryDestinationsCommand.ts index 68f26bf5ff710..c1060e68b069e 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeDeliveryDestinationsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeDeliveryDestinationsCommand.ts @@ -87,6 +87,7 @@ export interface DescribeDeliveryDestinationsCommandOutput * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeDeliveryDestinationsCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeDeliverySourcesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeDeliverySourcesCommand.ts index f393b5cc9ae00..c5d22464fe3b6 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeDeliverySourcesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeDeliverySourcesCommand.ts @@ -82,6 +82,7 @@ export interface DescribeDeliverySourcesCommandOutput extends DescribeDeliverySo * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeDeliverySourcesCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeDestinationsCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeDestinationsCommand.ts index 7ef085d2c2848..bc593ce82a0bc 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeDestinationsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeDestinationsCommand.ts @@ -73,6 +73,7 @@ export interface DescribeDestinationsCommandOutput extends DescribeDestinationsR * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeDestinationsCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeExportTasksCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeExportTasksCommand.ts index fe18d82f0585e..52f53919f34fb 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeExportTasksCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeExportTasksCommand.ts @@ -84,6 +84,7 @@ export interface DescribeExportTasksCommandOutput extends DescribeExportTasksRes * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeExportTasksCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeFieldIndexesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeFieldIndexesCommand.ts index 85fb00a5159e7..badbcc1d57c5c 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeFieldIndexesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeFieldIndexesCommand.ts @@ -84,6 +84,7 @@ export interface DescribeFieldIndexesCommandOutput extends DescribeFieldIndexesR * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeFieldIndexesCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeIndexPoliciesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeIndexPoliciesCommand.ts index a6b14b128c914..37259142a031e 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeIndexPoliciesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeIndexPoliciesCommand.ts @@ -88,6 +88,7 @@ export interface DescribeIndexPoliciesCommandOutput extends DescribeIndexPolicie * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeIndexPoliciesCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeLogGroupsCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeLogGroupsCommand.ts index ad9cc4f849fa2..292ad106f2ff0 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeLogGroupsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeLogGroupsCommand.ts @@ -97,6 +97,7 @@ export interface DescribeLogGroupsCommandOutput extends DescribeLogGroupsRespons * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeLogGroupsCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeLogStreamsCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeLogStreamsCommand.ts index 2f1d4ec084592..45a623f7b9f9f 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeLogStreamsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeLogStreamsCommand.ts @@ -91,6 +91,7 @@ export interface DescribeLogStreamsCommandOutput extends DescribeLogStreamsRespo * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeLogStreamsCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeMetricFiltersCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeMetricFiltersCommand.ts index c45046e94a826..473db7405dcdf 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeMetricFiltersCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeMetricFiltersCommand.ts @@ -92,6 +92,7 @@ export interface DescribeMetricFiltersCommandOutput extends DescribeMetricFilter * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeMetricFiltersCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeQueriesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeQueriesCommand.ts index 5c83682a6d467..a8d24a32d8a3d 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeQueriesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeQueriesCommand.ts @@ -80,6 +80,7 @@ export interface DescribeQueriesCommandOutput extends DescribeQueriesResponse, _ * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeQueriesCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeQueryDefinitionsCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeQueryDefinitionsCommand.ts index 2a04a9ef45507..c2ffcf37d54a6 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeQueryDefinitionsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeQueryDefinitionsCommand.ts @@ -79,6 +79,7 @@ export interface DescribeQueryDefinitionsCommandOutput extends DescribeQueryDefi * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeQueryDefinitionsCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeResourcePoliciesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeResourcePoliciesCommand.ts index d4e0c295796ab..825e76188ad8c 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeResourcePoliciesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeResourcePoliciesCommand.ts @@ -69,6 +69,7 @@ export interface DescribeResourcePoliciesCommandOutput extends DescribeResourceP * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeResourcePoliciesCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeSubscriptionFiltersCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeSubscriptionFiltersCommand.ts index ced77dd2e03ef..04bc1a607db2b 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeSubscriptionFiltersCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeSubscriptionFiltersCommand.ts @@ -82,6 +82,7 @@ export interface DescribeSubscriptionFiltersCommandOutput * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DescribeSubscriptionFiltersCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/DisassociateKmsKeyCommand.ts b/clients/client-cloudwatch-logs/src/commands/DisassociateKmsKeyCommand.ts index 354789a7f6c73..3251768c4fb35 100644 --- a/clients/client-cloudwatch-logs/src/commands/DisassociateKmsKeyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DisassociateKmsKeyCommand.ts @@ -88,6 +88,7 @@ export interface DisassociateKmsKeyCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class DisassociateKmsKeyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/FilterLogEventsCommand.ts b/clients/client-cloudwatch-logs/src/commands/FilterLogEventsCommand.ts index af85fd364fd5f..138bb36d81667 100644 --- a/clients/client-cloudwatch-logs/src/commands/FilterLogEventsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/FilterLogEventsCommand.ts @@ -128,6 +128,7 @@ export interface FilterLogEventsCommandOutput extends FilterLogEventsResponse, _ * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class FilterLogEventsCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/GetDataProtectionPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetDataProtectionPolicyCommand.ts index 401d88546f3cc..397ac1a540e15 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetDataProtectionPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetDataProtectionPolicyCommand.ts @@ -69,6 +69,7 @@ export interface GetDataProtectionPolicyCommandOutput extends GetDataProtectionP * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class GetDataProtectionPolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/GetDeliveryCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetDeliveryCommand.ts index ceaaaf2b32545..0d517c56828d1 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetDeliveryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetDeliveryCommand.ts @@ -101,6 +101,7 @@ export interface GetDeliveryCommandOutput extends GetDeliveryResponse, __Metadat * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class GetDeliveryCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationCommand.ts index e62dc2feb3de9..a03aca5e49d31 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationCommand.ts @@ -81,6 +81,7 @@ export interface GetDeliveryDestinationCommandOutput extends GetDeliveryDestinat * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class GetDeliveryDestinationCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationPolicyCommand.ts index 4e2606a8c8b20..410e6a0192c43 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationPolicyCommand.ts @@ -73,6 +73,7 @@ export interface GetDeliveryDestinationPolicyCommandOutput * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class GetDeliveryDestinationPolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/GetDeliverySourceCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetDeliverySourceCommand.ts index 5143261fa8481..80c23a8e2162e 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetDeliverySourceCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetDeliverySourceCommand.ts @@ -81,6 +81,7 @@ export interface GetDeliverySourceCommandOutput extends GetDeliverySourceRespons * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class GetDeliverySourceCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/GetIntegrationCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetIntegrationCommand.ts index 319d391e65135..4f2799279b7c8 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetIntegrationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetIntegrationCommand.ts @@ -120,6 +120,7 @@ export interface GetIntegrationCommandOutput extends GetIntegrationResponse, __M * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class GetIntegrationCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/GetLogAnomalyDetectorCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetLogAnomalyDetectorCommand.ts index bd5057b734d91..00dfaf31dbe26 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetLogAnomalyDetectorCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetLogAnomalyDetectorCommand.ts @@ -77,6 +77,7 @@ export interface GetLogAnomalyDetectorCommandOutput extends GetLogAnomalyDetecto * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class GetLogAnomalyDetectorCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/GetLogEventsCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetLogEventsCommand.ts index 8ea17a35f640e..b105dac7d1954 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetLogEventsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetLogEventsCommand.ts @@ -104,6 +104,7 @@ export interface GetLogEventsCommandOutput extends GetLogEventsResponse, __Metad * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class GetLogEventsCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/GetLogGroupFieldsCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetLogGroupFieldsCommand.ts index 6cb3979ce51a5..863013ee46384 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetLogGroupFieldsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetLogGroupFieldsCommand.ts @@ -88,6 +88,7 @@ export interface GetLogGroupFieldsCommandOutput extends GetLogGroupFieldsRespons * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class GetLogGroupFieldsCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/GetLogRecordCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetLogRecordCommand.ts index 4026b13e424e2..0556de5472d36 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetLogRecordCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetLogRecordCommand.ts @@ -73,6 +73,7 @@ export interface GetLogRecordCommandOutput extends GetLogRecordResponse, __Metad * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class GetLogRecordCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/GetQueryResultsCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetQueryResultsCommand.ts index 44950a6198f8d..283ba2f05d5eb 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetQueryResultsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetQueryResultsCommand.ts @@ -95,6 +95,7 @@ export interface GetQueryResultsCommandOutput extends GetQueryResultsResponse, _ * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class GetQueryResultsCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/GetTransformerCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetTransformerCommand.ts index b7c8071c63cae..f4c628ed89f97 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetTransformerCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetTransformerCommand.ts @@ -215,6 +215,7 @@ export interface GetTransformerCommandOutput extends GetTransformerResponse, __M * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class GetTransformerCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/ListAnomaliesCommand.ts b/clients/client-cloudwatch-logs/src/commands/ListAnomaliesCommand.ts index 961ee8a368487..52db44a9de1e3 100644 --- a/clients/client-cloudwatch-logs/src/commands/ListAnomaliesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/ListAnomaliesCommand.ts @@ -113,6 +113,7 @@ export interface ListAnomaliesCommandOutput extends ListAnomaliesResponse, __Met * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class ListAnomaliesCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/ListIntegrationsCommand.ts b/clients/client-cloudwatch-logs/src/commands/ListIntegrationsCommand.ts index 7f11a4070500e..5ffaaeedd646f 100644 --- a/clients/client-cloudwatch-logs/src/commands/ListIntegrationsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/ListIntegrationsCommand.ts @@ -70,6 +70,7 @@ export interface ListIntegrationsCommandOutput extends ListIntegrationsResponse, * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class ListIntegrationsCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/ListLogAnomalyDetectorsCommand.ts b/clients/client-cloudwatch-logs/src/commands/ListLogAnomalyDetectorsCommand.ts index bc5f9512e9dce..ba6bad82c72ab 100644 --- a/clients/client-cloudwatch-logs/src/commands/ListLogAnomalyDetectorsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/ListLogAnomalyDetectorsCommand.ts @@ -85,6 +85,7 @@ export interface ListLogAnomalyDetectorsCommandOutput extends ListLogAnomalyDete * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class ListLogAnomalyDetectorsCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/ListLogGroupsForQueryCommand.ts b/clients/client-cloudwatch-logs/src/commands/ListLogGroupsForQueryCommand.ts index 15d5f829bf8eb..350558595050b 100644 --- a/clients/client-cloudwatch-logs/src/commands/ListLogGroupsForQueryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/ListLogGroupsForQueryCommand.ts @@ -76,6 +76,7 @@ export interface ListLogGroupsForQueryCommandOutput extends ListLogGroupsForQuer * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class ListLogGroupsForQueryCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/ListTagsForResourceCommand.ts b/clients/client-cloudwatch-logs/src/commands/ListTagsForResourceCommand.ts index c93088b0c2c38..9b16204e0b48a 100644 --- a/clients/client-cloudwatch-logs/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/ListTagsLogGroupCommand.ts b/clients/client-cloudwatch-logs/src/commands/ListTagsLogGroupCommand.ts index 84c544c9d37b6..7f886c504e350 100644 --- a/clients/client-cloudwatch-logs/src/commands/ListTagsLogGroupCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/ListTagsLogGroupCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsLogGroupCommandOutput extends ListTagsLogGroupResponse, * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class ListTagsLogGroupCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutAccountPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutAccountPolicyCommand.ts index 72369819d8219..a6b0580da480a 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutAccountPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutAccountPolicyCommand.ts @@ -218,6 +218,7 @@ export interface PutAccountPolicyCommandOutput extends PutAccountPolicyResponse, * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutAccountPolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutDataProtectionPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutDataProtectionPolicyCommand.ts index 268f2e3274bc5..580966c30c9fb 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutDataProtectionPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutDataProtectionPolicyCommand.ts @@ -93,6 +93,7 @@ export interface PutDataProtectionPolicyCommandOutput extends PutDataProtectionP * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutDataProtectionPolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationCommand.ts index 02a30f05c4dc5..f5bae59975b0c 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationCommand.ts @@ -128,6 +128,7 @@ export interface PutDeliveryDestinationCommandOutput extends PutDeliveryDestinat * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutDeliveryDestinationCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationPolicyCommand.ts index 8ec6fe6e6a672..da9e41b605568 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationPolicyCommand.ts @@ -105,6 +105,7 @@ export interface PutDeliveryDestinationPolicyCommandOutput * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutDeliveryDestinationPolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutDeliverySourceCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutDeliverySourceCommand.ts index 18937aa1c8acc..c5a86a6bfb541 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutDeliverySourceCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutDeliverySourceCommand.ts @@ -124,6 +124,7 @@ export interface PutDeliverySourceCommandOutput extends PutDeliverySourceRespons * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutDeliverySourceCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutDestinationCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutDestinationCommand.ts index 0aeb3235b08bf..b3d5f304c9f33 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutDestinationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutDestinationCommand.ts @@ -85,6 +85,7 @@ export interface PutDestinationCommandOutput extends PutDestinationResponse, __M * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutDestinationCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutDestinationPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutDestinationPolicyCommand.ts index f518a9c05d823..d290696544ac1 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutDestinationPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutDestinationPolicyCommand.ts @@ -66,6 +66,7 @@ export interface PutDestinationPolicyCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutDestinationPolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutIndexPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutIndexPolicyCommand.ts index 531721ee52ee5..8c87eb23f8bd9 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutIndexPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutIndexPolicyCommand.ts @@ -109,6 +109,7 @@ export interface PutIndexPolicyCommandOutput extends PutIndexPolicyResponse, __M * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutIndexPolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutIntegrationCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutIntegrationCommand.ts index 104f857c530fd..e0c96664e4119 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutIntegrationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutIntegrationCommand.ts @@ -85,6 +85,7 @@ export interface PutIntegrationCommandOutput extends PutIntegrationResponse, __M * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutIntegrationCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutLogEventsCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutLogEventsCommand.ts index 1913e820a560c..0a51d0793b433 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutLogEventsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutLogEventsCommand.ts @@ -161,6 +161,7 @@ export interface PutLogEventsCommandOutput extends PutLogEventsResponse, __Metad * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutLogEventsCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutMetricFilterCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutMetricFilterCommand.ts index 11d68dcf35366..fb39da861393f 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutMetricFilterCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutMetricFilterCommand.ts @@ -113,6 +113,7 @@ export interface PutMetricFilterCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutMetricFilterCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutQueryDefinitionCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutQueryDefinitionCommand.ts index dd6afd56a9b4e..e184ffc2962b9 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutQueryDefinitionCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutQueryDefinitionCommand.ts @@ -84,6 +84,7 @@ export interface PutQueryDefinitionCommandOutput extends PutQueryDefinitionRespo * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutQueryDefinitionCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutResourcePolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutResourcePolicyCommand.ts index b1b66bda5b091..8b69b39f3d157 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutResourcePolicyCommand.ts @@ -71,6 +71,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutRetentionPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutRetentionPolicyCommand.ts index 18592297a5c13..c9974e07840ed 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutRetentionPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutRetentionPolicyCommand.ts @@ -84,6 +84,7 @@ export interface PutRetentionPolicyCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutRetentionPolicyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutSubscriptionFilterCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutSubscriptionFilterCommand.ts index b047c46843584..7d691fceae732 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutSubscriptionFilterCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutSubscriptionFilterCommand.ts @@ -112,6 +112,7 @@ export interface PutSubscriptionFilterCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutSubscriptionFilterCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/PutTransformerCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutTransformerCommand.ts index a5df6322974dd..144d65b9f7555 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutTransformerCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutTransformerCommand.ts @@ -234,6 +234,7 @@ export interface PutTransformerCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class PutTransformerCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/StartLiveTailCommand.ts b/clients/client-cloudwatch-logs/src/commands/StartLiveTailCommand.ts index e7b77603dbd85..933c1edfd90f3 100644 --- a/clients/client-cloudwatch-logs/src/commands/StartLiveTailCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/StartLiveTailCommand.ts @@ -158,6 +158,7 @@ export interface StartLiveTailCommandOutput extends StartLiveTailResponse, __Met * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class StartLiveTailCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/StartQueryCommand.ts b/clients/client-cloudwatch-logs/src/commands/StartQueryCommand.ts index e98e044854c3c..cae13d092f500 100644 --- a/clients/client-cloudwatch-logs/src/commands/StartQueryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/StartQueryCommand.ts @@ -123,6 +123,7 @@ export interface StartQueryCommandOutput extends StartQueryResponse, __MetadataB * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class StartQueryCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/StopQueryCommand.ts b/clients/client-cloudwatch-logs/src/commands/StopQueryCommand.ts index 5010bd19a51ea..6083c02c9e45d 100644 --- a/clients/client-cloudwatch-logs/src/commands/StopQueryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/StopQueryCommand.ts @@ -65,6 +65,7 @@ export interface StopQueryCommandOutput extends StopQueryResponse, __MetadataBea * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class StopQueryCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/TagLogGroupCommand.ts b/clients/client-cloudwatch-logs/src/commands/TagLogGroupCommand.ts index e134bad35bdb2..bc12769cbe7df 100644 --- a/clients/client-cloudwatch-logs/src/commands/TagLogGroupCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/TagLogGroupCommand.ts @@ -77,6 +77,7 @@ export interface TagLogGroupCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class TagLogGroupCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/TagResourceCommand.ts b/clients/client-cloudwatch-logs/src/commands/TagResourceCommand.ts index 6101f770ebfcb..913e94ee8d039 100644 --- a/clients/client-cloudwatch-logs/src/commands/TagResourceCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/TagResourceCommand.ts @@ -79,6 +79,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/TestMetricFilterCommand.ts b/clients/client-cloudwatch-logs/src/commands/TestMetricFilterCommand.ts index 61dea6ba286ac..392c8cf0d0635 100644 --- a/clients/client-cloudwatch-logs/src/commands/TestMetricFilterCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/TestMetricFilterCommand.ts @@ -73,6 +73,7 @@ export interface TestMetricFilterCommandOutput extends TestMetricFilterResponse, * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class TestMetricFilterCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/TestTransformerCommand.ts b/clients/client-cloudwatch-logs/src/commands/TestTransformerCommand.ts index 2b5d1dc81e942..b264c2f2a991f 100644 --- a/clients/client-cloudwatch-logs/src/commands/TestTransformerCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/TestTransformerCommand.ts @@ -217,6 +217,7 @@ export interface TestTransformerCommandOutput extends TestTransformerResponse, _ * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class TestTransformerCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/UntagLogGroupCommand.ts b/clients/client-cloudwatch-logs/src/commands/UntagLogGroupCommand.ts index 7d60f4a9c6554..7be3a2dfee632 100644 --- a/clients/client-cloudwatch-logs/src/commands/UntagLogGroupCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/UntagLogGroupCommand.ts @@ -71,6 +71,7 @@ export interface UntagLogGroupCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class UntagLogGroupCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/UntagResourceCommand.ts b/clients/client-cloudwatch-logs/src/commands/UntagResourceCommand.ts index acb4529f6cf06..f8b3db2ae7e8c 100644 --- a/clients/client-cloudwatch-logs/src/commands/UntagResourceCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/UpdateAnomalyCommand.ts b/clients/client-cloudwatch-logs/src/commands/UpdateAnomalyCommand.ts index ee0519da5521e..d9fddc710caff 100644 --- a/clients/client-cloudwatch-logs/src/commands/UpdateAnomalyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/UpdateAnomalyCommand.ts @@ -81,6 +81,7 @@ export interface UpdateAnomalyCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class UpdateAnomalyCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/UpdateDeliveryConfigurationCommand.ts b/clients/client-cloudwatch-logs/src/commands/UpdateDeliveryConfigurationCommand.ts index e26253c2351ed..ea3ba786d34a5 100644 --- a/clients/client-cloudwatch-logs/src/commands/UpdateDeliveryConfigurationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/UpdateDeliveryConfigurationCommand.ts @@ -83,6 +83,7 @@ export interface UpdateDeliveryConfigurationCommandOutput * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class UpdateDeliveryConfigurationCommand extends $Command diff --git a/clients/client-cloudwatch-logs/src/commands/UpdateLogAnomalyDetectorCommand.ts b/clients/client-cloudwatch-logs/src/commands/UpdateLogAnomalyDetectorCommand.ts index 55694b950a09c..0b2ec15e4b074 100644 --- a/clients/client-cloudwatch-logs/src/commands/UpdateLogAnomalyDetectorCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/UpdateLogAnomalyDetectorCommand.ts @@ -69,6 +69,7 @@ export interface UpdateLogAnomalyDetectorCommandOutput extends __MetadataBearer * @throws {@link CloudWatchLogsServiceException} *

Base exception class for all service exceptions from CloudWatchLogs service.

* + * * @public */ export class UpdateLogAnomalyDetectorCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/DeleteAlarmsCommand.ts b/clients/client-cloudwatch/src/commands/DeleteAlarmsCommand.ts index 06c78cda878d3..2c1b62e894c85 100644 --- a/clients/client-cloudwatch/src/commands/DeleteAlarmsCommand.ts +++ b/clients/client-cloudwatch/src/commands/DeleteAlarmsCommand.ts @@ -77,6 +77,7 @@ export interface DeleteAlarmsCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class DeleteAlarmsCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/DeleteAnomalyDetectorCommand.ts b/clients/client-cloudwatch/src/commands/DeleteAnomalyDetectorCommand.ts index 3623cc9b40749..88440473804b2 100644 --- a/clients/client-cloudwatch/src/commands/DeleteAnomalyDetectorCommand.ts +++ b/clients/client-cloudwatch/src/commands/DeleteAnomalyDetectorCommand.ts @@ -113,6 +113,7 @@ export interface DeleteAnomalyDetectorCommandOutput extends DeleteAnomalyDetecto * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class DeleteAnomalyDetectorCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/DeleteDashboardsCommand.ts b/clients/client-cloudwatch/src/commands/DeleteDashboardsCommand.ts index c78aa60b7983a..f11d0472792e8 100644 --- a/clients/client-cloudwatch/src/commands/DeleteDashboardsCommand.ts +++ b/clients/client-cloudwatch/src/commands/DeleteDashboardsCommand.ts @@ -66,6 +66,7 @@ export interface DeleteDashboardsCommandOutput extends DeleteDashboardsOutput, _ * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class DeleteDashboardsCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/DeleteInsightRulesCommand.ts b/clients/client-cloudwatch/src/commands/DeleteInsightRulesCommand.ts index 3cccd2e641e5b..241f9cc68e87d 100644 --- a/clients/client-cloudwatch/src/commands/DeleteInsightRulesCommand.ts +++ b/clients/client-cloudwatch/src/commands/DeleteInsightRulesCommand.ts @@ -72,6 +72,7 @@ export interface DeleteInsightRulesCommandOutput extends DeleteInsightRulesOutpu * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class DeleteInsightRulesCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/DeleteMetricStreamCommand.ts b/clients/client-cloudwatch/src/commands/DeleteMetricStreamCommand.ts index 90971bf08930c..3d33a95a249bc 100644 --- a/clients/client-cloudwatch/src/commands/DeleteMetricStreamCommand.ts +++ b/clients/client-cloudwatch/src/commands/DeleteMetricStreamCommand.ts @@ -63,6 +63,7 @@ export interface DeleteMetricStreamCommandOutput extends DeleteMetricStreamOutpu * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class DeleteMetricStreamCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/DescribeAlarmHistoryCommand.ts b/clients/client-cloudwatch/src/commands/DescribeAlarmHistoryCommand.ts index d797882a374e7..6331e657a4186 100644 --- a/clients/client-cloudwatch/src/commands/DescribeAlarmHistoryCommand.ts +++ b/clients/client-cloudwatch/src/commands/DescribeAlarmHistoryCommand.ts @@ -84,6 +84,7 @@ export interface DescribeAlarmHistoryCommandOutput extends DescribeAlarmHistoryO * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class DescribeAlarmHistoryCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/DescribeAlarmsCommand.ts b/clients/client-cloudwatch/src/commands/DescribeAlarmsCommand.ts index aac7ef55b22f1..427f897651faa 100644 --- a/clients/client-cloudwatch/src/commands/DescribeAlarmsCommand.ts +++ b/clients/client-cloudwatch/src/commands/DescribeAlarmsCommand.ts @@ -170,6 +170,7 @@ export interface DescribeAlarmsCommandOutput extends DescribeAlarmsOutput, __Met * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class DescribeAlarmsCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/DescribeAlarmsForMetricCommand.ts b/clients/client-cloudwatch/src/commands/DescribeAlarmsForMetricCommand.ts index ea3dd281e6603..1be3af0f3e131 100644 --- a/clients/client-cloudwatch/src/commands/DescribeAlarmsForMetricCommand.ts +++ b/clients/client-cloudwatch/src/commands/DescribeAlarmsForMetricCommand.ts @@ -137,6 +137,7 @@ export interface DescribeAlarmsForMetricCommandOutput extends DescribeAlarmsForM * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class DescribeAlarmsForMetricCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/DescribeAnomalyDetectorsCommand.ts b/clients/client-cloudwatch/src/commands/DescribeAnomalyDetectorsCommand.ts index 9e0606e0a95c0..b2ca1154d10a8 100644 --- a/clients/client-cloudwatch/src/commands/DescribeAnomalyDetectorsCommand.ts +++ b/clients/client-cloudwatch/src/commands/DescribeAnomalyDetectorsCommand.ts @@ -145,6 +145,7 @@ export interface DescribeAnomalyDetectorsCommandOutput extends DescribeAnomalyDe * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class DescribeAnomalyDetectorsCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/DescribeInsightRulesCommand.ts b/clients/client-cloudwatch/src/commands/DescribeInsightRulesCommand.ts index 74d65e1bdc6b6..2309a95582317 100644 --- a/clients/client-cloudwatch/src/commands/DescribeInsightRulesCommand.ts +++ b/clients/client-cloudwatch/src/commands/DescribeInsightRulesCommand.ts @@ -70,6 +70,7 @@ export interface DescribeInsightRulesCommandOutput extends DescribeInsightRulesO * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class DescribeInsightRulesCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/DisableAlarmActionsCommand.ts b/clients/client-cloudwatch/src/commands/DisableAlarmActionsCommand.ts index 4f880b5bb17c0..9887d8e36e09c 100644 --- a/clients/client-cloudwatch/src/commands/DisableAlarmActionsCommand.ts +++ b/clients/client-cloudwatch/src/commands/DisableAlarmActionsCommand.ts @@ -56,6 +56,7 @@ export interface DisableAlarmActionsCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class DisableAlarmActionsCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/DisableInsightRulesCommand.ts b/clients/client-cloudwatch/src/commands/DisableInsightRulesCommand.ts index 111c8ef5081bf..699dda350481c 100644 --- a/clients/client-cloudwatch/src/commands/DisableInsightRulesCommand.ts +++ b/clients/client-cloudwatch/src/commands/DisableInsightRulesCommand.ts @@ -71,6 +71,7 @@ export interface DisableInsightRulesCommandOutput extends DisableInsightRulesOut * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class DisableInsightRulesCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/EnableAlarmActionsCommand.ts b/clients/client-cloudwatch/src/commands/EnableAlarmActionsCommand.ts index 12a7cbb163eb0..9552d0739df94 100644 --- a/clients/client-cloudwatch/src/commands/EnableAlarmActionsCommand.ts +++ b/clients/client-cloudwatch/src/commands/EnableAlarmActionsCommand.ts @@ -55,6 +55,7 @@ export interface EnableAlarmActionsCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class EnableAlarmActionsCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/EnableInsightRulesCommand.ts b/clients/client-cloudwatch/src/commands/EnableInsightRulesCommand.ts index fe8f28ef1107c..3cbbc087d4355 100644 --- a/clients/client-cloudwatch/src/commands/EnableInsightRulesCommand.ts +++ b/clients/client-cloudwatch/src/commands/EnableInsightRulesCommand.ts @@ -74,6 +74,7 @@ export interface EnableInsightRulesCommandOutput extends EnableInsightRulesOutpu * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class EnableInsightRulesCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/GetDashboardCommand.ts b/clients/client-cloudwatch/src/commands/GetDashboardCommand.ts index d1031210a745d..d2a1ff6e02b17 100644 --- a/clients/client-cloudwatch/src/commands/GetDashboardCommand.ts +++ b/clients/client-cloudwatch/src/commands/GetDashboardCommand.ts @@ -70,6 +70,7 @@ export interface GetDashboardCommandOutput extends GetDashboardOutput, __Metadat * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class GetDashboardCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/GetInsightRuleReportCommand.ts b/clients/client-cloudwatch/src/commands/GetInsightRuleReportCommand.ts index 847ed38a3284e..3b475311e3467 100644 --- a/clients/client-cloudwatch/src/commands/GetInsightRuleReportCommand.ts +++ b/clients/client-cloudwatch/src/commands/GetInsightRuleReportCommand.ts @@ -148,6 +148,7 @@ export interface GetInsightRuleReportCommandOutput extends GetInsightRuleReportO * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class GetInsightRuleReportCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/GetMetricDataCommand.ts b/clients/client-cloudwatch/src/commands/GetMetricDataCommand.ts index 0ad83cf0301ed..6234898d5add1 100644 --- a/clients/client-cloudwatch/src/commands/GetMetricDataCommand.ts +++ b/clients/client-cloudwatch/src/commands/GetMetricDataCommand.ts @@ -178,6 +178,7 @@ export interface GetMetricDataCommandOutput extends GetMetricDataOutput, __Metad * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class GetMetricDataCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/GetMetricStatisticsCommand.ts b/clients/client-cloudwatch/src/commands/GetMetricStatisticsCommand.ts index 559eb0d61213c..4e45999fada3b 100644 --- a/clients/client-cloudwatch/src/commands/GetMetricStatisticsCommand.ts +++ b/clients/client-cloudwatch/src/commands/GetMetricStatisticsCommand.ts @@ -155,6 +155,7 @@ export interface GetMetricStatisticsCommandOutput extends GetMetricStatisticsOut * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class GetMetricStatisticsCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/GetMetricStreamCommand.ts b/clients/client-cloudwatch/src/commands/GetMetricStreamCommand.ts index 19a23ffb37770..1845900efd023 100644 --- a/clients/client-cloudwatch/src/commands/GetMetricStreamCommand.ts +++ b/clients/client-cloudwatch/src/commands/GetMetricStreamCommand.ts @@ -108,6 +108,7 @@ export interface GetMetricStreamCommandOutput extends GetMetricStreamOutput, __M * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class GetMetricStreamCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/GetMetricWidgetImageCommand.ts b/clients/client-cloudwatch/src/commands/GetMetricWidgetImageCommand.ts index 8b3c8619353e8..328e3f7f03f28 100644 --- a/clients/client-cloudwatch/src/commands/GetMetricWidgetImageCommand.ts +++ b/clients/client-cloudwatch/src/commands/GetMetricWidgetImageCommand.ts @@ -72,6 +72,7 @@ export interface GetMetricWidgetImageCommandOutput extends GetMetricWidgetImageO * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class GetMetricWidgetImageCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/ListDashboardsCommand.ts b/clients/client-cloudwatch/src/commands/ListDashboardsCommand.ts index 52199acb6ff2f..4add2fd4f99c5 100644 --- a/clients/client-cloudwatch/src/commands/ListDashboardsCommand.ts +++ b/clients/client-cloudwatch/src/commands/ListDashboardsCommand.ts @@ -78,6 +78,7 @@ export interface ListDashboardsCommandOutput extends ListDashboardsOutput, __Met * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class ListDashboardsCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/ListManagedInsightRulesCommand.ts b/clients/client-cloudwatch/src/commands/ListManagedInsightRulesCommand.ts index 06c2643292d85..b5151055a9d34 100644 --- a/clients/client-cloudwatch/src/commands/ListManagedInsightRulesCommand.ts +++ b/clients/client-cloudwatch/src/commands/ListManagedInsightRulesCommand.ts @@ -79,6 +79,7 @@ export interface ListManagedInsightRulesCommandOutput extends ListManagedInsight * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class ListManagedInsightRulesCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/ListMetricStreamsCommand.ts b/clients/client-cloudwatch/src/commands/ListMetricStreamsCommand.ts index 4d7257118412f..af7ce5a18abb4 100644 --- a/clients/client-cloudwatch/src/commands/ListMetricStreamsCommand.ts +++ b/clients/client-cloudwatch/src/commands/ListMetricStreamsCommand.ts @@ -80,6 +80,7 @@ export interface ListMetricStreamsCommandOutput extends ListMetricStreamsOutput, * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class ListMetricStreamsCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/ListMetricsCommand.ts b/clients/client-cloudwatch/src/commands/ListMetricsCommand.ts index 5fca830e3557f..e07e33d44d9db 100644 --- a/clients/client-cloudwatch/src/commands/ListMetricsCommand.ts +++ b/clients/client-cloudwatch/src/commands/ListMetricsCommand.ts @@ -98,6 +98,7 @@ export interface ListMetricsCommandOutput extends ListMetricsOutput, __MetadataB * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class ListMetricsCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/ListTagsForResourceCommand.ts b/clients/client-cloudwatch/src/commands/ListTagsForResourceCommand.ts index 2203b4b2dc86e..b91bcdeeb3e47 100644 --- a/clients/client-cloudwatch/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cloudwatch/src/commands/ListTagsForResourceCommand.ts @@ -71,6 +71,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/PutAnomalyDetectorCommand.ts b/clients/client-cloudwatch/src/commands/PutAnomalyDetectorCommand.ts index ec65953d497a7..614f962be99c7 100644 --- a/clients/client-cloudwatch/src/commands/PutAnomalyDetectorCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutAnomalyDetectorCommand.ts @@ -129,6 +129,7 @@ export interface PutAnomalyDetectorCommandOutput extends PutAnomalyDetectorOutpu * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class PutAnomalyDetectorCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/PutCompositeAlarmCommand.ts b/clients/client-cloudwatch/src/commands/PutCompositeAlarmCommand.ts index c451c548b63aa..51389c9a40141 100644 --- a/clients/client-cloudwatch/src/commands/PutCompositeAlarmCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutCompositeAlarmCommand.ts @@ -130,6 +130,7 @@ export interface PutCompositeAlarmCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class PutCompositeAlarmCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/PutDashboardCommand.ts b/clients/client-cloudwatch/src/commands/PutDashboardCommand.ts index a0eef15a42bd0..e557f71f83ebc 100644 --- a/clients/client-cloudwatch/src/commands/PutDashboardCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutDashboardCommand.ts @@ -83,6 +83,7 @@ export interface PutDashboardCommandOutput extends PutDashboardOutput, __Metadat * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class PutDashboardCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/PutInsightRuleCommand.ts b/clients/client-cloudwatch/src/commands/PutInsightRuleCommand.ts index e61496a062a9c..ac9f8be2a150f 100644 --- a/clients/client-cloudwatch/src/commands/PutInsightRuleCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutInsightRuleCommand.ts @@ -75,6 +75,7 @@ export interface PutInsightRuleCommandOutput extends PutInsightRuleOutput, __Met * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class PutInsightRuleCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/PutManagedInsightRulesCommand.ts b/clients/client-cloudwatch/src/commands/PutManagedInsightRulesCommand.ts index e1bfd32d5d452..51dd1eefb4cd2 100644 --- a/clients/client-cloudwatch/src/commands/PutManagedInsightRulesCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutManagedInsightRulesCommand.ts @@ -88,6 +88,7 @@ export interface PutManagedInsightRulesCommandOutput extends PutManagedInsightRu * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class PutManagedInsightRulesCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/PutMetricAlarmCommand.ts b/clients/client-cloudwatch/src/commands/PutMetricAlarmCommand.ts index d6d891da79548..abd204e865c06 100644 --- a/clients/client-cloudwatch/src/commands/PutMetricAlarmCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutMetricAlarmCommand.ts @@ -166,6 +166,7 @@ export interface PutMetricAlarmCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class PutMetricAlarmCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/PutMetricDataCommand.ts b/clients/client-cloudwatch/src/commands/PutMetricDataCommand.ts index f683b9d9cc8a1..4f4a5103bd9da 100644 --- a/clients/client-cloudwatch/src/commands/PutMetricDataCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutMetricDataCommand.ts @@ -182,6 +182,7 @@ export interface PutMetricDataCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class PutMetricDataCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/PutMetricStreamCommand.ts b/clients/client-cloudwatch/src/commands/PutMetricStreamCommand.ts index d5fce4c8764ef..5eb78868a2e51 100644 --- a/clients/client-cloudwatch/src/commands/PutMetricStreamCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutMetricStreamCommand.ts @@ -143,6 +143,7 @@ export interface PutMetricStreamCommandOutput extends PutMetricStreamOutput, __M * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class PutMetricStreamCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/SetAlarmStateCommand.ts b/clients/client-cloudwatch/src/commands/SetAlarmStateCommand.ts index 3d43a6c7785fc..ca3aa84b2d681 100644 --- a/clients/client-cloudwatch/src/commands/SetAlarmStateCommand.ts +++ b/clients/client-cloudwatch/src/commands/SetAlarmStateCommand.ts @@ -77,6 +77,7 @@ export interface SetAlarmStateCommandOutput extends __MetadataBearer {} * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class SetAlarmStateCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/StartMetricStreamsCommand.ts b/clients/client-cloudwatch/src/commands/StartMetricStreamsCommand.ts index 634a0125e666d..2d161d8f09243 100644 --- a/clients/client-cloudwatch/src/commands/StartMetricStreamsCommand.ts +++ b/clients/client-cloudwatch/src/commands/StartMetricStreamsCommand.ts @@ -65,6 +65,7 @@ export interface StartMetricStreamsCommandOutput extends StartMetricStreamsOutpu * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class StartMetricStreamsCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/StopMetricStreamsCommand.ts b/clients/client-cloudwatch/src/commands/StopMetricStreamsCommand.ts index c972039d22437..068cfd095ea0c 100644 --- a/clients/client-cloudwatch/src/commands/StopMetricStreamsCommand.ts +++ b/clients/client-cloudwatch/src/commands/StopMetricStreamsCommand.ts @@ -65,6 +65,7 @@ export interface StopMetricStreamsCommandOutput extends StopMetricStreamsOutput, * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class StopMetricStreamsCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/TagResourceCommand.ts b/clients/client-cloudwatch/src/commands/TagResourceCommand.ts index 81933f90b5ccf..07b44762be36a 100644 --- a/clients/client-cloudwatch/src/commands/TagResourceCommand.ts +++ b/clients/client-cloudwatch/src/commands/TagResourceCommand.ts @@ -85,6 +85,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-cloudwatch/src/commands/UntagResourceCommand.ts b/clients/client-cloudwatch/src/commands/UntagResourceCommand.ts index c4221ce57a894..223434861fb88 100644 --- a/clients/client-cloudwatch/src/commands/UntagResourceCommand.ts +++ b/clients/client-cloudwatch/src/commands/UntagResourceCommand.ts @@ -69,6 +69,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/AssociateExternalConnectionCommand.ts b/clients/client-codeartifact/src/commands/AssociateExternalConnectionCommand.ts index 6bdcae4b39d54..8fe83aad8f6ea 100644 --- a/clients/client-codeartifact/src/commands/AssociateExternalConnectionCommand.ts +++ b/clients/client-codeartifact/src/commands/AssociateExternalConnectionCommand.ts @@ -118,6 +118,7 @@ export interface AssociateExternalConnectionCommandOutput extends AssociateExter * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class AssociateExternalConnectionCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/CopyPackageVersionsCommand.ts b/clients/client-codeartifact/src/commands/CopyPackageVersionsCommand.ts index 58f704061e3c3..aa8900d87d10c 100644 --- a/clients/client-codeartifact/src/commands/CopyPackageVersionsCommand.ts +++ b/clients/client-codeartifact/src/commands/CopyPackageVersionsCommand.ts @@ -120,6 +120,7 @@ export interface CopyPackageVersionsCommandOutput extends CopyPackageVersionsRes * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class CopyPackageVersionsCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/CreateDomainCommand.ts b/clients/client-codeartifact/src/commands/CreateDomainCommand.ts index 958cece8b6a68..10e81faad1bde 100644 --- a/clients/client-codeartifact/src/commands/CreateDomainCommand.ts +++ b/clients/client-codeartifact/src/commands/CreateDomainCommand.ts @@ -114,6 +114,7 @@ export interface CreateDomainCommandOutput extends CreateDomainResult, __Metadat * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class CreateDomainCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/CreatePackageGroupCommand.ts b/clients/client-codeartifact/src/commands/CreatePackageGroupCommand.ts index c5328621cf543..f8da500f167bf 100644 --- a/clients/client-codeartifact/src/commands/CreatePackageGroupCommand.ts +++ b/clients/client-codeartifact/src/commands/CreatePackageGroupCommand.ts @@ -125,6 +125,7 @@ export interface CreatePackageGroupCommandOutput extends CreatePackageGroupResul * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class CreatePackageGroupCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/CreateRepositoryCommand.ts b/clients/client-codeartifact/src/commands/CreateRepositoryCommand.ts index f799384a0c0b8..1683e34f2db09 100644 --- a/clients/client-codeartifact/src/commands/CreateRepositoryCommand.ts +++ b/clients/client-codeartifact/src/commands/CreateRepositoryCommand.ts @@ -124,6 +124,7 @@ export interface CreateRepositoryCommandOutput extends CreateRepositoryResult, _ * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class CreateRepositoryCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/DeleteDomainCommand.ts b/clients/client-codeartifact/src/commands/DeleteDomainCommand.ts index c47ae7d81c00a..46efe4a57fbce 100644 --- a/clients/client-codeartifact/src/commands/DeleteDomainCommand.ts +++ b/clients/client-codeartifact/src/commands/DeleteDomainCommand.ts @@ -92,6 +92,7 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResult, __Metadat * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class DeleteDomainCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/DeleteDomainPermissionsPolicyCommand.ts b/clients/client-codeartifact/src/commands/DeleteDomainPermissionsPolicyCommand.ts index 353220054fe2b..9c59e094dde8a 100644 --- a/clients/client-codeartifact/src/commands/DeleteDomainPermissionsPolicyCommand.ts +++ b/clients/client-codeartifact/src/commands/DeleteDomainPermissionsPolicyCommand.ts @@ -96,6 +96,7 @@ export interface DeleteDomainPermissionsPolicyCommandOutput * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class DeleteDomainPermissionsPolicyCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/DeletePackageCommand.ts b/clients/client-codeartifact/src/commands/DeletePackageCommand.ts index 8ab9721adabd3..5d98dcd29d5c4 100644 --- a/clients/client-codeartifact/src/commands/DeletePackageCommand.ts +++ b/clients/client-codeartifact/src/commands/DeletePackageCommand.ts @@ -99,6 +99,7 @@ export interface DeletePackageCommandOutput extends DeletePackageResult, __Metad * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class DeletePackageCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/DeletePackageGroupCommand.ts b/clients/client-codeartifact/src/commands/DeletePackageGroupCommand.ts index 318133f779583..35a4ab893c811 100644 --- a/clients/client-codeartifact/src/commands/DeletePackageGroupCommand.ts +++ b/clients/client-codeartifact/src/commands/DeletePackageGroupCommand.ts @@ -119,6 +119,7 @@ export interface DeletePackageGroupCommandOutput extends DeletePackageGroupResul * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class DeletePackageGroupCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/DeletePackageVersionsCommand.ts b/clients/client-codeartifact/src/commands/DeletePackageVersionsCommand.ts index 085e3d799cb68..9172c5d33d910 100644 --- a/clients/client-codeartifact/src/commands/DeletePackageVersionsCommand.ts +++ b/clients/client-codeartifact/src/commands/DeletePackageVersionsCommand.ts @@ -107,6 +107,7 @@ export interface DeletePackageVersionsCommandOutput extends DeletePackageVersion * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class DeletePackageVersionsCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/DeleteRepositoryCommand.ts b/clients/client-codeartifact/src/commands/DeleteRepositoryCommand.ts index 56a7f22982853..6e6ab69738e05 100644 --- a/clients/client-codeartifact/src/commands/DeleteRepositoryCommand.ts +++ b/clients/client-codeartifact/src/commands/DeleteRepositoryCommand.ts @@ -107,6 +107,7 @@ export interface DeleteRepositoryCommandOutput extends DeleteRepositoryResult, _ * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class DeleteRepositoryCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/DeleteRepositoryPermissionsPolicyCommand.ts b/clients/client-codeartifact/src/commands/DeleteRepositoryPermissionsPolicyCommand.ts index 43f1795f53f29..daf8d1efe094c 100644 --- a/clients/client-codeartifact/src/commands/DeleteRepositoryPermissionsPolicyCommand.ts +++ b/clients/client-codeartifact/src/commands/DeleteRepositoryPermissionsPolicyCommand.ts @@ -104,6 +104,7 @@ export interface DeleteRepositoryPermissionsPolicyCommandOutput * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class DeleteRepositoryPermissionsPolicyCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/DescribeDomainCommand.ts b/clients/client-codeartifact/src/commands/DescribeDomainCommand.ts index 44c556ac446d2..7164b89f69e3f 100644 --- a/clients/client-codeartifact/src/commands/DescribeDomainCommand.ts +++ b/clients/client-codeartifact/src/commands/DescribeDomainCommand.ts @@ -93,6 +93,7 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResult, __Met * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class DescribeDomainCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/DescribePackageCommand.ts b/clients/client-codeartifact/src/commands/DescribePackageCommand.ts index 918027e02609d..85c5605b0d8f5 100644 --- a/clients/client-codeartifact/src/commands/DescribePackageCommand.ts +++ b/clients/client-codeartifact/src/commands/DescribePackageCommand.ts @@ -95,6 +95,7 @@ export interface DescribePackageCommandOutput extends DescribePackageResult, __M * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class DescribePackageCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/DescribePackageGroupCommand.ts b/clients/client-codeartifact/src/commands/DescribePackageGroupCommand.ts index d16c3fe6304a5..c3700eeabcca6 100644 --- a/clients/client-codeartifact/src/commands/DescribePackageGroupCommand.ts +++ b/clients/client-codeartifact/src/commands/DescribePackageGroupCommand.ts @@ -106,6 +106,7 @@ export interface DescribePackageGroupCommandOutput extends DescribePackageGroupR * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class DescribePackageGroupCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/DescribePackageVersionCommand.ts b/clients/client-codeartifact/src/commands/DescribePackageVersionCommand.ts index 423534740630a..4974c19d108cf 100644 --- a/clients/client-codeartifact/src/commands/DescribePackageVersionCommand.ts +++ b/clients/client-codeartifact/src/commands/DescribePackageVersionCommand.ts @@ -118,6 +118,7 @@ export interface DescribePackageVersionCommandOutput extends DescribePackageVers * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class DescribePackageVersionCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/DescribeRepositoryCommand.ts b/clients/client-codeartifact/src/commands/DescribeRepositoryCommand.ts index f4b28bc738326..7b41bf1da68b8 100644 --- a/clients/client-codeartifact/src/commands/DescribeRepositoryCommand.ts +++ b/clients/client-codeartifact/src/commands/DescribeRepositoryCommand.ts @@ -103,6 +103,7 @@ export interface DescribeRepositoryCommandOutput extends DescribeRepositoryResul * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class DescribeRepositoryCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/DisassociateExternalConnectionCommand.ts b/clients/client-codeartifact/src/commands/DisassociateExternalConnectionCommand.ts index fe8ee08909cac..9e5720a3fcc89 100644 --- a/clients/client-codeartifact/src/commands/DisassociateExternalConnectionCommand.ts +++ b/clients/client-codeartifact/src/commands/DisassociateExternalConnectionCommand.ts @@ -118,6 +118,7 @@ export interface DisassociateExternalConnectionCommandOutput * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class DisassociateExternalConnectionCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/DisposePackageVersionsCommand.ts b/clients/client-codeartifact/src/commands/DisposePackageVersionsCommand.ts index 0d4afa834ef54..27742f0ffe4b9 100644 --- a/clients/client-codeartifact/src/commands/DisposePackageVersionsCommand.ts +++ b/clients/client-codeartifact/src/commands/DisposePackageVersionsCommand.ts @@ -117,6 +117,7 @@ export interface DisposePackageVersionsCommandOutput extends DisposePackageVersi * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class DisposePackageVersionsCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/GetAssociatedPackageGroupCommand.ts b/clients/client-codeartifact/src/commands/GetAssociatedPackageGroupCommand.ts index fed00ea79b4db..2e5b3d9e5ff1c 100644 --- a/clients/client-codeartifact/src/commands/GetAssociatedPackageGroupCommand.ts +++ b/clients/client-codeartifact/src/commands/GetAssociatedPackageGroupCommand.ts @@ -108,6 +108,7 @@ export interface GetAssociatedPackageGroupCommandOutput extends GetAssociatedPac * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class GetAssociatedPackageGroupCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/GetAuthorizationTokenCommand.ts b/clients/client-codeartifact/src/commands/GetAuthorizationTokenCommand.ts index a3e57d10dff70..887c4ecc226b1 100644 --- a/clients/client-codeartifact/src/commands/GetAuthorizationTokenCommand.ts +++ b/clients/client-codeartifact/src/commands/GetAuthorizationTokenCommand.ts @@ -105,6 +105,7 @@ export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationToke * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class GetAuthorizationTokenCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/GetDomainPermissionsPolicyCommand.ts b/clients/client-codeartifact/src/commands/GetDomainPermissionsPolicyCommand.ts index 0f40e71d7fbb7..71725c662c4a3 100644 --- a/clients/client-codeartifact/src/commands/GetDomainPermissionsPolicyCommand.ts +++ b/clients/client-codeartifact/src/commands/GetDomainPermissionsPolicyCommand.ts @@ -92,6 +92,7 @@ export interface GetDomainPermissionsPolicyCommandOutput extends GetDomainPermis * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class GetDomainPermissionsPolicyCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/GetPackageVersionAssetCommand.ts b/clients/client-codeartifact/src/commands/GetPackageVersionAssetCommand.ts index 2c7f6420e17c8..936bc8384d0b9 100644 --- a/clients/client-codeartifact/src/commands/GetPackageVersionAssetCommand.ts +++ b/clients/client-codeartifact/src/commands/GetPackageVersionAssetCommand.ts @@ -60,6 +60,11 @@ export interface GetPackageVersionAssetCommandOutput * }; * const command = new GetPackageVersionAssetCommand(input); * const response = await client.send(command); + * // consume or destroy the stream to free the socket. + * const bytes = await response.asset.transformToByteArray(); + * // const str = await response.asset.transformToString(); + * // response.asset.destroy(); // only applicable to Node.js Readable streams. + * * // { // GetPackageVersionAssetResult * // asset: "", // see \@smithy/types -> StreamingBlobPayloadOutputTypes * // assetName: "STRING_VALUE", @@ -106,6 +111,7 @@ export interface GetPackageVersionAssetCommandOutput * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class GetPackageVersionAssetCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/GetPackageVersionReadmeCommand.ts b/clients/client-codeartifact/src/commands/GetPackageVersionReadmeCommand.ts index 19616adb316f4..e867ef9ceec09 100644 --- a/clients/client-codeartifact/src/commands/GetPackageVersionReadmeCommand.ts +++ b/clients/client-codeartifact/src/commands/GetPackageVersionReadmeCommand.ts @@ -94,6 +94,7 @@ export interface GetPackageVersionReadmeCommandOutput extends GetPackageVersionR * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class GetPackageVersionReadmeCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/GetRepositoryEndpointCommand.ts b/clients/client-codeartifact/src/commands/GetRepositoryEndpointCommand.ts index 3768b9357c717..8ce533a0e3ad4 100644 --- a/clients/client-codeartifact/src/commands/GetRepositoryEndpointCommand.ts +++ b/clients/client-codeartifact/src/commands/GetRepositoryEndpointCommand.ts @@ -127,6 +127,7 @@ export interface GetRepositoryEndpointCommandOutput extends GetRepositoryEndpoin * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class GetRepositoryEndpointCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/GetRepositoryPermissionsPolicyCommand.ts b/clients/client-codeartifact/src/commands/GetRepositoryPermissionsPolicyCommand.ts index 58ee89ef5ee81..7248ddd114c6b 100644 --- a/clients/client-codeartifact/src/commands/GetRepositoryPermissionsPolicyCommand.ts +++ b/clients/client-codeartifact/src/commands/GetRepositoryPermissionsPolicyCommand.ts @@ -91,6 +91,7 @@ export interface GetRepositoryPermissionsPolicyCommandOutput * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class GetRepositoryPermissionsPolicyCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/ListAllowedRepositoriesForGroupCommand.ts b/clients/client-codeartifact/src/commands/ListAllowedRepositoriesForGroupCommand.ts index 7614a06a765ee..77c3372bc377e 100644 --- a/clients/client-codeartifact/src/commands/ListAllowedRepositoriesForGroupCommand.ts +++ b/clients/client-codeartifact/src/commands/ListAllowedRepositoriesForGroupCommand.ts @@ -98,6 +98,7 @@ export interface ListAllowedRepositoriesForGroupCommandOutput * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class ListAllowedRepositoriesForGroupCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/ListAssociatedPackagesCommand.ts b/clients/client-codeartifact/src/commands/ListAssociatedPackagesCommand.ts index 65dec9587534a..b7b7cd2507512 100644 --- a/clients/client-codeartifact/src/commands/ListAssociatedPackagesCommand.ts +++ b/clients/client-codeartifact/src/commands/ListAssociatedPackagesCommand.ts @@ -88,6 +88,7 @@ export interface ListAssociatedPackagesCommandOutput extends ListAssociatedPacka * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class ListAssociatedPackagesCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/ListDomainsCommand.ts b/clients/client-codeartifact/src/commands/ListDomainsCommand.ts index 81e67091a255c..bc35345455617 100644 --- a/clients/client-codeartifact/src/commands/ListDomainsCommand.ts +++ b/clients/client-codeartifact/src/commands/ListDomainsCommand.ts @@ -86,6 +86,7 @@ export interface ListDomainsCommandOutput extends ListDomainsResult, __MetadataB * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class ListDomainsCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/ListPackageGroupsCommand.ts b/clients/client-codeartifact/src/commands/ListPackageGroupsCommand.ts index 399470cc70042..38b7909fd41ba 100644 --- a/clients/client-codeartifact/src/commands/ListPackageGroupsCommand.ts +++ b/clients/client-codeartifact/src/commands/ListPackageGroupsCommand.ts @@ -110,6 +110,7 @@ export interface ListPackageGroupsCommandOutput extends ListPackageGroupsResult, * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class ListPackageGroupsCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/ListPackageVersionAssetsCommand.ts b/clients/client-codeartifact/src/commands/ListPackageVersionAssetsCommand.ts index da852bbb774e6..48456dfa9aee5 100644 --- a/clients/client-codeartifact/src/commands/ListPackageVersionAssetsCommand.ts +++ b/clients/client-codeartifact/src/commands/ListPackageVersionAssetsCommand.ts @@ -104,6 +104,7 @@ export interface ListPackageVersionAssetsCommandOutput extends ListPackageVersio * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class ListPackageVersionAssetsCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/ListPackageVersionDependenciesCommand.ts b/clients/client-codeartifact/src/commands/ListPackageVersionDependenciesCommand.ts index d81ae4b243003..abe374de5679a 100644 --- a/clients/client-codeartifact/src/commands/ListPackageVersionDependenciesCommand.ts +++ b/clients/client-codeartifact/src/commands/ListPackageVersionDependenciesCommand.ts @@ -109,6 +109,7 @@ export interface ListPackageVersionDependenciesCommandOutput * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class ListPackageVersionDependenciesCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/ListPackageVersionsCommand.ts b/clients/client-codeartifact/src/commands/ListPackageVersionsCommand.ts index 7c0170ab9a0b2..0ec290afa2576 100644 --- a/clients/client-codeartifact/src/commands/ListPackageVersionsCommand.ts +++ b/clients/client-codeartifact/src/commands/ListPackageVersionsCommand.ts @@ -110,6 +110,7 @@ export interface ListPackageVersionsCommandOutput extends ListPackageVersionsRes * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class ListPackageVersionsCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/ListPackagesCommand.ts b/clients/client-codeartifact/src/commands/ListPackagesCommand.ts index 51ea6b1658c1e..1d16c9a593682 100644 --- a/clients/client-codeartifact/src/commands/ListPackagesCommand.ts +++ b/clients/client-codeartifact/src/commands/ListPackagesCommand.ts @@ -104,6 +104,7 @@ export interface ListPackagesCommandOutput extends ListPackagesResult, __Metadat * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class ListPackagesCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/ListRepositoriesCommand.ts b/clients/client-codeartifact/src/commands/ListRepositoriesCommand.ts index c37a2b213a528..f0c66f85d96f1 100644 --- a/clients/client-codeartifact/src/commands/ListRepositoriesCommand.ts +++ b/clients/client-codeartifact/src/commands/ListRepositoriesCommand.ts @@ -91,6 +91,7 @@ export interface ListRepositoriesCommandOutput extends ListRepositoriesResult, _ * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class ListRepositoriesCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/ListRepositoriesInDomainCommand.ts b/clients/client-codeartifact/src/commands/ListRepositoriesInDomainCommand.ts index 5b0b9e1504ebf..7c28a539ca63a 100644 --- a/clients/client-codeartifact/src/commands/ListRepositoriesInDomainCommand.ts +++ b/clients/client-codeartifact/src/commands/ListRepositoriesInDomainCommand.ts @@ -99,6 +99,7 @@ export interface ListRepositoriesInDomainCommandOutput extends ListRepositoriesI * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class ListRepositoriesInDomainCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/ListSubPackageGroupsCommand.ts b/clients/client-codeartifact/src/commands/ListSubPackageGroupsCommand.ts index 446d2695a41e2..15b5287e2ccf3 100644 --- a/clients/client-codeartifact/src/commands/ListSubPackageGroupsCommand.ts +++ b/clients/client-codeartifact/src/commands/ListSubPackageGroupsCommand.ts @@ -113,6 +113,7 @@ export interface ListSubPackageGroupsCommandOutput extends ListSubPackageGroupsR * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class ListSubPackageGroupsCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/ListTagsForResourceCommand.ts b/clients/client-codeartifact/src/commands/ListTagsForResourceCommand.ts index 3c0e41d31a4fc..075da5ef968a6 100644 --- a/clients/client-codeartifact/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codeartifact/src/commands/ListTagsForResourceCommand.ts @@ -80,6 +80,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/PublishPackageVersionCommand.ts b/clients/client-codeartifact/src/commands/PublishPackageVersionCommand.ts index d30fd4fd18527..d003719b8476e 100644 --- a/clients/client-codeartifact/src/commands/PublishPackageVersionCommand.ts +++ b/clients/client-codeartifact/src/commands/PublishPackageVersionCommand.ts @@ -126,6 +126,7 @@ export interface PublishPackageVersionCommandOutput extends PublishPackageVersio * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class PublishPackageVersionCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/PutDomainPermissionsPolicyCommand.ts b/clients/client-codeartifact/src/commands/PutDomainPermissionsPolicyCommand.ts index f6410dbc757cd..8fb33e6c0b7f9 100644 --- a/clients/client-codeartifact/src/commands/PutDomainPermissionsPolicyCommand.ts +++ b/clients/client-codeartifact/src/commands/PutDomainPermissionsPolicyCommand.ts @@ -102,6 +102,7 @@ export interface PutDomainPermissionsPolicyCommandOutput extends PutDomainPermis * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class PutDomainPermissionsPolicyCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/PutPackageOriginConfigurationCommand.ts b/clients/client-codeartifact/src/commands/PutPackageOriginConfigurationCommand.ts index a4621c03033dd..6fd71a5218226 100644 --- a/clients/client-codeartifact/src/commands/PutPackageOriginConfigurationCommand.ts +++ b/clients/client-codeartifact/src/commands/PutPackageOriginConfigurationCommand.ts @@ -105,6 +105,7 @@ export interface PutPackageOriginConfigurationCommandOutput * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class PutPackageOriginConfigurationCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/PutRepositoryPermissionsPolicyCommand.ts b/clients/client-codeartifact/src/commands/PutRepositoryPermissionsPolicyCommand.ts index 06a2978e5f210..b26d4928b1bf2 100644 --- a/clients/client-codeartifact/src/commands/PutRepositoryPermissionsPolicyCommand.ts +++ b/clients/client-codeartifact/src/commands/PutRepositoryPermissionsPolicyCommand.ts @@ -108,6 +108,7 @@ export interface PutRepositoryPermissionsPolicyCommandOutput * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class PutRepositoryPermissionsPolicyCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/TagResourceCommand.ts b/clients/client-codeartifact/src/commands/TagResourceCommand.ts index d49532a56d326..ee059ef9f1149 100644 --- a/clients/client-codeartifact/src/commands/TagResourceCommand.ts +++ b/clients/client-codeartifact/src/commands/TagResourceCommand.ts @@ -84,6 +84,7 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/UntagResourceCommand.ts b/clients/client-codeartifact/src/commands/UntagResourceCommand.ts index c78f988c016c4..ddb5b8a3b7fa2 100644 --- a/clients/client-codeartifact/src/commands/UntagResourceCommand.ts +++ b/clients/client-codeartifact/src/commands/UntagResourceCommand.ts @@ -76,6 +76,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResult, __Metad * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/UpdatePackageGroupCommand.ts b/clients/client-codeartifact/src/commands/UpdatePackageGroupCommand.ts index daccf24259bb0..e38db5c9f7271 100644 --- a/clients/client-codeartifact/src/commands/UpdatePackageGroupCommand.ts +++ b/clients/client-codeartifact/src/commands/UpdatePackageGroupCommand.ts @@ -113,6 +113,7 @@ export interface UpdatePackageGroupCommandOutput extends UpdatePackageGroupResul * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class UpdatePackageGroupCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/UpdatePackageGroupOriginConfigurationCommand.ts b/clients/client-codeartifact/src/commands/UpdatePackageGroupOriginConfigurationCommand.ts index 729243edb2750..73d925877e596 100644 --- a/clients/client-codeartifact/src/commands/UpdatePackageGroupOriginConfigurationCommand.ts +++ b/clients/client-codeartifact/src/commands/UpdatePackageGroupOriginConfigurationCommand.ts @@ -146,6 +146,7 @@ export interface UpdatePackageGroupOriginConfigurationCommandOutput * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class UpdatePackageGroupOriginConfigurationCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/UpdatePackageVersionsStatusCommand.ts b/clients/client-codeartifact/src/commands/UpdatePackageVersionsStatusCommand.ts index 461284314a757..bb4d7e932a266 100644 --- a/clients/client-codeartifact/src/commands/UpdatePackageVersionsStatusCommand.ts +++ b/clients/client-codeartifact/src/commands/UpdatePackageVersionsStatusCommand.ts @@ -115,6 +115,7 @@ export interface UpdatePackageVersionsStatusCommandOutput extends UpdatePackageV * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class UpdatePackageVersionsStatusCommand extends $Command diff --git a/clients/client-codeartifact/src/commands/UpdateRepositoryCommand.ts b/clients/client-codeartifact/src/commands/UpdateRepositoryCommand.ts index f78a9031d418b..64a7819e54a65 100644 --- a/clients/client-codeartifact/src/commands/UpdateRepositoryCommand.ts +++ b/clients/client-codeartifact/src/commands/UpdateRepositoryCommand.ts @@ -118,6 +118,7 @@ export interface UpdateRepositoryCommandOutput extends UpdateRepositoryResult, _ * @throws {@link CodeartifactServiceException} *

Base exception class for all service exceptions from Codeartifact service.

* + * * @public */ export class UpdateRepositoryCommand extends $Command diff --git a/clients/client-codebuild/src/commands/BatchDeleteBuildsCommand.ts b/clients/client-codebuild/src/commands/BatchDeleteBuildsCommand.ts index 2c5611a6b29a0..bcfd5af558cf0 100644 --- a/clients/client-codebuild/src/commands/BatchDeleteBuildsCommand.ts +++ b/clients/client-codebuild/src/commands/BatchDeleteBuildsCommand.ts @@ -68,6 +68,7 @@ export interface BatchDeleteBuildsCommandOutput extends BatchDeleteBuildsOutput, * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class BatchDeleteBuildsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/BatchGetBuildBatchesCommand.ts b/clients/client-codebuild/src/commands/BatchGetBuildBatchesCommand.ts index 9be21a3f2113c..e7d69cd7beb40 100644 --- a/clients/client-codebuild/src/commands/BatchGetBuildBatchesCommand.ts +++ b/clients/client-codebuild/src/commands/BatchGetBuildBatchesCommand.ts @@ -291,6 +291,7 @@ export interface BatchGetBuildBatchesCommandOutput extends BatchGetBuildBatchesO * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class BatchGetBuildBatchesCommand extends $Command diff --git a/clients/client-codebuild/src/commands/BatchGetBuildsCommand.ts b/clients/client-codebuild/src/commands/BatchGetBuildsCommand.ts index 34e6161ce802e..41265e98c1c2c 100644 --- a/clients/client-codebuild/src/commands/BatchGetBuildsCommand.ts +++ b/clients/client-codebuild/src/commands/BatchGetBuildsCommand.ts @@ -261,6 +261,7 @@ export interface BatchGetBuildsCommandOutput extends BatchGetBuildsOutput, __Met * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class BatchGetBuildsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/BatchGetFleetsCommand.ts b/clients/client-codebuild/src/commands/BatchGetFleetsCommand.ts index e8140a5fa086a..42d7d61fef21b 100644 --- a/clients/client-codebuild/src/commands/BatchGetFleetsCommand.ts +++ b/clients/client-codebuild/src/commands/BatchGetFleetsCommand.ts @@ -126,6 +126,7 @@ export interface BatchGetFleetsCommandOutput extends BatchGetFleetsOutput, __Met * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class BatchGetFleetsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/BatchGetProjectsCommand.ts b/clients/client-codebuild/src/commands/BatchGetProjectsCommand.ts index 1829f699d148e..52469f3879bd3 100644 --- a/clients/client-codebuild/src/commands/BatchGetProjectsCommand.ts +++ b/clients/client-codebuild/src/commands/BatchGetProjectsCommand.ts @@ -271,6 +271,7 @@ export interface BatchGetProjectsCommandOutput extends BatchGetProjectsOutput, _ * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class BatchGetProjectsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/BatchGetReportGroupsCommand.ts b/clients/client-codebuild/src/commands/BatchGetReportGroupsCommand.ts index 08ddafd654118..f249eeca87548 100644 --- a/clients/client-codebuild/src/commands/BatchGetReportGroupsCommand.ts +++ b/clients/client-codebuild/src/commands/BatchGetReportGroupsCommand.ts @@ -91,6 +91,7 @@ export interface BatchGetReportGroupsCommandOutput extends BatchGetReportGroupsO * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class BatchGetReportGroupsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/BatchGetReportsCommand.ts b/clients/client-codebuild/src/commands/BatchGetReportsCommand.ts index f0608154c0fd8..bdf17ef50e0a3 100644 --- a/clients/client-codebuild/src/commands/BatchGetReportsCommand.ts +++ b/clients/client-codebuild/src/commands/BatchGetReportsCommand.ts @@ -103,6 +103,7 @@ export interface BatchGetReportsCommandOutput extends BatchGetReportsOutput, __M * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class BatchGetReportsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/CreateFleetCommand.ts b/clients/client-codebuild/src/commands/CreateFleetCommand.ts index a346692b9a4da..334972e17f559 100644 --- a/clients/client-codebuild/src/commands/CreateFleetCommand.ts +++ b/clients/client-codebuild/src/commands/CreateFleetCommand.ts @@ -175,6 +175,7 @@ export interface CreateFleetCommandOutput extends CreateFleetOutput, __MetadataB * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class CreateFleetCommand extends $Command diff --git a/clients/client-codebuild/src/commands/CreateProjectCommand.ts b/clients/client-codebuild/src/commands/CreateProjectCommand.ts index 926f6aa8642df..9800b273b765f 100644 --- a/clients/client-codebuild/src/commands/CreateProjectCommand.ts +++ b/clients/client-codebuild/src/commands/CreateProjectCommand.ts @@ -441,6 +441,7 @@ export interface CreateProjectCommandOutput extends CreateProjectOutput, __Metad * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class CreateProjectCommand extends $Command diff --git a/clients/client-codebuild/src/commands/CreateReportGroupCommand.ts b/clients/client-codebuild/src/commands/CreateReportGroupCommand.ts index bbb382b92eb23..6c9bc39962861 100644 --- a/clients/client-codebuild/src/commands/CreateReportGroupCommand.ts +++ b/clients/client-codebuild/src/commands/CreateReportGroupCommand.ts @@ -109,6 +109,7 @@ export interface CreateReportGroupCommandOutput extends CreateReportGroupOutput, * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class CreateReportGroupCommand extends $Command diff --git a/clients/client-codebuild/src/commands/CreateWebhookCommand.ts b/clients/client-codebuild/src/commands/CreateWebhookCommand.ts index d69977365da9e..99803edb89d22 100644 --- a/clients/client-codebuild/src/commands/CreateWebhookCommand.ts +++ b/clients/client-codebuild/src/commands/CreateWebhookCommand.ts @@ -119,6 +119,7 @@ export interface CreateWebhookCommandOutput extends CreateWebhookOutput, __Metad * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class CreateWebhookCommand extends $Command diff --git a/clients/client-codebuild/src/commands/DeleteBuildBatchCommand.ts b/clients/client-codebuild/src/commands/DeleteBuildBatchCommand.ts index 147362afc1843..693c0d360d764 100644 --- a/clients/client-codebuild/src/commands/DeleteBuildBatchCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteBuildBatchCommand.ts @@ -67,6 +67,7 @@ export interface DeleteBuildBatchCommandOutput extends DeleteBuildBatchOutput, _ * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class DeleteBuildBatchCommand extends $Command diff --git a/clients/client-codebuild/src/commands/DeleteFleetCommand.ts b/clients/client-codebuild/src/commands/DeleteFleetCommand.ts index db80f59d179f5..1a9e5eb1fc2e0 100644 --- a/clients/client-codebuild/src/commands/DeleteFleetCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteFleetCommand.ts @@ -56,6 +56,7 @@ export interface DeleteFleetCommandOutput extends DeleteFleetOutput, __MetadataB * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class DeleteFleetCommand extends $Command diff --git a/clients/client-codebuild/src/commands/DeleteProjectCommand.ts b/clients/client-codebuild/src/commands/DeleteProjectCommand.ts index ff8f554bb3287..dfb26c22285e3 100644 --- a/clients/client-codebuild/src/commands/DeleteProjectCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteProjectCommand.ts @@ -57,6 +57,7 @@ export interface DeleteProjectCommandOutput extends DeleteProjectOutput, __Metad * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class DeleteProjectCommand extends $Command diff --git a/clients/client-codebuild/src/commands/DeleteReportCommand.ts b/clients/client-codebuild/src/commands/DeleteReportCommand.ts index 3ceda123831f3..f1d6d5df43dbf 100644 --- a/clients/client-codebuild/src/commands/DeleteReportCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteReportCommand.ts @@ -58,6 +58,7 @@ export interface DeleteReportCommandOutput extends DeleteReportOutput, __Metadat * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class DeleteReportCommand extends $Command diff --git a/clients/client-codebuild/src/commands/DeleteReportGroupCommand.ts b/clients/client-codebuild/src/commands/DeleteReportGroupCommand.ts index 7e6e3e6f293cf..78d1b8cd4ac59 100644 --- a/clients/client-codebuild/src/commands/DeleteReportGroupCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteReportGroupCommand.ts @@ -57,6 +57,7 @@ export interface DeleteReportGroupCommandOutput extends DeleteReportGroupOutput, * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class DeleteReportGroupCommand extends $Command diff --git a/clients/client-codebuild/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-codebuild/src/commands/DeleteResourcePolicyCommand.ts index df9e0f28d36c5..a252146a70a97 100644 --- a/clients/client-codebuild/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteResourcePolicyCommand.ts @@ -56,6 +56,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyO * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-codebuild/src/commands/DeleteSourceCredentialsCommand.ts b/clients/client-codebuild/src/commands/DeleteSourceCredentialsCommand.ts index 52739ce625993..736c03e0fd979 100644 --- a/clients/client-codebuild/src/commands/DeleteSourceCredentialsCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteSourceCredentialsCommand.ts @@ -61,6 +61,7 @@ export interface DeleteSourceCredentialsCommandOutput extends DeleteSourceCreden * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class DeleteSourceCredentialsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/DeleteWebhookCommand.ts b/clients/client-codebuild/src/commands/DeleteWebhookCommand.ts index a4f7a013aaa12..8c3e9627b7597 100644 --- a/clients/client-codebuild/src/commands/DeleteWebhookCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteWebhookCommand.ts @@ -64,6 +64,7 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __Metad * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class DeleteWebhookCommand extends $Command diff --git a/clients/client-codebuild/src/commands/DescribeCodeCoveragesCommand.ts b/clients/client-codebuild/src/commands/DescribeCodeCoveragesCommand.ts index 7eb8e80f3bf69..2efcaac3477d1 100644 --- a/clients/client-codebuild/src/commands/DescribeCodeCoveragesCommand.ts +++ b/clients/client-codebuild/src/commands/DescribeCodeCoveragesCommand.ts @@ -78,6 +78,7 @@ export interface DescribeCodeCoveragesCommandOutput extends DescribeCodeCoverage * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class DescribeCodeCoveragesCommand extends $Command diff --git a/clients/client-codebuild/src/commands/DescribeTestCasesCommand.ts b/clients/client-codebuild/src/commands/DescribeTestCasesCommand.ts index 84c49b969b4c9..f7ed1fbf78c71 100644 --- a/clients/client-codebuild/src/commands/DescribeTestCasesCommand.ts +++ b/clients/client-codebuild/src/commands/DescribeTestCasesCommand.ts @@ -82,6 +82,7 @@ export interface DescribeTestCasesCommandOutput extends DescribeTestCasesOutput, * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class DescribeTestCasesCommand extends $Command diff --git a/clients/client-codebuild/src/commands/GetReportGroupTrendCommand.ts b/clients/client-codebuild/src/commands/GetReportGroupTrendCommand.ts index a23c3e00bbb8b..71a461d343f5a 100644 --- a/clients/client-codebuild/src/commands/GetReportGroupTrendCommand.ts +++ b/clients/client-codebuild/src/commands/GetReportGroupTrendCommand.ts @@ -73,6 +73,7 @@ export interface GetReportGroupTrendCommandOutput extends GetReportGroupTrendOut * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class GetReportGroupTrendCommand extends $Command diff --git a/clients/client-codebuild/src/commands/GetResourcePolicyCommand.ts b/clients/client-codebuild/src/commands/GetResourcePolicyCommand.ts index ab60926eaa8db..ec878ad6dccf4 100644 --- a/clients/client-codebuild/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-codebuild/src/commands/GetResourcePolicyCommand.ts @@ -61,6 +61,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyOutput, * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-codebuild/src/commands/ImportSourceCredentialsCommand.ts b/clients/client-codebuild/src/commands/ImportSourceCredentialsCommand.ts index 7bb5b69eb43b0..7e5f96d476971 100644 --- a/clients/client-codebuild/src/commands/ImportSourceCredentialsCommand.ts +++ b/clients/client-codebuild/src/commands/ImportSourceCredentialsCommand.ts @@ -74,6 +74,7 @@ export interface ImportSourceCredentialsCommandOutput extends ImportSourceCreden * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class ImportSourceCredentialsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/InvalidateProjectCacheCommand.ts b/clients/client-codebuild/src/commands/InvalidateProjectCacheCommand.ts index 58fe0eaec2e88..d3be44786f088 100644 --- a/clients/client-codebuild/src/commands/InvalidateProjectCacheCommand.ts +++ b/clients/client-codebuild/src/commands/InvalidateProjectCacheCommand.ts @@ -59,6 +59,7 @@ export interface InvalidateProjectCacheCommandOutput extends InvalidateProjectCa * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class InvalidateProjectCacheCommand extends $Command diff --git a/clients/client-codebuild/src/commands/ListBuildBatchesCommand.ts b/clients/client-codebuild/src/commands/ListBuildBatchesCommand.ts index b3d353767d174..a25ede2e70db9 100644 --- a/clients/client-codebuild/src/commands/ListBuildBatchesCommand.ts +++ b/clients/client-codebuild/src/commands/ListBuildBatchesCommand.ts @@ -66,6 +66,7 @@ export interface ListBuildBatchesCommandOutput extends ListBuildBatchesOutput, _ * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class ListBuildBatchesCommand extends $Command diff --git a/clients/client-codebuild/src/commands/ListBuildBatchesForProjectCommand.ts b/clients/client-codebuild/src/commands/ListBuildBatchesForProjectCommand.ts index 669a56941f488..369e5039d420f 100644 --- a/clients/client-codebuild/src/commands/ListBuildBatchesForProjectCommand.ts +++ b/clients/client-codebuild/src/commands/ListBuildBatchesForProjectCommand.ts @@ -70,6 +70,7 @@ export interface ListBuildBatchesForProjectCommandOutput extends ListBuildBatche * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class ListBuildBatchesForProjectCommand extends $Command diff --git a/clients/client-codebuild/src/commands/ListBuildsCommand.ts b/clients/client-codebuild/src/commands/ListBuildsCommand.ts index 157afb20a454e..0de4e501648a4 100644 --- a/clients/client-codebuild/src/commands/ListBuildsCommand.ts +++ b/clients/client-codebuild/src/commands/ListBuildsCommand.ts @@ -62,6 +62,7 @@ export interface ListBuildsCommandOutput extends ListBuildsOutput, __MetadataBea * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class ListBuildsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/ListBuildsForProjectCommand.ts b/clients/client-codebuild/src/commands/ListBuildsForProjectCommand.ts index 65520d3fd8276..1f4bf84a1a95c 100644 --- a/clients/client-codebuild/src/commands/ListBuildsForProjectCommand.ts +++ b/clients/client-codebuild/src/commands/ListBuildsForProjectCommand.ts @@ -67,6 +67,7 @@ export interface ListBuildsForProjectCommandOutput extends ListBuildsForProjectO * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class ListBuildsForProjectCommand extends $Command diff --git a/clients/client-codebuild/src/commands/ListCuratedEnvironmentImagesCommand.ts b/clients/client-codebuild/src/commands/ListCuratedEnvironmentImagesCommand.ts index d9f63664bda2f..ccc5a4e1eb7e0 100644 --- a/clients/client-codebuild/src/commands/ListCuratedEnvironmentImagesCommand.ts +++ b/clients/client-codebuild/src/commands/ListCuratedEnvironmentImagesCommand.ts @@ -76,6 +76,7 @@ export interface ListCuratedEnvironmentImagesCommandOutput * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class ListCuratedEnvironmentImagesCommand extends $Command diff --git a/clients/client-codebuild/src/commands/ListFleetsCommand.ts b/clients/client-codebuild/src/commands/ListFleetsCommand.ts index 9e14941986e0c..8649087d0441c 100644 --- a/clients/client-codebuild/src/commands/ListFleetsCommand.ts +++ b/clients/client-codebuild/src/commands/ListFleetsCommand.ts @@ -64,6 +64,7 @@ export interface ListFleetsCommandOutput extends ListFleetsOutput, __MetadataBea * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class ListFleetsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/ListProjectsCommand.ts b/clients/client-codebuild/src/commands/ListProjectsCommand.ts index 148c17b8b0502..c2db8f27cd4cb 100644 --- a/clients/client-codebuild/src/commands/ListProjectsCommand.ts +++ b/clients/client-codebuild/src/commands/ListProjectsCommand.ts @@ -64,6 +64,7 @@ export interface ListProjectsCommandOutput extends ListProjectsOutput, __Metadat * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class ListProjectsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/ListReportGroupsCommand.ts b/clients/client-codebuild/src/commands/ListReportGroupsCommand.ts index 25529cf87924f..2d3618ca09d4f 100644 --- a/clients/client-codebuild/src/commands/ListReportGroupsCommand.ts +++ b/clients/client-codebuild/src/commands/ListReportGroupsCommand.ts @@ -66,6 +66,7 @@ export interface ListReportGroupsCommandOutput extends ListReportGroupsOutput, _ * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class ListReportGroupsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/ListReportsCommand.ts b/clients/client-codebuild/src/commands/ListReportsCommand.ts index 559e3c5935f00..d19e2cf296d4f 100644 --- a/clients/client-codebuild/src/commands/ListReportsCommand.ts +++ b/clients/client-codebuild/src/commands/ListReportsCommand.ts @@ -68,6 +68,7 @@ export interface ListReportsCommandOutput extends ListReportsOutput, __MetadataB * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class ListReportsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/ListReportsForReportGroupCommand.ts b/clients/client-codebuild/src/commands/ListReportsForReportGroupCommand.ts index 2464313d34f4e..5e48c5ea05cd6 100644 --- a/clients/client-codebuild/src/commands/ListReportsForReportGroupCommand.ts +++ b/clients/client-codebuild/src/commands/ListReportsForReportGroupCommand.ts @@ -72,6 +72,7 @@ export interface ListReportsForReportGroupCommandOutput extends ListReportsForRe * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class ListReportsForReportGroupCommand extends $Command diff --git a/clients/client-codebuild/src/commands/ListSharedProjectsCommand.ts b/clients/client-codebuild/src/commands/ListSharedProjectsCommand.ts index ff8077db27136..d1a65911dd701 100644 --- a/clients/client-codebuild/src/commands/ListSharedProjectsCommand.ts +++ b/clients/client-codebuild/src/commands/ListSharedProjectsCommand.ts @@ -64,6 +64,7 @@ export interface ListSharedProjectsCommandOutput extends ListSharedProjectsOutpu * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class ListSharedProjectsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/ListSharedReportGroupsCommand.ts b/clients/client-codebuild/src/commands/ListSharedReportGroupsCommand.ts index c9b6ab49072f8..0836e6fc80716 100644 --- a/clients/client-codebuild/src/commands/ListSharedReportGroupsCommand.ts +++ b/clients/client-codebuild/src/commands/ListSharedReportGroupsCommand.ts @@ -65,6 +65,7 @@ export interface ListSharedReportGroupsCommandOutput extends ListSharedReportGro * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class ListSharedReportGroupsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/ListSourceCredentialsCommand.ts b/clients/client-codebuild/src/commands/ListSourceCredentialsCommand.ts index 8eb78f62555de..c1174a9432754 100644 --- a/clients/client-codebuild/src/commands/ListSourceCredentialsCommand.ts +++ b/clients/client-codebuild/src/commands/ListSourceCredentialsCommand.ts @@ -63,6 +63,7 @@ export interface ListSourceCredentialsCommandOutput extends ListSourceCredential * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class ListSourceCredentialsCommand extends $Command diff --git a/clients/client-codebuild/src/commands/PutResourcePolicyCommand.ts b/clients/client-codebuild/src/commands/PutResourcePolicyCommand.ts index 89fac7d314c82..24327c2552225 100644 --- a/clients/client-codebuild/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-codebuild/src/commands/PutResourcePolicyCommand.ts @@ -63,6 +63,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput, * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-codebuild/src/commands/RetryBuildBatchCommand.ts b/clients/client-codebuild/src/commands/RetryBuildBatchCommand.ts index 9316f722ae903..a8a3938db435d 100644 --- a/clients/client-codebuild/src/commands/RetryBuildBatchCommand.ts +++ b/clients/client-codebuild/src/commands/RetryBuildBatchCommand.ts @@ -289,6 +289,7 @@ export interface RetryBuildBatchCommandOutput extends RetryBuildBatchOutput, __M * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class RetryBuildBatchCommand extends $Command diff --git a/clients/client-codebuild/src/commands/RetryBuildCommand.ts b/clients/client-codebuild/src/commands/RetryBuildCommand.ts index 1960ab622b94c..1e022d71cf4d7 100644 --- a/clients/client-codebuild/src/commands/RetryBuildCommand.ts +++ b/clients/client-codebuild/src/commands/RetryBuildCommand.ts @@ -261,6 +261,7 @@ export interface RetryBuildCommandOutput extends RetryBuildOutput, __MetadataBea * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class RetryBuildCommand extends $Command diff --git a/clients/client-codebuild/src/commands/StartBuildBatchCommand.ts b/clients/client-codebuild/src/commands/StartBuildBatchCommand.ts index 34dc0309ecf67..6023e29ecfccb 100644 --- a/clients/client-codebuild/src/commands/StartBuildBatchCommand.ts +++ b/clients/client-codebuild/src/commands/StartBuildBatchCommand.ts @@ -413,6 +413,7 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class StartBuildBatchCommand extends $Command diff --git a/clients/client-codebuild/src/commands/StartBuildCommand.ts b/clients/client-codebuild/src/commands/StartBuildCommand.ts index 983603c643471..414b7ca91acaa 100644 --- a/clients/client-codebuild/src/commands/StartBuildCommand.ts +++ b/clients/client-codebuild/src/commands/StartBuildCommand.ts @@ -382,6 +382,7 @@ export interface StartBuildCommandOutput extends StartBuildOutput, __MetadataBea * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class StartBuildCommand extends $Command diff --git a/clients/client-codebuild/src/commands/StopBuildBatchCommand.ts b/clients/client-codebuild/src/commands/StopBuildBatchCommand.ts index 80b56d8dd9818..b7da26b90582a 100644 --- a/clients/client-codebuild/src/commands/StopBuildBatchCommand.ts +++ b/clients/client-codebuild/src/commands/StopBuildBatchCommand.ts @@ -287,6 +287,7 @@ export interface StopBuildBatchCommandOutput extends StopBuildBatchOutput, __Met * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class StopBuildBatchCommand extends $Command diff --git a/clients/client-codebuild/src/commands/StopBuildCommand.ts b/clients/client-codebuild/src/commands/StopBuildCommand.ts index 13f680fe6fd04..b003b53fbf052 100644 --- a/clients/client-codebuild/src/commands/StopBuildCommand.ts +++ b/clients/client-codebuild/src/commands/StopBuildCommand.ts @@ -257,6 +257,7 @@ export interface StopBuildCommandOutput extends StopBuildOutput, __MetadataBeare * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class StopBuildCommand extends $Command diff --git a/clients/client-codebuild/src/commands/UpdateFleetCommand.ts b/clients/client-codebuild/src/commands/UpdateFleetCommand.ts index 0172ab60e2874..840618cdc7ea1 100644 --- a/clients/client-codebuild/src/commands/UpdateFleetCommand.ts +++ b/clients/client-codebuild/src/commands/UpdateFleetCommand.ts @@ -174,6 +174,7 @@ export interface UpdateFleetCommandOutput extends UpdateFleetOutput, __MetadataB * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class UpdateFleetCommand extends $Command diff --git a/clients/client-codebuild/src/commands/UpdateProjectCommand.ts b/clients/client-codebuild/src/commands/UpdateProjectCommand.ts index 98ddd1477905e..36de89fd5b827 100644 --- a/clients/client-codebuild/src/commands/UpdateProjectCommand.ts +++ b/clients/client-codebuild/src/commands/UpdateProjectCommand.ts @@ -437,6 +437,7 @@ export interface UpdateProjectCommandOutput extends UpdateProjectOutput, __Metad * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class UpdateProjectCommand extends $Command diff --git a/clients/client-codebuild/src/commands/UpdateProjectVisibilityCommand.ts b/clients/client-codebuild/src/commands/UpdateProjectVisibilityCommand.ts index 47f05f97830bc..6afb4862d2d55 100644 --- a/clients/client-codebuild/src/commands/UpdateProjectVisibilityCommand.ts +++ b/clients/client-codebuild/src/commands/UpdateProjectVisibilityCommand.ts @@ -101,6 +101,7 @@ export interface UpdateProjectVisibilityCommandOutput extends UpdateProjectVisib * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class UpdateProjectVisibilityCommand extends $Command diff --git a/clients/client-codebuild/src/commands/UpdateReportGroupCommand.ts b/clients/client-codebuild/src/commands/UpdateReportGroupCommand.ts index 40f8bc21308d9..352a6c459d78e 100644 --- a/clients/client-codebuild/src/commands/UpdateReportGroupCommand.ts +++ b/clients/client-codebuild/src/commands/UpdateReportGroupCommand.ts @@ -104,6 +104,7 @@ export interface UpdateReportGroupCommandOutput extends UpdateReportGroupOutput, * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class UpdateReportGroupCommand extends $Command diff --git a/clients/client-codebuild/src/commands/UpdateWebhookCommand.ts b/clients/client-codebuild/src/commands/UpdateWebhookCommand.ts index bffcc8c6ad4da..d7e191ced9ec4 100644 --- a/clients/client-codebuild/src/commands/UpdateWebhookCommand.ts +++ b/clients/client-codebuild/src/commands/UpdateWebhookCommand.ts @@ -104,6 +104,7 @@ export interface UpdateWebhookCommandOutput extends UpdateWebhookOutput, __Metad * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* + * * @public */ export class UpdateWebhookCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/CreateAccessTokenCommand.ts b/clients/client-codecatalyst/src/commands/CreateAccessTokenCommand.ts index f295feef600c8..e9907e83c38b6 100644 --- a/clients/client-codecatalyst/src/commands/CreateAccessTokenCommand.ts +++ b/clients/client-codecatalyst/src/commands/CreateAccessTokenCommand.ts @@ -87,6 +87,7 @@ export interface CreateAccessTokenCommandOutput extends CreateAccessTokenRespons * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class CreateAccessTokenCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/CreateDevEnvironmentCommand.ts b/clients/client-codecatalyst/src/commands/CreateDevEnvironmentCommand.ts index 512921a7599d0..15762f51154ae 100644 --- a/clients/client-codecatalyst/src/commands/CreateDevEnvironmentCommand.ts +++ b/clients/client-codecatalyst/src/commands/CreateDevEnvironmentCommand.ts @@ -104,6 +104,7 @@ export interface CreateDevEnvironmentCommandOutput extends CreateDevEnvironmentR * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class CreateDevEnvironmentCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/CreateProjectCommand.ts b/clients/client-codecatalyst/src/commands/CreateProjectCommand.ts index b7541956f0fcb..441f6bf76a961 100644 --- a/clients/client-codecatalyst/src/commands/CreateProjectCommand.ts +++ b/clients/client-codecatalyst/src/commands/CreateProjectCommand.ts @@ -80,6 +80,7 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class CreateProjectCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/CreateSourceRepositoryBranchCommand.ts b/clients/client-codecatalyst/src/commands/CreateSourceRepositoryBranchCommand.ts index a500ff1e28763..1b8f2333e91a8 100644 --- a/clients/client-codecatalyst/src/commands/CreateSourceRepositoryBranchCommand.ts +++ b/clients/client-codecatalyst/src/commands/CreateSourceRepositoryBranchCommand.ts @@ -90,6 +90,7 @@ export interface CreateSourceRepositoryBranchCommandOutput * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class CreateSourceRepositoryBranchCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/CreateSourceRepositoryCommand.ts b/clients/client-codecatalyst/src/commands/CreateSourceRepositoryCommand.ts index d7ae0a6690974..abf4723aff7e5 100644 --- a/clients/client-codecatalyst/src/commands/CreateSourceRepositoryCommand.ts +++ b/clients/client-codecatalyst/src/commands/CreateSourceRepositoryCommand.ts @@ -82,6 +82,7 @@ export interface CreateSourceRepositoryCommandOutput extends CreateSourceReposit * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class CreateSourceRepositoryCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/DeleteAccessTokenCommand.ts b/clients/client-codecatalyst/src/commands/DeleteAccessTokenCommand.ts index e37fd3fa1c679..33f6da1ddc9ae 100644 --- a/clients/client-codecatalyst/src/commands/DeleteAccessTokenCommand.ts +++ b/clients/client-codecatalyst/src/commands/DeleteAccessTokenCommand.ts @@ -73,6 +73,7 @@ export interface DeleteAccessTokenCommandOutput extends DeleteAccessTokenRespons * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class DeleteAccessTokenCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/DeleteDevEnvironmentCommand.ts b/clients/client-codecatalyst/src/commands/DeleteDevEnvironmentCommand.ts index 7f07c78f6c600..eeebac6e24807 100644 --- a/clients/client-codecatalyst/src/commands/DeleteDevEnvironmentCommand.ts +++ b/clients/client-codecatalyst/src/commands/DeleteDevEnvironmentCommand.ts @@ -79,6 +79,7 @@ export interface DeleteDevEnvironmentCommandOutput extends DeleteDevEnvironmentR * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class DeleteDevEnvironmentCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/DeleteProjectCommand.ts b/clients/client-codecatalyst/src/commands/DeleteProjectCommand.ts index d6a4e60b59024..29f3b61ba10b9 100644 --- a/clients/client-codecatalyst/src/commands/DeleteProjectCommand.ts +++ b/clients/client-codecatalyst/src/commands/DeleteProjectCommand.ts @@ -78,6 +78,7 @@ export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __Met * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class DeleteProjectCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/DeleteSourceRepositoryCommand.ts b/clients/client-codecatalyst/src/commands/DeleteSourceRepositoryCommand.ts index 6790d18094c9e..5eeaf38252663 100644 --- a/clients/client-codecatalyst/src/commands/DeleteSourceRepositoryCommand.ts +++ b/clients/client-codecatalyst/src/commands/DeleteSourceRepositoryCommand.ts @@ -79,6 +79,7 @@ export interface DeleteSourceRepositoryCommandOutput extends DeleteSourceReposit * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class DeleteSourceRepositoryCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/DeleteSpaceCommand.ts b/clients/client-codecatalyst/src/commands/DeleteSpaceCommand.ts index f637df8bebfca..6b2c4e719ceec 100644 --- a/clients/client-codecatalyst/src/commands/DeleteSpaceCommand.ts +++ b/clients/client-codecatalyst/src/commands/DeleteSpaceCommand.ts @@ -79,6 +79,7 @@ export interface DeleteSpaceCommandOutput extends DeleteSpaceResponse, __Metadat * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class DeleteSpaceCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/GetDevEnvironmentCommand.ts b/clients/client-codecatalyst/src/commands/GetDevEnvironmentCommand.ts index ab21ed5d34b1e..ebe952dde6119 100644 --- a/clients/client-codecatalyst/src/commands/GetDevEnvironmentCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetDevEnvironmentCommand.ts @@ -102,6 +102,7 @@ export interface GetDevEnvironmentCommandOutput extends GetDevEnvironmentRespons * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class GetDevEnvironmentCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/GetProjectCommand.ts b/clients/client-codecatalyst/src/commands/GetProjectCommand.ts index 328ca76e17aaf..8125006d1c2e3 100644 --- a/clients/client-codecatalyst/src/commands/GetProjectCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetProjectCommand.ts @@ -79,6 +79,7 @@ export interface GetProjectCommandOutput extends GetProjectResponse, __MetadataB * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class GetProjectCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/GetSourceRepositoryCloneUrlsCommand.ts b/clients/client-codecatalyst/src/commands/GetSourceRepositoryCloneUrlsCommand.ts index 0658cd29cb336..a73c490f31717 100644 --- a/clients/client-codecatalyst/src/commands/GetSourceRepositoryCloneUrlsCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetSourceRepositoryCloneUrlsCommand.ts @@ -83,6 +83,7 @@ export interface GetSourceRepositoryCloneUrlsCommandOutput * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class GetSourceRepositoryCloneUrlsCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/GetSourceRepositoryCommand.ts b/clients/client-codecatalyst/src/commands/GetSourceRepositoryCommand.ts index ef4f0548b442d..72984dba784a1 100644 --- a/clients/client-codecatalyst/src/commands/GetSourceRepositoryCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetSourceRepositoryCommand.ts @@ -82,6 +82,7 @@ export interface GetSourceRepositoryCommandOutput extends GetSourceRepositoryRes * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class GetSourceRepositoryCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/GetSpaceCommand.ts b/clients/client-codecatalyst/src/commands/GetSpaceCommand.ts index d996067ff3eff..053745504d169 100644 --- a/clients/client-codecatalyst/src/commands/GetSpaceCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetSpaceCommand.ts @@ -78,6 +78,7 @@ export interface GetSpaceCommandOutput extends GetSpaceResponse, __MetadataBeare * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class GetSpaceCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/GetSubscriptionCommand.ts b/clients/client-codecatalyst/src/commands/GetSubscriptionCommand.ts index f165ec40fa0a4..63c4c899e9ba2 100644 --- a/clients/client-codecatalyst/src/commands/GetSubscriptionCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetSubscriptionCommand.ts @@ -79,6 +79,7 @@ export interface GetSubscriptionCommandOutput extends GetSubscriptionResponse, _ * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class GetSubscriptionCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/GetUserDetailsCommand.ts b/clients/client-codecatalyst/src/commands/GetUserDetailsCommand.ts index d451b7c81403b..768f31ad7d02f 100644 --- a/clients/client-codecatalyst/src/commands/GetUserDetailsCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetUserDetailsCommand.ts @@ -83,6 +83,7 @@ export interface GetUserDetailsCommandOutput extends GetUserDetailsResponse, __M * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class GetUserDetailsCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/GetWorkflowCommand.ts b/clients/client-codecatalyst/src/commands/GetWorkflowCommand.ts index 90075153b8f41..c7c03cbfb49e1 100644 --- a/clients/client-codecatalyst/src/commands/GetWorkflowCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetWorkflowCommand.ts @@ -89,6 +89,7 @@ export interface GetWorkflowCommandOutput extends GetWorkflowResponse, __Metadat * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class GetWorkflowCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/GetWorkflowRunCommand.ts b/clients/client-codecatalyst/src/commands/GetWorkflowRunCommand.ts index 410301bacbc1b..0f5f695300d1f 100644 --- a/clients/client-codecatalyst/src/commands/GetWorkflowRunCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetWorkflowRunCommand.ts @@ -87,6 +87,7 @@ export interface GetWorkflowRunCommandOutput extends GetWorkflowRunResponse, __M * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class GetWorkflowRunCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/ListAccessTokensCommand.ts b/clients/client-codecatalyst/src/commands/ListAccessTokensCommand.ts index 3dc59b3933158..5e0c51418f310 100644 --- a/clients/client-codecatalyst/src/commands/ListAccessTokensCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListAccessTokensCommand.ts @@ -83,6 +83,7 @@ export interface ListAccessTokensCommandOutput extends ListAccessTokensResponse, * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class ListAccessTokensCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/ListDevEnvironmentSessionsCommand.ts b/clients/client-codecatalyst/src/commands/ListDevEnvironmentSessionsCommand.ts index 55d3add744356..c37a09455dc5f 100644 --- a/clients/client-codecatalyst/src/commands/ListDevEnvironmentSessionsCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListDevEnvironmentSessionsCommand.ts @@ -88,6 +88,7 @@ export interface ListDevEnvironmentSessionsCommandOutput extends ListDevEnvironm * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class ListDevEnvironmentSessionsCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/ListDevEnvironmentsCommand.ts b/clients/client-codecatalyst/src/commands/ListDevEnvironmentsCommand.ts index 35759d6e0a0c6..450a98d0e44ee 100644 --- a/clients/client-codecatalyst/src/commands/ListDevEnvironmentsCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListDevEnvironmentsCommand.ts @@ -117,6 +117,7 @@ export interface ListDevEnvironmentsCommandOutput extends ListDevEnvironmentsRes * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class ListDevEnvironmentsCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/ListEventLogsCommand.ts b/clients/client-codecatalyst/src/commands/ListEventLogsCommand.ts index a3caaea2589e3..cb7db9429a4ae 100644 --- a/clients/client-codecatalyst/src/commands/ListEventLogsCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListEventLogsCommand.ts @@ -122,6 +122,7 @@ export interface ListEventLogsCommandOutput extends ListEventLogsResponse, __Met * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class ListEventLogsCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/ListProjectsCommand.ts b/clients/client-codecatalyst/src/commands/ListProjectsCommand.ts index 5396803a2b319..09dfa7d451752 100644 --- a/clients/client-codecatalyst/src/commands/ListProjectsCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListProjectsCommand.ts @@ -93,6 +93,7 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class ListProjectsCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/ListSourceRepositoriesCommand.ts b/clients/client-codecatalyst/src/commands/ListSourceRepositoriesCommand.ts index 1f6b00db3822f..0613d06e442f6 100644 --- a/clients/client-codecatalyst/src/commands/ListSourceRepositoriesCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListSourceRepositoriesCommand.ts @@ -87,6 +87,7 @@ export interface ListSourceRepositoriesCommandOutput extends ListSourceRepositor * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class ListSourceRepositoriesCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/ListSourceRepositoryBranchesCommand.ts b/clients/client-codecatalyst/src/commands/ListSourceRepositoryBranchesCommand.ts index 45f917111ec1c..20032d7bdbb8a 100644 --- a/clients/client-codecatalyst/src/commands/ListSourceRepositoryBranchesCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListSourceRepositoryBranchesCommand.ts @@ -92,6 +92,7 @@ export interface ListSourceRepositoryBranchesCommandOutput * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class ListSourceRepositoryBranchesCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/ListSpacesCommand.ts b/clients/client-codecatalyst/src/commands/ListSpacesCommand.ts index ad8b679ab8753..dc295f948991a 100644 --- a/clients/client-codecatalyst/src/commands/ListSpacesCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListSpacesCommand.ts @@ -83,6 +83,7 @@ export interface ListSpacesCommandOutput extends ListSpacesResponse, __MetadataB * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class ListSpacesCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/ListWorkflowRunsCommand.ts b/clients/client-codecatalyst/src/commands/ListWorkflowRunsCommand.ts index 83a383a7293d2..b576c648564c3 100644 --- a/clients/client-codecatalyst/src/commands/ListWorkflowRunsCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListWorkflowRunsCommand.ts @@ -96,6 +96,7 @@ export interface ListWorkflowRunsCommandOutput extends ListWorkflowRunsResponse, * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class ListWorkflowRunsCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/ListWorkflowsCommand.ts b/clients/client-codecatalyst/src/commands/ListWorkflowsCommand.ts index fa5e3d1f4b68b..2e53e254a0aa8 100644 --- a/clients/client-codecatalyst/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListWorkflowsCommand.ts @@ -96,6 +96,7 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class ListWorkflowsCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/StartDevEnvironmentCommand.ts b/clients/client-codecatalyst/src/commands/StartDevEnvironmentCommand.ts index 81709d09af96e..760257360dc71 100644 --- a/clients/client-codecatalyst/src/commands/StartDevEnvironmentCommand.ts +++ b/clients/client-codecatalyst/src/commands/StartDevEnvironmentCommand.ts @@ -88,6 +88,7 @@ export interface StartDevEnvironmentCommandOutput extends StartDevEnvironmentRes * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class StartDevEnvironmentCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/StartDevEnvironmentSessionCommand.ts b/clients/client-codecatalyst/src/commands/StartDevEnvironmentSessionCommand.ts index 860080ca385e3..41305f54fcdcf 100644 --- a/clients/client-codecatalyst/src/commands/StartDevEnvironmentSessionCommand.ts +++ b/clients/client-codecatalyst/src/commands/StartDevEnvironmentSessionCommand.ts @@ -97,6 +97,7 @@ export interface StartDevEnvironmentSessionCommandOutput extends StartDevEnviron * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class StartDevEnvironmentSessionCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/StartWorkflowRunCommand.ts b/clients/client-codecatalyst/src/commands/StartWorkflowRunCommand.ts index f6dace81899dc..c683ba08bf08e 100644 --- a/clients/client-codecatalyst/src/commands/StartWorkflowRunCommand.ts +++ b/clients/client-codecatalyst/src/commands/StartWorkflowRunCommand.ts @@ -81,6 +81,7 @@ export interface StartWorkflowRunCommandOutput extends StartWorkflowRunResponse, * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class StartWorkflowRunCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/StopDevEnvironmentCommand.ts b/clients/client-codecatalyst/src/commands/StopDevEnvironmentCommand.ts index a9dff2710b1df..7fb4ea3088348 100644 --- a/clients/client-codecatalyst/src/commands/StopDevEnvironmentCommand.ts +++ b/clients/client-codecatalyst/src/commands/StopDevEnvironmentCommand.ts @@ -80,6 +80,7 @@ export interface StopDevEnvironmentCommandOutput extends StopDevEnvironmentRespo * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class StopDevEnvironmentCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/StopDevEnvironmentSessionCommand.ts b/clients/client-codecatalyst/src/commands/StopDevEnvironmentSessionCommand.ts index 00140c113ff8b..e27a1d9077ce9 100644 --- a/clients/client-codecatalyst/src/commands/StopDevEnvironmentSessionCommand.ts +++ b/clients/client-codecatalyst/src/commands/StopDevEnvironmentSessionCommand.ts @@ -81,6 +81,7 @@ export interface StopDevEnvironmentSessionCommandOutput extends StopDevEnvironme * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class StopDevEnvironmentSessionCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/UpdateDevEnvironmentCommand.ts b/clients/client-codecatalyst/src/commands/UpdateDevEnvironmentCommand.ts index 898d1f24b235a..8fdaddbdafd1d 100644 --- a/clients/client-codecatalyst/src/commands/UpdateDevEnvironmentCommand.ts +++ b/clients/client-codecatalyst/src/commands/UpdateDevEnvironmentCommand.ts @@ -99,6 +99,7 @@ export interface UpdateDevEnvironmentCommandOutput extends UpdateDevEnvironmentR * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class UpdateDevEnvironmentCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/UpdateProjectCommand.ts b/clients/client-codecatalyst/src/commands/UpdateProjectCommand.ts index b2c8a6332fb56..13841cac8b407 100644 --- a/clients/client-codecatalyst/src/commands/UpdateProjectCommand.ts +++ b/clients/client-codecatalyst/src/commands/UpdateProjectCommand.ts @@ -80,6 +80,7 @@ export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __Met * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class UpdateProjectCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/UpdateSpaceCommand.ts b/clients/client-codecatalyst/src/commands/UpdateSpaceCommand.ts index 4fb3e89bf8f19..9828e18cbe246 100644 --- a/clients/client-codecatalyst/src/commands/UpdateSpaceCommand.ts +++ b/clients/client-codecatalyst/src/commands/UpdateSpaceCommand.ts @@ -78,6 +78,7 @@ export interface UpdateSpaceCommandOutput extends UpdateSpaceResponse, __Metadat * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class UpdateSpaceCommand extends $Command diff --git a/clients/client-codecatalyst/src/commands/VerifySessionCommand.ts b/clients/client-codecatalyst/src/commands/VerifySessionCommand.ts index 159a080b971cf..8625a1e0d80ba 100644 --- a/clients/client-codecatalyst/src/commands/VerifySessionCommand.ts +++ b/clients/client-codecatalyst/src/commands/VerifySessionCommand.ts @@ -73,6 +73,7 @@ export interface VerifySessionCommandOutput extends VerifySessionResponse, __Met * @throws {@link CodeCatalystServiceException} *

Base exception class for all service exceptions from CodeCatalyst service.

* + * * @public */ export class VerifySessionCommand extends $Command diff --git a/clients/client-codecommit/src/commands/AssociateApprovalRuleTemplateWithRepositoryCommand.ts b/clients/client-codecommit/src/commands/AssociateApprovalRuleTemplateWithRepositoryCommand.ts index 1b0602bfafab0..c96fc4026a178 100644 --- a/clients/client-codecommit/src/commands/AssociateApprovalRuleTemplateWithRepositoryCommand.ts +++ b/clients/client-codecommit/src/commands/AssociateApprovalRuleTemplateWithRepositoryCommand.ts @@ -109,6 +109,7 @@ export interface AssociateApprovalRuleTemplateWithRepositoryCommandOutput extend * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class AssociateApprovalRuleTemplateWithRepositoryCommand extends $Command diff --git a/clients/client-codecommit/src/commands/BatchAssociateApprovalRuleTemplateWithRepositoriesCommand.ts b/clients/client-codecommit/src/commands/BatchAssociateApprovalRuleTemplateWithRepositoriesCommand.ts index 0d3b36a6de0e3..ab9fced2e5da8 100644 --- a/clients/client-codecommit/src/commands/BatchAssociateApprovalRuleTemplateWithRepositoriesCommand.ts +++ b/clients/client-codecommit/src/commands/BatchAssociateApprovalRuleTemplateWithRepositoriesCommand.ts @@ -109,6 +109,7 @@ export interface BatchAssociateApprovalRuleTemplateWithRepositoriesCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class BatchAssociateApprovalRuleTemplateWithRepositoriesCommand extends $Command diff --git a/clients/client-codecommit/src/commands/BatchDescribeMergeConflictsCommand.ts b/clients/client-codecommit/src/commands/BatchDescribeMergeConflictsCommand.ts index 3cca18e600987..99dd562ad58d5 100644 --- a/clients/client-codecommit/src/commands/BatchDescribeMergeConflictsCommand.ts +++ b/clients/client-codecommit/src/commands/BatchDescribeMergeConflictsCommand.ts @@ -200,6 +200,7 @@ export interface BatchDescribeMergeConflictsCommandOutput extends BatchDescribeM * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class BatchDescribeMergeConflictsCommand extends $Command diff --git a/clients/client-codecommit/src/commands/BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand.ts b/clients/client-codecommit/src/commands/BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand.ts index ce453f5aef13c..2dd288957b2a2 100644 --- a/clients/client-codecommit/src/commands/BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand.ts +++ b/clients/client-codecommit/src/commands/BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand.ts @@ -109,6 +109,7 @@ export interface BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandOut * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand extends $Command diff --git a/clients/client-codecommit/src/commands/BatchGetCommitsCommand.ts b/clients/client-codecommit/src/commands/BatchGetCommitsCommand.ts index 4669e7dcd34b3..741d7e9962b48 100644 --- a/clients/client-codecommit/src/commands/BatchGetCommitsCommand.ts +++ b/clients/client-codecommit/src/commands/BatchGetCommitsCommand.ts @@ -120,6 +120,7 @@ export interface BatchGetCommitsCommandOutput extends BatchGetCommitsOutput, __M * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class BatchGetCommitsCommand extends $Command diff --git a/clients/client-codecommit/src/commands/BatchGetRepositoriesCommand.ts b/clients/client-codecommit/src/commands/BatchGetRepositoriesCommand.ts index 32af7c1cb18be..98580eaa90ab4 100644 --- a/clients/client-codecommit/src/commands/BatchGetRepositoriesCommand.ts +++ b/clients/client-codecommit/src/commands/BatchGetRepositoriesCommand.ts @@ -118,6 +118,7 @@ export interface BatchGetRepositoriesCommandOutput extends BatchGetRepositoriesO * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class BatchGetRepositoriesCommand extends $Command diff --git a/clients/client-codecommit/src/commands/CreateApprovalRuleTemplateCommand.ts b/clients/client-codecommit/src/commands/CreateApprovalRuleTemplateCommand.ts index 4fc0805898c8b..5b7fe0b493455 100644 --- a/clients/client-codecommit/src/commands/CreateApprovalRuleTemplateCommand.ts +++ b/clients/client-codecommit/src/commands/CreateApprovalRuleTemplateCommand.ts @@ -97,6 +97,7 @@ export interface CreateApprovalRuleTemplateCommandOutput extends CreateApprovalR * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class CreateApprovalRuleTemplateCommand extends $Command diff --git a/clients/client-codecommit/src/commands/CreateBranchCommand.ts b/clients/client-codecommit/src/commands/CreateBranchCommand.ts index 041da3c31c28c..6c02df386a803 100644 --- a/clients/client-codecommit/src/commands/CreateBranchCommand.ts +++ b/clients/client-codecommit/src/commands/CreateBranchCommand.ts @@ -107,6 +107,7 @@ export interface CreateBranchCommandOutput extends __MetadataBearer {} * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class CreateBranchCommand extends $Command diff --git a/clients/client-codecommit/src/commands/CreateCommitCommand.ts b/clients/client-codecommit/src/commands/CreateCommitCommand.ts index 6884c71b3a82e..d40cf32f1b30c 100644 --- a/clients/client-codecommit/src/commands/CreateCommitCommand.ts +++ b/clients/client-codecommit/src/commands/CreateCommitCommand.ts @@ -243,6 +243,7 @@ export interface CreateCommitCommandOutput extends CreateCommitOutput, __Metadat * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class CreateCommitCommand extends $Command diff --git a/clients/client-codecommit/src/commands/CreatePullRequestApprovalRuleCommand.ts b/clients/client-codecommit/src/commands/CreatePullRequestApprovalRuleCommand.ts index 320e1c6ec334f..90ee827562eee 100644 --- a/clients/client-codecommit/src/commands/CreatePullRequestApprovalRuleCommand.ts +++ b/clients/client-codecommit/src/commands/CreatePullRequestApprovalRuleCommand.ts @@ -120,6 +120,7 @@ export interface CreatePullRequestApprovalRuleCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class CreatePullRequestApprovalRuleCommand extends $Command diff --git a/clients/client-codecommit/src/commands/CreatePullRequestCommand.ts b/clients/client-codecommit/src/commands/CreatePullRequestCommand.ts index 24c2620f26382..b4a6ee687c073 100644 --- a/clients/client-codecommit/src/commands/CreatePullRequestCommand.ts +++ b/clients/client-codecommit/src/commands/CreatePullRequestCommand.ts @@ -196,6 +196,7 @@ export interface CreatePullRequestCommandOutput extends CreatePullRequestOutput, * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class CreatePullRequestCommand extends $Command diff --git a/clients/client-codecommit/src/commands/CreateRepositoryCommand.ts b/clients/client-codecommit/src/commands/CreateRepositoryCommand.ts index 4fa609c458fc3..17d7655427994 100644 --- a/clients/client-codecommit/src/commands/CreateRepositoryCommand.ts +++ b/clients/client-codecommit/src/commands/CreateRepositoryCommand.ts @@ -129,6 +129,7 @@ export interface CreateRepositoryCommandOutput extends CreateRepositoryOutput, _ * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class CreateRepositoryCommand extends $Command diff --git a/clients/client-codecommit/src/commands/CreateUnreferencedMergeCommitCommand.ts b/clients/client-codecommit/src/commands/CreateUnreferencedMergeCommitCommand.ts index d2dfd0f5b842c..46a1bb130438a 100644 --- a/clients/client-codecommit/src/commands/CreateUnreferencedMergeCommitCommand.ts +++ b/clients/client-codecommit/src/commands/CreateUnreferencedMergeCommitCommand.ts @@ -218,6 +218,7 @@ export interface CreateUnreferencedMergeCommitCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class CreateUnreferencedMergeCommitCommand extends $Command diff --git a/clients/client-codecommit/src/commands/DeleteApprovalRuleTemplateCommand.ts b/clients/client-codecommit/src/commands/DeleteApprovalRuleTemplateCommand.ts index a58cb6a5201a7..5955124c23c57 100644 --- a/clients/client-codecommit/src/commands/DeleteApprovalRuleTemplateCommand.ts +++ b/clients/client-codecommit/src/commands/DeleteApprovalRuleTemplateCommand.ts @@ -67,6 +67,7 @@ export interface DeleteApprovalRuleTemplateCommandOutput extends DeleteApprovalR * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class DeleteApprovalRuleTemplateCommand extends $Command diff --git a/clients/client-codecommit/src/commands/DeleteBranchCommand.ts b/clients/client-codecommit/src/commands/DeleteBranchCommand.ts index da02d4b6c8647..07b8b7b4632de 100644 --- a/clients/client-codecommit/src/commands/DeleteBranchCommand.ts +++ b/clients/client-codecommit/src/commands/DeleteBranchCommand.ts @@ -97,6 +97,7 @@ export interface DeleteBranchCommandOutput extends DeleteBranchOutput, __Metadat * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class DeleteBranchCommand extends $Command diff --git a/clients/client-codecommit/src/commands/DeleteCommentContentCommand.ts b/clients/client-codecommit/src/commands/DeleteCommentContentCommand.ts index 344c99d2dd703..0d2878dfc2c2e 100644 --- a/clients/client-codecommit/src/commands/DeleteCommentContentCommand.ts +++ b/clients/client-codecommit/src/commands/DeleteCommentContentCommand.ts @@ -83,6 +83,7 @@ export interface DeleteCommentContentCommandOutput extends DeleteCommentContentO * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class DeleteCommentContentCommand extends $Command diff --git a/clients/client-codecommit/src/commands/DeleteFileCommand.ts b/clients/client-codecommit/src/commands/DeleteFileCommand.ts index 3214f71ca8ff8..d77488fa8345c 100644 --- a/clients/client-codecommit/src/commands/DeleteFileCommand.ts +++ b/clients/client-codecommit/src/commands/DeleteFileCommand.ts @@ -144,6 +144,7 @@ export interface DeleteFileCommandOutput extends DeleteFileOutput, __MetadataBea * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class DeleteFileCommand extends $Command diff --git a/clients/client-codecommit/src/commands/DeletePullRequestApprovalRuleCommand.ts b/clients/client-codecommit/src/commands/DeletePullRequestApprovalRuleCommand.ts index 9518caabf48f0..2f1103e0f5ca3 100644 --- a/clients/client-codecommit/src/commands/DeletePullRequestApprovalRuleCommand.ts +++ b/clients/client-codecommit/src/commands/DeletePullRequestApprovalRuleCommand.ts @@ -100,6 +100,7 @@ export interface DeletePullRequestApprovalRuleCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class DeletePullRequestApprovalRuleCommand extends $Command diff --git a/clients/client-codecommit/src/commands/DeleteRepositoryCommand.ts b/clients/client-codecommit/src/commands/DeleteRepositoryCommand.ts index a690f16dd6e02..e45015181f054 100644 --- a/clients/client-codecommit/src/commands/DeleteRepositoryCommand.ts +++ b/clients/client-codecommit/src/commands/DeleteRepositoryCommand.ts @@ -86,6 +86,7 @@ export interface DeleteRepositoryCommandOutput extends DeleteRepositoryOutput, _ * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class DeleteRepositoryCommand extends $Command diff --git a/clients/client-codecommit/src/commands/DescribeMergeConflictsCommand.ts b/clients/client-codecommit/src/commands/DescribeMergeConflictsCommand.ts index bdc3d565abf40..438212f1cdef2 100644 --- a/clients/client-codecommit/src/commands/DescribeMergeConflictsCommand.ts +++ b/clients/client-codecommit/src/commands/DescribeMergeConflictsCommand.ts @@ -195,6 +195,7 @@ export interface DescribeMergeConflictsCommandOutput extends DescribeMergeConfli * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class DescribeMergeConflictsCommand extends $Command diff --git a/clients/client-codecommit/src/commands/DescribePullRequestEventsCommand.ts b/clients/client-codecommit/src/commands/DescribePullRequestEventsCommand.ts index 517c1ce689a07..3e75b61546893 100644 --- a/clients/client-codecommit/src/commands/DescribePullRequestEventsCommand.ts +++ b/clients/client-codecommit/src/commands/DescribePullRequestEventsCommand.ts @@ -145,6 +145,7 @@ export interface DescribePullRequestEventsCommandOutput extends DescribePullRequ * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class DescribePullRequestEventsCommand extends $Command diff --git a/clients/client-codecommit/src/commands/DisassociateApprovalRuleTemplateFromRepositoryCommand.ts b/clients/client-codecommit/src/commands/DisassociateApprovalRuleTemplateFromRepositoryCommand.ts index ac63fc11ab396..81fed3d01fdfd 100644 --- a/clients/client-codecommit/src/commands/DisassociateApprovalRuleTemplateFromRepositoryCommand.ts +++ b/clients/client-codecommit/src/commands/DisassociateApprovalRuleTemplateFromRepositoryCommand.ts @@ -102,6 +102,7 @@ export interface DisassociateApprovalRuleTemplateFromRepositoryCommandOutput ext * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class DisassociateApprovalRuleTemplateFromRepositoryCommand extends $Command diff --git a/clients/client-codecommit/src/commands/EvaluatePullRequestApprovalRulesCommand.ts b/clients/client-codecommit/src/commands/EvaluatePullRequestApprovalRulesCommand.ts index 6d679b05e3ab7..4fcf43d3f9d0b 100644 --- a/clients/client-codecommit/src/commands/EvaluatePullRequestApprovalRulesCommand.ts +++ b/clients/client-codecommit/src/commands/EvaluatePullRequestApprovalRulesCommand.ts @@ -103,6 +103,7 @@ export interface EvaluatePullRequestApprovalRulesCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class EvaluatePullRequestApprovalRulesCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetApprovalRuleTemplateCommand.ts b/clients/client-codecommit/src/commands/GetApprovalRuleTemplateCommand.ts index 560828edfaea3..4c195fe49d957 100644 --- a/clients/client-codecommit/src/commands/GetApprovalRuleTemplateCommand.ts +++ b/clients/client-codecommit/src/commands/GetApprovalRuleTemplateCommand.ts @@ -76,6 +76,7 @@ export interface GetApprovalRuleTemplateCommandOutput extends GetApprovalRuleTem * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetApprovalRuleTemplateCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetBlobCommand.ts b/clients/client-codecommit/src/commands/GetBlobCommand.ts index 975dc274295c9..4c16ae2bf9119 100644 --- a/clients/client-codecommit/src/commands/GetBlobCommand.ts +++ b/clients/client-codecommit/src/commands/GetBlobCommand.ts @@ -98,6 +98,7 @@ export interface GetBlobCommandOutput extends GetBlobOutput, __MetadataBearer {} * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetBlobCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetBranchCommand.ts b/clients/client-codecommit/src/commands/GetBranchCommand.ts index 9d84ec787b05d..26ef523cd9c0e 100644 --- a/clients/client-codecommit/src/commands/GetBranchCommand.ts +++ b/clients/client-codecommit/src/commands/GetBranchCommand.ts @@ -97,6 +97,7 @@ export interface GetBranchCommandOutput extends GetBranchOutput, __MetadataBeare * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetBranchCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetCommentCommand.ts b/clients/client-codecommit/src/commands/GetCommentCommand.ts index f4d43cd7d1d30..e0da7edabe1cc 100644 --- a/clients/client-codecommit/src/commands/GetCommentCommand.ts +++ b/clients/client-codecommit/src/commands/GetCommentCommand.ts @@ -102,6 +102,7 @@ export interface GetCommentCommandOutput extends GetCommentOutput, __MetadataBea * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetCommentCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetCommentReactionsCommand.ts b/clients/client-codecommit/src/commands/GetCommentReactionsCommand.ts index 895abdebb511e..c14741fed25f2 100644 --- a/clients/client-codecommit/src/commands/GetCommentReactionsCommand.ts +++ b/clients/client-codecommit/src/commands/GetCommentReactionsCommand.ts @@ -93,6 +93,7 @@ export interface GetCommentReactionsCommandOutput extends GetCommentReactionsOut * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetCommentReactionsCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetCommentsForComparedCommitCommand.ts b/clients/client-codecommit/src/commands/GetCommentsForComparedCommitCommand.ts index dc078b0b9bead..b13f8720968f1 100644 --- a/clients/client-codecommit/src/commands/GetCommentsForComparedCommitCommand.ts +++ b/clients/client-codecommit/src/commands/GetCommentsForComparedCommitCommand.ts @@ -144,6 +144,7 @@ export interface GetCommentsForComparedCommitCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetCommentsForComparedCommitCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetCommentsForPullRequestCommand.ts b/clients/client-codecommit/src/commands/GetCommentsForPullRequestCommand.ts index e2d2c807fa6d3..2e83dd2a9f410 100644 --- a/clients/client-codecommit/src/commands/GetCommentsForPullRequestCommand.ts +++ b/clients/client-codecommit/src/commands/GetCommentsForPullRequestCommand.ts @@ -153,6 +153,7 @@ export interface GetCommentsForPullRequestCommandOutput extends GetCommentsForPu * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetCommentsForPullRequestCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetCommitCommand.ts b/clients/client-codecommit/src/commands/GetCommitCommand.ts index f7386dcee7386..51433da38fc00 100644 --- a/clients/client-codecommit/src/commands/GetCommitCommand.ts +++ b/clients/client-codecommit/src/commands/GetCommitCommand.ts @@ -112,6 +112,7 @@ export interface GetCommitCommandOutput extends GetCommitOutput, __MetadataBeare * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetCommitCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetDifferencesCommand.ts b/clients/client-codecommit/src/commands/GetDifferencesCommand.ts index 8b207646cb517..e1d95eb8683fb 100644 --- a/clients/client-codecommit/src/commands/GetDifferencesCommand.ts +++ b/clients/client-codecommit/src/commands/GetDifferencesCommand.ts @@ -131,6 +131,7 @@ export interface GetDifferencesCommandOutput extends GetDifferencesOutput, __Met * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetDifferencesCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetFileCommand.ts b/clients/client-codecommit/src/commands/GetFileCommand.ts index 8d93bea8b7b62..d67ddc5a2e534 100644 --- a/clients/client-codecommit/src/commands/GetFileCommand.ts +++ b/clients/client-codecommit/src/commands/GetFileCommand.ts @@ -111,6 +111,7 @@ export interface GetFileCommandOutput extends GetFileOutput, __MetadataBearer {} * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetFileCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetFolderCommand.ts b/clients/client-codecommit/src/commands/GetFolderCommand.ts index 2504f74240803..6448737038182 100644 --- a/clients/client-codecommit/src/commands/GetFolderCommand.ts +++ b/clients/client-codecommit/src/commands/GetFolderCommand.ts @@ -134,6 +134,7 @@ export interface GetFolderCommandOutput extends GetFolderOutput, __MetadataBeare * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetFolderCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetMergeCommitCommand.ts b/clients/client-codecommit/src/commands/GetMergeCommitCommand.ts index 6caee4e7c9137..ef4d2d72f79ba 100644 --- a/clients/client-codecommit/src/commands/GetMergeCommitCommand.ts +++ b/clients/client-codecommit/src/commands/GetMergeCommitCommand.ts @@ -106,6 +106,7 @@ export interface GetMergeCommitCommandOutput extends GetMergeCommitOutput, __Met * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetMergeCommitCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetMergeConflictsCommand.ts b/clients/client-codecommit/src/commands/GetMergeConflictsCommand.ts index 58da53f0267db..3dfd1d8d54b4b 100644 --- a/clients/client-codecommit/src/commands/GetMergeConflictsCommand.ts +++ b/clients/client-codecommit/src/commands/GetMergeConflictsCommand.ts @@ -171,6 +171,7 @@ export interface GetMergeConflictsCommandOutput extends GetMergeConflictsOutput, * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetMergeConflictsCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetMergeOptionsCommand.ts b/clients/client-codecommit/src/commands/GetMergeOptionsCommand.ts index 52f5390667708..5a60211bca086 100644 --- a/clients/client-codecommit/src/commands/GetMergeOptionsCommand.ts +++ b/clients/client-codecommit/src/commands/GetMergeOptionsCommand.ts @@ -120,6 +120,7 @@ export interface GetMergeOptionsCommandOutput extends GetMergeOptionsOutput, __M * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetMergeOptionsCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetPullRequestApprovalStatesCommand.ts b/clients/client-codecommit/src/commands/GetPullRequestApprovalStatesCommand.ts index e68b754c8fbbe..5793f24af9a44 100644 --- a/clients/client-codecommit/src/commands/GetPullRequestApprovalStatesCommand.ts +++ b/clients/client-codecommit/src/commands/GetPullRequestApprovalStatesCommand.ts @@ -97,6 +97,7 @@ export interface GetPullRequestApprovalStatesCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetPullRequestApprovalStatesCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetPullRequestCommand.ts b/clients/client-codecommit/src/commands/GetPullRequestCommand.ts index f4be27bd26c17..2ef70e436af62 100644 --- a/clients/client-codecommit/src/commands/GetPullRequestCommand.ts +++ b/clients/client-codecommit/src/commands/GetPullRequestCommand.ts @@ -120,6 +120,7 @@ export interface GetPullRequestCommandOutput extends GetPullRequestOutput, __Met * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetPullRequestCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetPullRequestOverrideStateCommand.ts b/clients/client-codecommit/src/commands/GetPullRequestOverrideStateCommand.ts index 66465b958b6c2..b49e02236000e 100644 --- a/clients/client-codecommit/src/commands/GetPullRequestOverrideStateCommand.ts +++ b/clients/client-codecommit/src/commands/GetPullRequestOverrideStateCommand.ts @@ -88,6 +88,7 @@ export interface GetPullRequestOverrideStateCommandOutput extends GetPullRequest * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetPullRequestOverrideStateCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetRepositoryCommand.ts b/clients/client-codecommit/src/commands/GetRepositoryCommand.ts index 98b1c7e81b65f..826b03570afb9 100644 --- a/clients/client-codecommit/src/commands/GetRepositoryCommand.ts +++ b/clients/client-codecommit/src/commands/GetRepositoryCommand.ts @@ -103,6 +103,7 @@ export interface GetRepositoryCommandOutput extends GetRepositoryOutput, __Metad * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetRepositoryCommand extends $Command diff --git a/clients/client-codecommit/src/commands/GetRepositoryTriggersCommand.ts b/clients/client-codecommit/src/commands/GetRepositoryTriggersCommand.ts index b31611b5e9b07..bec27e239ca65 100644 --- a/clients/client-codecommit/src/commands/GetRepositoryTriggersCommand.ts +++ b/clients/client-codecommit/src/commands/GetRepositoryTriggersCommand.ts @@ -97,6 +97,7 @@ export interface GetRepositoryTriggersCommandOutput extends GetRepositoryTrigger * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class GetRepositoryTriggersCommand extends $Command diff --git a/clients/client-codecommit/src/commands/ListApprovalRuleTemplatesCommand.ts b/clients/client-codecommit/src/commands/ListApprovalRuleTemplatesCommand.ts index 27faf8b08e09a..dc64bada9a7bc 100644 --- a/clients/client-codecommit/src/commands/ListApprovalRuleTemplatesCommand.ts +++ b/clients/client-codecommit/src/commands/ListApprovalRuleTemplatesCommand.ts @@ -66,6 +66,7 @@ export interface ListApprovalRuleTemplatesCommandOutput extends ListApprovalRule * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class ListApprovalRuleTemplatesCommand extends $Command diff --git a/clients/client-codecommit/src/commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand.ts b/clients/client-codecommit/src/commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand.ts index 75736d8d342e5..a6f354e36acbe 100644 --- a/clients/client-codecommit/src/commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand.ts +++ b/clients/client-codecommit/src/commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand.ts @@ -104,6 +104,7 @@ export interface ListAssociatedApprovalRuleTemplatesForRepositoryCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class ListAssociatedApprovalRuleTemplatesForRepositoryCommand extends $Command diff --git a/clients/client-codecommit/src/commands/ListBranchesCommand.ts b/clients/client-codecommit/src/commands/ListBranchesCommand.ts index 03fd01292a5d1..33c4ac8240661 100644 --- a/clients/client-codecommit/src/commands/ListBranchesCommand.ts +++ b/clients/client-codecommit/src/commands/ListBranchesCommand.ts @@ -91,6 +91,7 @@ export interface ListBranchesCommandOutput extends ListBranchesOutput, __Metadat * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class ListBranchesCommand extends $Command diff --git a/clients/client-codecommit/src/commands/ListFileCommitHistoryCommand.ts b/clients/client-codecommit/src/commands/ListFileCommitHistoryCommand.ts index 2b27dd3b27a45..bbc05aa2f9897 100644 --- a/clients/client-codecommit/src/commands/ListFileCommitHistoryCommand.ts +++ b/clients/client-codecommit/src/commands/ListFileCommitHistoryCommand.ts @@ -136,6 +136,7 @@ export interface ListFileCommitHistoryCommandOutput extends ListFileCommitHistor * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class ListFileCommitHistoryCommand extends $Command diff --git a/clients/client-codecommit/src/commands/ListPullRequestsCommand.ts b/clients/client-codecommit/src/commands/ListPullRequestsCommand.ts index 75106028b884c..f1cc929f2d98c 100644 --- a/clients/client-codecommit/src/commands/ListPullRequestsCommand.ts +++ b/clients/client-codecommit/src/commands/ListPullRequestsCommand.ts @@ -107,6 +107,7 @@ export interface ListPullRequestsCommandOutput extends ListPullRequestsOutput, _ * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class ListPullRequestsCommand extends $Command diff --git a/clients/client-codecommit/src/commands/ListRepositoriesCommand.ts b/clients/client-codecommit/src/commands/ListRepositoriesCommand.ts index 7904c3276f180..6f395c9025505 100644 --- a/clients/client-codecommit/src/commands/ListRepositoriesCommand.ts +++ b/clients/client-codecommit/src/commands/ListRepositoriesCommand.ts @@ -72,6 +72,7 @@ export interface ListRepositoriesCommandOutput extends ListRepositoriesOutput, _ * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class ListRepositoriesCommand extends $Command diff --git a/clients/client-codecommit/src/commands/ListRepositoriesForApprovalRuleTemplateCommand.ts b/clients/client-codecommit/src/commands/ListRepositoriesForApprovalRuleTemplateCommand.ts index 2f3b602284373..366bac3cec3b9 100644 --- a/clients/client-codecommit/src/commands/ListRepositoriesForApprovalRuleTemplateCommand.ts +++ b/clients/client-codecommit/src/commands/ListRepositoriesForApprovalRuleTemplateCommand.ts @@ -102,6 +102,7 @@ export interface ListRepositoriesForApprovalRuleTemplateCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class ListRepositoriesForApprovalRuleTemplateCommand extends $Command diff --git a/clients/client-codecommit/src/commands/ListTagsForResourceCommand.ts b/clients/client-codecommit/src/commands/ListTagsForResourceCommand.ts index e06357ea858df..8fe3a3219e2e8 100644 --- a/clients/client-codecommit/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codecommit/src/commands/ListTagsForResourceCommand.ts @@ -81,6 +81,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-codecommit/src/commands/MergeBranchesByFastForwardCommand.ts b/clients/client-codecommit/src/commands/MergeBranchesByFastForwardCommand.ts index 0b541c621bec1..d2a5c43ccb163 100644 --- a/clients/client-codecommit/src/commands/MergeBranchesByFastForwardCommand.ts +++ b/clients/client-codecommit/src/commands/MergeBranchesByFastForwardCommand.ts @@ -123,6 +123,7 @@ export interface MergeBranchesByFastForwardCommandOutput extends MergeBranchesBy * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class MergeBranchesByFastForwardCommand extends $Command diff --git a/clients/client-codecommit/src/commands/MergeBranchesBySquashCommand.ts b/clients/client-codecommit/src/commands/MergeBranchesBySquashCommand.ts index 43a509ecec538..3cd75173a3c97 100644 --- a/clients/client-codecommit/src/commands/MergeBranchesBySquashCommand.ts +++ b/clients/client-codecommit/src/commands/MergeBranchesBySquashCommand.ts @@ -216,6 +216,7 @@ export interface MergeBranchesBySquashCommandOutput extends MergeBranchesBySquas * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class MergeBranchesBySquashCommand extends $Command diff --git a/clients/client-codecommit/src/commands/MergeBranchesByThreeWayCommand.ts b/clients/client-codecommit/src/commands/MergeBranchesByThreeWayCommand.ts index b971818092576..e91ce63b5da25 100644 --- a/clients/client-codecommit/src/commands/MergeBranchesByThreeWayCommand.ts +++ b/clients/client-codecommit/src/commands/MergeBranchesByThreeWayCommand.ts @@ -216,6 +216,7 @@ export interface MergeBranchesByThreeWayCommandOutput extends MergeBranchesByThr * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class MergeBranchesByThreeWayCommand extends $Command diff --git a/clients/client-codecommit/src/commands/MergePullRequestByFastForwardCommand.ts b/clients/client-codecommit/src/commands/MergePullRequestByFastForwardCommand.ts index 9e14cd78d3edc..01aac69d68b2a 100644 --- a/clients/client-codecommit/src/commands/MergePullRequestByFastForwardCommand.ts +++ b/clients/client-codecommit/src/commands/MergePullRequestByFastForwardCommand.ts @@ -167,6 +167,7 @@ export interface MergePullRequestByFastForwardCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class MergePullRequestByFastForwardCommand extends $Command diff --git a/clients/client-codecommit/src/commands/MergePullRequestBySquashCommand.ts b/clients/client-codecommit/src/commands/MergePullRequestBySquashCommand.ts index 750fb2247f184..8a9ae7d079a48 100644 --- a/clients/client-codecommit/src/commands/MergePullRequestBySquashCommand.ts +++ b/clients/client-codecommit/src/commands/MergePullRequestBySquashCommand.ts @@ -252,6 +252,7 @@ export interface MergePullRequestBySquashCommandOutput extends MergePullRequestB * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class MergePullRequestBySquashCommand extends $Command diff --git a/clients/client-codecommit/src/commands/MergePullRequestByThreeWayCommand.ts b/clients/client-codecommit/src/commands/MergePullRequestByThreeWayCommand.ts index 8ae4c6cfcd00d..cd2062a2aed3d 100644 --- a/clients/client-codecommit/src/commands/MergePullRequestByThreeWayCommand.ts +++ b/clients/client-codecommit/src/commands/MergePullRequestByThreeWayCommand.ts @@ -252,6 +252,7 @@ export interface MergePullRequestByThreeWayCommandOutput extends MergePullReques * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class MergePullRequestByThreeWayCommand extends $Command diff --git a/clients/client-codecommit/src/commands/OverridePullRequestApprovalRulesCommand.ts b/clients/client-codecommit/src/commands/OverridePullRequestApprovalRulesCommand.ts index d9983fb888da7..4b3583ef66980 100644 --- a/clients/client-codecommit/src/commands/OverridePullRequestApprovalRulesCommand.ts +++ b/clients/client-codecommit/src/commands/OverridePullRequestApprovalRulesCommand.ts @@ -103,6 +103,7 @@ export interface OverridePullRequestApprovalRulesCommandOutput extends __Metadat * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class OverridePullRequestApprovalRulesCommand extends $Command diff --git a/clients/client-codecommit/src/commands/PostCommentForComparedCommitCommand.ts b/clients/client-codecommit/src/commands/PostCommentForComparedCommitCommand.ts index e185fb31571a2..d85a4e094f605 100644 --- a/clients/client-codecommit/src/commands/PostCommentForComparedCommitCommand.ts +++ b/clients/client-codecommit/src/commands/PostCommentForComparedCommitCommand.ts @@ -174,6 +174,7 @@ export interface PostCommentForComparedCommitCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class PostCommentForComparedCommitCommand extends $Command diff --git a/clients/client-codecommit/src/commands/PostCommentForPullRequestCommand.ts b/clients/client-codecommit/src/commands/PostCommentForPullRequestCommand.ts index dbb8fd3d6e75f..d1c38322f6f3a 100644 --- a/clients/client-codecommit/src/commands/PostCommentForPullRequestCommand.ts +++ b/clients/client-codecommit/src/commands/PostCommentForPullRequestCommand.ts @@ -183,6 +183,7 @@ export interface PostCommentForPullRequestCommandOutput extends PostCommentForPu * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class PostCommentForPullRequestCommand extends $Command diff --git a/clients/client-codecommit/src/commands/PostCommentReplyCommand.ts b/clients/client-codecommit/src/commands/PostCommentReplyCommand.ts index 51b29e389c000..31b8b1e8f9ab3 100644 --- a/clients/client-codecommit/src/commands/PostCommentReplyCommand.ts +++ b/clients/client-codecommit/src/commands/PostCommentReplyCommand.ts @@ -102,6 +102,7 @@ export interface PostCommentReplyCommandOutput extends PostCommentReplyOutput, _ * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class PostCommentReplyCommand extends $Command diff --git a/clients/client-codecommit/src/commands/PutCommentReactionCommand.ts b/clients/client-codecommit/src/commands/PutCommentReactionCommand.ts index 3a763cdb18b99..9edc3c863590a 100644 --- a/clients/client-codecommit/src/commands/PutCommentReactionCommand.ts +++ b/clients/client-codecommit/src/commands/PutCommentReactionCommand.ts @@ -77,6 +77,7 @@ export interface PutCommentReactionCommandOutput extends __MetadataBearer {} * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class PutCommentReactionCommand extends $Command diff --git a/clients/client-codecommit/src/commands/PutFileCommand.ts b/clients/client-codecommit/src/commands/PutFileCommand.ts index 41c871b969fc5..8141ff83d56e2 100644 --- a/clients/client-codecommit/src/commands/PutFileCommand.ts +++ b/clients/client-codecommit/src/commands/PutFileCommand.ts @@ -173,6 +173,7 @@ export interface PutFileCommandOutput extends PutFileOutput, __MetadataBearer {} * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class PutFileCommand extends $Command diff --git a/clients/client-codecommit/src/commands/PutRepositoryTriggersCommand.ts b/clients/client-codecommit/src/commands/PutRepositoryTriggersCommand.ts index 3eb0424081d4c..4742f3b884438 100644 --- a/clients/client-codecommit/src/commands/PutRepositoryTriggersCommand.ts +++ b/clients/client-codecommit/src/commands/PutRepositoryTriggersCommand.ts @@ -140,6 +140,7 @@ export interface PutRepositoryTriggersCommandOutput extends PutRepositoryTrigger * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class PutRepositoryTriggersCommand extends $Command diff --git a/clients/client-codecommit/src/commands/TagResourceCommand.ts b/clients/client-codecommit/src/commands/TagResourceCommand.ts index 0ce828798050c..51ee7225fe196 100644 --- a/clients/client-codecommit/src/commands/TagResourceCommand.ts +++ b/clients/client-codecommit/src/commands/TagResourceCommand.ts @@ -94,6 +94,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-codecommit/src/commands/TestRepositoryTriggersCommand.ts b/clients/client-codecommit/src/commands/TestRepositoryTriggersCommand.ts index e3e08e826d3ad..e68face5ddb20 100644 --- a/clients/client-codecommit/src/commands/TestRepositoryTriggersCommand.ts +++ b/clients/client-codecommit/src/commands/TestRepositoryTriggersCommand.ts @@ -150,6 +150,7 @@ export interface TestRepositoryTriggersCommandOutput extends TestRepositoryTrigg * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class TestRepositoryTriggersCommand extends $Command diff --git a/clients/client-codecommit/src/commands/UntagResourceCommand.ts b/clients/client-codecommit/src/commands/UntagResourceCommand.ts index 1944b54fd243e..d51f318f7ea65 100644 --- a/clients/client-codecommit/src/commands/UntagResourceCommand.ts +++ b/clients/client-codecommit/src/commands/UntagResourceCommand.ts @@ -93,6 +93,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateContentCommand.ts b/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateContentCommand.ts index 288ee339e81de..4c0512d3659a8 100644 --- a/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateContentCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateContentCommand.ts @@ -94,6 +94,7 @@ export interface UpdateApprovalRuleTemplateContentCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class UpdateApprovalRuleTemplateContentCommand extends $Command diff --git a/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateDescriptionCommand.ts b/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateDescriptionCommand.ts index c314f8d5b3d60..9ee87ec87ec39 100644 --- a/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateDescriptionCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateDescriptionCommand.ts @@ -90,6 +90,7 @@ export interface UpdateApprovalRuleTemplateDescriptionCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class UpdateApprovalRuleTemplateDescriptionCommand extends $Command diff --git a/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateNameCommand.ts b/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateNameCommand.ts index 42c5fda3e8861..d8ec6a98bdfbb 100644 --- a/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateNameCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateNameCommand.ts @@ -87,6 +87,7 @@ export interface UpdateApprovalRuleTemplateNameCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class UpdateApprovalRuleTemplateNameCommand extends $Command diff --git a/clients/client-codecommit/src/commands/UpdateCommentCommand.ts b/clients/client-codecommit/src/commands/UpdateCommentCommand.ts index 5fb1697a16fbb..62d51a7abeacc 100644 --- a/clients/client-codecommit/src/commands/UpdateCommentCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateCommentCommand.ts @@ -93,6 +93,7 @@ export interface UpdateCommentCommandOutput extends UpdateCommentOutput, __Metad * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class UpdateCommentCommand extends $Command diff --git a/clients/client-codecommit/src/commands/UpdateDefaultBranchCommand.ts b/clients/client-codecommit/src/commands/UpdateDefaultBranchCommand.ts index 78dadd67878cf..515b404f704f9 100644 --- a/clients/client-codecommit/src/commands/UpdateDefaultBranchCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateDefaultBranchCommand.ts @@ -95,6 +95,7 @@ export interface UpdateDefaultBranchCommandOutput extends __MetadataBearer {} * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class UpdateDefaultBranchCommand extends $Command diff --git a/clients/client-codecommit/src/commands/UpdatePullRequestApprovalRuleContentCommand.ts b/clients/client-codecommit/src/commands/UpdatePullRequestApprovalRuleContentCommand.ts index 2bc98fe83d8ed..71ecda9fd5610 100644 --- a/clients/client-codecommit/src/commands/UpdatePullRequestApprovalRuleContentCommand.ts +++ b/clients/client-codecommit/src/commands/UpdatePullRequestApprovalRuleContentCommand.ts @@ -128,6 +128,7 @@ export interface UpdatePullRequestApprovalRuleContentCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class UpdatePullRequestApprovalRuleContentCommand extends $Command diff --git a/clients/client-codecommit/src/commands/UpdatePullRequestApprovalStateCommand.ts b/clients/client-codecommit/src/commands/UpdatePullRequestApprovalStateCommand.ts index e764b7192435d..a8d0666c7d3dc 100644 --- a/clients/client-codecommit/src/commands/UpdatePullRequestApprovalStateCommand.ts +++ b/clients/client-codecommit/src/commands/UpdatePullRequestApprovalStateCommand.ts @@ -107,6 +107,7 @@ export interface UpdatePullRequestApprovalStateCommandOutput extends __MetadataB * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class UpdatePullRequestApprovalStateCommand extends $Command diff --git a/clients/client-codecommit/src/commands/UpdatePullRequestDescriptionCommand.ts b/clients/client-codecommit/src/commands/UpdatePullRequestDescriptionCommand.ts index b7bc927941ec7..7ed8bec976ef5 100644 --- a/clients/client-codecommit/src/commands/UpdatePullRequestDescriptionCommand.ts +++ b/clients/client-codecommit/src/commands/UpdatePullRequestDescriptionCommand.ts @@ -118,6 +118,7 @@ export interface UpdatePullRequestDescriptionCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class UpdatePullRequestDescriptionCommand extends $Command diff --git a/clients/client-codecommit/src/commands/UpdatePullRequestStatusCommand.ts b/clients/client-codecommit/src/commands/UpdatePullRequestStatusCommand.ts index a0104684c656a..c0bae76010ddc 100644 --- a/clients/client-codecommit/src/commands/UpdatePullRequestStatusCommand.ts +++ b/clients/client-codecommit/src/commands/UpdatePullRequestStatusCommand.ts @@ -130,6 +130,7 @@ export interface UpdatePullRequestStatusCommandOutput extends UpdatePullRequestS * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class UpdatePullRequestStatusCommand extends $Command diff --git a/clients/client-codecommit/src/commands/UpdatePullRequestTitleCommand.ts b/clients/client-codecommit/src/commands/UpdatePullRequestTitleCommand.ts index fb6fbee8064d7..005984ee767fd 100644 --- a/clients/client-codecommit/src/commands/UpdatePullRequestTitleCommand.ts +++ b/clients/client-codecommit/src/commands/UpdatePullRequestTitleCommand.ts @@ -115,6 +115,7 @@ export interface UpdatePullRequestTitleCommandOutput extends UpdatePullRequestTi * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class UpdatePullRequestTitleCommand extends $Command diff --git a/clients/client-codecommit/src/commands/UpdateRepositoryDescriptionCommand.ts b/clients/client-codecommit/src/commands/UpdateRepositoryDescriptionCommand.ts index dbab9a8a6b6f4..8509a3ee376f5 100644 --- a/clients/client-codecommit/src/commands/UpdateRepositoryDescriptionCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateRepositoryDescriptionCommand.ts @@ -93,6 +93,7 @@ export interface UpdateRepositoryDescriptionCommandOutput extends __MetadataBear * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class UpdateRepositoryDescriptionCommand extends $Command diff --git a/clients/client-codecommit/src/commands/UpdateRepositoryEncryptionKeyCommand.ts b/clients/client-codecommit/src/commands/UpdateRepositoryEncryptionKeyCommand.ts index aee6ea98e9234..e9fbe6489fceb 100644 --- a/clients/client-codecommit/src/commands/UpdateRepositoryEncryptionKeyCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateRepositoryEncryptionKeyCommand.ts @@ -102,6 +102,7 @@ export interface UpdateRepositoryEncryptionKeyCommandOutput * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class UpdateRepositoryEncryptionKeyCommand extends $Command diff --git a/clients/client-codecommit/src/commands/UpdateRepositoryNameCommand.ts b/clients/client-codecommit/src/commands/UpdateRepositoryNameCommand.ts index 79b060ca9de9a..a165d2899d2c4 100644 --- a/clients/client-codecommit/src/commands/UpdateRepositoryNameCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateRepositoryNameCommand.ts @@ -75,6 +75,7 @@ export interface UpdateRepositoryNameCommandOutput extends __MetadataBearer {} * @throws {@link CodeCommitServiceException} *

Base exception class for all service exceptions from CodeCommit service.

* + * * @public */ export class UpdateRepositoryNameCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/CreateConnectionCommand.ts b/clients/client-codeconnections/src/commands/CreateConnectionCommand.ts index f612b7a2d69c7..d9f08d208c16d 100644 --- a/clients/client-codeconnections/src/commands/CreateConnectionCommand.ts +++ b/clients/client-codeconnections/src/commands/CreateConnectionCommand.ts @@ -80,6 +80,7 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _ * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class CreateConnectionCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/CreateHostCommand.ts b/clients/client-codeconnections/src/commands/CreateHostCommand.ts index 460e051eab077..c10a808fae03f 100644 --- a/clients/client-codeconnections/src/commands/CreateHostCommand.ts +++ b/clients/client-codeconnections/src/commands/CreateHostCommand.ts @@ -89,6 +89,7 @@ export interface CreateHostCommandOutput extends CreateHostOutput, __MetadataBea * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class CreateHostCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/CreateRepositoryLinkCommand.ts b/clients/client-codeconnections/src/commands/CreateRepositoryLinkCommand.ts index 939f4cacaf4f1..a5e71237fd44e 100644 --- a/clients/client-codeconnections/src/commands/CreateRepositoryLinkCommand.ts +++ b/clients/client-codeconnections/src/commands/CreateRepositoryLinkCommand.ts @@ -93,6 +93,7 @@ export interface CreateRepositoryLinkCommandOutput extends CreateRepositoryLinkO * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class CreateRepositoryLinkCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/CreateSyncConfigurationCommand.ts b/clients/client-codeconnections/src/commands/CreateSyncConfigurationCommand.ts index 40005c8d0c58e..ce4114e28e68d 100644 --- a/clients/client-codeconnections/src/commands/CreateSyncConfigurationCommand.ts +++ b/clients/client-codeconnections/src/commands/CreateSyncConfigurationCommand.ts @@ -99,6 +99,7 @@ export interface CreateSyncConfigurationCommandOutput extends CreateSyncConfigur * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class CreateSyncConfigurationCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/DeleteConnectionCommand.ts b/clients/client-codeconnections/src/commands/DeleteConnectionCommand.ts index ff976d86e5859..6f0e180822082 100644 --- a/clients/client-codeconnections/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-codeconnections/src/commands/DeleteConnectionCommand.ts @@ -56,6 +56,7 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionOutput, _ * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class DeleteConnectionCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/DeleteHostCommand.ts b/clients/client-codeconnections/src/commands/DeleteHostCommand.ts index cfcd255033377..70f6f6de599bd 100644 --- a/clients/client-codeconnections/src/commands/DeleteHostCommand.ts +++ b/clients/client-codeconnections/src/commands/DeleteHostCommand.ts @@ -62,6 +62,7 @@ export interface DeleteHostCommandOutput extends DeleteHostOutput, __MetadataBea * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class DeleteHostCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/DeleteRepositoryLinkCommand.ts b/clients/client-codeconnections/src/commands/DeleteRepositoryLinkCommand.ts index 26fc7d3afb752..2296d9d71848f 100644 --- a/clients/client-codeconnections/src/commands/DeleteRepositoryLinkCommand.ts +++ b/clients/client-codeconnections/src/commands/DeleteRepositoryLinkCommand.ts @@ -77,6 +77,7 @@ export interface DeleteRepositoryLinkCommandOutput extends DeleteRepositoryLinkO * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class DeleteRepositoryLinkCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/DeleteSyncConfigurationCommand.ts b/clients/client-codeconnections/src/commands/DeleteSyncConfigurationCommand.ts index 05483f645ca38..589740f457020 100644 --- a/clients/client-codeconnections/src/commands/DeleteSyncConfigurationCommand.ts +++ b/clients/client-codeconnections/src/commands/DeleteSyncConfigurationCommand.ts @@ -72,6 +72,7 @@ export interface DeleteSyncConfigurationCommandOutput extends DeleteSyncConfigur * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class DeleteSyncConfigurationCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/GetConnectionCommand.ts b/clients/client-codeconnections/src/commands/GetConnectionCommand.ts index fe5dffe0a5f74..988160335b5a2 100644 --- a/clients/client-codeconnections/src/commands/GetConnectionCommand.ts +++ b/clients/client-codeconnections/src/commands/GetConnectionCommand.ts @@ -68,6 +68,7 @@ export interface GetConnectionCommandOutput extends GetConnectionOutput, __Metad * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class GetConnectionCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/GetHostCommand.ts b/clients/client-codeconnections/src/commands/GetHostCommand.ts index 550e40fbea99e..34f2b05fe109a 100644 --- a/clients/client-codeconnections/src/commands/GetHostCommand.ts +++ b/clients/client-codeconnections/src/commands/GetHostCommand.ts @@ -75,6 +75,7 @@ export interface GetHostCommandOutput extends GetHostOutput, __MetadataBearer {} * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class GetHostCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/GetRepositoryLinkCommand.ts b/clients/client-codeconnections/src/commands/GetRepositoryLinkCommand.ts index fd4c17a98c374..82ecc1734c2b3 100644 --- a/clients/client-codeconnections/src/commands/GetRepositoryLinkCommand.ts +++ b/clients/client-codeconnections/src/commands/GetRepositoryLinkCommand.ts @@ -82,6 +82,7 @@ export interface GetRepositoryLinkCommandOutput extends GetRepositoryLinkOutput, * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class GetRepositoryLinkCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/GetRepositorySyncStatusCommand.ts b/clients/client-codeconnections/src/commands/GetRepositorySyncStatusCommand.ts index 1b7dd1461b90b..be6ed9f3a2810 100644 --- a/clients/client-codeconnections/src/commands/GetRepositorySyncStatusCommand.ts +++ b/clients/client-codeconnections/src/commands/GetRepositorySyncStatusCommand.ts @@ -84,6 +84,7 @@ export interface GetRepositorySyncStatusCommandOutput extends GetRepositorySyncS * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class GetRepositorySyncStatusCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/GetResourceSyncStatusCommand.ts b/clients/client-codeconnections/src/commands/GetResourceSyncStatusCommand.ts index c581e1e42961b..accd06897df25 100644 --- a/clients/client-codeconnections/src/commands/GetResourceSyncStatusCommand.ts +++ b/clients/client-codeconnections/src/commands/GetResourceSyncStatusCommand.ts @@ -137,6 +137,7 @@ export interface GetResourceSyncStatusCommandOutput extends GetResourceSyncStatu * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class GetResourceSyncStatusCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/GetSyncBlockerSummaryCommand.ts b/clients/client-codeconnections/src/commands/GetSyncBlockerSummaryCommand.ts index d91336d4d281d..093db099ab2a3 100644 --- a/clients/client-codeconnections/src/commands/GetSyncBlockerSummaryCommand.ts +++ b/clients/client-codeconnections/src/commands/GetSyncBlockerSummaryCommand.ts @@ -91,6 +91,7 @@ export interface GetSyncBlockerSummaryCommandOutput extends GetSyncBlockerSummar * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class GetSyncBlockerSummaryCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/GetSyncConfigurationCommand.ts b/clients/client-codeconnections/src/commands/GetSyncConfigurationCommand.ts index aa6efc630a8d4..04739135a9391 100644 --- a/clients/client-codeconnections/src/commands/GetSyncConfigurationCommand.ts +++ b/clients/client-codeconnections/src/commands/GetSyncConfigurationCommand.ts @@ -84,6 +84,7 @@ export interface GetSyncConfigurationCommandOutput extends GetSyncConfigurationO * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class GetSyncConfigurationCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/ListConnectionsCommand.ts b/clients/client-codeconnections/src/commands/ListConnectionsCommand.ts index 5f069bc00451f..f0aad616a26bc 100644 --- a/clients/client-codeconnections/src/commands/ListConnectionsCommand.ts +++ b/clients/client-codeconnections/src/commands/ListConnectionsCommand.ts @@ -71,6 +71,7 @@ export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __M * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class ListConnectionsCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/ListHostsCommand.ts b/clients/client-codeconnections/src/commands/ListHostsCommand.ts index eec08330f9a54..e92d99ac842bb 100644 --- a/clients/client-codeconnections/src/commands/ListHostsCommand.ts +++ b/clients/client-codeconnections/src/commands/ListHostsCommand.ts @@ -76,6 +76,7 @@ export interface ListHostsCommandOutput extends ListHostsOutput, __MetadataBeare * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class ListHostsCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/ListRepositoryLinksCommand.ts b/clients/client-codeconnections/src/commands/ListRepositoryLinksCommand.ts index 077924621de1c..faa212889fe61 100644 --- a/clients/client-codeconnections/src/commands/ListRepositoryLinksCommand.ts +++ b/clients/client-codeconnections/src/commands/ListRepositoryLinksCommand.ts @@ -85,6 +85,7 @@ export interface ListRepositoryLinksCommandOutput extends ListRepositoryLinksOut * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class ListRepositoryLinksCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/ListRepositorySyncDefinitionsCommand.ts b/clients/client-codeconnections/src/commands/ListRepositorySyncDefinitionsCommand.ts index c7b0b68ff0c1c..6b29ed63b7e2a 100644 --- a/clients/client-codeconnections/src/commands/ListRepositorySyncDefinitionsCommand.ts +++ b/clients/client-codeconnections/src/commands/ListRepositorySyncDefinitionsCommand.ts @@ -84,6 +84,7 @@ export interface ListRepositorySyncDefinitionsCommandOutput * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class ListRepositorySyncDefinitionsCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/ListSyncConfigurationsCommand.ts b/clients/client-codeconnections/src/commands/ListSyncConfigurationsCommand.ts index df3e383549905..2a37898eb78e0 100644 --- a/clients/client-codeconnections/src/commands/ListSyncConfigurationsCommand.ts +++ b/clients/client-codeconnections/src/commands/ListSyncConfigurationsCommand.ts @@ -89,6 +89,7 @@ export interface ListSyncConfigurationsCommandOutput extends ListSyncConfigurati * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class ListSyncConfigurationsCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/ListTagsForResourceCommand.ts b/clients/client-codeconnections/src/commands/ListTagsForResourceCommand.ts index 544935daf5c5c..92cc786a75190 100644 --- a/clients/client-codeconnections/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codeconnections/src/commands/ListTagsForResourceCommand.ts @@ -63,6 +63,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/TagResourceCommand.ts b/clients/client-codeconnections/src/commands/TagResourceCommand.ts index f661f246c431b..7652ce6b27bf5 100644 --- a/clients/client-codeconnections/src/commands/TagResourceCommand.ts +++ b/clients/client-codeconnections/src/commands/TagResourceCommand.ts @@ -66,6 +66,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/UntagResourceCommand.ts b/clients/client-codeconnections/src/commands/UntagResourceCommand.ts index f2b5b1459f060..91a61fbb0ebc8 100644 --- a/clients/client-codeconnections/src/commands/UntagResourceCommand.ts +++ b/clients/client-codeconnections/src/commands/UntagResourceCommand.ts @@ -59,6 +59,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/UpdateHostCommand.ts b/clients/client-codeconnections/src/commands/UpdateHostCommand.ts index cd0b78d484dfa..af35c15dfbb81 100644 --- a/clients/client-codeconnections/src/commands/UpdateHostCommand.ts +++ b/clients/client-codeconnections/src/commands/UpdateHostCommand.ts @@ -76,6 +76,7 @@ export interface UpdateHostCommandOutput extends UpdateHostOutput, __MetadataBea * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class UpdateHostCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/UpdateRepositoryLinkCommand.ts b/clients/client-codeconnections/src/commands/UpdateRepositoryLinkCommand.ts index 44945c639fdfb..8aec83f488491 100644 --- a/clients/client-codeconnections/src/commands/UpdateRepositoryLinkCommand.ts +++ b/clients/client-codeconnections/src/commands/UpdateRepositoryLinkCommand.ts @@ -88,6 +88,7 @@ export interface UpdateRepositoryLinkCommandOutput extends UpdateRepositoryLinkO * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class UpdateRepositoryLinkCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/UpdateSyncBlockerCommand.ts b/clients/client-codeconnections/src/commands/UpdateSyncBlockerCommand.ts index ebe2893ee7316..9bbe2a2b160a7 100644 --- a/clients/client-codeconnections/src/commands/UpdateSyncBlockerCommand.ts +++ b/clients/client-codeconnections/src/commands/UpdateSyncBlockerCommand.ts @@ -95,6 +95,7 @@ export interface UpdateSyncBlockerCommandOutput extends UpdateSyncBlockerOutput, * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class UpdateSyncBlockerCommand extends $Command diff --git a/clients/client-codeconnections/src/commands/UpdateSyncConfigurationCommand.ts b/clients/client-codeconnections/src/commands/UpdateSyncConfigurationCommand.ts index bc4636661850d..0ef53bc62319b 100644 --- a/clients/client-codeconnections/src/commands/UpdateSyncConfigurationCommand.ts +++ b/clients/client-codeconnections/src/commands/UpdateSyncConfigurationCommand.ts @@ -97,6 +97,7 @@ export interface UpdateSyncConfigurationCommandOutput extends UpdateSyncConfigur * @throws {@link CodeConnectionsServiceException} *

Base exception class for all service exceptions from CodeConnections service.

* + * * @public */ export class UpdateSyncConfigurationCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/AddTagsToOnPremisesInstancesCommand.ts b/clients/client-codedeploy/src/commands/AddTagsToOnPremisesInstancesCommand.ts index 4d7d9d67f5fa5..46ec63e6c8c4d 100644 --- a/clients/client-codedeploy/src/commands/AddTagsToOnPremisesInstancesCommand.ts +++ b/clients/client-codedeploy/src/commands/AddTagsToOnPremisesInstancesCommand.ts @@ -86,6 +86,7 @@ export interface AddTagsToOnPremisesInstancesCommandOutput extends __MetadataBea * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class AddTagsToOnPremisesInstancesCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/BatchGetApplicationRevisionsCommand.ts b/clients/client-codedeploy/src/commands/BatchGetApplicationRevisionsCommand.ts index 32884949aa0cb..71080f90a8484 100644 --- a/clients/client-codedeploy/src/commands/BatchGetApplicationRevisionsCommand.ts +++ b/clients/client-codedeploy/src/commands/BatchGetApplicationRevisionsCommand.ts @@ -139,6 +139,7 @@ export interface BatchGetApplicationRevisionsCommandOutput * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class BatchGetApplicationRevisionsCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/BatchGetApplicationsCommand.ts b/clients/client-codedeploy/src/commands/BatchGetApplicationsCommand.ts index 4f2947fd15927..18676a1df292a 100644 --- a/clients/client-codedeploy/src/commands/BatchGetApplicationsCommand.ts +++ b/clients/client-codedeploy/src/commands/BatchGetApplicationsCommand.ts @@ -79,6 +79,7 @@ export interface BatchGetApplicationsCommandOutput extends BatchGetApplicationsO * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class BatchGetApplicationsCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/BatchGetDeploymentGroupsCommand.ts b/clients/client-codedeploy/src/commands/BatchGetDeploymentGroupsCommand.ts index 0e52dbf6bb562..1aa4bc3f60973 100644 --- a/clients/client-codedeploy/src/commands/BatchGetDeploymentGroupsCommand.ts +++ b/clients/client-codedeploy/src/commands/BatchGetDeploymentGroupsCommand.ts @@ -246,6 +246,7 @@ export interface BatchGetDeploymentGroupsCommandOutput extends BatchGetDeploymen * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class BatchGetDeploymentGroupsCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/BatchGetDeploymentInstancesCommand.ts b/clients/client-codedeploy/src/commands/BatchGetDeploymentInstancesCommand.ts index de281a4506a21..14005c7536cdb 100644 --- a/clients/client-codedeploy/src/commands/BatchGetDeploymentInstancesCommand.ts +++ b/clients/client-codedeploy/src/commands/BatchGetDeploymentInstancesCommand.ts @@ -111,6 +111,7 @@ export interface BatchGetDeploymentInstancesCommandOutput extends BatchGetDeploy * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class BatchGetDeploymentInstancesCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/BatchGetDeploymentTargetsCommand.ts b/clients/client-codedeploy/src/commands/BatchGetDeploymentTargetsCommand.ts index fa988b7e5c2d6..d5545ff24097b 100644 --- a/clients/client-codedeploy/src/commands/BatchGetDeploymentTargetsCommand.ts +++ b/clients/client-codedeploy/src/commands/BatchGetDeploymentTargetsCommand.ts @@ -225,6 +225,7 @@ export interface BatchGetDeploymentTargetsCommandOutput extends BatchGetDeployme * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class BatchGetDeploymentTargetsCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/BatchGetDeploymentsCommand.ts b/clients/client-codedeploy/src/commands/BatchGetDeploymentsCommand.ts index 74b8f1fe18687..1380e4ef3f4a2 100644 --- a/clients/client-codedeploy/src/commands/BatchGetDeploymentsCommand.ts +++ b/clients/client-codedeploy/src/commands/BatchGetDeploymentsCommand.ts @@ -243,6 +243,7 @@ export interface BatchGetDeploymentsCommandOutput extends BatchGetDeploymentsOut * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class BatchGetDeploymentsCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/BatchGetOnPremisesInstancesCommand.ts b/clients/client-codedeploy/src/commands/BatchGetOnPremisesInstancesCommand.ts index c7ff4878abbc0..51a8a497085fa 100644 --- a/clients/client-codedeploy/src/commands/BatchGetOnPremisesInstancesCommand.ts +++ b/clients/client-codedeploy/src/commands/BatchGetOnPremisesInstancesCommand.ts @@ -82,6 +82,7 @@ export interface BatchGetOnPremisesInstancesCommandOutput extends BatchGetOnPrem * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class BatchGetOnPremisesInstancesCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/ContinueDeploymentCommand.ts b/clients/client-codedeploy/src/commands/ContinueDeploymentCommand.ts index 44b6c51429693..dec9f6eb6c8d2 100644 --- a/clients/client-codedeploy/src/commands/ContinueDeploymentCommand.ts +++ b/clients/client-codedeploy/src/commands/ContinueDeploymentCommand.ts @@ -82,6 +82,7 @@ export interface ContinueDeploymentCommandOutput extends __MetadataBearer {} * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class ContinueDeploymentCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/CreateApplicationCommand.ts b/clients/client-codedeploy/src/commands/CreateApplicationCommand.ts index a6674fbb623c8..e37641567ab1a 100644 --- a/clients/client-codedeploy/src/commands/CreateApplicationCommand.ts +++ b/clients/client-codedeploy/src/commands/CreateApplicationCommand.ts @@ -81,6 +81,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationOutput, * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/CreateDeploymentCommand.ts b/clients/client-codedeploy/src/commands/CreateDeploymentCommand.ts index bf92ad5b7f654..1dd00b8a0fc60 100644 --- a/clients/client-codedeploy/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-codedeploy/src/commands/CreateDeploymentCommand.ts @@ -244,6 +244,7 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentOutput, _ * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class CreateDeploymentCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/CreateDeploymentConfigCommand.ts b/clients/client-codedeploy/src/commands/CreateDeploymentConfigCommand.ts index 777a5d5cd137a..ec7782da6ff36 100644 --- a/clients/client-codedeploy/src/commands/CreateDeploymentConfigCommand.ts +++ b/clients/client-codedeploy/src/commands/CreateDeploymentConfigCommand.ts @@ -104,6 +104,7 @@ export interface CreateDeploymentConfigCommandOutput extends CreateDeploymentCon * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class CreateDeploymentConfigCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/CreateDeploymentGroupCommand.ts b/clients/client-codedeploy/src/commands/CreateDeploymentGroupCommand.ts index 0ba3592e19e63..83d4a4dd4b873 100644 --- a/clients/client-codedeploy/src/commands/CreateDeploymentGroupCommand.ts +++ b/clients/client-codedeploy/src/commands/CreateDeploymentGroupCommand.ts @@ -313,6 +313,7 @@ export interface CreateDeploymentGroupCommandOutput extends CreateDeploymentGrou * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class CreateDeploymentGroupCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/DeleteApplicationCommand.ts b/clients/client-codedeploy/src/commands/DeleteApplicationCommand.ts index b35a2aa3a88f8..34e70d5ca9937 100644 --- a/clients/client-codedeploy/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-codedeploy/src/commands/DeleteApplicationCommand.ts @@ -64,6 +64,7 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {} * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/DeleteDeploymentConfigCommand.ts b/clients/client-codedeploy/src/commands/DeleteDeploymentConfigCommand.ts index d8bc70192dbca..90bc6449035bf 100644 --- a/clients/client-codedeploy/src/commands/DeleteDeploymentConfigCommand.ts +++ b/clients/client-codedeploy/src/commands/DeleteDeploymentConfigCommand.ts @@ -69,6 +69,7 @@ export interface DeleteDeploymentConfigCommandOutput extends __MetadataBearer {} * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class DeleteDeploymentConfigCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/DeleteDeploymentGroupCommand.ts b/clients/client-codedeploy/src/commands/DeleteDeploymentGroupCommand.ts index 853c08073d2c5..2e56c58147a37 100644 --- a/clients/client-codedeploy/src/commands/DeleteDeploymentGroupCommand.ts +++ b/clients/client-codedeploy/src/commands/DeleteDeploymentGroupCommand.ts @@ -79,6 +79,7 @@ export interface DeleteDeploymentGroupCommandOutput extends DeleteDeploymentGrou * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class DeleteDeploymentGroupCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/DeleteGitHubAccountTokenCommand.ts b/clients/client-codedeploy/src/commands/DeleteGitHubAccountTokenCommand.ts index d85cd095f3ba7..8abeb801ba45b 100644 --- a/clients/client-codedeploy/src/commands/DeleteGitHubAccountTokenCommand.ts +++ b/clients/client-codedeploy/src/commands/DeleteGitHubAccountTokenCommand.ts @@ -70,6 +70,7 @@ export interface DeleteGitHubAccountTokenCommandOutput extends DeleteGitHubAccou * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class DeleteGitHubAccountTokenCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/DeleteResourcesByExternalIdCommand.ts b/clients/client-codedeploy/src/commands/DeleteResourcesByExternalIdCommand.ts index fd7d2d1957af6..8a85a9fb789e3 100644 --- a/clients/client-codedeploy/src/commands/DeleteResourcesByExternalIdCommand.ts +++ b/clients/client-codedeploy/src/commands/DeleteResourcesByExternalIdCommand.ts @@ -60,6 +60,7 @@ export interface DeleteResourcesByExternalIdCommandOutput extends DeleteResource * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class DeleteResourcesByExternalIdCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/DeregisterOnPremisesInstanceCommand.ts b/clients/client-codedeploy/src/commands/DeregisterOnPremisesInstanceCommand.ts index 036b6f27f075b..19197598bef8c 100644 --- a/clients/client-codedeploy/src/commands/DeregisterOnPremisesInstanceCommand.ts +++ b/clients/client-codedeploy/src/commands/DeregisterOnPremisesInstanceCommand.ts @@ -62,6 +62,7 @@ export interface DeregisterOnPremisesInstanceCommandOutput extends __MetadataBea * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class DeregisterOnPremisesInstanceCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/GetApplicationCommand.ts b/clients/client-codedeploy/src/commands/GetApplicationCommand.ts index 822c1ba6ba4a1..9a20cab798189 100644 --- a/clients/client-codedeploy/src/commands/GetApplicationCommand.ts +++ b/clients/client-codedeploy/src/commands/GetApplicationCommand.ts @@ -71,6 +71,7 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class GetApplicationCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/GetApplicationRevisionCommand.ts b/clients/client-codedeploy/src/commands/GetApplicationRevisionCommand.ts index ac34e7ff6a1bb..9a019693b0482 100644 --- a/clients/client-codedeploy/src/commands/GetApplicationRevisionCommand.ts +++ b/clients/client-codedeploy/src/commands/GetApplicationRevisionCommand.ts @@ -126,6 +126,7 @@ export interface GetApplicationRevisionCommandOutput extends GetApplicationRevis * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class GetApplicationRevisionCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/GetDeploymentCommand.ts b/clients/client-codedeploy/src/commands/GetDeploymentCommand.ts index 17d60c7d8dd3c..43ff9cf98501a 100644 --- a/clients/client-codedeploy/src/commands/GetDeploymentCommand.ts +++ b/clients/client-codedeploy/src/commands/GetDeploymentCommand.ts @@ -244,6 +244,7 @@ export interface GetDeploymentCommandOutput extends GetDeploymentOutput, __Metad * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class GetDeploymentCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/GetDeploymentConfigCommand.ts b/clients/client-codedeploy/src/commands/GetDeploymentConfigCommand.ts index 03137e7d0b2ee..6ddc569210eef 100644 --- a/clients/client-codedeploy/src/commands/GetDeploymentConfigCommand.ts +++ b/clients/client-codedeploy/src/commands/GetDeploymentConfigCommand.ts @@ -95,6 +95,7 @@ export interface GetDeploymentConfigCommandOutput extends GetDeploymentConfigOut * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class GetDeploymentConfigCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/GetDeploymentGroupCommand.ts b/clients/client-codedeploy/src/commands/GetDeploymentGroupCommand.ts index e9cdef8480fb1..0ba6156ff492e 100644 --- a/clients/client-codedeploy/src/commands/GetDeploymentGroupCommand.ts +++ b/clients/client-codedeploy/src/commands/GetDeploymentGroupCommand.ts @@ -242,6 +242,7 @@ export interface GetDeploymentGroupCommandOutput extends GetDeploymentGroupOutpu * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class GetDeploymentGroupCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/GetDeploymentInstanceCommand.ts b/clients/client-codedeploy/src/commands/GetDeploymentInstanceCommand.ts index c74ba54873a90..feb04f4967b17 100644 --- a/clients/client-codedeploy/src/commands/GetDeploymentInstanceCommand.ts +++ b/clients/client-codedeploy/src/commands/GetDeploymentInstanceCommand.ts @@ -99,6 +99,7 @@ export interface GetDeploymentInstanceCommandOutput extends GetDeploymentInstanc * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class GetDeploymentInstanceCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/GetDeploymentTargetCommand.ts b/clients/client-codedeploy/src/commands/GetDeploymentTargetCommand.ts index 2fd0fece69cbe..48cc9543e1c0b 100644 --- a/clients/client-codedeploy/src/commands/GetDeploymentTargetCommand.ts +++ b/clients/client-codedeploy/src/commands/GetDeploymentTargetCommand.ts @@ -189,6 +189,7 @@ export interface GetDeploymentTargetCommandOutput extends GetDeploymentTargetOut * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class GetDeploymentTargetCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/GetOnPremisesInstanceCommand.ts b/clients/client-codedeploy/src/commands/GetOnPremisesInstanceCommand.ts index 8e4b2049a1264..eee2380656640 100644 --- a/clients/client-codedeploy/src/commands/GetOnPremisesInstanceCommand.ts +++ b/clients/client-codedeploy/src/commands/GetOnPremisesInstanceCommand.ts @@ -77,6 +77,7 @@ export interface GetOnPremisesInstanceCommandOutput extends GetOnPremisesInstanc * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class GetOnPremisesInstanceCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/ListApplicationRevisionsCommand.ts b/clients/client-codedeploy/src/commands/ListApplicationRevisionsCommand.ts index e94ef10a6105f..02f33b14745b5 100644 --- a/clients/client-codedeploy/src/commands/ListApplicationRevisionsCommand.ts +++ b/clients/client-codedeploy/src/commands/ListApplicationRevisionsCommand.ts @@ -116,6 +116,7 @@ export interface ListApplicationRevisionsCommandOutput extends ListApplicationRe * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class ListApplicationRevisionsCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/ListApplicationsCommand.ts b/clients/client-codedeploy/src/commands/ListApplicationsCommand.ts index e24b6d15f894c..1c27c943a84a4 100644 --- a/clients/client-codedeploy/src/commands/ListApplicationsCommand.ts +++ b/clients/client-codedeploy/src/commands/ListApplicationsCommand.ts @@ -61,6 +61,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _ * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/ListDeploymentConfigsCommand.ts b/clients/client-codedeploy/src/commands/ListDeploymentConfigsCommand.ts index 5e0c6a4358f54..8da46197d8977 100644 --- a/clients/client-codedeploy/src/commands/ListDeploymentConfigsCommand.ts +++ b/clients/client-codedeploy/src/commands/ListDeploymentConfigsCommand.ts @@ -61,6 +61,7 @@ export interface ListDeploymentConfigsCommandOutput extends ListDeploymentConfig * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class ListDeploymentConfigsCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/ListDeploymentGroupsCommand.ts b/clients/client-codedeploy/src/commands/ListDeploymentGroupsCommand.ts index cb8ffc34b9a52..a0c4ae76d12c9 100644 --- a/clients/client-codedeploy/src/commands/ListDeploymentGroupsCommand.ts +++ b/clients/client-codedeploy/src/commands/ListDeploymentGroupsCommand.ts @@ -73,6 +73,7 @@ export interface ListDeploymentGroupsCommandOutput extends ListDeploymentGroupsO * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class ListDeploymentGroupsCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/ListDeploymentInstancesCommand.ts b/clients/client-codedeploy/src/commands/ListDeploymentInstancesCommand.ts index d15a1fd646ebd..613f1a832a4ee 100644 --- a/clients/client-codedeploy/src/commands/ListDeploymentInstancesCommand.ts +++ b/clients/client-codedeploy/src/commands/ListDeploymentInstancesCommand.ts @@ -106,6 +106,7 @@ export interface ListDeploymentInstancesCommandOutput extends ListDeploymentInst * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class ListDeploymentInstancesCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/ListDeploymentTargetsCommand.ts b/clients/client-codedeploy/src/commands/ListDeploymentTargetsCommand.ts index 5323d3e0816f8..f406a70c398fa 100644 --- a/clients/client-codedeploy/src/commands/ListDeploymentTargetsCommand.ts +++ b/clients/client-codedeploy/src/commands/ListDeploymentTargetsCommand.ts @@ -94,6 +94,7 @@ export interface ListDeploymentTargetsCommandOutput extends ListDeploymentTarget * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class ListDeploymentTargetsCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/ListDeploymentsCommand.ts b/clients/client-codedeploy/src/commands/ListDeploymentsCommand.ts index 43b2e3df9dce5..6fc6ea731f440 100644 --- a/clients/client-codedeploy/src/commands/ListDeploymentsCommand.ts +++ b/clients/client-codedeploy/src/commands/ListDeploymentsCommand.ts @@ -103,6 +103,7 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsOutput, __M * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class ListDeploymentsCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/ListGitHubAccountTokenNamesCommand.ts b/clients/client-codedeploy/src/commands/ListGitHubAccountTokenNamesCommand.ts index b6a1832a4835a..ad39857d31658 100644 --- a/clients/client-codedeploy/src/commands/ListGitHubAccountTokenNamesCommand.ts +++ b/clients/client-codedeploy/src/commands/ListGitHubAccountTokenNamesCommand.ts @@ -67,6 +67,7 @@ export interface ListGitHubAccountTokenNamesCommandOutput extends ListGitHubAcco * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class ListGitHubAccountTokenNamesCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/ListOnPremisesInstancesCommand.ts b/clients/client-codedeploy/src/commands/ListOnPremisesInstancesCommand.ts index 504127a9379fa..265d516f29edd 100644 --- a/clients/client-codedeploy/src/commands/ListOnPremisesInstancesCommand.ts +++ b/clients/client-codedeploy/src/commands/ListOnPremisesInstancesCommand.ts @@ -78,6 +78,7 @@ export interface ListOnPremisesInstancesCommandOutput extends ListOnPremisesInst * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class ListOnPremisesInstancesCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/ListTagsForResourceCommand.ts b/clients/client-codedeploy/src/commands/ListTagsForResourceCommand.ts index 7bf103a97c445..cf28d4617c2f4 100644 --- a/clients/client-codedeploy/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codedeploy/src/commands/ListTagsForResourceCommand.ts @@ -73,6 +73,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/PutLifecycleEventHookExecutionStatusCommand.ts b/clients/client-codedeploy/src/commands/PutLifecycleEventHookExecutionStatusCommand.ts index 46fd1701a5a21..e3c2ed5df99a3 100644 --- a/clients/client-codedeploy/src/commands/PutLifecycleEventHookExecutionStatusCommand.ts +++ b/clients/client-codedeploy/src/commands/PutLifecycleEventHookExecutionStatusCommand.ts @@ -98,6 +98,7 @@ export interface PutLifecycleEventHookExecutionStatusCommandOutput * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class PutLifecycleEventHookExecutionStatusCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/RegisterApplicationRevisionCommand.ts b/clients/client-codedeploy/src/commands/RegisterApplicationRevisionCommand.ts index ba71c00f4790e..f3d49f5325480 100644 --- a/clients/client-codedeploy/src/commands/RegisterApplicationRevisionCommand.ts +++ b/clients/client-codedeploy/src/commands/RegisterApplicationRevisionCommand.ts @@ -94,6 +94,7 @@ export interface RegisterApplicationRevisionCommandOutput extends __MetadataBear * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class RegisterApplicationRevisionCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/RegisterOnPremisesInstanceCommand.ts b/clients/client-codedeploy/src/commands/RegisterOnPremisesInstanceCommand.ts index c12284d5d5995..75d7944543422 100644 --- a/clients/client-codedeploy/src/commands/RegisterOnPremisesInstanceCommand.ts +++ b/clients/client-codedeploy/src/commands/RegisterOnPremisesInstanceCommand.ts @@ -90,6 +90,7 @@ export interface RegisterOnPremisesInstanceCommandOutput extends __MetadataBeare * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class RegisterOnPremisesInstanceCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/RemoveTagsFromOnPremisesInstancesCommand.ts b/clients/client-codedeploy/src/commands/RemoveTagsFromOnPremisesInstancesCommand.ts index a2bcf2436da1a..6a783f129e768 100644 --- a/clients/client-codedeploy/src/commands/RemoveTagsFromOnPremisesInstancesCommand.ts +++ b/clients/client-codedeploy/src/commands/RemoveTagsFromOnPremisesInstancesCommand.ts @@ -86,6 +86,7 @@ export interface RemoveTagsFromOnPremisesInstancesCommandOutput extends __Metada * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class RemoveTagsFromOnPremisesInstancesCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/SkipWaitTimeForInstanceTerminationCommand.ts b/clients/client-codedeploy/src/commands/SkipWaitTimeForInstanceTerminationCommand.ts index efbccb8149aa3..3fdc79271ec04 100644 --- a/clients/client-codedeploy/src/commands/SkipWaitTimeForInstanceTerminationCommand.ts +++ b/clients/client-codedeploy/src/commands/SkipWaitTimeForInstanceTerminationCommand.ts @@ -77,6 +77,7 @@ export interface SkipWaitTimeForInstanceTerminationCommandOutput extends __Metad * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class SkipWaitTimeForInstanceTerminationCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/StopDeploymentCommand.ts b/clients/client-codedeploy/src/commands/StopDeploymentCommand.ts index 6ec718df7edb2..929b0a4a9a8df 100644 --- a/clients/client-codedeploy/src/commands/StopDeploymentCommand.ts +++ b/clients/client-codedeploy/src/commands/StopDeploymentCommand.ts @@ -76,6 +76,7 @@ export interface StopDeploymentCommandOutput extends StopDeploymentOutput, __Met * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class StopDeploymentCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/TagResourceCommand.ts b/clients/client-codedeploy/src/commands/TagResourceCommand.ts index 5410777c6689d..e7f5919b8c9cf 100644 --- a/clients/client-codedeploy/src/commands/TagResourceCommand.ts +++ b/clients/client-codedeploy/src/commands/TagResourceCommand.ts @@ -86,6 +86,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/UntagResourceCommand.ts b/clients/client-codedeploy/src/commands/UntagResourceCommand.ts index d7ffd14cb317d..57fb144a88e1b 100644 --- a/clients/client-codedeploy/src/commands/UntagResourceCommand.ts +++ b/clients/client-codedeploy/src/commands/UntagResourceCommand.ts @@ -84,6 +84,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/UpdateApplicationCommand.ts b/clients/client-codedeploy/src/commands/UpdateApplicationCommand.ts index 1246be1faae40..1a29bc61b9f1a 100644 --- a/clients/client-codedeploy/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-codedeploy/src/commands/UpdateApplicationCommand.ts @@ -67,6 +67,7 @@ export interface UpdateApplicationCommandOutput extends __MetadataBearer {} * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-codedeploy/src/commands/UpdateDeploymentGroupCommand.ts b/clients/client-codedeploy/src/commands/UpdateDeploymentGroupCommand.ts index 2ce3438e15337..e64466a94f55a 100644 --- a/clients/client-codedeploy/src/commands/UpdateDeploymentGroupCommand.ts +++ b/clients/client-codedeploy/src/commands/UpdateDeploymentGroupCommand.ts @@ -309,6 +309,7 @@ export interface UpdateDeploymentGroupCommandOutput extends UpdateDeploymentGrou * @throws {@link CodeDeployServiceException} *

Base exception class for all service exceptions from CodeDeploy service.

* + * * @public */ export class UpdateDeploymentGroupCommand extends $Command diff --git a/clients/client-codeguru-reviewer/src/commands/AssociateRepositoryCommand.ts b/clients/client-codeguru-reviewer/src/commands/AssociateRepositoryCommand.ts index 5196289d8e8d9..82e985409c700 100644 --- a/clients/client-codeguru-reviewer/src/commands/AssociateRepositoryCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/AssociateRepositoryCommand.ts @@ -142,6 +142,7 @@ export interface AssociateRepositoryCommandOutput extends AssociateRepositoryRes * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* + * * @public */ export class AssociateRepositoryCommand extends $Command diff --git a/clients/client-codeguru-reviewer/src/commands/CreateCodeReviewCommand.ts b/clients/client-codeguru-reviewer/src/commands/CreateCodeReviewCommand.ts index 6889b6aa4fba7..989973626dd68 100644 --- a/clients/client-codeguru-reviewer/src/commands/CreateCodeReviewCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/CreateCodeReviewCommand.ts @@ -178,6 +178,7 @@ export interface CreateCodeReviewCommandOutput extends CreateCodeReviewResponse, * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* + * * @public */ export class CreateCodeReviewCommand extends $Command diff --git a/clients/client-codeguru-reviewer/src/commands/DescribeCodeReviewCommand.ts b/clients/client-codeguru-reviewer/src/commands/DescribeCodeReviewCommand.ts index a5b15dad59565..ac28a3030e9e9 100644 --- a/clients/client-codeguru-reviewer/src/commands/DescribeCodeReviewCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/DescribeCodeReviewCommand.ts @@ -125,6 +125,7 @@ export interface DescribeCodeReviewCommandOutput extends DescribeCodeReviewRespo * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* + * * @public */ export class DescribeCodeReviewCommand extends $Command diff --git a/clients/client-codeguru-reviewer/src/commands/DescribeRecommendationFeedbackCommand.ts b/clients/client-codeguru-reviewer/src/commands/DescribeRecommendationFeedbackCommand.ts index b94cabf562fd2..3e3bb3e2d6136 100644 --- a/clients/client-codeguru-reviewer/src/commands/DescribeRecommendationFeedbackCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/DescribeRecommendationFeedbackCommand.ts @@ -86,6 +86,7 @@ export interface DescribeRecommendationFeedbackCommandOutput * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* + * * @public */ export class DescribeRecommendationFeedbackCommand extends $Command diff --git a/clients/client-codeguru-reviewer/src/commands/DescribeRepositoryAssociationCommand.ts b/clients/client-codeguru-reviewer/src/commands/DescribeRepositoryAssociationCommand.ts index 3a255341226de..56022cf000698 100644 --- a/clients/client-codeguru-reviewer/src/commands/DescribeRepositoryAssociationCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/DescribeRepositoryAssociationCommand.ts @@ -101,6 +101,7 @@ export interface DescribeRepositoryAssociationCommandOutput * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* + * * @public */ export class DescribeRepositoryAssociationCommand extends $Command diff --git a/clients/client-codeguru-reviewer/src/commands/DisassociateRepositoryCommand.ts b/clients/client-codeguru-reviewer/src/commands/DisassociateRepositoryCommand.ts index fd86b4f3e552e..ad7ca1a75d2cf 100644 --- a/clients/client-codeguru-reviewer/src/commands/DisassociateRepositoryCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/DisassociateRepositoryCommand.ts @@ -100,6 +100,7 @@ export interface DisassociateRepositoryCommandOutput extends DisassociateReposit * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* + * * @public */ export class DisassociateRepositoryCommand extends $Command diff --git a/clients/client-codeguru-reviewer/src/commands/ListCodeReviewsCommand.ts b/clients/client-codeguru-reviewer/src/commands/ListCodeReviewsCommand.ts index cd3c0ab1a7817..58b910f80454c 100644 --- a/clients/client-codeguru-reviewer/src/commands/ListCodeReviewsCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/ListCodeReviewsCommand.ts @@ -130,6 +130,7 @@ export interface ListCodeReviewsCommandOutput extends ListCodeReviewsResponse, _ * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* + * * @public */ export class ListCodeReviewsCommand extends $Command diff --git a/clients/client-codeguru-reviewer/src/commands/ListRecommendationFeedbackCommand.ts b/clients/client-codeguru-reviewer/src/commands/ListRecommendationFeedbackCommand.ts index 89a2a8de51f0c..3ddd5958a501f 100644 --- a/clients/client-codeguru-reviewer/src/commands/ListRecommendationFeedbackCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/ListRecommendationFeedbackCommand.ts @@ -88,6 +88,7 @@ export interface ListRecommendationFeedbackCommandOutput extends ListRecommendat * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* + * * @public */ export class ListRecommendationFeedbackCommand extends $Command diff --git a/clients/client-codeguru-reviewer/src/commands/ListRecommendationsCommand.ts b/clients/client-codeguru-reviewer/src/commands/ListRecommendationsCommand.ts index fe80ca5b7916e..8bd424d57e62d 100644 --- a/clients/client-codeguru-reviewer/src/commands/ListRecommendationsCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/ListRecommendationsCommand.ts @@ -92,6 +92,7 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* + * * @public */ export class ListRecommendationsCommand extends $Command diff --git a/clients/client-codeguru-reviewer/src/commands/ListRepositoryAssociationsCommand.ts b/clients/client-codeguru-reviewer/src/commands/ListRepositoryAssociationsCommand.ts index 3d30e9d6dd80a..2ff3a4df5a0be 100644 --- a/clients/client-codeguru-reviewer/src/commands/ListRepositoryAssociationsCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/ListRepositoryAssociationsCommand.ts @@ -90,6 +90,7 @@ export interface ListRepositoryAssociationsCommandOutput extends ListRepositoryA * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* + * * @public */ export class ListRepositoryAssociationsCommand extends $Command diff --git a/clients/client-codeguru-reviewer/src/commands/ListTagsForResourceCommand.ts b/clients/client-codeguru-reviewer/src/commands/ListTagsForResourceCommand.ts index 83b86e4948cbb..cf5466a717675 100644 --- a/clients/client-codeguru-reviewer/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-codeguru-reviewer/src/commands/PutRecommendationFeedbackCommand.ts b/clients/client-codeguru-reviewer/src/commands/PutRecommendationFeedbackCommand.ts index 7ad5e2ac947b1..1198e089fb24d 100644 --- a/clients/client-codeguru-reviewer/src/commands/PutRecommendationFeedbackCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/PutRecommendationFeedbackCommand.ts @@ -73,6 +73,7 @@ export interface PutRecommendationFeedbackCommandOutput extends PutRecommendatio * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* + * * @public */ export class PutRecommendationFeedbackCommand extends $Command diff --git a/clients/client-codeguru-reviewer/src/commands/TagResourceCommand.ts b/clients/client-codeguru-reviewer/src/commands/TagResourceCommand.ts index d047920f0c632..a2e8ccfc400ef 100644 --- a/clients/client-codeguru-reviewer/src/commands/TagResourceCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-codeguru-reviewer/src/commands/UntagResourceCommand.ts b/clients/client-codeguru-reviewer/src/commands/UntagResourceCommand.ts index b8aa9d5a4524f..5629680e7b61a 100644 --- a/clients/client-codeguru-reviewer/src/commands/UntagResourceCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link CodeGuruReviewerServiceException} *

Base exception class for all service exceptions from CodeGuruReviewer service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-codeguru-security/src/commands/BatchGetFindingsCommand.ts b/clients/client-codeguru-security/src/commands/BatchGetFindingsCommand.ts index 43614f06a5685..3c297489a0334 100644 --- a/clients/client-codeguru-security/src/commands/BatchGetFindingsCommand.ts +++ b/clients/client-codeguru-security/src/commands/BatchGetFindingsCommand.ts @@ -136,6 +136,7 @@ export interface BatchGetFindingsCommandOutput extends BatchGetFindingsResponse, * @throws {@link CodeGuruSecurityServiceException} *

Base exception class for all service exceptions from CodeGuruSecurity service.

* + * * @public */ export class BatchGetFindingsCommand extends $Command diff --git a/clients/client-codeguru-security/src/commands/CreateScanCommand.ts b/clients/client-codeguru-security/src/commands/CreateScanCommand.ts index cc00b1dbb8ba9..dc73fbf64a917 100644 --- a/clients/client-codeguru-security/src/commands/CreateScanCommand.ts +++ b/clients/client-codeguru-security/src/commands/CreateScanCommand.ts @@ -90,6 +90,7 @@ export interface CreateScanCommandOutput extends CreateScanResponse, __MetadataB * @throws {@link CodeGuruSecurityServiceException} *

Base exception class for all service exceptions from CodeGuruSecurity service.

* + * * @public */ export class CreateScanCommand extends $Command diff --git a/clients/client-codeguru-security/src/commands/CreateUploadUrlCommand.ts b/clients/client-codeguru-security/src/commands/CreateUploadUrlCommand.ts index be9337de602cf..aa9ccd8881f74 100644 --- a/clients/client-codeguru-security/src/commands/CreateUploadUrlCommand.ts +++ b/clients/client-codeguru-security/src/commands/CreateUploadUrlCommand.ts @@ -78,6 +78,7 @@ export interface CreateUploadUrlCommandOutput extends CreateUploadUrlResponse, _ * @throws {@link CodeGuruSecurityServiceException} *

Base exception class for all service exceptions from CodeGuruSecurity service.

* + * * @public */ export class CreateUploadUrlCommand extends $Command diff --git a/clients/client-codeguru-security/src/commands/GetAccountConfigurationCommand.ts b/clients/client-codeguru-security/src/commands/GetAccountConfigurationCommand.ts index c18746ace2f9f..cc94d7ebcafa9 100644 --- a/clients/client-codeguru-security/src/commands/GetAccountConfigurationCommand.ts +++ b/clients/client-codeguru-security/src/commands/GetAccountConfigurationCommand.ts @@ -67,6 +67,7 @@ export interface GetAccountConfigurationCommandOutput extends GetAccountConfigur * @throws {@link CodeGuruSecurityServiceException} *

Base exception class for all service exceptions from CodeGuruSecurity service.

* + * * @public */ export class GetAccountConfigurationCommand extends $Command diff --git a/clients/client-codeguru-security/src/commands/GetFindingsCommand.ts b/clients/client-codeguru-security/src/commands/GetFindingsCommand.ts index 456ae7ad35554..2927391ebd019 100644 --- a/clients/client-codeguru-security/src/commands/GetFindingsCommand.ts +++ b/clients/client-codeguru-security/src/commands/GetFindingsCommand.ts @@ -135,6 +135,7 @@ export interface GetFindingsCommandOutput extends GetFindingsResponse, __Metadat * @throws {@link CodeGuruSecurityServiceException} *

Base exception class for all service exceptions from CodeGuruSecurity service.

* + * * @public */ export class GetFindingsCommand extends $Command diff --git a/clients/client-codeguru-security/src/commands/GetMetricsSummaryCommand.ts b/clients/client-codeguru-security/src/commands/GetMetricsSummaryCommand.ts index 667067557448d..dc649e38dbf37 100644 --- a/clients/client-codeguru-security/src/commands/GetMetricsSummaryCommand.ts +++ b/clients/client-codeguru-security/src/commands/GetMetricsSummaryCommand.ts @@ -96,6 +96,7 @@ export interface GetMetricsSummaryCommandOutput extends GetMetricsSummaryRespons * @throws {@link CodeGuruSecurityServiceException} *

Base exception class for all service exceptions from CodeGuruSecurity service.

* + * * @public */ export class GetMetricsSummaryCommand extends $Command diff --git a/clients/client-codeguru-security/src/commands/GetScanCommand.ts b/clients/client-codeguru-security/src/commands/GetScanCommand.ts index 280ce5f31d30b..0a0ff5108628c 100644 --- a/clients/client-codeguru-security/src/commands/GetScanCommand.ts +++ b/clients/client-codeguru-security/src/commands/GetScanCommand.ts @@ -79,6 +79,7 @@ export interface GetScanCommandOutput extends GetScanResponse, __MetadataBearer * @throws {@link CodeGuruSecurityServiceException} *

Base exception class for all service exceptions from CodeGuruSecurity service.

* + * * @public */ export class GetScanCommand extends $Command diff --git a/clients/client-codeguru-security/src/commands/ListFindingsMetricsCommand.ts b/clients/client-codeguru-security/src/commands/ListFindingsMetricsCommand.ts index b95767654d79c..b3e4d4e5f699e 100644 --- a/clients/client-codeguru-security/src/commands/ListFindingsMetricsCommand.ts +++ b/clients/client-codeguru-security/src/commands/ListFindingsMetricsCommand.ts @@ -103,6 +103,7 @@ export interface ListFindingsMetricsCommandOutput extends ListFindingsMetricsRes * @throws {@link CodeGuruSecurityServiceException} *

Base exception class for all service exceptions from CodeGuruSecurity service.

* + * * @public */ export class ListFindingsMetricsCommand extends $Command diff --git a/clients/client-codeguru-security/src/commands/ListScansCommand.ts b/clients/client-codeguru-security/src/commands/ListScansCommand.ts index 26e808952a160..7c2dc1c69c22e 100644 --- a/clients/client-codeguru-security/src/commands/ListScansCommand.ts +++ b/clients/client-codeguru-security/src/commands/ListScansCommand.ts @@ -79,6 +79,7 @@ export interface ListScansCommandOutput extends ListScansResponse, __MetadataBea * @throws {@link CodeGuruSecurityServiceException} *

Base exception class for all service exceptions from CodeGuruSecurity service.

* + * * @public */ export class ListScansCommand extends $Command diff --git a/clients/client-codeguru-security/src/commands/ListTagsForResourceCommand.ts b/clients/client-codeguru-security/src/commands/ListTagsForResourceCommand.ts index d5b6e4ffceb23..da9aa8031e50c 100644 --- a/clients/client-codeguru-security/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codeguru-security/src/commands/ListTagsForResourceCommand.ts @@ -77,6 +77,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CodeGuruSecurityServiceException} *

Base exception class for all service exceptions from CodeGuruSecurity service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-codeguru-security/src/commands/TagResourceCommand.ts b/clients/client-codeguru-security/src/commands/TagResourceCommand.ts index 3497687721641..439be82a276ff 100644 --- a/clients/client-codeguru-security/src/commands/TagResourceCommand.ts +++ b/clients/client-codeguru-security/src/commands/TagResourceCommand.ts @@ -76,6 +76,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link CodeGuruSecurityServiceException} *

Base exception class for all service exceptions from CodeGuruSecurity service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-codeguru-security/src/commands/UntagResourceCommand.ts b/clients/client-codeguru-security/src/commands/UntagResourceCommand.ts index 0604f7d7f4d62..6f8411ac76e27 100644 --- a/clients/client-codeguru-security/src/commands/UntagResourceCommand.ts +++ b/clients/client-codeguru-security/src/commands/UntagResourceCommand.ts @@ -76,6 +76,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link CodeGuruSecurityServiceException} *

Base exception class for all service exceptions from CodeGuruSecurity service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-codeguru-security/src/commands/UpdateAccountConfigurationCommand.ts b/clients/client-codeguru-security/src/commands/UpdateAccountConfigurationCommand.ts index e8d2945947259..b380153264176 100644 --- a/clients/client-codeguru-security/src/commands/UpdateAccountConfigurationCommand.ts +++ b/clients/client-codeguru-security/src/commands/UpdateAccountConfigurationCommand.ts @@ -74,6 +74,7 @@ export interface UpdateAccountConfigurationCommandOutput extends UpdateAccountCo * @throws {@link CodeGuruSecurityServiceException} *

Base exception class for all service exceptions from CodeGuruSecurity service.

* + * * @public */ export class UpdateAccountConfigurationCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/AddNotificationChannelsCommand.ts b/clients/client-codeguruprofiler/src/commands/AddNotificationChannelsCommand.ts index dccaa21facf15..a86b01fe073fe 100644 --- a/clients/client-codeguruprofiler/src/commands/AddNotificationChannelsCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/AddNotificationChannelsCommand.ts @@ -98,6 +98,7 @@ export interface AddNotificationChannelsCommandOutput extends AddNotificationCha * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class AddNotificationChannelsCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/BatchGetFrameMetricDataCommand.ts b/clients/client-codeguruprofiler/src/commands/BatchGetFrameMetricDataCommand.ts index e24552c186da6..8cc586522cafa 100644 --- a/clients/client-codeguruprofiler/src/commands/BatchGetFrameMetricDataCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/BatchGetFrameMetricDataCommand.ts @@ -110,6 +110,7 @@ export interface BatchGetFrameMetricDataCommandOutput extends BatchGetFrameMetri * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class BatchGetFrameMetricDataCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/ConfigureAgentCommand.ts b/clients/client-codeguruprofiler/src/commands/ConfigureAgentCommand.ts index 16522d5563899..6e5c6ce8d7b39 100644 --- a/clients/client-codeguruprofiler/src/commands/ConfigureAgentCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/ConfigureAgentCommand.ts @@ -81,6 +81,7 @@ export interface ConfigureAgentCommandOutput extends ConfigureAgentResponse, __M * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class ConfigureAgentCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/CreateProfilingGroupCommand.ts b/clients/client-codeguruprofiler/src/commands/CreateProfilingGroupCommand.ts index 99e92c6a09789..667d1b19c3e0d 100644 --- a/clients/client-codeguruprofiler/src/commands/CreateProfilingGroupCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/CreateProfilingGroupCommand.ts @@ -104,6 +104,7 @@ export interface CreateProfilingGroupCommandOutput extends CreateProfilingGroupR * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class CreateProfilingGroupCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/DeleteProfilingGroupCommand.ts b/clients/client-codeguruprofiler/src/commands/DeleteProfilingGroupCommand.ts index 40b0d777d7f13..5929732973096 100644 --- a/clients/client-codeguruprofiler/src/commands/DeleteProfilingGroupCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/DeleteProfilingGroupCommand.ts @@ -71,6 +71,7 @@ export interface DeleteProfilingGroupCommandOutput extends DeleteProfilingGroupR * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class DeleteProfilingGroupCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/DescribeProfilingGroupCommand.ts b/clients/client-codeguruprofiler/src/commands/DescribeProfilingGroupCommand.ts index 344e385ebd1bc..2433d74344e65 100644 --- a/clients/client-codeguruprofiler/src/commands/DescribeProfilingGroupCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/DescribeProfilingGroupCommand.ts @@ -92,6 +92,7 @@ export interface DescribeProfilingGroupCommandOutput extends DescribeProfilingGr * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class DescribeProfilingGroupCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/GetFindingsReportAccountSummaryCommand.ts b/clients/client-codeguruprofiler/src/commands/GetFindingsReportAccountSummaryCommand.ts index 85b9b096d54a3..a2b65b83f5d95 100644 --- a/clients/client-codeguruprofiler/src/commands/GetFindingsReportAccountSummaryCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/GetFindingsReportAccountSummaryCommand.ts @@ -86,6 +86,7 @@ export interface GetFindingsReportAccountSummaryCommandOutput * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class GetFindingsReportAccountSummaryCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/GetNotificationConfigurationCommand.ts b/clients/client-codeguruprofiler/src/commands/GetNotificationConfigurationCommand.ts index 38a7864fa83a5..233f247ea2463 100644 --- a/clients/client-codeguruprofiler/src/commands/GetNotificationConfigurationCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/GetNotificationConfigurationCommand.ts @@ -82,6 +82,7 @@ export interface GetNotificationConfigurationCommandOutput * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class GetNotificationConfigurationCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/GetPolicyCommand.ts b/clients/client-codeguruprofiler/src/commands/GetPolicyCommand.ts index 19fcc4e496af1..c92a6db699887 100644 --- a/clients/client-codeguruprofiler/src/commands/GetPolicyCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/GetPolicyCommand.ts @@ -67,6 +67,7 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class GetPolicyCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/GetProfileCommand.ts b/clients/client-codeguruprofiler/src/commands/GetProfileCommand.ts index 318c800f82c78..34c4c41c607d8 100644 --- a/clients/client-codeguruprofiler/src/commands/GetProfileCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/GetProfileCommand.ts @@ -153,6 +153,7 @@ export interface GetProfileCommandOutput extends GetProfileCommandOutputType, __ * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class GetProfileCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/GetRecommendationsCommand.ts b/clients/client-codeguruprofiler/src/commands/GetRecommendationsCommand.ts index 9d2bee6878878..c94dabb0c1c9c 100644 --- a/clients/client-codeguruprofiler/src/commands/GetRecommendationsCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/GetRecommendationsCommand.ts @@ -135,6 +135,7 @@ export interface GetRecommendationsCommandOutput extends GetRecommendationsRespo * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class GetRecommendationsCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/ListFindingsReportsCommand.ts b/clients/client-codeguruprofiler/src/commands/ListFindingsReportsCommand.ts index 23efbcba5062c..a4648f646bc10 100644 --- a/clients/client-codeguruprofiler/src/commands/ListFindingsReportsCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/ListFindingsReportsCommand.ts @@ -81,6 +81,7 @@ export interface ListFindingsReportsCommandOutput extends ListFindingsReportsRes * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class ListFindingsReportsCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/ListProfileTimesCommand.ts b/clients/client-codeguruprofiler/src/commands/ListProfileTimesCommand.ts index f6ec31b847a0b..d2124cd3f0217 100644 --- a/clients/client-codeguruprofiler/src/commands/ListProfileTimesCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/ListProfileTimesCommand.ts @@ -79,6 +79,7 @@ export interface ListProfileTimesCommandOutput extends ListProfileTimesResponse, * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class ListProfileTimesCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/ListProfilingGroupsCommand.ts b/clients/client-codeguruprofiler/src/commands/ListProfilingGroupsCommand.ts index a208dcedccc08..d2230778b5037 100644 --- a/clients/client-codeguruprofiler/src/commands/ListProfilingGroupsCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/ListProfilingGroupsCommand.ts @@ -95,6 +95,7 @@ export interface ListProfilingGroupsCommandOutput extends ListProfilingGroupsRes * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class ListProfilingGroupsCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/ListTagsForResourceCommand.ts b/clients/client-codeguruprofiler/src/commands/ListTagsForResourceCommand.ts index 7bcb6ddbe639a..c182ffaeba5be 100644 --- a/clients/client-codeguruprofiler/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/ListTagsForResourceCommand.ts @@ -68,6 +68,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/PostAgentProfileCommand.ts b/clients/client-codeguruprofiler/src/commands/PostAgentProfileCommand.ts index 7fe201664fa21..173ef76000e12 100644 --- a/clients/client-codeguruprofiler/src/commands/PostAgentProfileCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/PostAgentProfileCommand.ts @@ -81,6 +81,7 @@ export interface PostAgentProfileCommandOutput extends PostAgentProfileResponse, * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class PostAgentProfileCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/PutPermissionCommand.ts b/clients/client-codeguruprofiler/src/commands/PutPermissionCommand.ts index 2ba2d67afe3c6..d80e2f930f861 100644 --- a/clients/client-codeguruprofiler/src/commands/PutPermissionCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/PutPermissionCommand.ts @@ -104,6 +104,7 @@ export interface PutPermissionCommandOutput extends PutPermissionResponse, __Met * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class PutPermissionCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/RemoveNotificationChannelCommand.ts b/clients/client-codeguruprofiler/src/commands/RemoveNotificationChannelCommand.ts index 42b802bc6e76e..93be24f3d65f4 100644 --- a/clients/client-codeguruprofiler/src/commands/RemoveNotificationChannelCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/RemoveNotificationChannelCommand.ts @@ -78,6 +78,7 @@ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificati * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class RemoveNotificationChannelCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/RemovePermissionCommand.ts b/clients/client-codeguruprofiler/src/commands/RemovePermissionCommand.ts index e11e59dd33e8d..a8428c40f2d50 100644 --- a/clients/client-codeguruprofiler/src/commands/RemovePermissionCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/RemovePermissionCommand.ts @@ -84,6 +84,7 @@ export interface RemovePermissionCommandOutput extends RemovePermissionResponse, * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class RemovePermissionCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/SubmitFeedbackCommand.ts b/clients/client-codeguruprofiler/src/commands/SubmitFeedbackCommand.ts index 4458790693d20..4054ef0b6bc86 100644 --- a/clients/client-codeguruprofiler/src/commands/SubmitFeedbackCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/SubmitFeedbackCommand.ts @@ -69,6 +69,7 @@ export interface SubmitFeedbackCommandOutput extends SubmitFeedbackResponse, __M * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class SubmitFeedbackCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/TagResourceCommand.ts b/clients/client-codeguruprofiler/src/commands/TagResourceCommand.ts index 140f9508f48ee..48310a76c6439 100644 --- a/clients/client-codeguruprofiler/src/commands/TagResourceCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/TagResourceCommand.ts @@ -67,6 +67,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/UntagResourceCommand.ts b/clients/client-codeguruprofiler/src/commands/UntagResourceCommand.ts index 42045906868ca..ec00ef5b06245 100644 --- a/clients/client-codeguruprofiler/src/commands/UntagResourceCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/UntagResourceCommand.ts @@ -67,6 +67,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-codeguruprofiler/src/commands/UpdateProfilingGroupCommand.ts b/clients/client-codeguruprofiler/src/commands/UpdateProfilingGroupCommand.ts index 825045fd864e0..0ade1e39f8fca 100644 --- a/clients/client-codeguruprofiler/src/commands/UpdateProfilingGroupCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/UpdateProfilingGroupCommand.ts @@ -96,6 +96,7 @@ export interface UpdateProfilingGroupCommandOutput extends UpdateProfilingGroupR * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* + * * @public */ export class UpdateProfilingGroupCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/AcknowledgeJobCommand.ts b/clients/client-codepipeline/src/commands/AcknowledgeJobCommand.ts index 30aa47a4aff1e..1eb79f6cd153d 100644 --- a/clients/client-codepipeline/src/commands/AcknowledgeJobCommand.ts +++ b/clients/client-codepipeline/src/commands/AcknowledgeJobCommand.ts @@ -66,6 +66,7 @@ export interface AcknowledgeJobCommandOutput extends AcknowledgeJobOutput, __Met * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class AcknowledgeJobCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/AcknowledgeThirdPartyJobCommand.ts b/clients/client-codepipeline/src/commands/AcknowledgeThirdPartyJobCommand.ts index 6ae887d6392de..2fa3256f39eb8 100644 --- a/clients/client-codepipeline/src/commands/AcknowledgeThirdPartyJobCommand.ts +++ b/clients/client-codepipeline/src/commands/AcknowledgeThirdPartyJobCommand.ts @@ -70,6 +70,7 @@ export interface AcknowledgeThirdPartyJobCommandOutput extends AcknowledgeThirdP * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class AcknowledgeThirdPartyJobCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/CreateCustomActionTypeCommand.ts b/clients/client-codepipeline/src/commands/CreateCustomActionTypeCommand.ts index cda4b44db903f..53f58a6e7a251 100644 --- a/clients/client-codepipeline/src/commands/CreateCustomActionTypeCommand.ts +++ b/clients/client-codepipeline/src/commands/CreateCustomActionTypeCommand.ts @@ -143,6 +143,7 @@ export interface CreateCustomActionTypeCommandOutput extends CreateCustomActionT * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class CreateCustomActionTypeCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/CreatePipelineCommand.ts b/clients/client-codepipeline/src/commands/CreatePipelineCommand.ts index 0579b3b45fe60..9632e36a5cd0c 100644 --- a/clients/client-codepipeline/src/commands/CreatePipelineCommand.ts +++ b/clients/client-codepipeline/src/commands/CreatePipelineCommand.ts @@ -594,6 +594,7 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class CreatePipelineCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/DeleteCustomActionTypeCommand.ts b/clients/client-codepipeline/src/commands/DeleteCustomActionTypeCommand.ts index 877c422bcab72..f795a87f1544d 100644 --- a/clients/client-codepipeline/src/commands/DeleteCustomActionTypeCommand.ts +++ b/clients/client-codepipeline/src/commands/DeleteCustomActionTypeCommand.ts @@ -69,6 +69,7 @@ export interface DeleteCustomActionTypeCommandOutput extends __MetadataBearer {} * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class DeleteCustomActionTypeCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/DeletePipelineCommand.ts b/clients/client-codepipeline/src/commands/DeletePipelineCommand.ts index b5e284fa4bd96..0003bcd85919d 100644 --- a/clients/client-codepipeline/src/commands/DeletePipelineCommand.ts +++ b/clients/client-codepipeline/src/commands/DeletePipelineCommand.ts @@ -59,6 +59,7 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {} * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class DeletePipelineCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/DeleteWebhookCommand.ts b/clients/client-codepipeline/src/commands/DeleteWebhookCommand.ts index 205c1097bc998..6fccf0d7f8d68 100644 --- a/clients/client-codepipeline/src/commands/DeleteWebhookCommand.ts +++ b/clients/client-codepipeline/src/commands/DeleteWebhookCommand.ts @@ -62,6 +62,7 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __Metad * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class DeleteWebhookCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/DeregisterWebhookWithThirdPartyCommand.ts b/clients/client-codepipeline/src/commands/DeregisterWebhookWithThirdPartyCommand.ts index 9b2d349fb417b..3dcb33e3753d7 100644 --- a/clients/client-codepipeline/src/commands/DeregisterWebhookWithThirdPartyCommand.ts +++ b/clients/client-codepipeline/src/commands/DeregisterWebhookWithThirdPartyCommand.ts @@ -67,6 +67,7 @@ export interface DeregisterWebhookWithThirdPartyCommandOutput * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class DeregisterWebhookWithThirdPartyCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/DisableStageTransitionCommand.ts b/clients/client-codepipeline/src/commands/DisableStageTransitionCommand.ts index 5bbeb785cebb5..01c9416df2b51 100644 --- a/clients/client-codepipeline/src/commands/DisableStageTransitionCommand.ts +++ b/clients/client-codepipeline/src/commands/DisableStageTransitionCommand.ts @@ -66,6 +66,7 @@ export interface DisableStageTransitionCommandOutput extends __MetadataBearer {} * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class DisableStageTransitionCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/EnableStageTransitionCommand.ts b/clients/client-codepipeline/src/commands/EnableStageTransitionCommand.ts index cfcef069539c4..7cf40ba2ec828 100644 --- a/clients/client-codepipeline/src/commands/EnableStageTransitionCommand.ts +++ b/clients/client-codepipeline/src/commands/EnableStageTransitionCommand.ts @@ -64,6 +64,7 @@ export interface EnableStageTransitionCommandOutput extends __MetadataBearer {} * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class EnableStageTransitionCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/GetActionTypeCommand.ts b/clients/client-codepipeline/src/commands/GetActionTypeCommand.ts index 9c431760e6792..7748e8b9679a3 100644 --- a/clients/client-codepipeline/src/commands/GetActionTypeCommand.ts +++ b/clients/client-codepipeline/src/commands/GetActionTypeCommand.ts @@ -121,6 +121,7 @@ export interface GetActionTypeCommandOutput extends GetActionTypeOutput, __Metad * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class GetActionTypeCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/GetJobDetailsCommand.ts b/clients/client-codepipeline/src/commands/GetJobDetailsCommand.ts index b051bdf7fb376..fee567c4d57c8 100644 --- a/clients/client-codepipeline/src/commands/GetJobDetailsCommand.ts +++ b/clients/client-codepipeline/src/commands/GetJobDetailsCommand.ts @@ -131,6 +131,7 @@ export interface GetJobDetailsCommandOutput extends GetJobDetailsOutput, __Metad * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class GetJobDetailsCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/GetPipelineCommand.ts b/clients/client-codepipeline/src/commands/GetPipelineCommand.ts index 3cfba203b0414..a3524a905a48a 100644 --- a/clients/client-codepipeline/src/commands/GetPipelineCommand.ts +++ b/clients/client-codepipeline/src/commands/GetPipelineCommand.ts @@ -319,6 +319,7 @@ export interface GetPipelineCommandOutput extends GetPipelineOutput, __MetadataB * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class GetPipelineCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/GetPipelineExecutionCommand.ts b/clients/client-codepipeline/src/commands/GetPipelineExecutionCommand.ts index ea6f1957c598a..e1cc3c1985f4f 100644 --- a/clients/client-codepipeline/src/commands/GetPipelineExecutionCommand.ts +++ b/clients/client-codepipeline/src/commands/GetPipelineExecutionCommand.ts @@ -99,6 +99,7 @@ export interface GetPipelineExecutionCommandOutput extends GetPipelineExecutionO * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class GetPipelineExecutionCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/GetPipelineStateCommand.ts b/clients/client-codepipeline/src/commands/GetPipelineStateCommand.ts index 578a3f43437c1..6369389fefaf7 100644 --- a/clients/client-codepipeline/src/commands/GetPipelineStateCommand.ts +++ b/clients/client-codepipeline/src/commands/GetPipelineStateCommand.ts @@ -254,6 +254,7 @@ export interface GetPipelineStateCommandOutput extends GetPipelineStateOutput, _ * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class GetPipelineStateCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/GetThirdPartyJobDetailsCommand.ts b/clients/client-codepipeline/src/commands/GetThirdPartyJobDetailsCommand.ts index 560c362e4f46a..b1d6f0fe2571f 100644 --- a/clients/client-codepipeline/src/commands/GetThirdPartyJobDetailsCommand.ts +++ b/clients/client-codepipeline/src/commands/GetThirdPartyJobDetailsCommand.ts @@ -143,6 +143,7 @@ export interface GetThirdPartyJobDetailsCommandOutput extends GetThirdPartyJobDe * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class GetThirdPartyJobDetailsCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/ListActionExecutionsCommand.ts b/clients/client-codepipeline/src/commands/ListActionExecutionsCommand.ts index 7589bb8d0ebab..cfb460402c523 100644 --- a/clients/client-codepipeline/src/commands/ListActionExecutionsCommand.ts +++ b/clients/client-codepipeline/src/commands/ListActionExecutionsCommand.ts @@ -141,6 +141,7 @@ export interface ListActionExecutionsCommandOutput extends ListActionExecutionsO * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class ListActionExecutionsCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/ListActionTypesCommand.ts b/clients/client-codepipeline/src/commands/ListActionTypesCommand.ts index ed415a077aa02..8b97728f70ba6 100644 --- a/clients/client-codepipeline/src/commands/ListActionTypesCommand.ts +++ b/clients/client-codepipeline/src/commands/ListActionTypesCommand.ts @@ -100,6 +100,7 @@ export interface ListActionTypesCommandOutput extends ListActionTypesOutput, __M * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class ListActionTypesCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/ListPipelineExecutionsCommand.ts b/clients/client-codepipeline/src/commands/ListPipelineExecutionsCommand.ts index 26579950d00ae..dc00864a9f6e7 100644 --- a/clients/client-codepipeline/src/commands/ListPipelineExecutionsCommand.ts +++ b/clients/client-codepipeline/src/commands/ListPipelineExecutionsCommand.ts @@ -106,6 +106,7 @@ export interface ListPipelineExecutionsCommandOutput extends ListPipelineExecuti * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class ListPipelineExecutionsCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/ListPipelinesCommand.ts b/clients/client-codepipeline/src/commands/ListPipelinesCommand.ts index e2660031a0dc5..80e1a216c42c3 100644 --- a/clients/client-codepipeline/src/commands/ListPipelinesCommand.ts +++ b/clients/client-codepipeline/src/commands/ListPipelinesCommand.ts @@ -73,6 +73,7 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class ListPipelinesCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/ListRuleExecutionsCommand.ts b/clients/client-codepipeline/src/commands/ListRuleExecutionsCommand.ts index 898644c9f9dd0..60c4e8deb2bbb 100644 --- a/clients/client-codepipeline/src/commands/ListRuleExecutionsCommand.ts +++ b/clients/client-codepipeline/src/commands/ListRuleExecutionsCommand.ts @@ -128,6 +128,7 @@ export interface ListRuleExecutionsCommandOutput extends ListRuleExecutionsOutpu * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class ListRuleExecutionsCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/ListRuleTypesCommand.ts b/clients/client-codepipeline/src/commands/ListRuleTypesCommand.ts index 24ab25a5059f9..f10bd6f62df84 100644 --- a/clients/client-codepipeline/src/commands/ListRuleTypesCommand.ts +++ b/clients/client-codepipeline/src/commands/ListRuleTypesCommand.ts @@ -94,6 +94,7 @@ export interface ListRuleTypesCommandOutput extends ListRuleTypesOutput, __Metad * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class ListRuleTypesCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/ListTagsForResourceCommand.ts b/clients/client-codepipeline/src/commands/ListTagsForResourceCommand.ts index 40c0d561aa973..8523b734d06a4 100644 --- a/clients/client-codepipeline/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codepipeline/src/commands/ListTagsForResourceCommand.ts @@ -77,6 +77,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/ListWebhooksCommand.ts b/clients/client-codepipeline/src/commands/ListWebhooksCommand.ts index ee570ce97b4ee..77401cec42aaf 100644 --- a/clients/client-codepipeline/src/commands/ListWebhooksCommand.ts +++ b/clients/client-codepipeline/src/commands/ListWebhooksCommand.ts @@ -99,6 +99,7 @@ export interface ListWebhooksCommandOutput extends ListWebhooksOutput, __Metadat * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class ListWebhooksCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/OverrideStageConditionCommand.ts b/clients/client-codepipeline/src/commands/OverrideStageConditionCommand.ts index ea8737d2ffcaf..cc502272cd434 100644 --- a/clients/client-codepipeline/src/commands/OverrideStageConditionCommand.ts +++ b/clients/client-codepipeline/src/commands/OverrideStageConditionCommand.ts @@ -81,6 +81,7 @@ export interface OverrideStageConditionCommandOutput extends __MetadataBearer {} * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class OverrideStageConditionCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/PollForJobsCommand.ts b/clients/client-codepipeline/src/commands/PollForJobsCommand.ts index 4714cfb3734c5..fc5473b7e5eae 100644 --- a/clients/client-codepipeline/src/commands/PollForJobsCommand.ts +++ b/clients/client-codepipeline/src/commands/PollForJobsCommand.ts @@ -146,6 +146,7 @@ export interface PollForJobsCommandOutput extends PollForJobsOutput, __MetadataB * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class PollForJobsCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/PollForThirdPartyJobsCommand.ts b/clients/client-codepipeline/src/commands/PollForThirdPartyJobsCommand.ts index dd141521ba10a..f71be06e85784 100644 --- a/clients/client-codepipeline/src/commands/PollForThirdPartyJobsCommand.ts +++ b/clients/client-codepipeline/src/commands/PollForThirdPartyJobsCommand.ts @@ -78,6 +78,7 @@ export interface PollForThirdPartyJobsCommandOutput extends PollForThirdPartyJob * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class PollForThirdPartyJobsCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/PutActionRevisionCommand.ts b/clients/client-codepipeline/src/commands/PutActionRevisionCommand.ts index eded3b97abf81..5dbbb1b291141 100644 --- a/clients/client-codepipeline/src/commands/PutActionRevisionCommand.ts +++ b/clients/client-codepipeline/src/commands/PutActionRevisionCommand.ts @@ -79,6 +79,7 @@ export interface PutActionRevisionCommandOutput extends PutActionRevisionOutput, * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class PutActionRevisionCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/PutApprovalResultCommand.ts b/clients/client-codepipeline/src/commands/PutApprovalResultCommand.ts index fd51347ea070d..280784918e4ad 100644 --- a/clients/client-codepipeline/src/commands/PutApprovalResultCommand.ts +++ b/clients/client-codepipeline/src/commands/PutApprovalResultCommand.ts @@ -81,6 +81,7 @@ export interface PutApprovalResultCommandOutput extends PutApprovalResultOutput, * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class PutApprovalResultCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/PutJobFailureResultCommand.ts b/clients/client-codepipeline/src/commands/PutJobFailureResultCommand.ts index 46b2586696f3d..bda890bc13771 100644 --- a/clients/client-codepipeline/src/commands/PutJobFailureResultCommand.ts +++ b/clients/client-codepipeline/src/commands/PutJobFailureResultCommand.ts @@ -68,6 +68,7 @@ export interface PutJobFailureResultCommandOutput extends __MetadataBearer {} * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class PutJobFailureResultCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/PutJobSuccessResultCommand.ts b/clients/client-codepipeline/src/commands/PutJobSuccessResultCommand.ts index fc79b3847db03..014c0319eab00 100644 --- a/clients/client-codepipeline/src/commands/PutJobSuccessResultCommand.ts +++ b/clients/client-codepipeline/src/commands/PutJobSuccessResultCommand.ts @@ -81,6 +81,7 @@ export interface PutJobSuccessResultCommandOutput extends __MetadataBearer {} * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class PutJobSuccessResultCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/PutThirdPartyJobFailureResultCommand.ts b/clients/client-codepipeline/src/commands/PutThirdPartyJobFailureResultCommand.ts index 6c3ab9a983b51..fa763108b6a91 100644 --- a/clients/client-codepipeline/src/commands/PutThirdPartyJobFailureResultCommand.ts +++ b/clients/client-codepipeline/src/commands/PutThirdPartyJobFailureResultCommand.ts @@ -75,6 +75,7 @@ export interface PutThirdPartyJobFailureResultCommandOutput extends __MetadataBe * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class PutThirdPartyJobFailureResultCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/PutThirdPartyJobSuccessResultCommand.ts b/clients/client-codepipeline/src/commands/PutThirdPartyJobSuccessResultCommand.ts index 60da05a70b7a5..533c798ccd6cf 100644 --- a/clients/client-codepipeline/src/commands/PutThirdPartyJobSuccessResultCommand.ts +++ b/clients/client-codepipeline/src/commands/PutThirdPartyJobSuccessResultCommand.ts @@ -82,6 +82,7 @@ export interface PutThirdPartyJobSuccessResultCommandOutput extends __MetadataBe * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class PutThirdPartyJobSuccessResultCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/PutWebhookCommand.ts b/clients/client-codepipeline/src/commands/PutWebhookCommand.ts index 3c17d4e6abd55..2631b64d066dc 100644 --- a/clients/client-codepipeline/src/commands/PutWebhookCommand.ts +++ b/clients/client-codepipeline/src/commands/PutWebhookCommand.ts @@ -148,6 +148,7 @@ export interface PutWebhookCommandOutput extends PutWebhookOutput, __MetadataBea * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class PutWebhookCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/RegisterWebhookWithThirdPartyCommand.ts b/clients/client-codepipeline/src/commands/RegisterWebhookWithThirdPartyCommand.ts index a5af20e7a86fd..df9961c7da0d5 100644 --- a/clients/client-codepipeline/src/commands/RegisterWebhookWithThirdPartyCommand.ts +++ b/clients/client-codepipeline/src/commands/RegisterWebhookWithThirdPartyCommand.ts @@ -66,6 +66,7 @@ export interface RegisterWebhookWithThirdPartyCommandOutput * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class RegisterWebhookWithThirdPartyCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/RetryStageExecutionCommand.ts b/clients/client-codepipeline/src/commands/RetryStageExecutionCommand.ts index 2169ed94cfd8b..9f9eff81fb031 100644 --- a/clients/client-codepipeline/src/commands/RetryStageExecutionCommand.ts +++ b/clients/client-codepipeline/src/commands/RetryStageExecutionCommand.ts @@ -91,6 +91,7 @@ export interface RetryStageExecutionCommandOutput extends RetryStageExecutionOut * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class RetryStageExecutionCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/RollbackStageCommand.ts b/clients/client-codepipeline/src/commands/RollbackStageCommand.ts index 37958195baf7d..c1262d1788b1e 100644 --- a/clients/client-codepipeline/src/commands/RollbackStageCommand.ts +++ b/clients/client-codepipeline/src/commands/RollbackStageCommand.ts @@ -83,6 +83,7 @@ export interface RollbackStageCommandOutput extends RollbackStageOutput, __Metad * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class RollbackStageCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/StartPipelineExecutionCommand.ts b/clients/client-codepipeline/src/commands/StartPipelineExecutionCommand.ts index ee646beb90fcb..f73ff59843b47 100644 --- a/clients/client-codepipeline/src/commands/StartPipelineExecutionCommand.ts +++ b/clients/client-codepipeline/src/commands/StartPipelineExecutionCommand.ts @@ -83,6 +83,7 @@ export interface StartPipelineExecutionCommandOutput extends StartPipelineExecut * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class StartPipelineExecutionCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/StopPipelineExecutionCommand.ts b/clients/client-codepipeline/src/commands/StopPipelineExecutionCommand.ts index 138045951b54b..b9e1fc62f2112 100644 --- a/clients/client-codepipeline/src/commands/StopPipelineExecutionCommand.ts +++ b/clients/client-codepipeline/src/commands/StopPipelineExecutionCommand.ts @@ -84,6 +84,7 @@ export interface StopPipelineExecutionCommandOutput extends StopPipelineExecutio * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class StopPipelineExecutionCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/TagResourceCommand.ts b/clients/client-codepipeline/src/commands/TagResourceCommand.ts index 973d033d2631c..42964a789275c 100644 --- a/clients/client-codepipeline/src/commands/TagResourceCommand.ts +++ b/clients/client-codepipeline/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/UntagResourceCommand.ts b/clients/client-codepipeline/src/commands/UntagResourceCommand.ts index 34131f1cd3e36..15ef9fc54ef70 100644 --- a/clients/client-codepipeline/src/commands/UntagResourceCommand.ts +++ b/clients/client-codepipeline/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/UpdateActionTypeCommand.ts b/clients/client-codepipeline/src/commands/UpdateActionTypeCommand.ts index fff5ccf1c81e1..c3babef5b6752 100644 --- a/clients/client-codepipeline/src/commands/UpdateActionTypeCommand.ts +++ b/clients/client-codepipeline/src/commands/UpdateActionTypeCommand.ts @@ -120,6 +120,7 @@ export interface UpdateActionTypeCommandOutput extends __MetadataBearer {} * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class UpdateActionTypeCommand extends $Command diff --git a/clients/client-codepipeline/src/commands/UpdatePipelineCommand.ts b/clients/client-codepipeline/src/commands/UpdatePipelineCommand.ts index 42856f37aa0c3..8fa26a3cab2a7 100644 --- a/clients/client-codepipeline/src/commands/UpdatePipelineCommand.ts +++ b/clients/client-codepipeline/src/commands/UpdatePipelineCommand.ts @@ -567,6 +567,7 @@ export interface UpdatePipelineCommandOutput extends UpdatePipelineOutput, __Met * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* + * * @public */ export class UpdatePipelineCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/CreateConnectionCommand.ts b/clients/client-codestar-connections/src/commands/CreateConnectionCommand.ts index b3b20b7dcf86d..4e63c2a0aad48 100644 --- a/clients/client-codestar-connections/src/commands/CreateConnectionCommand.ts +++ b/clients/client-codestar-connections/src/commands/CreateConnectionCommand.ts @@ -84,6 +84,7 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _ * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class CreateConnectionCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/CreateHostCommand.ts b/clients/client-codestar-connections/src/commands/CreateHostCommand.ts index 076a6faa873b7..18265514aced2 100644 --- a/clients/client-codestar-connections/src/commands/CreateHostCommand.ts +++ b/clients/client-codestar-connections/src/commands/CreateHostCommand.ts @@ -93,6 +93,7 @@ export interface CreateHostCommandOutput extends CreateHostOutput, __MetadataBea * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class CreateHostCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/CreateRepositoryLinkCommand.ts b/clients/client-codestar-connections/src/commands/CreateRepositoryLinkCommand.ts index 6a581701669f5..73f7691a15c03 100644 --- a/clients/client-codestar-connections/src/commands/CreateRepositoryLinkCommand.ts +++ b/clients/client-codestar-connections/src/commands/CreateRepositoryLinkCommand.ts @@ -97,6 +97,7 @@ export interface CreateRepositoryLinkCommandOutput extends CreateRepositoryLinkO * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class CreateRepositoryLinkCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/CreateSyncConfigurationCommand.ts b/clients/client-codestar-connections/src/commands/CreateSyncConfigurationCommand.ts index 9fef0715b91a0..0d58e6d201962 100644 --- a/clients/client-codestar-connections/src/commands/CreateSyncConfigurationCommand.ts +++ b/clients/client-codestar-connections/src/commands/CreateSyncConfigurationCommand.ts @@ -101,6 +101,7 @@ export interface CreateSyncConfigurationCommandOutput extends CreateSyncConfigur * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class CreateSyncConfigurationCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/DeleteConnectionCommand.ts b/clients/client-codestar-connections/src/commands/DeleteConnectionCommand.ts index b1e9449a296d7..e03b307fec8f6 100644 --- a/clients/client-codestar-connections/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-codestar-connections/src/commands/DeleteConnectionCommand.ts @@ -60,6 +60,7 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionOutput, _ * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class DeleteConnectionCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/DeleteHostCommand.ts b/clients/client-codestar-connections/src/commands/DeleteHostCommand.ts index 348e26d68dc35..a84a8a2207b10 100644 --- a/clients/client-codestar-connections/src/commands/DeleteHostCommand.ts +++ b/clients/client-codestar-connections/src/commands/DeleteHostCommand.ts @@ -66,6 +66,7 @@ export interface DeleteHostCommandOutput extends DeleteHostOutput, __MetadataBea * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class DeleteHostCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/DeleteRepositoryLinkCommand.ts b/clients/client-codestar-connections/src/commands/DeleteRepositoryLinkCommand.ts index 639bc25b1440a..accba474f8e0c 100644 --- a/clients/client-codestar-connections/src/commands/DeleteRepositoryLinkCommand.ts +++ b/clients/client-codestar-connections/src/commands/DeleteRepositoryLinkCommand.ts @@ -81,6 +81,7 @@ export interface DeleteRepositoryLinkCommandOutput extends DeleteRepositoryLinkO * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class DeleteRepositoryLinkCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/DeleteSyncConfigurationCommand.ts b/clients/client-codestar-connections/src/commands/DeleteSyncConfigurationCommand.ts index d609af171c664..8e14adc257833 100644 --- a/clients/client-codestar-connections/src/commands/DeleteSyncConfigurationCommand.ts +++ b/clients/client-codestar-connections/src/commands/DeleteSyncConfigurationCommand.ts @@ -76,6 +76,7 @@ export interface DeleteSyncConfigurationCommandOutput extends DeleteSyncConfigur * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class DeleteSyncConfigurationCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/GetConnectionCommand.ts b/clients/client-codestar-connections/src/commands/GetConnectionCommand.ts index 2d9f7b2099411..42c7a4851be09 100644 --- a/clients/client-codestar-connections/src/commands/GetConnectionCommand.ts +++ b/clients/client-codestar-connections/src/commands/GetConnectionCommand.ts @@ -72,6 +72,7 @@ export interface GetConnectionCommandOutput extends GetConnectionOutput, __Metad * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class GetConnectionCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/GetHostCommand.ts b/clients/client-codestar-connections/src/commands/GetHostCommand.ts index f8595590f797a..f53abf547bc20 100644 --- a/clients/client-codestar-connections/src/commands/GetHostCommand.ts +++ b/clients/client-codestar-connections/src/commands/GetHostCommand.ts @@ -79,6 +79,7 @@ export interface GetHostCommandOutput extends GetHostOutput, __MetadataBearer {} * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class GetHostCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/GetRepositoryLinkCommand.ts b/clients/client-codestar-connections/src/commands/GetRepositoryLinkCommand.ts index e3798f8b37f34..2ef47b2043058 100644 --- a/clients/client-codestar-connections/src/commands/GetRepositoryLinkCommand.ts +++ b/clients/client-codestar-connections/src/commands/GetRepositoryLinkCommand.ts @@ -86,6 +86,7 @@ export interface GetRepositoryLinkCommandOutput extends GetRepositoryLinkOutput, * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class GetRepositoryLinkCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/GetRepositorySyncStatusCommand.ts b/clients/client-codestar-connections/src/commands/GetRepositorySyncStatusCommand.ts index 955fc4101973a..cbbe0508c8044 100644 --- a/clients/client-codestar-connections/src/commands/GetRepositorySyncStatusCommand.ts +++ b/clients/client-codestar-connections/src/commands/GetRepositorySyncStatusCommand.ts @@ -88,6 +88,7 @@ export interface GetRepositorySyncStatusCommandOutput extends GetRepositorySyncS * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class GetRepositorySyncStatusCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/GetResourceSyncStatusCommand.ts b/clients/client-codestar-connections/src/commands/GetResourceSyncStatusCommand.ts index c19f6f255b473..6874e57a26428 100644 --- a/clients/client-codestar-connections/src/commands/GetResourceSyncStatusCommand.ts +++ b/clients/client-codestar-connections/src/commands/GetResourceSyncStatusCommand.ts @@ -141,6 +141,7 @@ export interface GetResourceSyncStatusCommandOutput extends GetResourceSyncStatu * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class GetResourceSyncStatusCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/GetSyncBlockerSummaryCommand.ts b/clients/client-codestar-connections/src/commands/GetSyncBlockerSummaryCommand.ts index b500529a51241..d66e6d3a4132a 100644 --- a/clients/client-codestar-connections/src/commands/GetSyncBlockerSummaryCommand.ts +++ b/clients/client-codestar-connections/src/commands/GetSyncBlockerSummaryCommand.ts @@ -95,6 +95,7 @@ export interface GetSyncBlockerSummaryCommandOutput extends GetSyncBlockerSummar * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class GetSyncBlockerSummaryCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/GetSyncConfigurationCommand.ts b/clients/client-codestar-connections/src/commands/GetSyncConfigurationCommand.ts index f2230c8196f4e..8bb28fc23ef2c 100644 --- a/clients/client-codestar-connections/src/commands/GetSyncConfigurationCommand.ts +++ b/clients/client-codestar-connections/src/commands/GetSyncConfigurationCommand.ts @@ -87,6 +87,7 @@ export interface GetSyncConfigurationCommandOutput extends GetSyncConfigurationO * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class GetSyncConfigurationCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/ListConnectionsCommand.ts b/clients/client-codestar-connections/src/commands/ListConnectionsCommand.ts index bd25482b3eeb1..d4b02db5fe6b3 100644 --- a/clients/client-codestar-connections/src/commands/ListConnectionsCommand.ts +++ b/clients/client-codestar-connections/src/commands/ListConnectionsCommand.ts @@ -75,6 +75,7 @@ export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __M * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class ListConnectionsCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/ListHostsCommand.ts b/clients/client-codestar-connections/src/commands/ListHostsCommand.ts index 219fc6ba75594..7746ac836bef1 100644 --- a/clients/client-codestar-connections/src/commands/ListHostsCommand.ts +++ b/clients/client-codestar-connections/src/commands/ListHostsCommand.ts @@ -80,6 +80,7 @@ export interface ListHostsCommandOutput extends ListHostsOutput, __MetadataBeare * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class ListHostsCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/ListRepositoryLinksCommand.ts b/clients/client-codestar-connections/src/commands/ListRepositoryLinksCommand.ts index a5f9827706b29..0f466aa20f341 100644 --- a/clients/client-codestar-connections/src/commands/ListRepositoryLinksCommand.ts +++ b/clients/client-codestar-connections/src/commands/ListRepositoryLinksCommand.ts @@ -89,6 +89,7 @@ export interface ListRepositoryLinksCommandOutput extends ListRepositoryLinksOut * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class ListRepositoryLinksCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/ListRepositorySyncDefinitionsCommand.ts b/clients/client-codestar-connections/src/commands/ListRepositorySyncDefinitionsCommand.ts index cdbbef372a89d..e7726f3f93913 100644 --- a/clients/client-codestar-connections/src/commands/ListRepositorySyncDefinitionsCommand.ts +++ b/clients/client-codestar-connections/src/commands/ListRepositorySyncDefinitionsCommand.ts @@ -88,6 +88,7 @@ export interface ListRepositorySyncDefinitionsCommandOutput * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class ListRepositorySyncDefinitionsCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/ListSyncConfigurationsCommand.ts b/clients/client-codestar-connections/src/commands/ListSyncConfigurationsCommand.ts index 1feaad45acf41..7e31f837c0a31 100644 --- a/clients/client-codestar-connections/src/commands/ListSyncConfigurationsCommand.ts +++ b/clients/client-codestar-connections/src/commands/ListSyncConfigurationsCommand.ts @@ -92,6 +92,7 @@ export interface ListSyncConfigurationsCommandOutput extends ListSyncConfigurati * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class ListSyncConfigurationsCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/ListTagsForResourceCommand.ts b/clients/client-codestar-connections/src/commands/ListTagsForResourceCommand.ts index 7752d144c5d13..d27d2531ab470 100644 --- a/clients/client-codestar-connections/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codestar-connections/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/TagResourceCommand.ts b/clients/client-codestar-connections/src/commands/TagResourceCommand.ts index e6e108c0ae42b..2661e02f3829a 100644 --- a/clients/client-codestar-connections/src/commands/TagResourceCommand.ts +++ b/clients/client-codestar-connections/src/commands/TagResourceCommand.ts @@ -70,6 +70,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/UntagResourceCommand.ts b/clients/client-codestar-connections/src/commands/UntagResourceCommand.ts index c2791939e5fb8..c8eebd44961f5 100644 --- a/clients/client-codestar-connections/src/commands/UntagResourceCommand.ts +++ b/clients/client-codestar-connections/src/commands/UntagResourceCommand.ts @@ -63,6 +63,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/UpdateHostCommand.ts b/clients/client-codestar-connections/src/commands/UpdateHostCommand.ts index 9590510ff491e..83ecc5cac8f0a 100644 --- a/clients/client-codestar-connections/src/commands/UpdateHostCommand.ts +++ b/clients/client-codestar-connections/src/commands/UpdateHostCommand.ts @@ -80,6 +80,7 @@ export interface UpdateHostCommandOutput extends UpdateHostOutput, __MetadataBea * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class UpdateHostCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/UpdateRepositoryLinkCommand.ts b/clients/client-codestar-connections/src/commands/UpdateRepositoryLinkCommand.ts index 371a5cc4927dc..b1fea9cfb2184 100644 --- a/clients/client-codestar-connections/src/commands/UpdateRepositoryLinkCommand.ts +++ b/clients/client-codestar-connections/src/commands/UpdateRepositoryLinkCommand.ts @@ -92,6 +92,7 @@ export interface UpdateRepositoryLinkCommandOutput extends UpdateRepositoryLinkO * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class UpdateRepositoryLinkCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/UpdateSyncBlockerCommand.ts b/clients/client-codestar-connections/src/commands/UpdateSyncBlockerCommand.ts index d05f7b54c5db4..6244aa507aa7b 100644 --- a/clients/client-codestar-connections/src/commands/UpdateSyncBlockerCommand.ts +++ b/clients/client-codestar-connections/src/commands/UpdateSyncBlockerCommand.ts @@ -99,6 +99,7 @@ export interface UpdateSyncBlockerCommandOutput extends UpdateSyncBlockerOutput, * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class UpdateSyncBlockerCommand extends $Command diff --git a/clients/client-codestar-connections/src/commands/UpdateSyncConfigurationCommand.ts b/clients/client-codestar-connections/src/commands/UpdateSyncConfigurationCommand.ts index 43a1f97d6fc21..38c0dc331530c 100644 --- a/clients/client-codestar-connections/src/commands/UpdateSyncConfigurationCommand.ts +++ b/clients/client-codestar-connections/src/commands/UpdateSyncConfigurationCommand.ts @@ -99,6 +99,7 @@ export interface UpdateSyncConfigurationCommandOutput extends UpdateSyncConfigur * @throws {@link CodeStarConnectionsServiceException} *

Base exception class for all service exceptions from CodeStarConnections service.

* + * * @public */ export class UpdateSyncConfigurationCommand extends $Command diff --git a/clients/client-codestar-notifications/src/commands/CreateNotificationRuleCommand.ts b/clients/client-codestar-notifications/src/commands/CreateNotificationRuleCommand.ts index 332035c12ee5c..a46a228fdfa76 100644 --- a/clients/client-codestar-notifications/src/commands/CreateNotificationRuleCommand.ts +++ b/clients/client-codestar-notifications/src/commands/CreateNotificationRuleCommand.ts @@ -104,6 +104,7 @@ export interface CreateNotificationRuleCommandOutput extends CreateNotificationR * @throws {@link CodestarNotificationsServiceException} *

Base exception class for all service exceptions from CodestarNotifications service.

* + * * @public */ export class CreateNotificationRuleCommand extends $Command diff --git a/clients/client-codestar-notifications/src/commands/DeleteNotificationRuleCommand.ts b/clients/client-codestar-notifications/src/commands/DeleteNotificationRuleCommand.ts index f4bc9052583b3..bdaeadac7aa68 100644 --- a/clients/client-codestar-notifications/src/commands/DeleteNotificationRuleCommand.ts +++ b/clients/client-codestar-notifications/src/commands/DeleteNotificationRuleCommand.ts @@ -71,6 +71,7 @@ export interface DeleteNotificationRuleCommandOutput extends DeleteNotificationR * @throws {@link CodestarNotificationsServiceException} *

Base exception class for all service exceptions from CodestarNotifications service.

* + * * @public */ export class DeleteNotificationRuleCommand extends $Command diff --git a/clients/client-codestar-notifications/src/commands/DeleteTargetCommand.ts b/clients/client-codestar-notifications/src/commands/DeleteTargetCommand.ts index 2e6a32e2ff00e..3bac16ed575e0 100644 --- a/clients/client-codestar-notifications/src/commands/DeleteTargetCommand.ts +++ b/clients/client-codestar-notifications/src/commands/DeleteTargetCommand.ts @@ -61,6 +61,7 @@ export interface DeleteTargetCommandOutput extends DeleteTargetResult, __Metadat * @throws {@link CodestarNotificationsServiceException} *

Base exception class for all service exceptions from CodestarNotifications service.

* + * * @public */ export class DeleteTargetCommand extends $Command diff --git a/clients/client-codestar-notifications/src/commands/DescribeNotificationRuleCommand.ts b/clients/client-codestar-notifications/src/commands/DescribeNotificationRuleCommand.ts index 1809130a46f22..8620b090dfd6e 100644 --- a/clients/client-codestar-notifications/src/commands/DescribeNotificationRuleCommand.ts +++ b/clients/client-codestar-notifications/src/commands/DescribeNotificationRuleCommand.ts @@ -94,6 +94,7 @@ export interface DescribeNotificationRuleCommandOutput extends DescribeNotificat * @throws {@link CodestarNotificationsServiceException} *

Base exception class for all service exceptions from CodestarNotifications service.

* + * * @public */ export class DescribeNotificationRuleCommand extends $Command diff --git a/clients/client-codestar-notifications/src/commands/ListEventTypesCommand.ts b/clients/client-codestar-notifications/src/commands/ListEventTypesCommand.ts index 6409ec8ee7f0b..dab85ffebef85 100644 --- a/clients/client-codestar-notifications/src/commands/ListEventTypesCommand.ts +++ b/clients/client-codestar-notifications/src/commands/ListEventTypesCommand.ts @@ -80,6 +80,7 @@ export interface ListEventTypesCommandOutput extends ListEventTypesResult, __Met * @throws {@link CodestarNotificationsServiceException} *

Base exception class for all service exceptions from CodestarNotifications service.

* + * * @public */ export class ListEventTypesCommand extends $Command diff --git a/clients/client-codestar-notifications/src/commands/ListNotificationRulesCommand.ts b/clients/client-codestar-notifications/src/commands/ListNotificationRulesCommand.ts index 5891dffcbc604..a4e20c4500826 100644 --- a/clients/client-codestar-notifications/src/commands/ListNotificationRulesCommand.ts +++ b/clients/client-codestar-notifications/src/commands/ListNotificationRulesCommand.ts @@ -78,6 +78,7 @@ export interface ListNotificationRulesCommandOutput extends ListNotificationRule * @throws {@link CodestarNotificationsServiceException} *

Base exception class for all service exceptions from CodestarNotifications service.

* + * * @public */ export class ListNotificationRulesCommand extends $Command diff --git a/clients/client-codestar-notifications/src/commands/ListTagsForResourceCommand.ts b/clients/client-codestar-notifications/src/commands/ListTagsForResourceCommand.ts index e0f0fce88c55a..841d4152b847e 100644 --- a/clients/client-codestar-notifications/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codestar-notifications/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CodestarNotificationsServiceException} *

Base exception class for all service exceptions from CodestarNotifications service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-codestar-notifications/src/commands/ListTargetsCommand.ts b/clients/client-codestar-notifications/src/commands/ListTargetsCommand.ts index 9c60cd821c699..1739e7e5c6421 100644 --- a/clients/client-codestar-notifications/src/commands/ListTargetsCommand.ts +++ b/clients/client-codestar-notifications/src/commands/ListTargetsCommand.ts @@ -79,6 +79,7 @@ export interface ListTargetsCommandOutput extends ListTargetsResult, __MetadataB * @throws {@link CodestarNotificationsServiceException} *

Base exception class for all service exceptions from CodestarNotifications service.

* + * * @public */ export class ListTargetsCommand extends $Command diff --git a/clients/client-codestar-notifications/src/commands/SubscribeCommand.ts b/clients/client-codestar-notifications/src/commands/SubscribeCommand.ts index 94039cf96dcc5..a66f143439e68 100644 --- a/clients/client-codestar-notifications/src/commands/SubscribeCommand.ts +++ b/clients/client-codestar-notifications/src/commands/SubscribeCommand.ts @@ -75,6 +75,7 @@ export interface SubscribeCommandOutput extends SubscribeResult, __MetadataBeare * @throws {@link CodestarNotificationsServiceException} *

Base exception class for all service exceptions from CodestarNotifications service.

* + * * @public */ export class SubscribeCommand extends $Command diff --git a/clients/client-codestar-notifications/src/commands/TagResourceCommand.ts b/clients/client-codestar-notifications/src/commands/TagResourceCommand.ts index 440dc3b26786e..0bdd50c12c3a0 100644 --- a/clients/client-codestar-notifications/src/commands/TagResourceCommand.ts +++ b/clients/client-codestar-notifications/src/commands/TagResourceCommand.ts @@ -79,6 +79,7 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB * @throws {@link CodestarNotificationsServiceException} *

Base exception class for all service exceptions from CodestarNotifications service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-codestar-notifications/src/commands/UnsubscribeCommand.ts b/clients/client-codestar-notifications/src/commands/UnsubscribeCommand.ts index eb87f014f02c8..227d7f2991c72 100644 --- a/clients/client-codestar-notifications/src/commands/UnsubscribeCommand.ts +++ b/clients/client-codestar-notifications/src/commands/UnsubscribeCommand.ts @@ -65,6 +65,7 @@ export interface UnsubscribeCommandOutput extends UnsubscribeResult, __MetadataB * @throws {@link CodestarNotificationsServiceException} *

Base exception class for all service exceptions from CodestarNotifications service.

* + * * @public */ export class UnsubscribeCommand extends $Command diff --git a/clients/client-codestar-notifications/src/commands/UntagResourceCommand.ts b/clients/client-codestar-notifications/src/commands/UntagResourceCommand.ts index 282f2acd2162b..d6282b00dddc6 100644 --- a/clients/client-codestar-notifications/src/commands/UntagResourceCommand.ts +++ b/clients/client-codestar-notifications/src/commands/UntagResourceCommand.ts @@ -76,6 +76,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResult, __Metad * @throws {@link CodestarNotificationsServiceException} *

Base exception class for all service exceptions from CodestarNotifications service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-codestar-notifications/src/commands/UpdateNotificationRuleCommand.ts b/clients/client-codestar-notifications/src/commands/UpdateNotificationRuleCommand.ts index becb02d59d3c9..ab71ebaf6e60f 100644 --- a/clients/client-codestar-notifications/src/commands/UpdateNotificationRuleCommand.ts +++ b/clients/client-codestar-notifications/src/commands/UpdateNotificationRuleCommand.ts @@ -87,6 +87,7 @@ export interface UpdateNotificationRuleCommandOutput extends UpdateNotificationR * @throws {@link CodestarNotificationsServiceException} *

Base exception class for all service exceptions from CodestarNotifications service.

* + * * @public */ export class UpdateNotificationRuleCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AddCustomAttributesCommand.ts b/clients/client-cognito-identity-provider/src/commands/AddCustomAttributesCommand.ts index 8b9248a633534..545092d144e2c 100644 --- a/clients/client-cognito-identity-provider/src/commands/AddCustomAttributesCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AddCustomAttributesCommand.ts @@ -118,6 +118,7 @@ export interface AddCustomAttributesCommandOutput extends AddCustomAttributesRes * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AddCustomAttributesCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminAddUserToGroupCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminAddUserToGroupCommand.ts index 6b2ee5ad011c8..06263841c1cfc 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminAddUserToGroupCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminAddUserToGroupCommand.ts @@ -102,6 +102,7 @@ export interface AdminAddUserToGroupCommandOutput extends __MetadataBearer {} * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminAddUserToGroupCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminConfirmSignUpCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminConfirmSignUpCommand.ts index 6ecd92f67605a..0c6ed90ab0c8d 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminConfirmSignUpCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminConfirmSignUpCommand.ts @@ -131,6 +131,7 @@ export interface AdminConfirmSignUpCommandOutput extends AdminConfirmSignUpRespo * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminConfirmSignUpCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminCreateUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminCreateUserCommand.ts index ede29f1787329..a3a49b768809c 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminCreateUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminCreateUserCommand.ts @@ -214,67 +214,67 @@ export interface AdminCreateUserCommandOutput extends AdminCreateUserResponse, _ * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* - * @public + * * @example An AdminCreateUser request for for a test user named John. * ```javascript * // This request submits a value for all possible parameters for AdminCreateUser. * const input = { - * "DesiredDeliveryMediums": [ + * DesiredDeliveryMediums: [ * "SMS" * ], - * "MessageAction": "SUPPRESS", - * "TemporaryPassword": "This-is-my-test-99!", - * "UserAttributes": [ + * MessageAction: "SUPPRESS", + * TemporaryPassword: "This-is-my-test-99!", + * UserAttributes: [ * { - * "Name": "name", - * "Value": "John" + * Name: "name", + * Value: "John" * }, * { - * "Name": "phone_number", - * "Value": "+12065551212" + * Name: "phone_number", + * Value: "+12065551212" * }, * { - * "Name": "email", - * "Value": "testuser@example.com" + * Name: "email", + * Value: "testuser@example.com" * } * ], - * "UserPoolId": "us-east-1_EXAMPLE", - * "Username": "testuser" + * UserPoolId: "us-east-1_EXAMPLE", + * Username: "testuser" * }; * const command = new AdminCreateUserCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "User": { - * "Attributes": [ + * User: { + * Attributes: [ * { - * "Name": "sub", - * "Value": "d16b4aa8-8633-4abd-93b3-5062a8e1b5f8" + * Name: "sub", + * Value: "d16b4aa8-8633-4abd-93b3-5062a8e1b5f8" * }, * { - * "Name": "name", - * "Value": "John" + * Name: "name", + * Value: "John" * }, * { - * "Name": "phone_number", - * "Value": "+12065551212" + * Name: "phone_number", + * Value: "+12065551212" * }, * { - * "Name": "email", - * "Value": "testuser@example.com" + * Name: "email", + * Value: "testuser@example.com" * } * ], - * "Enabled": true, - * "UserCreateDate": 1689980857.949, - * "UserLastModifiedDate": 1689980857.949, - * "UserStatus": "FORCE_CHANGE_PASSWORD", - * "Username": "testuser" + * Enabled: true, + * UserCreateDate: 1.689980857949E9, + * UserLastModifiedDate: 1.689980857949E9, + * UserStatus: "FORCE_CHANGE_PASSWORD", + * Username: "testuser" * } * } * *\/ - * // example id: an-admincreateuser-request-for-for-a-test-user-named-john-1689980900481 * ``` * + * @public */ export class AdminCreateUserCommand extends $Command .classBuilder< diff --git a/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserAttributesCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserAttributesCommand.ts index a8ecafc05507e..67a0b5f796385 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserAttributesCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserAttributesCommand.ts @@ -108,6 +108,7 @@ export interface AdminDeleteUserAttributesCommandOutput extends AdminDeleteUserA * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminDeleteUserAttributesCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserCommand.ts index 148b76d33f854..71bddf46a209b 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserCommand.ts @@ -99,6 +99,7 @@ export interface AdminDeleteUserCommandOutput extends __MetadataBearer {} * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminDeleteUserCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminDisableProviderForUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminDisableProviderForUserCommand.ts index 35580569d13f4..3680835872f0c 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminDisableProviderForUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminDisableProviderForUserCommand.ts @@ -134,6 +134,7 @@ export interface AdminDisableProviderForUserCommandOutput * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminDisableProviderForUserCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminDisableUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminDisableUserCommand.ts index 8e01ca14ef7d1..4cbf5ac60003e 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminDisableUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminDisableUserCommand.ts @@ -105,6 +105,7 @@ export interface AdminDisableUserCommandOutput extends AdminDisableUserResponse, * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminDisableUserCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminEnableUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminEnableUserCommand.ts index 371e4b69ad726..cea1aeb2fdcfd 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminEnableUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminEnableUserCommand.ts @@ -104,6 +104,7 @@ export interface AdminEnableUserCommandOutput extends AdminEnableUserResponse, _ * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminEnableUserCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminForgetDeviceCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminForgetDeviceCommand.ts index 4ff770d63d221..5e343872859dc 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminForgetDeviceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminForgetDeviceCommand.ts @@ -105,6 +105,7 @@ export interface AdminForgetDeviceCommandOutput extends __MetadataBearer {} * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminForgetDeviceCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminGetDeviceCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminGetDeviceCommand.ts index f4e3f42c52db0..42ebf122f76ee 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminGetDeviceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminGetDeviceCommand.ts @@ -119,6 +119,7 @@ export interface AdminGetDeviceCommandOutput extends AdminGetDeviceResponse, __M * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminGetDeviceCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminGetUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminGetUserCommand.ts index 9a61a0b2fd1eb..61903fd6b5df0 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminGetUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminGetUserCommand.ts @@ -129,6 +129,7 @@ export interface AdminGetUserCommandOutput extends AdminGetUserResponse, __Metad * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminGetUserCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminInitiateAuthCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminInitiateAuthCommand.ts index fa51b18b9518c..d3d61c1645d72 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminInitiateAuthCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminInitiateAuthCommand.ts @@ -206,6 +206,7 @@ export interface AdminInitiateAuthCommandOutput extends AdminInitiateAuthRespons * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminInitiateAuthCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminLinkProviderForUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminLinkProviderForUserCommand.ts index 7b950ed9fccae..46e2ea5bbb23c 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminLinkProviderForUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminLinkProviderForUserCommand.ts @@ -134,6 +134,7 @@ export interface AdminLinkProviderForUserCommandOutput extends AdminLinkProvider * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminLinkProviderForUserCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminListDevicesCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminListDevicesCommand.ts index 987588e36ea3a..4b091c1f7491d 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminListDevicesCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminListDevicesCommand.ts @@ -125,6 +125,7 @@ export interface AdminListDevicesCommandOutput extends AdminListDevicesResponse, * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminListDevicesCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminListGroupsForUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminListGroupsForUserCommand.ts index a4e9d8556ae14..db66556d3191d 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminListGroupsForUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminListGroupsForUserCommand.ts @@ -120,6 +120,7 @@ export interface AdminListGroupsForUserCommandOutput extends AdminListGroupsForU * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminListGroupsForUserCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminListUserAuthEventsCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminListUserAuthEventsCommand.ts index 30f64f1e6c95b..96a9c6c366145 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminListUserAuthEventsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminListUserAuthEventsCommand.ts @@ -142,6 +142,7 @@ export interface AdminListUserAuthEventsCommandOutput extends AdminListUserAuthE * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminListUserAuthEventsCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminRemoveUserFromGroupCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminRemoveUserFromGroupCommand.ts index ae0c316463c6f..46453a76bcec8 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminRemoveUserFromGroupCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminRemoveUserFromGroupCommand.ts @@ -102,6 +102,7 @@ export interface AdminRemoveUserFromGroupCommandOutput extends __MetadataBearer * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminRemoveUserFromGroupCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminResetUserPasswordCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminResetUserPasswordCommand.ts index f525bd5048d8e..ec23d59011173 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminResetUserPasswordCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminResetUserPasswordCommand.ts @@ -155,6 +155,7 @@ export interface AdminResetUserPasswordCommandOutput extends AdminResetUserPassw * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminResetUserPasswordCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminRespondToAuthChallengeCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminRespondToAuthChallengeCommand.ts index cbb68792c6cff..9d4f2162aaf14 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminRespondToAuthChallengeCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminRespondToAuthChallengeCommand.ts @@ -232,6 +232,7 @@ export interface AdminRespondToAuthChallengeCommandOutput * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminRespondToAuthChallengeCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminSetUserMFAPreferenceCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminSetUserMFAPreferenceCommand.ts index 3f8eabf180c0c..bdc7f2f9fa412 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminSetUserMFAPreferenceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminSetUserMFAPreferenceCommand.ts @@ -121,6 +121,7 @@ export interface AdminSetUserMFAPreferenceCommandOutput extends AdminSetUserMFAP * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminSetUserMFAPreferenceCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminSetUserPasswordCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminSetUserPasswordCommand.ts index 1aba6159e58dd..4fbfcd957d8d2 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminSetUserPasswordCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminSetUserPasswordCommand.ts @@ -137,6 +137,7 @@ export interface AdminSetUserPasswordCommandOutput extends AdminSetUserPasswordR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminSetUserPasswordCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminSetUserSettingsCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminSetUserSettingsCommand.ts index e2c259cac2916..ccb11b9b88983 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminSetUserSettingsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminSetUserSettingsCommand.ts @@ -108,6 +108,7 @@ export interface AdminSetUserSettingsCommandOutput extends AdminSetUserSettingsR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminSetUserSettingsCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminUpdateAuthEventFeedbackCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminUpdateAuthEventFeedbackCommand.ts index 032bef635200e..1bc172c7b7a37 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminUpdateAuthEventFeedbackCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminUpdateAuthEventFeedbackCommand.ts @@ -122,6 +122,7 @@ export interface AdminUpdateAuthEventFeedbackCommandOutput * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminUpdateAuthEventFeedbackCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminUpdateDeviceStatusCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminUpdateDeviceStatusCommand.ts index ec83005b60a0c..b04ef2b2c389e 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminUpdateDeviceStatusCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminUpdateDeviceStatusCommand.ts @@ -113,6 +113,7 @@ export interface AdminUpdateDeviceStatusCommandOutput extends AdminUpdateDeviceS * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminUpdateDeviceStatusCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminUpdateUserAttributesCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminUpdateUserAttributesCommand.ts index d54d75685f8ac..c143bcbe19f5d 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminUpdateUserAttributesCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminUpdateUserAttributesCommand.ts @@ -168,6 +168,7 @@ export interface AdminUpdateUserAttributesCommandOutput extends AdminUpdateUserA * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminUpdateUserAttributesCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AdminUserGlobalSignOutCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminUserGlobalSignOutCommand.ts index 7a48dac0cd5f5..3a74e75a9b98b 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminUserGlobalSignOutCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminUserGlobalSignOutCommand.ts @@ -129,6 +129,7 @@ export interface AdminUserGlobalSignOutCommandOutput extends AdminUserGlobalSign * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AdminUserGlobalSignOutCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/AssociateSoftwareTokenCommand.ts b/clients/client-cognito-identity-provider/src/commands/AssociateSoftwareTokenCommand.ts index 5bfccfa136ab2..2500418e8b3e1 100644 --- a/clients/client-cognito-identity-provider/src/commands/AssociateSoftwareTokenCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AssociateSoftwareTokenCommand.ts @@ -103,6 +103,7 @@ export interface AssociateSoftwareTokenCommandOutput extends AssociateSoftwareTo * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class AssociateSoftwareTokenCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ChangePasswordCommand.ts b/clients/client-cognito-identity-provider/src/commands/ChangePasswordCommand.ts index 297c9645a3e99..26e4bb8ed3124 100644 --- a/clients/client-cognito-identity-provider/src/commands/ChangePasswordCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ChangePasswordCommand.ts @@ -112,6 +112,7 @@ export interface ChangePasswordCommandOutput extends ChangePasswordResponse, __M * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ChangePasswordCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/CompleteWebAuthnRegistrationCommand.ts b/clients/client-cognito-identity-provider/src/commands/CompleteWebAuthnRegistrationCommand.ts index 3c22163227ba9..7689ae9a5a825 100644 --- a/clients/client-cognito-identity-provider/src/commands/CompleteWebAuthnRegistrationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CompleteWebAuthnRegistrationCommand.ts @@ -115,6 +115,7 @@ export interface CompleteWebAuthnRegistrationCommandOutput * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class CompleteWebAuthnRegistrationCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ConfirmDeviceCommand.ts b/clients/client-cognito-identity-provider/src/commands/ConfirmDeviceCommand.ts index 319268f5d1c85..717f804a97843 100644 --- a/clients/client-cognito-identity-provider/src/commands/ConfirmDeviceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ConfirmDeviceCommand.ts @@ -127,6 +127,7 @@ export interface ConfirmDeviceCommandOutput extends ConfirmDeviceResponse, __Met * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ConfirmDeviceCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ConfirmForgotPasswordCommand.ts b/clients/client-cognito-identity-provider/src/commands/ConfirmForgotPasswordCommand.ts index dd52a3900512e..57fcd0bb4bc60 100644 --- a/clients/client-cognito-identity-provider/src/commands/ConfirmForgotPasswordCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ConfirmForgotPasswordCommand.ts @@ -143,6 +143,7 @@ export interface ConfirmForgotPasswordCommandOutput extends ConfirmForgotPasswor * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ConfirmForgotPasswordCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ConfirmSignUpCommand.ts b/clients/client-cognito-identity-provider/src/commands/ConfirmSignUpCommand.ts index a688842e25f61..5ed79970b3b2e 100644 --- a/clients/client-cognito-identity-provider/src/commands/ConfirmSignUpCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ConfirmSignUpCommand.ts @@ -151,6 +151,7 @@ export interface ConfirmSignUpCommandOutput extends ConfirmSignUpResponse, __Met * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ConfirmSignUpCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/CreateGroupCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateGroupCommand.ts index 61ac2ab2e5ec5..68ebd92a8655f 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateGroupCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateGroupCommand.ts @@ -118,6 +118,7 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class CreateGroupCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/CreateIdentityProviderCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateIdentityProviderCommand.ts index 9dc22d9e2c23b..f75e177d12c09 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateIdentityProviderCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateIdentityProviderCommand.ts @@ -133,6 +133,7 @@ export interface CreateIdentityProviderCommandOutput extends CreateIdentityProvi * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class CreateIdentityProviderCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/CreateManagedLoginBrandingCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateManagedLoginBrandingCommand.ts index 7e215afd19091..2e00b9f9e9f70 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateManagedLoginBrandingCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateManagedLoginBrandingCommand.ts @@ -154,6 +154,7 @@ export interface CreateManagedLoginBrandingCommandOutput extends CreateManagedLo * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class CreateManagedLoginBrandingCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/CreateResourceServerCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateResourceServerCommand.ts index a1bf19f8028d2..f9eae413edddc 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateResourceServerCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateResourceServerCommand.ts @@ -121,6 +121,7 @@ export interface CreateResourceServerCommandOutput extends CreateResourceServerR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class CreateResourceServerCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/CreateUserImportJobCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateUserImportJobCommand.ts index 34bb1d3fcf65f..3b3f945db5ece 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateUserImportJobCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateUserImportJobCommand.ts @@ -121,6 +121,7 @@ export interface CreateUserImportJobCommandOutput extends CreateUserImportJobRes * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class CreateUserImportJobCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/CreateUserPoolClientCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateUserPoolClientCommand.ts index 113328d3d44de..1755432a09db6 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateUserPoolClientCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateUserPoolClientCommand.ts @@ -217,135 +217,135 @@ export interface CreateUserPoolClientCommandOutput extends CreateUserPoolClientR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* - * @public + * * @example Example user pool app client with email and username sign-in * ```javascript * // The following example creates an app client with all configurable properties set to an example value. The resulting user pool client connects to an analytics client, allows sign-in with username and password, and has two external identity providers associated with it. * const input = { - * "AccessTokenValidity": 6, - * "AllowedOAuthFlows": [ + * AccessTokenValidity: 6, + * AllowedOAuthFlows: [ * "code" * ], - * "AllowedOAuthFlowsUserPoolClient": true, - * "AllowedOAuthScopes": [ + * AllowedOAuthFlowsUserPoolClient: true, + * AllowedOAuthScopes: [ * "aws.cognito.signin.user.admin", * "openid" * ], - * "AnalyticsConfiguration": { - * "ApplicationId": "d70b2ba36a8c4dc5a04a0451a31a1e12", - * "ExternalId": "my-external-id", - * "RoleArn": "arn:aws:iam::123456789012:role/test-cognitouserpool-role", - * "UserDataShared": true + * AnalyticsConfiguration: { + * ApplicationId: "d70b2ba36a8c4dc5a04a0451a31a1e12", + * ExternalId: "my-external-id", + * RoleArn: "arn:aws:iam::123456789012:role/test-cognitouserpool-role", + * UserDataShared: true * }, - * "CallbackURLs": [ + * CallbackURLs: [ * "https://example.com", * "http://localhost", * "myapp://example" * ], - * "ClientName": "my-test-app-client", - * "DefaultRedirectURI": "https://example.com", - * "ExplicitAuthFlows": [ + * ClientName: "my-test-app-client", + * DefaultRedirectURI: "https://example.com", + * ExplicitAuthFlows: [ * "ALLOW_ADMIN_USER_PASSWORD_AUTH", * "ALLOW_USER_PASSWORD_AUTH", * "ALLOW_REFRESH_TOKEN_AUTH" * ], - * "GenerateSecret": true, - * "IdTokenValidity": 6, - * "LogoutURLs": [ + * GenerateSecret: true, + * IdTokenValidity: 6, + * LogoutURLs: [ * "https://example.com/logout" * ], - * "PreventUserExistenceErrors": "ENABLED", - * "ReadAttributes": [ + * PreventUserExistenceErrors: "ENABLED", + * ReadAttributes: [ * "email", * "address", * "preferred_username" * ], - * "RefreshTokenValidity": 6, - * "SupportedIdentityProviders": [ + * RefreshTokenValidity: 6, + * SupportedIdentityProviders: [ * "SignInWithApple", * "MySSO" * ], - * "TokenValidityUnits": { - * "AccessToken": "hours", - * "IdToken": "minutes", - * "RefreshToken": "days" + * TokenValidityUnits: { + * AccessToken: "hours", + * IdToken: "minutes", + * RefreshToken: "days" * }, - * "UserPoolId": "us-east-1_EXAMPLE", - * "WriteAttributes": [ + * UserPoolId: "us-east-1_EXAMPLE", + * WriteAttributes: [ * "family_name", * "email" * ] * }; * const command = new CreateUserPoolClientCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "UserPoolClient": { - * "AccessTokenValidity": 6, - * "AllowedOAuthFlows": [ + * UserPoolClient: { + * AccessTokenValidity: 6, + * AllowedOAuthFlows: [ * "code" * ], - * "AllowedOAuthFlowsUserPoolClient": true, - * "AllowedOAuthScopes": [ + * AllowedOAuthFlowsUserPoolClient: true, + * AllowedOAuthScopes: [ * "aws.cognito.signin.user.admin", * "openid" * ], - * "AnalyticsConfiguration": { - * "ApplicationId": "d70b2ba36a8c4dc5a04a0451a31a1e12", - * "ExternalId": "my-external-id", - * "RoleArn": "arn:aws:iam::123456789012:role/test-cognitouserpool-role", - * "UserDataShared": true + * AnalyticsConfiguration: { + * ApplicationId: "d70b2ba36a8c4dc5a04a0451a31a1e12", + * ExternalId: "my-external-id", + * RoleArn: "arn:aws:iam::123456789012:role/test-cognitouserpool-role", + * UserDataShared: true * }, - * "AuthSessionValidity": 3, - * "CallbackURLs": [ + * AuthSessionValidity: 3, + * CallbackURLs: [ * "https://example.com", * "http://localhost", * "myapp://example" * ], - * "ClientId": "26cb2c60kq7nbmas7rbme9b6pp", - * "ClientName": "my-test-app-client", - * "ClientSecret": "13ka4h7u28d9oo44tqpq9djqsfvhvu8rk4d2ighvpu0k8fj1c2r9", - * "CreationDate": 1689885426.107, - * "DefaultRedirectURI": "https://example.com", - * "EnablePropagateAdditionalUserContextData": false, - * "EnableTokenRevocation": true, - * "ExplicitAuthFlows": [ + * ClientId: "26cb2c60kq7nbmas7rbme9b6pp", + * ClientName: "my-test-app-client", + * ClientSecret: "13ka4h7u28d9oo44tqpq9djqsfvhvu8rk4d2ighvpu0k8fj1c2r9", + * CreationDate: 1.689885426107E9, + * DefaultRedirectURI: "https://example.com", + * EnablePropagateAdditionalUserContextData: false, + * EnableTokenRevocation: true, + * ExplicitAuthFlows: [ * "ALLOW_USER_PASSWORD_AUTH", * "ALLOW_ADMIN_USER_PASSWORD_AUTH", * "ALLOW_REFRESH_TOKEN_AUTH" * ], - * "IdTokenValidity": 6, - * "LastModifiedDate": 1689885426.107, - * "LogoutURLs": [ + * IdTokenValidity: 6, + * LastModifiedDate: 1.689885426107E9, + * LogoutURLs: [ * "https://example.com/logout" * ], - * "PreventUserExistenceErrors": "ENABLED", - * "ReadAttributes": [ + * PreventUserExistenceErrors: "ENABLED", + * ReadAttributes: [ * "address", * "preferred_username", * "email" * ], - * "RefreshTokenValidity": 6, - * "SupportedIdentityProviders": [ + * RefreshTokenValidity: 6, + * SupportedIdentityProviders: [ * "SignInWithApple", * "MySSO" * ], - * "TokenValidityUnits": { - * "AccessToken": "hours", - * "IdToken": "minutes", - * "RefreshToken": "days" + * TokenValidityUnits: { + * AccessToken: "hours", + * IdToken: "minutes", + * RefreshToken: "days" * }, - * "UserPoolId": "us-east-1_EXAMPLE", - * "WriteAttributes": [ + * UserPoolId: "us-east-1_EXAMPLE", + * WriteAttributes: [ * "family_name", * "email" * ] * } * } * *\/ - * // example id: example-user-pool-app-client-with-email-and-username-sign-in-1689885750745 * ``` * + * @public */ export class CreateUserPoolClientCommand extends $Command .classBuilder< diff --git a/clients/client-cognito-identity-provider/src/commands/CreateUserPoolCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateUserPoolCommand.ts index de0f8869c226a..b2fb2971fad73 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateUserPoolCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateUserPoolCommand.ts @@ -419,463 +419,463 @@ export interface CreateUserPoolCommandOutput extends CreateUserPoolResponse, __M * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* - * @public + * * @example Example user pool with email and username sign-in * ```javascript * // The following example creates a user pool with all configurable properties set to an example value. The resulting user pool allows sign-in with username or email address, has optional MFA, and has a Lambda function assigned to each possible trigger. * const input = { - * "AccountRecoverySetting": { - * "RecoveryMechanisms": [ + * AccountRecoverySetting: { + * RecoveryMechanisms: [ * { - * "Name": "verified_email", - * "Priority": 1 + * Name: "verified_email", + * Priority: 1 * } * ] * }, - * "AdminCreateUserConfig": { - * "AllowAdminCreateUserOnly": false, - * "InviteMessageTemplate": { - * "EmailMessage": "Your username is {username} and temporary password is {####}.", - * "EmailSubject": "Your sign-in information", - * "SMSMessage": "Your username is {username} and temporary password is {####}." + * AdminCreateUserConfig: { + * AllowAdminCreateUserOnly: false, + * InviteMessageTemplate: { + * EmailMessage: "Your username is {username} and temporary password is {####}.", + * EmailSubject: "Your sign-in information", + * SMSMessage: "Your username is {username} and temporary password is {####}." * } * }, - * "AliasAttributes": [ + * AliasAttributes: [ * "email" * ], - * "AutoVerifiedAttributes": [ + * AutoVerifiedAttributes: [ * "email" * ], - * "DeletionProtection": "ACTIVE", - * "DeviceConfiguration": { - * "ChallengeRequiredOnNewDevice": true, - * "DeviceOnlyRememberedOnUserPrompt": true + * DeletionProtection: "ACTIVE", + * DeviceConfiguration: { + * ChallengeRequiredOnNewDevice: true, + * DeviceOnlyRememberedOnUserPrompt: true * }, - * "EmailConfiguration": { - * "ConfigurationSet": "my-test-ses-configuration-set", - * "EmailSendingAccount": "DEVELOPER", - * "From": "support@example.com", - * "ReplyToEmailAddress": "support@example.com", - * "SourceArn": "arn:aws:ses:us-east-1:123456789012:identity/support@example.com" + * EmailConfiguration: { + * ConfigurationSet: "my-test-ses-configuration-set", + * EmailSendingAccount: "DEVELOPER", + * From: "support@example.com", + * ReplyToEmailAddress: "support@example.com", + * SourceArn: "arn:aws:ses:us-east-1:123456789012:identity/support@example.com" * }, - * "EmailVerificationMessage": "Your verification code is {####}.", - * "EmailVerificationSubject": "Verify your email address", - * "LambdaConfig": { - * "CustomEmailSender": { - * "LambdaArn": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "LambdaVersion": "V1_0" + * EmailVerificationMessage: "Your verification code is {####}.", + * EmailVerificationSubject: "Verify your email address", + * LambdaConfig: { + * CustomEmailSender: { + * LambdaArn: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * LambdaVersion: "V1_0" * }, - * "CustomMessage": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "CustomSMSSender": { - * "LambdaArn": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "LambdaVersion": "V1_0" + * CustomMessage: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * CustomSMSSender: { + * LambdaArn: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * LambdaVersion: "V1_0" * }, - * "DefineAuthChallenge": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "KMSKeyID": "arn:aws:kms:us-east-1:123456789012:key/a6c4f8e2-0c45-47db-925f-87854bc9e357", - * "PostAuthentication": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "PostConfirmation": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "PreAuthentication": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "PreSignUp": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "PreTokenGeneration": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "UserMigration": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "VerifyAuthChallengeResponse": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction" + * DefineAuthChallenge: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * KMSKeyID: "arn:aws:kms:us-east-1:123456789012:key/a6c4f8e2-0c45-47db-925f-87854bc9e357", + * PostAuthentication: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * PostConfirmation: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * PreAuthentication: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * PreSignUp: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * PreTokenGeneration: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * UserMigration: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * VerifyAuthChallengeResponse: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction" * }, - * "MfaConfiguration": "OPTIONAL", - * "Policies": { - * "PasswordPolicy": { - * "MinimumLength": 6, - * "RequireLowercase": true, - * "RequireNumbers": true, - * "RequireSymbols": true, - * "RequireUppercase": true, - * "TemporaryPasswordValidityDays": 7 + * MfaConfiguration: "OPTIONAL", + * Policies: { + * PasswordPolicy: { + * MinimumLength: 6, + * RequireLowercase: true, + * RequireNumbers: true, + * RequireSymbols: true, + * RequireUppercase: true, + * TemporaryPasswordValidityDays: 7 * } * }, - * "PoolName": "my-test-user-pool", - * "Schema": [ + * PoolName: "my-test-user-pool", + * Schema: [ * { - * "AttributeDataType": "Number", - * "DeveloperOnlyAttribute": true, - * "Mutable": true, - * "Name": "mydev", - * "NumberAttributeConstraints": { - * "MaxValue": "99", - * "MinValue": "1" + * AttributeDataType: "Number", + * DeveloperOnlyAttribute: true, + * Mutable: true, + * Name: "mydev", + * NumberAttributeConstraints: { + * MaxValue: "99", + * MinValue: "1" * }, - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "99", - * "MinLength": "1" + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "99", + * MinLength: "1" * } * } * ], - * "SmsAuthenticationMessage": "Your verification code is {####}.", - * "SmsConfiguration": { - * "ExternalId": "my-role-external-id", - * "SnsCallerArn": "arn:aws:iam::123456789012:role/service-role/test-cognito-SMS-Role" + * SmsAuthenticationMessage: "Your verification code is {####}.", + * SmsConfiguration: { + * ExternalId: "my-role-external-id", + * SnsCallerArn: "arn:aws:iam::123456789012:role/service-role/test-cognito-SMS-Role" * }, - * "SmsVerificationMessage": "Your verification code is {####}.", - * "UserAttributeUpdateSettings": { - * "AttributesRequireVerificationBeforeUpdate": [ + * SmsVerificationMessage: "Your verification code is {####}.", + * UserAttributeUpdateSettings: { + * AttributesRequireVerificationBeforeUpdate: [ * "email" * ] * }, - * "UserPoolAddOns": { - * "AdvancedSecurityMode": "OFF" + * UserPoolAddOns: { + * AdvancedSecurityMode: "OFF" * }, - * "UserPoolTags": { - * "my-test-tag-key": "my-test-tag-key" + * UserPoolTags: { + * my-test-tag-key: "my-test-tag-key" * }, - * "UsernameConfiguration": { - * "CaseSensitive": true + * UsernameConfiguration: { + * CaseSensitive: true * }, - * "VerificationMessageTemplate": { - * "DefaultEmailOption": "CONFIRM_WITH_CODE", - * "EmailMessage": "Your confirmation code is {####}", - * "EmailMessageByLink": "Choose this link to {##verify your email##}", - * "EmailSubject": "Here is your confirmation code", - * "EmailSubjectByLink": "Here is your confirmation link", - * "SmsMessage": "Your confirmation code is {####}" + * VerificationMessageTemplate: { + * DefaultEmailOption: "CONFIRM_WITH_CODE", + * EmailMessage: "Your confirmation code is {####}", + * EmailMessageByLink: "Choose this link to {##verify your email##}", + * EmailSubject: "Here is your confirmation code", + * EmailSubjectByLink: "Here is your confirmation link", + * SmsMessage: "Your confirmation code is {####}" * } * }; * const command = new CreateUserPoolCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "UserPool": { - * "AccountRecoverySetting": { - * "RecoveryMechanisms": [ + * UserPool: { + * AccountRecoverySetting: { + * RecoveryMechanisms: [ * { - * "Name": "verified_email", - * "Priority": 1 + * Name: "verified_email", + * Priority: 1 * } * ] * }, - * "AdminCreateUserConfig": { - * "AllowAdminCreateUserOnly": false, - * "InviteMessageTemplate": { - * "EmailMessage": "Your username is {username} and temporary password is {####}.", - * "EmailSubject": "Your sign-in information", - * "SMSMessage": "Your username is {username} and temporary password is {####}." + * AdminCreateUserConfig: { + * AllowAdminCreateUserOnly: false, + * InviteMessageTemplate: { + * EmailMessage: "Your username is {username} and temporary password is {####}.", + * EmailSubject: "Your sign-in information", + * SMSMessage: "Your username is {username} and temporary password is {####}." * }, - * "UnusedAccountValidityDays": 7 + * UnusedAccountValidityDays: 7 * }, - * "AliasAttributes": [ + * AliasAttributes: [ * "email" * ], - * "Arn": "arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_EXAMPLE", - * "AutoVerifiedAttributes": [ + * Arn: "arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_EXAMPLE", + * AutoVerifiedAttributes: [ * "email" * ], - * "CreationDate": 1689721665.239, - * "DeletionProtection": "ACTIVE", - * "DeviceConfiguration": { - * "ChallengeRequiredOnNewDevice": true, - * "DeviceOnlyRememberedOnUserPrompt": true + * CreationDate: 1.689721665239E9, + * DeletionProtection: "ACTIVE", + * DeviceConfiguration: { + * ChallengeRequiredOnNewDevice: true, + * DeviceOnlyRememberedOnUserPrompt: true * }, - * "EmailConfiguration": { - * "ConfigurationSet": "my-test-ses-configuration-set", - * "EmailSendingAccount": "DEVELOPER", - * "From": "support@example.com", - * "ReplyToEmailAddress": "support@example.com", - * "SourceArn": "arn:aws:ses:us-east-1:123456789012:identity/support@example.com" + * EmailConfiguration: { + * ConfigurationSet: "my-test-ses-configuration-set", + * EmailSendingAccount: "DEVELOPER", + * From: "support@example.com", + * ReplyToEmailAddress: "support@example.com", + * SourceArn: "arn:aws:ses:us-east-1:123456789012:identity/support@example.com" * }, - * "EmailVerificationMessage": "Your verification code is {####}.", - * "EmailVerificationSubject": "Verify your email address", - * "EstimatedNumberOfUsers": 0, - * "Id": "us-east-1_EXAMPLE", - * "LambdaConfig": { - * "CustomEmailSender": { - * "LambdaArn": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "LambdaVersion": "V1_0" + * EmailVerificationMessage: "Your verification code is {####}.", + * EmailVerificationSubject: "Verify your email address", + * EstimatedNumberOfUsers: 0, + * Id: "us-east-1_EXAMPLE", + * LambdaConfig: { + * CustomEmailSender: { + * LambdaArn: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * LambdaVersion: "V1_0" * }, - * "CustomMessage": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "CustomSMSSender": { - * "LambdaArn": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "LambdaVersion": "V1_0" + * CustomMessage: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * CustomSMSSender: { + * LambdaArn: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * LambdaVersion: "V1_0" * }, - * "DefineAuthChallenge": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "KMSKeyID": "arn:aws:kms:us-east-1:767671399759:key/4d43904c-8edf-4bb4-9fca-fb1a80e41cbe", - * "PostAuthentication": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "PostConfirmation": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "PreAuthentication": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "PreSignUp": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "PreTokenGeneration": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "UserMigration": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", - * "VerifyAuthChallengeResponse": "arn:aws:lambda:us-east-1:123456789012:function:MyFunction" + * DefineAuthChallenge: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * KMSKeyID: "arn:aws:kms:us-east-1:767671399759:key/4d43904c-8edf-4bb4-9fca-fb1a80e41cbe", + * PostAuthentication: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * PostConfirmation: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * PreAuthentication: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * PreSignUp: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * PreTokenGeneration: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * UserMigration: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction", + * VerifyAuthChallengeResponse: "arn:aws:lambda:us-east-1:123456789012:function:MyFunction" * }, - * "LastModifiedDate": 1689721665.239, - * "MfaConfiguration": "OPTIONAL", - * "Name": "my-test-user-pool", - * "Policies": { - * "PasswordPolicy": { - * "MinimumLength": 6, - * "RequireLowercase": true, - * "RequireNumbers": true, - * "RequireSymbols": true, - * "RequireUppercase": true, - * "TemporaryPasswordValidityDays": 7 + * LastModifiedDate: 1.689721665239E9, + * MfaConfiguration: "OPTIONAL", + * Name: "my-test-user-pool", + * Policies: { + * PasswordPolicy: { + * MinimumLength: 6, + * RequireLowercase: true, + * RequireNumbers: true, + * RequireSymbols: true, + * RequireUppercase: true, + * TemporaryPasswordValidityDays: 7 * } * }, - * "SchemaAttributes": [ + * SchemaAttributes: [ * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": false, - * "Name": "sub", - * "Required": true, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "1" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: false, + * Name: "sub", + * Required: true, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "1" * } * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "name", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "name", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "given_name", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "given_name", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "family_name", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "family_name", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "middle_name", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "middle_name", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "nickname", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "nickname", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "preferred_username", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "preferred_username", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "profile", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "profile", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "picture", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "picture", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "website", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "website", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "email", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "email", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "Boolean", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "email_verified", - * "Required": false + * AttributeDataType: "Boolean", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "email_verified", + * Required: false * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "gender", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "gender", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "birthdate", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "10", - * "MinLength": "10" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "birthdate", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "10", + * MinLength: "10" * } * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "zoneinfo", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "zoneinfo", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "locale", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "locale", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "phone_number", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "phone_number", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "Boolean", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "phone_number_verifie", - * "Required": false + * AttributeDataType: "Boolean", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "phone_number_verifie", + * Required: false * }, * { - * "AttributeDataType": "String", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "address", - * "Required": false, - * "StringAttributeConstraints": { - * "MaxLength": "2048", - * "MinLength": "0" + * AttributeDataType: "String", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "address", + * Required: false, + * StringAttributeConstraints: { + * MaxLength: "2048", + * MinLength: "0" * } * }, * { - * "AttributeDataType": "Number", - * "DeveloperOnlyAttribute": false, - * "Mutable": true, - * "Name": "updated_at", - * "NumberAttributeConstraints": { - * "MinValue": "0" + * AttributeDataType: "Number", + * DeveloperOnlyAttribute: false, + * Mutable: true, + * Name: "updated_at", + * NumberAttributeConstraints: { + * MinValue: "0" * }, - * "Required": false + * Required: false * }, * { - * "AttributeDataType": "Number", - * "DeveloperOnlyAttribute": true, - * "Mutable": true, - * "Name": "dev:custom:mydev", - * "NumberAttributeConstraints": { - * "MaxValue": "99", - * "MinValue": "1" + * AttributeDataType: "Number", + * DeveloperOnlyAttribute: true, + * Mutable: true, + * Name: "dev:custom:mydev", + * NumberAttributeConstraints: { + * MaxValue: "99", + * MinValue: "1" * }, - * "Required": false + * Required: false * } * ], - * "SmsAuthenticationMessage": "Your verification code is {####}.", - * "SmsConfiguration": { - * "ExternalId": "my-role-external-id", - * "SnsCallerArn": "arn:aws:iam::123456789012:role/service-role/test-cognito-SMS-Role", - * "SnsRegion": "us-east-1" + * SmsAuthenticationMessage: "Your verification code is {####}.", + * SmsConfiguration: { + * ExternalId: "my-role-external-id", + * SnsCallerArn: "arn:aws:iam::123456789012:role/service-role/test-cognito-SMS-Role", + * SnsRegion: "us-east-1" * }, - * "SmsVerificationMessage": "Your verification code is {####}.", - * "UserAttributeUpdateSettings": { - * "AttributesRequireVerificationBeforeUpdate": [ + * SmsVerificationMessage: "Your verification code is {####}.", + * UserAttributeUpdateSettings: { + * AttributesRequireVerificationBeforeUpdate: [ * "email" * ] * }, - * "UserPoolAddOns": { - * "AdvancedSecurityMode": "OFF" + * UserPoolAddOns: { + * AdvancedSecurityMode: "OFF" * }, - * "UserPoolTags": { - * "my-test-tag-key": "my-test-tag-value" + * UserPoolTags: { + * my-test-tag-key: "my-test-tag-value" * }, - * "UsernameConfiguration": { - * "CaseSensitive": true + * UsernameConfiguration: { + * CaseSensitive: true * }, - * "VerificationMessageTemplate": { - * "DefaultEmailOption": "CONFIRM_WITH_CODE", - * "EmailMessage": "Your confirmation code is {####}", - * "EmailMessageByLink": "Choose this link to {##verify your email##}", - * "EmailSubject": "Here is your confirmation code", - * "EmailSubjectByLink": "Here is your confirmation link", - * "SmsMessage": "Your confirmation code is {####}" + * VerificationMessageTemplate: { + * DefaultEmailOption: "CONFIRM_WITH_CODE", + * EmailMessage: "Your confirmation code is {####}", + * EmailMessageByLink: "Choose this link to {##verify your email##}", + * EmailSubject: "Here is your confirmation code", + * EmailSubjectByLink: "Here is your confirmation link", + * SmsMessage: "Your confirmation code is {####}" * } * } * } * *\/ - * // example id: example-user-pool-with-email-and-username-sign-in-1689722835145 * ``` * + * @public */ export class CreateUserPoolCommand extends $Command .classBuilder< diff --git a/clients/client-cognito-identity-provider/src/commands/CreateUserPoolDomainCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateUserPoolDomainCommand.ts index 6f31a6dcbdc79..276cb82aa8f42 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateUserPoolDomainCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateUserPoolDomainCommand.ts @@ -116,6 +116,7 @@ export interface CreateUserPoolDomainCommandOutput extends CreateUserPoolDomainR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class CreateUserPoolDomainCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteGroupCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteGroupCommand.ts index 14015ebbc5bb6..34f341f950dce 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteGroupCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteGroupCommand.ts @@ -100,6 +100,7 @@ export interface DeleteGroupCommandOutput extends __MetadataBearer {} * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DeleteGroupCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteIdentityProviderCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteIdentityProviderCommand.ts index 5ecb51865a589..d95b1bfd8d16d 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteIdentityProviderCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteIdentityProviderCommand.ts @@ -105,6 +105,7 @@ export interface DeleteIdentityProviderCommandOutput extends __MetadataBearer {} * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DeleteIdentityProviderCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteManagedLoginBrandingCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteManagedLoginBrandingCommand.ts index fe9d9c4d48567..744cb39736ee4 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteManagedLoginBrandingCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteManagedLoginBrandingCommand.ts @@ -103,6 +103,7 @@ export interface DeleteManagedLoginBrandingCommandOutput extends __MetadataBeare * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DeleteManagedLoginBrandingCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteResourceServerCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteResourceServerCommand.ts index 2605295735bfc..0220a460c9ea8 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteResourceServerCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteResourceServerCommand.ts @@ -99,6 +99,7 @@ export interface DeleteResourceServerCommandOutput extends __MetadataBearer {} * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DeleteResourceServerCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteUserAttributesCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteUserAttributesCommand.ts index 33d4c1053af71..d2ecb11d03316 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteUserAttributesCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteUserAttributesCommand.ts @@ -104,6 +104,7 @@ export interface DeleteUserAttributesCommandOutput extends DeleteUserAttributesR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DeleteUserAttributesCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteUserCommand.ts index c704dc53ce931..d71966fb1d942 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteUserCommand.ts @@ -96,6 +96,7 @@ export interface DeleteUserCommandOutput extends __MetadataBearer {} * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DeleteUserCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolClientCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolClientCommand.ts index 6dbe0213790f3..4bc63c0dd7acd 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolClientCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolClientCommand.ts @@ -81,6 +81,7 @@ export interface DeleteUserPoolClientCommandOutput extends __MetadataBearer {} * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DeleteUserPoolClientCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolCommand.ts index 01b19de9c2871..de3eedbc9b40f 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolCommand.ts @@ -87,6 +87,7 @@ export interface DeleteUserPoolCommandOutput extends __MetadataBearer {} * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DeleteUserPoolCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolDomainCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolDomainCommand.ts index 189e03512ade9..89b6d9f957256 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolDomainCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolDomainCommand.ts @@ -74,6 +74,7 @@ export interface DeleteUserPoolDomainCommandOutput extends DeleteUserPoolDomainR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DeleteUserPoolDomainCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteWebAuthnCredentialCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteWebAuthnCredentialCommand.ts index 17395d23b6b7b..c1ef32f80b19c 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteWebAuthnCredentialCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteWebAuthnCredentialCommand.ts @@ -88,6 +88,7 @@ export interface DeleteWebAuthnCredentialCommandOutput extends DeleteWebAuthnCre * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DeleteWebAuthnCredentialCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeIdentityProviderCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeIdentityProviderCommand.ts index b006afa093cfc..a65c6def64c36 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeIdentityProviderCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeIdentityProviderCommand.ts @@ -94,6 +94,7 @@ export interface DescribeIdentityProviderCommandOutput extends DescribeIdentityP * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DescribeIdentityProviderCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingByClientCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingByClientCommand.ts index 2d959dc58ba3f..d1875a108724d 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingByClientCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingByClientCommand.ts @@ -105,6 +105,7 @@ export interface DescribeManagedLoginBrandingByClientCommandOutput * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DescribeManagedLoginBrandingByClientCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingCommand.ts index b2850cd83ace0..4a794ac74ae7e 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingCommand.ts @@ -101,6 +101,7 @@ export interface DescribeManagedLoginBrandingCommandOutput * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DescribeManagedLoginBrandingCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeResourceServerCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeResourceServerCommand.ts index 1d9410140b99f..247e2998e1c33 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeResourceServerCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeResourceServerCommand.ts @@ -88,6 +88,7 @@ export interface DescribeResourceServerCommandOutput extends DescribeResourceSer * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DescribeResourceServerCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeRiskConfigurationCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeRiskConfigurationCommand.ts index 381180668dbeb..7b65eb6ec3c88 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeRiskConfigurationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeRiskConfigurationCommand.ts @@ -145,6 +145,7 @@ export interface DescribeRiskConfigurationCommandOutput extends DescribeRiskConf * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DescribeRiskConfigurationCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeUserImportJobCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeUserImportJobCommand.ts index 65d52aede98e0..94b76154c1272 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeUserImportJobCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeUserImportJobCommand.ts @@ -92,6 +92,7 @@ export interface DescribeUserImportJobCommandOutput extends DescribeUserImportJo * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DescribeUserImportJobCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolClientCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolClientCommand.ts index 3ba443ab20ac1..1207e908bbcc2 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolClientCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolClientCommand.ts @@ -157,6 +157,7 @@ export interface DescribeUserPoolClientCommandOutput extends DescribeUserPoolCli * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DescribeUserPoolClientCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolCommand.ts index 78b577aabc8c3..3907610992119 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolCommand.ts @@ -246,6 +246,7 @@ export interface DescribeUserPoolCommandOutput extends DescribeUserPoolResponse, * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DescribeUserPoolCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolDomainCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolDomainCommand.ts index 3ad94220555df..6a632f64dd8dc 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolDomainCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolDomainCommand.ts @@ -106,6 +106,7 @@ export interface DescribeUserPoolDomainCommandOutput extends DescribeUserPoolDom * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class DescribeUserPoolDomainCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ForgetDeviceCommand.ts b/clients/client-cognito-identity-provider/src/commands/ForgetDeviceCommand.ts index 2bee5a9c2f4cf..0ab9ce25c15b1 100644 --- a/clients/client-cognito-identity-provider/src/commands/ForgetDeviceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ForgetDeviceCommand.ts @@ -100,6 +100,7 @@ export interface ForgetDeviceCommandOutput extends __MetadataBearer {} * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ForgetDeviceCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ForgotPasswordCommand.ts b/clients/client-cognito-identity-provider/src/commands/ForgotPasswordCommand.ts index fb5091a34c314..d42bac998e923 100644 --- a/clients/client-cognito-identity-provider/src/commands/ForgotPasswordCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ForgotPasswordCommand.ts @@ -166,6 +166,7 @@ export interface ForgotPasswordCommandOutput extends ForgotPasswordResponse, __M * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ForgotPasswordCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/GetCSVHeaderCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetCSVHeaderCommand.ts index 8b5d1d4d00f0b..35523b1aa4453 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetCSVHeaderCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetCSVHeaderCommand.ts @@ -105,6 +105,7 @@ export interface GetCSVHeaderCommandOutput extends GetCSVHeaderResponse, __Metad * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class GetCSVHeaderCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/GetDeviceCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetDeviceCommand.ts index cccd5023fefa2..e337911f498f7 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetDeviceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetDeviceCommand.ts @@ -118,6 +118,7 @@ export interface GetDeviceCommandOutput extends GetDeviceResponse, __MetadataBea * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class GetDeviceCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/GetGroupCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetGroupCommand.ts index 9d90fc74218d8..2453b89fa6e7a 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetGroupCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetGroupCommand.ts @@ -108,6 +108,7 @@ export interface GetGroupCommandOutput extends GetGroupResponse, __MetadataBeare * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class GetGroupCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/GetIdentityProviderByIdentifierCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetIdentityProviderByIdentifierCommand.ts index 6c4fc6c064828..2e373e72d1e4d 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetIdentityProviderByIdentifierCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetIdentityProviderByIdentifierCommand.ts @@ -100,6 +100,7 @@ export interface GetIdentityProviderByIdentifierCommandOutput * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class GetIdentityProviderByIdentifierCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/GetLogDeliveryConfigurationCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetLogDeliveryConfigurationCommand.ts index f7c43a7221adb..a689c51c57ee9 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetLogDeliveryConfigurationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetLogDeliveryConfigurationCommand.ts @@ -117,6 +117,7 @@ export interface GetLogDeliveryConfigurationCommandOutput * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class GetLogDeliveryConfigurationCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/GetSigningCertificateCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetSigningCertificateCommand.ts index ed9520fdbe279..5dc8e05919b09 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetSigningCertificateCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetSigningCertificateCommand.ts @@ -95,6 +95,7 @@ export interface GetSigningCertificateCommandOutput extends GetSigningCertificat * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class GetSigningCertificateCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/GetUICustomizationCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetUICustomizationCommand.ts index e5be46224d538..a2ab6e2b9db4b 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetUICustomizationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetUICustomizationCommand.ts @@ -95,6 +95,7 @@ export interface GetUICustomizationCommandOutput extends GetUICustomizationRespo * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class GetUICustomizationCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/GetUserAttributeVerificationCodeCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetUserAttributeVerificationCodeCommand.ts index 9ec9073e5f362..47fc8b97f0090 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetUserAttributeVerificationCodeCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetUserAttributeVerificationCodeCommand.ts @@ -165,6 +165,7 @@ export interface GetUserAttributeVerificationCodeCommandOutput * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class GetUserAttributeVerificationCodeCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/GetUserAuthFactorsCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetUserAuthFactorsCommand.ts index c209059cbf474..c7acdf5f9f169 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetUserAuthFactorsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetUserAuthFactorsCommand.ts @@ -119,6 +119,7 @@ export interface GetUserAuthFactorsCommandOutput extends GetUserAuthFactorsRespo * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class GetUserAuthFactorsCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/GetUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetUserCommand.ts index cf725c934c57d..bd6d69cdd9417 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetUserCommand.ts @@ -118,6 +118,7 @@ export interface GetUserCommandOutput extends GetUserResponse, __MetadataBearer * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class GetUserCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/GetUserPoolMfaConfigCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetUserPoolMfaConfigCommand.ts index 45a47940af9e1..3bd1c992042c0 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetUserPoolMfaConfigCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetUserPoolMfaConfigCommand.ts @@ -135,6 +135,7 @@ export interface GetUserPoolMfaConfigCommandOutput extends GetUserPoolMfaConfigR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class GetUserPoolMfaConfigCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/GlobalSignOutCommand.ts b/clients/client-cognito-identity-provider/src/commands/GlobalSignOutCommand.ts index 1aa51300d07fc..5917d7501d4f4 100644 --- a/clients/client-cognito-identity-provider/src/commands/GlobalSignOutCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GlobalSignOutCommand.ts @@ -122,6 +122,7 @@ export interface GlobalSignOutCommandOutput extends GlobalSignOutResponse, __Met * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class GlobalSignOutCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/InitiateAuthCommand.ts b/clients/client-cognito-identity-provider/src/commands/InitiateAuthCommand.ts index e52b116d44a71..375959ebf2a60 100644 --- a/clients/client-cognito-identity-provider/src/commands/InitiateAuthCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/InitiateAuthCommand.ts @@ -183,44 +183,44 @@ export interface InitiateAuthCommandOutput extends InitiateAuthResponse, __Metad * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* - * @public + * * @example Example username and password sign-in for a user who has TOTP MFA * ```javascript * // The following example signs in the user mytestuser with analytics data, client metadata, and user context data for advanced security. * const input = { - * "AnalyticsMetadata": { - * "AnalyticsEndpointId": "d70b2ba36a8c4dc5a04a0451a31a1e12" + * AnalyticsMetadata: { + * AnalyticsEndpointId: "d70b2ba36a8c4dc5a04a0451a31a1e12" * }, - * "AuthFlow": "USER_PASSWORD_AUTH", - * "AuthParameters": { - * "PASSWORD": "This-is-my-test-99!", - * "SECRET_HASH": "oT5ZkS8ctnrhYeeGsGTvOzPhoc/Jd1cO5fueBWFVmp8=", - * "USERNAME": "mytestuser" + * AuthFlow: "USER_PASSWORD_AUTH", + * AuthParameters: { + * PASSWORD: "This-is-my-test-99!", + * SECRET_HASH: "oT5ZkS8ctnrhYeeGsGTvOzPhoc/Jd1cO5fueBWFVmp8=", + * USERNAME: "mytestuser" * }, - * "ClientId": "1example23456789", - * "ClientMetadata": { - * "MyTestKey": "MyTestValue" + * ClientId: "1example23456789", + * ClientMetadata: { + * MyTestKey: "MyTestValue" * }, - * "UserContextData": { - * "EncodedData": "AmazonCognitoAdvancedSecurityData_object", - * "IpAddress": "192.0.2.1" + * UserContextData: { + * EncodedData: "AmazonCognitoAdvancedSecurityData_object", + * IpAddress: "192.0.2.1" * } * }; * const command = new InitiateAuthCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChallengeName": "SOFTWARE_TOKEN_MFA", - * "ChallengeParameters": { - * "FRIENDLY_DEVICE_NAME": "mytestauthenticator", - * "USER_ID_FOR_SRP": "mytestuser" + * ChallengeName: "SOFTWARE_TOKEN_MFA", + * ChallengeParameters: { + * FRIENDLY_DEVICE_NAME: "mytestauthenticator", + * USER_ID_FOR_SRP: "mytestuser" * }, - * "Session": "AYABeC1-y8qooiuysEv0uM4wAqQAHQABAAdTZXJ2aWNlABBDb2duaXRvVXNlclBvb2xzAAEAB2F3cy1rbXMAS2Fybjphd3M6a21zOnVzLXdlc3QtMjowMTU3MzY3MjcxOTg6a2V5LzI5OTFhNGE5LTM5YTAtNDQ0Mi04MWU4LWRkYjY4NTllMTg2MQC4AQIBAHhjxv5lVLhE2_WNrC1zuomqn08qDUUp3z9v4EGAjazZ-wGP3HuBF5Izvxf-9WkCT5uyAAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMeQoT5e6Dpfh52caqAgEQgDvuL8uLMhPt0WmQpZnkNED1gob6xbqt5LaQo_H4L5CuT4Kj499dGCoZ1q1trmlZSRgRm0wwGGG8lFU37QIAAAAADAAAEAAAAAAAAAAAAAAAAADuLe9_UJ4oZAMsQYr0ntiT_____wAAAAEAAAAAAAAAAAAAAAEAAADnLDGmKBQtsCafNokRmPLgl2itBKuKR2dfZBQb5ucCYkzThM5HOfQUSEL-A3dZzfYDC0IODsrcMkrbeeVyMJk-FCzsxS9Og8BEBVnvi9WjZkPJ4mF0YS6FUXnoPSBV5oUqGzRaT-tJ169SUFZAUfFM1fGeJ8T57-QdCxjyISRCWV1VG5_7TiCioyRGfWwzNVWh7exJortF3ccfOyiEyxeqJ2VJvJq3m_w8NP24_PMDpktpRMKftObIMlD5ewRTNCdrUXQ1BW5KIxhJLGjYfRzJDZuKzmEgS-VHsKz0z76w-AlAgdfvdAjflLnsgduU5kUX4YP6jqnetg" + * Session: "AYABeC1-y8qooiuysEv0uM4wAqQAHQABAAdTZXJ2aWNlABBDb2duaXRvVXNlclBvb2xzAAEAB2F3cy1rbXMAS2Fybjphd3M6a21zOnVzLXdlc3QtMjowMTU3MzY3MjcxOTg6a2V5LzI5OTFhNGE5LTM5YTAtNDQ0Mi04MWU4LWRkYjY4NTllMTg2MQC4AQIBAHhjxv5lVLhE2_WNrC1zuomqn08qDUUp3z9v4EGAjazZ-wGP3HuBF5Izvxf-9WkCT5uyAAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMeQoT5e6Dpfh52caqAgEQgDvuL8uLMhPt0WmQpZnkNED1gob6xbqt5LaQo_H4L5CuT4Kj499dGCoZ1q1trmlZSRgRm0wwGGG8lFU37QIAAAAADAAAEAAAAAAAAAAAAAAAAADuLe9_UJ4oZAMsQYr0ntiT_____wAAAAEAAAAAAAAAAAAAAAEAAADnLDGmKBQtsCafNokRmPLgl2itBKuKR2dfZBQb5ucCYkzThM5HOfQUSEL-A3dZzfYDC0IODsrcMkrbeeVyMJk-FCzsxS9Og8BEBVnvi9WjZkPJ4mF0YS6FUXnoPSBV5oUqGzRaT-tJ169SUFZAUfFM1fGeJ8T57-QdCxjyISRCWV1VG5_7TiCioyRGfWwzNVWh7exJortF3ccfOyiEyxeqJ2VJvJq3m_w8NP24_PMDpktpRMKftObIMlD5ewRTNCdrUXQ1BW5KIxhJLGjYfRzJDZuKzmEgS-VHsKz0z76w-AlAgdfvdAjflLnsgduU5kUX4YP6jqnetg" * } * *\/ - * // example id: example-username-and-password-sign-in-for-a-user-who-has-totp-mfa-1689887395219 * ``` * + * @public */ export class InitiateAuthCommand extends $Command .classBuilder< diff --git a/clients/client-cognito-identity-provider/src/commands/ListDevicesCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListDevicesCommand.ts index c98e5c285b26d..17e71178ce1f1 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListDevicesCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListDevicesCommand.ts @@ -122,6 +122,7 @@ export interface ListDevicesCommandOutput extends ListDevicesResponse, __Metadat * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ListDevicesCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ListGroupsCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListGroupsCommand.ts index 168acce56166a..e9ee826fd069b 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListGroupsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListGroupsCommand.ts @@ -110,6 +110,7 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ListGroupsCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ListIdentityProvidersCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListIdentityProvidersCommand.ts index d439c81784ab1..5cb7427f027c0 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListIdentityProvidersCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListIdentityProvidersCommand.ts @@ -108,6 +108,7 @@ export interface ListIdentityProvidersCommandOutput extends ListIdentityProvider * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ListIdentityProvidersCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ListResourceServersCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListResourceServersCommand.ts index 16acc42070983..ee011eee94aee 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListResourceServersCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListResourceServersCommand.ts @@ -113,6 +113,7 @@ export interface ListResourceServersCommandOutput extends ListResourceServersRes * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ListResourceServersCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ListTagsForResourceCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListTagsForResourceCommand.ts index b40a6b699ae3b..3cb6a1e0b442a 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListTagsForResourceCommand.ts @@ -81,6 +81,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ListUserImportJobsCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListUserImportJobsCommand.ts index 8d7e40514ca70..eadbcbbe4697d 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListUserImportJobsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListUserImportJobsCommand.ts @@ -118,6 +118,7 @@ export interface ListUserImportJobsCommandOutput extends ListUserImportJobsRespo * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ListUserImportJobsCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ListUserPoolClientsCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListUserPoolClientsCommand.ts index ff1b0d5306f8e..73f8946111ca5 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListUserPoolClientsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListUserPoolClientsCommand.ts @@ -111,6 +111,7 @@ export interface ListUserPoolClientsCommandOutput extends ListUserPoolClientsRes * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ListUserPoolClientsCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ListUserPoolsCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListUserPoolsCommand.ts index 1aed80ef9f948..ecf6efce73e3e 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListUserPoolsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListUserPoolsCommand.ts @@ -128,6 +128,7 @@ export interface ListUserPoolsCommandOutput extends ListUserPoolsResponse, __Met * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ListUserPoolsCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ListUsersCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListUsersCommand.ts index c8b8c0cc678ad..117b005574a54 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListUsersCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListUsersCommand.ts @@ -125,83 +125,83 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* - * @public + * * @example A ListUsers request for the next 3 users whose email address starts with "testuser." * ```javascript * // This request submits a value for all possible parameters for ListUsers. By iterating the PaginationToken, you can page through and collect all users in a user pool. * const input = { - * "AttributesToGet": [ + * AttributesToGet: [ * "email", * "sub" * ], - * "Filter": "\"email\"^=\"testuser\"", - * "Limit": 3, - * "PaginationToken": "abcd1234EXAMPLE", - * "UserPoolId": "us-east-1_EXAMPLE" + * Filter: `"email"^="testuser"`, + * Limit: 3, + * PaginationToken: "abcd1234EXAMPLE", + * UserPoolId: "us-east-1_EXAMPLE" * }; * const command = new ListUsersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "PaginationToken": "efgh5678EXAMPLE", - * "Users": [ + * PaginationToken: "efgh5678EXAMPLE", + * Users: [ * { - * "Attributes": [ + * Attributes: [ * { - * "Name": "sub", - * "Value": "eaad0219-2117-439f-8d46-4db20e59268f" + * Name: "sub", + * Value: "eaad0219-2117-439f-8d46-4db20e59268f" * }, * { - * "Name": "email", - * "Value": "testuser@example.com" + * Name: "email", + * Value: "testuser@example.com" * } * ], - * "Enabled": true, - * "UserCreateDate": 1682955829.578, - * "UserLastModifiedDate": 1689030181.63, - * "UserStatus": "CONFIRMED", - * "Username": "testuser" + * Enabled: true, + * UserCreateDate: 1.682955829578E9, + * UserLastModifiedDate: 1.68903018163E9, + * UserStatus: "CONFIRMED", + * Username: "testuser" * }, * { - * "Attributes": [ + * Attributes: [ * { - * "Name": "sub", - * "Value": "3b994cfd-0b07-4581-be46-3c82f9a70c90" + * Name: "sub", + * Value: "3b994cfd-0b07-4581-be46-3c82f9a70c90" * }, * { - * "Name": "email", - * "Value": "testuser2@example.com" + * Name: "email", + * Value: "testuser2@example.com" * } * ], - * "Enabled": true, - * "UserCreateDate": 1684427979.201, - * "UserLastModifiedDate": 1684427979.201, - * "UserStatus": "UNCONFIRMED", - * "Username": "testuser2" + * Enabled: true, + * UserCreateDate: 1.684427979201E9, + * UserLastModifiedDate: 1.684427979201E9, + * UserStatus: "UNCONFIRMED", + * Username: "testuser2" * }, * { - * "Attributes": [ + * Attributes: [ * { - * "Name": "sub", - * "Value": "5929e0d1-4c34-42d1-9b79-a5ecacfe66f7" + * Name: "sub", + * Value: "5929e0d1-4c34-42d1-9b79-a5ecacfe66f7" * }, * { - * "Name": "email", - * "Value": "testuser3@example.com" + * Name: "email", + * Value: "testuser3@example.com" * } * ], - * "Enabled": true, - * "UserCreateDate": 1684427823.641, - * "UserLastModifiedDate": 1684427823.641, - * "UserStatus": "UNCONFIRMED", - * "Username": "testuser3@example.com" + * Enabled: true, + * UserCreateDate: 1.684427823641E9, + * UserLastModifiedDate: 1.684427823641E9, + * UserStatus: "UNCONFIRMED", + * Username: "testuser3@example.com" * } * ] * } * *\/ - * // example id: a-listusers-request-for-the-next-3-users-whose-email-address-starts-with-testuser-1689977648246 * ``` * + * @public */ export class ListUsersCommand extends $Command .classBuilder< diff --git a/clients/client-cognito-identity-provider/src/commands/ListUsersInGroupCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListUsersInGroupCommand.ts index bea0e5752c2d6..2f606f82a14db 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListUsersInGroupCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListUsersInGroupCommand.ts @@ -126,6 +126,7 @@ export interface ListUsersInGroupCommandOutput extends ListUsersInGroupResponse, * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ListUsersInGroupCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ListWebAuthnCredentialsCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListWebAuthnCredentialsCommand.ts index 1f430ef126490..1e3a5392a8d78 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListWebAuthnCredentialsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListWebAuthnCredentialsCommand.ts @@ -99,6 +99,7 @@ export interface ListWebAuthnCredentialsCommandOutput extends ListWebAuthnCreden * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ListWebAuthnCredentialsCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/ResendConfirmationCodeCommand.ts b/clients/client-cognito-identity-provider/src/commands/ResendConfirmationCodeCommand.ts index b34b43940a6c3..c1dbeedaad17d 100644 --- a/clients/client-cognito-identity-provider/src/commands/ResendConfirmationCodeCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ResendConfirmationCodeCommand.ts @@ -164,6 +164,7 @@ export interface ResendConfirmationCodeCommandOutput extends ResendConfirmationC * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class ResendConfirmationCodeCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/RespondToAuthChallengeCommand.ts b/clients/client-cognito-identity-provider/src/commands/RespondToAuthChallengeCommand.ts index bea71336555c8..a7bb0d41d7798 100644 --- a/clients/client-cognito-identity-provider/src/commands/RespondToAuthChallengeCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/RespondToAuthChallengeCommand.ts @@ -211,6 +211,7 @@ export interface RespondToAuthChallengeCommandOutput extends RespondToAuthChalle * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class RespondToAuthChallengeCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/RevokeTokenCommand.ts b/clients/client-cognito-identity-provider/src/commands/RevokeTokenCommand.ts index 6a46991e504d0..446cf4335fc3c 100644 --- a/clients/client-cognito-identity-provider/src/commands/RevokeTokenCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/RevokeTokenCommand.ts @@ -93,6 +93,7 @@ export interface RevokeTokenCommandOutput extends RevokeTokenResponse, __Metadat * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class RevokeTokenCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/SetLogDeliveryConfigurationCommand.ts b/clients/client-cognito-identity-provider/src/commands/SetLogDeliveryConfigurationCommand.ts index 3f839fd73d2f9..e19935b145244 100644 --- a/clients/client-cognito-identity-provider/src/commands/SetLogDeliveryConfigurationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/SetLogDeliveryConfigurationCommand.ts @@ -118,6 +118,7 @@ export interface SetLogDeliveryConfigurationCommandOutput * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class SetLogDeliveryConfigurationCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/SetRiskConfigurationCommand.ts b/clients/client-cognito-identity-provider/src/commands/SetRiskConfigurationCommand.ts index ab4ef065d7031..8b086175e97ff 100644 --- a/clients/client-cognito-identity-provider/src/commands/SetRiskConfigurationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/SetRiskConfigurationCommand.ts @@ -225,6 +225,7 @@ export interface SetRiskConfigurationCommandOutput extends SetRiskConfigurationR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class SetRiskConfigurationCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/SetUICustomizationCommand.ts b/clients/client-cognito-identity-provider/src/commands/SetUICustomizationCommand.ts index 477bc78f3c421..ba94c1bf638c7 100644 --- a/clients/client-cognito-identity-provider/src/commands/SetUICustomizationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/SetUICustomizationCommand.ts @@ -118,6 +118,7 @@ export interface SetUICustomizationCommandOutput extends SetUICustomizationRespo * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class SetUICustomizationCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/SetUserMFAPreferenceCommand.ts b/clients/client-cognito-identity-provider/src/commands/SetUserMFAPreferenceCommand.ts index 9a931d70d49ca..145580c212d2a 100644 --- a/clients/client-cognito-identity-provider/src/commands/SetUserMFAPreferenceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/SetUserMFAPreferenceCommand.ts @@ -115,6 +115,7 @@ export interface SetUserMFAPreferenceCommandOutput extends SetUserMFAPreferenceR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class SetUserMFAPreferenceCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/SetUserPoolMfaConfigCommand.ts b/clients/client-cognito-identity-provider/src/commands/SetUserPoolMfaConfigCommand.ts index 3082b4ce37894..6ef33678db501 100644 --- a/clients/client-cognito-identity-provider/src/commands/SetUserPoolMfaConfigCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/SetUserPoolMfaConfigCommand.ts @@ -152,6 +152,7 @@ export interface SetUserPoolMfaConfigCommandOutput extends SetUserPoolMfaConfigR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class SetUserPoolMfaConfigCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/SetUserSettingsCommand.ts b/clients/client-cognito-identity-provider/src/commands/SetUserSettingsCommand.ts index 584ce6d50e032..60c5ccb5f0f28 100644 --- a/clients/client-cognito-identity-provider/src/commands/SetUserSettingsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/SetUserSettingsCommand.ts @@ -104,6 +104,7 @@ export interface SetUserSettingsCommandOutput extends SetUserSettingsResponse, _ * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class SetUserSettingsCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/SignUpCommand.ts b/clients/client-cognito-identity-provider/src/commands/SignUpCommand.ts index 09dee9a3fa512..db447f8dd9d0f 100644 --- a/clients/client-cognito-identity-provider/src/commands/SignUpCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/SignUpCommand.ts @@ -187,6 +187,7 @@ export interface SignUpCommandOutput extends SignUpResponse, __MetadataBearer {} * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class SignUpCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/StartUserImportJobCommand.ts b/clients/client-cognito-identity-provider/src/commands/StartUserImportJobCommand.ts index d4a7717a0068b..95d94474da069 100644 --- a/clients/client-cognito-identity-provider/src/commands/StartUserImportJobCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/StartUserImportJobCommand.ts @@ -97,6 +97,7 @@ export interface StartUserImportJobCommandOutput extends StartUserImportJobRespo * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class StartUserImportJobCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/StartWebAuthnRegistrationCommand.ts b/clients/client-cognito-identity-provider/src/commands/StartWebAuthnRegistrationCommand.ts index 2329aa51b7cbe..df27247e16039 100644 --- a/clients/client-cognito-identity-provider/src/commands/StartWebAuthnRegistrationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/StartWebAuthnRegistrationCommand.ts @@ -97,6 +97,7 @@ export interface StartWebAuthnRegistrationCommandOutput extends StartWebAuthnReg * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class StartWebAuthnRegistrationCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/StopUserImportJobCommand.ts b/clients/client-cognito-identity-provider/src/commands/StopUserImportJobCommand.ts index fb795be0837ae..f9c79df4a147e 100644 --- a/clients/client-cognito-identity-provider/src/commands/StopUserImportJobCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/StopUserImportJobCommand.ts @@ -97,6 +97,7 @@ export interface StopUserImportJobCommandOutput extends StopUserImportJobRespons * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class StopUserImportJobCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/TagResourceCommand.ts b/clients/client-cognito-identity-provider/src/commands/TagResourceCommand.ts index fc448a4268da5..e6acaaff0f06f 100644 --- a/clients/client-cognito-identity-provider/src/commands/TagResourceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/TagResourceCommand.ts @@ -91,6 +91,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/UntagResourceCommand.ts b/clients/client-cognito-identity-provider/src/commands/UntagResourceCommand.ts index e26e876ee4875..56e47063d27ac 100644 --- a/clients/client-cognito-identity-provider/src/commands/UntagResourceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UntagResourceCommand.ts @@ -78,6 +78,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateAuthEventFeedbackCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateAuthEventFeedbackCommand.ts index 20b2d19fb867a..20511f0a1c77a 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateAuthEventFeedbackCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateAuthEventFeedbackCommand.ts @@ -107,6 +107,7 @@ export interface UpdateAuthEventFeedbackCommandOutput extends UpdateAuthEventFee * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class UpdateAuthEventFeedbackCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateDeviceStatusCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateDeviceStatusCommand.ts index f3ae2adffcc79..aaaa2003cdd8a 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateDeviceStatusCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateDeviceStatusCommand.ts @@ -109,6 +109,7 @@ export interface UpdateDeviceStatusCommandOutput extends UpdateDeviceStatusRespo * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class UpdateDeviceStatusCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateGroupCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateGroupCommand.ts index 280ea47acf958..1e5210ee5100a 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateGroupCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateGroupCommand.ts @@ -110,6 +110,7 @@ export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __Metadat * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class UpdateGroupCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateIdentityProviderCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateIdentityProviderCommand.ts index c400b8c6015f7..299fa27cf6377 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateIdentityProviderCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateIdentityProviderCommand.ts @@ -132,6 +132,7 @@ export interface UpdateIdentityProviderCommandOutput extends UpdateIdentityProvi * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class UpdateIdentityProviderCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateManagedLoginBrandingCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateManagedLoginBrandingCommand.ts index 828a00212c28e..7ce61559bceb9 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateManagedLoginBrandingCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateManagedLoginBrandingCommand.ts @@ -137,6 +137,7 @@ export interface UpdateManagedLoginBrandingCommandOutput extends UpdateManagedLo * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class UpdateManagedLoginBrandingCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateResourceServerCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateResourceServerCommand.ts index 27bf6da6147fd..129dbbee389f9 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateResourceServerCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateResourceServerCommand.ts @@ -120,6 +120,7 @@ export interface UpdateResourceServerCommandOutput extends UpdateResourceServerR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class UpdateResourceServerCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateUserAttributesCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateUserAttributesCommand.ts index d31b197e41d06..4cf66710ca498 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateUserAttributesCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateUserAttributesCommand.ts @@ -179,6 +179,7 @@ export interface UpdateUserAttributesCommandOutput extends UpdateUserAttributesR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class UpdateUserAttributesCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolClientCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolClientCommand.ts index 3b8ab6fad0b29..b7e3ef3662fe8 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolClientCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolClientCommand.ts @@ -220,6 +220,7 @@ export interface UpdateUserPoolClientCommandOutput extends UpdateUserPoolClientR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class UpdateUserPoolClientCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolCommand.ts index cb4320bad4253..95de3bd6b6462 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolCommand.ts @@ -257,6 +257,7 @@ export interface UpdateUserPoolCommandOutput extends UpdateUserPoolResponse, __M * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class UpdateUserPoolCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolDomainCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolDomainCommand.ts index d219fcc999452..70fcb122afe01 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolDomainCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolDomainCommand.ts @@ -123,6 +123,7 @@ export interface UpdateUserPoolDomainCommandOutput extends UpdateUserPoolDomainR * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class UpdateUserPoolDomainCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/VerifySoftwareTokenCommand.ts b/clients/client-cognito-identity-provider/src/commands/VerifySoftwareTokenCommand.ts index 0205f964921e7..5caf7faa6facb 100644 --- a/clients/client-cognito-identity-provider/src/commands/VerifySoftwareTokenCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/VerifySoftwareTokenCommand.ts @@ -123,6 +123,7 @@ export interface VerifySoftwareTokenCommandOutput extends VerifySoftwareTokenRes * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class VerifySoftwareTokenCommand extends $Command diff --git a/clients/client-cognito-identity-provider/src/commands/VerifyUserAttributeCommand.ts b/clients/client-cognito-identity-provider/src/commands/VerifyUserAttributeCommand.ts index 403b5c2b04092..376051f6ae39f 100644 --- a/clients/client-cognito-identity-provider/src/commands/VerifyUserAttributeCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/VerifyUserAttributeCommand.ts @@ -124,6 +124,7 @@ export interface VerifyUserAttributeCommandOutput extends VerifyUserAttributeRes * @throws {@link CognitoIdentityProviderServiceException} *

Base exception class for all service exceptions from CognitoIdentityProvider service.

* + * * @public */ export class VerifyUserAttributeCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/CreateIdentityPoolCommand.ts b/clients/client-cognito-identity/src/commands/CreateIdentityPoolCommand.ts index 6e96c235d41b5..1c1bcbf8765c2 100644 --- a/clients/client-cognito-identity/src/commands/CreateIdentityPoolCommand.ts +++ b/clients/client-cognito-identity/src/commands/CreateIdentityPoolCommand.ts @@ -153,6 +153,7 @@ export interface CreateIdentityPoolCommandOutput extends IdentityPool, __Metadat * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class CreateIdentityPoolCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/DeleteIdentitiesCommand.ts b/clients/client-cognito-identity/src/commands/DeleteIdentitiesCommand.ts index 6cac618f0e04b..df235236af9da 100644 --- a/clients/client-cognito-identity/src/commands/DeleteIdentitiesCommand.ts +++ b/clients/client-cognito-identity/src/commands/DeleteIdentitiesCommand.ts @@ -74,6 +74,7 @@ export interface DeleteIdentitiesCommandOutput extends DeleteIdentitiesResponse, * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class DeleteIdentitiesCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/DeleteIdentityPoolCommand.ts b/clients/client-cognito-identity/src/commands/DeleteIdentityPoolCommand.ts index 9671c2cdfc101..2dee772810f72 100644 --- a/clients/client-cognito-identity/src/commands/DeleteIdentityPoolCommand.ts +++ b/clients/client-cognito-identity/src/commands/DeleteIdentityPoolCommand.ts @@ -72,6 +72,7 @@ export interface DeleteIdentityPoolCommandOutput extends __MetadataBearer {} * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class DeleteIdentityPoolCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/DescribeIdentityCommand.ts b/clients/client-cognito-identity/src/commands/DescribeIdentityCommand.ts index e06a1975cc646..c97f0dc899574 100644 --- a/clients/client-cognito-identity/src/commands/DescribeIdentityCommand.ts +++ b/clients/client-cognito-identity/src/commands/DescribeIdentityCommand.ts @@ -79,6 +79,7 @@ export interface DescribeIdentityCommandOutput extends IdentityDescription, __Me * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class DescribeIdentityCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/DescribeIdentityPoolCommand.ts b/clients/client-cognito-identity/src/commands/DescribeIdentityPoolCommand.ts index cfe0083c388ab..6f79f36b81036 100644 --- a/clients/client-cognito-identity/src/commands/DescribeIdentityPoolCommand.ts +++ b/clients/client-cognito-identity/src/commands/DescribeIdentityPoolCommand.ts @@ -97,6 +97,7 @@ export interface DescribeIdentityPoolCommandOutput extends IdentityPool, __Metad * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class DescribeIdentityPoolCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/GetCredentialsForIdentityCommand.ts b/clients/client-cognito-identity/src/commands/GetCredentialsForIdentityCommand.ts index 45cca2a10ae3d..2c4f22fd93dd6 100644 --- a/clients/client-cognito-identity/src/commands/GetCredentialsForIdentityCommand.ts +++ b/clients/client-cognito-identity/src/commands/GetCredentialsForIdentityCommand.ts @@ -106,6 +106,7 @@ export interface GetCredentialsForIdentityCommandOutput extends GetCredentialsFo * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class GetCredentialsForIdentityCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/GetIdCommand.ts b/clients/client-cognito-identity/src/commands/GetIdCommand.ts index a313d0f2eeb27..34869ff5a67fb 100644 --- a/clients/client-cognito-identity/src/commands/GetIdCommand.ts +++ b/clients/client-cognito-identity/src/commands/GetIdCommand.ts @@ -88,6 +88,7 @@ export interface GetIdCommandOutput extends GetIdResponse, __MetadataBearer {} * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class GetIdCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/GetIdentityPoolRolesCommand.ts b/clients/client-cognito-identity/src/commands/GetIdentityPoolRolesCommand.ts index c55f9fb9eac4e..7d5cb4a269b1a 100644 --- a/clients/client-cognito-identity/src/commands/GetIdentityPoolRolesCommand.ts +++ b/clients/client-cognito-identity/src/commands/GetIdentityPoolRolesCommand.ts @@ -96,6 +96,7 @@ export interface GetIdentityPoolRolesCommandOutput extends GetIdentityPoolRolesR * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class GetIdentityPoolRolesCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/GetOpenIdTokenCommand.ts b/clients/client-cognito-identity/src/commands/GetOpenIdTokenCommand.ts index 0853241e09923..a0772e8f8a1ac 100644 --- a/clients/client-cognito-identity/src/commands/GetOpenIdTokenCommand.ts +++ b/clients/client-cognito-identity/src/commands/GetOpenIdTokenCommand.ts @@ -92,6 +92,7 @@ export interface GetOpenIdTokenCommandOutput extends GetOpenIdTokenResponse, __M * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class GetOpenIdTokenCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/GetOpenIdTokenForDeveloperIdentityCommand.ts b/clients/client-cognito-identity/src/commands/GetOpenIdTokenForDeveloperIdentityCommand.ts index efdf136ec1565..9a1c9aaa77b14 100644 --- a/clients/client-cognito-identity/src/commands/GetOpenIdTokenForDeveloperIdentityCommand.ts +++ b/clients/client-cognito-identity/src/commands/GetOpenIdTokenForDeveloperIdentityCommand.ts @@ -111,6 +111,7 @@ export interface GetOpenIdTokenForDeveloperIdentityCommandOutput * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class GetOpenIdTokenForDeveloperIdentityCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/GetPrincipalTagAttributeMapCommand.ts b/clients/client-cognito-identity/src/commands/GetPrincipalTagAttributeMapCommand.ts index 137ebc2bf5264..d0a9ca98b6154 100644 --- a/clients/client-cognito-identity/src/commands/GetPrincipalTagAttributeMapCommand.ts +++ b/clients/client-cognito-identity/src/commands/GetPrincipalTagAttributeMapCommand.ts @@ -80,6 +80,7 @@ export interface GetPrincipalTagAttributeMapCommandOutput * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class GetPrincipalTagAttributeMapCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/ListIdentitiesCommand.ts b/clients/client-cognito-identity/src/commands/ListIdentitiesCommand.ts index a94ac91ef7379..61166a7b50b9e 100644 --- a/clients/client-cognito-identity/src/commands/ListIdentitiesCommand.ts +++ b/clients/client-cognito-identity/src/commands/ListIdentitiesCommand.ts @@ -87,6 +87,7 @@ export interface ListIdentitiesCommandOutput extends ListIdentitiesResponse, __M * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class ListIdentitiesCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/ListIdentityPoolsCommand.ts b/clients/client-cognito-identity/src/commands/ListIdentityPoolsCommand.ts index 945f8af367387..cf87abb8e2907 100644 --- a/clients/client-cognito-identity/src/commands/ListIdentityPoolsCommand.ts +++ b/clients/client-cognito-identity/src/commands/ListIdentityPoolsCommand.ts @@ -80,6 +80,7 @@ export interface ListIdentityPoolsCommandOutput extends ListIdentityPoolsRespons * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class ListIdentityPoolsCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/ListTagsForResourceCommand.ts b/clients/client-cognito-identity/src/commands/ListTagsForResourceCommand.ts index 28f599e200a13..03c0c5fc61dc0 100644 --- a/clients/client-cognito-identity/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cognito-identity/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/LookupDeveloperIdentityCommand.ts b/clients/client-cognito-identity/src/commands/LookupDeveloperIdentityCommand.ts index dc6e0280822b6..d1a44fe47a7f9 100644 --- a/clients/client-cognito-identity/src/commands/LookupDeveloperIdentityCommand.ts +++ b/clients/client-cognito-identity/src/commands/LookupDeveloperIdentityCommand.ts @@ -100,6 +100,7 @@ export interface LookupDeveloperIdentityCommandOutput extends LookupDeveloperIde * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class LookupDeveloperIdentityCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/MergeDeveloperIdentitiesCommand.ts b/clients/client-cognito-identity/src/commands/MergeDeveloperIdentitiesCommand.ts index e2511ad0011b2..ff55e65a01dbd 100644 --- a/clients/client-cognito-identity/src/commands/MergeDeveloperIdentitiesCommand.ts +++ b/clients/client-cognito-identity/src/commands/MergeDeveloperIdentitiesCommand.ts @@ -91,6 +91,7 @@ export interface MergeDeveloperIdentitiesCommandOutput extends MergeDeveloperIde * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class MergeDeveloperIdentitiesCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/SetIdentityPoolRolesCommand.ts b/clients/client-cognito-identity/src/commands/SetIdentityPoolRolesCommand.ts index 8364d45b6b7e3..db6de9a38fc4b 100644 --- a/clients/client-cognito-identity/src/commands/SetIdentityPoolRolesCommand.ts +++ b/clients/client-cognito-identity/src/commands/SetIdentityPoolRolesCommand.ts @@ -97,6 +97,7 @@ export interface SetIdentityPoolRolesCommandOutput extends __MetadataBearer {} * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class SetIdentityPoolRolesCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/SetPrincipalTagAttributeMapCommand.ts b/clients/client-cognito-identity/src/commands/SetPrincipalTagAttributeMapCommand.ts index 6ead38034b8ed..299070c077cdd 100644 --- a/clients/client-cognito-identity/src/commands/SetPrincipalTagAttributeMapCommand.ts +++ b/clients/client-cognito-identity/src/commands/SetPrincipalTagAttributeMapCommand.ts @@ -84,6 +84,7 @@ export interface SetPrincipalTagAttributeMapCommandOutput * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class SetPrincipalTagAttributeMapCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/TagResourceCommand.ts b/clients/client-cognito-identity/src/commands/TagResourceCommand.ts index 893bd2d26bec9..befd4efeaad0e 100644 --- a/clients/client-cognito-identity/src/commands/TagResourceCommand.ts +++ b/clients/client-cognito-identity/src/commands/TagResourceCommand.ts @@ -86,6 +86,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/UnlinkDeveloperIdentityCommand.ts b/clients/client-cognito-identity/src/commands/UnlinkDeveloperIdentityCommand.ts index 628d7e21a3255..da46cb0f3ec9a 100644 --- a/clients/client-cognito-identity/src/commands/UnlinkDeveloperIdentityCommand.ts +++ b/clients/client-cognito-identity/src/commands/UnlinkDeveloperIdentityCommand.ts @@ -81,6 +81,7 @@ export interface UnlinkDeveloperIdentityCommandOutput extends __MetadataBearer { * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class UnlinkDeveloperIdentityCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/UnlinkIdentityCommand.ts b/clients/client-cognito-identity/src/commands/UnlinkIdentityCommand.ts index aace960e6e11b..1cf56777246f5 100644 --- a/clients/client-cognito-identity/src/commands/UnlinkIdentityCommand.ts +++ b/clients/client-cognito-identity/src/commands/UnlinkIdentityCommand.ts @@ -86,6 +86,7 @@ export interface UnlinkIdentityCommandOutput extends __MetadataBearer {} * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class UnlinkIdentityCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/UntagResourceCommand.ts b/clients/client-cognito-identity/src/commands/UntagResourceCommand.ts index 72400e40c3269..45572973cda7d 100644 --- a/clients/client-cognito-identity/src/commands/UntagResourceCommand.ts +++ b/clients/client-cognito-identity/src/commands/UntagResourceCommand.ts @@ -73,6 +73,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-cognito-identity/src/commands/UpdateIdentityPoolCommand.ts b/clients/client-cognito-identity/src/commands/UpdateIdentityPoolCommand.ts index dab724dcc462b..cea8094b43b52 100644 --- a/clients/client-cognito-identity/src/commands/UpdateIdentityPoolCommand.ts +++ b/clients/client-cognito-identity/src/commands/UpdateIdentityPoolCommand.ts @@ -133,6 +133,7 @@ export interface UpdateIdentityPoolCommandOutput extends IdentityPool, __Metadat * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* + * * @public */ export class UpdateIdentityPoolCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/BulkPublishCommand.ts b/clients/client-cognito-sync/src/commands/BulkPublishCommand.ts index 2b07b981bc86d..af0e3c2ef78c8 100644 --- a/clients/client-cognito-sync/src/commands/BulkPublishCommand.ts +++ b/clients/client-cognito-sync/src/commands/BulkPublishCommand.ts @@ -77,6 +77,7 @@ export interface BulkPublishCommandOutput extends BulkPublishResponse, __Metadat * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class BulkPublishCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/DeleteDatasetCommand.ts b/clients/client-cognito-sync/src/commands/DeleteDatasetCommand.ts index 8b1a3571d5fc0..17e93b73b0809 100644 --- a/clients/client-cognito-sync/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-cognito-sync/src/commands/DeleteDatasetCommand.ts @@ -93,6 +93,7 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class DeleteDatasetCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/DescribeDatasetCommand.ts b/clients/client-cognito-sync/src/commands/DescribeDatasetCommand.ts index d8c0c8769989e..e358af61193f0 100644 --- a/clients/client-cognito-sync/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-cognito-sync/src/commands/DescribeDatasetCommand.ts @@ -88,6 +88,7 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _ * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class DescribeDatasetCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/DescribeIdentityPoolUsageCommand.ts b/clients/client-cognito-sync/src/commands/DescribeIdentityPoolUsageCommand.ts index e0d45cd1d8247..da4caa084b8e2 100644 --- a/clients/client-cognito-sync/src/commands/DescribeIdentityPoolUsageCommand.ts +++ b/clients/client-cognito-sync/src/commands/DescribeIdentityPoolUsageCommand.ts @@ -128,6 +128,7 @@ export interface DescribeIdentityPoolUsageCommandOutput extends DescribeIdentity * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class DescribeIdentityPoolUsageCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/DescribeIdentityUsageCommand.ts b/clients/client-cognito-sync/src/commands/DescribeIdentityUsageCommand.ts index 09e86c3432c9d..6759c0ce12b97 100644 --- a/clients/client-cognito-sync/src/commands/DescribeIdentityUsageCommand.ts +++ b/clients/client-cognito-sync/src/commands/DescribeIdentityUsageCommand.ts @@ -131,6 +131,7 @@ export interface DescribeIdentityUsageCommandOutput extends DescribeIdentityUsag * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class DescribeIdentityUsageCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/GetBulkPublishDetailsCommand.ts b/clients/client-cognito-sync/src/commands/GetBulkPublishDetailsCommand.ts index bde691d1a1e68..7a89e793b946d 100644 --- a/clients/client-cognito-sync/src/commands/GetBulkPublishDetailsCommand.ts +++ b/clients/client-cognito-sync/src/commands/GetBulkPublishDetailsCommand.ts @@ -75,6 +75,7 @@ export interface GetBulkPublishDetailsCommandOutput extends GetBulkPublishDetail * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class GetBulkPublishDetailsCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/GetCognitoEventsCommand.ts b/clients/client-cognito-sync/src/commands/GetCognitoEventsCommand.ts index f797bbedd7a43..db5de707ddbf6 100644 --- a/clients/client-cognito-sync/src/commands/GetCognitoEventsCommand.ts +++ b/clients/client-cognito-sync/src/commands/GetCognitoEventsCommand.ts @@ -77,6 +77,7 @@ export interface GetCognitoEventsCommandOutput extends GetCognitoEventsResponse, * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class GetCognitoEventsCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/GetIdentityPoolConfigurationCommand.ts b/clients/client-cognito-sync/src/commands/GetIdentityPoolConfigurationCommand.ts index f6e4028b605a3..1d7139a8b4fdd 100644 --- a/clients/client-cognito-sync/src/commands/GetIdentityPoolConfigurationCommand.ts +++ b/clients/client-cognito-sync/src/commands/GetIdentityPoolConfigurationCommand.ts @@ -137,6 +137,7 @@ export interface GetIdentityPoolConfigurationCommandOutput * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class GetIdentityPoolConfigurationCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/ListDatasetsCommand.ts b/clients/client-cognito-sync/src/commands/ListDatasetsCommand.ts index 10d64e20a40c1..54377541bf419 100644 --- a/clients/client-cognito-sync/src/commands/ListDatasetsCommand.ts +++ b/clients/client-cognito-sync/src/commands/ListDatasetsCommand.ts @@ -144,6 +144,7 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class ListDatasetsCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/ListIdentityPoolUsageCommand.ts b/clients/client-cognito-sync/src/commands/ListIdentityPoolUsageCommand.ts index 8311efc3a5370..473771c48d313 100644 --- a/clients/client-cognito-sync/src/commands/ListIdentityPoolUsageCommand.ts +++ b/clients/client-cognito-sync/src/commands/ListIdentityPoolUsageCommand.ts @@ -140,6 +140,7 @@ export interface ListIdentityPoolUsageCommandOutput extends ListIdentityPoolUsag * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class ListIdentityPoolUsageCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/ListRecordsCommand.ts b/clients/client-cognito-sync/src/commands/ListRecordsCommand.ts index 0032768f9dcdc..ca068e84aae84 100644 --- a/clients/client-cognito-sync/src/commands/ListRecordsCommand.ts +++ b/clients/client-cognito-sync/src/commands/ListRecordsCommand.ts @@ -151,6 +151,7 @@ export interface ListRecordsCommandOutput extends ListRecordsResponse, __Metadat * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class ListRecordsCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/RegisterDeviceCommand.ts b/clients/client-cognito-sync/src/commands/RegisterDeviceCommand.ts index 368cb35ec2b48..9d88fa990455c 100644 --- a/clients/client-cognito-sync/src/commands/RegisterDeviceCommand.ts +++ b/clients/client-cognito-sync/src/commands/RegisterDeviceCommand.ts @@ -124,6 +124,7 @@ export interface RegisterDeviceCommandOutput extends RegisterDeviceResponse, __M * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class RegisterDeviceCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/SetCognitoEventsCommand.ts b/clients/client-cognito-sync/src/commands/SetCognitoEventsCommand.ts index 750e692bf0e3d..979f68a719966 100644 --- a/clients/client-cognito-sync/src/commands/SetCognitoEventsCommand.ts +++ b/clients/client-cognito-sync/src/commands/SetCognitoEventsCommand.ts @@ -76,6 +76,7 @@ export interface SetCognitoEventsCommandOutput extends __MetadataBearer {} * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class SetCognitoEventsCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/SetIdentityPoolConfigurationCommand.ts b/clients/client-cognito-sync/src/commands/SetIdentityPoolConfigurationCommand.ts index 5d2f38a91ef52..d1f189b0dc0f1 100644 --- a/clients/client-cognito-sync/src/commands/SetIdentityPoolConfigurationCommand.ts +++ b/clients/client-cognito-sync/src/commands/SetIdentityPoolConfigurationCommand.ts @@ -155,6 +155,7 @@ export interface SetIdentityPoolConfigurationCommandOutput * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class SetIdentityPoolConfigurationCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/SubscribeToDatasetCommand.ts b/clients/client-cognito-sync/src/commands/SubscribeToDatasetCommand.ts index 69e59eaa5e2d4..f4c8d002153e9 100644 --- a/clients/client-cognito-sync/src/commands/SubscribeToDatasetCommand.ts +++ b/clients/client-cognito-sync/src/commands/SubscribeToDatasetCommand.ts @@ -121,6 +121,7 @@ export interface SubscribeToDatasetCommandOutput extends SubscribeToDatasetRespo * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class SubscribeToDatasetCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/UnsubscribeFromDatasetCommand.ts b/clients/client-cognito-sync/src/commands/UnsubscribeFromDatasetCommand.ts index 1f9349c79bbfb..a1efa63bcc1dc 100644 --- a/clients/client-cognito-sync/src/commands/UnsubscribeFromDatasetCommand.ts +++ b/clients/client-cognito-sync/src/commands/UnsubscribeFromDatasetCommand.ts @@ -122,6 +122,7 @@ export interface UnsubscribeFromDatasetCommandOutput extends UnsubscribeFromData * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class UnsubscribeFromDatasetCommand extends $Command diff --git a/clients/client-cognito-sync/src/commands/UpdateRecordsCommand.ts b/clients/client-cognito-sync/src/commands/UpdateRecordsCommand.ts index b23287bb331ca..df46374817d89 100644 --- a/clients/client-cognito-sync/src/commands/UpdateRecordsCommand.ts +++ b/clients/client-cognito-sync/src/commands/UpdateRecordsCommand.ts @@ -114,6 +114,7 @@ export interface UpdateRecordsCommandOutput extends UpdateRecordsResponse, __Met * @throws {@link CognitoSyncServiceException} *

Base exception class for all service exceptions from CognitoSync service.

* + * * @public */ export class UpdateRecordsCommand extends $Command diff --git a/clients/client-comprehend/src/commands/BatchDetectDominantLanguageCommand.ts b/clients/client-comprehend/src/commands/BatchDetectDominantLanguageCommand.ts index da1f266c677cd..966d8945c96ca 100644 --- a/clients/client-comprehend/src/commands/BatchDetectDominantLanguageCommand.ts +++ b/clients/client-comprehend/src/commands/BatchDetectDominantLanguageCommand.ts @@ -96,6 +96,7 @@ export interface BatchDetectDominantLanguageCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class BatchDetectDominantLanguageCommand extends $Command diff --git a/clients/client-comprehend/src/commands/BatchDetectEntitiesCommand.ts b/clients/client-comprehend/src/commands/BatchDetectEntitiesCommand.ts index 16a62acfd71e4..dd33762db0a50 100644 --- a/clients/client-comprehend/src/commands/BatchDetectEntitiesCommand.ts +++ b/clients/client-comprehend/src/commands/BatchDetectEntitiesCommand.ts @@ -118,6 +118,7 @@ export interface BatchDetectEntitiesCommandOutput extends BatchDetectEntitiesRes * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class BatchDetectEntitiesCommand extends $Command diff --git a/clients/client-comprehend/src/commands/BatchDetectKeyPhrasesCommand.ts b/clients/client-comprehend/src/commands/BatchDetectKeyPhrasesCommand.ts index ee6dede6af1a0..3ee2cb75c9d73 100644 --- a/clients/client-comprehend/src/commands/BatchDetectKeyPhrasesCommand.ts +++ b/clients/client-comprehend/src/commands/BatchDetectKeyPhrasesCommand.ts @@ -100,6 +100,7 @@ export interface BatchDetectKeyPhrasesCommandOutput extends BatchDetectKeyPhrase * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class BatchDetectKeyPhrasesCommand extends $Command diff --git a/clients/client-comprehend/src/commands/BatchDetectSentimentCommand.ts b/clients/client-comprehend/src/commands/BatchDetectSentimentCommand.ts index 6c11e03b528fa..021d3d698956d 100644 --- a/clients/client-comprehend/src/commands/BatchDetectSentimentCommand.ts +++ b/clients/client-comprehend/src/commands/BatchDetectSentimentCommand.ts @@ -101,6 +101,7 @@ export interface BatchDetectSentimentCommandOutput extends BatchDetectSentimentR * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class BatchDetectSentimentCommand extends $Command diff --git a/clients/client-comprehend/src/commands/BatchDetectSyntaxCommand.ts b/clients/client-comprehend/src/commands/BatchDetectSyntaxCommand.ts index d298aa7ea29de..563175818d294 100644 --- a/clients/client-comprehend/src/commands/BatchDetectSyntaxCommand.ts +++ b/clients/client-comprehend/src/commands/BatchDetectSyntaxCommand.ts @@ -107,6 +107,7 @@ export interface BatchDetectSyntaxCommandOutput extends BatchDetectSyntaxRespons * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class BatchDetectSyntaxCommand extends $Command diff --git a/clients/client-comprehend/src/commands/BatchDetectTargetedSentimentCommand.ts b/clients/client-comprehend/src/commands/BatchDetectTargetedSentimentCommand.ts index 46d2f4b948465..fdf1175d75134 100644 --- a/clients/client-comprehend/src/commands/BatchDetectTargetedSentimentCommand.ts +++ b/clients/client-comprehend/src/commands/BatchDetectTargetedSentimentCommand.ts @@ -125,6 +125,7 @@ export interface BatchDetectTargetedSentimentCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class BatchDetectTargetedSentimentCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ClassifyDocumentCommand.ts b/clients/client-comprehend/src/commands/ClassifyDocumentCommand.ts index 12f4081f248be..dfc52b6890e83 100644 --- a/clients/client-comprehend/src/commands/ClassifyDocumentCommand.ts +++ b/clients/client-comprehend/src/commands/ClassifyDocumentCommand.ts @@ -147,6 +147,7 @@ export interface ClassifyDocumentCommandOutput extends ClassifyDocumentResponse, * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ClassifyDocumentCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ContainsPiiEntitiesCommand.ts b/clients/client-comprehend/src/commands/ContainsPiiEntitiesCommand.ts index 36f9ee708a3d7..f9e3c9159f432 100644 --- a/clients/client-comprehend/src/commands/ContainsPiiEntitiesCommand.ts +++ b/clients/client-comprehend/src/commands/ContainsPiiEntitiesCommand.ts @@ -77,6 +77,7 @@ export interface ContainsPiiEntitiesCommandOutput extends ContainsPiiEntitiesRes * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ContainsPiiEntitiesCommand extends $Command diff --git a/clients/client-comprehend/src/commands/CreateDatasetCommand.ts b/clients/client-comprehend/src/commands/CreateDatasetCommand.ts index 7542947a4d93a..14bf03ce05486 100644 --- a/clients/client-comprehend/src/commands/CreateDatasetCommand.ts +++ b/clients/client-comprehend/src/commands/CreateDatasetCommand.ts @@ -122,6 +122,7 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class CreateDatasetCommand extends $Command diff --git a/clients/client-comprehend/src/commands/CreateDocumentClassifierCommand.ts b/clients/client-comprehend/src/commands/CreateDocumentClassifierCommand.ts index 1d1205afd87ff..08d411e896895 100644 --- a/clients/client-comprehend/src/commands/CreateDocumentClassifierCommand.ts +++ b/clients/client-comprehend/src/commands/CreateDocumentClassifierCommand.ts @@ -148,6 +148,7 @@ export interface CreateDocumentClassifierCommandOutput extends CreateDocumentCla * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class CreateDocumentClassifierCommand extends $Command diff --git a/clients/client-comprehend/src/commands/CreateEndpointCommand.ts b/clients/client-comprehend/src/commands/CreateEndpointCommand.ts index bacbe175e9561..7fc4754e97fc6 100644 --- a/clients/client-comprehend/src/commands/CreateEndpointCommand.ts +++ b/clients/client-comprehend/src/commands/CreateEndpointCommand.ts @@ -98,6 +98,7 @@ export interface CreateEndpointCommandOutput extends CreateEndpointResponse, __M * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class CreateEndpointCommand extends $Command diff --git a/clients/client-comprehend/src/commands/CreateEntityRecognizerCommand.ts b/clients/client-comprehend/src/commands/CreateEntityRecognizerCommand.ts index 8ae4cc8dfecf4..7e26c904a87aa 100644 --- a/clients/client-comprehend/src/commands/CreateEntityRecognizerCommand.ts +++ b/clients/client-comprehend/src/commands/CreateEntityRecognizerCommand.ts @@ -141,6 +141,7 @@ export interface CreateEntityRecognizerCommandOutput extends CreateEntityRecogni * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class CreateEntityRecognizerCommand extends $Command diff --git a/clients/client-comprehend/src/commands/CreateFlywheelCommand.ts b/clients/client-comprehend/src/commands/CreateFlywheelCommand.ts index 51f51a69a9f54..731ee0062c687 100644 --- a/clients/client-comprehend/src/commands/CreateFlywheelCommand.ts +++ b/clients/client-comprehend/src/commands/CreateFlywheelCommand.ts @@ -144,6 +144,7 @@ export interface CreateFlywheelCommandOutput extends CreateFlywheelResponse, __M * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class CreateFlywheelCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DeleteDocumentClassifierCommand.ts b/clients/client-comprehend/src/commands/DeleteDocumentClassifierCommand.ts index 1a0d58e233c6f..d98eeb3dc8a7d 100644 --- a/clients/client-comprehend/src/commands/DeleteDocumentClassifierCommand.ts +++ b/clients/client-comprehend/src/commands/DeleteDocumentClassifierCommand.ts @@ -79,6 +79,7 @@ export interface DeleteDocumentClassifierCommandOutput extends DeleteDocumentCla * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DeleteDocumentClassifierCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DeleteEndpointCommand.ts b/clients/client-comprehend/src/commands/DeleteEndpointCommand.ts index d1fabffab6573..877b663b1e38a 100644 --- a/clients/client-comprehend/src/commands/DeleteEndpointCommand.ts +++ b/clients/client-comprehend/src/commands/DeleteEndpointCommand.ts @@ -71,6 +71,7 @@ export interface DeleteEndpointCommandOutput extends DeleteEndpointResponse, __M * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DeleteEndpointCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DeleteEntityRecognizerCommand.ts b/clients/client-comprehend/src/commands/DeleteEntityRecognizerCommand.ts index 56e2d6a76905b..8b620a258157c 100644 --- a/clients/client-comprehend/src/commands/DeleteEntityRecognizerCommand.ts +++ b/clients/client-comprehend/src/commands/DeleteEntityRecognizerCommand.ts @@ -79,6 +79,7 @@ export interface DeleteEntityRecognizerCommandOutput extends DeleteEntityRecogni * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DeleteEntityRecognizerCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DeleteFlywheelCommand.ts b/clients/client-comprehend/src/commands/DeleteFlywheelCommand.ts index d8d6cb3c76030..483e801a455e3 100644 --- a/clients/client-comprehend/src/commands/DeleteFlywheelCommand.ts +++ b/clients/client-comprehend/src/commands/DeleteFlywheelCommand.ts @@ -76,6 +76,7 @@ export interface DeleteFlywheelCommandOutput extends DeleteFlywheelResponse, __M * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DeleteFlywheelCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-comprehend/src/commands/DeleteResourcePolicyCommand.ts index 950145a4c6d45..f9481106cccf8 100644 --- a/clients/client-comprehend/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-comprehend/src/commands/DeleteResourcePolicyCommand.ts @@ -63,6 +63,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeDatasetCommand.ts b/clients/client-comprehend/src/commands/DescribeDatasetCommand.ts index e61dbb4ff03c3..571f8560f0d8a 100644 --- a/clients/client-comprehend/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeDatasetCommand.ts @@ -80,6 +80,7 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _ * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeDatasetCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeDocumentClassificationJobCommand.ts b/clients/client-comprehend/src/commands/DescribeDocumentClassificationJobCommand.ts index 92961bec78297..1a4fa9b24433a 100644 --- a/clients/client-comprehend/src/commands/DescribeDocumentClassificationJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeDocumentClassificationJobCommand.ts @@ -111,6 +111,7 @@ export interface DescribeDocumentClassificationJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeDocumentClassificationJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeDocumentClassifierCommand.ts b/clients/client-comprehend/src/commands/DescribeDocumentClassifierCommand.ts index 7c1a8dada567d..293182c7ddaf4 100644 --- a/clients/client-comprehend/src/commands/DescribeDocumentClassifierCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeDocumentClassifierCommand.ts @@ -145,6 +145,7 @@ export interface DescribeDocumentClassifierCommandOutput extends DescribeDocumen * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeDocumentClassifierCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeDominantLanguageDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribeDominantLanguageDetectionJobCommand.ts index 6ecd07fa239e3..e310774a8fdb2 100644 --- a/clients/client-comprehend/src/commands/DescribeDominantLanguageDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeDominantLanguageDetectionJobCommand.ts @@ -109,6 +109,7 @@ export interface DescribeDominantLanguageDetectionJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeDominantLanguageDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeEndpointCommand.ts b/clients/client-comprehend/src/commands/DescribeEndpointCommand.ts index 0a09e4b52844d..8a06dd7aa6a25 100644 --- a/clients/client-comprehend/src/commands/DescribeEndpointCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeEndpointCommand.ts @@ -82,6 +82,7 @@ export interface DescribeEndpointCommandOutput extends DescribeEndpointResponse, * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeEndpointCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeEntitiesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribeEntitiesDetectionJobCommand.ts index e78353aeb8573..dec37ad932c8b 100644 --- a/clients/client-comprehend/src/commands/DescribeEntitiesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeEntitiesDetectionJobCommand.ts @@ -109,6 +109,7 @@ export interface DescribeEntitiesDetectionJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeEntitiesDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeEntityRecognizerCommand.ts b/clients/client-comprehend/src/commands/DescribeEntityRecognizerCommand.ts index ab16579d1f277..5cf32d43052b9 100644 --- a/clients/client-comprehend/src/commands/DescribeEntityRecognizerCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeEntityRecognizerCommand.ts @@ -150,6 +150,7 @@ export interface DescribeEntityRecognizerCommandOutput extends DescribeEntityRec * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeEntityRecognizerCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeEventsDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribeEventsDetectionJobCommand.ts index bf4c28c57719d..e8a55aaef0edf 100644 --- a/clients/client-comprehend/src/commands/DescribeEventsDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeEventsDetectionJobCommand.ts @@ -95,6 +95,7 @@ export interface DescribeEventsDetectionJobCommandOutput extends DescribeEventsD * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeEventsDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeFlywheelCommand.ts b/clients/client-comprehend/src/commands/DescribeFlywheelCommand.ts index 07a8b7e70f775..ae7b0bd12f08f 100644 --- a/clients/client-comprehend/src/commands/DescribeFlywheelCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeFlywheelCommand.ts @@ -108,6 +108,7 @@ export interface DescribeFlywheelCommandOutput extends DescribeFlywheelResponse, * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeFlywheelCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeFlywheelIterationCommand.ts b/clients/client-comprehend/src/commands/DescribeFlywheelIterationCommand.ts index f909d217b870a..cfd3b1f702db1 100644 --- a/clients/client-comprehend/src/commands/DescribeFlywheelIterationCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeFlywheelIterationCommand.ts @@ -92,6 +92,7 @@ export interface DescribeFlywheelIterationCommandOutput extends DescribeFlywheel * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeFlywheelIterationCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeKeyPhrasesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribeKeyPhrasesDetectionJobCommand.ts index 4d628bb0c598e..0d268634f9624 100644 --- a/clients/client-comprehend/src/commands/DescribeKeyPhrasesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeKeyPhrasesDetectionJobCommand.ts @@ -107,6 +107,7 @@ export interface DescribeKeyPhrasesDetectionJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeKeyPhrasesDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribePiiEntitiesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribePiiEntitiesDetectionJobCommand.ts index 11717ef3715e4..81802d88df162 100644 --- a/clients/client-comprehend/src/commands/DescribePiiEntitiesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribePiiEntitiesDetectionJobCommand.ts @@ -106,6 +106,7 @@ export interface DescribePiiEntitiesDetectionJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribePiiEntitiesDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeResourcePolicyCommand.ts b/clients/client-comprehend/src/commands/DescribeResourcePolicyCommand.ts index 77cd278758908..34c69d6105a1e 100644 --- a/clients/client-comprehend/src/commands/DescribeResourcePolicyCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeResourcePolicyCommand.ts @@ -68,6 +68,7 @@ export interface DescribeResourcePolicyCommandOutput extends DescribeResourcePol * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeResourcePolicyCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeSentimentDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribeSentimentDetectionJobCommand.ts index 16a7955f55b43..fdfeb7b96ff66 100644 --- a/clients/client-comprehend/src/commands/DescribeSentimentDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeSentimentDetectionJobCommand.ts @@ -107,6 +107,7 @@ export interface DescribeSentimentDetectionJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeSentimentDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeTargetedSentimentDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribeTargetedSentimentDetectionJobCommand.ts index 5442dbe5565da..88592783bae85 100644 --- a/clients/client-comprehend/src/commands/DescribeTargetedSentimentDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeTargetedSentimentDetectionJobCommand.ts @@ -111,6 +111,7 @@ export interface DescribeTargetedSentimentDetectionJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeTargetedSentimentDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DescribeTopicsDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribeTopicsDetectionJobCommand.ts index 8f5590a3d8220..7e7ec273e8a3a 100644 --- a/clients/client-comprehend/src/commands/DescribeTopicsDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeTopicsDetectionJobCommand.ts @@ -102,6 +102,7 @@ export interface DescribeTopicsDetectionJobCommandOutput extends DescribeTopicsD * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DescribeTopicsDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DetectDominantLanguageCommand.ts b/clients/client-comprehend/src/commands/DetectDominantLanguageCommand.ts index 663149df9f0b4..6742aae02bd1b 100644 --- a/clients/client-comprehend/src/commands/DetectDominantLanguageCommand.ts +++ b/clients/client-comprehend/src/commands/DetectDominantLanguageCommand.ts @@ -75,6 +75,7 @@ export interface DetectDominantLanguageCommandOutput extends DetectDominantLangu * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DetectDominantLanguageCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DetectEntitiesCommand.ts b/clients/client-comprehend/src/commands/DetectEntitiesCommand.ts index 4f6f898e7064f..6b1a926692e93 100644 --- a/clients/client-comprehend/src/commands/DetectEntitiesCommand.ts +++ b/clients/client-comprehend/src/commands/DetectEntitiesCommand.ts @@ -177,6 +177,7 @@ export interface DetectEntitiesCommandOutput extends DetectEntitiesResponse, __M * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DetectEntitiesCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DetectKeyPhrasesCommand.ts b/clients/client-comprehend/src/commands/DetectKeyPhrasesCommand.ts index 43450160015bc..42cf2b8a7d091 100644 --- a/clients/client-comprehend/src/commands/DetectKeyPhrasesCommand.ts +++ b/clients/client-comprehend/src/commands/DetectKeyPhrasesCommand.ts @@ -82,6 +82,7 @@ export interface DetectKeyPhrasesCommandOutput extends DetectKeyPhrasesResponse, * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DetectKeyPhrasesCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DetectPiiEntitiesCommand.ts b/clients/client-comprehend/src/commands/DetectPiiEntitiesCommand.ts index 5e936f8330546..484268e3a3bce 100644 --- a/clients/client-comprehend/src/commands/DetectPiiEntitiesCommand.ts +++ b/clients/client-comprehend/src/commands/DetectPiiEntitiesCommand.ts @@ -78,6 +78,7 @@ export interface DetectPiiEntitiesCommandOutput extends DetectPiiEntitiesRespons * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DetectPiiEntitiesCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DetectSentimentCommand.ts b/clients/client-comprehend/src/commands/DetectSentimentCommand.ts index c6980c024d6b1..57cc7a1361e89 100644 --- a/clients/client-comprehend/src/commands/DetectSentimentCommand.ts +++ b/clients/client-comprehend/src/commands/DetectSentimentCommand.ts @@ -82,6 +82,7 @@ export interface DetectSentimentCommandOutput extends DetectSentimentResponse, _ * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DetectSentimentCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DetectSyntaxCommand.ts b/clients/client-comprehend/src/commands/DetectSyntaxCommand.ts index abe8231bd78e8..514dfd492497a 100644 --- a/clients/client-comprehend/src/commands/DetectSyntaxCommand.ts +++ b/clients/client-comprehend/src/commands/DetectSyntaxCommand.ts @@ -89,6 +89,7 @@ export interface DetectSyntaxCommandOutput extends DetectSyntaxResponse, __Metad * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DetectSyntaxCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DetectTargetedSentimentCommand.ts b/clients/client-comprehend/src/commands/DetectTargetedSentimentCommand.ts index 6977288f90804..e9cbc844582f5 100644 --- a/clients/client-comprehend/src/commands/DetectTargetedSentimentCommand.ts +++ b/clients/client-comprehend/src/commands/DetectTargetedSentimentCommand.ts @@ -101,6 +101,7 @@ export interface DetectTargetedSentimentCommandOutput extends DetectTargetedSent * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DetectTargetedSentimentCommand extends $Command diff --git a/clients/client-comprehend/src/commands/DetectToxicContentCommand.ts b/clients/client-comprehend/src/commands/DetectToxicContentCommand.ts index 4e8a8e81d0f4e..3e37f08975747 100644 --- a/clients/client-comprehend/src/commands/DetectToxicContentCommand.ts +++ b/clients/client-comprehend/src/commands/DetectToxicContentCommand.ts @@ -91,6 +91,7 @@ export interface DetectToxicContentCommandOutput extends DetectToxicContentRespo * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class DetectToxicContentCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ImportModelCommand.ts b/clients/client-comprehend/src/commands/ImportModelCommand.ts index 82fd59cb7772b..0e7e09889add8 100644 --- a/clients/client-comprehend/src/commands/ImportModelCommand.ts +++ b/clients/client-comprehend/src/commands/ImportModelCommand.ts @@ -103,6 +103,7 @@ export interface ImportModelCommandOutput extends ImportModelResponse, __Metadat * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ImportModelCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListDatasetsCommand.ts b/clients/client-comprehend/src/commands/ListDatasetsCommand.ts index 6fa287768a28e..97b9d5dcfab1f 100644 --- a/clients/client-comprehend/src/commands/ListDatasetsCommand.ts +++ b/clients/client-comprehend/src/commands/ListDatasetsCommand.ts @@ -94,6 +94,7 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListDatasetsCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListDocumentClassificationJobsCommand.ts b/clients/client-comprehend/src/commands/ListDocumentClassificationJobsCommand.ts index 4dcf6db8f3b85..bd7c33909f07a 100644 --- a/clients/client-comprehend/src/commands/ListDocumentClassificationJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListDocumentClassificationJobsCommand.ts @@ -118,6 +118,7 @@ export interface ListDocumentClassificationJobsCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListDocumentClassificationJobsCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListDocumentClassifierSummariesCommand.ts b/clients/client-comprehend/src/commands/ListDocumentClassifierSummariesCommand.ts index a297e0ff6a3c7..f5be6411e2134 100644 --- a/clients/client-comprehend/src/commands/ListDocumentClassifierSummariesCommand.ts +++ b/clients/client-comprehend/src/commands/ListDocumentClassifierSummariesCommand.ts @@ -79,6 +79,7 @@ export interface ListDocumentClassifierSummariesCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListDocumentClassifierSummariesCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListDocumentClassifiersCommand.ts b/clients/client-comprehend/src/commands/ListDocumentClassifiersCommand.ts index 8c9802bcb09de..5d25f3197c82a 100644 --- a/clients/client-comprehend/src/commands/ListDocumentClassifiersCommand.ts +++ b/clients/client-comprehend/src/commands/ListDocumentClassifiersCommand.ts @@ -156,6 +156,7 @@ export interface ListDocumentClassifiersCommandOutput extends ListDocumentClassi * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListDocumentClassifiersCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListDominantLanguageDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListDominantLanguageDetectionJobsCommand.ts index 8f3c5b317f2e2..27af126291686 100644 --- a/clients/client-comprehend/src/commands/ListDominantLanguageDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListDominantLanguageDetectionJobsCommand.ts @@ -119,6 +119,7 @@ export interface ListDominantLanguageDetectionJobsCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListDominantLanguageDetectionJobsCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListEndpointsCommand.ts b/clients/client-comprehend/src/commands/ListEndpointsCommand.ts index a9b39b0ddde3c..1ba7b700ba686 100644 --- a/clients/client-comprehend/src/commands/ListEndpointsCommand.ts +++ b/clients/client-comprehend/src/commands/ListEndpointsCommand.ts @@ -88,6 +88,7 @@ export interface ListEndpointsCommandOutput extends ListEndpointsResponse, __Met * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListEndpointsCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListEntitiesDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListEntitiesDetectionJobsCommand.ts index df0aeaf740be9..bbbf11dc6a4ae 100644 --- a/clients/client-comprehend/src/commands/ListEntitiesDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListEntitiesDetectionJobsCommand.ts @@ -114,6 +114,7 @@ export interface ListEntitiesDetectionJobsCommandOutput extends ListEntitiesDete * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListEntitiesDetectionJobsCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListEntityRecognizerSummariesCommand.ts b/clients/client-comprehend/src/commands/ListEntityRecognizerSummariesCommand.ts index 6a432cb4aa480..7d64d1c9faae5 100644 --- a/clients/client-comprehend/src/commands/ListEntityRecognizerSummariesCommand.ts +++ b/clients/client-comprehend/src/commands/ListEntityRecognizerSummariesCommand.ts @@ -79,6 +79,7 @@ export interface ListEntityRecognizerSummariesCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListEntityRecognizerSummariesCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListEntityRecognizersCommand.ts b/clients/client-comprehend/src/commands/ListEntityRecognizersCommand.ts index 2140739f3cea4..4d95d07348a1e 100644 --- a/clients/client-comprehend/src/commands/ListEntityRecognizersCommand.ts +++ b/clients/client-comprehend/src/commands/ListEntityRecognizersCommand.ts @@ -165,6 +165,7 @@ export interface ListEntityRecognizersCommandOutput extends ListEntityRecognizer * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListEntityRecognizersCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListEventsDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListEventsDetectionJobsCommand.ts index 4d9487776c565..f21259556bba0 100644 --- a/clients/client-comprehend/src/commands/ListEventsDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListEventsDetectionJobsCommand.ts @@ -106,6 +106,7 @@ export interface ListEventsDetectionJobsCommandOutput extends ListEventsDetectio * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListEventsDetectionJobsCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListFlywheelIterationHistoryCommand.ts b/clients/client-comprehend/src/commands/ListFlywheelIterationHistoryCommand.ts index 9161a8d730f64..beb1cf5f6ba2a 100644 --- a/clients/client-comprehend/src/commands/ListFlywheelIterationHistoryCommand.ts +++ b/clients/client-comprehend/src/commands/ListFlywheelIterationHistoryCommand.ts @@ -109,6 +109,7 @@ export interface ListFlywheelIterationHistoryCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListFlywheelIterationHistoryCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListFlywheelsCommand.ts b/clients/client-comprehend/src/commands/ListFlywheelsCommand.ts index ce061c6b18e10..bf4a4e33004b2 100644 --- a/clients/client-comprehend/src/commands/ListFlywheelsCommand.ts +++ b/clients/client-comprehend/src/commands/ListFlywheelsCommand.ts @@ -87,6 +87,7 @@ export interface ListFlywheelsCommandOutput extends ListFlywheelsResponse, __Met * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListFlywheelsCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListKeyPhrasesDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListKeyPhrasesDetectionJobsCommand.ts index 4193351d49591..c868807044efd 100644 --- a/clients/client-comprehend/src/commands/ListKeyPhrasesDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListKeyPhrasesDetectionJobsCommand.ts @@ -114,6 +114,7 @@ export interface ListKeyPhrasesDetectionJobsCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListKeyPhrasesDetectionJobsCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListPiiEntitiesDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListPiiEntitiesDetectionJobsCommand.ts index 2b3d5babe795c..b457636e44b17 100644 --- a/clients/client-comprehend/src/commands/ListPiiEntitiesDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListPiiEntitiesDetectionJobsCommand.ts @@ -116,6 +116,7 @@ export interface ListPiiEntitiesDetectionJobsCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListPiiEntitiesDetectionJobsCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListSentimentDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListSentimentDetectionJobsCommand.ts index 374742cda1dd5..2e6e4854429e5 100644 --- a/clients/client-comprehend/src/commands/ListSentimentDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListSentimentDetectionJobsCommand.ts @@ -112,6 +112,7 @@ export interface ListSentimentDetectionJobsCommandOutput extends ListSentimentDe * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListSentimentDetectionJobsCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListTagsForResourceCommand.ts b/clients/client-comprehend/src/commands/ListTagsForResourceCommand.ts index b79dc571a44bd..83ff6f03397bd 100644 --- a/clients/client-comprehend/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-comprehend/src/commands/ListTagsForResourceCommand.ts @@ -70,6 +70,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListTargetedSentimentDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListTargetedSentimentDetectionJobsCommand.ts index 9e9e5ee98f9e1..e762cb0b36d9d 100644 --- a/clients/client-comprehend/src/commands/ListTargetedSentimentDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListTargetedSentimentDetectionJobsCommand.ts @@ -120,6 +120,7 @@ export interface ListTargetedSentimentDetectionJobsCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListTargetedSentimentDetectionJobsCommand extends $Command diff --git a/clients/client-comprehend/src/commands/ListTopicsDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListTopicsDetectionJobsCommand.ts index cf4f53a545b2a..db34fb497de8c 100644 --- a/clients/client-comprehend/src/commands/ListTopicsDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListTopicsDetectionJobsCommand.ts @@ -112,6 +112,7 @@ export interface ListTopicsDetectionJobsCommandOutput extends ListTopicsDetectio * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class ListTopicsDetectionJobsCommand extends $Command diff --git a/clients/client-comprehend/src/commands/PutResourcePolicyCommand.ts b/clients/client-comprehend/src/commands/PutResourcePolicyCommand.ts index 376c9ffe320f9..3a3aadbb55b70 100644 --- a/clients/client-comprehend/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-comprehend/src/commands/PutResourcePolicyCommand.ts @@ -68,6 +68,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StartDocumentClassificationJobCommand.ts b/clients/client-comprehend/src/commands/StartDocumentClassificationJobCommand.ts index 256dc4085ff45..55177afabab06 100644 --- a/clients/client-comprehend/src/commands/StartDocumentClassificationJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartDocumentClassificationJobCommand.ts @@ -128,6 +128,7 @@ export interface StartDocumentClassificationJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StartDocumentClassificationJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StartDominantLanguageDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartDominantLanguageDetectionJobCommand.ts index e57616a73e941..ab540727cadfc 100644 --- a/clients/client-comprehend/src/commands/StartDominantLanguageDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartDominantLanguageDetectionJobCommand.ts @@ -121,6 +121,7 @@ export interface StartDominantLanguageDetectionJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StartDominantLanguageDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StartEntitiesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartEntitiesDetectionJobCommand.ts index 0774c110faed6..789c45beb9b96 100644 --- a/clients/client-comprehend/src/commands/StartEntitiesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartEntitiesDetectionJobCommand.ts @@ -126,6 +126,7 @@ export interface StartEntitiesDetectionJobCommandOutput extends StartEntitiesDet * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StartEntitiesDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StartEventsDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartEventsDetectionJobCommand.ts index a5a5348a56dd7..ce42849e1b9d7 100644 --- a/clients/client-comprehend/src/commands/StartEventsDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartEventsDetectionJobCommand.ts @@ -106,6 +106,7 @@ export interface StartEventsDetectionJobCommandOutput extends StartEventsDetecti * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StartEventsDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StartFlywheelIterationCommand.ts b/clients/client-comprehend/src/commands/StartFlywheelIterationCommand.ts index f3c3cc81376bb..f47496f589816 100644 --- a/clients/client-comprehend/src/commands/StartFlywheelIterationCommand.ts +++ b/clients/client-comprehend/src/commands/StartFlywheelIterationCommand.ts @@ -75,6 +75,7 @@ export interface StartFlywheelIterationCommandOutput extends StartFlywheelIterat * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StartFlywheelIterationCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StartKeyPhrasesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartKeyPhrasesDetectionJobCommand.ts index d24a969419de6..c4b78a9cacf03 100644 --- a/clients/client-comprehend/src/commands/StartKeyPhrasesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartKeyPhrasesDetectionJobCommand.ts @@ -116,6 +116,7 @@ export interface StartKeyPhrasesDetectionJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StartKeyPhrasesDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StartPiiEntitiesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartPiiEntitiesDetectionJobCommand.ts index 785f6a80912a7..37ca970c68637 100644 --- a/clients/client-comprehend/src/commands/StartPiiEntitiesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartPiiEntitiesDetectionJobCommand.ts @@ -116,6 +116,7 @@ export interface StartPiiEntitiesDetectionJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StartPiiEntitiesDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StartSentimentDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartSentimentDetectionJobCommand.ts index 7e70d9dd709e0..82ac31c1db252 100644 --- a/clients/client-comprehend/src/commands/StartSentimentDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartSentimentDetectionJobCommand.ts @@ -114,6 +114,7 @@ export interface StartSentimentDetectionJobCommandOutput extends StartSentimentD * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StartSentimentDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StartTargetedSentimentDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartTargetedSentimentDetectionJobCommand.ts index 199d308f78589..ba41e43c9185a 100644 --- a/clients/client-comprehend/src/commands/StartTargetedSentimentDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartTargetedSentimentDetectionJobCommand.ts @@ -122,6 +122,7 @@ export interface StartTargetedSentimentDetectionJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StartTargetedSentimentDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StartTopicsDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartTopicsDetectionJobCommand.ts index 50bc2967356cd..f39ffab70a4e1 100644 --- a/clients/client-comprehend/src/commands/StartTopicsDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartTopicsDetectionJobCommand.ts @@ -113,6 +113,7 @@ export interface StartTopicsDetectionJobCommandOutput extends StartTopicsDetecti * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StartTopicsDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StopDominantLanguageDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StopDominantLanguageDetectionJobCommand.ts index 49d2902ac7d08..c378aaea7d9d8 100644 --- a/clients/client-comprehend/src/commands/StopDominantLanguageDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StopDominantLanguageDetectionJobCommand.ts @@ -79,6 +79,7 @@ export interface StopDominantLanguageDetectionJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StopDominantLanguageDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StopEntitiesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StopEntitiesDetectionJobCommand.ts index 4739d88351a5c..c53e9ee6f1f5d 100644 --- a/clients/client-comprehend/src/commands/StopEntitiesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StopEntitiesDetectionJobCommand.ts @@ -74,6 +74,7 @@ export interface StopEntitiesDetectionJobCommandOutput extends StopEntitiesDetec * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StopEntitiesDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StopEventsDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StopEventsDetectionJobCommand.ts index 6403052838468..dbeb0bd2244f3 100644 --- a/clients/client-comprehend/src/commands/StopEventsDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StopEventsDetectionJobCommand.ts @@ -65,6 +65,7 @@ export interface StopEventsDetectionJobCommandOutput extends StopEventsDetection * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StopEventsDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StopKeyPhrasesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StopKeyPhrasesDetectionJobCommand.ts index 9a492003e5b7e..1747cc86691d2 100644 --- a/clients/client-comprehend/src/commands/StopKeyPhrasesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StopKeyPhrasesDetectionJobCommand.ts @@ -74,6 +74,7 @@ export interface StopKeyPhrasesDetectionJobCommandOutput extends StopKeyPhrasesD * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StopKeyPhrasesDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StopPiiEntitiesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StopPiiEntitiesDetectionJobCommand.ts index a719371d702ed..e46d8423c0bf3 100644 --- a/clients/client-comprehend/src/commands/StopPiiEntitiesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StopPiiEntitiesDetectionJobCommand.ts @@ -67,6 +67,7 @@ export interface StopPiiEntitiesDetectionJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StopPiiEntitiesDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StopSentimentDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StopSentimentDetectionJobCommand.ts index ac3218da7a07a..d7b100648b4e8 100644 --- a/clients/client-comprehend/src/commands/StopSentimentDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StopSentimentDetectionJobCommand.ts @@ -74,6 +74,7 @@ export interface StopSentimentDetectionJobCommandOutput extends StopSentimentDet * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StopSentimentDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StopTargetedSentimentDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StopTargetedSentimentDetectionJobCommand.ts index e5d6a9b7e371f..015a5ff3933fa 100644 --- a/clients/client-comprehend/src/commands/StopTargetedSentimentDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StopTargetedSentimentDetectionJobCommand.ts @@ -82,6 +82,7 @@ export interface StopTargetedSentimentDetectionJobCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StopTargetedSentimentDetectionJobCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StopTrainingDocumentClassifierCommand.ts b/clients/client-comprehend/src/commands/StopTrainingDocumentClassifierCommand.ts index e1db258e476f9..74ab68f7daa0c 100644 --- a/clients/client-comprehend/src/commands/StopTrainingDocumentClassifierCommand.ts +++ b/clients/client-comprehend/src/commands/StopTrainingDocumentClassifierCommand.ts @@ -75,6 +75,7 @@ export interface StopTrainingDocumentClassifierCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StopTrainingDocumentClassifierCommand extends $Command diff --git a/clients/client-comprehend/src/commands/StopTrainingEntityRecognizerCommand.ts b/clients/client-comprehend/src/commands/StopTrainingEntityRecognizerCommand.ts index 325738aa7c961..5983ed932b838 100644 --- a/clients/client-comprehend/src/commands/StopTrainingEntityRecognizerCommand.ts +++ b/clients/client-comprehend/src/commands/StopTrainingEntityRecognizerCommand.ts @@ -75,6 +75,7 @@ export interface StopTrainingEntityRecognizerCommandOutput * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class StopTrainingEntityRecognizerCommand extends $Command diff --git a/clients/client-comprehend/src/commands/TagResourceCommand.ts b/clients/client-comprehend/src/commands/TagResourceCommand.ts index 39bd5ed5e8c0f..4184ae463fc25 100644 --- a/clients/client-comprehend/src/commands/TagResourceCommand.ts +++ b/clients/client-comprehend/src/commands/TagResourceCommand.ts @@ -80,6 +80,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-comprehend/src/commands/UntagResourceCommand.ts b/clients/client-comprehend/src/commands/UntagResourceCommand.ts index 1513fd61f64af..75f35afc79676 100644 --- a/clients/client-comprehend/src/commands/UntagResourceCommand.ts +++ b/clients/client-comprehend/src/commands/UntagResourceCommand.ts @@ -73,6 +73,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-comprehend/src/commands/UpdateEndpointCommand.ts b/clients/client-comprehend/src/commands/UpdateEndpointCommand.ts index 8e565fc08fc92..6caf230abe660 100644 --- a/clients/client-comprehend/src/commands/UpdateEndpointCommand.ts +++ b/clients/client-comprehend/src/commands/UpdateEndpointCommand.ts @@ -84,6 +84,7 @@ export interface UpdateEndpointCommandOutput extends UpdateEndpointResponse, __M * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class UpdateEndpointCommand extends $Command diff --git a/clients/client-comprehend/src/commands/UpdateFlywheelCommand.ts b/clients/client-comprehend/src/commands/UpdateFlywheelCommand.ts index c150115d42861..c5e4ca3ce512e 100644 --- a/clients/client-comprehend/src/commands/UpdateFlywheelCommand.ts +++ b/clients/client-comprehend/src/commands/UpdateFlywheelCommand.ts @@ -125,6 +125,7 @@ export interface UpdateFlywheelCommandOutput extends UpdateFlywheelResponse, __M * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* + * * @public */ export class UpdateFlywheelCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/DescribeEntitiesDetectionV2JobCommand.ts b/clients/client-comprehendmedical/src/commands/DescribeEntitiesDetectionV2JobCommand.ts index 3dae3672dd590..15786b4fca3a4 100644 --- a/clients/client-comprehendmedical/src/commands/DescribeEntitiesDetectionV2JobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/DescribeEntitiesDetectionV2JobCommand.ts @@ -102,6 +102,7 @@ export interface DescribeEntitiesDetectionV2JobCommandOutput * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class DescribeEntitiesDetectionV2JobCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/DescribeICD10CMInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/DescribeICD10CMInferenceJobCommand.ts index 5f16209c09ff8..2a25f575c6e90 100644 --- a/clients/client-comprehendmedical/src/commands/DescribeICD10CMInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/DescribeICD10CMInferenceJobCommand.ts @@ -99,6 +99,7 @@ export interface DescribeICD10CMInferenceJobCommandOutput * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class DescribeICD10CMInferenceJobCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/DescribePHIDetectionJobCommand.ts b/clients/client-comprehendmedical/src/commands/DescribePHIDetectionJobCommand.ts index 2f7634d608687..26ebbf4efa5a3 100644 --- a/clients/client-comprehendmedical/src/commands/DescribePHIDetectionJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/DescribePHIDetectionJobCommand.ts @@ -97,6 +97,7 @@ export interface DescribePHIDetectionJobCommandOutput extends DescribePHIDetecti * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class DescribePHIDetectionJobCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/DescribeRxNormInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/DescribeRxNormInferenceJobCommand.ts index 48abbcc784124..1ce0812ef103a 100644 --- a/clients/client-comprehendmedical/src/commands/DescribeRxNormInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/DescribeRxNormInferenceJobCommand.ts @@ -97,6 +97,7 @@ export interface DescribeRxNormInferenceJobCommandOutput extends DescribeRxNormI * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class DescribeRxNormInferenceJobCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/DescribeSNOMEDCTInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/DescribeSNOMEDCTInferenceJobCommand.ts index c9bab87741559..4d6af707215f7 100644 --- a/clients/client-comprehendmedical/src/commands/DescribeSNOMEDCTInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/DescribeSNOMEDCTInferenceJobCommand.ts @@ -103,6 +103,7 @@ export interface DescribeSNOMEDCTInferenceJobCommandOutput * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class DescribeSNOMEDCTInferenceJobCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/DetectEntitiesCommand.ts b/clients/client-comprehendmedical/src/commands/DetectEntitiesCommand.ts index b394ecfa19ba3..57a6c2812c1df 100644 --- a/clients/client-comprehendmedical/src/commands/DetectEntitiesCommand.ts +++ b/clients/client-comprehendmedical/src/commands/DetectEntitiesCommand.ts @@ -142,6 +142,7 @@ export interface DetectEntitiesCommandOutput extends DetectEntitiesResponse, __M * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class DetectEntitiesCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/DetectEntitiesV2Command.ts b/clients/client-comprehendmedical/src/commands/DetectEntitiesV2Command.ts index ab2748d718231..0c92fbdcf83fb 100644 --- a/clients/client-comprehendmedical/src/commands/DetectEntitiesV2Command.ts +++ b/clients/client-comprehendmedical/src/commands/DetectEntitiesV2Command.ts @@ -147,6 +147,7 @@ export interface DetectEntitiesV2CommandOutput extends DetectEntitiesV2Response, * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class DetectEntitiesV2Command extends $Command diff --git a/clients/client-comprehendmedical/src/commands/DetectPHICommand.ts b/clients/client-comprehendmedical/src/commands/DetectPHICommand.ts index 148fd54b12aa0..e88e15beb6c0a 100644 --- a/clients/client-comprehendmedical/src/commands/DetectPHICommand.ts +++ b/clients/client-comprehendmedical/src/commands/DetectPHICommand.ts @@ -122,6 +122,7 @@ export interface DetectPHICommandOutput extends DetectPHIResponse, __MetadataBea * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class DetectPHICommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/InferICD10CMCommand.ts b/clients/client-comprehendmedical/src/commands/InferICD10CMCommand.ts index e632584d04573..391c67b79ca17 100644 --- a/clients/client-comprehendmedical/src/commands/InferICD10CMCommand.ts +++ b/clients/client-comprehendmedical/src/commands/InferICD10CMCommand.ts @@ -130,6 +130,7 @@ export interface InferICD10CMCommandOutput extends InferICD10CMResponse, __Metad * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class InferICD10CMCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/InferRxNormCommand.ts b/clients/client-comprehendmedical/src/commands/InferRxNormCommand.ts index 5bdd723506bc5..6c7fd1847fbcc 100644 --- a/clients/client-comprehendmedical/src/commands/InferRxNormCommand.ts +++ b/clients/client-comprehendmedical/src/commands/InferRxNormCommand.ts @@ -127,6 +127,7 @@ export interface InferRxNormCommandOutput extends InferRxNormResponse, __Metadat * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class InferRxNormCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/InferSNOMEDCTCommand.ts b/clients/client-comprehendmedical/src/commands/InferSNOMEDCTCommand.ts index a1f3d0c5eb4ce..c29c027783c57 100644 --- a/clients/client-comprehendmedical/src/commands/InferSNOMEDCTCommand.ts +++ b/clients/client-comprehendmedical/src/commands/InferSNOMEDCTCommand.ts @@ -143,6 +143,7 @@ export interface InferSNOMEDCTCommandOutput extends InferSNOMEDCTResponse, __Met * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class InferSNOMEDCTCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/ListEntitiesDetectionV2JobsCommand.ts b/clients/client-comprehendmedical/src/commands/ListEntitiesDetectionV2JobsCommand.ts index 5d89454d7416f..e783b0a6a2931 100644 --- a/clients/client-comprehendmedical/src/commands/ListEntitiesDetectionV2JobsCommand.ts +++ b/clients/client-comprehendmedical/src/commands/ListEntitiesDetectionV2JobsCommand.ts @@ -108,6 +108,7 @@ export interface ListEntitiesDetectionV2JobsCommandOutput * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class ListEntitiesDetectionV2JobsCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/ListICD10CMInferenceJobsCommand.ts b/clients/client-comprehendmedical/src/commands/ListICD10CMInferenceJobsCommand.ts index d9b09dfc58d56..883b667ba6e98 100644 --- a/clients/client-comprehendmedical/src/commands/ListICD10CMInferenceJobsCommand.ts +++ b/clients/client-comprehendmedical/src/commands/ListICD10CMInferenceJobsCommand.ts @@ -106,6 +106,7 @@ export interface ListICD10CMInferenceJobsCommandOutput extends ListICD10CMInfere * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class ListICD10CMInferenceJobsCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/ListPHIDetectionJobsCommand.ts b/clients/client-comprehendmedical/src/commands/ListPHIDetectionJobsCommand.ts index f01761a080618..f3b3d0abd1736 100644 --- a/clients/client-comprehendmedical/src/commands/ListPHIDetectionJobsCommand.ts +++ b/clients/client-comprehendmedical/src/commands/ListPHIDetectionJobsCommand.ts @@ -107,6 +107,7 @@ export interface ListPHIDetectionJobsCommandOutput extends ListPHIDetectionJobsR * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class ListPHIDetectionJobsCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/ListRxNormInferenceJobsCommand.ts b/clients/client-comprehendmedical/src/commands/ListRxNormInferenceJobsCommand.ts index a53619f90e3f0..79277e806cc3a 100644 --- a/clients/client-comprehendmedical/src/commands/ListRxNormInferenceJobsCommand.ts +++ b/clients/client-comprehendmedical/src/commands/ListRxNormInferenceJobsCommand.ts @@ -106,6 +106,7 @@ export interface ListRxNormInferenceJobsCommandOutput extends ListRxNormInferenc * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class ListRxNormInferenceJobsCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/ListSNOMEDCTInferenceJobsCommand.ts b/clients/client-comprehendmedical/src/commands/ListSNOMEDCTInferenceJobsCommand.ts index 8ad74982165ee..36378d0476676 100644 --- a/clients/client-comprehendmedical/src/commands/ListSNOMEDCTInferenceJobsCommand.ts +++ b/clients/client-comprehendmedical/src/commands/ListSNOMEDCTInferenceJobsCommand.ts @@ -108,6 +108,7 @@ export interface ListSNOMEDCTInferenceJobsCommandOutput extends ListSNOMEDCTInfe * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class ListSNOMEDCTInferenceJobsCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/StartEntitiesDetectionV2JobCommand.ts b/clients/client-comprehendmedical/src/commands/StartEntitiesDetectionV2JobCommand.ts index 1d59b8a3e35f0..968558ddc32ae 100644 --- a/clients/client-comprehendmedical/src/commands/StartEntitiesDetectionV2JobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StartEntitiesDetectionV2JobCommand.ts @@ -90,6 +90,7 @@ export interface StartEntitiesDetectionV2JobCommandOutput * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class StartEntitiesDetectionV2JobCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/StartICD10CMInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/StartICD10CMInferenceJobCommand.ts index 2d4df34d4d31c..f97106b27e3ef 100644 --- a/clients/client-comprehendmedical/src/commands/StartICD10CMInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StartICD10CMInferenceJobCommand.ts @@ -89,6 +89,7 @@ export interface StartICD10CMInferenceJobCommandOutput extends StartICD10CMInfer * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class StartICD10CMInferenceJobCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/StartPHIDetectionJobCommand.ts b/clients/client-comprehendmedical/src/commands/StartPHIDetectionJobCommand.ts index 0f219b894fdc4..6c06b291b11c3 100644 --- a/clients/client-comprehendmedical/src/commands/StartPHIDetectionJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StartPHIDetectionJobCommand.ts @@ -88,6 +88,7 @@ export interface StartPHIDetectionJobCommandOutput extends StartPHIDetectionJobR * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class StartPHIDetectionJobCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/StartRxNormInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/StartRxNormInferenceJobCommand.ts index 80d2c227c7130..ffc005e19c837 100644 --- a/clients/client-comprehendmedical/src/commands/StartRxNormInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StartRxNormInferenceJobCommand.ts @@ -89,6 +89,7 @@ export interface StartRxNormInferenceJobCommandOutput extends StartRxNormInferen * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class StartRxNormInferenceJobCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/StartSNOMEDCTInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/StartSNOMEDCTInferenceJobCommand.ts index c0ba22ce9bf9b..344c61c33ad12 100644 --- a/clients/client-comprehendmedical/src/commands/StartSNOMEDCTInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StartSNOMEDCTInferenceJobCommand.ts @@ -89,6 +89,7 @@ export interface StartSNOMEDCTInferenceJobCommandOutput extends StartSNOMEDCTInf * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class StartSNOMEDCTInferenceJobCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/StopEntitiesDetectionV2JobCommand.ts b/clients/client-comprehendmedical/src/commands/StopEntitiesDetectionV2JobCommand.ts index 8561dc7e7ec0d..a8c300fba41fa 100644 --- a/clients/client-comprehendmedical/src/commands/StopEntitiesDetectionV2JobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StopEntitiesDetectionV2JobCommand.ts @@ -70,6 +70,7 @@ export interface StopEntitiesDetectionV2JobCommandOutput extends StopEntitiesDet * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class StopEntitiesDetectionV2JobCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/StopICD10CMInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/StopICD10CMInferenceJobCommand.ts index 9804631be6f68..8732071e280c5 100644 --- a/clients/client-comprehendmedical/src/commands/StopICD10CMInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StopICD10CMInferenceJobCommand.ts @@ -70,6 +70,7 @@ export interface StopICD10CMInferenceJobCommandOutput extends StopICD10CMInferen * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class StopICD10CMInferenceJobCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/StopPHIDetectionJobCommand.ts b/clients/client-comprehendmedical/src/commands/StopPHIDetectionJobCommand.ts index 1a44bb1c42407..4dfc2a8119601 100644 --- a/clients/client-comprehendmedical/src/commands/StopPHIDetectionJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StopPHIDetectionJobCommand.ts @@ -70,6 +70,7 @@ export interface StopPHIDetectionJobCommandOutput extends StopPHIDetectionJobRes * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class StopPHIDetectionJobCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/StopRxNormInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/StopRxNormInferenceJobCommand.ts index 8e219c7f1eb9e..f0b1e67678f8d 100644 --- a/clients/client-comprehendmedical/src/commands/StopRxNormInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StopRxNormInferenceJobCommand.ts @@ -70,6 +70,7 @@ export interface StopRxNormInferenceJobCommandOutput extends StopRxNormInference * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class StopRxNormInferenceJobCommand extends $Command diff --git a/clients/client-comprehendmedical/src/commands/StopSNOMEDCTInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/StopSNOMEDCTInferenceJobCommand.ts index bfef4484e1c04..a2ae26b9fca75 100644 --- a/clients/client-comprehendmedical/src/commands/StopSNOMEDCTInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StopSNOMEDCTInferenceJobCommand.ts @@ -77,6 +77,7 @@ export interface StopSNOMEDCTInferenceJobCommandOutput extends StopSNOMEDCTInfer * @throws {@link ComprehendMedicalServiceException} *

Base exception class for all service exceptions from ComprehendMedical service.

* + * * @public */ export class StopSNOMEDCTInferenceJobCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/DeleteRecommendationPreferencesCommand.ts b/clients/client-compute-optimizer/src/commands/DeleteRecommendationPreferencesCommand.ts index 13e723becc7a3..36de025ac27d0 100644 --- a/clients/client-compute-optimizer/src/commands/DeleteRecommendationPreferencesCommand.ts +++ b/clients/client-compute-optimizer/src/commands/DeleteRecommendationPreferencesCommand.ts @@ -93,6 +93,7 @@ export interface DeleteRecommendationPreferencesCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class DeleteRecommendationPreferencesCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/DescribeRecommendationExportJobsCommand.ts b/clients/client-compute-optimizer/src/commands/DescribeRecommendationExportJobsCommand.ts index c262ea1edbc6c..3c57e01e19aff 100644 --- a/clients/client-compute-optimizer/src/commands/DescribeRecommendationExportJobsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/DescribeRecommendationExportJobsCommand.ts @@ -117,6 +117,7 @@ export interface DescribeRecommendationExportJobsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class DescribeRecommendationExportJobsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/ExportAutoScalingGroupRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportAutoScalingGroupRecommendationsCommand.ts index d8326263ed71e..2f584eccc96dd 100644 --- a/clients/client-compute-optimizer/src/commands/ExportAutoScalingGroupRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportAutoScalingGroupRecommendationsCommand.ts @@ -123,6 +123,7 @@ export interface ExportAutoScalingGroupRecommendationsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class ExportAutoScalingGroupRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/ExportEBSVolumeRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportEBSVolumeRecommendationsCommand.ts index 2e3c6a3c53de2..6a56dc8ba2852 100644 --- a/clients/client-compute-optimizer/src/commands/ExportEBSVolumeRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportEBSVolumeRecommendationsCommand.ts @@ -114,6 +114,7 @@ export interface ExportEBSVolumeRecommendationsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class ExportEBSVolumeRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/ExportEC2InstanceRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportEC2InstanceRecommendationsCommand.ts index 012e70c9a32f0..d5a0fa57a443c 100644 --- a/clients/client-compute-optimizer/src/commands/ExportEC2InstanceRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportEC2InstanceRecommendationsCommand.ts @@ -119,6 +119,7 @@ export interface ExportEC2InstanceRecommendationsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class ExportEC2InstanceRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/ExportECSServiceRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportECSServiceRecommendationsCommand.ts index 3f92c83b08a93..8189a33fa46cc 100644 --- a/clients/client-compute-optimizer/src/commands/ExportECSServiceRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportECSServiceRecommendationsCommand.ts @@ -116,6 +116,7 @@ export interface ExportECSServiceRecommendationsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class ExportECSServiceRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/ExportIdleRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportIdleRecommendationsCommand.ts index 28409d0cbbffc..fad03bafd7803 100644 --- a/clients/client-compute-optimizer/src/commands/ExportIdleRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportIdleRecommendationsCommand.ts @@ -111,6 +111,7 @@ export interface ExportIdleRecommendationsCommandOutput extends ExportIdleRecomm * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class ExportIdleRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/ExportLambdaFunctionRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportLambdaFunctionRecommendationsCommand.ts index a1d1adcce9f9a..ef525479f7bda 100644 --- a/clients/client-compute-optimizer/src/commands/ExportLambdaFunctionRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportLambdaFunctionRecommendationsCommand.ts @@ -117,6 +117,7 @@ export interface ExportLambdaFunctionRecommendationsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class ExportLambdaFunctionRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/ExportLicenseRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportLicenseRecommendationsCommand.ts index 57da62dc754a6..be745256892df 100644 --- a/clients/client-compute-optimizer/src/commands/ExportLicenseRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportLicenseRecommendationsCommand.ts @@ -116,6 +116,7 @@ export interface ExportLicenseRecommendationsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class ExportLicenseRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/ExportRDSDatabaseRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportRDSDatabaseRecommendationsCommand.ts index c5dded83bad9f..35f9fe2bf1451 100644 --- a/clients/client-compute-optimizer/src/commands/ExportRDSDatabaseRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportRDSDatabaseRecommendationsCommand.ts @@ -121,6 +121,7 @@ export interface ExportRDSDatabaseRecommendationsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class ExportRDSDatabaseRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetAutoScalingGroupRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetAutoScalingGroupRecommendationsCommand.ts index be2c8ace82b9b..9e3a24029b7a5 100644 --- a/clients/client-compute-optimizer/src/commands/GetAutoScalingGroupRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetAutoScalingGroupRecommendationsCommand.ts @@ -245,6 +245,7 @@ export interface GetAutoScalingGroupRecommendationsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetAutoScalingGroupRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetEBSVolumeRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetEBSVolumeRecommendationsCommand.ts index 49635ae38d00c..bb72c2aac5283 100644 --- a/clients/client-compute-optimizer/src/commands/GetEBSVolumeRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetEBSVolumeRecommendationsCommand.ts @@ -174,6 +174,7 @@ export interface GetEBSVolumeRecommendationsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetEBSVolumeRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetEC2InstanceRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetEC2InstanceRecommendationsCommand.ts index 29445071ad6f8..d46ea65fb1d4c 100644 --- a/clients/client-compute-optimizer/src/commands/GetEC2InstanceRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetEC2InstanceRecommendationsCommand.ts @@ -244,6 +244,7 @@ export interface GetEC2InstanceRecommendationsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetEC2InstanceRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetEC2RecommendationProjectedMetricsCommand.ts b/clients/client-compute-optimizer/src/commands/GetEC2RecommendationProjectedMetricsCommand.ts index 7630f119b8d63..dadc3dbbff71f 100644 --- a/clients/client-compute-optimizer/src/commands/GetEC2RecommendationProjectedMetricsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetEC2RecommendationProjectedMetricsCommand.ts @@ -120,6 +120,7 @@ export interface GetEC2RecommendationProjectedMetricsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetEC2RecommendationProjectedMetricsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationProjectedMetricsCommand.ts b/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationProjectedMetricsCommand.ts index 2d309b413e3f9..aa2a81405c583 100644 --- a/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationProjectedMetricsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationProjectedMetricsCommand.ts @@ -114,6 +114,7 @@ export interface GetECSServiceRecommendationProjectedMetricsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetECSServiceRecommendationProjectedMetricsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationsCommand.ts index f28342164eb55..d27f421dc448e 100644 --- a/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationsCommand.ts @@ -202,6 +202,7 @@ export interface GetECSServiceRecommendationsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetECSServiceRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetEffectiveRecommendationPreferencesCommand.ts b/clients/client-compute-optimizer/src/commands/GetEffectiveRecommendationPreferencesCommand.ts index e80ab13f3d516..1fa001a5de4cf 100644 --- a/clients/client-compute-optimizer/src/commands/GetEffectiveRecommendationPreferencesCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetEffectiveRecommendationPreferencesCommand.ts @@ -121,6 +121,7 @@ export interface GetEffectiveRecommendationPreferencesCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetEffectiveRecommendationPreferencesCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusCommand.ts b/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusCommand.ts index 356fb94584681..65bc794bcf975 100644 --- a/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusCommand.ts @@ -80,6 +80,7 @@ export interface GetEnrollmentStatusCommandOutput extends GetEnrollmentStatusRes * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetEnrollmentStatusCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusesForOrganizationCommand.ts b/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusesForOrganizationCommand.ts index f41989aa2b26a..5e994ec60f1d1 100644 --- a/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusesForOrganizationCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusesForOrganizationCommand.ts @@ -101,6 +101,7 @@ export interface GetEnrollmentStatusesForOrganizationCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetEnrollmentStatusesForOrganizationCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetIdleRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetIdleRecommendationsCommand.ts index 634063f245875..368c6337ddcfd 100644 --- a/clients/client-compute-optimizer/src/commands/GetIdleRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetIdleRecommendationsCommand.ts @@ -150,6 +150,7 @@ export interface GetIdleRecommendationsCommandOutput extends GetIdleRecommendati * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetIdleRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetLambdaFunctionRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetLambdaFunctionRecommendationsCommand.ts index bb836258f3c1a..4235c513b1d55 100644 --- a/clients/client-compute-optimizer/src/commands/GetLambdaFunctionRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetLambdaFunctionRecommendationsCommand.ts @@ -165,6 +165,7 @@ export interface GetLambdaFunctionRecommendationsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetLambdaFunctionRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetLicenseRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetLicenseRecommendationsCommand.ts index 12d51f7e1df57..5262f19be1f7c 100644 --- a/clients/client-compute-optimizer/src/commands/GetLicenseRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetLicenseRecommendationsCommand.ts @@ -154,6 +154,7 @@ export interface GetLicenseRecommendationsCommandOutput extends GetLicenseRecomm * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetLicenseRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationProjectedMetricsCommand.ts b/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationProjectedMetricsCommand.ts index 0d1c65c1c11cc..78591ecabc72d 100644 --- a/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationProjectedMetricsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationProjectedMetricsCommand.ts @@ -116,6 +116,7 @@ export interface GetRDSDatabaseRecommendationProjectedMetricsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetRDSDatabaseRecommendationProjectedMetricsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationsCommand.ts index 176fe8043384b..aa11bf47f15a9 100644 --- a/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationsCommand.ts @@ -226,6 +226,7 @@ export interface GetRDSDatabaseRecommendationsCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetRDSDatabaseRecommendationsCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetRecommendationPreferencesCommand.ts b/clients/client-compute-optimizer/src/commands/GetRecommendationPreferencesCommand.ts index 02e973aff30fe..f613175ee1596 100644 --- a/clients/client-compute-optimizer/src/commands/GetRecommendationPreferencesCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetRecommendationPreferencesCommand.ts @@ -137,6 +137,7 @@ export interface GetRecommendationPreferencesCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetRecommendationPreferencesCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/GetRecommendationSummariesCommand.ts b/clients/client-compute-optimizer/src/commands/GetRecommendationSummariesCommand.ts index 0c0b6ff390dac..b6fd2c78e1cd9 100644 --- a/clients/client-compute-optimizer/src/commands/GetRecommendationSummariesCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetRecommendationSummariesCommand.ts @@ -167,6 +167,7 @@ export interface GetRecommendationSummariesCommandOutput extends GetRecommendati * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class GetRecommendationSummariesCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/PutRecommendationPreferencesCommand.ts b/clients/client-compute-optimizer/src/commands/PutRecommendationPreferencesCommand.ts index 39538c7d768ae..efcbfb03cf642 100644 --- a/clients/client-compute-optimizer/src/commands/PutRecommendationPreferencesCommand.ts +++ b/clients/client-compute-optimizer/src/commands/PutRecommendationPreferencesCommand.ts @@ -118,6 +118,7 @@ export interface PutRecommendationPreferencesCommandOutput * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class PutRecommendationPreferencesCommand extends $Command diff --git a/clients/client-compute-optimizer/src/commands/UpdateEnrollmentStatusCommand.ts b/clients/client-compute-optimizer/src/commands/UpdateEnrollmentStatusCommand.ts index a56dd8e680b67..2025e835772e1 100644 --- a/clients/client-compute-optimizer/src/commands/UpdateEnrollmentStatusCommand.ts +++ b/clients/client-compute-optimizer/src/commands/UpdateEnrollmentStatusCommand.ts @@ -83,6 +83,7 @@ export interface UpdateEnrollmentStatusCommandOutput extends UpdateEnrollmentSta * @throws {@link ComputeOptimizerServiceException} *

Base exception class for all service exceptions from ComputeOptimizer service.

* + * * @public */ export class UpdateEnrollmentStatusCommand extends $Command diff --git a/clients/client-config-service/src/commands/AssociateResourceTypesCommand.ts b/clients/client-config-service/src/commands/AssociateResourceTypesCommand.ts index b72ec9f2f8e77..7cc621392f5b6 100644 --- a/clients/client-config-service/src/commands/AssociateResourceTypesCommand.ts +++ b/clients/client-config-service/src/commands/AssociateResourceTypesCommand.ts @@ -147,6 +147,7 @@ export interface AssociateResourceTypesCommandOutput extends AssociateResourceTy * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class AssociateResourceTypesCommand extends $Command diff --git a/clients/client-config-service/src/commands/BatchGetAggregateResourceConfigCommand.ts b/clients/client-config-service/src/commands/BatchGetAggregateResourceConfigCommand.ts index 3c6cf69f4765e..2f1a696045945 100644 --- a/clients/client-config-service/src/commands/BatchGetAggregateResourceConfigCommand.ts +++ b/clients/client-config-service/src/commands/BatchGetAggregateResourceConfigCommand.ts @@ -149,6 +149,7 @@ export interface BatchGetAggregateResourceConfigCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class BatchGetAggregateResourceConfigCommand extends $Command diff --git a/clients/client-config-service/src/commands/BatchGetResourceConfigCommand.ts b/clients/client-config-service/src/commands/BatchGetResourceConfigCommand.ts index d4911e384402a..b7673b3a92827 100644 --- a/clients/client-config-service/src/commands/BatchGetResourceConfigCommand.ts +++ b/clients/client-config-service/src/commands/BatchGetResourceConfigCommand.ts @@ -145,6 +145,7 @@ export interface BatchGetResourceConfigCommandOutput extends BatchGetResourceCon * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class BatchGetResourceConfigCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteAggregationAuthorizationCommand.ts b/clients/client-config-service/src/commands/DeleteAggregationAuthorizationCommand.ts index ea0c79fae811e..fc3cee9c3311e 100644 --- a/clients/client-config-service/src/commands/DeleteAggregationAuthorizationCommand.ts +++ b/clients/client-config-service/src/commands/DeleteAggregationAuthorizationCommand.ts @@ -62,6 +62,7 @@ export interface DeleteAggregationAuthorizationCommandOutput extends __MetadataB * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteAggregationAuthorizationCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteConfigRuleCommand.ts b/clients/client-config-service/src/commands/DeleteConfigRuleCommand.ts index 21f083365800d..56a9c694294b6 100644 --- a/clients/client-config-service/src/commands/DeleteConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/DeleteConfigRuleCommand.ts @@ -114,6 +114,7 @@ export interface DeleteConfigRuleCommandOutput extends __MetadataBearer {} * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteConfigRuleCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteConfigurationAggregatorCommand.ts b/clients/client-config-service/src/commands/DeleteConfigurationAggregatorCommand.ts index b531021c63c39..9f97ab03228d2 100644 --- a/clients/client-config-service/src/commands/DeleteConfigurationAggregatorCommand.ts +++ b/clients/client-config-service/src/commands/DeleteConfigurationAggregatorCommand.ts @@ -60,6 +60,7 @@ export interface DeleteConfigurationAggregatorCommandOutput extends __MetadataBe * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteConfigurationAggregatorCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteConfigurationRecorderCommand.ts b/clients/client-config-service/src/commands/DeleteConfigurationRecorderCommand.ts index 5d1bcd2003b7b..931b30ae83d9e 100644 --- a/clients/client-config-service/src/commands/DeleteConfigurationRecorderCommand.ts +++ b/clients/client-config-service/src/commands/DeleteConfigurationRecorderCommand.ts @@ -74,6 +74,7 @@ export interface DeleteConfigurationRecorderCommandOutput extends __MetadataBear * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteConfigurationRecorderCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteConformancePackCommand.ts b/clients/client-config-service/src/commands/DeleteConformancePackCommand.ts index 540d78ad0f952..bb2872151a46d 100644 --- a/clients/client-config-service/src/commands/DeleteConformancePackCommand.ts +++ b/clients/client-config-service/src/commands/DeleteConformancePackCommand.ts @@ -85,6 +85,7 @@ export interface DeleteConformancePackCommandOutput extends __MetadataBearer {} * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteConformancePackCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteDeliveryChannelCommand.ts b/clients/client-config-service/src/commands/DeleteDeliveryChannelCommand.ts index 814d07da3ba0b..3cfbf7dd7e88a 100644 --- a/clients/client-config-service/src/commands/DeleteDeliveryChannelCommand.ts +++ b/clients/client-config-service/src/commands/DeleteDeliveryChannelCommand.ts @@ -61,6 +61,7 @@ export interface DeleteDeliveryChannelCommandOutput extends __MetadataBearer {} * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteDeliveryChannelCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteEvaluationResultsCommand.ts b/clients/client-config-service/src/commands/DeleteEvaluationResultsCommand.ts index 433d0880ccf0f..72cf390a01084 100644 --- a/clients/client-config-service/src/commands/DeleteEvaluationResultsCommand.ts +++ b/clients/client-config-service/src/commands/DeleteEvaluationResultsCommand.ts @@ -85,6 +85,7 @@ export interface DeleteEvaluationResultsCommandOutput extends DeleteEvaluationRe * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteEvaluationResultsCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteOrganizationConfigRuleCommand.ts b/clients/client-config-service/src/commands/DeleteOrganizationConfigRuleCommand.ts index f72ea6a83cb7a..4d67de923cf2b 100644 --- a/clients/client-config-service/src/commands/DeleteOrganizationConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/DeleteOrganizationConfigRuleCommand.ts @@ -111,6 +111,7 @@ export interface DeleteOrganizationConfigRuleCommandOutput extends __MetadataBea * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteOrganizationConfigRuleCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteOrganizationConformancePackCommand.ts b/clients/client-config-service/src/commands/DeleteOrganizationConformancePackCommand.ts index 0744aac7e801f..067b1f70b9a9b 100644 --- a/clients/client-config-service/src/commands/DeleteOrganizationConformancePackCommand.ts +++ b/clients/client-config-service/src/commands/DeleteOrganizationConformancePackCommand.ts @@ -113,6 +113,7 @@ export interface DeleteOrganizationConformancePackCommandOutput extends __Metada * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteOrganizationConformancePackCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeletePendingAggregationRequestCommand.ts b/clients/client-config-service/src/commands/DeletePendingAggregationRequestCommand.ts index 204140fd154ff..c4148417e1e26 100644 --- a/clients/client-config-service/src/commands/DeletePendingAggregationRequestCommand.ts +++ b/clients/client-config-service/src/commands/DeletePendingAggregationRequestCommand.ts @@ -62,6 +62,7 @@ export interface DeletePendingAggregationRequestCommandOutput extends __Metadata * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeletePendingAggregationRequestCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteRemediationConfigurationCommand.ts b/clients/client-config-service/src/commands/DeleteRemediationConfigurationCommand.ts index ef08a48222a1a..eba3630e6a556 100644 --- a/clients/client-config-service/src/commands/DeleteRemediationConfigurationCommand.ts +++ b/clients/client-config-service/src/commands/DeleteRemediationConfigurationCommand.ts @@ -97,6 +97,7 @@ export interface DeleteRemediationConfigurationCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteRemediationConfigurationCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteRemediationExceptionsCommand.ts b/clients/client-config-service/src/commands/DeleteRemediationExceptionsCommand.ts index 08ac426ee440d..a7afe9c706b51 100644 --- a/clients/client-config-service/src/commands/DeleteRemediationExceptionsCommand.ts +++ b/clients/client-config-service/src/commands/DeleteRemediationExceptionsCommand.ts @@ -80,6 +80,7 @@ export interface DeleteRemediationExceptionsCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteRemediationExceptionsCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteResourceConfigCommand.ts b/clients/client-config-service/src/commands/DeleteResourceConfigCommand.ts index 2d9611b96d939..d4619fa451af1 100644 --- a/clients/client-config-service/src/commands/DeleteResourceConfigCommand.ts +++ b/clients/client-config-service/src/commands/DeleteResourceConfigCommand.ts @@ -94,6 +94,7 @@ export interface DeleteResourceConfigCommandOutput extends __MetadataBearer {} * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteResourceConfigCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteRetentionConfigurationCommand.ts b/clients/client-config-service/src/commands/DeleteRetentionConfigurationCommand.ts index 04cf757c6ff87..4a59234cdd7b3 100644 --- a/clients/client-config-service/src/commands/DeleteRetentionConfigurationCommand.ts +++ b/clients/client-config-service/src/commands/DeleteRetentionConfigurationCommand.ts @@ -63,6 +63,7 @@ export interface DeleteRetentionConfigurationCommandOutput extends __MetadataBea * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteRetentionConfigurationCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteServiceLinkedConfigurationRecorderCommand.ts b/clients/client-config-service/src/commands/DeleteServiceLinkedConfigurationRecorderCommand.ts index 42acf7ab37ca6..363d67c903478 100644 --- a/clients/client-config-service/src/commands/DeleteServiceLinkedConfigurationRecorderCommand.ts +++ b/clients/client-config-service/src/commands/DeleteServiceLinkedConfigurationRecorderCommand.ts @@ -131,6 +131,7 @@ export interface DeleteServiceLinkedConfigurationRecorderCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteServiceLinkedConfigurationRecorderCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeleteStoredQueryCommand.ts b/clients/client-config-service/src/commands/DeleteStoredQueryCommand.ts index 077129fb1bf3f..2c524bb9cebaf 100644 --- a/clients/client-config-service/src/commands/DeleteStoredQueryCommand.ts +++ b/clients/client-config-service/src/commands/DeleteStoredQueryCommand.ts @@ -92,6 +92,7 @@ export interface DeleteStoredQueryCommandOutput extends DeleteStoredQueryRespons * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeleteStoredQueryCommand extends $Command diff --git a/clients/client-config-service/src/commands/DeliverConfigSnapshotCommand.ts b/clients/client-config-service/src/commands/DeliverConfigSnapshotCommand.ts index cf300b3a2c354..c24df18f3ad98 100644 --- a/clients/client-config-service/src/commands/DeliverConfigSnapshotCommand.ts +++ b/clients/client-config-service/src/commands/DeliverConfigSnapshotCommand.ts @@ -82,6 +82,7 @@ export interface DeliverConfigSnapshotCommandOutput extends DeliverConfigSnapsho * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DeliverConfigSnapshotCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeAggregateComplianceByConfigRulesCommand.ts b/clients/client-config-service/src/commands/DescribeAggregateComplianceByConfigRulesCommand.ts index ea472a0db8de7..76e97789e3a37 100644 --- a/clients/client-config-service/src/commands/DescribeAggregateComplianceByConfigRulesCommand.ts +++ b/clients/client-config-service/src/commands/DescribeAggregateComplianceByConfigRulesCommand.ts @@ -140,6 +140,7 @@ export interface DescribeAggregateComplianceByConfigRulesCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeAggregateComplianceByConfigRulesCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeAggregateComplianceByConformancePacksCommand.ts b/clients/client-config-service/src/commands/DescribeAggregateComplianceByConformancePacksCommand.ts index d6a74a0b020b9..aeb6faca08e59 100644 --- a/clients/client-config-service/src/commands/DescribeAggregateComplianceByConformancePacksCommand.ts +++ b/clients/client-config-service/src/commands/DescribeAggregateComplianceByConformancePacksCommand.ts @@ -136,6 +136,7 @@ export interface DescribeAggregateComplianceByConformancePacksCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeAggregateComplianceByConformancePacksCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeAggregationAuthorizationsCommand.ts b/clients/client-config-service/src/commands/DescribeAggregationAuthorizationsCommand.ts index 2e8c0d05f614d..612690323beaf 100644 --- a/clients/client-config-service/src/commands/DescribeAggregationAuthorizationsCommand.ts +++ b/clients/client-config-service/src/commands/DescribeAggregationAuthorizationsCommand.ts @@ -85,6 +85,7 @@ export interface DescribeAggregationAuthorizationsCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeAggregationAuthorizationsCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeComplianceByConfigRuleCommand.ts b/clients/client-config-service/src/commands/DescribeComplianceByConfigRuleCommand.ts index 225ad7827b3b7..db6272720974d 100644 --- a/clients/client-config-service/src/commands/DescribeComplianceByConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/DescribeComplianceByConfigRuleCommand.ts @@ -122,6 +122,7 @@ export interface DescribeComplianceByConfigRuleCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeComplianceByConfigRuleCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeComplianceByResourceCommand.ts b/clients/client-config-service/src/commands/DescribeComplianceByResourceCommand.ts index c2588d88464fc..c073600d7bdaf 100644 --- a/clients/client-config-service/src/commands/DescribeComplianceByResourceCommand.ts +++ b/clients/client-config-service/src/commands/DescribeComplianceByResourceCommand.ts @@ -120,6 +120,7 @@ export interface DescribeComplianceByResourceCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeComplianceByResourceCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeConfigRuleEvaluationStatusCommand.ts b/clients/client-config-service/src/commands/DescribeConfigRuleEvaluationStatusCommand.ts index a89e55c894095..11180b6f70bf8 100644 --- a/clients/client-config-service/src/commands/DescribeConfigRuleEvaluationStatusCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConfigRuleEvaluationStatusCommand.ts @@ -99,6 +99,7 @@ export interface DescribeConfigRuleEvaluationStatusCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeConfigRuleEvaluationStatusCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeConfigRulesCommand.ts b/clients/client-config-service/src/commands/DescribeConfigRulesCommand.ts index 34028ae602e03..3785670385295 100644 --- a/clients/client-config-service/src/commands/DescribeConfigRulesCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConfigRulesCommand.ts @@ -114,6 +114,7 @@ export interface DescribeConfigRulesCommandOutput extends DescribeConfigRulesRes * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeConfigRulesCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeConfigurationAggregatorSourcesStatusCommand.ts b/clients/client-config-service/src/commands/DescribeConfigurationAggregatorSourcesStatusCommand.ts index 320367edbecf0..dbcceebf26bf9 100644 --- a/clients/client-config-service/src/commands/DescribeConfigurationAggregatorSourcesStatusCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConfigurationAggregatorSourcesStatusCommand.ts @@ -96,6 +96,7 @@ export interface DescribeConfigurationAggregatorSourcesStatusCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeConfigurationAggregatorSourcesStatusCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeConfigurationAggregatorsCommand.ts b/clients/client-config-service/src/commands/DescribeConfigurationAggregatorsCommand.ts index 8d528722ef7b4..fd31b2fc0f2cc 100644 --- a/clients/client-config-service/src/commands/DescribeConfigurationAggregatorsCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConfigurationAggregatorsCommand.ts @@ -123,6 +123,7 @@ export interface DescribeConfigurationAggregatorsCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeConfigurationAggregatorsCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeConfigurationRecorderStatusCommand.ts b/clients/client-config-service/src/commands/DescribeConfigurationRecorderStatusCommand.ts index 127527540b8b1..de0d81cedf3fa 100644 --- a/clients/client-config-service/src/commands/DescribeConfigurationRecorderStatusCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConfigurationRecorderStatusCommand.ts @@ -127,6 +127,7 @@ export interface DescribeConfigurationRecorderStatusCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeConfigurationRecorderStatusCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeConfigurationRecordersCommand.ts b/clients/client-config-service/src/commands/DescribeConfigurationRecordersCommand.ts index fde3b19436677..a400a6a359e7f 100644 --- a/clients/client-config-service/src/commands/DescribeConfigurationRecordersCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConfigurationRecordersCommand.ts @@ -144,6 +144,7 @@ export interface DescribeConfigurationRecordersCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeConfigurationRecordersCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeConformancePackComplianceCommand.ts b/clients/client-config-service/src/commands/DescribeConformancePackComplianceCommand.ts index d83407f5c91f4..d655930395448 100644 --- a/clients/client-config-service/src/commands/DescribeConformancePackComplianceCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConformancePackComplianceCommand.ts @@ -102,6 +102,7 @@ export interface DescribeConformancePackComplianceCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeConformancePackComplianceCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeConformancePackStatusCommand.ts b/clients/client-config-service/src/commands/DescribeConformancePackStatusCommand.ts index 34e08e004041f..fce270bac0e22 100644 --- a/clients/client-config-service/src/commands/DescribeConformancePackStatusCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConformancePackStatusCommand.ts @@ -91,6 +91,7 @@ export interface DescribeConformancePackStatusCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeConformancePackStatusCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeConformancePacksCommand.ts b/clients/client-config-service/src/commands/DescribeConformancePacksCommand.ts index 42c623e4e474d..855b1cad46452 100644 --- a/clients/client-config-service/src/commands/DescribeConformancePacksCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConformancePacksCommand.ts @@ -95,6 +95,7 @@ export interface DescribeConformancePacksCommandOutput extends DescribeConforman * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeConformancePacksCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeDeliveryChannelStatusCommand.ts b/clients/client-config-service/src/commands/DescribeDeliveryChannelStatusCommand.ts index 8f35ec09e5edf..6cf9405d523ae 100644 --- a/clients/client-config-service/src/commands/DescribeDeliveryChannelStatusCommand.ts +++ b/clients/client-config-service/src/commands/DescribeDeliveryChannelStatusCommand.ts @@ -99,6 +99,7 @@ export interface DescribeDeliveryChannelStatusCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeDeliveryChannelStatusCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeDeliveryChannelsCommand.ts b/clients/client-config-service/src/commands/DescribeDeliveryChannelsCommand.ts index 79533644222f1..90fd1e13c04c7 100644 --- a/clients/client-config-service/src/commands/DescribeDeliveryChannelsCommand.ts +++ b/clients/client-config-service/src/commands/DescribeDeliveryChannelsCommand.ts @@ -78,6 +78,7 @@ export interface DescribeDeliveryChannelsCommandOutput extends DescribeDeliveryC * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeDeliveryChannelsCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeOrganizationConfigRuleStatusesCommand.ts b/clients/client-config-service/src/commands/DescribeOrganizationConfigRuleStatusesCommand.ts index b3f1a63b6fe9d..2e63b922a1ad6 100644 --- a/clients/client-config-service/src/commands/DescribeOrganizationConfigRuleStatusesCommand.ts +++ b/clients/client-config-service/src/commands/DescribeOrganizationConfigRuleStatusesCommand.ts @@ -116,6 +116,7 @@ export interface DescribeOrganizationConfigRuleStatusesCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeOrganizationConfigRuleStatusesCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeOrganizationConfigRulesCommand.ts b/clients/client-config-service/src/commands/DescribeOrganizationConfigRulesCommand.ts index 14542ea2741b6..0eed518afbb29 100644 --- a/clients/client-config-service/src/commands/DescribeOrganizationConfigRulesCommand.ts +++ b/clients/client-config-service/src/commands/DescribeOrganizationConfigRulesCommand.ts @@ -169,6 +169,7 @@ export interface DescribeOrganizationConfigRulesCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeOrganizationConfigRulesCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeOrganizationConformancePackStatusesCommand.ts b/clients/client-config-service/src/commands/DescribeOrganizationConformancePackStatusesCommand.ts index 678ada4621b7c..b94c7618a2369 100644 --- a/clients/client-config-service/src/commands/DescribeOrganizationConformancePackStatusesCommand.ts +++ b/clients/client-config-service/src/commands/DescribeOrganizationConformancePackStatusesCommand.ts @@ -117,6 +117,7 @@ export interface DescribeOrganizationConformancePackStatusesCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeOrganizationConformancePackStatusesCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeOrganizationConformancePacksCommand.ts b/clients/client-config-service/src/commands/DescribeOrganizationConformancePacksCommand.ts index 0dd5c774e5320..ed7d9a062967b 100644 --- a/clients/client-config-service/src/commands/DescribeOrganizationConformancePacksCommand.ts +++ b/clients/client-config-service/src/commands/DescribeOrganizationConformancePacksCommand.ts @@ -136,6 +136,7 @@ export interface DescribeOrganizationConformancePacksCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeOrganizationConformancePacksCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribePendingAggregationRequestsCommand.ts b/clients/client-config-service/src/commands/DescribePendingAggregationRequestsCommand.ts index f0dd21584df3a..9a6a33810ca20 100644 --- a/clients/client-config-service/src/commands/DescribePendingAggregationRequestsCommand.ts +++ b/clients/client-config-service/src/commands/DescribePendingAggregationRequestsCommand.ts @@ -82,6 +82,7 @@ export interface DescribePendingAggregationRequestsCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribePendingAggregationRequestsCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeRemediationConfigurationsCommand.ts b/clients/client-config-service/src/commands/DescribeRemediationConfigurationsCommand.ts index b95db8d0eb6e9..386f4091e1e83 100644 --- a/clients/client-config-service/src/commands/DescribeRemediationConfigurationsCommand.ts +++ b/clients/client-config-service/src/commands/DescribeRemediationConfigurationsCommand.ts @@ -96,6 +96,7 @@ export interface DescribeRemediationConfigurationsCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeRemediationConfigurationsCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeRemediationExceptionsCommand.ts b/clients/client-config-service/src/commands/DescribeRemediationExceptionsCommand.ts index 166b2b2900be1..fdb90fce6eb0d 100644 --- a/clients/client-config-service/src/commands/DescribeRemediationExceptionsCommand.ts +++ b/clients/client-config-service/src/commands/DescribeRemediationExceptionsCommand.ts @@ -93,6 +93,7 @@ export interface DescribeRemediationExceptionsCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeRemediationExceptionsCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeRemediationExecutionStatusCommand.ts b/clients/client-config-service/src/commands/DescribeRemediationExecutionStatusCommand.ts index eb959f7020ded..5690e7f5684d4 100644 --- a/clients/client-config-service/src/commands/DescribeRemediationExecutionStatusCommand.ts +++ b/clients/client-config-service/src/commands/DescribeRemediationExecutionStatusCommand.ts @@ -104,6 +104,7 @@ export interface DescribeRemediationExecutionStatusCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeRemediationExecutionStatusCommand extends $Command diff --git a/clients/client-config-service/src/commands/DescribeRetentionConfigurationsCommand.ts b/clients/client-config-service/src/commands/DescribeRetentionConfigurationsCommand.ts index 3c9cb88ca6e62..336746c9067e2 100644 --- a/clients/client-config-service/src/commands/DescribeRetentionConfigurationsCommand.ts +++ b/clients/client-config-service/src/commands/DescribeRetentionConfigurationsCommand.ts @@ -88,6 +88,7 @@ export interface DescribeRetentionConfigurationsCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DescribeRetentionConfigurationsCommand extends $Command diff --git a/clients/client-config-service/src/commands/DisassociateResourceTypesCommand.ts b/clients/client-config-service/src/commands/DisassociateResourceTypesCommand.ts index e54d74d1811f3..3650dd96126d7 100644 --- a/clients/client-config-service/src/commands/DisassociateResourceTypesCommand.ts +++ b/clients/client-config-service/src/commands/DisassociateResourceTypesCommand.ts @@ -147,6 +147,7 @@ export interface DisassociateResourceTypesCommandOutput extends DisassociateReso * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class DisassociateResourceTypesCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetAggregateComplianceDetailsByConfigRuleCommand.ts b/clients/client-config-service/src/commands/GetAggregateComplianceDetailsByConfigRuleCommand.ts index 155ef83f6f5a3..4cd1f77fb5339 100644 --- a/clients/client-config-service/src/commands/GetAggregateComplianceDetailsByConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/GetAggregateComplianceDetailsByConfigRuleCommand.ts @@ -145,6 +145,7 @@ export interface GetAggregateComplianceDetailsByConfigRuleCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetAggregateComplianceDetailsByConfigRuleCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetAggregateConfigRuleComplianceSummaryCommand.ts b/clients/client-config-service/src/commands/GetAggregateConfigRuleComplianceSummaryCommand.ts index 4e63c2816af21..d75ecb8e571c3 100644 --- a/clients/client-config-service/src/commands/GetAggregateConfigRuleComplianceSummaryCommand.ts +++ b/clients/client-config-service/src/commands/GetAggregateConfigRuleComplianceSummaryCommand.ts @@ -141,6 +141,7 @@ export interface GetAggregateConfigRuleComplianceSummaryCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetAggregateConfigRuleComplianceSummaryCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetAggregateConformancePackComplianceSummaryCommand.ts b/clients/client-config-service/src/commands/GetAggregateConformancePackComplianceSummaryCommand.ts index dd4c2af653a4c..a5d02acbe1d8f 100644 --- a/clients/client-config-service/src/commands/GetAggregateConformancePackComplianceSummaryCommand.ts +++ b/clients/client-config-service/src/commands/GetAggregateConformancePackComplianceSummaryCommand.ts @@ -131,6 +131,7 @@ export interface GetAggregateConformancePackComplianceSummaryCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetAggregateConformancePackComplianceSummaryCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetAggregateDiscoveredResourceCountsCommand.ts b/clients/client-config-service/src/commands/GetAggregateDiscoveredResourceCountsCommand.ts index 8c7521e174730..504ab3f57a4eb 100644 --- a/clients/client-config-service/src/commands/GetAggregateDiscoveredResourceCountsCommand.ts +++ b/clients/client-config-service/src/commands/GetAggregateDiscoveredResourceCountsCommand.ts @@ -128,6 +128,7 @@ export interface GetAggregateDiscoveredResourceCountsCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetAggregateDiscoveredResourceCountsCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetAggregateResourceConfigCommand.ts b/clients/client-config-service/src/commands/GetAggregateResourceConfigCommand.ts index 0fbe633a6e53b..0109acca4db3a 100644 --- a/clients/client-config-service/src/commands/GetAggregateResourceConfigCommand.ts +++ b/clients/client-config-service/src/commands/GetAggregateResourceConfigCommand.ts @@ -145,6 +145,7 @@ export interface GetAggregateResourceConfigCommandOutput extends GetAggregateRes * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetAggregateResourceConfigCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetComplianceDetailsByConfigRuleCommand.ts b/clients/client-config-service/src/commands/GetComplianceDetailsByConfigRuleCommand.ts index 01f14032c9447..e55cb66e8fd77 100644 --- a/clients/client-config-service/src/commands/GetComplianceDetailsByConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/GetComplianceDetailsByConfigRuleCommand.ts @@ -99,6 +99,7 @@ export interface GetComplianceDetailsByConfigRuleCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetComplianceDetailsByConfigRuleCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetComplianceDetailsByResourceCommand.ts b/clients/client-config-service/src/commands/GetComplianceDetailsByResourceCommand.ts index 9117b969f670e..cc99b1aab4fd1 100644 --- a/clients/client-config-service/src/commands/GetComplianceDetailsByResourceCommand.ts +++ b/clients/client-config-service/src/commands/GetComplianceDetailsByResourceCommand.ts @@ -92,6 +92,7 @@ export interface GetComplianceDetailsByResourceCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetComplianceDetailsByResourceCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetComplianceSummaryByConfigRuleCommand.ts b/clients/client-config-service/src/commands/GetComplianceSummaryByConfigRuleCommand.ts index 0d3459fde50e8..10ebe1e770d8d 100644 --- a/clients/client-config-service/src/commands/GetComplianceSummaryByConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/GetComplianceSummaryByConfigRuleCommand.ts @@ -69,6 +69,7 @@ export interface GetComplianceSummaryByConfigRuleCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetComplianceSummaryByConfigRuleCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetComplianceSummaryByResourceTypeCommand.ts b/clients/client-config-service/src/commands/GetComplianceSummaryByResourceTypeCommand.ts index 5085c259d0b01..0e9cd9a982b6b 100644 --- a/clients/client-config-service/src/commands/GetComplianceSummaryByResourceTypeCommand.ts +++ b/clients/client-config-service/src/commands/GetComplianceSummaryByResourceTypeCommand.ts @@ -87,6 +87,7 @@ export interface GetComplianceSummaryByResourceTypeCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetComplianceSummaryByResourceTypeCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetConformancePackComplianceDetailsCommand.ts b/clients/client-config-service/src/commands/GetConformancePackComplianceDetailsCommand.ts index 30342323ad80a..4c311c8665459 100644 --- a/clients/client-config-service/src/commands/GetConformancePackComplianceDetailsCommand.ts +++ b/clients/client-config-service/src/commands/GetConformancePackComplianceDetailsCommand.ts @@ -112,6 +112,7 @@ export interface GetConformancePackComplianceDetailsCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetConformancePackComplianceDetailsCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetConformancePackComplianceSummaryCommand.ts b/clients/client-config-service/src/commands/GetConformancePackComplianceSummaryCommand.ts index 55b756632564c..86af4b8af083f 100644 --- a/clients/client-config-service/src/commands/GetConformancePackComplianceSummaryCommand.ts +++ b/clients/client-config-service/src/commands/GetConformancePackComplianceSummaryCommand.ts @@ -84,6 +84,7 @@ export interface GetConformancePackComplianceSummaryCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetConformancePackComplianceSummaryCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetCustomRulePolicyCommand.ts b/clients/client-config-service/src/commands/GetCustomRulePolicyCommand.ts index 113c3a940e25d..416271aa8ac04 100644 --- a/clients/client-config-service/src/commands/GetCustomRulePolicyCommand.ts +++ b/clients/client-config-service/src/commands/GetCustomRulePolicyCommand.ts @@ -58,6 +58,7 @@ export interface GetCustomRulePolicyCommandOutput extends GetCustomRulePolicyRes * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetCustomRulePolicyCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetDiscoveredResourceCountsCommand.ts b/clients/client-config-service/src/commands/GetDiscoveredResourceCountsCommand.ts index 64591f23005f3..afd8cffd82da4 100644 --- a/clients/client-config-service/src/commands/GetDiscoveredResourceCountsCommand.ts +++ b/clients/client-config-service/src/commands/GetDiscoveredResourceCountsCommand.ts @@ -169,6 +169,7 @@ export interface GetDiscoveredResourceCountsCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetDiscoveredResourceCountsCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetOrganizationConfigRuleDetailedStatusCommand.ts b/clients/client-config-service/src/commands/GetOrganizationConfigRuleDetailedStatusCommand.ts index 410cf7626c3ab..01cdb74d524ba 100644 --- a/clients/client-config-service/src/commands/GetOrganizationConfigRuleDetailedStatusCommand.ts +++ b/clients/client-config-service/src/commands/GetOrganizationConfigRuleDetailedStatusCommand.ts @@ -112,6 +112,7 @@ export interface GetOrganizationConfigRuleDetailedStatusCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetOrganizationConfigRuleDetailedStatusCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetOrganizationConformancePackDetailedStatusCommand.ts b/clients/client-config-service/src/commands/GetOrganizationConformancePackDetailedStatusCommand.ts index 2918e8c5afbb8..f126026b349e1 100644 --- a/clients/client-config-service/src/commands/GetOrganizationConformancePackDetailedStatusCommand.ts +++ b/clients/client-config-service/src/commands/GetOrganizationConformancePackDetailedStatusCommand.ts @@ -113,6 +113,7 @@ export interface GetOrganizationConformancePackDetailedStatusCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetOrganizationConformancePackDetailedStatusCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetOrganizationCustomRulePolicyCommand.ts b/clients/client-config-service/src/commands/GetOrganizationCustomRulePolicyCommand.ts index 2ada5a58cd39f..93f2bfd7793ce 100644 --- a/clients/client-config-service/src/commands/GetOrganizationCustomRulePolicyCommand.ts +++ b/clients/client-config-service/src/commands/GetOrganizationCustomRulePolicyCommand.ts @@ -84,6 +84,7 @@ export interface GetOrganizationCustomRulePolicyCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetOrganizationCustomRulePolicyCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetResourceConfigHistoryCommand.ts b/clients/client-config-service/src/commands/GetResourceConfigHistoryCommand.ts index 1019f15712096..b6102e51446c6 100644 --- a/clients/client-config-service/src/commands/GetResourceConfigHistoryCommand.ts +++ b/clients/client-config-service/src/commands/GetResourceConfigHistoryCommand.ts @@ -177,6 +177,7 @@ export interface GetResourceConfigHistoryCommandOutput extends GetResourceConfig * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetResourceConfigHistoryCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetResourceEvaluationSummaryCommand.ts b/clients/client-config-service/src/commands/GetResourceEvaluationSummaryCommand.ts index 9e79d8112f5dc..7eac6b2c2f002 100644 --- a/clients/client-config-service/src/commands/GetResourceEvaluationSummaryCommand.ts +++ b/clients/client-config-service/src/commands/GetResourceEvaluationSummaryCommand.ts @@ -85,6 +85,7 @@ export interface GetResourceEvaluationSummaryCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetResourceEvaluationSummaryCommand extends $Command diff --git a/clients/client-config-service/src/commands/GetStoredQueryCommand.ts b/clients/client-config-service/src/commands/GetStoredQueryCommand.ts index 74b99a688b436..2418effc751dd 100644 --- a/clients/client-config-service/src/commands/GetStoredQueryCommand.ts +++ b/clients/client-config-service/src/commands/GetStoredQueryCommand.ts @@ -100,6 +100,7 @@ export interface GetStoredQueryCommandOutput extends GetStoredQueryResponse, __M * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class GetStoredQueryCommand extends $Command diff --git a/clients/client-config-service/src/commands/ListAggregateDiscoveredResourcesCommand.ts b/clients/client-config-service/src/commands/ListAggregateDiscoveredResourcesCommand.ts index b0d1e7fe86c30..7d03bac4841d0 100644 --- a/clients/client-config-service/src/commands/ListAggregateDiscoveredResourcesCommand.ts +++ b/clients/client-config-service/src/commands/ListAggregateDiscoveredResourcesCommand.ts @@ -128,6 +128,7 @@ export interface ListAggregateDiscoveredResourcesCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class ListAggregateDiscoveredResourcesCommand extends $Command diff --git a/clients/client-config-service/src/commands/ListConfigurationRecordersCommand.ts b/clients/client-config-service/src/commands/ListConfigurationRecordersCommand.ts index 0a827c2f9acaf..a45e21f363c4a 100644 --- a/clients/client-config-service/src/commands/ListConfigurationRecordersCommand.ts +++ b/clients/client-config-service/src/commands/ListConfigurationRecordersCommand.ts @@ -108,6 +108,7 @@ export interface ListConfigurationRecordersCommandOutput extends ListConfigurati * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class ListConfigurationRecordersCommand extends $Command diff --git a/clients/client-config-service/src/commands/ListConformancePackComplianceScoresCommand.ts b/clients/client-config-service/src/commands/ListConformancePackComplianceScoresCommand.ts index 2faa09bffd39c..3a1d299df0e29 100644 --- a/clients/client-config-service/src/commands/ListConformancePackComplianceScoresCommand.ts +++ b/clients/client-config-service/src/commands/ListConformancePackComplianceScoresCommand.ts @@ -96,6 +96,7 @@ export interface ListConformancePackComplianceScoresCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class ListConformancePackComplianceScoresCommand extends $Command diff --git a/clients/client-config-service/src/commands/ListDiscoveredResourcesCommand.ts b/clients/client-config-service/src/commands/ListDiscoveredResourcesCommand.ts index fefe558678e54..da51b1c5ddacf 100644 --- a/clients/client-config-service/src/commands/ListDiscoveredResourcesCommand.ts +++ b/clients/client-config-service/src/commands/ListDiscoveredResourcesCommand.ts @@ -134,6 +134,7 @@ export interface ListDiscoveredResourcesCommandOutput extends ListDiscoveredReso * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class ListDiscoveredResourcesCommand extends $Command diff --git a/clients/client-config-service/src/commands/ListResourceEvaluationsCommand.ts b/clients/client-config-service/src/commands/ListResourceEvaluationsCommand.ts index f2dbcdf5344ef..3454294453899 100644 --- a/clients/client-config-service/src/commands/ListResourceEvaluationsCommand.ts +++ b/clients/client-config-service/src/commands/ListResourceEvaluationsCommand.ts @@ -84,6 +84,7 @@ export interface ListResourceEvaluationsCommandOutput extends ListResourceEvalua * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class ListResourceEvaluationsCommand extends $Command diff --git a/clients/client-config-service/src/commands/ListStoredQueriesCommand.ts b/clients/client-config-service/src/commands/ListStoredQueriesCommand.ts index 5e473510d6a7a..7820960f465ab 100644 --- a/clients/client-config-service/src/commands/ListStoredQueriesCommand.ts +++ b/clients/client-config-service/src/commands/ListStoredQueriesCommand.ts @@ -105,6 +105,7 @@ export interface ListStoredQueriesCommandOutput extends ListStoredQueriesRespons * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class ListStoredQueriesCommand extends $Command diff --git a/clients/client-config-service/src/commands/ListTagsForResourceCommand.ts b/clients/client-config-service/src/commands/ListTagsForResourceCommand.ts index d2f755688e67d..7f82787175332 100644 --- a/clients/client-config-service/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-config-service/src/commands/ListTagsForResourceCommand.ts @@ -110,6 +110,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutAggregationAuthorizationCommand.ts b/clients/client-config-service/src/commands/PutAggregationAuthorizationCommand.ts index de9d5abea3117..f2ce12c5193b3 100644 --- a/clients/client-config-service/src/commands/PutAggregationAuthorizationCommand.ts +++ b/clients/client-config-service/src/commands/PutAggregationAuthorizationCommand.ts @@ -83,6 +83,7 @@ export interface PutAggregationAuthorizationCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutAggregationAuthorizationCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutConfigRuleCommand.ts b/clients/client-config-service/src/commands/PutConfigRuleCommand.ts index 9b143a258e77d..2ef93c10f0f45 100644 --- a/clients/client-config-service/src/commands/PutConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/PutConfigRuleCommand.ts @@ -210,6 +210,7 @@ export interface PutConfigRuleCommandOutput extends __MetadataBearer {} * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutConfigRuleCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutConfigurationAggregatorCommand.ts b/clients/client-config-service/src/commands/PutConfigurationAggregatorCommand.ts index 06535d1bf32b0..806c64fc6498a 100644 --- a/clients/client-config-service/src/commands/PutConfigurationAggregatorCommand.ts +++ b/clients/client-config-service/src/commands/PutConfigurationAggregatorCommand.ts @@ -197,6 +197,7 @@ export interface PutConfigurationAggregatorCommandOutput extends PutConfiguratio * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutConfigurationAggregatorCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutConfigurationRecorderCommand.ts b/clients/client-config-service/src/commands/PutConfigurationRecorderCommand.ts index 270a506e9854c..11acaf578d31a 100644 --- a/clients/client-config-service/src/commands/PutConfigurationRecorderCommand.ts +++ b/clients/client-config-service/src/commands/PutConfigurationRecorderCommand.ts @@ -200,6 +200,7 @@ export interface PutConfigurationRecorderCommandOutput extends __MetadataBearer * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutConfigurationRecorderCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutConformancePackCommand.ts b/clients/client-config-service/src/commands/PutConformancePackCommand.ts index 466aeb483a971..aea70fa4d01dd 100644 --- a/clients/client-config-service/src/commands/PutConformancePackCommand.ts +++ b/clients/client-config-service/src/commands/PutConformancePackCommand.ts @@ -144,6 +144,7 @@ export interface PutConformancePackCommandOutput extends PutConformancePackRespo * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutConformancePackCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutDeliveryChannelCommand.ts b/clients/client-config-service/src/commands/PutDeliveryChannelCommand.ts index a54962ff9669c..f7f0b9c9ca196 100644 --- a/clients/client-config-service/src/commands/PutDeliveryChannelCommand.ts +++ b/clients/client-config-service/src/commands/PutDeliveryChannelCommand.ts @@ -102,6 +102,7 @@ export interface PutDeliveryChannelCommandOutput extends __MetadataBearer {} * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutDeliveryChannelCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutEvaluationsCommand.ts b/clients/client-config-service/src/commands/PutEvaluationsCommand.ts index 15a201bfe6169..6252d20ae173f 100644 --- a/clients/client-config-service/src/commands/PutEvaluationsCommand.ts +++ b/clients/client-config-service/src/commands/PutEvaluationsCommand.ts @@ -85,6 +85,7 @@ export interface PutEvaluationsCommandOutput extends PutEvaluationsResponse, __M * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutEvaluationsCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutExternalEvaluationCommand.ts b/clients/client-config-service/src/commands/PutExternalEvaluationCommand.ts index 228d7c2292f27..d6e3e25d68481 100644 --- a/clients/client-config-service/src/commands/PutExternalEvaluationCommand.ts +++ b/clients/client-config-service/src/commands/PutExternalEvaluationCommand.ts @@ -68,6 +68,7 @@ export interface PutExternalEvaluationCommandOutput extends PutExternalEvaluatio * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutExternalEvaluationCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutOrganizationConfigRuleCommand.ts b/clients/client-config-service/src/commands/PutOrganizationConfigRuleCommand.ts index 39b4efea0080a..9e38b91b47027 100644 --- a/clients/client-config-service/src/commands/PutOrganizationConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/PutOrganizationConfigRuleCommand.ts @@ -264,6 +264,7 @@ export interface PutOrganizationConfigRuleCommandOutput extends PutOrganizationC * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutOrganizationConfigRuleCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutOrganizationConformancePackCommand.ts b/clients/client-config-service/src/commands/PutOrganizationConformancePackCommand.ts index bdea90510c76f..9c9fbf6b65f24 100644 --- a/clients/client-config-service/src/commands/PutOrganizationConformancePackCommand.ts +++ b/clients/client-config-service/src/commands/PutOrganizationConformancePackCommand.ts @@ -217,6 +217,7 @@ export interface PutOrganizationConformancePackCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutOrganizationConformancePackCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutRemediationConfigurationsCommand.ts b/clients/client-config-service/src/commands/PutRemediationConfigurationsCommand.ts index 822c44d6500a6..c564e7a705a51 100644 --- a/clients/client-config-service/src/commands/PutRemediationConfigurationsCommand.ts +++ b/clients/client-config-service/src/commands/PutRemediationConfigurationsCommand.ts @@ -189,6 +189,7 @@ export interface PutRemediationConfigurationsCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutRemediationConfigurationsCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutRemediationExceptionsCommand.ts b/clients/client-config-service/src/commands/PutRemediationExceptionsCommand.ts index 59f070a804b98..3a992a7c91f26 100644 --- a/clients/client-config-service/src/commands/PutRemediationExceptionsCommand.ts +++ b/clients/client-config-service/src/commands/PutRemediationExceptionsCommand.ts @@ -150,6 +150,7 @@ export interface PutRemediationExceptionsCommandOutput extends PutRemediationExc * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutRemediationExceptionsCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutResourceConfigCommand.ts b/clients/client-config-service/src/commands/PutResourceConfigCommand.ts index 0cf14f5564fcc..f20913ac5a51f 100644 --- a/clients/client-config-service/src/commands/PutResourceConfigCommand.ts +++ b/clients/client-config-service/src/commands/PutResourceConfigCommand.ts @@ -141,6 +141,7 @@ export interface PutResourceConfigCommandOutput extends __MetadataBearer {} * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutResourceConfigCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutRetentionConfigurationCommand.ts b/clients/client-config-service/src/commands/PutRetentionConfigurationCommand.ts index 82acb94f63720..dfe6ac6b4053d 100644 --- a/clients/client-config-service/src/commands/PutRetentionConfigurationCommand.ts +++ b/clients/client-config-service/src/commands/PutRetentionConfigurationCommand.ts @@ -75,6 +75,7 @@ export interface PutRetentionConfigurationCommandOutput extends PutRetentionConf * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutRetentionConfigurationCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutServiceLinkedConfigurationRecorderCommand.ts b/clients/client-config-service/src/commands/PutServiceLinkedConfigurationRecorderCommand.ts index 6840bee3e57ca..9cc8067eb5841 100644 --- a/clients/client-config-service/src/commands/PutServiceLinkedConfigurationRecorderCommand.ts +++ b/clients/client-config-service/src/commands/PutServiceLinkedConfigurationRecorderCommand.ts @@ -175,6 +175,7 @@ export interface PutServiceLinkedConfigurationRecorderCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutServiceLinkedConfigurationRecorderCommand extends $Command diff --git a/clients/client-config-service/src/commands/PutStoredQueryCommand.ts b/clients/client-config-service/src/commands/PutStoredQueryCommand.ts index 0e61810a2df71..002c716e59bdb 100644 --- a/clients/client-config-service/src/commands/PutStoredQueryCommand.ts +++ b/clients/client-config-service/src/commands/PutStoredQueryCommand.ts @@ -121,6 +121,7 @@ export interface PutStoredQueryCommandOutput extends PutStoredQueryResponse, __M * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class PutStoredQueryCommand extends $Command diff --git a/clients/client-config-service/src/commands/SelectAggregateResourceConfigCommand.ts b/clients/client-config-service/src/commands/SelectAggregateResourceConfigCommand.ts index 203d46afdd112..cacdc411262ce 100644 --- a/clients/client-config-service/src/commands/SelectAggregateResourceConfigCommand.ts +++ b/clients/client-config-service/src/commands/SelectAggregateResourceConfigCommand.ts @@ -99,6 +99,7 @@ export interface SelectAggregateResourceConfigCommandOutput * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class SelectAggregateResourceConfigCommand extends $Command diff --git a/clients/client-config-service/src/commands/SelectResourceConfigCommand.ts b/clients/client-config-service/src/commands/SelectResourceConfigCommand.ts index 652d5fe05b74f..d1993e927f191 100644 --- a/clients/client-config-service/src/commands/SelectResourceConfigCommand.ts +++ b/clients/client-config-service/src/commands/SelectResourceConfigCommand.ts @@ -82,6 +82,7 @@ export interface SelectResourceConfigCommandOutput extends SelectResourceConfigR * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class SelectResourceConfigCommand extends $Command diff --git a/clients/client-config-service/src/commands/StartConfigRulesEvaluationCommand.ts b/clients/client-config-service/src/commands/StartConfigRulesEvaluationCommand.ts index 8b0ae3cff5114..0f6b4a057f515 100644 --- a/clients/client-config-service/src/commands/StartConfigRulesEvaluationCommand.ts +++ b/clients/client-config-service/src/commands/StartConfigRulesEvaluationCommand.ts @@ -143,6 +143,7 @@ export interface StartConfigRulesEvaluationCommandOutput extends StartConfigRule * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class StartConfigRulesEvaluationCommand extends $Command diff --git a/clients/client-config-service/src/commands/StartConfigurationRecorderCommand.ts b/clients/client-config-service/src/commands/StartConfigurationRecorderCommand.ts index 34ca409b9d988..b8632e631599c 100644 --- a/clients/client-config-service/src/commands/StartConfigurationRecorderCommand.ts +++ b/clients/client-config-service/src/commands/StartConfigurationRecorderCommand.ts @@ -74,6 +74,7 @@ export interface StartConfigurationRecorderCommandOutput extends __MetadataBeare * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class StartConfigurationRecorderCommand extends $Command diff --git a/clients/client-config-service/src/commands/StartRemediationExecutionCommand.ts b/clients/client-config-service/src/commands/StartRemediationExecutionCommand.ts index c0b4caba1840f..e7678f38765d9 100644 --- a/clients/client-config-service/src/commands/StartRemediationExecutionCommand.ts +++ b/clients/client-config-service/src/commands/StartRemediationExecutionCommand.ts @@ -103,6 +103,7 @@ export interface StartRemediationExecutionCommandOutput extends StartRemediation * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class StartRemediationExecutionCommand extends $Command diff --git a/clients/client-config-service/src/commands/StartResourceEvaluationCommand.ts b/clients/client-config-service/src/commands/StartResourceEvaluationCommand.ts index e95b440b2eb30..c821c67f9568b 100644 --- a/clients/client-config-service/src/commands/StartResourceEvaluationCommand.ts +++ b/clients/client-config-service/src/commands/StartResourceEvaluationCommand.ts @@ -83,6 +83,7 @@ export interface StartResourceEvaluationCommandOutput extends StartResourceEvalu * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class StartResourceEvaluationCommand extends $Command diff --git a/clients/client-config-service/src/commands/StopConfigurationRecorderCommand.ts b/clients/client-config-service/src/commands/StopConfigurationRecorderCommand.ts index 026d9039175c4..007a8a28562d5 100644 --- a/clients/client-config-service/src/commands/StopConfigurationRecorderCommand.ts +++ b/clients/client-config-service/src/commands/StopConfigurationRecorderCommand.ts @@ -68,6 +68,7 @@ export interface StopConfigurationRecorderCommandOutput extends __MetadataBearer * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class StopConfigurationRecorderCommand extends $Command diff --git a/clients/client-config-service/src/commands/TagResourceCommand.ts b/clients/client-config-service/src/commands/TagResourceCommand.ts index 2e8b7c62fcce5..0d2e50c2d2f7c 100644 --- a/clients/client-config-service/src/commands/TagResourceCommand.ts +++ b/clients/client-config-service/src/commands/TagResourceCommand.ts @@ -105,6 +105,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-config-service/src/commands/UntagResourceCommand.ts b/clients/client-config-service/src/commands/UntagResourceCommand.ts index ff3be8354af07..e491aaef9f09e 100644 --- a/clients/client-config-service/src/commands/UntagResourceCommand.ts +++ b/clients/client-config-service/src/commands/UntagResourceCommand.ts @@ -95,6 +95,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-connect-contact-lens/src/commands/ListRealtimeContactAnalysisSegmentsCommand.ts b/clients/client-connect-contact-lens/src/commands/ListRealtimeContactAnalysisSegmentsCommand.ts index 32268c64138fc..3bda120a8e6c9 100644 --- a/clients/client-connect-contact-lens/src/commands/ListRealtimeContactAnalysisSegmentsCommand.ts +++ b/clients/client-connect-contact-lens/src/commands/ListRealtimeContactAnalysisSegmentsCommand.ts @@ -126,6 +126,7 @@ export interface ListRealtimeContactAnalysisSegmentsCommandOutput * @throws {@link ConnectContactLensServiceException} *

Base exception class for all service exceptions from ConnectContactLens service.

* + * * @public */ export class ListRealtimeContactAnalysisSegmentsCommand extends $Command diff --git a/clients/client-connect/src/commands/ActivateEvaluationFormCommand.ts b/clients/client-connect/src/commands/ActivateEvaluationFormCommand.ts index a58c1eda6a9f9..01b7f22a09dda 100644 --- a/clients/client-connect/src/commands/ActivateEvaluationFormCommand.ts +++ b/clients/client-connect/src/commands/ActivateEvaluationFormCommand.ts @@ -75,6 +75,7 @@ export interface ActivateEvaluationFormCommandOutput extends ActivateEvaluationF * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ActivateEvaluationFormCommand extends $Command diff --git a/clients/client-connect/src/commands/AssociateAnalyticsDataSetCommand.ts b/clients/client-connect/src/commands/AssociateAnalyticsDataSetCommand.ts index c0bd29648415b..d9e7c1206d3dc 100644 --- a/clients/client-connect/src/commands/AssociateAnalyticsDataSetCommand.ts +++ b/clients/client-connect/src/commands/AssociateAnalyticsDataSetCommand.ts @@ -76,6 +76,7 @@ export interface AssociateAnalyticsDataSetCommandOutput extends AssociateAnalyti * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class AssociateAnalyticsDataSetCommand extends $Command diff --git a/clients/client-connect/src/commands/AssociateApprovedOriginCommand.ts b/clients/client-connect/src/commands/AssociateApprovedOriginCommand.ts index 4aeedc079c933..23063c3f39625 100644 --- a/clients/client-connect/src/commands/AssociateApprovedOriginCommand.ts +++ b/clients/client-connect/src/commands/AssociateApprovedOriginCommand.ts @@ -77,6 +77,7 @@ export interface AssociateApprovedOriginCommandOutput extends __MetadataBearer { * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class AssociateApprovedOriginCommand extends $Command diff --git a/clients/client-connect/src/commands/AssociateBotCommand.ts b/clients/client-connect/src/commands/AssociateBotCommand.ts index acdccf04551b6..7f9556acb9f8d 100644 --- a/clients/client-connect/src/commands/AssociateBotCommand.ts +++ b/clients/client-connect/src/commands/AssociateBotCommand.ts @@ -84,6 +84,7 @@ export interface AssociateBotCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class AssociateBotCommand extends $Command diff --git a/clients/client-connect/src/commands/AssociateDefaultVocabularyCommand.ts b/clients/client-connect/src/commands/AssociateDefaultVocabularyCommand.ts index 71fcc4f8ca6b7..d40f43356466a 100644 --- a/clients/client-connect/src/commands/AssociateDefaultVocabularyCommand.ts +++ b/clients/client-connect/src/commands/AssociateDefaultVocabularyCommand.ts @@ -71,6 +71,7 @@ export interface AssociateDefaultVocabularyCommandOutput extends AssociateDefaul * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class AssociateDefaultVocabularyCommand extends $Command diff --git a/clients/client-connect/src/commands/AssociateFlowCommand.ts b/clients/client-connect/src/commands/AssociateFlowCommand.ts index 61461dbf3b9f1..f31cd303af98a 100644 --- a/clients/client-connect/src/commands/AssociateFlowCommand.ts +++ b/clients/client-connect/src/commands/AssociateFlowCommand.ts @@ -74,6 +74,7 @@ export interface AssociateFlowCommandOutput extends AssociateFlowResponse, __Met * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class AssociateFlowCommand extends $Command diff --git a/clients/client-connect/src/commands/AssociateInstanceStorageConfigCommand.ts b/clients/client-connect/src/commands/AssociateInstanceStorageConfigCommand.ts index f2d205a558824..193f48721724c 100644 --- a/clients/client-connect/src/commands/AssociateInstanceStorageConfigCommand.ts +++ b/clients/client-connect/src/commands/AssociateInstanceStorageConfigCommand.ts @@ -112,6 +112,7 @@ export interface AssociateInstanceStorageConfigCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class AssociateInstanceStorageConfigCommand extends $Command diff --git a/clients/client-connect/src/commands/AssociateLambdaFunctionCommand.ts b/clients/client-connect/src/commands/AssociateLambdaFunctionCommand.ts index a942cdbf6ad9a..8e82520d69b44 100644 --- a/clients/client-connect/src/commands/AssociateLambdaFunctionCommand.ts +++ b/clients/client-connect/src/commands/AssociateLambdaFunctionCommand.ts @@ -78,6 +78,7 @@ export interface AssociateLambdaFunctionCommandOutput extends __MetadataBearer { * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class AssociateLambdaFunctionCommand extends $Command diff --git a/clients/client-connect/src/commands/AssociateLexBotCommand.ts b/clients/client-connect/src/commands/AssociateLexBotCommand.ts index f1d84f19bd671..0c98b7737c7aa 100644 --- a/clients/client-connect/src/commands/AssociateLexBotCommand.ts +++ b/clients/client-connect/src/commands/AssociateLexBotCommand.ts @@ -81,6 +81,7 @@ export interface AssociateLexBotCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class AssociateLexBotCommand extends $Command diff --git a/clients/client-connect/src/commands/AssociatePhoneNumberContactFlowCommand.ts b/clients/client-connect/src/commands/AssociatePhoneNumberContactFlowCommand.ts index 0b24d581e075e..613962ddfe0db 100644 --- a/clients/client-connect/src/commands/AssociatePhoneNumberContactFlowCommand.ts +++ b/clients/client-connect/src/commands/AssociatePhoneNumberContactFlowCommand.ts @@ -84,6 +84,7 @@ export interface AssociatePhoneNumberContactFlowCommandOutput extends __Metadata * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class AssociatePhoneNumberContactFlowCommand extends $Command diff --git a/clients/client-connect/src/commands/AssociateQueueQuickConnectsCommand.ts b/clients/client-connect/src/commands/AssociateQueueQuickConnectsCommand.ts index ea49ca813a257..33b439acae5c1 100644 --- a/clients/client-connect/src/commands/AssociateQueueQuickConnectsCommand.ts +++ b/clients/client-connect/src/commands/AssociateQueueQuickConnectsCommand.ts @@ -79,6 +79,7 @@ export interface AssociateQueueQuickConnectsCommandOutput extends __MetadataBear * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class AssociateQueueQuickConnectsCommand extends $Command diff --git a/clients/client-connect/src/commands/AssociateRoutingProfileQueuesCommand.ts b/clients/client-connect/src/commands/AssociateRoutingProfileQueuesCommand.ts index 51c9621a6baa5..5af86e878b081 100644 --- a/clients/client-connect/src/commands/AssociateRoutingProfileQueuesCommand.ts +++ b/clients/client-connect/src/commands/AssociateRoutingProfileQueuesCommand.ts @@ -82,6 +82,7 @@ export interface AssociateRoutingProfileQueuesCommandOutput extends __MetadataBe * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class AssociateRoutingProfileQueuesCommand extends $Command diff --git a/clients/client-connect/src/commands/AssociateSecurityKeyCommand.ts b/clients/client-connect/src/commands/AssociateSecurityKeyCommand.ts index b150a70f63b41..f29ba2d0a0456 100644 --- a/clients/client-connect/src/commands/AssociateSecurityKeyCommand.ts +++ b/clients/client-connect/src/commands/AssociateSecurityKeyCommand.ts @@ -79,6 +79,7 @@ export interface AssociateSecurityKeyCommandOutput extends AssociateSecurityKeyR * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class AssociateSecurityKeyCommand extends $Command diff --git a/clients/client-connect/src/commands/AssociateTrafficDistributionGroupUserCommand.ts b/clients/client-connect/src/commands/AssociateTrafficDistributionGroupUserCommand.ts index f6dfbd26a764e..7bae36121ba6d 100644 --- a/clients/client-connect/src/commands/AssociateTrafficDistributionGroupUserCommand.ts +++ b/clients/client-connect/src/commands/AssociateTrafficDistributionGroupUserCommand.ts @@ -83,6 +83,7 @@ export interface AssociateTrafficDistributionGroupUserCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class AssociateTrafficDistributionGroupUserCommand extends $Command diff --git a/clients/client-connect/src/commands/AssociateUserProficienciesCommand.ts b/clients/client-connect/src/commands/AssociateUserProficienciesCommand.ts index 2d96ad873a436..b7185442c270e 100644 --- a/clients/client-connect/src/commands/AssociateUserProficienciesCommand.ts +++ b/clients/client-connect/src/commands/AssociateUserProficienciesCommand.ts @@ -76,6 +76,7 @@ export interface AssociateUserProficienciesCommandOutput extends __MetadataBeare * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class AssociateUserProficienciesCommand extends $Command diff --git a/clients/client-connect/src/commands/BatchAssociateAnalyticsDataSetCommand.ts b/clients/client-connect/src/commands/BatchAssociateAnalyticsDataSetCommand.ts index 561402d997af1..dcf1bcf3c9927 100644 --- a/clients/client-connect/src/commands/BatchAssociateAnalyticsDataSetCommand.ts +++ b/clients/client-connect/src/commands/BatchAssociateAnalyticsDataSetCommand.ts @@ -94,6 +94,7 @@ export interface BatchAssociateAnalyticsDataSetCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class BatchAssociateAnalyticsDataSetCommand extends $Command diff --git a/clients/client-connect/src/commands/BatchDisassociateAnalyticsDataSetCommand.ts b/clients/client-connect/src/commands/BatchDisassociateAnalyticsDataSetCommand.ts index 7e5f479f4d2af..02ab25e66e3cc 100644 --- a/clients/client-connect/src/commands/BatchDisassociateAnalyticsDataSetCommand.ts +++ b/clients/client-connect/src/commands/BatchDisassociateAnalyticsDataSetCommand.ts @@ -91,6 +91,7 @@ export interface BatchDisassociateAnalyticsDataSetCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class BatchDisassociateAnalyticsDataSetCommand extends $Command diff --git a/clients/client-connect/src/commands/BatchGetAttachedFileMetadataCommand.ts b/clients/client-connect/src/commands/BatchGetAttachedFileMetadataCommand.ts index 06779b149ad0f..cd37f5d01c33b 100644 --- a/clients/client-connect/src/commands/BatchGetAttachedFileMetadataCommand.ts +++ b/clients/client-connect/src/commands/BatchGetAttachedFileMetadataCommand.ts @@ -106,6 +106,7 @@ export interface BatchGetAttachedFileMetadataCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class BatchGetAttachedFileMetadataCommand extends $Command diff --git a/clients/client-connect/src/commands/BatchGetFlowAssociationCommand.ts b/clients/client-connect/src/commands/BatchGetFlowAssociationCommand.ts index 7cb5537356672..7c59bfaf474f1 100644 --- a/clients/client-connect/src/commands/BatchGetFlowAssociationCommand.ts +++ b/clients/client-connect/src/commands/BatchGetFlowAssociationCommand.ts @@ -83,6 +83,7 @@ export interface BatchGetFlowAssociationCommandOutput extends BatchGetFlowAssoci * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class BatchGetFlowAssociationCommand extends $Command diff --git a/clients/client-connect/src/commands/BatchPutContactCommand.ts b/clients/client-connect/src/commands/BatchPutContactCommand.ts index f0ecb50f47785..89891f295d3d8 100644 --- a/clients/client-connect/src/commands/BatchPutContactCommand.ts +++ b/clients/client-connect/src/commands/BatchPutContactCommand.ts @@ -114,6 +114,7 @@ export interface BatchPutContactCommandOutput extends BatchPutContactResponse, _ * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class BatchPutContactCommand extends $Command diff --git a/clients/client-connect/src/commands/ClaimPhoneNumberCommand.ts b/clients/client-connect/src/commands/ClaimPhoneNumberCommand.ts index 799f910ecc32c..4d500539cfce7 100644 --- a/clients/client-connect/src/commands/ClaimPhoneNumberCommand.ts +++ b/clients/client-connect/src/commands/ClaimPhoneNumberCommand.ts @@ -104,6 +104,7 @@ export interface ClaimPhoneNumberCommandOutput extends ClaimPhoneNumberResponse, * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ClaimPhoneNumberCommand extends $Command diff --git a/clients/client-connect/src/commands/CompleteAttachedFileUploadCommand.ts b/clients/client-connect/src/commands/CompleteAttachedFileUploadCommand.ts index ced724dc99270..c4a3d7e9bcf83 100644 --- a/clients/client-connect/src/commands/CompleteAttachedFileUploadCommand.ts +++ b/clients/client-connect/src/commands/CompleteAttachedFileUploadCommand.ts @@ -71,6 +71,7 @@ export interface CompleteAttachedFileUploadCommandOutput extends CompleteAttache * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CompleteAttachedFileUploadCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateAgentStatusCommand.ts b/clients/client-connect/src/commands/CreateAgentStatusCommand.ts index 5168af5e3f3d4..e0c04f9bac170 100644 --- a/clients/client-connect/src/commands/CreateAgentStatusCommand.ts +++ b/clients/client-connect/src/commands/CreateAgentStatusCommand.ts @@ -85,6 +85,7 @@ export interface CreateAgentStatusCommandOutput extends CreateAgentStatusRespons * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateAgentStatusCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateContactCommand.ts b/clients/client-connect/src/commands/CreateContactCommand.ts index bec17fe174f1e..89372762a2c5f 100644 --- a/clients/client-connect/src/commands/CreateContactCommand.ts +++ b/clients/client-connect/src/commands/CreateContactCommand.ts @@ -128,6 +128,7 @@ export interface CreateContactCommandOutput extends CreateContactResponse, __Met * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateContactCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateContactFlowCommand.ts b/clients/client-connect/src/commands/CreateContactFlowCommand.ts index cb8c05385a7e5..a9917a83933b0 100644 --- a/clients/client-connect/src/commands/CreateContactFlowCommand.ts +++ b/clients/client-connect/src/commands/CreateContactFlowCommand.ts @@ -91,6 +91,7 @@ export interface CreateContactFlowCommandOutput extends CreateContactFlowRespons * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateContactFlowCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateContactFlowModuleCommand.ts b/clients/client-connect/src/commands/CreateContactFlowModuleCommand.ts index 16d90ac18a746..bad2a64614041 100644 --- a/clients/client-connect/src/commands/CreateContactFlowModuleCommand.ts +++ b/clients/client-connect/src/commands/CreateContactFlowModuleCommand.ts @@ -93,6 +93,7 @@ export interface CreateContactFlowModuleCommandOutput extends CreateContactFlowM * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateContactFlowModuleCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateContactFlowVersionCommand.ts b/clients/client-connect/src/commands/CreateContactFlowVersionCommand.ts index 6e66eff293dba..d4d06a937034f 100644 --- a/clients/client-connect/src/commands/CreateContactFlowVersionCommand.ts +++ b/clients/client-connect/src/commands/CreateContactFlowVersionCommand.ts @@ -87,6 +87,7 @@ export interface CreateContactFlowVersionCommandOutput extends CreateContactFlow * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateContactFlowVersionCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateEmailAddressCommand.ts b/clients/client-connect/src/commands/CreateEmailAddressCommand.ts index 64219f200db67..69846826529c0 100644 --- a/clients/client-connect/src/commands/CreateEmailAddressCommand.ts +++ b/clients/client-connect/src/commands/CreateEmailAddressCommand.ts @@ -99,6 +99,7 @@ export interface CreateEmailAddressCommandOutput extends CreateEmailAddressRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateEmailAddressCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateEvaluationFormCommand.ts b/clients/client-connect/src/commands/CreateEvaluationFormCommand.ts index e39f5535ff981..33780fba4f104 100644 --- a/clients/client-connect/src/commands/CreateEvaluationFormCommand.ts +++ b/clients/client-connect/src/commands/CreateEvaluationFormCommand.ts @@ -206,6 +206,7 @@ export interface CreateEvaluationFormCommandOutput extends CreateEvaluationFormR * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateEvaluationFormCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateHoursOfOperationCommand.ts b/clients/client-connect/src/commands/CreateHoursOfOperationCommand.ts index c8055b4944b7a..f2df2957a2595 100644 --- a/clients/client-connect/src/commands/CreateHoursOfOperationCommand.ts +++ b/clients/client-connect/src/commands/CreateHoursOfOperationCommand.ts @@ -97,6 +97,7 @@ export interface CreateHoursOfOperationCommandOutput extends CreateHoursOfOperat * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateHoursOfOperationCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateHoursOfOperationOverrideCommand.ts b/clients/client-connect/src/commands/CreateHoursOfOperationOverrideCommand.ts index a44fe5c80d403..4f6964dd312d5 100644 --- a/clients/client-connect/src/commands/CreateHoursOfOperationOverrideCommand.ts +++ b/clients/client-connect/src/commands/CreateHoursOfOperationOverrideCommand.ts @@ -100,6 +100,7 @@ export interface CreateHoursOfOperationOverrideCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateHoursOfOperationOverrideCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateInstanceCommand.ts b/clients/client-connect/src/commands/CreateInstanceCommand.ts index 5f9b8b7fd46e2..3137010ff3fdb 100644 --- a/clients/client-connect/src/commands/CreateInstanceCommand.ts +++ b/clients/client-connect/src/commands/CreateInstanceCommand.ts @@ -91,6 +91,7 @@ export interface CreateInstanceCommandOutput extends CreateInstanceResponse, __M * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateInstanceCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateIntegrationAssociationCommand.ts b/clients/client-connect/src/commands/CreateIntegrationAssociationCommand.ts index 10f2b78381cfe..833b8e10396f8 100644 --- a/clients/client-connect/src/commands/CreateIntegrationAssociationCommand.ts +++ b/clients/client-connect/src/commands/CreateIntegrationAssociationCommand.ts @@ -85,6 +85,7 @@ export interface CreateIntegrationAssociationCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateIntegrationAssociationCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateParticipantCommand.ts b/clients/client-connect/src/commands/CreateParticipantCommand.ts index c4ad9f9a184b2..43b01c36076cc 100644 --- a/clients/client-connect/src/commands/CreateParticipantCommand.ts +++ b/clients/client-connect/src/commands/CreateParticipantCommand.ts @@ -81,6 +81,7 @@ export interface CreateParticipantCommandOutput extends CreateParticipantRespons * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateParticipantCommand extends $Command diff --git a/clients/client-connect/src/commands/CreatePersistentContactAssociationCommand.ts b/clients/client-connect/src/commands/CreatePersistentContactAssociationCommand.ts index 5e4550643904f..3ab30565b22b1 100644 --- a/clients/client-connect/src/commands/CreatePersistentContactAssociationCommand.ts +++ b/clients/client-connect/src/commands/CreatePersistentContactAssociationCommand.ts @@ -87,6 +87,7 @@ export interface CreatePersistentContactAssociationCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreatePersistentContactAssociationCommand extends $Command diff --git a/clients/client-connect/src/commands/CreatePredefinedAttributeCommand.ts b/clients/client-connect/src/commands/CreatePredefinedAttributeCommand.ts index 4073dc99fd618..486eca7fbdda5 100644 --- a/clients/client-connect/src/commands/CreatePredefinedAttributeCommand.ts +++ b/clients/client-connect/src/commands/CreatePredefinedAttributeCommand.ts @@ -83,6 +83,7 @@ export interface CreatePredefinedAttributeCommandOutput extends __MetadataBearer * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreatePredefinedAttributeCommand extends $Command diff --git a/clients/client-connect/src/commands/CreatePromptCommand.ts b/clients/client-connect/src/commands/CreatePromptCommand.ts index 85897cedeb9e8..e582a63e9bf92 100644 --- a/clients/client-connect/src/commands/CreatePromptCommand.ts +++ b/clients/client-connect/src/commands/CreatePromptCommand.ts @@ -82,6 +82,7 @@ export interface CreatePromptCommandOutput extends CreatePromptResponse, __Metad * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreatePromptCommand extends $Command diff --git a/clients/client-connect/src/commands/CreatePushNotificationRegistrationCommand.ts b/clients/client-connect/src/commands/CreatePushNotificationRegistrationCommand.ts index ed93a73df790e..0b88719ff184a 100644 --- a/clients/client-connect/src/commands/CreatePushNotificationRegistrationCommand.ts +++ b/clients/client-connect/src/commands/CreatePushNotificationRegistrationCommand.ts @@ -93,6 +93,7 @@ export interface CreatePushNotificationRegistrationCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreatePushNotificationRegistrationCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateQueueCommand.ts b/clients/client-connect/src/commands/CreateQueueCommand.ts index 731be563f51b8..b2ffe128dbbc6 100644 --- a/clients/client-connect/src/commands/CreateQueueCommand.ts +++ b/clients/client-connect/src/commands/CreateQueueCommand.ts @@ -117,6 +117,7 @@ export interface CreateQueueCommandOutput extends CreateQueueResponse, __Metadat * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateQueueCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateQuickConnectCommand.ts b/clients/client-connect/src/commands/CreateQuickConnectCommand.ts index 431660cb436ed..47c57edd4d639 100644 --- a/clients/client-connect/src/commands/CreateQuickConnectCommand.ts +++ b/clients/client-connect/src/commands/CreateQuickConnectCommand.ts @@ -96,6 +96,7 @@ export interface CreateQuickConnectCommandOutput extends CreateQuickConnectRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateQuickConnectCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateRoutingProfileCommand.ts b/clients/client-connect/src/commands/CreateRoutingProfileCommand.ts index c4f0239fe4823..83aea05c33345 100644 --- a/clients/client-connect/src/commands/CreateRoutingProfileCommand.ts +++ b/clients/client-connect/src/commands/CreateRoutingProfileCommand.ts @@ -103,6 +103,7 @@ export interface CreateRoutingProfileCommandOutput extends CreateRoutingProfileR * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateRoutingProfileCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateRuleCommand.ts b/clients/client-connect/src/commands/CreateRuleCommand.ts index 97b7710bfc531..b29aab93517c5 100644 --- a/clients/client-connect/src/commands/CreateRuleCommand.ts +++ b/clients/client-connect/src/commands/CreateRuleCommand.ts @@ -155,6 +155,7 @@ export interface CreateRuleCommandOutput extends CreateRuleResponse, __MetadataB * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateRuleCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateSecurityProfileCommand.ts b/clients/client-connect/src/commands/CreateSecurityProfileCommand.ts index b3a2c7ac5cc3f..75fe52fd512f8 100644 --- a/clients/client-connect/src/commands/CreateSecurityProfileCommand.ts +++ b/clients/client-connect/src/commands/CreateSecurityProfileCommand.ts @@ -107,6 +107,7 @@ export interface CreateSecurityProfileCommandOutput extends CreateSecurityProfil * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateSecurityProfileCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateTaskTemplateCommand.ts b/clients/client-connect/src/commands/CreateTaskTemplateCommand.ts index 3c80b07c36e3a..60f0038efaae4 100644 --- a/clients/client-connect/src/commands/CreateTaskTemplateCommand.ts +++ b/clients/client-connect/src/commands/CreateTaskTemplateCommand.ts @@ -125,6 +125,7 @@ export interface CreateTaskTemplateCommandOutput extends CreateTaskTemplateRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateTaskTemplateCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateTrafficDistributionGroupCommand.ts b/clients/client-connect/src/commands/CreateTrafficDistributionGroupCommand.ts index dd8b869415019..1e6ac2fc295dc 100644 --- a/clients/client-connect/src/commands/CreateTrafficDistributionGroupCommand.ts +++ b/clients/client-connect/src/commands/CreateTrafficDistributionGroupCommand.ts @@ -101,6 +101,7 @@ export interface CreateTrafficDistributionGroupCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateTrafficDistributionGroupCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateUseCaseCommand.ts b/clients/client-connect/src/commands/CreateUseCaseCommand.ts index e9ac2e1454989..a8b092b0df1c6 100644 --- a/clients/client-connect/src/commands/CreateUseCaseCommand.ts +++ b/clients/client-connect/src/commands/CreateUseCaseCommand.ts @@ -76,6 +76,7 @@ export interface CreateUseCaseCommandOutput extends CreateUseCaseResponse, __Met * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateUseCaseCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateUserCommand.ts b/clients/client-connect/src/commands/CreateUserCommand.ts index 47246288ff3fb..420b635eb8585 100644 --- a/clients/client-connect/src/commands/CreateUserCommand.ts +++ b/clients/client-connect/src/commands/CreateUserCommand.ts @@ -108,6 +108,7 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateUserCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateUserHierarchyGroupCommand.ts b/clients/client-connect/src/commands/CreateUserHierarchyGroupCommand.ts index 75b1e62882abb..e5a4ac7c0f621 100644 --- a/clients/client-connect/src/commands/CreateUserHierarchyGroupCommand.ts +++ b/clients/client-connect/src/commands/CreateUserHierarchyGroupCommand.ts @@ -82,6 +82,7 @@ export interface CreateUserHierarchyGroupCommandOutput extends CreateUserHierarc * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateUserHierarchyGroupCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateViewCommand.ts b/clients/client-connect/src/commands/CreateViewCommand.ts index af6f5ea4c9a3a..d6fa6d29dbd44 100644 --- a/clients/client-connect/src/commands/CreateViewCommand.ts +++ b/clients/client-connect/src/commands/CreateViewCommand.ts @@ -129,6 +129,7 @@ export interface CreateViewCommandOutput extends CreateViewResponse, __MetadataB * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateViewCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateViewVersionCommand.ts b/clients/client-connect/src/commands/CreateViewVersionCommand.ts index d01a9ca8ae2fb..40ba96414c6a4 100644 --- a/clients/client-connect/src/commands/CreateViewVersionCommand.ts +++ b/clients/client-connect/src/commands/CreateViewVersionCommand.ts @@ -112,6 +112,7 @@ export interface CreateViewVersionCommandOutput extends CreateViewVersionRespons * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateViewVersionCommand extends $Command diff --git a/clients/client-connect/src/commands/CreateVocabularyCommand.ts b/clients/client-connect/src/commands/CreateVocabularyCommand.ts index f4baed7ddb781..0ae5c1047784b 100644 --- a/clients/client-connect/src/commands/CreateVocabularyCommand.ts +++ b/clients/client-connect/src/commands/CreateVocabularyCommand.ts @@ -87,6 +87,7 @@ export interface CreateVocabularyCommandOutput extends CreateVocabularyResponse, * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class CreateVocabularyCommand extends $Command diff --git a/clients/client-connect/src/commands/DeactivateEvaluationFormCommand.ts b/clients/client-connect/src/commands/DeactivateEvaluationFormCommand.ts index b76fd5e1ed002..768756e3bc20c 100644 --- a/clients/client-connect/src/commands/DeactivateEvaluationFormCommand.ts +++ b/clients/client-connect/src/commands/DeactivateEvaluationFormCommand.ts @@ -75,6 +75,7 @@ export interface DeactivateEvaluationFormCommandOutput extends DeactivateEvaluat * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeactivateEvaluationFormCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteAttachedFileCommand.ts b/clients/client-connect/src/commands/DeleteAttachedFileCommand.ts index 07dca06064e82..992e853f6197e 100644 --- a/clients/client-connect/src/commands/DeleteAttachedFileCommand.ts +++ b/clients/client-connect/src/commands/DeleteAttachedFileCommand.ts @@ -74,6 +74,7 @@ export interface DeleteAttachedFileCommandOutput extends DeleteAttachedFileRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteAttachedFileCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteContactEvaluationCommand.ts b/clients/client-connect/src/commands/DeleteContactEvaluationCommand.ts index 29a68256b6b45..cf40bedfeabb6 100644 --- a/clients/client-connect/src/commands/DeleteContactEvaluationCommand.ts +++ b/clients/client-connect/src/commands/DeleteContactEvaluationCommand.ts @@ -69,6 +69,7 @@ export interface DeleteContactEvaluationCommandOutput extends __MetadataBearer { * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteContactEvaluationCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteContactFlowCommand.ts b/clients/client-connect/src/commands/DeleteContactFlowCommand.ts index 50bb21b37422c..0c733209db6ba 100644 --- a/clients/client-connect/src/commands/DeleteContactFlowCommand.ts +++ b/clients/client-connect/src/commands/DeleteContactFlowCommand.ts @@ -72,6 +72,7 @@ export interface DeleteContactFlowCommandOutput extends DeleteContactFlowRespons * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteContactFlowCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteContactFlowModuleCommand.ts b/clients/client-connect/src/commands/DeleteContactFlowModuleCommand.ts index 6e74da4748142..9b36f94b9f270 100644 --- a/clients/client-connect/src/commands/DeleteContactFlowModuleCommand.ts +++ b/clients/client-connect/src/commands/DeleteContactFlowModuleCommand.ts @@ -72,6 +72,7 @@ export interface DeleteContactFlowModuleCommandOutput extends DeleteContactFlowM * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteContactFlowModuleCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteContactFlowVersionCommand.ts b/clients/client-connect/src/commands/DeleteContactFlowVersionCommand.ts index 42efb1c7f9ef6..a0f9ab3345f0b 100644 --- a/clients/client-connect/src/commands/DeleteContactFlowVersionCommand.ts +++ b/clients/client-connect/src/commands/DeleteContactFlowVersionCommand.ts @@ -73,6 +73,7 @@ export interface DeleteContactFlowVersionCommandOutput extends DeleteContactFlow * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteContactFlowVersionCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteEmailAddressCommand.ts b/clients/client-connect/src/commands/DeleteEmailAddressCommand.ts index fd4956fa53a31..df9b011a7361f 100644 --- a/clients/client-connect/src/commands/DeleteEmailAddressCommand.ts +++ b/clients/client-connect/src/commands/DeleteEmailAddressCommand.ts @@ -75,6 +75,7 @@ export interface DeleteEmailAddressCommandOutput extends DeleteEmailAddressRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteEmailAddressCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteEvaluationFormCommand.ts b/clients/client-connect/src/commands/DeleteEvaluationFormCommand.ts index a52f151b48ba0..a3bb2ba27f6be 100644 --- a/clients/client-connect/src/commands/DeleteEvaluationFormCommand.ts +++ b/clients/client-connect/src/commands/DeleteEvaluationFormCommand.ts @@ -79,6 +79,7 @@ export interface DeleteEvaluationFormCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteEvaluationFormCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteHoursOfOperationCommand.ts b/clients/client-connect/src/commands/DeleteHoursOfOperationCommand.ts index 93df387d504bf..e0b5502a44643 100644 --- a/clients/client-connect/src/commands/DeleteHoursOfOperationCommand.ts +++ b/clients/client-connect/src/commands/DeleteHoursOfOperationCommand.ts @@ -70,6 +70,7 @@ export interface DeleteHoursOfOperationCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteHoursOfOperationCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteHoursOfOperationOverrideCommand.ts b/clients/client-connect/src/commands/DeleteHoursOfOperationOverrideCommand.ts index d778db407ffe4..54423d36bf454 100644 --- a/clients/client-connect/src/commands/DeleteHoursOfOperationOverrideCommand.ts +++ b/clients/client-connect/src/commands/DeleteHoursOfOperationOverrideCommand.ts @@ -74,6 +74,7 @@ export interface DeleteHoursOfOperationOverrideCommandOutput extends __MetadataB * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteHoursOfOperationOverrideCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteInstanceCommand.ts b/clients/client-connect/src/commands/DeleteInstanceCommand.ts index 0d444e59705eb..f95e84283907d 100644 --- a/clients/client-connect/src/commands/DeleteInstanceCommand.ts +++ b/clients/client-connect/src/commands/DeleteInstanceCommand.ts @@ -69,6 +69,7 @@ export interface DeleteInstanceCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteInstanceCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteIntegrationAssociationCommand.ts b/clients/client-connect/src/commands/DeleteIntegrationAssociationCommand.ts index ead3bfcf887c9..c658e2512317f 100644 --- a/clients/client-connect/src/commands/DeleteIntegrationAssociationCommand.ts +++ b/clients/client-connect/src/commands/DeleteIntegrationAssociationCommand.ts @@ -70,6 +70,7 @@ export interface DeleteIntegrationAssociationCommandOutput extends __MetadataBea * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteIntegrationAssociationCommand extends $Command diff --git a/clients/client-connect/src/commands/DeletePredefinedAttributeCommand.ts b/clients/client-connect/src/commands/DeletePredefinedAttributeCommand.ts index 216ea21651e24..f9e28ddccc82d 100644 --- a/clients/client-connect/src/commands/DeletePredefinedAttributeCommand.ts +++ b/clients/client-connect/src/commands/DeletePredefinedAttributeCommand.ts @@ -72,6 +72,7 @@ export interface DeletePredefinedAttributeCommandOutput extends __MetadataBearer * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeletePredefinedAttributeCommand extends $Command diff --git a/clients/client-connect/src/commands/DeletePromptCommand.ts b/clients/client-connect/src/commands/DeletePromptCommand.ts index e48a8a2ba66c1..7e5dc89e1e585 100644 --- a/clients/client-connect/src/commands/DeletePromptCommand.ts +++ b/clients/client-connect/src/commands/DeletePromptCommand.ts @@ -69,6 +69,7 @@ export interface DeletePromptCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeletePromptCommand extends $Command diff --git a/clients/client-connect/src/commands/DeletePushNotificationRegistrationCommand.ts b/clients/client-connect/src/commands/DeletePushNotificationRegistrationCommand.ts index c5c6908a886be..0628243b71e71 100644 --- a/clients/client-connect/src/commands/DeletePushNotificationRegistrationCommand.ts +++ b/clients/client-connect/src/commands/DeletePushNotificationRegistrationCommand.ts @@ -78,6 +78,7 @@ export interface DeletePushNotificationRegistrationCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeletePushNotificationRegistrationCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteQueueCommand.ts b/clients/client-connect/src/commands/DeleteQueueCommand.ts index 8b0f76e3c4530..3408c82974291 100644 --- a/clients/client-connect/src/commands/DeleteQueueCommand.ts +++ b/clients/client-connect/src/commands/DeleteQueueCommand.ts @@ -72,6 +72,7 @@ export interface DeleteQueueCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteQueueCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteQuickConnectCommand.ts b/clients/client-connect/src/commands/DeleteQuickConnectCommand.ts index 5ec1bf32f7b71..7a311a6b98d3c 100644 --- a/clients/client-connect/src/commands/DeleteQuickConnectCommand.ts +++ b/clients/client-connect/src/commands/DeleteQuickConnectCommand.ts @@ -87,6 +87,7 @@ export interface DeleteQuickConnectCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteQuickConnectCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteRoutingProfileCommand.ts b/clients/client-connect/src/commands/DeleteRoutingProfileCommand.ts index d1a7136464dd7..487e4d9c8a812 100644 --- a/clients/client-connect/src/commands/DeleteRoutingProfileCommand.ts +++ b/clients/client-connect/src/commands/DeleteRoutingProfileCommand.ts @@ -72,6 +72,7 @@ export interface DeleteRoutingProfileCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteRoutingProfileCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteRuleCommand.ts b/clients/client-connect/src/commands/DeleteRuleCommand.ts index 1a06554915816..cf1ac2a414b5b 100644 --- a/clients/client-connect/src/commands/DeleteRuleCommand.ts +++ b/clients/client-connect/src/commands/DeleteRuleCommand.ts @@ -69,6 +69,7 @@ export interface DeleteRuleCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteRuleCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteSecurityProfileCommand.ts b/clients/client-connect/src/commands/DeleteSecurityProfileCommand.ts index 1690336142bd8..5fee949abf5a1 100644 --- a/clients/client-connect/src/commands/DeleteSecurityProfileCommand.ts +++ b/clients/client-connect/src/commands/DeleteSecurityProfileCommand.ts @@ -75,6 +75,7 @@ export interface DeleteSecurityProfileCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteSecurityProfileCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteTaskTemplateCommand.ts b/clients/client-connect/src/commands/DeleteTaskTemplateCommand.ts index 54be25b041ab6..18e7541c64fe2 100644 --- a/clients/client-connect/src/commands/DeleteTaskTemplateCommand.ts +++ b/clients/client-connect/src/commands/DeleteTaskTemplateCommand.ts @@ -69,6 +69,7 @@ export interface DeleteTaskTemplateCommandOutput extends DeleteTaskTemplateRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteTaskTemplateCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteTrafficDistributionGroupCommand.ts b/clients/client-connect/src/commands/DeleteTrafficDistributionGroupCommand.ts index 77791eda6691f..fbb0c833307ad 100644 --- a/clients/client-connect/src/commands/DeleteTrafficDistributionGroupCommand.ts +++ b/clients/client-connect/src/commands/DeleteTrafficDistributionGroupCommand.ts @@ -76,6 +76,7 @@ export interface DeleteTrafficDistributionGroupCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteTrafficDistributionGroupCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteUseCaseCommand.ts b/clients/client-connect/src/commands/DeleteUseCaseCommand.ts index e1cd1950614d2..a019ec7021508 100644 --- a/clients/client-connect/src/commands/DeleteUseCaseCommand.ts +++ b/clients/client-connect/src/commands/DeleteUseCaseCommand.ts @@ -67,6 +67,7 @@ export interface DeleteUseCaseCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteUseCaseCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteUserCommand.ts b/clients/client-connect/src/commands/DeleteUserCommand.ts index addfb85ddd618..4668465e078d1 100644 --- a/clients/client-connect/src/commands/DeleteUserCommand.ts +++ b/clients/client-connect/src/commands/DeleteUserCommand.ts @@ -90,6 +90,7 @@ export interface DeleteUserCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteUserCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteUserHierarchyGroupCommand.ts b/clients/client-connect/src/commands/DeleteUserHierarchyGroupCommand.ts index 4fb2ec198f7db..97fd507b301b1 100644 --- a/clients/client-connect/src/commands/DeleteUserHierarchyGroupCommand.ts +++ b/clients/client-connect/src/commands/DeleteUserHierarchyGroupCommand.ts @@ -73,6 +73,7 @@ export interface DeleteUserHierarchyGroupCommandOutput extends __MetadataBearer * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteUserHierarchyGroupCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteViewCommand.ts b/clients/client-connect/src/commands/DeleteViewCommand.ts index b1a12b26a5b6b..0b55ff9dd07ad 100644 --- a/clients/client-connect/src/commands/DeleteViewCommand.ts +++ b/clients/client-connect/src/commands/DeleteViewCommand.ts @@ -76,6 +76,7 @@ export interface DeleteViewCommandOutput extends DeleteViewResponse, __MetadataB * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteViewCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteViewVersionCommand.ts b/clients/client-connect/src/commands/DeleteViewVersionCommand.ts index 45eca8b336fa0..b60efd870f8c9 100644 --- a/clients/client-connect/src/commands/DeleteViewVersionCommand.ts +++ b/clients/client-connect/src/commands/DeleteViewVersionCommand.ts @@ -76,6 +76,7 @@ export interface DeleteViewVersionCommandOutput extends DeleteViewVersionRespons * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteViewVersionCommand extends $Command diff --git a/clients/client-connect/src/commands/DeleteVocabularyCommand.ts b/clients/client-connect/src/commands/DeleteVocabularyCommand.ts index ca2f3b053e7cc..ba8e076102735 100644 --- a/clients/client-connect/src/commands/DeleteVocabularyCommand.ts +++ b/clients/client-connect/src/commands/DeleteVocabularyCommand.ts @@ -76,6 +76,7 @@ export interface DeleteVocabularyCommandOutput extends DeleteVocabularyResponse, * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DeleteVocabularyCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeAgentStatusCommand.ts b/clients/client-connect/src/commands/DescribeAgentStatusCommand.ts index c93e7cd4cd1e8..b244ed90625f4 100644 --- a/clients/client-connect/src/commands/DescribeAgentStatusCommand.ts +++ b/clients/client-connect/src/commands/DescribeAgentStatusCommand.ts @@ -85,6 +85,7 @@ export interface DescribeAgentStatusCommandOutput extends DescribeAgentStatusRes * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeAgentStatusCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeAuthenticationProfileCommand.ts b/clients/client-connect/src/commands/DescribeAuthenticationProfileCommand.ts index b7c82f2b98057..251fdde8c36b8 100644 --- a/clients/client-connect/src/commands/DescribeAuthenticationProfileCommand.ts +++ b/clients/client-connect/src/commands/DescribeAuthenticationProfileCommand.ts @@ -95,6 +95,7 @@ export interface DescribeAuthenticationProfileCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeAuthenticationProfileCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeContactCommand.ts b/clients/client-connect/src/commands/DescribeContactCommand.ts index a91c9198d414a..6b4b0f65c1fab 100644 --- a/clients/client-connect/src/commands/DescribeContactCommand.ts +++ b/clients/client-connect/src/commands/DescribeContactCommand.ts @@ -326,6 +326,7 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _ * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeContactCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeContactEvaluationCommand.ts b/clients/client-connect/src/commands/DescribeContactEvaluationCommand.ts index d42351426c61a..757ae1ae3de74 100644 --- a/clients/client-connect/src/commands/DescribeContactEvaluationCommand.ts +++ b/clients/client-connect/src/commands/DescribeContactEvaluationCommand.ts @@ -246,6 +246,7 @@ export interface DescribeContactEvaluationCommandOutput extends DescribeContactE * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeContactEvaluationCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeContactFlowCommand.ts b/clients/client-connect/src/commands/DescribeContactFlowCommand.ts index 968b7e8c2046e..26bcc307c544f 100644 --- a/clients/client-connect/src/commands/DescribeContactFlowCommand.ts +++ b/clients/client-connect/src/commands/DescribeContactFlowCommand.ts @@ -104,6 +104,7 @@ export interface DescribeContactFlowCommandOutput extends DescribeContactFlowRes * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeContactFlowCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeContactFlowModuleCommand.ts b/clients/client-connect/src/commands/DescribeContactFlowModuleCommand.ts index 5f3b58e5ee11a..0e13e82a077ac 100644 --- a/clients/client-connect/src/commands/DescribeContactFlowModuleCommand.ts +++ b/clients/client-connect/src/commands/DescribeContactFlowModuleCommand.ts @@ -89,6 +89,7 @@ export interface DescribeContactFlowModuleCommandOutput extends DescribeContactF * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeContactFlowModuleCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeEmailAddressCommand.ts b/clients/client-connect/src/commands/DescribeEmailAddressCommand.ts index 6bff5604d6fdc..9318a0b234120 100644 --- a/clients/client-connect/src/commands/DescribeEmailAddressCommand.ts +++ b/clients/client-connect/src/commands/DescribeEmailAddressCommand.ts @@ -87,6 +87,7 @@ export interface DescribeEmailAddressCommandOutput extends DescribeEmailAddressR * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeEmailAddressCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeEvaluationFormCommand.ts b/clients/client-connect/src/commands/DescribeEvaluationFormCommand.ts index ba3ab580bed38..ce9306c995ad6 100644 --- a/clients/client-connect/src/commands/DescribeEvaluationFormCommand.ts +++ b/clients/client-connect/src/commands/DescribeEvaluationFormCommand.ts @@ -211,6 +211,7 @@ export interface DescribeEvaluationFormCommandOutput extends DescribeEvaluationF * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeEvaluationFormCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeHoursOfOperationCommand.ts b/clients/client-connect/src/commands/DescribeHoursOfOperationCommand.ts index f06c7186a2b7f..ad918c3c80290 100644 --- a/clients/client-connect/src/commands/DescribeHoursOfOperationCommand.ts +++ b/clients/client-connect/src/commands/DescribeHoursOfOperationCommand.ts @@ -96,6 +96,7 @@ export interface DescribeHoursOfOperationCommandOutput extends DescribeHoursOfOp * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeHoursOfOperationCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeHoursOfOperationOverrideCommand.ts b/clients/client-connect/src/commands/DescribeHoursOfOperationOverrideCommand.ts index ca2e8c07c454c..1673270cc4538 100644 --- a/clients/client-connect/src/commands/DescribeHoursOfOperationOverrideCommand.ts +++ b/clients/client-connect/src/commands/DescribeHoursOfOperationOverrideCommand.ts @@ -98,6 +98,7 @@ export interface DescribeHoursOfOperationOverrideCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeHoursOfOperationOverrideCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeInstanceAttributeCommand.ts b/clients/client-connect/src/commands/DescribeInstanceAttributeCommand.ts index cab209aad63ff..150ac9c0f0df6 100644 --- a/clients/client-connect/src/commands/DescribeInstanceAttributeCommand.ts +++ b/clients/client-connect/src/commands/DescribeInstanceAttributeCommand.ts @@ -75,6 +75,7 @@ export interface DescribeInstanceAttributeCommandOutput extends DescribeInstance * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeInstanceAttributeCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeInstanceCommand.ts b/clients/client-connect/src/commands/DescribeInstanceCommand.ts index 137f0320a699c..4271a96b6acd9 100644 --- a/clients/client-connect/src/commands/DescribeInstanceCommand.ts +++ b/clients/client-connect/src/commands/DescribeInstanceCommand.ts @@ -101,6 +101,7 @@ export interface DescribeInstanceCommandOutput extends DescribeInstanceResponse, * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeInstanceCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeInstanceStorageConfigCommand.ts b/clients/client-connect/src/commands/DescribeInstanceStorageConfigCommand.ts index 83ab8abd3c021..63b0693697972 100644 --- a/clients/client-connect/src/commands/DescribeInstanceStorageConfigCommand.ts +++ b/clients/client-connect/src/commands/DescribeInstanceStorageConfigCommand.ts @@ -104,6 +104,7 @@ export interface DescribeInstanceStorageConfigCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeInstanceStorageConfigCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribePhoneNumberCommand.ts b/clients/client-connect/src/commands/DescribePhoneNumberCommand.ts index 6578978233800..a6fc095aeae5a 100644 --- a/clients/client-connect/src/commands/DescribePhoneNumberCommand.ts +++ b/clients/client-connect/src/commands/DescribePhoneNumberCommand.ts @@ -97,6 +97,7 @@ export interface DescribePhoneNumberCommandOutput extends DescribePhoneNumberRes * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribePhoneNumberCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribePredefinedAttributeCommand.ts b/clients/client-connect/src/commands/DescribePredefinedAttributeCommand.ts index 2d51693f92e24..70c9edfea930c 100644 --- a/clients/client-connect/src/commands/DescribePredefinedAttributeCommand.ts +++ b/clients/client-connect/src/commands/DescribePredefinedAttributeCommand.ts @@ -88,6 +88,7 @@ export interface DescribePredefinedAttributeCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribePredefinedAttributeCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribePromptCommand.ts b/clients/client-connect/src/commands/DescribePromptCommand.ts index cacabf0f2a7a3..3dfb85fcf6626 100644 --- a/clients/client-connect/src/commands/DescribePromptCommand.ts +++ b/clients/client-connect/src/commands/DescribePromptCommand.ts @@ -81,6 +81,7 @@ export interface DescribePromptCommandOutput extends DescribePromptResponse, __M * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribePromptCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeQueueCommand.ts b/clients/client-connect/src/commands/DescribeQueueCommand.ts index 60f24f5f3eb9d..4ab813ee0e9a5 100644 --- a/clients/client-connect/src/commands/DescribeQueueCommand.ts +++ b/clients/client-connect/src/commands/DescribeQueueCommand.ts @@ -93,6 +93,7 @@ export interface DescribeQueueCommandOutput extends DescribeQueueResponse, __Met * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeQueueCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeQuickConnectCommand.ts b/clients/client-connect/src/commands/DescribeQuickConnectCommand.ts index 7b3e50338dd19..7930d047f644c 100644 --- a/clients/client-connect/src/commands/DescribeQuickConnectCommand.ts +++ b/clients/client-connect/src/commands/DescribeQuickConnectCommand.ts @@ -95,6 +95,7 @@ export interface DescribeQuickConnectCommandOutput extends DescribeQuickConnectR * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeQuickConnectCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeRoutingProfileCommand.ts b/clients/client-connect/src/commands/DescribeRoutingProfileCommand.ts index ea7474aadeb7c..bad8f440e8263 100644 --- a/clients/client-connect/src/commands/DescribeRoutingProfileCommand.ts +++ b/clients/client-connect/src/commands/DescribeRoutingProfileCommand.ts @@ -99,6 +99,7 @@ export interface DescribeRoutingProfileCommandOutput extends DescribeRoutingProf * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeRoutingProfileCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeRuleCommand.ts b/clients/client-connect/src/commands/DescribeRuleCommand.ts index ceaebc034c7de..209dd5c047a09 100644 --- a/clients/client-connect/src/commands/DescribeRuleCommand.ts +++ b/clients/client-connect/src/commands/DescribeRuleCommand.ts @@ -155,6 +155,7 @@ export interface DescribeRuleCommandOutput extends DescribeRuleResponse, __Metad * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeRuleCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeSecurityProfileCommand.ts b/clients/client-connect/src/commands/DescribeSecurityProfileCommand.ts index 3e4939c5e66c3..f3bff7a63c274 100644 --- a/clients/client-connect/src/commands/DescribeSecurityProfileCommand.ts +++ b/clients/client-connect/src/commands/DescribeSecurityProfileCommand.ts @@ -96,6 +96,7 @@ export interface DescribeSecurityProfileCommandOutput extends DescribeSecurityPr * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeSecurityProfileCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeTrafficDistributionGroupCommand.ts b/clients/client-connect/src/commands/DescribeTrafficDistributionGroupCommand.ts index 81b4b05101c9a..abbdccfe3c83d 100644 --- a/clients/client-connect/src/commands/DescribeTrafficDistributionGroupCommand.ts +++ b/clients/client-connect/src/commands/DescribeTrafficDistributionGroupCommand.ts @@ -86,6 +86,7 @@ export interface DescribeTrafficDistributionGroupCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeTrafficDistributionGroupCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeUserCommand.ts b/clients/client-connect/src/commands/DescribeUserCommand.ts index 13f2f0cbe5357..c6f9c7daea2c0 100644 --- a/clients/client-connect/src/commands/DescribeUserCommand.ts +++ b/clients/client-connect/src/commands/DescribeUserCommand.ts @@ -100,6 +100,7 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeUserCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeUserHierarchyGroupCommand.ts b/clients/client-connect/src/commands/DescribeUserHierarchyGroupCommand.ts index 0666de209ad86..fd4388f19ec1a 100644 --- a/clients/client-connect/src/commands/DescribeUserHierarchyGroupCommand.ts +++ b/clients/client-connect/src/commands/DescribeUserHierarchyGroupCommand.ts @@ -118,6 +118,7 @@ export interface DescribeUserHierarchyGroupCommandOutput extends DescribeUserHie * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeUserHierarchyGroupCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeUserHierarchyStructureCommand.ts b/clients/client-connect/src/commands/DescribeUserHierarchyStructureCommand.ts index d9cbbf9d965bf..30b9f43b03ce7 100644 --- a/clients/client-connect/src/commands/DescribeUserHierarchyStructureCommand.ts +++ b/clients/client-connect/src/commands/DescribeUserHierarchyStructureCommand.ts @@ -111,6 +111,7 @@ export interface DescribeUserHierarchyStructureCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeUserHierarchyStructureCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeViewCommand.ts b/clients/client-connect/src/commands/DescribeViewCommand.ts index 0147b825ba7dc..1a3fd2e92eac9 100644 --- a/clients/client-connect/src/commands/DescribeViewCommand.ts +++ b/clients/client-connect/src/commands/DescribeViewCommand.ts @@ -103,6 +103,7 @@ export interface DescribeViewCommandOutput extends DescribeViewResponse, __Metad * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeViewCommand extends $Command diff --git a/clients/client-connect/src/commands/DescribeVocabularyCommand.ts b/clients/client-connect/src/commands/DescribeVocabularyCommand.ts index 52738fa8faaba..e22636106cc19 100644 --- a/clients/client-connect/src/commands/DescribeVocabularyCommand.ts +++ b/clients/client-connect/src/commands/DescribeVocabularyCommand.ts @@ -83,6 +83,7 @@ export interface DescribeVocabularyCommandOutput extends DescribeVocabularyRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DescribeVocabularyCommand extends $Command diff --git a/clients/client-connect/src/commands/DisassociateAnalyticsDataSetCommand.ts b/clients/client-connect/src/commands/DisassociateAnalyticsDataSetCommand.ts index 1f82f12b9ce49..c41bd968f86c8 100644 --- a/clients/client-connect/src/commands/DisassociateAnalyticsDataSetCommand.ts +++ b/clients/client-connect/src/commands/DisassociateAnalyticsDataSetCommand.ts @@ -73,6 +73,7 @@ export interface DisassociateAnalyticsDataSetCommandOutput extends __MetadataBea * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DisassociateAnalyticsDataSetCommand extends $Command diff --git a/clients/client-connect/src/commands/DisassociateApprovedOriginCommand.ts b/clients/client-connect/src/commands/DisassociateApprovedOriginCommand.ts index 2f62ffbb03531..4fe46d0820a88 100644 --- a/clients/client-connect/src/commands/DisassociateApprovedOriginCommand.ts +++ b/clients/client-connect/src/commands/DisassociateApprovedOriginCommand.ts @@ -71,6 +71,7 @@ export interface DisassociateApprovedOriginCommandOutput extends __MetadataBeare * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DisassociateApprovedOriginCommand extends $Command diff --git a/clients/client-connect/src/commands/DisassociateBotCommand.ts b/clients/client-connect/src/commands/DisassociateBotCommand.ts index 3c5de47119f84..4667ac161c696 100644 --- a/clients/client-connect/src/commands/DisassociateBotCommand.ts +++ b/clients/client-connect/src/commands/DisassociateBotCommand.ts @@ -75,6 +75,7 @@ export interface DisassociateBotCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DisassociateBotCommand extends $Command diff --git a/clients/client-connect/src/commands/DisassociateFlowCommand.ts b/clients/client-connect/src/commands/DisassociateFlowCommand.ts index 6ba0e8b720018..d05d067150f2b 100644 --- a/clients/client-connect/src/commands/DisassociateFlowCommand.ts +++ b/clients/client-connect/src/commands/DisassociateFlowCommand.ts @@ -73,6 +73,7 @@ export interface DisassociateFlowCommandOutput extends DisassociateFlowResponse, * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DisassociateFlowCommand extends $Command diff --git a/clients/client-connect/src/commands/DisassociateInstanceStorageConfigCommand.ts b/clients/client-connect/src/commands/DisassociateInstanceStorageConfigCommand.ts index 6550115518361..a3f86588d0263 100644 --- a/clients/client-connect/src/commands/DisassociateInstanceStorageConfigCommand.ts +++ b/clients/client-connect/src/commands/DisassociateInstanceStorageConfigCommand.ts @@ -76,6 +76,7 @@ export interface DisassociateInstanceStorageConfigCommandOutput extends __Metada * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DisassociateInstanceStorageConfigCommand extends $Command diff --git a/clients/client-connect/src/commands/DisassociateLambdaFunctionCommand.ts b/clients/client-connect/src/commands/DisassociateLambdaFunctionCommand.ts index 0232a86ad3a9f..f210d8e4c6e33 100644 --- a/clients/client-connect/src/commands/DisassociateLambdaFunctionCommand.ts +++ b/clients/client-connect/src/commands/DisassociateLambdaFunctionCommand.ts @@ -72,6 +72,7 @@ export interface DisassociateLambdaFunctionCommandOutput extends __MetadataBeare * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DisassociateLambdaFunctionCommand extends $Command diff --git a/clients/client-connect/src/commands/DisassociateLexBotCommand.ts b/clients/client-connect/src/commands/DisassociateLexBotCommand.ts index 5230da67cbee1..22eb9914e2187 100644 --- a/clients/client-connect/src/commands/DisassociateLexBotCommand.ts +++ b/clients/client-connect/src/commands/DisassociateLexBotCommand.ts @@ -73,6 +73,7 @@ export interface DisassociateLexBotCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DisassociateLexBotCommand extends $Command diff --git a/clients/client-connect/src/commands/DisassociatePhoneNumberContactFlowCommand.ts b/clients/client-connect/src/commands/DisassociatePhoneNumberContactFlowCommand.ts index d9189d443de53..c99f1b2f5d708 100644 --- a/clients/client-connect/src/commands/DisassociatePhoneNumberContactFlowCommand.ts +++ b/clients/client-connect/src/commands/DisassociatePhoneNumberContactFlowCommand.ts @@ -82,6 +82,7 @@ export interface DisassociatePhoneNumberContactFlowCommandOutput extends __Metad * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DisassociatePhoneNumberContactFlowCommand extends $Command diff --git a/clients/client-connect/src/commands/DisassociateQueueQuickConnectsCommand.ts b/clients/client-connect/src/commands/DisassociateQueueQuickConnectsCommand.ts index 68dbe0386c453..ffc8cdeaccc92 100644 --- a/clients/client-connect/src/commands/DisassociateQueueQuickConnectsCommand.ts +++ b/clients/client-connect/src/commands/DisassociateQueueQuickConnectsCommand.ts @@ -76,6 +76,7 @@ export interface DisassociateQueueQuickConnectsCommandOutput extends __MetadataB * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DisassociateQueueQuickConnectsCommand extends $Command diff --git a/clients/client-connect/src/commands/DisassociateRoutingProfileQueuesCommand.ts b/clients/client-connect/src/commands/DisassociateRoutingProfileQueuesCommand.ts index ccb1ae4a4bbab..d2ffc0eb2fe63 100644 --- a/clients/client-connect/src/commands/DisassociateRoutingProfileQueuesCommand.ts +++ b/clients/client-connect/src/commands/DisassociateRoutingProfileQueuesCommand.ts @@ -78,6 +78,7 @@ export interface DisassociateRoutingProfileQueuesCommandOutput extends __Metadat * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DisassociateRoutingProfileQueuesCommand extends $Command diff --git a/clients/client-connect/src/commands/DisassociateSecurityKeyCommand.ts b/clients/client-connect/src/commands/DisassociateSecurityKeyCommand.ts index b857bec7d1d5b..5518557fe9f6e 100644 --- a/clients/client-connect/src/commands/DisassociateSecurityKeyCommand.ts +++ b/clients/client-connect/src/commands/DisassociateSecurityKeyCommand.ts @@ -71,6 +71,7 @@ export interface DisassociateSecurityKeyCommandOutput extends __MetadataBearer { * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DisassociateSecurityKeyCommand extends $Command diff --git a/clients/client-connect/src/commands/DisassociateTrafficDistributionGroupUserCommand.ts b/clients/client-connect/src/commands/DisassociateTrafficDistributionGroupUserCommand.ts index d9bcf5cea462d..c4378474442ac 100644 --- a/clients/client-connect/src/commands/DisassociateTrafficDistributionGroupUserCommand.ts +++ b/clients/client-connect/src/commands/DisassociateTrafficDistributionGroupUserCommand.ts @@ -83,6 +83,7 @@ export interface DisassociateTrafficDistributionGroupUserCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DisassociateTrafficDistributionGroupUserCommand extends $Command diff --git a/clients/client-connect/src/commands/DisassociateUserProficienciesCommand.ts b/clients/client-connect/src/commands/DisassociateUserProficienciesCommand.ts index 6bd3bd245b62a..35d980454f5e9 100644 --- a/clients/client-connect/src/commands/DisassociateUserProficienciesCommand.ts +++ b/clients/client-connect/src/commands/DisassociateUserProficienciesCommand.ts @@ -78,6 +78,7 @@ export interface DisassociateUserProficienciesCommandOutput extends __MetadataBe * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DisassociateUserProficienciesCommand extends $Command diff --git a/clients/client-connect/src/commands/DismissUserContactCommand.ts b/clients/client-connect/src/commands/DismissUserContactCommand.ts index 465f5ee6d8678..fa7c49b162dac 100644 --- a/clients/client-connect/src/commands/DismissUserContactCommand.ts +++ b/clients/client-connect/src/commands/DismissUserContactCommand.ts @@ -77,6 +77,7 @@ export interface DismissUserContactCommandOutput extends DismissUserContactRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class DismissUserContactCommand extends $Command diff --git a/clients/client-connect/src/commands/GetAttachedFileCommand.ts b/clients/client-connect/src/commands/GetAttachedFileCommand.ts index a3f80b48bd232..b6bdfa82bb0c7 100644 --- a/clients/client-connect/src/commands/GetAttachedFileCommand.ts +++ b/clients/client-connect/src/commands/GetAttachedFileCommand.ts @@ -93,6 +93,7 @@ export interface GetAttachedFileCommandOutput extends GetAttachedFileResponse, _ * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class GetAttachedFileCommand extends $Command diff --git a/clients/client-connect/src/commands/GetContactAttributesCommand.ts b/clients/client-connect/src/commands/GetContactAttributesCommand.ts index 7625dfb17b26d..1d8f7addf1f26 100644 --- a/clients/client-connect/src/commands/GetContactAttributesCommand.ts +++ b/clients/client-connect/src/commands/GetContactAttributesCommand.ts @@ -67,6 +67,7 @@ export interface GetContactAttributesCommandOutput extends GetContactAttributesR * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class GetContactAttributesCommand extends $Command diff --git a/clients/client-connect/src/commands/GetCurrentMetricDataCommand.ts b/clients/client-connect/src/commands/GetCurrentMetricDataCommand.ts index 2307b67d9fa65..0017ccae92643 100644 --- a/clients/client-connect/src/commands/GetCurrentMetricDataCommand.ts +++ b/clients/client-connect/src/commands/GetCurrentMetricDataCommand.ts @@ -130,6 +130,7 @@ export interface GetCurrentMetricDataCommandOutput extends GetCurrentMetricDataR * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class GetCurrentMetricDataCommand extends $Command diff --git a/clients/client-connect/src/commands/GetCurrentUserDataCommand.ts b/clients/client-connect/src/commands/GetCurrentUserDataCommand.ts index 63adea61ccd2b..f2c52bf0fcbb4 100644 --- a/clients/client-connect/src/commands/GetCurrentUserDataCommand.ts +++ b/clients/client-connect/src/commands/GetCurrentUserDataCommand.ts @@ -155,6 +155,7 @@ export interface GetCurrentUserDataCommandOutput extends GetCurrentUserDataRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class GetCurrentUserDataCommand extends $Command diff --git a/clients/client-connect/src/commands/GetEffectiveHoursOfOperationsCommand.ts b/clients/client-connect/src/commands/GetEffectiveHoursOfOperationsCommand.ts index a3cef7e8cfb88..a98c8b30bc2b1 100644 --- a/clients/client-connect/src/commands/GetEffectiveHoursOfOperationsCommand.ts +++ b/clients/client-connect/src/commands/GetEffectiveHoursOfOperationsCommand.ts @@ -95,6 +95,7 @@ export interface GetEffectiveHoursOfOperationsCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class GetEffectiveHoursOfOperationsCommand extends $Command diff --git a/clients/client-connect/src/commands/GetFederationTokenCommand.ts b/clients/client-connect/src/commands/GetFederationTokenCommand.ts index 405be2f1cd20a..548f671dfbc0e 100644 --- a/clients/client-connect/src/commands/GetFederationTokenCommand.ts +++ b/clients/client-connect/src/commands/GetFederationTokenCommand.ts @@ -99,6 +99,7 @@ export interface GetFederationTokenCommandOutput extends GetFederationTokenRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class GetFederationTokenCommand extends $Command diff --git a/clients/client-connect/src/commands/GetFlowAssociationCommand.ts b/clients/client-connect/src/commands/GetFlowAssociationCommand.ts index ca69f5c850ca3..60b02f5b96019 100644 --- a/clients/client-connect/src/commands/GetFlowAssociationCommand.ts +++ b/clients/client-connect/src/commands/GetFlowAssociationCommand.ts @@ -77,6 +77,7 @@ export interface GetFlowAssociationCommandOutput extends GetFlowAssociationRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class GetFlowAssociationCommand extends $Command diff --git a/clients/client-connect/src/commands/GetMetricDataCommand.ts b/clients/client-connect/src/commands/GetMetricDataCommand.ts index 539a2bcce74c1..c31cf7a26e504 100644 --- a/clients/client-connect/src/commands/GetMetricDataCommand.ts +++ b/clients/client-connect/src/commands/GetMetricDataCommand.ts @@ -143,6 +143,7 @@ export interface GetMetricDataCommandOutput extends GetMetricDataResponse, __Met * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class GetMetricDataCommand extends $Command diff --git a/clients/client-connect/src/commands/GetMetricDataV2Command.ts b/clients/client-connect/src/commands/GetMetricDataV2Command.ts index e218cd94bb0f7..5fffce42b39d2 100644 --- a/clients/client-connect/src/commands/GetMetricDataV2Command.ts +++ b/clients/client-connect/src/commands/GetMetricDataV2Command.ts @@ -153,6 +153,7 @@ export interface GetMetricDataV2CommandOutput extends GetMetricDataV2Response, _ * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class GetMetricDataV2Command extends $Command diff --git a/clients/client-connect/src/commands/GetPromptFileCommand.ts b/clients/client-connect/src/commands/GetPromptFileCommand.ts index 6d646d6171e6f..111644d60ce18 100644 --- a/clients/client-connect/src/commands/GetPromptFileCommand.ts +++ b/clients/client-connect/src/commands/GetPromptFileCommand.ts @@ -73,6 +73,7 @@ export interface GetPromptFileCommandOutput extends GetPromptFileResponse, __Met * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class GetPromptFileCommand extends $Command diff --git a/clients/client-connect/src/commands/GetTaskTemplateCommand.ts b/clients/client-connect/src/commands/GetTaskTemplateCommand.ts index b585b2de6e88d..032f6ea69d1ba 100644 --- a/clients/client-connect/src/commands/GetTaskTemplateCommand.ts +++ b/clients/client-connect/src/commands/GetTaskTemplateCommand.ts @@ -130,6 +130,7 @@ export interface GetTaskTemplateCommandOutput extends GetTaskTemplateResponse, _ * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class GetTaskTemplateCommand extends $Command diff --git a/clients/client-connect/src/commands/GetTrafficDistributionCommand.ts b/clients/client-connect/src/commands/GetTrafficDistributionCommand.ts index cd40e42f35ffc..8156ea0941c98 100644 --- a/clients/client-connect/src/commands/GetTrafficDistributionCommand.ts +++ b/clients/client-connect/src/commands/GetTrafficDistributionCommand.ts @@ -95,6 +95,7 @@ export interface GetTrafficDistributionCommandOutput extends GetTrafficDistribut * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class GetTrafficDistributionCommand extends $Command diff --git a/clients/client-connect/src/commands/ImportPhoneNumberCommand.ts b/clients/client-connect/src/commands/ImportPhoneNumberCommand.ts index f4616a35f1a76..df7979e2e727d 100644 --- a/clients/client-connect/src/commands/ImportPhoneNumberCommand.ts +++ b/clients/client-connect/src/commands/ImportPhoneNumberCommand.ts @@ -97,6 +97,7 @@ export interface ImportPhoneNumberCommandOutput extends ImportPhoneNumberRespons * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ImportPhoneNumberCommand extends $Command diff --git a/clients/client-connect/src/commands/ListAgentStatusesCommand.ts b/clients/client-connect/src/commands/ListAgentStatusesCommand.ts index ad6a1d7bff2ad..a245d8ce987b9 100644 --- a/clients/client-connect/src/commands/ListAgentStatusesCommand.ts +++ b/clients/client-connect/src/commands/ListAgentStatusesCommand.ts @@ -86,6 +86,7 @@ export interface ListAgentStatusesCommandOutput extends ListAgentStatusResponse, * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListAgentStatusesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListAnalyticsDataAssociationsCommand.ts b/clients/client-connect/src/commands/ListAnalyticsDataAssociationsCommand.ts index fdc58e8249e3f..696e2d785439c 100644 --- a/clients/client-connect/src/commands/ListAnalyticsDataAssociationsCommand.ts +++ b/clients/client-connect/src/commands/ListAnalyticsDataAssociationsCommand.ts @@ -88,6 +88,7 @@ export interface ListAnalyticsDataAssociationsCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListAnalyticsDataAssociationsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListAnalyticsDataLakeDataSetsCommand.ts b/clients/client-connect/src/commands/ListAnalyticsDataLakeDataSetsCommand.ts index 785b15ec98742..71f7f063cc8cf 100644 --- a/clients/client-connect/src/commands/ListAnalyticsDataLakeDataSetsCommand.ts +++ b/clients/client-connect/src/commands/ListAnalyticsDataLakeDataSetsCommand.ts @@ -84,6 +84,7 @@ export interface ListAnalyticsDataLakeDataSetsCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListAnalyticsDataLakeDataSetsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListApprovedOriginsCommand.ts b/clients/client-connect/src/commands/ListApprovedOriginsCommand.ts index 7e79871b48a33..31587bcaeae03 100644 --- a/clients/client-connect/src/commands/ListApprovedOriginsCommand.ts +++ b/clients/client-connect/src/commands/ListApprovedOriginsCommand.ts @@ -76,6 +76,7 @@ export interface ListApprovedOriginsCommandOutput extends ListApprovedOriginsRes * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListApprovedOriginsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListAssociatedContactsCommand.ts b/clients/client-connect/src/commands/ListAssociatedContactsCommand.ts index b228596eec02d..6320f6663f457 100644 --- a/clients/client-connect/src/commands/ListAssociatedContactsCommand.ts +++ b/clients/client-connect/src/commands/ListAssociatedContactsCommand.ts @@ -87,6 +87,7 @@ export interface ListAssociatedContactsCommandOutput extends ListAssociatedConta * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListAssociatedContactsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListAuthenticationProfilesCommand.ts b/clients/client-connect/src/commands/ListAuthenticationProfilesCommand.ts index 409a847207566..a417edb3253ab 100644 --- a/clients/client-connect/src/commands/ListAuthenticationProfilesCommand.ts +++ b/clients/client-connect/src/commands/ListAuthenticationProfilesCommand.ts @@ -84,6 +84,7 @@ export interface ListAuthenticationProfilesCommandOutput extends ListAuthenticat * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListAuthenticationProfilesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListBotsCommand.ts b/clients/client-connect/src/commands/ListBotsCommand.ts index 4780e22494c3e..d721b083043f8 100644 --- a/clients/client-connect/src/commands/ListBotsCommand.ts +++ b/clients/client-connect/src/commands/ListBotsCommand.ts @@ -82,6 +82,7 @@ export interface ListBotsCommandOutput extends ListBotsResponse, __MetadataBeare * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListBotsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListContactEvaluationsCommand.ts b/clients/client-connect/src/commands/ListContactEvaluationsCommand.ts index 57a2378944b21..f5c37050f7acf 100644 --- a/clients/client-connect/src/commands/ListContactEvaluationsCommand.ts +++ b/clients/client-connect/src/commands/ListContactEvaluationsCommand.ts @@ -86,6 +86,7 @@ export interface ListContactEvaluationsCommandOutput extends ListContactEvaluati * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListContactEvaluationsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListContactFlowModulesCommand.ts b/clients/client-connect/src/commands/ListContactFlowModulesCommand.ts index 04ff2f52d014d..c67a5bfc1d88b 100644 --- a/clients/client-connect/src/commands/ListContactFlowModulesCommand.ts +++ b/clients/client-connect/src/commands/ListContactFlowModulesCommand.ts @@ -85,6 +85,7 @@ export interface ListContactFlowModulesCommandOutput extends ListContactFlowModu * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListContactFlowModulesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListContactFlowVersionsCommand.ts b/clients/client-connect/src/commands/ListContactFlowVersionsCommand.ts index 43c07da3b8a62..c8115a8e0212f 100644 --- a/clients/client-connect/src/commands/ListContactFlowVersionsCommand.ts +++ b/clients/client-connect/src/commands/ListContactFlowVersionsCommand.ts @@ -84,6 +84,7 @@ export interface ListContactFlowVersionsCommandOutput extends ListContactFlowVer * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListContactFlowVersionsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListContactFlowsCommand.ts b/clients/client-connect/src/commands/ListContactFlowsCommand.ts index e739255c6c8a7..825702d297683 100644 --- a/clients/client-connect/src/commands/ListContactFlowsCommand.ts +++ b/clients/client-connect/src/commands/ListContactFlowsCommand.ts @@ -89,6 +89,7 @@ export interface ListContactFlowsCommandOutput extends ListContactFlowsResponse, * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListContactFlowsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListContactReferencesCommand.ts b/clients/client-connect/src/commands/ListContactReferencesCommand.ts index f19d0390205fe..b084cb8dd70c8 100644 --- a/clients/client-connect/src/commands/ListContactReferencesCommand.ts +++ b/clients/client-connect/src/commands/ListContactReferencesCommand.ts @@ -112,6 +112,7 @@ export interface ListContactReferencesCommandOutput extends ListContactReference * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListContactReferencesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListDefaultVocabulariesCommand.ts b/clients/client-connect/src/commands/ListDefaultVocabulariesCommand.ts index a58740507a92a..1067b720a7341 100644 --- a/clients/client-connect/src/commands/ListDefaultVocabulariesCommand.ts +++ b/clients/client-connect/src/commands/ListDefaultVocabulariesCommand.ts @@ -78,6 +78,7 @@ export interface ListDefaultVocabulariesCommandOutput extends ListDefaultVocabul * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListDefaultVocabulariesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListEvaluationFormVersionsCommand.ts b/clients/client-connect/src/commands/ListEvaluationFormVersionsCommand.ts index 89c5054ce0bca..792d921a26f37 100644 --- a/clients/client-connect/src/commands/ListEvaluationFormVersionsCommand.ts +++ b/clients/client-connect/src/commands/ListEvaluationFormVersionsCommand.ts @@ -83,6 +83,7 @@ export interface ListEvaluationFormVersionsCommandOutput extends ListEvaluationF * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListEvaluationFormVersionsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListEvaluationFormsCommand.ts b/clients/client-connect/src/commands/ListEvaluationFormsCommand.ts index 6c57fc65799a0..a9ea6968dec1f 100644 --- a/clients/client-connect/src/commands/ListEvaluationFormsCommand.ts +++ b/clients/client-connect/src/commands/ListEvaluationFormsCommand.ts @@ -84,6 +84,7 @@ export interface ListEvaluationFormsCommandOutput extends ListEvaluationFormsRes * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListEvaluationFormsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListFlowAssociationsCommand.ts b/clients/client-connect/src/commands/ListFlowAssociationsCommand.ts index 333a2e18ea6aa..e10c2f77e29a5 100644 --- a/clients/client-connect/src/commands/ListFlowAssociationsCommand.ts +++ b/clients/client-connect/src/commands/ListFlowAssociationsCommand.ts @@ -83,6 +83,7 @@ export interface ListFlowAssociationsCommandOutput extends ListFlowAssociationsR * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListFlowAssociationsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListHoursOfOperationOverridesCommand.ts b/clients/client-connect/src/commands/ListHoursOfOperationOverridesCommand.ts index a4f841607c772..a93bba2298fa3 100644 --- a/clients/client-connect/src/commands/ListHoursOfOperationOverridesCommand.ts +++ b/clients/client-connect/src/commands/ListHoursOfOperationOverridesCommand.ts @@ -104,6 +104,7 @@ export interface ListHoursOfOperationOverridesCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListHoursOfOperationOverridesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListHoursOfOperationsCommand.ts b/clients/client-connect/src/commands/ListHoursOfOperationsCommand.ts index 3d15010879abd..3dd05dbf1ea0a 100644 --- a/clients/client-connect/src/commands/ListHoursOfOperationsCommand.ts +++ b/clients/client-connect/src/commands/ListHoursOfOperationsCommand.ts @@ -84,6 +84,7 @@ export interface ListHoursOfOperationsCommandOutput extends ListHoursOfOperation * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListHoursOfOperationsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListInstanceAttributesCommand.ts b/clients/client-connect/src/commands/ListInstanceAttributesCommand.ts index 5fec0648376d3..8af59b0ab3262 100644 --- a/clients/client-connect/src/commands/ListInstanceAttributesCommand.ts +++ b/clients/client-connect/src/commands/ListInstanceAttributesCommand.ts @@ -79,6 +79,7 @@ export interface ListInstanceAttributesCommandOutput extends ListInstanceAttribu * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListInstanceAttributesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListInstanceStorageConfigsCommand.ts b/clients/client-connect/src/commands/ListInstanceStorageConfigsCommand.ts index b27be6fe105de..c06a52498f2ac 100644 --- a/clients/client-connect/src/commands/ListInstanceStorageConfigsCommand.ts +++ b/clients/client-connect/src/commands/ListInstanceStorageConfigsCommand.ts @@ -103,6 +103,7 @@ export interface ListInstanceStorageConfigsCommandOutput extends ListInstanceSto * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListInstanceStorageConfigsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListInstancesCommand.ts b/clients/client-connect/src/commands/ListInstancesCommand.ts index ca295e0cd5006..8e8b61fd60211 100644 --- a/clients/client-connect/src/commands/ListInstancesCommand.ts +++ b/clients/client-connect/src/commands/ListInstancesCommand.ts @@ -83,6 +83,7 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListInstancesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListIntegrationAssociationsCommand.ts b/clients/client-connect/src/commands/ListIntegrationAssociationsCommand.ts index 90c988e0200f3..4d7732d092881 100644 --- a/clients/client-connect/src/commands/ListIntegrationAssociationsCommand.ts +++ b/clients/client-connect/src/commands/ListIntegrationAssociationsCommand.ts @@ -89,6 +89,7 @@ export interface ListIntegrationAssociationsCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListIntegrationAssociationsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListLambdaFunctionsCommand.ts b/clients/client-connect/src/commands/ListLambdaFunctionsCommand.ts index e604f29dc6679..3cfce91a170b1 100644 --- a/clients/client-connect/src/commands/ListLambdaFunctionsCommand.ts +++ b/clients/client-connect/src/commands/ListLambdaFunctionsCommand.ts @@ -77,6 +77,7 @@ export interface ListLambdaFunctionsCommandOutput extends ListLambdaFunctionsRes * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListLambdaFunctionsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListLexBotsCommand.ts b/clients/client-connect/src/commands/ListLexBotsCommand.ts index df49330708afb..45a6e732093cd 100644 --- a/clients/client-connect/src/commands/ListLexBotsCommand.ts +++ b/clients/client-connect/src/commands/ListLexBotsCommand.ts @@ -81,6 +81,7 @@ export interface ListLexBotsCommandOutput extends ListLexBotsResponse, __Metadat * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListLexBotsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListPhoneNumbersCommand.ts b/clients/client-connect/src/commands/ListPhoneNumbersCommand.ts index 575cb4536bbb8..8c2f77ff5f646 100644 --- a/clients/client-connect/src/commands/ListPhoneNumbersCommand.ts +++ b/clients/client-connect/src/commands/ListPhoneNumbersCommand.ts @@ -107,6 +107,7 @@ export interface ListPhoneNumbersCommandOutput extends ListPhoneNumbersResponse, * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListPhoneNumbersCommand extends $Command diff --git a/clients/client-connect/src/commands/ListPhoneNumbersV2Command.ts b/clients/client-connect/src/commands/ListPhoneNumbersV2Command.ts index ff7dab7a4cd0d..081a8067f6234 100644 --- a/clients/client-connect/src/commands/ListPhoneNumbersV2Command.ts +++ b/clients/client-connect/src/commands/ListPhoneNumbersV2Command.ts @@ -110,6 +110,7 @@ export interface ListPhoneNumbersV2CommandOutput extends ListPhoneNumbersV2Respo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListPhoneNumbersV2Command extends $Command diff --git a/clients/client-connect/src/commands/ListPredefinedAttributesCommand.ts b/clients/client-connect/src/commands/ListPredefinedAttributesCommand.ts index b6fa365c948e4..4cd7688653b14 100644 --- a/clients/client-connect/src/commands/ListPredefinedAttributesCommand.ts +++ b/clients/client-connect/src/commands/ListPredefinedAttributesCommand.ts @@ -82,6 +82,7 @@ export interface ListPredefinedAttributesCommandOutput extends ListPredefinedAtt * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListPredefinedAttributesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListPromptsCommand.ts b/clients/client-connect/src/commands/ListPromptsCommand.ts index 36310ff113c39..caee6f7a1e603 100644 --- a/clients/client-connect/src/commands/ListPromptsCommand.ts +++ b/clients/client-connect/src/commands/ListPromptsCommand.ts @@ -81,6 +81,7 @@ export interface ListPromptsCommandOutput extends ListPromptsResponse, __Metadat * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListPromptsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListQueueQuickConnectsCommand.ts b/clients/client-connect/src/commands/ListQueueQuickConnectsCommand.ts index fa2aaa5a3434d..78ed4d15a9f33 100644 --- a/clients/client-connect/src/commands/ListQueueQuickConnectsCommand.ts +++ b/clients/client-connect/src/commands/ListQueueQuickConnectsCommand.ts @@ -86,6 +86,7 @@ export interface ListQueueQuickConnectsCommandOutput extends ListQueueQuickConne * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListQueueQuickConnectsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListQueuesCommand.ts b/clients/client-connect/src/commands/ListQueuesCommand.ts index b597fe94fb7ee..4a72974dceaaa 100644 --- a/clients/client-connect/src/commands/ListQueuesCommand.ts +++ b/clients/client-connect/src/commands/ListQueuesCommand.ts @@ -92,6 +92,7 @@ export interface ListQueuesCommandOutput extends ListQueuesResponse, __MetadataB * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListQueuesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListQuickConnectsCommand.ts b/clients/client-connect/src/commands/ListQuickConnectsCommand.ts index 284b801b3d7ac..b8c0d95210dbc 100644 --- a/clients/client-connect/src/commands/ListQuickConnectsCommand.ts +++ b/clients/client-connect/src/commands/ListQuickConnectsCommand.ts @@ -86,6 +86,7 @@ export interface ListQuickConnectsCommandOutput extends ListQuickConnectsRespons * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListQuickConnectsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListRealtimeContactAnalysisSegmentsV2Command.ts b/clients/client-connect/src/commands/ListRealtimeContactAnalysisSegmentsV2Command.ts index dc9cc6651a40a..607fc56ca29a1 100644 --- a/clients/client-connect/src/commands/ListRealtimeContactAnalysisSegmentsV2Command.ts +++ b/clients/client-connect/src/commands/ListRealtimeContactAnalysisSegmentsV2Command.ts @@ -186,6 +186,7 @@ export interface ListRealtimeContactAnalysisSegmentsV2CommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListRealtimeContactAnalysisSegmentsV2Command extends $Command diff --git a/clients/client-connect/src/commands/ListRoutingProfileQueuesCommand.ts b/clients/client-connect/src/commands/ListRoutingProfileQueuesCommand.ts index 13f20fb4f2a48..9fb26cef3926a 100644 --- a/clients/client-connect/src/commands/ListRoutingProfileQueuesCommand.ts +++ b/clients/client-connect/src/commands/ListRoutingProfileQueuesCommand.ts @@ -85,6 +85,7 @@ export interface ListRoutingProfileQueuesCommandOutput extends ListRoutingProfil * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListRoutingProfileQueuesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListRoutingProfilesCommand.ts b/clients/client-connect/src/commands/ListRoutingProfilesCommand.ts index c8a9e5fb8ca56..240e850690edb 100644 --- a/clients/client-connect/src/commands/ListRoutingProfilesCommand.ts +++ b/clients/client-connect/src/commands/ListRoutingProfilesCommand.ts @@ -84,6 +84,7 @@ export interface ListRoutingProfilesCommandOutput extends ListRoutingProfilesRes * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListRoutingProfilesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListRulesCommand.ts b/clients/client-connect/src/commands/ListRulesCommand.ts index 51a34be3c259d..17a7cf8cd4768 100644 --- a/clients/client-connect/src/commands/ListRulesCommand.ts +++ b/clients/client-connect/src/commands/ListRulesCommand.ts @@ -90,6 +90,7 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListRulesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListSecurityKeysCommand.ts b/clients/client-connect/src/commands/ListSecurityKeysCommand.ts index c5017bbb1d6f7..9aaa16af29b7d 100644 --- a/clients/client-connect/src/commands/ListSecurityKeysCommand.ts +++ b/clients/client-connect/src/commands/ListSecurityKeysCommand.ts @@ -80,6 +80,7 @@ export interface ListSecurityKeysCommandOutput extends ListSecurityKeysResponse, * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListSecurityKeysCommand extends $Command diff --git a/clients/client-connect/src/commands/ListSecurityProfileApplicationsCommand.ts b/clients/client-connect/src/commands/ListSecurityProfileApplicationsCommand.ts index a8b81e48bfc1b..5c2dc4a7ae159 100644 --- a/clients/client-connect/src/commands/ListSecurityProfileApplicationsCommand.ts +++ b/clients/client-connect/src/commands/ListSecurityProfileApplicationsCommand.ts @@ -88,6 +88,7 @@ export interface ListSecurityProfileApplicationsCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListSecurityProfileApplicationsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListSecurityProfilePermissionsCommand.ts b/clients/client-connect/src/commands/ListSecurityProfilePermissionsCommand.ts index 16e19e8644789..12642c4db3911 100644 --- a/clients/client-connect/src/commands/ListSecurityProfilePermissionsCommand.ts +++ b/clients/client-connect/src/commands/ListSecurityProfilePermissionsCommand.ts @@ -87,6 +87,7 @@ export interface ListSecurityProfilePermissionsCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListSecurityProfilePermissionsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListSecurityProfilesCommand.ts b/clients/client-connect/src/commands/ListSecurityProfilesCommand.ts index d61e98053da59..674fb5f75c13e 100644 --- a/clients/client-connect/src/commands/ListSecurityProfilesCommand.ts +++ b/clients/client-connect/src/commands/ListSecurityProfilesCommand.ts @@ -85,6 +85,7 @@ export interface ListSecurityProfilesCommandOutput extends ListSecurityProfilesR * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListSecurityProfilesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListTagsForResourceCommand.ts b/clients/client-connect/src/commands/ListTagsForResourceCommand.ts index d3df4272739ad..88b79da1351c5 100644 --- a/clients/client-connect/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-connect/src/commands/ListTagsForResourceCommand.ts @@ -75,6 +75,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-connect/src/commands/ListTaskTemplatesCommand.ts b/clients/client-connect/src/commands/ListTaskTemplatesCommand.ts index 448f319e343dd..90503c2ecacb3 100644 --- a/clients/client-connect/src/commands/ListTaskTemplatesCommand.ts +++ b/clients/client-connect/src/commands/ListTaskTemplatesCommand.ts @@ -85,6 +85,7 @@ export interface ListTaskTemplatesCommandOutput extends ListTaskTemplatesRespons * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListTaskTemplatesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListTrafficDistributionGroupUsersCommand.ts b/clients/client-connect/src/commands/ListTrafficDistributionGroupUsersCommand.ts index 72c89031fef9e..06b648098753b 100644 --- a/clients/client-connect/src/commands/ListTrafficDistributionGroupUsersCommand.ts +++ b/clients/client-connect/src/commands/ListTrafficDistributionGroupUsersCommand.ts @@ -85,6 +85,7 @@ export interface ListTrafficDistributionGroupUsersCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListTrafficDistributionGroupUsersCommand extends $Command diff --git a/clients/client-connect/src/commands/ListTrafficDistributionGroupsCommand.ts b/clients/client-connect/src/commands/ListTrafficDistributionGroupsCommand.ts index 1a081fb9a2917..123fcd0632052 100644 --- a/clients/client-connect/src/commands/ListTrafficDistributionGroupsCommand.ts +++ b/clients/client-connect/src/commands/ListTrafficDistributionGroupsCommand.ts @@ -84,6 +84,7 @@ export interface ListTrafficDistributionGroupsCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListTrafficDistributionGroupsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListUseCasesCommand.ts b/clients/client-connect/src/commands/ListUseCasesCommand.ts index f60162b91068f..735ae0402af1c 100644 --- a/clients/client-connect/src/commands/ListUseCasesCommand.ts +++ b/clients/client-connect/src/commands/ListUseCasesCommand.ts @@ -77,6 +77,7 @@ export interface ListUseCasesCommandOutput extends ListUseCasesResponse, __Metad * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListUseCasesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListUserHierarchyGroupsCommand.ts b/clients/client-connect/src/commands/ListUserHierarchyGroupsCommand.ts index 1ca4a799b3038..38dd3e03fe0f4 100644 --- a/clients/client-connect/src/commands/ListUserHierarchyGroupsCommand.ts +++ b/clients/client-connect/src/commands/ListUserHierarchyGroupsCommand.ts @@ -84,6 +84,7 @@ export interface ListUserHierarchyGroupsCommandOutput extends ListUserHierarchyG * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListUserHierarchyGroupsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListUserProficienciesCommand.ts b/clients/client-connect/src/commands/ListUserProficienciesCommand.ts index 3777373df262b..85a35fa7ab97f 100644 --- a/clients/client-connect/src/commands/ListUserProficienciesCommand.ts +++ b/clients/client-connect/src/commands/ListUserProficienciesCommand.ts @@ -82,6 +82,7 @@ export interface ListUserProficienciesCommandOutput extends ListUserProficiencie * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListUserProficienciesCommand extends $Command diff --git a/clients/client-connect/src/commands/ListUsersCommand.ts b/clients/client-connect/src/commands/ListUsersCommand.ts index 410dbc91ea785..549df90428a14 100644 --- a/clients/client-connect/src/commands/ListUsersCommand.ts +++ b/clients/client-connect/src/commands/ListUsersCommand.ts @@ -82,6 +82,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListUsersCommand extends $Command diff --git a/clients/client-connect/src/commands/ListViewVersionsCommand.ts b/clients/client-connect/src/commands/ListViewVersionsCommand.ts index 24e4e7cec55f6..2bda2e795ddb6 100644 --- a/clients/client-connect/src/commands/ListViewVersionsCommand.ts +++ b/clients/client-connect/src/commands/ListViewVersionsCommand.ts @@ -93,6 +93,7 @@ export interface ListViewVersionsCommandOutput extends ListViewVersionsResponse, * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListViewVersionsCommand extends $Command diff --git a/clients/client-connect/src/commands/ListViewsCommand.ts b/clients/client-connect/src/commands/ListViewsCommand.ts index d64eea809d321..68cf1b65352de 100644 --- a/clients/client-connect/src/commands/ListViewsCommand.ts +++ b/clients/client-connect/src/commands/ListViewsCommand.ts @@ -87,6 +87,7 @@ export interface ListViewsCommandOutput extends ListViewsResponse, __MetadataBea * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ListViewsCommand extends $Command diff --git a/clients/client-connect/src/commands/MonitorContactCommand.ts b/clients/client-connect/src/commands/MonitorContactCommand.ts index 67e2063283459..9dc0b206fa2d4 100644 --- a/clients/client-connect/src/commands/MonitorContactCommand.ts +++ b/clients/client-connect/src/commands/MonitorContactCommand.ts @@ -85,6 +85,7 @@ export interface MonitorContactCommandOutput extends MonitorContactResponse, __M * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class MonitorContactCommand extends $Command diff --git a/clients/client-connect/src/commands/PauseContactCommand.ts b/clients/client-connect/src/commands/PauseContactCommand.ts index 88619c8e0646f..120ea29986cd2 100644 --- a/clients/client-connect/src/commands/PauseContactCommand.ts +++ b/clients/client-connect/src/commands/PauseContactCommand.ts @@ -80,6 +80,7 @@ export interface PauseContactCommandOutput extends PauseContactResponse, __Metad * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class PauseContactCommand extends $Command diff --git a/clients/client-connect/src/commands/PutUserStatusCommand.ts b/clients/client-connect/src/commands/PutUserStatusCommand.ts index eff9180217279..11a9b89f7b4b2 100644 --- a/clients/client-connect/src/commands/PutUserStatusCommand.ts +++ b/clients/client-connect/src/commands/PutUserStatusCommand.ts @@ -76,6 +76,7 @@ export interface PutUserStatusCommandOutput extends PutUserStatusResponse, __Met * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class PutUserStatusCommand extends $Command diff --git a/clients/client-connect/src/commands/ReleasePhoneNumberCommand.ts b/clients/client-connect/src/commands/ReleasePhoneNumberCommand.ts index f22786cc5be48..8f452a28d4664 100644 --- a/clients/client-connect/src/commands/ReleasePhoneNumberCommand.ts +++ b/clients/client-connect/src/commands/ReleasePhoneNumberCommand.ts @@ -96,6 +96,7 @@ export interface ReleasePhoneNumberCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ReleasePhoneNumberCommand extends $Command diff --git a/clients/client-connect/src/commands/ReplicateInstanceCommand.ts b/clients/client-connect/src/commands/ReplicateInstanceCommand.ts index 1797d2b1fb3db..f28c798785706 100644 --- a/clients/client-connect/src/commands/ReplicateInstanceCommand.ts +++ b/clients/client-connect/src/commands/ReplicateInstanceCommand.ts @@ -91,6 +91,7 @@ export interface ReplicateInstanceCommandOutput extends ReplicateInstanceRespons * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ReplicateInstanceCommand extends $Command diff --git a/clients/client-connect/src/commands/ResumeContactCommand.ts b/clients/client-connect/src/commands/ResumeContactCommand.ts index 4ce9721a27a09..a26ab76d706cd 100644 --- a/clients/client-connect/src/commands/ResumeContactCommand.ts +++ b/clients/client-connect/src/commands/ResumeContactCommand.ts @@ -77,6 +77,7 @@ export interface ResumeContactCommandOutput extends ResumeContactResponse, __Met * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ResumeContactCommand extends $Command diff --git a/clients/client-connect/src/commands/ResumeContactRecordingCommand.ts b/clients/client-connect/src/commands/ResumeContactRecordingCommand.ts index 89f04961edbd6..abace97c31524 100644 --- a/clients/client-connect/src/commands/ResumeContactRecordingCommand.ts +++ b/clients/client-connect/src/commands/ResumeContactRecordingCommand.ts @@ -69,6 +69,7 @@ export interface ResumeContactRecordingCommandOutput extends ResumeContactRecord * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class ResumeContactRecordingCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchAgentStatusesCommand.ts b/clients/client-connect/src/commands/SearchAgentStatusesCommand.ts index 08a3defeea6c6..7544360258259 100644 --- a/clients/client-connect/src/commands/SearchAgentStatusesCommand.ts +++ b/clients/client-connect/src/commands/SearchAgentStatusesCommand.ts @@ -138,6 +138,7 @@ export interface SearchAgentStatusesCommandOutput extends SearchAgentStatusesRes * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchAgentStatusesCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchAvailablePhoneNumbersCommand.ts b/clients/client-connect/src/commands/SearchAvailablePhoneNumbersCommand.ts index 384eda0030cb8..ab756f3e8c082 100644 --- a/clients/client-connect/src/commands/SearchAvailablePhoneNumbersCommand.ts +++ b/clients/client-connect/src/commands/SearchAvailablePhoneNumbersCommand.ts @@ -87,6 +87,7 @@ export interface SearchAvailablePhoneNumbersCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchAvailablePhoneNumbersCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchContactFlowModulesCommand.ts b/clients/client-connect/src/commands/SearchContactFlowModulesCommand.ts index 4a508c73710c5..4e367a1668b49 100644 --- a/clients/client-connect/src/commands/SearchContactFlowModulesCommand.ts +++ b/clients/client-connect/src/commands/SearchContactFlowModulesCommand.ts @@ -136,6 +136,7 @@ export interface SearchContactFlowModulesCommandOutput extends SearchContactFlow * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchContactFlowModulesCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchContactFlowsCommand.ts b/clients/client-connect/src/commands/SearchContactFlowsCommand.ts index 819236a2b4b6c..d2d36e26879bd 100644 --- a/clients/client-connect/src/commands/SearchContactFlowsCommand.ts +++ b/clients/client-connect/src/commands/SearchContactFlowsCommand.ts @@ -144,6 +144,7 @@ export interface SearchContactFlowsCommandOutput extends SearchContactFlowsRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchContactFlowsCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchContactsCommand.ts b/clients/client-connect/src/commands/SearchContactsCommand.ts index df29c65566b6f..ec2734e94e10f 100644 --- a/clients/client-connect/src/commands/SearchContactsCommand.ts +++ b/clients/client-connect/src/commands/SearchContactsCommand.ts @@ -179,6 +179,7 @@ export interface SearchContactsCommandOutput extends SearchContactsResponse, __M * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchContactsCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchEmailAddressesCommand.ts b/clients/client-connect/src/commands/SearchEmailAddressesCommand.ts index 7422eea124c50..e04a71406da37 100644 --- a/clients/client-connect/src/commands/SearchEmailAddressesCommand.ts +++ b/clients/client-connect/src/commands/SearchEmailAddressesCommand.ts @@ -130,6 +130,7 @@ export interface SearchEmailAddressesCommandOutput extends SearchEmailAddressesR * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchEmailAddressesCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchHoursOfOperationOverridesCommand.ts b/clients/client-connect/src/commands/SearchHoursOfOperationOverridesCommand.ts index 599242f03867a..e045f98fc1f92 100644 --- a/clients/client-connect/src/commands/SearchHoursOfOperationOverridesCommand.ts +++ b/clients/client-connect/src/commands/SearchHoursOfOperationOverridesCommand.ts @@ -157,6 +157,7 @@ export interface SearchHoursOfOperationOverridesCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchHoursOfOperationOverridesCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchHoursOfOperationsCommand.ts b/clients/client-connect/src/commands/SearchHoursOfOperationsCommand.ts index 927b5a24ad773..5c64a4f8ce2ba 100644 --- a/clients/client-connect/src/commands/SearchHoursOfOperationsCommand.ts +++ b/clients/client-connect/src/commands/SearchHoursOfOperationsCommand.ts @@ -146,6 +146,7 @@ export interface SearchHoursOfOperationsCommandOutput extends SearchHoursOfOpera * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchHoursOfOperationsCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchPredefinedAttributesCommand.ts b/clients/client-connect/src/commands/SearchPredefinedAttributesCommand.ts index 2ef35bbe4d7e7..3aa385954d017 100644 --- a/clients/client-connect/src/commands/SearchPredefinedAttributesCommand.ts +++ b/clients/client-connect/src/commands/SearchPredefinedAttributesCommand.ts @@ -114,6 +114,7 @@ export interface SearchPredefinedAttributesCommandOutput extends SearchPredefine * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchPredefinedAttributesCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchPromptsCommand.ts b/clients/client-connect/src/commands/SearchPromptsCommand.ts index b7eca9fd10c22..40c55700bb20d 100644 --- a/clients/client-connect/src/commands/SearchPromptsCommand.ts +++ b/clients/client-connect/src/commands/SearchPromptsCommand.ts @@ -131,6 +131,7 @@ export interface SearchPromptsCommandOutput extends SearchPromptsResponse, __Met * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchPromptsCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchQueuesCommand.ts b/clients/client-connect/src/commands/SearchQueuesCommand.ts index 1441a31ef446d..7c2f88ffaaff3 100644 --- a/clients/client-connect/src/commands/SearchQueuesCommand.ts +++ b/clients/client-connect/src/commands/SearchQueuesCommand.ts @@ -144,6 +144,7 @@ export interface SearchQueuesCommandOutput extends SearchQueuesResponse, __Metad * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchQueuesCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchQuickConnectsCommand.ts b/clients/client-connect/src/commands/SearchQuickConnectsCommand.ts index 92bb62f546bbb..4988dd68bc9ff 100644 --- a/clients/client-connect/src/commands/SearchQuickConnectsCommand.ts +++ b/clients/client-connect/src/commands/SearchQuickConnectsCommand.ts @@ -145,6 +145,7 @@ export interface SearchQuickConnectsCommandOutput extends SearchQuickConnectsRes * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchQuickConnectsCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchResourceTagsCommand.ts b/clients/client-connect/src/commands/SearchResourceTagsCommand.ts index 67a3a2dced922..45d3f5af7ea4b 100644 --- a/clients/client-connect/src/commands/SearchResourceTagsCommand.ts +++ b/clients/client-connect/src/commands/SearchResourceTagsCommand.ts @@ -93,6 +93,7 @@ export interface SearchResourceTagsCommandOutput extends SearchResourceTagsRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchResourceTagsCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchRoutingProfilesCommand.ts b/clients/client-connect/src/commands/SearchRoutingProfilesCommand.ts index db57aa395cff1..21f89443ef55f 100644 --- a/clients/client-connect/src/commands/SearchRoutingProfilesCommand.ts +++ b/clients/client-connect/src/commands/SearchRoutingProfilesCommand.ts @@ -149,6 +149,7 @@ export interface SearchRoutingProfilesCommandOutput extends SearchRoutingProfile * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchRoutingProfilesCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchSecurityProfilesCommand.ts b/clients/client-connect/src/commands/SearchSecurityProfilesCommand.ts index 073fb710a879e..81a77e7e5f810 100644 --- a/clients/client-connect/src/commands/SearchSecurityProfilesCommand.ts +++ b/clients/client-connect/src/commands/SearchSecurityProfilesCommand.ts @@ -135,6 +135,7 @@ export interface SearchSecurityProfilesCommandOutput extends SearchSecurityProfi * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchSecurityProfilesCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchUserHierarchyGroupsCommand.ts b/clients/client-connect/src/commands/SearchUserHierarchyGroupsCommand.ts index c261634495c72..a9965f52cd0c5 100644 --- a/clients/client-connect/src/commands/SearchUserHierarchyGroupsCommand.ts +++ b/clients/client-connect/src/commands/SearchUserHierarchyGroupsCommand.ts @@ -177,6 +177,7 @@ export interface SearchUserHierarchyGroupsCommandOutput extends SearchUserHierar * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchUserHierarchyGroupsCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchUsersCommand.ts b/clients/client-connect/src/commands/SearchUsersCommand.ts index d27706137b359..6b0ed7422b900 100644 --- a/clients/client-connect/src/commands/SearchUsersCommand.ts +++ b/clients/client-connect/src/commands/SearchUsersCommand.ts @@ -198,6 +198,7 @@ export interface SearchUsersCommandOutput extends SearchUsersResponse, __Metadat * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchUsersCommand extends $Command diff --git a/clients/client-connect/src/commands/SearchVocabulariesCommand.ts b/clients/client-connect/src/commands/SearchVocabulariesCommand.ts index e815a94b47957..4910092da8edc 100644 --- a/clients/client-connect/src/commands/SearchVocabulariesCommand.ts +++ b/clients/client-connect/src/commands/SearchVocabulariesCommand.ts @@ -84,6 +84,7 @@ export interface SearchVocabulariesCommandOutput extends SearchVocabulariesRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SearchVocabulariesCommand extends $Command diff --git a/clients/client-connect/src/commands/SendChatIntegrationEventCommand.ts b/clients/client-connect/src/commands/SendChatIntegrationEventCommand.ts index fd73d6d44b6e1..5a2ee8705f644 100644 --- a/clients/client-connect/src/commands/SendChatIntegrationEventCommand.ts +++ b/clients/client-connect/src/commands/SendChatIntegrationEventCommand.ts @@ -107,6 +107,7 @@ export interface SendChatIntegrationEventCommandOutput extends SendChatIntegrati * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SendChatIntegrationEventCommand extends $Command diff --git a/clients/client-connect/src/commands/SendOutboundEmailCommand.ts b/clients/client-connect/src/commands/SendOutboundEmailCommand.ts index 17df58121fab4..1bedbfbc44536 100644 --- a/clients/client-connect/src/commands/SendOutboundEmailCommand.ts +++ b/clients/client-connect/src/commands/SendOutboundEmailCommand.ts @@ -123,6 +123,7 @@ export interface SendOutboundEmailCommandOutput extends SendOutboundEmailRespons * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SendOutboundEmailCommand extends $Command diff --git a/clients/client-connect/src/commands/StartAttachedFileUploadCommand.ts b/clients/client-connect/src/commands/StartAttachedFileUploadCommand.ts index 3a643d067a098..b7344f3e011e8 100644 --- a/clients/client-connect/src/commands/StartAttachedFileUploadCommand.ts +++ b/clients/client-connect/src/commands/StartAttachedFileUploadCommand.ts @@ -105,6 +105,7 @@ export interface StartAttachedFileUploadCommandOutput extends StartAttachedFileU * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StartAttachedFileUploadCommand extends $Command diff --git a/clients/client-connect/src/commands/StartChatContactCommand.ts b/clients/client-connect/src/commands/StartChatContactCommand.ts index 404db18208088..b5170db650e02 100644 --- a/clients/client-connect/src/commands/StartChatContactCommand.ts +++ b/clients/client-connect/src/commands/StartChatContactCommand.ts @@ -143,6 +143,7 @@ export interface StartChatContactCommandOutput extends StartChatContactResponse, * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StartChatContactCommand extends $Command diff --git a/clients/client-connect/src/commands/StartContactEvaluationCommand.ts b/clients/client-connect/src/commands/StartContactEvaluationCommand.ts index 9b8732ab3e7a3..1be99dcd90d3b 100644 --- a/clients/client-connect/src/commands/StartContactEvaluationCommand.ts +++ b/clients/client-connect/src/commands/StartContactEvaluationCommand.ts @@ -84,6 +84,7 @@ export interface StartContactEvaluationCommandOutput extends StartContactEvaluat * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StartContactEvaluationCommand extends $Command diff --git a/clients/client-connect/src/commands/StartContactRecordingCommand.ts b/clients/client-connect/src/commands/StartContactRecordingCommand.ts index eb28ac1d8973f..ed087cc1b267c 100644 --- a/clients/client-connect/src/commands/StartContactRecordingCommand.ts +++ b/clients/client-connect/src/commands/StartContactRecordingCommand.ts @@ -89,6 +89,7 @@ export interface StartContactRecordingCommandOutput extends StartContactRecordin * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StartContactRecordingCommand extends $Command diff --git a/clients/client-connect/src/commands/StartContactStreamingCommand.ts b/clients/client-connect/src/commands/StartContactStreamingCommand.ts index f1a48c64a3106..ed95657bcf203 100644 --- a/clients/client-connect/src/commands/StartContactStreamingCommand.ts +++ b/clients/client-connect/src/commands/StartContactStreamingCommand.ts @@ -91,6 +91,7 @@ export interface StartContactStreamingCommandOutput extends StartContactStreamin * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StartContactStreamingCommand extends $Command diff --git a/clients/client-connect/src/commands/StartEmailContactCommand.ts b/clients/client-connect/src/commands/StartEmailContactCommand.ts index 47cab464bad73..28124073c17c3 100644 --- a/clients/client-connect/src/commands/StartEmailContactCommand.ts +++ b/clients/client-connect/src/commands/StartEmailContactCommand.ts @@ -146,6 +146,7 @@ export interface StartEmailContactCommandOutput extends StartEmailContactRespons * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StartEmailContactCommand extends $Command diff --git a/clients/client-connect/src/commands/StartOutboundChatContactCommand.ts b/clients/client-connect/src/commands/StartOutboundChatContactCommand.ts index 0fcb4694c42d7..0f6eb89d10fd3 100644 --- a/clients/client-connect/src/commands/StartOutboundChatContactCommand.ts +++ b/clients/client-connect/src/commands/StartOutboundChatContactCommand.ts @@ -142,6 +142,7 @@ export interface StartOutboundChatContactCommandOutput extends StartOutboundChat * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StartOutboundChatContactCommand extends $Command diff --git a/clients/client-connect/src/commands/StartOutboundEmailContactCommand.ts b/clients/client-connect/src/commands/StartOutboundEmailContactCommand.ts index 6f36e039c4113..3ffe8a923922a 100644 --- a/clients/client-connect/src/commands/StartOutboundEmailContactCommand.ts +++ b/clients/client-connect/src/commands/StartOutboundEmailContactCommand.ts @@ -117,6 +117,7 @@ export interface StartOutboundEmailContactCommandOutput extends StartOutboundEma * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StartOutboundEmailContactCommand extends $Command diff --git a/clients/client-connect/src/commands/StartOutboundVoiceContactCommand.ts b/clients/client-connect/src/commands/StartOutboundVoiceContactCommand.ts index e3a7a2e2ac65b..b16893af26226 100644 --- a/clients/client-connect/src/commands/StartOutboundVoiceContactCommand.ts +++ b/clients/client-connect/src/commands/StartOutboundVoiceContactCommand.ts @@ -123,6 +123,7 @@ export interface StartOutboundVoiceContactCommandOutput extends StartOutboundVoi * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StartOutboundVoiceContactCommand extends $Command diff --git a/clients/client-connect/src/commands/StartScreenSharingCommand.ts b/clients/client-connect/src/commands/StartScreenSharingCommand.ts index 31bf857a4f6c6..7e4d8c896f924 100644 --- a/clients/client-connect/src/commands/StartScreenSharingCommand.ts +++ b/clients/client-connect/src/commands/StartScreenSharingCommand.ts @@ -75,6 +75,7 @@ export interface StartScreenSharingCommandOutput extends StartScreenSharingRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StartScreenSharingCommand extends $Command diff --git a/clients/client-connect/src/commands/StartTaskContactCommand.ts b/clients/client-connect/src/commands/StartTaskContactCommand.ts index 1cb9020c46489..3050cac7445eb 100644 --- a/clients/client-connect/src/commands/StartTaskContactCommand.ts +++ b/clients/client-connect/src/commands/StartTaskContactCommand.ts @@ -160,6 +160,7 @@ export interface StartTaskContactCommandOutput extends StartTaskContactResponse, * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StartTaskContactCommand extends $Command diff --git a/clients/client-connect/src/commands/StartWebRTCContactCommand.ts b/clients/client-connect/src/commands/StartWebRTCContactCommand.ts index 1e64586b8949e..7823d60ca70fe 100644 --- a/clients/client-connect/src/commands/StartWebRTCContactCommand.ts +++ b/clients/client-connect/src/commands/StartWebRTCContactCommand.ts @@ -129,6 +129,7 @@ export interface StartWebRTCContactCommandOutput extends StartWebRTCContactRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StartWebRTCContactCommand extends $Command diff --git a/clients/client-connect/src/commands/StopContactCommand.ts b/clients/client-connect/src/commands/StopContactCommand.ts index e187438c70d98..1e895b4790b16 100644 --- a/clients/client-connect/src/commands/StopContactCommand.ts +++ b/clients/client-connect/src/commands/StopContactCommand.ts @@ -93,6 +93,7 @@ export interface StopContactCommandOutput extends StopContactResponse, __Metadat * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StopContactCommand extends $Command diff --git a/clients/client-connect/src/commands/StopContactRecordingCommand.ts b/clients/client-connect/src/commands/StopContactRecordingCommand.ts index a177fd8094d76..8ed38789cc9f2 100644 --- a/clients/client-connect/src/commands/StopContactRecordingCommand.ts +++ b/clients/client-connect/src/commands/StopContactRecordingCommand.ts @@ -70,6 +70,7 @@ export interface StopContactRecordingCommandOutput extends StopContactRecordingR * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StopContactRecordingCommand extends $Command diff --git a/clients/client-connect/src/commands/StopContactStreamingCommand.ts b/clients/client-connect/src/commands/StopContactStreamingCommand.ts index 42e80cf654439..ce56e98241d88 100644 --- a/clients/client-connect/src/commands/StopContactStreamingCommand.ts +++ b/clients/client-connect/src/commands/StopContactStreamingCommand.ts @@ -69,6 +69,7 @@ export interface StopContactStreamingCommandOutput extends StopContactStreamingR * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class StopContactStreamingCommand extends $Command diff --git a/clients/client-connect/src/commands/SubmitContactEvaluationCommand.ts b/clients/client-connect/src/commands/SubmitContactEvaluationCommand.ts index d8096fd0b4159..9bc2407bd786b 100644 --- a/clients/client-connect/src/commands/SubmitContactEvaluationCommand.ts +++ b/clients/client-connect/src/commands/SubmitContactEvaluationCommand.ts @@ -91,6 +91,7 @@ export interface SubmitContactEvaluationCommandOutput extends SubmitContactEvalu * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SubmitContactEvaluationCommand extends $Command diff --git a/clients/client-connect/src/commands/SuspendContactRecordingCommand.ts b/clients/client-connect/src/commands/SuspendContactRecordingCommand.ts index 91d4bbc150060..3c669c8d99b2f 100644 --- a/clients/client-connect/src/commands/SuspendContactRecordingCommand.ts +++ b/clients/client-connect/src/commands/SuspendContactRecordingCommand.ts @@ -72,6 +72,7 @@ export interface SuspendContactRecordingCommandOutput extends SuspendContactReco * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class SuspendContactRecordingCommand extends $Command diff --git a/clients/client-connect/src/commands/TagContactCommand.ts b/clients/client-connect/src/commands/TagContactCommand.ts index a933319172e38..e49855e6ef625 100644 --- a/clients/client-connect/src/commands/TagContactCommand.ts +++ b/clients/client-connect/src/commands/TagContactCommand.ts @@ -74,6 +74,7 @@ export interface TagContactCommandOutput extends TagContactResponse, __MetadataB * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class TagContactCommand extends $Command diff --git a/clients/client-connect/src/commands/TagResourceCommand.ts b/clients/client-connect/src/commands/TagResourceCommand.ts index 1a08dfc6c448f..a6877dd986026 100644 --- a/clients/client-connect/src/commands/TagResourceCommand.ts +++ b/clients/client-connect/src/commands/TagResourceCommand.ts @@ -77,6 +77,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-connect/src/commands/TransferContactCommand.ts b/clients/client-connect/src/commands/TransferContactCommand.ts index b7965286e2a8d..03f51784e8063 100644 --- a/clients/client-connect/src/commands/TransferContactCommand.ts +++ b/clients/client-connect/src/commands/TransferContactCommand.ts @@ -106,6 +106,7 @@ export interface TransferContactCommandOutput extends TransferContactResponse, _ * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class TransferContactCommand extends $Command diff --git a/clients/client-connect/src/commands/UntagContactCommand.ts b/clients/client-connect/src/commands/UntagContactCommand.ts index 5bf0f0a3ab969..281636d0409f6 100644 --- a/clients/client-connect/src/commands/UntagContactCommand.ts +++ b/clients/client-connect/src/commands/UntagContactCommand.ts @@ -74,6 +74,7 @@ export interface UntagContactCommandOutput extends UntagContactResponse, __Metad * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UntagContactCommand extends $Command diff --git a/clients/client-connect/src/commands/UntagResourceCommand.ts b/clients/client-connect/src/commands/UntagResourceCommand.ts index 660e21e7324af..de72d3dfc3247 100644 --- a/clients/client-connect/src/commands/UntagResourceCommand.ts +++ b/clients/client-connect/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateAgentStatusCommand.ts b/clients/client-connect/src/commands/UpdateAgentStatusCommand.ts index 50b4226ed46f1..3801f98bfbf98 100644 --- a/clients/client-connect/src/commands/UpdateAgentStatusCommand.ts +++ b/clients/client-connect/src/commands/UpdateAgentStatusCommand.ts @@ -81,6 +81,7 @@ export interface UpdateAgentStatusCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateAgentStatusCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateAuthenticationProfileCommand.ts b/clients/client-connect/src/commands/UpdateAuthenticationProfileCommand.ts index cec4a6fbf29e5..5adc2a5613b0d 100644 --- a/clients/client-connect/src/commands/UpdateAuthenticationProfileCommand.ts +++ b/clients/client-connect/src/commands/UpdateAuthenticationProfileCommand.ts @@ -83,6 +83,7 @@ export interface UpdateAuthenticationProfileCommandOutput extends __MetadataBear * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateAuthenticationProfileCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateContactAttributesCommand.ts b/clients/client-connect/src/commands/UpdateContactAttributesCommand.ts index c9b4cbce21e2c..91e023469c683 100644 --- a/clients/client-connect/src/commands/UpdateContactAttributesCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactAttributesCommand.ts @@ -82,6 +82,7 @@ export interface UpdateContactAttributesCommandOutput extends UpdateContactAttri * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateContactAttributesCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateContactCommand.ts b/clients/client-connect/src/commands/UpdateContactCommand.ts index bcb6c3d2816c3..ef572c2351f6d 100644 --- a/clients/client-connect/src/commands/UpdateContactCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactCommand.ts @@ -123,6 +123,7 @@ export interface UpdateContactCommandOutput extends UpdateContactResponse, __Met * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateContactCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateContactEvaluationCommand.ts b/clients/client-connect/src/commands/UpdateContactEvaluationCommand.ts index 8e0d441e00eda..29cd8597014e5 100644 --- a/clients/client-connect/src/commands/UpdateContactEvaluationCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactEvaluationCommand.ts @@ -89,6 +89,7 @@ export interface UpdateContactEvaluationCommandOutput extends UpdateContactEvalu * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateContactEvaluationCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateContactFlowContentCommand.ts b/clients/client-connect/src/commands/UpdateContactFlowContentCommand.ts index b1bc7105d97a3..15d588b066de6 100644 --- a/clients/client-connect/src/commands/UpdateContactFlowContentCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactFlowContentCommand.ts @@ -79,6 +79,7 @@ export interface UpdateContactFlowContentCommandOutput extends UpdateContactFlow * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateContactFlowContentCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateContactFlowMetadataCommand.ts b/clients/client-connect/src/commands/UpdateContactFlowMetadataCommand.ts index 6891763479e00..132e02dfaa966 100644 --- a/clients/client-connect/src/commands/UpdateContactFlowMetadataCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactFlowMetadataCommand.ts @@ -75,6 +75,7 @@ export interface UpdateContactFlowMetadataCommandOutput extends UpdateContactFlo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateContactFlowMetadataCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateContactFlowModuleContentCommand.ts b/clients/client-connect/src/commands/UpdateContactFlowModuleContentCommand.ts index b646e32c7c469..00b2339a3e710 100644 --- a/clients/client-connect/src/commands/UpdateContactFlowModuleContentCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactFlowModuleContentCommand.ts @@ -82,6 +82,7 @@ export interface UpdateContactFlowModuleContentCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateContactFlowModuleContentCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateContactFlowModuleMetadataCommand.ts b/clients/client-connect/src/commands/UpdateContactFlowModuleMetadataCommand.ts index 3ccd5af3686eb..221203071ac40 100644 --- a/clients/client-connect/src/commands/UpdateContactFlowModuleMetadataCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactFlowModuleMetadataCommand.ts @@ -83,6 +83,7 @@ export interface UpdateContactFlowModuleMetadataCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateContactFlowModuleMetadataCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateContactFlowNameCommand.ts b/clients/client-connect/src/commands/UpdateContactFlowNameCommand.ts index 638200533491f..386e0e496406b 100644 --- a/clients/client-connect/src/commands/UpdateContactFlowNameCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactFlowNameCommand.ts @@ -76,6 +76,7 @@ export interface UpdateContactFlowNameCommandOutput extends UpdateContactFlowNam * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateContactFlowNameCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateContactRoutingDataCommand.ts b/clients/client-connect/src/commands/UpdateContactRoutingDataCommand.ts index 20200a3425689..9b8abccf9dbd8 100644 --- a/clients/client-connect/src/commands/UpdateContactRoutingDataCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactRoutingDataCommand.ts @@ -179,6 +179,7 @@ export interface UpdateContactRoutingDataCommandOutput extends UpdateContactRout * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateContactRoutingDataCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateContactScheduleCommand.ts b/clients/client-connect/src/commands/UpdateContactScheduleCommand.ts index 9124c1973df26..20ad009755b36 100644 --- a/clients/client-connect/src/commands/UpdateContactScheduleCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactScheduleCommand.ts @@ -73,6 +73,7 @@ export interface UpdateContactScheduleCommandOutput extends UpdateContactSchedul * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateContactScheduleCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateEmailAddressMetadataCommand.ts b/clients/client-connect/src/commands/UpdateEmailAddressMetadataCommand.ts index d6cc3e49bb87c..b844abe0d0b68 100644 --- a/clients/client-connect/src/commands/UpdateEmailAddressMetadataCommand.ts +++ b/clients/client-connect/src/commands/UpdateEmailAddressMetadataCommand.ts @@ -86,6 +86,7 @@ export interface UpdateEmailAddressMetadataCommandOutput extends UpdateEmailAddr * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateEmailAddressMetadataCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateEvaluationFormCommand.ts b/clients/client-connect/src/commands/UpdateEvaluationFormCommand.ts index d5c6be7a1ba73..aecb01a09fae7 100644 --- a/clients/client-connect/src/commands/UpdateEvaluationFormCommand.ts +++ b/clients/client-connect/src/commands/UpdateEvaluationFormCommand.ts @@ -211,6 +211,7 @@ export interface UpdateEvaluationFormCommandOutput extends UpdateEvaluationFormR * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateEvaluationFormCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateHoursOfOperationCommand.ts b/clients/client-connect/src/commands/UpdateHoursOfOperationCommand.ts index e5bac7cb46be7..b4ce8eb6d381d 100644 --- a/clients/client-connect/src/commands/UpdateHoursOfOperationCommand.ts +++ b/clients/client-connect/src/commands/UpdateHoursOfOperationCommand.ts @@ -89,6 +89,7 @@ export interface UpdateHoursOfOperationCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateHoursOfOperationCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateHoursOfOperationOverrideCommand.ts b/clients/client-connect/src/commands/UpdateHoursOfOperationOverrideCommand.ts index 28e847e0cc76a..989aa4d88ecd3 100644 --- a/clients/client-connect/src/commands/UpdateHoursOfOperationOverrideCommand.ts +++ b/clients/client-connect/src/commands/UpdateHoursOfOperationOverrideCommand.ts @@ -96,6 +96,7 @@ export interface UpdateHoursOfOperationOverrideCommandOutput extends __MetadataB * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateHoursOfOperationOverrideCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateInstanceAttributeCommand.ts b/clients/client-connect/src/commands/UpdateInstanceAttributeCommand.ts index 4fa5f8713d986..2fdebcdcb6c0c 100644 --- a/clients/client-connect/src/commands/UpdateInstanceAttributeCommand.ts +++ b/clients/client-connect/src/commands/UpdateInstanceAttributeCommand.ts @@ -72,6 +72,7 @@ export interface UpdateInstanceAttributeCommandOutput extends __MetadataBearer { * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateInstanceAttributeCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateInstanceStorageConfigCommand.ts b/clients/client-connect/src/commands/UpdateInstanceStorageConfigCommand.ts index 44c9e2cd2de20..001a6674720fe 100644 --- a/clients/client-connect/src/commands/UpdateInstanceStorageConfigCommand.ts +++ b/clients/client-connect/src/commands/UpdateInstanceStorageConfigCommand.ts @@ -101,6 +101,7 @@ export interface UpdateInstanceStorageConfigCommandOutput extends __MetadataBear * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateInstanceStorageConfigCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateParticipantAuthenticationCommand.ts b/clients/client-connect/src/commands/UpdateParticipantAuthenticationCommand.ts index b630f639c61ee..bebdc8fd4f1ad 100644 --- a/clients/client-connect/src/commands/UpdateParticipantAuthenticationCommand.ts +++ b/clients/client-connect/src/commands/UpdateParticipantAuthenticationCommand.ts @@ -102,6 +102,7 @@ export interface UpdateParticipantAuthenticationCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateParticipantAuthenticationCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateParticipantRoleConfigCommand.ts b/clients/client-connect/src/commands/UpdateParticipantRoleConfigCommand.ts index 33f9be97bffa5..83d45e2f4a1d6 100644 --- a/clients/client-connect/src/commands/UpdateParticipantRoleConfigCommand.ts +++ b/clients/client-connect/src/commands/UpdateParticipantRoleConfigCommand.ts @@ -108,6 +108,7 @@ export interface UpdateParticipantRoleConfigCommandOutput * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateParticipantRoleConfigCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdatePhoneNumberCommand.ts b/clients/client-connect/src/commands/UpdatePhoneNumberCommand.ts index 0578d347df6f7..fe0503cb4c5f0 100644 --- a/clients/client-connect/src/commands/UpdatePhoneNumberCommand.ts +++ b/clients/client-connect/src/commands/UpdatePhoneNumberCommand.ts @@ -90,6 +90,7 @@ export interface UpdatePhoneNumberCommandOutput extends UpdatePhoneNumberRespons * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdatePhoneNumberCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdatePhoneNumberMetadataCommand.ts b/clients/client-connect/src/commands/UpdatePhoneNumberMetadataCommand.ts index f01ffff6e74f4..a0769bc14f1f1 100644 --- a/clients/client-connect/src/commands/UpdatePhoneNumberMetadataCommand.ts +++ b/clients/client-connect/src/commands/UpdatePhoneNumberMetadataCommand.ts @@ -82,6 +82,7 @@ export interface UpdatePhoneNumberMetadataCommandOutput extends __MetadataBearer * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdatePhoneNumberMetadataCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdatePredefinedAttributeCommand.ts b/clients/client-connect/src/commands/UpdatePredefinedAttributeCommand.ts index 9df94c14e5f41..c82d235ddb590 100644 --- a/clients/client-connect/src/commands/UpdatePredefinedAttributeCommand.ts +++ b/clients/client-connect/src/commands/UpdatePredefinedAttributeCommand.ts @@ -77,6 +77,7 @@ export interface UpdatePredefinedAttributeCommandOutput extends __MetadataBearer * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdatePredefinedAttributeCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdatePromptCommand.ts b/clients/client-connect/src/commands/UpdatePromptCommand.ts index ab5eb7469e84a..98851335ea369 100644 --- a/clients/client-connect/src/commands/UpdatePromptCommand.ts +++ b/clients/client-connect/src/commands/UpdatePromptCommand.ts @@ -75,6 +75,7 @@ export interface UpdatePromptCommandOutput extends UpdatePromptResponse, __Metad * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdatePromptCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateQueueHoursOfOperationCommand.ts b/clients/client-connect/src/commands/UpdateQueueHoursOfOperationCommand.ts index 453eb8e78bf06..82bcc1af5f9b3 100644 --- a/clients/client-connect/src/commands/UpdateQueueHoursOfOperationCommand.ts +++ b/clients/client-connect/src/commands/UpdateQueueHoursOfOperationCommand.ts @@ -74,6 +74,7 @@ export interface UpdateQueueHoursOfOperationCommandOutput extends __MetadataBear * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateQueueHoursOfOperationCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateQueueMaxContactsCommand.ts b/clients/client-connect/src/commands/UpdateQueueMaxContactsCommand.ts index 35e2d1bb4940e..93af6ae6baf42 100644 --- a/clients/client-connect/src/commands/UpdateQueueMaxContactsCommand.ts +++ b/clients/client-connect/src/commands/UpdateQueueMaxContactsCommand.ts @@ -72,6 +72,7 @@ export interface UpdateQueueMaxContactsCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateQueueMaxContactsCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateQueueNameCommand.ts b/clients/client-connect/src/commands/UpdateQueueNameCommand.ts index f3ebbd499b35c..3ca3835abc57b 100644 --- a/clients/client-connect/src/commands/UpdateQueueNameCommand.ts +++ b/clients/client-connect/src/commands/UpdateQueueNameCommand.ts @@ -75,6 +75,7 @@ export interface UpdateQueueNameCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateQueueNameCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateQueueOutboundCallerConfigCommand.ts b/clients/client-connect/src/commands/UpdateQueueOutboundCallerConfigCommand.ts index 7321cb49e5225..388fa5410feea 100644 --- a/clients/client-connect/src/commands/UpdateQueueOutboundCallerConfigCommand.ts +++ b/clients/client-connect/src/commands/UpdateQueueOutboundCallerConfigCommand.ts @@ -101,6 +101,7 @@ export interface UpdateQueueOutboundCallerConfigCommandOutput extends __Metadata * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateQueueOutboundCallerConfigCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateQueueOutboundEmailConfigCommand.ts b/clients/client-connect/src/commands/UpdateQueueOutboundEmailConfigCommand.ts index e8549b069aeb5..bd8cf734022d5 100644 --- a/clients/client-connect/src/commands/UpdateQueueOutboundEmailConfigCommand.ts +++ b/clients/client-connect/src/commands/UpdateQueueOutboundEmailConfigCommand.ts @@ -81,6 +81,7 @@ export interface UpdateQueueOutboundEmailConfigCommandOutput extends __MetadataB * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateQueueOutboundEmailConfigCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateQueueStatusCommand.ts b/clients/client-connect/src/commands/UpdateQueueStatusCommand.ts index e99a0d11e52d2..0b4e59468308b 100644 --- a/clients/client-connect/src/commands/UpdateQueueStatusCommand.ts +++ b/clients/client-connect/src/commands/UpdateQueueStatusCommand.ts @@ -71,6 +71,7 @@ export interface UpdateQueueStatusCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateQueueStatusCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateQuickConnectConfigCommand.ts b/clients/client-connect/src/commands/UpdateQuickConnectConfigCommand.ts index ef726505d2b7e..e0cd96fb4e47d 100644 --- a/clients/client-connect/src/commands/UpdateQuickConnectConfigCommand.ts +++ b/clients/client-connect/src/commands/UpdateQuickConnectConfigCommand.ts @@ -83,6 +83,7 @@ export interface UpdateQuickConnectConfigCommandOutput extends __MetadataBearer * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateQuickConnectConfigCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateQuickConnectNameCommand.ts b/clients/client-connect/src/commands/UpdateQuickConnectNameCommand.ts index fb25cb70da3e4..03226703cec81 100644 --- a/clients/client-connect/src/commands/UpdateQuickConnectNameCommand.ts +++ b/clients/client-connect/src/commands/UpdateQuickConnectNameCommand.ts @@ -71,6 +71,7 @@ export interface UpdateQuickConnectNameCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateQuickConnectNameCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.ts b/clients/client-connect/src/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.ts index daba3b9d4178c..6aec09e7f11ff 100644 --- a/clients/client-connect/src/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.ts +++ b/clients/client-connect/src/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.ts @@ -76,6 +76,7 @@ export interface UpdateRoutingProfileAgentAvailabilityTimerCommandOutput extends * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateRoutingProfileAgentAvailabilityTimerCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateRoutingProfileConcurrencyCommand.ts b/clients/client-connect/src/commands/UpdateRoutingProfileConcurrencyCommand.ts index 12b45956b7305..746eeb7d05956 100644 --- a/clients/client-connect/src/commands/UpdateRoutingProfileConcurrencyCommand.ts +++ b/clients/client-connect/src/commands/UpdateRoutingProfileConcurrencyCommand.ts @@ -82,6 +82,7 @@ export interface UpdateRoutingProfileConcurrencyCommandOutput extends __Metadata * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateRoutingProfileConcurrencyCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateRoutingProfileDefaultOutboundQueueCommand.ts b/clients/client-connect/src/commands/UpdateRoutingProfileDefaultOutboundQueueCommand.ts index 84c2ccc0eeed3..317be248a59ad 100644 --- a/clients/client-connect/src/commands/UpdateRoutingProfileDefaultOutboundQueueCommand.ts +++ b/clients/client-connect/src/commands/UpdateRoutingProfileDefaultOutboundQueueCommand.ts @@ -74,6 +74,7 @@ export interface UpdateRoutingProfileDefaultOutboundQueueCommandOutput extends _ * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateRoutingProfileDefaultOutboundQueueCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateRoutingProfileNameCommand.ts b/clients/client-connect/src/commands/UpdateRoutingProfileNameCommand.ts index 2a34599b209de..7b530daf0ed6a 100644 --- a/clients/client-connect/src/commands/UpdateRoutingProfileNameCommand.ts +++ b/clients/client-connect/src/commands/UpdateRoutingProfileNameCommand.ts @@ -75,6 +75,7 @@ export interface UpdateRoutingProfileNameCommandOutput extends __MetadataBearer * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateRoutingProfileNameCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateRoutingProfileQueuesCommand.ts b/clients/client-connect/src/commands/UpdateRoutingProfileQueuesCommand.ts index 12f53903d77cd..802bf05e41820 100644 --- a/clients/client-connect/src/commands/UpdateRoutingProfileQueuesCommand.ts +++ b/clients/client-connect/src/commands/UpdateRoutingProfileQueuesCommand.ts @@ -79,6 +79,7 @@ export interface UpdateRoutingProfileQueuesCommandOutput extends __MetadataBeare * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateRoutingProfileQueuesCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateRuleCommand.ts b/clients/client-connect/src/commands/UpdateRuleCommand.ts index eca978d8e0c47..81398e0118e59 100644 --- a/clients/client-connect/src/commands/UpdateRuleCommand.ts +++ b/clients/client-connect/src/commands/UpdateRuleCommand.ts @@ -145,6 +145,7 @@ export interface UpdateRuleCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateRuleCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateSecurityProfileCommand.ts b/clients/client-connect/src/commands/UpdateSecurityProfileCommand.ts index 1044810eff2d2..149e44fe2b24d 100644 --- a/clients/client-connect/src/commands/UpdateSecurityProfileCommand.ts +++ b/clients/client-connect/src/commands/UpdateSecurityProfileCommand.ts @@ -95,6 +95,7 @@ export interface UpdateSecurityProfileCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateSecurityProfileCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateTaskTemplateCommand.ts b/clients/client-connect/src/commands/UpdateTaskTemplateCommand.ts index 0a72d401251b4..efe1e253360a5 100644 --- a/clients/client-connect/src/commands/UpdateTaskTemplateCommand.ts +++ b/clients/client-connect/src/commands/UpdateTaskTemplateCommand.ts @@ -180,6 +180,7 @@ export interface UpdateTaskTemplateCommandOutput extends UpdateTaskTemplateRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateTaskTemplateCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateTrafficDistributionCommand.ts b/clients/client-connect/src/commands/UpdateTrafficDistributionCommand.ts index a8470dea5e2bd..6befab9a8fea6 100644 --- a/clients/client-connect/src/commands/UpdateTrafficDistributionCommand.ts +++ b/clients/client-connect/src/commands/UpdateTrafficDistributionCommand.ts @@ -111,6 +111,7 @@ export interface UpdateTrafficDistributionCommandOutput extends UpdateTrafficDis * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateTrafficDistributionCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateUserHierarchyCommand.ts b/clients/client-connect/src/commands/UpdateUserHierarchyCommand.ts index 01f8fb3f204b6..2a545f8dc2000 100644 --- a/clients/client-connect/src/commands/UpdateUserHierarchyCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserHierarchyCommand.ts @@ -70,6 +70,7 @@ export interface UpdateUserHierarchyCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateUserHierarchyCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateUserHierarchyGroupNameCommand.ts b/clients/client-connect/src/commands/UpdateUserHierarchyGroupNameCommand.ts index 4dafe64775e64..b9ea01878357c 100644 --- a/clients/client-connect/src/commands/UpdateUserHierarchyGroupNameCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserHierarchyGroupNameCommand.ts @@ -76,6 +76,7 @@ export interface UpdateUserHierarchyGroupNameCommandOutput extends __MetadataBea * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateUserHierarchyGroupNameCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateUserHierarchyStructureCommand.ts b/clients/client-connect/src/commands/UpdateUserHierarchyStructureCommand.ts index 0e95c6cfa488b..784063ff8f826 100644 --- a/clients/client-connect/src/commands/UpdateUserHierarchyStructureCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserHierarchyStructureCommand.ts @@ -91,6 +91,7 @@ export interface UpdateUserHierarchyStructureCommandOutput extends __MetadataBea * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateUserHierarchyStructureCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateUserIdentityInfoCommand.ts b/clients/client-connect/src/commands/UpdateUserIdentityInfoCommand.ts index 2dd09f2d6f440..c19c0e8267c19 100644 --- a/clients/client-connect/src/commands/UpdateUserIdentityInfoCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserIdentityInfoCommand.ts @@ -85,6 +85,7 @@ export interface UpdateUserIdentityInfoCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateUserIdentityInfoCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateUserPhoneConfigCommand.ts b/clients/client-connect/src/commands/UpdateUserPhoneConfigCommand.ts index 9d31664dacd86..a5b165e2d2e69 100644 --- a/clients/client-connect/src/commands/UpdateUserPhoneConfigCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserPhoneConfigCommand.ts @@ -75,6 +75,7 @@ export interface UpdateUserPhoneConfigCommandOutput extends __MetadataBearer {} * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateUserPhoneConfigCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateUserProficienciesCommand.ts b/clients/client-connect/src/commands/UpdateUserProficienciesCommand.ts index 4b9cc3b770602..e96d9161fd8b0 100644 --- a/clients/client-connect/src/commands/UpdateUserProficienciesCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserProficienciesCommand.ts @@ -76,6 +76,7 @@ export interface UpdateUserProficienciesCommandOutput extends __MetadataBearer { * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateUserProficienciesCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateUserRoutingProfileCommand.ts b/clients/client-connect/src/commands/UpdateUserRoutingProfileCommand.ts index f66e3ccb65ff0..8c71c7078ed97 100644 --- a/clients/client-connect/src/commands/UpdateUserRoutingProfileCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserRoutingProfileCommand.ts @@ -70,6 +70,7 @@ export interface UpdateUserRoutingProfileCommandOutput extends __MetadataBearer * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateUserRoutingProfileCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateUserSecurityProfilesCommand.ts b/clients/client-connect/src/commands/UpdateUserSecurityProfilesCommand.ts index 21d3114709380..4f7abcfcfb0aa 100644 --- a/clients/client-connect/src/commands/UpdateUserSecurityProfilesCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserSecurityProfilesCommand.ts @@ -72,6 +72,7 @@ export interface UpdateUserSecurityProfilesCommandOutput extends __MetadataBeare * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateUserSecurityProfilesCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateViewContentCommand.ts b/clients/client-connect/src/commands/UpdateViewContentCommand.ts index 6d778225cb57b..b73592d9b245b 100644 --- a/clients/client-connect/src/commands/UpdateViewContentCommand.ts +++ b/clients/client-connect/src/commands/UpdateViewContentCommand.ts @@ -116,6 +116,7 @@ export interface UpdateViewContentCommandOutput extends UpdateViewContentRespons * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateViewContentCommand extends $Command diff --git a/clients/client-connect/src/commands/UpdateViewMetadataCommand.ts b/clients/client-connect/src/commands/UpdateViewMetadataCommand.ts index a175da33da66d..79df56844ce85 100644 --- a/clients/client-connect/src/commands/UpdateViewMetadataCommand.ts +++ b/clients/client-connect/src/commands/UpdateViewMetadataCommand.ts @@ -85,6 +85,7 @@ export interface UpdateViewMetadataCommandOutput extends UpdateViewMetadataRespo * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* + * * @public */ export class UpdateViewMetadataCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/CreateCampaignCommand.ts b/clients/client-connectcampaigns/src/commands/CreateCampaignCommand.ts index 9d3d62d25f52b..bbc1ee2023389 100644 --- a/clients/client-connectcampaigns/src/commands/CreateCampaignCommand.ts +++ b/clients/client-connectcampaigns/src/commands/CreateCampaignCommand.ts @@ -106,6 +106,7 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class CreateCampaignCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/DeleteCampaignCommand.ts b/clients/client-connectcampaigns/src/commands/DeleteCampaignCommand.ts index 1d10b6e5048c2..3a6035e9e274a 100644 --- a/clients/client-connectcampaigns/src/commands/DeleteCampaignCommand.ts +++ b/clients/client-connectcampaigns/src/commands/DeleteCampaignCommand.ts @@ -65,6 +65,7 @@ export interface DeleteCampaignCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class DeleteCampaignCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/DeleteConnectInstanceConfigCommand.ts b/clients/client-connectcampaigns/src/commands/DeleteConnectInstanceConfigCommand.ts index 1a6cc5fd2a901..00bcd6641db38 100644 --- a/clients/client-connectcampaigns/src/commands/DeleteConnectInstanceConfigCommand.ts +++ b/clients/client-connectcampaigns/src/commands/DeleteConnectInstanceConfigCommand.ts @@ -74,6 +74,7 @@ export interface DeleteConnectInstanceConfigCommandOutput extends __MetadataBear * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class DeleteConnectInstanceConfigCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/DeleteInstanceOnboardingJobCommand.ts b/clients/client-connectcampaigns/src/commands/DeleteInstanceOnboardingJobCommand.ts index 5045bb12796c1..6cacafccffd89 100644 --- a/clients/client-connectcampaigns/src/commands/DeleteInstanceOnboardingJobCommand.ts +++ b/clients/client-connectcampaigns/src/commands/DeleteInstanceOnboardingJobCommand.ts @@ -71,6 +71,7 @@ export interface DeleteInstanceOnboardingJobCommandOutput extends __MetadataBear * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class DeleteInstanceOnboardingJobCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/DescribeCampaignCommand.ts b/clients/client-connectcampaigns/src/commands/DescribeCampaignCommand.ts index 21e821b09055b..dca6a921eb5b4 100644 --- a/clients/client-connectcampaigns/src/commands/DescribeCampaignCommand.ts +++ b/clients/client-connectcampaigns/src/commands/DescribeCampaignCommand.ts @@ -97,6 +97,7 @@ export interface DescribeCampaignCommandOutput extends DescribeCampaignResponse, * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class DescribeCampaignCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/GetCampaignStateBatchCommand.ts b/clients/client-connectcampaigns/src/commands/GetCampaignStateBatchCommand.ts index db47da9e24295..342579d69be24 100644 --- a/clients/client-connectcampaigns/src/commands/GetCampaignStateBatchCommand.ts +++ b/clients/client-connectcampaigns/src/commands/GetCampaignStateBatchCommand.ts @@ -80,6 +80,7 @@ export interface GetCampaignStateBatchCommandOutput extends GetCampaignStateBatc * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class GetCampaignStateBatchCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/GetCampaignStateCommand.ts b/clients/client-connectcampaigns/src/commands/GetCampaignStateCommand.ts index d42f332624673..d04315ee928bf 100644 --- a/clients/client-connectcampaigns/src/commands/GetCampaignStateCommand.ts +++ b/clients/client-connectcampaigns/src/commands/GetCampaignStateCommand.ts @@ -70,6 +70,7 @@ export interface GetCampaignStateCommandOutput extends GetCampaignStateResponse, * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class GetCampaignStateCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/GetConnectInstanceConfigCommand.ts b/clients/client-connectcampaigns/src/commands/GetConnectInstanceConfigCommand.ts index ecd6b49a2a5ea..1c80ce1c7175b 100644 --- a/clients/client-connectcampaigns/src/commands/GetConnectInstanceConfigCommand.ts +++ b/clients/client-connectcampaigns/src/commands/GetConnectInstanceConfigCommand.ts @@ -75,6 +75,7 @@ export interface GetConnectInstanceConfigCommandOutput extends GetConnectInstanc * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class GetConnectInstanceConfigCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/GetInstanceOnboardingJobStatusCommand.ts b/clients/client-connectcampaigns/src/commands/GetInstanceOnboardingJobStatusCommand.ts index 07207aaf0d14d..d57acea8cb698 100644 --- a/clients/client-connectcampaigns/src/commands/GetInstanceOnboardingJobStatusCommand.ts +++ b/clients/client-connectcampaigns/src/commands/GetInstanceOnboardingJobStatusCommand.ts @@ -76,6 +76,7 @@ export interface GetInstanceOnboardingJobStatusCommandOutput * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class GetInstanceOnboardingJobStatusCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/ListCampaignsCommand.ts b/clients/client-connectcampaigns/src/commands/ListCampaignsCommand.ts index 895fae6974030..b4b63de03284d 100644 --- a/clients/client-connectcampaigns/src/commands/ListCampaignsCommand.ts +++ b/clients/client-connectcampaigns/src/commands/ListCampaignsCommand.ts @@ -79,6 +79,7 @@ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __Met * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class ListCampaignsCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/ListTagsForResourceCommand.ts b/clients/client-connectcampaigns/src/commands/ListTagsForResourceCommand.ts index a5028d077f868..7ffbc7add0d6b 100644 --- a/clients/client-connectcampaigns/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-connectcampaigns/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/PauseCampaignCommand.ts b/clients/client-connectcampaigns/src/commands/PauseCampaignCommand.ts index f833346918c5e..6e3084b1b175d 100644 --- a/clients/client-connectcampaigns/src/commands/PauseCampaignCommand.ts +++ b/clients/client-connectcampaigns/src/commands/PauseCampaignCommand.ts @@ -74,6 +74,7 @@ export interface PauseCampaignCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class PauseCampaignCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/PutDialRequestBatchCommand.ts b/clients/client-connectcampaigns/src/commands/PutDialRequestBatchCommand.ts index b7aa6991a158b..a1f316ca7e9c5 100644 --- a/clients/client-connectcampaigns/src/commands/PutDialRequestBatchCommand.ts +++ b/clients/client-connectcampaigns/src/commands/PutDialRequestBatchCommand.ts @@ -102,6 +102,7 @@ export interface PutDialRequestBatchCommandOutput extends PutDialRequestBatchRes * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class PutDialRequestBatchCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/ResumeCampaignCommand.ts b/clients/client-connectcampaigns/src/commands/ResumeCampaignCommand.ts index cdbb74d14420d..a0dccd9afaa26 100644 --- a/clients/client-connectcampaigns/src/commands/ResumeCampaignCommand.ts +++ b/clients/client-connectcampaigns/src/commands/ResumeCampaignCommand.ts @@ -74,6 +74,7 @@ export interface ResumeCampaignCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class ResumeCampaignCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/StartCampaignCommand.ts b/clients/client-connectcampaigns/src/commands/StartCampaignCommand.ts index f14da6f0e99f8..e154187fcea26 100644 --- a/clients/client-connectcampaigns/src/commands/StartCampaignCommand.ts +++ b/clients/client-connectcampaigns/src/commands/StartCampaignCommand.ts @@ -74,6 +74,7 @@ export interface StartCampaignCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class StartCampaignCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/StartInstanceOnboardingJobCommand.ts b/clients/client-connectcampaigns/src/commands/StartInstanceOnboardingJobCommand.ts index 033eb097ca4eb..bb9e7b350e208 100644 --- a/clients/client-connectcampaigns/src/commands/StartInstanceOnboardingJobCommand.ts +++ b/clients/client-connectcampaigns/src/commands/StartInstanceOnboardingJobCommand.ts @@ -82,6 +82,7 @@ export interface StartInstanceOnboardingJobCommandOutput extends StartInstanceOn * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class StartInstanceOnboardingJobCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/StopCampaignCommand.ts b/clients/client-connectcampaigns/src/commands/StopCampaignCommand.ts index 22bb1315630c0..0fb2bacda21b7 100644 --- a/clients/client-connectcampaigns/src/commands/StopCampaignCommand.ts +++ b/clients/client-connectcampaigns/src/commands/StopCampaignCommand.ts @@ -74,6 +74,7 @@ export interface StopCampaignCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class StopCampaignCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/TagResourceCommand.ts b/clients/client-connectcampaigns/src/commands/TagResourceCommand.ts index 1960e3749589b..6e83eb14f2ed5 100644 --- a/clients/client-connectcampaigns/src/commands/TagResourceCommand.ts +++ b/clients/client-connectcampaigns/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/UntagResourceCommand.ts b/clients/client-connectcampaigns/src/commands/UntagResourceCommand.ts index 84d110a5edc0a..811331ec89844 100644 --- a/clients/client-connectcampaigns/src/commands/UntagResourceCommand.ts +++ b/clients/client-connectcampaigns/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/UpdateCampaignDialerConfigCommand.ts b/clients/client-connectcampaigns/src/commands/UpdateCampaignDialerConfigCommand.ts index 753b8382a6235..a7a0da531b910 100644 --- a/clients/client-connectcampaigns/src/commands/UpdateCampaignDialerConfigCommand.ts +++ b/clients/client-connectcampaigns/src/commands/UpdateCampaignDialerConfigCommand.ts @@ -81,6 +81,7 @@ export interface UpdateCampaignDialerConfigCommandOutput extends __MetadataBeare * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class UpdateCampaignDialerConfigCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/UpdateCampaignNameCommand.ts b/clients/client-connectcampaigns/src/commands/UpdateCampaignNameCommand.ts index 4f6f70e30e75c..3be32355992c2 100644 --- a/clients/client-connectcampaigns/src/commands/UpdateCampaignNameCommand.ts +++ b/clients/client-connectcampaigns/src/commands/UpdateCampaignNameCommand.ts @@ -69,6 +69,7 @@ export interface UpdateCampaignNameCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class UpdateCampaignNameCommand extends $Command diff --git a/clients/client-connectcampaigns/src/commands/UpdateCampaignOutboundCallConfigCommand.ts b/clients/client-connectcampaigns/src/commands/UpdateCampaignOutboundCallConfigCommand.ts index 727707371dd50..7b326cb57630d 100644 --- a/clients/client-connectcampaigns/src/commands/UpdateCampaignOutboundCallConfigCommand.ts +++ b/clients/client-connectcampaigns/src/commands/UpdateCampaignOutboundCallConfigCommand.ts @@ -80,6 +80,7 @@ export interface UpdateCampaignOutboundCallConfigCommandOutput extends __Metadat * @throws {@link ConnectCampaignsServiceException} *

Base exception class for all service exceptions from ConnectCampaigns service.

* + * * @public */ export class UpdateCampaignOutboundCallConfigCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/CreateCampaignCommand.ts b/clients/client-connectcampaignsv2/src/commands/CreateCampaignCommand.ts index 4dcbb0211c183..87609b7aa6360 100644 --- a/clients/client-connectcampaignsv2/src/commands/CreateCampaignCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/CreateCampaignCommand.ts @@ -230,6 +230,7 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class CreateCampaignCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignChannelSubtypeConfigCommand.ts b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignChannelSubtypeConfigCommand.ts index 79c083e06f943..9146adf78a642 100644 --- a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignChannelSubtypeConfigCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignChannelSubtypeConfigCommand.ts @@ -76,6 +76,7 @@ export interface DeleteCampaignChannelSubtypeConfigCommandOutput extends __Metad * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class DeleteCampaignChannelSubtypeConfigCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommand.ts b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommand.ts index f07ec85fe6d98..f11e79c83061c 100644 --- a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommand.ts @@ -69,6 +69,7 @@ export interface DeleteCampaignCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class DeleteCampaignCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationLimitsCommand.ts b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationLimitsCommand.ts index e640567afca30..df944c6675328 100644 --- a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationLimitsCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationLimitsCommand.ts @@ -79,6 +79,7 @@ export interface DeleteCampaignCommunicationLimitsCommandOutput extends __Metada * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class DeleteCampaignCommunicationLimitsCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationTimeCommand.ts b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationTimeCommand.ts index bf014c7d97c2f..b0b8f6fa004ad 100644 --- a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationTimeCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationTimeCommand.ts @@ -79,6 +79,7 @@ export interface DeleteCampaignCommunicationTimeCommandOutput extends __Metadata * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class DeleteCampaignCommunicationTimeCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceConfigCommand.ts b/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceConfigCommand.ts index 228bf4871c092..6b072ab53cfdc 100644 --- a/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceConfigCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceConfigCommand.ts @@ -79,6 +79,7 @@ export interface DeleteConnectInstanceConfigCommandOutput extends __MetadataBear * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class DeleteConnectInstanceConfigCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceIntegrationCommand.ts b/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceIntegrationCommand.ts index 7377d32e0d26c..b2dd7dd5402d4 100644 --- a/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceIntegrationCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceIntegrationCommand.ts @@ -83,6 +83,7 @@ export interface DeleteConnectInstanceIntegrationCommandOutput extends __Metadat * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class DeleteConnectInstanceIntegrationCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/DeleteInstanceOnboardingJobCommand.ts b/clients/client-connectcampaignsv2/src/commands/DeleteInstanceOnboardingJobCommand.ts index dc486e8d8f6f7..6a89415d2277d 100644 --- a/clients/client-connectcampaignsv2/src/commands/DeleteInstanceOnboardingJobCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DeleteInstanceOnboardingJobCommand.ts @@ -75,6 +75,7 @@ export interface DeleteInstanceOnboardingJobCommandOutput extends __MetadataBear * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class DeleteInstanceOnboardingJobCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/DescribeCampaignCommand.ts b/clients/client-connectcampaignsv2/src/commands/DescribeCampaignCommand.ts index 21d68593525e5..ea772ba8e3846 100644 --- a/clients/client-connectcampaignsv2/src/commands/DescribeCampaignCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DescribeCampaignCommand.ts @@ -221,6 +221,7 @@ export interface DescribeCampaignCommandOutput extends DescribeCampaignResponse, * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class DescribeCampaignCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/GetCampaignStateBatchCommand.ts b/clients/client-connectcampaignsv2/src/commands/GetCampaignStateBatchCommand.ts index f388ea076214d..901699cd9aefd 100644 --- a/clients/client-connectcampaignsv2/src/commands/GetCampaignStateBatchCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/GetCampaignStateBatchCommand.ts @@ -84,6 +84,7 @@ export interface GetCampaignStateBatchCommandOutput extends GetCampaignStateBatc * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class GetCampaignStateBatchCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/GetCampaignStateCommand.ts b/clients/client-connectcampaignsv2/src/commands/GetCampaignStateCommand.ts index c8ab6977aab9e..e90f7ddde2861 100644 --- a/clients/client-connectcampaignsv2/src/commands/GetCampaignStateCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/GetCampaignStateCommand.ts @@ -74,6 +74,7 @@ export interface GetCampaignStateCommandOutput extends GetCampaignStateResponse, * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class GetCampaignStateCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/GetConnectInstanceConfigCommand.ts b/clients/client-connectcampaignsv2/src/commands/GetConnectInstanceConfigCommand.ts index c9ccec5e51d37..6fb4bbb8e0cfa 100644 --- a/clients/client-connectcampaignsv2/src/commands/GetConnectInstanceConfigCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/GetConnectInstanceConfigCommand.ts @@ -79,6 +79,7 @@ export interface GetConnectInstanceConfigCommandOutput extends GetConnectInstanc * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class GetConnectInstanceConfigCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/GetInstanceOnboardingJobStatusCommand.ts b/clients/client-connectcampaignsv2/src/commands/GetInstanceOnboardingJobStatusCommand.ts index c85548d730f22..0857c87f53f03 100644 --- a/clients/client-connectcampaignsv2/src/commands/GetInstanceOnboardingJobStatusCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/GetInstanceOnboardingJobStatusCommand.ts @@ -80,6 +80,7 @@ export interface GetInstanceOnboardingJobStatusCommandOutput * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class GetInstanceOnboardingJobStatusCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/ListCampaignsCommand.ts b/clients/client-connectcampaignsv2/src/commands/ListCampaignsCommand.ts index 999a2e7ce34a0..65ca1da8627bf 100644 --- a/clients/client-connectcampaignsv2/src/commands/ListCampaignsCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/ListCampaignsCommand.ts @@ -92,6 +92,7 @@ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __Met * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class ListCampaignsCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/ListConnectInstanceIntegrationsCommand.ts b/clients/client-connectcampaignsv2/src/commands/ListConnectInstanceIntegrationsCommand.ts index d1a5848bac8e2..070bc1ea945fb 100644 --- a/clients/client-connectcampaignsv2/src/commands/ListConnectInstanceIntegrationsCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/ListConnectInstanceIntegrationsCommand.ts @@ -94,6 +94,7 @@ export interface ListConnectInstanceIntegrationsCommandOutput * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class ListConnectInstanceIntegrationsCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/ListTagsForResourceCommand.ts b/clients/client-connectcampaignsv2/src/commands/ListTagsForResourceCommand.ts index 7e2d01eaafd4e..9099398679463 100644 --- a/clients/client-connectcampaignsv2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/PauseCampaignCommand.ts b/clients/client-connectcampaignsv2/src/commands/PauseCampaignCommand.ts index a37db97392ede..614e0263e5435 100644 --- a/clients/client-connectcampaignsv2/src/commands/PauseCampaignCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/PauseCampaignCommand.ts @@ -78,6 +78,7 @@ export interface PauseCampaignCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class PauseCampaignCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/PutConnectInstanceIntegrationCommand.ts b/clients/client-connectcampaignsv2/src/commands/PutConnectInstanceIntegrationCommand.ts index 329873c0261f6..4087c296fc82e 100644 --- a/clients/client-connectcampaignsv2/src/commands/PutConnectInstanceIntegrationCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/PutConnectInstanceIntegrationCommand.ts @@ -89,6 +89,7 @@ export interface PutConnectInstanceIntegrationCommandOutput extends __MetadataBe * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class PutConnectInstanceIntegrationCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/PutOutboundRequestBatchCommand.ts b/clients/client-connectcampaignsv2/src/commands/PutOutboundRequestBatchCommand.ts index 68fab94520e47..b297badfc7e25 100644 --- a/clients/client-connectcampaignsv2/src/commands/PutOutboundRequestBatchCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/PutOutboundRequestBatchCommand.ts @@ -131,6 +131,7 @@ export interface PutOutboundRequestBatchCommandOutput extends PutOutboundRequest * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class PutOutboundRequestBatchCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/PutProfileOutboundRequestBatchCommand.ts b/clients/client-connectcampaignsv2/src/commands/PutProfileOutboundRequestBatchCommand.ts index f110325ab3564..b3933481f12fd 100644 --- a/clients/client-connectcampaignsv2/src/commands/PutProfileOutboundRequestBatchCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/PutProfileOutboundRequestBatchCommand.ts @@ -104,6 +104,7 @@ export interface PutProfileOutboundRequestBatchCommandOutput * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class PutProfileOutboundRequestBatchCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/ResumeCampaignCommand.ts b/clients/client-connectcampaignsv2/src/commands/ResumeCampaignCommand.ts index ed86c6e3963a9..af8f18f0e1c2c 100644 --- a/clients/client-connectcampaignsv2/src/commands/ResumeCampaignCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/ResumeCampaignCommand.ts @@ -78,6 +78,7 @@ export interface ResumeCampaignCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class ResumeCampaignCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/StartCampaignCommand.ts b/clients/client-connectcampaignsv2/src/commands/StartCampaignCommand.ts index e2bed24490eec..155f3cff71325 100644 --- a/clients/client-connectcampaignsv2/src/commands/StartCampaignCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/StartCampaignCommand.ts @@ -78,6 +78,7 @@ export interface StartCampaignCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class StartCampaignCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/StartInstanceOnboardingJobCommand.ts b/clients/client-connectcampaignsv2/src/commands/StartInstanceOnboardingJobCommand.ts index a7e3b863a2564..089efd9b52673 100644 --- a/clients/client-connectcampaignsv2/src/commands/StartInstanceOnboardingJobCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/StartInstanceOnboardingJobCommand.ts @@ -86,6 +86,7 @@ export interface StartInstanceOnboardingJobCommandOutput extends StartInstanceOn * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class StartInstanceOnboardingJobCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/StopCampaignCommand.ts b/clients/client-connectcampaignsv2/src/commands/StopCampaignCommand.ts index 1cd885e481de1..0e2f08cd5a763 100644 --- a/clients/client-connectcampaignsv2/src/commands/StopCampaignCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/StopCampaignCommand.ts @@ -78,6 +78,7 @@ export interface StopCampaignCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class StopCampaignCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/TagResourceCommand.ts b/clients/client-connectcampaignsv2/src/commands/TagResourceCommand.ts index beecfc347a373..d4120eb6d7eb3 100644 --- a/clients/client-connectcampaignsv2/src/commands/TagResourceCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/TagResourceCommand.ts @@ -75,6 +75,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/UntagResourceCommand.ts b/clients/client-connectcampaignsv2/src/commands/UntagResourceCommand.ts index f9d5f4955fc16..3e40c40044e8e 100644 --- a/clients/client-connectcampaignsv2/src/commands/UntagResourceCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UntagResourceCommand.ts @@ -75,6 +75,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignChannelSubtypeConfigCommand.ts b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignChannelSubtypeConfigCommand.ts index 69f24723ed49f..45fad4fb3c885 100644 --- a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignChannelSubtypeConfigCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignChannelSubtypeConfigCommand.ts @@ -122,6 +122,7 @@ export interface UpdateCampaignChannelSubtypeConfigCommandOutput extends __Metad * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class UpdateCampaignChannelSubtypeConfigCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationLimitsCommand.ts b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationLimitsCommand.ts index 1ecf5f07e4013..23b317d96da01 100644 --- a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationLimitsCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationLimitsCommand.ts @@ -89,6 +89,7 @@ export interface UpdateCampaignCommunicationLimitsCommandOutput extends __Metada * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class UpdateCampaignCommunicationLimitsCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationTimeCommand.ts b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationTimeCommand.ts index a97aa100c95ef..6278c4e601f85 100644 --- a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationTimeCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationTimeCommand.ts @@ -149,6 +149,7 @@ export interface UpdateCampaignCommunicationTimeCommandOutput extends __Metadata * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class UpdateCampaignCommunicationTimeCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignFlowAssociationCommand.ts b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignFlowAssociationCommand.ts index d67d2a8995a1f..d295f66f238f3 100644 --- a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignFlowAssociationCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignFlowAssociationCommand.ts @@ -79,6 +79,7 @@ export interface UpdateCampaignFlowAssociationCommandOutput extends __MetadataBe * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class UpdateCampaignFlowAssociationCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignNameCommand.ts b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignNameCommand.ts index 82301d4d8b090..fafdfafe978c2 100644 --- a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignNameCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignNameCommand.ts @@ -73,6 +73,7 @@ export interface UpdateCampaignNameCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class UpdateCampaignNameCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignScheduleCommand.ts b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignScheduleCommand.ts index af1eea9535093..1470af921a689 100644 --- a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignScheduleCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignScheduleCommand.ts @@ -80,6 +80,7 @@ export interface UpdateCampaignScheduleCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class UpdateCampaignScheduleCommand extends $Command diff --git a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignSourceCommand.ts b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignSourceCommand.ts index 93d505c1df245..0bf93c321951c 100644 --- a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignSourceCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignSourceCommand.ts @@ -81,6 +81,7 @@ export interface UpdateCampaignSourceCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCampaignsV2ServiceException} *

Base exception class for all service exceptions from ConnectCampaignsV2 service.

* + * * @public */ export class UpdateCampaignSourceCommand extends $Command diff --git a/clients/client-connectcases/src/commands/BatchGetCaseRuleCommand.ts b/clients/client-connectcases/src/commands/BatchGetCaseRuleCommand.ts index 95cbdc9d40738..73f68a1473b44 100644 --- a/clients/client-connectcases/src/commands/BatchGetCaseRuleCommand.ts +++ b/clients/client-connectcases/src/commands/BatchGetCaseRuleCommand.ts @@ -132,6 +132,7 @@ export interface BatchGetCaseRuleCommandOutput extends BatchGetCaseRuleResponse, * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class BatchGetCaseRuleCommand extends $Command diff --git a/clients/client-connectcases/src/commands/BatchGetFieldCommand.ts b/clients/client-connectcases/src/commands/BatchGetFieldCommand.ts index a98dc06634a12..16d27af86c443 100644 --- a/clients/client-connectcases/src/commands/BatchGetFieldCommand.ts +++ b/clients/client-connectcases/src/commands/BatchGetFieldCommand.ts @@ -99,6 +99,7 @@ export interface BatchGetFieldCommandOutput extends BatchGetFieldResponse, __Met * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class BatchGetFieldCommand extends $Command diff --git a/clients/client-connectcases/src/commands/BatchPutFieldOptionsCommand.ts b/clients/client-connectcases/src/commands/BatchPutFieldOptionsCommand.ts index fe333bde60e5a..210c5c0e176a8 100644 --- a/clients/client-connectcases/src/commands/BatchPutFieldOptionsCommand.ts +++ b/clients/client-connectcases/src/commands/BatchPutFieldOptionsCommand.ts @@ -91,6 +91,7 @@ export interface BatchPutFieldOptionsCommandOutput extends BatchPutFieldOptionsR * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class BatchPutFieldOptionsCommand extends $Command diff --git a/clients/client-connectcases/src/commands/CreateCaseCommand.ts b/clients/client-connectcases/src/commands/CreateCaseCommand.ts index 6df6de7c9444e..364aa5763fa43 100644 --- a/clients/client-connectcases/src/commands/CreateCaseCommand.ts +++ b/clients/client-connectcases/src/commands/CreateCaseCommand.ts @@ -115,6 +115,7 @@ export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataB * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class CreateCaseCommand extends $Command diff --git a/clients/client-connectcases/src/commands/CreateCaseRuleCommand.ts b/clients/client-connectcases/src/commands/CreateCaseRuleCommand.ts index b87d59e7ab666..71127eae4348e 100644 --- a/clients/client-connectcases/src/commands/CreateCaseRuleCommand.ts +++ b/clients/client-connectcases/src/commands/CreateCaseRuleCommand.ts @@ -119,6 +119,7 @@ export interface CreateCaseRuleCommandOutput extends CreateCaseRuleResponse, __M * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class CreateCaseRuleCommand extends $Command diff --git a/clients/client-connectcases/src/commands/CreateDomainCommand.ts b/clients/client-connectcases/src/commands/CreateDomainCommand.ts index 16d736d6ebe28..946793b81655a 100644 --- a/clients/client-connectcases/src/commands/CreateDomainCommand.ts +++ b/clients/client-connectcases/src/commands/CreateDomainCommand.ts @@ -89,6 +89,7 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class CreateDomainCommand extends $Command diff --git a/clients/client-connectcases/src/commands/CreateFieldCommand.ts b/clients/client-connectcases/src/commands/CreateFieldCommand.ts index 88fbabf68e0d4..5c6fbf1caf21b 100644 --- a/clients/client-connectcases/src/commands/CreateFieldCommand.ts +++ b/clients/client-connectcases/src/commands/CreateFieldCommand.ts @@ -86,6 +86,7 @@ export interface CreateFieldCommandOutput extends CreateFieldResponse, __Metadat * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class CreateFieldCommand extends $Command diff --git a/clients/client-connectcases/src/commands/CreateLayoutCommand.ts b/clients/client-connectcases/src/commands/CreateLayoutCommand.ts index 89122439f85cd..d727aed2c5bde 100644 --- a/clients/client-connectcases/src/commands/CreateLayoutCommand.ts +++ b/clients/client-connectcases/src/commands/CreateLayoutCommand.ts @@ -128,6 +128,7 @@ export interface CreateLayoutCommandOutput extends CreateLayoutResponse, __Metad * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class CreateLayoutCommand extends $Command diff --git a/clients/client-connectcases/src/commands/CreateRelatedItemCommand.ts b/clients/client-connectcases/src/commands/CreateRelatedItemCommand.ts index 6006e3fe08497..f55bb2aae8655 100644 --- a/clients/client-connectcases/src/commands/CreateRelatedItemCommand.ts +++ b/clients/client-connectcases/src/commands/CreateRelatedItemCommand.ts @@ -113,6 +113,7 @@ export interface CreateRelatedItemCommandOutput extends CreateRelatedItemRespons * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class CreateRelatedItemCommand extends $Command diff --git a/clients/client-connectcases/src/commands/CreateTemplateCommand.ts b/clients/client-connectcases/src/commands/CreateTemplateCommand.ts index ca395b56c90a9..2916f9d515636 100644 --- a/clients/client-connectcases/src/commands/CreateTemplateCommand.ts +++ b/clients/client-connectcases/src/commands/CreateTemplateCommand.ts @@ -127,6 +127,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class CreateTemplateCommand extends $Command diff --git a/clients/client-connectcases/src/commands/DeleteCaseRuleCommand.ts b/clients/client-connectcases/src/commands/DeleteCaseRuleCommand.ts index 21705019ef877..d5c8086e74f55 100644 --- a/clients/client-connectcases/src/commands/DeleteCaseRuleCommand.ts +++ b/clients/client-connectcases/src/commands/DeleteCaseRuleCommand.ts @@ -75,6 +75,7 @@ export interface DeleteCaseRuleCommandOutput extends DeleteCaseRuleResponse, __M * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class DeleteCaseRuleCommand extends $Command diff --git a/clients/client-connectcases/src/commands/DeleteDomainCommand.ts b/clients/client-connectcases/src/commands/DeleteDomainCommand.ts index c10badc24d610..6c353e79641f6 100644 --- a/clients/client-connectcases/src/commands/DeleteDomainCommand.ts +++ b/clients/client-connectcases/src/commands/DeleteDomainCommand.ts @@ -80,6 +80,7 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __Metad * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class DeleteDomainCommand extends $Command diff --git a/clients/client-connectcases/src/commands/DeleteFieldCommand.ts b/clients/client-connectcases/src/commands/DeleteFieldCommand.ts index c783ff5e56b5d..4f180f327a052 100644 --- a/clients/client-connectcases/src/commands/DeleteFieldCommand.ts +++ b/clients/client-connectcases/src/commands/DeleteFieldCommand.ts @@ -132,6 +132,7 @@ export interface DeleteFieldCommandOutput extends DeleteFieldResponse, __Metadat * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class DeleteFieldCommand extends $Command diff --git a/clients/client-connectcases/src/commands/DeleteLayoutCommand.ts b/clients/client-connectcases/src/commands/DeleteLayoutCommand.ts index d51ed46e69475..84e3be2d24181 100644 --- a/clients/client-connectcases/src/commands/DeleteLayoutCommand.ts +++ b/clients/client-connectcases/src/commands/DeleteLayoutCommand.ts @@ -91,6 +91,7 @@ export interface DeleteLayoutCommandOutput extends DeleteLayoutResponse, __Metad * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class DeleteLayoutCommand extends $Command diff --git a/clients/client-connectcases/src/commands/DeleteTemplateCommand.ts b/clients/client-connectcases/src/commands/DeleteTemplateCommand.ts index b85f7c857e64f..b3292ea4cfc8f 100644 --- a/clients/client-connectcases/src/commands/DeleteTemplateCommand.ts +++ b/clients/client-connectcases/src/commands/DeleteTemplateCommand.ts @@ -92,6 +92,7 @@ export interface DeleteTemplateCommandOutput extends DeleteTemplateResponse, __M * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class DeleteTemplateCommand extends $Command diff --git a/clients/client-connectcases/src/commands/GetCaseAuditEventsCommand.ts b/clients/client-connectcases/src/commands/GetCaseAuditEventsCommand.ts index 7e87ecec18148..46533214eaba8 100644 --- a/clients/client-connectcases/src/commands/GetCaseAuditEventsCommand.ts +++ b/clients/client-connectcases/src/commands/GetCaseAuditEventsCommand.ts @@ -108,6 +108,7 @@ export interface GetCaseAuditEventsCommandOutput extends GetCaseAuditEventsRespo * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class GetCaseAuditEventsCommand extends $Command diff --git a/clients/client-connectcases/src/commands/GetCaseCommand.ts b/clients/client-connectcases/src/commands/GetCaseCommand.ts index f83a06bb45e6e..76e1ff2d4636d 100644 --- a/clients/client-connectcases/src/commands/GetCaseCommand.ts +++ b/clients/client-connectcases/src/commands/GetCaseCommand.ts @@ -95,6 +95,7 @@ export interface GetCaseCommandOutput extends GetCaseResponse, __MetadataBearer * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class GetCaseCommand extends $Command diff --git a/clients/client-connectcases/src/commands/GetCaseEventConfigurationCommand.ts b/clients/client-connectcases/src/commands/GetCaseEventConfigurationCommand.ts index 69aa45be65ab2..3e61341bdb3a4 100644 --- a/clients/client-connectcases/src/commands/GetCaseEventConfigurationCommand.ts +++ b/clients/client-connectcases/src/commands/GetCaseEventConfigurationCommand.ts @@ -86,6 +86,7 @@ export interface GetCaseEventConfigurationCommandOutput extends GetCaseEventConf * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class GetCaseEventConfigurationCommand extends $Command diff --git a/clients/client-connectcases/src/commands/GetDomainCommand.ts b/clients/client-connectcases/src/commands/GetDomainCommand.ts index 89535589326e2..b07d499742ffe 100644 --- a/clients/client-connectcases/src/commands/GetDomainCommand.ts +++ b/clients/client-connectcases/src/commands/GetDomainCommand.ts @@ -79,6 +79,7 @@ export interface GetDomainCommandOutput extends GetDomainResponse, __MetadataBea * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class GetDomainCommand extends $Command diff --git a/clients/client-connectcases/src/commands/GetLayoutCommand.ts b/clients/client-connectcases/src/commands/GetLayoutCommand.ts index c428d8f2a6637..2202dd76b4bac 100644 --- a/clients/client-connectcases/src/commands/GetLayoutCommand.ts +++ b/clients/client-connectcases/src/commands/GetLayoutCommand.ts @@ -113,6 +113,7 @@ export interface GetLayoutCommandOutput extends GetLayoutResponse, __MetadataBea * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class GetLayoutCommand extends $Command diff --git a/clients/client-connectcases/src/commands/GetTemplateCommand.ts b/clients/client-connectcases/src/commands/GetTemplateCommand.ts index c8b936da99ffc..e9f9a9481027d 100644 --- a/clients/client-connectcases/src/commands/GetTemplateCommand.ts +++ b/clients/client-connectcases/src/commands/GetTemplateCommand.ts @@ -119,6 +119,7 @@ export interface GetTemplateCommandOutput extends GetTemplateResponse, __Metadat * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class GetTemplateCommand extends $Command diff --git a/clients/client-connectcases/src/commands/ListCaseRulesCommand.ts b/clients/client-connectcases/src/commands/ListCaseRulesCommand.ts index 89cb7317f5adf..dd58cb44e6d48 100644 --- a/clients/client-connectcases/src/commands/ListCaseRulesCommand.ts +++ b/clients/client-connectcases/src/commands/ListCaseRulesCommand.ts @@ -85,6 +85,7 @@ export interface ListCaseRulesCommandOutput extends ListCaseRulesResponse, __Met * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class ListCaseRulesCommand extends $Command diff --git a/clients/client-connectcases/src/commands/ListCasesForContactCommand.ts b/clients/client-connectcases/src/commands/ListCasesForContactCommand.ts index 514c16e7ce7c2..0babc8926123b 100644 --- a/clients/client-connectcases/src/commands/ListCasesForContactCommand.ts +++ b/clients/client-connectcases/src/commands/ListCasesForContactCommand.ts @@ -81,6 +81,7 @@ export interface ListCasesForContactCommandOutput extends ListCasesForContactRes * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class ListCasesForContactCommand extends $Command diff --git a/clients/client-connectcases/src/commands/ListDomainsCommand.ts b/clients/client-connectcases/src/commands/ListDomainsCommand.ts index f3eb70651b891..1e946be21875e 100644 --- a/clients/client-connectcases/src/commands/ListDomainsCommand.ts +++ b/clients/client-connectcases/src/commands/ListDomainsCommand.ts @@ -77,6 +77,7 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class ListDomainsCommand extends $Command diff --git a/clients/client-connectcases/src/commands/ListFieldOptionsCommand.ts b/clients/client-connectcases/src/commands/ListFieldOptionsCommand.ts index 3271a769cf8bc..d59e6db48dc5b 100644 --- a/clients/client-connectcases/src/commands/ListFieldOptionsCommand.ts +++ b/clients/client-connectcases/src/commands/ListFieldOptionsCommand.ts @@ -85,6 +85,7 @@ export interface ListFieldOptionsCommandOutput extends ListFieldOptionsResponse, * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class ListFieldOptionsCommand extends $Command diff --git a/clients/client-connectcases/src/commands/ListFieldsCommand.ts b/clients/client-connectcases/src/commands/ListFieldsCommand.ts index a18e47626f181..0322fcf11e83e 100644 --- a/clients/client-connectcases/src/commands/ListFieldsCommand.ts +++ b/clients/client-connectcases/src/commands/ListFieldsCommand.ts @@ -83,6 +83,7 @@ export interface ListFieldsCommandOutput extends ListFieldsResponse, __MetadataB * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class ListFieldsCommand extends $Command diff --git a/clients/client-connectcases/src/commands/ListLayoutsCommand.ts b/clients/client-connectcases/src/commands/ListLayoutsCommand.ts index 5aafc9f28d2be..19aab33fb4f69 100644 --- a/clients/client-connectcases/src/commands/ListLayoutsCommand.ts +++ b/clients/client-connectcases/src/commands/ListLayoutsCommand.ts @@ -82,6 +82,7 @@ export interface ListLayoutsCommandOutput extends ListLayoutsResponse, __Metadat * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class ListLayoutsCommand extends $Command diff --git a/clients/client-connectcases/src/commands/ListTagsForResourceCommand.ts b/clients/client-connectcases/src/commands/ListTagsForResourceCommand.ts index 5132099f1e1b6..4b94ace20bce7 100644 --- a/clients/client-connectcases/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-connectcases/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-connectcases/src/commands/ListTemplatesCommand.ts b/clients/client-connectcases/src/commands/ListTemplatesCommand.ts index 0216bad879e32..8ab574dce892e 100644 --- a/clients/client-connectcases/src/commands/ListTemplatesCommand.ts +++ b/clients/client-connectcases/src/commands/ListTemplatesCommand.ts @@ -109,6 +109,7 @@ export interface ListTemplatesCommandOutput extends ListTemplatesResponse, __Met * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class ListTemplatesCommand extends $Command diff --git a/clients/client-connectcases/src/commands/PutCaseEventConfigurationCommand.ts b/clients/client-connectcases/src/commands/PutCaseEventConfigurationCommand.ts index c4e2ec16d83b2..11454145c541e 100644 --- a/clients/client-connectcases/src/commands/PutCaseEventConfigurationCommand.ts +++ b/clients/client-connectcases/src/commands/PutCaseEventConfigurationCommand.ts @@ -88,6 +88,7 @@ export interface PutCaseEventConfigurationCommandOutput extends PutCaseEventConf * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class PutCaseEventConfigurationCommand extends $Command diff --git a/clients/client-connectcases/src/commands/SearchCasesCommand.ts b/clients/client-connectcases/src/commands/SearchCasesCommand.ts index b8fa9ba00d151..9583943a32fbd 100644 --- a/clients/client-connectcases/src/commands/SearchCasesCommand.ts +++ b/clients/client-connectcases/src/commands/SearchCasesCommand.ts @@ -191,6 +191,7 @@ export interface SearchCasesCommandOutput extends SearchCasesResponse, __Metadat * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class SearchCasesCommand extends $Command diff --git a/clients/client-connectcases/src/commands/SearchRelatedItemsCommand.ts b/clients/client-connectcases/src/commands/SearchRelatedItemsCommand.ts index 11cd5c9d450ca..7c6f50775a0c4 100644 --- a/clients/client-connectcases/src/commands/SearchRelatedItemsCommand.ts +++ b/clients/client-connectcases/src/commands/SearchRelatedItemsCommand.ts @@ -120,6 +120,7 @@ export interface SearchRelatedItemsCommandOutput extends SearchRelatedItemsRespo * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class SearchRelatedItemsCommand extends $Command diff --git a/clients/client-connectcases/src/commands/TagResourceCommand.ts b/clients/client-connectcases/src/commands/TagResourceCommand.ts index 5b4ae9fb12952..30f70abbf687f 100644 --- a/clients/client-connectcases/src/commands/TagResourceCommand.ts +++ b/clients/client-connectcases/src/commands/TagResourceCommand.ts @@ -73,6 +73,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-connectcases/src/commands/UntagResourceCommand.ts b/clients/client-connectcases/src/commands/UntagResourceCommand.ts index c5d842b46f0dc..e542ecb06a7d5 100644 --- a/clients/client-connectcases/src/commands/UntagResourceCommand.ts +++ b/clients/client-connectcases/src/commands/UntagResourceCommand.ts @@ -73,6 +73,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-connectcases/src/commands/UpdateCaseCommand.ts b/clients/client-connectcases/src/commands/UpdateCaseCommand.ts index e74d875a3adff..ed6e1915e6da4 100644 --- a/clients/client-connectcases/src/commands/UpdateCaseCommand.ts +++ b/clients/client-connectcases/src/commands/UpdateCaseCommand.ts @@ -92,6 +92,7 @@ export interface UpdateCaseCommandOutput extends UpdateCaseResponse, __MetadataB * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class UpdateCaseCommand extends $Command diff --git a/clients/client-connectcases/src/commands/UpdateCaseRuleCommand.ts b/clients/client-connectcases/src/commands/UpdateCaseRuleCommand.ts index b99e3a5847b3f..32def75d5d738 100644 --- a/clients/client-connectcases/src/commands/UpdateCaseRuleCommand.ts +++ b/clients/client-connectcases/src/commands/UpdateCaseRuleCommand.ts @@ -113,6 +113,7 @@ export interface UpdateCaseRuleCommandOutput extends UpdateCaseRuleResponse, __M * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class UpdateCaseRuleCommand extends $Command diff --git a/clients/client-connectcases/src/commands/UpdateFieldCommand.ts b/clients/client-connectcases/src/commands/UpdateFieldCommand.ts index d6d22573c21d0..752af0c8ad6d3 100644 --- a/clients/client-connectcases/src/commands/UpdateFieldCommand.ts +++ b/clients/client-connectcases/src/commands/UpdateFieldCommand.ts @@ -78,6 +78,7 @@ export interface UpdateFieldCommandOutput extends UpdateFieldResponse, __Metadat * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class UpdateFieldCommand extends $Command diff --git a/clients/client-connectcases/src/commands/UpdateLayoutCommand.ts b/clients/client-connectcases/src/commands/UpdateLayoutCommand.ts index cc6a706e883dc..a16519ccb494b 100644 --- a/clients/client-connectcases/src/commands/UpdateLayoutCommand.ts +++ b/clients/client-connectcases/src/commands/UpdateLayoutCommand.ts @@ -121,6 +121,7 @@ export interface UpdateLayoutCommandOutput extends UpdateLayoutResponse, __Metad * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class UpdateLayoutCommand extends $Command diff --git a/clients/client-connectcases/src/commands/UpdateTemplateCommand.ts b/clients/client-connectcases/src/commands/UpdateTemplateCommand.ts index 978d3b2c67520..3722f56026622 100644 --- a/clients/client-connectcases/src/commands/UpdateTemplateCommand.ts +++ b/clients/client-connectcases/src/commands/UpdateTemplateCommand.ts @@ -120,6 +120,7 @@ export interface UpdateTemplateCommandOutput extends UpdateTemplateResponse, __M * @throws {@link ConnectCasesServiceException} *

Base exception class for all service exceptions from ConnectCases service.

* + * * @public */ export class UpdateTemplateCommand extends $Command diff --git a/clients/client-connectparticipant/src/commands/CancelParticipantAuthenticationCommand.ts b/clients/client-connectparticipant/src/commands/CancelParticipantAuthenticationCommand.ts index 45c8720c6e692..1c08e087eec9c 100644 --- a/clients/client-connectparticipant/src/commands/CancelParticipantAuthenticationCommand.ts +++ b/clients/client-connectparticipant/src/commands/CancelParticipantAuthenticationCommand.ts @@ -80,6 +80,7 @@ export interface CancelParticipantAuthenticationCommandOutput * @throws {@link ConnectParticipantServiceException} *

Base exception class for all service exceptions from ConnectParticipant service.

* + * * @public */ export class CancelParticipantAuthenticationCommand extends $Command diff --git a/clients/client-connectparticipant/src/commands/CompleteAttachmentUploadCommand.ts b/clients/client-connectparticipant/src/commands/CompleteAttachmentUploadCommand.ts index 3e14fde36924f..e3aa69256bca4 100644 --- a/clients/client-connectparticipant/src/commands/CompleteAttachmentUploadCommand.ts +++ b/clients/client-connectparticipant/src/commands/CompleteAttachmentUploadCommand.ts @@ -90,6 +90,7 @@ export interface CompleteAttachmentUploadCommandOutput extends CompleteAttachmen * @throws {@link ConnectParticipantServiceException} *

Base exception class for all service exceptions from ConnectParticipant service.

* + * * @public */ export class CompleteAttachmentUploadCommand extends $Command diff --git a/clients/client-connectparticipant/src/commands/CreateParticipantConnectionCommand.ts b/clients/client-connectparticipant/src/commands/CreateParticipantConnectionCommand.ts index 6d5e7de8c78f1..f793a1c60326f 100644 --- a/clients/client-connectparticipant/src/commands/CreateParticipantConnectionCommand.ts +++ b/clients/client-connectparticipant/src/commands/CreateParticipantConnectionCommand.ts @@ -122,6 +122,7 @@ export interface CreateParticipantConnectionCommandOutput * @throws {@link ConnectParticipantServiceException} *

Base exception class for all service exceptions from ConnectParticipant service.

* + * * @public */ export class CreateParticipantConnectionCommand extends $Command diff --git a/clients/client-connectparticipant/src/commands/DescribeViewCommand.ts b/clients/client-connectparticipant/src/commands/DescribeViewCommand.ts index 794b0932b17ee..94eb7beceb190 100644 --- a/clients/client-connectparticipant/src/commands/DescribeViewCommand.ts +++ b/clients/client-connectparticipant/src/commands/DescribeViewCommand.ts @@ -88,6 +88,7 @@ export interface DescribeViewCommandOutput extends DescribeViewResponse, __Metad * @throws {@link ConnectParticipantServiceException} *

Base exception class for all service exceptions from ConnectParticipant service.

* + * * @public */ export class DescribeViewCommand extends $Command diff --git a/clients/client-connectparticipant/src/commands/DisconnectParticipantCommand.ts b/clients/client-connectparticipant/src/commands/DisconnectParticipantCommand.ts index 4d1bfb520a229..04eb641a571c0 100644 --- a/clients/client-connectparticipant/src/commands/DisconnectParticipantCommand.ts +++ b/clients/client-connectparticipant/src/commands/DisconnectParticipantCommand.ts @@ -78,6 +78,7 @@ export interface DisconnectParticipantCommandOutput extends DisconnectParticipan * @throws {@link ConnectParticipantServiceException} *

Base exception class for all service exceptions from ConnectParticipant service.

* + * * @public */ export class DisconnectParticipantCommand extends $Command diff --git a/clients/client-connectparticipant/src/commands/GetAttachmentCommand.ts b/clients/client-connectparticipant/src/commands/GetAttachmentCommand.ts index 004e417cf752a..fd6c912d586f2 100644 --- a/clients/client-connectparticipant/src/commands/GetAttachmentCommand.ts +++ b/clients/client-connectparticipant/src/commands/GetAttachmentCommand.ts @@ -84,6 +84,7 @@ export interface GetAttachmentCommandOutput extends GetAttachmentResponse, __Met * @throws {@link ConnectParticipantServiceException} *

Base exception class for all service exceptions from ConnectParticipant service.

* + * * @public */ export class GetAttachmentCommand extends $Command diff --git a/clients/client-connectparticipant/src/commands/GetAuthenticationUrlCommand.ts b/clients/client-connectparticipant/src/commands/GetAuthenticationUrlCommand.ts index 300f9a4b1e094..e8a38e337056d 100644 --- a/clients/client-connectparticipant/src/commands/GetAuthenticationUrlCommand.ts +++ b/clients/client-connectparticipant/src/commands/GetAuthenticationUrlCommand.ts @@ -87,6 +87,7 @@ export interface GetAuthenticationUrlCommandOutput extends GetAuthenticationUrlR * @throws {@link ConnectParticipantServiceException} *

Base exception class for all service exceptions from ConnectParticipant service.

* + * * @public */ export class GetAuthenticationUrlCommand extends $Command diff --git a/clients/client-connectparticipant/src/commands/GetTranscriptCommand.ts b/clients/client-connectparticipant/src/commands/GetTranscriptCommand.ts index 402b0f3b4a807..d534b72a3cdf5 100644 --- a/clients/client-connectparticipant/src/commands/GetTranscriptCommand.ts +++ b/clients/client-connectparticipant/src/commands/GetTranscriptCommand.ts @@ -154,6 +154,7 @@ export interface GetTranscriptCommandOutput extends GetTranscriptResponse, __Met * @throws {@link ConnectParticipantServiceException} *

Base exception class for all service exceptions from ConnectParticipant service.

* + * * @public */ export class GetTranscriptCommand extends $Command diff --git a/clients/client-connectparticipant/src/commands/SendEventCommand.ts b/clients/client-connectparticipant/src/commands/SendEventCommand.ts index 703099f71fa3b..ab75eeb2680d8 100644 --- a/clients/client-connectparticipant/src/commands/SendEventCommand.ts +++ b/clients/client-connectparticipant/src/commands/SendEventCommand.ts @@ -95,6 +95,7 @@ export interface SendEventCommandOutput extends SendEventResponse, __MetadataBea * @throws {@link ConnectParticipantServiceException} *

Base exception class for all service exceptions from ConnectParticipant service.

* + * * @public */ export class SendEventCommand extends $Command diff --git a/clients/client-connectparticipant/src/commands/SendMessageCommand.ts b/clients/client-connectparticipant/src/commands/SendMessageCommand.ts index 5b6ffa2b8fa8e..ff6ba0016e403 100644 --- a/clients/client-connectparticipant/src/commands/SendMessageCommand.ts +++ b/clients/client-connectparticipant/src/commands/SendMessageCommand.ts @@ -83,6 +83,7 @@ export interface SendMessageCommandOutput extends SendMessageResponse, __Metadat * @throws {@link ConnectParticipantServiceException} *

Base exception class for all service exceptions from ConnectParticipant service.

* + * * @public */ export class SendMessageCommand extends $Command diff --git a/clients/client-connectparticipant/src/commands/StartAttachmentUploadCommand.ts b/clients/client-connectparticipant/src/commands/StartAttachmentUploadCommand.ts index 7586cee44c235..eeb4b69b961e5 100644 --- a/clients/client-connectparticipant/src/commands/StartAttachmentUploadCommand.ts +++ b/clients/client-connectparticipant/src/commands/StartAttachmentUploadCommand.ts @@ -94,6 +94,7 @@ export interface StartAttachmentUploadCommandOutput extends StartAttachmentUploa * @throws {@link ConnectParticipantServiceException} *

Base exception class for all service exceptions from ConnectParticipant service.

* + * * @public */ export class StartAttachmentUploadCommand extends $Command diff --git a/clients/client-controlcatalog/src/commands/GetControlCommand.ts b/clients/client-controlcatalog/src/commands/GetControlCommand.ts index 5e8918f1ea450..64367b753b893 100644 --- a/clients/client-controlcatalog/src/commands/GetControlCommand.ts +++ b/clients/client-controlcatalog/src/commands/GetControlCommand.ts @@ -88,6 +88,7 @@ export interface GetControlCommandOutput extends GetControlResponse, __MetadataB * @throws {@link ControlCatalogServiceException} *

Base exception class for all service exceptions from ControlCatalog service.

* + * * @public */ export class GetControlCommand extends $Command diff --git a/clients/client-controlcatalog/src/commands/ListCommonControlsCommand.ts b/clients/client-controlcatalog/src/commands/ListCommonControlsCommand.ts index 04d3ddc7b5b0a..6965fcf421486 100644 --- a/clients/client-controlcatalog/src/commands/ListCommonControlsCommand.ts +++ b/clients/client-controlcatalog/src/commands/ListCommonControlsCommand.ts @@ -95,6 +95,7 @@ export interface ListCommonControlsCommandOutput extends ListCommonControlsRespo * @throws {@link ControlCatalogServiceException} *

Base exception class for all service exceptions from ControlCatalog service.

* + * * @public */ export class ListCommonControlsCommand extends $Command diff --git a/clients/client-controlcatalog/src/commands/ListControlsCommand.ts b/clients/client-controlcatalog/src/commands/ListControlsCommand.ts index e1e601431e2ed..62c72b703d5ff 100644 --- a/clients/client-controlcatalog/src/commands/ListControlsCommand.ts +++ b/clients/client-controlcatalog/src/commands/ListControlsCommand.ts @@ -75,6 +75,7 @@ export interface ListControlsCommandOutput extends ListControlsResponse, __Metad * @throws {@link ControlCatalogServiceException} *

Base exception class for all service exceptions from ControlCatalog service.

* + * * @public */ export class ListControlsCommand extends $Command diff --git a/clients/client-controlcatalog/src/commands/ListDomainsCommand.ts b/clients/client-controlcatalog/src/commands/ListDomainsCommand.ts index 97b28839bdcf7..a87166d97bcfb 100644 --- a/clients/client-controlcatalog/src/commands/ListDomainsCommand.ts +++ b/clients/client-controlcatalog/src/commands/ListDomainsCommand.ts @@ -77,6 +77,7 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat * @throws {@link ControlCatalogServiceException} *

Base exception class for all service exceptions from ControlCatalog service.

* + * * @public */ export class ListDomainsCommand extends $Command diff --git a/clients/client-controlcatalog/src/commands/ListObjectivesCommand.ts b/clients/client-controlcatalog/src/commands/ListObjectivesCommand.ts index bb8dd8b048416..46d9065a9b85d 100644 --- a/clients/client-controlcatalog/src/commands/ListObjectivesCommand.ts +++ b/clients/client-controlcatalog/src/commands/ListObjectivesCommand.ts @@ -90,6 +90,7 @@ export interface ListObjectivesCommandOutput extends ListObjectivesResponse, __M * @throws {@link ControlCatalogServiceException} *

Base exception class for all service exceptions from ControlCatalog service.

* + * * @public */ export class ListObjectivesCommand extends $Command diff --git a/clients/client-controltower/src/commands/CreateLandingZoneCommand.ts b/clients/client-controltower/src/commands/CreateLandingZoneCommand.ts index 3cc687a11bf81..736bfd1c60f5d 100644 --- a/clients/client-controltower/src/commands/CreateLandingZoneCommand.ts +++ b/clients/client-controltower/src/commands/CreateLandingZoneCommand.ts @@ -76,6 +76,7 @@ export interface CreateLandingZoneCommandOutput extends CreateLandingZoneOutput, * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class CreateLandingZoneCommand extends $Command diff --git a/clients/client-controltower/src/commands/DeleteLandingZoneCommand.ts b/clients/client-controltower/src/commands/DeleteLandingZoneCommand.ts index 128879d909939..96c84a5ea7fdf 100644 --- a/clients/client-controltower/src/commands/DeleteLandingZoneCommand.ts +++ b/clients/client-controltower/src/commands/DeleteLandingZoneCommand.ts @@ -74,6 +74,7 @@ export interface DeleteLandingZoneCommandOutput extends DeleteLandingZoneOutput, * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class DeleteLandingZoneCommand extends $Command diff --git a/clients/client-controltower/src/commands/DisableBaselineCommand.ts b/clients/client-controltower/src/commands/DisableBaselineCommand.ts index e6cfd9598d9b6..66ed946aa73ff 100644 --- a/clients/client-controltower/src/commands/DisableBaselineCommand.ts +++ b/clients/client-controltower/src/commands/DisableBaselineCommand.ts @@ -78,6 +78,7 @@ export interface DisableBaselineCommandOutput extends DisableBaselineOutput, __M * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class DisableBaselineCommand extends $Command diff --git a/clients/client-controltower/src/commands/DisableControlCommand.ts b/clients/client-controltower/src/commands/DisableControlCommand.ts index 0fcd4fb27b07d..22de208861c21 100644 --- a/clients/client-controltower/src/commands/DisableControlCommand.ts +++ b/clients/client-controltower/src/commands/DisableControlCommand.ts @@ -81,6 +81,7 @@ export interface DisableControlCommandOutput extends DisableControlOutput, __Met * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class DisableControlCommand extends $Command diff --git a/clients/client-controltower/src/commands/EnableBaselineCommand.ts b/clients/client-controltower/src/commands/EnableBaselineCommand.ts index 510e493c6fbd0..3e3ee01b8e946 100644 --- a/clients/client-controltower/src/commands/EnableBaselineCommand.ts +++ b/clients/client-controltower/src/commands/EnableBaselineCommand.ts @@ -90,6 +90,7 @@ export interface EnableBaselineCommandOutput extends EnableBaselineOutput, __Met * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class EnableBaselineCommand extends $Command diff --git a/clients/client-controltower/src/commands/EnableControlCommand.ts b/clients/client-controltower/src/commands/EnableControlCommand.ts index a879d23664818..20619e9b5d473 100644 --- a/clients/client-controltower/src/commands/EnableControlCommand.ts +++ b/clients/client-controltower/src/commands/EnableControlCommand.ts @@ -91,6 +91,7 @@ export interface EnableControlCommandOutput extends EnableControlOutput, __Metad * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class EnableControlCommand extends $Command diff --git a/clients/client-controltower/src/commands/GetBaselineCommand.ts b/clients/client-controltower/src/commands/GetBaselineCommand.ts index eb69398363329..b1d3de4a5b0d4 100644 --- a/clients/client-controltower/src/commands/GetBaselineCommand.ts +++ b/clients/client-controltower/src/commands/GetBaselineCommand.ts @@ -74,6 +74,7 @@ export interface GetBaselineCommandOutput extends GetBaselineOutput, __MetadataB * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class GetBaselineCommand extends $Command diff --git a/clients/client-controltower/src/commands/GetBaselineOperationCommand.ts b/clients/client-controltower/src/commands/GetBaselineOperationCommand.ts index d601dc0071e96..fd5a383463a91 100644 --- a/clients/client-controltower/src/commands/GetBaselineOperationCommand.ts +++ b/clients/client-controltower/src/commands/GetBaselineOperationCommand.ts @@ -79,6 +79,7 @@ export interface GetBaselineOperationCommandOutput extends GetBaselineOperationO * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class GetBaselineOperationCommand extends $Command diff --git a/clients/client-controltower/src/commands/GetControlOperationCommand.ts b/clients/client-controltower/src/commands/GetControlOperationCommand.ts index faf7d0bc48f1f..beed4606cad8c 100644 --- a/clients/client-controltower/src/commands/GetControlOperationCommand.ts +++ b/clients/client-controltower/src/commands/GetControlOperationCommand.ts @@ -84,6 +84,7 @@ export interface GetControlOperationCommandOutput extends GetControlOperationOut * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class GetControlOperationCommand extends $Command diff --git a/clients/client-controltower/src/commands/GetEnabledBaselineCommand.ts b/clients/client-controltower/src/commands/GetEnabledBaselineCommand.ts index f34e6c1167d3d..ee40662421d97 100644 --- a/clients/client-controltower/src/commands/GetEnabledBaselineCommand.ts +++ b/clients/client-controltower/src/commands/GetEnabledBaselineCommand.ts @@ -86,6 +86,7 @@ export interface GetEnabledBaselineCommandOutput extends GetEnabledBaselineOutpu * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class GetEnabledBaselineCommand extends $Command diff --git a/clients/client-controltower/src/commands/GetEnabledControlCommand.ts b/clients/client-controltower/src/commands/GetEnabledControlCommand.ts index b448ebb4ba4c5..ca9f9e524b7c1 100644 --- a/clients/client-controltower/src/commands/GetEnabledControlCommand.ts +++ b/clients/client-controltower/src/commands/GetEnabledControlCommand.ts @@ -94,6 +94,7 @@ export interface GetEnabledControlCommandOutput extends GetEnabledControlOutput, * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class GetEnabledControlCommand extends $Command diff --git a/clients/client-controltower/src/commands/GetLandingZoneCommand.ts b/clients/client-controltower/src/commands/GetLandingZoneCommand.ts index 6ba5d2c319072..b21274f1168d7 100644 --- a/clients/client-controltower/src/commands/GetLandingZoneCommand.ts +++ b/clients/client-controltower/src/commands/GetLandingZoneCommand.ts @@ -79,6 +79,7 @@ export interface GetLandingZoneCommandOutput extends GetLandingZoneOutput, __Met * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class GetLandingZoneCommand extends $Command diff --git a/clients/client-controltower/src/commands/GetLandingZoneOperationCommand.ts b/clients/client-controltower/src/commands/GetLandingZoneOperationCommand.ts index b7ccb31bf1219..52c14c4980201 100644 --- a/clients/client-controltower/src/commands/GetLandingZoneOperationCommand.ts +++ b/clients/client-controltower/src/commands/GetLandingZoneOperationCommand.ts @@ -78,6 +78,7 @@ export interface GetLandingZoneOperationCommandOutput extends GetLandingZoneOper * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class GetLandingZoneOperationCommand extends $Command diff --git a/clients/client-controltower/src/commands/ListBaselinesCommand.ts b/clients/client-controltower/src/commands/ListBaselinesCommand.ts index e8096cf35d69d..3a2f745d6c613 100644 --- a/clients/client-controltower/src/commands/ListBaselinesCommand.ts +++ b/clients/client-controltower/src/commands/ListBaselinesCommand.ts @@ -77,6 +77,7 @@ export interface ListBaselinesCommandOutput extends ListBaselinesOutput, __Metad * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class ListBaselinesCommand extends $Command diff --git a/clients/client-controltower/src/commands/ListControlOperationsCommand.ts b/clients/client-controltower/src/commands/ListControlOperationsCommand.ts index 00aa7287089d1..c611df29d1237 100644 --- a/clients/client-controltower/src/commands/ListControlOperationsCommand.ts +++ b/clients/client-controltower/src/commands/ListControlOperationsCommand.ts @@ -98,6 +98,7 @@ export interface ListControlOperationsCommandOutput extends ListControlOperation * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class ListControlOperationsCommand extends $Command diff --git a/clients/client-controltower/src/commands/ListEnabledBaselinesCommand.ts b/clients/client-controltower/src/commands/ListEnabledBaselinesCommand.ts index c3e48c55eed31..176e10ed89fcd 100644 --- a/clients/client-controltower/src/commands/ListEnabledBaselinesCommand.ts +++ b/clients/client-controltower/src/commands/ListEnabledBaselinesCommand.ts @@ -95,6 +95,7 @@ export interface ListEnabledBaselinesCommandOutput extends ListEnabledBaselinesO * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class ListEnabledBaselinesCommand extends $Command diff --git a/clients/client-controltower/src/commands/ListEnabledControlsCommand.ts b/clients/client-controltower/src/commands/ListEnabledControlsCommand.ts index 9c3f0e2abd109..d6a957c3fdb0a 100644 --- a/clients/client-controltower/src/commands/ListEnabledControlsCommand.ts +++ b/clients/client-controltower/src/commands/ListEnabledControlsCommand.ts @@ -100,6 +100,7 @@ export interface ListEnabledControlsCommandOutput extends ListEnabledControlsOut * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class ListEnabledControlsCommand extends $Command diff --git a/clients/client-controltower/src/commands/ListLandingZoneOperationsCommand.ts b/clients/client-controltower/src/commands/ListLandingZoneOperationsCommand.ts index 5bb3836968447..32995722a3827 100644 --- a/clients/client-controltower/src/commands/ListLandingZoneOperationsCommand.ts +++ b/clients/client-controltower/src/commands/ListLandingZoneOperationsCommand.ts @@ -83,6 +83,7 @@ export interface ListLandingZoneOperationsCommandOutput extends ListLandingZoneO * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class ListLandingZoneOperationsCommand extends $Command diff --git a/clients/client-controltower/src/commands/ListLandingZonesCommand.ts b/clients/client-controltower/src/commands/ListLandingZonesCommand.ts index e446b405569a3..51c1f199b4e78 100644 --- a/clients/client-controltower/src/commands/ListLandingZonesCommand.ts +++ b/clients/client-controltower/src/commands/ListLandingZonesCommand.ts @@ -75,6 +75,7 @@ export interface ListLandingZonesCommandOutput extends ListLandingZonesOutput, _ * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class ListLandingZonesCommand extends $Command diff --git a/clients/client-controltower/src/commands/ListTagsForResourceCommand.ts b/clients/client-controltower/src/commands/ListTagsForResourceCommand.ts index dc0d1a9e4992f..ba6e327750b5d 100644 --- a/clients/client-controltower/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-controltower/src/commands/ListTagsForResourceCommand.ts @@ -68,6 +68,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-controltower/src/commands/ResetEnabledBaselineCommand.ts b/clients/client-controltower/src/commands/ResetEnabledBaselineCommand.ts index 980f2a0739c09..11372408572d9 100644 --- a/clients/client-controltower/src/commands/ResetEnabledBaselineCommand.ts +++ b/clients/client-controltower/src/commands/ResetEnabledBaselineCommand.ts @@ -78,6 +78,7 @@ export interface ResetEnabledBaselineCommandOutput extends ResetEnabledBaselineO * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class ResetEnabledBaselineCommand extends $Command diff --git a/clients/client-controltower/src/commands/ResetEnabledControlCommand.ts b/clients/client-controltower/src/commands/ResetEnabledControlCommand.ts index 9ed42e33d3a99..78389fdbc7f0e 100644 --- a/clients/client-controltower/src/commands/ResetEnabledControlCommand.ts +++ b/clients/client-controltower/src/commands/ResetEnabledControlCommand.ts @@ -76,6 +76,7 @@ export interface ResetEnabledControlCommandOutput extends ResetEnabledControlOut * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class ResetEnabledControlCommand extends $Command diff --git a/clients/client-controltower/src/commands/ResetLandingZoneCommand.ts b/clients/client-controltower/src/commands/ResetLandingZoneCommand.ts index 24677b978a0bc..3f837034190cd 100644 --- a/clients/client-controltower/src/commands/ResetLandingZoneCommand.ts +++ b/clients/client-controltower/src/commands/ResetLandingZoneCommand.ts @@ -77,6 +77,7 @@ export interface ResetLandingZoneCommandOutput extends ResetLandingZoneOutput, _ * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class ResetLandingZoneCommand extends $Command diff --git a/clients/client-controltower/src/commands/TagResourceCommand.ts b/clients/client-controltower/src/commands/TagResourceCommand.ts index 131395d2528e6..b7eea117dcdaa 100644 --- a/clients/client-controltower/src/commands/TagResourceCommand.ts +++ b/clients/client-controltower/src/commands/TagResourceCommand.ts @@ -67,6 +67,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-controltower/src/commands/UntagResourceCommand.ts b/clients/client-controltower/src/commands/UntagResourceCommand.ts index d3074fe540ed9..bfd8236bae4a0 100644 --- a/clients/client-controltower/src/commands/UntagResourceCommand.ts +++ b/clients/client-controltower/src/commands/UntagResourceCommand.ts @@ -67,6 +67,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-controltower/src/commands/UpdateEnabledBaselineCommand.ts b/clients/client-controltower/src/commands/UpdateEnabledBaselineCommand.ts index c8835ebf29f66..06c7381ccd45d 100644 --- a/clients/client-controltower/src/commands/UpdateEnabledBaselineCommand.ts +++ b/clients/client-controltower/src/commands/UpdateEnabledBaselineCommand.ts @@ -85,6 +85,7 @@ export interface UpdateEnabledBaselineCommandOutput extends UpdateEnabledBaselin * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class UpdateEnabledBaselineCommand extends $Command diff --git a/clients/client-controltower/src/commands/UpdateEnabledControlCommand.ts b/clients/client-controltower/src/commands/UpdateEnabledControlCommand.ts index 1cec831f92a28..4feeb6b51a8f3 100644 --- a/clients/client-controltower/src/commands/UpdateEnabledControlCommand.ts +++ b/clients/client-controltower/src/commands/UpdateEnabledControlCommand.ts @@ -89,6 +89,7 @@ export interface UpdateEnabledControlCommandOutput extends UpdateEnabledControlO * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class UpdateEnabledControlCommand extends $Command diff --git a/clients/client-controltower/src/commands/UpdateLandingZoneCommand.ts b/clients/client-controltower/src/commands/UpdateLandingZoneCommand.ts index 026eb9ff0ddf9..4980a1d8e142f 100644 --- a/clients/client-controltower/src/commands/UpdateLandingZoneCommand.ts +++ b/clients/client-controltower/src/commands/UpdateLandingZoneCommand.ts @@ -77,6 +77,7 @@ export interface UpdateLandingZoneCommandOutput extends UpdateLandingZoneOutput, * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* + * * @public */ export class UpdateLandingZoneCommand extends $Command diff --git a/clients/client-cost-and-usage-report-service/src/commands/DeleteReportDefinitionCommand.ts b/clients/client-cost-and-usage-report-service/src/commands/DeleteReportDefinitionCommand.ts index e1521759db3cc..ed574faee2e42 100644 --- a/clients/client-cost-and-usage-report-service/src/commands/DeleteReportDefinitionCommand.ts +++ b/clients/client-cost-and-usage-report-service/src/commands/DeleteReportDefinitionCommand.ts @@ -66,18 +66,21 @@ export interface DeleteReportDefinitionCommandOutput extends DeleteReportDefinit * @throws {@link CostAndUsageReportServiceServiceException} *

Base exception class for all service exceptions from CostAndUsageReportService service.

* - * @public + * * @example To delete the AWS Cost and Usage report named ExampleReport. * ```javascript * // The following example deletes the AWS Cost and Usage report named ExampleReport. * const input = { - * "ReportName": "ExampleReport" + * ReportName: "ExampleReport" * }; * const command = new DeleteReportDefinitionCommand(input); - * await client.send(command); - * // example id: to-delete-a-report + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteReportDefinitionCommand extends $Command .classBuilder< diff --git a/clients/client-cost-and-usage-report-service/src/commands/DescribeReportDefinitionsCommand.ts b/clients/client-cost-and-usage-report-service/src/commands/DescribeReportDefinitionsCommand.ts index 2efa6e22024c2..b5eee153b6775 100644 --- a/clients/client-cost-and-usage-report-service/src/commands/DescribeReportDefinitionsCommand.ts +++ b/clients/client-cost-and-usage-report-service/src/commands/DescribeReportDefinitionsCommand.ts @@ -87,54 +87,54 @@ export interface DescribeReportDefinitionsCommandOutput extends DescribeReportDe * @throws {@link CostAndUsageReportServiceServiceException} *

Base exception class for all service exceptions from CostAndUsageReportService service.

* - * @public + * * @example To list the AWS Cost and Usage reports for the account. * ```javascript * // The following example lists the AWS Cost and Usage reports for the account. * const input = { - * "MaxResults": 5 + * MaxResults: 5 * }; * const command = new DescribeReportDefinitionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReportDefinitions": [ + * ReportDefinitions: [ * { - * "AdditionalArtifacts": [ + * AdditionalArtifacts: [ * "QUICKSIGHT" * ], - * "AdditionalSchemaElements": [ + * AdditionalSchemaElements: [ * "RESOURCES" * ], - * "Compression": "GZIP", - * "Format": "textORcsv", - * "ReportName": "ExampleReport", - * "S3Bucket": "example-s3-bucket", - * "S3Prefix": "exampleprefix", - * "S3Region": "us-east-1", - * "TimeUnit": "HOURLY" + * Compression: "GZIP", + * Format: "textORcsv", + * ReportName: "ExampleReport", + * S3Bucket: "example-s3-bucket", + * S3Prefix: "exampleprefix", + * S3Region: "us-east-1", + * TimeUnit: "HOURLY" * }, * { - * "AdditionalArtifacts": [ + * AdditionalArtifacts: [ * "QUICKSIGHT" * ], - * "AdditionalSchemaElements": [ + * AdditionalSchemaElements: [ * "RESOURCES" * ], - * "Compression": "GZIP", - * "Format": "textORcsv", - * "ReportName": "ExampleReport2", - * "S3Bucket": "example-s3-bucket", - * "S3Prefix": "exampleprefix", - * "S3Region": "us-east-1", - * "TimeUnit": "HOURLY" + * Compression: "GZIP", + * Format: "textORcsv", + * ReportName: "ExampleReport2", + * S3Bucket: "example-s3-bucket", + * S3Prefix: "exampleprefix", + * S3Region: "us-east-1", + * TimeUnit: "HOURLY" * } * ] * } * *\/ - * // example id: to-retrieve-report-definitions * ``` * + * @public */ export class DescribeReportDefinitionsCommand extends $Command .classBuilder< diff --git a/clients/client-cost-and-usage-report-service/src/commands/ListTagsForResourceCommand.ts b/clients/client-cost-and-usage-report-service/src/commands/ListTagsForResourceCommand.ts index 14155e77453a1..1389d9c03d48a 100644 --- a/clients/client-cost-and-usage-report-service/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cost-and-usage-report-service/src/commands/ListTagsForResourceCommand.ts @@ -73,6 +73,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CostAndUsageReportServiceServiceException} *

Base exception class for all service exceptions from CostAndUsageReportService service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-cost-and-usage-report-service/src/commands/ModifyReportDefinitionCommand.ts b/clients/client-cost-and-usage-report-service/src/commands/ModifyReportDefinitionCommand.ts index 107616504fd16..2ec29595d3020 100644 --- a/clients/client-cost-and-usage-report-service/src/commands/ModifyReportDefinitionCommand.ts +++ b/clients/client-cost-and-usage-report-service/src/commands/ModifyReportDefinitionCommand.ts @@ -85,6 +85,7 @@ export interface ModifyReportDefinitionCommandOutput extends ModifyReportDefinit * @throws {@link CostAndUsageReportServiceServiceException} *

Base exception class for all service exceptions from CostAndUsageReportService service.

* + * * @public */ export class ModifyReportDefinitionCommand extends $Command diff --git a/clients/client-cost-and-usage-report-service/src/commands/PutReportDefinitionCommand.ts b/clients/client-cost-and-usage-report-service/src/commands/PutReportDefinitionCommand.ts index b16ef0e0d329d..7f43f6b644301 100644 --- a/clients/client-cost-and-usage-report-service/src/commands/PutReportDefinitionCommand.ts +++ b/clients/client-cost-and-usage-report-service/src/commands/PutReportDefinitionCommand.ts @@ -99,33 +99,36 @@ export interface PutReportDefinitionCommandOutput extends PutReportDefinitionRes * @throws {@link CostAndUsageReportServiceServiceException} *

Base exception class for all service exceptions from CostAndUsageReportService service.

* - * @public + * * @example To create a report named ExampleReport. * ```javascript * // The following example creates a AWS Cost and Usage report named ExampleReport. * const input = { - * "ReportDefinition": { - * "AdditionalArtifacts": [ + * ReportDefinition: { + * AdditionalArtifacts: [ * "REDSHIFT", * "QUICKSIGHT" * ], - * "AdditionalSchemaElements": [ + * AdditionalSchemaElements: [ * "RESOURCES" * ], - * "Compression": "ZIP", - * "Format": "textORcsv", - * "ReportName": "ExampleReport", - * "S3Bucket": "example-s3-bucket", - * "S3Prefix": "exampleprefix", - * "S3Region": "us-east-1", - * "TimeUnit": "DAILY" + * Compression: "ZIP", + * Format: "textORcsv", + * ReportName: "ExampleReport", + * S3Bucket: "example-s3-bucket", + * S3Prefix: "exampleprefix", + * S3Region: "us-east-1", + * TimeUnit: "DAILY" * } * }; * const command = new PutReportDefinitionCommand(input); - * await client.send(command); - * // example id: to-create-a-report-definitions + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutReportDefinitionCommand extends $Command .classBuilder< diff --git a/clients/client-cost-and-usage-report-service/src/commands/TagResourceCommand.ts b/clients/client-cost-and-usage-report-service/src/commands/TagResourceCommand.ts index 804b63004653d..2402e9c3bdcee 100644 --- a/clients/client-cost-and-usage-report-service/src/commands/TagResourceCommand.ts +++ b/clients/client-cost-and-usage-report-service/src/commands/TagResourceCommand.ts @@ -72,6 +72,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link CostAndUsageReportServiceServiceException} *

Base exception class for all service exceptions from CostAndUsageReportService service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-cost-and-usage-report-service/src/commands/UntagResourceCommand.ts b/clients/client-cost-and-usage-report-service/src/commands/UntagResourceCommand.ts index a0f8d0ca64f42..f6ece987222c4 100644 --- a/clients/client-cost-and-usage-report-service/src/commands/UntagResourceCommand.ts +++ b/clients/client-cost-and-usage-report-service/src/commands/UntagResourceCommand.ts @@ -69,6 +69,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link CostAndUsageReportServiceServiceException} *

Base exception class for all service exceptions from CostAndUsageReportService service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/CreateAnomalyMonitorCommand.ts b/clients/client-cost-explorer/src/commands/CreateAnomalyMonitorCommand.ts index b9ca76eef9d0a..8f53030249f0a 100644 --- a/clients/client-cost-explorer/src/commands/CreateAnomalyMonitorCommand.ts +++ b/clients/client-cost-explorer/src/commands/CreateAnomalyMonitorCommand.ts @@ -141,6 +141,7 @@ export interface CreateAnomalyMonitorCommandOutput extends CreateAnomalyMonitorR * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class CreateAnomalyMonitorCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/CreateAnomalySubscriptionCommand.ts b/clients/client-cost-explorer/src/commands/CreateAnomalySubscriptionCommand.ts index 64bc622627b20..fbe73e3b0c9fa 100644 --- a/clients/client-cost-explorer/src/commands/CreateAnomalySubscriptionCommand.ts +++ b/clients/client-cost-explorer/src/commands/CreateAnomalySubscriptionCommand.ts @@ -152,6 +152,7 @@ export interface CreateAnomalySubscriptionCommandOutput extends CreateAnomalySub * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class CreateAnomalySubscriptionCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/CreateCostCategoryDefinitionCommand.ts b/clients/client-cost-explorer/src/commands/CreateCostCategoryDefinitionCommand.ts index ca26d41adf537..9494648ca39df 100644 --- a/clients/client-cost-explorer/src/commands/CreateCostCategoryDefinitionCommand.ts +++ b/clients/client-cost-explorer/src/commands/CreateCostCategoryDefinitionCommand.ts @@ -171,6 +171,7 @@ export interface CreateCostCategoryDefinitionCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class CreateCostCategoryDefinitionCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/DeleteAnomalyMonitorCommand.ts b/clients/client-cost-explorer/src/commands/DeleteAnomalyMonitorCommand.ts index e455b2531ae55..8d151fb1e21a6 100644 --- a/clients/client-cost-explorer/src/commands/DeleteAnomalyMonitorCommand.ts +++ b/clients/client-cost-explorer/src/commands/DeleteAnomalyMonitorCommand.ts @@ -59,6 +59,7 @@ export interface DeleteAnomalyMonitorCommandOutput extends DeleteAnomalyMonitorR * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class DeleteAnomalyMonitorCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/DeleteAnomalySubscriptionCommand.ts b/clients/client-cost-explorer/src/commands/DeleteAnomalySubscriptionCommand.ts index ecb1efaaa65c3..504379ab3ff64 100644 --- a/clients/client-cost-explorer/src/commands/DeleteAnomalySubscriptionCommand.ts +++ b/clients/client-cost-explorer/src/commands/DeleteAnomalySubscriptionCommand.ts @@ -59,6 +59,7 @@ export interface DeleteAnomalySubscriptionCommandOutput extends DeleteAnomalySub * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class DeleteAnomalySubscriptionCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/DeleteCostCategoryDefinitionCommand.ts b/clients/client-cost-explorer/src/commands/DeleteCostCategoryDefinitionCommand.ts index e93d2674cbd4a..82e37fc775f00 100644 --- a/clients/client-cost-explorer/src/commands/DeleteCostCategoryDefinitionCommand.ts +++ b/clients/client-cost-explorer/src/commands/DeleteCostCategoryDefinitionCommand.ts @@ -68,6 +68,7 @@ export interface DeleteCostCategoryDefinitionCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class DeleteCostCategoryDefinitionCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/DescribeCostCategoryDefinitionCommand.ts b/clients/client-cost-explorer/src/commands/DescribeCostCategoryDefinitionCommand.ts index 1a6d79e201fd3..99143118df6fb 100644 --- a/clients/client-cost-explorer/src/commands/DescribeCostCategoryDefinitionCommand.ts +++ b/clients/client-cost-explorer/src/commands/DescribeCostCategoryDefinitionCommand.ts @@ -179,6 +179,7 @@ export interface DescribeCostCategoryDefinitionCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class DescribeCostCategoryDefinitionCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetAnomaliesCommand.ts b/clients/client-cost-explorer/src/commands/GetAnomaliesCommand.ts index af6bcf74c22ed..693e38c359a7c 100644 --- a/clients/client-cost-explorer/src/commands/GetAnomaliesCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetAnomaliesCommand.ts @@ -108,6 +108,7 @@ export interface GetAnomaliesCommandOutput extends GetAnomaliesResponse, __Metad * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetAnomaliesCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetAnomalyMonitorsCommand.ts b/clients/client-cost-explorer/src/commands/GetAnomalyMonitorsCommand.ts index 1a3ee2a14ece4..3f30862be2981 100644 --- a/clients/client-cost-explorer/src/commands/GetAnomalyMonitorsCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetAnomalyMonitorsCommand.ts @@ -148,6 +148,7 @@ export interface GetAnomalyMonitorsCommandOutput extends GetAnomalyMonitorsRespo * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetAnomalyMonitorsCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetAnomalySubscriptionsCommand.ts b/clients/client-cost-explorer/src/commands/GetAnomalySubscriptionsCommand.ts index 3008f0a3389b0..aa72ffe3530c2 100644 --- a/clients/client-cost-explorer/src/commands/GetAnomalySubscriptionsCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetAnomalySubscriptionsCommand.ts @@ -156,6 +156,7 @@ export interface GetAnomalySubscriptionsCommandOutput extends GetAnomalySubscrip * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetAnomalySubscriptionsCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetApproximateUsageRecordsCommand.ts b/clients/client-cost-explorer/src/commands/GetApproximateUsageRecordsCommand.ts index 66c03ac27590f..a9f89783b0764 100644 --- a/clients/client-cost-explorer/src/commands/GetApproximateUsageRecordsCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetApproximateUsageRecordsCommand.ts @@ -73,6 +73,7 @@ export interface GetApproximateUsageRecordsCommandOutput extends GetApproximateU * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetApproximateUsageRecordsCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetCommitmentPurchaseAnalysisCommand.ts b/clients/client-cost-explorer/src/commands/GetCommitmentPurchaseAnalysisCommand.ts index 2ab007b74b485..833adeb52f2de 100644 --- a/clients/client-cost-explorer/src/commands/GetCommitmentPurchaseAnalysisCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetCommitmentPurchaseAnalysisCommand.ts @@ -134,6 +134,7 @@ export interface GetCommitmentPurchaseAnalysisCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetCommitmentPurchaseAnalysisCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetCostAndUsageCommand.ts b/clients/client-cost-explorer/src/commands/GetCostAndUsageCommand.ts index 6b64aa50d588e..3d8b3a59c6fa5 100644 --- a/clients/client-cost-explorer/src/commands/GetCostAndUsageCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetCostAndUsageCommand.ts @@ -204,6 +204,7 @@ export interface GetCostAndUsageCommandOutput extends GetCostAndUsageResponse, _ * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetCostAndUsageCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetCostAndUsageWithResourcesCommand.ts b/clients/client-cost-explorer/src/commands/GetCostAndUsageWithResourcesCommand.ts index 93a67550f4c56..d6dc52706031c 100644 --- a/clients/client-cost-explorer/src/commands/GetCostAndUsageWithResourcesCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetCostAndUsageWithResourcesCommand.ts @@ -216,6 +216,7 @@ export interface GetCostAndUsageWithResourcesCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetCostAndUsageWithResourcesCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetCostCategoriesCommand.ts b/clients/client-cost-explorer/src/commands/GetCostCategoriesCommand.ts index 36f70cea00434..87b7ec3904fc3 100644 --- a/clients/client-cost-explorer/src/commands/GetCostCategoriesCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetCostCategoriesCommand.ts @@ -167,6 +167,7 @@ export interface GetCostCategoriesCommandOutput extends GetCostCategoriesRespons * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetCostCategoriesCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetCostForecastCommand.ts b/clients/client-cost-explorer/src/commands/GetCostForecastCommand.ts index aee49934af663..cd4839dabfb49 100644 --- a/clients/client-cost-explorer/src/commands/GetCostForecastCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetCostForecastCommand.ts @@ -153,6 +153,7 @@ export interface GetCostForecastCommandOutput extends GetCostForecastResponse, _ * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetCostForecastCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetDimensionValuesCommand.ts b/clients/client-cost-explorer/src/commands/GetDimensionValuesCommand.ts index 1caa3e4d5acf1..c65989acc5797 100644 --- a/clients/client-cost-explorer/src/commands/GetDimensionValuesCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetDimensionValuesCommand.ts @@ -167,6 +167,7 @@ export interface GetDimensionValuesCommandOutput extends GetDimensionValuesRespo * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetDimensionValuesCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetReservationCoverageCommand.ts b/clients/client-cost-explorer/src/commands/GetReservationCoverageCommand.ts index 99adad1daa170..ed3ec07122dae 100644 --- a/clients/client-cost-explorer/src/commands/GetReservationCoverageCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetReservationCoverageCommand.ts @@ -245,6 +245,7 @@ export interface GetReservationCoverageCommandOutput extends GetReservationCover * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetReservationCoverageCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetReservationPurchaseRecommendationCommand.ts b/clients/client-cost-explorer/src/commands/GetReservationPurchaseRecommendationCommand.ts index ca48afb982228..27d88908595ca 100644 --- a/clients/client-cost-explorer/src/commands/GetReservationPurchaseRecommendationCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetReservationPurchaseRecommendationCommand.ts @@ -273,6 +273,7 @@ export interface GetReservationPurchaseRecommendationCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetReservationPurchaseRecommendationCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetReservationUtilizationCommand.ts b/clients/client-cost-explorer/src/commands/GetReservationUtilizationCommand.ts index b5b97d7471ebf..71542ce7bddd4 100644 --- a/clients/client-cost-explorer/src/commands/GetReservationUtilizationCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetReservationUtilizationCommand.ts @@ -206,6 +206,7 @@ export interface GetReservationUtilizationCommandOutput extends GetReservationUt * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetReservationUtilizationCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetRightsizingRecommendationCommand.ts b/clients/client-cost-explorer/src/commands/GetRightsizingRecommendationCommand.ts index 4667db30127c5..309f6f80fc1d0 100644 --- a/clients/client-cost-explorer/src/commands/GetRightsizingRecommendationCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetRightsizingRecommendationCommand.ts @@ -282,6 +282,7 @@ export interface GetRightsizingRecommendationCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetRightsizingRecommendationCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetSavingsPlanPurchaseRecommendationDetailsCommand.ts b/clients/client-cost-explorer/src/commands/GetSavingsPlanPurchaseRecommendationDetailsCommand.ts index 445372b6e49bc..4593896257079 100644 --- a/clients/client-cost-explorer/src/commands/GetSavingsPlanPurchaseRecommendationDetailsCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetSavingsPlanPurchaseRecommendationDetailsCommand.ts @@ -110,6 +110,7 @@ export interface GetSavingsPlanPurchaseRecommendationDetailsCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetSavingsPlanPurchaseRecommendationDetailsCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetSavingsPlansCoverageCommand.ts b/clients/client-cost-explorer/src/commands/GetSavingsPlansCoverageCommand.ts index 4028047320e41..f3d598c4ee36b 100644 --- a/clients/client-cost-explorer/src/commands/GetSavingsPlansCoverageCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetSavingsPlansCoverageCommand.ts @@ -195,6 +195,7 @@ export interface GetSavingsPlansCoverageCommandOutput extends GetSavingsPlansCov * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetSavingsPlansCoverageCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetSavingsPlansPurchaseRecommendationCommand.ts b/clients/client-cost-explorer/src/commands/GetSavingsPlansPurchaseRecommendationCommand.ts index 6f9cbb4f1c408..7f30a86df65ff 100644 --- a/clients/client-cost-explorer/src/commands/GetSavingsPlansPurchaseRecommendationCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetSavingsPlansPurchaseRecommendationCommand.ts @@ -196,6 +196,7 @@ export interface GetSavingsPlansPurchaseRecommendationCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetSavingsPlansPurchaseRecommendationCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationCommand.ts b/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationCommand.ts index 0bf9e0c342a3a..6ab46fe559edf 100644 --- a/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationCommand.ts @@ -182,6 +182,7 @@ export interface GetSavingsPlansUtilizationCommandOutput extends GetSavingsPlans * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetSavingsPlansUtilizationCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationDetailsCommand.ts b/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationDetailsCommand.ts index dfd74340b54e5..0a879825cb51d 100644 --- a/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationDetailsCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationDetailsCommand.ts @@ -206,6 +206,7 @@ export interface GetSavingsPlansUtilizationDetailsCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetSavingsPlansUtilizationDetailsCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetTagsCommand.ts b/clients/client-cost-explorer/src/commands/GetTagsCommand.ts index 51ab379383f1f..afef0e4491b2b 100644 --- a/clients/client-cost-explorer/src/commands/GetTagsCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetTagsCommand.ts @@ -161,6 +161,7 @@ export interface GetTagsCommandOutput extends GetTagsResponse, __MetadataBearer * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetTagsCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/GetUsageForecastCommand.ts b/clients/client-cost-explorer/src/commands/GetUsageForecastCommand.ts index dc2f7383eef2e..cb2a0748f5522 100644 --- a/clients/client-cost-explorer/src/commands/GetUsageForecastCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetUsageForecastCommand.ts @@ -158,6 +158,7 @@ export interface GetUsageForecastCommandOutput extends GetUsageForecastResponse, * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class GetUsageForecastCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/ListCommitmentPurchaseAnalysesCommand.ts b/clients/client-cost-explorer/src/commands/ListCommitmentPurchaseAnalysesCommand.ts index 01e6c34c046d6..af629be52d430 100644 --- a/clients/client-cost-explorer/src/commands/ListCommitmentPurchaseAnalysesCommand.ts +++ b/clients/client-cost-explorer/src/commands/ListCommitmentPurchaseAnalysesCommand.ts @@ -109,6 +109,7 @@ export interface ListCommitmentPurchaseAnalysesCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class ListCommitmentPurchaseAnalysesCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/ListCostAllocationTagBackfillHistoryCommand.ts b/clients/client-cost-explorer/src/commands/ListCostAllocationTagBackfillHistoryCommand.ts index 51b3c16a91135..d6ae275d998b7 100644 --- a/clients/client-cost-explorer/src/commands/ListCostAllocationTagBackfillHistoryCommand.ts +++ b/clients/client-cost-explorer/src/commands/ListCostAllocationTagBackfillHistoryCommand.ts @@ -81,6 +81,7 @@ export interface ListCostAllocationTagBackfillHistoryCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class ListCostAllocationTagBackfillHistoryCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/ListCostAllocationTagsCommand.ts b/clients/client-cost-explorer/src/commands/ListCostAllocationTagsCommand.ts index 341c8a71c310e..9c90cf2b668c9 100644 --- a/clients/client-cost-explorer/src/commands/ListCostAllocationTagsCommand.ts +++ b/clients/client-cost-explorer/src/commands/ListCostAllocationTagsCommand.ts @@ -77,6 +77,7 @@ export interface ListCostAllocationTagsCommandOutput extends ListCostAllocationT * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class ListCostAllocationTagsCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/ListCostCategoryDefinitionsCommand.ts b/clients/client-cost-explorer/src/commands/ListCostCategoryDefinitionsCommand.ts index 8cd4890ecc476..17e823f03d3de 100644 --- a/clients/client-cost-explorer/src/commands/ListCostCategoryDefinitionsCommand.ts +++ b/clients/client-cost-explorer/src/commands/ListCostCategoryDefinitionsCommand.ts @@ -87,6 +87,7 @@ export interface ListCostCategoryDefinitionsCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class ListCostCategoryDefinitionsCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/ListSavingsPlansPurchaseRecommendationGenerationCommand.ts b/clients/client-cost-explorer/src/commands/ListSavingsPlansPurchaseRecommendationGenerationCommand.ts index 3fd250ae50ab7..bf273d5c7162f 100644 --- a/clients/client-cost-explorer/src/commands/ListSavingsPlansPurchaseRecommendationGenerationCommand.ts +++ b/clients/client-cost-explorer/src/commands/ListSavingsPlansPurchaseRecommendationGenerationCommand.ts @@ -88,6 +88,7 @@ export interface ListSavingsPlansPurchaseRecommendationGenerationCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class ListSavingsPlansPurchaseRecommendationGenerationCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/ListTagsForResourceCommand.ts b/clients/client-cost-explorer/src/commands/ListTagsForResourceCommand.ts index 4dd62ef33e406..49e64bb6b2af2 100644 --- a/clients/client-cost-explorer/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cost-explorer/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/ProvideAnomalyFeedbackCommand.ts b/clients/client-cost-explorer/src/commands/ProvideAnomalyFeedbackCommand.ts index 086de990c2868..dfd4127088cf2 100644 --- a/clients/client-cost-explorer/src/commands/ProvideAnomalyFeedbackCommand.ts +++ b/clients/client-cost-explorer/src/commands/ProvideAnomalyFeedbackCommand.ts @@ -59,6 +59,7 @@ export interface ProvideAnomalyFeedbackCommandOutput extends ProvideAnomalyFeedb * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class ProvideAnomalyFeedbackCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/StartCommitmentPurchaseAnalysisCommand.ts b/clients/client-cost-explorer/src/commands/StartCommitmentPurchaseAnalysisCommand.ts index 833808d985385..a98edc27a3e73 100644 --- a/clients/client-cost-explorer/src/commands/StartCommitmentPurchaseAnalysisCommand.ts +++ b/clients/client-cost-explorer/src/commands/StartCommitmentPurchaseAnalysisCommand.ts @@ -101,6 +101,7 @@ export interface StartCommitmentPurchaseAnalysisCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class StartCommitmentPurchaseAnalysisCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/StartCostAllocationTagBackfillCommand.ts b/clients/client-cost-explorer/src/commands/StartCostAllocationTagBackfillCommand.ts index 57a24a90ac31d..198dfe00e327d 100644 --- a/clients/client-cost-explorer/src/commands/StartCostAllocationTagBackfillCommand.ts +++ b/clients/client-cost-explorer/src/commands/StartCostAllocationTagBackfillCommand.ts @@ -77,6 +77,7 @@ export interface StartCostAllocationTagBackfillCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class StartCostAllocationTagBackfillCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/StartSavingsPlansPurchaseRecommendationGenerationCommand.ts b/clients/client-cost-explorer/src/commands/StartSavingsPlansPurchaseRecommendationGenerationCommand.ts index f9df79cab492a..6aca03614628a 100644 --- a/clients/client-cost-explorer/src/commands/StartSavingsPlansPurchaseRecommendationGenerationCommand.ts +++ b/clients/client-cost-explorer/src/commands/StartSavingsPlansPurchaseRecommendationGenerationCommand.ts @@ -85,6 +85,7 @@ export interface StartSavingsPlansPurchaseRecommendationGenerationCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class StartSavingsPlansPurchaseRecommendationGenerationCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/TagResourceCommand.ts b/clients/client-cost-explorer/src/commands/TagResourceCommand.ts index 34e45cf9a0b0c..45e7be837699e 100644 --- a/clients/client-cost-explorer/src/commands/TagResourceCommand.ts +++ b/clients/client-cost-explorer/src/commands/TagResourceCommand.ts @@ -75,6 +75,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/UntagResourceCommand.ts b/clients/client-cost-explorer/src/commands/UntagResourceCommand.ts index 7d6f0e9e77e89..ffb74120d7551 100644 --- a/clients/client-cost-explorer/src/commands/UntagResourceCommand.ts +++ b/clients/client-cost-explorer/src/commands/UntagResourceCommand.ts @@ -63,6 +63,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/UpdateAnomalyMonitorCommand.ts b/clients/client-cost-explorer/src/commands/UpdateAnomalyMonitorCommand.ts index 64c770f2933bb..991b462e7a10a 100644 --- a/clients/client-cost-explorer/src/commands/UpdateAnomalyMonitorCommand.ts +++ b/clients/client-cost-explorer/src/commands/UpdateAnomalyMonitorCommand.ts @@ -63,6 +63,7 @@ export interface UpdateAnomalyMonitorCommandOutput extends UpdateAnomalyMonitorR * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class UpdateAnomalyMonitorCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/UpdateAnomalySubscriptionCommand.ts b/clients/client-cost-explorer/src/commands/UpdateAnomalySubscriptionCommand.ts index b34d9707d8ed0..e9bf9e7542c0e 100644 --- a/clients/client-cost-explorer/src/commands/UpdateAnomalySubscriptionCommand.ts +++ b/clients/client-cost-explorer/src/commands/UpdateAnomalySubscriptionCommand.ts @@ -149,6 +149,7 @@ export interface UpdateAnomalySubscriptionCommandOutput extends UpdateAnomalySub * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class UpdateAnomalySubscriptionCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/UpdateCostAllocationTagsStatusCommand.ts b/clients/client-cost-explorer/src/commands/UpdateCostAllocationTagsStatusCommand.ts index b7274cdfc13f9..1be170cb6fa60 100644 --- a/clients/client-cost-explorer/src/commands/UpdateCostAllocationTagsStatusCommand.ts +++ b/clients/client-cost-explorer/src/commands/UpdateCostAllocationTagsStatusCommand.ts @@ -77,6 +77,7 @@ export interface UpdateCostAllocationTagsStatusCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class UpdateCostAllocationTagsStatusCommand extends $Command diff --git a/clients/client-cost-explorer/src/commands/UpdateCostCategoryDefinitionCommand.ts b/clients/client-cost-explorer/src/commands/UpdateCostCategoryDefinitionCommand.ts index 6807be82a3481..dd74fb8f1869b 100644 --- a/clients/client-cost-explorer/src/commands/UpdateCostCategoryDefinitionCommand.ts +++ b/clients/client-cost-explorer/src/commands/UpdateCostCategoryDefinitionCommand.ts @@ -170,6 +170,7 @@ export interface UpdateCostCategoryDefinitionCommandOutput * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* + * * @public */ export class UpdateCostCategoryDefinitionCommand extends $Command diff --git a/clients/client-cost-optimization-hub/src/commands/GetPreferencesCommand.ts b/clients/client-cost-optimization-hub/src/commands/GetPreferencesCommand.ts index bb9392af800fa..4ead8c4637ed6 100644 --- a/clients/client-cost-optimization-hub/src/commands/GetPreferencesCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/GetPreferencesCommand.ts @@ -75,6 +75,7 @@ export interface GetPreferencesCommandOutput extends GetPreferencesResponse, __M * @throws {@link CostOptimizationHubServiceException} *

Base exception class for all service exceptions from CostOptimizationHub service.

* + * * @public */ export class GetPreferencesCommand extends $Command diff --git a/clients/client-cost-optimization-hub/src/commands/GetRecommendationCommand.ts b/clients/client-cost-optimization-hub/src/commands/GetRecommendationCommand.ts index 63198458c539c..ff531f4b66063 100644 --- a/clients/client-cost-optimization-hub/src/commands/GetRecommendationCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/GetRecommendationCommand.ts @@ -681,6 +681,7 @@ export interface GetRecommendationCommandOutput extends GetRecommendationRespons * @throws {@link CostOptimizationHubServiceException} *

Base exception class for all service exceptions from CostOptimizationHub service.

* + * * @public */ export class GetRecommendationCommand extends $Command diff --git a/clients/client-cost-optimization-hub/src/commands/ListEnrollmentStatusesCommand.ts b/clients/client-cost-optimization-hub/src/commands/ListEnrollmentStatusesCommand.ts index d04624a93965b..ab9bd4452eeb7 100644 --- a/clients/client-cost-optimization-hub/src/commands/ListEnrollmentStatusesCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/ListEnrollmentStatusesCommand.ts @@ -86,6 +86,7 @@ export interface ListEnrollmentStatusesCommandOutput extends ListEnrollmentStatu * @throws {@link CostOptimizationHubServiceException} *

Base exception class for all service exceptions from CostOptimizationHub service.

* + * * @public */ export class ListEnrollmentStatusesCommand extends $Command diff --git a/clients/client-cost-optimization-hub/src/commands/ListRecommendationSummariesCommand.ts b/clients/client-cost-optimization-hub/src/commands/ListRecommendationSummariesCommand.ts index 46f285a624511..3f1a98ceb446e 100644 --- a/clients/client-cost-optimization-hub/src/commands/ListRecommendationSummariesCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/ListRecommendationSummariesCommand.ts @@ -132,6 +132,7 @@ export interface ListRecommendationSummariesCommandOutput * @throws {@link CostOptimizationHubServiceException} *

Base exception class for all service exceptions from CostOptimizationHub service.

* + * * @public */ export class ListRecommendationSummariesCommand extends $Command diff --git a/clients/client-cost-optimization-hub/src/commands/ListRecommendationsCommand.ts b/clients/client-cost-optimization-hub/src/commands/ListRecommendationsCommand.ts index d7e41db21d0b5..fad92e5ebe27f 100644 --- a/clients/client-cost-optimization-hub/src/commands/ListRecommendationsCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/ListRecommendationsCommand.ts @@ -143,6 +143,7 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes * @throws {@link CostOptimizationHubServiceException} *

Base exception class for all service exceptions from CostOptimizationHub service.

* + * * @public */ export class ListRecommendationsCommand extends $Command diff --git a/clients/client-cost-optimization-hub/src/commands/UpdateEnrollmentStatusCommand.ts b/clients/client-cost-optimization-hub/src/commands/UpdateEnrollmentStatusCommand.ts index d2dbc0c3ecbeb..5939b9f268e61 100644 --- a/clients/client-cost-optimization-hub/src/commands/UpdateEnrollmentStatusCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/UpdateEnrollmentStatusCommand.ts @@ -80,6 +80,7 @@ export interface UpdateEnrollmentStatusCommandOutput extends UpdateEnrollmentSta * @throws {@link CostOptimizationHubServiceException} *

Base exception class for all service exceptions from CostOptimizationHub service.

* + * * @public */ export class UpdateEnrollmentStatusCommand extends $Command diff --git a/clients/client-cost-optimization-hub/src/commands/UpdatePreferencesCommand.ts b/clients/client-cost-optimization-hub/src/commands/UpdatePreferencesCommand.ts index d5c3abdd2a03f..1bdbb5114d36c 100644 --- a/clients/client-cost-optimization-hub/src/commands/UpdatePreferencesCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/UpdatePreferencesCommand.ts @@ -77,6 +77,7 @@ export interface UpdatePreferencesCommandOutput extends UpdatePreferencesRespons * @throws {@link CostOptimizationHubServiceException} *

Base exception class for all service exceptions from CostOptimizationHub service.

* + * * @public */ export class UpdatePreferencesCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/AddProfileKeyCommand.ts b/clients/client-customer-profiles/src/commands/AddProfileKeyCommand.ts index 0cb19382f88be..1c67bf8dbfa76 100644 --- a/clients/client-customer-profiles/src/commands/AddProfileKeyCommand.ts +++ b/clients/client-customer-profiles/src/commands/AddProfileKeyCommand.ts @@ -81,6 +81,7 @@ export interface AddProfileKeyCommandOutput extends AddProfileKeyResponse, __Met * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class AddProfileKeyCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/BatchGetCalculatedAttributeForProfileCommand.ts b/clients/client-customer-profiles/src/commands/BatchGetCalculatedAttributeForProfileCommand.ts index 5bf124a9168f7..ad4ca635f6ff2 100644 --- a/clients/client-customer-profiles/src/commands/BatchGetCalculatedAttributeForProfileCommand.ts +++ b/clients/client-customer-profiles/src/commands/BatchGetCalculatedAttributeForProfileCommand.ts @@ -114,6 +114,7 @@ export interface BatchGetCalculatedAttributeForProfileCommandOutput * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class BatchGetCalculatedAttributeForProfileCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/BatchGetProfileCommand.ts b/clients/client-customer-profiles/src/commands/BatchGetProfileCommand.ts index 6d9675abc8f49..9a10f92b405fc 100644 --- a/clients/client-customer-profiles/src/commands/BatchGetProfileCommand.ts +++ b/clients/client-customer-profiles/src/commands/BatchGetProfileCommand.ts @@ -165,6 +165,7 @@ export interface BatchGetProfileCommandOutput extends BatchGetProfileResponse, _ * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class BatchGetProfileCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/CreateCalculatedAttributeDefinitionCommand.ts b/clients/client-customer-profiles/src/commands/CreateCalculatedAttributeDefinitionCommand.ts index d6089aa2d1425..c1e6b9ba2e1d2 100644 --- a/clients/client-customer-profiles/src/commands/CreateCalculatedAttributeDefinitionCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateCalculatedAttributeDefinitionCommand.ts @@ -178,6 +178,7 @@ export interface CreateCalculatedAttributeDefinitionCommandOutput * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class CreateCalculatedAttributeDefinitionCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/CreateDomainCommand.ts b/clients/client-customer-profiles/src/commands/CreateDomainCommand.ts index 43cc601bb9624..717cba59f95c5 100644 --- a/clients/client-customer-profiles/src/commands/CreateDomainCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateDomainCommand.ts @@ -225,6 +225,7 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class CreateDomainCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/CreateEventStreamCommand.ts b/clients/client-customer-profiles/src/commands/CreateEventStreamCommand.ts index 0beaee6c3e4b0..e7f44cdd02055 100644 --- a/clients/client-customer-profiles/src/commands/CreateEventStreamCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateEventStreamCommand.ts @@ -81,6 +81,7 @@ export interface CreateEventStreamCommandOutput extends CreateEventStreamRespons * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class CreateEventStreamCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/CreateEventTriggerCommand.ts b/clients/client-customer-profiles/src/commands/CreateEventTriggerCommand.ts index 76a15bcd9119b..a26f5940997bb 100644 --- a/clients/client-customer-profiles/src/commands/CreateEventTriggerCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateEventTriggerCommand.ts @@ -153,6 +153,7 @@ export interface CreateEventTriggerCommandOutput extends CreateEventTriggerRespo * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class CreateEventTriggerCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/CreateIntegrationWorkflowCommand.ts b/clients/client-customer-profiles/src/commands/CreateIntegrationWorkflowCommand.ts index d85d9675a0c6a..d398356ca78fe 100644 --- a/clients/client-customer-profiles/src/commands/CreateIntegrationWorkflowCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateIntegrationWorkflowCommand.ts @@ -157,6 +157,7 @@ export interface CreateIntegrationWorkflowCommandOutput extends CreateIntegratio * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class CreateIntegrationWorkflowCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/CreateProfileCommand.ts b/clients/client-customer-profiles/src/commands/CreateProfileCommand.ts index 2287462f0b450..44704d071ebd3 100644 --- a/clients/client-customer-profiles/src/commands/CreateProfileCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateProfileCommand.ts @@ -145,6 +145,7 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class CreateProfileCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/CreateSegmentDefinitionCommand.ts b/clients/client-customer-profiles/src/commands/CreateSegmentDefinitionCommand.ts index 82bf7444b0220..a57a8e571ceea 100644 --- a/clients/client-customer-profiles/src/commands/CreateSegmentDefinitionCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateSegmentDefinitionCommand.ts @@ -210,6 +210,7 @@ export interface CreateSegmentDefinitionCommandOutput extends CreateSegmentDefin * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class CreateSegmentDefinitionCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/CreateSegmentEstimateCommand.ts b/clients/client-customer-profiles/src/commands/CreateSegmentEstimateCommand.ts index 6ac2be51e9186..0cc6b6815c765 100644 --- a/clients/client-customer-profiles/src/commands/CreateSegmentEstimateCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateSegmentEstimateCommand.ts @@ -198,6 +198,7 @@ export interface CreateSegmentEstimateCommandOutput extends CreateSegmentEstimat * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class CreateSegmentEstimateCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/CreateSegmentSnapshotCommand.ts b/clients/client-customer-profiles/src/commands/CreateSegmentSnapshotCommand.ts index 48eade6e2d403..bb7292ec1313b 100644 --- a/clients/client-customer-profiles/src/commands/CreateSegmentSnapshotCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateSegmentSnapshotCommand.ts @@ -75,6 +75,7 @@ export interface CreateSegmentSnapshotCommandOutput extends CreateSegmentSnapsho * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class CreateSegmentSnapshotCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/DeleteCalculatedAttributeDefinitionCommand.ts b/clients/client-customer-profiles/src/commands/DeleteCalculatedAttributeDefinitionCommand.ts index ce7e92d1238a3..352b1bf4d7cb4 100644 --- a/clients/client-customer-profiles/src/commands/DeleteCalculatedAttributeDefinitionCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteCalculatedAttributeDefinitionCommand.ts @@ -80,6 +80,7 @@ export interface DeleteCalculatedAttributeDefinitionCommandOutput * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class DeleteCalculatedAttributeDefinitionCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/DeleteDomainCommand.ts b/clients/client-customer-profiles/src/commands/DeleteDomainCommand.ts index 429be38619576..106fd8c196f0e 100644 --- a/clients/client-customer-profiles/src/commands/DeleteDomainCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteDomainCommand.ts @@ -71,6 +71,7 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __Metad * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class DeleteDomainCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/DeleteEventStreamCommand.ts b/clients/client-customer-profiles/src/commands/DeleteEventStreamCommand.ts index 7fc0df279fe96..5f7915f6673ac 100644 --- a/clients/client-customer-profiles/src/commands/DeleteEventStreamCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteEventStreamCommand.ts @@ -69,6 +69,7 @@ export interface DeleteEventStreamCommandOutput extends DeleteEventStreamRespons * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class DeleteEventStreamCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/DeleteEventTriggerCommand.ts b/clients/client-customer-profiles/src/commands/DeleteEventTriggerCommand.ts index e805515338730..1132573c8be78 100644 --- a/clients/client-customer-profiles/src/commands/DeleteEventTriggerCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteEventTriggerCommand.ts @@ -74,6 +74,7 @@ export interface DeleteEventTriggerCommandOutput extends DeleteEventTriggerRespo * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class DeleteEventTriggerCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/DeleteIntegrationCommand.ts b/clients/client-customer-profiles/src/commands/DeleteIntegrationCommand.ts index e3757696dec11..05f36414bcb8a 100644 --- a/clients/client-customer-profiles/src/commands/DeleteIntegrationCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteIntegrationCommand.ts @@ -71,6 +71,7 @@ export interface DeleteIntegrationCommandOutput extends DeleteIntegrationRespons * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class DeleteIntegrationCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/DeleteProfileCommand.ts b/clients/client-customer-profiles/src/commands/DeleteProfileCommand.ts index d2ef2fcc7a379..0314041bd0337 100644 --- a/clients/client-customer-profiles/src/commands/DeleteProfileCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteProfileCommand.ts @@ -71,6 +71,7 @@ export interface DeleteProfileCommandOutput extends DeleteProfileResponse, __Met * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class DeleteProfileCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/DeleteProfileKeyCommand.ts b/clients/client-customer-profiles/src/commands/DeleteProfileKeyCommand.ts index a5ea5a53eef5c..71c20aea21951 100644 --- a/clients/client-customer-profiles/src/commands/DeleteProfileKeyCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteProfileKeyCommand.ts @@ -75,6 +75,7 @@ export interface DeleteProfileKeyCommandOutput extends DeleteProfileKeyResponse, * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class DeleteProfileKeyCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/DeleteProfileObjectCommand.ts b/clients/client-customer-profiles/src/commands/DeleteProfileObjectCommand.ts index a359ff578d8da..38990acb53e05 100644 --- a/clients/client-customer-profiles/src/commands/DeleteProfileObjectCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteProfileObjectCommand.ts @@ -73,6 +73,7 @@ export interface DeleteProfileObjectCommandOutput extends DeleteProfileObjectRes * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class DeleteProfileObjectCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/DeleteProfileObjectTypeCommand.ts b/clients/client-customer-profiles/src/commands/DeleteProfileObjectTypeCommand.ts index d78a91a9ac91a..12ae8b43df605 100644 --- a/clients/client-customer-profiles/src/commands/DeleteProfileObjectTypeCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteProfileObjectTypeCommand.ts @@ -74,6 +74,7 @@ export interface DeleteProfileObjectTypeCommandOutput extends DeleteProfileObjec * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class DeleteProfileObjectTypeCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/DeleteSegmentDefinitionCommand.ts b/clients/client-customer-profiles/src/commands/DeleteSegmentDefinitionCommand.ts index 2fa1074ec6c79..bd7445b57b8cb 100644 --- a/clients/client-customer-profiles/src/commands/DeleteSegmentDefinitionCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteSegmentDefinitionCommand.ts @@ -71,6 +71,7 @@ export interface DeleteSegmentDefinitionCommandOutput extends DeleteSegmentDefin * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class DeleteSegmentDefinitionCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/DeleteWorkflowCommand.ts b/clients/client-customer-profiles/src/commands/DeleteWorkflowCommand.ts index 7c31c70e1ab54..f43cd00aa9f0f 100644 --- a/clients/client-customer-profiles/src/commands/DeleteWorkflowCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteWorkflowCommand.ts @@ -70,6 +70,7 @@ export interface DeleteWorkflowCommandOutput extends DeleteWorkflowResponse, __M * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class DeleteWorkflowCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/DetectProfileObjectTypeCommand.ts b/clients/client-customer-profiles/src/commands/DetectProfileObjectTypeCommand.ts index e10bf712ffdab..24da17d142abc 100644 --- a/clients/client-customer-profiles/src/commands/DetectProfileObjectTypeCommand.ts +++ b/clients/client-customer-profiles/src/commands/DetectProfileObjectTypeCommand.ts @@ -101,6 +101,7 @@ export interface DetectProfileObjectTypeCommandOutput extends DetectProfileObjec * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class DetectProfileObjectTypeCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetAutoMergingPreviewCommand.ts b/clients/client-customer-profiles/src/commands/GetAutoMergingPreviewCommand.ts index d5f4b76d931c0..f68b679f177ee 100644 --- a/clients/client-customer-profiles/src/commands/GetAutoMergingPreviewCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetAutoMergingPreviewCommand.ts @@ -97,6 +97,7 @@ export interface GetAutoMergingPreviewCommandOutput extends GetAutoMergingPrevie * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetAutoMergingPreviewCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetCalculatedAttributeDefinitionCommand.ts b/clients/client-customer-profiles/src/commands/GetCalculatedAttributeDefinitionCommand.ts index 93b19bd8b8e71..80da993ee7690 100644 --- a/clients/client-customer-profiles/src/commands/GetCalculatedAttributeDefinitionCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetCalculatedAttributeDefinitionCommand.ts @@ -128,6 +128,7 @@ export interface GetCalculatedAttributeDefinitionCommandOutput * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetCalculatedAttributeDefinitionCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetCalculatedAttributeForProfileCommand.ts b/clients/client-customer-profiles/src/commands/GetCalculatedAttributeForProfileCommand.ts index 0aef3644e137c..c96d56b7efa6f 100644 --- a/clients/client-customer-profiles/src/commands/GetCalculatedAttributeForProfileCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetCalculatedAttributeForProfileCommand.ts @@ -80,6 +80,7 @@ export interface GetCalculatedAttributeForProfileCommandOutput * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetCalculatedAttributeForProfileCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetDomainCommand.ts b/clients/client-customer-profiles/src/commands/GetDomainCommand.ts index 5253f45979895..492e16ab2f5f4 100644 --- a/clients/client-customer-profiles/src/commands/GetDomainCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetDomainCommand.ts @@ -147,6 +147,7 @@ export interface GetDomainCommandOutput extends GetDomainResponse, __MetadataBea * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetDomainCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetEventStreamCommand.ts b/clients/client-customer-profiles/src/commands/GetEventStreamCommand.ts index 7085cc3bb195c..a25b43fc2355d 100644 --- a/clients/client-customer-profiles/src/commands/GetEventStreamCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetEventStreamCommand.ts @@ -84,6 +84,7 @@ export interface GetEventStreamCommandOutput extends GetEventStreamResponse, __M * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetEventStreamCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetEventTriggerCommand.ts b/clients/client-customer-profiles/src/commands/GetEventTriggerCommand.ts index 640841e52fd2c..7ac9f2b5a5b11 100644 --- a/clients/client-customer-profiles/src/commands/GetEventTriggerCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetEventTriggerCommand.ts @@ -113,6 +113,7 @@ export interface GetEventTriggerCommandOutput extends GetEventTriggerResponse, _ * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetEventTriggerCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetIdentityResolutionJobCommand.ts b/clients/client-customer-profiles/src/commands/GetIdentityResolutionJobCommand.ts index 476f3bb5b0caf..1bb3c1be0ca74 100644 --- a/clients/client-customer-profiles/src/commands/GetIdentityResolutionJobCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetIdentityResolutionJobCommand.ts @@ -106,6 +106,7 @@ export interface GetIdentityResolutionJobCommandOutput extends GetIdentityResolu * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetIdentityResolutionJobCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetIntegrationCommand.ts b/clients/client-customer-profiles/src/commands/GetIntegrationCommand.ts index e4a21544df2ec..2fe110d08cbd1 100644 --- a/clients/client-customer-profiles/src/commands/GetIntegrationCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetIntegrationCommand.ts @@ -87,6 +87,7 @@ export interface GetIntegrationCommandOutput extends GetIntegrationResponse, __M * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetIntegrationCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetMatchesCommand.ts b/clients/client-customer-profiles/src/commands/GetMatchesCommand.ts index e730391c163a0..00f475ce9e75f 100644 --- a/clients/client-customer-profiles/src/commands/GetMatchesCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetMatchesCommand.ts @@ -127,6 +127,7 @@ export interface GetMatchesCommandOutput extends GetMatchesResponse, __MetadataB * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetMatchesCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetProfileObjectTypeCommand.ts b/clients/client-customer-profiles/src/commands/GetProfileObjectTypeCommand.ts index e82f1893e1fd4..7400f0097e19c 100644 --- a/clients/client-customer-profiles/src/commands/GetProfileObjectTypeCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetProfileObjectTypeCommand.ts @@ -107,6 +107,7 @@ export interface GetProfileObjectTypeCommandOutput extends GetProfileObjectTypeR * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetProfileObjectTypeCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetProfileObjectTypeTemplateCommand.ts b/clients/client-customer-profiles/src/commands/GetProfileObjectTypeTemplateCommand.ts index 4fbb574516899..3348d74fcd3a6 100644 --- a/clients/client-customer-profiles/src/commands/GetProfileObjectTypeTemplateCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetProfileObjectTypeTemplateCommand.ts @@ -106,6 +106,7 @@ export interface GetProfileObjectTypeTemplateCommandOutput * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetProfileObjectTypeTemplateCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetSegmentDefinitionCommand.ts b/clients/client-customer-profiles/src/commands/GetSegmentDefinitionCommand.ts index a07823c429551..b4fcd08dc7b60 100644 --- a/clients/client-customer-profiles/src/commands/GetSegmentDefinitionCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetSegmentDefinitionCommand.ts @@ -204,6 +204,7 @@ export interface GetSegmentDefinitionCommandOutput extends GetSegmentDefinitionR * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetSegmentDefinitionCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetSegmentEstimateCommand.ts b/clients/client-customer-profiles/src/commands/GetSegmentEstimateCommand.ts index 796e453a9e8fa..14ba69bec868b 100644 --- a/clients/client-customer-profiles/src/commands/GetSegmentEstimateCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetSegmentEstimateCommand.ts @@ -76,6 +76,7 @@ export interface GetSegmentEstimateCommandOutput extends GetSegmentEstimateRespo * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetSegmentEstimateCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetSegmentMembershipCommand.ts b/clients/client-customer-profiles/src/commands/GetSegmentMembershipCommand.ts index 30c50f8cd504f..292252ee4eb0d 100644 --- a/clients/client-customer-profiles/src/commands/GetSegmentMembershipCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetSegmentMembershipCommand.ts @@ -171,6 +171,7 @@ export interface GetSegmentMembershipCommandOutput extends GetSegmentMembershipR * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetSegmentMembershipCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetSegmentSnapshotCommand.ts b/clients/client-customer-profiles/src/commands/GetSegmentSnapshotCommand.ts index 9a4cdf8357bf9..b85c0517d0cd8 100644 --- a/clients/client-customer-profiles/src/commands/GetSegmentSnapshotCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetSegmentSnapshotCommand.ts @@ -78,6 +78,7 @@ export interface GetSegmentSnapshotCommandOutput extends GetSegmentSnapshotRespo * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetSegmentSnapshotCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetSimilarProfilesCommand.ts b/clients/client-customer-profiles/src/commands/GetSimilarProfilesCommand.ts index bb9179cca0d98..bfd2377e5304f 100644 --- a/clients/client-customer-profiles/src/commands/GetSimilarProfilesCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetSimilarProfilesCommand.ts @@ -85,6 +85,7 @@ export interface GetSimilarProfilesCommandOutput extends GetSimilarProfilesRespo * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetSimilarProfilesCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetWorkflowCommand.ts b/clients/client-customer-profiles/src/commands/GetWorkflowCommand.ts index bc6e46fc55ae4..f41645f6fc4ff 100644 --- a/clients/client-customer-profiles/src/commands/GetWorkflowCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetWorkflowCommand.ts @@ -90,6 +90,7 @@ export interface GetWorkflowCommandOutput extends GetWorkflowResponse, __Metadat * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetWorkflowCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/GetWorkflowStepsCommand.ts b/clients/client-customer-profiles/src/commands/GetWorkflowStepsCommand.ts index 37f630f1fb0cf..82cce011019ee 100644 --- a/clients/client-customer-profiles/src/commands/GetWorkflowStepsCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetWorkflowStepsCommand.ts @@ -89,6 +89,7 @@ export interface GetWorkflowStepsCommandOutput extends GetWorkflowStepsResponse, * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class GetWorkflowStepsCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListAccountIntegrationsCommand.ts b/clients/client-customer-profiles/src/commands/ListAccountIntegrationsCommand.ts index 48090a78e2cca..9e709155f31ee 100644 --- a/clients/client-customer-profiles/src/commands/ListAccountIntegrationsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListAccountIntegrationsCommand.ts @@ -94,6 +94,7 @@ export interface ListAccountIntegrationsCommandOutput extends ListAccountIntegra * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListAccountIntegrationsCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListCalculatedAttributeDefinitionsCommand.ts b/clients/client-customer-profiles/src/commands/ListCalculatedAttributeDefinitionsCommand.ts index 66a167ba1ca78..66be0494121ae 100644 --- a/clients/client-customer-profiles/src/commands/ListCalculatedAttributeDefinitionsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListCalculatedAttributeDefinitionsCommand.ts @@ -93,6 +93,7 @@ export interface ListCalculatedAttributeDefinitionsCommandOutput * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListCalculatedAttributeDefinitionsCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListCalculatedAttributesForProfileCommand.ts b/clients/client-customer-profiles/src/commands/ListCalculatedAttributesForProfileCommand.ts index c26194adf337a..37fd770ac761b 100644 --- a/clients/client-customer-profiles/src/commands/ListCalculatedAttributesForProfileCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListCalculatedAttributesForProfileCommand.ts @@ -89,6 +89,7 @@ export interface ListCalculatedAttributesForProfileCommandOutput * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListCalculatedAttributesForProfileCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListDomainsCommand.ts b/clients/client-customer-profiles/src/commands/ListDomainsCommand.ts index c985c90c99a4f..bcf4921a06d5c 100644 --- a/clients/client-customer-profiles/src/commands/ListDomainsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListDomainsCommand.ts @@ -81,6 +81,7 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListDomainsCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListEventStreamsCommand.ts b/clients/client-customer-profiles/src/commands/ListEventStreamsCommand.ts index 88707946fe416..9f403322a4131 100644 --- a/clients/client-customer-profiles/src/commands/ListEventStreamsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListEventStreamsCommand.ts @@ -89,6 +89,7 @@ export interface ListEventStreamsCommandOutput extends ListEventStreamsResponse, * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListEventStreamsCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListEventTriggersCommand.ts b/clients/client-customer-profiles/src/commands/ListEventTriggersCommand.ts index bca6a814938ef..3d1323290b2ec 100644 --- a/clients/client-customer-profiles/src/commands/ListEventTriggersCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListEventTriggersCommand.ts @@ -88,6 +88,7 @@ export interface ListEventTriggersCommandOutput extends ListEventTriggersRespons * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListEventTriggersCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListIdentityResolutionJobsCommand.ts b/clients/client-customer-profiles/src/commands/ListIdentityResolutionJobsCommand.ts index bbae71c6a9114..e28c6c48273ad 100644 --- a/clients/client-customer-profiles/src/commands/ListIdentityResolutionJobsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListIdentityResolutionJobsCommand.ts @@ -94,6 +94,7 @@ export interface ListIdentityResolutionJobsCommandOutput extends ListIdentityRes * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListIdentityResolutionJobsCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListIntegrationsCommand.ts b/clients/client-customer-profiles/src/commands/ListIntegrationsCommand.ts index 6ac4ca6913b3b..c72b0f8dd5275 100644 --- a/clients/client-customer-profiles/src/commands/ListIntegrationsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListIntegrationsCommand.ts @@ -94,6 +94,7 @@ export interface ListIntegrationsCommandOutput extends ListIntegrationsResponse, * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListIntegrationsCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListObjectTypeAttributesCommand.ts b/clients/client-customer-profiles/src/commands/ListObjectTypeAttributesCommand.ts index 75682db8d0786..68e355ca0033d 100644 --- a/clients/client-customer-profiles/src/commands/ListObjectTypeAttributesCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListObjectTypeAttributesCommand.ts @@ -79,6 +79,7 @@ export interface ListObjectTypeAttributesCommandOutput extends ListObjectTypeAtt * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListObjectTypeAttributesCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListProfileAttributeValuesCommand.ts b/clients/client-customer-profiles/src/commands/ListProfileAttributeValuesCommand.ts index ebbef3d892a57..914ff0d3571a7 100644 --- a/clients/client-customer-profiles/src/commands/ListProfileAttributeValuesCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListProfileAttributeValuesCommand.ts @@ -78,6 +78,7 @@ export interface ListProfileAttributeValuesCommandOutput extends ProfileAttribut * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListProfileAttributeValuesCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListProfileObjectTypeTemplatesCommand.ts b/clients/client-customer-profiles/src/commands/ListProfileObjectTypeTemplatesCommand.ts index 590b8e3aff9ac..cf5932431d8a3 100644 --- a/clients/client-customer-profiles/src/commands/ListProfileObjectTypeTemplatesCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListProfileObjectTypeTemplatesCommand.ts @@ -83,6 +83,7 @@ export interface ListProfileObjectTypeTemplatesCommandOutput * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListProfileObjectTypeTemplatesCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListProfileObjectTypesCommand.ts b/clients/client-customer-profiles/src/commands/ListProfileObjectTypesCommand.ts index 744f24e87cac0..7086ccf39d9ad 100644 --- a/clients/client-customer-profiles/src/commands/ListProfileObjectTypesCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListProfileObjectTypesCommand.ts @@ -89,6 +89,7 @@ export interface ListProfileObjectTypesCommandOutput extends ListProfileObjectTy * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListProfileObjectTypesCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListProfileObjectsCommand.ts b/clients/client-customer-profiles/src/commands/ListProfileObjectsCommand.ts index 4d9874c0eefa5..f7293584ac32e 100644 --- a/clients/client-customer-profiles/src/commands/ListProfileObjectsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListProfileObjectsCommand.ts @@ -91,6 +91,7 @@ export interface ListProfileObjectsCommandOutput extends ListProfileObjectsRespo * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListProfileObjectsCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListRuleBasedMatchesCommand.ts b/clients/client-customer-profiles/src/commands/ListRuleBasedMatchesCommand.ts index 0ecf20a4ca700..cf4f7e564fb02 100644 --- a/clients/client-customer-profiles/src/commands/ListRuleBasedMatchesCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListRuleBasedMatchesCommand.ts @@ -75,6 +75,7 @@ export interface ListRuleBasedMatchesCommandOutput extends ListRuleBasedMatchesR * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListRuleBasedMatchesCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListSegmentDefinitionsCommand.ts b/clients/client-customer-profiles/src/commands/ListSegmentDefinitionsCommand.ts index 75134b34106bc..f7b15bf9d4645 100644 --- a/clients/client-customer-profiles/src/commands/ListSegmentDefinitionsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListSegmentDefinitionsCommand.ts @@ -88,6 +88,7 @@ export interface ListSegmentDefinitionsCommandOutput extends ListSegmentDefiniti * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListSegmentDefinitionsCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListTagsForResourceCommand.ts b/clients/client-customer-profiles/src/commands/ListTagsForResourceCommand.ts index 7acb7a488d723..ed3719a3230e6 100644 --- a/clients/client-customer-profiles/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/ListWorkflowsCommand.ts b/clients/client-customer-profiles/src/commands/ListWorkflowsCommand.ts index 36da71d3f60d1..b03ae77f31aff 100644 --- a/clients/client-customer-profiles/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListWorkflowsCommand.ts @@ -86,6 +86,7 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class ListWorkflowsCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/MergeProfilesCommand.ts b/clients/client-customer-profiles/src/commands/MergeProfilesCommand.ts index ddcfa5e43449e..42fe3c265eb82 100644 --- a/clients/client-customer-profiles/src/commands/MergeProfilesCommand.ts +++ b/clients/client-customer-profiles/src/commands/MergeProfilesCommand.ts @@ -138,6 +138,7 @@ export interface MergeProfilesCommandOutput extends MergeProfilesResponse, __Met * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class MergeProfilesCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/PutIntegrationCommand.ts b/clients/client-customer-profiles/src/commands/PutIntegrationCommand.ts index b24c4967eed40..e8494ff3c1d4d 100644 --- a/clients/client-customer-profiles/src/commands/PutIntegrationCommand.ts +++ b/clients/client-customer-profiles/src/commands/PutIntegrationCommand.ts @@ -172,6 +172,7 @@ export interface PutIntegrationCommandOutput extends PutIntegrationResponse, __M * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class PutIntegrationCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/PutProfileObjectCommand.ts b/clients/client-customer-profiles/src/commands/PutProfileObjectCommand.ts index aa464e9325a2c..a652490a5d3cf 100644 --- a/clients/client-customer-profiles/src/commands/PutProfileObjectCommand.ts +++ b/clients/client-customer-profiles/src/commands/PutProfileObjectCommand.ts @@ -85,6 +85,7 @@ export interface PutProfileObjectCommandOutput extends PutProfileObjectResponse, * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class PutProfileObjectCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/PutProfileObjectTypeCommand.ts b/clients/client-customer-profiles/src/commands/PutProfileObjectTypeCommand.ts index ee7d1b786e45f..b463cddd913f8 100644 --- a/clients/client-customer-profiles/src/commands/PutProfileObjectTypeCommand.ts +++ b/clients/client-customer-profiles/src/commands/PutProfileObjectTypeCommand.ts @@ -139,6 +139,7 @@ export interface PutProfileObjectTypeCommandOutput extends PutProfileObjectTypeR * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class PutProfileObjectTypeCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/SearchProfilesCommand.ts b/clients/client-customer-profiles/src/commands/SearchProfilesCommand.ts index af859fba2a693..96b6ed17c9000 100644 --- a/clients/client-customer-profiles/src/commands/SearchProfilesCommand.ts +++ b/clients/client-customer-profiles/src/commands/SearchProfilesCommand.ts @@ -176,6 +176,7 @@ export interface SearchProfilesCommandOutput extends SearchProfilesResponse, __M * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class SearchProfilesCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/TagResourceCommand.ts b/clients/client-customer-profiles/src/commands/TagResourceCommand.ts index 69553281e94e6..b4d579683692f 100644 --- a/clients/client-customer-profiles/src/commands/TagResourceCommand.ts +++ b/clients/client-customer-profiles/src/commands/TagResourceCommand.ts @@ -76,6 +76,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/UntagResourceCommand.ts b/clients/client-customer-profiles/src/commands/UntagResourceCommand.ts index 92dbee74941bb..afb527293368b 100644 --- a/clients/client-customer-profiles/src/commands/UntagResourceCommand.ts +++ b/clients/client-customer-profiles/src/commands/UntagResourceCommand.ts @@ -66,6 +66,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/UpdateCalculatedAttributeDefinitionCommand.ts b/clients/client-customer-profiles/src/commands/UpdateCalculatedAttributeDefinitionCommand.ts index efcf32a4ae29b..a55748fa1fa80 100644 --- a/clients/client-customer-profiles/src/commands/UpdateCalculatedAttributeDefinitionCommand.ts +++ b/clients/client-customer-profiles/src/commands/UpdateCalculatedAttributeDefinitionCommand.ts @@ -123,6 +123,7 @@ export interface UpdateCalculatedAttributeDefinitionCommandOutput * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class UpdateCalculatedAttributeDefinitionCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/UpdateDomainCommand.ts b/clients/client-customer-profiles/src/commands/UpdateDomainCommand.ts index ed4b2a0878552..0981745dc6d6e 100644 --- a/clients/client-customer-profiles/src/commands/UpdateDomainCommand.ts +++ b/clients/client-customer-profiles/src/commands/UpdateDomainCommand.ts @@ -217,6 +217,7 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class UpdateDomainCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/UpdateEventTriggerCommand.ts b/clients/client-customer-profiles/src/commands/UpdateEventTriggerCommand.ts index ad7c126c30350..de49ceae3e061 100644 --- a/clients/client-customer-profiles/src/commands/UpdateEventTriggerCommand.ts +++ b/clients/client-customer-profiles/src/commands/UpdateEventTriggerCommand.ts @@ -147,6 +147,7 @@ export interface UpdateEventTriggerCommandOutput extends UpdateEventTriggerRespo * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class UpdateEventTriggerCommand extends $Command diff --git a/clients/client-customer-profiles/src/commands/UpdateProfileCommand.ts b/clients/client-customer-profiles/src/commands/UpdateProfileCommand.ts index b5515614708fb..cac3a25b65d92 100644 --- a/clients/client-customer-profiles/src/commands/UpdateProfileCommand.ts +++ b/clients/client-customer-profiles/src/commands/UpdateProfileCommand.ts @@ -148,6 +148,7 @@ export interface UpdateProfileCommandOutput extends UpdateProfileResponse, __Met * @throws {@link CustomerProfilesServiceException} *

Base exception class for all service exceptions from CustomerProfiles service.

* + * * @public */ export class UpdateProfileCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/ActivatePipelineCommand.ts b/clients/client-data-pipeline/src/commands/ActivatePipelineCommand.ts index b12c0012a3fc3..68ce191a140a3 100644 --- a/clients/client-data-pipeline/src/commands/ActivatePipelineCommand.ts +++ b/clients/client-data-pipeline/src/commands/ActivatePipelineCommand.ts @@ -102,6 +102,7 @@ export interface ActivatePipelineCommandOutput extends ActivatePipelineOutput, _ * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class ActivatePipelineCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/AddTagsCommand.ts b/clients/client-data-pipeline/src/commands/AddTagsCommand.ts index c735480fc4cdf..249bfab38d5cf 100644 --- a/clients/client-data-pipeline/src/commands/AddTagsCommand.ts +++ b/clients/client-data-pipeline/src/commands/AddTagsCommand.ts @@ -71,6 +71,7 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {} * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class AddTagsCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/CreatePipelineCommand.ts b/clients/client-data-pipeline/src/commands/CreatePipelineCommand.ts index 5f777177c5f0e..0e473f5eb1f89 100644 --- a/clients/client-data-pipeline/src/commands/CreatePipelineCommand.ts +++ b/clients/client-data-pipeline/src/commands/CreatePipelineCommand.ts @@ -99,6 +99,7 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class CreatePipelineCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/DeactivatePipelineCommand.ts b/clients/client-data-pipeline/src/commands/DeactivatePipelineCommand.ts index eb40789f920a3..da66783c2d0c0 100644 --- a/clients/client-data-pipeline/src/commands/DeactivatePipelineCommand.ts +++ b/clients/client-data-pipeline/src/commands/DeactivatePipelineCommand.ts @@ -69,6 +69,7 @@ export interface DeactivatePipelineCommandOutput extends DeactivatePipelineOutpu * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class DeactivatePipelineCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/DeletePipelineCommand.ts b/clients/client-data-pipeline/src/commands/DeletePipelineCommand.ts index 6c6daaee1427a..c0b65a9590b6e 100644 --- a/clients/client-data-pipeline/src/commands/DeletePipelineCommand.ts +++ b/clients/client-data-pipeline/src/commands/DeletePipelineCommand.ts @@ -93,6 +93,7 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {} * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class DeletePipelineCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/DescribeObjectsCommand.ts b/clients/client-data-pipeline/src/commands/DescribeObjectsCommand.ts index 2a17d9c3ce7e8..65f8856383b48 100644 --- a/clients/client-data-pipeline/src/commands/DescribeObjectsCommand.ts +++ b/clients/client-data-pipeline/src/commands/DescribeObjectsCommand.ts @@ -144,6 +144,7 @@ export interface DescribeObjectsCommandOutput extends DescribeObjectsOutput, __M * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class DescribeObjectsCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/DescribePipelinesCommand.ts b/clients/client-data-pipeline/src/commands/DescribePipelinesCommand.ts index 0bbc0e19123b9..4a7c0b669c366 100644 --- a/clients/client-data-pipeline/src/commands/DescribePipelinesCommand.ts +++ b/clients/client-data-pipeline/src/commands/DescribePipelinesCommand.ts @@ -149,6 +149,7 @@ export interface DescribePipelinesCommandOutput extends DescribePipelinesOutput, * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class DescribePipelinesCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/EvaluateExpressionCommand.ts b/clients/client-data-pipeline/src/commands/EvaluateExpressionCommand.ts index 079d6cb7d50b3..ffc0f1345a23d 100644 --- a/clients/client-data-pipeline/src/commands/EvaluateExpressionCommand.ts +++ b/clients/client-data-pipeline/src/commands/EvaluateExpressionCommand.ts @@ -102,6 +102,7 @@ export interface EvaluateExpressionCommandOutput extends EvaluateExpressionOutpu * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class EvaluateExpressionCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/GetPipelineDefinitionCommand.ts b/clients/client-data-pipeline/src/commands/GetPipelineDefinitionCommand.ts index fef6d4041e680..93340ba0a3d8e 100644 --- a/clients/client-data-pipeline/src/commands/GetPipelineDefinitionCommand.ts +++ b/clients/client-data-pipeline/src/commands/GetPipelineDefinitionCommand.ts @@ -161,6 +161,7 @@ export interface GetPipelineDefinitionCommandOutput extends GetPipelineDefinitio * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class GetPipelineDefinitionCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/ListPipelinesCommand.ts b/clients/client-data-pipeline/src/commands/ListPipelinesCommand.ts index 71d3880ba960d..079f0eeab8c3b 100644 --- a/clients/client-data-pipeline/src/commands/ListPipelinesCommand.ts +++ b/clients/client-data-pipeline/src/commands/ListPipelinesCommand.ts @@ -99,6 +99,7 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class ListPipelinesCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/PollForTaskCommand.ts b/clients/client-data-pipeline/src/commands/PollForTaskCommand.ts index 52d9e15b66233..fe02cf740b9c5 100644 --- a/clients/client-data-pipeline/src/commands/PollForTaskCommand.ts +++ b/clients/client-data-pipeline/src/commands/PollForTaskCommand.ts @@ -164,6 +164,7 @@ export interface PollForTaskCommandOutput extends PollForTaskOutput, __MetadataB * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class PollForTaskCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/PutPipelineDefinitionCommand.ts b/clients/client-data-pipeline/src/commands/PutPipelineDefinitionCommand.ts index 4507e0946acfc..42452203e9184 100644 --- a/clients/client-data-pipeline/src/commands/PutPipelineDefinitionCommand.ts +++ b/clients/client-data-pipeline/src/commands/PutPipelineDefinitionCommand.ts @@ -272,6 +272,7 @@ export interface PutPipelineDefinitionCommandOutput extends PutPipelineDefinitio * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class PutPipelineDefinitionCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/QueryObjectsCommand.ts b/clients/client-data-pipeline/src/commands/QueryObjectsCommand.ts index 775188a4560d0..f0d9510b5b690 100644 --- a/clients/client-data-pipeline/src/commands/QueryObjectsCommand.ts +++ b/clients/client-data-pipeline/src/commands/QueryObjectsCommand.ts @@ -125,6 +125,7 @@ export interface QueryObjectsCommandOutput extends QueryObjectsOutput, __Metadat * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class QueryObjectsCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/RemoveTagsCommand.ts b/clients/client-data-pipeline/src/commands/RemoveTagsCommand.ts index f2c87747a2a7b..05cc3a518171b 100644 --- a/clients/client-data-pipeline/src/commands/RemoveTagsCommand.ts +++ b/clients/client-data-pipeline/src/commands/RemoveTagsCommand.ts @@ -68,6 +68,7 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class RemoveTagsCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/ReportTaskProgressCommand.ts b/clients/client-data-pipeline/src/commands/ReportTaskProgressCommand.ts index 12f6610180000..f96971c862a24 100644 --- a/clients/client-data-pipeline/src/commands/ReportTaskProgressCommand.ts +++ b/clients/client-data-pipeline/src/commands/ReportTaskProgressCommand.ts @@ -114,6 +114,7 @@ export interface ReportTaskProgressCommandOutput extends ReportTaskProgressOutpu * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class ReportTaskProgressCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/ReportTaskRunnerHeartbeatCommand.ts b/clients/client-data-pipeline/src/commands/ReportTaskRunnerHeartbeatCommand.ts index 629d498898098..fe67cff45e33a 100644 --- a/clients/client-data-pipeline/src/commands/ReportTaskRunnerHeartbeatCommand.ts +++ b/clients/client-data-pipeline/src/commands/ReportTaskRunnerHeartbeatCommand.ts @@ -95,6 +95,7 @@ export interface ReportTaskRunnerHeartbeatCommandOutput extends ReportTaskRunner * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class ReportTaskRunnerHeartbeatCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/SetStatusCommand.ts b/clients/client-data-pipeline/src/commands/SetStatusCommand.ts index 3d3a0acbdb3f5..8d523d7006f23 100644 --- a/clients/client-data-pipeline/src/commands/SetStatusCommand.ts +++ b/clients/client-data-pipeline/src/commands/SetStatusCommand.ts @@ -101,6 +101,7 @@ export interface SetStatusCommandOutput extends __MetadataBearer {} * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class SetStatusCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/SetTaskStatusCommand.ts b/clients/client-data-pipeline/src/commands/SetTaskStatusCommand.ts index ab974cdb68762..fdd2b78b8d84b 100644 --- a/clients/client-data-pipeline/src/commands/SetTaskStatusCommand.ts +++ b/clients/client-data-pipeline/src/commands/SetTaskStatusCommand.ts @@ -102,6 +102,7 @@ export interface SetTaskStatusCommandOutput extends SetTaskStatusOutput, __Metad * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class SetTaskStatusCommand extends $Command diff --git a/clients/client-data-pipeline/src/commands/ValidatePipelineDefinitionCommand.ts b/clients/client-data-pipeline/src/commands/ValidatePipelineDefinitionCommand.ts index c2d217627a2a9..c6fb4ef0a3a16 100644 --- a/clients/client-data-pipeline/src/commands/ValidatePipelineDefinitionCommand.ts +++ b/clients/client-data-pipeline/src/commands/ValidatePipelineDefinitionCommand.ts @@ -264,6 +264,7 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin * @throws {@link DataPipelineServiceException} *

Base exception class for all service exceptions from DataPipeline service.

* + * * @public */ export class ValidatePipelineDefinitionCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/AddTagsToResourceCommand.ts b/clients/client-database-migration-service/src/commands/AddTagsToResourceCommand.ts index ec49f4fecc231..23df0d2e4bd79 100644 --- a/clients/client-database-migration-service/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-database-migration-service/src/commands/AddTagsToResourceCommand.ts @@ -76,24 +76,27 @@ export interface AddTagsToResourceCommandOutput extends AddTagsToResourceRespons * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Add tags to resource * ```javascript * // Adds metadata tags to an AWS DMS resource, including replication instance, endpoint, security group, and migration task. These tags can also be used with cost allocation reporting to track cost associated with AWS DMS resources, or used in a Condition statement in an IAM policy for AWS DMS. * const input = { - * "ResourceArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E", - * "Tags": [ + * ResourceArn: "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E", + * Tags: [ * { - * "Key": "Acount", - * "Value": "1633456" + * Key: "Acount", + * Value: "1633456" * } * ] * }; * const command = new AddTagsToResourceCommand(input); - * await client.send(command); - * // example id: add-tags-to-resource-1481744141435 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class AddTagsToResourceCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/ApplyPendingMaintenanceActionCommand.ts b/clients/client-database-migration-service/src/commands/ApplyPendingMaintenanceActionCommand.ts index 04299995066f5..6558a4b968cd1 100644 --- a/clients/client-database-migration-service/src/commands/ApplyPendingMaintenanceActionCommand.ts +++ b/clients/client-database-migration-service/src/commands/ApplyPendingMaintenanceActionCommand.ts @@ -82,6 +82,7 @@ export interface ApplyPendingMaintenanceActionCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class ApplyPendingMaintenanceActionCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/BatchStartRecommendationsCommand.ts b/clients/client-database-migration-service/src/commands/BatchStartRecommendationsCommand.ts index f3870e29a4539..7ea9cbe009076 100644 --- a/clients/client-database-migration-service/src/commands/BatchStartRecommendationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/BatchStartRecommendationsCommand.ts @@ -88,6 +88,7 @@ export interface BatchStartRecommendationsCommandOutput extends BatchStartRecomm * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class BatchStartRecommendationsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/CancelReplicationTaskAssessmentRunCommand.ts b/clients/client-database-migration-service/src/commands/CancelReplicationTaskAssessmentRunCommand.ts index f6d314470426b..c5482ae9a8a44 100644 --- a/clients/client-database-migration-service/src/commands/CancelReplicationTaskAssessmentRunCommand.ts +++ b/clients/client-database-migration-service/src/commands/CancelReplicationTaskAssessmentRunCommand.ts @@ -105,6 +105,7 @@ export interface CancelReplicationTaskAssessmentRunCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class CancelReplicationTaskAssessmentRunCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/CreateDataMigrationCommand.ts b/clients/client-database-migration-service/src/commands/CreateDataMigrationCommand.ts index 537ac07d1ad5d..19e32f9e828f1 100644 --- a/clients/client-database-migration-service/src/commands/CreateDataMigrationCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateDataMigrationCommand.ts @@ -152,6 +152,7 @@ export interface CreateDataMigrationCommandOutput extends CreateDataMigrationRes * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class CreateDataMigrationCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/CreateDataProviderCommand.ts b/clients/client-database-migration-service/src/commands/CreateDataProviderCommand.ts index ffbe326b73a4a..42402bcb85114 100644 --- a/clients/client-database-migration-service/src/commands/CreateDataProviderCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateDataProviderCommand.ts @@ -240,52 +240,52 @@ export interface CreateDataProviderCommandOutput extends CreateDataProviderRespo * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Create Data Provider * ```javascript * // Creates the data provider with the specified parameters. * const input = { - * "DataProviderName": "sqlServer-dev", - * "Description": "description", - * "Engine": "sqlserver", - * "Settings": { - * "MicrosoftSqlServerSettings": { - * "DatabaseName": "DatabaseName", - * "Port": 11112, - * "ServerName": "ServerName2", - * "SslMode": "none" + * DataProviderName: "sqlServer-dev", + * Description: "description", + * Engine: "sqlserver", + * Settings: { + * MicrosoftSqlServerSettings: { + * DatabaseName: "DatabaseName", + * Port: 11112, + * ServerName: "ServerName2", + * SslMode: "none" * } * }, - * "Tags": [ + * Tags: [ * { - * "Key": "access", - * "Value": "authorizedusers" + * Key: "access", + * Value: "authorizedusers" * } * ] * }; * const command = new CreateDataProviderCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DataProvider": { - * "DataProviderArn": "arn:aws:dms:us-east-1:012345678901:data-provider:my-target-dataprovider", - * "DataProviderCreationTime": "2023-05-12T10:50:41.988561Z", - * "DataProviderName": "my-target-dataprovider", - * "Engine": "postgres", - * "Settings": { - * "PostgreSqlSettings": { - * "DatabaseName": "target", - * "Port": 5432, - * "ServerName": "postrgesql.a1b2c3d4e5f6.us-east-1.rds.amazonaws.com", - * "SslMode": "none" + * DataProvider: { + * DataProviderArn: "arn:aws:dms:us-east-1:012345678901:data-provider:my-target-dataprovider", + * DataProviderCreationTime: "2023-05-12T10:50:41.988561Z", + * DataProviderName: "my-target-dataprovider", + * Engine: "postgres", + * Settings: { + * PostgreSqlSettings: { + * DatabaseName: "target", + * Port: 5432, + * ServerName: "postrgesql.a1b2c3d4e5f6.us-east-1.rds.amazonaws.com", + * SslMode: "none" * } * } * } * } * *\/ - * // example id: create-data-provider-1689726511871 * ``` * + * @public */ export class CreateDataProviderCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/CreateEndpointCommand.ts b/clients/client-database-migration-service/src/commands/CreateEndpointCommand.ts index 22cdb89562dfc..e7fe332245b01 100644 --- a/clients/client-database-migration-service/src/commands/CreateEndpointCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateEndpointCommand.ts @@ -807,50 +807,50 @@ export interface CreateEndpointCommandOutput extends CreateEndpointResponse, __M * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Create endpoint * ```javascript * // Creates an endpoint using the provided settings. * const input = { - * "CertificateArn": "", - * "DatabaseName": "testdb", - * "EndpointIdentifier": "test-endpoint-1", - * "EndpointType": "source", - * "EngineName": "mysql", - * "ExtraConnectionAttributes": "", - * "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd", - * "Password": "pasword", - * "Port": 3306, - * "ServerName": "mydb.cx1llnox7iyx.us-west-2.rds.amazonaws.com", - * "SslMode": "require", - * "Tags": [ + * CertificateArn: "", + * DatabaseName: "testdb", + * EndpointIdentifier: "test-endpoint-1", + * EndpointType: "source", + * EngineName: "mysql", + * ExtraConnectionAttributes: "", + * KmsKeyId: "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd", + * Password: "pasword", + * Port: 3306, + * ServerName: "mydb.cx1llnox7iyx.us-west-2.rds.amazonaws.com", + * SslMode: "require", + * Tags: [ * { - * "Key": "Acount", - * "Value": "143327655" + * Key: "Acount", + * Value: "143327655" * } * ], - * "Username": "username" + * Username: "username" * }; * const command = new CreateEndpointCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Endpoint": { - * "EndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:RAAR3R22XSH46S3PWLC3NJAWKM", - * "EndpointIdentifier": "test-endpoint-1", - * "EndpointType": "source", - * "EngineName": "mysql", - * "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd", - * "Port": 3306, - * "ServerName": "mydb.cx1llnox7iyx.us-west-2.rds.amazonaws.com", - * "Status": "active", - * "Username": "username" + * Endpoint: { + * EndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:RAAR3R22XSH46S3PWLC3NJAWKM", + * EndpointIdentifier: "test-endpoint-1", + * EndpointType: "source", + * EngineName: "mysql", + * KmsKeyId: "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd", + * Port: 3306, + * ServerName: "mydb.cx1llnox7iyx.us-west-2.rds.amazonaws.com", + * Status: "active", + * Username: "username" * } * } * *\/ - * // example id: create-endpoint-1481746254348 * ``` * + * @public */ export class CreateEndpointCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/CreateEventSubscriptionCommand.ts b/clients/client-database-migration-service/src/commands/CreateEventSubscriptionCommand.ts index 9b8be6d4beb57..e5de8c946e932 100644 --- a/clients/client-database-migration-service/src/commands/CreateEventSubscriptionCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateEventSubscriptionCommand.ts @@ -133,6 +133,7 @@ export interface CreateEventSubscriptionCommandOutput extends CreateEventSubscri * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class CreateEventSubscriptionCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/CreateFleetAdvisorCollectorCommand.ts b/clients/client-database-migration-service/src/commands/CreateFleetAdvisorCollectorCommand.ts index 90b34c4f55a81..4aaf63208ead5 100644 --- a/clients/client-database-migration-service/src/commands/CreateFleetAdvisorCollectorCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateFleetAdvisorCollectorCommand.ts @@ -85,6 +85,7 @@ export interface CreateFleetAdvisorCollectorCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class CreateFleetAdvisorCollectorCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/CreateInstanceProfileCommand.ts b/clients/client-database-migration-service/src/commands/CreateInstanceProfileCommand.ts index 3a00455ce24b3..58e0c3940b5b1 100644 --- a/clients/client-database-migration-service/src/commands/CreateInstanceProfileCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateInstanceProfileCommand.ts @@ -117,45 +117,45 @@ export interface CreateInstanceProfileCommandOutput extends CreateInstanceProfil * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Create Instance Profile * ```javascript * // Creates the instance profile using the specified parameters. * const input = { - * "Description": "Description", - * "InstanceProfileName": "my-instance-profile", - * "KmsKeyArn": "arn:aws:kms:us-east-1:012345678901:key/01234567-89ab-cdef-0123-456789abcdef", - * "NetworkType": "DUAL", - * "PubliclyAccessible": true, - * "SubnetGroupIdentifier": "my-subnet-group", - * "Tags": [ + * Description: "Description", + * InstanceProfileName: "my-instance-profile", + * KmsKeyArn: "arn:aws:kms:us-east-1:012345678901:key/01234567-89ab-cdef-0123-456789abcdef", + * NetworkType: "DUAL", + * PubliclyAccessible: true, + * SubnetGroupIdentifier: "my-subnet-group", + * Tags: [ * { - * "Key": "access", - * "Value": "authorizedusers" + * Key: "access", + * Value: "authorizedusers" * } * ] * }; * const command = new CreateInstanceProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InstanceProfile": { - * "InstanceProfileArn": "arn:aws:dms:us-east-1:012345678901:instance-profile:my-instance-profile", - * "InstanceProfileCreationTime": "2022-12-16T09:44:43.543246Z", - * "InstanceProfileName": "my-instance-profile", - * "KmsKeyArn": "arn:aws:kms:us-east-1:012345678901:key/01234567-89ab-cdef-0123-456789abcdef", - * "PubliclyAccessible": true, - * "SubnetGroupIdentifier": "public-subnets", - * "VpcIdentifier": "vpc-0a1b2c3d4e5f6g7h8", - * "VpcSecurityGroups": [ + * InstanceProfile: { + * InstanceProfileArn: "arn:aws:dms:us-east-1:012345678901:instance-profile:my-instance-profile", + * InstanceProfileCreationTime: "2022-12-16T09:44:43.543246Z", + * InstanceProfileName: "my-instance-profile", + * KmsKeyArn: "arn:aws:kms:us-east-1:012345678901:key/01234567-89ab-cdef-0123-456789abcdef", + * PubliclyAccessible: true, + * SubnetGroupIdentifier: "public-subnets", + * VpcIdentifier: "vpc-0a1b2c3d4e5f6g7h8", + * VpcSecurityGroups: [ * "sg-0123456" * ] * } * } * *\/ - * // example id: create-instance-profile-1689716070633 * ``` * + * @public */ export class CreateInstanceProfileCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/CreateMigrationProjectCommand.ts b/clients/client-database-migration-service/src/commands/CreateMigrationProjectCommand.ts index 358ba3435ec05..d17ecafb40f1b 100644 --- a/clients/client-database-migration-service/src/commands/CreateMigrationProjectCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateMigrationProjectCommand.ts @@ -140,76 +140,76 @@ export interface CreateMigrationProjectCommandOutput extends CreateMigrationProj * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Create Migration Project * ```javascript * // Creates the migration project with the specified parameters. * const input = { - * "Description": "description", - * "InstanceProfileIdentifier": "ip-au-17", - * "MigrationProjectName": "my-migration-project", - * "SchemaConversionApplicationAttributes": { - * "S3BucketPath": "arn:aws:s3:::mylogin-bucket", - * "S3BucketRoleArn": "arn:aws:iam::012345678901:role/Admin" + * Description: "description", + * InstanceProfileIdentifier: "ip-au-17", + * MigrationProjectName: "my-migration-project", + * SchemaConversionApplicationAttributes: { + * S3BucketPath: "arn:aws:s3:::mylogin-bucket", + * S3BucketRoleArn: "arn:aws:iam::012345678901:role/Admin" * }, - * "SourceDataProviderDescriptors": [ + * SourceDataProviderDescriptors: [ * { - * "DataProviderIdentifier": "arn:aws:dms:us-east-1:012345678901:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", - * "SecretsManagerAccessRoleArn": "arn:aws:iam::012345678901:role/myuser-admin-access", - * "SecretsManagerSecretId": "arn:aws:secretsmanager:us-east-1:012345678901:secret:myorg/example1/ALL.SOURCE.ORACLE_12-A1B2C3" + * DataProviderIdentifier: "arn:aws:dms:us-east-1:012345678901:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", + * SecretsManagerAccessRoleArn: "arn:aws:iam::012345678901:role/myuser-admin-access", + * SecretsManagerSecretId: "arn:aws:secretsmanager:us-east-1:012345678901:secret:myorg/example1/ALL.SOURCE.ORACLE_12-A1B2C3" * } * ], - * "Tags": [ + * Tags: [ * { - * "Key": "access", - * "Value": "authorizedusers" + * Key: "access", + * Value: "authorizedusers" * } * ], - * "TargetDataProviderDescriptors": [ + * TargetDataProviderDescriptors: [ * { - * "DataProviderIdentifier": "arn:aws:dms:us-east-1:012345678901:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", - * "SecretsManagerAccessRoleArn": "arn:aws:iam::012345678901:role/myuser-admin-access", - * "SecretsManagerSecretId": "arn:aws:secretsmanager:us-east-1:012345678901:secret:myorg/example1/TARGET.postgresql-A1B2C3" + * DataProviderIdentifier: "arn:aws:dms:us-east-1:012345678901:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", + * SecretsManagerAccessRoleArn: "arn:aws:iam::012345678901:role/myuser-admin-access", + * SecretsManagerSecretId: "arn:aws:secretsmanager:us-east-1:012345678901:secret:myorg/example1/TARGET.postgresql-A1B2C3" * } * ], - * "TransformationRules": "{\"key0\":\"value0\",\"key1\":\"value1\",\"key2\":\"value2\"}" + * TransformationRules: `{"key0":"value0","key1":"value1","key2":"value2"}` * }; * const command = new CreateMigrationProjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "MigrationProject": { - * "InstanceProfileArn": "arn:aws:dms:us-east-1:012345678901:instance-profile:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "InstanceProfileName": "my-instance-profile", - * "MigrationProjectArn": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "MigrationProjectCreationTime": "2023-04-19T11:45:15.805253Z", - * "MigrationProjectName": "my-migration-project", - * "SchemaConversionApplicationAttributes": { - * "S3BucketPath": "my-s3-bucket/my_folder", - * "S3BucketRoleArn": "arn:aws:iam::012345678901:role/my-s3role" + * MigrationProject: { + * InstanceProfileArn: "arn:aws:dms:us-east-1:012345678901:instance-profile:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * InstanceProfileName: "my-instance-profile", + * MigrationProjectArn: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * MigrationProjectCreationTime: "2023-04-19T11:45:15.805253Z", + * MigrationProjectName: "my-migration-project", + * SchemaConversionApplicationAttributes: { + * S3BucketPath: "my-s3-bucket/my_folder", + * S3BucketRoleArn: "arn:aws:iam::012345678901:role/my-s3role" * }, - * "SourceDataProviderDescriptors": [ + * SourceDataProviderDescriptors: [ * { - * "DataProviderArn": "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "DataProviderName": "source-oracle-12", - * "SecretsManagerAccessRoleArn": "arn:aws:iam::012345678901:role/my-access-role", - * "SecretsManagerSecretId": "arn:aws:secretsmanager:us-east-1:012345678901:secret:myuser/ALL.SOURCE.ORACLE_12-0123456" + * DataProviderArn: "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * DataProviderName: "source-oracle-12", + * SecretsManagerAccessRoleArn: "arn:aws:iam::012345678901:role/my-access-role", + * SecretsManagerSecretId: "arn:aws:secretsmanager:us-east-1:012345678901:secret:myuser/ALL.SOURCE.ORACLE_12-0123456" * } * ], - * "TargetDataProviderDescriptors": [ + * TargetDataProviderDescriptors: [ * { - * "DataProviderArn": "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "DataProviderName": "target-dataprovider-3", - * "SecretsManagerAccessRoleArn": "arn:aws:iam::012345678901:role/dmytbon-admin-access", - * "SecretsManagerSecretId": "arn:aws:secretsmanager:us-east-1:012345678901:secret:myuser/TARGET.postgresql-0123456" + * DataProviderArn: "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * DataProviderName: "target-dataprovider-3", + * SecretsManagerAccessRoleArn: "arn:aws:iam::012345678901:role/dmytbon-admin-access", + * SecretsManagerSecretId: "arn:aws:secretsmanager:us-east-1:012345678901:secret:myuser/TARGET.postgresql-0123456" * } * ] * } * } * *\/ - * // example id: create-migration-project-1689716672685 * ``` * + * @public */ export class CreateMigrationProjectCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/CreateReplicationConfigCommand.ts b/clients/client-database-migration-service/src/commands/CreateReplicationConfigCommand.ts index 07e81c64f26ef..a5901477f5f22 100644 --- a/clients/client-database-migration-service/src/commands/CreateReplicationConfigCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateReplicationConfigCommand.ts @@ -137,6 +137,7 @@ export interface CreateReplicationConfigCommandOutput extends CreateReplicationC * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class CreateReplicationConfigCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/CreateReplicationInstanceCommand.ts b/clients/client-database-migration-service/src/commands/CreateReplicationInstanceCommand.ts index 26e85066771df..b1d085266b9e1 100644 --- a/clients/client-database-migration-service/src/commands/CreateReplicationInstanceCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateReplicationInstanceCommand.ts @@ -192,88 +192,88 @@ export interface CreateReplicationInstanceCommandOutput extends CreateReplicatio * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Create replication instance * ```javascript * // Creates the replication instance using the specified parameters. * const input = { - * "AllocatedStorage": 123, - * "AutoMinorVersionUpgrade": true, - * "AvailabilityZone": "", - * "EngineVersion": "", - * "KmsKeyId": "", - * "MultiAZ": true, - * "PreferredMaintenanceWindow": "", - * "PubliclyAccessible": true, - * "ReplicationInstanceClass": "", - * "ReplicationInstanceIdentifier": "", - * "ReplicationSubnetGroupIdentifier": "", - * "Tags": [ + * AllocatedStorage: 123, + * AutoMinorVersionUpgrade: true, + * AvailabilityZone: "", + * EngineVersion: "", + * KmsKeyId: "", + * MultiAZ: true, + * PreferredMaintenanceWindow: "", + * PubliclyAccessible: true, + * ReplicationInstanceClass: "", + * ReplicationInstanceIdentifier: "", + * ReplicationSubnetGroupIdentifier: "", + * Tags: [ * { - * "Key": "string", - * "Value": "string" + * Key: "string", + * Value: "string" * } * ], - * "VpcSecurityGroupIds": [] + * VpcSecurityGroupIds: [] * }; * const command = new CreateReplicationInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicationInstance": { - * "AllocatedStorage": 5, - * "AutoMinorVersionUpgrade": true, - * "EngineVersion": "1.5.0", - * "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd", - * "PendingModifiedValues": {}, - * "PreferredMaintenanceWindow": "sun:06:00-sun:14:00", - * "PubliclyAccessible": true, - * "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", - * "ReplicationInstanceClass": "dms.t2.micro", - * "ReplicationInstanceIdentifier": "test-rep-1", - * "ReplicationInstanceStatus": "creating", - * "ReplicationSubnetGroup": { - * "ReplicationSubnetGroupDescription": "default", - * "ReplicationSubnetGroupIdentifier": "default", - * "SubnetGroupStatus": "Complete", - * "Subnets": [ + * ReplicationInstance: { + * AllocatedStorage: 5, + * AutoMinorVersionUpgrade: true, + * EngineVersion: "1.5.0", + * KmsKeyId: "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd", + * PendingModifiedValues: { /* empty *\/ }, + * PreferredMaintenanceWindow: "sun:06:00-sun:14:00", + * PubliclyAccessible: true, + * ReplicationInstanceArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", + * ReplicationInstanceClass: "dms.t2.micro", + * ReplicationInstanceIdentifier: "test-rep-1", + * ReplicationInstanceStatus: "creating", + * ReplicationSubnetGroup: { + * ReplicationSubnetGroupDescription: "default", + * ReplicationSubnetGroupIdentifier: "default", + * SubnetGroupStatus: "Complete", + * Subnets: [ * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1d" + * SubnetAvailabilityZone: { + * Name: "us-east-1d" * }, - * "SubnetIdentifier": "subnet-f6dd91af", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-f6dd91af", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1b" + * SubnetAvailabilityZone: { + * Name: "us-east-1b" * }, - * "SubnetIdentifier": "subnet-3605751d", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-3605751d", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1c" + * SubnetAvailabilityZone: { + * Name: "us-east-1c" * }, - * "SubnetIdentifier": "subnet-c2daefb5", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-c2daefb5", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1e" + * SubnetAvailabilityZone: { + * Name: "us-east-1e" * }, - * "SubnetIdentifier": "subnet-85e90cb8", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-85e90cb8", + * SubnetStatus: "Active" * } * ], - * "VpcId": "vpc-6741a603" + * VpcId: "vpc-6741a603" * } * } * } * *\/ - * // example id: create-replication-instance-1481746705295 * ``` * + * @public */ export class CreateReplicationInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/CreateReplicationSubnetGroupCommand.ts b/clients/client-database-migration-service/src/commands/CreateReplicationSubnetGroupCommand.ts index 127e3919baee9..caf556aa6a005 100644 --- a/clients/client-database-migration-service/src/commands/CreateReplicationSubnetGroupCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateReplicationSubnetGroupCommand.ts @@ -119,34 +119,34 @@ export interface CreateReplicationSubnetGroupCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Create replication subnet group * ```javascript * // Creates a replication subnet group given a list of the subnet IDs in a VPC. * const input = { - * "ReplicationSubnetGroupDescription": "US West subnet group", - * "ReplicationSubnetGroupIdentifier": "us-west-2ab-vpc-215ds366", - * "SubnetIds": [ + * ReplicationSubnetGroupDescription: "US West subnet group", + * ReplicationSubnetGroupIdentifier: "us-west-2ab-vpc-215ds366", + * SubnetIds: [ * "subnet-e145356n", * "subnet-58f79200" * ], - * "Tags": [ + * Tags: [ * { - * "Key": "Acount", - * "Value": "145235" + * Key: "Acount", + * Value: "145235" * } * ] * }; * const command = new CreateReplicationSubnetGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicationSubnetGroup": {} + * ReplicationSubnetGroup: { /* empty *\/ } * } * *\/ - * // example id: create-replication-subnet-group-1481747297930 * ``` * + * @public */ export class CreateReplicationSubnetGroupCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/CreateReplicationTaskCommand.ts b/clients/client-database-migration-service/src/commands/CreateReplicationTaskCommand.ts index e3c4a15597e3f..0dd560402c248 100644 --- a/clients/client-database-migration-service/src/commands/CreateReplicationTaskCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateReplicationTaskCommand.ts @@ -128,47 +128,47 @@ export interface CreateReplicationTaskCommandOutput extends CreateReplicationTas * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Create replication task * ```javascript * // Creates a replication task using the specified parameters. * const input = { - * "CdcStartTime": "2016-12-14T18:25:43Z", - * "MigrationType": "full-load", - * "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", - * "ReplicationTaskIdentifier": "task1", - * "ReplicationTaskSettings": "", - * "SourceEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE", - * "TableMappings": "file://mappingfile.json", - * "Tags": [ + * CdcStartTime: "2016-12-14T18:25:43Z", + * MigrationType: "full-load", + * ReplicationInstanceArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", + * ReplicationTaskIdentifier: "task1", + * ReplicationTaskSettings: "", + * SourceEndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE", + * TableMappings: "file://mappingfile.json", + * Tags: [ * { - * "Key": "Acount", - * "Value": "24352226" + * Key: "Acount", + * Value: "24352226" * } * ], - * "TargetEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E" + * TargetEndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E" * }; * const command = new CreateReplicationTaskCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicationTask": { - * "MigrationType": "full-load", - * "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", - * "ReplicationTaskArn": "arn:aws:dms:us-east-1:123456789012:task:OEAMB3NXSTZ6LFYZFEPPBBXPYM", - * "ReplicationTaskCreationDate": "2016-12-14T18:25:43Z", - * "ReplicationTaskIdentifier": "task1", - * "ReplicationTaskSettings": "{\"TargetMetadata\":{\"TargetSchema\":\"\",\"SupportLobs\":true,\"FullLobMode\":true,\"LobChunkSize\":64,\"LimitedSizeLobMode\":false,\"LobMaxSize\":0},\"FullLoadSettings\":{\"FullLoadEnabled\":true,\"ApplyChangesEnabled\":false,\"TargetTablePrepMode\":\"DROP_AND_CREATE\",\"CreatePkAfterFullLoad\":false,\"StopTaskCachedChangesApplied\":false,\"StopTaskCachedChangesNotApplied\":false,\"ResumeEnabled\":false,\"ResumeMinTableSize\":100000,\"ResumeOnlyClusteredPKTables\":true,\"MaxFullLoadSubTasks\":8,\"TransactionConsistencyTimeout\":600,\"CommitRate\":10000},\"Logging\":{\"EnableLogging\":false}}", - * "SourceEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE", - * "Status": "creating", - * "TableMappings": "file://mappingfile.json", - * "TargetEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E" + * ReplicationTask: { + * MigrationType: "full-load", + * ReplicationInstanceArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", + * ReplicationTaskArn: "arn:aws:dms:us-east-1:123456789012:task:OEAMB3NXSTZ6LFYZFEPPBBXPYM", + * ReplicationTaskCreationDate: "2016-12-14T18:25:43Z", + * ReplicationTaskIdentifier: "task1", + * ReplicationTaskSettings: `{"TargetMetadata":{"TargetSchema":"","SupportLobs":true,"FullLobMode":true,"LobChunkSize":64,"LimitedSizeLobMode":false,"LobMaxSize":0},"FullLoadSettings":{"FullLoadEnabled":true,"ApplyChangesEnabled":false,"TargetTablePrepMode":"DROP_AND_CREATE","CreatePkAfterFullLoad":false,"StopTaskCachedChangesApplied":false,"StopTaskCachedChangesNotApplied":false,"ResumeEnabled":false,"ResumeMinTableSize":100000,"ResumeOnlyClusteredPKTables":true,"MaxFullLoadSubTasks":8,"TransactionConsistencyTimeout":600,"CommitRate":10000},"Logging":{"EnableLogging":false}}`, + * SourceEndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE", + * Status: "creating", + * TableMappings: "file://mappingfile.json", + * TargetEndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E" * } * } * *\/ - * // example id: create-replication-task-1481747646288 * ``` * + * @public */ export class CreateReplicationTaskCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DeleteCertificateCommand.ts b/clients/client-database-migration-service/src/commands/DeleteCertificateCommand.ts index 1948f881e4d02..34d737b366f22 100644 --- a/clients/client-database-migration-service/src/commands/DeleteCertificateCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteCertificateCommand.ts @@ -76,23 +76,23 @@ export interface DeleteCertificateCommandOutput extends DeleteCertificateRespons * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Delete Certificate * ```javascript * // Deletes the specified certificate. * const input = { - * "CertificateArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUSM457DE6XFJCJQ" + * CertificateArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUSM457DE6XFJCJQ" * }; * const command = new DeleteCertificateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Certificate": {} + * Certificate: { /* empty *\/ } * } * *\/ - * // example id: delete-certificate-1481751957981 * ``` * + * @public */ export class DeleteCertificateCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DeleteConnectionCommand.ts b/clients/client-database-migration-service/src/commands/DeleteConnectionCommand.ts index cc215f7dac8ef..7fffd27d714bc 100644 --- a/clients/client-database-migration-service/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteConnectionCommand.ts @@ -77,24 +77,24 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse, * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Delete Connection * ```javascript * // Deletes the connection between the replication instance and the endpoint. * const input = { - * "EndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:RAAR3R22XSH46S3PWLC3NJAWKM", - * "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ" + * EndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:RAAR3R22XSH46S3PWLC3NJAWKM", + * ReplicationInstanceArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ" * }; * const command = new DeleteConnectionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Connection": {} + * Connection: { /* empty *\/ } * } * *\/ - * // example id: delete-connection-1481751957981 * ``` * + * @public */ export class DeleteConnectionCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DeleteDataMigrationCommand.ts b/clients/client-database-migration-service/src/commands/DeleteDataMigrationCommand.ts index f3b26d5c38aad..f46d511ef9f47 100644 --- a/clients/client-database-migration-service/src/commands/DeleteDataMigrationCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteDataMigrationCommand.ts @@ -119,6 +119,7 @@ export interface DeleteDataMigrationCommandOutput extends DeleteDataMigrationRes * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DeleteDataMigrationCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DeleteDataProviderCommand.ts b/clients/client-database-migration-service/src/commands/DeleteDataProviderCommand.ts index 3ce1984cc8af1..8c236152ab68c 100644 --- a/clients/client-database-migration-service/src/commands/DeleteDataProviderCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteDataProviderCommand.ts @@ -158,36 +158,36 @@ export interface DeleteDataProviderCommandOutput extends DeleteDataProviderRespo * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Delete Data Provider * ```javascript * // Deletes the specified data provider. * const input = { - * "DataProviderIdentifier": "arn:aws:dms:us-east-1:012345678901:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" + * DataProviderIdentifier: "arn:aws:dms:us-east-1:012345678901:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" * }; * const command = new DeleteDataProviderCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DataProvider": { - * "DataProviderArn": "arn:aws:dms:us-east-1:012345678901:data-provider:my-target-data-provider", - * "DataProviderCreationTime": "2023-05-12T10:50:41.988561Z", - * "DataProviderName": "my-target-data-provider", - * "Engine": "postgres", - * "Settings": { - * "PostgreSqlSettings": { - * "DatabaseName": "target", - * "Port": 5432, - * "ServerName": "postrgesql.0a1b2c3d4e5f.us-east-1.rds.amazonaws.com", - * "SslMode": "none" + * DataProvider: { + * DataProviderArn: "arn:aws:dms:us-east-1:012345678901:data-provider:my-target-data-provider", + * DataProviderCreationTime: "2023-05-12T10:50:41.988561Z", + * DataProviderName: "my-target-data-provider", + * Engine: "postgres", + * Settings: { + * PostgreSqlSettings: { + * DatabaseName: "target", + * Port: 5432, + * ServerName: "postrgesql.0a1b2c3d4e5f.us-east-1.rds.amazonaws.com", + * SslMode: "none" * } * } * } * } * *\/ - * // example id: delete-data-provider-1689724476356 * ``` * + * @public */ export class DeleteDataProviderCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DeleteEndpointCommand.ts b/clients/client-database-migration-service/src/commands/DeleteEndpointCommand.ts index 523815a31da51..03fee70a56d13 100644 --- a/clients/client-database-migration-service/src/commands/DeleteEndpointCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteEndpointCommand.ts @@ -429,34 +429,34 @@ export interface DeleteEndpointCommandOutput extends DeleteEndpointResponse, __M * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Delete Endpoint * ```javascript * // Deletes the specified endpoint. All tasks associated with the endpoint must be deleted before you can delete the endpoint. - * // + * * const input = { - * "EndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:RAAR3R22XSH46S3PWLC3NJAWKM" + * EndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:RAAR3R22XSH46S3PWLC3NJAWKM" * }; * const command = new DeleteEndpointCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Endpoint": { - * "EndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:RAAR3R22XSH46S3PWLC3NJAWKM", - * "EndpointIdentifier": "test-endpoint-1", - * "EndpointType": "source", - * "EngineName": "mysql", - * "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd", - * "Port": 3306, - * "ServerName": "mydb.cx1llnox7iyx.us-west-2.rds.amazonaws.com", - * "Status": "active", - * "Username": "username" + * Endpoint: { + * EndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:RAAR3R22XSH46S3PWLC3NJAWKM", + * EndpointIdentifier: "test-endpoint-1", + * EndpointType: "source", + * EngineName: "mysql", + * KmsKeyId: "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd", + * Port: 3306, + * ServerName: "mydb.cx1llnox7iyx.us-west-2.rds.amazonaws.com", + * Status: "active", + * Username: "username" * } * } * *\/ - * // example id: delete-endpoint-1481752425530 * ``` * + * @public */ export class DeleteEndpointCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DeleteEventSubscriptionCommand.ts b/clients/client-database-migration-service/src/commands/DeleteEventSubscriptionCommand.ts index 3b171dbd5f568..fba97472365ef 100644 --- a/clients/client-database-migration-service/src/commands/DeleteEventSubscriptionCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteEventSubscriptionCommand.ts @@ -83,6 +83,7 @@ export interface DeleteEventSubscriptionCommandOutput extends DeleteEventSubscri * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DeleteEventSubscriptionCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorCollectorCommand.ts b/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorCollectorCommand.ts index aa3c9038b9bcf..44d5eab231858 100644 --- a/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorCollectorCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorCollectorCommand.ts @@ -67,6 +67,7 @@ export interface DeleteFleetAdvisorCollectorCommandOutput extends __MetadataBear * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DeleteFleetAdvisorCollectorCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorDatabasesCommand.ts b/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorDatabasesCommand.ts index e4e4a3c02664c..ff43ba805393e 100644 --- a/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorDatabasesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorDatabasesCommand.ts @@ -75,6 +75,7 @@ export interface DeleteFleetAdvisorDatabasesCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DeleteFleetAdvisorDatabasesCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DeleteInstanceProfileCommand.ts b/clients/client-database-migration-service/src/commands/DeleteInstanceProfileCommand.ts index 3188937639949..767ed38979e79 100644 --- a/clients/client-database-migration-service/src/commands/DeleteInstanceProfileCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteInstanceProfileCommand.ts @@ -89,34 +89,34 @@ export interface DeleteInstanceProfileCommandOutput extends DeleteInstanceProfil * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Delete Instance Profile * ```javascript * // Deletes the specified instance profile. * const input = { - * "InstanceProfileIdentifier": "arn:aws:dms:us-east-1:012345678901:instance-profile:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" + * InstanceProfileIdentifier: "arn:aws:dms:us-east-1:012345678901:instance-profile:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" * }; * const command = new DeleteInstanceProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InstanceProfile": { - * "InstanceProfileArn": "arn:aws:dms:us-east-1:012345678901:instance-profile:my-instance-profile", - * "InstanceProfileCreationTime": "2022-12-16T09:44:43.543246Z", - * "InstanceProfileName": "my-instance-profile", - * "KmsKeyArn": "arn:aws:kms:us-east-1:012345678901:key/01234567-89ab-cdef-0123-456789abcdef", - * "PubliclyAccessible": true, - * "SubnetGroupIdentifier": "public-subnets", - * "VpcIdentifier": "vpc-0a1b2c3d4e5f6g7h8", - * "VpcSecurityGroups": [ + * InstanceProfile: { + * InstanceProfileArn: "arn:aws:dms:us-east-1:012345678901:instance-profile:my-instance-profile", + * InstanceProfileCreationTime: "2022-12-16T09:44:43.543246Z", + * InstanceProfileName: "my-instance-profile", + * KmsKeyArn: "arn:aws:kms:us-east-1:012345678901:key/01234567-89ab-cdef-0123-456789abcdef", + * PubliclyAccessible: true, + * SubnetGroupIdentifier: "public-subnets", + * VpcIdentifier: "vpc-0a1b2c3d4e5f6g7h8", + * VpcSecurityGroups: [ * "sg-0123456" * ] * } * } * *\/ - * // example id: delete-instance-profile-1689716924105 * ``` * + * @public */ export class DeleteInstanceProfileCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DeleteMigrationProjectCommand.ts b/clients/client-database-migration-service/src/commands/DeleteMigrationProjectCommand.ts index daebfa5473d3f..ab95ea81f20bc 100644 --- a/clients/client-database-migration-service/src/commands/DeleteMigrationProjectCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteMigrationProjectCommand.ts @@ -103,49 +103,49 @@ export interface DeleteMigrationProjectCommandOutput extends DeleteMigrationProj * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Delete Migration Project * ```javascript * // Deletes the specified migration project. * const input = { - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" * }; * const command = new DeleteMigrationProjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "MigrationProject": { - * "InstanceProfileArn": "arn:aws:dms:us-east-1:012345678901:instance-profile:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "InstanceProfileName": "my-instance-profile", - * "MigrationProjectArn": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "MigrationProjectCreationTime": "2023-04-19T11:45:15.805253Z", - * "MigrationProjectName": "my-migration-project", - * "SchemaConversionApplicationAttributes": { - * "S3BucketPath": "my-s3-bucket/my_folder", - * "S3BucketRoleArn": "arn:aws:iam::012345678901:role/my-s3role" + * MigrationProject: { + * InstanceProfileArn: "arn:aws:dms:us-east-1:012345678901:instance-profile:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * InstanceProfileName: "my-instance-profile", + * MigrationProjectArn: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * MigrationProjectCreationTime: "2023-04-19T11:45:15.805253Z", + * MigrationProjectName: "my-migration-project", + * SchemaConversionApplicationAttributes: { + * S3BucketPath: "my-s3-bucket/my_folder", + * S3BucketRoleArn: "arn:aws:iam::012345678901:role/my-s3role" * }, - * "SourceDataProviderDescriptors": [ + * SourceDataProviderDescriptors: [ * { - * "DataProviderArn": "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "DataProviderName": "all-source-oracle-12", - * "SecretsManagerAccessRoleArn": "arn:aws:iam::012345678901:role/my-access-role", - * "SecretsManagerSecretId": "arn:aws:secretsmanager:us-east-1:012345678901:secret:myuser/ALL.SOURCE.ORACLE_12-0123456" + * DataProviderArn: "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * DataProviderName: "all-source-oracle-12", + * SecretsManagerAccessRoleArn: "arn:aws:iam::012345678901:role/my-access-role", + * SecretsManagerSecretId: "arn:aws:secretsmanager:us-east-1:012345678901:secret:myuser/ALL.SOURCE.ORACLE_12-0123456" * } * ], - * "TargetDataProviderDescriptors": [ + * TargetDataProviderDescriptors: [ * { - * "DataProviderArn": "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "DataProviderName": "sde-obilyns-dataprovider-3", - * "SecretsManagerAccessRoleArn": "arn:aws:iam::437223687239:role/dmytbon-admin-access", - * "SecretsManagerSecretId": "arn:aws:secretsmanager:us-east-1:012345678901:secret:myuser/TARGET.postgresql-0123456" + * DataProviderArn: "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * DataProviderName: "sde-obilyns-dataprovider-3", + * SecretsManagerAccessRoleArn: "arn:aws:iam::437223687239:role/dmytbon-admin-access", + * SecretsManagerSecretId: "arn:aws:secretsmanager:us-east-1:012345678901:secret:myuser/TARGET.postgresql-0123456" * } * ] * } * } * *\/ - * // example id: delete-migration-project-1689717217454 * ``` * + * @public */ export class DeleteMigrationProjectCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DeleteReplicationConfigCommand.ts b/clients/client-database-migration-service/src/commands/DeleteReplicationConfigCommand.ts index e37f78b2cbdab..d9ee3f9f4b4f4 100644 --- a/clients/client-database-migration-service/src/commands/DeleteReplicationConfigCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteReplicationConfigCommand.ts @@ -96,6 +96,7 @@ export interface DeleteReplicationConfigCommandOutput extends DeleteReplicationC * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DeleteReplicationConfigCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DeleteReplicationInstanceCommand.ts b/clients/client-database-migration-service/src/commands/DeleteReplicationInstanceCommand.ts index 530168e177f20..fd61843d58616 100644 --- a/clients/client-database-migration-service/src/commands/DeleteReplicationInstanceCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteReplicationInstanceCommand.ts @@ -135,73 +135,73 @@ export interface DeleteReplicationInstanceCommandOutput extends DeleteReplicatio * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Delete Replication Instance * ```javascript * // Deletes the specified replication instance. You must delete any migration tasks that are associated with the replication instance before you can delete it. - * // - * // + * + * * const input = { - * "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ" + * ReplicationInstanceArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ" * }; * const command = new DeleteReplicationInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicationInstance": { - * "AllocatedStorage": 5, - * "AutoMinorVersionUpgrade": true, - * "EngineVersion": "1.5.0", - * "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd", - * "PendingModifiedValues": {}, - * "PreferredMaintenanceWindow": "sun:06:00-sun:14:00", - * "PubliclyAccessible": true, - * "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", - * "ReplicationInstanceClass": "dms.t2.micro", - * "ReplicationInstanceIdentifier": "test-rep-1", - * "ReplicationInstanceStatus": "creating", - * "ReplicationSubnetGroup": { - * "ReplicationSubnetGroupDescription": "default", - * "ReplicationSubnetGroupIdentifier": "default", - * "SubnetGroupStatus": "Complete", - * "Subnets": [ + * ReplicationInstance: { + * AllocatedStorage: 5, + * AutoMinorVersionUpgrade: true, + * EngineVersion: "1.5.0", + * KmsKeyId: "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd", + * PendingModifiedValues: { /* empty *\/ }, + * PreferredMaintenanceWindow: "sun:06:00-sun:14:00", + * PubliclyAccessible: true, + * ReplicationInstanceArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", + * ReplicationInstanceClass: "dms.t2.micro", + * ReplicationInstanceIdentifier: "test-rep-1", + * ReplicationInstanceStatus: "creating", + * ReplicationSubnetGroup: { + * ReplicationSubnetGroupDescription: "default", + * ReplicationSubnetGroupIdentifier: "default", + * SubnetGroupStatus: "Complete", + * Subnets: [ * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1d" + * SubnetAvailabilityZone: { + * Name: "us-east-1d" * }, - * "SubnetIdentifier": "subnet-f6dd91af", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-f6dd91af", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1b" + * SubnetAvailabilityZone: { + * Name: "us-east-1b" * }, - * "SubnetIdentifier": "subnet-3605751d", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-3605751d", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1c" + * SubnetAvailabilityZone: { + * Name: "us-east-1c" * }, - * "SubnetIdentifier": "subnet-c2daefb5", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-c2daefb5", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1e" + * SubnetAvailabilityZone: { + * Name: "us-east-1e" * }, - * "SubnetIdentifier": "subnet-85e90cb8", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-85e90cb8", + * SubnetStatus: "Active" * } * ], - * "VpcId": "vpc-6741a603" + * VpcId: "vpc-6741a603" * } * } * } * *\/ - * // example id: delete-replication-instance-1481752552839 * ``` * + * @public */ export class DeleteReplicationInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DeleteReplicationSubnetGroupCommand.ts b/clients/client-database-migration-service/src/commands/DeleteReplicationSubnetGroupCommand.ts index 2a4790378ecef..e996b9ebf8179 100644 --- a/clients/client-database-migration-service/src/commands/DeleteReplicationSubnetGroupCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteReplicationSubnetGroupCommand.ts @@ -72,18 +72,21 @@ export interface DeleteReplicationSubnetGroupCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Delete Replication Subnet Group * ```javascript * // Deletes a replication subnet group. * const input = { - * "ReplicationSubnetGroupIdentifier": "us-west-2ab-vpc-215ds366" + * ReplicationSubnetGroupIdentifier: "us-west-2ab-vpc-215ds366" * }; * const command = new DeleteReplicationSubnetGroupCommand(input); - * await client.send(command); - * // example id: delete-replication-subnet-group-1481752728597 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteReplicationSubnetGroupCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DeleteReplicationTaskAssessmentRunCommand.ts b/clients/client-database-migration-service/src/commands/DeleteReplicationTaskAssessmentRunCommand.ts index d6059347bd8ca..e3a1fac2754e6 100644 --- a/clients/client-database-migration-service/src/commands/DeleteReplicationTaskAssessmentRunCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteReplicationTaskAssessmentRunCommand.ts @@ -105,6 +105,7 @@ export interface DeleteReplicationTaskAssessmentRunCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DeleteReplicationTaskAssessmentRunCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DeleteReplicationTaskCommand.ts b/clients/client-database-migration-service/src/commands/DeleteReplicationTaskCommand.ts index 0a4fd21dc29e7..8336cf6a8cbf5 100644 --- a/clients/client-database-migration-service/src/commands/DeleteReplicationTaskCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteReplicationTaskCommand.ts @@ -97,34 +97,34 @@ export interface DeleteReplicationTaskCommandOutput extends DeleteReplicationTas * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Delete Replication Task * ```javascript * // Deletes the specified replication task. * const input = { - * "ReplicationTaskArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ" + * ReplicationTaskArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ" * }; * const command = new DeleteReplicationTaskCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicationTask": { - * "MigrationType": "full-load", - * "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", - * "ReplicationTaskArn": "arn:aws:dms:us-east-1:123456789012:task:OEAMB3NXSTZ6LFYZFEPPBBXPYM", - * "ReplicationTaskCreationDate": "2016-12-14T18:25:43Z", - * "ReplicationTaskIdentifier": "task1", - * "ReplicationTaskSettings": "{\"TargetMetadata\":{\"TargetSchema\":\"\",\"SupportLobs\":true,\"FullLobMode\":true,\"LobChunkSize\":64,\"LimitedSizeLobMode\":false,\"LobMaxSize\":0},\"FullLoadSettings\":{\"FullLoadEnabled\":true,\"ApplyChangesEnabled\":false,\"TargetTablePrepMode\":\"DROP_AND_CREATE\",\"CreatePkAfterFullLoad\":false,\"StopTaskCachedChangesApplied\":false,\"StopTaskCachedChangesNotApplied\":false,\"ResumeEnabled\":false,\"ResumeMinTableSize\":100000,\"ResumeOnlyClusteredPKTables\":true,\"MaxFullLoadSubTasks\":8,\"TransactionConsistencyTimeout\":600,\"CommitRate\":10000},\"Logging\":{\"EnableLogging\":false}}", - * "SourceEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE", - * "Status": "creating", - * "TableMappings": "file://mappingfile.json", - * "TargetEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E" + * ReplicationTask: { + * MigrationType: "full-load", + * ReplicationInstanceArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", + * ReplicationTaskArn: "arn:aws:dms:us-east-1:123456789012:task:OEAMB3NXSTZ6LFYZFEPPBBXPYM", + * ReplicationTaskCreationDate: "2016-12-14T18:25:43Z", + * ReplicationTaskIdentifier: "task1", + * ReplicationTaskSettings: `{"TargetMetadata":{"TargetSchema":"","SupportLobs":true,"FullLobMode":true,"LobChunkSize":64,"LimitedSizeLobMode":false,"LobMaxSize":0},"FullLoadSettings":{"FullLoadEnabled":true,"ApplyChangesEnabled":false,"TargetTablePrepMode":"DROP_AND_CREATE","CreatePkAfterFullLoad":false,"StopTaskCachedChangesApplied":false,"StopTaskCachedChangesNotApplied":false,"ResumeEnabled":false,"ResumeMinTableSize":100000,"ResumeOnlyClusteredPKTables":true,"MaxFullLoadSubTasks":8,"TransactionConsistencyTimeout":600,"CommitRate":10000},"Logging":{"EnableLogging":false}}`, + * SourceEndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE", + * Status: "creating", + * TableMappings: "file://mappingfile.json", + * TargetEndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E" * } * } * *\/ - * // example id: delete-replication-task-1481752903506 * ``` * + * @public */ export class DeleteReplicationTaskCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeAccountAttributesCommand.ts index 1328dc6374b80..dd383d940303a 100644 --- a/clients/client-database-migration-service/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeAccountAttributesCommand.ts @@ -70,37 +70,37 @@ export interface DescribeAccountAttributesCommandOutput extends DescribeAccountA * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe acount attributes * ```javascript * // Lists all of the AWS DMS attributes for a customer account. The attributes include AWS DMS quotas for the account, such as the number of replication instances allowed. The description for a quota includes the quota name, current usage toward that quota, and the quota's maximum value. This operation does not take any parameters. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeAccountAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AccountQuotas": [ + * AccountQuotas: [ * { - * "AccountQuotaName": "ReplicationInstances", - * "Max": 20, - * "Used": 0 + * AccountQuotaName: "ReplicationInstances", + * Max: 20, + * Used: 0 * }, * { - * "AccountQuotaName": "AllocatedStorage", - * "Max": 20, - * "Used": 0 + * AccountQuotaName: "AllocatedStorage", + * Max: 20, + * Used: 0 * }, * { - * "AccountQuotaName": "Endpoints", - * "Max": 20, - * "Used": 0 + * AccountQuotaName: "Endpoints", + * Max: 20, + * Used: 0 * } * ] * } * *\/ - * // example id: describe-acount-attributes-1481753085663 * ``` * + * @public */ export class DescribeAccountAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeApplicableIndividualAssessmentsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeApplicableIndividualAssessmentsCommand.ts index 08b3ab4b1b455..9835a1d433e19 100644 --- a/clients/client-database-migration-service/src/commands/DescribeApplicableIndividualAssessmentsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeApplicableIndividualAssessmentsCommand.ts @@ -103,6 +103,7 @@ export interface DescribeApplicableIndividualAssessmentsCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeApplicableIndividualAssessmentsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeCertificatesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeCertificatesCommand.ts index 55d19a484445b..d8ad0f4e45288 100644 --- a/clients/client-database-migration-service/src/commands/DescribeCertificatesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeCertificatesCommand.ts @@ -85,34 +85,34 @@ export interface DescribeCertificatesCommandOutput extends DescribeCertificatesR * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe certificates * ```javascript * // Provides a description of the certificate. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "string", - * "Values": [ + * Name: "string", + * Values: [ * "string", * "string" * ] * } * ], - * "Marker": "", - * "MaxRecords": 123 + * Marker: "", + * MaxRecords: 123 * }; * const command = new DescribeCertificatesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Certificates": [], - * "Marker": "" + * Certificates: [], + * Marker: "" * } * *\/ - * // example id: describe-certificates-1481753186244 * ``` * + * @public */ export class DescribeCertificatesCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeConnectionsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeConnectionsCommand.ts index f78772444c796..39208395065ba 100644 --- a/clients/client-database-migration-service/src/commands/DescribeConnectionsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeConnectionsCommand.ts @@ -82,42 +82,42 @@ export interface DescribeConnectionsCommandOutput extends DescribeConnectionsRes * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe connections * ```javascript * // Describes the status of the connections that have been made between the replication instance and an endpoint. Connections are created when you test an endpoint. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "string", - * "Values": [ + * Name: "string", + * Values: [ * "string", * "string" * ] * } * ], - * "Marker": "", - * "MaxRecords": 123 + * Marker: "", + * MaxRecords: 123 * }; * const command = new DescribeConnectionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Connections": [ + * Connections: [ * { - * "EndpointArn": "arn:aws:dms:us-east-arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE", - * "EndpointIdentifier": "testsrc1", - * "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", - * "ReplicationInstanceIdentifier": "test", - * "Status": "successful" + * EndpointArn: "arn:aws:dms:us-east-arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE", + * EndpointIdentifier: "testsrc1", + * ReplicationInstanceArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", + * ReplicationInstanceIdentifier: "test", + * Status: "successful" * } * ], - * "Marker": "" + * Marker: "" * } * *\/ - * // example id: describe-connections-1481754477953 * ``` * + * @public */ export class DescribeConnectionsCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeConversionConfigurationCommand.ts b/clients/client-database-migration-service/src/commands/DescribeConversionConfigurationCommand.ts index 30189fb18c9c9..dcc13a27552a7 100644 --- a/clients/client-database-migration-service/src/commands/DescribeConversionConfigurationCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeConversionConfigurationCommand.ts @@ -68,24 +68,24 @@ export interface DescribeConversionConfigurationCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe Conversion Configuration * ```javascript * // Returns configuration parameters for a schema conversion project. * const input = { - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" * }; * const command = new DescribeConversionConfigurationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ConversionConfiguration": "{\"Common project settings\":{\"ShowSeverityLevelInSql\":\"CRITICAL\"},\"ORACLE_TO_POSTGRESQL\" : {\"ToTimeZone\":false,\"LastDayBuiltinFunctionOracle\":false, \"NextDayBuiltinFunctionOracle\":false,\"ConvertProceduresToFunction\":false,\"NvlBuiltinFunctionOracle\":false,\"DbmsAssertBuiltinFunctionOracle\":false}}", - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" + * ConversionConfiguration: `{"Common project settings":{"ShowSeverityLevelInSql":"CRITICAL"},"ORACLE_TO_POSTGRESQL" : {"ToTimeZone":false,"LastDayBuiltinFunctionOracle":false, "NextDayBuiltinFunctionOracle":false,"ConvertProceduresToFunction":false,"NvlBuiltinFunctionOracle":false,"DbmsAssertBuiltinFunctionOracle":false}}`, + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" * } * *\/ - * // example id: describe-conversion-configuration-1689717690907 * ``` * + * @public */ export class DescribeConversionConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeDataMigrationsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeDataMigrationsCommand.ts index d733029b5c527..cef83749d661f 100644 --- a/clients/client-database-migration-service/src/commands/DescribeDataMigrationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeDataMigrationsCommand.ts @@ -133,6 +133,7 @@ export interface DescribeDataMigrationsCommandOutput extends DescribeDataMigrati * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeDataMigrationsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeDataProvidersCommand.ts b/clients/client-database-migration-service/src/commands/DescribeDataProvidersCommand.ts index 1410040cf475b..8f5ad3be2292b 100644 --- a/clients/client-database-migration-service/src/commands/DescribeDataProvidersCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeDataProvidersCommand.ts @@ -164,48 +164,48 @@ export interface DescribeDataProvidersCommandOutput extends DescribeDataProvider * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe Data Providers * ```javascript * // * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "data-provider-identifier", - * "Values": [ + * Name: "data-provider-identifier", + * Values: [ * "arn:aws:dms:us-east-1:012345678901:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" * ] * } * ], - * "Marker": "EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", - * "MaxRecords": 20 + * Marker: "EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", + * MaxRecords: 20 * }; * const command = new DescribeDataProvidersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DataProviders": [ + * DataProviders: [ * { - * "DataProviderArn": "arn:aws:dms:us-east-1:012345678901:data-provider:my-target-data-provider", - * "DataProviderCreationTime": "2023-05-12T10:50:41.988561Z", - * "DataProviderName": "my-target-data-provider", - * "Engine": "postgres", - * "Settings": { - * "PostgreSqlSettings": { - * "DatabaseName": "target", - * "Port": 5432, - * "ServerName": "postrgesql.0a1b2c3d4e5f.us-east-1.rds.amazonaws.com", - * "SslMode": "none" + * DataProviderArn: "arn:aws:dms:us-east-1:012345678901:data-provider:my-target-data-provider", + * DataProviderCreationTime: "2023-05-12T10:50:41.988561Z", + * DataProviderName: "my-target-data-provider", + * Engine: "postgres", + * Settings: { + * PostgreSqlSettings: { + * DatabaseName: "target", + * Port: 5432, + * ServerName: "postrgesql.0a1b2c3d4e5f.us-east-1.rds.amazonaws.com", + * SslMode: "none" * } * } * } * ], - * "Marker": "EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" + * Marker: "EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" * } * *\/ - * // example id: describe-data-providers-1689725897156 * ``` * + * @public */ export class DescribeDataProvidersCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeEndpointSettingsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeEndpointSettingsCommand.ts index 3cb285e8ed0e8..ceedb5f1717bb 100644 --- a/clients/client-database-migration-service/src/commands/DescribeEndpointSettingsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeEndpointSettingsCommand.ts @@ -77,6 +77,7 @@ export interface DescribeEndpointSettingsCommandOutput extends DescribeEndpointS * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeEndpointSettingsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeEndpointTypesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeEndpointTypesCommand.ts index 5efeea9b848f6..500641e71e73d 100644 --- a/clients/client-database-migration-service/src/commands/DescribeEndpointTypesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeEndpointTypesCommand.ts @@ -77,34 +77,34 @@ export interface DescribeEndpointTypesCommandOutput extends DescribeEndpointType * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe endpoint types * ```javascript * // Returns information about the type of endpoints available. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "string", - * "Values": [ + * Name: "string", + * Values: [ * "string", * "string" * ] * } * ], - * "Marker": "", - * "MaxRecords": 123 + * Marker: "", + * MaxRecords: 123 * }; * const command = new DescribeEndpointTypesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "", - * "SupportedEndpointTypes": [] + * Marker: "", + * SupportedEndpointTypes: [] * } * *\/ - * // example id: describe-endpoint-types-1481754742591 * ``` * + * @public */ export class DescribeEndpointTypesCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeEndpointsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeEndpointsCommand.ts index 06e169806ed54..f5a5365d55495 100644 --- a/clients/client-database-migration-service/src/commands/DescribeEndpointsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeEndpointsCommand.ts @@ -433,34 +433,34 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe endpoints * ```javascript * // Returns information about the endpoints for your account in the current region. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "string", - * "Values": [ + * Name: "string", + * Values: [ * "string", * "string" * ] * } * ], - * "Marker": "", - * "MaxRecords": 123 + * Marker: "", + * MaxRecords: 123 * }; * const command = new DescribeEndpointsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Endpoints": [], - * "Marker": "" + * Endpoints: [], + * Marker: "" * } * *\/ - * // example id: describe-endpoints-1481754926060 * ``` * + * @public */ export class DescribeEndpointsCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeEngineVersionsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeEngineVersionsCommand.ts index 80e006bd9659e..82beb0e95846b 100644 --- a/clients/client-database-migration-service/src/commands/DescribeEngineVersionsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeEngineVersionsCommand.ts @@ -74,6 +74,7 @@ export interface DescribeEngineVersionsCommandOutput extends DescribeEngineVersi * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeEngineVersionsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeEventCategoriesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeEventCategoriesCommand.ts index 150e64426605f..52f10c788150d 100644 --- a/clients/client-database-migration-service/src/commands/DescribeEventCategoriesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeEventCategoriesCommand.ts @@ -77,6 +77,7 @@ export interface DescribeEventCategoriesCommandOutput extends DescribeEventCateg * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeEventCategoriesCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeEventSubscriptionsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeEventSubscriptionsCommand.ts index 8dd7f6c2fbab0..c2aceaf7e559e 100644 --- a/clients/client-database-migration-service/src/commands/DescribeEventSubscriptionsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeEventSubscriptionsCommand.ts @@ -94,6 +94,7 @@ export interface DescribeEventSubscriptionsCommandOutput extends DescribeEventSu * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeEventSubscriptionsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeEventsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeEventsCommand.ts index 9941776f879f6..b708d04998202 100644 --- a/clients/client-database-migration-service/src/commands/DescribeEventsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeEventsCommand.ts @@ -90,6 +90,7 @@ export interface DescribeEventsCommandOutput extends DescribeEventsResponse, __M * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeEventsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeExtensionPackAssociationsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeExtensionPackAssociationsCommand.ts index 454ce2cbc1b39..48e8d231d4f34 100644 --- a/clients/client-database-migration-service/src/commands/DescribeExtensionPackAssociationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeExtensionPackAssociationsCommand.ts @@ -95,40 +95,40 @@ export interface DescribeExtensionPackAssociationsCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe Extension Pack Associations * ```javascript * // Returns a paginated list of extension pack associations for the specified migration project. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "instance-profile-identifier", - * "Values": [ + * Name: "instance-profile-identifier", + * Values: [ * "arn:aws:dms:us-east-1:012345678901:instance-profile:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" * ] * } * ], - * "Marker": "0123456789abcdefghijklmnopqrs", - * "MaxRecords": 20, - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" + * Marker: "0123456789abcdefghijklmnopqrs", + * MaxRecords: 20, + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" * }; * const command = new DescribeExtensionPackAssociationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "0123456789abcdefghijklmnopqrs", - * "Requests": [ + * Marker: "0123456789abcdefghijklmnopqrs", + * Requests: [ * { - * "MigrationProjectArn": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "RequestIdentifier": "01234567-89ab-cdef-0123-456789abcdef", - * "Status": "SUCCESS" + * MigrationProjectArn: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * RequestIdentifier: "01234567-89ab-cdef-0123-456789abcdef", + * Status: "SUCCESS" * } * ] * } * *\/ - * // example id: describe-extension-pack-associations-1689718322580 * ``` * + * @public */ export class DescribeExtensionPackAssociationsCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorCollectorsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorCollectorsCommand.ts index 32eddeb912f90..d65710688ffc0 100644 --- a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorCollectorsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorCollectorsCommand.ts @@ -101,6 +101,7 @@ export interface DescribeFleetAdvisorCollectorsCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeFleetAdvisorCollectorsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorDatabasesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorDatabasesCommand.ts index 8cfcebfd61b47..4a2aa15acf779 100644 --- a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorDatabasesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorDatabasesCommand.ts @@ -104,6 +104,7 @@ export interface DescribeFleetAdvisorDatabasesCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeFleetAdvisorDatabasesCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorLsaAnalysisCommand.ts b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorLsaAnalysisCommand.ts index 597591dc28f6f..79ccbc6078169 100644 --- a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorLsaAnalysisCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorLsaAnalysisCommand.ts @@ -75,6 +75,7 @@ export interface DescribeFleetAdvisorLsaAnalysisCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeFleetAdvisorLsaAnalysisCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemaObjectSummaryCommand.ts b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemaObjectSummaryCommand.ts index 4229891258702..9e4252bd9341d 100644 --- a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemaObjectSummaryCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemaObjectSummaryCommand.ts @@ -90,6 +90,7 @@ export interface DescribeFleetAdvisorSchemaObjectSummaryCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeFleetAdvisorSchemaObjectSummaryCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemasCommand.ts b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemasCommand.ts index ae6b381d2fea7..da0f7ee15174d 100644 --- a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemasCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemasCommand.ts @@ -101,6 +101,7 @@ export interface DescribeFleetAdvisorSchemasCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeFleetAdvisorSchemasCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeInstanceProfilesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeInstanceProfilesCommand.ts index ea85596ad5542..78a83ce1f9c53 100644 --- a/clients/client-database-migration-service/src/commands/DescribeInstanceProfilesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeInstanceProfilesCommand.ts @@ -95,43 +95,43 @@ export interface DescribeInstanceProfilesCommandOutput extends DescribeInstanceP * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe Instance Profiles * ```javascript * // Returns a paginated list of instance profiles for your account in the current region. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "instance-profile-identifier", - * "Values": [ + * Name: "instance-profile-identifier", + * Values: [ * "arn:aws:dms:us-east-1:012345678901:instance-profile:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" * ] * } * ], - * "Marker": "0123456789abcdefghijklmnopqrs", - * "MaxRecords": 20 + * Marker: "0123456789abcdefghijklmnopqrs", + * MaxRecords: 20 * }; * const command = new DescribeInstanceProfilesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InstanceProfiles": [ + * InstanceProfiles: [ * { - * "InstanceProfileArn": "arn:aws:dms:us-east-1:012345678901:instance-profile:my-instance-profile", - * "InstanceProfileCreationTime": "2022-12-16T09:44:43.543246Z", - * "InstanceProfileName": "my-instance-profile", - * "KmsKeyArn": "arn:aws:kms:us-east-1:012345678901:key/01234567-89ab-cdef-0123-456789abcdef", - * "PubliclyAccessible": true, - * "SubnetGroupIdentifier": "public-subnets", - * "VpcIdentifier": "vpc-0a1b2c3d4e5f6g7h8" + * InstanceProfileArn: "arn:aws:dms:us-east-1:012345678901:instance-profile:my-instance-profile", + * InstanceProfileCreationTime: "2022-12-16T09:44:43.543246Z", + * InstanceProfileName: "my-instance-profile", + * KmsKeyArn: "arn:aws:kms:us-east-1:012345678901:key/01234567-89ab-cdef-0123-456789abcdef", + * PubliclyAccessible: true, + * SubnetGroupIdentifier: "public-subnets", + * VpcIdentifier: "vpc-0a1b2c3d4e5f6g7h8" * } * ], - * "Marker": "0123456789abcdefghijklmnopqrs" + * Marker: "0123456789abcdefghijklmnopqrs" * } * *\/ - * // example id: describe-instance-profiles-1689718406840 * ``` * + * @public */ export class DescribeInstanceProfilesCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeMetadataModelAssessmentsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMetadataModelAssessmentsCommand.ts index 610d06c783564..4262fcacc2371 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMetadataModelAssessmentsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMetadataModelAssessmentsCommand.ts @@ -94,40 +94,40 @@ export interface DescribeMetadataModelAssessmentsCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe Metadata Model Assessments * ```javascript * // Returns a paginated list of metadata model assessments for your account in the current region. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "my-migration-project", - * "Values": [ + * Name: "my-migration-project", + * Values: [ * "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" * ] * } * ], - * "Marker": "0123456789abcdefghijklmnopqrs", - * "MaxRecords": 20, - * "MigrationProjectIdentifier": "" + * Marker: "0123456789abcdefghijklmnopqrs", + * MaxRecords: 20, + * MigrationProjectIdentifier: "" * }; * const command = new DescribeMetadataModelAssessmentsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "ASDLKJASDJKHDFHGDNBGDASKJHGFK", - * "Requests": [ + * Marker: "ASDLKJASDJKHDFHGDNBGDASKJHGFK", + * Requests: [ * { - * "MigrationProjectArn": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "RequestIdentifier": "01234567-89ab-cdef-0123-456789abcdef", - * "Status": "SUCCESS" + * MigrationProjectArn: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * RequestIdentifier: "01234567-89ab-cdef-0123-456789abcdef", + * Status: "SUCCESS" * } * ] * } * *\/ - * // example id: describe-metadata-model-assessments-1689718702303 * ``` * + * @public */ export class DescribeMetadataModelAssessmentsCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeMetadataModelConversionsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMetadataModelConversionsCommand.ts index 7b53152c28e3f..efba0d586c00c 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMetadataModelConversionsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMetadataModelConversionsCommand.ts @@ -93,40 +93,40 @@ export interface DescribeMetadataModelConversionsCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe Metadata Model Conversions * ```javascript * // Returns a paginated list of metadata model conversions for a migration project. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "request-id", - * "Values": [ + * Name: "request-id", + * Values: [ * "01234567-89ab-cdef-0123-456789abcdef" * ] * } * ], - * "Marker": "EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ123456", - * "MaxRecords": 123, - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" + * Marker: "EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ123456", + * MaxRecords: 123, + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345" * }; * const command = new DescribeMetadataModelConversionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "0123456789abcdefghijklmnopqrs", - * "Requests": [ + * Marker: "0123456789abcdefghijklmnopqrs", + * Requests: [ * { - * "MigrationProjectArn": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "RequestIdentifier": "01234567-89ab-cdef-0123-456789abcdef", - * "Status": "SUCCESS" + * MigrationProjectArn: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * RequestIdentifier: "01234567-89ab-cdef-0123-456789abcdef", + * Status: "SUCCESS" * } * ] * } * *\/ - * // example id: describe-metadata-model-conversions-1689719021495 * ``` * + * @public */ export class DescribeMetadataModelConversionsCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsAsScriptCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsAsScriptCommand.ts index 47a36d9c6fb76..e4cd940a40fde 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsAsScriptCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsAsScriptCommand.ts @@ -96,40 +96,40 @@ export interface DescribeMetadataModelExportsAsScriptCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe Metadata Model Exports As Script * ```javascript * // Returns a paginated list of metadata model exports. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "request-id", - * "Values": [ + * Name: "request-id", + * Values: [ * "01234567-89ab-cdef-0123-456789abcdef" * ] * } * ], - * "Marker": "0123456789abcdefghijklmnopqrs", - * "MaxRecords": 20, - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" + * Marker: "0123456789abcdefghijklmnopqrs", + * MaxRecords: 20, + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" * }; * const command = new DescribeMetadataModelExportsAsScriptCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "0123456789abcdefghijklmnopqrs", - * "Requests": [ + * Marker: "0123456789abcdefghijklmnopqrs", + * Requests: [ * { - * "MigrationProjectArn": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "RequestIdentifier": "01234567-89ab-cdef-0123-456789abcdef", - * "Status": "SUCCESS" + * MigrationProjectArn: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * RequestIdentifier: "01234567-89ab-cdef-0123-456789abcdef", + * Status: "SUCCESS" * } * ] * } * *\/ - * // example id: describe-metadata-model-exports-as-script-1689719253938 * ``` * + * @public */ export class DescribeMetadataModelExportsAsScriptCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsToTargetCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsToTargetCommand.ts index 247dd5849bc00..720ce2baec1a1 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsToTargetCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsToTargetCommand.ts @@ -96,40 +96,40 @@ export interface DescribeMetadataModelExportsToTargetCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe Metadata Model Exports To Target * ```javascript * // Returns a paginated list of metadata model exports. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "request-id", - * "Values": [ + * Name: "request-id", + * Values: [ * "01234567-89ab-cdef-0123-456789abcdef" * ] * } * ], - * "Marker": "0123456789abcdefghijklmnopqrs", - * "MaxRecords": 20, - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" + * Marker: "0123456789abcdefghijklmnopqrs", + * MaxRecords: 20, + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" * }; * const command = new DescribeMetadataModelExportsToTargetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "0123456789abcdefghijklmnopqrs", - * "Requests": [ + * Marker: "0123456789abcdefghijklmnopqrs", + * Requests: [ * { - * "MigrationProjectArn": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "RequestIdentifier": "01234567-89ab-cdef-0123-456789abcdef", - * "Status": "SUCCESS" + * MigrationProjectArn: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * RequestIdentifier: "01234567-89ab-cdef-0123-456789abcdef", + * Status: "SUCCESS" * } * ] * } * *\/ - * // example id: describe-metadata-model-exports-to-target-1689719484750 * ``` * + * @public */ export class DescribeMetadataModelExportsToTargetCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeMetadataModelImportsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMetadataModelImportsCommand.ts index 5b2afdc61fba1..810fd492536b3 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMetadataModelImportsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMetadataModelImportsCommand.ts @@ -93,40 +93,40 @@ export interface DescribeMetadataModelImportsCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe Metadata Model Imports * ```javascript * // Returns a paginated list of metadata model imports. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "request-id", - * "Values": [ + * Name: "request-id", + * Values: [ * "01234567-89ab-cdef-0123-456789abcdef" * ] * } * ], - * "Marker": "0123456789abcdefghijklmnopqrs", - * "MaxRecords": 20, - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" + * Marker: "0123456789abcdefghijklmnopqrs", + * MaxRecords: 20, + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" * }; * const command = new DescribeMetadataModelImportsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "0123456789abcdefghijklmnopqrs", - * "Requests": [ + * Marker: "0123456789abcdefghijklmnopqrs", + * Requests: [ * { - * "MigrationProjectArn": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "RequestIdentifier": "01234567-89ab-cdef-0123-456789abcdef", - * "Status": "SUCCESS" + * MigrationProjectArn: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * RequestIdentifier: "01234567-89ab-cdef-0123-456789abcdef", + * Status: "SUCCESS" * } * ] * } * *\/ - * // example id: describe-metadata-model-imports-1689719771322 * ``` * + * @public */ export class DescribeMetadataModelImportsCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeMigrationProjectsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMigrationProjectsCommand.ts index b94911a3398cc..fd0d5b4db90dd 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMigrationProjectsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMigrationProjectsCommand.ts @@ -110,61 +110,61 @@ export interface DescribeMigrationProjectsCommandOutput extends DescribeMigratio * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe Migration Projects * ```javascript * // Returns a paginated list of migration projects for your account in the current region. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "migration-project-identifier", - * "Values": [ + * Name: "migration-project-identifier", + * Values: [ * "arn:aws:dms:us-east-1:012345678901:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901" * ] * } * ], - * "Marker": "EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ123456", - * "MaxRecords": 20 + * Marker: "EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ123456", + * MaxRecords: 20 * }; * const command = new DescribeMigrationProjectsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "0123456789abcdefghijklmnopqrs", - * "MigrationProjects": [ + * Marker: "0123456789abcdefghijklmnopqrs", + * MigrationProjects: [ * { - * "InstanceProfileArn": "arn:aws:dms:us-east-1:012345678901:instance-profile:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "InstanceProfileName": "my-instance-profile", - * "MigrationProjectArn": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "MigrationProjectCreationTime": "2023-04-19T11:45:15.805253Z", - * "MigrationProjectName": "my-migration-project", - * "SchemaConversionApplicationAttributes": { - * "S3BucketPath": "my-s3-bucket/my_folder", - * "S3BucketRoleArn": "arn:aws:iam::012345678901:role/my-s3role" + * InstanceProfileArn: "arn:aws:dms:us-east-1:012345678901:instance-profile:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * InstanceProfileName: "my-instance-profile", + * MigrationProjectArn: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * MigrationProjectCreationTime: "2023-04-19T11:45:15.805253Z", + * MigrationProjectName: "my-migration-project", + * SchemaConversionApplicationAttributes: { + * S3BucketPath: "my-s3-bucket/my_folder", + * S3BucketRoleArn: "arn:aws:iam::012345678901:role/my-s3role" * }, - * "SourceDataProviderDescriptors": [ + * SourceDataProviderDescriptors: [ * { - * "DataProviderArn": "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "DataProviderName": "all-source-oracle-12", - * "SecretsManagerAccessRoleArn": "arn:aws:iam::012345678901:role/my-access-role", - * "SecretsManagerSecretId": "arn:aws:secretsmanager:us-east-1:012345678901:secret:mygroup/myalias/ALL.SOURCE.ORACLE_12-012345" + * DataProviderArn: "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * DataProviderName: "all-source-oracle-12", + * SecretsManagerAccessRoleArn: "arn:aws:iam::012345678901:role/my-access-role", + * SecretsManagerSecretId: "arn:aws:secretsmanager:us-east-1:012345678901:secret:mygroup/myalias/ALL.SOURCE.ORACLE_12-012345" * } * ], - * "TargetDataProviderDescriptors": [ + * TargetDataProviderDescriptors: [ * { - * "DataProviderArn": "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "DataProviderName": "my-data-provider", - * "SecretsManagerAccessRoleArn": "arn:aws:iam::012345678901:role/dmytbon-admin-access", - * "SecretsManagerSecretId": "arn:aws:secretsmanager:us-east-1:012345678901:secret:mygroup/myalias/TARGET.postgresql-012345" + * DataProviderArn: "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * DataProviderName: "my-data-provider", + * SecretsManagerAccessRoleArn: "arn:aws:iam::012345678901:role/dmytbon-admin-access", + * SecretsManagerSecretId: "arn:aws:secretsmanager:us-east-1:012345678901:secret:mygroup/myalias/TARGET.postgresql-012345" * } * ] * } * ] * } * *\/ - * // example id: describe-migration-projects-1689719912075 * ``` * + * @public */ export class DescribeMigrationProjectsCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeOrderableReplicationInstancesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeOrderableReplicationInstancesCommand.ts index 35f7e0c489cfa..ee44da52c6856 100644 --- a/clients/client-database-migration-service/src/commands/DescribeOrderableReplicationInstancesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeOrderableReplicationInstancesCommand.ts @@ -85,25 +85,25 @@ export interface DescribeOrderableReplicationInstancesCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe orderable replication instances * ```javascript * // Returns information about the replication instance types that can be created in the specified region. * const input = { - * "Marker": "", - * "MaxRecords": 123 + * Marker: "", + * MaxRecords: 123 * }; * const command = new DescribeOrderableReplicationInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "", - * "OrderableReplicationInstances": [] + * Marker: "", + * OrderableReplicationInstances: [] * } * *\/ - * // example id: describe-orderable-replication-instances-1481755123669 * ``` * + * @public */ export class DescribeOrderableReplicationInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribePendingMaintenanceActionsCommand.ts b/clients/client-database-migration-service/src/commands/DescribePendingMaintenanceActionsCommand.ts index d88d3b424d3d6..ae8556614f728 100644 --- a/clients/client-database-migration-service/src/commands/DescribePendingMaintenanceActionsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribePendingMaintenanceActionsCommand.ts @@ -96,6 +96,7 @@ export interface DescribePendingMaintenanceActionsCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribePendingMaintenanceActionsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeRecommendationLimitationsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeRecommendationLimitationsCommand.ts index 8bf6cc65a3a1f..5d9495ff5558c 100644 --- a/clients/client-database-migration-service/src/commands/DescribeRecommendationLimitationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeRecommendationLimitationsCommand.ts @@ -94,6 +94,7 @@ export interface DescribeRecommendationLimitationsCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeRecommendationLimitationsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeRecommendationsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeRecommendationsCommand.ts index 3fa513e03f8a0..f54a0ddc15036 100644 --- a/clients/client-database-migration-service/src/commands/DescribeRecommendationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeRecommendationsCommand.ts @@ -113,6 +113,7 @@ export interface DescribeRecommendationsCommandOutput extends DescribeRecommenda * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeRecommendationsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeRefreshSchemasStatusCommand.ts b/clients/client-database-migration-service/src/commands/DescribeRefreshSchemasStatusCommand.ts index 79752d305c5da..6a2da3b638ca7 100644 --- a/clients/client-database-migration-service/src/commands/DescribeRefreshSchemasStatusCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeRefreshSchemasStatusCommand.ts @@ -76,23 +76,23 @@ export interface DescribeRefreshSchemasStatusCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe refresh schema status * ```javascript * // Returns the status of the refresh-schemas operation. * const input = { - * "EndpointArn": "" + * EndpointArn: "" * }; * const command = new DescribeRefreshSchemasStatusCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RefreshSchemasStatus": {} + * RefreshSchemasStatus: { /* empty *\/ } * } * *\/ - * // example id: describe-refresh-schema-status-1481755303497 * ``` * + * @public */ export class DescribeRefreshSchemasStatusCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationConfigsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationConfigsCommand.ts index b30687ec022f5..be1ca13eff968 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationConfigsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationConfigsCommand.ts @@ -99,6 +99,7 @@ export interface DescribeReplicationConfigsCommandOutput extends DescribeReplica * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeReplicationConfigsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationInstanceTaskLogsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationInstanceTaskLogsCommand.ts index 54b4654095e00..dd58dbd8f1724 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationInstanceTaskLogsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationInstanceTaskLogsCommand.ts @@ -83,6 +83,7 @@ export interface DescribeReplicationInstanceTaskLogsCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeReplicationInstanceTaskLogsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationInstancesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationInstancesCommand.ts index 95ec19b788ba4..047834eb54d0b 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationInstancesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationInstancesCommand.ts @@ -145,34 +145,34 @@ export interface DescribeReplicationInstancesCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe replication instances * ```javascript * // Returns the status of the refresh-schemas operation. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "string", - * "Values": [ + * Name: "string", + * Values: [ * "string", * "string" * ] * } * ], - * "Marker": "", - * "MaxRecords": 123 + * Marker: "", + * MaxRecords: 123 * }; * const command = new DescribeReplicationInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "", - * "ReplicationInstances": [] + * Marker: "", + * ReplicationInstances: [] * } * *\/ - * // example id: describe-replication-instances-1481755443952 * ``` * + * @public */ export class DescribeReplicationInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationSubnetGroupsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationSubnetGroupsCommand.ts index d60b26982afa7..b16255ccc058f 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationSubnetGroupsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationSubnetGroupsCommand.ts @@ -96,34 +96,34 @@ export interface DescribeReplicationSubnetGroupsCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe replication subnet groups * ```javascript * // Returns information about the replication subnet groups. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "string", - * "Values": [ + * Name: "string", + * Values: [ * "string", * "string" * ] * } * ], - * "Marker": "", - * "MaxRecords": 123 + * Marker: "", + * MaxRecords: 123 * }; * const command = new DescribeReplicationSubnetGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "", - * "ReplicationSubnetGroups": [] + * Marker: "", + * ReplicationSubnetGroups: [] * } * *\/ - * // example id: describe-replication-subnet-groups-1481755621284 * ``` * + * @public */ export class DescribeReplicationSubnetGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationTableStatisticsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationTableStatisticsCommand.ts index 7bd991ee9fb9e..2a7339dce63cd 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationTableStatisticsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationTableStatisticsCommand.ts @@ -112,6 +112,7 @@ export interface DescribeReplicationTableStatisticsCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeReplicationTableStatisticsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentResultsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentResultsCommand.ts index b0940e748fd26..d68de07120a50 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentResultsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentResultsCommand.ts @@ -89,6 +89,7 @@ export interface DescribeReplicationTaskAssessmentResultsCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeReplicationTaskAssessmentResultsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentRunsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentRunsCommand.ts index 37d1d3ee8211b..711654a939b29 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentRunsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentRunsCommand.ts @@ -116,6 +116,7 @@ export interface DescribeReplicationTaskAssessmentRunsCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeReplicationTaskAssessmentRunsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationTaskIndividualAssessmentsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationTaskIndividualAssessmentsCommand.ts index 9e94bff793ca7..e5be6b061f708 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationTaskIndividualAssessmentsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationTaskIndividualAssessmentsCommand.ts @@ -91,6 +91,7 @@ export interface DescribeReplicationTaskIndividualAssessmentsCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeReplicationTaskIndividualAssessmentsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationTasksCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationTasksCommand.ts index c2d07fa436f1e..ac27ec79cff52 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationTasksCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationTasksCommand.ts @@ -108,34 +108,34 @@ export interface DescribeReplicationTasksCommandOutput extends DescribeReplicati * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe replication tasks * ```javascript * // Returns information about replication tasks for your account in the current region. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "string", - * "Values": [ + * Name: "string", + * Values: [ * "string", * "string" * ] * } * ], - * "Marker": "", - * "MaxRecords": 123 + * Marker: "", + * MaxRecords: 123 * }; * const command = new DescribeReplicationTasksCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "", - * "ReplicationTasks": [] + * Marker: "", + * ReplicationTasks: [] * } * *\/ - * // example id: describe-replication-tasks-1481755777563 * ``` * + * @public */ export class DescribeReplicationTasksCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationsCommand.ts index 1468e2f21d861..19dee9a203f99 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationsCommand.ts @@ -141,6 +141,7 @@ export interface DescribeReplicationsCommandOutput extends DescribeReplicationsR * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class DescribeReplicationsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/DescribeSchemasCommand.ts b/clients/client-database-migration-service/src/commands/DescribeSchemasCommand.ts index 5404a42aea7e9..27aaa0b3f02bc 100644 --- a/clients/client-database-migration-service/src/commands/DescribeSchemasCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeSchemasCommand.ts @@ -71,26 +71,26 @@ export interface DescribeSchemasCommandOutput extends DescribeSchemasResponse, _ * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe schemas * ```javascript * // Returns information about the schema for the specified endpoint. * const input = { - * "EndpointArn": "", - * "Marker": "", - * "MaxRecords": 123 + * EndpointArn: "", + * Marker: "", + * MaxRecords: 123 * }; * const command = new DescribeSchemasCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "", - * "Schemas": [] + * Marker: "", + * Schemas: [] * } * *\/ - * // example id: describe-schemas-1481755933924 * ``` * + * @public */ export class DescribeSchemasCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/DescribeTableStatisticsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeTableStatisticsCommand.ts index f896f3c44dd13..bb08c7e74a00e 100644 --- a/clients/client-database-migration-service/src/commands/DescribeTableStatisticsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeTableStatisticsCommand.ts @@ -111,27 +111,27 @@ export interface DescribeTableStatisticsCommandOutput extends DescribeTableStati * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Describe table statistics * ```javascript * // Returns table statistics on the database migration task, including table name, rows inserted, rows updated, and rows deleted. * const input = { - * "Marker": "", - * "MaxRecords": 123, - * "ReplicationTaskArn": "" + * Marker: "", + * MaxRecords: 123, + * ReplicationTaskArn: "" * }; * const command = new DescribeTableStatisticsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "", - * "ReplicationTaskArn": "", - * "TableStatistics": [] + * Marker: "", + * ReplicationTaskArn: "", + * TableStatistics: [] * } * *\/ - * // example id: describe-table-statistics-1481756071890 * ``` * + * @public */ export class DescribeTableStatisticsCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/ExportMetadataModelAssessmentCommand.ts b/clients/client-database-migration-service/src/commands/ExportMetadataModelAssessmentCommand.ts index dbc901d70ee42..f489bf7b9426c 100644 --- a/clients/client-database-migration-service/src/commands/ExportMetadataModelAssessmentCommand.ts +++ b/clients/client-database-migration-service/src/commands/ExportMetadataModelAssessmentCommand.ts @@ -80,35 +80,35 @@ export interface ExportMetadataModelAssessmentCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Export Metadata Model Assessment * ```javascript * // Saves a copy of a database migration assessment report to your S3 bucket. DMS can save your assessment report as a comma-separated value (CSV) or a PDF file. * const input = { - * "AssessmentReportTypes": [ + * AssessmentReportTypes: [ * "pdf" * ], - * "FileName": "file", - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "SelectionRules": "{\"rules\": [{\"rule-type\": \"selection\",\"rule-id\": \"1\",\"rule-name\": \"1\",\"object-locator\": {\"server-name\": \"aurora-pg.cluster-a1b2c3d4e5f6.us-east-1.rds.amazonaws.com\", \"schema-name\": \"schema1\", \"table-name\": \"Cities\"},\"rule-action\": \"explicit\"} ]}" + * FileName: "file", + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * SelectionRules: `{"rules": [{"rule-type": "selection","rule-id": "1","rule-name": "1","object-locator": {"server-name": "aurora-pg.cluster-a1b2c3d4e5f6.us-east-1.rds.amazonaws.com", "schema-name": "schema1", "table-name": "Cities"},"rule-action": "explicit"} ]}` * }; * const command = new ExportMetadataModelAssessmentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CsvReport": { - * "ObjectURL": "url", - * "S3ObjectKey": "object-name" + * CsvReport: { + * ObjectURL: "url", + * S3ObjectKey: "object-name" * }, - * "PdfReport": { - * "ObjectURL": "url", - * "S3ObjectKey": "object-name" + * PdfReport: { + * ObjectURL: "url", + * S3ObjectKey: "object-name" * } * } * *\/ - * // example id: export-metadata-model-assessment-1689720309558 * ``` * + * @public */ export class ExportMetadataModelAssessmentCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/ImportCertificateCommand.ts b/clients/client-database-migration-service/src/commands/ImportCertificateCommand.ts index 76e08e537d7d3..f9ae3ec5c6cbd 100644 --- a/clients/client-database-migration-service/src/commands/ImportCertificateCommand.ts +++ b/clients/client-database-migration-service/src/commands/ImportCertificateCommand.ts @@ -92,24 +92,24 @@ export interface ImportCertificateCommandOutput extends ImportCertificateRespons * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Import certificate * ```javascript * // Uploads the specified certificate. * const input = { - * "CertificateIdentifier": "", - * "CertificatePem": "" + * CertificateIdentifier: "", + * CertificatePem: "" * }; * const command = new ImportCertificateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Certificate": {} + * Certificate: { /* empty *\/ } * } * *\/ - * // example id: import-certificate-1481756197206 * ``` * + * @public */ export class ImportCertificateCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/ListTagsForResourceCommand.ts b/clients/client-database-migration-service/src/commands/ListTagsForResourceCommand.ts index ad8e2ac94c56d..6b13b7f898e09 100644 --- a/clients/client-database-migration-service/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-database-migration-service/src/commands/ListTagsForResourceCommand.ts @@ -78,23 +78,23 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example List tags for resource * ```javascript * // Lists all tags for an AWS DMS resource. * const input = { - * "ResourceArn": "" + * ResourceArn: "" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TagList": [] + * TagList: [] * } * *\/ - * // example id: list-tags-for-resource-1481761095501 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/ModifyConversionConfigurationCommand.ts b/clients/client-database-migration-service/src/commands/ModifyConversionConfigurationCommand.ts index b9d383911528c..a70c35cde1641 100644 --- a/clients/client-database-migration-service/src/commands/ModifyConversionConfigurationCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyConversionConfigurationCommand.ts @@ -71,24 +71,24 @@ export interface ModifyConversionConfigurationCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Modify Conversion Configuration * ```javascript * // Modifies the specified schema conversion configuration using the provided parameters. * const input = { - * "ConversionConfiguration": "{\"Common project settings\":{\"ShowSeverityLevelInSql\":\"CRITICAL\"},\"ORACLE_TO_POSTGRESQL\" : {\"ToTimeZone\":false,\"LastDayBuiltinFunctionOracle\":false, \"NextDayBuiltinFunctionOracle\":false,\"ConvertProceduresToFunction\":false,\"NvlBuiltinFunctionOracle\":false,\"DbmsAssertBuiltinFunctionOracle\":false}}", - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" + * ConversionConfiguration: `{"Common project settings":{"ShowSeverityLevelInSql":"CRITICAL"},"ORACLE_TO_POSTGRESQL" : {"ToTimeZone":false,"LastDayBuiltinFunctionOracle":false, "NextDayBuiltinFunctionOracle":false,"ConvertProceduresToFunction":false,"NvlBuiltinFunctionOracle":false,"DbmsAssertBuiltinFunctionOracle":false}}`, + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" * }; * const command = new ModifyConversionConfigurationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" * } * *\/ - * // example id: modify-conversion-configuration-1689720529855 * ``` * + * @public */ export class ModifyConversionConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/ModifyDataMigrationCommand.ts b/clients/client-database-migration-service/src/commands/ModifyDataMigrationCommand.ts index e19453fa55092..765054aafba58 100644 --- a/clients/client-database-migration-service/src/commands/ModifyDataMigrationCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyDataMigrationCommand.ts @@ -139,6 +139,7 @@ export interface ModifyDataMigrationCommandOutput extends ModifyDataMigrationRes * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class ModifyDataMigrationCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/ModifyDataProviderCommand.ts b/clients/client-database-migration-service/src/commands/ModifyDataProviderCommand.ts index 2cb801f5f327f..4d2569fa92c14 100644 --- a/clients/client-database-migration-service/src/commands/ModifyDataProviderCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyDataProviderCommand.ts @@ -238,47 +238,47 @@ export interface ModifyDataProviderCommandOutput extends ModifyDataProviderRespo * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Modify Data Provider * ```javascript * // Modifies the specified data provider using the provided settings. * const input = { - * "DataProviderIdentifier": "arn:aws:dms:us-east-1:012345678901:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", - * "DataProviderName": "new-name", - * "Description": "description", - * "Engine": "sqlserver", - * "Settings": { - * "MicrosoftSqlServerSettings": { - * "DatabaseName": "DatabaseName", - * "Port": 11112, - * "ServerName": "ServerName2", - * "SslMode": "none" + * DataProviderIdentifier: "arn:aws:dms:us-east-1:012345678901:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", + * DataProviderName: "new-name", + * Description: "description", + * Engine: "sqlserver", + * Settings: { + * MicrosoftSqlServerSettings: { + * DatabaseName: "DatabaseName", + * Port: 11112, + * ServerName: "ServerName2", + * SslMode: "none" * } * } * }; * const command = new ModifyDataProviderCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DataProvider": { - * "DataProviderArn": "arn:aws:dms:us-east-1:012345678901:data-provider:my-target-data-provider", - * "DataProviderCreationTime": "2023-05-12T10:50:41.988561Z", - * "DataProviderName": "my-target-data-provider", - * "Engine": "postgres", - * "Settings": { - * "PostgreSqlSettings": { - * "DatabaseName": "target", - * "Port": 5432, - * "ServerName": "postrgesql.0a1b2c3d4e5f.us-east-1.rds.amazonaws.com", - * "SslMode": "none" + * DataProvider: { + * DataProviderArn: "arn:aws:dms:us-east-1:012345678901:data-provider:my-target-data-provider", + * DataProviderCreationTime: "2023-05-12T10:50:41.988561Z", + * DataProviderName: "my-target-data-provider", + * Engine: "postgres", + * Settings: { + * PostgreSqlSettings: { + * DatabaseName: "target", + * Port: 5432, + * ServerName: "postrgesql.0a1b2c3d4e5f.us-east-1.rds.amazonaws.com", + * SslMode: "none" * } * } * } * } * *\/ - * // example id: modify-data-provider-1689720700567 * ``` * + * @public */ export class ModifyDataProviderCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/ModifyEndpointCommand.ts b/clients/client-database-migration-service/src/commands/ModifyEndpointCommand.ts index da8475d3527d5..03f2d36c1e64e 100644 --- a/clients/client-database-migration-service/src/commands/ModifyEndpointCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyEndpointCommand.ts @@ -794,34 +794,34 @@ export interface ModifyEndpointCommandOutput extends ModifyEndpointResponse, __M * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Modify endpoint * ```javascript * // Modifies the specified endpoint. * const input = { - * "CertificateArn": "", - * "DatabaseName": "", - * "EndpointArn": "", - * "EndpointIdentifier": "", - * "EndpointType": "source", - * "EngineName": "", - * "ExtraConnectionAttributes": "", - * "Password": "", - * "Port": 123, - * "ServerName": "", - * "SslMode": "require", - * "Username": "" + * CertificateArn: "", + * DatabaseName: "", + * EndpointArn: "", + * EndpointIdentifier: "", + * EndpointType: "source", + * EngineName: "", + * ExtraConnectionAttributes: "", + * Password: "", + * Port: 123, + * ServerName: "", + * SslMode: "require", + * Username: "" * }; * const command = new ModifyEndpointCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Endpoint": {} + * Endpoint: { /* empty *\/ } * } * *\/ - * // example id: modify-endpoint-1481761649937 * ``` * + * @public */ export class ModifyEndpointCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/ModifyEventSubscriptionCommand.ts b/clients/client-database-migration-service/src/commands/ModifyEventSubscriptionCommand.ts index 31fa6ca9711ec..64fd29548a201 100644 --- a/clients/client-database-migration-service/src/commands/ModifyEventSubscriptionCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyEventSubscriptionCommand.ts @@ -110,6 +110,7 @@ export interface ModifyEventSubscriptionCommandOutput extends ModifyEventSubscri * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class ModifyEventSubscriptionCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/ModifyInstanceProfileCommand.ts b/clients/client-database-migration-service/src/commands/ModifyInstanceProfileCommand.ts index b91e1f5319a0c..1ae3a63aefa3f 100644 --- a/clients/client-database-migration-service/src/commands/ModifyInstanceProfileCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyInstanceProfileCommand.ts @@ -109,42 +109,42 @@ export interface ModifyInstanceProfileCommandOutput extends ModifyInstanceProfil * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Modify Instance Profile * ```javascript * // Modifies the specified instance profile using the provided parameters. * const input = { - * "AvailabilityZone": "", - * "Description": "", - * "InstanceProfileIdentifier": "", - * "InstanceProfileName": "", - * "KmsKeyArn": "", - * "NetworkType": "", - * "PubliclyAccessible": true, - * "SubnetGroupIdentifier": "", - * "VpcSecurityGroups": [] + * AvailabilityZone: "", + * Description: "", + * InstanceProfileIdentifier: "", + * InstanceProfileName: "", + * KmsKeyArn: "", + * NetworkType: "", + * PubliclyAccessible: true, + * SubnetGroupIdentifier: "", + * VpcSecurityGroups: [] * }; * const command = new ModifyInstanceProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InstanceProfile": { - * "InstanceProfileArn": "arn:aws:dms:us-east-1:012345678901:instance-profile:my-instance-profile", - * "InstanceProfileCreationTime": "2022-12-16T09:44:43.543246Z", - * "InstanceProfileName": "my-instance-profile", - * "KmsKeyArn": "arn:aws:kms:us-east-1:012345678901:key/01234567-89ab-cdef-0123-456789abcdef", - * "PubliclyAccessible": true, - * "SubnetGroupIdentifier": "public-subnets", - * "VpcIdentifier": "vpc-0a1b2c3d4e5f6g7h8", - * "VpcSecurityGroups": [ + * InstanceProfile: { + * InstanceProfileArn: "arn:aws:dms:us-east-1:012345678901:instance-profile:my-instance-profile", + * InstanceProfileCreationTime: "2022-12-16T09:44:43.543246Z", + * InstanceProfileName: "my-instance-profile", + * KmsKeyArn: "arn:aws:kms:us-east-1:012345678901:key/01234567-89ab-cdef-0123-456789abcdef", + * PubliclyAccessible: true, + * SubnetGroupIdentifier: "public-subnets", + * VpcIdentifier: "vpc-0a1b2c3d4e5f6g7h8", + * VpcSecurityGroups: [ * "sg-0123456" * ] * } * } * *\/ - * // example id: modify-instance-profile-1689724223329 * ``` * + * @public */ export class ModifyInstanceProfileCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/ModifyMigrationProjectCommand.ts b/clients/client-database-migration-service/src/commands/ModifyMigrationProjectCommand.ts index 17b56ca944fcd..79cafb5ee4d4a 100644 --- a/clients/client-database-migration-service/src/commands/ModifyMigrationProjectCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyMigrationProjectCommand.ts @@ -132,70 +132,70 @@ export interface ModifyMigrationProjectCommandOutput extends ModifyMigrationProj * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Modify Migration Project * ```javascript * // Modifies the specified migration project using the provided parameters. * const input = { - * "Description": "description", - * "InstanceProfileIdentifier": "my-instance-profile", - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", - * "MigrationProjectName": "new-name", - * "SchemaConversionApplicationAttributes": { - * "S3BucketPath": "arn:aws:s3:::myuser-bucket", - * "S3BucketRoleArn": "arn:aws:iam::012345678901:role/Admin" + * Description: "description", + * InstanceProfileIdentifier: "my-instance-profile", + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", + * MigrationProjectName: "new-name", + * SchemaConversionApplicationAttributes: { + * S3BucketPath: "arn:aws:s3:::myuser-bucket", + * S3BucketRoleArn: "arn:aws:iam::012345678901:role/Admin" * }, - * "SourceDataProviderDescriptors": [ + * SourceDataProviderDescriptors: [ * { - * "DataProviderIdentifier": "arn:aws:dms:us-east-1:012345678901:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", - * "SecretsManagerAccessRoleArn": "arn:aws:iam::012345678901:role/myuser-admin-access", - * "SecretsManagerSecretId": "arn:aws:secretsmanager:us-east-1:012345678901:secret:myorg/myuser/ALL.SOURCE.ORACLE_12-A1B2C3" + * DataProviderIdentifier: "arn:aws:dms:us-east-1:012345678901:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", + * SecretsManagerAccessRoleArn: "arn:aws:iam::012345678901:role/myuser-admin-access", + * SecretsManagerSecretId: "arn:aws:secretsmanager:us-east-1:012345678901:secret:myorg/myuser/ALL.SOURCE.ORACLE_12-A1B2C3" * } * ], - * "TargetDataProviderDescriptors": [ + * TargetDataProviderDescriptors: [ * { - * "DataProviderIdentifier": "arn:aws:dms:us-east-1:012345678901:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", - * "SecretsManagerAccessRoleArn": "arn:aws:iam::012345678901:role/myuser-admin-access", - * "SecretsManagerSecretId": "arn:aws:secretsmanager:us-east-1:012345678901:secret:myorg/myuser/TARGET.postgresql-A1B2C3" + * DataProviderIdentifier: "arn:aws:dms:us-east-1:012345678901:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", + * SecretsManagerAccessRoleArn: "arn:aws:iam::012345678901:role/myuser-admin-access", + * SecretsManagerSecretId: "arn:aws:secretsmanager:us-east-1:012345678901:secret:myorg/myuser/TARGET.postgresql-A1B2C3" * } * ] * }; * const command = new ModifyMigrationProjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "MigrationProject": { - * "InstanceProfileArn": "arn:aws:dms:us-east-1:012345678901:instance-profile:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "InstanceProfileName": "my-instance-profile", - * "MigrationProjectArn": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "MigrationProjectCreationTime": "2023-04-19T11:45:15.805253Z", - * "MigrationProjectName": "my-migration-project", - * "SchemaConversionApplicationAttributes": { - * "S3BucketPath": "my-s3-bucket/my_folder", - * "S3BucketRoleArn": "arn:aws:iam::012345678901:role/my-s3role" + * MigrationProject: { + * InstanceProfileArn: "arn:aws:dms:us-east-1:012345678901:instance-profile:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * InstanceProfileName: "my-instance-profile", + * MigrationProjectArn: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * MigrationProjectCreationTime: "2023-04-19T11:45:15.805253Z", + * MigrationProjectName: "my-migration-project", + * SchemaConversionApplicationAttributes: { + * S3BucketPath: "my-s3-bucket/my_folder", + * S3BucketRoleArn: "arn:aws:iam::012345678901:role/my-s3role" * }, - * "SourceDataProviderDescriptors": [ + * SourceDataProviderDescriptors: [ * { - * "DataProviderArn": "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "DataProviderName": "all-source-oracle-12", - * "SecretsManagerAccessRoleArn": "arn:aws:iam::012345678901:role/my-access-role", - * "SecretsManagerSecretId": "arn:aws:secretsmanager:us-east-1:012345678901:secret:mygroup/myalias/ALL.SOURCE.ORACLE_12-TP5rA9" + * DataProviderArn: "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * DataProviderName: "all-source-oracle-12", + * SecretsManagerAccessRoleArn: "arn:aws:iam::012345678901:role/my-access-role", + * SecretsManagerSecretId: "arn:aws:secretsmanager:us-east-1:012345678901:secret:mygroup/myalias/ALL.SOURCE.ORACLE_12-TP5rA9" * } * ], - * "TargetDataProviderDescriptors": [ + * TargetDataProviderDescriptors: [ * { - * "DataProviderArn": "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "DataProviderName": "my-dataprovider", - * "SecretsManagerAccessRoleArn": "arn:aws:iam::012345678901:role/my-access-role", - * "SecretsManagerSecretId": "arn:aws:secretsmanager:us-east-1:012345678901:secret:mygroup/myalias/TARGET.postgresql-mysecret" + * DataProviderArn: "arn:aws:dms:us-east-1:012345678901:data-provider:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * DataProviderName: "my-dataprovider", + * SecretsManagerAccessRoleArn: "arn:aws:iam::012345678901:role/my-access-role", + * SecretsManagerSecretId: "arn:aws:secretsmanager:us-east-1:012345678901:secret:mygroup/myalias/TARGET.postgresql-mysecret" * } * ] * } * } * *\/ - * // example id: modify-migration-project-1689721117475 * ``` * + * @public */ export class ModifyMigrationProjectCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/ModifyReplicationConfigCommand.ts b/clients/client-database-migration-service/src/commands/ModifyReplicationConfigCommand.ts index f5355d2173f89..a42658c3ec855 100644 --- a/clients/client-database-migration-service/src/commands/ModifyReplicationConfigCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyReplicationConfigCommand.ts @@ -129,6 +129,7 @@ export interface ModifyReplicationConfigCommandOutput extends ModifyReplicationC * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class ModifyReplicationConfigCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/ModifyReplicationInstanceCommand.ts b/clients/client-database-migration-service/src/commands/ModifyReplicationInstanceCommand.ts index 7714d48b69ddf..69693f641cd4e 100644 --- a/clients/client-database-migration-service/src/commands/ModifyReplicationInstanceCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyReplicationInstanceCommand.ts @@ -167,81 +167,81 @@ export interface ModifyReplicationInstanceCommandOutput extends ModifyReplicatio * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Modify replication instance * ```javascript * // Modifies the replication instance to apply new settings. You can change one or more parameters by specifying these parameters and the new values in the request. Some settings are applied during the maintenance window. * const input = { - * "AllocatedStorage": 123, - * "AllowMajorVersionUpgrade": true, - * "ApplyImmediately": true, - * "AutoMinorVersionUpgrade": true, - * "EngineVersion": "1.5.0", - * "MultiAZ": true, - * "PreferredMaintenanceWindow": "sun:06:00-sun:14:00", - * "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", - * "ReplicationInstanceClass": "dms.t2.micro", - * "ReplicationInstanceIdentifier": "test-rep-1", - * "VpcSecurityGroupIds": [] + * AllocatedStorage: 123, + * AllowMajorVersionUpgrade: true, + * ApplyImmediately: true, + * AutoMinorVersionUpgrade: true, + * EngineVersion: "1.5.0", + * MultiAZ: true, + * PreferredMaintenanceWindow: "sun:06:00-sun:14:00", + * ReplicationInstanceArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", + * ReplicationInstanceClass: "dms.t2.micro", + * ReplicationInstanceIdentifier: "test-rep-1", + * VpcSecurityGroupIds: [] * }; * const command = new ModifyReplicationInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicationInstance": { - * "AllocatedStorage": 5, - * "AutoMinorVersionUpgrade": true, - * "EngineVersion": "1.5.0", - * "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd", - * "PendingModifiedValues": {}, - * "PreferredMaintenanceWindow": "sun:06:00-sun:14:00", - * "PubliclyAccessible": true, - * "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", - * "ReplicationInstanceClass": "dms.t2.micro", - * "ReplicationInstanceIdentifier": "test-rep-1", - * "ReplicationInstanceStatus": "available", - * "ReplicationSubnetGroup": { - * "ReplicationSubnetGroupDescription": "default", - * "ReplicationSubnetGroupIdentifier": "default", - * "SubnetGroupStatus": "Complete", - * "Subnets": [ + * ReplicationInstance: { + * AllocatedStorage: 5, + * AutoMinorVersionUpgrade: true, + * EngineVersion: "1.5.0", + * KmsKeyId: "arn:aws:kms:us-east-1:123456789012:key/4c1731d6-5435-ed4d-be13-d53411a7cfbd", + * PendingModifiedValues: { /* empty *\/ }, + * PreferredMaintenanceWindow: "sun:06:00-sun:14:00", + * PubliclyAccessible: true, + * ReplicationInstanceArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", + * ReplicationInstanceClass: "dms.t2.micro", + * ReplicationInstanceIdentifier: "test-rep-1", + * ReplicationInstanceStatus: "available", + * ReplicationSubnetGroup: { + * ReplicationSubnetGroupDescription: "default", + * ReplicationSubnetGroupIdentifier: "default", + * SubnetGroupStatus: "Complete", + * Subnets: [ * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1d" + * SubnetAvailabilityZone: { + * Name: "us-east-1d" * }, - * "SubnetIdentifier": "subnet-f6dd91af", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-f6dd91af", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1b" + * SubnetAvailabilityZone: { + * Name: "us-east-1b" * }, - * "SubnetIdentifier": "subnet-3605751d", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-3605751d", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1c" + * SubnetAvailabilityZone: { + * Name: "us-east-1c" * }, - * "SubnetIdentifier": "subnet-c2daefb5", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-c2daefb5", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1e" + * SubnetAvailabilityZone: { + * Name: "us-east-1e" * }, - * "SubnetIdentifier": "subnet-85e90cb8", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-85e90cb8", + * SubnetStatus: "Active" * } * ], - * "VpcId": "vpc-6741a603" + * VpcId: "vpc-6741a603" * } * } * } * *\/ - * // example id: modify-replication-instance-1481761784746 * ``` * + * @public */ export class ModifyReplicationInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/ModifyReplicationSubnetGroupCommand.ts b/clients/client-database-migration-service/src/commands/ModifyReplicationSubnetGroupCommand.ts index 4643305137f70..13ab3ac8cd8dd 100644 --- a/clients/client-database-migration-service/src/commands/ModifyReplicationSubnetGroupCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyReplicationSubnetGroupCommand.ts @@ -104,25 +104,25 @@ export interface ModifyReplicationSubnetGroupCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Modify replication subnet group * ```javascript * // Modifies the settings for the specified replication subnet group. * const input = { - * "ReplicationSubnetGroupDescription": "", - * "ReplicationSubnetGroupIdentifier": "", - * "SubnetIds": [] + * ReplicationSubnetGroupDescription: "", + * ReplicationSubnetGroupIdentifier: "", + * SubnetIds: [] * }; * const command = new ModifyReplicationSubnetGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicationSubnetGroup": {} + * ReplicationSubnetGroup: { /* empty *\/ } * } * *\/ - * // example id: modify-replication-subnet-group-1481762275392 * ``` * + * @public */ export class ModifyReplicationSubnetGroupCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/ModifyReplicationTaskCommand.ts b/clients/client-database-migration-service/src/commands/ModifyReplicationTaskCommand.ts index bcbca7b7d77ed..f7974844ad1bf 100644 --- a/clients/client-database-migration-service/src/commands/ModifyReplicationTaskCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyReplicationTaskCommand.ts @@ -114,6 +114,7 @@ export interface ModifyReplicationTaskCommandOutput extends ModifyReplicationTas * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class ModifyReplicationTaskCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/MoveReplicationTaskCommand.ts b/clients/client-database-migration-service/src/commands/MoveReplicationTaskCommand.ts index 33027aa47e521..c6e7682a7f88a 100644 --- a/clients/client-database-migration-service/src/commands/MoveReplicationTaskCommand.ts +++ b/clients/client-database-migration-service/src/commands/MoveReplicationTaskCommand.ts @@ -110,6 +110,7 @@ export interface MoveReplicationTaskCommandOutput extends MoveReplicationTaskRes * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class MoveReplicationTaskCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/RebootReplicationInstanceCommand.ts b/clients/client-database-migration-service/src/commands/RebootReplicationInstanceCommand.ts index 2f3ee973bce5f..cc3ff2b76fcbb 100644 --- a/clients/client-database-migration-service/src/commands/RebootReplicationInstanceCommand.ts +++ b/clients/client-database-migration-service/src/commands/RebootReplicationInstanceCommand.ts @@ -133,6 +133,7 @@ export interface RebootReplicationInstanceCommandOutput extends RebootReplicatio * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class RebootReplicationInstanceCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/RefreshSchemasCommand.ts b/clients/client-database-migration-service/src/commands/RefreshSchemasCommand.ts index dcc19005cb933..6e222a3b60176 100644 --- a/clients/client-database-migration-service/src/commands/RefreshSchemasCommand.ts +++ b/clients/client-database-migration-service/src/commands/RefreshSchemasCommand.ts @@ -80,24 +80,24 @@ export interface RefreshSchemasCommandOutput extends RefreshSchemasResponse, __M * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Refresh schema * ```javascript * // Populates the schema for the specified endpoint. This is an asynchronous operation and can take several minutes. You can check the status of this operation by calling the describe-refresh-schemas-status operation. * const input = { - * "EndpointArn": "", - * "ReplicationInstanceArn": "" + * EndpointArn: "", + * ReplicationInstanceArn: "" * }; * const command = new RefreshSchemasCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RefreshSchemasStatus": {} + * RefreshSchemasStatus: { /* empty *\/ } * } * *\/ - * // example id: refresh-schema-1481762399111 * ``` * + * @public */ export class RefreshSchemasCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/ReloadReplicationTablesCommand.ts b/clients/client-database-migration-service/src/commands/ReloadReplicationTablesCommand.ts index ad87384625ae4..fd74fe3457fff 100644 --- a/clients/client-database-migration-service/src/commands/ReloadReplicationTablesCommand.ts +++ b/clients/client-database-migration-service/src/commands/ReloadReplicationTablesCommand.ts @@ -75,6 +75,7 @@ export interface ReloadReplicationTablesCommandOutput extends ReloadReplicationT * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class ReloadReplicationTablesCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/ReloadTablesCommand.ts b/clients/client-database-migration-service/src/commands/ReloadTablesCommand.ts index d8b155c945136..efd067e6fe75c 100644 --- a/clients/client-database-migration-service/src/commands/ReloadTablesCommand.ts +++ b/clients/client-database-migration-service/src/commands/ReloadTablesCommand.ts @@ -74,6 +74,7 @@ export interface ReloadTablesCommandOutput extends ReloadTablesResponse, __Metad * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class ReloadTablesCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-database-migration-service/src/commands/RemoveTagsFromResourceCommand.ts index d323740b27931..c4725b6fb975e 100644 --- a/clients/client-database-migration-service/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-database-migration-service/src/commands/RemoveTagsFromResourceCommand.ts @@ -70,19 +70,22 @@ export interface RemoveTagsFromResourceCommandOutput extends RemoveTagsFromResou * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Remove tags from resource * ```javascript * // Removes metadata tags from an AWS DMS resource. * const input = { - * "ResourceArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E", - * "TagKeys": [] + * ResourceArn: "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E", + * TagKeys: [] * }; * const command = new RemoveTagsFromResourceCommand(input); - * await client.send(command); - * // example id: remove-tags-from-resource-1481762571330 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class RemoveTagsFromResourceCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/RunFleetAdvisorLsaAnalysisCommand.ts b/clients/client-database-migration-service/src/commands/RunFleetAdvisorLsaAnalysisCommand.ts index 304a863f5963f..927fe8e75de7b 100644 --- a/clients/client-database-migration-service/src/commands/RunFleetAdvisorLsaAnalysisCommand.ts +++ b/clients/client-database-migration-service/src/commands/RunFleetAdvisorLsaAnalysisCommand.ts @@ -64,6 +64,7 @@ export interface RunFleetAdvisorLsaAnalysisCommandOutput extends RunFleetAdvisor * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class RunFleetAdvisorLsaAnalysisCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/StartDataMigrationCommand.ts b/clients/client-database-migration-service/src/commands/StartDataMigrationCommand.ts index dc60eaed7381e..4c97faa5922d0 100644 --- a/clients/client-database-migration-service/src/commands/StartDataMigrationCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartDataMigrationCommand.ts @@ -126,6 +126,7 @@ export interface StartDataMigrationCommandOutput extends StartDataMigrationRespo * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class StartDataMigrationCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/StartExtensionPackAssociationCommand.ts b/clients/client-database-migration-service/src/commands/StartExtensionPackAssociationCommand.ts index d2e0a5f8f9830..ccdcfc4b7c1d5 100644 --- a/clients/client-database-migration-service/src/commands/StartExtensionPackAssociationCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartExtensionPackAssociationCommand.ts @@ -92,23 +92,23 @@ export interface StartExtensionPackAssociationCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Start Extension Pack Association * ```javascript * // Applies the extension pack to your target database. * const input = { - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012" * }; * const command = new StartExtensionPackAssociationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RequestIdentifier": "01234567-89ab-cdef-0123-456789abcdef" + * RequestIdentifier: "01234567-89ab-cdef-0123-456789abcdef" * } * *\/ - * // example id: start-extension-pack-association-1689721897266 * ``` * + * @public */ export class StartExtensionPackAssociationCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/StartMetadataModelAssessmentCommand.ts b/clients/client-database-migration-service/src/commands/StartMetadataModelAssessmentCommand.ts index 79aedda150079..ef8957a2825fb 100644 --- a/clients/client-database-migration-service/src/commands/StartMetadataModelAssessmentCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartMetadataModelAssessmentCommand.ts @@ -94,25 +94,25 @@ export interface StartMetadataModelAssessmentCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Start Metadata Model Assessment * ```javascript * // Creates a database migration assessment report by assessing the migration complexity for - * // your source database. + * your source database. * const input = { - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "SelectionRules": "{\"rules\": [{\"rule-type\": \"selection\",\"rule-id\": \"1\",\"rule-name\": \"1\",\"object-locator\": {\"server-name\": \"aurora-pg.cluster-0a1b2c3d4e5f.us-east-1.rds.amazonaws.com\", \"schema-name\": \"schema1\", \"table-name\": \"Cities\"},\"rule-action\": \"explicit\"} ]}" + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * SelectionRules: `{"rules": [{"rule-type": "selection","rule-id": "1","rule-name": "1","object-locator": {"server-name": "aurora-pg.cluster-0a1b2c3d4e5f.us-east-1.rds.amazonaws.com", "schema-name": "schema1", "table-name": "Cities"},"rule-action": "explicit"} ]}` * }; * const command = new StartMetadataModelAssessmentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RequestIdentifier": "01234567-89ab-cdef-0123-456789abcdef" + * RequestIdentifier: "01234567-89ab-cdef-0123-456789abcdef" * } * *\/ - * // example id: start-metadata-model-assessment-1689722322596 * ``` * + * @public */ export class StartMetadataModelAssessmentCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/StartMetadataModelConversionCommand.ts b/clients/client-database-migration-service/src/commands/StartMetadataModelConversionCommand.ts index 8d01564608dca..e2f09e3c590fa 100644 --- a/clients/client-database-migration-service/src/commands/StartMetadataModelConversionCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartMetadataModelConversionCommand.ts @@ -91,24 +91,24 @@ export interface StartMetadataModelConversionCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Start Metadata Model Conversion * ```javascript * // Converts your source database objects to a format compatible with the target database. * const input = { - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "SelectionRules": "{\"rules\": [{\"rule-type\": \"selection\",\"rule-id\": \"1\",\"rule-name\": \"1\",\"object-locator\": {\"server-name\": \"aurora-pg.cluster-0a1b2c3d4e5f.us-east-1.rds.amazonaws.com\", \"schema-name\": \"schema1\", \"table-name\": \"Cities\"},\"rule-action\": \"explicit\"} ]}" + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * SelectionRules: `{"rules": [{"rule-type": "selection","rule-id": "1","rule-name": "1","object-locator": {"server-name": "aurora-pg.cluster-0a1b2c3d4e5f.us-east-1.rds.amazonaws.com", "schema-name": "schema1", "table-name": "Cities"},"rule-action": "explicit"} ]}` * }; * const command = new StartMetadataModelConversionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RequestIdentifier": "01234567-89ab-cdef-0123-456789abcdef" + * RequestIdentifier: "01234567-89ab-cdef-0123-456789abcdef" * } * *\/ - * // example id: start-metadata-model-conversion-1689722427798 * ``` * + * @public */ export class StartMetadataModelConversionCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/StartMetadataModelExportAsScriptCommand.ts b/clients/client-database-migration-service/src/commands/StartMetadataModelExportAsScriptCommand.ts index 1897b09cec81b..91c68d2f55cf7 100644 --- a/clients/client-database-migration-service/src/commands/StartMetadataModelExportAsScriptCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartMetadataModelExportAsScriptCommand.ts @@ -94,26 +94,26 @@ export interface StartMetadataModelExportAsScriptCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Start Metadata Model Export As Script * ```javascript * // Saves your converted code to a file as a SQL script, and stores this file on your S3 bucket. * const input = { - * "FileName": "FILE", - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "Origin": "SOURCE", - * "SelectionRules": "{\"rules\": [{\"rule-type\": \"selection\",\"rule-id\": \"1\",\"rule-name\": \"1\",\"object-locator\": {\"server-name\": \"aurora-pg.cluster-0a1b2c3d4e5f.us-east-1.rds.amazonaws.com\", \"schema-name\": \"schema1\", \"table-name\": \"Cities\"},\"rule-action\": \"explicit\"} ]}" + * FileName: "FILE", + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * Origin: "SOURCE", + * SelectionRules: `{"rules": [{"rule-type": "selection","rule-id": "1","rule-name": "1","object-locator": {"server-name": "aurora-pg.cluster-0a1b2c3d4e5f.us-east-1.rds.amazonaws.com", "schema-name": "schema1", "table-name": "Cities"},"rule-action": "explicit"} ]}` * }; * const command = new StartMetadataModelExportAsScriptCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RequestIdentifier": "01234567-89ab-cdef-0123-456789abcdef" + * RequestIdentifier: "01234567-89ab-cdef-0123-456789abcdef" * } * *\/ - * // example id: start-metadata-model-export-as-script-1689722681469 * ``` * + * @public */ export class StartMetadataModelExportAsScriptCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/StartMetadataModelExportToTargetCommand.ts b/clients/client-database-migration-service/src/commands/StartMetadataModelExportToTargetCommand.ts index 8bac9fa92e454..c6629a41c1301 100644 --- a/clients/client-database-migration-service/src/commands/StartMetadataModelExportToTargetCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartMetadataModelExportToTargetCommand.ts @@ -92,25 +92,25 @@ export interface StartMetadataModelExportToTargetCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Start Metadata Model Export To Target * ```javascript * // Applies converted database objects to your target database. * const input = { - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", - * "OverwriteExtensionPack": true, - * "SelectionRules": "{\"rules\": [{\"rule-type\": \"selection\",\"rule-id\": \"1\",\"rule-name\": \"1\",\"object-locator\": {\"server-name\": \"aurora-pg.cluster-a1b2c3d4e5f6.us-east-1.rds.amazonaws.com\", \"schema-name\": \"schema1\", \"table-name\": \"Cities\"},\"rule-action\": \"explicit\"} ]}" + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345", + * OverwriteExtensionPack: true, + * SelectionRules: `{"rules": [{"rule-type": "selection","rule-id": "1","rule-name": "1","object-locator": {"server-name": "aurora-pg.cluster-a1b2c3d4e5f6.us-east-1.rds.amazonaws.com", "schema-name": "schema1", "table-name": "Cities"},"rule-action": "explicit"} ]}` * }; * const command = new StartMetadataModelExportToTargetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RequestIdentifier": "01234567-89ab-cdef-0123-456789abcdef" + * RequestIdentifier: "01234567-89ab-cdef-0123-456789abcdef" * } * *\/ - * // example id: start-metadata-model-export-to-target-1689783666835 * ``` * + * @public */ export class StartMetadataModelExportToTargetCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/StartMetadataModelImportCommand.ts b/clients/client-database-migration-service/src/commands/StartMetadataModelImportCommand.ts index bb1d10f96879e..00d93d36f19c5 100644 --- a/clients/client-database-migration-service/src/commands/StartMetadataModelImportCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartMetadataModelImportCommand.ts @@ -90,26 +90,26 @@ export interface StartMetadataModelImportCommandOutput extends StartMetadataMode * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Start Metadata Model Import * ```javascript * // Loads the metadata for all the dependent database objects of the parent object. * const input = { - * "MigrationProjectIdentifier": "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", - * "Origin": "SOURCE", - * "Refresh": false, - * "SelectionRules": "{\"rules\": [{\"rule-type\": \"selection\",\"rule-id\": \"1\",\"rule-name\": \"1\",\"object-locator\": {\"server-name\": \"aurora-pg.cluster-0a1b2c3d4e5f.us-east-1.rds.amazonaws.com\", \"schema-name\": \"schema1\", \"table-name\": \"Cities\"},\"rule-action\": \"explicit\"} ]}" + * MigrationProjectIdentifier: "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012", + * Origin: "SOURCE", + * Refresh: false, + * SelectionRules: `{"rules": [{"rule-type": "selection","rule-id": "1","rule-name": "1","object-locator": {"server-name": "aurora-pg.cluster-0a1b2c3d4e5f.us-east-1.rds.amazonaws.com", "schema-name": "schema1", "table-name": "Cities"},"rule-action": "explicit"} ]}` * }; * const command = new StartMetadataModelImportCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RequestIdentifier": "01234567-89ab-cdef-0123-456789abcdef" + * RequestIdentifier: "01234567-89ab-cdef-0123-456789abcdef" * } * *\/ - * // example id: start-metadata-model-import-1689723124259 * ``` * + * @public */ export class StartMetadataModelImportCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/StartRecommendationsCommand.ts b/clients/client-database-migration-service/src/commands/StartRecommendationsCommand.ts index 4ae691ccf36f1..95cd93aad3204 100644 --- a/clients/client-database-migration-service/src/commands/StartRecommendationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartRecommendationsCommand.ts @@ -73,6 +73,7 @@ export interface StartRecommendationsCommandOutput extends __MetadataBearer {} * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class StartRecommendationsCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/StartReplicationCommand.ts b/clients/client-database-migration-service/src/commands/StartReplicationCommand.ts index 5c972fe15d9eb..b4fbbd85d52d7 100644 --- a/clients/client-database-migration-service/src/commands/StartReplicationCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartReplicationCommand.ts @@ -144,6 +144,7 @@ export interface StartReplicationCommandOutput extends StartReplicationResponse, * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class StartReplicationCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentCommand.ts b/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentCommand.ts index 0d48642590796..b391ef88cbe32 100644 --- a/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentCommand.ts @@ -116,6 +116,7 @@ export interface StartReplicationTaskAssessmentCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class StartReplicationTaskAssessmentCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentRunCommand.ts b/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentRunCommand.ts index 574d17746c652..e0293384bf4ea 100644 --- a/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentRunCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentRunCommand.ts @@ -155,6 +155,7 @@ export interface StartReplicationTaskAssessmentRunCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class StartReplicationTaskAssessmentRunCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/StartReplicationTaskCommand.ts b/clients/client-database-migration-service/src/commands/StartReplicationTaskCommand.ts index 6c5255d0e2513..2d4e3a7d25daf 100644 --- a/clients/client-database-migration-service/src/commands/StartReplicationTaskCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartReplicationTaskCommand.ts @@ -108,36 +108,36 @@ export interface StartReplicationTaskCommandOutput extends StartReplicationTaskR * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Start replication task * ```javascript * // Starts the replication task. * const input = { - * "CdcStartTime": "2016-12-14T13:33:20Z", - * "ReplicationTaskArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", - * "StartReplicationTaskType": "start-replication" + * CdcStartTime: "2016-12-14T13:33:20Z", + * ReplicationTaskArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", + * StartReplicationTaskType: "start-replication" * }; * const command = new StartReplicationTaskCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicationTask": { - * "MigrationType": "full-load", - * "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", - * "ReplicationTaskArn": "arn:aws:dms:us-east-1:123456789012:task:OEAMB3NXSTZ6LFYZFEPPBBXPYM", - * "ReplicationTaskCreationDate": "2016-12-14T18:25:43Z", - * "ReplicationTaskIdentifier": "task1", - * "ReplicationTaskSettings": "{\"TargetMetadata\":{\"TargetSchema\":\"\",\"SupportLobs\":true,\"FullLobMode\":true,\"LobChunkSize\":64,\"LimitedSizeLobMode\":false,\"LobMaxSize\":0},\"FullLoadSettings\":{\"FullLoadEnabled\":true,\"ApplyChangesEnabled\":false,\"TargetTablePrepMode\":\"DROP_AND_CREATE\",\"CreatePkAfterFullLoad\":false,\"StopTaskCachedChangesApplied\":false,\"StopTaskCachedChangesNotApplied\":false,\"ResumeEnabled\":false,\"ResumeMinTableSize\":100000,\"ResumeOnlyClusteredPKTables\":true,\"MaxFullLoadSubTasks\":8,\"TransactionConsistencyTimeout\":600,\"CommitRate\":10000},\"Logging\":{\"EnableLogging\":false}}", - * "SourceEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE", - * "Status": "creating", - * "TableMappings": "file://mappingfile.json", - * "TargetEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E" + * ReplicationTask: { + * MigrationType: "full-load", + * ReplicationInstanceArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", + * ReplicationTaskArn: "arn:aws:dms:us-east-1:123456789012:task:OEAMB3NXSTZ6LFYZFEPPBBXPYM", + * ReplicationTaskCreationDate: "2016-12-14T18:25:43Z", + * ReplicationTaskIdentifier: "task1", + * ReplicationTaskSettings: `{"TargetMetadata":{"TargetSchema":"","SupportLobs":true,"FullLobMode":true,"LobChunkSize":64,"LimitedSizeLobMode":false,"LobMaxSize":0},"FullLoadSettings":{"FullLoadEnabled":true,"ApplyChangesEnabled":false,"TargetTablePrepMode":"DROP_AND_CREATE","CreatePkAfterFullLoad":false,"StopTaskCachedChangesApplied":false,"StopTaskCachedChangesNotApplied":false,"ResumeEnabled":false,"ResumeMinTableSize":100000,"ResumeOnlyClusteredPKTables":true,"MaxFullLoadSubTasks":8,"TransactionConsistencyTimeout":600,"CommitRate":10000},"Logging":{"EnableLogging":false}}`, + * SourceEndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE", + * Status: "creating", + * TableMappings: "file://mappingfile.json", + * TargetEndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E" * } * } * *\/ - * // example id: start-replication-task-1481762706778 * ``` * + * @public */ export class StartReplicationTaskCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/StopDataMigrationCommand.ts b/clients/client-database-migration-service/src/commands/StopDataMigrationCommand.ts index 0a00884482856..41574b436eda2 100644 --- a/clients/client-database-migration-service/src/commands/StopDataMigrationCommand.ts +++ b/clients/client-database-migration-service/src/commands/StopDataMigrationCommand.ts @@ -119,6 +119,7 @@ export interface StopDataMigrationCommandOutput extends StopDataMigrationRespons * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class StopDataMigrationCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/StopReplicationCommand.ts b/clients/client-database-migration-service/src/commands/StopReplicationCommand.ts index cd5fd000280a2..4751c6a8a5805 100644 --- a/clients/client-database-migration-service/src/commands/StopReplicationCommand.ts +++ b/clients/client-database-migration-service/src/commands/StopReplicationCommand.ts @@ -137,6 +137,7 @@ export interface StopReplicationCommandOutput extends StopReplicationResponse, _ * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class StopReplicationCommand extends $Command diff --git a/clients/client-database-migration-service/src/commands/StopReplicationTaskCommand.ts b/clients/client-database-migration-service/src/commands/StopReplicationTaskCommand.ts index e74434bcc782b..08122a3f365ac 100644 --- a/clients/client-database-migration-service/src/commands/StopReplicationTaskCommand.ts +++ b/clients/client-database-migration-service/src/commands/StopReplicationTaskCommand.ts @@ -97,34 +97,34 @@ export interface StopReplicationTaskCommandOutput extends StopReplicationTaskRes * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Stop replication task * ```javascript * // Stops the replication task. * const input = { - * "ReplicationTaskArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E" + * ReplicationTaskArn: "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E" * }; * const command = new StopReplicationTaskCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicationTask": { - * "MigrationType": "full-load", - * "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", - * "ReplicationTaskArn": "arn:aws:dms:us-east-1:123456789012:task:OEAMB3NXSTZ6LFYZFEPPBBXPYM", - * "ReplicationTaskCreationDate": "2016-12-14T18:25:43Z", - * "ReplicationTaskIdentifier": "task1", - * "ReplicationTaskSettings": "{\"TargetMetadata\":{\"TargetSchema\":\"\",\"SupportLobs\":true,\"FullLobMode\":true,\"LobChunkSize\":64,\"LimitedSizeLobMode\":false,\"LobMaxSize\":0},\"FullLoadSettings\":{\"FullLoadEnabled\":true,\"ApplyChangesEnabled\":false,\"TargetTablePrepMode\":\"DROP_AND_CREATE\",\"CreatePkAfterFullLoad\":false,\"StopTaskCachedChangesApplied\":false,\"StopTaskCachedChangesNotApplied\":false,\"ResumeEnabled\":false,\"ResumeMinTableSize\":100000,\"ResumeOnlyClusteredPKTables\":true,\"MaxFullLoadSubTasks\":8,\"TransactionConsistencyTimeout\":600,\"CommitRate\":10000},\"Logging\":{\"EnableLogging\":false}}", - * "SourceEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE", - * "Status": "creating", - * "TableMappings": "file://mappingfile.json", - * "TargetEndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E" + * ReplicationTask: { + * MigrationType: "full-load", + * ReplicationInstanceArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ", + * ReplicationTaskArn: "arn:aws:dms:us-east-1:123456789012:task:OEAMB3NXSTZ6LFYZFEPPBBXPYM", + * ReplicationTaskCreationDate: "2016-12-14T18:25:43Z", + * ReplicationTaskIdentifier: "task1", + * ReplicationTaskSettings: `{"TargetMetadata":{"TargetSchema":"","SupportLobs":true,"FullLobMode":true,"LobChunkSize":64,"LimitedSizeLobMode":false,"LobMaxSize":0},"FullLoadSettings":{"FullLoadEnabled":true,"ApplyChangesEnabled":false,"TargetTablePrepMode":"DROP_AND_CREATE","CreatePkAfterFullLoad":false,"StopTaskCachedChangesApplied":false,"StopTaskCachedChangesNotApplied":false,"ResumeEnabled":false,"ResumeMinTableSize":100000,"ResumeOnlyClusteredPKTables":true,"MaxFullLoadSubTasks":8,"TransactionConsistencyTimeout":600,"CommitRate":10000},"Logging":{"EnableLogging":false}}`, + * SourceEndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE", + * Status: "creating", + * TableMappings: "file://mappingfile.json", + * TargetEndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E" * } * } * *\/ - * // example id: stop-replication-task-1481762924947 * ``` * + * @public */ export class StopReplicationTaskCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/TestConnectionCommand.ts b/clients/client-database-migration-service/src/commands/TestConnectionCommand.ts index 7cca652e89582..39a2db8d1763b 100644 --- a/clients/client-database-migration-service/src/commands/TestConnectionCommand.ts +++ b/clients/client-database-migration-service/src/commands/TestConnectionCommand.ts @@ -83,24 +83,24 @@ export interface TestConnectionCommandOutput extends TestConnectionResponse, __M * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* - * @public + * * @example Test conection * ```javascript * // Tests the connection between the replication instance and the endpoint. * const input = { - * "EndpointArn": "arn:aws:dms:us-east-1:123456789012:endpoint:RAAR3R22XSH46S3PWLC3NJAWKM", - * "ReplicationInstanceArn": "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ" + * EndpointArn: "arn:aws:dms:us-east-1:123456789012:endpoint:RAAR3R22XSH46S3PWLC3NJAWKM", + * ReplicationInstanceArn: "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ" * }; * const command = new TestConnectionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Connection": {} + * Connection: { /* empty *\/ } * } * *\/ - * // example id: test-conection-1481763017636 * ``` * + * @public */ export class TestConnectionCommand extends $Command .classBuilder< diff --git a/clients/client-database-migration-service/src/commands/UpdateSubscriptionsToEventBridgeCommand.ts b/clients/client-database-migration-service/src/commands/UpdateSubscriptionsToEventBridgeCommand.ts index 7f4701a9e798d..040754aeb84c0 100644 --- a/clients/client-database-migration-service/src/commands/UpdateSubscriptionsToEventBridgeCommand.ts +++ b/clients/client-database-migration-service/src/commands/UpdateSubscriptionsToEventBridgeCommand.ts @@ -81,6 +81,7 @@ export interface UpdateSubscriptionsToEventBridgeCommandOutput * @throws {@link DatabaseMigrationServiceServiceException} *

Base exception class for all service exceptions from DatabaseMigrationService service.

* + * * @public */ export class UpdateSubscriptionsToEventBridgeCommand extends $Command diff --git a/clients/client-databrew/src/commands/BatchDeleteRecipeVersionCommand.ts b/clients/client-databrew/src/commands/BatchDeleteRecipeVersionCommand.ts index 3432ed5b620a0..e96b66fc65fb3 100644 --- a/clients/client-databrew/src/commands/BatchDeleteRecipeVersionCommand.ts +++ b/clients/client-databrew/src/commands/BatchDeleteRecipeVersionCommand.ts @@ -112,6 +112,7 @@ export interface BatchDeleteRecipeVersionCommandOutput extends BatchDeleteRecipe * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class BatchDeleteRecipeVersionCommand extends $Command diff --git a/clients/client-databrew/src/commands/CreateDatasetCommand.ts b/clients/client-databrew/src/commands/CreateDatasetCommand.ts index 10e4dbdab4154..9d094cf677d52 100644 --- a/clients/client-databrew/src/commands/CreateDatasetCommand.ts +++ b/clients/client-databrew/src/commands/CreateDatasetCommand.ts @@ -150,6 +150,7 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class CreateDatasetCommand extends $Command diff --git a/clients/client-databrew/src/commands/CreateProfileJobCommand.ts b/clients/client-databrew/src/commands/CreateProfileJobCommand.ts index a4388f82712a5..a8a7a8f91b90a 100644 --- a/clients/client-databrew/src/commands/CreateProfileJobCommand.ts +++ b/clients/client-databrew/src/commands/CreateProfileJobCommand.ts @@ -152,6 +152,7 @@ export interface CreateProfileJobCommandOutput extends CreateProfileJobResponse, * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class CreateProfileJobCommand extends $Command diff --git a/clients/client-databrew/src/commands/CreateProjectCommand.ts b/clients/client-databrew/src/commands/CreateProjectCommand.ts index 56bceff36bd81..c888af0cf2709 100644 --- a/clients/client-databrew/src/commands/CreateProjectCommand.ts +++ b/clients/client-databrew/src/commands/CreateProjectCommand.ts @@ -77,6 +77,7 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class CreateProjectCommand extends $Command diff --git a/clients/client-databrew/src/commands/CreateRecipeCommand.ts b/clients/client-databrew/src/commands/CreateRecipeCommand.ts index e6395d9d20843..9e510c5703efe 100644 --- a/clients/client-databrew/src/commands/CreateRecipeCommand.ts +++ b/clients/client-databrew/src/commands/CreateRecipeCommand.ts @@ -85,6 +85,7 @@ export interface CreateRecipeCommandOutput extends CreateRecipeResponse, __Metad * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class CreateRecipeCommand extends $Command diff --git a/clients/client-databrew/src/commands/CreateRecipeJobCommand.ts b/clients/client-databrew/src/commands/CreateRecipeJobCommand.ts index 54aa94f0173b6..ee2849ab43998 100644 --- a/clients/client-databrew/src/commands/CreateRecipeJobCommand.ts +++ b/clients/client-databrew/src/commands/CreateRecipeJobCommand.ts @@ -144,6 +144,7 @@ export interface CreateRecipeJobCommandOutput extends CreateRecipeJobResponse, _ * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class CreateRecipeJobCommand extends $Command diff --git a/clients/client-databrew/src/commands/CreateRulesetCommand.ts b/clients/client-databrew/src/commands/CreateRulesetCommand.ts index e19699a040061..620af06f7ae1c 100644 --- a/clients/client-databrew/src/commands/CreateRulesetCommand.ts +++ b/clients/client-databrew/src/commands/CreateRulesetCommand.ts @@ -91,6 +91,7 @@ export interface CreateRulesetCommandOutput extends CreateRulesetResponse, __Met * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class CreateRulesetCommand extends $Command diff --git a/clients/client-databrew/src/commands/CreateScheduleCommand.ts b/clients/client-databrew/src/commands/CreateScheduleCommand.ts index 7ae68730585d2..5ec0277efbc6f 100644 --- a/clients/client-databrew/src/commands/CreateScheduleCommand.ts +++ b/clients/client-databrew/src/commands/CreateScheduleCommand.ts @@ -72,6 +72,7 @@ export interface CreateScheduleCommandOutput extends CreateScheduleResponse, __M * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class CreateScheduleCommand extends $Command diff --git a/clients/client-databrew/src/commands/DeleteDatasetCommand.ts b/clients/client-databrew/src/commands/DeleteDatasetCommand.ts index a63e7156cccca..344dc165d346c 100644 --- a/clients/client-databrew/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-databrew/src/commands/DeleteDatasetCommand.ts @@ -64,6 +64,7 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class DeleteDatasetCommand extends $Command diff --git a/clients/client-databrew/src/commands/DeleteJobCommand.ts b/clients/client-databrew/src/commands/DeleteJobCommand.ts index 77c609416c1d2..7d857768bcb7b 100644 --- a/clients/client-databrew/src/commands/DeleteJobCommand.ts +++ b/clients/client-databrew/src/commands/DeleteJobCommand.ts @@ -64,6 +64,7 @@ export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBea * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class DeleteJobCommand extends $Command diff --git a/clients/client-databrew/src/commands/DeleteProjectCommand.ts b/clients/client-databrew/src/commands/DeleteProjectCommand.ts index 640e92ce921ba..2c87db59d7d82 100644 --- a/clients/client-databrew/src/commands/DeleteProjectCommand.ts +++ b/clients/client-databrew/src/commands/DeleteProjectCommand.ts @@ -64,6 +64,7 @@ export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __Met * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class DeleteProjectCommand extends $Command diff --git a/clients/client-databrew/src/commands/DeleteRecipeVersionCommand.ts b/clients/client-databrew/src/commands/DeleteRecipeVersionCommand.ts index bbf52afac1bc0..2d5d58936eba4 100644 --- a/clients/client-databrew/src/commands/DeleteRecipeVersionCommand.ts +++ b/clients/client-databrew/src/commands/DeleteRecipeVersionCommand.ts @@ -66,6 +66,7 @@ export interface DeleteRecipeVersionCommandOutput extends DeleteRecipeVersionRes * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class DeleteRecipeVersionCommand extends $Command diff --git a/clients/client-databrew/src/commands/DeleteRulesetCommand.ts b/clients/client-databrew/src/commands/DeleteRulesetCommand.ts index 2c3f920d0dbe6..d959bdbf41346 100644 --- a/clients/client-databrew/src/commands/DeleteRulesetCommand.ts +++ b/clients/client-databrew/src/commands/DeleteRulesetCommand.ts @@ -64,6 +64,7 @@ export interface DeleteRulesetCommandOutput extends DeleteRulesetResponse, __Met * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class DeleteRulesetCommand extends $Command diff --git a/clients/client-databrew/src/commands/DeleteScheduleCommand.ts b/clients/client-databrew/src/commands/DeleteScheduleCommand.ts index 55ef168a8040e..f53ecf080d1dc 100644 --- a/clients/client-databrew/src/commands/DeleteScheduleCommand.ts +++ b/clients/client-databrew/src/commands/DeleteScheduleCommand.ts @@ -61,6 +61,7 @@ export interface DeleteScheduleCommandOutput extends DeleteScheduleResponse, __M * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class DeleteScheduleCommand extends $Command diff --git a/clients/client-databrew/src/commands/DescribeDatasetCommand.ts b/clients/client-databrew/src/commands/DescribeDatasetCommand.ts index 3f17781aeb5d0..56ba0f420df5e 100644 --- a/clients/client-databrew/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-databrew/src/commands/DescribeDatasetCommand.ts @@ -150,6 +150,7 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _ * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class DescribeDatasetCommand extends $Command diff --git a/clients/client-databrew/src/commands/DescribeJobCommand.ts b/clients/client-databrew/src/commands/DescribeJobCommand.ts index 65a0d22f04587..63f038a0211c9 100644 --- a/clients/client-databrew/src/commands/DescribeJobCommand.ts +++ b/clients/client-databrew/src/commands/DescribeJobCommand.ts @@ -207,6 +207,7 @@ export interface DescribeJobCommandOutput extends DescribeJobResponse, __Metadat * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class DescribeJobCommand extends $Command diff --git a/clients/client-databrew/src/commands/DescribeJobRunCommand.ts b/clients/client-databrew/src/commands/DescribeJobRunCommand.ts index 84e94edf94451..928610b4e6091 100644 --- a/clients/client-databrew/src/commands/DescribeJobRunCommand.ts +++ b/clients/client-databrew/src/commands/DescribeJobRunCommand.ts @@ -201,6 +201,7 @@ export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __M * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class DescribeJobRunCommand extends $Command diff --git a/clients/client-databrew/src/commands/DescribeProjectCommand.ts b/clients/client-databrew/src/commands/DescribeProjectCommand.ts index e31049d1178fc..0dab8f36d5610 100644 --- a/clients/client-databrew/src/commands/DescribeProjectCommand.ts +++ b/clients/client-databrew/src/commands/DescribeProjectCommand.ts @@ -79,6 +79,7 @@ export interface DescribeProjectCommandOutput extends DescribeProjectResponse, _ * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class DescribeProjectCommand extends $Command diff --git a/clients/client-databrew/src/commands/DescribeRecipeCommand.ts b/clients/client-databrew/src/commands/DescribeRecipeCommand.ts index fbba6d78a3908..532cc8ff9d255 100644 --- a/clients/client-databrew/src/commands/DescribeRecipeCommand.ts +++ b/clients/client-databrew/src/commands/DescribeRecipeCommand.ts @@ -93,6 +93,7 @@ export interface DescribeRecipeCommandOutput extends DescribeRecipeResponse, __M * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class DescribeRecipeCommand extends $Command diff --git a/clients/client-databrew/src/commands/DescribeRulesetCommand.ts b/clients/client-databrew/src/commands/DescribeRulesetCommand.ts index 5976688eb5b27..dbfac90193aac 100644 --- a/clients/client-databrew/src/commands/DescribeRulesetCommand.ts +++ b/clients/client-databrew/src/commands/DescribeRulesetCommand.ts @@ -92,6 +92,7 @@ export interface DescribeRulesetCommandOutput extends DescribeRulesetResponse, _ * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class DescribeRulesetCommand extends $Command diff --git a/clients/client-databrew/src/commands/DescribeScheduleCommand.ts b/clients/client-databrew/src/commands/DescribeScheduleCommand.ts index 9fe0d15dea9f9..19a2535f289ec 100644 --- a/clients/client-databrew/src/commands/DescribeScheduleCommand.ts +++ b/clients/client-databrew/src/commands/DescribeScheduleCommand.ts @@ -73,6 +73,7 @@ export interface DescribeScheduleCommandOutput extends DescribeScheduleResponse, * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class DescribeScheduleCommand extends $Command diff --git a/clients/client-databrew/src/commands/ListDatasetsCommand.ts b/clients/client-databrew/src/commands/ListDatasetsCommand.ts index ddbcf2bd9818e..a1196f0d87791 100644 --- a/clients/client-databrew/src/commands/ListDatasetsCommand.ts +++ b/clients/client-databrew/src/commands/ListDatasetsCommand.ts @@ -154,6 +154,7 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class ListDatasetsCommand extends $Command diff --git a/clients/client-databrew/src/commands/ListJobRunsCommand.ts b/clients/client-databrew/src/commands/ListJobRunsCommand.ts index b690307cc103b..2b4ec7cfdeb96 100644 --- a/clients/client-databrew/src/commands/ListJobRunsCommand.ts +++ b/clients/client-databrew/src/commands/ListJobRunsCommand.ts @@ -151,6 +151,7 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class ListJobRunsCommand extends $Command diff --git a/clients/client-databrew/src/commands/ListJobsCommand.ts b/clients/client-databrew/src/commands/ListJobsCommand.ts index 997baa7f82570..926bccfeedaf4 100644 --- a/clients/client-databrew/src/commands/ListJobsCommand.ts +++ b/clients/client-databrew/src/commands/ListJobsCommand.ts @@ -157,6 +157,7 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class ListJobsCommand extends $Command diff --git a/clients/client-databrew/src/commands/ListProjectsCommand.ts b/clients/client-databrew/src/commands/ListProjectsCommand.ts index 3407d227a57ed..65f7bfa063a9f 100644 --- a/clients/client-databrew/src/commands/ListProjectsCommand.ts +++ b/clients/client-databrew/src/commands/ListProjectsCommand.ts @@ -82,6 +82,7 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class ListProjectsCommand extends $Command diff --git a/clients/client-databrew/src/commands/ListRecipeVersionsCommand.ts b/clients/client-databrew/src/commands/ListRecipeVersionsCommand.ts index e60ac03d31cf0..486e6ff7b9ad1 100644 --- a/clients/client-databrew/src/commands/ListRecipeVersionsCommand.ts +++ b/clients/client-databrew/src/commands/ListRecipeVersionsCommand.ts @@ -96,6 +96,7 @@ export interface ListRecipeVersionsCommandOutput extends ListRecipeVersionsRespo * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class ListRecipeVersionsCommand extends $Command diff --git a/clients/client-databrew/src/commands/ListRecipesCommand.ts b/clients/client-databrew/src/commands/ListRecipesCommand.ts index 05b603230d346..2a73aba18900c 100644 --- a/clients/client-databrew/src/commands/ListRecipesCommand.ts +++ b/clients/client-databrew/src/commands/ListRecipesCommand.ts @@ -95,6 +95,7 @@ export interface ListRecipesCommandOutput extends ListRecipesResponse, __Metadat * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class ListRecipesCommand extends $Command diff --git a/clients/client-databrew/src/commands/ListRulesetsCommand.ts b/clients/client-databrew/src/commands/ListRulesetsCommand.ts index 0f3394c9206f1..34afb7616e613 100644 --- a/clients/client-databrew/src/commands/ListRulesetsCommand.ts +++ b/clients/client-databrew/src/commands/ListRulesetsCommand.ts @@ -81,6 +81,7 @@ export interface ListRulesetsCommandOutput extends ListRulesetsResponse, __Metad * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class ListRulesetsCommand extends $Command diff --git a/clients/client-databrew/src/commands/ListSchedulesCommand.ts b/clients/client-databrew/src/commands/ListSchedulesCommand.ts index 4b100447d4ea4..35ba3fd6a8eb5 100644 --- a/clients/client-databrew/src/commands/ListSchedulesCommand.ts +++ b/clients/client-databrew/src/commands/ListSchedulesCommand.ts @@ -78,6 +78,7 @@ export interface ListSchedulesCommandOutput extends ListSchedulesResponse, __Met * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class ListSchedulesCommand extends $Command diff --git a/clients/client-databrew/src/commands/ListTagsForResourceCommand.ts b/clients/client-databrew/src/commands/ListTagsForResourceCommand.ts index 905d3a05a4b27..1cbe80ccc1767 100644 --- a/clients/client-databrew/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-databrew/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-databrew/src/commands/PublishRecipeCommand.ts b/clients/client-databrew/src/commands/PublishRecipeCommand.ts index b8ce489f1aa3e..ff2053aa7ee67 100644 --- a/clients/client-databrew/src/commands/PublishRecipeCommand.ts +++ b/clients/client-databrew/src/commands/PublishRecipeCommand.ts @@ -65,6 +65,7 @@ export interface PublishRecipeCommandOutput extends PublishRecipeResponse, __Met * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class PublishRecipeCommand extends $Command diff --git a/clients/client-databrew/src/commands/SendProjectSessionActionCommand.ts b/clients/client-databrew/src/commands/SendProjectSessionActionCommand.ts index 1b668a21e726a..5e065193b23a2 100644 --- a/clients/client-databrew/src/commands/SendProjectSessionActionCommand.ts +++ b/clients/client-databrew/src/commands/SendProjectSessionActionCommand.ts @@ -99,6 +99,7 @@ export interface SendProjectSessionActionCommandOutput extends SendProjectSessio * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class SendProjectSessionActionCommand extends $Command diff --git a/clients/client-databrew/src/commands/StartJobRunCommand.ts b/clients/client-databrew/src/commands/StartJobRunCommand.ts index 8e3680391e183..0de611eaa684d 100644 --- a/clients/client-databrew/src/commands/StartJobRunCommand.ts +++ b/clients/client-databrew/src/commands/StartJobRunCommand.ts @@ -67,6 +67,7 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class StartJobRunCommand extends $Command diff --git a/clients/client-databrew/src/commands/StartProjectSessionCommand.ts b/clients/client-databrew/src/commands/StartProjectSessionCommand.ts index b2d24f0bf586e..94b5828125cca 100644 --- a/clients/client-databrew/src/commands/StartProjectSessionCommand.ts +++ b/clients/client-databrew/src/commands/StartProjectSessionCommand.ts @@ -74,6 +74,7 @@ export interface StartProjectSessionCommandOutput extends StartProjectSessionRes * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class StartProjectSessionCommand extends $Command diff --git a/clients/client-databrew/src/commands/StopJobRunCommand.ts b/clients/client-databrew/src/commands/StopJobRunCommand.ts index a82c861057642..e0dab984af1b6 100644 --- a/clients/client-databrew/src/commands/StopJobRunCommand.ts +++ b/clients/client-databrew/src/commands/StopJobRunCommand.ts @@ -62,6 +62,7 @@ export interface StopJobRunCommandOutput extends StopJobRunResponse, __MetadataB * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class StopJobRunCommand extends $Command diff --git a/clients/client-databrew/src/commands/TagResourceCommand.ts b/clients/client-databrew/src/commands/TagResourceCommand.ts index b6f4da131f33a..93e40d6726241 100644 --- a/clients/client-databrew/src/commands/TagResourceCommand.ts +++ b/clients/client-databrew/src/commands/TagResourceCommand.ts @@ -66,6 +66,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-databrew/src/commands/UntagResourceCommand.ts b/clients/client-databrew/src/commands/UntagResourceCommand.ts index aacb55601cfa9..61fd98173ed33 100644 --- a/clients/client-databrew/src/commands/UntagResourceCommand.ts +++ b/clients/client-databrew/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-databrew/src/commands/UpdateDatasetCommand.ts b/clients/client-databrew/src/commands/UpdateDatasetCommand.ts index 456de5e36ac95..ede25f8162daf 100644 --- a/clients/client-databrew/src/commands/UpdateDatasetCommand.ts +++ b/clients/client-databrew/src/commands/UpdateDatasetCommand.ts @@ -144,6 +144,7 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class UpdateDatasetCommand extends $Command diff --git a/clients/client-databrew/src/commands/UpdateProfileJobCommand.ts b/clients/client-databrew/src/commands/UpdateProfileJobCommand.ts index 5473762be675e..e569f7dacdf40 100644 --- a/clients/client-databrew/src/commands/UpdateProfileJobCommand.ts +++ b/clients/client-databrew/src/commands/UpdateProfileJobCommand.ts @@ -142,6 +142,7 @@ export interface UpdateProfileJobCommandOutput extends UpdateProfileJobResponse, * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class UpdateProfileJobCommand extends $Command diff --git a/clients/client-databrew/src/commands/UpdateProjectCommand.ts b/clients/client-databrew/src/commands/UpdateProjectCommand.ts index 075bc55d04d0e..fb39b1d48dd42 100644 --- a/clients/client-databrew/src/commands/UpdateProjectCommand.ts +++ b/clients/client-databrew/src/commands/UpdateProjectCommand.ts @@ -67,6 +67,7 @@ export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __Met * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class UpdateProjectCommand extends $Command diff --git a/clients/client-databrew/src/commands/UpdateRecipeCommand.ts b/clients/client-databrew/src/commands/UpdateRecipeCommand.ts index b2d1c3a5cbbdd..2bdc92aefdd81 100644 --- a/clients/client-databrew/src/commands/UpdateRecipeCommand.ts +++ b/clients/client-databrew/src/commands/UpdateRecipeCommand.ts @@ -80,6 +80,7 @@ export interface UpdateRecipeCommandOutput extends UpdateRecipeResponse, __Metad * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class UpdateRecipeCommand extends $Command diff --git a/clients/client-databrew/src/commands/UpdateRecipeJobCommand.ts b/clients/client-databrew/src/commands/UpdateRecipeJobCommand.ts index 31c1503eed4eb..a1eabc8db2b5f 100644 --- a/clients/client-databrew/src/commands/UpdateRecipeJobCommand.ts +++ b/clients/client-databrew/src/commands/UpdateRecipeJobCommand.ts @@ -129,6 +129,7 @@ export interface UpdateRecipeJobCommandOutput extends UpdateRecipeJobResponse, _ * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class UpdateRecipeJobCommand extends $Command diff --git a/clients/client-databrew/src/commands/UpdateRulesetCommand.ts b/clients/client-databrew/src/commands/UpdateRulesetCommand.ts index fbf15fc0b25b2..5277df89ba271 100644 --- a/clients/client-databrew/src/commands/UpdateRulesetCommand.ts +++ b/clients/client-databrew/src/commands/UpdateRulesetCommand.ts @@ -83,6 +83,7 @@ export interface UpdateRulesetCommandOutput extends UpdateRulesetResponse, __Met * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class UpdateRulesetCommand extends $Command diff --git a/clients/client-databrew/src/commands/UpdateScheduleCommand.ts b/clients/client-databrew/src/commands/UpdateScheduleCommand.ts index f7dae5fee6e37..aa798b8febf50 100644 --- a/clients/client-databrew/src/commands/UpdateScheduleCommand.ts +++ b/clients/client-databrew/src/commands/UpdateScheduleCommand.ts @@ -68,6 +68,7 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleResponse, __M * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* + * * @public */ export class UpdateScheduleCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/AcceptDataGrantCommand.ts b/clients/client-dataexchange/src/commands/AcceptDataGrantCommand.ts index 7a2c9b0677c29..38a787be1f0e1 100644 --- a/clients/client-dataexchange/src/commands/AcceptDataGrantCommand.ts +++ b/clients/client-dataexchange/src/commands/AcceptDataGrantCommand.ts @@ -86,6 +86,7 @@ export interface AcceptDataGrantCommandOutput extends AcceptDataGrantResponse, _ * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class AcceptDataGrantCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/CancelJobCommand.ts b/clients/client-dataexchange/src/commands/CancelJobCommand.ts index 83968d33394b5..b604fb2989e60 100644 --- a/clients/client-dataexchange/src/commands/CancelJobCommand.ts +++ b/clients/client-dataexchange/src/commands/CancelJobCommand.ts @@ -70,6 +70,7 @@ export interface CancelJobCommandOutput extends __MetadataBearer {} * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class CancelJobCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/CreateDataGrantCommand.ts b/clients/client-dataexchange/src/commands/CreateDataGrantCommand.ts index 284f2cfeb202d..3f1d581a5515a 100644 --- a/clients/client-dataexchange/src/commands/CreateDataGrantCommand.ts +++ b/clients/client-dataexchange/src/commands/CreateDataGrantCommand.ts @@ -97,6 +97,7 @@ export interface CreateDataGrantCommandOutput extends CreateDataGrantResponse, _ * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class CreateDataGrantCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/CreateDataSetCommand.ts b/clients/client-dataexchange/src/commands/CreateDataSetCommand.ts index afb6cce7a19d7..1ae0e985257db 100644 --- a/clients/client-dataexchange/src/commands/CreateDataSetCommand.ts +++ b/clients/client-dataexchange/src/commands/CreateDataSetCommand.ts @@ -90,6 +90,7 @@ export interface CreateDataSetCommandOutput extends CreateDataSetResponse, __Met * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class CreateDataSetCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/CreateEventActionCommand.ts b/clients/client-dataexchange/src/commands/CreateEventActionCommand.ts index 3eee7644377ec..04f2b3168f867 100644 --- a/clients/client-dataexchange/src/commands/CreateEventActionCommand.ts +++ b/clients/client-dataexchange/src/commands/CreateEventActionCommand.ts @@ -106,6 +106,7 @@ export interface CreateEventActionCommandOutput extends CreateEventActionRespons * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class CreateEventActionCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/CreateJobCommand.ts b/clients/client-dataexchange/src/commands/CreateJobCommand.ts index 9c58566e05b6f..bf9a69edd7a71 100644 --- a/clients/client-dataexchange/src/commands/CreateJobCommand.ts +++ b/clients/client-dataexchange/src/commands/CreateJobCommand.ts @@ -351,6 +351,7 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class CreateJobCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/CreateRevisionCommand.ts b/clients/client-dataexchange/src/commands/CreateRevisionCommand.ts index caa82d4c76963..2891532596792 100644 --- a/clients/client-dataexchange/src/commands/CreateRevisionCommand.ts +++ b/clients/client-dataexchange/src/commands/CreateRevisionCommand.ts @@ -87,6 +87,7 @@ export interface CreateRevisionCommandOutput extends CreateRevisionResponse, __M * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class CreateRevisionCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/DeleteAssetCommand.ts b/clients/client-dataexchange/src/commands/DeleteAssetCommand.ts index fc230bc57f1e9..31fa213bdf846 100644 --- a/clients/client-dataexchange/src/commands/DeleteAssetCommand.ts +++ b/clients/client-dataexchange/src/commands/DeleteAssetCommand.ts @@ -74,6 +74,7 @@ export interface DeleteAssetCommandOutput extends __MetadataBearer {} * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class DeleteAssetCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/DeleteDataGrantCommand.ts b/clients/client-dataexchange/src/commands/DeleteDataGrantCommand.ts index 1f057bb8b2421..f83a404711046 100644 --- a/clients/client-dataexchange/src/commands/DeleteDataGrantCommand.ts +++ b/clients/client-dataexchange/src/commands/DeleteDataGrantCommand.ts @@ -68,6 +68,7 @@ export interface DeleteDataGrantCommandOutput extends __MetadataBearer {} * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class DeleteDataGrantCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/DeleteDataSetCommand.ts b/clients/client-dataexchange/src/commands/DeleteDataSetCommand.ts index 463c35f43ac0c..dab642d64ebc3 100644 --- a/clients/client-dataexchange/src/commands/DeleteDataSetCommand.ts +++ b/clients/client-dataexchange/src/commands/DeleteDataSetCommand.ts @@ -72,6 +72,7 @@ export interface DeleteDataSetCommandOutput extends __MetadataBearer {} * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class DeleteDataSetCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/DeleteEventActionCommand.ts b/clients/client-dataexchange/src/commands/DeleteEventActionCommand.ts index 07d1f81fb9e68..f209dbb8161a6 100644 --- a/clients/client-dataexchange/src/commands/DeleteEventActionCommand.ts +++ b/clients/client-dataexchange/src/commands/DeleteEventActionCommand.ts @@ -65,6 +65,7 @@ export interface DeleteEventActionCommandOutput extends __MetadataBearer {} * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class DeleteEventActionCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/DeleteRevisionCommand.ts b/clients/client-dataexchange/src/commands/DeleteRevisionCommand.ts index 36e8edbae7dca..f1faf6f4ab146 100644 --- a/clients/client-dataexchange/src/commands/DeleteRevisionCommand.ts +++ b/clients/client-dataexchange/src/commands/DeleteRevisionCommand.ts @@ -73,6 +73,7 @@ export interface DeleteRevisionCommandOutput extends __MetadataBearer {} * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class DeleteRevisionCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/GetAssetCommand.ts b/clients/client-dataexchange/src/commands/GetAssetCommand.ts index 957b287b93f83..cff2a76258692 100644 --- a/clients/client-dataexchange/src/commands/GetAssetCommand.ts +++ b/clients/client-dataexchange/src/commands/GetAssetCommand.ts @@ -147,6 +147,7 @@ export interface GetAssetCommandOutput extends GetAssetResponse, __MetadataBeare * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class GetAssetCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/GetDataGrantCommand.ts b/clients/client-dataexchange/src/commands/GetDataGrantCommand.ts index 644be676797dd..fa97628a3bdd4 100644 --- a/clients/client-dataexchange/src/commands/GetDataGrantCommand.ts +++ b/clients/client-dataexchange/src/commands/GetDataGrantCommand.ts @@ -86,6 +86,7 @@ export interface GetDataGrantCommandOutput extends GetDataGrantResponse, __Metad * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class GetDataGrantCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/GetDataSetCommand.ts b/clients/client-dataexchange/src/commands/GetDataSetCommand.ts index c4df8ccb7a7a0..92a69b498e60e 100644 --- a/clients/client-dataexchange/src/commands/GetDataSetCommand.ts +++ b/clients/client-dataexchange/src/commands/GetDataSetCommand.ts @@ -82,6 +82,7 @@ export interface GetDataSetCommandOutput extends GetDataSetResponse, __MetadataB * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class GetDataSetCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/GetEventActionCommand.ts b/clients/client-dataexchange/src/commands/GetEventActionCommand.ts index 3dfdd0b79011e..4b788c2d8b777 100644 --- a/clients/client-dataexchange/src/commands/GetEventActionCommand.ts +++ b/clients/client-dataexchange/src/commands/GetEventActionCommand.ts @@ -87,6 +87,7 @@ export interface GetEventActionCommandOutput extends GetEventActionResponse, __M * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class GetEventActionCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/GetJobCommand.ts b/clients/client-dataexchange/src/commands/GetJobCommand.ts index c0e96cd175b79..6f8cf15866080 100644 --- a/clients/client-dataexchange/src/commands/GetJobCommand.ts +++ b/clients/client-dataexchange/src/commands/GetJobCommand.ts @@ -222,6 +222,7 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {} * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class GetJobCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/GetReceivedDataGrantCommand.ts b/clients/client-dataexchange/src/commands/GetReceivedDataGrantCommand.ts index 1a4e215f7300a..d5826cb5eac17 100644 --- a/clients/client-dataexchange/src/commands/GetReceivedDataGrantCommand.ts +++ b/clients/client-dataexchange/src/commands/GetReceivedDataGrantCommand.ts @@ -82,6 +82,7 @@ export interface GetReceivedDataGrantCommandOutput extends GetReceivedDataGrantR * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class GetReceivedDataGrantCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/GetRevisionCommand.ts b/clients/client-dataexchange/src/commands/GetRevisionCommand.ts index 00e5fdf03cb45..f55e41d21d397 100644 --- a/clients/client-dataexchange/src/commands/GetRevisionCommand.ts +++ b/clients/client-dataexchange/src/commands/GetRevisionCommand.ts @@ -81,6 +81,7 @@ export interface GetRevisionCommandOutput extends GetRevisionResponse, __Metadat * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class GetRevisionCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/ListDataGrantsCommand.ts b/clients/client-dataexchange/src/commands/ListDataGrantsCommand.ts index 126abc373d2b0..6e66ae210cb08 100644 --- a/clients/client-dataexchange/src/commands/ListDataGrantsCommand.ts +++ b/clients/client-dataexchange/src/commands/ListDataGrantsCommand.ts @@ -87,6 +87,7 @@ export interface ListDataGrantsCommandOutput extends ListDataGrantsResponse, __M * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class ListDataGrantsCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/ListDataSetRevisionsCommand.ts b/clients/client-dataexchange/src/commands/ListDataSetRevisionsCommand.ts index 57fe5a92c512c..c142836e8ea0e 100644 --- a/clients/client-dataexchange/src/commands/ListDataSetRevisionsCommand.ts +++ b/clients/client-dataexchange/src/commands/ListDataSetRevisionsCommand.ts @@ -85,6 +85,7 @@ export interface ListDataSetRevisionsCommandOutput extends ListDataSetRevisionsR * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class ListDataSetRevisionsCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/ListDataSetsCommand.ts b/clients/client-dataexchange/src/commands/ListDataSetsCommand.ts index cd531210898cc..9f60c087792df 100644 --- a/clients/client-dataexchange/src/commands/ListDataSetsCommand.ts +++ b/clients/client-dataexchange/src/commands/ListDataSetsCommand.ts @@ -87,6 +87,7 @@ export interface ListDataSetsCommandOutput extends ListDataSetsResponse, __Metad * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class ListDataSetsCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/ListEventActionsCommand.ts b/clients/client-dataexchange/src/commands/ListEventActionsCommand.ts index d67f207815c56..648339173150e 100644 --- a/clients/client-dataexchange/src/commands/ListEventActionsCommand.ts +++ b/clients/client-dataexchange/src/commands/ListEventActionsCommand.ts @@ -94,6 +94,7 @@ export interface ListEventActionsCommandOutput extends ListEventActionsResponse, * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class ListEventActionsCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/ListJobsCommand.ts b/clients/client-dataexchange/src/commands/ListJobsCommand.ts index fc18ebdb8b411..f40f43b6e098e 100644 --- a/clients/client-dataexchange/src/commands/ListJobsCommand.ts +++ b/clients/client-dataexchange/src/commands/ListJobsCommand.ts @@ -230,6 +230,7 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class ListJobsCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/ListReceivedDataGrantsCommand.ts b/clients/client-dataexchange/src/commands/ListReceivedDataGrantsCommand.ts index 2d82419057a7c..8f30b491d39ca 100644 --- a/clients/client-dataexchange/src/commands/ListReceivedDataGrantsCommand.ts +++ b/clients/client-dataexchange/src/commands/ListReceivedDataGrantsCommand.ts @@ -89,6 +89,7 @@ export interface ListReceivedDataGrantsCommandOutput extends ListReceivedDataGra * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class ListReceivedDataGrantsCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/ListRevisionAssetsCommand.ts b/clients/client-dataexchange/src/commands/ListRevisionAssetsCommand.ts index a1f8692b67f12..295a7adbc1216 100644 --- a/clients/client-dataexchange/src/commands/ListRevisionAssetsCommand.ts +++ b/clients/client-dataexchange/src/commands/ListRevisionAssetsCommand.ts @@ -154,6 +154,7 @@ export interface ListRevisionAssetsCommandOutput extends ListRevisionAssetsRespo * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class ListRevisionAssetsCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/ListTagsForResourceCommand.ts b/clients/client-dataexchange/src/commands/ListTagsForResourceCommand.ts index 1eb90510b93d2..d9c1a2989d81a 100644 --- a/clients/client-dataexchange/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-dataexchange/src/commands/ListTagsForResourceCommand.ts @@ -57,6 +57,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/RevokeRevisionCommand.ts b/clients/client-dataexchange/src/commands/RevokeRevisionCommand.ts index 42eafb1b9899b..40f3ba860a08c 100644 --- a/clients/client-dataexchange/src/commands/RevokeRevisionCommand.ts +++ b/clients/client-dataexchange/src/commands/RevokeRevisionCommand.ts @@ -86,6 +86,7 @@ export interface RevokeRevisionCommandOutput extends RevokeRevisionResponse, __M * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class RevokeRevisionCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/SendApiAssetCommand.ts b/clients/client-dataexchange/src/commands/SendApiAssetCommand.ts index bc4da55839e53..f3f23f3192336 100644 --- a/clients/client-dataexchange/src/commands/SendApiAssetCommand.ts +++ b/clients/client-dataexchange/src/commands/SendApiAssetCommand.ts @@ -85,6 +85,7 @@ export interface SendApiAssetCommandOutput extends SendApiAssetResponse, __Metad * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class SendApiAssetCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/SendDataSetNotificationCommand.ts b/clients/client-dataexchange/src/commands/SendDataSetNotificationCommand.ts index 35f1fb83a5b3c..ea5c5eece7f85 100644 --- a/clients/client-dataexchange/src/commands/SendDataSetNotificationCommand.ts +++ b/clients/client-dataexchange/src/commands/SendDataSetNotificationCommand.ts @@ -121,6 +121,7 @@ export interface SendDataSetNotificationCommandOutput extends SendDataSetNotific * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class SendDataSetNotificationCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/StartJobCommand.ts b/clients/client-dataexchange/src/commands/StartJobCommand.ts index 5098d43057478..5ca54e5e2244c 100644 --- a/clients/client-dataexchange/src/commands/StartJobCommand.ts +++ b/clients/client-dataexchange/src/commands/StartJobCommand.ts @@ -72,6 +72,7 @@ export interface StartJobCommandOutput extends StartJobResponse, __MetadataBeare * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class StartJobCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/TagResourceCommand.ts b/clients/client-dataexchange/src/commands/TagResourceCommand.ts index 7e2ffc72dbbdd..9f96e5389960a 100644 --- a/clients/client-dataexchange/src/commands/TagResourceCommand.ts +++ b/clients/client-dataexchange/src/commands/TagResourceCommand.ts @@ -56,6 +56,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/UntagResourceCommand.ts b/clients/client-dataexchange/src/commands/UntagResourceCommand.ts index aa3d7ade58a8f..67161650ca190 100644 --- a/clients/client-dataexchange/src/commands/UntagResourceCommand.ts +++ b/clients/client-dataexchange/src/commands/UntagResourceCommand.ts @@ -56,6 +56,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/UpdateAssetCommand.ts b/clients/client-dataexchange/src/commands/UpdateAssetCommand.ts index ee797ed90de49..720bdd687483a 100644 --- a/clients/client-dataexchange/src/commands/UpdateAssetCommand.ts +++ b/clients/client-dataexchange/src/commands/UpdateAssetCommand.ts @@ -155,6 +155,7 @@ export interface UpdateAssetCommandOutput extends UpdateAssetResponse, __Metadat * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class UpdateAssetCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/UpdateDataSetCommand.ts b/clients/client-dataexchange/src/commands/UpdateDataSetCommand.ts index 9806861cc69b1..e215ab95ed60a 100644 --- a/clients/client-dataexchange/src/commands/UpdateDataSetCommand.ts +++ b/clients/client-dataexchange/src/commands/UpdateDataSetCommand.ts @@ -84,6 +84,7 @@ export interface UpdateDataSetCommandOutput extends UpdateDataSetResponse, __Met * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class UpdateDataSetCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/UpdateEventActionCommand.ts b/clients/client-dataexchange/src/commands/UpdateEventActionCommand.ts index a0dbd55841ea5..abbc056333de4 100644 --- a/clients/client-dataexchange/src/commands/UpdateEventActionCommand.ts +++ b/clients/client-dataexchange/src/commands/UpdateEventActionCommand.ts @@ -102,6 +102,7 @@ export interface UpdateEventActionCommandOutput extends UpdateEventActionRespons * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class UpdateEventActionCommand extends $Command diff --git a/clients/client-dataexchange/src/commands/UpdateRevisionCommand.ts b/clients/client-dataexchange/src/commands/UpdateRevisionCommand.ts index 26671d982e391..d8c15d894975a 100644 --- a/clients/client-dataexchange/src/commands/UpdateRevisionCommand.ts +++ b/clients/client-dataexchange/src/commands/UpdateRevisionCommand.ts @@ -87,6 +87,7 @@ export interface UpdateRevisionCommandOutput extends UpdateRevisionResponse, __M * @throws {@link DataExchangeServiceException} *

Base exception class for all service exceptions from DataExchange service.

* + * * @public */ export class UpdateRevisionCommand extends $Command diff --git a/clients/client-datasync/src/commands/AddStorageSystemCommand.ts b/clients/client-datasync/src/commands/AddStorageSystemCommand.ts index 41483dfcd7557..8e98cb2e13ffd 100644 --- a/clients/client-datasync/src/commands/AddStorageSystemCommand.ts +++ b/clients/client-datasync/src/commands/AddStorageSystemCommand.ts @@ -87,6 +87,7 @@ export interface AddStorageSystemCommandOutput extends AddStorageSystemResponse, * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class AddStorageSystemCommand extends $Command diff --git a/clients/client-datasync/src/commands/CancelTaskExecutionCommand.ts b/clients/client-datasync/src/commands/CancelTaskExecutionCommand.ts index d6163173b7806..c333f1b08c1aa 100644 --- a/clients/client-datasync/src/commands/CancelTaskExecutionCommand.ts +++ b/clients/client-datasync/src/commands/CancelTaskExecutionCommand.ts @@ -66,6 +66,7 @@ export interface CancelTaskExecutionCommandOutput extends CancelTaskExecutionRes * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class CancelTaskExecutionCommand extends $Command diff --git a/clients/client-datasync/src/commands/CreateAgentCommand.ts b/clients/client-datasync/src/commands/CreateAgentCommand.ts index d64fc5a20e0b5..c29571f5d0a9a 100644 --- a/clients/client-datasync/src/commands/CreateAgentCommand.ts +++ b/clients/client-datasync/src/commands/CreateAgentCommand.ts @@ -79,6 +79,7 @@ export interface CreateAgentCommandOutput extends CreateAgentResponse, __Metadat * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class CreateAgentCommand extends $Command diff --git a/clients/client-datasync/src/commands/CreateLocationAzureBlobCommand.ts b/clients/client-datasync/src/commands/CreateLocationAzureBlobCommand.ts index bcca1985285cf..3fa57cb62a6b6 100644 --- a/clients/client-datasync/src/commands/CreateLocationAzureBlobCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationAzureBlobCommand.ts @@ -86,6 +86,7 @@ export interface CreateLocationAzureBlobCommandOutput extends CreateLocationAzur * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class CreateLocationAzureBlobCommand extends $Command diff --git a/clients/client-datasync/src/commands/CreateLocationEfsCommand.ts b/clients/client-datasync/src/commands/CreateLocationEfsCommand.ts index ff742d6529f62..0b27709ee5e63 100644 --- a/clients/client-datasync/src/commands/CreateLocationEfsCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationEfsCommand.ts @@ -83,6 +83,7 @@ export interface CreateLocationEfsCommandOutput extends CreateLocationEfsRespons * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class CreateLocationEfsCommand extends $Command diff --git a/clients/client-datasync/src/commands/CreateLocationFsxLustreCommand.ts b/clients/client-datasync/src/commands/CreateLocationFsxLustreCommand.ts index 8541e50710f00..266b448513099 100644 --- a/clients/client-datasync/src/commands/CreateLocationFsxLustreCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationFsxLustreCommand.ts @@ -76,6 +76,7 @@ export interface CreateLocationFsxLustreCommandOutput extends CreateLocationFsxL * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class CreateLocationFsxLustreCommand extends $Command diff --git a/clients/client-datasync/src/commands/CreateLocationFsxOntapCommand.ts b/clients/client-datasync/src/commands/CreateLocationFsxOntapCommand.ts index 2b8f5b96c9c7f..a1cd9ad996482 100644 --- a/clients/client-datasync/src/commands/CreateLocationFsxOntapCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationFsxOntapCommand.ts @@ -95,6 +95,7 @@ export interface CreateLocationFsxOntapCommandOutput extends CreateLocationFsxOn * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class CreateLocationFsxOntapCommand extends $Command diff --git a/clients/client-datasync/src/commands/CreateLocationFsxOpenZfsCommand.ts b/clients/client-datasync/src/commands/CreateLocationFsxOpenZfsCommand.ts index 95bcd07e27e60..60ea2710505bf 100644 --- a/clients/client-datasync/src/commands/CreateLocationFsxOpenZfsCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationFsxOpenZfsCommand.ts @@ -99,6 +99,7 @@ export interface CreateLocationFsxOpenZfsCommandOutput extends CreateLocationFsx * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class CreateLocationFsxOpenZfsCommand extends $Command diff --git a/clients/client-datasync/src/commands/CreateLocationFsxWindowsCommand.ts b/clients/client-datasync/src/commands/CreateLocationFsxWindowsCommand.ts index f32351b33bc47..2bb7e9ccdbb40 100644 --- a/clients/client-datasync/src/commands/CreateLocationFsxWindowsCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationFsxWindowsCommand.ts @@ -84,6 +84,7 @@ export interface CreateLocationFsxWindowsCommandOutput extends CreateLocationFsx * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class CreateLocationFsxWindowsCommand extends $Command diff --git a/clients/client-datasync/src/commands/CreateLocationHdfsCommand.ts b/clients/client-datasync/src/commands/CreateLocationHdfsCommand.ts index c1b1226b0ac80..19955eb16b52c 100644 --- a/clients/client-datasync/src/commands/CreateLocationHdfsCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationHdfsCommand.ts @@ -94,6 +94,7 @@ export interface CreateLocationHdfsCommandOutput extends CreateLocationHdfsRespo * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class CreateLocationHdfsCommand extends $Command diff --git a/clients/client-datasync/src/commands/CreateLocationNfsCommand.ts b/clients/client-datasync/src/commands/CreateLocationNfsCommand.ts index 9e4e1d79f14e7..4b94dc9dd517c 100644 --- a/clients/client-datasync/src/commands/CreateLocationNfsCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationNfsCommand.ts @@ -82,6 +82,7 @@ export interface CreateLocationNfsCommandOutput extends CreateLocationNfsRespons * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class CreateLocationNfsCommand extends $Command diff --git a/clients/client-datasync/src/commands/CreateLocationObjectStorageCommand.ts b/clients/client-datasync/src/commands/CreateLocationObjectStorageCommand.ts index b0e52eae09a0e..8501044d9b411 100644 --- a/clients/client-datasync/src/commands/CreateLocationObjectStorageCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationObjectStorageCommand.ts @@ -87,6 +87,7 @@ export interface CreateLocationObjectStorageCommandOutput * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class CreateLocationObjectStorageCommand extends $Command diff --git a/clients/client-datasync/src/commands/CreateLocationS3Command.ts b/clients/client-datasync/src/commands/CreateLocationS3Command.ts index 0dde78996f101..cea72d1625fe8 100644 --- a/clients/client-datasync/src/commands/CreateLocationS3Command.ts +++ b/clients/client-datasync/src/commands/CreateLocationS3Command.ts @@ -94,6 +94,7 @@ export interface CreateLocationS3CommandOutput extends CreateLocationS3Response, * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class CreateLocationS3Command extends $Command diff --git a/clients/client-datasync/src/commands/CreateLocationSmbCommand.ts b/clients/client-datasync/src/commands/CreateLocationSmbCommand.ts index 4e53708b510fb..5d712c83bef56 100644 --- a/clients/client-datasync/src/commands/CreateLocationSmbCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationSmbCommand.ts @@ -93,6 +93,7 @@ export interface CreateLocationSmbCommandOutput extends CreateLocationSmbRespons * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class CreateLocationSmbCommand extends $Command diff --git a/clients/client-datasync/src/commands/CreateTaskCommand.ts b/clients/client-datasync/src/commands/CreateTaskCommand.ts index 487324c60d095..7416064c33bd5 100644 --- a/clients/client-datasync/src/commands/CreateTaskCommand.ts +++ b/clients/client-datasync/src/commands/CreateTaskCommand.ts @@ -151,6 +151,7 @@ export interface CreateTaskCommandOutput extends CreateTaskResponse, __MetadataB * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class CreateTaskCommand extends $Command diff --git a/clients/client-datasync/src/commands/DeleteAgentCommand.ts b/clients/client-datasync/src/commands/DeleteAgentCommand.ts index 257b1f29fe2e0..6dd2c0d5a3b37 100644 --- a/clients/client-datasync/src/commands/DeleteAgentCommand.ts +++ b/clients/client-datasync/src/commands/DeleteAgentCommand.ts @@ -64,6 +64,7 @@ export interface DeleteAgentCommandOutput extends DeleteAgentResponse, __Metadat * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DeleteAgentCommand extends $Command diff --git a/clients/client-datasync/src/commands/DeleteLocationCommand.ts b/clients/client-datasync/src/commands/DeleteLocationCommand.ts index 75552127695fd..51e6bcf7877f1 100644 --- a/clients/client-datasync/src/commands/DeleteLocationCommand.ts +++ b/clients/client-datasync/src/commands/DeleteLocationCommand.ts @@ -60,6 +60,7 @@ export interface DeleteLocationCommandOutput extends DeleteLocationResponse, __M * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DeleteLocationCommand extends $Command diff --git a/clients/client-datasync/src/commands/DeleteTaskCommand.ts b/clients/client-datasync/src/commands/DeleteTaskCommand.ts index edbc72d13403d..91b94273d4b31 100644 --- a/clients/client-datasync/src/commands/DeleteTaskCommand.ts +++ b/clients/client-datasync/src/commands/DeleteTaskCommand.ts @@ -60,6 +60,7 @@ export interface DeleteTaskCommandOutput extends DeleteTaskResponse, __MetadataB * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DeleteTaskCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeAgentCommand.ts b/clients/client-datasync/src/commands/DescribeAgentCommand.ts index 45a9e66a1c3ed..e71ca59329234 100644 --- a/clients/client-datasync/src/commands/DescribeAgentCommand.ts +++ b/clients/client-datasync/src/commands/DescribeAgentCommand.ts @@ -81,6 +81,7 @@ export interface DescribeAgentCommandOutput extends DescribeAgentResponse, __Met * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeAgentCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeDiscoveryJobCommand.ts b/clients/client-datasync/src/commands/DescribeDiscoveryJobCommand.ts index 2341d7731b835..a4854a8c7fd80 100644 --- a/clients/client-datasync/src/commands/DescribeDiscoveryJobCommand.ts +++ b/clients/client-datasync/src/commands/DescribeDiscoveryJobCommand.ts @@ -67,6 +67,7 @@ export interface DescribeDiscoveryJobCommandOutput extends DescribeDiscoveryJobR * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeDiscoveryJobCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeLocationAzureBlobCommand.ts b/clients/client-datasync/src/commands/DescribeLocationAzureBlobCommand.ts index a89295346e3c2..f3ed5c594c548 100644 --- a/clients/client-datasync/src/commands/DescribeLocationAzureBlobCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationAzureBlobCommand.ts @@ -70,6 +70,7 @@ export interface DescribeLocationAzureBlobCommandOutput extends DescribeLocation * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeLocationAzureBlobCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeLocationEfsCommand.ts b/clients/client-datasync/src/commands/DescribeLocationEfsCommand.ts index 4ff8879090fbf..cf0d1732e383a 100644 --- a/clients/client-datasync/src/commands/DescribeLocationEfsCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationEfsCommand.ts @@ -73,6 +73,7 @@ export interface DescribeLocationEfsCommandOutput extends DescribeLocationEfsRes * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeLocationEfsCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeLocationFsxLustreCommand.ts b/clients/client-datasync/src/commands/DescribeLocationFsxLustreCommand.ts index 4799f5be7fc32..8dfd77118fb53 100644 --- a/clients/client-datasync/src/commands/DescribeLocationFsxLustreCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationFsxLustreCommand.ts @@ -67,6 +67,7 @@ export interface DescribeLocationFsxLustreCommandOutput extends DescribeLocation * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeLocationFsxLustreCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeLocationFsxOntapCommand.ts b/clients/client-datasync/src/commands/DescribeLocationFsxOntapCommand.ts index 8d786df26d795..d5a3f74d1200a 100644 --- a/clients/client-datasync/src/commands/DescribeLocationFsxOntapCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationFsxOntapCommand.ts @@ -92,6 +92,7 @@ export interface DescribeLocationFsxOntapCommandOutput extends DescribeLocationF * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeLocationFsxOntapCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeLocationFsxOpenZfsCommand.ts b/clients/client-datasync/src/commands/DescribeLocationFsxOpenZfsCommand.ts index b140862c1c00d..e096039bf76c5 100644 --- a/clients/client-datasync/src/commands/DescribeLocationFsxOpenZfsCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationFsxOpenZfsCommand.ts @@ -90,6 +90,7 @@ export interface DescribeLocationFsxOpenZfsCommandOutput extends DescribeLocatio * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeLocationFsxOpenZfsCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeLocationFsxWindowsCommand.ts b/clients/client-datasync/src/commands/DescribeLocationFsxWindowsCommand.ts index 06f731de95c0a..efaa6bd9601b9 100644 --- a/clients/client-datasync/src/commands/DescribeLocationFsxWindowsCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationFsxWindowsCommand.ts @@ -69,6 +69,7 @@ export interface DescribeLocationFsxWindowsCommandOutput extends DescribeLocatio * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeLocationFsxWindowsCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeLocationHdfsCommand.ts b/clients/client-datasync/src/commands/DescribeLocationHdfsCommand.ts index 8dca43f976183..6ec4c1a907311 100644 --- a/clients/client-datasync/src/commands/DescribeLocationHdfsCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationHdfsCommand.ts @@ -84,6 +84,7 @@ export interface DescribeLocationHdfsCommandOutput extends DescribeLocationHdfsR * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeLocationHdfsCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeLocationNfsCommand.ts b/clients/client-datasync/src/commands/DescribeLocationNfsCommand.ts index 27c6eb707f5db..2469ae2297a0b 100644 --- a/clients/client-datasync/src/commands/DescribeLocationNfsCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationNfsCommand.ts @@ -73,6 +73,7 @@ export interface DescribeLocationNfsCommandOutput extends DescribeLocationNfsRes * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeLocationNfsCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeLocationObjectStorageCommand.ts b/clients/client-datasync/src/commands/DescribeLocationObjectStorageCommand.ts index 9b748e0966149..c023795f9df77 100644 --- a/clients/client-datasync/src/commands/DescribeLocationObjectStorageCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationObjectStorageCommand.ts @@ -77,6 +77,7 @@ export interface DescribeLocationObjectStorageCommandOutput * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeLocationObjectStorageCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeLocationS3Command.ts b/clients/client-datasync/src/commands/DescribeLocationS3Command.ts index a3f80bdf9b361..f10e4fde20f98 100644 --- a/clients/client-datasync/src/commands/DescribeLocationS3Command.ts +++ b/clients/client-datasync/src/commands/DescribeLocationS3Command.ts @@ -72,6 +72,7 @@ export interface DescribeLocationS3CommandOutput extends DescribeLocationS3Respo * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeLocationS3Command extends $Command diff --git a/clients/client-datasync/src/commands/DescribeLocationSmbCommand.ts b/clients/client-datasync/src/commands/DescribeLocationSmbCommand.ts index f104a118b155d..b67836bc116ed 100644 --- a/clients/client-datasync/src/commands/DescribeLocationSmbCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationSmbCommand.ts @@ -78,6 +78,7 @@ export interface DescribeLocationSmbCommandOutput extends DescribeLocationSmbRes * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeLocationSmbCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeStorageSystemCommand.ts b/clients/client-datasync/src/commands/DescribeStorageSystemCommand.ts index f52840a036a15..2553195a1787c 100644 --- a/clients/client-datasync/src/commands/DescribeStorageSystemCommand.ts +++ b/clients/client-datasync/src/commands/DescribeStorageSystemCommand.ts @@ -77,6 +77,7 @@ export interface DescribeStorageSystemCommandOutput extends DescribeStorageSyste * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeStorageSystemCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeStorageSystemResourceMetricsCommand.ts b/clients/client-datasync/src/commands/DescribeStorageSystemResourceMetricsCommand.ts index 709788fc40c4f..8033a1d18bed0 100644 --- a/clients/client-datasync/src/commands/DescribeStorageSystemResourceMetricsCommand.ts +++ b/clients/client-datasync/src/commands/DescribeStorageSystemResourceMetricsCommand.ts @@ -109,6 +109,7 @@ export interface DescribeStorageSystemResourceMetricsCommandOutput * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeStorageSystemResourceMetricsCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeStorageSystemResourcesCommand.ts b/clients/client-datasync/src/commands/DescribeStorageSystemResourcesCommand.ts index 89ba7c8302e06..84c4d69d3985b 100644 --- a/clients/client-datasync/src/commands/DescribeStorageSystemResourcesCommand.ts +++ b/clients/client-datasync/src/commands/DescribeStorageSystemResourcesCommand.ts @@ -196,6 +196,7 @@ export interface DescribeStorageSystemResourcesCommandOutput * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeStorageSystemResourcesCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeTaskCommand.ts b/clients/client-datasync/src/commands/DescribeTaskCommand.ts index ec4d1bfdff392..00483f93c2cdb 100644 --- a/clients/client-datasync/src/commands/DescribeTaskCommand.ts +++ b/clients/client-datasync/src/commands/DescribeTaskCommand.ts @@ -154,6 +154,7 @@ export interface DescribeTaskCommandOutput extends DescribeTaskResponse, __Metad * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeTaskCommand extends $Command diff --git a/clients/client-datasync/src/commands/DescribeTaskExecutionCommand.ts b/clients/client-datasync/src/commands/DescribeTaskExecutionCommand.ts index 7c9d9643c80dc..b3492b9441049 100644 --- a/clients/client-datasync/src/commands/DescribeTaskExecutionCommand.ts +++ b/clients/client-datasync/src/commands/DescribeTaskExecutionCommand.ts @@ -176,6 +176,7 @@ export interface DescribeTaskExecutionCommandOutput extends DescribeTaskExecutio * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class DescribeTaskExecutionCommand extends $Command diff --git a/clients/client-datasync/src/commands/GenerateRecommendationsCommand.ts b/clients/client-datasync/src/commands/GenerateRecommendationsCommand.ts index b44034d91a029..d4eb7548d4446 100644 --- a/clients/client-datasync/src/commands/GenerateRecommendationsCommand.ts +++ b/clients/client-datasync/src/commands/GenerateRecommendationsCommand.ts @@ -68,6 +68,7 @@ export interface GenerateRecommendationsCommandOutput extends GenerateRecommenda * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class GenerateRecommendationsCommand extends $Command diff --git a/clients/client-datasync/src/commands/ListAgentsCommand.ts b/clients/client-datasync/src/commands/ListAgentsCommand.ts index 2b21653f19f53..5d72fbeb3071c 100644 --- a/clients/client-datasync/src/commands/ListAgentsCommand.ts +++ b/clients/client-datasync/src/commands/ListAgentsCommand.ts @@ -83,6 +83,7 @@ export interface ListAgentsCommandOutput extends ListAgentsResponse, __MetadataB * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class ListAgentsCommand extends $Command diff --git a/clients/client-datasync/src/commands/ListDiscoveryJobsCommand.ts b/clients/client-datasync/src/commands/ListDiscoveryJobsCommand.ts index 8dc14aa3310d8..8e296bcf3661e 100644 --- a/clients/client-datasync/src/commands/ListDiscoveryJobsCommand.ts +++ b/clients/client-datasync/src/commands/ListDiscoveryJobsCommand.ts @@ -71,6 +71,7 @@ export interface ListDiscoveryJobsCommandOutput extends ListDiscoveryJobsRespons * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class ListDiscoveryJobsCommand extends $Command diff --git a/clients/client-datasync/src/commands/ListLocationsCommand.ts b/clients/client-datasync/src/commands/ListLocationsCommand.ts index 0e7358173a828..3c5aca7bdf7ae 100644 --- a/clients/client-datasync/src/commands/ListLocationsCommand.ts +++ b/clients/client-datasync/src/commands/ListLocationsCommand.ts @@ -81,6 +81,7 @@ export interface ListLocationsCommandOutput extends ListLocationsResponse, __Met * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class ListLocationsCommand extends $Command diff --git a/clients/client-datasync/src/commands/ListStorageSystemsCommand.ts b/clients/client-datasync/src/commands/ListStorageSystemsCommand.ts index 04571a66a2e95..e3931ceee8e65 100644 --- a/clients/client-datasync/src/commands/ListStorageSystemsCommand.ts +++ b/clients/client-datasync/src/commands/ListStorageSystemsCommand.ts @@ -69,6 +69,7 @@ export interface ListStorageSystemsCommandOutput extends ListStorageSystemsRespo * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class ListStorageSystemsCommand extends $Command diff --git a/clients/client-datasync/src/commands/ListTagsForResourceCommand.ts b/clients/client-datasync/src/commands/ListTagsForResourceCommand.ts index 1f6f126fb029a..adedb12ce0f69 100644 --- a/clients/client-datasync/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-datasync/src/commands/ListTagsForResourceCommand.ts @@ -70,6 +70,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-datasync/src/commands/ListTaskExecutionsCommand.ts b/clients/client-datasync/src/commands/ListTaskExecutionsCommand.ts index 599ff66fab889..47e6b89e957af 100644 --- a/clients/client-datasync/src/commands/ListTaskExecutionsCommand.ts +++ b/clients/client-datasync/src/commands/ListTaskExecutionsCommand.ts @@ -71,6 +71,7 @@ export interface ListTaskExecutionsCommandOutput extends ListTaskExecutionsRespo * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class ListTaskExecutionsCommand extends $Command diff --git a/clients/client-datasync/src/commands/ListTasksCommand.ts b/clients/client-datasync/src/commands/ListTasksCommand.ts index 58b8dbe941971..820f4bcc36c0c 100644 --- a/clients/client-datasync/src/commands/ListTasksCommand.ts +++ b/clients/client-datasync/src/commands/ListTasksCommand.ts @@ -80,6 +80,7 @@ export interface ListTasksCommandOutput extends ListTasksResponse, __MetadataBea * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class ListTasksCommand extends $Command diff --git a/clients/client-datasync/src/commands/RemoveStorageSystemCommand.ts b/clients/client-datasync/src/commands/RemoveStorageSystemCommand.ts index 7f8aeebee2761..3341a67d5a9fc 100644 --- a/clients/client-datasync/src/commands/RemoveStorageSystemCommand.ts +++ b/clients/client-datasync/src/commands/RemoveStorageSystemCommand.ts @@ -61,6 +61,7 @@ export interface RemoveStorageSystemCommandOutput extends RemoveStorageSystemRes * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class RemoveStorageSystemCommand extends $Command diff --git a/clients/client-datasync/src/commands/StartDiscoveryJobCommand.ts b/clients/client-datasync/src/commands/StartDiscoveryJobCommand.ts index 56bc3b5d16c5f..32d4dc0530bb2 100644 --- a/clients/client-datasync/src/commands/StartDiscoveryJobCommand.ts +++ b/clients/client-datasync/src/commands/StartDiscoveryJobCommand.ts @@ -72,6 +72,7 @@ export interface StartDiscoveryJobCommandOutput extends StartDiscoveryJobRespons * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class StartDiscoveryJobCommand extends $Command diff --git a/clients/client-datasync/src/commands/StartTaskExecutionCommand.ts b/clients/client-datasync/src/commands/StartTaskExecutionCommand.ts index 5dc3eec22266f..89b420db80b9f 100644 --- a/clients/client-datasync/src/commands/StartTaskExecutionCommand.ts +++ b/clients/client-datasync/src/commands/StartTaskExecutionCommand.ts @@ -143,6 +143,7 @@ export interface StartTaskExecutionCommandOutput extends StartTaskExecutionRespo * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class StartTaskExecutionCommand extends $Command diff --git a/clients/client-datasync/src/commands/StopDiscoveryJobCommand.ts b/clients/client-datasync/src/commands/StopDiscoveryJobCommand.ts index b59de8be7093f..309b740343231 100644 --- a/clients/client-datasync/src/commands/StopDiscoveryJobCommand.ts +++ b/clients/client-datasync/src/commands/StopDiscoveryJobCommand.ts @@ -63,6 +63,7 @@ export interface StopDiscoveryJobCommandOutput extends StopDiscoveryJobResponse, * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class StopDiscoveryJobCommand extends $Command diff --git a/clients/client-datasync/src/commands/TagResourceCommand.ts b/clients/client-datasync/src/commands/TagResourceCommand.ts index 85dde9cca76a0..3e77c6704105f 100644 --- a/clients/client-datasync/src/commands/TagResourceCommand.ts +++ b/clients/client-datasync/src/commands/TagResourceCommand.ts @@ -69,6 +69,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-datasync/src/commands/UntagResourceCommand.ts b/clients/client-datasync/src/commands/UntagResourceCommand.ts index b2d922aecd162..8198d56852c4d 100644 --- a/clients/client-datasync/src/commands/UntagResourceCommand.ts +++ b/clients/client-datasync/src/commands/UntagResourceCommand.ts @@ -63,6 +63,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateAgentCommand.ts b/clients/client-datasync/src/commands/UpdateAgentCommand.ts index 0729ec71bec80..3f18562ea599b 100644 --- a/clients/client-datasync/src/commands/UpdateAgentCommand.ts +++ b/clients/client-datasync/src/commands/UpdateAgentCommand.ts @@ -61,6 +61,7 @@ export interface UpdateAgentCommandOutput extends UpdateAgentResponse, __Metadat * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateAgentCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateDiscoveryJobCommand.ts b/clients/client-datasync/src/commands/UpdateDiscoveryJobCommand.ts index 5d6fbef951691..25887fe927c7e 100644 --- a/clients/client-datasync/src/commands/UpdateDiscoveryJobCommand.ts +++ b/clients/client-datasync/src/commands/UpdateDiscoveryJobCommand.ts @@ -61,6 +61,7 @@ export interface UpdateDiscoveryJobCommandOutput extends UpdateDiscoveryJobRespo * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateDiscoveryJobCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateLocationAzureBlobCommand.ts b/clients/client-datasync/src/commands/UpdateLocationAzureBlobCommand.ts index dc770c832952d..0dee43e29cd1b 100644 --- a/clients/client-datasync/src/commands/UpdateLocationAzureBlobCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationAzureBlobCommand.ts @@ -75,6 +75,7 @@ export interface UpdateLocationAzureBlobCommandOutput extends UpdateLocationAzur * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateLocationAzureBlobCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateLocationEfsCommand.ts b/clients/client-datasync/src/commands/UpdateLocationEfsCommand.ts index 1220473ce8a6b..eac5b3effee96 100644 --- a/clients/client-datasync/src/commands/UpdateLocationEfsCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationEfsCommand.ts @@ -65,6 +65,7 @@ export interface UpdateLocationEfsCommandOutput extends UpdateLocationEfsRespons * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateLocationEfsCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateLocationFsxLustreCommand.ts b/clients/client-datasync/src/commands/UpdateLocationFsxLustreCommand.ts index 8f9ca7e930ebf..43a65f67b89a6 100644 --- a/clients/client-datasync/src/commands/UpdateLocationFsxLustreCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationFsxLustreCommand.ts @@ -62,6 +62,7 @@ export interface UpdateLocationFsxLustreCommandOutput extends UpdateLocationFsxL * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateLocationFsxLustreCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateLocationFsxOntapCommand.ts b/clients/client-datasync/src/commands/UpdateLocationFsxOntapCommand.ts index 8fe61fcc1c242..aeefcb50c9d35 100644 --- a/clients/client-datasync/src/commands/UpdateLocationFsxOntapCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationFsxOntapCommand.ts @@ -81,6 +81,7 @@ export interface UpdateLocationFsxOntapCommandOutput extends UpdateLocationFsxOn * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateLocationFsxOntapCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateLocationFsxOpenZfsCommand.ts b/clients/client-datasync/src/commands/UpdateLocationFsxOpenZfsCommand.ts index e120679fe7ca7..571920d9a0273 100644 --- a/clients/client-datasync/src/commands/UpdateLocationFsxOpenZfsCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationFsxOpenZfsCommand.ts @@ -85,6 +85,7 @@ export interface UpdateLocationFsxOpenZfsCommandOutput extends UpdateLocationFsx * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateLocationFsxOpenZfsCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateLocationFsxWindowsCommand.ts b/clients/client-datasync/src/commands/UpdateLocationFsxWindowsCommand.ts index ed88fa9f9f327..cefa71e85cf8f 100644 --- a/clients/client-datasync/src/commands/UpdateLocationFsxWindowsCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationFsxWindowsCommand.ts @@ -69,6 +69,7 @@ export interface UpdateLocationFsxWindowsCommandOutput extends UpdateLocationFsx * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateLocationFsxWindowsCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateLocationHdfsCommand.ts b/clients/client-datasync/src/commands/UpdateLocationHdfsCommand.ts index c0754f93c56fd..3f5685852702c 100644 --- a/clients/client-datasync/src/commands/UpdateLocationHdfsCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationHdfsCommand.ts @@ -84,6 +84,7 @@ export interface UpdateLocationHdfsCommandOutput extends UpdateLocationHdfsRespo * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateLocationHdfsCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateLocationNfsCommand.ts b/clients/client-datasync/src/commands/UpdateLocationNfsCommand.ts index 99c79b401db47..ec42a3d52bac0 100644 --- a/clients/client-datasync/src/commands/UpdateLocationNfsCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationNfsCommand.ts @@ -72,6 +72,7 @@ export interface UpdateLocationNfsCommandOutput extends UpdateLocationNfsRespons * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateLocationNfsCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateLocationObjectStorageCommand.ts b/clients/client-datasync/src/commands/UpdateLocationObjectStorageCommand.ts index 7236fa5027bb0..ecdd266fa8495 100644 --- a/clients/client-datasync/src/commands/UpdateLocationObjectStorageCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationObjectStorageCommand.ts @@ -77,6 +77,7 @@ export interface UpdateLocationObjectStorageCommandOutput * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateLocationObjectStorageCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateLocationS3Command.ts b/clients/client-datasync/src/commands/UpdateLocationS3Command.ts index 95a4896945a16..d06f170427f91 100644 --- a/clients/client-datasync/src/commands/UpdateLocationS3Command.ts +++ b/clients/client-datasync/src/commands/UpdateLocationS3Command.ts @@ -81,6 +81,7 @@ export interface UpdateLocationS3CommandOutput extends UpdateLocationS3Response, * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateLocationS3Command extends $Command diff --git a/clients/client-datasync/src/commands/UpdateLocationSmbCommand.ts b/clients/client-datasync/src/commands/UpdateLocationSmbCommand.ts index 3040d9d88c736..6e44574bc4110 100644 --- a/clients/client-datasync/src/commands/UpdateLocationSmbCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationSmbCommand.ts @@ -84,6 +84,7 @@ export interface UpdateLocationSmbCommandOutput extends UpdateLocationSmbRespons * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateLocationSmbCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateStorageSystemCommand.ts b/clients/client-datasync/src/commands/UpdateStorageSystemCommand.ts index 9c52553321676..a77523e41de55 100644 --- a/clients/client-datasync/src/commands/UpdateStorageSystemCommand.ts +++ b/clients/client-datasync/src/commands/UpdateStorageSystemCommand.ts @@ -78,6 +78,7 @@ export interface UpdateStorageSystemCommandOutput extends UpdateStorageSystemRes * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateStorageSystemCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateTaskCommand.ts b/clients/client-datasync/src/commands/UpdateTaskCommand.ts index f803caab8a3f3..f2e30bebc533e 100644 --- a/clients/client-datasync/src/commands/UpdateTaskCommand.ts +++ b/clients/client-datasync/src/commands/UpdateTaskCommand.ts @@ -133,6 +133,7 @@ export interface UpdateTaskCommandOutput extends UpdateTaskResponse, __MetadataB * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateTaskCommand extends $Command diff --git a/clients/client-datasync/src/commands/UpdateTaskExecutionCommand.ts b/clients/client-datasync/src/commands/UpdateTaskExecutionCommand.ts index ff43db5a85f78..1441ec867efc9 100644 --- a/clients/client-datasync/src/commands/UpdateTaskExecutionCommand.ts +++ b/clients/client-datasync/src/commands/UpdateTaskExecutionCommand.ts @@ -84,6 +84,7 @@ export interface UpdateTaskExecutionCommandOutput extends UpdateTaskExecutionRes * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* + * * @public */ export class UpdateTaskExecutionCommand extends $Command diff --git a/clients/client-datazone/src/commands/AcceptPredictionsCommand.ts b/clients/client-datazone/src/commands/AcceptPredictionsCommand.ts index 791f8f75ac7ae..311cfef99d721 100644 --- a/clients/client-datazone/src/commands/AcceptPredictionsCommand.ts +++ b/clients/client-datazone/src/commands/AcceptPredictionsCommand.ts @@ -97,6 +97,7 @@ export interface AcceptPredictionsCommandOutput extends AcceptPredictionsOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class AcceptPredictionsCommand extends $Command diff --git a/clients/client-datazone/src/commands/AcceptSubscriptionRequestCommand.ts b/clients/client-datazone/src/commands/AcceptSubscriptionRequestCommand.ts index 98bc3f3990091..dc3dbcbcbde90 100644 --- a/clients/client-datazone/src/commands/AcceptSubscriptionRequestCommand.ts +++ b/clients/client-datazone/src/commands/AcceptSubscriptionRequestCommand.ts @@ -168,6 +168,7 @@ export interface AcceptSubscriptionRequestCommandOutput extends AcceptSubscripti * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class AcceptSubscriptionRequestCommand extends $Command diff --git a/clients/client-datazone/src/commands/AddEntityOwnerCommand.ts b/clients/client-datazone/src/commands/AddEntityOwnerCommand.ts index cce9060433001..83118d6fd11f1 100644 --- a/clients/client-datazone/src/commands/AddEntityOwnerCommand.ts +++ b/clients/client-datazone/src/commands/AddEntityOwnerCommand.ts @@ -88,6 +88,7 @@ export interface AddEntityOwnerCommandOutput extends AddEntityOwnerOutput, __Met * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class AddEntityOwnerCommand extends $Command diff --git a/clients/client-datazone/src/commands/AddPolicyGrantCommand.ts b/clients/client-datazone/src/commands/AddPolicyGrantCommand.ts index 96f79926361a8..8254e532a9209 100644 --- a/clients/client-datazone/src/commands/AddPolicyGrantCommand.ts +++ b/clients/client-datazone/src/commands/AddPolicyGrantCommand.ts @@ -143,6 +143,7 @@ export interface AddPolicyGrantCommandOutput extends AddPolicyGrantOutput, __Met * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class AddPolicyGrantCommand extends $Command diff --git a/clients/client-datazone/src/commands/AssociateEnvironmentRoleCommand.ts b/clients/client-datazone/src/commands/AssociateEnvironmentRoleCommand.ts index 7e9ec82a04bed..c2625d8ff8602 100644 --- a/clients/client-datazone/src/commands/AssociateEnvironmentRoleCommand.ts +++ b/clients/client-datazone/src/commands/AssociateEnvironmentRoleCommand.ts @@ -76,6 +76,7 @@ export interface AssociateEnvironmentRoleCommandOutput extends AssociateEnvironm * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class AssociateEnvironmentRoleCommand extends $Command diff --git a/clients/client-datazone/src/commands/CancelMetadataGenerationRunCommand.ts b/clients/client-datazone/src/commands/CancelMetadataGenerationRunCommand.ts index 00938ea901ddc..9f87e4ee81ce2 100644 --- a/clients/client-datazone/src/commands/CancelMetadataGenerationRunCommand.ts +++ b/clients/client-datazone/src/commands/CancelMetadataGenerationRunCommand.ts @@ -78,6 +78,7 @@ export interface CancelMetadataGenerationRunCommandOutput extends CancelMetadata * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CancelMetadataGenerationRunCommand extends $Command diff --git a/clients/client-datazone/src/commands/CancelSubscriptionCommand.ts b/clients/client-datazone/src/commands/CancelSubscriptionCommand.ts index 20b3aa44e000e..8e01eaf6375aa 100644 --- a/clients/client-datazone/src/commands/CancelSubscriptionCommand.ts +++ b/clients/client-datazone/src/commands/CancelSubscriptionCommand.ts @@ -144,6 +144,7 @@ export interface CancelSubscriptionCommandOutput extends CancelSubscriptionOutpu * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CancelSubscriptionCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateAssetCommand.ts b/clients/client-datazone/src/commands/CreateAssetCommand.ts index 2808350b71986..77034bab6c2e7 100644 --- a/clients/client-datazone/src/commands/CreateAssetCommand.ts +++ b/clients/client-datazone/src/commands/CreateAssetCommand.ts @@ -157,6 +157,7 @@ export interface CreateAssetCommandOutput extends CreateAssetOutput, __MetadataB * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateAssetCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateAssetFilterCommand.ts b/clients/client-datazone/src/commands/CreateAssetFilterCommand.ts index ef0ddadf5fdec..27009490a1411 100644 --- a/clients/client-datazone/src/commands/CreateAssetFilterCommand.ts +++ b/clients/client-datazone/src/commands/CreateAssetFilterCommand.ts @@ -357,6 +357,7 @@ export interface CreateAssetFilterCommandOutput extends CreateAssetFilterOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateAssetFilterCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateAssetRevisionCommand.ts b/clients/client-datazone/src/commands/CreateAssetRevisionCommand.ts index e0b8d6ea520f3..98ad67880c3e2 100644 --- a/clients/client-datazone/src/commands/CreateAssetRevisionCommand.ts +++ b/clients/client-datazone/src/commands/CreateAssetRevisionCommand.ts @@ -152,6 +152,7 @@ export interface CreateAssetRevisionCommandOutput extends CreateAssetRevisionOut * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateAssetRevisionCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateAssetTypeCommand.ts b/clients/client-datazone/src/commands/CreateAssetTypeCommand.ts index 9457489fb1f38..de40bcc8f7cf6 100644 --- a/clients/client-datazone/src/commands/CreateAssetTypeCommand.ts +++ b/clients/client-datazone/src/commands/CreateAssetTypeCommand.ts @@ -108,6 +108,7 @@ export interface CreateAssetTypeCommandOutput extends CreateAssetTypeOutput, __M * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateAssetTypeCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateConnectionCommand.ts b/clients/client-datazone/src/commands/CreateConnectionCommand.ts index 890d9572640db..049881fccc893 100644 --- a/clients/client-datazone/src/commands/CreateConnectionCommand.ts +++ b/clients/client-datazone/src/commands/CreateConnectionCommand.ts @@ -375,6 +375,7 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateConnectionCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateDataProductCommand.ts b/clients/client-datazone/src/commands/CreateDataProductCommand.ts index ab065dc5dd49a..7028e89acbdf6 100644 --- a/clients/client-datazone/src/commands/CreateDataProductCommand.ts +++ b/clients/client-datazone/src/commands/CreateDataProductCommand.ts @@ -140,6 +140,7 @@ export interface CreateDataProductCommandOutput extends CreateDataProductOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateDataProductCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateDataProductRevisionCommand.ts b/clients/client-datazone/src/commands/CreateDataProductRevisionCommand.ts index edcda126afd3c..c76e1a74f0594 100644 --- a/clients/client-datazone/src/commands/CreateDataProductRevisionCommand.ts +++ b/clients/client-datazone/src/commands/CreateDataProductRevisionCommand.ts @@ -137,6 +137,7 @@ export interface CreateDataProductRevisionCommandOutput extends CreateDataProduc * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateDataProductRevisionCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateDataSourceCommand.ts b/clients/client-datazone/src/commands/CreateDataSourceCommand.ts index 47829b2765562..bdd2bb5949b65 100644 --- a/clients/client-datazone/src/commands/CreateDataSourceCommand.ts +++ b/clients/client-datazone/src/commands/CreateDataSourceCommand.ts @@ -255,6 +255,7 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateDataSourceCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateDomainCommand.ts b/clients/client-datazone/src/commands/CreateDomainCommand.ts index 776f433f275c0..fc88ddd761f61 100644 --- a/clients/client-datazone/src/commands/CreateDomainCommand.ts +++ b/clients/client-datazone/src/commands/CreateDomainCommand.ts @@ -111,6 +111,7 @@ export interface CreateDomainCommandOutput extends CreateDomainOutput, __Metadat * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateDomainCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateDomainUnitCommand.ts b/clients/client-datazone/src/commands/CreateDomainUnitCommand.ts index 45b86d3d5f87c..0de4daa22c5e3 100644 --- a/clients/client-datazone/src/commands/CreateDomainUnitCommand.ts +++ b/clients/client-datazone/src/commands/CreateDomainUnitCommand.ts @@ -104,6 +104,7 @@ export interface CreateDomainUnitCommandOutput extends CreateDomainUnitOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateDomainUnitCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateEnvironmentActionCommand.ts b/clients/client-datazone/src/commands/CreateEnvironmentActionCommand.ts index 0ec6e7c55212e..ee70d927832fa 100644 --- a/clients/client-datazone/src/commands/CreateEnvironmentActionCommand.ts +++ b/clients/client-datazone/src/commands/CreateEnvironmentActionCommand.ts @@ -94,6 +94,7 @@ export interface CreateEnvironmentActionCommandOutput extends CreateEnvironmentA * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateEnvironmentActionCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateEnvironmentCommand.ts b/clients/client-datazone/src/commands/CreateEnvironmentCommand.ts index 1e43ca6a9f18a..b21be27cbe3d3 100644 --- a/clients/client-datazone/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-datazone/src/commands/CreateEnvironmentCommand.ts @@ -167,6 +167,7 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateEnvironmentCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateEnvironmentProfileCommand.ts b/clients/client-datazone/src/commands/CreateEnvironmentProfileCommand.ts index b9456d7cd046e..ac6da7f685587 100644 --- a/clients/client-datazone/src/commands/CreateEnvironmentProfileCommand.ts +++ b/clients/client-datazone/src/commands/CreateEnvironmentProfileCommand.ts @@ -116,6 +116,7 @@ export interface CreateEnvironmentProfileCommandOutput extends CreateEnvironment * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateEnvironmentProfileCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateFormTypeCommand.ts b/clients/client-datazone/src/commands/CreateFormTypeCommand.ts index 168a05afafad3..910eaa2e02d2e 100644 --- a/clients/client-datazone/src/commands/CreateFormTypeCommand.ts +++ b/clients/client-datazone/src/commands/CreateFormTypeCommand.ts @@ -94,6 +94,7 @@ export interface CreateFormTypeCommandOutput extends CreateFormTypeOutput, __Met * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateFormTypeCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateGlossaryCommand.ts b/clients/client-datazone/src/commands/CreateGlossaryCommand.ts index d2726b164e2b8..1ac27f37df60b 100644 --- a/clients/client-datazone/src/commands/CreateGlossaryCommand.ts +++ b/clients/client-datazone/src/commands/CreateGlossaryCommand.ts @@ -91,6 +91,7 @@ export interface CreateGlossaryCommandOutput extends CreateGlossaryOutput, __Met * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateGlossaryCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateGlossaryTermCommand.ts b/clients/client-datazone/src/commands/CreateGlossaryTermCommand.ts index 52807542e1e8f..7349572b514ad 100644 --- a/clients/client-datazone/src/commands/CreateGlossaryTermCommand.ts +++ b/clients/client-datazone/src/commands/CreateGlossaryTermCommand.ts @@ -112,6 +112,7 @@ export interface CreateGlossaryTermCommandOutput extends CreateGlossaryTermOutpu * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateGlossaryTermCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateGroupProfileCommand.ts b/clients/client-datazone/src/commands/CreateGroupProfileCommand.ts index fe711c5769a69..c532be3946e21 100644 --- a/clients/client-datazone/src/commands/CreateGroupProfileCommand.ts +++ b/clients/client-datazone/src/commands/CreateGroupProfileCommand.ts @@ -82,6 +82,7 @@ export interface CreateGroupProfileCommandOutput extends CreateGroupProfileOutpu * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateGroupProfileCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateListingChangeSetCommand.ts b/clients/client-datazone/src/commands/CreateListingChangeSetCommand.ts index b643ba3782163..776c453db6234 100644 --- a/clients/client-datazone/src/commands/CreateListingChangeSetCommand.ts +++ b/clients/client-datazone/src/commands/CreateListingChangeSetCommand.ts @@ -87,6 +87,7 @@ export interface CreateListingChangeSetCommandOutput extends CreateListingChange * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateListingChangeSetCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateProjectCommand.ts b/clients/client-datazone/src/commands/CreateProjectCommand.ts index d3cb61ea60b5f..deb7694e216dc 100644 --- a/clients/client-datazone/src/commands/CreateProjectCommand.ts +++ b/clients/client-datazone/src/commands/CreateProjectCommand.ts @@ -144,6 +144,7 @@ export interface CreateProjectCommandOutput extends CreateProjectOutput, __Metad * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateProjectCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateProjectMembershipCommand.ts b/clients/client-datazone/src/commands/CreateProjectMembershipCommand.ts index 3c61eda253957..0f25a8f173d8c 100644 --- a/clients/client-datazone/src/commands/CreateProjectMembershipCommand.ts +++ b/clients/client-datazone/src/commands/CreateProjectMembershipCommand.ts @@ -77,6 +77,7 @@ export interface CreateProjectMembershipCommandOutput extends CreateProjectMembe * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateProjectMembershipCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateProjectProfileCommand.ts b/clients/client-datazone/src/commands/CreateProjectProfileCommand.ts index f7a9586b80123..9441ac4fd90c8 100644 --- a/clients/client-datazone/src/commands/CreateProjectProfileCommand.ts +++ b/clients/client-datazone/src/commands/CreateProjectProfileCommand.ts @@ -166,6 +166,7 @@ export interface CreateProjectProfileCommandOutput extends CreateProjectProfileO * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateProjectProfileCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateRuleCommand.ts b/clients/client-datazone/src/commands/CreateRuleCommand.ts index b0220518f86d3..8f6757794a7d4 100644 --- a/clients/client-datazone/src/commands/CreateRuleCommand.ts +++ b/clients/client-datazone/src/commands/CreateRuleCommand.ts @@ -163,6 +163,7 @@ export interface CreateRuleCommandOutput extends CreateRuleOutput, __MetadataBea * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateRuleCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateSubscriptionGrantCommand.ts b/clients/client-datazone/src/commands/CreateSubscriptionGrantCommand.ts index f39eac2f6e165..81c14eb83b584 100644 --- a/clients/client-datazone/src/commands/CreateSubscriptionGrantCommand.ts +++ b/clients/client-datazone/src/commands/CreateSubscriptionGrantCommand.ts @@ -126,6 +126,7 @@ export interface CreateSubscriptionGrantCommandOutput extends CreateSubscription * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateSubscriptionGrantCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateSubscriptionRequestCommand.ts b/clients/client-datazone/src/commands/CreateSubscriptionRequestCommand.ts index 5efa338f25151..efe0ef9d3dbc8 100644 --- a/clients/client-datazone/src/commands/CreateSubscriptionRequestCommand.ts +++ b/clients/client-datazone/src/commands/CreateSubscriptionRequestCommand.ts @@ -180,6 +180,7 @@ export interface CreateSubscriptionRequestCommandOutput extends CreateSubscripti * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateSubscriptionRequestCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateSubscriptionTargetCommand.ts b/clients/client-datazone/src/commands/CreateSubscriptionTargetCommand.ts index 3850ed4ec8408..56b62e54b1181 100644 --- a/clients/client-datazone/src/commands/CreateSubscriptionTargetCommand.ts +++ b/clients/client-datazone/src/commands/CreateSubscriptionTargetCommand.ts @@ -122,6 +122,7 @@ export interface CreateSubscriptionTargetCommandOutput extends CreateSubscriptio * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateSubscriptionTargetCommand extends $Command diff --git a/clients/client-datazone/src/commands/CreateUserProfileCommand.ts b/clients/client-datazone/src/commands/CreateUserProfileCommand.ts index b8801b509ada4..21d3fafbdfb34 100644 --- a/clients/client-datazone/src/commands/CreateUserProfileCommand.ts +++ b/clients/client-datazone/src/commands/CreateUserProfileCommand.ts @@ -93,6 +93,7 @@ export interface CreateUserProfileCommandOutput extends CreateUserProfileOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class CreateUserProfileCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteAssetCommand.ts b/clients/client-datazone/src/commands/DeleteAssetCommand.ts index 62006cd09f7e8..f6bccf786f01f 100644 --- a/clients/client-datazone/src/commands/DeleteAssetCommand.ts +++ b/clients/client-datazone/src/commands/DeleteAssetCommand.ts @@ -75,6 +75,7 @@ export interface DeleteAssetCommandOutput extends DeleteAssetOutput, __MetadataB * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteAssetCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteAssetFilterCommand.ts b/clients/client-datazone/src/commands/DeleteAssetFilterCommand.ts index 0cdf5a7c7def6..e31792d429a41 100644 --- a/clients/client-datazone/src/commands/DeleteAssetFilterCommand.ts +++ b/clients/client-datazone/src/commands/DeleteAssetFilterCommand.ts @@ -76,6 +76,7 @@ export interface DeleteAssetFilterCommandOutput extends __MetadataBearer {} * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteAssetFilterCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteAssetTypeCommand.ts b/clients/client-datazone/src/commands/DeleteAssetTypeCommand.ts index d50ce2503674b..e60642ec0578c 100644 --- a/clients/client-datazone/src/commands/DeleteAssetTypeCommand.ts +++ b/clients/client-datazone/src/commands/DeleteAssetTypeCommand.ts @@ -75,6 +75,7 @@ export interface DeleteAssetTypeCommandOutput extends DeleteAssetTypeOutput, __M * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteAssetTypeCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteConnectionCommand.ts b/clients/client-datazone/src/commands/DeleteConnectionCommand.ts index 519725dfc1131..3e3c7479853e6 100644 --- a/clients/client-datazone/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-datazone/src/commands/DeleteConnectionCommand.ts @@ -75,6 +75,7 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteConnectionCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteDataProductCommand.ts b/clients/client-datazone/src/commands/DeleteDataProductCommand.ts index 1876c1824327c..ee86cb43871b3 100644 --- a/clients/client-datazone/src/commands/DeleteDataProductCommand.ts +++ b/clients/client-datazone/src/commands/DeleteDataProductCommand.ts @@ -75,6 +75,7 @@ export interface DeleteDataProductCommandOutput extends DeleteDataProductOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteDataProductCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteDataSourceCommand.ts b/clients/client-datazone/src/commands/DeleteDataSourceCommand.ts index c053a1d3191df..95c8528027806 100644 --- a/clients/client-datazone/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-datazone/src/commands/DeleteDataSourceCommand.ts @@ -201,6 +201,7 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteDataSourceCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteDomainCommand.ts b/clients/client-datazone/src/commands/DeleteDomainCommand.ts index c3ed80b2aabb0..2c33c476e648d 100644 --- a/clients/client-datazone/src/commands/DeleteDomainCommand.ts +++ b/clients/client-datazone/src/commands/DeleteDomainCommand.ts @@ -78,6 +78,7 @@ export interface DeleteDomainCommandOutput extends DeleteDomainOutput, __Metadat * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteDomainCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteDomainUnitCommand.ts b/clients/client-datazone/src/commands/DeleteDomainUnitCommand.ts index c91c0f94fad23..4496733149cb0 100644 --- a/clients/client-datazone/src/commands/DeleteDomainUnitCommand.ts +++ b/clients/client-datazone/src/commands/DeleteDomainUnitCommand.ts @@ -75,6 +75,7 @@ export interface DeleteDomainUnitCommandOutput extends DeleteDomainUnitOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteDomainUnitCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteEnvironmentActionCommand.ts b/clients/client-datazone/src/commands/DeleteEnvironmentActionCommand.ts index 84105c0b0971c..4d1e8c2cd7f69 100644 --- a/clients/client-datazone/src/commands/DeleteEnvironmentActionCommand.ts +++ b/clients/client-datazone/src/commands/DeleteEnvironmentActionCommand.ts @@ -77,6 +77,7 @@ export interface DeleteEnvironmentActionCommandOutput extends __MetadataBearer { * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteEnvironmentActionCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteEnvironmentBlueprintConfigurationCommand.ts b/clients/client-datazone/src/commands/DeleteEnvironmentBlueprintConfigurationCommand.ts index 5d796b5bd961e..008db24278960 100644 --- a/clients/client-datazone/src/commands/DeleteEnvironmentBlueprintConfigurationCommand.ts +++ b/clients/client-datazone/src/commands/DeleteEnvironmentBlueprintConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface DeleteEnvironmentBlueprintConfigurationCommandOutput * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteEnvironmentBlueprintConfigurationCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteEnvironmentCommand.ts b/clients/client-datazone/src/commands/DeleteEnvironmentCommand.ts index c5dae68ce3f09..3cbff26b3f7a2 100644 --- a/clients/client-datazone/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-datazone/src/commands/DeleteEnvironmentCommand.ts @@ -72,6 +72,7 @@ export interface DeleteEnvironmentCommandOutput extends __MetadataBearer {} * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteEnvironmentCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteEnvironmentProfileCommand.ts b/clients/client-datazone/src/commands/DeleteEnvironmentProfileCommand.ts index f9a3b94c40a18..ee9826c0fd1e2 100644 --- a/clients/client-datazone/src/commands/DeleteEnvironmentProfileCommand.ts +++ b/clients/client-datazone/src/commands/DeleteEnvironmentProfileCommand.ts @@ -72,6 +72,7 @@ export interface DeleteEnvironmentProfileCommandOutput extends __MetadataBearer * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteEnvironmentProfileCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteFormTypeCommand.ts b/clients/client-datazone/src/commands/DeleteFormTypeCommand.ts index 26abd6f16b43a..88d291ad0f372 100644 --- a/clients/client-datazone/src/commands/DeleteFormTypeCommand.ts +++ b/clients/client-datazone/src/commands/DeleteFormTypeCommand.ts @@ -75,6 +75,7 @@ export interface DeleteFormTypeCommandOutput extends DeleteFormTypeOutput, __Met * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteFormTypeCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteGlossaryCommand.ts b/clients/client-datazone/src/commands/DeleteGlossaryCommand.ts index 1c902d1e3ba6d..17e9dcced3224 100644 --- a/clients/client-datazone/src/commands/DeleteGlossaryCommand.ts +++ b/clients/client-datazone/src/commands/DeleteGlossaryCommand.ts @@ -75,6 +75,7 @@ export interface DeleteGlossaryCommandOutput extends DeleteGlossaryOutput, __Met * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteGlossaryCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteGlossaryTermCommand.ts b/clients/client-datazone/src/commands/DeleteGlossaryTermCommand.ts index 71b34281f279a..1e2be94aa6c77 100644 --- a/clients/client-datazone/src/commands/DeleteGlossaryTermCommand.ts +++ b/clients/client-datazone/src/commands/DeleteGlossaryTermCommand.ts @@ -75,6 +75,7 @@ export interface DeleteGlossaryTermCommandOutput extends DeleteGlossaryTermOutpu * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteGlossaryTermCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteListingCommand.ts b/clients/client-datazone/src/commands/DeleteListingCommand.ts index 20d5e4af53440..60bfec8838b49 100644 --- a/clients/client-datazone/src/commands/DeleteListingCommand.ts +++ b/clients/client-datazone/src/commands/DeleteListingCommand.ts @@ -75,6 +75,7 @@ export interface DeleteListingCommandOutput extends DeleteListingOutput, __Metad * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteListingCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteProjectCommand.ts b/clients/client-datazone/src/commands/DeleteProjectCommand.ts index e5638e8b8037e..7fbfa21fb95aa 100644 --- a/clients/client-datazone/src/commands/DeleteProjectCommand.ts +++ b/clients/client-datazone/src/commands/DeleteProjectCommand.ts @@ -73,6 +73,7 @@ export interface DeleteProjectCommandOutput extends DeleteProjectOutput, __Metad * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteProjectCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteProjectMembershipCommand.ts b/clients/client-datazone/src/commands/DeleteProjectMembershipCommand.ts index a16f72458ec73..418890b52b771 100644 --- a/clients/client-datazone/src/commands/DeleteProjectMembershipCommand.ts +++ b/clients/client-datazone/src/commands/DeleteProjectMembershipCommand.ts @@ -79,6 +79,7 @@ export interface DeleteProjectMembershipCommandOutput extends DeleteProjectMembe * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteProjectMembershipCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteProjectProfileCommand.ts b/clients/client-datazone/src/commands/DeleteProjectProfileCommand.ts index 5d53b991a68d5..d3e01cd63c89e 100644 --- a/clients/client-datazone/src/commands/DeleteProjectProfileCommand.ts +++ b/clients/client-datazone/src/commands/DeleteProjectProfileCommand.ts @@ -72,6 +72,7 @@ export interface DeleteProjectProfileCommandOutput extends DeleteProjectProfileO * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteProjectProfileCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteRuleCommand.ts b/clients/client-datazone/src/commands/DeleteRuleCommand.ts index a017235f7fa85..f40ab33a24f9d 100644 --- a/clients/client-datazone/src/commands/DeleteRuleCommand.ts +++ b/clients/client-datazone/src/commands/DeleteRuleCommand.ts @@ -81,6 +81,7 @@ export interface DeleteRuleCommandOutput extends DeleteRuleOutput, __MetadataBea * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteRuleCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteSubscriptionGrantCommand.ts b/clients/client-datazone/src/commands/DeleteSubscriptionGrantCommand.ts index 788631da7a074..fd73ece18067d 100644 --- a/clients/client-datazone/src/commands/DeleteSubscriptionGrantCommand.ts +++ b/clients/client-datazone/src/commands/DeleteSubscriptionGrantCommand.ts @@ -112,6 +112,7 @@ export interface DeleteSubscriptionGrantCommandOutput extends DeleteSubscription * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteSubscriptionGrantCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteSubscriptionRequestCommand.ts b/clients/client-datazone/src/commands/DeleteSubscriptionRequestCommand.ts index b4cfa25efaa46..212bb0c74f973 100644 --- a/clients/client-datazone/src/commands/DeleteSubscriptionRequestCommand.ts +++ b/clients/client-datazone/src/commands/DeleteSubscriptionRequestCommand.ts @@ -75,6 +75,7 @@ export interface DeleteSubscriptionRequestCommandOutput extends __MetadataBearer * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteSubscriptionRequestCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteSubscriptionTargetCommand.ts b/clients/client-datazone/src/commands/DeleteSubscriptionTargetCommand.ts index d306df4e81875..5de3a2bd18a29 100644 --- a/clients/client-datazone/src/commands/DeleteSubscriptionTargetCommand.ts +++ b/clients/client-datazone/src/commands/DeleteSubscriptionTargetCommand.ts @@ -76,6 +76,7 @@ export interface DeleteSubscriptionTargetCommandOutput extends __MetadataBearer * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteSubscriptionTargetCommand extends $Command diff --git a/clients/client-datazone/src/commands/DeleteTimeSeriesDataPointsCommand.ts b/clients/client-datazone/src/commands/DeleteTimeSeriesDataPointsCommand.ts index b5ab17835c7a4..7f0fd3ea9fc4b 100644 --- a/clients/client-datazone/src/commands/DeleteTimeSeriesDataPointsCommand.ts +++ b/clients/client-datazone/src/commands/DeleteTimeSeriesDataPointsCommand.ts @@ -75,6 +75,7 @@ export interface DeleteTimeSeriesDataPointsCommandOutput extends DeleteTimeSerie * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DeleteTimeSeriesDataPointsCommand extends $Command diff --git a/clients/client-datazone/src/commands/DisassociateEnvironmentRoleCommand.ts b/clients/client-datazone/src/commands/DisassociateEnvironmentRoleCommand.ts index 3a06d2d04a6cb..5f30b3d9f5aaa 100644 --- a/clients/client-datazone/src/commands/DisassociateEnvironmentRoleCommand.ts +++ b/clients/client-datazone/src/commands/DisassociateEnvironmentRoleCommand.ts @@ -79,6 +79,7 @@ export interface DisassociateEnvironmentRoleCommandOutput extends DisassociateEn * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class DisassociateEnvironmentRoleCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetAssetCommand.ts b/clients/client-datazone/src/commands/GetAssetCommand.ts index af7c032dbd8f3..27bd7dac8c8e8 100644 --- a/clients/client-datazone/src/commands/GetAssetCommand.ts +++ b/clients/client-datazone/src/commands/GetAssetCommand.ts @@ -120,6 +120,7 @@ export interface GetAssetCommandOutput extends GetAssetOutput, __MetadataBearer * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetAssetCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetAssetFilterCommand.ts b/clients/client-datazone/src/commands/GetAssetFilterCommand.ts index de74062770db9..25b1fa2cd382b 100644 --- a/clients/client-datazone/src/commands/GetAssetFilterCommand.ts +++ b/clients/client-datazone/src/commands/GetAssetFilterCommand.ts @@ -216,6 +216,7 @@ export interface GetAssetFilterCommandOutput extends GetAssetFilterOutput, __Met * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetAssetFilterCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetAssetTypeCommand.ts b/clients/client-datazone/src/commands/GetAssetTypeCommand.ts index e9110c5990af8..33838a3a4cccb 100644 --- a/clients/client-datazone/src/commands/GetAssetTypeCommand.ts +++ b/clients/client-datazone/src/commands/GetAssetTypeCommand.ts @@ -92,6 +92,7 @@ export interface GetAssetTypeCommandOutput extends GetAssetTypeOutput, __Metadat * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetAssetTypeCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetConnectionCommand.ts b/clients/client-datazone/src/commands/GetConnectionCommand.ts index a53c6fdf523b9..8079f00e6ca27 100644 --- a/clients/client-datazone/src/commands/GetConnectionCommand.ts +++ b/clients/client-datazone/src/commands/GetConnectionCommand.ts @@ -242,6 +242,7 @@ export interface GetConnectionCommandOutput extends GetConnectionOutput, __Metad * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetConnectionCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetDataProductCommand.ts b/clients/client-datazone/src/commands/GetDataProductCommand.ts index 91408e40c008b..04ac041e58e2c 100644 --- a/clients/client-datazone/src/commands/GetDataProductCommand.ts +++ b/clients/client-datazone/src/commands/GetDataProductCommand.ts @@ -106,6 +106,7 @@ export interface GetDataProductCommandOutput extends GetDataProductOutput, __Met * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetDataProductCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetDataSourceCommand.ts b/clients/client-datazone/src/commands/GetDataSourceCommand.ts index 21b505c3451bc..2324672263e2b 100644 --- a/clients/client-datazone/src/commands/GetDataSourceCommand.ts +++ b/clients/client-datazone/src/commands/GetDataSourceCommand.ts @@ -198,6 +198,7 @@ export interface GetDataSourceCommandOutput extends GetDataSourceOutput, __Metad * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetDataSourceCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetDataSourceRunCommand.ts b/clients/client-datazone/src/commands/GetDataSourceRunCommand.ts index 753d2051cc174..2724634a7879a 100644 --- a/clients/client-datazone/src/commands/GetDataSourceRunCommand.ts +++ b/clients/client-datazone/src/commands/GetDataSourceRunCommand.ts @@ -104,6 +104,7 @@ export interface GetDataSourceRunCommandOutput extends GetDataSourceRunOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetDataSourceRunCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetDomainCommand.ts b/clients/client-datazone/src/commands/GetDomainCommand.ts index 2b62d3ea7b003..785ebd7f92db6 100644 --- a/clients/client-datazone/src/commands/GetDomainCommand.ts +++ b/clients/client-datazone/src/commands/GetDomainCommand.ts @@ -96,6 +96,7 @@ export interface GetDomainCommandOutput extends GetDomainOutput, __MetadataBeare * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetDomainCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetDomainUnitCommand.ts b/clients/client-datazone/src/commands/GetDomainUnitCommand.ts index b7c1e15691e91..923b55cea1617 100644 --- a/clients/client-datazone/src/commands/GetDomainUnitCommand.ts +++ b/clients/client-datazone/src/commands/GetDomainUnitCommand.ts @@ -92,6 +92,7 @@ export interface GetDomainUnitCommandOutput extends GetDomainUnitOutput, __Metad * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetDomainUnitCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetEnvironmentActionCommand.ts b/clients/client-datazone/src/commands/GetEnvironmentActionCommand.ts index 0982648ebb3ee..f39e640d5956d 100644 --- a/clients/client-datazone/src/commands/GetEnvironmentActionCommand.ts +++ b/clients/client-datazone/src/commands/GetEnvironmentActionCommand.ts @@ -84,6 +84,7 @@ export interface GetEnvironmentActionCommandOutput extends GetEnvironmentActionO * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetEnvironmentActionCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetEnvironmentBlueprintCommand.ts b/clients/client-datazone/src/commands/GetEnvironmentBlueprintCommand.ts index 6eb3f8d5c582b..b308131c1ef05 100644 --- a/clients/client-datazone/src/commands/GetEnvironmentBlueprintCommand.ts +++ b/clients/client-datazone/src/commands/GetEnvironmentBlueprintCommand.ts @@ -105,6 +105,7 @@ export interface GetEnvironmentBlueprintCommandOutput extends GetEnvironmentBlue * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetEnvironmentBlueprintCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetEnvironmentBlueprintConfigurationCommand.ts b/clients/client-datazone/src/commands/GetEnvironmentBlueprintConfigurationCommand.ts index 43450ed238b17..df74241575880 100644 --- a/clients/client-datazone/src/commands/GetEnvironmentBlueprintConfigurationCommand.ts +++ b/clients/client-datazone/src/commands/GetEnvironmentBlueprintConfigurationCommand.ts @@ -106,6 +106,7 @@ export interface GetEnvironmentBlueprintConfigurationCommandOutput * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetEnvironmentBlueprintConfigurationCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetEnvironmentCommand.ts b/clients/client-datazone/src/commands/GetEnvironmentCommand.ts index 1d3b06a9b321a..3ada9955bf35e 100644 --- a/clients/client-datazone/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-datazone/src/commands/GetEnvironmentCommand.ts @@ -143,6 +143,7 @@ export interface GetEnvironmentCommandOutput extends GetEnvironmentOutput, __Met * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetEnvironmentCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetEnvironmentCredentialsCommand.ts b/clients/client-datazone/src/commands/GetEnvironmentCredentialsCommand.ts index 906bb161ccfb9..10f13b49fc127 100644 --- a/clients/client-datazone/src/commands/GetEnvironmentCredentialsCommand.ts +++ b/clients/client-datazone/src/commands/GetEnvironmentCredentialsCommand.ts @@ -81,6 +81,7 @@ export interface GetEnvironmentCredentialsCommandOutput extends GetEnvironmentCr * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetEnvironmentCredentialsCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetEnvironmentProfileCommand.ts b/clients/client-datazone/src/commands/GetEnvironmentProfileCommand.ts index f3eae5dcfbe96..933378adb92fa 100644 --- a/clients/client-datazone/src/commands/GetEnvironmentProfileCommand.ts +++ b/clients/client-datazone/src/commands/GetEnvironmentProfileCommand.ts @@ -98,6 +98,7 @@ export interface GetEnvironmentProfileCommandOutput extends GetEnvironmentProfil * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetEnvironmentProfileCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetFormTypeCommand.ts b/clients/client-datazone/src/commands/GetFormTypeCommand.ts index a011367e4dc20..da06e9949de2e 100644 --- a/clients/client-datazone/src/commands/GetFormTypeCommand.ts +++ b/clients/client-datazone/src/commands/GetFormTypeCommand.ts @@ -93,6 +93,7 @@ export interface GetFormTypeCommandOutput extends GetFormTypeOutput, __MetadataB * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetFormTypeCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetGlossaryCommand.ts b/clients/client-datazone/src/commands/GetGlossaryCommand.ts index e37e7d025a1ab..613cb03504cea 100644 --- a/clients/client-datazone/src/commands/GetGlossaryCommand.ts +++ b/clients/client-datazone/src/commands/GetGlossaryCommand.ts @@ -83,6 +83,7 @@ export interface GetGlossaryCommandOutput extends GetGlossaryOutput, __MetadataB * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetGlossaryCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetGlossaryTermCommand.ts b/clients/client-datazone/src/commands/GetGlossaryTermCommand.ts index 9d3851023cc3d..bcfe2bbd30763 100644 --- a/clients/client-datazone/src/commands/GetGlossaryTermCommand.ts +++ b/clients/client-datazone/src/commands/GetGlossaryTermCommand.ts @@ -96,6 +96,7 @@ export interface GetGlossaryTermCommandOutput extends GetGlossaryTermOutput, __M * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetGlossaryTermCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetGroupProfileCommand.ts b/clients/client-datazone/src/commands/GetGroupProfileCommand.ts index 076d9d41c0a1d..450a91f4235f4 100644 --- a/clients/client-datazone/src/commands/GetGroupProfileCommand.ts +++ b/clients/client-datazone/src/commands/GetGroupProfileCommand.ts @@ -81,6 +81,7 @@ export interface GetGroupProfileCommandOutput extends GetGroupProfileOutput, __M * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetGroupProfileCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetIamPortalLoginUrlCommand.ts b/clients/client-datazone/src/commands/GetIamPortalLoginUrlCommand.ts index 7fb24869ba36a..89929e025df63 100644 --- a/clients/client-datazone/src/commands/GetIamPortalLoginUrlCommand.ts +++ b/clients/client-datazone/src/commands/GetIamPortalLoginUrlCommand.ts @@ -77,6 +77,7 @@ export interface GetIamPortalLoginUrlCommandOutput extends GetIamPortalLoginUrlO * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetIamPortalLoginUrlCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetJobRunCommand.ts b/clients/client-datazone/src/commands/GetJobRunCommand.ts index 0d8c16fdd02e4..008d854d6f977 100644 --- a/clients/client-datazone/src/commands/GetJobRunCommand.ts +++ b/clients/client-datazone/src/commands/GetJobRunCommand.ts @@ -99,6 +99,7 @@ export interface GetJobRunCommandOutput extends GetJobRunOutput, __MetadataBeare * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetJobRunCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetLineageEventCommand.ts b/clients/client-datazone/src/commands/GetLineageEventCommand.ts index 9e9d0092153bb..f5dd02a320e7d 100644 --- a/clients/client-datazone/src/commands/GetLineageEventCommand.ts +++ b/clients/client-datazone/src/commands/GetLineageEventCommand.ts @@ -92,6 +92,7 @@ export interface GetLineageEventCommandOutput extends GetLineageEventCommandOutp * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetLineageEventCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetLineageNodeCommand.ts b/clients/client-datazone/src/commands/GetLineageNodeCommand.ts index ec6fc44c2cadf..e595e06635bea 100644 --- a/clients/client-datazone/src/commands/GetLineageNodeCommand.ts +++ b/clients/client-datazone/src/commands/GetLineageNodeCommand.ts @@ -106,6 +106,7 @@ export interface GetLineageNodeCommandOutput extends GetLineageNodeOutput, __Met * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetLineageNodeCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetListingCommand.ts b/clients/client-datazone/src/commands/GetListingCommand.ts index 0b3952a88d3c3..a17e0753206ec 100644 --- a/clients/client-datazone/src/commands/GetListingCommand.ts +++ b/clients/client-datazone/src/commands/GetListingCommand.ts @@ -136,6 +136,7 @@ export interface GetListingCommandOutput extends GetListingOutput, __MetadataBea * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetListingCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetMetadataGenerationRunCommand.ts b/clients/client-datazone/src/commands/GetMetadataGenerationRunCommand.ts index 2492d19cf3e72..af5cfda2c3538 100644 --- a/clients/client-datazone/src/commands/GetMetadataGenerationRunCommand.ts +++ b/clients/client-datazone/src/commands/GetMetadataGenerationRunCommand.ts @@ -85,6 +85,7 @@ export interface GetMetadataGenerationRunCommandOutput extends GetMetadataGenera * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetMetadataGenerationRunCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetProjectCommand.ts b/clients/client-datazone/src/commands/GetProjectCommand.ts index af2a756a49b33..e7302ef20bf39 100644 --- a/clients/client-datazone/src/commands/GetProjectCommand.ts +++ b/clients/client-datazone/src/commands/GetProjectCommand.ts @@ -115,6 +115,7 @@ export interface GetProjectCommandOutput extends GetProjectOutput, __MetadataBea * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetProjectCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetProjectProfileCommand.ts b/clients/client-datazone/src/commands/GetProjectProfileCommand.ts index 5905ac9da0e56..abeca8cada2a2 100644 --- a/clients/client-datazone/src/commands/GetProjectProfileCommand.ts +++ b/clients/client-datazone/src/commands/GetProjectProfileCommand.ts @@ -121,6 +121,7 @@ export interface GetProjectProfileCommandOutput extends GetProjectProfileOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetProjectProfileCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetRuleCommand.ts b/clients/client-datazone/src/commands/GetRuleCommand.ts index fc75a129f92f1..723b99b231b67 100644 --- a/clients/client-datazone/src/commands/GetRuleCommand.ts +++ b/clients/client-datazone/src/commands/GetRuleCommand.ts @@ -122,6 +122,7 @@ export interface GetRuleCommandOutput extends GetRuleOutput, __MetadataBearer {} * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetRuleCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetSubscriptionCommand.ts b/clients/client-datazone/src/commands/GetSubscriptionCommand.ts index 3153398a8a9ef..85476e5f7c07f 100644 --- a/clients/client-datazone/src/commands/GetSubscriptionCommand.ts +++ b/clients/client-datazone/src/commands/GetSubscriptionCommand.ts @@ -141,6 +141,7 @@ export interface GetSubscriptionCommandOutput extends GetSubscriptionOutput, __M * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetSubscriptionCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetSubscriptionGrantCommand.ts b/clients/client-datazone/src/commands/GetSubscriptionGrantCommand.ts index 54e2ad9b5affd..1be3e118c64d3 100644 --- a/clients/client-datazone/src/commands/GetSubscriptionGrantCommand.ts +++ b/clients/client-datazone/src/commands/GetSubscriptionGrantCommand.ts @@ -109,6 +109,7 @@ export interface GetSubscriptionGrantCommandOutput extends GetSubscriptionGrantO * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetSubscriptionGrantCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetSubscriptionRequestDetailsCommand.ts b/clients/client-datazone/src/commands/GetSubscriptionRequestDetailsCommand.ts index 3b7409ed03451..1fa10d4629702 100644 --- a/clients/client-datazone/src/commands/GetSubscriptionRequestDetailsCommand.ts +++ b/clients/client-datazone/src/commands/GetSubscriptionRequestDetailsCommand.ts @@ -160,6 +160,7 @@ export interface GetSubscriptionRequestDetailsCommandOutput * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetSubscriptionRequestDetailsCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetSubscriptionTargetCommand.ts b/clients/client-datazone/src/commands/GetSubscriptionTargetCommand.ts index acc35381ec159..b615bf0a61227 100644 --- a/clients/client-datazone/src/commands/GetSubscriptionTargetCommand.ts +++ b/clients/client-datazone/src/commands/GetSubscriptionTargetCommand.ts @@ -102,6 +102,7 @@ export interface GetSubscriptionTargetCommandOutput extends GetSubscriptionTarge * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetSubscriptionTargetCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetTimeSeriesDataPointCommand.ts b/clients/client-datazone/src/commands/GetTimeSeriesDataPointCommand.ts index f5a72d45c5639..6d1784c4f355e 100644 --- a/clients/client-datazone/src/commands/GetTimeSeriesDataPointCommand.ts +++ b/clients/client-datazone/src/commands/GetTimeSeriesDataPointCommand.ts @@ -88,6 +88,7 @@ export interface GetTimeSeriesDataPointCommandOutput extends GetTimeSeriesDataPo * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetTimeSeriesDataPointCommand extends $Command diff --git a/clients/client-datazone/src/commands/GetUserProfileCommand.ts b/clients/client-datazone/src/commands/GetUserProfileCommand.ts index 06d93089b051e..2c4bb39b03227 100644 --- a/clients/client-datazone/src/commands/GetUserProfileCommand.ts +++ b/clients/client-datazone/src/commands/GetUserProfileCommand.ts @@ -88,6 +88,7 @@ export interface GetUserProfileCommandOutput extends GetUserProfileOutput, __Met * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class GetUserProfileCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListAssetFiltersCommand.ts b/clients/client-datazone/src/commands/ListAssetFiltersCommand.ts index a77942e788fc6..aec32823f36b0 100644 --- a/clients/client-datazone/src/commands/ListAssetFiltersCommand.ts +++ b/clients/client-datazone/src/commands/ListAssetFiltersCommand.ts @@ -97,6 +97,7 @@ export interface ListAssetFiltersCommandOutput extends ListAssetFiltersOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListAssetFiltersCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListAssetRevisionsCommand.ts b/clients/client-datazone/src/commands/ListAssetRevisionsCommand.ts index 1320c9370fa47..f6c73cd6cd59f 100644 --- a/clients/client-datazone/src/commands/ListAssetRevisionsCommand.ts +++ b/clients/client-datazone/src/commands/ListAssetRevisionsCommand.ts @@ -85,6 +85,7 @@ export interface ListAssetRevisionsCommandOutput extends ListAssetRevisionsOutpu * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListAssetRevisionsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListConnectionsCommand.ts b/clients/client-datazone/src/commands/ListConnectionsCommand.ts index c6d2770b067de..fb4db793adfc9 100644 --- a/clients/client-datazone/src/commands/ListConnectionsCommand.ts +++ b/clients/client-datazone/src/commands/ListConnectionsCommand.ts @@ -246,6 +246,7 @@ export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __M * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListConnectionsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListDataProductRevisionsCommand.ts b/clients/client-datazone/src/commands/ListDataProductRevisionsCommand.ts index 9858ff97a1d10..bd15792e0faaa 100644 --- a/clients/client-datazone/src/commands/ListDataProductRevisionsCommand.ts +++ b/clients/client-datazone/src/commands/ListDataProductRevisionsCommand.ts @@ -85,6 +85,7 @@ export interface ListDataProductRevisionsCommandOutput extends ListDataProductRe * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListDataProductRevisionsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListDataSourceRunActivitiesCommand.ts b/clients/client-datazone/src/commands/ListDataSourceRunActivitiesCommand.ts index 9f4346609103c..9f75b5a5ee3e3 100644 --- a/clients/client-datazone/src/commands/ListDataSourceRunActivitiesCommand.ts +++ b/clients/client-datazone/src/commands/ListDataSourceRunActivitiesCommand.ts @@ -112,6 +112,7 @@ export interface ListDataSourceRunActivitiesCommandOutput extends ListDataSource * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListDataSourceRunActivitiesCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListDataSourceRunsCommand.ts b/clients/client-datazone/src/commands/ListDataSourceRunsCommand.ts index 83086342da4e8..bd274b7c4a3b5 100644 --- a/clients/client-datazone/src/commands/ListDataSourceRunsCommand.ts +++ b/clients/client-datazone/src/commands/ListDataSourceRunsCommand.ts @@ -110,6 +110,7 @@ export interface ListDataSourceRunsCommandOutput extends ListDataSourceRunsOutpu * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListDataSourceRunsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListDataSourcesCommand.ts b/clients/client-datazone/src/commands/ListDataSourcesCommand.ts index a77392f6a5aa2..059e5d800468c 100644 --- a/clients/client-datazone/src/commands/ListDataSourcesCommand.ts +++ b/clients/client-datazone/src/commands/ListDataSourcesCommand.ts @@ -118,6 +118,7 @@ export interface ListDataSourcesCommandOutput extends ListDataSourcesOutput, __M * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListDataSourcesCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListDomainUnitsForParentCommand.ts b/clients/client-datazone/src/commands/ListDomainUnitsForParentCommand.ts index 2774dac941f4a..f8202c785511b 100644 --- a/clients/client-datazone/src/commands/ListDomainUnitsForParentCommand.ts +++ b/clients/client-datazone/src/commands/ListDomainUnitsForParentCommand.ts @@ -79,6 +79,7 @@ export interface ListDomainUnitsForParentCommandOutput extends ListDomainUnitsFo * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListDomainUnitsForParentCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListDomainsCommand.ts b/clients/client-datazone/src/commands/ListDomainsCommand.ts index cf8be169cd1a2..dd132b62875fe 100644 --- a/clients/client-datazone/src/commands/ListDomainsCommand.ts +++ b/clients/client-datazone/src/commands/ListDomainsCommand.ts @@ -95,6 +95,7 @@ export interface ListDomainsCommandOutput extends ListDomainsOutput, __MetadataB * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListDomainsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListEntityOwnersCommand.ts b/clients/client-datazone/src/commands/ListEntityOwnersCommand.ts index 15e7a32d9e9bf..c65098486c53b 100644 --- a/clients/client-datazone/src/commands/ListEntityOwnersCommand.ts +++ b/clients/client-datazone/src/commands/ListEntityOwnersCommand.ts @@ -84,6 +84,7 @@ export interface ListEntityOwnersCommandOutput extends ListEntityOwnersOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListEntityOwnersCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListEnvironmentActionsCommand.ts b/clients/client-datazone/src/commands/ListEnvironmentActionsCommand.ts index 52fdc9eee4b4b..aec2bfc409434 100644 --- a/clients/client-datazone/src/commands/ListEnvironmentActionsCommand.ts +++ b/clients/client-datazone/src/commands/ListEnvironmentActionsCommand.ts @@ -87,6 +87,7 @@ export interface ListEnvironmentActionsCommandOutput extends ListEnvironmentActi * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListEnvironmentActionsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListEnvironmentBlueprintConfigurationsCommand.ts b/clients/client-datazone/src/commands/ListEnvironmentBlueprintConfigurationsCommand.ts index 37bba0fde39d2..2d50966b511ba 100644 --- a/clients/client-datazone/src/commands/ListEnvironmentBlueprintConfigurationsCommand.ts +++ b/clients/client-datazone/src/commands/ListEnvironmentBlueprintConfigurationsCommand.ts @@ -113,6 +113,7 @@ export interface ListEnvironmentBlueprintConfigurationsCommandOutput * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListEnvironmentBlueprintConfigurationsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListEnvironmentBlueprintsCommand.ts b/clients/client-datazone/src/commands/ListEnvironmentBlueprintsCommand.ts index dd71bc9adc9ba..16da048d811cf 100644 --- a/clients/client-datazone/src/commands/ListEnvironmentBlueprintsCommand.ts +++ b/clients/client-datazone/src/commands/ListEnvironmentBlueprintsCommand.ts @@ -96,6 +96,7 @@ export interface ListEnvironmentBlueprintsCommandOutput extends ListEnvironmentB * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListEnvironmentBlueprintsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListEnvironmentProfilesCommand.ts b/clients/client-datazone/src/commands/ListEnvironmentProfilesCommand.ts index c52852c6fdf45..f2bcdf2f5f65f 100644 --- a/clients/client-datazone/src/commands/ListEnvironmentProfilesCommand.ts +++ b/clients/client-datazone/src/commands/ListEnvironmentProfilesCommand.ts @@ -97,6 +97,7 @@ export interface ListEnvironmentProfilesCommandOutput extends ListEnvironmentPro * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListEnvironmentProfilesCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListEnvironmentsCommand.ts b/clients/client-datazone/src/commands/ListEnvironmentsCommand.ts index 75e004a187c8f..d5e34a427e2a6 100644 --- a/clients/client-datazone/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-datazone/src/commands/ListEnvironmentsCommand.ts @@ -102,6 +102,7 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListEnvironmentsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListJobRunsCommand.ts b/clients/client-datazone/src/commands/ListJobRunsCommand.ts index 2809f681422fd..e82eed946da66 100644 --- a/clients/client-datazone/src/commands/ListJobRunsCommand.ts +++ b/clients/client-datazone/src/commands/ListJobRunsCommand.ts @@ -95,6 +95,7 @@ export interface ListJobRunsCommandOutput extends ListJobRunsOutput, __MetadataB * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListJobRunsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListLineageEventsCommand.ts b/clients/client-datazone/src/commands/ListLineageEventsCommand.ts index d4718f40aae5f..a1897aa9b342c 100644 --- a/clients/client-datazone/src/commands/ListLineageEventsCommand.ts +++ b/clients/client-datazone/src/commands/ListLineageEventsCommand.ts @@ -108,6 +108,7 @@ export interface ListLineageEventsCommandOutput extends ListLineageEventsOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListLineageEventsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListLineageNodeHistoryCommand.ts b/clients/client-datazone/src/commands/ListLineageNodeHistoryCommand.ts index 18689ac22da7b..6af023f4ba765 100644 --- a/clients/client-datazone/src/commands/ListLineageNodeHistoryCommand.ts +++ b/clients/client-datazone/src/commands/ListLineageNodeHistoryCommand.ts @@ -96,6 +96,7 @@ export interface ListLineageNodeHistoryCommandOutput extends ListLineageNodeHist * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListLineageNodeHistoryCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListMetadataGenerationRunsCommand.ts b/clients/client-datazone/src/commands/ListMetadataGenerationRunsCommand.ts index 739e3984977fe..0c74039cda8c6 100644 --- a/clients/client-datazone/src/commands/ListMetadataGenerationRunsCommand.ts +++ b/clients/client-datazone/src/commands/ListMetadataGenerationRunsCommand.ts @@ -93,6 +93,7 @@ export interface ListMetadataGenerationRunsCommandOutput extends ListMetadataGen * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListMetadataGenerationRunsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListNotificationsCommand.ts b/clients/client-datazone/src/commands/ListNotificationsCommand.ts index ec8203b4a31e1..5047663a3feea 100644 --- a/clients/client-datazone/src/commands/ListNotificationsCommand.ts +++ b/clients/client-datazone/src/commands/ListNotificationsCommand.ts @@ -111,6 +111,7 @@ export interface ListNotificationsCommandOutput extends ListNotificationsOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListNotificationsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListPolicyGrantsCommand.ts b/clients/client-datazone/src/commands/ListPolicyGrantsCommand.ts index 3f2cbe817219a..6b27d49e28839 100644 --- a/clients/client-datazone/src/commands/ListPolicyGrantsCommand.ts +++ b/clients/client-datazone/src/commands/ListPolicyGrantsCommand.ts @@ -145,6 +145,7 @@ export interface ListPolicyGrantsCommandOutput extends ListPolicyGrantsOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListPolicyGrantsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListProjectMembershipsCommand.ts b/clients/client-datazone/src/commands/ListProjectMembershipsCommand.ts index 10bfb420fa194..623d4aba33412 100644 --- a/clients/client-datazone/src/commands/ListProjectMembershipsCommand.ts +++ b/clients/client-datazone/src/commands/ListProjectMembershipsCommand.ts @@ -91,6 +91,7 @@ export interface ListProjectMembershipsCommandOutput extends ListProjectMembersh * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListProjectMembershipsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListProjectProfilesCommand.ts b/clients/client-datazone/src/commands/ListProjectProfilesCommand.ts index 68caf607c661e..58cf060043f84 100644 --- a/clients/client-datazone/src/commands/ListProjectProfilesCommand.ts +++ b/clients/client-datazone/src/commands/ListProjectProfilesCommand.ts @@ -93,6 +93,7 @@ export interface ListProjectProfilesCommandOutput extends ListProjectProfilesOut * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListProjectProfilesCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListProjectsCommand.ts b/clients/client-datazone/src/commands/ListProjectsCommand.ts index 894301a9186ba..048c417ac78ca 100644 --- a/clients/client-datazone/src/commands/ListProjectsCommand.ts +++ b/clients/client-datazone/src/commands/ListProjectsCommand.ts @@ -99,6 +99,7 @@ export interface ListProjectsCommandOutput extends ListProjectsOutput, __Metadat * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListProjectsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListRulesCommand.ts b/clients/client-datazone/src/commands/ListRulesCommand.ts index 94c0f84910d7f..878c4c461fac6 100644 --- a/clients/client-datazone/src/commands/ListRulesCommand.ts +++ b/clients/client-datazone/src/commands/ListRulesCommand.ts @@ -126,6 +126,7 @@ export interface ListRulesCommandOutput extends ListRulesOutput, __MetadataBeare * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListRulesCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListSubscriptionGrantsCommand.ts b/clients/client-datazone/src/commands/ListSubscriptionGrantsCommand.ts index d6d0ebf8583a6..8d7619162b27a 100644 --- a/clients/client-datazone/src/commands/ListSubscriptionGrantsCommand.ts +++ b/clients/client-datazone/src/commands/ListSubscriptionGrantsCommand.ts @@ -122,6 +122,7 @@ export interface ListSubscriptionGrantsCommandOutput extends ListSubscriptionGra * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListSubscriptionGrantsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListSubscriptionRequestsCommand.ts b/clients/client-datazone/src/commands/ListSubscriptionRequestsCommand.ts index 310c14507c3cb..163f64a85c4a1 100644 --- a/clients/client-datazone/src/commands/ListSubscriptionRequestsCommand.ts +++ b/clients/client-datazone/src/commands/ListSubscriptionRequestsCommand.ts @@ -166,6 +166,7 @@ export interface ListSubscriptionRequestsCommandOutput extends ListSubscriptionR * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListSubscriptionRequestsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListSubscriptionTargetsCommand.ts b/clients/client-datazone/src/commands/ListSubscriptionTargetsCommand.ts index 3c2e60f5eaf2c..2d943c6a64ffa 100644 --- a/clients/client-datazone/src/commands/ListSubscriptionTargetsCommand.ts +++ b/clients/client-datazone/src/commands/ListSubscriptionTargetsCommand.ts @@ -110,6 +110,7 @@ export interface ListSubscriptionTargetsCommandOutput extends ListSubscriptionTa * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListSubscriptionTargetsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListSubscriptionsCommand.ts b/clients/client-datazone/src/commands/ListSubscriptionsCommand.ts index 76086917af98a..71b411aa93bcd 100644 --- a/clients/client-datazone/src/commands/ListSubscriptionsCommand.ts +++ b/clients/client-datazone/src/commands/ListSubscriptionsCommand.ts @@ -154,6 +154,7 @@ export interface ListSubscriptionsCommandOutput extends ListSubscriptionsOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListSubscriptionsCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListTagsForResourceCommand.ts b/clients/client-datazone/src/commands/ListTagsForResourceCommand.ts index 525dc78cbf344..ef6845bf833ea 100644 --- a/clients/client-datazone/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-datazone/src/commands/ListTagsForResourceCommand.ts @@ -75,6 +75,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-datazone/src/commands/ListTimeSeriesDataPointsCommand.ts b/clients/client-datazone/src/commands/ListTimeSeriesDataPointsCommand.ts index f24359640e78a..cc0617ed43b63 100644 --- a/clients/client-datazone/src/commands/ListTimeSeriesDataPointsCommand.ts +++ b/clients/client-datazone/src/commands/ListTimeSeriesDataPointsCommand.ts @@ -90,6 +90,7 @@ export interface ListTimeSeriesDataPointsCommandOutput extends ListTimeSeriesDat * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class ListTimeSeriesDataPointsCommand extends $Command diff --git a/clients/client-datazone/src/commands/PostLineageEventCommand.ts b/clients/client-datazone/src/commands/PostLineageEventCommand.ts index 1168da48a123b..337da8194787d 100644 --- a/clients/client-datazone/src/commands/PostLineageEventCommand.ts +++ b/clients/client-datazone/src/commands/PostLineageEventCommand.ts @@ -93,6 +93,7 @@ export interface PostLineageEventCommandOutput extends PostLineageEventOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class PostLineageEventCommand extends $Command diff --git a/clients/client-datazone/src/commands/PostTimeSeriesDataPointsCommand.ts b/clients/client-datazone/src/commands/PostTimeSeriesDataPointsCommand.ts index 0b6a33b7552af..1ba9739f5277f 100644 --- a/clients/client-datazone/src/commands/PostTimeSeriesDataPointsCommand.ts +++ b/clients/client-datazone/src/commands/PostTimeSeriesDataPointsCommand.ts @@ -103,6 +103,7 @@ export interface PostTimeSeriesDataPointsCommandOutput extends PostTimeSeriesDat * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class PostTimeSeriesDataPointsCommand extends $Command diff --git a/clients/client-datazone/src/commands/PutEnvironmentBlueprintConfigurationCommand.ts b/clients/client-datazone/src/commands/PutEnvironmentBlueprintConfigurationCommand.ts index 11baf6a821582..ac6447f98f858 100644 --- a/clients/client-datazone/src/commands/PutEnvironmentBlueprintConfigurationCommand.ts +++ b/clients/client-datazone/src/commands/PutEnvironmentBlueprintConfigurationCommand.ts @@ -130,6 +130,7 @@ export interface PutEnvironmentBlueprintConfigurationCommandOutput * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class PutEnvironmentBlueprintConfigurationCommand extends $Command diff --git a/clients/client-datazone/src/commands/RejectPredictionsCommand.ts b/clients/client-datazone/src/commands/RejectPredictionsCommand.ts index 6e4c2c16c0918..537200ed95195 100644 --- a/clients/client-datazone/src/commands/RejectPredictionsCommand.ts +++ b/clients/client-datazone/src/commands/RejectPredictionsCommand.ts @@ -94,6 +94,7 @@ export interface RejectPredictionsCommandOutput extends RejectPredictionsOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class RejectPredictionsCommand extends $Command diff --git a/clients/client-datazone/src/commands/RejectSubscriptionRequestCommand.ts b/clients/client-datazone/src/commands/RejectSubscriptionRequestCommand.ts index 97eb8233811cb..28c48edfd7962 100644 --- a/clients/client-datazone/src/commands/RejectSubscriptionRequestCommand.ts +++ b/clients/client-datazone/src/commands/RejectSubscriptionRequestCommand.ts @@ -160,6 +160,7 @@ export interface RejectSubscriptionRequestCommandOutput extends RejectSubscripti * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class RejectSubscriptionRequestCommand extends $Command diff --git a/clients/client-datazone/src/commands/RemoveEntityOwnerCommand.ts b/clients/client-datazone/src/commands/RemoveEntityOwnerCommand.ts index 223d02f49ad0e..b20d3713e6b9e 100644 --- a/clients/client-datazone/src/commands/RemoveEntityOwnerCommand.ts +++ b/clients/client-datazone/src/commands/RemoveEntityOwnerCommand.ts @@ -82,6 +82,7 @@ export interface RemoveEntityOwnerCommandOutput extends RemoveEntityOwnerOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class RemoveEntityOwnerCommand extends $Command diff --git a/clients/client-datazone/src/commands/RemovePolicyGrantCommand.ts b/clients/client-datazone/src/commands/RemovePolicyGrantCommand.ts index 00eccb4db1828..df0261c4a06e7 100644 --- a/clients/client-datazone/src/commands/RemovePolicyGrantCommand.ts +++ b/clients/client-datazone/src/commands/RemovePolicyGrantCommand.ts @@ -98,6 +98,7 @@ export interface RemovePolicyGrantCommandOutput extends RemovePolicyGrantOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class RemovePolicyGrantCommand extends $Command diff --git a/clients/client-datazone/src/commands/RevokeSubscriptionCommand.ts b/clients/client-datazone/src/commands/RevokeSubscriptionCommand.ts index 6e0406cc3fe8a..14cc050881710 100644 --- a/clients/client-datazone/src/commands/RevokeSubscriptionCommand.ts +++ b/clients/client-datazone/src/commands/RevokeSubscriptionCommand.ts @@ -145,6 +145,7 @@ export interface RevokeSubscriptionCommandOutput extends RevokeSubscriptionOutpu * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class RevokeSubscriptionCommand extends $Command diff --git a/clients/client-datazone/src/commands/SearchCommand.ts b/clients/client-datazone/src/commands/SearchCommand.ts index 229ec439e9502..578629bb44f94 100644 --- a/clients/client-datazone/src/commands/SearchCommand.ts +++ b/clients/client-datazone/src/commands/SearchCommand.ts @@ -207,6 +207,7 @@ export interface SearchCommandOutput extends SearchOutput, __MetadataBearer {} * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class SearchCommand extends $Command diff --git a/clients/client-datazone/src/commands/SearchGroupProfilesCommand.ts b/clients/client-datazone/src/commands/SearchGroupProfilesCommand.ts index 21ef1f15c9bd5..50ff79152871b 100644 --- a/clients/client-datazone/src/commands/SearchGroupProfilesCommand.ts +++ b/clients/client-datazone/src/commands/SearchGroupProfilesCommand.ts @@ -90,6 +90,7 @@ export interface SearchGroupProfilesCommandOutput extends SearchGroupProfilesOut * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class SearchGroupProfilesCommand extends $Command diff --git a/clients/client-datazone/src/commands/SearchListingsCommand.ts b/clients/client-datazone/src/commands/SearchListingsCommand.ts index acb27ea3e2ff5..13b0024f0df74 100644 --- a/clients/client-datazone/src/commands/SearchListingsCommand.ts +++ b/clients/client-datazone/src/commands/SearchListingsCommand.ts @@ -178,6 +178,7 @@ export interface SearchListingsCommandOutput extends SearchListingsOutput, __Met * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class SearchListingsCommand extends $Command diff --git a/clients/client-datazone/src/commands/SearchTypesCommand.ts b/clients/client-datazone/src/commands/SearchTypesCommand.ts index 7e68d2372ae33..cad00e2e2dbca 100644 --- a/clients/client-datazone/src/commands/SearchTypesCommand.ts +++ b/clients/client-datazone/src/commands/SearchTypesCommand.ts @@ -170,6 +170,7 @@ export interface SearchTypesCommandOutput extends SearchTypesOutput, __MetadataB * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class SearchTypesCommand extends $Command diff --git a/clients/client-datazone/src/commands/SearchUserProfilesCommand.ts b/clients/client-datazone/src/commands/SearchUserProfilesCommand.ts index ce278faaf3343..9b17cc84a566e 100644 --- a/clients/client-datazone/src/commands/SearchUserProfilesCommand.ts +++ b/clients/client-datazone/src/commands/SearchUserProfilesCommand.ts @@ -100,6 +100,7 @@ export interface SearchUserProfilesCommandOutput extends SearchUserProfilesOutpu * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class SearchUserProfilesCommand extends $Command diff --git a/clients/client-datazone/src/commands/StartDataSourceRunCommand.ts b/clients/client-datazone/src/commands/StartDataSourceRunCommand.ts index 5dda21163ba8a..1e7b97f4b107b 100644 --- a/clients/client-datazone/src/commands/StartDataSourceRunCommand.ts +++ b/clients/client-datazone/src/commands/StartDataSourceRunCommand.ts @@ -102,6 +102,7 @@ export interface StartDataSourceRunCommandOutput extends StartDataSourceRunOutpu * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class StartDataSourceRunCommand extends $Command diff --git a/clients/client-datazone/src/commands/StartMetadataGenerationRunCommand.ts b/clients/client-datazone/src/commands/StartMetadataGenerationRunCommand.ts index 573e62ea5a3a9..6bfc5f1be3c90 100644 --- a/clients/client-datazone/src/commands/StartMetadataGenerationRunCommand.ts +++ b/clients/client-datazone/src/commands/StartMetadataGenerationRunCommand.ts @@ -93,6 +93,7 @@ export interface StartMetadataGenerationRunCommandOutput extends StartMetadataGe * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class StartMetadataGenerationRunCommand extends $Command diff --git a/clients/client-datazone/src/commands/TagResourceCommand.ts b/clients/client-datazone/src/commands/TagResourceCommand.ts index e10336fb704a1..e28ab8459baaf 100644 --- a/clients/client-datazone/src/commands/TagResourceCommand.ts +++ b/clients/client-datazone/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-datazone/src/commands/UntagResourceCommand.ts b/clients/client-datazone/src/commands/UntagResourceCommand.ts index a2f981e5f5391..984cf9dc8129b 100644 --- a/clients/client-datazone/src/commands/UntagResourceCommand.ts +++ b/clients/client-datazone/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateAssetFilterCommand.ts b/clients/client-datazone/src/commands/UpdateAssetFilterCommand.ts index e42309a666f45..7feee1b1da854 100644 --- a/clients/client-datazone/src/commands/UpdateAssetFilterCommand.ts +++ b/clients/client-datazone/src/commands/UpdateAssetFilterCommand.ts @@ -354,6 +354,7 @@ export interface UpdateAssetFilterCommandOutput extends UpdateAssetFilterOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateAssetFilterCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateConnectionCommand.ts b/clients/client-datazone/src/commands/UpdateConnectionCommand.ts index d1906d74dc45d..052898fad411e 100644 --- a/clients/client-datazone/src/commands/UpdateConnectionCommand.ts +++ b/clients/client-datazone/src/commands/UpdateConnectionCommand.ts @@ -306,6 +306,7 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateConnectionCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateDataSourceCommand.ts b/clients/client-datazone/src/commands/UpdateDataSourceCommand.ts index f5b65926c269f..cba1534982398 100644 --- a/clients/client-datazone/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-datazone/src/commands/UpdateDataSourceCommand.ts @@ -275,6 +275,7 @@ export interface UpdateDataSourceCommandOutput extends UpdateDataSourceOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateDataSourceCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateDomainCommand.ts b/clients/client-datazone/src/commands/UpdateDomainCommand.ts index 4c2f8d89ad8d3..c6f9d747feff2 100644 --- a/clients/client-datazone/src/commands/UpdateDomainCommand.ts +++ b/clients/client-datazone/src/commands/UpdateDomainCommand.ts @@ -100,6 +100,7 @@ export interface UpdateDomainCommandOutput extends UpdateDomainOutput, __Metadat * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateDomainCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateDomainUnitCommand.ts b/clients/client-datazone/src/commands/UpdateDomainUnitCommand.ts index bac74f257c80b..acdc45a58a791 100644 --- a/clients/client-datazone/src/commands/UpdateDomainUnitCommand.ts +++ b/clients/client-datazone/src/commands/UpdateDomainUnitCommand.ts @@ -102,6 +102,7 @@ export interface UpdateDomainUnitCommandOutput extends UpdateDomainUnitOutput, _ * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateDomainUnitCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateEnvironmentActionCommand.ts b/clients/client-datazone/src/commands/UpdateEnvironmentActionCommand.ts index ac5b03711cc36..d665c2a1099cd 100644 --- a/clients/client-datazone/src/commands/UpdateEnvironmentActionCommand.ts +++ b/clients/client-datazone/src/commands/UpdateEnvironmentActionCommand.ts @@ -94,6 +94,7 @@ export interface UpdateEnvironmentActionCommandOutput extends UpdateEnvironmentA * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateEnvironmentActionCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateEnvironmentCommand.ts b/clients/client-datazone/src/commands/UpdateEnvironmentCommand.ts index 8ab7f6fb8bed1..9f71b18456f7b 100644 --- a/clients/client-datazone/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-datazone/src/commands/UpdateEnvironmentCommand.ts @@ -162,6 +162,7 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateEnvironmentCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateEnvironmentProfileCommand.ts b/clients/client-datazone/src/commands/UpdateEnvironmentProfileCommand.ts index d1954d8faaf2e..d920a1086a36f 100644 --- a/clients/client-datazone/src/commands/UpdateEnvironmentProfileCommand.ts +++ b/clients/client-datazone/src/commands/UpdateEnvironmentProfileCommand.ts @@ -115,6 +115,7 @@ export interface UpdateEnvironmentProfileCommandOutput extends UpdateEnvironment * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateEnvironmentProfileCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateGlossaryCommand.ts b/clients/client-datazone/src/commands/UpdateGlossaryCommand.ts index 6615fb21d5091..a20fffda927f9 100644 --- a/clients/client-datazone/src/commands/UpdateGlossaryCommand.ts +++ b/clients/client-datazone/src/commands/UpdateGlossaryCommand.ts @@ -91,6 +91,7 @@ export interface UpdateGlossaryCommandOutput extends UpdateGlossaryOutput, __Met * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateGlossaryCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateGlossaryTermCommand.ts b/clients/client-datazone/src/commands/UpdateGlossaryTermCommand.ts index cd4af76e7d112..c842aca7dd5af 100644 --- a/clients/client-datazone/src/commands/UpdateGlossaryTermCommand.ts +++ b/clients/client-datazone/src/commands/UpdateGlossaryTermCommand.ts @@ -109,6 +109,7 @@ export interface UpdateGlossaryTermCommandOutput extends UpdateGlossaryTermOutpu * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateGlossaryTermCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateGroupProfileCommand.ts b/clients/client-datazone/src/commands/UpdateGroupProfileCommand.ts index 537513ddc1a3a..471fa8548a668 100644 --- a/clients/client-datazone/src/commands/UpdateGroupProfileCommand.ts +++ b/clients/client-datazone/src/commands/UpdateGroupProfileCommand.ts @@ -82,6 +82,7 @@ export interface UpdateGroupProfileCommandOutput extends UpdateGroupProfileOutpu * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateGroupProfileCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateProjectCommand.ts b/clients/client-datazone/src/commands/UpdateProjectCommand.ts index 298a9fecf763c..9c4b66944283b 100644 --- a/clients/client-datazone/src/commands/UpdateProjectCommand.ts +++ b/clients/client-datazone/src/commands/UpdateProjectCommand.ts @@ -155,6 +155,7 @@ export interface UpdateProjectCommandOutput extends UpdateProjectOutput, __Metad * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateProjectCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateProjectProfileCommand.ts b/clients/client-datazone/src/commands/UpdateProjectProfileCommand.ts index 083072405abd4..64d018fa82af3 100644 --- a/clients/client-datazone/src/commands/UpdateProjectProfileCommand.ts +++ b/clients/client-datazone/src/commands/UpdateProjectProfileCommand.ts @@ -167,6 +167,7 @@ export interface UpdateProjectProfileCommandOutput extends UpdateProjectProfileO * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateProjectProfileCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateRuleCommand.ts b/clients/client-datazone/src/commands/UpdateRuleCommand.ts index 176c6cac06c63..a89247bcb01d1 100644 --- a/clients/client-datazone/src/commands/UpdateRuleCommand.ts +++ b/clients/client-datazone/src/commands/UpdateRuleCommand.ts @@ -159,6 +159,7 @@ export interface UpdateRuleCommandOutput extends UpdateRuleOutput, __MetadataBea * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateRuleCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateSubscriptionGrantStatusCommand.ts b/clients/client-datazone/src/commands/UpdateSubscriptionGrantStatusCommand.ts index 2e2f994580d2d..907f3e021979b 100644 --- a/clients/client-datazone/src/commands/UpdateSubscriptionGrantStatusCommand.ts +++ b/clients/client-datazone/src/commands/UpdateSubscriptionGrantStatusCommand.ts @@ -123,6 +123,7 @@ export interface UpdateSubscriptionGrantStatusCommandOutput * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateSubscriptionGrantStatusCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateSubscriptionRequestCommand.ts b/clients/client-datazone/src/commands/UpdateSubscriptionRequestCommand.ts index b1890bb59553f..6f408f26ceb6a 100644 --- a/clients/client-datazone/src/commands/UpdateSubscriptionRequestCommand.ts +++ b/clients/client-datazone/src/commands/UpdateSubscriptionRequestCommand.ts @@ -160,6 +160,7 @@ export interface UpdateSubscriptionRequestCommandOutput extends UpdateSubscripti * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateSubscriptionRequestCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateSubscriptionTargetCommand.ts b/clients/client-datazone/src/commands/UpdateSubscriptionTargetCommand.ts index 377ddcd20ce91..8254689ce8829 100644 --- a/clients/client-datazone/src/commands/UpdateSubscriptionTargetCommand.ts +++ b/clients/client-datazone/src/commands/UpdateSubscriptionTargetCommand.ts @@ -121,6 +121,7 @@ export interface UpdateSubscriptionTargetCommandOutput extends UpdateSubscriptio * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateSubscriptionTargetCommand extends $Command diff --git a/clients/client-datazone/src/commands/UpdateUserProfileCommand.ts b/clients/client-datazone/src/commands/UpdateUserProfileCommand.ts index fa92a24fa5528..daf82d76748c6 100644 --- a/clients/client-datazone/src/commands/UpdateUserProfileCommand.ts +++ b/clients/client-datazone/src/commands/UpdateUserProfileCommand.ts @@ -93,6 +93,7 @@ export interface UpdateUserProfileCommandOutput extends UpdateUserProfileOutput, * @throws {@link DataZoneServiceException} *

Base exception class for all service exceptions from DataZone service.

* + * * @public */ export class UpdateUserProfileCommand extends $Command diff --git a/clients/client-dax/src/commands/CreateClusterCommand.ts b/clients/client-dax/src/commands/CreateClusterCommand.ts index b671f835f06db..09fe458b28dcd 100644 --- a/clients/client-dax/src/commands/CreateClusterCommand.ts +++ b/clients/client-dax/src/commands/CreateClusterCommand.ts @@ -186,6 +186,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class CreateClusterCommand extends $Command diff --git a/clients/client-dax/src/commands/CreateParameterGroupCommand.ts b/clients/client-dax/src/commands/CreateParameterGroupCommand.ts index d8bcbdff82223..4f064cc704865 100644 --- a/clients/client-dax/src/commands/CreateParameterGroupCommand.ts +++ b/clients/client-dax/src/commands/CreateParameterGroupCommand.ts @@ -78,6 +78,7 @@ export interface CreateParameterGroupCommandOutput extends CreateParameterGroupR * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class CreateParameterGroupCommand extends $Command diff --git a/clients/client-dax/src/commands/CreateSubnetGroupCommand.ts b/clients/client-dax/src/commands/CreateSubnetGroupCommand.ts index 120b4add0a117..f12273b5d24ab 100644 --- a/clients/client-dax/src/commands/CreateSubnetGroupCommand.ts +++ b/clients/client-dax/src/commands/CreateSubnetGroupCommand.ts @@ -86,6 +86,7 @@ export interface CreateSubnetGroupCommandOutput extends CreateSubnetGroupRespons * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class CreateSubnetGroupCommand extends $Command diff --git a/clients/client-dax/src/commands/DecreaseReplicationFactorCommand.ts b/clients/client-dax/src/commands/DecreaseReplicationFactorCommand.ts index ee20e4069e40e..da03d1afbec97 100644 --- a/clients/client-dax/src/commands/DecreaseReplicationFactorCommand.ts +++ b/clients/client-dax/src/commands/DecreaseReplicationFactorCommand.ts @@ -138,6 +138,7 @@ export interface DecreaseReplicationFactorCommandOutput extends DecreaseReplicat * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class DecreaseReplicationFactorCommand extends $Command diff --git a/clients/client-dax/src/commands/DeleteClusterCommand.ts b/clients/client-dax/src/commands/DeleteClusterCommand.ts index 59e20426261c6..494b23f316a4b 100644 --- a/clients/client-dax/src/commands/DeleteClusterCommand.ts +++ b/clients/client-dax/src/commands/DeleteClusterCommand.ts @@ -129,6 +129,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class DeleteClusterCommand extends $Command diff --git a/clients/client-dax/src/commands/DeleteParameterGroupCommand.ts b/clients/client-dax/src/commands/DeleteParameterGroupCommand.ts index 9cb5272ed5358..801fe09b84489 100644 --- a/clients/client-dax/src/commands/DeleteParameterGroupCommand.ts +++ b/clients/client-dax/src/commands/DeleteParameterGroupCommand.ts @@ -71,6 +71,7 @@ export interface DeleteParameterGroupCommandOutput extends DeleteParameterGroupR * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class DeleteParameterGroupCommand extends $Command diff --git a/clients/client-dax/src/commands/DeleteSubnetGroupCommand.ts b/clients/client-dax/src/commands/DeleteSubnetGroupCommand.ts index 21b89a1e93ef4..1c1a1fc7a5196 100644 --- a/clients/client-dax/src/commands/DeleteSubnetGroupCommand.ts +++ b/clients/client-dax/src/commands/DeleteSubnetGroupCommand.ts @@ -69,6 +69,7 @@ export interface DeleteSubnetGroupCommandOutput extends DeleteSubnetGroupRespons * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class DeleteSubnetGroupCommand extends $Command diff --git a/clients/client-dax/src/commands/DescribeClustersCommand.ts b/clients/client-dax/src/commands/DescribeClustersCommand.ts index 9713cf047ade4..89acaf975991a 100644 --- a/clients/client-dax/src/commands/DescribeClustersCommand.ts +++ b/clients/client-dax/src/commands/DescribeClustersCommand.ts @@ -140,6 +140,7 @@ export interface DescribeClustersCommandOutput extends DescribeClustersResponse, * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class DescribeClustersCommand extends $Command diff --git a/clients/client-dax/src/commands/DescribeDefaultParametersCommand.ts b/clients/client-dax/src/commands/DescribeDefaultParametersCommand.ts index 3507d7e224325..9cb4bfb5c247c 100644 --- a/clients/client-dax/src/commands/DescribeDefaultParametersCommand.ts +++ b/clients/client-dax/src/commands/DescribeDefaultParametersCommand.ts @@ -85,6 +85,7 @@ export interface DescribeDefaultParametersCommandOutput extends DescribeDefaultP * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class DescribeDefaultParametersCommand extends $Command diff --git a/clients/client-dax/src/commands/DescribeEventsCommand.ts b/clients/client-dax/src/commands/DescribeEventsCommand.ts index 97daecdc340c1..c16e0892621ac 100644 --- a/clients/client-dax/src/commands/DescribeEventsCommand.ts +++ b/clients/client-dax/src/commands/DescribeEventsCommand.ts @@ -82,6 +82,7 @@ export interface DescribeEventsCommandOutput extends DescribeEventsResponse, __M * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class DescribeEventsCommand extends $Command diff --git a/clients/client-dax/src/commands/DescribeParameterGroupsCommand.ts b/clients/client-dax/src/commands/DescribeParameterGroupsCommand.ts index ff97c8e99eaa9..06ed5f25587f3 100644 --- a/clients/client-dax/src/commands/DescribeParameterGroupsCommand.ts +++ b/clients/client-dax/src/commands/DescribeParameterGroupsCommand.ts @@ -78,6 +78,7 @@ export interface DescribeParameterGroupsCommandOutput extends DescribeParameterG * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class DescribeParameterGroupsCommand extends $Command diff --git a/clients/client-dax/src/commands/DescribeParametersCommand.ts b/clients/client-dax/src/commands/DescribeParametersCommand.ts index b76472f0862b9..2f561b1c748ae 100644 --- a/clients/client-dax/src/commands/DescribeParametersCommand.ts +++ b/clients/client-dax/src/commands/DescribeParametersCommand.ts @@ -89,6 +89,7 @@ export interface DescribeParametersCommandOutput extends DescribeParametersRespo * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class DescribeParametersCommand extends $Command diff --git a/clients/client-dax/src/commands/DescribeSubnetGroupsCommand.ts b/clients/client-dax/src/commands/DescribeSubnetGroupsCommand.ts index 43fe979820105..0e89cb001c343 100644 --- a/clients/client-dax/src/commands/DescribeSubnetGroupsCommand.ts +++ b/clients/client-dax/src/commands/DescribeSubnetGroupsCommand.ts @@ -80,6 +80,7 @@ export interface DescribeSubnetGroupsCommandOutput extends DescribeSubnetGroupsR * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class DescribeSubnetGroupsCommand extends $Command diff --git a/clients/client-dax/src/commands/IncreaseReplicationFactorCommand.ts b/clients/client-dax/src/commands/IncreaseReplicationFactorCommand.ts index 672f2e2673f78..e8662b70ef5c3 100644 --- a/clients/client-dax/src/commands/IncreaseReplicationFactorCommand.ts +++ b/clients/client-dax/src/commands/IncreaseReplicationFactorCommand.ts @@ -144,6 +144,7 @@ export interface IncreaseReplicationFactorCommandOutput extends IncreaseReplicat * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class IncreaseReplicationFactorCommand extends $Command diff --git a/clients/client-dax/src/commands/ListTagsCommand.ts b/clients/client-dax/src/commands/ListTagsCommand.ts index 470a1f2676663..edcaaeea0fff3 100644 --- a/clients/client-dax/src/commands/ListTagsCommand.ts +++ b/clients/client-dax/src/commands/ListTagsCommand.ts @@ -82,6 +82,7 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class ListTagsCommand extends $Command diff --git a/clients/client-dax/src/commands/RebootNodeCommand.ts b/clients/client-dax/src/commands/RebootNodeCommand.ts index 7682a9b5a1662..b8f2349f78466 100644 --- a/clients/client-dax/src/commands/RebootNodeCommand.ts +++ b/clients/client-dax/src/commands/RebootNodeCommand.ts @@ -135,6 +135,7 @@ export interface RebootNodeCommandOutput extends RebootNodeResponse, __MetadataB * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class RebootNodeCommand extends $Command diff --git a/clients/client-dax/src/commands/TagResourceCommand.ts b/clients/client-dax/src/commands/TagResourceCommand.ts index 6d3aa323aa68b..db9bb52511b80 100644 --- a/clients/client-dax/src/commands/TagResourceCommand.ts +++ b/clients/client-dax/src/commands/TagResourceCommand.ts @@ -89,6 +89,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-dax/src/commands/UntagResourceCommand.ts b/clients/client-dax/src/commands/UntagResourceCommand.ts index 8ace697cd17df..aae6daee148b6 100644 --- a/clients/client-dax/src/commands/UntagResourceCommand.ts +++ b/clients/client-dax/src/commands/UntagResourceCommand.ts @@ -86,6 +86,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-dax/src/commands/UpdateClusterCommand.ts b/clients/client-dax/src/commands/UpdateClusterCommand.ts index 5986dc3237636..2a1cdeeda3378 100644 --- a/clients/client-dax/src/commands/UpdateClusterCommand.ts +++ b/clients/client-dax/src/commands/UpdateClusterCommand.ts @@ -141,6 +141,7 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class UpdateClusterCommand extends $Command diff --git a/clients/client-dax/src/commands/UpdateParameterGroupCommand.ts b/clients/client-dax/src/commands/UpdateParameterGroupCommand.ts index 17e62859be951..918c959fb9314 100644 --- a/clients/client-dax/src/commands/UpdateParameterGroupCommand.ts +++ b/clients/client-dax/src/commands/UpdateParameterGroupCommand.ts @@ -81,6 +81,7 @@ export interface UpdateParameterGroupCommandOutput extends UpdateParameterGroupR * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class UpdateParameterGroupCommand extends $Command diff --git a/clients/client-dax/src/commands/UpdateSubnetGroupCommand.ts b/clients/client-dax/src/commands/UpdateSubnetGroupCommand.ts index 585c87e43237a..a69a9c27fe811 100644 --- a/clients/client-dax/src/commands/UpdateSubnetGroupCommand.ts +++ b/clients/client-dax/src/commands/UpdateSubnetGroupCommand.ts @@ -86,6 +86,7 @@ export interface UpdateSubnetGroupCommandOutput extends UpdateSubnetGroupRespons * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* + * * @public */ export class UpdateSubnetGroupCommand extends $Command diff --git a/clients/client-deadline/src/commands/AssociateMemberToFarmCommand.ts b/clients/client-deadline/src/commands/AssociateMemberToFarmCommand.ts index a09ff3d3e17cd..b47685a9fd45f 100644 --- a/clients/client-deadline/src/commands/AssociateMemberToFarmCommand.ts +++ b/clients/client-deadline/src/commands/AssociateMemberToFarmCommand.ts @@ -77,6 +77,7 @@ export interface AssociateMemberToFarmCommandOutput extends AssociateMemberToFar * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class AssociateMemberToFarmCommand extends $Command diff --git a/clients/client-deadline/src/commands/AssociateMemberToFleetCommand.ts b/clients/client-deadline/src/commands/AssociateMemberToFleetCommand.ts index 1d1daba446f0e..31196ef60cf80 100644 --- a/clients/client-deadline/src/commands/AssociateMemberToFleetCommand.ts +++ b/clients/client-deadline/src/commands/AssociateMemberToFleetCommand.ts @@ -78,6 +78,7 @@ export interface AssociateMemberToFleetCommandOutput extends AssociateMemberToFl * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class AssociateMemberToFleetCommand extends $Command diff --git a/clients/client-deadline/src/commands/AssociateMemberToJobCommand.ts b/clients/client-deadline/src/commands/AssociateMemberToJobCommand.ts index 8860df007456a..6ea6babdf19eb 100644 --- a/clients/client-deadline/src/commands/AssociateMemberToJobCommand.ts +++ b/clients/client-deadline/src/commands/AssociateMemberToJobCommand.ts @@ -79,6 +79,7 @@ export interface AssociateMemberToJobCommandOutput extends AssociateMemberToJobR * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class AssociateMemberToJobCommand extends $Command diff --git a/clients/client-deadline/src/commands/AssociateMemberToQueueCommand.ts b/clients/client-deadline/src/commands/AssociateMemberToQueueCommand.ts index 82a0afd023e86..4f14fc43d66fd 100644 --- a/clients/client-deadline/src/commands/AssociateMemberToQueueCommand.ts +++ b/clients/client-deadline/src/commands/AssociateMemberToQueueCommand.ts @@ -78,6 +78,7 @@ export interface AssociateMemberToQueueCommandOutput extends AssociateMemberToQu * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class AssociateMemberToQueueCommand extends $Command diff --git a/clients/client-deadline/src/commands/AssumeFleetRoleForReadCommand.ts b/clients/client-deadline/src/commands/AssumeFleetRoleForReadCommand.ts index 9362099fef699..ccac82961c461 100644 --- a/clients/client-deadline/src/commands/AssumeFleetRoleForReadCommand.ts +++ b/clients/client-deadline/src/commands/AssumeFleetRoleForReadCommand.ts @@ -82,6 +82,7 @@ export interface AssumeFleetRoleForReadCommandOutput extends AssumeFleetRoleForR * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class AssumeFleetRoleForReadCommand extends $Command diff --git a/clients/client-deadline/src/commands/AssumeFleetRoleForWorkerCommand.ts b/clients/client-deadline/src/commands/AssumeFleetRoleForWorkerCommand.ts index 87679d9eb5180..5f8150f186652 100644 --- a/clients/client-deadline/src/commands/AssumeFleetRoleForWorkerCommand.ts +++ b/clients/client-deadline/src/commands/AssumeFleetRoleForWorkerCommand.ts @@ -86,6 +86,7 @@ export interface AssumeFleetRoleForWorkerCommandOutput extends AssumeFleetRoleFo * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class AssumeFleetRoleForWorkerCommand extends $Command diff --git a/clients/client-deadline/src/commands/AssumeQueueRoleForReadCommand.ts b/clients/client-deadline/src/commands/AssumeQueueRoleForReadCommand.ts index 97875f4c76e10..274aa27d565f5 100644 --- a/clients/client-deadline/src/commands/AssumeQueueRoleForReadCommand.ts +++ b/clients/client-deadline/src/commands/AssumeQueueRoleForReadCommand.ts @@ -82,6 +82,7 @@ export interface AssumeQueueRoleForReadCommandOutput extends AssumeQueueRoleForR * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class AssumeQueueRoleForReadCommand extends $Command diff --git a/clients/client-deadline/src/commands/AssumeQueueRoleForUserCommand.ts b/clients/client-deadline/src/commands/AssumeQueueRoleForUserCommand.ts index cf89aa58d27b5..57d40bae57ebd 100644 --- a/clients/client-deadline/src/commands/AssumeQueueRoleForUserCommand.ts +++ b/clients/client-deadline/src/commands/AssumeQueueRoleForUserCommand.ts @@ -81,6 +81,7 @@ export interface AssumeQueueRoleForUserCommandOutput extends AssumeQueueRoleForU * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class AssumeQueueRoleForUserCommand extends $Command diff --git a/clients/client-deadline/src/commands/AssumeQueueRoleForWorkerCommand.ts b/clients/client-deadline/src/commands/AssumeQueueRoleForWorkerCommand.ts index 79ef8aabf34e1..7bc566a162811 100644 --- a/clients/client-deadline/src/commands/AssumeQueueRoleForWorkerCommand.ts +++ b/clients/client-deadline/src/commands/AssumeQueueRoleForWorkerCommand.ts @@ -87,6 +87,7 @@ export interface AssumeQueueRoleForWorkerCommandOutput extends AssumeQueueRoleFo * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class AssumeQueueRoleForWorkerCommand extends $Command diff --git a/clients/client-deadline/src/commands/BatchGetJobEntityCommand.ts b/clients/client-deadline/src/commands/BatchGetJobEntityCommand.ts index 6284e4cef4e4d..a10477ce57f9a 100644 --- a/clients/client-deadline/src/commands/BatchGetJobEntityCommand.ts +++ b/clients/client-deadline/src/commands/BatchGetJobEntityCommand.ts @@ -193,6 +193,7 @@ export interface BatchGetJobEntityCommandOutput extends BatchGetJobEntityRespons * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class BatchGetJobEntityCommand extends $Command diff --git a/clients/client-deadline/src/commands/CopyJobTemplateCommand.ts b/clients/client-deadline/src/commands/CopyJobTemplateCommand.ts index e331f2ec2ae26..0511bd2f1d601 100644 --- a/clients/client-deadline/src/commands/CopyJobTemplateCommand.ts +++ b/clients/client-deadline/src/commands/CopyJobTemplateCommand.ts @@ -77,6 +77,7 @@ export interface CopyJobTemplateCommandOutput extends CopyJobTemplateResponse, _ * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class CopyJobTemplateCommand extends $Command diff --git a/clients/client-deadline/src/commands/CreateBudgetCommand.ts b/clients/client-deadline/src/commands/CreateBudgetCommand.ts index d373c0d816e50..79bdbf5184627 100644 --- a/clients/client-deadline/src/commands/CreateBudgetCommand.ts +++ b/clients/client-deadline/src/commands/CreateBudgetCommand.ts @@ -95,6 +95,7 @@ export interface CreateBudgetCommandOutput extends CreateBudgetResponse, __Metad * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class CreateBudgetCommand extends $Command diff --git a/clients/client-deadline/src/commands/CreateFarmCommand.ts b/clients/client-deadline/src/commands/CreateFarmCommand.ts index e3bcbb32bf5f5..dad940605b3b1 100644 --- a/clients/client-deadline/src/commands/CreateFarmCommand.ts +++ b/clients/client-deadline/src/commands/CreateFarmCommand.ts @@ -84,6 +84,7 @@ export interface CreateFarmCommandOutput extends CreateFarmResponse, __MetadataB * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class CreateFarmCommand extends $Command diff --git a/clients/client-deadline/src/commands/CreateFleetCommand.ts b/clients/client-deadline/src/commands/CreateFleetCommand.ts index f337ded73a200..da0ff65214403 100644 --- a/clients/client-deadline/src/commands/CreateFleetCommand.ts +++ b/clients/client-deadline/src/commands/CreateFleetCommand.ts @@ -185,6 +185,7 @@ export interface CreateFleetCommandOutput extends CreateFleetResponse, __Metadat * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class CreateFleetCommand extends $Command diff --git a/clients/client-deadline/src/commands/CreateJobCommand.ts b/clients/client-deadline/src/commands/CreateJobCommand.ts index 8b8f481307dd1..432ea3eaca4e7 100644 --- a/clients/client-deadline/src/commands/CreateJobCommand.ts +++ b/clients/client-deadline/src/commands/CreateJobCommand.ts @@ -111,6 +111,7 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class CreateJobCommand extends $Command diff --git a/clients/client-deadline/src/commands/CreateLicenseEndpointCommand.ts b/clients/client-deadline/src/commands/CreateLicenseEndpointCommand.ts index 01e3ec00f39f7..76dddfea98540 100644 --- a/clients/client-deadline/src/commands/CreateLicenseEndpointCommand.ts +++ b/clients/client-deadline/src/commands/CreateLicenseEndpointCommand.ts @@ -87,6 +87,7 @@ export interface CreateLicenseEndpointCommandOutput extends CreateLicenseEndpoin * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class CreateLicenseEndpointCommand extends $Command diff --git a/clients/client-deadline/src/commands/CreateLimitCommand.ts b/clients/client-deadline/src/commands/CreateLimitCommand.ts index 061aa4a2e4679..80d76cac01272 100644 --- a/clients/client-deadline/src/commands/CreateLimitCommand.ts +++ b/clients/client-deadline/src/commands/CreateLimitCommand.ts @@ -84,6 +84,7 @@ export interface CreateLimitCommandOutput extends CreateLimitResponse, __Metadat * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class CreateLimitCommand extends $Command diff --git a/clients/client-deadline/src/commands/CreateMonitorCommand.ts b/clients/client-deadline/src/commands/CreateMonitorCommand.ts index 4b18d9edbd0d5..8a1c864672840 100644 --- a/clients/client-deadline/src/commands/CreateMonitorCommand.ts +++ b/clients/client-deadline/src/commands/CreateMonitorCommand.ts @@ -79,6 +79,7 @@ export interface CreateMonitorCommandOutput extends CreateMonitorResponse, __Met * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class CreateMonitorCommand extends $Command diff --git a/clients/client-deadline/src/commands/CreateQueueCommand.ts b/clients/client-deadline/src/commands/CreateQueueCommand.ts index da6bc478b233a..fae41e8d6276c 100644 --- a/clients/client-deadline/src/commands/CreateQueueCommand.ts +++ b/clients/client-deadline/src/commands/CreateQueueCommand.ts @@ -105,6 +105,7 @@ export interface CreateQueueCommandOutput extends CreateQueueResponse, __Metadat * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class CreateQueueCommand extends $Command diff --git a/clients/client-deadline/src/commands/CreateQueueEnvironmentCommand.ts b/clients/client-deadline/src/commands/CreateQueueEnvironmentCommand.ts index c891b666678cc..9b944c21130a8 100644 --- a/clients/client-deadline/src/commands/CreateQueueEnvironmentCommand.ts +++ b/clients/client-deadline/src/commands/CreateQueueEnvironmentCommand.ts @@ -84,6 +84,7 @@ export interface CreateQueueEnvironmentCommandOutput extends CreateQueueEnvironm * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class CreateQueueEnvironmentCommand extends $Command diff --git a/clients/client-deadline/src/commands/CreateQueueFleetAssociationCommand.ts b/clients/client-deadline/src/commands/CreateQueueFleetAssociationCommand.ts index 5fac43ac2bd65..bd3c2cd634b04 100644 --- a/clients/client-deadline/src/commands/CreateQueueFleetAssociationCommand.ts +++ b/clients/client-deadline/src/commands/CreateQueueFleetAssociationCommand.ts @@ -76,6 +76,7 @@ export interface CreateQueueFleetAssociationCommandOutput * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class CreateQueueFleetAssociationCommand extends $Command diff --git a/clients/client-deadline/src/commands/CreateQueueLimitAssociationCommand.ts b/clients/client-deadline/src/commands/CreateQueueLimitAssociationCommand.ts index a0d36b666007f..b2849f44410cc 100644 --- a/clients/client-deadline/src/commands/CreateQueueLimitAssociationCommand.ts +++ b/clients/client-deadline/src/commands/CreateQueueLimitAssociationCommand.ts @@ -79,6 +79,7 @@ export interface CreateQueueLimitAssociationCommandOutput * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class CreateQueueLimitAssociationCommand extends $Command diff --git a/clients/client-deadline/src/commands/CreateStorageProfileCommand.ts b/clients/client-deadline/src/commands/CreateStorageProfileCommand.ts index 2e9c2b67859a6..bac391c237f1c 100644 --- a/clients/client-deadline/src/commands/CreateStorageProfileCommand.ts +++ b/clients/client-deadline/src/commands/CreateStorageProfileCommand.ts @@ -90,6 +90,7 @@ export interface CreateStorageProfileCommandOutput extends CreateStorageProfileR * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class CreateStorageProfileCommand extends $Command diff --git a/clients/client-deadline/src/commands/CreateWorkerCommand.ts b/clients/client-deadline/src/commands/CreateWorkerCommand.ts index 571b86854c7c3..933cb00a880f2 100644 --- a/clients/client-deadline/src/commands/CreateWorkerCommand.ts +++ b/clients/client-deadline/src/commands/CreateWorkerCommand.ts @@ -91,6 +91,7 @@ export interface CreateWorkerCommandOutput extends CreateWorkerResponse, __Metad * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class CreateWorkerCommand extends $Command diff --git a/clients/client-deadline/src/commands/DeleteBudgetCommand.ts b/clients/client-deadline/src/commands/DeleteBudgetCommand.ts index 906dae10063ad..a8ecfd56bd4d8 100644 --- a/clients/client-deadline/src/commands/DeleteBudgetCommand.ts +++ b/clients/client-deadline/src/commands/DeleteBudgetCommand.ts @@ -70,6 +70,7 @@ export interface DeleteBudgetCommandOutput extends DeleteBudgetResponse, __Metad * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DeleteBudgetCommand extends $Command diff --git a/clients/client-deadline/src/commands/DeleteFarmCommand.ts b/clients/client-deadline/src/commands/DeleteFarmCommand.ts index 2c2f8422e7d94..4333421cdf572 100644 --- a/clients/client-deadline/src/commands/DeleteFarmCommand.ts +++ b/clients/client-deadline/src/commands/DeleteFarmCommand.ts @@ -69,6 +69,7 @@ export interface DeleteFarmCommandOutput extends DeleteFarmResponse, __MetadataB * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DeleteFarmCommand extends $Command diff --git a/clients/client-deadline/src/commands/DeleteFleetCommand.ts b/clients/client-deadline/src/commands/DeleteFleetCommand.ts index f6bfa0f1dfde0..0f2f6adb3d4cc 100644 --- a/clients/client-deadline/src/commands/DeleteFleetCommand.ts +++ b/clients/client-deadline/src/commands/DeleteFleetCommand.ts @@ -75,6 +75,7 @@ export interface DeleteFleetCommandOutput extends DeleteFleetResponse, __Metadat * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DeleteFleetCommand extends $Command diff --git a/clients/client-deadline/src/commands/DeleteLicenseEndpointCommand.ts b/clients/client-deadline/src/commands/DeleteLicenseEndpointCommand.ts index 0213ec2d3ccf0..713ee424daf4e 100644 --- a/clients/client-deadline/src/commands/DeleteLicenseEndpointCommand.ts +++ b/clients/client-deadline/src/commands/DeleteLicenseEndpointCommand.ts @@ -73,6 +73,7 @@ export interface DeleteLicenseEndpointCommandOutput extends DeleteLicenseEndpoin * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DeleteLicenseEndpointCommand extends $Command diff --git a/clients/client-deadline/src/commands/DeleteLimitCommand.ts b/clients/client-deadline/src/commands/DeleteLimitCommand.ts index 8c308438a69bc..62abe170664e5 100644 --- a/clients/client-deadline/src/commands/DeleteLimitCommand.ts +++ b/clients/client-deadline/src/commands/DeleteLimitCommand.ts @@ -69,6 +69,7 @@ export interface DeleteLimitCommandOutput extends DeleteLimitResponse, __Metadat * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DeleteLimitCommand extends $Command diff --git a/clients/client-deadline/src/commands/DeleteMeteredProductCommand.ts b/clients/client-deadline/src/commands/DeleteMeteredProductCommand.ts index 7c781e91d53c7..276f5336436d7 100644 --- a/clients/client-deadline/src/commands/DeleteMeteredProductCommand.ts +++ b/clients/client-deadline/src/commands/DeleteMeteredProductCommand.ts @@ -70,6 +70,7 @@ export interface DeleteMeteredProductCommandOutput extends DeleteMeteredProductR * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DeleteMeteredProductCommand extends $Command diff --git a/clients/client-deadline/src/commands/DeleteMonitorCommand.ts b/clients/client-deadline/src/commands/DeleteMonitorCommand.ts index 00697a7e0c8d8..9c95abbd8d61b 100644 --- a/clients/client-deadline/src/commands/DeleteMonitorCommand.ts +++ b/clients/client-deadline/src/commands/DeleteMonitorCommand.ts @@ -70,6 +70,7 @@ export interface DeleteMonitorCommandOutput extends DeleteMonitorResponse, __Met * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DeleteMonitorCommand extends $Command diff --git a/clients/client-deadline/src/commands/DeleteQueueCommand.ts b/clients/client-deadline/src/commands/DeleteQueueCommand.ts index cbbb831e13bd6..34fe0d281bd20 100644 --- a/clients/client-deadline/src/commands/DeleteQueueCommand.ts +++ b/clients/client-deadline/src/commands/DeleteQueueCommand.ts @@ -78,6 +78,7 @@ export interface DeleteQueueCommandOutput extends DeleteQueueResponse, __Metadat * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DeleteQueueCommand extends $Command diff --git a/clients/client-deadline/src/commands/DeleteQueueEnvironmentCommand.ts b/clients/client-deadline/src/commands/DeleteQueueEnvironmentCommand.ts index 631b5613efa78..23c75d02c0fbf 100644 --- a/clients/client-deadline/src/commands/DeleteQueueEnvironmentCommand.ts +++ b/clients/client-deadline/src/commands/DeleteQueueEnvironmentCommand.ts @@ -68,6 +68,7 @@ export interface DeleteQueueEnvironmentCommandOutput extends DeleteQueueEnvironm * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DeleteQueueEnvironmentCommand extends $Command diff --git a/clients/client-deadline/src/commands/DeleteQueueFleetAssociationCommand.ts b/clients/client-deadline/src/commands/DeleteQueueFleetAssociationCommand.ts index 045d189f240b2..a0a23145a72bf 100644 --- a/clients/client-deadline/src/commands/DeleteQueueFleetAssociationCommand.ts +++ b/clients/client-deadline/src/commands/DeleteQueueFleetAssociationCommand.ts @@ -80,6 +80,7 @@ export interface DeleteQueueFleetAssociationCommandOutput * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DeleteQueueFleetAssociationCommand extends $Command diff --git a/clients/client-deadline/src/commands/DeleteQueueLimitAssociationCommand.ts b/clients/client-deadline/src/commands/DeleteQueueLimitAssociationCommand.ts index a1c2bc416d9fd..56c9461a63354 100644 --- a/clients/client-deadline/src/commands/DeleteQueueLimitAssociationCommand.ts +++ b/clients/client-deadline/src/commands/DeleteQueueLimitAssociationCommand.ts @@ -85,6 +85,7 @@ export interface DeleteQueueLimitAssociationCommandOutput * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DeleteQueueLimitAssociationCommand extends $Command diff --git a/clients/client-deadline/src/commands/DeleteStorageProfileCommand.ts b/clients/client-deadline/src/commands/DeleteStorageProfileCommand.ts index a01e77bb0508c..df69b09d5956e 100644 --- a/clients/client-deadline/src/commands/DeleteStorageProfileCommand.ts +++ b/clients/client-deadline/src/commands/DeleteStorageProfileCommand.ts @@ -67,6 +67,7 @@ export interface DeleteStorageProfileCommandOutput extends DeleteStorageProfileR * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DeleteStorageProfileCommand extends $Command diff --git a/clients/client-deadline/src/commands/DeleteWorkerCommand.ts b/clients/client-deadline/src/commands/DeleteWorkerCommand.ts index 841a1093237c0..3f1772d86783e 100644 --- a/clients/client-deadline/src/commands/DeleteWorkerCommand.ts +++ b/clients/client-deadline/src/commands/DeleteWorkerCommand.ts @@ -75,6 +75,7 @@ export interface DeleteWorkerCommandOutput extends DeleteWorkerResponse, __Metad * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DeleteWorkerCommand extends $Command diff --git a/clients/client-deadline/src/commands/DisassociateMemberFromFarmCommand.ts b/clients/client-deadline/src/commands/DisassociateMemberFromFarmCommand.ts index cd07f537a7e89..a03e8063bc45b 100644 --- a/clients/client-deadline/src/commands/DisassociateMemberFromFarmCommand.ts +++ b/clients/client-deadline/src/commands/DisassociateMemberFromFarmCommand.ts @@ -70,6 +70,7 @@ export interface DisassociateMemberFromFarmCommandOutput extends DisassociateMem * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DisassociateMemberFromFarmCommand extends $Command diff --git a/clients/client-deadline/src/commands/DisassociateMemberFromFleetCommand.ts b/clients/client-deadline/src/commands/DisassociateMemberFromFleetCommand.ts index 20d1c0ade14c2..a341e7ff62e3b 100644 --- a/clients/client-deadline/src/commands/DisassociateMemberFromFleetCommand.ts +++ b/clients/client-deadline/src/commands/DisassociateMemberFromFleetCommand.ts @@ -80,6 +80,7 @@ export interface DisassociateMemberFromFleetCommandOutput * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DisassociateMemberFromFleetCommand extends $Command diff --git a/clients/client-deadline/src/commands/DisassociateMemberFromJobCommand.ts b/clients/client-deadline/src/commands/DisassociateMemberFromJobCommand.ts index e1913d2a4ccba..2d12d9b3d3b96 100644 --- a/clients/client-deadline/src/commands/DisassociateMemberFromJobCommand.ts +++ b/clients/client-deadline/src/commands/DisassociateMemberFromJobCommand.ts @@ -72,6 +72,7 @@ export interface DisassociateMemberFromJobCommandOutput extends DisassociateMemb * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DisassociateMemberFromJobCommand extends $Command diff --git a/clients/client-deadline/src/commands/DisassociateMemberFromQueueCommand.ts b/clients/client-deadline/src/commands/DisassociateMemberFromQueueCommand.ts index 3cc9b87372d98..76f6b303d576a 100644 --- a/clients/client-deadline/src/commands/DisassociateMemberFromQueueCommand.ts +++ b/clients/client-deadline/src/commands/DisassociateMemberFromQueueCommand.ts @@ -80,6 +80,7 @@ export interface DisassociateMemberFromQueueCommandOutput * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class DisassociateMemberFromQueueCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetBudgetCommand.ts b/clients/client-deadline/src/commands/GetBudgetCommand.ts index c9a91b41ed77d..449f29b99c757 100644 --- a/clients/client-deadline/src/commands/GetBudgetCommand.ts +++ b/clients/client-deadline/src/commands/GetBudgetCommand.ts @@ -100,6 +100,7 @@ export interface GetBudgetCommandOutput extends GetBudgetResponse, __MetadataBea * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetBudgetCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetFarmCommand.ts b/clients/client-deadline/src/commands/GetFarmCommand.ts index e2a112d064e54..1ea243fb109e2 100644 --- a/clients/client-deadline/src/commands/GetFarmCommand.ts +++ b/clients/client-deadline/src/commands/GetFarmCommand.ts @@ -78,6 +78,7 @@ export interface GetFarmCommandOutput extends GetFarmResponse, __MetadataBearer * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetFarmCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetFleetCommand.ts b/clients/client-deadline/src/commands/GetFleetCommand.ts index 29d9591fde1e2..a7f156991793a 100644 --- a/clients/client-deadline/src/commands/GetFleetCommand.ts +++ b/clients/client-deadline/src/commands/GetFleetCommand.ts @@ -202,6 +202,7 @@ export interface GetFleetCommandOutput extends GetFleetResponse, __MetadataBeare * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetFleetCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetJobCommand.ts b/clients/client-deadline/src/commands/GetJobCommand.ts index e3877b3c4d380..b5edb558fff63 100644 --- a/clients/client-deadline/src/commands/GetJobCommand.ts +++ b/clients/client-deadline/src/commands/GetJobCommand.ts @@ -117,6 +117,7 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {} * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetJobCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetLicenseEndpointCommand.ts b/clients/client-deadline/src/commands/GetLicenseEndpointCommand.ts index 91e84d6ea01d7..2c554e06c24bd 100644 --- a/clients/client-deadline/src/commands/GetLicenseEndpointCommand.ts +++ b/clients/client-deadline/src/commands/GetLicenseEndpointCommand.ts @@ -81,6 +81,7 @@ export interface GetLicenseEndpointCommandOutput extends GetLicenseEndpointRespo * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetLicenseEndpointCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetLimitCommand.ts b/clients/client-deadline/src/commands/GetLimitCommand.ts index 7f89782f02d72..fb9a00d59d7d1 100644 --- a/clients/client-deadline/src/commands/GetLimitCommand.ts +++ b/clients/client-deadline/src/commands/GetLimitCommand.ts @@ -82,6 +82,7 @@ export interface GetLimitCommandOutput extends GetLimitResponse, __MetadataBeare * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetLimitCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetMonitorCommand.ts b/clients/client-deadline/src/commands/GetMonitorCommand.ts index 3bb10824b7fbf..2f7c21f0e72fc 100644 --- a/clients/client-deadline/src/commands/GetMonitorCommand.ts +++ b/clients/client-deadline/src/commands/GetMonitorCommand.ts @@ -81,6 +81,7 @@ export interface GetMonitorCommandOutput extends GetMonitorResponse, __MetadataB * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetMonitorCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetQueueCommand.ts b/clients/client-deadline/src/commands/GetQueueCommand.ts index 6b09500907d80..d63489364c35a 100644 --- a/clients/client-deadline/src/commands/GetQueueCommand.ts +++ b/clients/client-deadline/src/commands/GetQueueCommand.ts @@ -104,6 +104,7 @@ export interface GetQueueCommandOutput extends GetQueueResponse, __MetadataBeare * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetQueueCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetQueueEnvironmentCommand.ts b/clients/client-deadline/src/commands/GetQueueEnvironmentCommand.ts index 129c9910c62e3..3e771b0427520 100644 --- a/clients/client-deadline/src/commands/GetQueueEnvironmentCommand.ts +++ b/clients/client-deadline/src/commands/GetQueueEnvironmentCommand.ts @@ -85,6 +85,7 @@ export interface GetQueueEnvironmentCommandOutput extends GetQueueEnvironmentRes * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetQueueEnvironmentCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetQueueFleetAssociationCommand.ts b/clients/client-deadline/src/commands/GetQueueFleetAssociationCommand.ts index 98ef7c50c1706..6191951f7a352 100644 --- a/clients/client-deadline/src/commands/GetQueueFleetAssociationCommand.ts +++ b/clients/client-deadline/src/commands/GetQueueFleetAssociationCommand.ts @@ -79,6 +79,7 @@ export interface GetQueueFleetAssociationCommandOutput extends GetQueueFleetAsso * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetQueueFleetAssociationCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetQueueLimitAssociationCommand.ts b/clients/client-deadline/src/commands/GetQueueLimitAssociationCommand.ts index 254ad6e5f73b0..1bf70d749d6aa 100644 --- a/clients/client-deadline/src/commands/GetQueueLimitAssociationCommand.ts +++ b/clients/client-deadline/src/commands/GetQueueLimitAssociationCommand.ts @@ -79,6 +79,7 @@ export interface GetQueueLimitAssociationCommandOutput extends GetQueueLimitAsso * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetQueueLimitAssociationCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetSessionActionCommand.ts b/clients/client-deadline/src/commands/GetSessionActionCommand.ts index ce1d2b5218f9d..0d9adcb04fdbc 100644 --- a/clients/client-deadline/src/commands/GetSessionActionCommand.ts +++ b/clients/client-deadline/src/commands/GetSessionActionCommand.ts @@ -115,6 +115,7 @@ export interface GetSessionActionCommandOutput extends GetSessionActionResponse, * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetSessionActionCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetSessionCommand.ts b/clients/client-deadline/src/commands/GetSessionCommand.ts index cb4632d323e2d..523d3359382f2 100644 --- a/clients/client-deadline/src/commands/GetSessionCommand.ts +++ b/clients/client-deadline/src/commands/GetSessionCommand.ts @@ -115,6 +115,7 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetSessionCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetSessionsStatisticsAggregationCommand.ts b/clients/client-deadline/src/commands/GetSessionsStatisticsAggregationCommand.ts index 3e0d63449ccbb..53b8ea9896949 100644 --- a/clients/client-deadline/src/commands/GetSessionsStatisticsAggregationCommand.ts +++ b/clients/client-deadline/src/commands/GetSessionsStatisticsAggregationCommand.ts @@ -111,6 +111,7 @@ export interface GetSessionsStatisticsAggregationCommandOutput * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetSessionsStatisticsAggregationCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetStepCommand.ts b/clients/client-deadline/src/commands/GetStepCommand.ts index bff9ba17b87c4..604881f9ced35 100644 --- a/clients/client-deadline/src/commands/GetStepCommand.ts +++ b/clients/client-deadline/src/commands/GetStepCommand.ts @@ -125,6 +125,7 @@ export interface GetStepCommandOutput extends GetStepResponse, __MetadataBearer * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetStepCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetStorageProfileCommand.ts b/clients/client-deadline/src/commands/GetStorageProfileCommand.ts index 556feaa3f3784..1adf2f1f433b3 100644 --- a/clients/client-deadline/src/commands/GetStorageProfileCommand.ts +++ b/clients/client-deadline/src/commands/GetStorageProfileCommand.ts @@ -89,6 +89,7 @@ export interface GetStorageProfileCommandOutput extends GetStorageProfileRespons * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetStorageProfileCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetStorageProfileForQueueCommand.ts b/clients/client-deadline/src/commands/GetStorageProfileForQueueCommand.ts index ae34788c8505f..2fd3b082e12df 100644 --- a/clients/client-deadline/src/commands/GetStorageProfileForQueueCommand.ts +++ b/clients/client-deadline/src/commands/GetStorageProfileForQueueCommand.ts @@ -86,6 +86,7 @@ export interface GetStorageProfileForQueueCommandOutput extends GetStorageProfil * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetStorageProfileForQueueCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetTaskCommand.ts b/clients/client-deadline/src/commands/GetTaskCommand.ts index b562913e5ebbd..2a5bf7cd55286 100644 --- a/clients/client-deadline/src/commands/GetTaskCommand.ts +++ b/clients/client-deadline/src/commands/GetTaskCommand.ts @@ -93,6 +93,7 @@ export interface GetTaskCommandOutput extends GetTaskResponse, __MetadataBearer * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetTaskCommand extends $Command diff --git a/clients/client-deadline/src/commands/GetWorkerCommand.ts b/clients/client-deadline/src/commands/GetWorkerCommand.ts index 27296e2556e96..9ee640c2a6cd9 100644 --- a/clients/client-deadline/src/commands/GetWorkerCommand.ts +++ b/clients/client-deadline/src/commands/GetWorkerCommand.ts @@ -103,6 +103,7 @@ export interface GetWorkerCommandOutput extends GetWorkerResponse, __MetadataBea * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class GetWorkerCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListAvailableMeteredProductsCommand.ts b/clients/client-deadline/src/commands/ListAvailableMeteredProductsCommand.ts index 8907d248aa651..aa5af1c89f922 100644 --- a/clients/client-deadline/src/commands/ListAvailableMeteredProductsCommand.ts +++ b/clients/client-deadline/src/commands/ListAvailableMeteredProductsCommand.ts @@ -75,6 +75,7 @@ export interface ListAvailableMeteredProductsCommandOutput * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListAvailableMeteredProductsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListBudgetsCommand.ts b/clients/client-deadline/src/commands/ListBudgetsCommand.ts index 0445fe445e61e..54be4b16f7e12 100644 --- a/clients/client-deadline/src/commands/ListBudgetsCommand.ts +++ b/clients/client-deadline/src/commands/ListBudgetsCommand.ts @@ -93,6 +93,7 @@ export interface ListBudgetsCommandOutput extends ListBudgetsResponse, __Metadat * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListBudgetsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListFarmMembersCommand.ts b/clients/client-deadline/src/commands/ListFarmMembersCommand.ts index a1435d694e090..b8efb3aa86eb0 100644 --- a/clients/client-deadline/src/commands/ListFarmMembersCommand.ts +++ b/clients/client-deadline/src/commands/ListFarmMembersCommand.ts @@ -82,6 +82,7 @@ export interface ListFarmMembersCommandOutput extends ListFarmMembersResponse, _ * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListFarmMembersCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListFarmsCommand.ts b/clients/client-deadline/src/commands/ListFarmsCommand.ts index db49287eb134c..8b938f6f7abc0 100644 --- a/clients/client-deadline/src/commands/ListFarmsCommand.ts +++ b/clients/client-deadline/src/commands/ListFarmsCommand.ts @@ -81,6 +81,7 @@ export interface ListFarmsCommandOutput extends ListFarmsResponse, __MetadataBea * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListFarmsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListFleetMembersCommand.ts b/clients/client-deadline/src/commands/ListFleetMembersCommand.ts index 8aaa70606cc5b..24f3dd5920dd6 100644 --- a/clients/client-deadline/src/commands/ListFleetMembersCommand.ts +++ b/clients/client-deadline/src/commands/ListFleetMembersCommand.ts @@ -84,6 +84,7 @@ export interface ListFleetMembersCommandOutput extends ListFleetMembersResponse, * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListFleetMembersCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListFleetsCommand.ts b/clients/client-deadline/src/commands/ListFleetsCommand.ts index e17c82191bad2..70c240b58abf3 100644 --- a/clients/client-deadline/src/commands/ListFleetsCommand.ts +++ b/clients/client-deadline/src/commands/ListFleetsCommand.ts @@ -192,6 +192,7 @@ export interface ListFleetsCommandOutput extends ListFleetsResponse, __MetadataB * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListFleetsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListJobMembersCommand.ts b/clients/client-deadline/src/commands/ListJobMembersCommand.ts index 864caa67442e1..eed34c1c01aaa 100644 --- a/clients/client-deadline/src/commands/ListJobMembersCommand.ts +++ b/clients/client-deadline/src/commands/ListJobMembersCommand.ts @@ -86,6 +86,7 @@ export interface ListJobMembersCommandOutput extends ListJobMembersResponse, __M * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListJobMembersCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListJobParameterDefinitionsCommand.ts b/clients/client-deadline/src/commands/ListJobParameterDefinitionsCommand.ts index b5c56f340c056..82d0dbe75e6bd 100644 --- a/clients/client-deadline/src/commands/ListJobParameterDefinitionsCommand.ts +++ b/clients/client-deadline/src/commands/ListJobParameterDefinitionsCommand.ts @@ -83,6 +83,7 @@ export interface ListJobParameterDefinitionsCommandOutput * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListJobParameterDefinitionsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListJobsCommand.ts b/clients/client-deadline/src/commands/ListJobsCommand.ts index efbb818a220b4..d89ae3189a751 100644 --- a/clients/client-deadline/src/commands/ListJobsCommand.ts +++ b/clients/client-deadline/src/commands/ListJobsCommand.ts @@ -99,6 +99,7 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListJobsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListLicenseEndpointsCommand.ts b/clients/client-deadline/src/commands/ListLicenseEndpointsCommand.ts index 79b213f2f9184..f71e177e97852 100644 --- a/clients/client-deadline/src/commands/ListLicenseEndpointsCommand.ts +++ b/clients/client-deadline/src/commands/ListLicenseEndpointsCommand.ts @@ -80,6 +80,7 @@ export interface ListLicenseEndpointsCommandOutput extends ListLicenseEndpointsR * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListLicenseEndpointsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListLimitsCommand.ts b/clients/client-deadline/src/commands/ListLimitsCommand.ts index 74d7e35b15310..601fd5e1ee29c 100644 --- a/clients/client-deadline/src/commands/ListLimitsCommand.ts +++ b/clients/client-deadline/src/commands/ListLimitsCommand.ts @@ -87,6 +87,7 @@ export interface ListLimitsCommandOutput extends ListLimitsResponse, __MetadataB * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListLimitsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListMeteredProductsCommand.ts b/clients/client-deadline/src/commands/ListMeteredProductsCommand.ts index d72310b2c04ca..d9b8805ff5c3d 100644 --- a/clients/client-deadline/src/commands/ListMeteredProductsCommand.ts +++ b/clients/client-deadline/src/commands/ListMeteredProductsCommand.ts @@ -81,6 +81,7 @@ export interface ListMeteredProductsCommandOutput extends ListMeteredProductsRes * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListMeteredProductsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListMonitorsCommand.ts b/clients/client-deadline/src/commands/ListMonitorsCommand.ts index d87cdc2373be9..aecdd5aa3f270 100644 --- a/clients/client-deadline/src/commands/ListMonitorsCommand.ts +++ b/clients/client-deadline/src/commands/ListMonitorsCommand.ts @@ -84,6 +84,7 @@ export interface ListMonitorsCommandOutput extends ListMonitorsResponse, __Metad * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListMonitorsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListQueueEnvironmentsCommand.ts b/clients/client-deadline/src/commands/ListQueueEnvironmentsCommand.ts index f2a4e774c387d..33422b2d83576 100644 --- a/clients/client-deadline/src/commands/ListQueueEnvironmentsCommand.ts +++ b/clients/client-deadline/src/commands/ListQueueEnvironmentsCommand.ts @@ -81,6 +81,7 @@ export interface ListQueueEnvironmentsCommandOutput extends ListQueueEnvironment * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListQueueEnvironmentsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListQueueFleetAssociationsCommand.ts b/clients/client-deadline/src/commands/ListQueueFleetAssociationsCommand.ts index 3a181d5f832a9..c46eec0fb787e 100644 --- a/clients/client-deadline/src/commands/ListQueueFleetAssociationsCommand.ts +++ b/clients/client-deadline/src/commands/ListQueueFleetAssociationsCommand.ts @@ -82,6 +82,7 @@ export interface ListQueueFleetAssociationsCommandOutput extends ListQueueFleetA * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListQueueFleetAssociationsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListQueueLimitAssociationsCommand.ts b/clients/client-deadline/src/commands/ListQueueLimitAssociationsCommand.ts index effcd0af6a5e1..fe55ff4878a56 100644 --- a/clients/client-deadline/src/commands/ListQueueLimitAssociationsCommand.ts +++ b/clients/client-deadline/src/commands/ListQueueLimitAssociationsCommand.ts @@ -82,6 +82,7 @@ export interface ListQueueLimitAssociationsCommandOutput extends ListQueueLimitA * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListQueueLimitAssociationsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListQueueMembersCommand.ts b/clients/client-deadline/src/commands/ListQueueMembersCommand.ts index 77e5d5387f3fe..4c98629ad4b2d 100644 --- a/clients/client-deadline/src/commands/ListQueueMembersCommand.ts +++ b/clients/client-deadline/src/commands/ListQueueMembersCommand.ts @@ -84,6 +84,7 @@ export interface ListQueueMembersCommandOutput extends ListQueueMembersResponse, * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListQueueMembersCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListQueuesCommand.ts b/clients/client-deadline/src/commands/ListQueuesCommand.ts index 5086218d2120a..73186e6ef6137 100644 --- a/clients/client-deadline/src/commands/ListQueuesCommand.ts +++ b/clients/client-deadline/src/commands/ListQueuesCommand.ts @@ -89,6 +89,7 @@ export interface ListQueuesCommandOutput extends ListQueuesResponse, __MetadataB * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListQueuesCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListSessionActionsCommand.ts b/clients/client-deadline/src/commands/ListSessionActionsCommand.ts index 49e5f1f2373b4..0c1ffa4d756ba 100644 --- a/clients/client-deadline/src/commands/ListSessionActionsCommand.ts +++ b/clients/client-deadline/src/commands/ListSessionActionsCommand.ts @@ -102,6 +102,7 @@ export interface ListSessionActionsCommandOutput extends ListSessionActionsRespo * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListSessionActionsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListSessionsCommand.ts b/clients/client-deadline/src/commands/ListSessionsCommand.ts index 1833740ed03fe..77160db842432 100644 --- a/clients/client-deadline/src/commands/ListSessionsCommand.ts +++ b/clients/client-deadline/src/commands/ListSessionsCommand.ts @@ -88,6 +88,7 @@ export interface ListSessionsCommandOutput extends ListSessionsResponse, __Metad * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListSessionsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListSessionsForWorkerCommand.ts b/clients/client-deadline/src/commands/ListSessionsForWorkerCommand.ts index c15ddcc30f0b6..a9676d4340b07 100644 --- a/clients/client-deadline/src/commands/ListSessionsForWorkerCommand.ts +++ b/clients/client-deadline/src/commands/ListSessionsForWorkerCommand.ts @@ -86,6 +86,7 @@ export interface ListSessionsForWorkerCommandOutput extends ListSessionsForWorke * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListSessionsForWorkerCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListStepConsumersCommand.ts b/clients/client-deadline/src/commands/ListStepConsumersCommand.ts index 30b6b5b8a8d08..2edb26610524e 100644 --- a/clients/client-deadline/src/commands/ListStepConsumersCommand.ts +++ b/clients/client-deadline/src/commands/ListStepConsumersCommand.ts @@ -82,6 +82,7 @@ export interface ListStepConsumersCommandOutput extends ListStepConsumersRespons * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListStepConsumersCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListStepDependenciesCommand.ts b/clients/client-deadline/src/commands/ListStepDependenciesCommand.ts index d8f59884897e2..4745d2a6009a4 100644 --- a/clients/client-deadline/src/commands/ListStepDependenciesCommand.ts +++ b/clients/client-deadline/src/commands/ListStepDependenciesCommand.ts @@ -82,6 +82,7 @@ export interface ListStepDependenciesCommandOutput extends ListStepDependenciesR * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListStepDependenciesCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListStepsCommand.ts b/clients/client-deadline/src/commands/ListStepsCommand.ts index 0ad117d397b56..bc071f494b0a4 100644 --- a/clients/client-deadline/src/commands/ListStepsCommand.ts +++ b/clients/client-deadline/src/commands/ListStepsCommand.ts @@ -100,6 +100,7 @@ export interface ListStepsCommandOutput extends ListStepsResponse, __MetadataBea * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListStepsCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListStorageProfilesCommand.ts b/clients/client-deadline/src/commands/ListStorageProfilesCommand.ts index e01b4d7aae2ad..8533974372ad5 100644 --- a/clients/client-deadline/src/commands/ListStorageProfilesCommand.ts +++ b/clients/client-deadline/src/commands/ListStorageProfilesCommand.ts @@ -80,6 +80,7 @@ export interface ListStorageProfilesCommandOutput extends ListStorageProfilesRes * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListStorageProfilesCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListStorageProfilesForQueueCommand.ts b/clients/client-deadline/src/commands/ListStorageProfilesForQueueCommand.ts index a8b1828a61eba..e4b0603fa7f1f 100644 --- a/clients/client-deadline/src/commands/ListStorageProfilesForQueueCommand.ts +++ b/clients/client-deadline/src/commands/ListStorageProfilesForQueueCommand.ts @@ -86,6 +86,7 @@ export interface ListStorageProfilesForQueueCommandOutput * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListStorageProfilesForQueueCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListTagsForResourceCommand.ts b/clients/client-deadline/src/commands/ListTagsForResourceCommand.ts index 5c3d112810626..4bb7c3e1f64b4 100644 --- a/clients/client-deadline/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-deadline/src/commands/ListTagsForResourceCommand.ts @@ -73,6 +73,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListTasksCommand.ts b/clients/client-deadline/src/commands/ListTasksCommand.ts index a8f2750851b94..54383c97d5de0 100644 --- a/clients/client-deadline/src/commands/ListTasksCommand.ts +++ b/clients/client-deadline/src/commands/ListTasksCommand.ts @@ -99,6 +99,7 @@ export interface ListTasksCommandOutput extends ListTasksResponse, __MetadataBea * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListTasksCommand extends $Command diff --git a/clients/client-deadline/src/commands/ListWorkersCommand.ts b/clients/client-deadline/src/commands/ListWorkersCommand.ts index 8e8847b6d0ae1..6ba0c25c0e652 100644 --- a/clients/client-deadline/src/commands/ListWorkersCommand.ts +++ b/clients/client-deadline/src/commands/ListWorkersCommand.ts @@ -109,6 +109,7 @@ export interface ListWorkersCommandOutput extends ListWorkersResponse, __Metadat * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class ListWorkersCommand extends $Command diff --git a/clients/client-deadline/src/commands/PutMeteredProductCommand.ts b/clients/client-deadline/src/commands/PutMeteredProductCommand.ts index c025b59ab7c9c..ac65b601eced3 100644 --- a/clients/client-deadline/src/commands/PutMeteredProductCommand.ts +++ b/clients/client-deadline/src/commands/PutMeteredProductCommand.ts @@ -70,6 +70,7 @@ export interface PutMeteredProductCommandOutput extends PutMeteredProductRespons * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class PutMeteredProductCommand extends $Command diff --git a/clients/client-deadline/src/commands/SearchJobsCommand.ts b/clients/client-deadline/src/commands/SearchJobsCommand.ts index 44e7f760a22b1..c1f2ab99359d5 100644 --- a/clients/client-deadline/src/commands/SearchJobsCommand.ts +++ b/clients/client-deadline/src/commands/SearchJobsCommand.ts @@ -174,6 +174,7 @@ export interface SearchJobsCommandOutput extends SearchJobsResponse, __MetadataB * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class SearchJobsCommand extends $Command diff --git a/clients/client-deadline/src/commands/SearchStepsCommand.ts b/clients/client-deadline/src/commands/SearchStepsCommand.ts index c526b06485e44..f6568edb46117 100644 --- a/clients/client-deadline/src/commands/SearchStepsCommand.ts +++ b/clients/client-deadline/src/commands/SearchStepsCommand.ts @@ -171,6 +171,7 @@ export interface SearchStepsCommandOutput extends SearchStepsResponse, __Metadat * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class SearchStepsCommand extends $Command diff --git a/clients/client-deadline/src/commands/SearchTasksCommand.ts b/clients/client-deadline/src/commands/SearchTasksCommand.ts index a53a27a9a977a..cd9dbc38d5e4f 100644 --- a/clients/client-deadline/src/commands/SearchTasksCommand.ts +++ b/clients/client-deadline/src/commands/SearchTasksCommand.ts @@ -165,6 +165,7 @@ export interface SearchTasksCommandOutput extends SearchTasksResponse, __Metadat * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class SearchTasksCommand extends $Command diff --git a/clients/client-deadline/src/commands/SearchWorkersCommand.ts b/clients/client-deadline/src/commands/SearchWorkersCommand.ts index 9567243375ae3..e88161cce16e4 100644 --- a/clients/client-deadline/src/commands/SearchWorkersCommand.ts +++ b/clients/client-deadline/src/commands/SearchWorkersCommand.ts @@ -167,6 +167,7 @@ export interface SearchWorkersCommandOutput extends SearchWorkersResponse, __Met * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class SearchWorkersCommand extends $Command diff --git a/clients/client-deadline/src/commands/StartSessionsStatisticsAggregationCommand.ts b/clients/client-deadline/src/commands/StartSessionsStatisticsAggregationCommand.ts index 852fc1b37474a..f70ba28d6a280 100644 --- a/clients/client-deadline/src/commands/StartSessionsStatisticsAggregationCommand.ts +++ b/clients/client-deadline/src/commands/StartSessionsStatisticsAggregationCommand.ts @@ -103,6 +103,7 @@ export interface StartSessionsStatisticsAggregationCommandOutput * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class StartSessionsStatisticsAggregationCommand extends $Command diff --git a/clients/client-deadline/src/commands/TagResourceCommand.ts b/clients/client-deadline/src/commands/TagResourceCommand.ts index 0babf215dfbc1..7d1b82349126f 100644 --- a/clients/client-deadline/src/commands/TagResourceCommand.ts +++ b/clients/client-deadline/src/commands/TagResourceCommand.ts @@ -76,6 +76,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-deadline/src/commands/UntagResourceCommand.ts b/clients/client-deadline/src/commands/UntagResourceCommand.ts index 3351ed293fb90..58f93be71823d 100644 --- a/clients/client-deadline/src/commands/UntagResourceCommand.ts +++ b/clients/client-deadline/src/commands/UntagResourceCommand.ts @@ -76,6 +76,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateBudgetCommand.ts b/clients/client-deadline/src/commands/UpdateBudgetCommand.ts index c676c831297e1..952c5e1e7ada3 100644 --- a/clients/client-deadline/src/commands/UpdateBudgetCommand.ts +++ b/clients/client-deadline/src/commands/UpdateBudgetCommand.ts @@ -94,6 +94,7 @@ export interface UpdateBudgetCommandOutput extends UpdateBudgetResponse, __Metad * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateBudgetCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateFarmCommand.ts b/clients/client-deadline/src/commands/UpdateFarmCommand.ts index 0f1535afdf33d..2bd0f551d9fec 100644 --- a/clients/client-deadline/src/commands/UpdateFarmCommand.ts +++ b/clients/client-deadline/src/commands/UpdateFarmCommand.ts @@ -71,6 +71,7 @@ export interface UpdateFarmCommandOutput extends UpdateFarmResponse, __MetadataB * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateFarmCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateFleetCommand.ts b/clients/client-deadline/src/commands/UpdateFleetCommand.ts index 8782f097de3c4..4c3378eb97627 100644 --- a/clients/client-deadline/src/commands/UpdateFleetCommand.ts +++ b/clients/client-deadline/src/commands/UpdateFleetCommand.ts @@ -179,6 +179,7 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResponse, __Metadat * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateFleetCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateJobCommand.ts b/clients/client-deadline/src/commands/UpdateJobCommand.ts index f95429c3e31d8..2854407842515 100644 --- a/clients/client-deadline/src/commands/UpdateJobCommand.ts +++ b/clients/client-deadline/src/commands/UpdateJobCommand.ts @@ -88,6 +88,7 @@ export interface UpdateJobCommandOutput extends UpdateJobResponse, __MetadataBea * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateJobCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateLimitCommand.ts b/clients/client-deadline/src/commands/UpdateLimitCommand.ts index f31d246f8b85b..10d4283a1fa46 100644 --- a/clients/client-deadline/src/commands/UpdateLimitCommand.ts +++ b/clients/client-deadline/src/commands/UpdateLimitCommand.ts @@ -73,6 +73,7 @@ export interface UpdateLimitCommandOutput extends UpdateLimitResponse, __Metadat * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateLimitCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateMonitorCommand.ts b/clients/client-deadline/src/commands/UpdateMonitorCommand.ts index dedfe5e551853..bede954b67afe 100644 --- a/clients/client-deadline/src/commands/UpdateMonitorCommand.ts +++ b/clients/client-deadline/src/commands/UpdateMonitorCommand.ts @@ -73,6 +73,7 @@ export interface UpdateMonitorCommandOutput extends UpdateMonitorResponse, __Met * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateMonitorCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateQueueCommand.ts b/clients/client-deadline/src/commands/UpdateQueueCommand.ts index 79527fff6d779..fcbb37158af22 100644 --- a/clients/client-deadline/src/commands/UpdateQueueCommand.ts +++ b/clients/client-deadline/src/commands/UpdateQueueCommand.ts @@ -102,6 +102,7 @@ export interface UpdateQueueCommandOutput extends UpdateQueueResponse, __Metadat * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateQueueCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateQueueEnvironmentCommand.ts b/clients/client-deadline/src/commands/UpdateQueueEnvironmentCommand.ts index 2dd324a54f34a..b4eb2f98d5dee 100644 --- a/clients/client-deadline/src/commands/UpdateQueueEnvironmentCommand.ts +++ b/clients/client-deadline/src/commands/UpdateQueueEnvironmentCommand.ts @@ -79,6 +79,7 @@ export interface UpdateQueueEnvironmentCommandOutput extends UpdateQueueEnvironm * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateQueueEnvironmentCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateQueueFleetAssociationCommand.ts b/clients/client-deadline/src/commands/UpdateQueueFleetAssociationCommand.ts index 76e3ad4577c6f..8a232729e6268 100644 --- a/clients/client-deadline/src/commands/UpdateQueueFleetAssociationCommand.ts +++ b/clients/client-deadline/src/commands/UpdateQueueFleetAssociationCommand.ts @@ -77,6 +77,7 @@ export interface UpdateQueueFleetAssociationCommandOutput * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateQueueFleetAssociationCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateQueueLimitAssociationCommand.ts b/clients/client-deadline/src/commands/UpdateQueueLimitAssociationCommand.ts index ee84066d5452e..e0a596bda2fb9 100644 --- a/clients/client-deadline/src/commands/UpdateQueueLimitAssociationCommand.ts +++ b/clients/client-deadline/src/commands/UpdateQueueLimitAssociationCommand.ts @@ -79,6 +79,7 @@ export interface UpdateQueueLimitAssociationCommandOutput * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateQueueLimitAssociationCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateSessionCommand.ts b/clients/client-deadline/src/commands/UpdateSessionCommand.ts index 45768de80bbe3..4d7dfe03cf431 100644 --- a/clients/client-deadline/src/commands/UpdateSessionCommand.ts +++ b/clients/client-deadline/src/commands/UpdateSessionCommand.ts @@ -78,6 +78,7 @@ export interface UpdateSessionCommandOutput extends UpdateSessionResponse, __Met * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateSessionCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateStepCommand.ts b/clients/client-deadline/src/commands/UpdateStepCommand.ts index f360d5ce09c39..770ad1b897c8c 100644 --- a/clients/client-deadline/src/commands/UpdateStepCommand.ts +++ b/clients/client-deadline/src/commands/UpdateStepCommand.ts @@ -78,6 +78,7 @@ export interface UpdateStepCommandOutput extends UpdateStepResponse, __MetadataB * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateStepCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateStorageProfileCommand.ts b/clients/client-deadline/src/commands/UpdateStorageProfileCommand.ts index 1f463234ceb38..54dcc900f642d 100644 --- a/clients/client-deadline/src/commands/UpdateStorageProfileCommand.ts +++ b/clients/client-deadline/src/commands/UpdateStorageProfileCommand.ts @@ -91,6 +91,7 @@ export interface UpdateStorageProfileCommandOutput extends UpdateStorageProfileR * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateStorageProfileCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateTaskCommand.ts b/clients/client-deadline/src/commands/UpdateTaskCommand.ts index b664ba2e1a8f6..f38c717ed8d81 100644 --- a/clients/client-deadline/src/commands/UpdateTaskCommand.ts +++ b/clients/client-deadline/src/commands/UpdateTaskCommand.ts @@ -79,6 +79,7 @@ export interface UpdateTaskCommandOutput extends UpdateTaskResponse, __MetadataB * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateTaskCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateWorkerCommand.ts b/clients/client-deadline/src/commands/UpdateWorkerCommand.ts index 3d4608ac5dc58..ce772b9321768 100644 --- a/clients/client-deadline/src/commands/UpdateWorkerCommand.ts +++ b/clients/client-deadline/src/commands/UpdateWorkerCommand.ts @@ -114,6 +114,7 @@ export interface UpdateWorkerCommandOutput extends UpdateWorkerResponse, __Metad * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateWorkerCommand extends $Command diff --git a/clients/client-deadline/src/commands/UpdateWorkerScheduleCommand.ts b/clients/client-deadline/src/commands/UpdateWorkerScheduleCommand.ts index 34d1aadd5c59f..b37035eb32a03 100644 --- a/clients/client-deadline/src/commands/UpdateWorkerScheduleCommand.ts +++ b/clients/client-deadline/src/commands/UpdateWorkerScheduleCommand.ts @@ -143,6 +143,7 @@ export interface UpdateWorkerScheduleCommandOutput extends UpdateWorkerScheduleR * @throws {@link DeadlineServiceException} *

Base exception class for all service exceptions from Deadline service.

* + * * @public */ export class UpdateWorkerScheduleCommand extends $Command diff --git a/clients/client-detective/src/commands/AcceptInvitationCommand.ts b/clients/client-detective/src/commands/AcceptInvitationCommand.ts index 0bb7ee42a0598..924fb45079e3a 100644 --- a/clients/client-detective/src/commands/AcceptInvitationCommand.ts +++ b/clients/client-detective/src/commands/AcceptInvitationCommand.ts @@ -72,6 +72,7 @@ export interface AcceptInvitationCommandOutput extends __MetadataBearer {} * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class AcceptInvitationCommand extends $Command diff --git a/clients/client-detective/src/commands/BatchGetGraphMemberDatasourcesCommand.ts b/clients/client-detective/src/commands/BatchGetGraphMemberDatasourcesCommand.ts index b790535acb43b..2d54f34ac56f5 100644 --- a/clients/client-detective/src/commands/BatchGetGraphMemberDatasourcesCommand.ts +++ b/clients/client-detective/src/commands/BatchGetGraphMemberDatasourcesCommand.ts @@ -94,6 +94,7 @@ export interface BatchGetGraphMemberDatasourcesCommandOutput * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class BatchGetGraphMemberDatasourcesCommand extends $Command diff --git a/clients/client-detective/src/commands/BatchGetMembershipDatasourcesCommand.ts b/clients/client-detective/src/commands/BatchGetMembershipDatasourcesCommand.ts index dfa4ca337e2ea..b1ca1dc3d1666 100644 --- a/clients/client-detective/src/commands/BatchGetMembershipDatasourcesCommand.ts +++ b/clients/client-detective/src/commands/BatchGetMembershipDatasourcesCommand.ts @@ -93,6 +93,7 @@ export interface BatchGetMembershipDatasourcesCommandOutput * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class BatchGetMembershipDatasourcesCommand extends $Command diff --git a/clients/client-detective/src/commands/CreateGraphCommand.ts b/clients/client-detective/src/commands/CreateGraphCommand.ts index 9b77be2b3c08b..5f78df94228fd 100644 --- a/clients/client-detective/src/commands/CreateGraphCommand.ts +++ b/clients/client-detective/src/commands/CreateGraphCommand.ts @@ -89,6 +89,7 @@ export interface CreateGraphCommandOutput extends CreateGraphResponse, __Metadat * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class CreateGraphCommand extends $Command diff --git a/clients/client-detective/src/commands/CreateMembersCommand.ts b/clients/client-detective/src/commands/CreateMembersCommand.ts index b12f82317ecf1..741f1d6a718ed 100644 --- a/clients/client-detective/src/commands/CreateMembersCommand.ts +++ b/clients/client-detective/src/commands/CreateMembersCommand.ts @@ -157,6 +157,7 @@ export interface CreateMembersCommandOutput extends CreateMembersResponse, __Met * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class CreateMembersCommand extends $Command diff --git a/clients/client-detective/src/commands/DeleteGraphCommand.ts b/clients/client-detective/src/commands/DeleteGraphCommand.ts index 9ef3a5ff8c3fa..f112be0352372 100644 --- a/clients/client-detective/src/commands/DeleteGraphCommand.ts +++ b/clients/client-detective/src/commands/DeleteGraphCommand.ts @@ -70,6 +70,7 @@ export interface DeleteGraphCommandOutput extends __MetadataBearer {} * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class DeleteGraphCommand extends $Command diff --git a/clients/client-detective/src/commands/DeleteMembersCommand.ts b/clients/client-detective/src/commands/DeleteMembersCommand.ts index 44daf8de47b01..9f454e1e38be1 100644 --- a/clients/client-detective/src/commands/DeleteMembersCommand.ts +++ b/clients/client-detective/src/commands/DeleteMembersCommand.ts @@ -94,6 +94,7 @@ export interface DeleteMembersCommandOutput extends DeleteMembersResponse, __Met * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class DeleteMembersCommand extends $Command diff --git a/clients/client-detective/src/commands/DescribeOrganizationConfigurationCommand.ts b/clients/client-detective/src/commands/DescribeOrganizationConfigurationCommand.ts index 122cfdd9a317f..d7daab6a0fe5a 100644 --- a/clients/client-detective/src/commands/DescribeOrganizationConfigurationCommand.ts +++ b/clients/client-detective/src/commands/DescribeOrganizationConfigurationCommand.ts @@ -80,6 +80,7 @@ export interface DescribeOrganizationConfigurationCommandOutput * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class DescribeOrganizationConfigurationCommand extends $Command diff --git a/clients/client-detective/src/commands/DisableOrganizationAdminAccountCommand.ts b/clients/client-detective/src/commands/DisableOrganizationAdminAccountCommand.ts index a205683a6a235..cfe4f5f7292e5 100644 --- a/clients/client-detective/src/commands/DisableOrganizationAdminAccountCommand.ts +++ b/clients/client-detective/src/commands/DisableOrganizationAdminAccountCommand.ts @@ -72,6 +72,7 @@ export interface DisableOrganizationAdminAccountCommandOutput extends __Metadata * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class DisableOrganizationAdminAccountCommand extends $Command diff --git a/clients/client-detective/src/commands/DisassociateMembershipCommand.ts b/clients/client-detective/src/commands/DisassociateMembershipCommand.ts index e90bd824e69fb..5e00355b1a0f9 100644 --- a/clients/client-detective/src/commands/DisassociateMembershipCommand.ts +++ b/clients/client-detective/src/commands/DisassociateMembershipCommand.ts @@ -75,6 +75,7 @@ export interface DisassociateMembershipCommandOutput extends __MetadataBearer {} * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class DisassociateMembershipCommand extends $Command diff --git a/clients/client-detective/src/commands/EnableOrganizationAdminAccountCommand.ts b/clients/client-detective/src/commands/EnableOrganizationAdminAccountCommand.ts index 1304485747554..13011f3710814 100644 --- a/clients/client-detective/src/commands/EnableOrganizationAdminAccountCommand.ts +++ b/clients/client-detective/src/commands/EnableOrganizationAdminAccountCommand.ts @@ -81,6 +81,7 @@ export interface EnableOrganizationAdminAccountCommandOutput extends __MetadataB * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class EnableOrganizationAdminAccountCommand extends $Command diff --git a/clients/client-detective/src/commands/GetInvestigationCommand.ts b/clients/client-detective/src/commands/GetInvestigationCommand.ts index 1cda80fd6859e..a0cbff3034983 100644 --- a/clients/client-detective/src/commands/GetInvestigationCommand.ts +++ b/clients/client-detective/src/commands/GetInvestigationCommand.ts @@ -82,6 +82,7 @@ export interface GetInvestigationCommandOutput extends GetInvestigationResponse, * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class GetInvestigationCommand extends $Command diff --git a/clients/client-detective/src/commands/GetMembersCommand.ts b/clients/client-detective/src/commands/GetMembersCommand.ts index 6a4ac0e7f4322..e0b343761dddf 100644 --- a/clients/client-detective/src/commands/GetMembersCommand.ts +++ b/clients/client-detective/src/commands/GetMembersCommand.ts @@ -104,6 +104,7 @@ export interface GetMembersCommandOutput extends GetMembersResponse, __MetadataB * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class GetMembersCommand extends $Command diff --git a/clients/client-detective/src/commands/ListDatasourcePackagesCommand.ts b/clients/client-detective/src/commands/ListDatasourcePackagesCommand.ts index 9fafd38280678..2c4675beaf1d3 100644 --- a/clients/client-detective/src/commands/ListDatasourcePackagesCommand.ts +++ b/clients/client-detective/src/commands/ListDatasourcePackagesCommand.ts @@ -80,6 +80,7 @@ export interface ListDatasourcePackagesCommandOutput extends ListDatasourcePacka * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class ListDatasourcePackagesCommand extends $Command diff --git a/clients/client-detective/src/commands/ListGraphsCommand.ts b/clients/client-detective/src/commands/ListGraphsCommand.ts index 096dad2ca92c3..a423e6cab2cff 100644 --- a/clients/client-detective/src/commands/ListGraphsCommand.ts +++ b/clients/client-detective/src/commands/ListGraphsCommand.ts @@ -75,6 +75,7 @@ export interface ListGraphsCommandOutput extends ListGraphsResponse, __MetadataB * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class ListGraphsCommand extends $Command diff --git a/clients/client-detective/src/commands/ListIndicatorsCommand.ts b/clients/client-detective/src/commands/ListIndicatorsCommand.ts index 83e3b2cb3788c..12beef860aec4 100644 --- a/clients/client-detective/src/commands/ListIndicatorsCommand.ts +++ b/clients/client-detective/src/commands/ListIndicatorsCommand.ts @@ -126,6 +126,7 @@ export interface ListIndicatorsCommandOutput extends ListIndicatorsResponse, __M * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class ListIndicatorsCommand extends $Command diff --git a/clients/client-detective/src/commands/ListInvestigationsCommand.ts b/clients/client-detective/src/commands/ListInvestigationsCommand.ts index ed5addb15bfc5..49c9c0a099772 100644 --- a/clients/client-detective/src/commands/ListInvestigationsCommand.ts +++ b/clients/client-detective/src/commands/ListInvestigationsCommand.ts @@ -112,6 +112,7 @@ export interface ListInvestigationsCommandOutput extends ListInvestigationsRespo * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class ListInvestigationsCommand extends $Command diff --git a/clients/client-detective/src/commands/ListInvitationsCommand.ts b/clients/client-detective/src/commands/ListInvitationsCommand.ts index f6d63cb132f30..3f4cfce0af587 100644 --- a/clients/client-detective/src/commands/ListInvitationsCommand.ts +++ b/clients/client-detective/src/commands/ListInvitationsCommand.ts @@ -102,6 +102,7 @@ export interface ListInvitationsCommandOutput extends ListInvitationsResponse, _ * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class ListInvitationsCommand extends $Command diff --git a/clients/client-detective/src/commands/ListMembersCommand.ts b/clients/client-detective/src/commands/ListMembersCommand.ts index afe34a4f876c4..ac746a2c9a403 100644 --- a/clients/client-detective/src/commands/ListMembersCommand.ts +++ b/clients/client-detective/src/commands/ListMembersCommand.ts @@ -102,6 +102,7 @@ export interface ListMembersCommandOutput extends ListMembersResponse, __Metadat * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class ListMembersCommand extends $Command diff --git a/clients/client-detective/src/commands/ListOrganizationAdminAccountsCommand.ts b/clients/client-detective/src/commands/ListOrganizationAdminAccountsCommand.ts index 5c9949de6b63c..03f4f64c742af 100644 --- a/clients/client-detective/src/commands/ListOrganizationAdminAccountsCommand.ts +++ b/clients/client-detective/src/commands/ListOrganizationAdminAccountsCommand.ts @@ -83,6 +83,7 @@ export interface ListOrganizationAdminAccountsCommandOutput * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class ListOrganizationAdminAccountsCommand extends $Command diff --git a/clients/client-detective/src/commands/ListTagsForResourceCommand.ts b/clients/client-detective/src/commands/ListTagsForResourceCommand.ts index 2aab2d5e3f840..c6904a323484a 100644 --- a/clients/client-detective/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-detective/src/commands/ListTagsForResourceCommand.ts @@ -70,6 +70,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-detective/src/commands/RejectInvitationCommand.ts b/clients/client-detective/src/commands/RejectInvitationCommand.ts index 1bf913c308f23..91122721acf77 100644 --- a/clients/client-detective/src/commands/RejectInvitationCommand.ts +++ b/clients/client-detective/src/commands/RejectInvitationCommand.ts @@ -75,6 +75,7 @@ export interface RejectInvitationCommandOutput extends __MetadataBearer {} * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class RejectInvitationCommand extends $Command diff --git a/clients/client-detective/src/commands/StartInvestigationCommand.ts b/clients/client-detective/src/commands/StartInvestigationCommand.ts index 6ce69986c3e91..06d8ed20550c8 100644 --- a/clients/client-detective/src/commands/StartInvestigationCommand.ts +++ b/clients/client-detective/src/commands/StartInvestigationCommand.ts @@ -75,6 +75,7 @@ export interface StartInvestigationCommandOutput extends StartInvestigationRespo * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class StartInvestigationCommand extends $Command diff --git a/clients/client-detective/src/commands/StartMonitoringMemberCommand.ts b/clients/client-detective/src/commands/StartMonitoringMemberCommand.ts index ec981328a8433..41e54324d91ca 100644 --- a/clients/client-detective/src/commands/StartMonitoringMemberCommand.ts +++ b/clients/client-detective/src/commands/StartMonitoringMemberCommand.ts @@ -95,6 +95,7 @@ export interface StartMonitoringMemberCommandOutput extends __MetadataBearer {} * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class StartMonitoringMemberCommand extends $Command diff --git a/clients/client-detective/src/commands/TagResourceCommand.ts b/clients/client-detective/src/commands/TagResourceCommand.ts index a63a08e447309..d116a2a5e2e39 100644 --- a/clients/client-detective/src/commands/TagResourceCommand.ts +++ b/clients/client-detective/src/commands/TagResourceCommand.ts @@ -69,6 +69,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-detective/src/commands/UntagResourceCommand.ts b/clients/client-detective/src/commands/UntagResourceCommand.ts index 0e956b01eeef6..8d314b74abfe4 100644 --- a/clients/client-detective/src/commands/UntagResourceCommand.ts +++ b/clients/client-detective/src/commands/UntagResourceCommand.ts @@ -69,6 +69,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-detective/src/commands/UpdateDatasourcePackagesCommand.ts b/clients/client-detective/src/commands/UpdateDatasourcePackagesCommand.ts index 7643a7a85a703..470fc84350664 100644 --- a/clients/client-detective/src/commands/UpdateDatasourcePackagesCommand.ts +++ b/clients/client-detective/src/commands/UpdateDatasourcePackagesCommand.ts @@ -82,6 +82,7 @@ export interface UpdateDatasourcePackagesCommandOutput extends __MetadataBearer * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class UpdateDatasourcePackagesCommand extends $Command diff --git a/clients/client-detective/src/commands/UpdateInvestigationStateCommand.ts b/clients/client-detective/src/commands/UpdateInvestigationStateCommand.ts index 3efe1f19f4a60..c01524a2f8d19 100644 --- a/clients/client-detective/src/commands/UpdateInvestigationStateCommand.ts +++ b/clients/client-detective/src/commands/UpdateInvestigationStateCommand.ts @@ -72,6 +72,7 @@ export interface UpdateInvestigationStateCommandOutput extends __MetadataBearer * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class UpdateInvestigationStateCommand extends $Command diff --git a/clients/client-detective/src/commands/UpdateOrganizationConfigurationCommand.ts b/clients/client-detective/src/commands/UpdateOrganizationConfigurationCommand.ts index 99da2660cf04f..b2f48bb1819a8 100644 --- a/clients/client-detective/src/commands/UpdateOrganizationConfigurationCommand.ts +++ b/clients/client-detective/src/commands/UpdateOrganizationConfigurationCommand.ts @@ -73,6 +73,7 @@ export interface UpdateOrganizationConfigurationCommandOutput extends __Metadata * @throws {@link DetectiveServiceException} *

Base exception class for all service exceptions from Detective service.

* + * * @public */ export class UpdateOrganizationConfigurationCommand extends $Command diff --git a/clients/client-device-farm/src/commands/CreateDevicePoolCommand.ts b/clients/client-device-farm/src/commands/CreateDevicePoolCommand.ts index 60ffce9de922d..9feceb2c4a4ab 100644 --- a/clients/client-device-farm/src/commands/CreateDevicePoolCommand.ts +++ b/clients/client-device-farm/src/commands/CreateDevicePoolCommand.ts @@ -90,26 +90,26 @@ export interface CreateDevicePoolCommandOutput extends CreateDevicePoolResult, _ * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To create a new device pool * ```javascript * // The following example creates a new device pool named MyDevicePool inside an existing project. * const input = { - * "name": "MyDevicePool", - * "description": "My Android devices", - * "projectArn": "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", - * "rules": [] + * description: "My Android devices", + * name: "MyDevicePool", + * projectArn: "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", + * rules: [] * }; * const command = new CreateDevicePoolCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "devicePool": {} + * devicePool: { /* empty *\/ } * } * *\/ - * // example id: createdevicepool-example-1470862210860 * ``` * + * @public */ export class CreateDevicePoolCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/CreateInstanceProfileCommand.ts b/clients/client-device-farm/src/commands/CreateInstanceProfileCommand.ts index 0a7f147ecc311..02bde95ede584 100644 --- a/clients/client-device-farm/src/commands/CreateInstanceProfileCommand.ts +++ b/clients/client-device-farm/src/commands/CreateInstanceProfileCommand.ts @@ -83,6 +83,7 @@ export interface CreateInstanceProfileCommandOutput extends CreateInstanceProfil * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class CreateInstanceProfileCommand extends $Command diff --git a/clients/client-device-farm/src/commands/CreateNetworkProfileCommand.ts b/clients/client-device-farm/src/commands/CreateNetworkProfileCommand.ts index bf82c2436574a..66c0ef926bf1f 100644 --- a/clients/client-device-farm/src/commands/CreateNetworkProfileCommand.ts +++ b/clients/client-device-farm/src/commands/CreateNetworkProfileCommand.ts @@ -91,6 +91,7 @@ export interface CreateNetworkProfileCommandOutput extends CreateNetworkProfileR * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class CreateNetworkProfileCommand extends $Command diff --git a/clients/client-device-farm/src/commands/CreateProjectCommand.ts b/clients/client-device-farm/src/commands/CreateProjectCommand.ts index d3774b443531e..900c955d01a97 100644 --- a/clients/client-device-farm/src/commands/CreateProjectCommand.ts +++ b/clients/client-device-farm/src/commands/CreateProjectCommand.ts @@ -94,27 +94,8 @@ export interface CreateProjectCommandOutput extends CreateProjectResult, __Metad * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public - * @example To create a new project - * ```javascript - * // The following example creates a new project named MyProject. - * const input = { - * "name": "MyProject" - * }; - * const command = new CreateProjectCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "project": { - * "name": "MyProject", - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:5e01a8c7-c861-4c0a-b1d5-12345EXAMPLE", - * "created": "1472660939.152" - * } - * } - * *\/ - * // example id: createproject-example-1470862210860 - * ``` * + * @public */ export class CreateProjectCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/CreateRemoteAccessSessionCommand.ts b/clients/client-device-farm/src/commands/CreateRemoteAccessSessionCommand.ts index ce735713e3946..f1b2210f73832 100644 --- a/clients/client-device-farm/src/commands/CreateRemoteAccessSessionCommand.ts +++ b/clients/client-device-farm/src/commands/CreateRemoteAccessSessionCommand.ts @@ -175,28 +175,28 @@ export interface CreateRemoteAccessSessionCommandOutput extends CreateRemoteAcce * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To create a remote access session * ```javascript * // The following example creates a remote access session named MySession. * const input = { - * "name": "MySession", - * "configuration": { - * "billingMethod": "METERED" + * configuration: { + * billingMethod: "METERED" * }, - * "deviceArn": "arn:aws:devicefarm:us-west-2::device:123EXAMPLE", - * "projectArn": "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456" + * deviceArn: "arn:aws:devicefarm:us-west-2::device:123EXAMPLE", + * name: "MySession", + * projectArn: "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456" * }; * const command = new CreateRemoteAccessSessionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "remoteAccessSession": {} + * remoteAccessSession: { /* empty *\/ } * } * *\/ - * // example id: to-create-a-remote-access-session-1470970668274 * ``` * + * @public */ export class CreateRemoteAccessSessionCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/CreateTestGridProjectCommand.ts b/clients/client-device-farm/src/commands/CreateTestGridProjectCommand.ts index 43a8f2c3982ec..8dc22c1f0d4af 100644 --- a/clients/client-device-farm/src/commands/CreateTestGridProjectCommand.ts +++ b/clients/client-device-farm/src/commands/CreateTestGridProjectCommand.ts @@ -90,6 +90,7 @@ export interface CreateTestGridProjectCommandOutput extends CreateTestGridProjec * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class CreateTestGridProjectCommand extends $Command diff --git a/clients/client-device-farm/src/commands/CreateTestGridUrlCommand.ts b/clients/client-device-farm/src/commands/CreateTestGridUrlCommand.ts index 9c1421a983426..a577cad9281ef 100644 --- a/clients/client-device-farm/src/commands/CreateTestGridUrlCommand.ts +++ b/clients/client-device-farm/src/commands/CreateTestGridUrlCommand.ts @@ -72,6 +72,7 @@ export interface CreateTestGridUrlCommandOutput extends CreateTestGridUrlResult, * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class CreateTestGridUrlCommand extends $Command diff --git a/clients/client-device-farm/src/commands/CreateUploadCommand.ts b/clients/client-device-farm/src/commands/CreateUploadCommand.ts index 03b32b074d73d..5c3066ef21d3f 100644 --- a/clients/client-device-farm/src/commands/CreateUploadCommand.ts +++ b/clients/client-device-farm/src/commands/CreateUploadCommand.ts @@ -81,32 +81,8 @@ export interface CreateUploadCommandOutput extends CreateUploadResult, __Metadat * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public - * @example To create a new test package upload - * ```javascript - * // The following example creates a new Appium Python test package upload inside an existing project. - * const input = { - * "name": "MyAppiumPythonUpload", - * "type": "APPIUM_PYTHON_TEST_PACKAGE", - * "projectArn": "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456" - * }; - * const command = new CreateUploadCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "upload": { - * "name": "MyAppiumPythonUpload", - * "type": "APPIUM_PYTHON_TEST_PACKAGE", - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:upload:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/b5340a65-3da7-4da6-a26e-12345EXAMPLE", - * "created": "1472661404.186", - * "status": "INITIALIZED", - * "url": "https://prod-us-west-2-uploads.s3-us-west-2.amazonaws.com/arn%3Aaws%3Adevicefarm%3Aus-west-2%3A123456789101%3Aproject%3A5e01a8c7-c861-4c0a-b1d5-12345EXAMPLE/uploads/arn%3Aaws%3Adevicefarm%3Aus-west-2%3A123456789101%3Aupload%3A5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/b5340a65-3da7-4da6-a26e-12345EXAMPLE/MyAppiumPythonUpload?AWSAccessKeyId=1234567891011EXAMPLE&Expires=1472747804&Signature=1234567891011EXAMPLE" - * } - * } - * *\/ - * // example id: createupload-example-1470864711775 - * ``` * + * @public */ export class CreateUploadCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/CreateVPCEConfigurationCommand.ts b/clients/client-device-farm/src/commands/CreateVPCEConfigurationCommand.ts index 9ed26e11a9ad0..d9bc7ad8e4436 100644 --- a/clients/client-device-farm/src/commands/CreateVPCEConfigurationCommand.ts +++ b/clients/client-device-farm/src/commands/CreateVPCEConfigurationCommand.ts @@ -74,6 +74,7 @@ export interface CreateVPCEConfigurationCommandOutput extends CreateVPCEConfigur * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class CreateVPCEConfigurationCommand extends $Command diff --git a/clients/client-device-farm/src/commands/DeleteDevicePoolCommand.ts b/clients/client-device-farm/src/commands/DeleteDevicePoolCommand.ts index 0b0182d2cd7f0..d4ec1b010430b 100644 --- a/clients/client-device-farm/src/commands/DeleteDevicePoolCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteDevicePoolCommand.ts @@ -66,18 +66,21 @@ export interface DeleteDevicePoolCommandOutput extends DeleteDevicePoolResult, _ * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To delete a device pool * ```javascript * // The following example deletes a specific device pool. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2::devicepool:123-456-EXAMPLE-GUID" + * arn: "arn:aws:devicefarm:us-west-2::devicepool:123-456-EXAMPLE-GUID" * }; * const command = new DeleteDevicePoolCommand(input); - * await client.send(command); - * // example id: deletedevicepool-example-1470866975494 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteDevicePoolCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/DeleteInstanceProfileCommand.ts b/clients/client-device-farm/src/commands/DeleteInstanceProfileCommand.ts index 956eb6412599d..721ecc1f8a432 100644 --- a/clients/client-device-farm/src/commands/DeleteInstanceProfileCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteInstanceProfileCommand.ts @@ -65,6 +65,7 @@ export interface DeleteInstanceProfileCommandOutput extends DeleteInstanceProfil * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class DeleteInstanceProfileCommand extends $Command diff --git a/clients/client-device-farm/src/commands/DeleteNetworkProfileCommand.ts b/clients/client-device-farm/src/commands/DeleteNetworkProfileCommand.ts index 8d4b645045bc9..df4943076cd68 100644 --- a/clients/client-device-farm/src/commands/DeleteNetworkProfileCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteNetworkProfileCommand.ts @@ -65,6 +65,7 @@ export interface DeleteNetworkProfileCommandOutput extends DeleteNetworkProfileR * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class DeleteNetworkProfileCommand extends $Command diff --git a/clients/client-device-farm/src/commands/DeleteProjectCommand.ts b/clients/client-device-farm/src/commands/DeleteProjectCommand.ts index e9d66151d7f7b..f64ae9f262610 100644 --- a/clients/client-device-farm/src/commands/DeleteProjectCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteProjectCommand.ts @@ -66,18 +66,21 @@ export interface DeleteProjectCommandOutput extends DeleteProjectResult, __Metad * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To delete a project * ```javascript * // The following example deletes a specific project. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456" * }; * const command = new DeleteProjectCommand(input); - * await client.send(command); - * // example id: deleteproject-example-1470867374212 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteProjectCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/DeleteRemoteAccessSessionCommand.ts b/clients/client-device-farm/src/commands/DeleteRemoteAccessSessionCommand.ts index 0ba465c83ad51..d85ae62edfc5d 100644 --- a/clients/client-device-farm/src/commands/DeleteRemoteAccessSessionCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteRemoteAccessSessionCommand.ts @@ -65,18 +65,21 @@ export interface DeleteRemoteAccessSessionCommandOutput extends DeleteRemoteAcce * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To delete a specific remote access session * ```javascript * // The following example deletes a specific remote access session. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456" * }; * const command = new DeleteRemoteAccessSessionCommand(input); - * await client.send(command); - * // example id: to-delete-a-specific-remote-access-session-1470971431677 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteRemoteAccessSessionCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/DeleteRunCommand.ts b/clients/client-device-farm/src/commands/DeleteRunCommand.ts index c8b3e954c01c8..2d24a40bb54e4 100644 --- a/clients/client-device-farm/src/commands/DeleteRunCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteRunCommand.ts @@ -66,18 +66,21 @@ export interface DeleteRunCommandOutput extends DeleteRunResult, __MetadataBeare * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To delete a run * ```javascript * // The following example deletes a specific test run. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:run:EXAMPLE-GUID-123-456" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:run:EXAMPLE-GUID-123-456" * }; * const command = new DeleteRunCommand(input); - * await client.send(command); - * // example id: deleterun-example-1470867905129 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteRunCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/DeleteTestGridProjectCommand.ts b/clients/client-device-farm/src/commands/DeleteTestGridProjectCommand.ts index c7f8c42c50b1c..e2dfd905c1f79 100644 --- a/clients/client-device-farm/src/commands/DeleteTestGridProjectCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteTestGridProjectCommand.ts @@ -72,6 +72,7 @@ export interface DeleteTestGridProjectCommandOutput extends DeleteTestGridProjec * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class DeleteTestGridProjectCommand extends $Command diff --git a/clients/client-device-farm/src/commands/DeleteUploadCommand.ts b/clients/client-device-farm/src/commands/DeleteUploadCommand.ts index 0a0fdbcc6f130..bf00e757ebf1d 100644 --- a/clients/client-device-farm/src/commands/DeleteUploadCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteUploadCommand.ts @@ -65,18 +65,21 @@ export interface DeleteUploadCommandOutput extends DeleteUploadResult, __Metadat * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To delete a specific upload * ```javascript * // The following example deletes a specific upload. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:upload:EXAMPLE-GUID-123-456" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:upload:EXAMPLE-GUID-123-456" * }; * const command = new DeleteUploadCommand(input); - * await client.send(command); - * // example id: deleteupload-example-1470868363942 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteUploadCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/DeleteVPCEConfigurationCommand.ts b/clients/client-device-farm/src/commands/DeleteVPCEConfigurationCommand.ts index c649965c8356e..2c78dc27fbc29 100644 --- a/clients/client-device-farm/src/commands/DeleteVPCEConfigurationCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteVPCEConfigurationCommand.ts @@ -66,6 +66,7 @@ export interface DeleteVPCEConfigurationCommandOutput extends DeleteVPCEConfigur * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class DeleteVPCEConfigurationCommand extends $Command diff --git a/clients/client-device-farm/src/commands/GetAccountSettingsCommand.ts b/clients/client-device-farm/src/commands/GetAccountSettingsCommand.ts index 362f4202ed47d..55490c420abe6 100644 --- a/clients/client-device-farm/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-device-farm/src/commands/GetAccountSettingsCommand.ts @@ -84,27 +84,27 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsResul * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about account settings * ```javascript * // The following example returns information about your Device Farm account settings. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new GetAccountSettingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "accountSettings": { - * "awsAccountNumber": "123456789101", - * "unmeteredDevices": { - * "ANDROID": 1, - * "IOS": 2 + * accountSettings: { + * awsAccountNumber: "123456789101", + * unmeteredDevices: { + * ANDROID: 1, + * IOS: 2 * } * } * } * *\/ - * // example id: to-get-information-about-account-settings-1472567568189 * ``` * + * @public */ export class GetAccountSettingsCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/GetDeviceCommand.ts b/clients/client-device-farm/src/commands/GetDeviceCommand.ts index 3e48e2d108dea..919ac4fd9186c 100644 --- a/clients/client-device-farm/src/commands/GetDeviceCommand.ts +++ b/clients/client-device-farm/src/commands/GetDeviceCommand.ts @@ -116,43 +116,43 @@ export interface GetDeviceCommandOutput extends GetDeviceResult, __MetadataBeare * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about a device * ```javascript * // The following example returns information about a specific device. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2::device:123EXAMPLE" + * arn: "arn:aws:devicefarm:us-west-2::device:123EXAMPLE" * }; * const command = new GetDeviceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "device": { - * "name": "LG G2 (Sprint)", - * "arn": "arn:aws:devicefarm:us-west-2::device:A0E6E6E1059E45918208DF75B2B7EF6C", - * "cpu": { - * "architecture": "armeabi-v7a", - * "clock": 2265.6, - * "frequency": "MHz" + * device: { + * arn: "arn:aws:devicefarm:us-west-2::device:A0E6E6E1059E45918208DF75B2B7EF6C", + * cpu: { + * architecture: "armeabi-v7a", + * clock: 2265.6, + * frequency: "MHz" * }, - * "formFactor": "PHONE", - * "heapSize": 256000000, - * "image": "75B2B7EF6C12345EXAMPLE", - * "manufacturer": "LG", - * "memory": 16000000000, - * "model": "G2 (Sprint)", - * "os": "4.2.2", - * "platform": "ANDROID", - * "resolution": { - * "height": 1920, - * "width": 1080 + * formFactor: "PHONE", + * heapSize: 256000000, + * image: "75B2B7EF6C12345EXAMPLE", + * manufacturer: "LG", + * memory: 16000000000, + * model: "G2 (Sprint)", + * name: "LG G2 (Sprint)", + * os: "4.2.2", + * platform: "ANDROID", + * resolution: { + * height: 1920, + * width: 1080 * } * } * } * *\/ - * // example id: getdevice-example-1470870602173 * ``` * + * @public */ export class GetDeviceCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/GetDeviceInstanceCommand.ts b/clients/client-device-farm/src/commands/GetDeviceInstanceCommand.ts index 6a7b58720899c..ffc09d23f14ae 100644 --- a/clients/client-device-farm/src/commands/GetDeviceInstanceCommand.ts +++ b/clients/client-device-farm/src/commands/GetDeviceInstanceCommand.ts @@ -85,6 +85,7 @@ export interface GetDeviceInstanceCommandOutput extends GetDeviceInstanceResult, * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class GetDeviceInstanceCommand extends $Command diff --git a/clients/client-device-farm/src/commands/GetDevicePoolCommand.ts b/clients/client-device-farm/src/commands/GetDevicePoolCommand.ts index 5ec8be6eb02e4..0baa8411db260 100644 --- a/clients/client-device-farm/src/commands/GetDevicePoolCommand.ts +++ b/clients/client-device-farm/src/commands/GetDevicePoolCommand.ts @@ -80,23 +80,23 @@ export interface GetDevicePoolCommandOutput extends GetDevicePoolResult, __Metad * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about a device pool * ```javascript * // The following example returns information about a specific device pool, given a project ARN. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456" * }; * const command = new GetDevicePoolCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "devicePool": {} + * devicePool: { /* empty *\/ } * } * *\/ - * // example id: getdevicepool-example-1470870873136 * ``` * + * @public */ export class GetDevicePoolCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/GetDevicePoolCompatibilityCommand.ts b/clients/client-device-farm/src/commands/GetDevicePoolCompatibilityCommand.ts index e45786916f6b5..151cd5784ec08 100644 --- a/clients/client-device-farm/src/commands/GetDevicePoolCompatibilityCommand.ts +++ b/clients/client-device-farm/src/commands/GetDevicePoolCompatibilityCommand.ts @@ -236,26 +236,26 @@ export interface GetDevicePoolCompatibilityCommandOutput extends GetDevicePoolCo * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about the compatibility of a device pool * ```javascript * // The following example returns information about the compatibility of a specific device pool, given its ARN. * const input = { - * "appArn": "arn:aws:devicefarm:us-west-2::app:123-456-EXAMPLE-GUID", - * "devicePoolArn": "arn:aws:devicefarm:us-west-2::devicepool:123-456-EXAMPLE-GUID", - * "testType": "APPIUM_PYTHON" + * appArn: "arn:aws:devicefarm:us-west-2::app:123-456-EXAMPLE-GUID", + * devicePoolArn: "arn:aws:devicefarm:us-west-2::devicepool:123-456-EXAMPLE-GUID", + * testType: "APPIUM_PYTHON" * }; * const command = new GetDevicePoolCompatibilityCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "compatibleDevices": [], - * "incompatibleDevices": [] + * compatibleDevices: [], + * incompatibleDevices: [] * } * *\/ - * // example id: getdevicepoolcompatibility-example-1470925003466 * ``` * + * @public */ export class GetDevicePoolCompatibilityCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/GetInstanceProfileCommand.ts b/clients/client-device-farm/src/commands/GetInstanceProfileCommand.ts index 8359d26c446d8..257a38097e5c3 100644 --- a/clients/client-device-farm/src/commands/GetInstanceProfileCommand.ts +++ b/clients/client-device-farm/src/commands/GetInstanceProfileCommand.ts @@ -76,6 +76,7 @@ export interface GetInstanceProfileCommandOutput extends GetInstanceProfileResul * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class GetInstanceProfileCommand extends $Command diff --git a/clients/client-device-farm/src/commands/GetJobCommand.ts b/clients/client-device-farm/src/commands/GetJobCommand.ts index 51996f0893681..15fbbdb3aabc9 100644 --- a/clients/client-device-farm/src/commands/GetJobCommand.ts +++ b/clients/client-device-farm/src/commands/GetJobCommand.ts @@ -144,23 +144,23 @@ export interface GetJobCommandOutput extends GetJobResult, __MetadataBearer {} * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about a job * ```javascript * // The following example returns information about a specific job. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2::job:123-456-EXAMPLE-GUID" + * arn: "arn:aws:devicefarm:us-west-2::job:123-456-EXAMPLE-GUID" * }; * const command = new GetJobCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "job": {} + * job: { /* empty *\/ } * } * *\/ - * // example id: getjob-example-1470928294268 * ``` * + * @public */ export class GetJobCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/GetNetworkProfileCommand.ts b/clients/client-device-farm/src/commands/GetNetworkProfileCommand.ts index 16cdfdbe29220..e6a46248c737a 100644 --- a/clients/client-device-farm/src/commands/GetNetworkProfileCommand.ts +++ b/clients/client-device-farm/src/commands/GetNetworkProfileCommand.ts @@ -80,6 +80,7 @@ export interface GetNetworkProfileCommandOutput extends GetNetworkProfileResult, * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class GetNetworkProfileCommand extends $Command diff --git a/clients/client-device-farm/src/commands/GetOfferingStatusCommand.ts b/clients/client-device-farm/src/commands/GetOfferingStatusCommand.ts index dfc7d0ec2344a..1bce805e451de 100644 --- a/clients/client-device-farm/src/commands/GetOfferingStatusCommand.ts +++ b/clients/client-device-farm/src/commands/GetOfferingStatusCommand.ts @@ -118,45 +118,8 @@ export interface GetOfferingStatusCommandOutput extends GetOfferingStatusResult, * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public - * @example To get status information about device offerings - * ```javascript - * // The following example returns information about Device Farm offerings available to your account. - * const input = { - * "nextToken": "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE=" - * }; - * const command = new GetOfferingStatusCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "current": { - * "D68B3C05-1BA6-4360-BC69-12345EXAMPLE": { - * "offering": { - * "type": "RECURRING", - * "description": "Android Remote Access Unmetered Device Slot", - * "id": "D68B3C05-1BA6-4360-BC69-12345EXAMPLE", - * "platform": "ANDROID" - * }, - * "quantity": 1 - * } - * }, - * "nextPeriod": { - * "D68B3C05-1BA6-4360-BC69-12345EXAMPLE": { - * "effectiveOn": "1472688000", - * "offering": { - * "type": "RECURRING", - * "description": "Android Remote Access Unmetered Device Slot", - * "id": "D68B3C05-1BA6-4360-BC69-12345EXAMPLE", - * "platform": "ANDROID" - * }, - * "quantity": 1 - * } - * } - * } - * *\/ - * // example id: to-get-status-information-about-device-offerings-1472568124402 - * ``` * + * @public */ export class GetOfferingStatusCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/GetProjectCommand.ts b/clients/client-device-farm/src/commands/GetProjectCommand.ts index dfc8b209102d3..2f983048ad567 100644 --- a/clients/client-device-farm/src/commands/GetProjectCommand.ts +++ b/clients/client-device-farm/src/commands/GetProjectCommand.ts @@ -81,27 +81,8 @@ export interface GetProjectCommandOutput extends GetProjectResult, __MetadataBea * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public - * @example To get information about a project - * ```javascript - * // The following example gets information about a specific project. - * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:5e01a8c7-c861-4c0a-b1d5-12345EXAMPLE" - * }; - * const command = new GetProjectCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "project": { - * "name": "My Project", - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:5e01a8c7-c861-4c0a-b1d5-12345EXAMPLE", - * "created": "1472660939.152" - * } - * } - * *\/ - * // example id: to-get-a-project-1470975038449 - * ``` * + * @public */ export class GetProjectCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/GetRemoteAccessSessionCommand.ts b/clients/client-device-farm/src/commands/GetRemoteAccessSessionCommand.ts index 0fbec40e9d6a7..d5a953b545a79 100644 --- a/clients/client-device-farm/src/commands/GetRemoteAccessSessionCommand.ts +++ b/clients/client-device-farm/src/commands/GetRemoteAccessSessionCommand.ts @@ -155,23 +155,23 @@ export interface GetRemoteAccessSessionCommandOutput extends GetRemoteAccessSess * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get a remote access session * ```javascript * // The following example gets a specific remote access session. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456" * }; * const command = new GetRemoteAccessSessionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "remoteAccessSession": {} + * remoteAccessSession: { /* empty *\/ } * } * *\/ - * // example id: to-get-a-remote-access-session-1471014119414 * ``` * + * @public */ export class GetRemoteAccessSessionCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/GetRunCommand.ts b/clients/client-device-farm/src/commands/GetRunCommand.ts index 2f47e8c0a925a..ed6b57073d1cd 100644 --- a/clients/client-device-farm/src/commands/GetRunCommand.ts +++ b/clients/client-device-farm/src/commands/GetRunCommand.ts @@ -167,47 +167,8 @@ export interface GetRunCommandOutput extends GetRunResult, __MetadataBearer {} * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public - * @example To get information about a test run - * ```javascript - * // The following example gets information about a specific test run. - * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:run:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/0fcac17b-6122-44d7-ae5a-12345EXAMPLE" - * }; - * const command = new GetRunCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "run": { - * "name": "My Test Run", - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:run:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/0fcac17b-6122-44d7-ae5a-12345EXAMPLE", - * "billingMethod": "METERED", - * "completedJobs": 0, - * "counters": { - * "errored": 0, - * "failed": 0, - * "passed": 0, - * "skipped": 0, - * "stopped": 0, - * "total": 0, - * "warned": 0 - * }, - * "created": "1472667509.852", - * "deviceMinutes": { - * "metered": 0, - * "total": 0, - * "unmetered": 0 - * }, - * "platform": "ANDROID", - * "result": "PENDING", - * "status": "RUNNING", - * "totalJobs": 3 - * } - * } - * *\/ - * // example id: to-get-a-test-run-1471015895657 - * ``` * + * @public */ export class GetRunCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/GetSuiteCommand.ts b/clients/client-device-farm/src/commands/GetSuiteCommand.ts index c6e05bc87447d..7ef276166e758 100644 --- a/clients/client-device-farm/src/commands/GetSuiteCommand.ts +++ b/clients/client-device-farm/src/commands/GetSuiteCommand.ts @@ -91,23 +91,23 @@ export interface GetSuiteCommandOutput extends GetSuiteResult, __MetadataBearer * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about a test suite * ```javascript * // The following example gets information about a specific test suite. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:suite:EXAMPLE-GUID-123-456" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:suite:EXAMPLE-GUID-123-456" * }; * const command = new GetSuiteCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "suite": {} + * suite: { /* empty *\/ } * } * *\/ - * // example id: to-get-information-about-a-test-suite-1471016525008 * ``` * + * @public */ export class GetSuiteCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/GetTestCommand.ts b/clients/client-device-farm/src/commands/GetTestCommand.ts index bc7a5c5587eb7..29c48b14a1e62 100644 --- a/clients/client-device-farm/src/commands/GetTestCommand.ts +++ b/clients/client-device-farm/src/commands/GetTestCommand.ts @@ -91,23 +91,23 @@ export interface GetTestCommandOutput extends GetTestResult, __MetadataBearer {} * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about a specific test * ```javascript * // The following example gets information about a specific test. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:test:EXAMPLE-GUID-123-456" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:test:EXAMPLE-GUID-123-456" * }; * const command = new GetTestCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "test": {} + * test: { /* empty *\/ } * } * *\/ - * // example id: to-get-information-about-a-specific-test-1471025744238 * ``` * + * @public */ export class GetTestCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/GetTestGridProjectCommand.ts b/clients/client-device-farm/src/commands/GetTestGridProjectCommand.ts index b7700dd13c0e2..4543c7436b608 100644 --- a/clients/client-device-farm/src/commands/GetTestGridProjectCommand.ts +++ b/clients/client-device-farm/src/commands/GetTestGridProjectCommand.ts @@ -79,6 +79,7 @@ export interface GetTestGridProjectCommandOutput extends GetTestGridProjectResul * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class GetTestGridProjectCommand extends $Command diff --git a/clients/client-device-farm/src/commands/GetTestGridSessionCommand.ts b/clients/client-device-farm/src/commands/GetTestGridSessionCommand.ts index 21485c3cb446a..9fffb31728671 100644 --- a/clients/client-device-farm/src/commands/GetTestGridSessionCommand.ts +++ b/clients/client-device-farm/src/commands/GetTestGridSessionCommand.ts @@ -83,6 +83,7 @@ export interface GetTestGridSessionCommandOutput extends GetTestGridSessionResul * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class GetTestGridSessionCommand extends $Command diff --git a/clients/client-device-farm/src/commands/GetUploadCommand.ts b/clients/client-device-farm/src/commands/GetUploadCommand.ts index 66197e287119a..7558392dad6ad 100644 --- a/clients/client-device-farm/src/commands/GetUploadCommand.ts +++ b/clients/client-device-farm/src/commands/GetUploadCommand.ts @@ -78,23 +78,23 @@ export interface GetUploadCommandOutput extends GetUploadResult, __MetadataBeare * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about a specific upload * ```javascript * // The following example gets information about a specific upload. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:upload:EXAMPLE-GUID-123-456" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:upload:EXAMPLE-GUID-123-456" * }; * const command = new GetUploadCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "upload": {} + * upload: { /* empty *\/ } * } * *\/ - * // example id: to-get-information-about-a-specific-upload-1471025996221 * ``` * + * @public */ export class GetUploadCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/GetVPCEConfigurationCommand.ts b/clients/client-device-farm/src/commands/GetVPCEConfigurationCommand.ts index 907e73b00d47c..05fa476f4978d 100644 --- a/clients/client-device-farm/src/commands/GetVPCEConfigurationCommand.ts +++ b/clients/client-device-farm/src/commands/GetVPCEConfigurationCommand.ts @@ -71,6 +71,7 @@ export interface GetVPCEConfigurationCommandOutput extends GetVPCEConfigurationR * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class GetVPCEConfigurationCommand extends $Command diff --git a/clients/client-device-farm/src/commands/InstallToRemoteAccessSessionCommand.ts b/clients/client-device-farm/src/commands/InstallToRemoteAccessSessionCommand.ts index 679fb05831c50..2fee1548a1218 100644 --- a/clients/client-device-farm/src/commands/InstallToRemoteAccessSessionCommand.ts +++ b/clients/client-device-farm/src/commands/InstallToRemoteAccessSessionCommand.ts @@ -90,24 +90,24 @@ export interface InstallToRemoteAccessSessionCommandOutput * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To install to a remote access session * ```javascript * // The following example installs a specific app to a device in a specific remote access session. * const input = { - * "appArn": "arn:aws:devicefarm:us-west-2:123456789101:app:EXAMPLE-GUID-123-456", - * "remoteAccessSessionArn": "arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456" + * appArn: "arn:aws:devicefarm:us-west-2:123456789101:app:EXAMPLE-GUID-123-456", + * remoteAccessSessionArn: "arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456" * }; * const command = new InstallToRemoteAccessSessionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "appUpload": {} + * appUpload: { /* empty *\/ } * } * *\/ - * // example id: to-install-to-a-remote-access-session-1471634453818 * ``` * + * @public */ export class InstallToRemoteAccessSessionCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListArtifactsCommand.ts b/clients/client-device-farm/src/commands/ListArtifactsCommand.ts index 0e9dcfe0f0b9d..4c2c1d74b554d 100644 --- a/clients/client-device-farm/src/commands/ListArtifactsCommand.ts +++ b/clients/client-device-farm/src/commands/ListArtifactsCommand.ts @@ -78,19 +78,22 @@ export interface ListArtifactsCommandOutput extends ListArtifactsResult, __Metad * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To list artifacts for a resource * ```javascript * // The following example lists screenshot artifacts for a specific run. * const input = { - * "type": "SCREENSHOT", - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:run:EXAMPLE-GUID-123-456" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:run:EXAMPLE-GUID-123-456", + * type: "SCREENSHOT" * }; * const command = new ListArtifactsCommand(input); - * await client.send(command); - * // example id: to-list-artifacts-for-a-resource-1471635409527 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ListArtifactsCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListDeviceInstancesCommand.ts b/clients/client-device-farm/src/commands/ListDeviceInstancesCommand.ts index dfc22fa46f983..fd50cda29c37c 100644 --- a/clients/client-device-farm/src/commands/ListDeviceInstancesCommand.ts +++ b/clients/client-device-farm/src/commands/ListDeviceInstancesCommand.ts @@ -90,6 +90,7 @@ export interface ListDeviceInstancesCommandOutput extends ListDeviceInstancesRes * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class ListDeviceInstancesCommand extends $Command diff --git a/clients/client-device-farm/src/commands/ListDevicePoolsCommand.ts b/clients/client-device-farm/src/commands/ListDevicePoolsCommand.ts index 3b17b70ec1397..167e848bfac95 100644 --- a/clients/client-device-farm/src/commands/ListDevicePoolsCommand.ts +++ b/clients/client-device-farm/src/commands/ListDevicePoolsCommand.ts @@ -85,49 +85,49 @@ export interface ListDevicePoolsCommandOutput extends ListDevicePoolsResult, __M * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about device pools * ```javascript * // The following example returns information about the private device pools in a specific project. * const input = { - * "type": "PRIVATE", - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", + * type: "PRIVATE" * }; * const command = new ListDevicePoolsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "devicePools": [ + * devicePools: [ * { - * "name": "Top Devices", - * "arn": "arn:aws:devicefarm:us-west-2::devicepool:082d10e5-d7d7-48a5-ba5c-12345EXAMPLE", - * "description": "Top devices", - * "rules": [ + * arn: "arn:aws:devicefarm:us-west-2::devicepool:082d10e5-d7d7-48a5-ba5c-12345EXAMPLE", + * description: "Top devices", + * name: "Top Devices", + * rules: [ * { - * "value": "[\"arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE\",\"arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE\",\"arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE\",\"arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE\",\"arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE\",\"arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE\",\"arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE\",\"arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE\",\"arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE\",\"arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE\"]", - * "attribute": "ARN", - * "operator": "IN" + * attribute: "ARN", + * operator: "IN", + * value: `["arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE"]` * } * ] * }, * { - * "name": "My Android Device Pool", - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:devicepool:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/bf96e75a-28f6-4e61-b6a7-12345EXAMPLE", - * "description": "Samsung Galaxy Android devices", - * "rules": [ + * arn: "arn:aws:devicefarm:us-west-2:123456789101:devicepool:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/bf96e75a-28f6-4e61-b6a7-12345EXAMPLE", + * description: "Samsung Galaxy Android devices", + * name: "My Android Device Pool", + * rules: [ * { - * "value": "[\"arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE\",\"arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE\",\"arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE\"]", - * "attribute": "ARN", - * "operator": "IN" + * attribute: "ARN", + * operator: "IN", + * value: `["arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE"]` * } * ] * } * ] * } * *\/ - * // example id: to-get-information-about-device-pools-1471635745170 * ``` * + * @public */ export class ListDevicePoolsCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListDevicesCommand.ts b/clients/client-device-farm/src/commands/ListDevicesCommand.ts index b2c176f8b6877..2bda457428904 100644 --- a/clients/client-device-farm/src/commands/ListDevicesCommand.ts +++ b/clients/client-device-farm/src/commands/ListDevicesCommand.ts @@ -129,18 +129,21 @@ export interface ListDevicesCommandOutput extends ListDevicesResult, __MetadataB * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about devices * ```javascript * // The following example returns information about the available devices in a specific project. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456" * }; * const command = new ListDevicesCommand(input); - * await client.send(command); - * // example id: to-get-information-about-devices-1471641699344 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class ListDevicesCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListInstanceProfilesCommand.ts b/clients/client-device-farm/src/commands/ListInstanceProfilesCommand.ts index f3c0bfce9501c..5d18c90b7ca00 100644 --- a/clients/client-device-farm/src/commands/ListInstanceProfilesCommand.ts +++ b/clients/client-device-farm/src/commands/ListInstanceProfilesCommand.ts @@ -80,6 +80,7 @@ export interface ListInstanceProfilesCommandOutput extends ListInstanceProfilesR * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class ListInstanceProfilesCommand extends $Command diff --git a/clients/client-device-farm/src/commands/ListJobsCommand.ts b/clients/client-device-farm/src/commands/ListJobsCommand.ts index 7a6164756e0b6..cd9687915615c 100644 --- a/clients/client-device-farm/src/commands/ListJobsCommand.ts +++ b/clients/client-device-farm/src/commands/ListJobsCommand.ts @@ -148,18 +148,21 @@ export interface ListJobsCommandOutput extends ListJobsResult, __MetadataBearer * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about jobs * ```javascript * // The following example returns information about jobs in a specific project. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456" * }; * const command = new ListJobsCommand(input); - * await client.send(command); - * // example id: to-get-information-about-jobs-1471642228071 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ListJobsCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListNetworkProfilesCommand.ts b/clients/client-device-farm/src/commands/ListNetworkProfilesCommand.ts index e3b84734e4179..e34f113c085a8 100644 --- a/clients/client-device-farm/src/commands/ListNetworkProfilesCommand.ts +++ b/clients/client-device-farm/src/commands/ListNetworkProfilesCommand.ts @@ -85,6 +85,7 @@ export interface ListNetworkProfilesCommandOutput extends ListNetworkProfilesRes * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class ListNetworkProfilesCommand extends $Command diff --git a/clients/client-device-farm/src/commands/ListOfferingPromotionsCommand.ts b/clients/client-device-farm/src/commands/ListOfferingPromotionsCommand.ts index 2e89cce770ef3..da59fdfd5b48c 100644 --- a/clients/client-device-farm/src/commands/ListOfferingPromotionsCommand.ts +++ b/clients/client-device-farm/src/commands/ListOfferingPromotionsCommand.ts @@ -79,6 +79,7 @@ export interface ListOfferingPromotionsCommandOutput extends ListOfferingPromoti * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class ListOfferingPromotionsCommand extends $Command diff --git a/clients/client-device-farm/src/commands/ListOfferingTransactionsCommand.ts b/clients/client-device-farm/src/commands/ListOfferingTransactionsCommand.ts index bfc8a3c5437f4..1cb28661801bd 100644 --- a/clients/client-device-farm/src/commands/ListOfferingTransactionsCommand.ts +++ b/clients/client-device-farm/src/commands/ListOfferingTransactionsCommand.ts @@ -105,100 +105,8 @@ export interface ListOfferingTransactionsCommandOutput extends ListOfferingTrans * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public - * @example To get information about device offering transactions - * ```javascript - * // The following example returns information about Device Farm offering transactions. - * const input = { - * "nextToken": "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE=" - * }; - * const command = new ListOfferingTransactionsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "offeringTransactions": [ - * { - * "cost": { - * "amount": 0, - * "currencyCode": "USD" - * }, - * "createdOn": "1470021420", - * "offeringStatus": { - * "type": "RENEW", - * "effectiveOn": "1472688000", - * "offering": { - * "type": "RECURRING", - * "description": "Android Remote Access Unmetered Device Slot", - * "id": "D68B3C05-1BA6-4360-BC69-12345EXAMPLE", - * "platform": "ANDROID" - * }, - * "quantity": 0 - * }, - * "transactionId": "03728003-d1ea-4851-abd6-12345EXAMPLE" - * }, - * { - * "cost": { - * "amount": 250, - * "currencyCode": "USD" - * }, - * "createdOn": "1470021420", - * "offeringStatus": { - * "type": "PURCHASE", - * "effectiveOn": "1470021420", - * "offering": { - * "type": "RECURRING", - * "description": "Android Remote Access Unmetered Device Slot", - * "id": "D68B3C05-1BA6-4360-BC69-12345EXAMPLE", - * "platform": "ANDROID" - * }, - * "quantity": 1 - * }, - * "transactionId": "56820b6e-06bd-473a-8ff8-12345EXAMPLE" - * }, - * { - * "cost": { - * "amount": 175, - * "currencyCode": "USD" - * }, - * "createdOn": "1465538520", - * "offeringStatus": { - * "type": "PURCHASE", - * "effectiveOn": "1465538520", - * "offering": { - * "type": "RECURRING", - * "description": "Android Unmetered Device Slot", - * "id": "8980F81C-00D7-469D-8EC6-12345EXAMPLE", - * "platform": "ANDROID" - * }, - * "quantity": 1 - * }, - * "transactionId": "953ae2c6-d760-4a04-9597-12345EXAMPLE" - * }, - * { - * "cost": { - * "amount": 8.07, - * "currencyCode": "USD" - * }, - * "createdOn": "1459344300", - * "offeringStatus": { - * "type": "PURCHASE", - * "effectiveOn": "1459344300", - * "offering": { - * "type": "RECURRING", - * "description": "iOS Unmetered Device Slot", - * "id": "A53D4D73-A6F6-4B82-A0B0-12345EXAMPLE", - * "platform": "IOS" - * }, - * "quantity": 1 - * }, - * "transactionId": "2baf9021-ae3e-47f5-ab52-12345EXAMPLE" - * } - * ] - * } - * *\/ - * // example id: to-get-information-about-device-offering-transactions-1472561712315 - * ``` * + * @public */ export class ListOfferingTransactionsCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListOfferingsCommand.ts b/clients/client-device-farm/src/commands/ListOfferingsCommand.ts index ce6054de61e4f..34d35796fe30d 100644 --- a/clients/client-device-farm/src/commands/ListOfferingsCommand.ts +++ b/clients/client-device-farm/src/commands/ListOfferingsCommand.ts @@ -91,84 +91,84 @@ export interface ListOfferingsCommandOutput extends ListOfferingsResult, __Metad * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about device offerings * ```javascript * // The following example returns information about available device offerings. * const input = { - * "nextToken": "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE=" + * nextToken: "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE=" * }; * const command = new ListOfferingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "offerings": [ + * offerings: [ * { - * "type": "RECURRING", - * "description": "iOS Unmetered Device Slot", - * "id": "A53D4D73-A6F6-4B82-A0B0-12345EXAMPLE", - * "platform": "IOS", - * "recurringCharges": [ + * description: "iOS Unmetered Device Slot", + * id: "A53D4D73-A6F6-4B82-A0B0-12345EXAMPLE", + * platform: "IOS", + * recurringCharges: [ * { - * "cost": { - * "amount": 250, - * "currencyCode": "USD" + * cost: { + * amount: 250, + * currencyCode: "USD" * }, - * "frequency": "MONTHLY" + * frequency: "MONTHLY" * } - * ] + * ], + * type: "RECURRING" * }, * { - * "type": "RECURRING", - * "description": "Android Unmetered Device Slot", - * "id": "8980F81C-00D7-469D-8EC6-12345EXAMPLE", - * "platform": "ANDROID", - * "recurringCharges": [ + * description: "Android Unmetered Device Slot", + * id: "8980F81C-00D7-469D-8EC6-12345EXAMPLE", + * platform: "ANDROID", + * recurringCharges: [ * { - * "cost": { - * "amount": 250, - * "currencyCode": "USD" + * cost: { + * amount: 250, + * currencyCode: "USD" * }, - * "frequency": "MONTHLY" + * frequency: "MONTHLY" * } - * ] + * ], + * type: "RECURRING" * }, * { - * "type": "RECURRING", - * "description": "Android Remote Access Unmetered Device Slot", - * "id": "D68B3C05-1BA6-4360-BC69-12345EXAMPLE", - * "platform": "ANDROID", - * "recurringCharges": [ + * description: "Android Remote Access Unmetered Device Slot", + * id: "D68B3C05-1BA6-4360-BC69-12345EXAMPLE", + * platform: "ANDROID", + * recurringCharges: [ * { - * "cost": { - * "amount": 250, - * "currencyCode": "USD" + * cost: { + * amount: 250, + * currencyCode: "USD" * }, - * "frequency": "MONTHLY" + * frequency: "MONTHLY" * } - * ] + * ], + * type: "RECURRING" * }, * { - * "type": "RECURRING", - * "description": "iOS Remote Access Unmetered Device Slot", - * "id": "552B4DAD-A6C9-45C4-94FB-12345EXAMPLE", - * "platform": "IOS", - * "recurringCharges": [ + * description: "iOS Remote Access Unmetered Device Slot", + * id: "552B4DAD-A6C9-45C4-94FB-12345EXAMPLE", + * platform: "IOS", + * recurringCharges: [ * { - * "cost": { - * "amount": 250, - * "currencyCode": "USD" + * cost: { + * amount: 250, + * currencyCode: "USD" * }, - * "frequency": "MONTHLY" + * frequency: "MONTHLY" * } - * ] + * ], + * type: "RECURRING" * } * ] * } * *\/ - * // example id: to-get-information-about-device-offerings-1472562810999 * ``` * + * @public */ export class ListOfferingsCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListProjectsCommand.ts b/clients/client-device-farm/src/commands/ListProjectsCommand.ts index 755c530f48920..ca3afd284cf97 100644 --- a/clients/client-device-farm/src/commands/ListProjectsCommand.ts +++ b/clients/client-device-farm/src/commands/ListProjectsCommand.ts @@ -85,35 +85,8 @@ export interface ListProjectsCommandOutput extends ListProjectsResult, __Metadat * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public - * @example To get information about a Device Farm project - * ```javascript - * // The following example returns information about the specified project in Device Farm. - * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:7ad300ed-8183-41a7-bf94-12345EXAMPLE", - * "nextToken": "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE" - * }; - * const command = new ListProjectsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "projects": [ - * { - * "name": "My Test Project", - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:7ad300ed-8183-41a7-bf94-12345EXAMPLE", - * "created": "1453163262.105" - * }, - * { - * "name": "Hello World", - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:d6b087d9-56db-4e44-b9ec-12345EXAMPLE", - * "created": "1470350112.439" - * } - * ] - * } - * *\/ - * // example id: to-get-information-about-a-device-farm-project-1472564014388 - * ``` * + * @public */ export class ListProjectsCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListRemoteAccessSessionsCommand.ts b/clients/client-device-farm/src/commands/ListRemoteAccessSessionsCommand.ts index 14d42e6a803a5..1237270dd277e 100644 --- a/clients/client-device-farm/src/commands/ListRemoteAccessSessionsCommand.ts +++ b/clients/client-device-farm/src/commands/ListRemoteAccessSessionsCommand.ts @@ -159,24 +159,24 @@ export interface ListRemoteAccessSessionsCommandOutput extends ListRemoteAccessS * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about a remote access session * ```javascript * // The following example returns information about a specific Device Farm remote access session. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456", - * "nextToken": "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE=" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456", + * nextToken: "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE=" * }; * const command = new ListRemoteAccessSessionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "remoteAccessSessions": [] + * remoteAccessSessions: [] * } * *\/ - * // example id: to-get-information-about-a-remote-access-session-1472581144803 * ``` * + * @public */ export class ListRemoteAccessSessionsCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListRunsCommand.ts b/clients/client-device-farm/src/commands/ListRunsCommand.ts index 1bccc6dc2873b..58a54811525b8 100644 --- a/clients/client-device-farm/src/commands/ListRunsCommand.ts +++ b/clients/client-device-farm/src/commands/ListRunsCommand.ts @@ -171,50 +171,8 @@ export interface ListRunsCommandOutput extends ListRunsResult, __MetadataBearer * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public - * @example To get information about a test run - * ```javascript - * // The following example returns information about a specific test run. - * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:run:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/0fcac17b-6122-44d7-ae5a-12345EXAMPLE", - * "nextToken": "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE" - * }; - * const command = new ListRunsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "runs": [ - * { - * "name": "My Test Run", - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:run:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/0fcac17b-6122-44d7-ae5a-12345EXAMPLE", - * "billingMethod": "METERED", - * "completedJobs": 0, - * "counters": { - * "errored": 0, - * "failed": 0, - * "passed": 0, - * "skipped": 0, - * "stopped": 0, - * "total": 0, - * "warned": 0 - * }, - * "created": "1472667509.852", - * "deviceMinutes": { - * "metered": 0, - * "total": 0, - * "unmetered": 0 - * }, - * "platform": "ANDROID", - * "result": "PENDING", - * "status": "RUNNING", - * "totalJobs": 3 - * } - * ] - * } - * *\/ - * // example id: to-get-information-about-test-runs-1472582711069 - * ``` * + * @public */ export class ListRunsCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListSamplesCommand.ts b/clients/client-device-farm/src/commands/ListSamplesCommand.ts index 1fbaac7694a3a..1771cb79c6149 100644 --- a/clients/client-device-farm/src/commands/ListSamplesCommand.ts +++ b/clients/client-device-farm/src/commands/ListSamplesCommand.ts @@ -75,24 +75,24 @@ export interface ListSamplesCommandOutput extends ListSamplesResult, __MetadataB * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about samples * ```javascript * // The following example returns information about samples, given a specific Device Farm project. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", - * "nextToken": "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", + * nextToken: "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE" * }; * const command = new ListSamplesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "samples": [] + * samples: [] * } * *\/ - * // example id: to-get-information-about-samples-1472582847534 * ``` * + * @public */ export class ListSamplesCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListSuitesCommand.ts b/clients/client-device-farm/src/commands/ListSuitesCommand.ts index 494252e07bc0f..d3955d5b3ac31 100644 --- a/clients/client-device-farm/src/commands/ListSuitesCommand.ts +++ b/clients/client-device-farm/src/commands/ListSuitesCommand.ts @@ -95,24 +95,24 @@ export interface ListSuitesCommandOutput extends ListSuitesResult, __MetadataBea * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about suites * ```javascript * // The following example returns information about suites, given a specific Device Farm job. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:job:EXAMPLE-GUID-123-456", - * "nextToken": "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:job:EXAMPLE-GUID-123-456", + * nextToken: "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE" * }; * const command = new ListSuitesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "suites": [] + * suites: [] * } * *\/ - * // example id: to-get-information-about-suites-1472583038218 * ``` * + * @public */ export class ListSuitesCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListTagsForResourceCommand.ts b/clients/client-device-farm/src/commands/ListTagsForResourceCommand.ts index e1956b07b445e..b830533f7ce64 100644 --- a/clients/client-device-farm/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-device-farm/src/commands/ListTagsForResourceCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-device-farm/src/commands/ListTestGridProjectsCommand.ts b/clients/client-device-farm/src/commands/ListTestGridProjectsCommand.ts index 47515728036a4..3ec1eac4bb569 100644 --- a/clients/client-device-farm/src/commands/ListTestGridProjectsCommand.ts +++ b/clients/client-device-farm/src/commands/ListTestGridProjectsCommand.ts @@ -80,6 +80,7 @@ export interface ListTestGridProjectsCommandOutput extends ListTestGridProjectsR * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class ListTestGridProjectsCommand extends $Command diff --git a/clients/client-device-farm/src/commands/ListTestGridSessionActionsCommand.ts b/clients/client-device-farm/src/commands/ListTestGridSessionActionsCommand.ts index 06309dba3584a..1f8c99436e937 100644 --- a/clients/client-device-farm/src/commands/ListTestGridSessionActionsCommand.ts +++ b/clients/client-device-farm/src/commands/ListTestGridSessionActionsCommand.ts @@ -76,6 +76,7 @@ export interface ListTestGridSessionActionsCommandOutput extends ListTestGridSes * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class ListTestGridSessionActionsCommand extends $Command diff --git a/clients/client-device-farm/src/commands/ListTestGridSessionArtifactsCommand.ts b/clients/client-device-farm/src/commands/ListTestGridSessionArtifactsCommand.ts index 0fd30df3bd0eb..4096a8050b1c2 100644 --- a/clients/client-device-farm/src/commands/ListTestGridSessionArtifactsCommand.ts +++ b/clients/client-device-farm/src/commands/ListTestGridSessionArtifactsCommand.ts @@ -84,6 +84,7 @@ export interface ListTestGridSessionArtifactsCommandOutput * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class ListTestGridSessionArtifactsCommand extends $Command diff --git a/clients/client-device-farm/src/commands/ListTestGridSessionsCommand.ts b/clients/client-device-farm/src/commands/ListTestGridSessionsCommand.ts index ffebe423c6a08..7fb3db6e873fa 100644 --- a/clients/client-device-farm/src/commands/ListTestGridSessionsCommand.ts +++ b/clients/client-device-farm/src/commands/ListTestGridSessionsCommand.ts @@ -82,6 +82,7 @@ export interface ListTestGridSessionsCommandOutput extends ListTestGridSessionsR * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class ListTestGridSessionsCommand extends $Command diff --git a/clients/client-device-farm/src/commands/ListTestsCommand.ts b/clients/client-device-farm/src/commands/ListTestsCommand.ts index 1031007077625..a9c4952949ff0 100644 --- a/clients/client-device-farm/src/commands/ListTestsCommand.ts +++ b/clients/client-device-farm/src/commands/ListTestsCommand.ts @@ -95,24 +95,24 @@ export interface ListTestsCommandOutput extends ListTestsResult, __MetadataBeare * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about tests * ```javascript * // The following example returns information about tests, given a specific Device Farm project. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", - * "nextToken": "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", + * nextToken: "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE" * }; * const command = new ListTestsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "tests": [] + * tests: [] * } * *\/ - * // example id: to-get-information-about-tests-1472617372212 * ``` * + * @public */ export class ListTestsCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListUniqueProblemsCommand.ts b/clients/client-device-farm/src/commands/ListUniqueProblemsCommand.ts index f5c4c71b9e720..30127172e803d 100644 --- a/clients/client-device-farm/src/commands/ListUniqueProblemsCommand.ts +++ b/clients/client-device-farm/src/commands/ListUniqueProblemsCommand.ts @@ -151,24 +151,24 @@ export interface ListUniqueProblemsCommandOutput extends ListUniqueProblemsResul * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about unique problems * ```javascript * // The following example returns information about unique problems, given a specific Device Farm project. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", - * "nextToken": "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", + * nextToken: "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE" * }; * const command = new ListUniqueProblemsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "uniqueProblems": {} + * uniqueProblems: { /* empty *\/ } * } * *\/ - * // example id: to-get-information-about-unique-problems-1472617781008 * ``` * + * @public */ export class ListUniqueProblemsCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListUploadsCommand.ts b/clients/client-device-farm/src/commands/ListUploadsCommand.ts index 06e7686c760a4..0a9edf42042ab 100644 --- a/clients/client-device-farm/src/commands/ListUploadsCommand.ts +++ b/clients/client-device-farm/src/commands/ListUploadsCommand.ts @@ -83,24 +83,24 @@ export interface ListUploadsCommandOutput extends ListUploadsResult, __MetadataB * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To get information about uploads * ```javascript * // The following example returns information about uploads, given a specific Device Farm project. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", - * "nextToken": "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", + * nextToken: "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE" * }; * const command = new ListUploadsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "uploads": [] + * uploads: [] * } * *\/ - * // example id: to-get-information-about-uploads-1472617943090 * ``` * + * @public */ export class ListUploadsCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ListVPCEConfigurationsCommand.ts b/clients/client-device-farm/src/commands/ListVPCEConfigurationsCommand.ts index ab290b693a893..78401e7fe7a12 100644 --- a/clients/client-device-farm/src/commands/ListVPCEConfigurationsCommand.ts +++ b/clients/client-device-farm/src/commands/ListVPCEConfigurationsCommand.ts @@ -72,6 +72,7 @@ export interface ListVPCEConfigurationsCommandOutput extends ListVPCEConfigurati * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class ListVPCEConfigurationsCommand extends $Command diff --git a/clients/client-device-farm/src/commands/PurchaseOfferingCommand.ts b/clients/client-device-farm/src/commands/PurchaseOfferingCommand.ts index 4378e22949417..ce98aa5e26752 100644 --- a/clients/client-device-farm/src/commands/PurchaseOfferingCommand.ts +++ b/clients/client-device-farm/src/commands/PurchaseOfferingCommand.ts @@ -104,42 +104,8 @@ export interface PurchaseOfferingCommandOutput extends PurchaseOfferingResult, _ * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public - * @example To purchase a device slot offering - * ```javascript - * // The following example purchases a specific device slot offering. - * const input = { - * "offeringId": "D68B3C05-1BA6-4360-BC69-12345EXAMPLE", - * "quantity": 1 - * }; - * const command = new PurchaseOfferingCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "offeringTransaction": { - * "cost": { - * "amount": 8.07, - * "currencyCode": "USD" - * }, - * "createdOn": "1472648340", - * "offeringStatus": { - * "type": "PURCHASE", - * "effectiveOn": "1472648340", - * "offering": { - * "type": "RECURRING", - * "description": "Android Remote Access Unmetered Device Slot", - * "id": "D68B3C05-1BA6-4360-BC69-12345EXAMPLE", - * "platform": "ANDROID" - * }, - * "quantity": 1 - * }, - * "transactionId": "d30614ed-1b03-404c-9893-12345EXAMPLE" - * } - * } - * *\/ - * // example id: to-purchase-a-device-slot-offering-1472648146343 - * ``` * + * @public */ export class PurchaseOfferingCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/RenewOfferingCommand.ts b/clients/client-device-farm/src/commands/RenewOfferingCommand.ts index 62775b1b8053e..9b13b2acec3c8 100644 --- a/clients/client-device-farm/src/commands/RenewOfferingCommand.ts +++ b/clients/client-device-farm/src/commands/RenewOfferingCommand.ts @@ -102,42 +102,8 @@ export interface RenewOfferingCommandOutput extends RenewOfferingResult, __Metad * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public - * @example To renew a device slot offering - * ```javascript - * // The following example renews a specific device slot offering. - * const input = { - * "offeringId": "D68B3C05-1BA6-4360-BC69-12345EXAMPLE", - * "quantity": 1 - * }; - * const command = new RenewOfferingCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "offeringTransaction": { - * "cost": { - * "amount": 250, - * "currencyCode": "USD" - * }, - * "createdOn": "1472648880", - * "offeringStatus": { - * "type": "RENEW", - * "effectiveOn": "1472688000", - * "offering": { - * "type": "RECURRING", - * "description": "Android Remote Access Unmetered Device Slot", - * "id": "D68B3C05-1BA6-4360-BC69-12345EXAMPLE", - * "platform": "ANDROID" - * }, - * "quantity": 1 - * }, - * "transactionId": "e90f1405-8c35-4561-be43-12345EXAMPLE" - * } - * } - * *\/ - * // example id: to-renew-a-device-slot-offering-1472648899785 - * ``` * + * @public */ export class RenewOfferingCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/ScheduleRunCommand.ts b/clients/client-device-farm/src/commands/ScheduleRunCommand.ts index cc0edc2d3646c..68a1011a6871a 100644 --- a/clients/client-device-farm/src/commands/ScheduleRunCommand.ts +++ b/clients/client-device-farm/src/commands/ScheduleRunCommand.ts @@ -238,29 +238,29 @@ export interface ScheduleRunCommandOutput extends ScheduleRunResult, __MetadataB * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To schedule a test run * ```javascript * // The following example schedules a test run named MyRun. * const input = { - * "name": "MyRun", - * "devicePoolArn": "arn:aws:devicefarm:us-west-2:123456789101:pool:EXAMPLE-GUID-123-456", - * "projectArn": "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", - * "test": { - * "type": "APPIUM_JAVA_JUNIT", - * "testPackageArn": "arn:aws:devicefarm:us-west-2:123456789101:test:EXAMPLE-GUID-123-456" + * devicePoolArn: "arn:aws:devicefarm:us-west-2:123456789101:pool:EXAMPLE-GUID-123-456", + * name: "MyRun", + * projectArn: "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", + * test: { + * testPackageArn: "arn:aws:devicefarm:us-west-2:123456789101:test:EXAMPLE-GUID-123-456", + * type: "APPIUM_JAVA_JUNIT" * } * }; * const command = new ScheduleRunCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "run": {} + * run: { /* empty *\/ } * } * *\/ - * // example id: to-schedule-a-test-run-1472652429636 * ``` * + * @public */ export class ScheduleRunCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/StopJobCommand.ts b/clients/client-device-farm/src/commands/StopJobCommand.ts index 99db16f5cef0b..0e2defc8b9a9c 100644 --- a/clients/client-device-farm/src/commands/StopJobCommand.ts +++ b/clients/client-device-farm/src/commands/StopJobCommand.ts @@ -147,6 +147,7 @@ export interface StopJobCommandOutput extends StopJobResult, __MetadataBearer {} * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class StopJobCommand extends $Command diff --git a/clients/client-device-farm/src/commands/StopRemoteAccessSessionCommand.ts b/clients/client-device-farm/src/commands/StopRemoteAccessSessionCommand.ts index 380a174228aa0..ee419919c5f7d 100644 --- a/clients/client-device-farm/src/commands/StopRemoteAccessSessionCommand.ts +++ b/clients/client-device-farm/src/commands/StopRemoteAccessSessionCommand.ts @@ -155,6 +155,7 @@ export interface StopRemoteAccessSessionCommandOutput extends StopRemoteAccessSe * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class StopRemoteAccessSessionCommand extends $Command diff --git a/clients/client-device-farm/src/commands/StopRunCommand.ts b/clients/client-device-farm/src/commands/StopRunCommand.ts index a45d8d4d9c70d..b25f3d1cb338d 100644 --- a/clients/client-device-farm/src/commands/StopRunCommand.ts +++ b/clients/client-device-farm/src/commands/StopRunCommand.ts @@ -170,23 +170,23 @@ export interface StopRunCommandOutput extends StopRunResult, __MetadataBearer {} * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To stop a test run * ```javascript * // The following example stops a specific test run. * const input = { - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:run:EXAMPLE-GUID-123-456" + * arn: "arn:aws:devicefarm:us-west-2:123456789101:run:EXAMPLE-GUID-123-456" * }; * const command = new StopRunCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "run": {} + * run: { /* empty *\/ } * } * *\/ - * // example id: to-stop-a-test-run-1472653770340 * ``` * + * @public */ export class StopRunCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/TagResourceCommand.ts b/clients/client-device-farm/src/commands/TagResourceCommand.ts index d6cfeb41f37d7..d79c0eba8a7de 100644 --- a/clients/client-device-farm/src/commands/TagResourceCommand.ts +++ b/clients/client-device-farm/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-device-farm/src/commands/UntagResourceCommand.ts b/clients/client-device-farm/src/commands/UntagResourceCommand.ts index 460a39ebfb181..c858e749906b6 100644 --- a/clients/client-device-farm/src/commands/UntagResourceCommand.ts +++ b/clients/client-device-farm/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-device-farm/src/commands/UpdateDeviceInstanceCommand.ts b/clients/client-device-farm/src/commands/UpdateDeviceInstanceCommand.ts index 6a49f3edbaa48..e3fba067bff20 100644 --- a/clients/client-device-farm/src/commands/UpdateDeviceInstanceCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateDeviceInstanceCommand.ts @@ -89,6 +89,7 @@ export interface UpdateDeviceInstanceCommandOutput extends UpdateDeviceInstanceR * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class UpdateDeviceInstanceCommand extends $Command diff --git a/clients/client-device-farm/src/commands/UpdateDevicePoolCommand.ts b/clients/client-device-farm/src/commands/UpdateDevicePoolCommand.ts index 48ffad1376361..fba9595101455 100644 --- a/clients/client-device-farm/src/commands/UpdateDevicePoolCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateDevicePoolCommand.ts @@ -93,32 +93,32 @@ export interface UpdateDevicePoolCommandOutput extends UpdateDevicePoolResult, _ * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public + * * @example To update a device pool * ```javascript * // The following example updates the specified device pool with a new name and description. It also enables remote access of devices in the device pool. * const input = { - * "name": "NewName", - * "arn": "arn:aws:devicefarm:us-west-2::devicepool:082d10e5-d7d7-48a5-ba5c-12345EXAMPLE", - * "description": "NewDescription", - * "rules": [ + * arn: "arn:aws:devicefarm:us-west-2::devicepool:082d10e5-d7d7-48a5-ba5c-12345EXAMPLE", + * description: "NewDescription", + * name: "NewName", + * rules: [ * { - * "value": "True", - * "attribute": "REMOTE_ACCESS_ENABLED", - * "operator": "EQUALS" + * attribute: "REMOTE_ACCESS_ENABLED", + * operator: "EQUALS", + * value: "True" * } * ] * }; * const command = new UpdateDevicePoolCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "devicePool": {} + * devicePool: { /* empty *\/ } * } * *\/ - * // example id: to-update-a-device-pool-1472653887677 * ``` * + * @public */ export class UpdateDevicePoolCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/UpdateInstanceProfileCommand.ts b/clients/client-device-farm/src/commands/UpdateInstanceProfileCommand.ts index 7cadb8b9ecf0f..c1b760cdad3e5 100644 --- a/clients/client-device-farm/src/commands/UpdateInstanceProfileCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateInstanceProfileCommand.ts @@ -83,6 +83,7 @@ export interface UpdateInstanceProfileCommandOutput extends UpdateInstanceProfil * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class UpdateInstanceProfileCommand extends $Command diff --git a/clients/client-device-farm/src/commands/UpdateNetworkProfileCommand.ts b/clients/client-device-farm/src/commands/UpdateNetworkProfileCommand.ts index 97091b360e9b2..2e367f1296d3e 100644 --- a/clients/client-device-farm/src/commands/UpdateNetworkProfileCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateNetworkProfileCommand.ts @@ -91,6 +91,7 @@ export interface UpdateNetworkProfileCommandOutput extends UpdateNetworkProfileR * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class UpdateNetworkProfileCommand extends $Command diff --git a/clients/client-device-farm/src/commands/UpdateProjectCommand.ts b/clients/client-device-farm/src/commands/UpdateProjectCommand.ts index f7467cbd71d05..8349021b338a6 100644 --- a/clients/client-device-farm/src/commands/UpdateProjectCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateProjectCommand.ts @@ -93,28 +93,8 @@ export interface UpdateProjectCommandOutput extends UpdateProjectResult, __Metad * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* - * @public - * @example To update a device pool - * ```javascript - * // The following example updates the specified project with a new name. - * const input = { - * "name": "NewName", - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:8f75187d-101e-4625-accc-12345EXAMPLE" - * }; - * const command = new UpdateProjectCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "project": { - * "name": "NewName", - * "arn": "arn:aws:devicefarm:us-west-2:123456789101:project:8f75187d-101e-4625-accc-12345EXAMPLE", - * "created": "1448400709.927" - * } - * } - * *\/ - * // example id: to-update-a-device-pool-1472653887677 - * ``` * + * @public */ export class UpdateProjectCommand extends $Command .classBuilder< diff --git a/clients/client-device-farm/src/commands/UpdateTestGridProjectCommand.ts b/clients/client-device-farm/src/commands/UpdateTestGridProjectCommand.ts index 9a974771dcf38..3ed7e6134680a 100644 --- a/clients/client-device-farm/src/commands/UpdateTestGridProjectCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateTestGridProjectCommand.ts @@ -93,6 +93,7 @@ export interface UpdateTestGridProjectCommandOutput extends UpdateTestGridProjec * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class UpdateTestGridProjectCommand extends $Command diff --git a/clients/client-device-farm/src/commands/UpdateUploadCommand.ts b/clients/client-device-farm/src/commands/UpdateUploadCommand.ts index 2b86ded4c38b0..57d00dfd85166 100644 --- a/clients/client-device-farm/src/commands/UpdateUploadCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateUploadCommand.ts @@ -81,6 +81,7 @@ export interface UpdateUploadCommandOutput extends UpdateUploadResult, __Metadat * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class UpdateUploadCommand extends $Command diff --git a/clients/client-device-farm/src/commands/UpdateVPCEConfigurationCommand.ts b/clients/client-device-farm/src/commands/UpdateVPCEConfigurationCommand.ts index be0443c2ea1b4..3a36e9a5206a6 100644 --- a/clients/client-device-farm/src/commands/UpdateVPCEConfigurationCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateVPCEConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface UpdateVPCEConfigurationCommandOutput extends UpdateVPCEConfigur * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* + * * @public */ export class UpdateVPCEConfigurationCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/AddNotificationChannelCommand.ts b/clients/client-devops-guru/src/commands/AddNotificationChannelCommand.ts index ef114d67c752c..6b85afb217d5e 100644 --- a/clients/client-devops-guru/src/commands/AddNotificationChannelCommand.ts +++ b/clients/client-devops-guru/src/commands/AddNotificationChannelCommand.ts @@ -100,6 +100,7 @@ export interface AddNotificationChannelCommandOutput extends AddNotificationChan * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class AddNotificationChannelCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/DeleteInsightCommand.ts b/clients/client-devops-guru/src/commands/DeleteInsightCommand.ts index 087364d95d8f5..c5f64a5d10d3f 100644 --- a/clients/client-devops-guru/src/commands/DeleteInsightCommand.ts +++ b/clients/client-devops-guru/src/commands/DeleteInsightCommand.ts @@ -75,6 +75,7 @@ export interface DeleteInsightCommandOutput extends DeleteInsightResponse, __Met * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class DeleteInsightCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/DescribeAccountHealthCommand.ts b/clients/client-devops-guru/src/commands/DescribeAccountHealthCommand.ts index a8846562fbdd7..404952f7f8135 100644 --- a/clients/client-devops-guru/src/commands/DescribeAccountHealthCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeAccountHealthCommand.ts @@ -75,6 +75,7 @@ export interface DescribeAccountHealthCommandOutput extends DescribeAccountHealt * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class DescribeAccountHealthCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/DescribeAccountOverviewCommand.ts b/clients/client-devops-guru/src/commands/DescribeAccountOverviewCommand.ts index ddaecc3c4c705..96da0fdf4847c 100644 --- a/clients/client-devops-guru/src/commands/DescribeAccountOverviewCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeAccountOverviewCommand.ts @@ -76,6 +76,7 @@ export interface DescribeAccountOverviewCommandOutput extends DescribeAccountOve * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class DescribeAccountOverviewCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/DescribeAnomalyCommand.ts b/clients/client-devops-guru/src/commands/DescribeAnomalyCommand.ts index 2be51bae65d5c..20e054b5f5a0b 100644 --- a/clients/client-devops-guru/src/commands/DescribeAnomalyCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeAnomalyCommand.ts @@ -324,6 +324,7 @@ export interface DescribeAnomalyCommandOutput extends DescribeAnomalyResponse, _ * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class DescribeAnomalyCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/DescribeEventSourcesConfigCommand.ts b/clients/client-devops-guru/src/commands/DescribeEventSourcesConfigCommand.ts index ee491823ed342..d56c2526fce36 100644 --- a/clients/client-devops-guru/src/commands/DescribeEventSourcesConfigCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeEventSourcesConfigCommand.ts @@ -76,6 +76,7 @@ export interface DescribeEventSourcesConfigCommandOutput extends DescribeEventSo * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class DescribeEventSourcesConfigCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/DescribeFeedbackCommand.ts b/clients/client-devops-guru/src/commands/DescribeFeedbackCommand.ts index b2fffbc3a84f5..9697a0217251c 100644 --- a/clients/client-devops-guru/src/commands/DescribeFeedbackCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeFeedbackCommand.ts @@ -78,6 +78,7 @@ export interface DescribeFeedbackCommandOutput extends DescribeFeedbackResponse, * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class DescribeFeedbackCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/DescribeInsightCommand.ts b/clients/client-devops-guru/src/commands/DescribeInsightCommand.ts index c083ac4d9cc1f..9f8e6b6c5e91a 100644 --- a/clients/client-devops-guru/src/commands/DescribeInsightCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeInsightCommand.ts @@ -132,6 +132,7 @@ export interface DescribeInsightCommandOutput extends DescribeInsightResponse, _ * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class DescribeInsightCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/DescribeOrganizationHealthCommand.ts b/clients/client-devops-guru/src/commands/DescribeOrganizationHealthCommand.ts index e1239bd385e75..5da35d970d146 100644 --- a/clients/client-devops-guru/src/commands/DescribeOrganizationHealthCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeOrganizationHealthCommand.ts @@ -80,6 +80,7 @@ export interface DescribeOrganizationHealthCommandOutput extends DescribeOrganiz * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class DescribeOrganizationHealthCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/DescribeOrganizationOverviewCommand.ts b/clients/client-devops-guru/src/commands/DescribeOrganizationOverviewCommand.ts index bef04c0d49ee6..07f23fa41c8ef 100644 --- a/clients/client-devops-guru/src/commands/DescribeOrganizationOverviewCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeOrganizationOverviewCommand.ts @@ -85,6 +85,7 @@ export interface DescribeOrganizationOverviewCommandOutput * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class DescribeOrganizationOverviewCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/DescribeOrganizationResourceCollectionHealthCommand.ts b/clients/client-devops-guru/src/commands/DescribeOrganizationResourceCollectionHealthCommand.ts index 0dfa4f9e5998f..a37ed996b8d99 100644 --- a/clients/client-devops-guru/src/commands/DescribeOrganizationResourceCollectionHealthCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeOrganizationResourceCollectionHealthCommand.ts @@ -132,6 +132,7 @@ export interface DescribeOrganizationResourceCollectionHealthCommandOutput * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class DescribeOrganizationResourceCollectionHealthCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/DescribeResourceCollectionHealthCommand.ts b/clients/client-devops-guru/src/commands/DescribeResourceCollectionHealthCommand.ts index b8fe4f99e58ab..f5b7483287cd5 100644 --- a/clients/client-devops-guru/src/commands/DescribeResourceCollectionHealthCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeResourceCollectionHealthCommand.ts @@ -114,6 +114,7 @@ export interface DescribeResourceCollectionHealthCommandOutput * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class DescribeResourceCollectionHealthCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/DescribeServiceIntegrationCommand.ts b/clients/client-devops-guru/src/commands/DescribeServiceIntegrationCommand.ts index cd61461fb82b2..bded7f166bf29 100644 --- a/clients/client-devops-guru/src/commands/DescribeServiceIntegrationCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeServiceIntegrationCommand.ts @@ -86,6 +86,7 @@ export interface DescribeServiceIntegrationCommandOutput extends DescribeService * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class DescribeServiceIntegrationCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/GetCostEstimationCommand.ts b/clients/client-devops-guru/src/commands/GetCostEstimationCommand.ts index 13ae1aa28aba6..6f27b8e226bb9 100644 --- a/clients/client-devops-guru/src/commands/GetCostEstimationCommand.ts +++ b/clients/client-devops-guru/src/commands/GetCostEstimationCommand.ts @@ -108,6 +108,7 @@ export interface GetCostEstimationCommandOutput extends GetCostEstimationRespons * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class GetCostEstimationCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/GetResourceCollectionCommand.ts b/clients/client-devops-guru/src/commands/GetResourceCollectionCommand.ts index 7809bf109ee6b..6a085872dd0fd 100644 --- a/clients/client-devops-guru/src/commands/GetResourceCollectionCommand.ts +++ b/clients/client-devops-guru/src/commands/GetResourceCollectionCommand.ts @@ -93,6 +93,7 @@ export interface GetResourceCollectionCommandOutput extends GetResourceCollectio * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class GetResourceCollectionCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/ListAnomaliesForInsightCommand.ts b/clients/client-devops-guru/src/commands/ListAnomaliesForInsightCommand.ts index ba15b951e5879..a970e35277062 100644 --- a/clients/client-devops-guru/src/commands/ListAnomaliesForInsightCommand.ts +++ b/clients/client-devops-guru/src/commands/ListAnomaliesForInsightCommand.ts @@ -343,6 +343,7 @@ export interface ListAnomaliesForInsightCommandOutput extends ListAnomaliesForIn * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class ListAnomaliesForInsightCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/ListAnomalousLogGroupsCommand.ts b/clients/client-devops-guru/src/commands/ListAnomalousLogGroupsCommand.ts index 2be3fb8b5a639..1ebd82757068d 100644 --- a/clients/client-devops-guru/src/commands/ListAnomalousLogGroupsCommand.ts +++ b/clients/client-devops-guru/src/commands/ListAnomalousLogGroupsCommand.ts @@ -102,6 +102,7 @@ export interface ListAnomalousLogGroupsCommandOutput extends ListAnomalousLogGro * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class ListAnomalousLogGroupsCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/ListEventsCommand.ts b/clients/client-devops-guru/src/commands/ListEventsCommand.ts index b238b6eb367c0..ba0161d51aaa6 100644 --- a/clients/client-devops-guru/src/commands/ListEventsCommand.ts +++ b/clients/client-devops-guru/src/commands/ListEventsCommand.ts @@ -134,6 +134,7 @@ export interface ListEventsCommandOutput extends ListEventsResponse, __MetadataB * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class ListEventsCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/ListInsightsCommand.ts b/clients/client-devops-guru/src/commands/ListInsightsCommand.ts index 7432a1b3a5939..cc90d4f747f6b 100644 --- a/clients/client-devops-guru/src/commands/ListInsightsCommand.ts +++ b/clients/client-devops-guru/src/commands/ListInsightsCommand.ts @@ -167,6 +167,7 @@ export interface ListInsightsCommandOutput extends ListInsightsResponse, __Metad * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class ListInsightsCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/ListMonitoredResourcesCommand.ts b/clients/client-devops-guru/src/commands/ListMonitoredResourcesCommand.ts index a6c8a6f3bee8e..2ff0bf67afdfd 100644 --- a/clients/client-devops-guru/src/commands/ListMonitoredResourcesCommand.ts +++ b/clients/client-devops-guru/src/commands/ListMonitoredResourcesCommand.ts @@ -100,6 +100,7 @@ export interface ListMonitoredResourcesCommandOutput extends ListMonitoredResour * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class ListMonitoredResourcesCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/ListNotificationChannelsCommand.ts b/clients/client-devops-guru/src/commands/ListNotificationChannelsCommand.ts index 789b252c8ce99..bf8bc478fc078 100644 --- a/clients/client-devops-guru/src/commands/ListNotificationChannelsCommand.ts +++ b/clients/client-devops-guru/src/commands/ListNotificationChannelsCommand.ts @@ -92,6 +92,7 @@ export interface ListNotificationChannelsCommandOutput extends ListNotificationC * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class ListNotificationChannelsCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/ListOrganizationInsightsCommand.ts b/clients/client-devops-guru/src/commands/ListOrganizationInsightsCommand.ts index bd7f467d167a7..1d2a23680b307 100644 --- a/clients/client-devops-guru/src/commands/ListOrganizationInsightsCommand.ts +++ b/clients/client-devops-guru/src/commands/ListOrganizationInsightsCommand.ts @@ -169,6 +169,7 @@ export interface ListOrganizationInsightsCommandOutput extends ListOrganizationI * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class ListOrganizationInsightsCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/ListRecommendationsCommand.ts b/clients/client-devops-guru/src/commands/ListRecommendationsCommand.ts index 04962d9521b1a..fc1cebecd0b07 100644 --- a/clients/client-devops-guru/src/commands/ListRecommendationsCommand.ts +++ b/clients/client-devops-guru/src/commands/ListRecommendationsCommand.ts @@ -119,6 +119,7 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class ListRecommendationsCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/PutFeedbackCommand.ts b/clients/client-devops-guru/src/commands/PutFeedbackCommand.ts index 13f2486276130..fc1adf2cab4f0 100644 --- a/clients/client-devops-guru/src/commands/PutFeedbackCommand.ts +++ b/clients/client-devops-guru/src/commands/PutFeedbackCommand.ts @@ -78,6 +78,7 @@ export interface PutFeedbackCommandOutput extends PutFeedbackResponse, __Metadat * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class PutFeedbackCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/RemoveNotificationChannelCommand.ts b/clients/client-devops-guru/src/commands/RemoveNotificationChannelCommand.ts index fc1d8b2a1a63c..5d833ae33fea5 100644 --- a/clients/client-devops-guru/src/commands/RemoveNotificationChannelCommand.ts +++ b/clients/client-devops-guru/src/commands/RemoveNotificationChannelCommand.ts @@ -77,6 +77,7 @@ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificati * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class RemoveNotificationChannelCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/SearchInsightsCommand.ts b/clients/client-devops-guru/src/commands/SearchInsightsCommand.ts index 7532dcbfbb894..7e4b47cadb733 100644 --- a/clients/client-devops-guru/src/commands/SearchInsightsCommand.ts +++ b/clients/client-devops-guru/src/commands/SearchInsightsCommand.ts @@ -185,6 +185,7 @@ export interface SearchInsightsCommandOutput extends SearchInsightsResponse, __M * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class SearchInsightsCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/SearchOrganizationInsightsCommand.ts b/clients/client-devops-guru/src/commands/SearchOrganizationInsightsCommand.ts index d3a2f8ec2a59a..846d98aac426b 100644 --- a/clients/client-devops-guru/src/commands/SearchOrganizationInsightsCommand.ts +++ b/clients/client-devops-guru/src/commands/SearchOrganizationInsightsCommand.ts @@ -189,6 +189,7 @@ export interface SearchOrganizationInsightsCommandOutput extends SearchOrganizat * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class SearchOrganizationInsightsCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/StartCostEstimationCommand.ts b/clients/client-devops-guru/src/commands/StartCostEstimationCommand.ts index f4e7946e86811..2398603d2efdc 100644 --- a/clients/client-devops-guru/src/commands/StartCostEstimationCommand.ts +++ b/clients/client-devops-guru/src/commands/StartCostEstimationCommand.ts @@ -91,6 +91,7 @@ export interface StartCostEstimationCommandOutput extends StartCostEstimationRes * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class StartCostEstimationCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/UpdateEventSourcesConfigCommand.ts b/clients/client-devops-guru/src/commands/UpdateEventSourcesConfigCommand.ts index c266ead6d909b..f4f3503e683d3 100644 --- a/clients/client-devops-guru/src/commands/UpdateEventSourcesConfigCommand.ts +++ b/clients/client-devops-guru/src/commands/UpdateEventSourcesConfigCommand.ts @@ -75,6 +75,7 @@ export interface UpdateEventSourcesConfigCommandOutput extends UpdateEventSource * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class UpdateEventSourcesConfigCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/UpdateResourceCollectionCommand.ts b/clients/client-devops-guru/src/commands/UpdateResourceCollectionCommand.ts index e717d9aa17cd6..3ac323038c9f8 100644 --- a/clients/client-devops-guru/src/commands/UpdateResourceCollectionCommand.ts +++ b/clients/client-devops-guru/src/commands/UpdateResourceCollectionCommand.ts @@ -91,6 +91,7 @@ export interface UpdateResourceCollectionCommandOutput extends UpdateResourceCol * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class UpdateResourceCollectionCommand extends $Command diff --git a/clients/client-devops-guru/src/commands/UpdateServiceIntegrationCommand.ts b/clients/client-devops-guru/src/commands/UpdateServiceIntegrationCommand.ts index 6efc930d713e0..880cb8075c284 100644 --- a/clients/client-devops-guru/src/commands/UpdateServiceIntegrationCommand.ts +++ b/clients/client-devops-guru/src/commands/UpdateServiceIntegrationCommand.ts @@ -86,6 +86,7 @@ export interface UpdateServiceIntegrationCommandOutput extends UpdateServiceInte * @throws {@link DevOpsGuruServiceException} *

Base exception class for all service exceptions from DevOpsGuru service.

* + * * @public */ export class UpdateServiceIntegrationCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/AcceptDirectConnectGatewayAssociationProposalCommand.ts b/clients/client-direct-connect/src/commands/AcceptDirectConnectGatewayAssociationProposalCommand.ts index f111586fa123f..0633d81e6f26b 100644 --- a/clients/client-direct-connect/src/commands/AcceptDirectConnectGatewayAssociationProposalCommand.ts +++ b/clients/client-direct-connect/src/commands/AcceptDirectConnectGatewayAssociationProposalCommand.ts @@ -102,6 +102,7 @@ export interface AcceptDirectConnectGatewayAssociationProposalCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class AcceptDirectConnectGatewayAssociationProposalCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/AllocateConnectionOnInterconnectCommand.ts b/clients/client-direct-connect/src/commands/AllocateConnectionOnInterconnectCommand.ts index cae43fef535f4..3a583b3602d09 100644 --- a/clients/client-direct-connect/src/commands/AllocateConnectionOnInterconnectCommand.ts +++ b/clients/client-direct-connect/src/commands/AllocateConnectionOnInterconnectCommand.ts @@ -110,6 +110,7 @@ export interface AllocateConnectionOnInterconnectCommandOutput extends Connectio * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class AllocateConnectionOnInterconnectCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/AllocateHostedConnectionCommand.ts b/clients/client-direct-connect/src/commands/AllocateHostedConnectionCommand.ts index 130412f6a8f89..bbeb739360134 100644 --- a/clients/client-direct-connect/src/commands/AllocateHostedConnectionCommand.ts +++ b/clients/client-direct-connect/src/commands/AllocateHostedConnectionCommand.ts @@ -115,6 +115,7 @@ export interface AllocateHostedConnectionCommandOutput extends Connection, __Met * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class AllocateHostedConnectionCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/AllocatePrivateVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/AllocatePrivateVirtualInterfaceCommand.ts index 6611eaa685a88..0b553b8c35059 100644 --- a/clients/client-direct-connect/src/commands/AllocatePrivateVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/AllocatePrivateVirtualInterfaceCommand.ts @@ -136,6 +136,7 @@ export interface AllocatePrivateVirtualInterfaceCommandOutput extends VirtualInt * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class AllocatePrivateVirtualInterfaceCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/AllocatePublicVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/AllocatePublicVirtualInterfaceCommand.ts index f242c9abd7256..e956b6411a240 100644 --- a/clients/client-direct-connect/src/commands/AllocatePublicVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/AllocatePublicVirtualInterfaceCommand.ts @@ -143,6 +143,7 @@ export interface AllocatePublicVirtualInterfaceCommandOutput extends VirtualInte * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class AllocatePublicVirtualInterfaceCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/AllocateTransitVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/AllocateTransitVirtualInterfaceCommand.ts index 69cc3d19623e5..8db0b8127d1e6 100644 --- a/clients/client-direct-connect/src/commands/AllocateTransitVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/AllocateTransitVirtualInterfaceCommand.ts @@ -140,6 +140,7 @@ export interface AllocateTransitVirtualInterfaceCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class AllocateTransitVirtualInterfaceCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/AssociateConnectionWithLagCommand.ts b/clients/client-direct-connect/src/commands/AssociateConnectionWithLagCommand.ts index e51aed84f2404..f19a92942b94f 100644 --- a/clients/client-direct-connect/src/commands/AssociateConnectionWithLagCommand.ts +++ b/clients/client-direct-connect/src/commands/AssociateConnectionWithLagCommand.ts @@ -108,6 +108,7 @@ export interface AssociateConnectionWithLagCommandOutput extends Connection, __M * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class AssociateConnectionWithLagCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/AssociateHostedConnectionCommand.ts b/clients/client-direct-connect/src/commands/AssociateHostedConnectionCommand.ts index 6b834b141d4d6..5ae3123ea6a53 100644 --- a/clients/client-direct-connect/src/commands/AssociateHostedConnectionCommand.ts +++ b/clients/client-direct-connect/src/commands/AssociateHostedConnectionCommand.ts @@ -102,6 +102,7 @@ export interface AssociateHostedConnectionCommandOutput extends Connection, __Me * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class AssociateHostedConnectionCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/AssociateMacSecKeyCommand.ts b/clients/client-direct-connect/src/commands/AssociateMacSecKeyCommand.ts index 7f8f492263f9c..edab552e25e68 100644 --- a/clients/client-direct-connect/src/commands/AssociateMacSecKeyCommand.ts +++ b/clients/client-direct-connect/src/commands/AssociateMacSecKeyCommand.ts @@ -74,6 +74,7 @@ export interface AssociateMacSecKeyCommandOutput extends AssociateMacSecKeyRespo * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class AssociateMacSecKeyCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/AssociateVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/AssociateVirtualInterfaceCommand.ts index 6bda07377aa44..dc8affdb87f08 100644 --- a/clients/client-direct-connect/src/commands/AssociateVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/AssociateVirtualInterfaceCommand.ts @@ -118,6 +118,7 @@ export interface AssociateVirtualInterfaceCommandOutput extends VirtualInterface * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class AssociateVirtualInterfaceCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/ConfirmConnectionCommand.ts b/clients/client-direct-connect/src/commands/ConfirmConnectionCommand.ts index 1e0491df23b8d..190e4a27ec476 100644 --- a/clients/client-direct-connect/src/commands/ConfirmConnectionCommand.ts +++ b/clients/client-direct-connect/src/commands/ConfirmConnectionCommand.ts @@ -63,6 +63,7 @@ export interface ConfirmConnectionCommandOutput extends ConfirmConnectionRespons * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class ConfirmConnectionCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/ConfirmCustomerAgreementCommand.ts b/clients/client-direct-connect/src/commands/ConfirmCustomerAgreementCommand.ts index 9c9f8a4cbbdc5..cbadd3291a797 100644 --- a/clients/client-direct-connect/src/commands/ConfirmCustomerAgreementCommand.ts +++ b/clients/client-direct-connect/src/commands/ConfirmCustomerAgreementCommand.ts @@ -63,6 +63,7 @@ export interface ConfirmCustomerAgreementCommandOutput extends ConfirmCustomerAg * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class ConfirmCustomerAgreementCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/ConfirmPrivateVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/ConfirmPrivateVirtualInterfaceCommand.ts index e4fca3ccece99..c2d681dea71f6 100644 --- a/clients/client-direct-connect/src/commands/ConfirmPrivateVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/ConfirmPrivateVirtualInterfaceCommand.ts @@ -71,6 +71,7 @@ export interface ConfirmPrivateVirtualInterfaceCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class ConfirmPrivateVirtualInterfaceCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/ConfirmPublicVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/ConfirmPublicVirtualInterfaceCommand.ts index e7a8446076a4d..b8033cca101f9 100644 --- a/clients/client-direct-connect/src/commands/ConfirmPublicVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/ConfirmPublicVirtualInterfaceCommand.ts @@ -68,6 +68,7 @@ export interface ConfirmPublicVirtualInterfaceCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class ConfirmPublicVirtualInterfaceCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/ConfirmTransitVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/ConfirmTransitVirtualInterfaceCommand.ts index 17e7f48f59604..be357f4a5dac4 100644 --- a/clients/client-direct-connect/src/commands/ConfirmTransitVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/ConfirmTransitVirtualInterfaceCommand.ts @@ -68,6 +68,7 @@ export interface ConfirmTransitVirtualInterfaceCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class ConfirmTransitVirtualInterfaceCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/CreateBGPPeerCommand.ts b/clients/client-direct-connect/src/commands/CreateBGPPeerCommand.ts index e270959dea63b..94db5479db4d6 100644 --- a/clients/client-direct-connect/src/commands/CreateBGPPeerCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateBGPPeerCommand.ts @@ -132,6 +132,7 @@ export interface CreateBGPPeerCommandOutput extends CreateBGPPeerResponse, __Met * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class CreateBGPPeerCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/CreateConnectionCommand.ts b/clients/client-direct-connect/src/commands/CreateConnectionCommand.ts index c1ed4ce12d61a..f12884bf6982d 100644 --- a/clients/client-direct-connect/src/commands/CreateConnectionCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateConnectionCommand.ts @@ -118,6 +118,7 @@ export interface CreateConnectionCommandOutput extends Connection, __MetadataBea * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class CreateConnectionCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationCommand.ts b/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationCommand.ts index 70ce0ae3c8c20..52628fd6a9fd9 100644 --- a/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationCommand.ts @@ -103,6 +103,7 @@ export interface CreateDirectConnectGatewayAssociationCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class CreateDirectConnectGatewayAssociationCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationProposalCommand.ts b/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationProposalCommand.ts index 1fdb27ae37b98..b5df30fb0037d 100644 --- a/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationProposalCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationProposalCommand.ts @@ -104,6 +104,7 @@ export interface CreateDirectConnectGatewayAssociationProposalCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class CreateDirectConnectGatewayAssociationProposalCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayCommand.ts b/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayCommand.ts index 771320cabe211..625923a759109 100644 --- a/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayCommand.ts @@ -86,6 +86,7 @@ export interface CreateDirectConnectGatewayCommandOutput extends CreateDirectCon * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class CreateDirectConnectGatewayCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/CreateInterconnectCommand.ts b/clients/client-direct-connect/src/commands/CreateInterconnectCommand.ts index bba6f4af9a4ce..0bedb90a468a9 100644 --- a/clients/client-direct-connect/src/commands/CreateInterconnectCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateInterconnectCommand.ts @@ -111,6 +111,7 @@ export interface CreateInterconnectCommandOutput extends Interconnect, __Metadat * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class CreateInterconnectCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/CreateLagCommand.ts b/clients/client-direct-connect/src/commands/CreateLagCommand.ts index 2ac82c92be3a0..b44ce93cf7b0a 100644 --- a/clients/client-direct-connect/src/commands/CreateLagCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateLagCommand.ts @@ -172,6 +172,7 @@ export interface CreateLagCommandOutput extends Lag, __MetadataBearer {} * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class CreateLagCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/CreatePrivateVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/CreatePrivateVirtualInterfaceCommand.ts index 8a91f45965ec8..a3a1fcc3e5cdc 100644 --- a/clients/client-direct-connect/src/commands/CreatePrivateVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/CreatePrivateVirtualInterfaceCommand.ts @@ -146,6 +146,7 @@ export interface CreatePrivateVirtualInterfaceCommandOutput extends VirtualInter * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class CreatePrivateVirtualInterfaceCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/CreatePublicVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/CreatePublicVirtualInterfaceCommand.ts index 21d58b3483e39..11e3972a7de1b 100644 --- a/clients/client-direct-connect/src/commands/CreatePublicVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/CreatePublicVirtualInterfaceCommand.ts @@ -140,6 +140,7 @@ export interface CreatePublicVirtualInterfaceCommandOutput extends VirtualInterf * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class CreatePublicVirtualInterfaceCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/CreateTransitVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/CreateTransitVirtualInterfaceCommand.ts index 4a24406195f74..a5e8e94d2f9af 100644 --- a/clients/client-direct-connect/src/commands/CreateTransitVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateTransitVirtualInterfaceCommand.ts @@ -148,6 +148,7 @@ export interface CreateTransitVirtualInterfaceCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class CreateTransitVirtualInterfaceCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DeleteBGPPeerCommand.ts b/clients/client-direct-connect/src/commands/DeleteBGPPeerCommand.ts index e1ff968dc9874..7e66ead099222 100644 --- a/clients/client-direct-connect/src/commands/DeleteBGPPeerCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteBGPPeerCommand.ts @@ -114,6 +114,7 @@ export interface DeleteBGPPeerCommandOutput extends DeleteBGPPeerResponse, __Met * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DeleteBGPPeerCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DeleteConnectionCommand.ts b/clients/client-direct-connect/src/commands/DeleteConnectionCommand.ts index 5382bb849aa39..2c26d10456d75 100644 --- a/clients/client-direct-connect/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteConnectionCommand.ts @@ -97,6 +97,7 @@ export interface DeleteConnectionCommandOutput extends Connection, __MetadataBea * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DeleteConnectionCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationCommand.ts b/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationCommand.ts index 5c48daf618e8f..ab2bbf5dd18d1 100644 --- a/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationCommand.ts @@ -98,6 +98,7 @@ export interface DeleteDirectConnectGatewayAssociationCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DeleteDirectConnectGatewayAssociationCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationProposalCommand.ts b/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationProposalCommand.ts index e23758ac96a20..a429c335bd1ee 100644 --- a/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationProposalCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationProposalCommand.ts @@ -91,6 +91,7 @@ export interface DeleteDirectConnectGatewayAssociationProposalCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DeleteDirectConnectGatewayAssociationProposalCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayCommand.ts b/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayCommand.ts index fa1948bcc2f5b..034b4f94e78e4 100644 --- a/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayCommand.ts @@ -76,6 +76,7 @@ export interface DeleteDirectConnectGatewayCommandOutput extends DeleteDirectCon * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DeleteDirectConnectGatewayCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DeleteInterconnectCommand.ts b/clients/client-direct-connect/src/commands/DeleteInterconnectCommand.ts index be3c30fb15e63..c25d24ce2608e 100644 --- a/clients/client-direct-connect/src/commands/DeleteInterconnectCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteInterconnectCommand.ts @@ -65,6 +65,7 @@ export interface DeleteInterconnectCommandOutput extends DeleteInterconnectRespo * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DeleteInterconnectCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DeleteLagCommand.ts b/clients/client-direct-connect/src/commands/DeleteLagCommand.ts index 87840a3d82d93..5bcaa7bd62e51 100644 --- a/clients/client-direct-connect/src/commands/DeleteLagCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteLagCommand.ts @@ -131,6 +131,7 @@ export interface DeleteLagCommandOutput extends Lag, __MetadataBearer {} * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DeleteLagCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DeleteVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/DeleteVirtualInterfaceCommand.ts index a5e145f1ace8c..337eff4e02ac8 100644 --- a/clients/client-direct-connect/src/commands/DeleteVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteVirtualInterfaceCommand.ts @@ -61,6 +61,7 @@ export interface DeleteVirtualInterfaceCommandOutput extends DeleteVirtualInterf * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DeleteVirtualInterfaceCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeConnectionLoaCommand.ts b/clients/client-direct-connect/src/commands/DescribeConnectionLoaCommand.ts index f28f683713845..cfd842e78e2ee 100644 --- a/clients/client-direct-connect/src/commands/DescribeConnectionLoaCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeConnectionLoaCommand.ts @@ -75,6 +75,7 @@ export interface DescribeConnectionLoaCommandOutput extends DescribeConnectionLo * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeConnectionLoaCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeConnectionsCommand.ts b/clients/client-direct-connect/src/commands/DescribeConnectionsCommand.ts index 0ef94292d7000..0e7c54afc283b 100644 --- a/clients/client-direct-connect/src/commands/DescribeConnectionsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeConnectionsCommand.ts @@ -98,6 +98,7 @@ export interface DescribeConnectionsCommandOutput extends Connections, __Metadat * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeConnectionsCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeConnectionsOnInterconnectCommand.ts b/clients/client-direct-connect/src/commands/DescribeConnectionsOnInterconnectCommand.ts index ea7e39748e07f..36e4d8bfb12a4 100644 --- a/clients/client-direct-connect/src/commands/DescribeConnectionsOnInterconnectCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeConnectionsOnInterconnectCommand.ts @@ -109,6 +109,7 @@ export interface DescribeConnectionsOnInterconnectCommandOutput extends Connecti * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeConnectionsOnInterconnectCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeCustomerMetadataCommand.ts b/clients/client-direct-connect/src/commands/DescribeCustomerMetadataCommand.ts index a8de17fceb59e..09060338b0726 100644 --- a/clients/client-direct-connect/src/commands/DescribeCustomerMetadataCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeCustomerMetadataCommand.ts @@ -65,6 +65,7 @@ export interface DescribeCustomerMetadataCommandOutput extends DescribeCustomerM * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeCustomerMetadataCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationProposalsCommand.ts b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationProposalsCommand.ts index 5bff2096ef42b..b7f85b9d9698f 100644 --- a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationProposalsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationProposalsCommand.ts @@ -98,6 +98,7 @@ export interface DescribeDirectConnectGatewayAssociationProposalsCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeDirectConnectGatewayAssociationProposalsCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationsCommand.ts b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationsCommand.ts index 2d9d4901f48c3..32de1ce9555ac 100644 --- a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationsCommand.ts @@ -133,6 +133,7 @@ export interface DescribeDirectConnectGatewayAssociationsCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeDirectConnectGatewayAssociationsCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAttachmentsCommand.ts b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAttachmentsCommand.ts index 807f7f7d4ac4a..34be6b508c83a 100644 --- a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAttachmentsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAttachmentsCommand.ts @@ -88,6 +88,7 @@ export interface DescribeDirectConnectGatewayAttachmentsCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeDirectConnectGatewayAttachmentsCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewaysCommand.ts b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewaysCommand.ts index 7778a443f5fa0..4e622fb6e4bab 100644 --- a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewaysCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewaysCommand.ts @@ -84,6 +84,7 @@ export interface DescribeDirectConnectGatewaysCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeDirectConnectGatewaysCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeHostedConnectionsCommand.ts b/clients/client-direct-connect/src/commands/DescribeHostedConnectionsCommand.ts index e01b0e5e54551..c9a53e26e3d19 100644 --- a/clients/client-direct-connect/src/commands/DescribeHostedConnectionsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeHostedConnectionsCommand.ts @@ -102,6 +102,7 @@ export interface DescribeHostedConnectionsCommandOutput extends Connections, __M * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeHostedConnectionsCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeInterconnectLoaCommand.ts b/clients/client-direct-connect/src/commands/DescribeInterconnectLoaCommand.ts index 0c491dfe57463..da0aef97f749f 100644 --- a/clients/client-direct-connect/src/commands/DescribeInterconnectLoaCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeInterconnectLoaCommand.ts @@ -74,6 +74,7 @@ export interface DescribeInterconnectLoaCommandOutput extends DescribeInterconne * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeInterconnectLoaCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeInterconnectsCommand.ts b/clients/client-direct-connect/src/commands/DescribeInterconnectsCommand.ts index a4f8e092f82a5..24d8f261d0f2a 100644 --- a/clients/client-direct-connect/src/commands/DescribeInterconnectsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeInterconnectsCommand.ts @@ -84,6 +84,7 @@ export interface DescribeInterconnectsCommandOutput extends Interconnects, __Met * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeInterconnectsCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeLagsCommand.ts b/clients/client-direct-connect/src/commands/DescribeLagsCommand.ts index 2f9284f2f5837..83b0ac7b400fa 100644 --- a/clients/client-direct-connect/src/commands/DescribeLagsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeLagsCommand.ts @@ -134,6 +134,7 @@ export interface DescribeLagsCommandOutput extends Lags, __MetadataBearer {} * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeLagsCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeLoaCommand.ts b/clients/client-direct-connect/src/commands/DescribeLoaCommand.ts index 94a3c0ee57c65..ee7fd16935828 100644 --- a/clients/client-direct-connect/src/commands/DescribeLoaCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeLoaCommand.ts @@ -67,6 +67,7 @@ export interface DescribeLoaCommandOutput extends Loa, __MetadataBearer {} * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeLoaCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeLocationsCommand.ts b/clients/client-direct-connect/src/commands/DescribeLocationsCommand.ts index 4e95382eadf58..30d5d9342db52 100644 --- a/clients/client-direct-connect/src/commands/DescribeLocationsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeLocationsCommand.ts @@ -75,6 +75,7 @@ export interface DescribeLocationsCommandOutput extends Locations, __MetadataBea * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeLocationsCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeRouterConfigurationCommand.ts b/clients/client-direct-connect/src/commands/DescribeRouterConfigurationCommand.ts index 8882d581f8f78..c62ebb2e3d755 100644 --- a/clients/client-direct-connect/src/commands/DescribeRouterConfigurationCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeRouterConfigurationCommand.ts @@ -76,6 +76,7 @@ export interface DescribeRouterConfigurationCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeRouterConfigurationCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeTagsCommand.ts b/clients/client-direct-connect/src/commands/DescribeTagsCommand.ts index 0d9e31801a17e..70a9fe56dd20c 100644 --- a/clients/client-direct-connect/src/commands/DescribeTagsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeTagsCommand.ts @@ -73,6 +73,7 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeTagsCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeVirtualGatewaysCommand.ts b/clients/client-direct-connect/src/commands/DescribeVirtualGatewaysCommand.ts index 169b27d04a24b..d4f33c0dbc3e7 100644 --- a/clients/client-direct-connect/src/commands/DescribeVirtualGatewaysCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeVirtualGatewaysCommand.ts @@ -68,6 +68,7 @@ export interface DescribeVirtualGatewaysCommandOutput extends VirtualGateways, _ * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeVirtualGatewaysCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DescribeVirtualInterfacesCommand.ts b/clients/client-direct-connect/src/commands/DescribeVirtualInterfacesCommand.ts index 3ad401ad20dc0..ca124f5855a59 100644 --- a/clients/client-direct-connect/src/commands/DescribeVirtualInterfacesCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeVirtualInterfacesCommand.ts @@ -117,6 +117,7 @@ export interface DescribeVirtualInterfacesCommandOutput extends VirtualInterface * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DescribeVirtualInterfacesCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DisassociateConnectionFromLagCommand.ts b/clients/client-direct-connect/src/commands/DisassociateConnectionFromLagCommand.ts index 4a5aba4fcacb8..a3e5980745c32 100644 --- a/clients/client-direct-connect/src/commands/DisassociateConnectionFromLagCommand.ts +++ b/clients/client-direct-connect/src/commands/DisassociateConnectionFromLagCommand.ts @@ -107,6 +107,7 @@ export interface DisassociateConnectionFromLagCommandOutput extends Connection, * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DisassociateConnectionFromLagCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/DisassociateMacSecKeyCommand.ts b/clients/client-direct-connect/src/commands/DisassociateMacSecKeyCommand.ts index 58a426d992ccf..e7e9a7f6a17cc 100644 --- a/clients/client-direct-connect/src/commands/DisassociateMacSecKeyCommand.ts +++ b/clients/client-direct-connect/src/commands/DisassociateMacSecKeyCommand.ts @@ -70,6 +70,7 @@ export interface DisassociateMacSecKeyCommandOutput extends DisassociateMacSecKe * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class DisassociateMacSecKeyCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/ListVirtualInterfaceTestHistoryCommand.ts b/clients/client-direct-connect/src/commands/ListVirtualInterfaceTestHistoryCommand.ts index 3f8a15a53294d..39c0c923cc05d 100644 --- a/clients/client-direct-connect/src/commands/ListVirtualInterfaceTestHistoryCommand.ts +++ b/clients/client-direct-connect/src/commands/ListVirtualInterfaceTestHistoryCommand.ts @@ -87,6 +87,7 @@ export interface ListVirtualInterfaceTestHistoryCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class ListVirtualInterfaceTestHistoryCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/StartBgpFailoverTestCommand.ts b/clients/client-direct-connect/src/commands/StartBgpFailoverTestCommand.ts index a7c9a57320dae..70cb510ea2e54 100644 --- a/clients/client-direct-connect/src/commands/StartBgpFailoverTestCommand.ts +++ b/clients/client-direct-connect/src/commands/StartBgpFailoverTestCommand.ts @@ -79,6 +79,7 @@ export interface StartBgpFailoverTestCommandOutput extends StartBgpFailoverTestR * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class StartBgpFailoverTestCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/StopBgpFailoverTestCommand.ts b/clients/client-direct-connect/src/commands/StopBgpFailoverTestCommand.ts index 6d80dc7f938cf..3a38a266c5f8c 100644 --- a/clients/client-direct-connect/src/commands/StopBgpFailoverTestCommand.ts +++ b/clients/client-direct-connect/src/commands/StopBgpFailoverTestCommand.ts @@ -72,6 +72,7 @@ export interface StopBgpFailoverTestCommandOutput extends StopBgpFailoverTestRes * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class StopBgpFailoverTestCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/TagResourceCommand.ts b/clients/client-direct-connect/src/commands/TagResourceCommand.ts index 49ef643d5062c..c678689ec0c71 100644 --- a/clients/client-direct-connect/src/commands/TagResourceCommand.ts +++ b/clients/client-direct-connect/src/commands/TagResourceCommand.ts @@ -72,6 +72,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/UntagResourceCommand.ts b/clients/client-direct-connect/src/commands/UntagResourceCommand.ts index 2f53c992a58f9..167ea74cd6424 100644 --- a/clients/client-direct-connect/src/commands/UntagResourceCommand.ts +++ b/clients/client-direct-connect/src/commands/UntagResourceCommand.ts @@ -62,6 +62,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/UpdateConnectionCommand.ts b/clients/client-direct-connect/src/commands/UpdateConnectionCommand.ts index 2c97fddff373f..0ef5e8beacf26 100644 --- a/clients/client-direct-connect/src/commands/UpdateConnectionCommand.ts +++ b/clients/client-direct-connect/src/commands/UpdateConnectionCommand.ts @@ -105,6 +105,7 @@ export interface UpdateConnectionCommandOutput extends Connection, __MetadataBea * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class UpdateConnectionCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayAssociationCommand.ts b/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayAssociationCommand.ts index 397964d51bdcc..f18d703272375 100644 --- a/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayAssociationCommand.ts +++ b/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayAssociationCommand.ts @@ -106,6 +106,7 @@ export interface UpdateDirectConnectGatewayAssociationCommandOutput * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class UpdateDirectConnectGatewayAssociationCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayCommand.ts b/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayCommand.ts index 729b54fd108ac..25c8f1ee65229 100644 --- a/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayCommand.ts +++ b/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayCommand.ts @@ -75,6 +75,7 @@ export interface UpdateDirectConnectGatewayCommandOutput extends UpdateDirectCon * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class UpdateDirectConnectGatewayCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/UpdateLagCommand.ts b/clients/client-direct-connect/src/commands/UpdateLagCommand.ts index 4301d950512d1..cbdbfac99111d 100644 --- a/clients/client-direct-connect/src/commands/UpdateLagCommand.ts +++ b/clients/client-direct-connect/src/commands/UpdateLagCommand.ts @@ -155,6 +155,7 @@ export interface UpdateLagCommandOutput extends Lag, __MetadataBearer {} * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class UpdateLagCommand extends $Command diff --git a/clients/client-direct-connect/src/commands/UpdateVirtualInterfaceAttributesCommand.ts b/clients/client-direct-connect/src/commands/UpdateVirtualInterfaceAttributesCommand.ts index 1f6e5a4b5e47a..4b5adce92d309 100644 --- a/clients/client-direct-connect/src/commands/UpdateVirtualInterfaceAttributesCommand.ts +++ b/clients/client-direct-connect/src/commands/UpdateVirtualInterfaceAttributesCommand.ts @@ -120,6 +120,7 @@ export interface UpdateVirtualInterfaceAttributesCommandOutput extends VirtualIn * @throws {@link DirectConnectServiceException} *

Base exception class for all service exceptions from DirectConnect service.

* + * * @public */ export class UpdateVirtualInterfaceAttributesCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/AddGroupMemberCommand.ts b/clients/client-directory-service-data/src/commands/AddGroupMemberCommand.ts index d9ffd77779034..100f608129fd7 100644 --- a/clients/client-directory-service-data/src/commands/AddGroupMemberCommand.ts +++ b/clients/client-directory-service-data/src/commands/AddGroupMemberCommand.ts @@ -95,6 +95,7 @@ export interface AddGroupMemberCommandOutput extends AddGroupMemberResult, __Met * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class AddGroupMemberCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/CreateGroupCommand.ts b/clients/client-directory-service-data/src/commands/CreateGroupCommand.ts index 924d1c273702f..b584d05333da1 100644 --- a/clients/client-directory-service-data/src/commands/CreateGroupCommand.ts +++ b/clients/client-directory-service-data/src/commands/CreateGroupCommand.ts @@ -106,6 +106,7 @@ export interface CreateGroupCommandOutput extends CreateGroupResult, __MetadataB * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class CreateGroupCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/CreateUserCommand.ts b/clients/client-directory-service-data/src/commands/CreateUserCommand.ts index 5953b75c203d1..97ef6c5d4d24e 100644 --- a/clients/client-directory-service-data/src/commands/CreateUserCommand.ts +++ b/clients/client-directory-service-data/src/commands/CreateUserCommand.ts @@ -107,6 +107,7 @@ export interface CreateUserCommandOutput extends CreateUserResult, __MetadataBea * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class CreateUserCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/DeleteGroupCommand.ts b/clients/client-directory-service-data/src/commands/DeleteGroupCommand.ts index c329687be7698..2f0aa5f8315a2 100644 --- a/clients/client-directory-service-data/src/commands/DeleteGroupCommand.ts +++ b/clients/client-directory-service-data/src/commands/DeleteGroupCommand.ts @@ -93,6 +93,7 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResult, __MetadataB * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class DeleteGroupCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/DeleteUserCommand.ts b/clients/client-directory-service-data/src/commands/DeleteUserCommand.ts index ba4422f6bdc2f..54d37b281f583 100644 --- a/clients/client-directory-service-data/src/commands/DeleteUserCommand.ts +++ b/clients/client-directory-service-data/src/commands/DeleteUserCommand.ts @@ -93,6 +93,7 @@ export interface DeleteUserCommandOutput extends DeleteUserResult, __MetadataBea * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class DeleteUserCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/DescribeGroupCommand.ts b/clients/client-directory-service-data/src/commands/DescribeGroupCommand.ts index 10673d2357de5..5fd64e2272008 100644 --- a/clients/client-directory-service-data/src/commands/DescribeGroupCommand.ts +++ b/clients/client-directory-service-data/src/commands/DescribeGroupCommand.ts @@ -105,6 +105,7 @@ export interface DescribeGroupCommandOutput extends DescribeGroupResult, __Metad * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class DescribeGroupCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/DescribeUserCommand.ts b/clients/client-directory-service-data/src/commands/DescribeUserCommand.ts index 22f08a2864b57..7a825c6be666e 100644 --- a/clients/client-directory-service-data/src/commands/DescribeUserCommand.ts +++ b/clients/client-directory-service-data/src/commands/DescribeUserCommand.ts @@ -108,6 +108,7 @@ export interface DescribeUserCommandOutput extends DescribeUserResult, __Metadat * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class DescribeUserCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/DisableUserCommand.ts b/clients/client-directory-service-data/src/commands/DisableUserCommand.ts index 24e56f067ec69..704bbe9d57cdc 100644 --- a/clients/client-directory-service-data/src/commands/DisableUserCommand.ts +++ b/clients/client-directory-service-data/src/commands/DisableUserCommand.ts @@ -95,6 +95,7 @@ export interface DisableUserCommandOutput extends DisableUserResult, __MetadataB * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class DisableUserCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/ListGroupMembersCommand.ts b/clients/client-directory-service-data/src/commands/ListGroupMembersCommand.ts index 9787bd9b873fd..368dda4b96729 100644 --- a/clients/client-directory-service-data/src/commands/ListGroupMembersCommand.ts +++ b/clients/client-directory-service-data/src/commands/ListGroupMembersCommand.ts @@ -110,6 +110,7 @@ export interface ListGroupMembersCommandOutput extends ListGroupMembersResult, _ * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class ListGroupMembersCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/ListGroupsCommand.ts b/clients/client-directory-service-data/src/commands/ListGroupsCommand.ts index 3eef967f0af09..c9cf9391c126f 100644 --- a/clients/client-directory-service-data/src/commands/ListGroupsCommand.ts +++ b/clients/client-directory-service-data/src/commands/ListGroupsCommand.ts @@ -105,6 +105,7 @@ export interface ListGroupsCommandOutput extends ListGroupsResult, __MetadataBea * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class ListGroupsCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/ListGroupsForMemberCommand.ts b/clients/client-directory-service-data/src/commands/ListGroupsForMemberCommand.ts index 88eab3abb7068..ada8fc43331f6 100644 --- a/clients/client-directory-service-data/src/commands/ListGroupsForMemberCommand.ts +++ b/clients/client-directory-service-data/src/commands/ListGroupsForMemberCommand.ts @@ -111,6 +111,7 @@ export interface ListGroupsForMemberCommandOutput extends ListGroupsForMemberRes * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class ListGroupsForMemberCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/ListUsersCommand.ts b/clients/client-directory-service-data/src/commands/ListUsersCommand.ts index 0b7a46cd6e677..b8e1af21c1c50 100644 --- a/clients/client-directory-service-data/src/commands/ListUsersCommand.ts +++ b/clients/client-directory-service-data/src/commands/ListUsersCommand.ts @@ -106,6 +106,7 @@ export interface ListUsersCommandOutput extends ListUsersResult, __MetadataBeare * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class ListUsersCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/RemoveGroupMemberCommand.ts b/clients/client-directory-service-data/src/commands/RemoveGroupMemberCommand.ts index af89119414da5..e4f8770998757 100644 --- a/clients/client-directory-service-data/src/commands/RemoveGroupMemberCommand.ts +++ b/clients/client-directory-service-data/src/commands/RemoveGroupMemberCommand.ts @@ -95,6 +95,7 @@ export interface RemoveGroupMemberCommandOutput extends RemoveGroupMemberResult, * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class RemoveGroupMemberCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/SearchGroupsCommand.ts b/clients/client-directory-service-data/src/commands/SearchGroupsCommand.ts index cb481ef731241..ed3f53b09b5e5 100644 --- a/clients/client-directory-service-data/src/commands/SearchGroupsCommand.ts +++ b/clients/client-directory-service-data/src/commands/SearchGroupsCommand.ts @@ -122,6 +122,7 @@ export interface SearchGroupsCommandOutput extends SearchGroupsResult, __Metadat * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class SearchGroupsCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/SearchUsersCommand.ts b/clients/client-directory-service-data/src/commands/SearchUsersCommand.ts index dfa9829da1399..ec1e34c8ee15b 100644 --- a/clients/client-directory-service-data/src/commands/SearchUsersCommand.ts +++ b/clients/client-directory-service-data/src/commands/SearchUsersCommand.ts @@ -125,6 +125,7 @@ export interface SearchUsersCommandOutput extends SearchUsersResult, __MetadataB * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class SearchUsersCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/UpdateGroupCommand.ts b/clients/client-directory-service-data/src/commands/UpdateGroupCommand.ts index 59105d58a08f8..920122ded9c78 100644 --- a/clients/client-directory-service-data/src/commands/UpdateGroupCommand.ts +++ b/clients/client-directory-service-data/src/commands/UpdateGroupCommand.ts @@ -106,6 +106,7 @@ export interface UpdateGroupCommandOutput extends UpdateGroupResult, __MetadataB * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class UpdateGroupCommand extends $Command diff --git a/clients/client-directory-service-data/src/commands/UpdateUserCommand.ts b/clients/client-directory-service-data/src/commands/UpdateUserCommand.ts index e26885a697ebb..da0122a930968 100644 --- a/clients/client-directory-service-data/src/commands/UpdateUserCommand.ts +++ b/clients/client-directory-service-data/src/commands/UpdateUserCommand.ts @@ -107,6 +107,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResult, __MetadataBea * @throws {@link DirectoryServiceDataServiceException} *

Base exception class for all service exceptions from DirectoryServiceData service.

* + * * @public */ export class UpdateUserCommand extends $Command diff --git a/clients/client-directory-service/src/commands/AcceptSharedDirectoryCommand.ts b/clients/client-directory-service/src/commands/AcceptSharedDirectoryCommand.ts index 71ffe066f74f8..cc95324c41b09 100644 --- a/clients/client-directory-service/src/commands/AcceptSharedDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/AcceptSharedDirectoryCommand.ts @@ -84,6 +84,7 @@ export interface AcceptSharedDirectoryCommandOutput extends AcceptSharedDirector * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class AcceptSharedDirectoryCommand extends $Command diff --git a/clients/client-directory-service/src/commands/AddIpRoutesCommand.ts b/clients/client-directory-service/src/commands/AddIpRoutesCommand.ts index dadd9aac4f157..684448e7a600d 100644 --- a/clients/client-directory-service/src/commands/AddIpRoutesCommand.ts +++ b/clients/client-directory-service/src/commands/AddIpRoutesCommand.ts @@ -89,6 +89,7 @@ export interface AddIpRoutesCommandOutput extends AddIpRoutesResult, __MetadataB * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class AddIpRoutesCommand extends $Command diff --git a/clients/client-directory-service/src/commands/AddRegionCommand.ts b/clients/client-directory-service/src/commands/AddRegionCommand.ts index 7f8b06cd2833e..dbea76caa823c 100644 --- a/clients/client-directory-service/src/commands/AddRegionCommand.ts +++ b/clients/client-directory-service/src/commands/AddRegionCommand.ts @@ -92,6 +92,7 @@ export interface AddRegionCommandOutput extends AddRegionResult, __MetadataBeare * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class AddRegionCommand extends $Command diff --git a/clients/client-directory-service/src/commands/AddTagsToResourceCommand.ts b/clients/client-directory-service/src/commands/AddTagsToResourceCommand.ts index 1cf30c16a34da..a2240a074ecfb 100644 --- a/clients/client-directory-service/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-directory-service/src/commands/AddTagsToResourceCommand.ts @@ -76,6 +76,7 @@ export interface AddTagsToResourceCommandOutput extends AddTagsToResourceResult, * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class AddTagsToResourceCommand extends $Command diff --git a/clients/client-directory-service/src/commands/CancelSchemaExtensionCommand.ts b/clients/client-directory-service/src/commands/CancelSchemaExtensionCommand.ts index 50057a75a5b56..a0c80cbc92787 100644 --- a/clients/client-directory-service/src/commands/CancelSchemaExtensionCommand.ts +++ b/clients/client-directory-service/src/commands/CancelSchemaExtensionCommand.ts @@ -67,6 +67,7 @@ export interface CancelSchemaExtensionCommandOutput extends CancelSchemaExtensio * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class CancelSchemaExtensionCommand extends $Command diff --git a/clients/client-directory-service/src/commands/ConnectDirectoryCommand.ts b/clients/client-directory-service/src/commands/ConnectDirectoryCommand.ts index 1002893e82801..007ba4c8ed794 100644 --- a/clients/client-directory-service/src/commands/ConnectDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/ConnectDirectoryCommand.ts @@ -97,6 +97,7 @@ export interface ConnectDirectoryCommandOutput extends ConnectDirectoryResult, _ * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class ConnectDirectoryCommand extends $Command diff --git a/clients/client-directory-service/src/commands/CreateAliasCommand.ts b/clients/client-directory-service/src/commands/CreateAliasCommand.ts index 787914160cbd7..eeea9e45d9697 100644 --- a/clients/client-directory-service/src/commands/CreateAliasCommand.ts +++ b/clients/client-directory-service/src/commands/CreateAliasCommand.ts @@ -77,6 +77,7 @@ export interface CreateAliasCommandOutput extends CreateAliasResult, __MetadataB * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class CreateAliasCommand extends $Command diff --git a/clients/client-directory-service/src/commands/CreateComputerCommand.ts b/clients/client-directory-service/src/commands/CreateComputerCommand.ts index d68272c691b4a..b9aff03ed9f78 100644 --- a/clients/client-directory-service/src/commands/CreateComputerCommand.ts +++ b/clients/client-directory-service/src/commands/CreateComputerCommand.ts @@ -101,6 +101,7 @@ export interface CreateComputerCommandOutput extends CreateComputerResult, __Met * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class CreateComputerCommand extends $Command diff --git a/clients/client-directory-service/src/commands/CreateConditionalForwarderCommand.ts b/clients/client-directory-service/src/commands/CreateConditionalForwarderCommand.ts index 32d85ccd92c02..3ad519a6e31c3 100644 --- a/clients/client-directory-service/src/commands/CreateConditionalForwarderCommand.ts +++ b/clients/client-directory-service/src/commands/CreateConditionalForwarderCommand.ts @@ -80,6 +80,7 @@ export interface CreateConditionalForwarderCommandOutput extends CreateCondition * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class CreateConditionalForwarderCommand extends $Command diff --git a/clients/client-directory-service/src/commands/CreateDirectoryCommand.ts b/clients/client-directory-service/src/commands/CreateDirectoryCommand.ts index d8371764ec6b3..3eef01f2e20fc 100644 --- a/clients/client-directory-service/src/commands/CreateDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/CreateDirectoryCommand.ts @@ -94,6 +94,7 @@ export interface CreateDirectoryCommandOutput extends CreateDirectoryResult, __M * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class CreateDirectoryCommand extends $Command diff --git a/clients/client-directory-service/src/commands/CreateLogSubscriptionCommand.ts b/clients/client-directory-service/src/commands/CreateLogSubscriptionCommand.ts index fa16cc5fed338..b7b6690d026f0 100644 --- a/clients/client-directory-service/src/commands/CreateLogSubscriptionCommand.ts +++ b/clients/client-directory-service/src/commands/CreateLogSubscriptionCommand.ts @@ -73,6 +73,7 @@ export interface CreateLogSubscriptionCommandOutput extends CreateLogSubscriptio * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class CreateLogSubscriptionCommand extends $Command diff --git a/clients/client-directory-service/src/commands/CreateMicrosoftADCommand.ts b/clients/client-directory-service/src/commands/CreateMicrosoftADCommand.ts index c76d32732dcfb..e608a0e2dbc8e 100644 --- a/clients/client-directory-service/src/commands/CreateMicrosoftADCommand.ts +++ b/clients/client-directory-service/src/commands/CreateMicrosoftADCommand.ts @@ -95,6 +95,7 @@ export interface CreateMicrosoftADCommandOutput extends CreateMicrosoftADResult, * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class CreateMicrosoftADCommand extends $Command diff --git a/clients/client-directory-service/src/commands/CreateSnapshotCommand.ts b/clients/client-directory-service/src/commands/CreateSnapshotCommand.ts index 00e7d6752532c..b72661584cca4 100644 --- a/clients/client-directory-service/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-directory-service/src/commands/CreateSnapshotCommand.ts @@ -76,6 +76,7 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResult, __Met * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class CreateSnapshotCommand extends $Command diff --git a/clients/client-directory-service/src/commands/CreateTrustCommand.ts b/clients/client-directory-service/src/commands/CreateTrustCommand.ts index 53048b4ea111f..6044c744b6d07 100644 --- a/clients/client-directory-service/src/commands/CreateTrustCommand.ts +++ b/clients/client-directory-service/src/commands/CreateTrustCommand.ts @@ -87,6 +87,7 @@ export interface CreateTrustCommandOutput extends CreateTrustResult, __MetadataB * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class CreateTrustCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DeleteConditionalForwarderCommand.ts b/clients/client-directory-service/src/commands/DeleteConditionalForwarderCommand.ts index 1d0d4caaec610..760249ee08dc6 100644 --- a/clients/client-directory-service/src/commands/DeleteConditionalForwarderCommand.ts +++ b/clients/client-directory-service/src/commands/DeleteConditionalForwarderCommand.ts @@ -73,6 +73,7 @@ export interface DeleteConditionalForwarderCommandOutput extends DeleteCondition * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DeleteConditionalForwarderCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DeleteDirectoryCommand.ts b/clients/client-directory-service/src/commands/DeleteDirectoryCommand.ts index c160c5eb60694..82c922ea5a84d 100644 --- a/clients/client-directory-service/src/commands/DeleteDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/DeleteDirectoryCommand.ts @@ -68,6 +68,7 @@ export interface DeleteDirectoryCommandOutput extends DeleteDirectoryResult, __M * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DeleteDirectoryCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DeleteLogSubscriptionCommand.ts b/clients/client-directory-service/src/commands/DeleteLogSubscriptionCommand.ts index f52e2673d3c7b..ad91a3d040a80 100644 --- a/clients/client-directory-service/src/commands/DeleteLogSubscriptionCommand.ts +++ b/clients/client-directory-service/src/commands/DeleteLogSubscriptionCommand.ts @@ -65,6 +65,7 @@ export interface DeleteLogSubscriptionCommandOutput extends DeleteLogSubscriptio * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DeleteLogSubscriptionCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DeleteSnapshotCommand.ts b/clients/client-directory-service/src/commands/DeleteSnapshotCommand.ts index 5f69dfc61ca9c..c33734429bc0b 100644 --- a/clients/client-directory-service/src/commands/DeleteSnapshotCommand.ts +++ b/clients/client-directory-service/src/commands/DeleteSnapshotCommand.ts @@ -67,6 +67,7 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResult, __Met * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DeleteSnapshotCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DeleteTrustCommand.ts b/clients/client-directory-service/src/commands/DeleteTrustCommand.ts index 7f3df4c2e564d..0ca5977beaf9a 100644 --- a/clients/client-directory-service/src/commands/DeleteTrustCommand.ts +++ b/clients/client-directory-service/src/commands/DeleteTrustCommand.ts @@ -72,6 +72,7 @@ export interface DeleteTrustCommandOutput extends DeleteTrustResult, __MetadataB * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DeleteTrustCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DeregisterCertificateCommand.ts b/clients/client-directory-service/src/commands/DeregisterCertificateCommand.ts index eabbc9c5c096d..1509e0d789fff 100644 --- a/clients/client-directory-service/src/commands/DeregisterCertificateCommand.ts +++ b/clients/client-directory-service/src/commands/DeregisterCertificateCommand.ts @@ -79,6 +79,7 @@ export interface DeregisterCertificateCommandOutput extends DeregisterCertificat * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DeregisterCertificateCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DeregisterEventTopicCommand.ts b/clients/client-directory-service/src/commands/DeregisterEventTopicCommand.ts index 8080cdd69cd1a..0f141b799942e 100644 --- a/clients/client-directory-service/src/commands/DeregisterEventTopicCommand.ts +++ b/clients/client-directory-service/src/commands/DeregisterEventTopicCommand.ts @@ -66,6 +66,7 @@ export interface DeregisterEventTopicCommandOutput extends DeregisterEventTopicR * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DeregisterEventTopicCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DescribeCertificateCommand.ts b/clients/client-directory-service/src/commands/DescribeCertificateCommand.ts index a78f60747feb4..794aa7f66e2dd 100644 --- a/clients/client-directory-service/src/commands/DescribeCertificateCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeCertificateCommand.ts @@ -85,6 +85,7 @@ export interface DescribeCertificateCommandOutput extends DescribeCertificateRes * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DescribeCertificateCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DescribeClientAuthenticationSettingsCommand.ts b/clients/client-directory-service/src/commands/DescribeClientAuthenticationSettingsCommand.ts index 54863e3056e44..5f82f6e788dfa 100644 --- a/clients/client-directory-service/src/commands/DescribeClientAuthenticationSettingsCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeClientAuthenticationSettingsCommand.ts @@ -92,6 +92,7 @@ export interface DescribeClientAuthenticationSettingsCommandOutput * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DescribeClientAuthenticationSettingsCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DescribeConditionalForwardersCommand.ts b/clients/client-directory-service/src/commands/DescribeConditionalForwardersCommand.ts index 4921d7b36e100..37d1a1ba8ea0b 100644 --- a/clients/client-directory-service/src/commands/DescribeConditionalForwardersCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeConditionalForwardersCommand.ts @@ -91,6 +91,7 @@ export interface DescribeConditionalForwardersCommandOutput * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DescribeConditionalForwardersCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DescribeDirectoriesCommand.ts b/clients/client-directory-service/src/commands/DescribeDirectoriesCommand.ts index f44fbf3ca41bf..8619ee498f52f 100644 --- a/clients/client-directory-service/src/commands/DescribeDirectoriesCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeDirectoriesCommand.ts @@ -187,6 +187,7 @@ export interface DescribeDirectoriesCommandOutput extends DescribeDirectoriesRes * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DescribeDirectoriesCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DescribeDirectoryDataAccessCommand.ts b/clients/client-directory-service/src/commands/DescribeDirectoryDataAccessCommand.ts index 8f3bd6a3fa40f..b07d875fc3aaf 100644 --- a/clients/client-directory-service/src/commands/DescribeDirectoryDataAccessCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeDirectoryDataAccessCommand.ts @@ -70,6 +70,7 @@ export interface DescribeDirectoryDataAccessCommandOutput extends DescribeDirect * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DescribeDirectoryDataAccessCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DescribeDomainControllersCommand.ts b/clients/client-directory-service/src/commands/DescribeDomainControllersCommand.ts index 123661f047c79..76112ca1f94f9 100644 --- a/clients/client-directory-service/src/commands/DescribeDomainControllersCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeDomainControllersCommand.ts @@ -92,6 +92,7 @@ export interface DescribeDomainControllersCommandOutput extends DescribeDomainCo * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DescribeDomainControllersCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DescribeEventTopicsCommand.ts b/clients/client-directory-service/src/commands/DescribeEventTopicsCommand.ts index 55ba1b14539a3..9219523208255 100644 --- a/clients/client-directory-service/src/commands/DescribeEventTopicsCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeEventTopicsCommand.ts @@ -81,6 +81,7 @@ export interface DescribeEventTopicsCommandOutput extends DescribeEventTopicsRes * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DescribeEventTopicsCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DescribeLDAPSSettingsCommand.ts b/clients/client-directory-service/src/commands/DescribeLDAPSSettingsCommand.ts index 16595a6f2920f..9163fe5496916 100644 --- a/clients/client-directory-service/src/commands/DescribeLDAPSSettingsCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeLDAPSSettingsCommand.ts @@ -83,6 +83,7 @@ export interface DescribeLDAPSSettingsCommandOutput extends DescribeLDAPSSetting * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DescribeLDAPSSettingsCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DescribeRegionsCommand.ts b/clients/client-directory-service/src/commands/DescribeRegionsCommand.ts index bd7efb8cd5797..e880ebb56ca93 100644 --- a/clients/client-directory-service/src/commands/DescribeRegionsCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeRegionsCommand.ts @@ -97,6 +97,7 @@ export interface DescribeRegionsCommandOutput extends DescribeRegionsResult, __M * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DescribeRegionsCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DescribeSettingsCommand.ts b/clients/client-directory-service/src/commands/DescribeSettingsCommand.ts index e0e7b4f3ba9c2..ae18ef48df5b0 100644 --- a/clients/client-directory-service/src/commands/DescribeSettingsCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeSettingsCommand.ts @@ -93,6 +93,7 @@ export interface DescribeSettingsCommandOutput extends DescribeSettingsResult, _ * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DescribeSettingsCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DescribeSharedDirectoriesCommand.ts b/clients/client-directory-service/src/commands/DescribeSharedDirectoriesCommand.ts index fccbd90c47f07..62d5616dd7a5a 100644 --- a/clients/client-directory-service/src/commands/DescribeSharedDirectoriesCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeSharedDirectoriesCommand.ts @@ -95,6 +95,7 @@ export interface DescribeSharedDirectoriesCommandOutput extends DescribeSharedDi * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DescribeSharedDirectoriesCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DescribeSnapshotsCommand.ts b/clients/client-directory-service/src/commands/DescribeSnapshotsCommand.ts index bfc1eadb59197..0220399669dc2 100644 --- a/clients/client-directory-service/src/commands/DescribeSnapshotsCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeSnapshotsCommand.ts @@ -91,6 +91,7 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsResult, * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DescribeSnapshotsCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DescribeTrustsCommand.ts b/clients/client-directory-service/src/commands/DescribeTrustsCommand.ts index dec179a5ae758..7d78af00eb5db 100644 --- a/clients/client-directory-service/src/commands/DescribeTrustsCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeTrustsCommand.ts @@ -95,6 +95,7 @@ export interface DescribeTrustsCommandOutput extends DescribeTrustsResult, __Met * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DescribeTrustsCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DescribeUpdateDirectoryCommand.ts b/clients/client-directory-service/src/commands/DescribeUpdateDirectoryCommand.ts index 04abec52caca9..b9a28315c2c33 100644 --- a/clients/client-directory-service/src/commands/DescribeUpdateDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeUpdateDirectoryCommand.ts @@ -98,6 +98,7 @@ export interface DescribeUpdateDirectoryCommandOutput extends DescribeUpdateDire * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DescribeUpdateDirectoryCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DisableClientAuthenticationCommand.ts b/clients/client-directory-service/src/commands/DisableClientAuthenticationCommand.ts index 50f07b4c309d9..ef29110aaa6d0 100644 --- a/clients/client-directory-service/src/commands/DisableClientAuthenticationCommand.ts +++ b/clients/client-directory-service/src/commands/DisableClientAuthenticationCommand.ts @@ -72,6 +72,7 @@ export interface DisableClientAuthenticationCommandOutput extends DisableClientA * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DisableClientAuthenticationCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DisableDirectoryDataAccessCommand.ts b/clients/client-directory-service/src/commands/DisableDirectoryDataAccessCommand.ts index c57ea4c627804..81ae8f82edc30 100644 --- a/clients/client-directory-service/src/commands/DisableDirectoryDataAccessCommand.ts +++ b/clients/client-directory-service/src/commands/DisableDirectoryDataAccessCommand.ts @@ -76,6 +76,7 @@ export interface DisableDirectoryDataAccessCommandOutput extends DisableDirector * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DisableDirectoryDataAccessCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DisableLDAPSCommand.ts b/clients/client-directory-service/src/commands/DisableLDAPSCommand.ts index 4e3e5f9596611..fc4e20d07ddb3 100644 --- a/clients/client-directory-service/src/commands/DisableLDAPSCommand.ts +++ b/clients/client-directory-service/src/commands/DisableLDAPSCommand.ts @@ -76,6 +76,7 @@ export interface DisableLDAPSCommandOutput extends DisableLDAPSResult, __Metadat * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DisableLDAPSCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DisableRadiusCommand.ts b/clients/client-directory-service/src/commands/DisableRadiusCommand.ts index a5b5bc7ddf35d..1244023c8335b 100644 --- a/clients/client-directory-service/src/commands/DisableRadiusCommand.ts +++ b/clients/client-directory-service/src/commands/DisableRadiusCommand.ts @@ -63,6 +63,7 @@ export interface DisableRadiusCommandOutput extends DisableRadiusResult, __Metad * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DisableRadiusCommand extends $Command diff --git a/clients/client-directory-service/src/commands/DisableSsoCommand.ts b/clients/client-directory-service/src/commands/DisableSsoCommand.ts index e407940723f98..0f04489a31ea4 100644 --- a/clients/client-directory-service/src/commands/DisableSsoCommand.ts +++ b/clients/client-directory-service/src/commands/DisableSsoCommand.ts @@ -70,6 +70,7 @@ export interface DisableSsoCommandOutput extends DisableSsoResult, __MetadataBea * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class DisableSsoCommand extends $Command diff --git a/clients/client-directory-service/src/commands/EnableClientAuthenticationCommand.ts b/clients/client-directory-service/src/commands/EnableClientAuthenticationCommand.ts index 1bf024e49fd75..660920bcb7f24 100644 --- a/clients/client-directory-service/src/commands/EnableClientAuthenticationCommand.ts +++ b/clients/client-directory-service/src/commands/EnableClientAuthenticationCommand.ts @@ -76,6 +76,7 @@ export interface EnableClientAuthenticationCommandOutput extends EnableClientAut * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class EnableClientAuthenticationCommand extends $Command diff --git a/clients/client-directory-service/src/commands/EnableDirectoryDataAccessCommand.ts b/clients/client-directory-service/src/commands/EnableDirectoryDataAccessCommand.ts index 211453abd485b..be6925078962d 100644 --- a/clients/client-directory-service/src/commands/EnableDirectoryDataAccessCommand.ts +++ b/clients/client-directory-service/src/commands/EnableDirectoryDataAccessCommand.ts @@ -76,6 +76,7 @@ export interface EnableDirectoryDataAccessCommandOutput extends EnableDirectoryD * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class EnableDirectoryDataAccessCommand extends $Command diff --git a/clients/client-directory-service/src/commands/EnableLDAPSCommand.ts b/clients/client-directory-service/src/commands/EnableLDAPSCommand.ts index 6f22ae9a5bce9..3457f04661871 100644 --- a/clients/client-directory-service/src/commands/EnableLDAPSCommand.ts +++ b/clients/client-directory-service/src/commands/EnableLDAPSCommand.ts @@ -80,6 +80,7 @@ export interface EnableLDAPSCommandOutput extends EnableLDAPSResult, __MetadataB * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class EnableLDAPSCommand extends $Command diff --git a/clients/client-directory-service/src/commands/EnableRadiusCommand.ts b/clients/client-directory-service/src/commands/EnableRadiusCommand.ts index e49549ef52544..cba895276d59d 100644 --- a/clients/client-directory-service/src/commands/EnableRadiusCommand.ts +++ b/clients/client-directory-service/src/commands/EnableRadiusCommand.ts @@ -81,6 +81,7 @@ export interface EnableRadiusCommandOutput extends EnableRadiusResult, __Metadat * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class EnableRadiusCommand extends $Command diff --git a/clients/client-directory-service/src/commands/EnableSsoCommand.ts b/clients/client-directory-service/src/commands/EnableSsoCommand.ts index cc06c3be15396..420dcd9fd58da 100644 --- a/clients/client-directory-service/src/commands/EnableSsoCommand.ts +++ b/clients/client-directory-service/src/commands/EnableSsoCommand.ts @@ -72,6 +72,7 @@ export interface EnableSsoCommandOutput extends EnableSsoResult, __MetadataBeare * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class EnableSsoCommand extends $Command diff --git a/clients/client-directory-service/src/commands/GetDirectoryLimitsCommand.ts b/clients/client-directory-service/src/commands/GetDirectoryLimitsCommand.ts index 89c71507d1b7b..906dd49acec83 100644 --- a/clients/client-directory-service/src/commands/GetDirectoryLimitsCommand.ts +++ b/clients/client-directory-service/src/commands/GetDirectoryLimitsCommand.ts @@ -72,6 +72,7 @@ export interface GetDirectoryLimitsCommandOutput extends GetDirectoryLimitsResul * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class GetDirectoryLimitsCommand extends $Command diff --git a/clients/client-directory-service/src/commands/GetSnapshotLimitsCommand.ts b/clients/client-directory-service/src/commands/GetSnapshotLimitsCommand.ts index 0abf2c2f54413..64a25a1f1a12d 100644 --- a/clients/client-directory-service/src/commands/GetSnapshotLimitsCommand.ts +++ b/clients/client-directory-service/src/commands/GetSnapshotLimitsCommand.ts @@ -68,6 +68,7 @@ export interface GetSnapshotLimitsCommandOutput extends GetSnapshotLimitsResult, * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class GetSnapshotLimitsCommand extends $Command diff --git a/clients/client-directory-service/src/commands/ListCertificatesCommand.ts b/clients/client-directory-service/src/commands/ListCertificatesCommand.ts index 74a06ebcd3793..00f5e170b980b 100644 --- a/clients/client-directory-service/src/commands/ListCertificatesCommand.ts +++ b/clients/client-directory-service/src/commands/ListCertificatesCommand.ts @@ -84,6 +84,7 @@ export interface ListCertificatesCommandOutput extends ListCertificatesResult, _ * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class ListCertificatesCommand extends $Command diff --git a/clients/client-directory-service/src/commands/ListIpRoutesCommand.ts b/clients/client-directory-service/src/commands/ListIpRoutesCommand.ts index 00c0faeb51dfe..c0aa09eca0b21 100644 --- a/clients/client-directory-service/src/commands/ListIpRoutesCommand.ts +++ b/clients/client-directory-service/src/commands/ListIpRoutesCommand.ts @@ -82,6 +82,7 @@ export interface ListIpRoutesCommandOutput extends ListIpRoutesResult, __Metadat * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class ListIpRoutesCommand extends $Command diff --git a/clients/client-directory-service/src/commands/ListLogSubscriptionsCommand.ts b/clients/client-directory-service/src/commands/ListLogSubscriptionsCommand.ts index e4f1b50ce2a96..a8ae4a86e5419 100644 --- a/clients/client-directory-service/src/commands/ListLogSubscriptionsCommand.ts +++ b/clients/client-directory-service/src/commands/ListLogSubscriptionsCommand.ts @@ -76,6 +76,7 @@ export interface ListLogSubscriptionsCommandOutput extends ListLogSubscriptionsR * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class ListLogSubscriptionsCommand extends $Command diff --git a/clients/client-directory-service/src/commands/ListSchemaExtensionsCommand.ts b/clients/client-directory-service/src/commands/ListSchemaExtensionsCommand.ts index b2a2ca601bf8e..65522e23df81e 100644 --- a/clients/client-directory-service/src/commands/ListSchemaExtensionsCommand.ts +++ b/clients/client-directory-service/src/commands/ListSchemaExtensionsCommand.ts @@ -80,6 +80,7 @@ export interface ListSchemaExtensionsCommandOutput extends ListSchemaExtensionsR * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class ListSchemaExtensionsCommand extends $Command diff --git a/clients/client-directory-service/src/commands/ListTagsForResourceCommand.ts b/clients/client-directory-service/src/commands/ListTagsForResourceCommand.ts index 9a8efc525a650..499252ed805f1 100644 --- a/clients/client-directory-service/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-directory-service/src/commands/ListTagsForResourceCommand.ts @@ -78,6 +78,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-directory-service/src/commands/RegisterCertificateCommand.ts b/clients/client-directory-service/src/commands/RegisterCertificateCommand.ts index 59f6d8ee67c96..79932bae22069 100644 --- a/clients/client-directory-service/src/commands/RegisterCertificateCommand.ts +++ b/clients/client-directory-service/src/commands/RegisterCertificateCommand.ts @@ -87,6 +87,7 @@ export interface RegisterCertificateCommandOutput extends RegisterCertificateRes * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class RegisterCertificateCommand extends $Command diff --git a/clients/client-directory-service/src/commands/RegisterEventTopicCommand.ts b/clients/client-directory-service/src/commands/RegisterEventTopicCommand.ts index 0a2abe1d35f90..317b146841d09 100644 --- a/clients/client-directory-service/src/commands/RegisterEventTopicCommand.ts +++ b/clients/client-directory-service/src/commands/RegisterEventTopicCommand.ts @@ -70,6 +70,7 @@ export interface RegisterEventTopicCommandOutput extends RegisterEventTopicResul * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class RegisterEventTopicCommand extends $Command diff --git a/clients/client-directory-service/src/commands/RejectSharedDirectoryCommand.ts b/clients/client-directory-service/src/commands/RejectSharedDirectoryCommand.ts index 73822fc8235d2..c4503b7831c23 100644 --- a/clients/client-directory-service/src/commands/RejectSharedDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/RejectSharedDirectoryCommand.ts @@ -70,6 +70,7 @@ export interface RejectSharedDirectoryCommandOutput extends RejectSharedDirector * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class RejectSharedDirectoryCommand extends $Command diff --git a/clients/client-directory-service/src/commands/RemoveIpRoutesCommand.ts b/clients/client-directory-service/src/commands/RemoveIpRoutesCommand.ts index 124b1070c86d5..f76511100509c 100644 --- a/clients/client-directory-service/src/commands/RemoveIpRoutesCommand.ts +++ b/clients/client-directory-service/src/commands/RemoveIpRoutesCommand.ts @@ -71,6 +71,7 @@ export interface RemoveIpRoutesCommandOutput extends RemoveIpRoutesResult, __Met * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class RemoveIpRoutesCommand extends $Command diff --git a/clients/client-directory-service/src/commands/RemoveRegionCommand.ts b/clients/client-directory-service/src/commands/RemoveRegionCommand.ts index 7b14dae358df4..90e3eb2e1d045 100644 --- a/clients/client-directory-service/src/commands/RemoveRegionCommand.ts +++ b/clients/client-directory-service/src/commands/RemoveRegionCommand.ts @@ -73,6 +73,7 @@ export interface RemoveRegionCommandOutput extends RemoveRegionResult, __Metadat * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class RemoveRegionCommand extends $Command diff --git a/clients/client-directory-service/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-directory-service/src/commands/RemoveTagsFromResourceCommand.ts index 136198a124ca9..0ac213a63a5dc 100644 --- a/clients/client-directory-service/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-directory-service/src/commands/RemoveTagsFromResourceCommand.ts @@ -68,6 +68,7 @@ export interface RemoveTagsFromResourceCommandOutput extends RemoveTagsFromResou * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class RemoveTagsFromResourceCommand extends $Command diff --git a/clients/client-directory-service/src/commands/ResetUserPasswordCommand.ts b/clients/client-directory-service/src/commands/ResetUserPasswordCommand.ts index f5cdff35c3648..ee7a08552d3d0 100644 --- a/clients/client-directory-service/src/commands/ResetUserPasswordCommand.ts +++ b/clients/client-directory-service/src/commands/ResetUserPasswordCommand.ts @@ -98,6 +98,7 @@ export interface ResetUserPasswordCommandOutput extends ResetUserPasswordResult, * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class ResetUserPasswordCommand extends $Command diff --git a/clients/client-directory-service/src/commands/RestoreFromSnapshotCommand.ts b/clients/client-directory-service/src/commands/RestoreFromSnapshotCommand.ts index d19681fe21f2b..5536cf1a5d580 100644 --- a/clients/client-directory-service/src/commands/RestoreFromSnapshotCommand.ts +++ b/clients/client-directory-service/src/commands/RestoreFromSnapshotCommand.ts @@ -70,6 +70,7 @@ export interface RestoreFromSnapshotCommandOutput extends RestoreFromSnapshotRes * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class RestoreFromSnapshotCommand extends $Command diff --git a/clients/client-directory-service/src/commands/ShareDirectoryCommand.ts b/clients/client-directory-service/src/commands/ShareDirectoryCommand.ts index 924b25ce4309a..7d5ab027719bb 100644 --- a/clients/client-directory-service/src/commands/ShareDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/ShareDirectoryCommand.ts @@ -108,6 +108,7 @@ export interface ShareDirectoryCommandOutput extends ShareDirectoryResult, __Met * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class ShareDirectoryCommand extends $Command diff --git a/clients/client-directory-service/src/commands/StartSchemaExtensionCommand.ts b/clients/client-directory-service/src/commands/StartSchemaExtensionCommand.ts index c2a3713ee9e9c..abc47f922b4fb 100644 --- a/clients/client-directory-service/src/commands/StartSchemaExtensionCommand.ts +++ b/clients/client-directory-service/src/commands/StartSchemaExtensionCommand.ts @@ -78,6 +78,7 @@ export interface StartSchemaExtensionCommandOutput extends StartSchemaExtensionR * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class StartSchemaExtensionCommand extends $Command diff --git a/clients/client-directory-service/src/commands/UnshareDirectoryCommand.ts b/clients/client-directory-service/src/commands/UnshareDirectoryCommand.ts index b17a337594236..b32100eae64a3 100644 --- a/clients/client-directory-service/src/commands/UnshareDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/UnshareDirectoryCommand.ts @@ -74,6 +74,7 @@ export interface UnshareDirectoryCommandOutput extends UnshareDirectoryResult, _ * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class UnshareDirectoryCommand extends $Command diff --git a/clients/client-directory-service/src/commands/UpdateConditionalForwarderCommand.ts b/clients/client-directory-service/src/commands/UpdateConditionalForwarderCommand.ts index 616914848d66a..087a94954f7c3 100644 --- a/clients/client-directory-service/src/commands/UpdateConditionalForwarderCommand.ts +++ b/clients/client-directory-service/src/commands/UpdateConditionalForwarderCommand.ts @@ -76,6 +76,7 @@ export interface UpdateConditionalForwarderCommandOutput extends UpdateCondition * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class UpdateConditionalForwarderCommand extends $Command diff --git a/clients/client-directory-service/src/commands/UpdateDirectorySetupCommand.ts b/clients/client-directory-service/src/commands/UpdateDirectorySetupCommand.ts index eaa7d16a3becb..aee69f264604f 100644 --- a/clients/client-directory-service/src/commands/UpdateDirectorySetupCommand.ts +++ b/clients/client-directory-service/src/commands/UpdateDirectorySetupCommand.ts @@ -91,6 +91,7 @@ export interface UpdateDirectorySetupCommandOutput extends UpdateDirectorySetupR * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class UpdateDirectorySetupCommand extends $Command diff --git a/clients/client-directory-service/src/commands/UpdateNumberOfDomainControllersCommand.ts b/clients/client-directory-service/src/commands/UpdateNumberOfDomainControllersCommand.ts index 692a47279b329..dbae8ab79e0cd 100644 --- a/clients/client-directory-service/src/commands/UpdateNumberOfDomainControllersCommand.ts +++ b/clients/client-directory-service/src/commands/UpdateNumberOfDomainControllersCommand.ts @@ -85,6 +85,7 @@ export interface UpdateNumberOfDomainControllersCommandOutput * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class UpdateNumberOfDomainControllersCommand extends $Command diff --git a/clients/client-directory-service/src/commands/UpdateRadiusCommand.ts b/clients/client-directory-service/src/commands/UpdateRadiusCommand.ts index 692ad9b1f8545..98db10200e02d 100644 --- a/clients/client-directory-service/src/commands/UpdateRadiusCommand.ts +++ b/clients/client-directory-service/src/commands/UpdateRadiusCommand.ts @@ -78,6 +78,7 @@ export interface UpdateRadiusCommandOutput extends UpdateRadiusResult, __Metadat * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class UpdateRadiusCommand extends $Command diff --git a/clients/client-directory-service/src/commands/UpdateSettingsCommand.ts b/clients/client-directory-service/src/commands/UpdateSettingsCommand.ts index e51729f13a349..28635a1c63b17 100644 --- a/clients/client-directory-service/src/commands/UpdateSettingsCommand.ts +++ b/clients/client-directory-service/src/commands/UpdateSettingsCommand.ts @@ -85,6 +85,7 @@ export interface UpdateSettingsCommandOutput extends UpdateSettingsResult, __Met * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class UpdateSettingsCommand extends $Command diff --git a/clients/client-directory-service/src/commands/UpdateTrustCommand.ts b/clients/client-directory-service/src/commands/UpdateTrustCommand.ts index dddb37007d8b4..e28c23e60ce55 100644 --- a/clients/client-directory-service/src/commands/UpdateTrustCommand.ts +++ b/clients/client-directory-service/src/commands/UpdateTrustCommand.ts @@ -70,6 +70,7 @@ export interface UpdateTrustCommandOutput extends UpdateTrustResult, __MetadataB * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class UpdateTrustCommand extends $Command diff --git a/clients/client-directory-service/src/commands/VerifyTrustCommand.ts b/clients/client-directory-service/src/commands/VerifyTrustCommand.ts index c3e1d32df4687..cfe61badc73b6 100644 --- a/clients/client-directory-service/src/commands/VerifyTrustCommand.ts +++ b/clients/client-directory-service/src/commands/VerifyTrustCommand.ts @@ -73,6 +73,7 @@ export interface VerifyTrustCommandOutput extends VerifyTrustResult, __MetadataB * @throws {@link DirectoryServiceServiceException} *

Base exception class for all service exceptions from DirectoryService service.

* + * * @public */ export class VerifyTrustCommand extends $Command diff --git a/clients/client-dlm/src/commands/CreateLifecyclePolicyCommand.ts b/clients/client-dlm/src/commands/CreateLifecyclePolicyCommand.ts index 10868fca78ff3..bc4992fb47b48 100644 --- a/clients/client-dlm/src/commands/CreateLifecyclePolicyCommand.ts +++ b/clients/client-dlm/src/commands/CreateLifecyclePolicyCommand.ts @@ -274,6 +274,7 @@ export interface CreateLifecyclePolicyCommandOutput extends CreateLifecyclePolic * @throws {@link DLMServiceException} *

Base exception class for all service exceptions from DLM service.

* + * * @public */ export class CreateLifecyclePolicyCommand extends $Command diff --git a/clients/client-dlm/src/commands/DeleteLifecyclePolicyCommand.ts b/clients/client-dlm/src/commands/DeleteLifecyclePolicyCommand.ts index 9b090db8fbe6a..bacc7b3573156 100644 --- a/clients/client-dlm/src/commands/DeleteLifecyclePolicyCommand.ts +++ b/clients/client-dlm/src/commands/DeleteLifecyclePolicyCommand.ts @@ -65,6 +65,7 @@ export interface DeleteLifecyclePolicyCommandOutput extends DeleteLifecyclePolic * @throws {@link DLMServiceException} *

Base exception class for all service exceptions from DLM service.

* + * * @public */ export class DeleteLifecyclePolicyCommand extends $Command diff --git a/clients/client-dlm/src/commands/GetLifecyclePoliciesCommand.ts b/clients/client-dlm/src/commands/GetLifecyclePoliciesCommand.ts index 7d3d5bdc9f305..75513aba86632 100644 --- a/clients/client-dlm/src/commands/GetLifecyclePoliciesCommand.ts +++ b/clients/client-dlm/src/commands/GetLifecyclePoliciesCommand.ts @@ -93,6 +93,7 @@ export interface GetLifecyclePoliciesCommandOutput extends GetLifecyclePoliciesR * @throws {@link DLMServiceException} *

Base exception class for all service exceptions from DLM service.

* + * * @public */ export class GetLifecyclePoliciesCommand extends $Command diff --git a/clients/client-dlm/src/commands/GetLifecyclePolicyCommand.ts b/clients/client-dlm/src/commands/GetLifecyclePolicyCommand.ts index 8a8fbebf01a5d..c39947424b71d 100644 --- a/clients/client-dlm/src/commands/GetLifecyclePolicyCommand.ts +++ b/clients/client-dlm/src/commands/GetLifecyclePolicyCommand.ts @@ -239,6 +239,7 @@ export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyRespo * @throws {@link DLMServiceException} *

Base exception class for all service exceptions from DLM service.

* + * * @public */ export class GetLifecyclePolicyCommand extends $Command diff --git a/clients/client-dlm/src/commands/ListTagsForResourceCommand.ts b/clients/client-dlm/src/commands/ListTagsForResourceCommand.ts index f6e189c3f4e20..0ca7c74ac8e47 100644 --- a/clients/client-dlm/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-dlm/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link DLMServiceException} *

Base exception class for all service exceptions from DLM service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-dlm/src/commands/TagResourceCommand.ts b/clients/client-dlm/src/commands/TagResourceCommand.ts index e966733aa15d4..be894c4220b53 100644 --- a/clients/client-dlm/src/commands/TagResourceCommand.ts +++ b/clients/client-dlm/src/commands/TagResourceCommand.ts @@ -66,6 +66,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link DLMServiceException} *

Base exception class for all service exceptions from DLM service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-dlm/src/commands/UntagResourceCommand.ts b/clients/client-dlm/src/commands/UntagResourceCommand.ts index d67044cb7f06e..c090c282ea068 100644 --- a/clients/client-dlm/src/commands/UntagResourceCommand.ts +++ b/clients/client-dlm/src/commands/UntagResourceCommand.ts @@ -66,6 +66,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link DLMServiceException} *

Base exception class for all service exceptions from DLM service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-dlm/src/commands/UpdateLifecyclePolicyCommand.ts b/clients/client-dlm/src/commands/UpdateLifecyclePolicyCommand.ts index f1b15d7ab66f5..75a8355958e31 100644 --- a/clients/client-dlm/src/commands/UpdateLifecyclePolicyCommand.ts +++ b/clients/client-dlm/src/commands/UpdateLifecyclePolicyCommand.ts @@ -251,6 +251,7 @@ export interface UpdateLifecyclePolicyCommandOutput extends UpdateLifecyclePolic * @throws {@link DLMServiceException} *

Base exception class for all service exceptions from DLM service.

* + * * @public */ export class UpdateLifecyclePolicyCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/ApplyPendingMaintenanceActionCommand.ts b/clients/client-docdb-elastic/src/commands/ApplyPendingMaintenanceActionCommand.ts index 11e20e8fbf600..4551b7cd805c0 100644 --- a/clients/client-docdb-elastic/src/commands/ApplyPendingMaintenanceActionCommand.ts +++ b/clients/client-docdb-elastic/src/commands/ApplyPendingMaintenanceActionCommand.ts @@ -93,6 +93,7 @@ export interface ApplyPendingMaintenanceActionCommandOutput * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class ApplyPendingMaintenanceActionCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/CopyClusterSnapshotCommand.ts b/clients/client-docdb-elastic/src/commands/CopyClusterSnapshotCommand.ts index 171bde8018c2f..e6425ef84df18 100644 --- a/clients/client-docdb-elastic/src/commands/CopyClusterSnapshotCommand.ts +++ b/clients/client-docdb-elastic/src/commands/CopyClusterSnapshotCommand.ts @@ -98,6 +98,40 @@ export interface CopyClusterSnapshotCommandOutput extends CopyClusterSnapshotOut * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * + * @example Basic Copy Cluster Snapshot Example + * ```javascript + * // update applied + * const input = { + * snapshotArn: "arn:aws:docdb-elastic:us-east-1:$AWS_ACCOUNT_ID:cluster-snapshot/$SOURCE_SNAPSHOT_ID", + * targetSnapshotName: "sampleSnapshotName" + * }; + * const command = new CopyClusterSnapshotCommand(input); + * const response = await client.send(command); + * /* response is + * { + * snapshot: { + * adminUserName: "sampleAdminUser", + * clusterArn: "arn:aws:docdb-elastic:us-east-1:$AWS_ACCOUNT_ID:cluster/$CLUSTER_ID", + * clusterCreationTime: "2000-01-01T00:00:00.000Z", + * kmsKeyId: "AWS_OWNED_KMS_KEY", + * snapshotArn: "arn:aws:docdb-elastic:us-east-1:$AWS_ACCOUNT_ID:cluster-snapshot/$TARGET_SNAPSHOT_ID", + * snapshotCreationTime: "2000-01-01T00:00:00.000Z", + * snapshotName: "sampleSnapshotName", + * snapshotType: "MANUAL", + * status: "ACTIVE", + * subnetIds: [ + * "subnetId1", + * "subnetId2" + * ], + * vpcSecurityGroupIds: [ + * "vpcSgId1, vpcSgId2" + * ] + * } + * } + * *\/ + * ``` + * * @public */ export class CopyClusterSnapshotCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/CreateClusterCommand.ts b/clients/client-docdb-elastic/src/commands/CreateClusterCommand.ts index 6e2797b621ff9..0c50bfd2a746f 100644 --- a/clients/client-docdb-elastic/src/commands/CreateClusterCommand.ts +++ b/clients/client-docdb-elastic/src/commands/CreateClusterCommand.ts @@ -121,6 +121,7 @@ export interface CreateClusterCommandOutput extends CreateClusterOutput, __Metad * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class CreateClusterCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/CreateClusterSnapshotCommand.ts b/clients/client-docdb-elastic/src/commands/CreateClusterSnapshotCommand.ts index 70d55346e725c..2bbe9993226c2 100644 --- a/clients/client-docdb-elastic/src/commands/CreateClusterSnapshotCommand.ts +++ b/clients/client-docdb-elastic/src/commands/CreateClusterSnapshotCommand.ts @@ -96,6 +96,7 @@ export interface CreateClusterSnapshotCommandOutput extends CreateClusterSnapsho * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class CreateClusterSnapshotCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/DeleteClusterCommand.ts b/clients/client-docdb-elastic/src/commands/DeleteClusterCommand.ts index 800fcf0e2aed2..126fa36c64378 100644 --- a/clients/client-docdb-elastic/src/commands/DeleteClusterCommand.ts +++ b/clients/client-docdb-elastic/src/commands/DeleteClusterCommand.ts @@ -101,6 +101,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterOutput, __Metad * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class DeleteClusterCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/DeleteClusterSnapshotCommand.ts b/clients/client-docdb-elastic/src/commands/DeleteClusterSnapshotCommand.ts index be1802ac9d300..6072e586f91e1 100644 --- a/clients/client-docdb-elastic/src/commands/DeleteClusterSnapshotCommand.ts +++ b/clients/client-docdb-elastic/src/commands/DeleteClusterSnapshotCommand.ts @@ -89,6 +89,7 @@ export interface DeleteClusterSnapshotCommandOutput extends DeleteClusterSnapsho * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class DeleteClusterSnapshotCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/GetClusterCommand.ts b/clients/client-docdb-elastic/src/commands/GetClusterCommand.ts index 110b90261b738..59eb018add06f 100644 --- a/clients/client-docdb-elastic/src/commands/GetClusterCommand.ts +++ b/clients/client-docdb-elastic/src/commands/GetClusterCommand.ts @@ -98,6 +98,7 @@ export interface GetClusterCommandOutput extends GetClusterOutput, __MetadataBea * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class GetClusterCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/GetClusterSnapshotCommand.ts b/clients/client-docdb-elastic/src/commands/GetClusterSnapshotCommand.ts index 9edef1511ede0..761bda2f48d5b 100644 --- a/clients/client-docdb-elastic/src/commands/GetClusterSnapshotCommand.ts +++ b/clients/client-docdb-elastic/src/commands/GetClusterSnapshotCommand.ts @@ -86,6 +86,7 @@ export interface GetClusterSnapshotCommandOutput extends GetClusterSnapshotOutpu * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class GetClusterSnapshotCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/GetPendingMaintenanceActionCommand.ts b/clients/client-docdb-elastic/src/commands/GetPendingMaintenanceActionCommand.ts index dd938e99a0fa2..6d0644440f589 100644 --- a/clients/client-docdb-elastic/src/commands/GetPendingMaintenanceActionCommand.ts +++ b/clients/client-docdb-elastic/src/commands/GetPendingMaintenanceActionCommand.ts @@ -88,6 +88,7 @@ export interface GetPendingMaintenanceActionCommandOutput extends GetPendingMain * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class GetPendingMaintenanceActionCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/ListClusterSnapshotsCommand.ts b/clients/client-docdb-elastic/src/commands/ListClusterSnapshotsCommand.ts index 67343a59a69ba..8298261ed5346 100644 --- a/clients/client-docdb-elastic/src/commands/ListClusterSnapshotsCommand.ts +++ b/clients/client-docdb-elastic/src/commands/ListClusterSnapshotsCommand.ts @@ -79,6 +79,7 @@ export interface ListClusterSnapshotsCommandOutput extends ListClusterSnapshotsO * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class ListClusterSnapshotsCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/ListClustersCommand.ts b/clients/client-docdb-elastic/src/commands/ListClustersCommand.ts index 80426b39d247b..9cc5411fef5c0 100644 --- a/clients/client-docdb-elastic/src/commands/ListClustersCommand.ts +++ b/clients/client-docdb-elastic/src/commands/ListClustersCommand.ts @@ -75,6 +75,7 @@ export interface ListClustersCommandOutput extends ListClustersOutput, __Metadat * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class ListClustersCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/ListPendingMaintenanceActionsCommand.ts b/clients/client-docdb-elastic/src/commands/ListPendingMaintenanceActionsCommand.ts index f58beb6d3d64a..8e07c2f8d6aca 100644 --- a/clients/client-docdb-elastic/src/commands/ListPendingMaintenanceActionsCommand.ts +++ b/clients/client-docdb-elastic/src/commands/ListPendingMaintenanceActionsCommand.ts @@ -88,6 +88,7 @@ export interface ListPendingMaintenanceActionsCommandOutput * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class ListPendingMaintenanceActionsCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/ListTagsForResourceCommand.ts b/clients/client-docdb-elastic/src/commands/ListTagsForResourceCommand.ts index 71f8c2db42a80..306b69aa8556b 100644 --- a/clients/client-docdb-elastic/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-docdb-elastic/src/commands/ListTagsForResourceCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/RestoreClusterFromSnapshotCommand.ts b/clients/client-docdb-elastic/src/commands/RestoreClusterFromSnapshotCommand.ts index ae60a0dc97fc8..1ed886997eb82 100644 --- a/clients/client-docdb-elastic/src/commands/RestoreClusterFromSnapshotCommand.ts +++ b/clients/client-docdb-elastic/src/commands/RestoreClusterFromSnapshotCommand.ts @@ -117,6 +117,7 @@ export interface RestoreClusterFromSnapshotCommandOutput extends RestoreClusterF * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class RestoreClusterFromSnapshotCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/StartClusterCommand.ts b/clients/client-docdb-elastic/src/commands/StartClusterCommand.ts index d4bdddf52840e..f6c84ad150762 100644 --- a/clients/client-docdb-elastic/src/commands/StartClusterCommand.ts +++ b/clients/client-docdb-elastic/src/commands/StartClusterCommand.ts @@ -98,6 +98,45 @@ export interface StartClusterCommandOutput extends StartClusterOutput, __Metadat * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * + * @example Basic Start Cluster Example + * ```javascript + * // update applied + * const input = { + * clusterArn: "arn:aws:docdb-elastic:us-east-1:$AWS_ACCOUNT_ID:cluster/$CLUSTER_ID" + * }; + * const command = new StartClusterCommand(input); + * const response = await client.send(command); + * /* response is + * { + * cluster: { + * adminUserName: "sampleAdminUser", + * authType: "PLAIN_TEXT", + * backupRetentionPeriod: 1, + * clusterArn: "arn:aws:docdb-elastic:us-east-1:$AWS_ACCOUNT_ID:cluster/$CLUSTER_ID", + * clusterEndpoint: "sampleClusterName.us-east-1.docdb-elastic.amazonaws.com", + * clusterName: "sampleClusterName", + * createTime: "2000-01-01T00:00:00.000Z", + * kmsKeyId: "AWS_OWNED_KMS_KEY", + * preferredBackupWindow: "01:00-01:30", + * preferredMaintenanceWindow: "mon:00:00-mon:00:30", + * shardCapacity: 2, + * shardCount: 2, + * shardInstanceCount: 1, + * shards: [], + * status: "STARTING", + * subnetIds: [ + * "subnetId1", + * "subnetId2" + * ], + * vpcSecurityGroupIds: [ + * "vpcSgId1, vpcSgId2" + * ] + * } + * } + * *\/ + * ``` + * * @public */ export class StartClusterCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/StopClusterCommand.ts b/clients/client-docdb-elastic/src/commands/StopClusterCommand.ts index 6f998577f32fa..51c37e0e9adf7 100644 --- a/clients/client-docdb-elastic/src/commands/StopClusterCommand.ts +++ b/clients/client-docdb-elastic/src/commands/StopClusterCommand.ts @@ -99,6 +99,45 @@ export interface StopClusterCommandOutput extends StopClusterOutput, __MetadataB * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * + * @example Basic Stop Cluster Example + * ```javascript + * // update applied + * const input = { + * clusterArn: "arn:aws:docdb-elastic:us-east-1:$AWS_ACCOUNT_ID:cluster/$CLUSTER_ID" + * }; + * const command = new StopClusterCommand(input); + * const response = await client.send(command); + * /* response is + * { + * cluster: { + * adminUserName: "sampleAdminUser", + * authType: "PLAIN_TEXT", + * backupRetentionPeriod: 1, + * clusterArn: "arn:aws:docdb-elastic:us-east-1:$AWS_ACCOUNT_ID:cluster/$CLUSTER_ID", + * clusterEndpoint: "sampleClusterName.us-east-1.docdb-elastic.amazonaws.com", + * clusterName: "sampleClusterName", + * createTime: "2000-01-01T00:00:00.000Z", + * kmsKeyId: "AWS_OWNED_KMS_KEY", + * preferredBackupWindow: "01:00-01:30", + * preferredMaintenanceWindow: "mon:00:00-mon:00:30", + * shardCapacity: 2, + * shardCount: 2, + * shardInstanceCount: 1, + * shards: [], + * status: "STOPPING", + * subnetIds: [ + * "subnetId1", + * "subnetId2" + * ], + * vpcSecurityGroupIds: [ + * "vpcSgId1, vpcSgId2" + * ] + * } + * } + * *\/ + * ``` + * * @public */ export class StopClusterCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/TagResourceCommand.ts b/clients/client-docdb-elastic/src/commands/TagResourceCommand.ts index ba0d6d95843b6..28a775025cb53 100644 --- a/clients/client-docdb-elastic/src/commands/TagResourceCommand.ts +++ b/clients/client-docdb-elastic/src/commands/TagResourceCommand.ts @@ -68,6 +68,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/UntagResourceCommand.ts b/clients/client-docdb-elastic/src/commands/UntagResourceCommand.ts index 490c303b4d10d..d5ace95cc67e5 100644 --- a/clients/client-docdb-elastic/src/commands/UntagResourceCommand.ts +++ b/clients/client-docdb-elastic/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-docdb-elastic/src/commands/UpdateClusterCommand.ts b/clients/client-docdb-elastic/src/commands/UpdateClusterCommand.ts index fbe07971a3aab..9dd66e9c43f65 100644 --- a/clients/client-docdb-elastic/src/commands/UpdateClusterCommand.ts +++ b/clients/client-docdb-elastic/src/commands/UpdateClusterCommand.ts @@ -117,6 +117,7 @@ export interface UpdateClusterCommandOutput extends UpdateClusterOutput, __Metad * @throws {@link DocDBElasticServiceException} *

Base exception class for all service exceptions from DocDBElastic service.

* + * * @public */ export class UpdateClusterCommand extends $Command diff --git a/clients/client-docdb/src/commands/AddSourceIdentifierToSubscriptionCommand.ts b/clients/client-docdb/src/commands/AddSourceIdentifierToSubscriptionCommand.ts index bed8932faa02e..ba1ab6a78a6b4 100644 --- a/clients/client-docdb/src/commands/AddSourceIdentifierToSubscriptionCommand.ts +++ b/clients/client-docdb/src/commands/AddSourceIdentifierToSubscriptionCommand.ts @@ -83,6 +83,7 @@ export interface AddSourceIdentifierToSubscriptionCommandOutput * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class AddSourceIdentifierToSubscriptionCommand extends $Command diff --git a/clients/client-docdb/src/commands/AddTagsToResourceCommand.ts b/clients/client-docdb/src/commands/AddTagsToResourceCommand.ts index f5928821e6cc3..1a940ec4ca9b1 100644 --- a/clients/client-docdb/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-docdb/src/commands/AddTagsToResourceCommand.ts @@ -74,6 +74,7 @@ export interface AddTagsToResourceCommandOutput extends __MetadataBearer {} * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class AddTagsToResourceCommand extends $Command diff --git a/clients/client-docdb/src/commands/ApplyPendingMaintenanceActionCommand.ts b/clients/client-docdb/src/commands/ApplyPendingMaintenanceActionCommand.ts index 8b7fa87ddf18b..828f6267b1eb2 100644 --- a/clients/client-docdb/src/commands/ApplyPendingMaintenanceActionCommand.ts +++ b/clients/client-docdb/src/commands/ApplyPendingMaintenanceActionCommand.ts @@ -85,6 +85,7 @@ export interface ApplyPendingMaintenanceActionCommandOutput * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class ApplyPendingMaintenanceActionCommand extends $Command diff --git a/clients/client-docdb/src/commands/CopyDBClusterParameterGroupCommand.ts b/clients/client-docdb/src/commands/CopyDBClusterParameterGroupCommand.ts index 75ccdc64946c0..ee50388d0bbae 100644 --- a/clients/client-docdb/src/commands/CopyDBClusterParameterGroupCommand.ts +++ b/clients/client-docdb/src/commands/CopyDBClusterParameterGroupCommand.ts @@ -78,6 +78,7 @@ export interface CopyDBClusterParameterGroupCommandOutput extends CopyDBClusterP * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class CopyDBClusterParameterGroupCommand extends $Command diff --git a/clients/client-docdb/src/commands/CopyDBClusterSnapshotCommand.ts b/clients/client-docdb/src/commands/CopyDBClusterSnapshotCommand.ts index dfbe3b1c8d72c..71d13b4d11bc0 100644 --- a/clients/client-docdb/src/commands/CopyDBClusterSnapshotCommand.ts +++ b/clients/client-docdb/src/commands/CopyDBClusterSnapshotCommand.ts @@ -115,6 +115,7 @@ export interface CopyDBClusterSnapshotCommandOutput extends CopyDBClusterSnapsho * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class CopyDBClusterSnapshotCommand extends $Command diff --git a/clients/client-docdb/src/commands/CreateDBClusterCommand.ts b/clients/client-docdb/src/commands/CreateDBClusterCommand.ts index 96b4f30018d01..3b53fe193309c 100644 --- a/clients/client-docdb/src/commands/CreateDBClusterCommand.ts +++ b/clients/client-docdb/src/commands/CreateDBClusterCommand.ts @@ -209,6 +209,7 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class CreateDBClusterCommand extends $Command diff --git a/clients/client-docdb/src/commands/CreateDBClusterParameterGroupCommand.ts b/clients/client-docdb/src/commands/CreateDBClusterParameterGroupCommand.ts index 281cb45fb1529..81b6d0d20a778 100644 --- a/clients/client-docdb/src/commands/CreateDBClusterParameterGroupCommand.ts +++ b/clients/client-docdb/src/commands/CreateDBClusterParameterGroupCommand.ts @@ -97,6 +97,7 @@ export interface CreateDBClusterParameterGroupCommandOutput * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class CreateDBClusterParameterGroupCommand extends $Command diff --git a/clients/client-docdb/src/commands/CreateDBClusterSnapshotCommand.ts b/clients/client-docdb/src/commands/CreateDBClusterSnapshotCommand.ts index d8097844173ff..2b3d644fb8eff 100644 --- a/clients/client-docdb/src/commands/CreateDBClusterSnapshotCommand.ts +++ b/clients/client-docdb/src/commands/CreateDBClusterSnapshotCommand.ts @@ -99,6 +99,7 @@ export interface CreateDBClusterSnapshotCommandOutput extends CreateDBClusterSna * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class CreateDBClusterSnapshotCommand extends $Command diff --git a/clients/client-docdb/src/commands/CreateDBInstanceCommand.ts b/clients/client-docdb/src/commands/CreateDBInstanceCommand.ts index 0bbbda6d311cc..4fcccdc6af59a 100644 --- a/clients/client-docdb/src/commands/CreateDBInstanceCommand.ts +++ b/clients/client-docdb/src/commands/CreateDBInstanceCommand.ts @@ -215,6 +215,7 @@ export interface CreateDBInstanceCommandOutput extends CreateDBInstanceResult, _ * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class CreateDBInstanceCommand extends $Command diff --git a/clients/client-docdb/src/commands/CreateDBSubnetGroupCommand.ts b/clients/client-docdb/src/commands/CreateDBSubnetGroupCommand.ts index 1e3039e2035be..de440f9e4620e 100644 --- a/clients/client-docdb/src/commands/CreateDBSubnetGroupCommand.ts +++ b/clients/client-docdb/src/commands/CreateDBSubnetGroupCommand.ts @@ -98,6 +98,7 @@ export interface CreateDBSubnetGroupCommandOutput extends CreateDBSubnetGroupRes * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class CreateDBSubnetGroupCommand extends $Command diff --git a/clients/client-docdb/src/commands/CreateEventSubscriptionCommand.ts b/clients/client-docdb/src/commands/CreateEventSubscriptionCommand.ts index 1f9a97811001e..ff17be96f0cdc 100644 --- a/clients/client-docdb/src/commands/CreateEventSubscriptionCommand.ts +++ b/clients/client-docdb/src/commands/CreateEventSubscriptionCommand.ts @@ -108,6 +108,7 @@ export interface CreateEventSubscriptionCommandOutput extends CreateEventSubscri * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class CreateEventSubscriptionCommand extends $Command diff --git a/clients/client-docdb/src/commands/CreateGlobalClusterCommand.ts b/clients/client-docdb/src/commands/CreateGlobalClusterCommand.ts index 54a9164f473d1..7ef84a17b5793 100644 --- a/clients/client-docdb/src/commands/CreateGlobalClusterCommand.ts +++ b/clients/client-docdb/src/commands/CreateGlobalClusterCommand.ts @@ -98,6 +98,7 @@ export interface CreateGlobalClusterCommandOutput extends CreateGlobalClusterRes * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class CreateGlobalClusterCommand extends $Command diff --git a/clients/client-docdb/src/commands/DeleteDBClusterCommand.ts b/clients/client-docdb/src/commands/DeleteDBClusterCommand.ts index 75912a599e241..d9d55c90a0d3e 100644 --- a/clients/client-docdb/src/commands/DeleteDBClusterCommand.ts +++ b/clients/client-docdb/src/commands/DeleteDBClusterCommand.ts @@ -136,6 +136,7 @@ export interface DeleteDBClusterCommandOutput extends DeleteDBClusterResult, __M * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DeleteDBClusterCommand extends $Command diff --git a/clients/client-docdb/src/commands/DeleteDBClusterParameterGroupCommand.ts b/clients/client-docdb/src/commands/DeleteDBClusterParameterGroupCommand.ts index 7c2523002b868..06d69632524d4 100644 --- a/clients/client-docdb/src/commands/DeleteDBClusterParameterGroupCommand.ts +++ b/clients/client-docdb/src/commands/DeleteDBClusterParameterGroupCommand.ts @@ -63,6 +63,7 @@ export interface DeleteDBClusterParameterGroupCommandOutput extends __MetadataBe * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DeleteDBClusterParameterGroupCommand extends $Command diff --git a/clients/client-docdb/src/commands/DeleteDBClusterSnapshotCommand.ts b/clients/client-docdb/src/commands/DeleteDBClusterSnapshotCommand.ts index 98fda14990af6..0a8702e71910f 100644 --- a/clients/client-docdb/src/commands/DeleteDBClusterSnapshotCommand.ts +++ b/clients/client-docdb/src/commands/DeleteDBClusterSnapshotCommand.ts @@ -86,6 +86,7 @@ export interface DeleteDBClusterSnapshotCommandOutput extends DeleteDBClusterSna * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DeleteDBClusterSnapshotCommand extends $Command diff --git a/clients/client-docdb/src/commands/DeleteDBInstanceCommand.ts b/clients/client-docdb/src/commands/DeleteDBInstanceCommand.ts index e73c00ba9c53d..880363fdb7818 100644 --- a/clients/client-docdb/src/commands/DeleteDBInstanceCommand.ts +++ b/clients/client-docdb/src/commands/DeleteDBInstanceCommand.ts @@ -162,6 +162,7 @@ export interface DeleteDBInstanceCommandOutput extends DeleteDBInstanceResult, _ * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DeleteDBInstanceCommand extends $Command diff --git a/clients/client-docdb/src/commands/DeleteDBSubnetGroupCommand.ts b/clients/client-docdb/src/commands/DeleteDBSubnetGroupCommand.ts index bbf5a4f7b7454..615e2dd8c0eff 100644 --- a/clients/client-docdb/src/commands/DeleteDBSubnetGroupCommand.ts +++ b/clients/client-docdb/src/commands/DeleteDBSubnetGroupCommand.ts @@ -67,6 +67,7 @@ export interface DeleteDBSubnetGroupCommandOutput extends __MetadataBearer {} * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DeleteDBSubnetGroupCommand extends $Command diff --git a/clients/client-docdb/src/commands/DeleteEventSubscriptionCommand.ts b/clients/client-docdb/src/commands/DeleteEventSubscriptionCommand.ts index 152e1183f7058..919793051ef5b 100644 --- a/clients/client-docdb/src/commands/DeleteEventSubscriptionCommand.ts +++ b/clients/client-docdb/src/commands/DeleteEventSubscriptionCommand.ts @@ -77,6 +77,7 @@ export interface DeleteEventSubscriptionCommandOutput extends DeleteEventSubscri * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DeleteEventSubscriptionCommand extends $Command diff --git a/clients/client-docdb/src/commands/DeleteGlobalClusterCommand.ts b/clients/client-docdb/src/commands/DeleteGlobalClusterCommand.ts index eb7714e0493f7..89f1d75a389f0 100644 --- a/clients/client-docdb/src/commands/DeleteGlobalClusterCommand.ts +++ b/clients/client-docdb/src/commands/DeleteGlobalClusterCommand.ts @@ -83,6 +83,7 @@ export interface DeleteGlobalClusterCommandOutput extends DeleteGlobalClusterRes * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DeleteGlobalClusterCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeCertificatesCommand.ts b/clients/client-docdb/src/commands/DescribeCertificatesCommand.ts index 3f18019180dfa..bb2e31b5b1398 100644 --- a/clients/client-docdb/src/commands/DescribeCertificatesCommand.ts +++ b/clients/client-docdb/src/commands/DescribeCertificatesCommand.ts @@ -79,6 +79,7 @@ export interface DescribeCertificatesCommandOutput extends CertificateMessage, _ * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeCertificatesCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeDBClusterParameterGroupsCommand.ts b/clients/client-docdb/src/commands/DescribeDBClusterParameterGroupsCommand.ts index bf598599a52d1..53a622ef93af9 100644 --- a/clients/client-docdb/src/commands/DescribeDBClusterParameterGroupsCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBClusterParameterGroupsCommand.ts @@ -82,6 +82,7 @@ export interface DescribeDBClusterParameterGroupsCommandOutput * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeDBClusterParameterGroupsCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeDBClusterParametersCommand.ts b/clients/client-docdb/src/commands/DescribeDBClusterParametersCommand.ts index 344d28dd17eab..3b8f2af3dd110 100644 --- a/clients/client-docdb/src/commands/DescribeDBClusterParametersCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBClusterParametersCommand.ts @@ -85,6 +85,7 @@ export interface DescribeDBClusterParametersCommandOutput extends DBClusterParam * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeDBClusterParametersCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts b/clients/client-docdb/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts index d6fa820c857c8..93f783f5e4c68 100644 --- a/clients/client-docdb/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts @@ -80,6 +80,7 @@ export interface DescribeDBClusterSnapshotAttributesCommandOutput * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeDBClusterSnapshotAttributesCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeDBClusterSnapshotsCommand.ts b/clients/client-docdb/src/commands/DescribeDBClusterSnapshotsCommand.ts index daacc50f04987..722ba682fdf4e 100644 --- a/clients/client-docdb/src/commands/DescribeDBClusterSnapshotsCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBClusterSnapshotsCommand.ts @@ -97,6 +97,7 @@ export interface DescribeDBClusterSnapshotsCommandOutput extends DBClusterSnapsh * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeDBClusterSnapshotsCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeDBClustersCommand.ts b/clients/client-docdb/src/commands/DescribeDBClustersCommand.ts index 4b154937ce09f..f93a0bf409f6b 100644 --- a/clients/client-docdb/src/commands/DescribeDBClustersCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBClustersCommand.ts @@ -139,6 +139,7 @@ export interface DescribeDBClustersCommandOutput extends DBClusterMessage, __Met * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeDBClustersCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeDBEngineVersionsCommand.ts b/clients/client-docdb/src/commands/DescribeDBEngineVersionsCommand.ts index 0308f9721ff9d..9fc5124b1573a 100644 --- a/clients/client-docdb/src/commands/DescribeDBEngineVersionsCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBEngineVersionsCommand.ts @@ -96,6 +96,7 @@ export interface DescribeDBEngineVersionsCommandOutput extends DBEngineVersionMe * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeDBEngineVersionsCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeDBInstancesCommand.ts b/clients/client-docdb/src/commands/DescribeDBInstancesCommand.ts index 477f097441c58..2f46081c1969c 100644 --- a/clients/client-docdb/src/commands/DescribeDBInstancesCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBInstancesCommand.ts @@ -161,6 +161,7 @@ export interface DescribeDBInstancesCommandOutput extends DBInstanceMessage, __M * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeDBInstancesCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeDBSubnetGroupsCommand.ts b/clients/client-docdb/src/commands/DescribeDBSubnetGroupsCommand.ts index 34a649ade6a9d..07114cd16ad8c 100644 --- a/clients/client-docdb/src/commands/DescribeDBSubnetGroupsCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBSubnetGroupsCommand.ts @@ -88,6 +88,7 @@ export interface DescribeDBSubnetGroupsCommandOutput extends DBSubnetGroupMessag * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeDBSubnetGroupsCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeEngineDefaultClusterParametersCommand.ts b/clients/client-docdb/src/commands/DescribeEngineDefaultClusterParametersCommand.ts index ea685f3ca94b0..15617d689165a 100644 --- a/clients/client-docdb/src/commands/DescribeEngineDefaultClusterParametersCommand.ts +++ b/clients/client-docdb/src/commands/DescribeEngineDefaultClusterParametersCommand.ts @@ -92,6 +92,7 @@ export interface DescribeEngineDefaultClusterParametersCommandOutput * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeEngineDefaultClusterParametersCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeEventCategoriesCommand.ts b/clients/client-docdb/src/commands/DescribeEventCategoriesCommand.ts index 091a35edb9e6d..809220bbf75ad 100644 --- a/clients/client-docdb/src/commands/DescribeEventCategoriesCommand.ts +++ b/clients/client-docdb/src/commands/DescribeEventCategoriesCommand.ts @@ -71,6 +71,7 @@ export interface DescribeEventCategoriesCommandOutput extends EventCategoriesMes * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeEventCategoriesCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeEventSubscriptionsCommand.ts b/clients/client-docdb/src/commands/DescribeEventSubscriptionsCommand.ts index f5c4122189632..848a0e7666add 100644 --- a/clients/client-docdb/src/commands/DescribeEventSubscriptionsCommand.ts +++ b/clients/client-docdb/src/commands/DescribeEventSubscriptionsCommand.ts @@ -87,6 +87,7 @@ export interface DescribeEventSubscriptionsCommandOutput extends EventSubscripti * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeEventSubscriptionsCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeEventsCommand.ts b/clients/client-docdb/src/commands/DescribeEventsCommand.ts index ceb193ac69459..bb2659061f46e 100644 --- a/clients/client-docdb/src/commands/DescribeEventsCommand.ts +++ b/clients/client-docdb/src/commands/DescribeEventsCommand.ts @@ -84,6 +84,7 @@ export interface DescribeEventsCommandOutput extends EventsMessage, __MetadataBe * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeEventsCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeGlobalClustersCommand.ts b/clients/client-docdb/src/commands/DescribeGlobalClustersCommand.ts index 5694a201eec14..aac329d319c8d 100644 --- a/clients/client-docdb/src/commands/DescribeGlobalClustersCommand.ts +++ b/clients/client-docdb/src/commands/DescribeGlobalClustersCommand.ts @@ -93,6 +93,7 @@ export interface DescribeGlobalClustersCommandOutput extends GlobalClustersMessa * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeGlobalClustersCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts b/clients/client-docdb/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts index 6a5038f63d8f0..8af9d33f135f2 100644 --- a/clients/client-docdb/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts +++ b/clients/client-docdb/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts @@ -89,6 +89,7 @@ export interface DescribeOrderableDBInstanceOptionsCommandOutput * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribeOrderableDBInstanceOptionsCommand extends $Command diff --git a/clients/client-docdb/src/commands/DescribePendingMaintenanceActionsCommand.ts b/clients/client-docdb/src/commands/DescribePendingMaintenanceActionsCommand.ts index f2e245b73a9d1..a61d07be3676a 100644 --- a/clients/client-docdb/src/commands/DescribePendingMaintenanceActionsCommand.ts +++ b/clients/client-docdb/src/commands/DescribePendingMaintenanceActionsCommand.ts @@ -89,6 +89,7 @@ export interface DescribePendingMaintenanceActionsCommandOutput * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class DescribePendingMaintenanceActionsCommand extends $Command diff --git a/clients/client-docdb/src/commands/FailoverDBClusterCommand.ts b/clients/client-docdb/src/commands/FailoverDBClusterCommand.ts index 0b6c495729a68..29dacb730f706 100644 --- a/clients/client-docdb/src/commands/FailoverDBClusterCommand.ts +++ b/clients/client-docdb/src/commands/FailoverDBClusterCommand.ts @@ -131,6 +131,7 @@ export interface FailoverDBClusterCommandOutput extends FailoverDBClusterResult, * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class FailoverDBClusterCommand extends $Command diff --git a/clients/client-docdb/src/commands/FailoverGlobalClusterCommand.ts b/clients/client-docdb/src/commands/FailoverGlobalClusterCommand.ts index 7f8cd7d52136b..88cb907a17caa 100644 --- a/clients/client-docdb/src/commands/FailoverGlobalClusterCommand.ts +++ b/clients/client-docdb/src/commands/FailoverGlobalClusterCommand.ts @@ -93,6 +93,7 @@ export interface FailoverGlobalClusterCommandOutput extends FailoverGlobalCluste * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class FailoverGlobalClusterCommand extends $Command diff --git a/clients/client-docdb/src/commands/ListTagsForResourceCommand.ts b/clients/client-docdb/src/commands/ListTagsForResourceCommand.ts index 4ee271b2cb048..0c90eb7b0babd 100644 --- a/clients/client-docdb/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-docdb/src/commands/ListTagsForResourceCommand.ts @@ -80,6 +80,7 @@ export interface ListTagsForResourceCommandOutput extends TagListMessage, __Meta * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-docdb/src/commands/ModifyDBClusterCommand.ts b/clients/client-docdb/src/commands/ModifyDBClusterCommand.ts index 9d207a574df48..51b6cfe06f984 100644 --- a/clients/client-docdb/src/commands/ModifyDBClusterCommand.ts +++ b/clients/client-docdb/src/commands/ModifyDBClusterCommand.ts @@ -185,6 +185,7 @@ export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __M * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class ModifyDBClusterCommand extends $Command diff --git a/clients/client-docdb/src/commands/ModifyDBClusterParameterGroupCommand.ts b/clients/client-docdb/src/commands/ModifyDBClusterParameterGroupCommand.ts index 6fed359acdb4a..7eb00957abbe5 100644 --- a/clients/client-docdb/src/commands/ModifyDBClusterParameterGroupCommand.ts +++ b/clients/client-docdb/src/commands/ModifyDBClusterParameterGroupCommand.ts @@ -99,6 +99,7 @@ export interface ModifyDBClusterParameterGroupCommandOutput * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class ModifyDBClusterParameterGroupCommand extends $Command diff --git a/clients/client-docdb/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts b/clients/client-docdb/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts index bf2631f9b5a15..e3eaeb4d405ab 100644 --- a/clients/client-docdb/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts +++ b/clients/client-docdb/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts @@ -89,6 +89,7 @@ export interface ModifyDBClusterSnapshotAttributeCommandOutput * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class ModifyDBClusterSnapshotAttributeCommand extends $Command diff --git a/clients/client-docdb/src/commands/ModifyDBInstanceCommand.ts b/clients/client-docdb/src/commands/ModifyDBInstanceCommand.ts index 85c64a43cae59..a388e84a50793 100644 --- a/clients/client-docdb/src/commands/ModifyDBInstanceCommand.ts +++ b/clients/client-docdb/src/commands/ModifyDBInstanceCommand.ts @@ -204,6 +204,7 @@ export interface ModifyDBInstanceCommandOutput extends ModifyDBInstanceResult, _ * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class ModifyDBInstanceCommand extends $Command diff --git a/clients/client-docdb/src/commands/ModifyDBSubnetGroupCommand.ts b/clients/client-docdb/src/commands/ModifyDBSubnetGroupCommand.ts index 005597f64044e..8255e6da05e96 100644 --- a/clients/client-docdb/src/commands/ModifyDBSubnetGroupCommand.ts +++ b/clients/client-docdb/src/commands/ModifyDBSubnetGroupCommand.ts @@ -91,6 +91,7 @@ export interface ModifyDBSubnetGroupCommandOutput extends ModifyDBSubnetGroupRes * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class ModifyDBSubnetGroupCommand extends $Command diff --git a/clients/client-docdb/src/commands/ModifyEventSubscriptionCommand.ts b/clients/client-docdb/src/commands/ModifyEventSubscriptionCommand.ts index 6a9f9f0b6f1bb..83e4b980469cf 100644 --- a/clients/client-docdb/src/commands/ModifyEventSubscriptionCommand.ts +++ b/clients/client-docdb/src/commands/ModifyEventSubscriptionCommand.ts @@ -94,6 +94,7 @@ export interface ModifyEventSubscriptionCommandOutput extends ModifyEventSubscri * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class ModifyEventSubscriptionCommand extends $Command diff --git a/clients/client-docdb/src/commands/ModifyGlobalClusterCommand.ts b/clients/client-docdb/src/commands/ModifyGlobalClusterCommand.ts index fabef8ba18d46..374442696a85e 100644 --- a/clients/client-docdb/src/commands/ModifyGlobalClusterCommand.ts +++ b/clients/client-docdb/src/commands/ModifyGlobalClusterCommand.ts @@ -85,6 +85,7 @@ export interface ModifyGlobalClusterCommandOutput extends ModifyGlobalClusterRes * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class ModifyGlobalClusterCommand extends $Command diff --git a/clients/client-docdb/src/commands/RebootDBInstanceCommand.ts b/clients/client-docdb/src/commands/RebootDBInstanceCommand.ts index 7922ad95a3b8c..46a68db7ac7ac 100644 --- a/clients/client-docdb/src/commands/RebootDBInstanceCommand.ts +++ b/clients/client-docdb/src/commands/RebootDBInstanceCommand.ts @@ -159,6 +159,7 @@ export interface RebootDBInstanceCommandOutput extends RebootDBInstanceResult, _ * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class RebootDBInstanceCommand extends $Command diff --git a/clients/client-docdb/src/commands/RemoveFromGlobalClusterCommand.ts b/clients/client-docdb/src/commands/RemoveFromGlobalClusterCommand.ts index 1c68b4a9e9c57..00d955ca78149 100644 --- a/clients/client-docdb/src/commands/RemoveFromGlobalClusterCommand.ts +++ b/clients/client-docdb/src/commands/RemoveFromGlobalClusterCommand.ts @@ -88,6 +88,7 @@ export interface RemoveFromGlobalClusterCommandOutput extends RemoveFromGlobalCl * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class RemoveFromGlobalClusterCommand extends $Command diff --git a/clients/client-docdb/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts b/clients/client-docdb/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts index 2483343f4f1d2..80aa5652c5953 100644 --- a/clients/client-docdb/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts +++ b/clients/client-docdb/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts @@ -87,6 +87,7 @@ export interface RemoveSourceIdentifierFromSubscriptionCommandOutput * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class RemoveSourceIdentifierFromSubscriptionCommand extends $Command diff --git a/clients/client-docdb/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-docdb/src/commands/RemoveTagsFromResourceCommand.ts index 87b8cccba5529..e6513d3cd2fbe 100644 --- a/clients/client-docdb/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-docdb/src/commands/RemoveTagsFromResourceCommand.ts @@ -68,6 +68,7 @@ export interface RemoveTagsFromResourceCommandOutput extends __MetadataBearer {} * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class RemoveTagsFromResourceCommand extends $Command diff --git a/clients/client-docdb/src/commands/ResetDBClusterParameterGroupCommand.ts b/clients/client-docdb/src/commands/ResetDBClusterParameterGroupCommand.ts index a1a867fcbf0a5..1c611d0e92b17 100644 --- a/clients/client-docdb/src/commands/ResetDBClusterParameterGroupCommand.ts +++ b/clients/client-docdb/src/commands/ResetDBClusterParameterGroupCommand.ts @@ -86,6 +86,7 @@ export interface ResetDBClusterParameterGroupCommandOutput * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class ResetDBClusterParameterGroupCommand extends $Command diff --git a/clients/client-docdb/src/commands/RestoreDBClusterFromSnapshotCommand.ts b/clients/client-docdb/src/commands/RestoreDBClusterFromSnapshotCommand.ts index 698bb4b3e5119..0ea36ba3ae11b 100644 --- a/clients/client-docdb/src/commands/RestoreDBClusterFromSnapshotCommand.ts +++ b/clients/client-docdb/src/commands/RestoreDBClusterFromSnapshotCommand.ts @@ -194,6 +194,7 @@ export interface RestoreDBClusterFromSnapshotCommandOutput * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class RestoreDBClusterFromSnapshotCommand extends $Command diff --git a/clients/client-docdb/src/commands/RestoreDBClusterToPointInTimeCommand.ts b/clients/client-docdb/src/commands/RestoreDBClusterToPointInTimeCommand.ts index 5a34dbc10804b..56fb1c5bb6b5a 100644 --- a/clients/client-docdb/src/commands/RestoreDBClusterToPointInTimeCommand.ts +++ b/clients/client-docdb/src/commands/RestoreDBClusterToPointInTimeCommand.ts @@ -199,6 +199,7 @@ export interface RestoreDBClusterToPointInTimeCommandOutput * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class RestoreDBClusterToPointInTimeCommand extends $Command diff --git a/clients/client-docdb/src/commands/StartDBClusterCommand.ts b/clients/client-docdb/src/commands/StartDBClusterCommand.ts index eff23d83a1d5a..8e8cf8cfc7d66 100644 --- a/clients/client-docdb/src/commands/StartDBClusterCommand.ts +++ b/clients/client-docdb/src/commands/StartDBClusterCommand.ts @@ -130,6 +130,7 @@ export interface StartDBClusterCommandOutput extends StartDBClusterResult, __Met * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class StartDBClusterCommand extends $Command diff --git a/clients/client-docdb/src/commands/StopDBClusterCommand.ts b/clients/client-docdb/src/commands/StopDBClusterCommand.ts index 167952e003c61..b7cf7b18c9cbd 100644 --- a/clients/client-docdb/src/commands/StopDBClusterCommand.ts +++ b/clients/client-docdb/src/commands/StopDBClusterCommand.ts @@ -131,6 +131,7 @@ export interface StopDBClusterCommandOutput extends StopDBClusterResult, __Metad * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class StopDBClusterCommand extends $Command diff --git a/clients/client-docdb/src/commands/SwitchoverGlobalClusterCommand.ts b/clients/client-docdb/src/commands/SwitchoverGlobalClusterCommand.ts index 66925df16c5b1..9f71657ec131c 100644 --- a/clients/client-docdb/src/commands/SwitchoverGlobalClusterCommand.ts +++ b/clients/client-docdb/src/commands/SwitchoverGlobalClusterCommand.ts @@ -88,6 +88,7 @@ export interface SwitchoverGlobalClusterCommandOutput extends SwitchoverGlobalCl * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* + * * @public */ export class SwitchoverGlobalClusterCommand extends $Command diff --git a/clients/client-drs/src/commands/AssociateSourceNetworkStackCommand.ts b/clients/client-drs/src/commands/AssociateSourceNetworkStackCommand.ts index e2475e7d36245..8a7b9dd6950c8 100644 --- a/clients/client-drs/src/commands/AssociateSourceNetworkStackCommand.ts +++ b/clients/client-drs/src/commands/AssociateSourceNetworkStackCommand.ts @@ -141,6 +141,7 @@ export interface AssociateSourceNetworkStackCommandOutput * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class AssociateSourceNetworkStackCommand extends $Command diff --git a/clients/client-drs/src/commands/CreateExtendedSourceServerCommand.ts b/clients/client-drs/src/commands/CreateExtendedSourceServerCommand.ts index 8f75ec44bf4e2..524b06a15683c 100644 --- a/clients/client-drs/src/commands/CreateExtendedSourceServerCommand.ts +++ b/clients/client-drs/src/commands/CreateExtendedSourceServerCommand.ts @@ -189,6 +189,7 @@ export interface CreateExtendedSourceServerCommandOutput extends CreateExtendedS * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class CreateExtendedSourceServerCommand extends $Command diff --git a/clients/client-drs/src/commands/CreateLaunchConfigurationTemplateCommand.ts b/clients/client-drs/src/commands/CreateLaunchConfigurationTemplateCommand.ts index 70b4d420fd9d0..6b248a6eed5b0 100644 --- a/clients/client-drs/src/commands/CreateLaunchConfigurationTemplateCommand.ts +++ b/clients/client-drs/src/commands/CreateLaunchConfigurationTemplateCommand.ts @@ -111,6 +111,7 @@ export interface CreateLaunchConfigurationTemplateCommandOutput * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class CreateLaunchConfigurationTemplateCommand extends $Command diff --git a/clients/client-drs/src/commands/CreateReplicationConfigurationTemplateCommand.ts b/clients/client-drs/src/commands/CreateReplicationConfigurationTemplateCommand.ts index 2487b882cb194..6c83f562bb571 100644 --- a/clients/client-drs/src/commands/CreateReplicationConfigurationTemplateCommand.ts +++ b/clients/client-drs/src/commands/CreateReplicationConfigurationTemplateCommand.ts @@ -142,6 +142,7 @@ export interface CreateReplicationConfigurationTemplateCommandOutput * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class CreateReplicationConfigurationTemplateCommand extends $Command diff --git a/clients/client-drs/src/commands/CreateSourceNetworkCommand.ts b/clients/client-drs/src/commands/CreateSourceNetworkCommand.ts index 30b5bba088f67..ae2fbdf108b2e 100644 --- a/clients/client-drs/src/commands/CreateSourceNetworkCommand.ts +++ b/clients/client-drs/src/commands/CreateSourceNetworkCommand.ts @@ -85,6 +85,7 @@ export interface CreateSourceNetworkCommandOutput extends CreateSourceNetworkRes * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class CreateSourceNetworkCommand extends $Command diff --git a/clients/client-drs/src/commands/DeleteJobCommand.ts b/clients/client-drs/src/commands/DeleteJobCommand.ts index 36639adef8563..6099b9d1b6992 100644 --- a/clients/client-drs/src/commands/DeleteJobCommand.ts +++ b/clients/client-drs/src/commands/DeleteJobCommand.ts @@ -68,6 +68,7 @@ export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBea * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DeleteJobCommand extends $Command diff --git a/clients/client-drs/src/commands/DeleteLaunchActionCommand.ts b/clients/client-drs/src/commands/DeleteLaunchActionCommand.ts index 221721db7c10b..f3f7ad281cde9 100644 --- a/clients/client-drs/src/commands/DeleteLaunchActionCommand.ts +++ b/clients/client-drs/src/commands/DeleteLaunchActionCommand.ts @@ -69,6 +69,7 @@ export interface DeleteLaunchActionCommandOutput extends DeleteLaunchActionRespo * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DeleteLaunchActionCommand extends $Command diff --git a/clients/client-drs/src/commands/DeleteLaunchConfigurationTemplateCommand.ts b/clients/client-drs/src/commands/DeleteLaunchConfigurationTemplateCommand.ts index bf5a2c6b8eaa4..ca0cf592e87fc 100644 --- a/clients/client-drs/src/commands/DeleteLaunchConfigurationTemplateCommand.ts +++ b/clients/client-drs/src/commands/DeleteLaunchConfigurationTemplateCommand.ts @@ -76,6 +76,7 @@ export interface DeleteLaunchConfigurationTemplateCommandOutput * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DeleteLaunchConfigurationTemplateCommand extends $Command diff --git a/clients/client-drs/src/commands/DeleteRecoveryInstanceCommand.ts b/clients/client-drs/src/commands/DeleteRecoveryInstanceCommand.ts index 435fc455106ed..31bf41a0fc212 100644 --- a/clients/client-drs/src/commands/DeleteRecoveryInstanceCommand.ts +++ b/clients/client-drs/src/commands/DeleteRecoveryInstanceCommand.ts @@ -68,6 +68,7 @@ export interface DeleteRecoveryInstanceCommandOutput extends __MetadataBearer {} * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DeleteRecoveryInstanceCommand extends $Command diff --git a/clients/client-drs/src/commands/DeleteReplicationConfigurationTemplateCommand.ts b/clients/client-drs/src/commands/DeleteReplicationConfigurationTemplateCommand.ts index a511892d78dba..f52ae5bc5246d 100644 --- a/clients/client-drs/src/commands/DeleteReplicationConfigurationTemplateCommand.ts +++ b/clients/client-drs/src/commands/DeleteReplicationConfigurationTemplateCommand.ts @@ -77,6 +77,7 @@ export interface DeleteReplicationConfigurationTemplateCommandOutput * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DeleteReplicationConfigurationTemplateCommand extends $Command diff --git a/clients/client-drs/src/commands/DeleteSourceNetworkCommand.ts b/clients/client-drs/src/commands/DeleteSourceNetworkCommand.ts index 381e7c067b1aa..97bd8c1eff439 100644 --- a/clients/client-drs/src/commands/DeleteSourceNetworkCommand.ts +++ b/clients/client-drs/src/commands/DeleteSourceNetworkCommand.ts @@ -68,6 +68,7 @@ export interface DeleteSourceNetworkCommandOutput extends DeleteSourceNetworkRes * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DeleteSourceNetworkCommand extends $Command diff --git a/clients/client-drs/src/commands/DeleteSourceServerCommand.ts b/clients/client-drs/src/commands/DeleteSourceServerCommand.ts index dded8e5ee8771..ba649ba09f433 100644 --- a/clients/client-drs/src/commands/DeleteSourceServerCommand.ts +++ b/clients/client-drs/src/commands/DeleteSourceServerCommand.ts @@ -68,6 +68,7 @@ export interface DeleteSourceServerCommandOutput extends DeleteSourceServerRespo * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DeleteSourceServerCommand extends $Command diff --git a/clients/client-drs/src/commands/DescribeJobLogItemsCommand.ts b/clients/client-drs/src/commands/DescribeJobLogItemsCommand.ts index 94ba82ce3008a..1a15e72126544 100644 --- a/clients/client-drs/src/commands/DescribeJobLogItemsCommand.ts +++ b/clients/client-drs/src/commands/DescribeJobLogItemsCommand.ts @@ -110,6 +110,7 @@ export interface DescribeJobLogItemsCommandOutput extends DescribeJobLogItemsRes * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DescribeJobLogItemsCommand extends $Command diff --git a/clients/client-drs/src/commands/DescribeJobsCommand.ts b/clients/client-drs/src/commands/DescribeJobsCommand.ts index e70add9113d7f..07c6e88d70424 100644 --- a/clients/client-drs/src/commands/DescribeJobsCommand.ts +++ b/clients/client-drs/src/commands/DescribeJobsCommand.ts @@ -132,6 +132,7 @@ export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __Metad * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DescribeJobsCommand extends $Command diff --git a/clients/client-drs/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts b/clients/client-drs/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts index 1b014e8464a67..4df86af735e18 100644 --- a/clients/client-drs/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts +++ b/clients/client-drs/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts @@ -102,6 +102,7 @@ export interface DescribeLaunchConfigurationTemplatesCommandOutput * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DescribeLaunchConfigurationTemplatesCommand extends $Command diff --git a/clients/client-drs/src/commands/DescribeRecoveryInstancesCommand.ts b/clients/client-drs/src/commands/DescribeRecoveryInstancesCommand.ts index a6ae333032f01..65c6ce49996a2 100644 --- a/clients/client-drs/src/commands/DescribeRecoveryInstancesCommand.ts +++ b/clients/client-drs/src/commands/DescribeRecoveryInstancesCommand.ts @@ -175,6 +175,7 @@ export interface DescribeRecoveryInstancesCommandOutput extends DescribeRecovery * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DescribeRecoveryInstancesCommand extends $Command diff --git a/clients/client-drs/src/commands/DescribeRecoverySnapshotsCommand.ts b/clients/client-drs/src/commands/DescribeRecoverySnapshotsCommand.ts index 254f254242e83..4d7ead0681ca5 100644 --- a/clients/client-drs/src/commands/DescribeRecoverySnapshotsCommand.ts +++ b/clients/client-drs/src/commands/DescribeRecoverySnapshotsCommand.ts @@ -88,6 +88,7 @@ export interface DescribeRecoverySnapshotsCommandOutput extends DescribeRecovery * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DescribeRecoverySnapshotsCommand extends $Command diff --git a/clients/client-drs/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts b/clients/client-drs/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts index 9ab0a3212f454..1b60f9c43fc60 100644 --- a/clients/client-drs/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts +++ b/clients/client-drs/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts @@ -119,6 +119,7 @@ export interface DescribeReplicationConfigurationTemplatesCommandOutput * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DescribeReplicationConfigurationTemplatesCommand extends $Command diff --git a/clients/client-drs/src/commands/DescribeSourceNetworksCommand.ts b/clients/client-drs/src/commands/DescribeSourceNetworksCommand.ts index e3646b9c49f66..08d03d887a6d7 100644 --- a/clients/client-drs/src/commands/DescribeSourceNetworksCommand.ts +++ b/clients/client-drs/src/commands/DescribeSourceNetworksCommand.ts @@ -100,6 +100,7 @@ export interface DescribeSourceNetworksCommandOutput extends DescribeSourceNetwo * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DescribeSourceNetworksCommand extends $Command diff --git a/clients/client-drs/src/commands/DescribeSourceServersCommand.ts b/clients/client-drs/src/commands/DescribeSourceServersCommand.ts index e5b4ac35ed3bb..c30568df3d7fe 100644 --- a/clients/client-drs/src/commands/DescribeSourceServersCommand.ts +++ b/clients/client-drs/src/commands/DescribeSourceServersCommand.ts @@ -189,6 +189,7 @@ export interface DescribeSourceServersCommandOutput extends DescribeSourceServer * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DescribeSourceServersCommand extends $Command diff --git a/clients/client-drs/src/commands/DisconnectRecoveryInstanceCommand.ts b/clients/client-drs/src/commands/DisconnectRecoveryInstanceCommand.ts index 6ccde378d0e04..da6bb7f006689 100644 --- a/clients/client-drs/src/commands/DisconnectRecoveryInstanceCommand.ts +++ b/clients/client-drs/src/commands/DisconnectRecoveryInstanceCommand.ts @@ -71,6 +71,7 @@ export interface DisconnectRecoveryInstanceCommandOutput extends __MetadataBeare * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DisconnectRecoveryInstanceCommand extends $Command diff --git a/clients/client-drs/src/commands/DisconnectSourceServerCommand.ts b/clients/client-drs/src/commands/DisconnectSourceServerCommand.ts index 1367af3cf0f79..8d900f3cd99b9 100644 --- a/clients/client-drs/src/commands/DisconnectSourceServerCommand.ts +++ b/clients/client-drs/src/commands/DisconnectSourceServerCommand.ts @@ -173,6 +173,7 @@ export interface DisconnectSourceServerCommandOutput extends SourceServer, __Met * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class DisconnectSourceServerCommand extends $Command diff --git a/clients/client-drs/src/commands/ExportSourceNetworkCfnTemplateCommand.ts b/clients/client-drs/src/commands/ExportSourceNetworkCfnTemplateCommand.ts index 9bb98ea3d4628..0ff93de04dcfe 100644 --- a/clients/client-drs/src/commands/ExportSourceNetworkCfnTemplateCommand.ts +++ b/clients/client-drs/src/commands/ExportSourceNetworkCfnTemplateCommand.ts @@ -78,6 +78,7 @@ export interface ExportSourceNetworkCfnTemplateCommandOutput * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class ExportSourceNetworkCfnTemplateCommand extends $Command diff --git a/clients/client-drs/src/commands/GetFailbackReplicationConfigurationCommand.ts b/clients/client-drs/src/commands/GetFailbackReplicationConfigurationCommand.ts index d4535432944d8..ab9c79f729afa 100644 --- a/clients/client-drs/src/commands/GetFailbackReplicationConfigurationCommand.ts +++ b/clients/client-drs/src/commands/GetFailbackReplicationConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface GetFailbackReplicationConfigurationCommandOutput * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class GetFailbackReplicationConfigurationCommand extends $Command diff --git a/clients/client-drs/src/commands/GetLaunchConfigurationCommand.ts b/clients/client-drs/src/commands/GetLaunchConfigurationCommand.ts index e2717d7725c05..eeabc89cdf029 100644 --- a/clients/client-drs/src/commands/GetLaunchConfigurationCommand.ts +++ b/clients/client-drs/src/commands/GetLaunchConfigurationCommand.ts @@ -80,6 +80,7 @@ export interface GetLaunchConfigurationCommandOutput extends LaunchConfiguration * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class GetLaunchConfigurationCommand extends $Command diff --git a/clients/client-drs/src/commands/GetReplicationConfigurationCommand.ts b/clients/client-drs/src/commands/GetReplicationConfigurationCommand.ts index df6ef256d8e19..0c6d8a553831a 100644 --- a/clients/client-drs/src/commands/GetReplicationConfigurationCommand.ts +++ b/clients/client-drs/src/commands/GetReplicationConfigurationCommand.ts @@ -114,6 +114,7 @@ export interface GetReplicationConfigurationCommandOutput extends ReplicationCon * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class GetReplicationConfigurationCommand extends $Command diff --git a/clients/client-drs/src/commands/InitializeServiceCommand.ts b/clients/client-drs/src/commands/InitializeServiceCommand.ts index ee1da8840e471..4c65d2952e52f 100644 --- a/clients/client-drs/src/commands/InitializeServiceCommand.ts +++ b/clients/client-drs/src/commands/InitializeServiceCommand.ts @@ -63,6 +63,7 @@ export interface InitializeServiceCommandOutput extends InitializeServiceRespons * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class InitializeServiceCommand extends $Command diff --git a/clients/client-drs/src/commands/ListExtensibleSourceServersCommand.ts b/clients/client-drs/src/commands/ListExtensibleSourceServersCommand.ts index eec9457726837..8daed7690060c 100644 --- a/clients/client-drs/src/commands/ListExtensibleSourceServersCommand.ts +++ b/clients/client-drs/src/commands/ListExtensibleSourceServersCommand.ts @@ -93,6 +93,7 @@ export interface ListExtensibleSourceServersCommandOutput * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class ListExtensibleSourceServersCommand extends $Command diff --git a/clients/client-drs/src/commands/ListLaunchActionsCommand.ts b/clients/client-drs/src/commands/ListLaunchActionsCommand.ts index 943ef68a8feaa..036a1e24c837d 100644 --- a/clients/client-drs/src/commands/ListLaunchActionsCommand.ts +++ b/clients/client-drs/src/commands/ListLaunchActionsCommand.ts @@ -97,6 +97,7 @@ export interface ListLaunchActionsCommandOutput extends ListLaunchActionsRespons * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class ListLaunchActionsCommand extends $Command diff --git a/clients/client-drs/src/commands/ListStagingAccountsCommand.ts b/clients/client-drs/src/commands/ListStagingAccountsCommand.ts index 9fae6207c47ec..7bd9b73474d12 100644 --- a/clients/client-drs/src/commands/ListStagingAccountsCommand.ts +++ b/clients/client-drs/src/commands/ListStagingAccountsCommand.ts @@ -76,6 +76,7 @@ export interface ListStagingAccountsCommandOutput extends ListStagingAccountsRes * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class ListStagingAccountsCommand extends $Command diff --git a/clients/client-drs/src/commands/ListTagsForResourceCommand.ts b/clients/client-drs/src/commands/ListTagsForResourceCommand.ts index bfa11a8727529..6762a4c12ef13 100644 --- a/clients/client-drs/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-drs/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-drs/src/commands/PutLaunchActionCommand.ts b/clients/client-drs/src/commands/PutLaunchActionCommand.ts index a00e438b7f057..a30021d388c56 100644 --- a/clients/client-drs/src/commands/PutLaunchActionCommand.ts +++ b/clients/client-drs/src/commands/PutLaunchActionCommand.ts @@ -104,6 +104,7 @@ export interface PutLaunchActionCommandOutput extends PutLaunchActionResponse, _ * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class PutLaunchActionCommand extends $Command diff --git a/clients/client-drs/src/commands/RetryDataReplicationCommand.ts b/clients/client-drs/src/commands/RetryDataReplicationCommand.ts index 2588e5cfc8d15..69d88a4942b55 100644 --- a/clients/client-drs/src/commands/RetryDataReplicationCommand.ts +++ b/clients/client-drs/src/commands/RetryDataReplicationCommand.ts @@ -177,6 +177,7 @@ export interface RetryDataReplicationCommandOutput extends SourceServer, __Metad * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class RetryDataReplicationCommand extends $Command diff --git a/clients/client-drs/src/commands/ReverseReplicationCommand.ts b/clients/client-drs/src/commands/ReverseReplicationCommand.ts index 1bba6f2ea7416..2df9629849f63 100644 --- a/clients/client-drs/src/commands/ReverseReplicationCommand.ts +++ b/clients/client-drs/src/commands/ReverseReplicationCommand.ts @@ -79,6 +79,7 @@ export interface ReverseReplicationCommandOutput extends ReverseReplicationRespo * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class ReverseReplicationCommand extends $Command diff --git a/clients/client-drs/src/commands/StartFailbackLaunchCommand.ts b/clients/client-drs/src/commands/StartFailbackLaunchCommand.ts index 3c4686a92a33b..83657104484b8 100644 --- a/clients/client-drs/src/commands/StartFailbackLaunchCommand.ts +++ b/clients/client-drs/src/commands/StartFailbackLaunchCommand.ts @@ -137,6 +137,7 @@ export interface StartFailbackLaunchCommandOutput extends StartFailbackLaunchRes * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class StartFailbackLaunchCommand extends $Command diff --git a/clients/client-drs/src/commands/StartRecoveryCommand.ts b/clients/client-drs/src/commands/StartRecoveryCommand.ts index 8ca46cd663116..0bb972029d41a 100644 --- a/clients/client-drs/src/commands/StartRecoveryCommand.ts +++ b/clients/client-drs/src/commands/StartRecoveryCommand.ts @@ -138,6 +138,7 @@ export interface StartRecoveryCommandOutput extends StartRecoveryResponse, __Met * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class StartRecoveryCommand extends $Command diff --git a/clients/client-drs/src/commands/StartReplicationCommand.ts b/clients/client-drs/src/commands/StartReplicationCommand.ts index b831edb62113e..1f48da0287ca2 100644 --- a/clients/client-drs/src/commands/StartReplicationCommand.ts +++ b/clients/client-drs/src/commands/StartReplicationCommand.ts @@ -179,6 +179,7 @@ export interface StartReplicationCommandOutput extends StartReplicationResponse, * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class StartReplicationCommand extends $Command diff --git a/clients/client-drs/src/commands/StartSourceNetworkRecoveryCommand.ts b/clients/client-drs/src/commands/StartSourceNetworkRecoveryCommand.ts index 5acdd6fa7b09f..c784c68509465 100644 --- a/clients/client-drs/src/commands/StartSourceNetworkRecoveryCommand.ts +++ b/clients/client-drs/src/commands/StartSourceNetworkRecoveryCommand.ts @@ -141,6 +141,7 @@ export interface StartSourceNetworkRecoveryCommandOutput extends StartSourceNetw * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class StartSourceNetworkRecoveryCommand extends $Command diff --git a/clients/client-drs/src/commands/StartSourceNetworkReplicationCommand.ts b/clients/client-drs/src/commands/StartSourceNetworkReplicationCommand.ts index eedf66b3241ec..533103cb94029 100644 --- a/clients/client-drs/src/commands/StartSourceNetworkReplicationCommand.ts +++ b/clients/client-drs/src/commands/StartSourceNetworkReplicationCommand.ts @@ -97,6 +97,7 @@ export interface StartSourceNetworkReplicationCommandOutput * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class StartSourceNetworkReplicationCommand extends $Command diff --git a/clients/client-drs/src/commands/StopFailbackCommand.ts b/clients/client-drs/src/commands/StopFailbackCommand.ts index b3cfbf17d191a..db636998ab34d 100644 --- a/clients/client-drs/src/commands/StopFailbackCommand.ts +++ b/clients/client-drs/src/commands/StopFailbackCommand.ts @@ -65,6 +65,7 @@ export interface StopFailbackCommandOutput extends __MetadataBearer {} * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class StopFailbackCommand extends $Command diff --git a/clients/client-drs/src/commands/StopReplicationCommand.ts b/clients/client-drs/src/commands/StopReplicationCommand.ts index be27f223fd379..a3117027d2e91 100644 --- a/clients/client-drs/src/commands/StopReplicationCommand.ts +++ b/clients/client-drs/src/commands/StopReplicationCommand.ts @@ -179,6 +179,7 @@ export interface StopReplicationCommandOutput extends StopReplicationResponse, _ * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class StopReplicationCommand extends $Command diff --git a/clients/client-drs/src/commands/StopSourceNetworkReplicationCommand.ts b/clients/client-drs/src/commands/StopSourceNetworkReplicationCommand.ts index 9088e26d2b784..3ba1dd3e5c9a4 100644 --- a/clients/client-drs/src/commands/StopSourceNetworkReplicationCommand.ts +++ b/clients/client-drs/src/commands/StopSourceNetworkReplicationCommand.ts @@ -100,6 +100,7 @@ export interface StopSourceNetworkReplicationCommandOutput * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class StopSourceNetworkReplicationCommand extends $Command diff --git a/clients/client-drs/src/commands/TagResourceCommand.ts b/clients/client-drs/src/commands/TagResourceCommand.ts index f989b9eab2744..7cecdd4a80405 100644 --- a/clients/client-drs/src/commands/TagResourceCommand.ts +++ b/clients/client-drs/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-drs/src/commands/TerminateRecoveryInstancesCommand.ts b/clients/client-drs/src/commands/TerminateRecoveryInstancesCommand.ts index 59f781c841be6..f69aff7070392 100644 --- a/clients/client-drs/src/commands/TerminateRecoveryInstancesCommand.ts +++ b/clients/client-drs/src/commands/TerminateRecoveryInstancesCommand.ts @@ -130,6 +130,7 @@ export interface TerminateRecoveryInstancesCommandOutput extends TerminateRecove * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class TerminateRecoveryInstancesCommand extends $Command diff --git a/clients/client-drs/src/commands/UntagResourceCommand.ts b/clients/client-drs/src/commands/UntagResourceCommand.ts index f349be75448fb..803df5d899d5f 100644 --- a/clients/client-drs/src/commands/UntagResourceCommand.ts +++ b/clients/client-drs/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-drs/src/commands/UpdateFailbackReplicationConfigurationCommand.ts b/clients/client-drs/src/commands/UpdateFailbackReplicationConfigurationCommand.ts index f2d9ce2539f59..482d854a18ea7 100644 --- a/clients/client-drs/src/commands/UpdateFailbackReplicationConfigurationCommand.ts +++ b/clients/client-drs/src/commands/UpdateFailbackReplicationConfigurationCommand.ts @@ -75,6 +75,7 @@ export interface UpdateFailbackReplicationConfigurationCommandOutput extends __M * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class UpdateFailbackReplicationConfigurationCommand extends $Command diff --git a/clients/client-drs/src/commands/UpdateLaunchConfigurationCommand.ts b/clients/client-drs/src/commands/UpdateLaunchConfigurationCommand.ts index ab980ab16fb7a..ce305982e4e22 100644 --- a/clients/client-drs/src/commands/UpdateLaunchConfigurationCommand.ts +++ b/clients/client-drs/src/commands/UpdateLaunchConfigurationCommand.ts @@ -98,6 +98,7 @@ export interface UpdateLaunchConfigurationCommandOutput extends LaunchConfigurat * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class UpdateLaunchConfigurationCommand extends $Command diff --git a/clients/client-drs/src/commands/UpdateLaunchConfigurationTemplateCommand.ts b/clients/client-drs/src/commands/UpdateLaunchConfigurationTemplateCommand.ts index acbfde757473f..0bc3f0dfd63b2 100644 --- a/clients/client-drs/src/commands/UpdateLaunchConfigurationTemplateCommand.ts +++ b/clients/client-drs/src/commands/UpdateLaunchConfigurationTemplateCommand.ts @@ -108,6 +108,7 @@ export interface UpdateLaunchConfigurationTemplateCommandOutput * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class UpdateLaunchConfigurationTemplateCommand extends $Command diff --git a/clients/client-drs/src/commands/UpdateReplicationConfigurationCommand.ts b/clients/client-drs/src/commands/UpdateReplicationConfigurationCommand.ts index 2f7eaa5ccddc9..e65e1fe2e0600 100644 --- a/clients/client-drs/src/commands/UpdateReplicationConfigurationCommand.ts +++ b/clients/client-drs/src/commands/UpdateReplicationConfigurationCommand.ts @@ -158,6 +158,7 @@ export interface UpdateReplicationConfigurationCommandOutput extends Replication * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class UpdateReplicationConfigurationCommand extends $Command diff --git a/clients/client-drs/src/commands/UpdateReplicationConfigurationTemplateCommand.ts b/clients/client-drs/src/commands/UpdateReplicationConfigurationTemplateCommand.ts index 61b2d08ea41e0..8769d066da25a 100644 --- a/clients/client-drs/src/commands/UpdateReplicationConfigurationTemplateCommand.ts +++ b/clients/client-drs/src/commands/UpdateReplicationConfigurationTemplateCommand.ts @@ -141,6 +141,7 @@ export interface UpdateReplicationConfigurationTemplateCommandOutput * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* + * * @public */ export class UpdateReplicationConfigurationTemplateCommand extends $Command diff --git a/clients/client-dsql/src/commands/CreateClusterCommand.ts b/clients/client-dsql/src/commands/CreateClusterCommand.ts index 95336dfb25024..b6d8da2ce5a41 100644 --- a/clients/client-dsql/src/commands/CreateClusterCommand.ts +++ b/clients/client-dsql/src/commands/CreateClusterCommand.ts @@ -82,21 +82,24 @@ export interface CreateClusterCommandOutput extends CreateClusterOutput, __Metad * @throws {@link DSQLServiceException} *

Base exception class for all service exceptions from DSQL service.

* - * @public + * * @example Create Cluster * ```javascript * // * const input = { - * "deletionProtectionEnabled": false, - * "tags": { - * "MyKey": "MyValue" + * deletionProtectionEnabled: false, + * tags: { + * MyKey: "MyValue" * } * }; * const command = new CreateClusterCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateClusterCommand extends $Command .classBuilder< diff --git a/clients/client-dsql/src/commands/CreateMultiRegionClustersCommand.ts b/clients/client-dsql/src/commands/CreateMultiRegionClustersCommand.ts index dd4bf3d866d00..aee546cd50973 100644 --- a/clients/client-dsql/src/commands/CreateMultiRegionClustersCommand.ts +++ b/clients/client-dsql/src/commands/CreateMultiRegionClustersCommand.ts @@ -91,30 +91,30 @@ export interface CreateMultiRegionClustersCommandOutput extends CreateMultiRegio * @throws {@link DSQLServiceException} *

Base exception class for all service exceptions from DSQL service.

* - * @public + * * @example Create Multi Region Clusters * ```javascript * // * const input = { - * "linkedRegionList": [ + * linkedRegionList: [ * "us-east-1", * "us-east-2" * ], - * "witnessRegion": "us-west-2" + * witnessRegion: "us-west-2" * }; * const command = new CreateMultiRegionClustersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "linkedClusterArns": [ + * linkedClusterArns: [ * "arn:aws:dsql:us-east-1:111122223333:cluster/abcdefghijklmnopqrst12345", * "arn:aws:dsql:us-east-2:111122223333:cluster/klmnopqrstuvwxyzabcd54321" * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateMultiRegionClustersCommand extends $Command .classBuilder< diff --git a/clients/client-dsql/src/commands/DeleteClusterCommand.ts b/clients/client-dsql/src/commands/DeleteClusterCommand.ts index ff547350680c5..46dac1273d38c 100644 --- a/clients/client-dsql/src/commands/DeleteClusterCommand.ts +++ b/clients/client-dsql/src/commands/DeleteClusterCommand.ts @@ -79,18 +79,21 @@ export interface DeleteClusterCommandOutput extends DeleteClusterOutput, __Metad * @throws {@link DSQLServiceException} *

Base exception class for all service exceptions from DSQL service.

* - * @public + * * @example Delete Cluster * ```javascript * // * const input = { - * "identifier": "kiqenqglxyl2snyvkvnj2c3s2e" + * identifier: "kiqenqglxyl2snyvkvnj2c3s2e" * }; * const command = new DeleteClusterCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteClusterCommand extends $Command .classBuilder< diff --git a/clients/client-dsql/src/commands/DeleteMultiRegionClustersCommand.ts b/clients/client-dsql/src/commands/DeleteMultiRegionClustersCommand.ts index 9dfc684d0fed1..6a408f4b32a02 100644 --- a/clients/client-dsql/src/commands/DeleteMultiRegionClustersCommand.ts +++ b/clients/client-dsql/src/commands/DeleteMultiRegionClustersCommand.ts @@ -75,21 +75,24 @@ export interface DeleteMultiRegionClustersCommandOutput extends __MetadataBearer * @throws {@link DSQLServiceException} *

Base exception class for all service exceptions from DSQL service.

* - * @public + * * @example Delete Multi Region Clusters * ```javascript * // * const input = { - * "linkedClusterArns": [ + * linkedClusterArns: [ * "arn:aws:dsql:us-east-1:111122223333:cluster/abcdefghijklmnopqrst12345", * "arn:aws:dsql:us-east-2:111122223333:cluster/klmnopqrstuvwxyzabcd54321" * ] * }; * const command = new DeleteMultiRegionClustersCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteMultiRegionClustersCommand extends $Command .classBuilder< diff --git a/clients/client-dsql/src/commands/GetClusterCommand.ts b/clients/client-dsql/src/commands/GetClusterCommand.ts index eb271bc07089e..0f38b50cf3469 100644 --- a/clients/client-dsql/src/commands/GetClusterCommand.ts +++ b/clients/client-dsql/src/commands/GetClusterCommand.ts @@ -79,18 +79,21 @@ export interface GetClusterCommandOutput extends GetClusterOutput, __MetadataBea * @throws {@link DSQLServiceException} *

Base exception class for all service exceptions from DSQL service.

* - * @public + * * @example Get Cluster * ```javascript * // * const input = { - * "identifier": "kiqenqglxyl2snyvkvnj2c3s2e" + * identifier: "kiqenqglxyl2snyvkvnj2c3s2e" * }; * const command = new GetClusterCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class GetClusterCommand extends $Command .classBuilder< diff --git a/clients/client-dsql/src/commands/ListClustersCommand.ts b/clients/client-dsql/src/commands/ListClustersCommand.ts index ce1f19f3f68d6..e23df7928f05c 100644 --- a/clients/client-dsql/src/commands/ListClustersCommand.ts +++ b/clients/client-dsql/src/commands/ListClustersCommand.ts @@ -78,18 +78,21 @@ export interface ListClustersCommandOutput extends ListClustersOutput, __Metadat * @throws {@link DSQLServiceException} *

Base exception class for all service exceptions from DSQL service.

* - * @public + * * @example List Clusters * ```javascript * // * const input = { - * "maxResults": 20 + * maxResults: 20 * }; * const command = new ListClustersCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ListClustersCommand extends $Command .classBuilder< diff --git a/clients/client-dsql/src/commands/ListTagsForResourceCommand.ts b/clients/client-dsql/src/commands/ListTagsForResourceCommand.ts index 11612188f736f..0d1d20d45ed40 100644 --- a/clients/client-dsql/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-dsql/src/commands/ListTagsForResourceCommand.ts @@ -73,18 +73,21 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link DSQLServiceException} *

Base exception class for all service exceptions from DSQL service.

* - * @public + * * @example List Tags For Resource * ```javascript * // * const input = { - * "resourceArn": "arn:aws:dsql:us-east-1:111111222222:cluster/kiqenqglxyl2snyvkvnj2c3s2e" + * resourceArn: "arn:aws:dsql:us-east-1:111111222222:cluster/kiqenqglxyl2snyvkvnj2c3s2e" * }; * const command = new ListTagsForResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-dsql/src/commands/TagResourceCommand.ts b/clients/client-dsql/src/commands/TagResourceCommand.ts index 600795b02ac15..a22ac8aa5ab19 100644 --- a/clients/client-dsql/src/commands/TagResourceCommand.ts +++ b/clients/client-dsql/src/commands/TagResourceCommand.ts @@ -75,21 +75,24 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link DSQLServiceException} *

Base exception class for all service exceptions from DSQL service.

* - * @public + * * @example Tag Resource * ```javascript * // * const input = { - * "resourceArn": "arn:aws:dsql:us-east-1:111111222222:cluster/kiqenqglxyl2snyvkvnj2c3s2e", - * "tags": { - * "MyKey": "MyValue" + * resourceArn: "arn:aws:dsql:us-east-1:111111222222:cluster/kiqenqglxyl2snyvkvnj2c3s2e", + * tags: { + * MyKey: "MyValue" * } * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-dsql/src/commands/UntagResourceCommand.ts b/clients/client-dsql/src/commands/UntagResourceCommand.ts index ab8d38eef0b30..558294e911e3b 100644 --- a/clients/client-dsql/src/commands/UntagResourceCommand.ts +++ b/clients/client-dsql/src/commands/UntagResourceCommand.ts @@ -72,22 +72,25 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link DSQLServiceException} *

Base exception class for all service exceptions from DSQL service.

* - * @public + * * @example Untag Resource * ```javascript * // * const input = { - * "resourceArn": "arn:aws:dsql:us-east-1:111111222222:cluster/kiqenqglxyl2snyvkvnj2c3s2e", - * "tagKeys": [ + * resourceArn: "arn:aws:dsql:us-east-1:111111222222:cluster/kiqenqglxyl2snyvkvnj2c3s2e", + * tagKeys: [ * "MyKeyA", * "MyKeyB" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-dsql/src/commands/UpdateClusterCommand.ts b/clients/client-dsql/src/commands/UpdateClusterCommand.ts index c05fdad41c496..ef461ec7e7cb7 100644 --- a/clients/client-dsql/src/commands/UpdateClusterCommand.ts +++ b/clients/client-dsql/src/commands/UpdateClusterCommand.ts @@ -84,19 +84,22 @@ export interface UpdateClusterCommandOutput extends UpdateClusterOutput, __Metad * @throws {@link DSQLServiceException} *

Base exception class for all service exceptions from DSQL service.

* - * @public + * * @example Update Cluster * ```javascript * // * const input = { - * "deletionProtectionEnabled": false, - * "identifier": "kiqenqglxyl2snyvkvnj2c3s2e" + * deletionProtectionEnabled: false, + * identifier: "kiqenqglxyl2snyvkvnj2c3s2e" * }; * const command = new UpdateClusterCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateClusterCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb-streams/src/commands/DescribeStreamCommand.ts b/clients/client-dynamodb-streams/src/commands/DescribeStreamCommand.ts index d222fe3fb9f5e..5bdf709373e63 100644 --- a/clients/client-dynamodb-streams/src/commands/DescribeStreamCommand.ts +++ b/clients/client-dynamodb-streams/src/commands/DescribeStreamCommand.ts @@ -97,72 +97,8 @@ export interface DescribeStreamCommandOutput extends DescribeStreamOutput, __Met * @throws {@link DynamoDBStreamsServiceException} *

Base exception class for all service exceptions from DynamoDBStreams service.

* - * @public - * @example To describe a stream with a given stream ARN - * ```javascript - * // The following example describes a stream with a given stream ARN. - * const input = { - * "StreamArn": "arn:aws:dynamodb:us-west-2:111122223333:table/Forum/stream/2015-05-20T20:51:10.252" - * }; - * const command = new DescribeStreamCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "StreamDescription": { - * "CreationRequestDateTime": "Wed May 20 13:51:10 PDT 2015", - * "KeySchema": [ - * { - * "AttributeName": "ForumName", - * "KeyType": "HASH" - * }, - * { - * "AttributeName": "Subject", - * "KeyType": "RANGE" - * } - * ], - * "Shards": [ - * { - * "SequenceNumberRange": { - * "EndingSequenceNumber": "20500000000000000910398", - * "StartingSequenceNumber": "20500000000000000910398" - * }, - * "ShardId": "shardId-00000001414562045508-2bac9cd2" - * }, - * { - * "ParentShardId": "shardId-00000001414562045508-2bac9cd2", - * "SequenceNumberRange": { - * "EndingSequenceNumber": "820400000000000001192334", - * "StartingSequenceNumber": "820400000000000001192334" - * }, - * "ShardId": "shardId-00000001414576573621-f55eea83" - * }, - * { - * "ParentShardId": "shardId-00000001414576573621-f55eea83", - * "SequenceNumberRange": { - * "EndingSequenceNumber": "1683700000000000001135967", - * "StartingSequenceNumber": "1683700000000000001135967" - * }, - * "ShardId": "shardId-00000001414592258131-674fd923" - * }, - * { - * "ParentShardId": "shardId-00000001414592258131-674fd923", - * "SequenceNumberRange": { - * "StartingSequenceNumber": "2574600000000000000935255" - * }, - * "ShardId": "shardId-00000001414608446368-3a1afbaf" - * } - * ], - * "StreamArn": "arn:aws:dynamodb:us-west-2:111122223333:table/Forum/stream/2015-05-20T20:51:10.252", - * "StreamLabel": "2015-05-20T20:51:10.252", - * "StreamStatus": "ENABLED", - * "StreamViewType": "NEW_AND_OLD_IMAGES", - * "TableName": "Forum" - * } - * } - * *\/ - * // example id: to-describe-a-stream-with-a-given-stream-arn-1473457835200 - * ``` * + * @public */ export class DescribeStreamCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb-streams/src/commands/GetRecordsCommand.ts b/clients/client-dynamodb-streams/src/commands/GetRecordsCommand.ts index 09d74dd1d9fea..1a465f1ebfc99 100644 --- a/clients/client-dynamodb-streams/src/commands/GetRecordsCommand.ts +++ b/clients/client-dynamodb-streams/src/commands/GetRecordsCommand.ts @@ -179,88 +179,8 @@ export interface GetRecordsCommandOutput extends GetRecordsOutput, __MetadataBea * @throws {@link DynamoDBStreamsServiceException} *

Base exception class for all service exceptions from DynamoDBStreams service.

* - * @public - * @example To retrieve all the stream records from a shard - * ```javascript - * // The following example retrieves all the stream records from a shard. - * const input = { - * "ShardIterator": "arn:aws:dynamodb:us-west-2:111122223333:table/Forum/stream/2015-05-20T20:51:10.252|1|AAAAAAAAAAEvJp6D+zaQ... ..." - * }; - * const command = new GetRecordsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "NextShardIterator": "arn:aws:dynamodb:us-west-2:111122223333:table/Forum/stream/2015-05-20T20:51:10.252|1|AAAAAAAAAAGQBYshYDEe ... ...", - * "Records": [ - * { - * "awsRegion": "us-west-2", - * "dynamodb": { - * "ApproximateCreationDateTime": "1.46480646E9", - * "Keys": { - * "ForumName": { - * "S": "DynamoDB" - * }, - * "Subject": { - * "S": "DynamoDB Thread 3" - * } - * }, - * "SequenceNumber": "300000000000000499659", - * "SizeBytes": 41, - * "StreamViewType": "KEYS_ONLY" - * }, - * "eventID": "e2fd9c34eff2d779b297b26f5fef4206", - * "eventName": "INSERT", - * "eventSource": "aws:dynamodb", - * "eventVersion": "1.0" - * }, - * { - * "awsRegion": "us-west-2", - * "dynamodb": { - * "ApproximateCreationDateTime": "1.46480527E9", - * "Keys": { - * "ForumName": { - * "S": "DynamoDB" - * }, - * "Subject": { - * "S": "DynamoDB Thread 1" - * } - * }, - * "SequenceNumber": "400000000000000499660", - * "SizeBytes": 41, - * "StreamViewType": "KEYS_ONLY" - * }, - * "eventID": "4b25bd0da9a181a155114127e4837252", - * "eventName": "MODIFY", - * "eventSource": "aws:dynamodb", - * "eventVersion": "1.0" - * }, - * { - * "awsRegion": "us-west-2", - * "dynamodb": { - * "ApproximateCreationDateTime": "1.46480646E9", - * "Keys": { - * "ForumName": { - * "S": "DynamoDB" - * }, - * "Subject": { - * "S": "DynamoDB Thread 2" - * } - * }, - * "SequenceNumber": "500000000000000499661", - * "SizeBytes": 41, - * "StreamViewType": "KEYS_ONLY" - * }, - * "eventID": "740280c73a3df7842edab3548a1b08ad", - * "eventName": "REMOVE", - * "eventSource": "aws:dynamodb", - * "eventVersion": "1.0" - * } - * ] - * } - * *\/ - * // example id: to-retrieve-all-the-stream-records-from-a-shard-1473707781419 - * ``` * + * @public */ export class GetRecordsCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb-streams/src/commands/GetShardIteratorCommand.ts b/clients/client-dynamodb-streams/src/commands/GetShardIteratorCommand.ts index fd26cd05c74c4..c5b1fded5447d 100644 --- a/clients/client-dynamodb-streams/src/commands/GetShardIteratorCommand.ts +++ b/clients/client-dynamodb-streams/src/commands/GetShardIteratorCommand.ts @@ -87,25 +87,25 @@ export interface GetShardIteratorCommandOutput extends GetShardIteratorOutput, _ * @throws {@link DynamoDBStreamsServiceException} *

Base exception class for all service exceptions from DynamoDBStreams service.

* - * @public + * * @example To obtain a shard iterator for the provided stream ARN and shard ID * ```javascript * // The following example returns a shard iterator for the provided stream ARN and shard ID. * const input = { - * "ShardId": "00000001414576573621-f55eea83", - * "ShardIteratorType": "TRIM_HORIZON", - * "StreamArn": "arn:aws:dynamodb:us-west-2:111122223333:table/Forum/stream/2015-05-20T20:51:10.252" + * ShardId: "00000001414576573621-f55eea83", + * ShardIteratorType: "TRIM_HORIZON", + * StreamArn: "arn:aws:dynamodb:us-west-2:111122223333:table/Forum/stream/2015-05-20T20:51:10.252" * }; * const command = new GetShardIteratorCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ShardIterator": "arn:aws:dynamodb:us-west-2:111122223333:table/Forum/stream/2015-05-20T20:51:10.252|1|AAAAAAAAAAEvJp6D+zaQ... ..." + * ShardIterator: "arn:aws:dynamodb:us-west-2:111122223333:table/Forum/stream/2015-05-20T20:51:10.252|1|AAAAAAAAAAEvJp6D+zaQ... ..." * } * *\/ - * // example id: to-obtain-a-shard-iterator-for-the-provided-stream-arn-and-shard-id-1473459941476 * ``` * + * @public */ export class GetShardIteratorCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb-streams/src/commands/ListStreamsCommand.ts b/clients/client-dynamodb-streams/src/commands/ListStreamsCommand.ts index fe83184d85cc6..8968e58d4a343 100644 --- a/clients/client-dynamodb-streams/src/commands/ListStreamsCommand.ts +++ b/clients/client-dynamodb-streams/src/commands/ListStreamsCommand.ts @@ -77,37 +77,37 @@ export interface ListStreamsCommandOutput extends ListStreamsOutput, __MetadataB * @throws {@link DynamoDBStreamsServiceException} *

Base exception class for all service exceptions from DynamoDBStreams service.

* - * @public + * * @example To list all of the stream ARNs * ```javascript * // The following example lists all of the stream ARNs. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListStreamsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Streams": [ + * Streams: [ * { - * "StreamArn": "arn:aws:dynamodb:us-wesst-2:111122223333:table/Forum/stream/2015-05-20T20:51:10.252", - * "StreamLabel": "2015-05-20T20:51:10.252", - * "TableName": "Forum" + * StreamArn: "arn:aws:dynamodb:us-wesst-2:111122223333:table/Forum/stream/2015-05-20T20:51:10.252", + * StreamLabel: "2015-05-20T20:51:10.252", + * TableName: "Forum" * }, * { - * "StreamArn": "arn:aws:dynamodb:us-west-2:111122223333:table/Forum/stream/2015-05-20T20:50:02.714", - * "StreamLabel": "2015-05-20T20:50:02.714", - * "TableName": "Forum" + * StreamArn: "arn:aws:dynamodb:us-west-2:111122223333:table/Forum/stream/2015-05-20T20:50:02.714", + * StreamLabel: "2015-05-20T20:50:02.714", + * TableName: "Forum" * }, * { - * "StreamArn": "arn:aws:dynamodb:us-west-2:111122223333:table/Forum/stream/2015-05-19T23:03:50.641", - * "StreamLabel": "2015-05-19T23:03:50.641", - * "TableName": "Forum" + * StreamArn: "arn:aws:dynamodb:us-west-2:111122223333:table/Forum/stream/2015-05-19T23:03:50.641", + * StreamLabel: "2015-05-19T23:03:50.641", + * TableName: "Forum" * } * ] * } * *\/ - * // example id: to-list-all-of-the-stream-arns--1473459534285 * ``` * + * @public */ export class ListStreamsCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/BatchExecuteStatementCommand.ts b/clients/client-dynamodb/src/commands/BatchExecuteStatementCommand.ts index be355cd595740..77f91fee391b4 100644 --- a/clients/client-dynamodb/src/commands/BatchExecuteStatementCommand.ts +++ b/clients/client-dynamodb/src/commands/BatchExecuteStatementCommand.ts @@ -211,6 +211,7 @@ export interface BatchExecuteStatementCommandOutput extends BatchExecuteStatemen * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class BatchExecuteStatementCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/BatchGetItemCommand.ts b/clients/client-dynamodb/src/commands/BatchGetItemCommand.ts index c7df202800408..84682af6bf1d0 100644 --- a/clients/client-dynamodb/src/commands/BatchGetItemCommand.ts +++ b/clients/client-dynamodb/src/commands/BatchGetItemCommand.ts @@ -272,71 +272,71 @@ export interface BatchGetItemCommandOutput extends BatchGetItemOutput, __Metadat * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* - * @public + * * @example To retrieve multiple items from a table * ```javascript * // This example reads multiple items from the Music table using a batch of three GetItem requests. Only the AlbumTitle attribute is returned. * const input = { - * "RequestItems": { - * "Music": { - * "Keys": [ + * RequestItems: { + * Music: { + * Keys: [ * { - * "Artist": { - * "S": "No One You Know" + * Artist: { + * S: "No One You Know" * }, - * "SongTitle": { - * "S": "Call Me Today" + * SongTitle: { + * S: "Call Me Today" * } * }, * { - * "Artist": { - * "S": "Acme Band" + * Artist: { + * S: "Acme Band" * }, - * "SongTitle": { - * "S": "Happy Day" + * SongTitle: { + * S: "Happy Day" * } * }, * { - * "Artist": { - * "S": "No One You Know" + * Artist: { + * S: "No One You Know" * }, - * "SongTitle": { - * "S": "Scared of My Shadow" + * SongTitle: { + * S: "Scared of My Shadow" * } * } * ], - * "ProjectionExpression": "AlbumTitle" + * ProjectionExpression: "AlbumTitle" * } * } * }; * const command = new BatchGetItemCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Responses": { - * "Music": [ + * Responses: { + * Music: [ * { - * "AlbumTitle": { - * "S": "Somewhat Famous" + * AlbumTitle: { + * S: "Somewhat Famous" * } * }, * { - * "AlbumTitle": { - * "S": "Blue Sky Blues" + * AlbumTitle: { + * S: "Blue Sky Blues" * } * }, * { - * "AlbumTitle": { - * "S": "Louder Than Ever" + * AlbumTitle: { + * S: "Louder Than Ever" * } * } * ] * } * } * *\/ - * // example id: to-retrieve-multiple-items-from-a-table-1476118438992 * ``` * + * @public */ export class BatchGetItemCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/BatchWriteItemCommand.ts b/clients/client-dynamodb/src/commands/BatchWriteItemCommand.ts index d3c2048814f7b..7e6de687d1610 100644 --- a/clients/client-dynamodb/src/commands/BatchWriteItemCommand.ts +++ b/clients/client-dynamodb/src/commands/BatchWriteItemCommand.ts @@ -323,54 +323,54 @@ export interface BatchWriteItemCommandOutput extends BatchWriteItemOutput, __Met * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* - * @public + * * @example To add multiple items to a table * ```javascript * // This example adds three new items to the Music table using a batch of three PutItem requests. * const input = { - * "RequestItems": { - * "Music": [ + * RequestItems: { + * Music: [ * { - * "PutRequest": { - * "Item": { - * "AlbumTitle": { - * "S": "Somewhat Famous" + * PutRequest: { + * Item: { + * AlbumTitle: { + * S: "Somewhat Famous" * }, - * "Artist": { - * "S": "No One You Know" + * Artist: { + * S: "No One You Know" * }, - * "SongTitle": { - * "S": "Call Me Today" + * SongTitle: { + * S: "Call Me Today" * } * } * } * }, * { - * "PutRequest": { - * "Item": { - * "AlbumTitle": { - * "S": "Songs About Life" + * PutRequest: { + * Item: { + * AlbumTitle: { + * S: "Songs About Life" * }, - * "Artist": { - * "S": "Acme Band" + * Artist: { + * S: "Acme Band" * }, - * "SongTitle": { - * "S": "Happy Day" + * SongTitle: { + * S: "Happy Day" * } * } * } * }, * { - * "PutRequest": { - * "Item": { - * "AlbumTitle": { - * "S": "Blue Sky Blues" + * PutRequest: { + * Item: { + * AlbumTitle: { + * S: "Blue Sky Blues" * }, - * "Artist": { - * "S": "No One You Know" + * Artist: { + * S: "No One You Know" * }, - * "SongTitle": { - * "S": "Scared of My Shadow" + * SongTitle: { + * S: "Scared of My Shadow" * } * } * } @@ -379,10 +379,13 @@ export interface BatchWriteItemCommandOutput extends BatchWriteItemOutput, __Met * } * }; * const command = new BatchWriteItemCommand(input); - * await client.send(command); - * // example id: to-add-multiple-items-to-a-table-1476118519747 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class BatchWriteItemCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/CreateBackupCommand.ts b/clients/client-dynamodb/src/commands/CreateBackupCommand.ts index 47658ba313981..15f58cacbb415 100644 --- a/clients/client-dynamodb/src/commands/CreateBackupCommand.ts +++ b/clients/client-dynamodb/src/commands/CreateBackupCommand.ts @@ -129,6 +129,7 @@ export interface CreateBackupCommandOutput extends CreateBackupOutput, __Metadat * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class CreateBackupCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/CreateGlobalTableCommand.ts b/clients/client-dynamodb/src/commands/CreateGlobalTableCommand.ts index 28a92c565a109..8fb274509cb36 100644 --- a/clients/client-dynamodb/src/commands/CreateGlobalTableCommand.ts +++ b/clients/client-dynamodb/src/commands/CreateGlobalTableCommand.ts @@ -188,6 +188,7 @@ export interface CreateGlobalTableCommandOutput extends CreateGlobalTableOutput, * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class CreateGlobalTableCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/CreateTableCommand.ts b/clients/client-dynamodb/src/commands/CreateTableCommand.ts index 2cf136f425d3c..08344f4a9496d 100644 --- a/clients/client-dynamodb/src/commands/CreateTableCommand.ts +++ b/clients/client-dynamodb/src/commands/CreateTableCommand.ts @@ -361,77 +361,8 @@ export interface CreateTableCommandOutput extends CreateTableOutput, __MetadataB * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* - * @public - * @example To create a table - * ```javascript - * // This example creates a table named Music. - * const input = { - * "AttributeDefinitions": [ - * { - * "AttributeName": "Artist", - * "AttributeType": "S" - * }, - * { - * "AttributeName": "SongTitle", - * "AttributeType": "S" - * } - * ], - * "KeySchema": [ - * { - * "AttributeName": "Artist", - * "KeyType": "HASH" - * }, - * { - * "AttributeName": "SongTitle", - * "KeyType": "RANGE" - * } - * ], - * "ProvisionedThroughput": { - * "ReadCapacityUnits": 5, - * "WriteCapacityUnits": 5 - * }, - * "TableName": "Music" - * }; - * const command = new CreateTableCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "TableDescription": { - * "AttributeDefinitions": [ - * { - * "AttributeName": "Artist", - * "AttributeType": "S" - * }, - * { - * "AttributeName": "SongTitle", - * "AttributeType": "S" - * } - * ], - * "CreationDateTime": "1421866952.062", - * "ItemCount": 0, - * "KeySchema": [ - * { - * "AttributeName": "Artist", - * "KeyType": "HASH" - * }, - * { - * "AttributeName": "SongTitle", - * "KeyType": "RANGE" - * } - * ], - * "ProvisionedThroughput": { - * "ReadCapacityUnits": 5, - * "WriteCapacityUnits": 5 - * }, - * "TableName": "Music", - * "TableSizeBytes": 0, - * "TableStatus": "CREATING" - * } - * } - * *\/ - * // example id: to-create-a-table-1476116291743 - * ``` * + * @public */ export class CreateTableCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/DeleteBackupCommand.ts b/clients/client-dynamodb/src/commands/DeleteBackupCommand.ts index d547108a39478..ea24a4bf6fd7a 100644 --- a/clients/client-dynamodb/src/commands/DeleteBackupCommand.ts +++ b/clients/client-dynamodb/src/commands/DeleteBackupCommand.ts @@ -176,6 +176,7 @@ export interface DeleteBackupCommandOutput extends DeleteBackupOutput, __Metadat * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class DeleteBackupCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/DeleteItemCommand.ts b/clients/client-dynamodb/src/commands/DeleteItemCommand.ts index f7422ab5f376f..dbd44a9dccb96 100644 --- a/clients/client-dynamodb/src/commands/DeleteItemCommand.ts +++ b/clients/client-dynamodb/src/commands/DeleteItemCommand.ts @@ -243,34 +243,34 @@ export interface DeleteItemCommandOutput extends DeleteItemOutput, __MetadataBea * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* - * @public + * * @example To delete an item * ```javascript * // This example deletes an item from the Music table. * const input = { - * "Key": { - * "Artist": { - * "S": "No One You Know" + * Key: { + * Artist: { + * S: "No One You Know" * }, - * "SongTitle": { - * "S": "Scared of My Shadow" + * SongTitle: { + * S: "Scared of My Shadow" * } * }, - * "TableName": "Music" + * TableName: "Music" * }; * const command = new DeleteItemCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ConsumedCapacity": { - * "CapacityUnits": 1, - * "TableName": "Music" + * ConsumedCapacity: { + * CapacityUnits: 1, + * TableName: "Music" * } * } * *\/ - * // example id: to-delete-an-item-1475884573758 * ``` * + * @public */ export class DeleteItemCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-dynamodb/src/commands/DeleteResourcePolicyCommand.ts index 582aa45dcddd4..ec09a5c737981 100644 --- a/clients/client-dynamodb/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-dynamodb/src/commands/DeleteResourcePolicyCommand.ts @@ -121,6 +121,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyO * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/DeleteTableCommand.ts b/clients/client-dynamodb/src/commands/DeleteTableCommand.ts index 0033c7467493b..14d6088e8fb21 100644 --- a/clients/client-dynamodb/src/commands/DeleteTableCommand.ts +++ b/clients/client-dynamodb/src/commands/DeleteTableCommand.ts @@ -286,33 +286,33 @@ export interface DeleteTableCommandOutput extends DeleteTableOutput, __MetadataB * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* - * @public + * * @example To delete a table * ```javascript * // This example deletes the Music table. * const input = { - * "TableName": "Music" + * TableName: "Music" * }; * const command = new DeleteTableCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TableDescription": { - * "ItemCount": 0, - * "ProvisionedThroughput": { - * "NumberOfDecreasesToday": 1, - * "ReadCapacityUnits": 5, - * "WriteCapacityUnits": 5 + * TableDescription: { + * ItemCount: 0, + * ProvisionedThroughput: { + * NumberOfDecreasesToday: 1, + * ReadCapacityUnits: 5, + * WriteCapacityUnits: 5 * }, - * "TableName": "Music", - * "TableSizeBytes": 0, - * "TableStatus": "DELETING" + * TableName: "Music", + * TableSizeBytes: 0, + * TableStatus: "DELETING" * } * } * *\/ - * // example id: to-delete-a-table-1475884368755 * ``` * + * @public */ export class DeleteTableCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/DescribeBackupCommand.ts b/clients/client-dynamodb/src/commands/DescribeBackupCommand.ts index dbf1690e3f681..aa15cbab87ec4 100644 --- a/clients/client-dynamodb/src/commands/DescribeBackupCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeBackupCommand.ts @@ -156,6 +156,7 @@ export interface DescribeBackupCommandOutput extends DescribeBackupOutput, __Met * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class DescribeBackupCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/DescribeContinuousBackupsCommand.ts b/clients/client-dynamodb/src/commands/DescribeContinuousBackupsCommand.ts index b66e64434011a..94014c388b92d 100644 --- a/clients/client-dynamodb/src/commands/DescribeContinuousBackupsCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeContinuousBackupsCommand.ts @@ -83,6 +83,7 @@ export interface DescribeContinuousBackupsCommandOutput extends DescribeContinuo * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class DescribeContinuousBackupsCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/DescribeContributorInsightsCommand.ts b/clients/client-dynamodb/src/commands/DescribeContributorInsightsCommand.ts index ce01c95fe8e3d..a6b24cbcfc4f2 100644 --- a/clients/client-dynamodb/src/commands/DescribeContributorInsightsCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeContributorInsightsCommand.ts @@ -74,6 +74,7 @@ export interface DescribeContributorInsightsCommandOutput extends DescribeContri * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class DescribeContributorInsightsCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/DescribeEndpointsCommand.ts b/clients/client-dynamodb/src/commands/DescribeEndpointsCommand.ts index 8a4690b7ce7f6..241f919650d6c 100644 --- a/clients/client-dynamodb/src/commands/DescribeEndpointsCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeEndpointsCommand.ts @@ -59,6 +59,7 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class DescribeEndpointsCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/DescribeExportCommand.ts b/clients/client-dynamodb/src/commands/DescribeExportCommand.ts index 2c72695ec687c..9eef129d04820 100644 --- a/clients/client-dynamodb/src/commands/DescribeExportCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeExportCommand.ts @@ -103,6 +103,7 @@ export interface DescribeExportCommandOutput extends DescribeExportOutput, __Met * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class DescribeExportCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/DescribeGlobalTableCommand.ts b/clients/client-dynamodb/src/commands/DescribeGlobalTableCommand.ts index fd694a59a13ad..1426fdbb2107e 100644 --- a/clients/client-dynamodb/src/commands/DescribeGlobalTableCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeGlobalTableCommand.ts @@ -113,6 +113,7 @@ export interface DescribeGlobalTableCommandOutput extends DescribeGlobalTableOut * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class DescribeGlobalTableCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/DescribeGlobalTableSettingsCommand.ts b/clients/client-dynamodb/src/commands/DescribeGlobalTableSettingsCommand.ts index 336c784ddc99b..95f3886be6086 100644 --- a/clients/client-dynamodb/src/commands/DescribeGlobalTableSettingsCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeGlobalTableSettingsCommand.ts @@ -159,6 +159,7 @@ export interface DescribeGlobalTableSettingsCommandOutput extends DescribeGlobal * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class DescribeGlobalTableSettingsCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/DescribeImportCommand.ts b/clients/client-dynamodb/src/commands/DescribeImportCommand.ts index 789b83985e20d..dbf105d00bf6f 100644 --- a/clients/client-dynamodb/src/commands/DescribeImportCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeImportCommand.ts @@ -148,6 +148,7 @@ export interface DescribeImportCommandOutput extends DescribeImportOutput, __Met * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class DescribeImportCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/DescribeKinesisStreamingDestinationCommand.ts b/clients/client-dynamodb/src/commands/DescribeKinesisStreamingDestinationCommand.ts index b25d64cd915bc..6dab66b40b209 100644 --- a/clients/client-dynamodb/src/commands/DescribeKinesisStreamingDestinationCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeKinesisStreamingDestinationCommand.ts @@ -80,6 +80,7 @@ export interface DescribeKinesisStreamingDestinationCommandOutput * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class DescribeKinesisStreamingDestinationCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/DescribeLimitsCommand.ts b/clients/client-dynamodb/src/commands/DescribeLimitsCommand.ts index 89e9286b213a6..083acfc64d953 100644 --- a/clients/client-dynamodb/src/commands/DescribeLimitsCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeLimitsCommand.ts @@ -130,24 +130,24 @@ export interface DescribeLimitsCommandOutput extends DescribeLimitsOutput, __Met * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* - * @public + * * @example To determine capacity limits per table and account, in the current AWS region * ```javascript * // The following example returns the maximum read and write capacity units per table, and for the AWS account, in the current AWS region. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeLimitsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AccountMaxReadCapacityUnits": 20000, - * "AccountMaxWriteCapacityUnits": 20000, - * "TableMaxReadCapacityUnits": 10000, - * "TableMaxWriteCapacityUnits": 10000 + * AccountMaxReadCapacityUnits: 20000, + * AccountMaxWriteCapacityUnits: 20000, + * TableMaxReadCapacityUnits: 10000, + * TableMaxWriteCapacityUnits: 10000 * } * *\/ - * // example id: to-determine-capacity-limits-per-table-and-account-in-the-current-aws-region-1475884162064 * ``` * + * @public */ export class DescribeLimitsCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/DescribeTableCommand.ts b/clients/client-dynamodb/src/commands/DescribeTableCommand.ts index e582a929714b1..102f76b1871f6 100644 --- a/clients/client-dynamodb/src/commands/DescribeTableCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeTableCommand.ts @@ -246,54 +246,8 @@ export interface DescribeTableCommandOutput extends DescribeTableOutput, __Metad * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* - * @public - * @example To describe a table - * ```javascript - * // This example describes the Music table. - * const input = { - * "TableName": "Music" - * }; - * const command = new DescribeTableCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Table": { - * "AttributeDefinitions": [ - * { - * "AttributeName": "Artist", - * "AttributeType": "S" - * }, - * { - * "AttributeName": "SongTitle", - * "AttributeType": "S" - * } - * ], - * "CreationDateTime": "1421866952.062", - * "ItemCount": 0, - * "KeySchema": [ - * { - * "AttributeName": "Artist", - * "KeyType": "HASH" - * }, - * { - * "AttributeName": "SongTitle", - * "KeyType": "RANGE" - * } - * ], - * "ProvisionedThroughput": { - * "NumberOfDecreasesToday": 1, - * "ReadCapacityUnits": 5, - * "WriteCapacityUnits": 5 - * }, - * "TableName": "Music", - * "TableSizeBytes": 0, - * "TableStatus": "ACTIVE" - * } - * } - * *\/ - * // example id: to-describe-a-table-1475884440502 - * ``` * + * @public */ export class DescribeTableCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/DescribeTableReplicaAutoScalingCommand.ts b/clients/client-dynamodb/src/commands/DescribeTableReplicaAutoScalingCommand.ts index 2653f15170179..326966a8f5c18 100644 --- a/clients/client-dynamodb/src/commands/DescribeTableReplicaAutoScalingCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeTableReplicaAutoScalingCommand.ts @@ -154,6 +154,7 @@ export interface DescribeTableReplicaAutoScalingCommandOutput * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class DescribeTableReplicaAutoScalingCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/DescribeTimeToLiveCommand.ts b/clients/client-dynamodb/src/commands/DescribeTimeToLiveCommand.ts index 15c8dc6f8ea46..956584084a889 100644 --- a/clients/client-dynamodb/src/commands/DescribeTimeToLiveCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeTimeToLiveCommand.ts @@ -67,6 +67,7 @@ export interface DescribeTimeToLiveCommandOutput extends DescribeTimeToLiveOutpu * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class DescribeTimeToLiveCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/DisableKinesisStreamingDestinationCommand.ts b/clients/client-dynamodb/src/commands/DisableKinesisStreamingDestinationCommand.ts index d929d7ac4b357..4b2aa97ed5453 100644 --- a/clients/client-dynamodb/src/commands/DisableKinesisStreamingDestinationCommand.ts +++ b/clients/client-dynamodb/src/commands/DisableKinesisStreamingDestinationCommand.ts @@ -110,6 +110,7 @@ export interface DisableKinesisStreamingDestinationCommandOutput * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class DisableKinesisStreamingDestinationCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/EnableKinesisStreamingDestinationCommand.ts b/clients/client-dynamodb/src/commands/EnableKinesisStreamingDestinationCommand.ts index 9a743a9085bd1..755b8752f737a 100644 --- a/clients/client-dynamodb/src/commands/EnableKinesisStreamingDestinationCommand.ts +++ b/clients/client-dynamodb/src/commands/EnableKinesisStreamingDestinationCommand.ts @@ -112,6 +112,7 @@ export interface EnableKinesisStreamingDestinationCommandOutput * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class EnableKinesisStreamingDestinationCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/ExecuteStatementCommand.ts b/clients/client-dynamodb/src/commands/ExecuteStatementCommand.ts index 76676e20b9dbf..6921944c22573 100644 --- a/clients/client-dynamodb/src/commands/ExecuteStatementCommand.ts +++ b/clients/client-dynamodb/src/commands/ExecuteStatementCommand.ts @@ -225,6 +225,7 @@ export interface ExecuteStatementCommandOutput extends ExecuteStatementOutput, _ * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class ExecuteStatementCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/ExecuteTransactionCommand.ts b/clients/client-dynamodb/src/commands/ExecuteTransactionCommand.ts index aeec81ba68e3e..96bf446a96737 100644 --- a/clients/client-dynamodb/src/commands/ExecuteTransactionCommand.ts +++ b/clients/client-dynamodb/src/commands/ExecuteTransactionCommand.ts @@ -516,6 +516,7 @@ export interface ExecuteTransactionCommandOutput extends ExecuteTransactionOutpu * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class ExecuteTransactionCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/ExportTableToPointInTimeCommand.ts b/clients/client-dynamodb/src/commands/ExportTableToPointInTimeCommand.ts index 07abd87996d33..cbbd595a7d697 100644 --- a/clients/client-dynamodb/src/commands/ExportTableToPointInTimeCommand.ts +++ b/clients/client-dynamodb/src/commands/ExportTableToPointInTimeCommand.ts @@ -130,6 +130,7 @@ export interface ExportTableToPointInTimeCommandOutput extends ExportTableToPoin * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class ExportTableToPointInTimeCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/GetItemCommand.ts b/clients/client-dynamodb/src/commands/GetItemCommand.ts index 3b3b38ceb000f..4745ca7cc5ff1 100644 --- a/clients/client-dynamodb/src/commands/GetItemCommand.ts +++ b/clients/client-dynamodb/src/commands/GetItemCommand.ts @@ -205,41 +205,41 @@ export interface GetItemCommandOutput extends GetItemOutput, __MetadataBearer {} * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* - * @public + * * @example To read an item from a table * ```javascript * // This example retrieves an item from the Music table. The table has a partition key and a sort key (Artist and SongTitle), so you must specify both of these attributes. * const input = { - * "Key": { - * "Artist": { - * "S": "Acme Band" + * Key: { + * Artist: { + * S: "Acme Band" * }, - * "SongTitle": { - * "S": "Happy Day" + * SongTitle: { + * S: "Happy Day" * } * }, - * "TableName": "Music" + * TableName: "Music" * }; * const command = new GetItemCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Item": { - * "AlbumTitle": { - * "S": "Songs About Life" + * Item: { + * AlbumTitle: { + * S: "Songs About Life" * }, - * "Artist": { - * "S": "Acme Band" + * Artist: { + * S: "Acme Band" * }, - * "SongTitle": { - * "S": "Happy Day" + * SongTitle: { + * S: "Happy Day" * } * } * } * *\/ - * // example id: to-read-an-item-from-a-table-1475884258350 * ``` * + * @public */ export class GetItemCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/GetResourcePolicyCommand.ts b/clients/client-dynamodb/src/commands/GetResourcePolicyCommand.ts index 6ff5e8348c9e7..21c474deada99 100644 --- a/clients/client-dynamodb/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-dynamodb/src/commands/GetResourcePolicyCommand.ts @@ -104,6 +104,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyOutput, * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/ImportTableCommand.ts b/clients/client-dynamodb/src/commands/ImportTableCommand.ts index 27d263f5441b2..6762d3ce46368 100644 --- a/clients/client-dynamodb/src/commands/ImportTableCommand.ts +++ b/clients/client-dynamodb/src/commands/ImportTableCommand.ts @@ -254,6 +254,7 @@ export interface ImportTableCommandOutput extends ImportTableOutput, __MetadataB * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class ImportTableCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/ListBackupsCommand.ts b/clients/client-dynamodb/src/commands/ListBackupsCommand.ts index 466dae0a00e8a..95e0337649430 100644 --- a/clients/client-dynamodb/src/commands/ListBackupsCommand.ts +++ b/clients/client-dynamodb/src/commands/ListBackupsCommand.ts @@ -90,6 +90,7 @@ export interface ListBackupsCommandOutput extends ListBackupsOutput, __MetadataB * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class ListBackupsCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/ListContributorInsightsCommand.ts b/clients/client-dynamodb/src/commands/ListContributorInsightsCommand.ts index 5664947ed5fef..1e5ef355a79d0 100644 --- a/clients/client-dynamodb/src/commands/ListContributorInsightsCommand.ts +++ b/clients/client-dynamodb/src/commands/ListContributorInsightsCommand.ts @@ -72,6 +72,7 @@ export interface ListContributorInsightsCommandOutput extends ListContributorIns * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class ListContributorInsightsCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/ListExportsCommand.ts b/clients/client-dynamodb/src/commands/ListExportsCommand.ts index c4acb8d4ce4d2..40d344d2ae26a 100644 --- a/clients/client-dynamodb/src/commands/ListExportsCommand.ts +++ b/clients/client-dynamodb/src/commands/ListExportsCommand.ts @@ -83,6 +83,7 @@ export interface ListExportsCommandOutput extends ListExportsOutput, __MetadataB * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class ListExportsCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/ListGlobalTablesCommand.ts b/clients/client-dynamodb/src/commands/ListGlobalTablesCommand.ts index d08c47b7cb85c..4af916cb3e9e6 100644 --- a/clients/client-dynamodb/src/commands/ListGlobalTablesCommand.ts +++ b/clients/client-dynamodb/src/commands/ListGlobalTablesCommand.ts @@ -76,6 +76,7 @@ export interface ListGlobalTablesCommandOutput extends ListGlobalTablesOutput, _ * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class ListGlobalTablesCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/ListImportsCommand.ts b/clients/client-dynamodb/src/commands/ListImportsCommand.ts index 139d516065c69..235ef679eb8ec 100644 --- a/clients/client-dynamodb/src/commands/ListImportsCommand.ts +++ b/clients/client-dynamodb/src/commands/ListImportsCommand.ts @@ -89,6 +89,7 @@ export interface ListImportsCommandOutput extends ListImportsOutput, __MetadataB * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class ListImportsCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/ListTablesCommand.ts b/clients/client-dynamodb/src/commands/ListTablesCommand.ts index 260172ef2387d..91826e103a08d 100644 --- a/clients/client-dynamodb/src/commands/ListTablesCommand.ts +++ b/clients/client-dynamodb/src/commands/ListTablesCommand.ts @@ -66,16 +66,16 @@ export interface ListTablesCommandOutput extends ListTablesOutput, __MetadataBea * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* - * @public + * * @example To list tables * ```javascript * // This example lists all of the tables associated with the current AWS account and endpoint. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListTablesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TableNames": [ + * TableNames: [ * "Forum", * "ProductCatalog", * "Reply", @@ -83,9 +83,9 @@ export interface ListTablesCommandOutput extends ListTablesOutput, __MetadataBea * ] * } * *\/ - * // example id: to-list-tables-1475884741238 * ``` * + * @public */ export class ListTablesCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/ListTagsOfResourceCommand.ts b/clients/client-dynamodb/src/commands/ListTagsOfResourceCommand.ts index bb65e90b89854..23b699608fcde 100644 --- a/clients/client-dynamodb/src/commands/ListTagsOfResourceCommand.ts +++ b/clients/client-dynamodb/src/commands/ListTagsOfResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsOfResourceCommandOutput extends ListTagsOfResourceOutpu * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class ListTagsOfResourceCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/PutItemCommand.ts b/clients/client-dynamodb/src/commands/PutItemCommand.ts index 7b48e506b5f94..97090aff59ade 100644 --- a/clients/client-dynamodb/src/commands/PutItemCommand.ts +++ b/clients/client-dynamodb/src/commands/PutItemCommand.ts @@ -253,38 +253,38 @@ export interface PutItemCommandOutput extends PutItemOutput, __MetadataBearer {} * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* - * @public + * * @example To add an item to a table * ```javascript * // This example adds a new item to the Music table. * const input = { - * "Item": { - * "AlbumTitle": { - * "S": "Somewhat Famous" + * Item: { + * AlbumTitle: { + * S: "Somewhat Famous" * }, - * "Artist": { - * "S": "No One You Know" + * Artist: { + * S: "No One You Know" * }, - * "SongTitle": { - * "S": "Call Me Today" + * SongTitle: { + * S: "Call Me Today" * } * }, - * "ReturnConsumedCapacity": "TOTAL", - * "TableName": "Music" + * ReturnConsumedCapacity: "TOTAL", + * TableName: "Music" * }; * const command = new PutItemCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ConsumedCapacity": { - * "CapacityUnits": 1, - * "TableName": "Music" + * ConsumedCapacity: { + * CapacityUnits: 1, + * TableName: "Music" * } * } * *\/ - * // example id: to-add-an-item-to-a-table-1476116191110 * ``` * + * @public */ export class PutItemCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/PutResourcePolicyCommand.ts b/clients/client-dynamodb/src/commands/PutResourcePolicyCommand.ts index 631964a8128f1..8b4977ba44006 100644 --- a/clients/client-dynamodb/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-dynamodb/src/commands/PutResourcePolicyCommand.ts @@ -123,6 +123,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput, * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/QueryCommand.ts b/clients/client-dynamodb/src/commands/QueryCommand.ts index bf5305946eb93..9c7a1c37c055e 100644 --- a/clients/client-dynamodb/src/commands/QueryCommand.ts +++ b/clients/client-dynamodb/src/commands/QueryCommand.ts @@ -281,39 +281,39 @@ export interface QueryCommandOutput extends QueryOutput, __MetadataBearer {} * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* - * @public + * * @example To query an item * ```javascript * // This example queries items in the Music table. The table has a partition key and sort key (Artist and SongTitle), but this query only specifies the partition key value. It returns song titles by the artist named "No One You Know". * const input = { - * "ExpressionAttributeValues": { - * ":v1": { - * "S": "No One You Know" + * ExpressionAttributeValues: { + * :v1: { + * S: "No One You Know" * } * }, - * "KeyConditionExpression": "Artist = :v1", - * "ProjectionExpression": "SongTitle", - * "TableName": "Music" + * KeyConditionExpression: "Artist = :v1", + * ProjectionExpression: "SongTitle", + * TableName: "Music" * }; * const command = new QueryCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ConsumedCapacity": {}, - * "Count": 2, - * "Items": [ + * ConsumedCapacity: { /* empty *\/ }, + * Count: 2, + * Items: [ * { - * "SongTitle": { - * "S": "Call Me Today" + * SongTitle: { + * S: "Call Me Today" * } * } * ], - * "ScannedCount": 2 + * ScannedCount: 2 * } * *\/ - * // example id: to-query-an-item-1475883874631 * ``` * + * @public */ export class QueryCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/RestoreTableFromBackupCommand.ts b/clients/client-dynamodb/src/commands/RestoreTableFromBackupCommand.ts index 58fc831530eca..08d6c5373370f 100644 --- a/clients/client-dynamodb/src/commands/RestoreTableFromBackupCommand.ts +++ b/clients/client-dynamodb/src/commands/RestoreTableFromBackupCommand.ts @@ -344,6 +344,7 @@ export interface RestoreTableFromBackupCommandOutput extends RestoreTableFromBac * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class RestoreTableFromBackupCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/RestoreTableToPointInTimeCommand.ts b/clients/client-dynamodb/src/commands/RestoreTableToPointInTimeCommand.ts index c0b59ea176ef0..430011520a80c 100644 --- a/clients/client-dynamodb/src/commands/RestoreTableToPointInTimeCommand.ts +++ b/clients/client-dynamodb/src/commands/RestoreTableToPointInTimeCommand.ts @@ -376,6 +376,7 @@ export interface RestoreTableToPointInTimeCommandOutput extends RestoreTableToPo * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class RestoreTableToPointInTimeCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/ScanCommand.ts b/clients/client-dynamodb/src/commands/ScanCommand.ts index b929bb0beb1ec..03cc15114c8cc 100644 --- a/clients/client-dynamodb/src/commands/ScanCommand.ts +++ b/clients/client-dynamodb/src/commands/ScanCommand.ts @@ -265,54 +265,54 @@ export interface ScanCommandOutput extends ScanOutput, __MetadataBearer {} * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* - * @public + * * @example To scan a table * ```javascript * // This example scans the entire Music table, and then narrows the results to songs by the artist "No One You Know". For each item, only the album title and song title are returned. * const input = { - * "ExpressionAttributeNames": { - * "#AT": "AlbumTitle", - * "#ST": "SongTitle" + * ExpressionAttributeNames: { + * #AT: "AlbumTitle", + * #ST: "SongTitle" * }, - * "ExpressionAttributeValues": { - * ":a": { - * "S": "No One You Know" + * ExpressionAttributeValues: { + * :a: { + * S: "No One You Know" * } * }, - * "FilterExpression": "Artist = :a", - * "ProjectionExpression": "#ST, #AT", - * "TableName": "Music" + * FilterExpression: "Artist = :a", + * ProjectionExpression: "#ST, #AT", + * TableName: "Music" * }; * const command = new ScanCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ConsumedCapacity": {}, - * "Count": 2, - * "Items": [ + * ConsumedCapacity: { /* empty *\/ }, + * Count: 2, + * Items: [ * { - * "AlbumTitle": { - * "S": "Somewhat Famous" + * AlbumTitle: { + * S: "Somewhat Famous" * }, - * "SongTitle": { - * "S": "Call Me Today" + * SongTitle: { + * S: "Call Me Today" * } * }, * { - * "AlbumTitle": { - * "S": "Blue Sky Blues" + * AlbumTitle: { + * S: "Blue Sky Blues" * }, - * "SongTitle": { - * "S": "Scared of My Shadow" + * SongTitle: { + * S: "Scared of My Shadow" * } * } * ], - * "ScannedCount": 3 + * ScannedCount: 3 * } * *\/ - * // example id: to-scan-a-table-1475883652470 * ``` * + * @public */ export class ScanCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/TagResourceCommand.ts b/clients/client-dynamodb/src/commands/TagResourceCommand.ts index 165ae29cfd726..afbcbd856163d 100644 --- a/clients/client-dynamodb/src/commands/TagResourceCommand.ts +++ b/clients/client-dynamodb/src/commands/TagResourceCommand.ts @@ -113,6 +113,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/TransactGetItemsCommand.ts b/clients/client-dynamodb/src/commands/TransactGetItemsCommand.ts index 8b12866659780..2b571b961df91 100644 --- a/clients/client-dynamodb/src/commands/TransactGetItemsCommand.ts +++ b/clients/client-dynamodb/src/commands/TransactGetItemsCommand.ts @@ -472,6 +472,7 @@ export interface TransactGetItemsCommandOutput extends TransactGetItemsOutput, _ * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class TransactGetItemsCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/TransactWriteItemsCommand.ts b/clients/client-dynamodb/src/commands/TransactWriteItemsCommand.ts index 264ae9c8b480a..9e841844ddb0c 100644 --- a/clients/client-dynamodb/src/commands/TransactWriteItemsCommand.ts +++ b/clients/client-dynamodb/src/commands/TransactWriteItemsCommand.ts @@ -641,6 +641,7 @@ export interface TransactWriteItemsCommandOutput extends TransactWriteItemsOutpu * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class TransactWriteItemsCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/UntagResourceCommand.ts b/clients/client-dynamodb/src/commands/UntagResourceCommand.ts index 0031c99a01329..6b918c6659c52 100644 --- a/clients/client-dynamodb/src/commands/UntagResourceCommand.ts +++ b/clients/client-dynamodb/src/commands/UntagResourceCommand.ts @@ -108,6 +108,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/UpdateContinuousBackupsCommand.ts b/clients/client-dynamodb/src/commands/UpdateContinuousBackupsCommand.ts index 4eede960b070f..e2d13f5253275 100644 --- a/clients/client-dynamodb/src/commands/UpdateContinuousBackupsCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateContinuousBackupsCommand.ts @@ -90,6 +90,7 @@ export interface UpdateContinuousBackupsCommandOutput extends UpdateContinuousBa * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class UpdateContinuousBackupsCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/UpdateContributorInsightsCommand.ts b/clients/client-dynamodb/src/commands/UpdateContributorInsightsCommand.ts index a23a5daf77732..d9155b555e61c 100644 --- a/clients/client-dynamodb/src/commands/UpdateContributorInsightsCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateContributorInsightsCommand.ts @@ -72,6 +72,7 @@ export interface UpdateContributorInsightsCommandOutput extends UpdateContributo * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class UpdateContributorInsightsCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/UpdateGlobalTableCommand.ts b/clients/client-dynamodb/src/commands/UpdateGlobalTableCommand.ts index 387850721033b..50911422974a2 100644 --- a/clients/client-dynamodb/src/commands/UpdateGlobalTableCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateGlobalTableCommand.ts @@ -159,6 +159,7 @@ export interface UpdateGlobalTableCommandOutput extends UpdateGlobalTableOutput, * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class UpdateGlobalTableCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/UpdateGlobalTableSettingsCommand.ts b/clients/client-dynamodb/src/commands/UpdateGlobalTableSettingsCommand.ts index 1d96e3d6ef550..3cb79e413a3f9 100644 --- a/clients/client-dynamodb/src/commands/UpdateGlobalTableSettingsCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateGlobalTableSettingsCommand.ts @@ -263,6 +263,7 @@ export interface UpdateGlobalTableSettingsCommandOutput extends UpdateGlobalTabl * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class UpdateGlobalTableSettingsCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/UpdateItemCommand.ts b/clients/client-dynamodb/src/commands/UpdateItemCommand.ts index 36780efc5b956..33d635abe8cb7 100644 --- a/clients/client-dynamodb/src/commands/UpdateItemCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateItemCommand.ts @@ -246,58 +246,58 @@ export interface UpdateItemCommandOutput extends UpdateItemOutput, __MetadataBea * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* - * @public + * * @example To update an item in a table * ```javascript * // This example updates an item in the Music table. It adds a new attribute (Year) and modifies the AlbumTitle attribute. All of the attributes in the item, as they appear after the update, are returned in the response. * const input = { - * "ExpressionAttributeNames": { - * "#AT": "AlbumTitle", - * "#Y": "Year" + * ExpressionAttributeNames: { + * #AT: "AlbumTitle", + * #Y: "Year" * }, - * "ExpressionAttributeValues": { - * ":t": { - * "S": "Louder Than Ever" + * ExpressionAttributeValues: { + * :t: { + * S: "Louder Than Ever" * }, - * ":y": { - * "N": "2015" + * :y: { + * N: "2015" * } * }, - * "Key": { - * "Artist": { - * "S": "Acme Band" + * Key: { + * Artist: { + * S: "Acme Band" * }, - * "SongTitle": { - * "S": "Happy Day" + * SongTitle: { + * S: "Happy Day" * } * }, - * "ReturnValues": "ALL_NEW", - * "TableName": "Music", - * "UpdateExpression": "SET #Y = :y, #AT = :t" + * ReturnValues: "ALL_NEW", + * TableName: "Music", + * UpdateExpression: "SET #Y = :y, #AT = :t" * }; * const command = new UpdateItemCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Attributes": { - * "AlbumTitle": { - * "S": "Louder Than Ever" + * Attributes: { + * AlbumTitle: { + * S: "Louder Than Ever" * }, - * "Artist": { - * "S": "Acme Band" + * Artist: { + * S: "Acme Band" * }, - * "SongTitle": { - * "S": "Happy Day" + * SongTitle: { + * S: "Happy Day" * }, - * "Year": { - * "N": "2015" + * Year: { + * N: "2015" * } * } * } * *\/ - * // example id: to-update-an-item-in-a-table-1476118250055 * ``` * + * @public */ export class UpdateItemCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/UpdateKinesisStreamingDestinationCommand.ts b/clients/client-dynamodb/src/commands/UpdateKinesisStreamingDestinationCommand.ts index 04fccf477d50b..3f63b8a2b7f42 100644 --- a/clients/client-dynamodb/src/commands/UpdateKinesisStreamingDestinationCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateKinesisStreamingDestinationCommand.ts @@ -109,6 +109,7 @@ export interface UpdateKinesisStreamingDestinationCommandOutput * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class UpdateKinesisStreamingDestinationCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/UpdateTableCommand.ts b/clients/client-dynamodb/src/commands/UpdateTableCommand.ts index f291cf2937ff6..f6e48622e9e6a 100644 --- a/clients/client-dynamodb/src/commands/UpdateTableCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateTableCommand.ts @@ -420,59 +420,8 @@ export interface UpdateTableCommandOutput extends UpdateTableOutput, __MetadataB * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* - * @public - * @example To modify a table's provisioned throughput - * ```javascript - * // This example increases the provisioned read and write capacity on the Music table. - * const input = { - * "ProvisionedThroughput": { - * "ReadCapacityUnits": 10, - * "WriteCapacityUnits": 10 - * }, - * "TableName": "MusicCollection" - * }; - * const command = new UpdateTableCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "TableDescription": { - * "AttributeDefinitions": [ - * { - * "AttributeName": "Artist", - * "AttributeType": "S" - * }, - * { - * "AttributeName": "SongTitle", - * "AttributeType": "S" - * } - * ], - * "CreationDateTime": "1421866952.062", - * "ItemCount": 0, - * "KeySchema": [ - * { - * "AttributeName": "Artist", - * "KeyType": "HASH" - * }, - * { - * "AttributeName": "SongTitle", - * "KeyType": "RANGE" - * } - * ], - * "ProvisionedThroughput": { - * "LastIncreaseDateTime": "1421874759.194", - * "NumberOfDecreasesToday": 1, - * "ReadCapacityUnits": 1, - * "WriteCapacityUnits": 1 - * }, - * "TableName": "MusicCollection", - * "TableSizeBytes": 0, - * "TableStatus": "UPDATING" - * } - * } - * *\/ - * // example id: to-modify-a-tables-provisioned-throughput-1476118076147 - * ``` * + * @public */ export class UpdateTableCommand extends $Command .classBuilder< diff --git a/clients/client-dynamodb/src/commands/UpdateTableReplicaAutoScalingCommand.ts b/clients/client-dynamodb/src/commands/UpdateTableReplicaAutoScalingCommand.ts index 352e13029ad6b..4afbd9a9e4283 100644 --- a/clients/client-dynamodb/src/commands/UpdateTableReplicaAutoScalingCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateTableReplicaAutoScalingCommand.ts @@ -232,6 +232,7 @@ export interface UpdateTableReplicaAutoScalingCommandOutput * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class UpdateTableReplicaAutoScalingCommand extends $Command diff --git a/clients/client-dynamodb/src/commands/UpdateTimeToLiveCommand.ts b/clients/client-dynamodb/src/commands/UpdateTimeToLiveCommand.ts index 13835dfef47de..e4fcbd7aa4e52 100644 --- a/clients/client-dynamodb/src/commands/UpdateTimeToLiveCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateTimeToLiveCommand.ts @@ -126,6 +126,7 @@ export interface UpdateTimeToLiveCommandOutput extends UpdateTimeToLiveOutput, _ * @throws {@link DynamoDBServiceException} *

Base exception class for all service exceptions from DynamoDB service.

* + * * @public */ export class UpdateTimeToLiveCommand extends $Command diff --git a/clients/client-ebs/src/commands/CompleteSnapshotCommand.ts b/clients/client-ebs/src/commands/CompleteSnapshotCommand.ts index 32b11a3faeb00..3f23763d1e719 100644 --- a/clients/client-ebs/src/commands/CompleteSnapshotCommand.ts +++ b/clients/client-ebs/src/commands/CompleteSnapshotCommand.ts @@ -86,6 +86,7 @@ export interface CompleteSnapshotCommandOutput extends CompleteSnapshotResponse, * @throws {@link EBSServiceException} *

Base exception class for all service exceptions from EBS service.

* + * * @public */ export class CompleteSnapshotCommand extends $Command diff --git a/clients/client-ebs/src/commands/GetSnapshotBlockCommand.ts b/clients/client-ebs/src/commands/GetSnapshotBlockCommand.ts index 2e13e5883551a..f56f0bb755699 100644 --- a/clients/client-ebs/src/commands/GetSnapshotBlockCommand.ts +++ b/clients/client-ebs/src/commands/GetSnapshotBlockCommand.ts @@ -54,6 +54,11 @@ export interface GetSnapshotBlockCommandOutput extends Omit", // see \@smithy/types -> StreamingBlobPayloadOutputTypes @@ -91,6 +96,7 @@ export interface GetSnapshotBlockCommandOutput extends OmitBase exception class for all service exceptions from EBS service.

* + * * @public */ export class GetSnapshotBlockCommand extends $Command diff --git a/clients/client-ebs/src/commands/ListChangedBlocksCommand.ts b/clients/client-ebs/src/commands/ListChangedBlocksCommand.ts index 28a1a9ee7b194..6e29a83fab321 100644 --- a/clients/client-ebs/src/commands/ListChangedBlocksCommand.ts +++ b/clients/client-ebs/src/commands/ListChangedBlocksCommand.ts @@ -99,6 +99,7 @@ export interface ListChangedBlocksCommandOutput extends ListChangedBlocksRespons * @throws {@link EBSServiceException} *

Base exception class for all service exceptions from EBS service.

* + * * @public */ export class ListChangedBlocksCommand extends $Command diff --git a/clients/client-ebs/src/commands/ListSnapshotBlocksCommand.ts b/clients/client-ebs/src/commands/ListSnapshotBlocksCommand.ts index 8d0caa503897a..0b897e5786c9b 100644 --- a/clients/client-ebs/src/commands/ListSnapshotBlocksCommand.ts +++ b/clients/client-ebs/src/commands/ListSnapshotBlocksCommand.ts @@ -96,6 +96,7 @@ export interface ListSnapshotBlocksCommandOutput extends ListSnapshotBlocksRespo * @throws {@link EBSServiceException} *

Base exception class for all service exceptions from EBS service.

* + * * @public */ export class ListSnapshotBlocksCommand extends $Command diff --git a/clients/client-ebs/src/commands/PutSnapshotBlockCommand.ts b/clients/client-ebs/src/commands/PutSnapshotBlockCommand.ts index e566b5db393ea..c575d2734a76f 100644 --- a/clients/client-ebs/src/commands/PutSnapshotBlockCommand.ts +++ b/clients/client-ebs/src/commands/PutSnapshotBlockCommand.ts @@ -97,6 +97,7 @@ export interface PutSnapshotBlockCommandOutput extends PutSnapshotBlockResponse, * @throws {@link EBSServiceException} *

Base exception class for all service exceptions from EBS service.

* + * * @public */ export class PutSnapshotBlockCommand extends $Command diff --git a/clients/client-ebs/src/commands/StartSnapshotCommand.ts b/clients/client-ebs/src/commands/StartSnapshotCommand.ts index 26517fa5bc7a4..0e7a251f7bee0 100644 --- a/clients/client-ebs/src/commands/StartSnapshotCommand.ts +++ b/clients/client-ebs/src/commands/StartSnapshotCommand.ts @@ -124,6 +124,7 @@ export interface StartSnapshotCommandOutput extends StartSnapshotResponse, __Met * @throws {@link EBSServiceException} *

Base exception class for all service exceptions from EBS service.

* + * * @public */ export class StartSnapshotCommand extends $Command diff --git a/clients/client-ec2-instance-connect/src/commands/SendSSHPublicKeyCommand.ts b/clients/client-ec2-instance-connect/src/commands/SendSSHPublicKeyCommand.ts index e7399cb06bfcc..c40d126b6960c 100644 --- a/clients/client-ec2-instance-connect/src/commands/SendSSHPublicKeyCommand.ts +++ b/clients/client-ec2-instance-connect/src/commands/SendSSHPublicKeyCommand.ts @@ -90,27 +90,27 @@ export interface SendSSHPublicKeyCommandOutput extends SendSSHPublicKeyResponse, * @throws {@link EC2InstanceConnectServiceException} *

Base exception class for all service exceptions from EC2InstanceConnect service.

* - * @public + * * @example To push an SSH key to an EC2 instance * ```javascript * // The following example pushes a sample SSH public key to the EC2 instance i-abcd1234 in AZ us-west-2b for use by the instance OS user ec2-user. * const input = { - * "AvailabilityZone": "us-west-2a", - * "InstanceId": "i-abcd1234", - * "InstanceOSUser": "ec2-user", - * "SSHPublicKey": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC3FlHqj2eqCdrGHuA6dRjfZXQ4HX5lXEIRHaNbxEwE5Te7xNF7StwhrDtiV7IdT5fDqbRyGw/szPj3xGkNTVoElCZ2dDFb2qYZ1WLIpZwj/UhO9l2mgfjR56UojjQut5Jvn2KZ1OcyrNO0J83kCaJCV7JoVbXY79FBMUccYNY45zmv9+1FMCfY6i2jdIhwR6+yLk8oubL8lIPyq7X+6b9S0yKCkB7Peml1DvghlybpAIUrC9vofHt6XP4V1i0bImw1IlljQS+DUmULRFSccATDscCX9ajnj7Crhm0HAZC0tBPXpFdHkPwL3yzYo546SCS9LKEwz62ymxxbL9k7h09t" + * AvailabilityZone: "us-west-2a", + * InstanceId: "i-abcd1234", + * InstanceOSUser: "ec2-user", + * SSHPublicKey: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC3FlHqj2eqCdrGHuA6dRjfZXQ4HX5lXEIRHaNbxEwE5Te7xNF7StwhrDtiV7IdT5fDqbRyGw/szPj3xGkNTVoElCZ2dDFb2qYZ1WLIpZwj/UhO9l2mgfjR56UojjQut5Jvn2KZ1OcyrNO0J83kCaJCV7JoVbXY79FBMUccYNY45zmv9+1FMCfY6i2jdIhwR6+yLk8oubL8lIPyq7X+6b9S0yKCkB7Peml1DvghlybpAIUrC9vofHt6XP4V1i0bImw1IlljQS+DUmULRFSccATDscCX9ajnj7Crhm0HAZC0tBPXpFdHkPwL3yzYo546SCS9LKEwz62ymxxbL9k7h09t" * }; * const command = new SendSSHPublicKeyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RequestId": "abcd1234-abcd-1234-abcd-1234abcd1234", - * "Success": true + * RequestId: "abcd1234-abcd-1234-abcd-1234abcd1234", + * Success: true * } * *\/ - * // example id: send-ssh-key-to-an-ec2-instance-1518124883100 * ``` * + * @public */ export class SendSSHPublicKeyCommand extends $Command .classBuilder< diff --git a/clients/client-ec2-instance-connect/src/commands/SendSerialConsoleSSHPublicKeyCommand.ts b/clients/client-ec2-instance-connect/src/commands/SendSerialConsoleSSHPublicKeyCommand.ts index 81f27c6b2e683..8dae143ecf0f7 100644 --- a/clients/client-ec2-instance-connect/src/commands/SendSerialConsoleSSHPublicKeyCommand.ts +++ b/clients/client-ec2-instance-connect/src/commands/SendSerialConsoleSSHPublicKeyCommand.ts @@ -112,6 +112,7 @@ export interface SendSerialConsoleSSHPublicKeyCommandOutput * @throws {@link EC2InstanceConnectServiceException} *

Base exception class for all service exceptions from EC2InstanceConnect service.

* + * * @public */ export class SendSerialConsoleSSHPublicKeyCommand extends $Command diff --git a/clients/client-ec2/src/commands/AcceptAddressTransferCommand.ts b/clients/client-ec2/src/commands/AcceptAddressTransferCommand.ts index 32351de338e27..b5476d257a566 100644 --- a/clients/client-ec2/src/commands/AcceptAddressTransferCommand.ts +++ b/clients/client-ec2/src/commands/AcceptAddressTransferCommand.ts @@ -74,6 +74,7 @@ export interface AcceptAddressTransferCommandOutput extends AcceptAddressTransfe * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AcceptAddressTransferCommand extends $Command diff --git a/clients/client-ec2/src/commands/AcceptCapacityReservationBillingOwnershipCommand.ts b/clients/client-ec2/src/commands/AcceptCapacityReservationBillingOwnershipCommand.ts index 0323ecc31138a..a92f372c0e986 100644 --- a/clients/client-ec2/src/commands/AcceptCapacityReservationBillingOwnershipCommand.ts +++ b/clients/client-ec2/src/commands/AcceptCapacityReservationBillingOwnershipCommand.ts @@ -67,6 +67,7 @@ export interface AcceptCapacityReservationBillingOwnershipCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AcceptCapacityReservationBillingOwnershipCommand extends $Command diff --git a/clients/client-ec2/src/commands/AcceptReservedInstancesExchangeQuoteCommand.ts b/clients/client-ec2/src/commands/AcceptReservedInstancesExchangeQuoteCommand.ts index f4d7145d69a35..4724b930fe35f 100644 --- a/clients/client-ec2/src/commands/AcceptReservedInstancesExchangeQuoteCommand.ts +++ b/clients/client-ec2/src/commands/AcceptReservedInstancesExchangeQuoteCommand.ts @@ -72,6 +72,7 @@ export interface AcceptReservedInstancesExchangeQuoteCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AcceptReservedInstancesExchangeQuoteCommand extends $Command diff --git a/clients/client-ec2/src/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.ts b/clients/client-ec2/src/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.ts index 2c227822cbd27..a81dcebfd393d 100644 --- a/clients/client-ec2/src/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.ts @@ -81,6 +81,7 @@ export interface AcceptTransitGatewayMulticastDomainAssociationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AcceptTransitGatewayMulticastDomainAssociationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/AcceptTransitGatewayPeeringAttachmentCommand.ts b/clients/client-ec2/src/commands/AcceptTransitGatewayPeeringAttachmentCommand.ts index 9c9b9c1e57165..06631b92183de 100644 --- a/clients/client-ec2/src/commands/AcceptTransitGatewayPeeringAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/AcceptTransitGatewayPeeringAttachmentCommand.ts @@ -96,6 +96,7 @@ export interface AcceptTransitGatewayPeeringAttachmentCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AcceptTransitGatewayPeeringAttachmentCommand extends $Command diff --git a/clients/client-ec2/src/commands/AcceptTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/AcceptTransitGatewayVpcAttachmentCommand.ts index 89540b4ef5f76..4f478c6d1bf4d 100644 --- a/clients/client-ec2/src/commands/AcceptTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/AcceptTransitGatewayVpcAttachmentCommand.ts @@ -86,6 +86,7 @@ export interface AcceptTransitGatewayVpcAttachmentCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AcceptTransitGatewayVpcAttachmentCommand extends $Command diff --git a/clients/client-ec2/src/commands/AcceptVpcEndpointConnectionsCommand.ts b/clients/client-ec2/src/commands/AcceptVpcEndpointConnectionsCommand.ts index bdafbdb148943..b5e4aa4d61463 100644 --- a/clients/client-ec2/src/commands/AcceptVpcEndpointConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/AcceptVpcEndpointConnectionsCommand.ts @@ -69,6 +69,7 @@ export interface AcceptVpcEndpointConnectionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AcceptVpcEndpointConnectionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/AcceptVpcPeeringConnectionCommand.ts b/clients/client-ec2/src/commands/AcceptVpcPeeringConnectionCommand.ts index 2cdd1b65ff785..999d402f70802 100644 --- a/clients/client-ec2/src/commands/AcceptVpcPeeringConnectionCommand.ts +++ b/clients/client-ec2/src/commands/AcceptVpcPeeringConnectionCommand.ts @@ -116,6 +116,7 @@ export interface AcceptVpcPeeringConnectionCommandOutput extends AcceptVpcPeerin * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AcceptVpcPeeringConnectionCommand extends $Command diff --git a/clients/client-ec2/src/commands/AdvertiseByoipCidrCommand.ts b/clients/client-ec2/src/commands/AdvertiseByoipCidrCommand.ts index 784bdd2979e61..61ab7118fcdc6 100644 --- a/clients/client-ec2/src/commands/AdvertiseByoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/AdvertiseByoipCidrCommand.ts @@ -82,6 +82,7 @@ export interface AdvertiseByoipCidrCommandOutput extends AdvertiseByoipCidrResul * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AdvertiseByoipCidrCommand extends $Command diff --git a/clients/client-ec2/src/commands/AllocateAddressCommand.ts b/clients/client-ec2/src/commands/AllocateAddressCommand.ts index fb29d068c5639..f6a502ce84387 100644 --- a/clients/client-ec2/src/commands/AllocateAddressCommand.ts +++ b/clients/client-ec2/src/commands/AllocateAddressCommand.ts @@ -90,25 +90,25 @@ export interface AllocateAddressCommandOutput extends AllocateAddressResult, __M * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To allocate an Elastic IP address * ```javascript * // This example allocates an Elastic IP address. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new AllocateAddressCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AllocationId": "eipalloc-64d5890a", - * "Domain": "vpc", - * "NetworkBorderGroup": "us-east-1", - * "PublicIp": "203.0.113.0", - * "PublicIpv4Pool": "amazon" + * AllocationId: "eipalloc-64d5890a", + * Domain: "vpc", + * NetworkBorderGroup: "us-east-1", + * PublicIp: "203.0.113.0", + * PublicIpv4Pool: "amazon" * } * *\/ - * // example id: ec2-allocate-address-1 * ``` * + * @public */ export class AllocateAddressCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/AllocateHostsCommand.ts b/clients/client-ec2/src/commands/AllocateHostsCommand.ts index 37b59af23dcae..999788cf1366f 100644 --- a/clients/client-ec2/src/commands/AllocateHostsCommand.ts +++ b/clients/client-ec2/src/commands/AllocateHostsCommand.ts @@ -81,6 +81,7 @@ export interface AllocateHostsCommandOutput extends AllocateHostsResult, __Metad * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AllocateHostsCommand extends $Command diff --git a/clients/client-ec2/src/commands/AllocateIpamPoolCidrCommand.ts b/clients/client-ec2/src/commands/AllocateIpamPoolCidrCommand.ts index 077c5dbfe5d8b..9374490383b53 100644 --- a/clients/client-ec2/src/commands/AllocateIpamPoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/AllocateIpamPoolCidrCommand.ts @@ -79,6 +79,7 @@ export interface AllocateIpamPoolCidrCommandOutput extends AllocateIpamPoolCidrR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AllocateIpamPoolCidrCommand extends $Command diff --git a/clients/client-ec2/src/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.ts b/clients/client-ec2/src/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.ts index 9826f836dbbbe..a37fff948eb1d 100644 --- a/clients/client-ec2/src/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.ts +++ b/clients/client-ec2/src/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.ts @@ -72,6 +72,7 @@ export interface ApplySecurityGroupsToClientVpnTargetNetworkCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ApplySecurityGroupsToClientVpnTargetNetworkCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssignIpv6AddressesCommand.ts b/clients/client-ec2/src/commands/AssignIpv6AddressesCommand.ts index 1d8b33538faef..9ce1fb67713eb 100644 --- a/clients/client-ec2/src/commands/AssignIpv6AddressesCommand.ts +++ b/clients/client-ec2/src/commands/AssignIpv6AddressesCommand.ts @@ -78,6 +78,7 @@ export interface AssignIpv6AddressesCommandOutput extends AssignIpv6AddressesRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssignIpv6AddressesCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssignPrivateIpAddressesCommand.ts b/clients/client-ec2/src/commands/AssignPrivateIpAddressesCommand.ts index d617ab2ebb785..eecb07ceb1ff6 100644 --- a/clients/client-ec2/src/commands/AssignPrivateIpAddressesCommand.ts +++ b/clients/client-ec2/src/commands/AssignPrivateIpAddressesCommand.ts @@ -88,33 +88,38 @@ export interface AssignPrivateIpAddressesCommandOutput extends AssignPrivateIpAd * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To assign a specific secondary private IP address to an interface * ```javascript * // This example assigns the specified secondary private IP address to the specified network interface. * const input = { - * "NetworkInterfaceId": "eni-e5aa89a3", - * "PrivateIpAddresses": [ + * NetworkInterfaceId: "eni-e5aa89a3", + * PrivateIpAddresses: [ * "10.0.0.82" * ] * }; * const command = new AssignPrivateIpAddressesCommand(input); - * await client.send(command); - * // example id: ec2-assign-private-ip-addresses-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To assign secondary private IP addresses that Amazon EC2 selects to an interface * ```javascript * // This example assigns two secondary private IP addresses to the specified network interface. Amazon EC2 automatically assigns these IP addresses from the available IP addresses in the CIDR block range of the subnet the network interface is associated with. * const input = { - * "NetworkInterfaceId": "eni-e5aa89a3", - * "SecondaryPrivateIpAddressCount": 2 + * NetworkInterfaceId: "eni-e5aa89a3", + * SecondaryPrivateIpAddressCount: 2 * }; * const command = new AssignPrivateIpAddressesCommand(input); - * await client.send(command); - * // example id: ec2-assign-private-ip-addresses-2 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AssignPrivateIpAddressesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/AssignPrivateNatGatewayAddressCommand.ts b/clients/client-ec2/src/commands/AssignPrivateNatGatewayAddressCommand.ts index 897137ee6e161..1f902ad116fce 100644 --- a/clients/client-ec2/src/commands/AssignPrivateNatGatewayAddressCommand.ts +++ b/clients/client-ec2/src/commands/AssignPrivateNatGatewayAddressCommand.ts @@ -78,6 +78,7 @@ export interface AssignPrivateNatGatewayAddressCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssignPrivateNatGatewayAddressCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssociateAddressCommand.ts b/clients/client-ec2/src/commands/AssociateAddressCommand.ts index 4af8ed0080f52..d19e6899763c8 100644 --- a/clients/client-ec2/src/commands/AssociateAddressCommand.ts +++ b/clients/client-ec2/src/commands/AssociateAddressCommand.ts @@ -78,41 +78,40 @@ export interface AssociateAddressCommandOutput extends AssociateAddressResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To associate an Elastic IP address * ```javascript * // This example associates the specified Elastic IP address with the specified instance. * const input = { - * "AllocationId": "eipalloc-64d5890a", - * "InstanceId": "i-0b263919b6498b123" + * AllocationId: "eipalloc-64d5890a", + * InstanceId: "i-0b263919b6498b123" * }; * const command = new AssociateAddressCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AssociationId": "eipassoc-2bebb745" + * AssociationId: "eipassoc-2bebb745" * } * *\/ - * // example id: ec2-associate-address-1 * ``` * * @example To associate an Elastic IP address with a network interface * ```javascript * // This example associates the specified Elastic IP address with the specified network interface. * const input = { - * "AllocationId": "eipalloc-64d5890a", - * "NetworkInterfaceId": "eni-1a2b3c4d" + * AllocationId: "eipalloc-64d5890a", + * NetworkInterfaceId: "eni-1a2b3c4d" * }; * const command = new AssociateAddressCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AssociationId": "eipassoc-2bebb745" + * AssociationId: "eipassoc-2bebb745" * } * *\/ - * // example id: ec2-associate-address-2 * ``` * + * @public */ export class AssociateAddressCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/AssociateCapacityReservationBillingOwnerCommand.ts b/clients/client-ec2/src/commands/AssociateCapacityReservationBillingOwnerCommand.ts index 811aa0cf8610c..42d35f9841267 100644 --- a/clients/client-ec2/src/commands/AssociateCapacityReservationBillingOwnerCommand.ts +++ b/clients/client-ec2/src/commands/AssociateCapacityReservationBillingOwnerCommand.ts @@ -69,6 +69,7 @@ export interface AssociateCapacityReservationBillingOwnerCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssociateCapacityReservationBillingOwnerCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssociateClientVpnTargetNetworkCommand.ts b/clients/client-ec2/src/commands/AssociateClientVpnTargetNetworkCommand.ts index ff7b64505de04..7e2faac22af9a 100644 --- a/clients/client-ec2/src/commands/AssociateClientVpnTargetNetworkCommand.ts +++ b/clients/client-ec2/src/commands/AssociateClientVpnTargetNetworkCommand.ts @@ -68,6 +68,7 @@ export interface AssociateClientVpnTargetNetworkCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssociateClientVpnTargetNetworkCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssociateDhcpOptionsCommand.ts b/clients/client-ec2/src/commands/AssociateDhcpOptionsCommand.ts index 8e3bce33f3c47..4cfcf823e3809 100644 --- a/clients/client-ec2/src/commands/AssociateDhcpOptionsCommand.ts +++ b/clients/client-ec2/src/commands/AssociateDhcpOptionsCommand.ts @@ -58,31 +58,36 @@ export interface AssociateDhcpOptionsCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To associate a DHCP options set with a VPC * ```javascript * // This example associates the specified DHCP options set with the specified VPC. * const input = { - * "DhcpOptionsId": "dopt-d9070ebb", - * "VpcId": "vpc-a01106c2" + * DhcpOptionsId: "dopt-d9070ebb", + * VpcId: "vpc-a01106c2" * }; * const command = new AssociateDhcpOptionsCommand(input); - * await client.send(command); - * // example id: ec2-associate-dhcp-options-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To associate the default DHCP options set with a VPC * ```javascript * // This example associates the default DHCP options set with the specified VPC. * const input = { - * "DhcpOptionsId": "default", - * "VpcId": "vpc-a01106c2" + * DhcpOptionsId: "default", + * VpcId: "vpc-a01106c2" * }; * const command = new AssociateDhcpOptionsCommand(input); - * await client.send(command); - * // example id: ec2-associate-dhcp-options-2 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AssociateDhcpOptionsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/AssociateEnclaveCertificateIamRoleCommand.ts b/clients/client-ec2/src/commands/AssociateEnclaveCertificateIamRoleCommand.ts index 44ac1bc22d187..b8e5fa64487b6 100644 --- a/clients/client-ec2/src/commands/AssociateEnclaveCertificateIamRoleCommand.ts +++ b/clients/client-ec2/src/commands/AssociateEnclaveCertificateIamRoleCommand.ts @@ -79,6 +79,7 @@ export interface AssociateEnclaveCertificateIamRoleCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssociateEnclaveCertificateIamRoleCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssociateIamInstanceProfileCommand.ts b/clients/client-ec2/src/commands/AssociateIamInstanceProfileCommand.ts index 0ff0ba39c8ed6..b67bb36d00a1f 100644 --- a/clients/client-ec2/src/commands/AssociateIamInstanceProfileCommand.ts +++ b/clients/client-ec2/src/commands/AssociateIamInstanceProfileCommand.ts @@ -69,34 +69,34 @@ export interface AssociateIamInstanceProfileCommandOutput extends AssociateIamIn * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To associate an IAM instance profile with an instance * ```javascript * // This example associates an IAM instance profile named admin-role with the specified instance. * const input = { - * "IamInstanceProfile": { - * "Name": "admin-role" + * IamInstanceProfile: { + * Name: "admin-role" * }, - * "InstanceId": "i-123456789abcde123" + * InstanceId: "i-123456789abcde123" * }; * const command = new AssociateIamInstanceProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "IamInstanceProfileAssociation": { - * "AssociationId": "iip-assoc-0e7736511a163c209", - * "IamInstanceProfile": { - * "Arn": "arn:aws:iam::123456789012:instance-profile/admin-role", - * "Id": "AIPAJBLK7RKJKWDXVHIEC" + * IamInstanceProfileAssociation: { + * AssociationId: "iip-assoc-0e7736511a163c209", + * IamInstanceProfile: { + * Arn: "arn:aws:iam::123456789012:instance-profile/admin-role", + * Id: "AIPAJBLK7RKJKWDXVHIEC" * }, - * "InstanceId": "i-123456789abcde123", - * "State": "associating" + * InstanceId: "i-123456789abcde123", + * State: "associating" * } * } * *\/ - * // example id: to-associate-an-iam-instance-profile-with-an-instance-1528928429850 * ``` * + * @public */ export class AssociateIamInstanceProfileCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/AssociateInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/AssociateInstanceEventWindowCommand.ts index 36a907c7ef39a..ddc6e618d4821 100644 --- a/clients/client-ec2/src/commands/AssociateInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/AssociateInstanceEventWindowCommand.ts @@ -108,6 +108,7 @@ export interface AssociateInstanceEventWindowCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssociateInstanceEventWindowCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssociateIpamByoasnCommand.ts b/clients/client-ec2/src/commands/AssociateIpamByoasnCommand.ts index 73fe405a91d97..1699de5069598 100644 --- a/clients/client-ec2/src/commands/AssociateIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/AssociateIpamByoasnCommand.ts @@ -65,6 +65,7 @@ export interface AssociateIpamByoasnCommandOutput extends AssociateIpamByoasnRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssociateIpamByoasnCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssociateIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/AssociateIpamResourceDiscoveryCommand.ts index 3679b2f086f00..1a432d610a7f8 100644 --- a/clients/client-ec2/src/commands/AssociateIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/AssociateIpamResourceDiscoveryCommand.ts @@ -91,6 +91,7 @@ export interface AssociateIpamResourceDiscoveryCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssociateIpamResourceDiscoveryCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssociateNatGatewayAddressCommand.ts b/clients/client-ec2/src/commands/AssociateNatGatewayAddressCommand.ts index fd15cb4caf79a..9f2073af37246 100644 --- a/clients/client-ec2/src/commands/AssociateNatGatewayAddressCommand.ts +++ b/clients/client-ec2/src/commands/AssociateNatGatewayAddressCommand.ts @@ -85,6 +85,7 @@ export interface AssociateNatGatewayAddressCommandOutput extends AssociateNatGat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssociateNatGatewayAddressCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssociateRouteTableCommand.ts b/clients/client-ec2/src/commands/AssociateRouteTableCommand.ts index 8c70f0f41e307..6de6a1fa7589d 100644 --- a/clients/client-ec2/src/commands/AssociateRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/AssociateRouteTableCommand.ts @@ -68,24 +68,24 @@ export interface AssociateRouteTableCommandOutput extends AssociateRouteTableRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To associate a route table with a subnet * ```javascript * // This example associates the specified route table with the specified subnet. * const input = { - * "RouteTableId": "rtb-22574640", - * "SubnetId": "subnet-9d4a7b6" + * RouteTableId: "rtb-22574640", + * SubnetId: "subnet-9d4a7b6" * }; * const command = new AssociateRouteTableCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AssociationId": "rtbassoc-781d0d1a" + * AssociationId: "rtbassoc-781d0d1a" * } * *\/ - * // example id: ec2-associate-route-table-1 * ``` * + * @public */ export class AssociateRouteTableCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/AssociateSecurityGroupVpcCommand.ts b/clients/client-ec2/src/commands/AssociateSecurityGroupVpcCommand.ts index 79114eacf4f0f..b841c997a2e1d 100644 --- a/clients/client-ec2/src/commands/AssociateSecurityGroupVpcCommand.ts +++ b/clients/client-ec2/src/commands/AssociateSecurityGroupVpcCommand.ts @@ -76,6 +76,7 @@ export interface AssociateSecurityGroupVpcCommandOutput extends AssociateSecurit * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssociateSecurityGroupVpcCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssociateSubnetCidrBlockCommand.ts b/clients/client-ec2/src/commands/AssociateSubnetCidrBlockCommand.ts index 1af3e86434cf8..ead105fc96496 100644 --- a/clients/client-ec2/src/commands/AssociateSubnetCidrBlockCommand.ts +++ b/clients/client-ec2/src/commands/AssociateSubnetCidrBlockCommand.ts @@ -69,6 +69,7 @@ export interface AssociateSubnetCidrBlockCommandOutput extends AssociateSubnetCi * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssociateSubnetCidrBlockCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssociateTransitGatewayMulticastDomainCommand.ts b/clients/client-ec2/src/commands/AssociateTransitGatewayMulticastDomainCommand.ts index 459e2927b9b9a..2bf1c6f4db429 100644 --- a/clients/client-ec2/src/commands/AssociateTransitGatewayMulticastDomainCommand.ts +++ b/clients/client-ec2/src/commands/AssociateTransitGatewayMulticastDomainCommand.ts @@ -83,6 +83,7 @@ export interface AssociateTransitGatewayMulticastDomainCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssociateTransitGatewayMulticastDomainCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssociateTransitGatewayPolicyTableCommand.ts b/clients/client-ec2/src/commands/AssociateTransitGatewayPolicyTableCommand.ts index 3c5660d424f77..b9390df787a84 100644 --- a/clients/client-ec2/src/commands/AssociateTransitGatewayPolicyTableCommand.ts +++ b/clients/client-ec2/src/commands/AssociateTransitGatewayPolicyTableCommand.ts @@ -71,6 +71,7 @@ export interface AssociateTransitGatewayPolicyTableCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssociateTransitGatewayPolicyTableCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssociateTransitGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/AssociateTransitGatewayRouteTableCommand.ts index 27d383fa72225..d8fd679dffbfd 100644 --- a/clients/client-ec2/src/commands/AssociateTransitGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/AssociateTransitGatewayRouteTableCommand.ts @@ -69,6 +69,7 @@ export interface AssociateTransitGatewayRouteTableCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssociateTransitGatewayRouteTableCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssociateTrunkInterfaceCommand.ts b/clients/client-ec2/src/commands/AssociateTrunkInterfaceCommand.ts index e5cfd7e571aa3..0e73605a6a291 100644 --- a/clients/client-ec2/src/commands/AssociateTrunkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/AssociateTrunkInterfaceCommand.ts @@ -78,6 +78,7 @@ export interface AssociateTrunkInterfaceCommandOutput extends AssociateTrunkInte * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssociateTrunkInterfaceCommand extends $Command diff --git a/clients/client-ec2/src/commands/AssociateVpcCidrBlockCommand.ts b/clients/client-ec2/src/commands/AssociateVpcCidrBlockCommand.ts index da54103268fa1..ca05f094c6e62 100644 --- a/clients/client-ec2/src/commands/AssociateVpcCidrBlockCommand.ts +++ b/clients/client-ec2/src/commands/AssociateVpcCidrBlockCommand.ts @@ -91,6 +91,7 @@ export interface AssociateVpcCidrBlockCommandOutput extends AssociateVpcCidrBloc * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AssociateVpcCidrBlockCommand extends $Command diff --git a/clients/client-ec2/src/commands/AttachClassicLinkVpcCommand.ts b/clients/client-ec2/src/commands/AttachClassicLinkVpcCommand.ts index 93037afbd1a1d..142db42af4214 100644 --- a/clients/client-ec2/src/commands/AttachClassicLinkVpcCommand.ts +++ b/clients/client-ec2/src/commands/AttachClassicLinkVpcCommand.ts @@ -69,6 +69,7 @@ export interface AttachClassicLinkVpcCommandOutput extends AttachClassicLinkVpcR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AttachClassicLinkVpcCommand extends $Command diff --git a/clients/client-ec2/src/commands/AttachInternetGatewayCommand.ts b/clients/client-ec2/src/commands/AttachInternetGatewayCommand.ts index b3ffe77c257a7..ac254da1a16a0 100644 --- a/clients/client-ec2/src/commands/AttachInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/AttachInternetGatewayCommand.ts @@ -57,19 +57,22 @@ export interface AttachInternetGatewayCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To attach an Internet gateway to a VPC * ```javascript * // This example attaches the specified Internet gateway to the specified VPC. * const input = { - * "InternetGatewayId": "igw-c0a643a9", - * "VpcId": "vpc-a01106c2" + * InternetGatewayId: "igw-c0a643a9", + * VpcId: "vpc-a01106c2" * }; * const command = new AttachInternetGatewayCommand(input); - * await client.send(command); - * // example id: ec2-attach-internet-gateway-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AttachInternetGatewayCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/AttachNetworkInterfaceCommand.ts b/clients/client-ec2/src/commands/AttachNetworkInterfaceCommand.ts index 322c916ed1f1b..76b30ef1876d4 100644 --- a/clients/client-ec2/src/commands/AttachNetworkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/AttachNetworkInterfaceCommand.ts @@ -66,25 +66,25 @@ export interface AttachNetworkInterfaceCommandOutput extends AttachNetworkInterf * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To attach a network interface to an instance * ```javascript * // This example attaches the specified network interface to the specified instance. * const input = { - * "DeviceIndex": 1, - * "InstanceId": "i-1234567890abcdef0", - * "NetworkInterfaceId": "eni-e5aa89a3" + * DeviceIndex: 1, + * InstanceId: "i-1234567890abcdef0", + * NetworkInterfaceId: "eni-e5aa89a3" * }; * const command = new AttachNetworkInterfaceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AttachmentId": "eni-attach-66c4350a" + * AttachmentId: "eni-attach-66c4350a" * } * *\/ - * // example id: ec2-attach-network-interface-1 * ``` * + * @public */ export class AttachNetworkInterfaceCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/AttachVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/AttachVerifiedAccessTrustProviderCommand.ts index 6ca07b017c660..e45880f7a20e1 100644 --- a/clients/client-ec2/src/commands/AttachVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/AttachVerifiedAccessTrustProviderCommand.ts @@ -136,6 +136,7 @@ export interface AttachVerifiedAccessTrustProviderCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AttachVerifiedAccessTrustProviderCommand extends $Command diff --git a/clients/client-ec2/src/commands/AttachVolumeCommand.ts b/clients/client-ec2/src/commands/AttachVolumeCommand.ts index 82f2c75ecfadf..67b1e5e2f4dcd 100644 --- a/clients/client-ec2/src/commands/AttachVolumeCommand.ts +++ b/clients/client-ec2/src/commands/AttachVolumeCommand.ts @@ -89,29 +89,29 @@ export interface AttachVolumeCommandOutput extends VolumeAttachment, __MetadataB * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To attach a volume to an instance * ```javascript * // This example attaches a volume (``vol-1234567890abcdef0``) to an instance (``i-01474ef662b89480``) as ``/dev/sdf``. * const input = { - * "Device": "/dev/sdf", - * "InstanceId": "i-01474ef662b89480", - * "VolumeId": "vol-1234567890abcdef0" + * Device: "/dev/sdf", + * InstanceId: "i-01474ef662b89480", + * VolumeId: "vol-1234567890abcdef0" * }; * const command = new AttachVolumeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AttachTime": "2016-08-29T18:52:32.724Z", - * "Device": "/dev/sdf", - * "InstanceId": "i-01474ef662b89480", - * "State": "attaching", - * "VolumeId": "vol-1234567890abcdef0" + * AttachTime: "2016-08-29T18:52:32.724Z", + * Device: "/dev/sdf", + * InstanceId: "i-01474ef662b89480", + * State: "attaching", + * VolumeId: "vol-1234567890abcdef0" * } * *\/ - * // example id: to-attach-a-volume-to-an-instance-1472499213109 * ``` * + * @public */ export class AttachVolumeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/AttachVpnGatewayCommand.ts b/clients/client-ec2/src/commands/AttachVpnGatewayCommand.ts index e29e5ea415945..319f8377fbbc1 100644 --- a/clients/client-ec2/src/commands/AttachVpnGatewayCommand.ts +++ b/clients/client-ec2/src/commands/AttachVpnGatewayCommand.ts @@ -63,6 +63,7 @@ export interface AttachVpnGatewayCommandOutput extends AttachVpnGatewayResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AttachVpnGatewayCommand extends $Command diff --git a/clients/client-ec2/src/commands/AuthorizeClientVpnIngressCommand.ts b/clients/client-ec2/src/commands/AuthorizeClientVpnIngressCommand.ts index 2bcffa106cc8e..e6814a3b6eb89 100644 --- a/clients/client-ec2/src/commands/AuthorizeClientVpnIngressCommand.ts +++ b/clients/client-ec2/src/commands/AuthorizeClientVpnIngressCommand.ts @@ -66,6 +66,7 @@ export interface AuthorizeClientVpnIngressCommandOutput extends AuthorizeClientV * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class AuthorizeClientVpnIngressCommand extends $Command diff --git a/clients/client-ec2/src/commands/AuthorizeSecurityGroupEgressCommand.ts b/clients/client-ec2/src/commands/AuthorizeSecurityGroupEgressCommand.ts index 9f35e375df17c..6e02efedf1451 100644 --- a/clients/client-ec2/src/commands/AuthorizeSecurityGroupEgressCommand.ts +++ b/clients/client-ec2/src/commands/AuthorizeSecurityGroupEgressCommand.ts @@ -152,53 +152,58 @@ export interface AuthorizeSecurityGroupEgressCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To add a rule that allows outbound traffic to a specific address range * ```javascript * // This example adds a rule that grants access to the specified address ranges on TCP port 80. * const input = { - * "GroupId": "sg-1a2b3c4d", - * "IpPermissions": [ + * GroupId: "sg-1a2b3c4d", + * IpPermissions: [ * { - * "FromPort": 80, - * "IpProtocol": "tcp", - * "IpRanges": [ + * FromPort: 80, + * IpProtocol: "tcp", + * IpRanges: [ * { - * "CidrIp": "10.0.0.0/16" + * CidrIp: "10.0.0.0/16" * } * ], - * "ToPort": 80 + * ToPort: 80 * } * ] * }; * const command = new AuthorizeSecurityGroupEgressCommand(input); - * await client.send(command); - * // example id: to-add-a-rule-that-allows-outbound-traffic-to-a-specific-address-range-1528929309636 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * * @example To add a rule that allows outbound traffic to a specific security group * ```javascript * // This example adds a rule that grants access to the specified security group on TCP port 80. * const input = { - * "GroupId": "sg-1a2b3c4d", - * "IpPermissions": [ + * GroupId: "sg-1a2b3c4d", + * IpPermissions: [ * { - * "FromPort": 80, - * "IpProtocol": "tcp", - * "ToPort": 80, - * "UserIdGroupPairs": [ + * FromPort: 80, + * IpProtocol: "tcp", + * ToPort: 80, + * UserIdGroupPairs: [ * { - * "GroupId": "sg-4b51a32f" + * GroupId: "sg-4b51a32f" * } * ] * } * ] * }; * const command = new AuthorizeSecurityGroupEgressCommand(input); - * await client.send(command); - * // example id: to-add-a-rule-that-allows-outbound-traffic-to-a-specific-security-group-1528929760260 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class AuthorizeSecurityGroupEgressCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/AuthorizeSecurityGroupIngressCommand.ts b/clients/client-ec2/src/commands/AuthorizeSecurityGroupIngressCommand.ts index 7085956921fe2..4e64292f1e4fb 100644 --- a/clients/client-ec2/src/commands/AuthorizeSecurityGroupIngressCommand.ts +++ b/clients/client-ec2/src/commands/AuthorizeSecurityGroupIngressCommand.ts @@ -153,79 +153,86 @@ export interface AuthorizeSecurityGroupIngressCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public - * @example To add a rule that allows inbound SSH traffic from an IPv4 address range + * + * @example To add a rule that allows inbound HTTP traffic from another security group * ```javascript - * // This example enables inbound traffic on TCP port 22 (SSH). The rule includes a description to help you identify it later. + * // This example enables inbound traffic on TCP port 80 from the specified security group. The group must be in the same VPC or a peer VPC. Incoming traffic is allowed based on the private IP addresses of instances that are associated with the specified security group. * const input = { - * "GroupId": "sg-903004f8", - * "IpPermissions": [ + * GroupId: "sg-111aaa22", + * IpPermissions: [ * { - * "FromPort": 22, - * "IpProtocol": "tcp", - * "IpRanges": [ + * FromPort: 80, + * IpProtocol: "tcp", + * ToPort: 80, + * UserIdGroupPairs: [ * { - * "CidrIp": "203.0.113.0/24", - * "Description": "SSH access from the LA office" + * Description: "HTTP access from other instances", + * GroupId: "sg-1a2b3c4d" * } - * ], - * "ToPort": 22 + * ] * } * ] * }; * const command = new AuthorizeSecurityGroupIngressCommand(input); - * await client.send(command); - * // example id: to-add-a-rule-that-allows-inbound-ssh-traffic-1529011610328 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * - * @example To add a rule that allows inbound HTTP traffic from another security group + * @example To add a rule that allows inbound SSH traffic from an IPv4 address range * ```javascript - * // This example enables inbound traffic on TCP port 80 from the specified security group. The group must be in the same VPC or a peer VPC. Incoming traffic is allowed based on the private IP addresses of instances that are associated with the specified security group. + * // This example enables inbound traffic on TCP port 22 (SSH). The rule includes a description to help you identify it later. * const input = { - * "GroupId": "sg-111aaa22", - * "IpPermissions": [ + * GroupId: "sg-903004f8", + * IpPermissions: [ * { - * "FromPort": 80, - * "IpProtocol": "tcp", - * "ToPort": 80, - * "UserIdGroupPairs": [ + * FromPort: 22, + * IpProtocol: "tcp", + * IpRanges: [ * { - * "Description": "HTTP access from other instances", - * "GroupId": "sg-1a2b3c4d" + * CidrIp: "203.0.113.0/24", + * Description: "SSH access from the LA office" * } - * ] + * ], + * ToPort: 22 * } * ] * }; * const command = new AuthorizeSecurityGroupIngressCommand(input); - * await client.send(command); - * // example id: to-add-a-rule-that-allows-inbound-http-traffic-from-another-security-group-1529012163168 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * * @example To add a rule that allows inbound RDP traffic from an IPv6 address range * ```javascript * // This example adds an inbound rule that allows RDP traffic from the specified IPv6 address range. The rule includes a description to help you identify it later. * const input = { - * "GroupId": "sg-123abc12 ", - * "IpPermissions": [ + * GroupId: "sg-123abc12 ", + * IpPermissions: [ * { - * "FromPort": 3389, - * "IpProtocol": "tcp", - * "Ipv6Ranges": [ + * FromPort: 3389, + * IpProtocol: "tcp", + * Ipv6Ranges: [ * { - * "CidrIpv6": "2001:db8:1234:1a00::/64", - * "Description": "RDP access from the NY office" + * CidrIpv6: "2001:db8:1234:1a00::/64", + * Description: "RDP access from the NY office" * } * ], - * "ToPort": 3389 + * ToPort: 3389 * } * ] * }; * const command = new AuthorizeSecurityGroupIngressCommand(input); - * await client.send(command); - * // example id: to-add-a-rule-with-a-description-1529012418116 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class AuthorizeSecurityGroupIngressCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/BundleInstanceCommand.ts b/clients/client-ec2/src/commands/BundleInstanceCommand.ts index c640470342f00..bdec93762ddfa 100644 --- a/clients/client-ec2/src/commands/BundleInstanceCommand.ts +++ b/clients/client-ec2/src/commands/BundleInstanceCommand.ts @@ -96,6 +96,7 @@ export interface BundleInstanceCommandOutput extends BundleInstanceResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class BundleInstanceCommand extends $Command diff --git a/clients/client-ec2/src/commands/CancelBundleTaskCommand.ts b/clients/client-ec2/src/commands/CancelBundleTaskCommand.ts index fd11e901d9a13..807b01ebf14d2 100644 --- a/clients/client-ec2/src/commands/CancelBundleTaskCommand.ts +++ b/clients/client-ec2/src/commands/CancelBundleTaskCommand.ts @@ -80,6 +80,7 @@ export interface CancelBundleTaskCommandOutput extends CancelBundleTaskResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CancelBundleTaskCommand extends $Command diff --git a/clients/client-ec2/src/commands/CancelCapacityReservationCommand.ts b/clients/client-ec2/src/commands/CancelCapacityReservationCommand.ts index 28776c826a354..14ae22050c0c3 100644 --- a/clients/client-ec2/src/commands/CancelCapacityReservationCommand.ts +++ b/clients/client-ec2/src/commands/CancelCapacityReservationCommand.ts @@ -79,6 +79,7 @@ export interface CancelCapacityReservationCommandOutput extends CancelCapacityRe * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CancelCapacityReservationCommand extends $Command diff --git a/clients/client-ec2/src/commands/CancelCapacityReservationFleetsCommand.ts b/clients/client-ec2/src/commands/CancelCapacityReservationFleetsCommand.ts index fa7b904973a59..e25b43d9d3194 100644 --- a/clients/client-ec2/src/commands/CancelCapacityReservationFleetsCommand.ts +++ b/clients/client-ec2/src/commands/CancelCapacityReservationFleetsCommand.ts @@ -93,6 +93,7 @@ export interface CancelCapacityReservationFleetsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CancelCapacityReservationFleetsCommand extends $Command diff --git a/clients/client-ec2/src/commands/CancelConversionTaskCommand.ts b/clients/client-ec2/src/commands/CancelConversionTaskCommand.ts index eaddc908c8948..b84f4ed077307 100644 --- a/clients/client-ec2/src/commands/CancelConversionTaskCommand.ts +++ b/clients/client-ec2/src/commands/CancelConversionTaskCommand.ts @@ -57,6 +57,7 @@ export interface CancelConversionTaskCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CancelConversionTaskCommand extends $Command diff --git a/clients/client-ec2/src/commands/CancelDeclarativePoliciesReportCommand.ts b/clients/client-ec2/src/commands/CancelDeclarativePoliciesReportCommand.ts index b3bbc829117ed..5cc90956305aa 100644 --- a/clients/client-ec2/src/commands/CancelDeclarativePoliciesReportCommand.ts +++ b/clients/client-ec2/src/commands/CancelDeclarativePoliciesReportCommand.ts @@ -66,6 +66,7 @@ export interface CancelDeclarativePoliciesReportCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CancelDeclarativePoliciesReportCommand extends $Command diff --git a/clients/client-ec2/src/commands/CancelExportTaskCommand.ts b/clients/client-ec2/src/commands/CancelExportTaskCommand.ts index cb6e9281ed127..d0b9be4098268 100644 --- a/clients/client-ec2/src/commands/CancelExportTaskCommand.ts +++ b/clients/client-ec2/src/commands/CancelExportTaskCommand.ts @@ -55,6 +55,7 @@ export interface CancelExportTaskCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CancelExportTaskCommand extends $Command diff --git a/clients/client-ec2/src/commands/CancelImageLaunchPermissionCommand.ts b/clients/client-ec2/src/commands/CancelImageLaunchPermissionCommand.ts index c8bda69dccc87..3315d9e1de252 100644 --- a/clients/client-ec2/src/commands/CancelImageLaunchPermissionCommand.ts +++ b/clients/client-ec2/src/commands/CancelImageLaunchPermissionCommand.ts @@ -58,6 +58,7 @@ export interface CancelImageLaunchPermissionCommandOutput extends CancelImageLau * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CancelImageLaunchPermissionCommand extends $Command diff --git a/clients/client-ec2/src/commands/CancelImportTaskCommand.ts b/clients/client-ec2/src/commands/CancelImportTaskCommand.ts index be2e40850cbfd..52dc66ffe5c71 100644 --- a/clients/client-ec2/src/commands/CancelImportTaskCommand.ts +++ b/clients/client-ec2/src/commands/CancelImportTaskCommand.ts @@ -59,6 +59,7 @@ export interface CancelImportTaskCommandOutput extends CancelImportTaskResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CancelImportTaskCommand extends $Command diff --git a/clients/client-ec2/src/commands/CancelReservedInstancesListingCommand.ts b/clients/client-ec2/src/commands/CancelReservedInstancesListingCommand.ts index cc31acd6acc40..6d52d069d9d46 100644 --- a/clients/client-ec2/src/commands/CancelReservedInstancesListingCommand.ts +++ b/clients/client-ec2/src/commands/CancelReservedInstancesListingCommand.ts @@ -92,6 +92,7 @@ export interface CancelReservedInstancesListingCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CancelReservedInstancesListingCommand extends $Command diff --git a/clients/client-ec2/src/commands/CancelSpotFleetRequestsCommand.ts b/clients/client-ec2/src/commands/CancelSpotFleetRequestsCommand.ts index 218137ace2ac2..c78a9c58f94b9 100644 --- a/clients/client-ec2/src/commands/CancelSpotFleetRequestsCommand.ts +++ b/clients/client-ec2/src/commands/CancelSpotFleetRequestsCommand.ts @@ -89,57 +89,56 @@ export interface CancelSpotFleetRequestsCommandOutput extends CancelSpotFleetReq * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To cancel a Spot fleet request * ```javascript * // This example cancels the specified Spot fleet request and terminates its associated Spot Instances. * const input = { - * "SpotFleetRequestIds": [ + * SpotFleetRequestIds: [ * "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" * ], - * "TerminateInstances": true + * TerminateInstances: true * }; * const command = new CancelSpotFleetRequestsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SuccessfulFleetRequests": [ + * SuccessfulFleetRequests: [ * { - * "CurrentSpotFleetRequestState": "cancelled_running", - * "PreviousSpotFleetRequestState": "active", - * "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" + * CurrentSpotFleetRequestState: "cancelled_running", + * PreviousSpotFleetRequestState: "active", + * SpotFleetRequestId: "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" * } * ] * } * *\/ - * // example id: ec2-cancel-spot-fleet-requests-1 * ``` * * @example To cancel a Spot fleet request without terminating its Spot Instances * ```javascript * // This example cancels the specified Spot fleet request without terminating its associated Spot Instances. * const input = { - * "SpotFleetRequestIds": [ + * SpotFleetRequestIds: [ * "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" * ], - * "TerminateInstances": false + * TerminateInstances: false * }; * const command = new CancelSpotFleetRequestsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SuccessfulFleetRequests": [ + * SuccessfulFleetRequests: [ * { - * "CurrentSpotFleetRequestState": "cancelled_terminating", - * "PreviousSpotFleetRequestState": "active", - * "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" + * CurrentSpotFleetRequestState: "cancelled_terminating", + * PreviousSpotFleetRequestState: "active", + * SpotFleetRequestId: "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" * } * ] * } * *\/ - * // example id: ec2-cancel-spot-fleet-requests-2 * ``` * + * @public */ export class CancelSpotFleetRequestsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CancelSpotInstanceRequestsCommand.ts b/clients/client-ec2/src/commands/CancelSpotInstanceRequestsCommand.ts index d2b5a523cbb58..234eb63e8a019 100644 --- a/clients/client-ec2/src/commands/CancelSpotInstanceRequestsCommand.ts +++ b/clients/client-ec2/src/commands/CancelSpotInstanceRequestsCommand.ts @@ -67,30 +67,30 @@ export interface CancelSpotInstanceRequestsCommandOutput extends CancelSpotInsta * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To cancel Spot Instance requests * ```javascript * // This example cancels a Spot Instance request. * const input = { - * "SpotInstanceRequestIds": [ + * SpotInstanceRequestIds: [ * "sir-08b93456" * ] * }; * const command = new CancelSpotInstanceRequestsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CancelledSpotInstanceRequests": [ + * CancelledSpotInstanceRequests: [ * { - * "SpotInstanceRequestId": "sir-08b93456", - * "State": "cancelled" + * SpotInstanceRequestId: "sir-08b93456", + * State: "cancelled" * } * ] * } * *\/ - * // example id: ec2-cancel-spot-instance-requests-1 * ``` * + * @public */ export class CancelSpotInstanceRequestsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ConfirmProductInstanceCommand.ts b/clients/client-ec2/src/commands/ConfirmProductInstanceCommand.ts index 3f4834bc0781a..8bbcedaaf82ed 100644 --- a/clients/client-ec2/src/commands/ConfirmProductInstanceCommand.ts +++ b/clients/client-ec2/src/commands/ConfirmProductInstanceCommand.ts @@ -60,24 +60,24 @@ export interface ConfirmProductInstanceCommandOutput extends ConfirmProductInsta * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To confirm the product instance * ```javascript * // This example determines whether the specified product code is associated with the specified instance. * const input = { - * "InstanceId": "i-1234567890abcdef0", - * "ProductCode": "774F4FF8" + * InstanceId: "i-1234567890abcdef0", + * ProductCode: "774F4FF8" * }; * const command = new ConfirmProductInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OwnerId": "123456789012" + * OwnerId: "123456789012" * } * *\/ - * // example id: to-confirm-the-product-instance-1472712108494 * ``` * + * @public */ export class ConfirmProductInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CopyFpgaImageCommand.ts b/clients/client-ec2/src/commands/CopyFpgaImageCommand.ts index 47f03c5068471..19c251199300e 100644 --- a/clients/client-ec2/src/commands/CopyFpgaImageCommand.ts +++ b/clients/client-ec2/src/commands/CopyFpgaImageCommand.ts @@ -60,6 +60,7 @@ export interface CopyFpgaImageCommandOutput extends CopyFpgaImageResult, __Metad * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CopyFpgaImageCommand extends $Command diff --git a/clients/client-ec2/src/commands/CopyImageCommand.ts b/clients/client-ec2/src/commands/CopyImageCommand.ts index 580da9f96c02b..aa925dfd4f2b2 100644 --- a/clients/client-ec2/src/commands/CopyImageCommand.ts +++ b/clients/client-ec2/src/commands/CopyImageCommand.ts @@ -86,26 +86,26 @@ export interface CopyImageCommandOutput extends CopyImageResult, __MetadataBeare * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To copy an AMI to another region * ```javascript * // This example copies the specified AMI from the us-east-1 region to the current region. * const input = { - * "Description": "", - * "Name": "My server", - * "SourceImageId": "ami-5731123e", - * "SourceRegion": "us-east-1" + * Description: "", + * Name: "My server", + * SourceImageId: "ami-5731123e", + * SourceRegion: "us-east-1" * }; * const command = new CopyImageCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ImageId": "ami-438bea42" + * ImageId: "ami-438bea42" * } * *\/ - * // example id: to-copy-an-ami-to-another-region-1529022820832 * ``` * + * @public */ export class CopyImageCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CopySnapshotCommand.ts b/clients/client-ec2/src/commands/CopySnapshotCommand.ts index 6daa40599f11f..b25cfdfe8afb9 100644 --- a/clients/client-ec2/src/commands/CopySnapshotCommand.ts +++ b/clients/client-ec2/src/commands/CopySnapshotCommand.ts @@ -100,26 +100,26 @@ export interface CopySnapshotCommandOutput extends CopySnapshotResult, __Metadat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To copy a snapshot * ```javascript * // This example copies a snapshot with the snapshot ID of ``snap-066877671789bd71b`` from the ``us-west-2`` region to the ``us-east-1`` region and adds a short description to identify the snapshot. * const input = { - * "Description": "This is my copied snapshot.", - * "DestinationRegion": "us-east-1", - * "SourceRegion": "us-west-2", - * "SourceSnapshotId": "snap-066877671789bd71b" + * Description: "This is my copied snapshot.", + * DestinationRegion: "us-east-1", + * SourceRegion: "us-west-2", + * SourceSnapshotId: "snap-066877671789bd71b" * }; * const command = new CopySnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SnapshotId": "snap-066877671789bd71b" + * SnapshotId: "snap-066877671789bd71b" * } * *\/ - * // example id: to-copy-a-snapshot-1472502259774 * ``` * + * @public */ export class CopySnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateCapacityReservationBySplittingCommand.ts b/clients/client-ec2/src/commands/CreateCapacityReservationBySplittingCommand.ts index b3cfa0ab66050..e059f23978870 100644 --- a/clients/client-ec2/src/commands/CreateCapacityReservationBySplittingCommand.ts +++ b/clients/client-ec2/src/commands/CreateCapacityReservationBySplittingCommand.ts @@ -164,6 +164,7 @@ export interface CreateCapacityReservationBySplittingCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateCapacityReservationBySplittingCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts b/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts index 459732df13c52..6320ae8622206 100644 --- a/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts +++ b/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts @@ -145,6 +145,7 @@ export interface CreateCapacityReservationCommandOutput extends CreateCapacityRe * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateCapacityReservationCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts b/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts index 603d0c034ce12..ee3227590567f 100644 --- a/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts +++ b/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts @@ -119,6 +119,7 @@ export interface CreateCapacityReservationFleetCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateCapacityReservationFleetCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateCarrierGatewayCommand.ts b/clients/client-ec2/src/commands/CreateCarrierGatewayCommand.ts index ae9767255df44..3acb639c92c92 100644 --- a/clients/client-ec2/src/commands/CreateCarrierGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateCarrierGatewayCommand.ts @@ -79,6 +79,7 @@ export interface CreateCarrierGatewayCommandOutput extends CreateCarrierGatewayR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateCarrierGatewayCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateClientVpnEndpointCommand.ts b/clients/client-ec2/src/commands/CreateClientVpnEndpointCommand.ts index 91778428505eb..923763bb97810 100644 --- a/clients/client-ec2/src/commands/CreateClientVpnEndpointCommand.ts +++ b/clients/client-ec2/src/commands/CreateClientVpnEndpointCommand.ts @@ -118,6 +118,7 @@ export interface CreateClientVpnEndpointCommandOutput extends CreateClientVpnEnd * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateClientVpnEndpointCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateClientVpnRouteCommand.ts b/clients/client-ec2/src/commands/CreateClientVpnRouteCommand.ts index f36ad8d52ef0e..718e299a6cd6e 100644 --- a/clients/client-ec2/src/commands/CreateClientVpnRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateClientVpnRouteCommand.ts @@ -64,6 +64,7 @@ export interface CreateClientVpnRouteCommandOutput extends CreateClientVpnRouteR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateClientVpnRouteCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateCoipCidrCommand.ts b/clients/client-ec2/src/commands/CreateCoipCidrCommand.ts index 99875d64c84ef..071207cbdf4ff 100644 --- a/clients/client-ec2/src/commands/CreateCoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/CreateCoipCidrCommand.ts @@ -63,6 +63,7 @@ export interface CreateCoipCidrCommandOutput extends CreateCoipCidrResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateCoipCidrCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateCoipPoolCommand.ts b/clients/client-ec2/src/commands/CreateCoipPoolCommand.ts index 0409c4cd4d2ae..d0f6ea31cc0e3 100644 --- a/clients/client-ec2/src/commands/CreateCoipPoolCommand.ts +++ b/clients/client-ec2/src/commands/CreateCoipPoolCommand.ts @@ -80,6 +80,7 @@ export interface CreateCoipPoolCommandOutput extends CreateCoipPoolResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateCoipPoolCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateCustomerGatewayCommand.ts b/clients/client-ec2/src/commands/CreateCustomerGatewayCommand.ts index cc31a0c1f562a..c5ff3caa63734 100644 --- a/clients/client-ec2/src/commands/CreateCustomerGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateCustomerGatewayCommand.ts @@ -101,31 +101,31 @@ export interface CreateCustomerGatewayCommandOutput extends CreateCustomerGatewa * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a customer gateway * ```javascript * // This example creates a customer gateway with the specified IP address for its outside interface. * const input = { - * "BgpAsn": 65534, - * "PublicIp": "12.1.2.3", - * "Type": "ipsec.1" + * BgpAsn: 65534, + * PublicIp: "12.1.2.3", + * Type: "ipsec.1" * }; * const command = new CreateCustomerGatewayCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CustomerGateway": { - * "BgpAsn": "65534", - * "CustomerGatewayId": "cgw-0e11f167", - * "IpAddress": "12.1.2.3", - * "State": "available", - * "Type": "ipsec.1" + * CustomerGateway: { + * BgpAsn: "65534", + * CustomerGatewayId: "cgw-0e11f167", + * IpAddress: "12.1.2.3", + * State: "available", + * Type: "ipsec.1" * } * } * *\/ - * // example id: ec2-create-customer-gateway-1 * ``` * + * @public */ export class CreateCustomerGatewayCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateDefaultSubnetCommand.ts b/clients/client-ec2/src/commands/CreateDefaultSubnetCommand.ts index caa7a9b167ac7..006864ac80389 100644 --- a/clients/client-ec2/src/commands/CreateDefaultSubnetCommand.ts +++ b/clients/client-ec2/src/commands/CreateDefaultSubnetCommand.ts @@ -105,6 +105,7 @@ export interface CreateDefaultSubnetCommandOutput extends CreateDefaultSubnetRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateDefaultSubnetCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateDefaultVpcCommand.ts b/clients/client-ec2/src/commands/CreateDefaultVpcCommand.ts index 99c3e599a4822..52e4d5177a67d 100644 --- a/clients/client-ec2/src/commands/CreateDefaultVpcCommand.ts +++ b/clients/client-ec2/src/commands/CreateDefaultVpcCommand.ts @@ -137,6 +137,7 @@ export interface CreateDefaultVpcCommandOutput extends CreateDefaultVpcResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateDefaultVpcCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateDhcpOptionsCommand.ts b/clients/client-ec2/src/commands/CreateDhcpOptionsCommand.ts index d4aedf1b8ae50..072b97bc3c6f7 100644 --- a/clients/client-ec2/src/commands/CreateDhcpOptionsCommand.ts +++ b/clients/client-ec2/src/commands/CreateDhcpOptionsCommand.ts @@ -142,15 +142,15 @@ export interface CreateDhcpOptionsCommandOutput extends CreateDhcpOptionsResult, * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a DHCP options set * ```javascript * // This example creates a DHCP options set. * const input = { - * "DhcpConfigurations": [ + * DhcpConfigurations: [ * { - * "Key": "domain-name-servers", - * "Values": [ + * Key: "domain-name-servers", + * Values: [ * "10.2.5.1", * "10.2.5.2" * ] @@ -159,29 +159,29 @@ export interface CreateDhcpOptionsCommandOutput extends CreateDhcpOptionsResult, * }; * const command = new CreateDhcpOptionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DhcpOptions": { - * "DhcpConfigurations": [ + * DhcpOptions: { + * DhcpConfigurations: [ * { - * "Key": "domain-name-servers", - * "Values": [ + * Key: "domain-name-servers", + * Values: [ * { - * "Value": "10.2.5.2" + * Value: "10.2.5.2" * }, * { - * "Value": "10.2.5.1" + * Value: "10.2.5.1" * } * ] * } * ], - * "DhcpOptionsId": "dopt-d9070ebb" + * DhcpOptionsId: "dopt-d9070ebb" * } * } * *\/ - * // example id: ec2-create-dhcp-options-1 * ``` * + * @public */ export class CreateDhcpOptionsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateEgressOnlyInternetGatewayCommand.ts b/clients/client-ec2/src/commands/CreateEgressOnlyInternetGatewayCommand.ts index 066c73faa8d99..48dc604b9c34b 100644 --- a/clients/client-ec2/src/commands/CreateEgressOnlyInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateEgressOnlyInternetGatewayCommand.ts @@ -91,6 +91,7 @@ export interface CreateEgressOnlyInternetGatewayCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateEgressOnlyInternetGatewayCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateFleetCommand.ts b/clients/client-ec2/src/commands/CreateFleetCommand.ts index 040e33a5a3002..b1445ee244355 100644 --- a/clients/client-ec2/src/commands/CreateFleetCommand.ts +++ b/clients/client-ec2/src/commands/CreateFleetCommand.ts @@ -481,6 +481,7 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateFleetCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateFlowLogsCommand.ts b/clients/client-ec2/src/commands/CreateFlowLogsCommand.ts index d669cbc337252..1909a6ab61c3c 100644 --- a/clients/client-ec2/src/commands/CreateFlowLogsCommand.ts +++ b/clients/client-ec2/src/commands/CreateFlowLogsCommand.ts @@ -107,6 +107,7 @@ export interface CreateFlowLogsCommandOutput extends CreateFlowLogsResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateFlowLogsCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateFpgaImageCommand.ts b/clients/client-ec2/src/commands/CreateFpgaImageCommand.ts index 4ce6933aba09b..f6484876195d0 100644 --- a/clients/client-ec2/src/commands/CreateFpgaImageCommand.ts +++ b/clients/client-ec2/src/commands/CreateFpgaImageCommand.ts @@ -83,6 +83,7 @@ export interface CreateFpgaImageCommandOutput extends CreateFpgaImageResult, __M * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateFpgaImageCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateImageCommand.ts b/clients/client-ec2/src/commands/CreateImageCommand.ts index 11802d0ddcf7f..6e3048d0a5322 100644 --- a/clients/client-ec2/src/commands/CreateImageCommand.ts +++ b/clients/client-ec2/src/commands/CreateImageCommand.ts @@ -95,38 +95,8 @@ export interface CreateImageCommandOutput extends CreateImageResult, __MetadataB * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public - * @example To create an AMI from an Amazon EBS-backed instance - * ```javascript - * // This example creates an AMI from the specified instance and adds an EBS volume with the device name /dev/sdh and an instance store volume with the device name /dev/sdc. - * const input = { - * "BlockDeviceMappings": [ - * { - * "DeviceName": "/dev/sdh", - * "Ebs": { - * "VolumeSize": "100" - * } - * }, - * { - * "DeviceName": "/dev/sdc", - * "VirtualName": "ephemeral1" - * } - * ], - * "Description": "An AMI for my server", - * "InstanceId": "i-1234567890abcdef0", - * "Name": "My server", - * "NoReboot": true - * }; - * const command = new CreateImageCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ImageId": "ami-1a2b3c4d" - * } - * *\/ - * // example id: to-create-an-ami-from-an-amazon-ebs-backed-instance-1529023150636 - * ``` * + * @public */ export class CreateImageCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateInstanceConnectEndpointCommand.ts b/clients/client-ec2/src/commands/CreateInstanceConnectEndpointCommand.ts index c251c9a3fc5d2..f9cf8bb09cd16 100644 --- a/clients/client-ec2/src/commands/CreateInstanceConnectEndpointCommand.ts +++ b/clients/client-ec2/src/commands/CreateInstanceConnectEndpointCommand.ts @@ -103,6 +103,7 @@ export interface CreateInstanceConnectEndpointCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateInstanceConnectEndpointCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/CreateInstanceEventWindowCommand.ts index 5a66e68ac99a6..364e6ff3742e8 100644 --- a/clients/client-ec2/src/commands/CreateInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/CreateInstanceEventWindowCommand.ts @@ -131,6 +131,7 @@ export interface CreateInstanceEventWindowCommandOutput extends CreateInstanceEv * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateInstanceEventWindowCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateInstanceExportTaskCommand.ts b/clients/client-ec2/src/commands/CreateInstanceExportTaskCommand.ts index 4f3dba6eb6ba9..a4778be034666 100644 --- a/clients/client-ec2/src/commands/CreateInstanceExportTaskCommand.ts +++ b/clients/client-ec2/src/commands/CreateInstanceExportTaskCommand.ts @@ -98,6 +98,7 @@ export interface CreateInstanceExportTaskCommandOutput extends CreateInstanceExp * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateInstanceExportTaskCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateInternetGatewayCommand.ts b/clients/client-ec2/src/commands/CreateInternetGatewayCommand.ts index c53b6a71f98db..be56296cee0ab 100644 --- a/clients/client-ec2/src/commands/CreateInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateInternetGatewayCommand.ts @@ -84,25 +84,25 @@ export interface CreateInternetGatewayCommandOutput extends CreateInternetGatewa * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create an Internet gateway * ```javascript * // This example creates an Internet gateway. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new CreateInternetGatewayCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InternetGateway": { - * "Attachments": [], - * "InternetGatewayId": "igw-c0a643a9", - * "Tags": [] + * InternetGateway: { + * Attachments: [], + * InternetGatewayId: "igw-c0a643a9", + * Tags: [] * } * } * *\/ - * // example id: ec2-create-internet-gateway-1 * ``` * + * @public */ export class CreateInternetGatewayCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateIpamCommand.ts b/clients/client-ec2/src/commands/CreateIpamCommand.ts index 5d0f95d6f7716..10c9d3bd58b22 100644 --- a/clients/client-ec2/src/commands/CreateIpamCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamCommand.ts @@ -107,6 +107,7 @@ export interface CreateIpamCommandOutput extends CreateIpamResult, __MetadataBea * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateIpamCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateIpamExternalResourceVerificationTokenCommand.ts b/clients/client-ec2/src/commands/CreateIpamExternalResourceVerificationTokenCommand.ts index 3ba1d1078117a..1efe10790d11b 100644 --- a/clients/client-ec2/src/commands/CreateIpamExternalResourceVerificationTokenCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamExternalResourceVerificationTokenCommand.ts @@ -95,6 +95,7 @@ export interface CreateIpamExternalResourceVerificationTokenCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateIpamExternalResourceVerificationTokenCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateIpamPoolCommand.ts b/clients/client-ec2/src/commands/CreateIpamPoolCommand.ts index ae5508f7efdb0..c00df6fc893bc 100644 --- a/clients/client-ec2/src/commands/CreateIpamPoolCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamPoolCommand.ts @@ -133,6 +133,7 @@ export interface CreateIpamPoolCommandOutput extends CreateIpamPoolResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateIpamPoolCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/CreateIpamResourceDiscoveryCommand.ts index 421e2bd1a68be..1c89f8f5508d6 100644 --- a/clients/client-ec2/src/commands/CreateIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamResourceDiscoveryCommand.ts @@ -97,6 +97,7 @@ export interface CreateIpamResourceDiscoveryCommandOutput extends CreateIpamReso * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateIpamResourceDiscoveryCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateIpamScopeCommand.ts b/clients/client-ec2/src/commands/CreateIpamScopeCommand.ts index c1e409d06d1af..d1d9012aa2cfd 100644 --- a/clients/client-ec2/src/commands/CreateIpamScopeCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamScopeCommand.ts @@ -87,6 +87,7 @@ export interface CreateIpamScopeCommandOutput extends CreateIpamScopeResult, __M * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateIpamScopeCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateKeyPairCommand.ts b/clients/client-ec2/src/commands/CreateKeyPairCommand.ts index 9c399f8fbe313..9f256fd30dcec 100644 --- a/clients/client-ec2/src/commands/CreateKeyPairCommand.ts +++ b/clients/client-ec2/src/commands/CreateKeyPairCommand.ts @@ -88,18 +88,21 @@ export interface CreateKeyPairCommandOutput extends KeyPair, __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a key pair * ```javascript * // This example creates a key pair named my-key-pair. * const input = { - * "KeyName": "my-key-pair" + * KeyName: "my-key-pair" * }; * const command = new CreateKeyPairCommand(input); - * await client.send(command); - * // example id: ec2-create-key-pair-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateKeyPairCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateLaunchTemplateCommand.ts b/clients/client-ec2/src/commands/CreateLaunchTemplateCommand.ts index 9f61ae6b80c31..4270453accd03 100644 --- a/clients/client-ec2/src/commands/CreateLaunchTemplateCommand.ts +++ b/clients/client-ec2/src/commands/CreateLaunchTemplateCommand.ts @@ -374,54 +374,54 @@ export interface CreateLaunchTemplateCommandOutput extends CreateLaunchTemplateR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a launch template * ```javascript * // This example creates a launch template that specifies the subnet in which to launch the instance, assigns a public IP address and an IPv6 address to the instance, and creates a tag for the instance. * const input = { - * "LaunchTemplateData": { - * "ImageId": "ami-8c1be5f6", - * "InstanceType": "t2.small", - * "NetworkInterfaces": [ + * LaunchTemplateData: { + * ImageId: "ami-8c1be5f6", + * InstanceType: "t2.small", + * NetworkInterfaces: [ * { - * "AssociatePublicIpAddress": true, - * "DeviceIndex": 0, - * "Ipv6AddressCount": 1, - * "SubnetId": "subnet-7b16de0c" + * AssociatePublicIpAddress: true, + * DeviceIndex: 0, + * Ipv6AddressCount: 1, + * SubnetId: "subnet-7b16de0c" * } * ], - * "TagSpecifications": [ + * TagSpecifications: [ * { - * "ResourceType": "instance", - * "Tags": [ + * ResourceType: "instance", + * Tags: [ * { - * "Key": "Name", - * "Value": "webserver" + * Key: "Name", + * Value: "webserver" * } * ] * } * ] * }, - * "LaunchTemplateName": "my-template", - * "VersionDescription": "WebVersion1" + * LaunchTemplateName: "my-template", + * VersionDescription: "WebVersion1" * }; * const command = new CreateLaunchTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LaunchTemplate": { - * "CreateTime": "2017-11-27T09:13:24.000Z", - * "CreatedBy": "arn:aws:iam::123456789012:root", - * "DefaultVersionNumber": 1, - * "LatestVersionNumber": 1, - * "LaunchTemplateId": "lt-01238c059e3466abc", - * "LaunchTemplateName": "my-template" + * LaunchTemplate: { + * CreateTime: "2017-11-27T09:13:24.000Z", + * CreatedBy: "arn:aws:iam::123456789012:root", + * DefaultVersionNumber: 1, + * LatestVersionNumber: 1, + * LaunchTemplateId: "lt-01238c059e3466abc", + * LaunchTemplateName: "my-template" * } * } * *\/ - * // example id: to-create-a-launch-template-1529023655488 * ``` * + * @public */ export class CreateLaunchTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateLaunchTemplateVersionCommand.ts b/clients/client-ec2/src/commands/CreateLaunchTemplateVersionCommand.ts index 21861606e56c7..6fc7d90bc87d2 100644 --- a/clients/client-ec2/src/commands/CreateLaunchTemplateVersionCommand.ts +++ b/clients/client-ec2/src/commands/CreateLaunchTemplateVersionCommand.ts @@ -626,52 +626,52 @@ export interface CreateLaunchTemplateVersionCommandOutput extends CreateLaunchTe * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a launch template version * ```javascript * // This example creates a new launch template version based on version 1 of the specified launch template and specifies a different AMI ID. * const input = { - * "LaunchTemplateData": { - * "ImageId": "ami-c998b6b2" + * LaunchTemplateData: { + * ImageId: "ami-c998b6b2" * }, - * "LaunchTemplateId": "lt-0abcd290751193123", - * "SourceVersion": "1", - * "VersionDescription": "WebVersion2" + * LaunchTemplateId: "lt-0abcd290751193123", + * SourceVersion: "1", + * VersionDescription: "WebVersion2" * }; * const command = new CreateLaunchTemplateVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LaunchTemplateVersion": { - * "CreateTime": "2017-12-01T13:35:46.000Z", - * "CreatedBy": "arn:aws:iam::123456789012:root", - * "DefaultVersion": false, - * "LaunchTemplateData": { - * "ImageId": "ami-c998b6b2", - * "InstanceType": "t2.micro", - * "NetworkInterfaces": [ + * LaunchTemplateVersion: { + * CreateTime: "2017-12-01T13:35:46.000Z", + * CreatedBy: "arn:aws:iam::123456789012:root", + * DefaultVersion: false, + * LaunchTemplateData: { + * ImageId: "ami-c998b6b2", + * InstanceType: "t2.micro", + * NetworkInterfaces: [ * { - * "AssociatePublicIpAddress": true, - * "DeviceIndex": 0, - * "Ipv6Addresses": [ + * AssociatePublicIpAddress: true, + * DeviceIndex: 0, + * Ipv6Addresses: [ * { - * "Ipv6Address": "2001:db8:1234:1a00::123" + * Ipv6Address: "2001:db8:1234:1a00::123" * } * ], - * "SubnetId": "subnet-7b16de0c" + * SubnetId: "subnet-7b16de0c" * } * ] * }, - * "LaunchTemplateId": "lt-0abcd290751193123", - * "LaunchTemplateName": "my-template", - * "VersionDescription": "WebVersion2", - * "VersionNumber": 2 + * LaunchTemplateId: "lt-0abcd290751193123", + * LaunchTemplateName: "my-template", + * VersionDescription: "WebVersion2", + * VersionNumber: 2 * } * } * *\/ - * // example id: to-create-a-launch-template-version-1529024195702 * ``` * + * @public */ export class CreateLaunchTemplateVersionCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateLocalGatewayRouteCommand.ts b/clients/client-ec2/src/commands/CreateLocalGatewayRouteCommand.ts index 7e42a28b6d7f6..8b5810aafb7b6 100644 --- a/clients/client-ec2/src/commands/CreateLocalGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateLocalGatewayRouteCommand.ts @@ -86,6 +86,7 @@ export interface CreateLocalGatewayRouteCommandOutput extends CreateLocalGateway * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateLocalGatewayRouteCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableCommand.ts index 15724eda55219..417f851049eba 100644 --- a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableCommand.ts @@ -90,6 +90,7 @@ export interface CreateLocalGatewayRouteTableCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateLocalGatewayRouteTableCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts index 1de73434fe275..c81b594e66bc6 100644 --- a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts +++ b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts @@ -93,6 +93,7 @@ export interface CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCom * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.ts b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.ts index 3ed1bbc491e1a..559aecaeab72d 100644 --- a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.ts +++ b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.ts @@ -91,6 +91,7 @@ export interface CreateLocalGatewayRouteTableVpcAssociationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateLocalGatewayRouteTableVpcAssociationCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateManagedPrefixListCommand.ts b/clients/client-ec2/src/commands/CreateManagedPrefixListCommand.ts index 8a36aa528082b..c5c279fee29e4 100644 --- a/clients/client-ec2/src/commands/CreateManagedPrefixListCommand.ts +++ b/clients/client-ec2/src/commands/CreateManagedPrefixListCommand.ts @@ -93,6 +93,7 @@ export interface CreateManagedPrefixListCommandOutput extends CreateManagedPrefi * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateManagedPrefixListCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateNatGatewayCommand.ts b/clients/client-ec2/src/commands/CreateNatGatewayCommand.ts index eb905e0b9842a..c786ba553c33e 100644 --- a/clients/client-ec2/src/commands/CreateNatGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateNatGatewayCommand.ts @@ -133,35 +133,35 @@ export interface CreateNatGatewayCommandOutput extends CreateNatGatewayResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a NAT gateway * ```javascript * // This example creates a NAT gateway in subnet subnet-1a2b3c4d and associates an Elastic IP address with the allocation ID eipalloc-37fc1a52 with the NAT gateway. * const input = { - * "AllocationId": "eipalloc-37fc1a52", - * "SubnetId": "subnet-1a2b3c4d" + * AllocationId: "eipalloc-37fc1a52", + * SubnetId: "subnet-1a2b3c4d" * }; * const command = new CreateNatGatewayCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NatGateway": { - * "CreateTime": "2015-12-17T12:45:26.732Z", - * "NatGatewayAddresses": [ + * NatGateway: { + * CreateTime: "2015-12-17T12:45:26.732Z", + * NatGatewayAddresses: [ * { - * "AllocationId": "eipalloc-37fc1a52" + * AllocationId: "eipalloc-37fc1a52" * } * ], - * "NatGatewayId": "nat-08d48af2a8e83edfd", - * "State": "pending", - * "SubnetId": "subnet-1a2b3c4d", - * "VpcId": "vpc-1122aabb" + * NatGatewayId: "nat-08d48af2a8e83edfd", + * State: "pending", + * SubnetId: "subnet-1a2b3c4d", + * VpcId: "vpc-1122aabb" * } * } * *\/ - * // example id: ec2-create-nat-gateway-1 * ``` * + * @public */ export class CreateNatGatewayCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateNetworkAclCommand.ts b/clients/client-ec2/src/commands/CreateNetworkAclCommand.ts index 89f17266209b4..f837374f691de 100644 --- a/clients/client-ec2/src/commands/CreateNetworkAclCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkAclCommand.ts @@ -107,45 +107,45 @@ export interface CreateNetworkAclCommandOutput extends CreateNetworkAclResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a network ACL * ```javascript * // This example creates a network ACL for the specified VPC. * const input = { - * "VpcId": "vpc-a01106c2" + * VpcId: "vpc-a01106c2" * }; * const command = new CreateNetworkAclCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NetworkAcl": { - * "Associations": [], - * "Entries": [ + * NetworkAcl: { + * Associations: [], + * Entries: [ * { - * "CidrBlock": "0.0.0.0/0", - * "Egress": true, - * "Protocol": "-1", - * "RuleAction": "deny", - * "RuleNumber": 32767 + * CidrBlock: "0.0.0.0/0", + * Egress: true, + * Protocol: "-1", + * RuleAction: "deny", + * RuleNumber: 32767 * }, * { - * "CidrBlock": "0.0.0.0/0", - * "Egress": false, - * "Protocol": "-1", - * "RuleAction": "deny", - * "RuleNumber": 32767 + * CidrBlock: "0.0.0.0/0", + * Egress: false, + * Protocol: "-1", + * RuleAction: "deny", + * RuleNumber: 32767 * } * ], - * "IsDefault": false, - * "NetworkAclId": "acl-5fb85d36", - * "Tags": [], - * "VpcId": "vpc-a01106c2" + * IsDefault: false, + * NetworkAclId: "acl-5fb85d36", + * Tags: [], + * VpcId: "vpc-a01106c2" * } * } * *\/ - * // example id: ec2-create-network-acl-1 * ``` * + * @public */ export class CreateNetworkAclCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateNetworkAclEntryCommand.ts b/clients/client-ec2/src/commands/CreateNetworkAclEntryCommand.ts index 470c9a8173280..4576e12932647 100644 --- a/clients/client-ec2/src/commands/CreateNetworkAclEntryCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkAclEntryCommand.ts @@ -76,27 +76,30 @@ export interface CreateNetworkAclEntryCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a network ACL entry * ```javascript * // This example creates an entry for the specified network ACL. The rule allows ingress traffic from anywhere (0.0.0.0/0) on UDP port 53 (DNS) into any associated subnet. * const input = { - * "CidrBlock": "0.0.0.0/0", - * "Egress": false, - * "NetworkAclId": "acl-5fb85d36", - * "PortRange": { - * "From": 53, - * "To": 53 + * CidrBlock: "0.0.0.0/0", + * Egress: false, + * NetworkAclId: "acl-5fb85d36", + * PortRange: { + * From: 53, + * To: 53 * }, - * "Protocol": "17", - * "RuleAction": "allow", - * "RuleNumber": 100 + * Protocol: "17", + * RuleAction: "allow", + * RuleNumber: 100 * }; * const command = new CreateNetworkAclEntryCommand(input); - * await client.send(command); - * // example id: ec2-create-network-acl-entry-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateNetworkAclEntryCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateNetworkInsightsAccessScopeCommand.ts b/clients/client-ec2/src/commands/CreateNetworkInsightsAccessScopeCommand.ts index bf12ac2869600..68752ff90786c 100644 --- a/clients/client-ec2/src/commands/CreateNetworkInsightsAccessScopeCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkInsightsAccessScopeCommand.ts @@ -287,6 +287,7 @@ export interface CreateNetworkInsightsAccessScopeCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateNetworkInsightsAccessScopeCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateNetworkInsightsPathCommand.ts b/clients/client-ec2/src/commands/CreateNetworkInsightsPathCommand.ts index 96ce97cdce1fb..81cb687d7f3ee 100644 --- a/clients/client-ec2/src/commands/CreateNetworkInsightsPathCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkInsightsPathCommand.ts @@ -142,6 +142,7 @@ export interface CreateNetworkInsightsPathCommandOutput extends CreateNetworkIns * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateNetworkInsightsPathCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateNetworkInterfaceCommand.ts b/clients/client-ec2/src/commands/CreateNetworkInterfaceCommand.ts index 8df0412ab876a..c0e327578f15e 100644 --- a/clients/client-ec2/src/commands/CreateNetworkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkInterfaceCommand.ts @@ -211,53 +211,8 @@ export interface CreateNetworkInterfaceCommandOutput extends CreateNetworkInterf * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public - * @example To create a network interface - * ```javascript - * // This example creates a network interface for the specified subnet. - * const input = { - * "Description": "my network interface", - * "Groups": [ - * "sg-903004f8" - * ], - * "PrivateIpAddress": "10.0.2.17", - * "SubnetId": "subnet-9d4a7b6c" - * }; - * const command = new CreateNetworkInterfaceCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "NetworkInterface": { - * "AvailabilityZone": "us-east-1d", - * "Description": "my network interface", - * "Groups": [ - * { - * "GroupId": "sg-903004f8", - * "GroupName": "default" - * } - * ], - * "MacAddress": "02:1a:80:41:52:9c", - * "NetworkInterfaceId": "eni-e5aa89a3", - * "OwnerId": "123456789012", - * "PrivateIpAddress": "10.0.2.17", - * "PrivateIpAddresses": [ - * { - * "Primary": true, - * "PrivateIpAddress": "10.0.2.17" - * } - * ], - * "RequesterManaged": false, - * "SourceDestCheck": true, - * "Status": "pending", - * "SubnetId": "subnet-9d4a7b6c", - * "TagSet": [], - * "VpcId": "vpc-a01106c2" - * } - * } - * *\/ - * // example id: ec2-create-network-interface-1 - * ``` * + * @public */ export class CreateNetworkInterfaceCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateNetworkInterfacePermissionCommand.ts b/clients/client-ec2/src/commands/CreateNetworkInterfacePermissionCommand.ts index fbad7d7480f3c..91ea63c514547 100644 --- a/clients/client-ec2/src/commands/CreateNetworkInterfacePermissionCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkInterfacePermissionCommand.ts @@ -76,6 +76,7 @@ export interface CreateNetworkInterfacePermissionCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateNetworkInterfacePermissionCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreatePlacementGroupCommand.ts b/clients/client-ec2/src/commands/CreatePlacementGroupCommand.ts index 90c8041671b5a..98096ab18bfd3 100644 --- a/clients/client-ec2/src/commands/CreatePlacementGroupCommand.ts +++ b/clients/client-ec2/src/commands/CreatePlacementGroupCommand.ts @@ -93,19 +93,22 @@ export interface CreatePlacementGroupCommandOutput extends CreatePlacementGroupR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a placement group * ```javascript * // This example creates a placement group with the specified name. * const input = { - * "GroupName": "my-cluster", - * "Strategy": "cluster" + * GroupName: "my-cluster", + * Strategy: "cluster" * }; * const command = new CreatePlacementGroupCommand(input); - * await client.send(command); - * // example id: to-create-a-placement-group-1472712245768 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class CreatePlacementGroupCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreatePublicIpv4PoolCommand.ts b/clients/client-ec2/src/commands/CreatePublicIpv4PoolCommand.ts index 7cc9fd06c670f..a6f5caae85202 100644 --- a/clients/client-ec2/src/commands/CreatePublicIpv4PoolCommand.ts +++ b/clients/client-ec2/src/commands/CreatePublicIpv4PoolCommand.ts @@ -67,6 +67,7 @@ export interface CreatePublicIpv4PoolCommandOutput extends CreatePublicIpv4PoolR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreatePublicIpv4PoolCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateReplaceRootVolumeTaskCommand.ts b/clients/client-ec2/src/commands/CreateReplaceRootVolumeTaskCommand.ts index e51792672d207..99ff117c980d2 100644 --- a/clients/client-ec2/src/commands/CreateReplaceRootVolumeTaskCommand.ts +++ b/clients/client-ec2/src/commands/CreateReplaceRootVolumeTaskCommand.ts @@ -90,6 +90,7 @@ export interface CreateReplaceRootVolumeTaskCommandOutput extends CreateReplaceR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateReplaceRootVolumeTaskCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateReservedInstancesListingCommand.ts b/clients/client-ec2/src/commands/CreateReservedInstancesListingCommand.ts index ff2f5b84751e1..10612e11c0eeb 100644 --- a/clients/client-ec2/src/commands/CreateReservedInstancesListingCommand.ts +++ b/clients/client-ec2/src/commands/CreateReservedInstancesListingCommand.ts @@ -114,6 +114,7 @@ export interface CreateReservedInstancesListingCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateReservedInstancesListingCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateRestoreImageTaskCommand.ts b/clients/client-ec2/src/commands/CreateRestoreImageTaskCommand.ts index 6159acc952a54..ce9e2e67d299a 100644 --- a/clients/client-ec2/src/commands/CreateRestoreImageTaskCommand.ts +++ b/clients/client-ec2/src/commands/CreateRestoreImageTaskCommand.ts @@ -74,6 +74,7 @@ export interface CreateRestoreImageTaskCommandOutput extends CreateRestoreImageT * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateRestoreImageTaskCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateRouteCommand.ts b/clients/client-ec2/src/commands/CreateRouteCommand.ts index 33e842cb582ac..7946267a0e87a 100644 --- a/clients/client-ec2/src/commands/CreateRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateRouteCommand.ts @@ -90,20 +90,23 @@ export interface CreateRouteCommandOutput extends CreateRouteResult, __MetadataB * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a route * ```javascript * // This example creates a route for the specified route table. The route matches all traffic (0.0.0.0/0) and routes it to the specified Internet gateway. * const input = { - * "DestinationCidrBlock": "0.0.0.0/0", - * "GatewayId": "igw-c0a643a9", - * "RouteTableId": "rtb-22574640" + * DestinationCidrBlock: "0.0.0.0/0", + * GatewayId: "igw-c0a643a9", + * RouteTableId: "rtb-22574640" * }; * const command = new CreateRouteCommand(input); - * await client.send(command); - * // example id: ec2-create-route-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateRouteCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateRouteTableCommand.ts b/clients/client-ec2/src/commands/CreateRouteTableCommand.ts index 4f5284ae794b3..7c7412da5242d 100644 --- a/clients/client-ec2/src/commands/CreateRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/CreateRouteTableCommand.ts @@ -119,36 +119,36 @@ export interface CreateRouteTableCommandOutput extends CreateRouteTableResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a route table * ```javascript * // This example creates a route table for the specified VPC. * const input = { - * "VpcId": "vpc-a01106c2" + * VpcId: "vpc-a01106c2" * }; * const command = new CreateRouteTableCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RouteTable": { - * "Associations": [], - * "PropagatingVgws": [], - * "RouteTableId": "rtb-22574640", - * "Routes": [ + * RouteTable: { + * Associations: [], + * PropagatingVgws: [], + * RouteTableId: "rtb-22574640", + * Routes: [ * { - * "DestinationCidrBlock": "10.0.0.0/16", - * "GatewayId": "local", - * "State": "active" + * DestinationCidrBlock: "10.0.0.0/16", + * GatewayId: "local", + * State: "active" * } * ], - * "Tags": [], - * "VpcId": "vpc-a01106c2" + * Tags: [], + * VpcId: "vpc-a01106c2" * } * } * *\/ - * // example id: ec2-create-route-table-1 * ``` * + * @public */ export class CreateRouteTableCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateSecurityGroupCommand.ts b/clients/client-ec2/src/commands/CreateSecurityGroupCommand.ts index c2b289e51571c..2b0f089edd076 100644 --- a/clients/client-ec2/src/commands/CreateSecurityGroupCommand.ts +++ b/clients/client-ec2/src/commands/CreateSecurityGroupCommand.ts @@ -94,25 +94,25 @@ export interface CreateSecurityGroupCommandOutput extends CreateSecurityGroupRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a security group for a VPC * ```javascript * // This example creates a security group for the specified VPC. * const input = { - * "Description": "My security group", - * "GroupName": "my-security-group", - * "VpcId": "vpc-1a2b3c4d" + * Description: "My security group", + * GroupName: "my-security-group", + * VpcId: "vpc-1a2b3c4d" * }; * const command = new CreateSecurityGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GroupId": "sg-903004f8" + * GroupId: "sg-903004f8" * } * *\/ - * // example id: to-create-a-security-group-for-a-vpc-1529024532716 * ``` * + * @public */ export class CreateSecurityGroupCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateSnapshotCommand.ts b/clients/client-ec2/src/commands/CreateSnapshotCommand.ts index 56027377b81db..7188c7ac0f583 100644 --- a/clients/client-ec2/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/CreateSnapshotCommand.ts @@ -130,31 +130,31 @@ export interface CreateSnapshotCommandOutput extends Snapshot, __MetadataBearer * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a snapshot * ```javascript * // This example creates a snapshot of the volume with a volume ID of ``vol-1234567890abcdef0`` and a short description to identify the snapshot. * const input = { - * "Description": "This is my root volume snapshot.", - * "VolumeId": "vol-1234567890abcdef0" + * Description: "This is my root volume snapshot.", + * VolumeId: "vol-1234567890abcdef0" * }; * const command = new CreateSnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Description": "This is my root volume snapshot.", - * "OwnerId": "012345678910", - * "SnapshotId": "snap-066877671789bd71b", - * "StartTime": "2014-02-28T21:06:01.000Z", - * "State": "pending", - * "Tags": [], - * "VolumeId": "vol-1234567890abcdef0", - * "VolumeSize": 8 + * Description: "This is my root volume snapshot.", + * OwnerId: "012345678910", + * SnapshotId: "snap-066877671789bd71b", + * StartTime: "2014-02-28T21:06:01.000Z", + * State: "pending", + * Tags: [], + * VolumeId: "vol-1234567890abcdef0", + * VolumeSize: 8 * } * *\/ - * // example id: to-create-a-snapshot-1472502529790 * ``` * + * @public */ export class CreateSnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateSnapshotsCommand.ts b/clients/client-ec2/src/commands/CreateSnapshotsCommand.ts index aa14754433a32..390ae3b7abb87 100644 --- a/clients/client-ec2/src/commands/CreateSnapshotsCommand.ts +++ b/clients/client-ec2/src/commands/CreateSnapshotsCommand.ts @@ -117,6 +117,7 @@ export interface CreateSnapshotsCommandOutput extends CreateSnapshotsResult, __M * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateSnapshotsCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateSpotDatafeedSubscriptionCommand.ts b/clients/client-ec2/src/commands/CreateSpotDatafeedSubscriptionCommand.ts index 1a782419f82da..1fb1588fb2504 100644 --- a/clients/client-ec2/src/commands/CreateSpotDatafeedSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/CreateSpotDatafeedSubscriptionCommand.ts @@ -74,29 +74,29 @@ export interface CreateSpotDatafeedSubscriptionCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a Spot Instance datafeed * ```javascript * // This example creates a Spot Instance data feed for your AWS account. * const input = { - * "Bucket": "my-s3-bucket", - * "Prefix": "spotdata" + * Bucket: "my-s3-bucket", + * Prefix: "spotdata" * }; * const command = new CreateSpotDatafeedSubscriptionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SpotDatafeedSubscription": { - * "Bucket": "my-s3-bucket", - * "OwnerId": "123456789012", - * "Prefix": "spotdata", - * "State": "Active" + * SpotDatafeedSubscription: { + * Bucket: "my-s3-bucket", + * OwnerId: "123456789012", + * Prefix: "spotdata", + * State: "Active" * } * } * *\/ - * // example id: ec2-create-spot-datafeed-subscription-1 * ``` * + * @public */ export class CreateSpotDatafeedSubscriptionCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateStoreImageTaskCommand.ts b/clients/client-ec2/src/commands/CreateStoreImageTaskCommand.ts index b561e7069ec58..a61921fce5081 100644 --- a/clients/client-ec2/src/commands/CreateStoreImageTaskCommand.ts +++ b/clients/client-ec2/src/commands/CreateStoreImageTaskCommand.ts @@ -67,6 +67,7 @@ export interface CreateStoreImageTaskCommandOutput extends CreateStoreImageTaskR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateStoreImageTaskCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateSubnetCidrReservationCommand.ts b/clients/client-ec2/src/commands/CreateSubnetCidrReservationCommand.ts index 12ae9150a4e96..f0c47d8b3095a 100644 --- a/clients/client-ec2/src/commands/CreateSubnetCidrReservationCommand.ts +++ b/clients/client-ec2/src/commands/CreateSubnetCidrReservationCommand.ts @@ -85,6 +85,7 @@ export interface CreateSubnetCidrReservationCommandOutput extends CreateSubnetCi * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateSubnetCidrReservationCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateSubnetCommand.ts b/clients/client-ec2/src/commands/CreateSubnetCommand.ts index b8278a8dbbe35..4af72f2eddcc4 100644 --- a/clients/client-ec2/src/commands/CreateSubnetCommand.ts +++ b/clients/client-ec2/src/commands/CreateSubnetCommand.ts @@ -138,31 +138,31 @@ export interface CreateSubnetCommandOutput extends CreateSubnetResult, __Metadat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a subnet * ```javascript * // This example creates a subnet in the specified VPC with the specified CIDR block. We recommend that you let us select an Availability Zone for you. * const input = { - * "CidrBlock": "10.0.1.0/24", - * "VpcId": "vpc-a01106c2" + * CidrBlock: "10.0.1.0/24", + * VpcId: "vpc-a01106c2" * }; * const command = new CreateSubnetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Subnet": { - * "AvailabilityZone": "us-west-2c", - * "AvailableIpAddressCount": 251, - * "CidrBlock": "10.0.1.0/24", - * "State": "pending", - * "SubnetId": "subnet-9d4a7b6c", - * "VpcId": "vpc-a01106c2" + * Subnet: { + * AvailabilityZone: "us-west-2c", + * AvailableIpAddressCount: 251, + * CidrBlock: "10.0.1.0/24", + * State: "pending", + * SubnetId: "subnet-9d4a7b6c", + * VpcId: "vpc-a01106c2" * } * } * *\/ - * // example id: ec2-create-subnet-1 * ``` * + * @public */ export class CreateSubnetCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateTagsCommand.ts b/clients/client-ec2/src/commands/CreateTagsCommand.ts index a58edaf83bc4e..438fb555da51f 100644 --- a/clients/client-ec2/src/commands/CreateTagsCommand.ts +++ b/clients/client-ec2/src/commands/CreateTagsCommand.ts @@ -70,26 +70,29 @@ export interface CreateTagsCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To add a tag to a resource * ```javascript * // This example adds the tag Stack=production to the specified image, or overwrites an existing tag for the AMI where the tag key is Stack. * const input = { - * "Resources": [ + * Resources: [ * "ami-78a54011" * ], - * "Tags": [ + * Tags: [ * { - * "Key": "Stack", - * "Value": "production" + * Key: "Stack", + * Value: "production" * } * ] * }; * const command = new CreateTagsCommand(input); - * await client.send(command); - * // example id: ec2-create-tags-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateTagsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateTrafficMirrorFilterCommand.ts b/clients/client-ec2/src/commands/CreateTrafficMirrorFilterCommand.ts index 633fd024706ee..6986f844fd85e 100644 --- a/clients/client-ec2/src/commands/CreateTrafficMirrorFilterCommand.ts +++ b/clients/client-ec2/src/commands/CreateTrafficMirrorFilterCommand.ts @@ -139,6 +139,7 @@ export interface CreateTrafficMirrorFilterCommandOutput extends CreateTrafficMir * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTrafficMirrorFilterCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateTrafficMirrorFilterRuleCommand.ts b/clients/client-ec2/src/commands/CreateTrafficMirrorFilterRuleCommand.ts index 0d699893910ef..59304c987b873 100644 --- a/clients/client-ec2/src/commands/CreateTrafficMirrorFilterRuleCommand.ts +++ b/clients/client-ec2/src/commands/CreateTrafficMirrorFilterRuleCommand.ts @@ -112,6 +112,7 @@ export interface CreateTrafficMirrorFilterRuleCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTrafficMirrorFilterRuleCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateTrafficMirrorSessionCommand.ts b/clients/client-ec2/src/commands/CreateTrafficMirrorSessionCommand.ts index adebc54a2b51f..b0243cc9b59f1 100644 --- a/clients/client-ec2/src/commands/CreateTrafficMirrorSessionCommand.ts +++ b/clients/client-ec2/src/commands/CreateTrafficMirrorSessionCommand.ts @@ -97,6 +97,7 @@ export interface CreateTrafficMirrorSessionCommandOutput extends CreateTrafficMi * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTrafficMirrorSessionCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateTrafficMirrorTargetCommand.ts b/clients/client-ec2/src/commands/CreateTrafficMirrorTargetCommand.ts index 1084e3fbbe2e0..89c1dc8dcee89 100644 --- a/clients/client-ec2/src/commands/CreateTrafficMirrorTargetCommand.ts +++ b/clients/client-ec2/src/commands/CreateTrafficMirrorTargetCommand.ts @@ -91,6 +91,7 @@ export interface CreateTrafficMirrorTargetCommandOutput extends CreateTrafficMir * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTrafficMirrorTargetCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayCommand.ts index 50a77dd0a14a5..de537a76bd6dc 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayCommand.ts @@ -120,6 +120,7 @@ export interface CreateTransitGatewayCommandOutput extends CreateTransitGatewayR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTransitGatewayCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayConnectCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayConnectCommand.ts index 02778307c3e78..78b53690fa994 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayConnectCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayConnectCommand.ts @@ -86,6 +86,7 @@ export interface CreateTransitGatewayConnectCommandOutput extends CreateTransitG * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTransitGatewayConnectCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayConnectPeerCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayConnectPeerCommand.ts index dea55c24f74a6..ac68573bcfa32 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayConnectPeerCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayConnectPeerCommand.ts @@ -112,6 +112,7 @@ export interface CreateTransitGatewayConnectPeerCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTransitGatewayConnectPeerCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayMulticastDomainCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayMulticastDomainCommand.ts index c997dec7a1766..b4a7a16dab4f9 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayMulticastDomainCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayMulticastDomainCommand.ts @@ -99,6 +99,7 @@ export interface CreateTransitGatewayMulticastDomainCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTransitGatewayMulticastDomainCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayPeeringAttachmentCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayPeeringAttachmentCommand.ts index 73ae87869c8c8..dbff6c9f4812b 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayPeeringAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayPeeringAttachmentCommand.ts @@ -116,6 +116,7 @@ export interface CreateTransitGatewayPeeringAttachmentCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTransitGatewayPeeringAttachmentCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayPolicyTableCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayPolicyTableCommand.ts index c892167158341..ae74dd1d2f74d 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayPolicyTableCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayPolicyTableCommand.ts @@ -83,6 +83,7 @@ export interface CreateTransitGatewayPolicyTableCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTransitGatewayPolicyTableCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayPrefixListReferenceCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayPrefixListReferenceCommand.ts index 60adade6bb09a..b470a62ff4bcf 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayPrefixListReferenceCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayPrefixListReferenceCommand.ts @@ -79,6 +79,7 @@ export interface CreateTransitGatewayPrefixListReferenceCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTransitGatewayPrefixListReferenceCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayRouteCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayRouteCommand.ts index c26a071bfa7ec..9caa2cbaab185 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayRouteCommand.ts @@ -72,6 +72,7 @@ export interface CreateTransitGatewayRouteCommandOutput extends CreateTransitGat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTransitGatewayRouteCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableAnnouncementCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableAnnouncementCommand.ts index 5fe68577a4a41..fec0b6b981670 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableAnnouncementCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableAnnouncementCommand.ts @@ -94,6 +94,7 @@ export interface CreateTransitGatewayRouteTableAnnouncementCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTransitGatewayRouteTableAnnouncementCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableCommand.ts index 3f396442e281d..26c7a583200c8 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableCommand.ts @@ -85,6 +85,7 @@ export interface CreateTransitGatewayRouteTableCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTransitGatewayRouteTableCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayVpcAttachmentCommand.ts index 20a1f6be068f7..02cdffb65e040 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayVpcAttachmentCommand.ts @@ -107,6 +107,7 @@ export interface CreateTransitGatewayVpcAttachmentCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateTransitGatewayVpcAttachmentCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateVerifiedAccessEndpointCommand.ts b/clients/client-ec2/src/commands/CreateVerifiedAccessEndpointCommand.ts index 1f8d65b726e7e..946cd230a4a49 100644 --- a/clients/client-ec2/src/commands/CreateVerifiedAccessEndpointCommand.ts +++ b/clients/client-ec2/src/commands/CreateVerifiedAccessEndpointCommand.ts @@ -213,6 +213,7 @@ export interface CreateVerifiedAccessEndpointCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateVerifiedAccessEndpointCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateVerifiedAccessGroupCommand.ts b/clients/client-ec2/src/commands/CreateVerifiedAccessGroupCommand.ts index 0a47227644293..448f4c16d65fc 100644 --- a/clients/client-ec2/src/commands/CreateVerifiedAccessGroupCommand.ts +++ b/clients/client-ec2/src/commands/CreateVerifiedAccessGroupCommand.ts @@ -96,6 +96,7 @@ export interface CreateVerifiedAccessGroupCommandOutput extends CreateVerifiedAc * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateVerifiedAccessGroupCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateVerifiedAccessInstanceCommand.ts b/clients/client-ec2/src/commands/CreateVerifiedAccessInstanceCommand.ts index 568ea7796a736..e98db95e34565 100644 --- a/clients/client-ec2/src/commands/CreateVerifiedAccessInstanceCommand.ts +++ b/clients/client-ec2/src/commands/CreateVerifiedAccessInstanceCommand.ts @@ -100,6 +100,7 @@ export interface CreateVerifiedAccessInstanceCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateVerifiedAccessInstanceCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/CreateVerifiedAccessTrustProviderCommand.ts index 0271c74991b63..b0d647a520ad9 100644 --- a/clients/client-ec2/src/commands/CreateVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/CreateVerifiedAccessTrustProviderCommand.ts @@ -153,6 +153,7 @@ export interface CreateVerifiedAccessTrustProviderCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateVerifiedAccessTrustProviderCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateVolumeCommand.ts b/clients/client-ec2/src/commands/CreateVolumeCommand.ts index 847aae6b0a1d9..bb53abc0daadf 100644 --- a/clients/client-ec2/src/commands/CreateVolumeCommand.ts +++ b/clients/client-ec2/src/commands/CreateVolumeCommand.ts @@ -126,61 +126,60 @@ export interface CreateVolumeCommandOutput extends Volume, __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public - * @example To create a new volume + * + * @example To create a new Provisioned IOPS (SSD) volume from a snapshot * ```javascript - * // This example creates an 80 GiB General Purpose (SSD) volume in the Availability Zone ``us-east-1a``. + * // This example creates a new Provisioned IOPS (SSD) volume with 1000 provisioned IOPS from a snapshot in the Availability Zone ``us-east-1a``. * const input = { - * "AvailabilityZone": "us-east-1a", - * "Size": 80, - * "VolumeType": "gp2" + * AvailabilityZone: "us-east-1a", + * Iops: 1000, + * SnapshotId: "snap-066877671789bd71b", + * VolumeType: "io1" * }; * const command = new CreateVolumeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AvailabilityZone": "us-east-1a", - * "CreateTime": "2016-08-29T18:52:32.724Z", - * "Encrypted": false, - * "Iops": 240, - * "Size": 80, - * "SnapshotId": "", - * "State": "creating", - * "VolumeId": "vol-6b60b7c7", - * "VolumeType": "gp2" + * Attachments: [], + * AvailabilityZone: "us-east-1a", + * CreateTime: "2016-08-29T18:52:32.724Z", + * Iops: 1000, + * Size: 500, + * SnapshotId: "snap-066877671789bd71b", + * State: "creating", + * Tags: [], + * VolumeId: "vol-1234567890abcdef0", + * VolumeType: "io1" * } * *\/ - * // example id: to-create-a-new-volume-1472496724296 * ``` * - * @example To create a new Provisioned IOPS (SSD) volume from a snapshot + * @example To create a new volume * ```javascript - * // This example creates a new Provisioned IOPS (SSD) volume with 1000 provisioned IOPS from a snapshot in the Availability Zone ``us-east-1a``. + * // This example creates an 80 GiB General Purpose (SSD) volume in the Availability Zone ``us-east-1a``. * const input = { - * "AvailabilityZone": "us-east-1a", - * "Iops": 1000, - * "SnapshotId": "snap-066877671789bd71b", - * "VolumeType": "io1" + * AvailabilityZone: "us-east-1a", + * Size: 80, + * VolumeType: "gp2" * }; * const command = new CreateVolumeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Attachments": [], - * "AvailabilityZone": "us-east-1a", - * "CreateTime": "2016-08-29T18:52:32.724Z", - * "Iops": 1000, - * "Size": 500, - * "SnapshotId": "snap-066877671789bd71b", - * "State": "creating", - * "Tags": [], - * "VolumeId": "vol-1234567890abcdef0", - * "VolumeType": "io1" + * AvailabilityZone: "us-east-1a", + * CreateTime: "2016-08-29T18:52:32.724Z", + * Encrypted: false, + * Iops: 240, + * Size: 80, + * SnapshotId: "", + * State: "creating", + * VolumeId: "vol-6b60b7c7", + * VolumeType: "gp2" * } * *\/ - * // example id: to-create-a-new-provisioned-iops-ssd-volume-from-a-snapshot-1472498975176 * ``` * + * @public */ export class CreateVolumeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateVpcBlockPublicAccessExclusionCommand.ts b/clients/client-ec2/src/commands/CreateVpcBlockPublicAccessExclusionCommand.ts index 91642666b1baf..dd4ef10589c03 100644 --- a/clients/client-ec2/src/commands/CreateVpcBlockPublicAccessExclusionCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcBlockPublicAccessExclusionCommand.ts @@ -92,6 +92,7 @@ export interface CreateVpcBlockPublicAccessExclusionCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateVpcBlockPublicAccessExclusionCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateVpcCommand.ts b/clients/client-ec2/src/commands/CreateVpcCommand.ts index 1351b7cbe8f43..a33ce67d5c259 100644 --- a/clients/client-ec2/src/commands/CreateVpcCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcCommand.ts @@ -163,29 +163,29 @@ export interface CreateVpcCommandOutput extends CreateVpcResult, __MetadataBeare * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a VPC * ```javascript * // This example creates a VPC with the specified CIDR block. * const input = { - * "CidrBlock": "10.0.0.0/16" + * CidrBlock: "10.0.0.0/16" * }; * const command = new CreateVpcCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Vpc": { - * "CidrBlock": "10.0.0.0/16", - * "DhcpOptionsId": "dopt-7a8b9c2d", - * "InstanceTenancy": "default", - * "State": "pending", - * "VpcId": "vpc-a01106c2" + * Vpc: { + * CidrBlock: "10.0.0.0/16", + * DhcpOptionsId: "dopt-7a8b9c2d", + * InstanceTenancy: "default", + * State: "pending", + * VpcId: "vpc-a01106c2" * } * } * *\/ - * // example id: ec2-create-vpc-1 * ``` * + * @public */ export class CreateVpcCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/CreateVpcEndpointCommand.ts b/clients/client-ec2/src/commands/CreateVpcEndpointCommand.ts index 5c017be9f06c6..6b4b5acf124b1 100644 --- a/clients/client-ec2/src/commands/CreateVpcEndpointCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcEndpointCommand.ts @@ -167,6 +167,7 @@ export interface CreateVpcEndpointCommandOutput extends CreateVpcEndpointResult, * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateVpcEndpointCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateVpcEndpointConnectionNotificationCommand.ts b/clients/client-ec2/src/commands/CreateVpcEndpointConnectionNotificationCommand.ts index 886464efa57c9..009a9a1f24942 100644 --- a/clients/client-ec2/src/commands/CreateVpcEndpointConnectionNotificationCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcEndpointConnectionNotificationCommand.ts @@ -87,6 +87,7 @@ export interface CreateVpcEndpointConnectionNotificationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateVpcEndpointConnectionNotificationCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateVpcEndpointServiceConfigurationCommand.ts b/clients/client-ec2/src/commands/CreateVpcEndpointServiceConfigurationCommand.ts index 38ed20dc141bf..0329d066bbed3 100644 --- a/clients/client-ec2/src/commands/CreateVpcEndpointServiceConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcEndpointServiceConfigurationCommand.ts @@ -154,6 +154,7 @@ export interface CreateVpcEndpointServiceConfigurationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateVpcEndpointServiceConfigurationCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateVpcPeeringConnectionCommand.ts b/clients/client-ec2/src/commands/CreateVpcPeeringConnectionCommand.ts index 2a38f5337f485..d9f67f9303d65 100644 --- a/clients/client-ec2/src/commands/CreateVpcPeeringConnectionCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcPeeringConnectionCommand.ts @@ -137,6 +137,7 @@ export interface CreateVpcPeeringConnectionCommandOutput extends CreateVpcPeerin * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateVpcPeeringConnectionCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateVpnConnectionCommand.ts b/clients/client-ec2/src/commands/CreateVpnConnectionCommand.ts index 5393affc9d33a..808158842bf62 100644 --- a/clients/client-ec2/src/commands/CreateVpnConnectionCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpnConnectionCommand.ts @@ -261,6 +261,7 @@ export interface CreateVpnConnectionCommandOutput extends CreateVpnConnectionRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateVpnConnectionCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateVpnConnectionRouteCommand.ts b/clients/client-ec2/src/commands/CreateVpnConnectionRouteCommand.ts index fcca158172d01..32134e2adda63 100644 --- a/clients/client-ec2/src/commands/CreateVpnConnectionRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpnConnectionRouteCommand.ts @@ -58,6 +58,7 @@ export interface CreateVpnConnectionRouteCommandOutput extends __MetadataBearer * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateVpnConnectionRouteCommand extends $Command diff --git a/clients/client-ec2/src/commands/CreateVpnGatewayCommand.ts b/clients/client-ec2/src/commands/CreateVpnGatewayCommand.ts index 058cd0ecba80c..7713009a8a73b 100644 --- a/clients/client-ec2/src/commands/CreateVpnGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpnGatewayCommand.ts @@ -91,6 +91,7 @@ export interface CreateVpnGatewayCommandOutput extends CreateVpnGatewayResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class CreateVpnGatewayCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteCarrierGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteCarrierGatewayCommand.ts index b4a358afc17ae..c106c157ed248 100644 --- a/clients/client-ec2/src/commands/DeleteCarrierGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteCarrierGatewayCommand.ts @@ -72,6 +72,7 @@ export interface DeleteCarrierGatewayCommandOutput extends DeleteCarrierGatewayR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteCarrierGatewayCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteClientVpnEndpointCommand.ts b/clients/client-ec2/src/commands/DeleteClientVpnEndpointCommand.ts index a2f62adadb2e0..1c346e42bfcb7 100644 --- a/clients/client-ec2/src/commands/DeleteClientVpnEndpointCommand.ts +++ b/clients/client-ec2/src/commands/DeleteClientVpnEndpointCommand.ts @@ -60,6 +60,7 @@ export interface DeleteClientVpnEndpointCommandOutput extends DeleteClientVpnEnd * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteClientVpnEndpointCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteClientVpnRouteCommand.ts b/clients/client-ec2/src/commands/DeleteClientVpnRouteCommand.ts index 301b11e547e7c..5aa9d8a9cd6bf 100644 --- a/clients/client-ec2/src/commands/DeleteClientVpnRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteClientVpnRouteCommand.ts @@ -64,6 +64,7 @@ export interface DeleteClientVpnRouteCommandOutput extends DeleteClientVpnRouteR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteClientVpnRouteCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteCoipCidrCommand.ts b/clients/client-ec2/src/commands/DeleteCoipCidrCommand.ts index 60369e9c5d277..283ac85aac777 100644 --- a/clients/client-ec2/src/commands/DeleteCoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/DeleteCoipCidrCommand.ts @@ -63,6 +63,7 @@ export interface DeleteCoipCidrCommandOutput extends DeleteCoipCidrResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteCoipCidrCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteCoipPoolCommand.ts b/clients/client-ec2/src/commands/DeleteCoipPoolCommand.ts index 43f1a5feef9ac..7b7242c64b5a0 100644 --- a/clients/client-ec2/src/commands/DeleteCoipPoolCommand.ts +++ b/clients/client-ec2/src/commands/DeleteCoipPoolCommand.ts @@ -69,6 +69,7 @@ export interface DeleteCoipPoolCommandOutput extends DeleteCoipPoolResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteCoipPoolCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteCustomerGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteCustomerGatewayCommand.ts index f1eb910720058..36a1354c754df 100644 --- a/clients/client-ec2/src/commands/DeleteCustomerGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteCustomerGatewayCommand.ts @@ -55,18 +55,21 @@ export interface DeleteCustomerGatewayCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a customer gateway * ```javascript * // This example deletes the specified customer gateway. * const input = { - * "CustomerGatewayId": "cgw-0e11f167" + * CustomerGatewayId: "cgw-0e11f167" * }; * const command = new DeleteCustomerGatewayCommand(input); - * await client.send(command); - * // example id: ec2-delete-customer-gateway-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteCustomerGatewayCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteDhcpOptionsCommand.ts b/clients/client-ec2/src/commands/DeleteDhcpOptionsCommand.ts index e8a75e8553498..bc401cb753e15 100644 --- a/clients/client-ec2/src/commands/DeleteDhcpOptionsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteDhcpOptionsCommand.ts @@ -54,18 +54,21 @@ export interface DeleteDhcpOptionsCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a DHCP options set * ```javascript * // This example deletes the specified DHCP options set. * const input = { - * "DhcpOptionsId": "dopt-d9070ebb" + * DhcpOptionsId: "dopt-d9070ebb" * }; * const command = new DeleteDhcpOptionsCommand(input); - * await client.send(command); - * // example id: ec2-delete-dhcp-options-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteDhcpOptionsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteEgressOnlyInternetGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteEgressOnlyInternetGatewayCommand.ts index 30277bdba1545..8a71f87f0b867 100644 --- a/clients/client-ec2/src/commands/DeleteEgressOnlyInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteEgressOnlyInternetGatewayCommand.ts @@ -61,6 +61,7 @@ export interface DeleteEgressOnlyInternetGatewayCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteEgressOnlyInternetGatewayCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteFleetsCommand.ts b/clients/client-ec2/src/commands/DeleteFleetsCommand.ts index fa8b6c6732e45..c36f35cedfa2a 100644 --- a/clients/client-ec2/src/commands/DeleteFleetsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteFleetsCommand.ts @@ -108,6 +108,7 @@ export interface DeleteFleetsCommandOutput extends DeleteFleetsResult, __Metadat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteFleetsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteFlowLogsCommand.ts b/clients/client-ec2/src/commands/DeleteFlowLogsCommand.ts index d61e782c4a411..eddf269d3d033 100644 --- a/clients/client-ec2/src/commands/DeleteFlowLogsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteFlowLogsCommand.ts @@ -66,6 +66,7 @@ export interface DeleteFlowLogsCommandOutput extends DeleteFlowLogsResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteFlowLogsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteFpgaImageCommand.ts b/clients/client-ec2/src/commands/DeleteFpgaImageCommand.ts index d5e2f12f043ba..4cf8d6e5c46ca 100644 --- a/clients/client-ec2/src/commands/DeleteFpgaImageCommand.ts +++ b/clients/client-ec2/src/commands/DeleteFpgaImageCommand.ts @@ -56,6 +56,7 @@ export interface DeleteFpgaImageCommandOutput extends DeleteFpgaImageResult, __M * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteFpgaImageCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteInstanceConnectEndpointCommand.ts b/clients/client-ec2/src/commands/DeleteInstanceConnectEndpointCommand.ts index 96351f07a4b84..94e575afe0b19 100644 --- a/clients/client-ec2/src/commands/DeleteInstanceConnectEndpointCommand.ts +++ b/clients/client-ec2/src/commands/DeleteInstanceConnectEndpointCommand.ts @@ -83,6 +83,7 @@ export interface DeleteInstanceConnectEndpointCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteInstanceConnectEndpointCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/DeleteInstanceEventWindowCommand.ts index 1092a572f4e86..cac97fc230574 100644 --- a/clients/client-ec2/src/commands/DeleteInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/DeleteInstanceEventWindowCommand.ts @@ -62,6 +62,7 @@ export interface DeleteInstanceEventWindowCommandOutput extends DeleteInstanceEv * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteInstanceEventWindowCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteInternetGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteInternetGatewayCommand.ts index 35116c956668b..4f63e78560c1c 100644 --- a/clients/client-ec2/src/commands/DeleteInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteInternetGatewayCommand.ts @@ -55,18 +55,21 @@ export interface DeleteInternetGatewayCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete an Internet gateway * ```javascript * // This example deletes the specified Internet gateway. * const input = { - * "InternetGatewayId": "igw-c0a643a9" + * InternetGatewayId: "igw-c0a643a9" * }; * const command = new DeleteInternetGatewayCommand(input); - * await client.send(command); - * // example id: ec2-delete-internet-gateway-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteInternetGatewayCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteIpamCommand.ts b/clients/client-ec2/src/commands/DeleteIpamCommand.ts index b0f895f215f6a..bd804e5767032 100644 --- a/clients/client-ec2/src/commands/DeleteIpamCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamCommand.ts @@ -86,6 +86,7 @@ export interface DeleteIpamCommandOutput extends DeleteIpamResult, __MetadataBea * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteIpamCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteIpamExternalResourceVerificationTokenCommand.ts b/clients/client-ec2/src/commands/DeleteIpamExternalResourceVerificationTokenCommand.ts index 235ce26f7c948..939eae6e6d9f2 100644 --- a/clients/client-ec2/src/commands/DeleteIpamExternalResourceVerificationTokenCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamExternalResourceVerificationTokenCommand.ts @@ -83,6 +83,7 @@ export interface DeleteIpamExternalResourceVerificationTokenCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteIpamExternalResourceVerificationTokenCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteIpamPoolCommand.ts b/clients/client-ec2/src/commands/DeleteIpamPoolCommand.ts index e491a9ffc285f..5b2b17e416bf4 100644 --- a/clients/client-ec2/src/commands/DeleteIpamPoolCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamPoolCommand.ts @@ -104,6 +104,7 @@ export interface DeleteIpamPoolCommandOutput extends DeleteIpamPoolResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteIpamPoolCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/DeleteIpamResourceDiscoveryCommand.ts index f7cf599e7d4d2..ff2e3fcfa2249 100644 --- a/clients/client-ec2/src/commands/DeleteIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamResourceDiscoveryCommand.ts @@ -80,6 +80,7 @@ export interface DeleteIpamResourceDiscoveryCommandOutput extends DeleteIpamReso * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteIpamResourceDiscoveryCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteIpamScopeCommand.ts b/clients/client-ec2/src/commands/DeleteIpamScopeCommand.ts index 8e6234ebe2d50..95b2caceed50f 100644 --- a/clients/client-ec2/src/commands/DeleteIpamScopeCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamScopeCommand.ts @@ -75,6 +75,7 @@ export interface DeleteIpamScopeCommandOutput extends DeleteIpamScopeResult, __M * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteIpamScopeCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteKeyPairCommand.ts b/clients/client-ec2/src/commands/DeleteKeyPairCommand.ts index c986a787cbaf5..2ede76b729b63 100644 --- a/clients/client-ec2/src/commands/DeleteKeyPairCommand.ts +++ b/clients/client-ec2/src/commands/DeleteKeyPairCommand.ts @@ -58,18 +58,21 @@ export interface DeleteKeyPairCommandOutput extends DeleteKeyPairResult, __Metad * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a key pair * ```javascript * // This example deletes the specified key pair. * const input = { - * "KeyName": "my-key-pair" + * KeyName: "my-key-pair" * }; * const command = new DeleteKeyPairCommand(input); - * await client.send(command); - * // example id: ec2-delete-key-pair-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteKeyPairCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteLaunchTemplateCommand.ts b/clients/client-ec2/src/commands/DeleteLaunchTemplateCommand.ts index c416864deea12..ba8296606e90b 100644 --- a/clients/client-ec2/src/commands/DeleteLaunchTemplateCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLaunchTemplateCommand.ts @@ -75,30 +75,30 @@ export interface DeleteLaunchTemplateCommandOutput extends DeleteLaunchTemplateR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a launch template * ```javascript * // This example deletes the specified launch template. * const input = { - * "LaunchTemplateId": "lt-0abcd290751193123" + * LaunchTemplateId: "lt-0abcd290751193123" * }; * const command = new DeleteLaunchTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LaunchTemplate": { - * "CreateTime": "2017-11-23T16:46:25.000Z", - * "CreatedBy": "arn:aws:iam::123456789012:root", - * "DefaultVersionNumber": 2, - * "LatestVersionNumber": 2, - * "LaunchTemplateId": "lt-0abcd290751193123", - * "LaunchTemplateName": "my-template" + * LaunchTemplate: { + * CreateTime: "2017-11-23T16:46:25.000Z", + * CreatedBy: "arn:aws:iam::123456789012:root", + * DefaultVersionNumber: 2, + * LatestVersionNumber: 2, + * LaunchTemplateId: "lt-0abcd290751193123", + * LaunchTemplateName: "my-template" * } * } * *\/ - * // example id: to-delete-a-launch-template-1529024658216 * ``` * + * @public */ export class DeleteLaunchTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteLaunchTemplateVersionsCommand.ts b/clients/client-ec2/src/commands/DeleteLaunchTemplateVersionsCommand.ts index e9a4fa78adb63..7bc045d83b065 100644 --- a/clients/client-ec2/src/commands/DeleteLaunchTemplateVersionsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLaunchTemplateVersionsCommand.ts @@ -87,33 +87,33 @@ export interface DeleteLaunchTemplateVersionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a launch template version * ```javascript * // This example deletes the specified launch template version. * const input = { - * "LaunchTemplateId": "lt-0abcd290751193123", - * "Versions": [ + * LaunchTemplateId: "lt-0abcd290751193123", + * Versions: [ * "1" * ] * }; * const command = new DeleteLaunchTemplateVersionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SuccessfullyDeletedLaunchTemplateVersions": [ + * SuccessfullyDeletedLaunchTemplateVersions: [ * { - * "LaunchTemplateId": "lt-0abcd290751193123", - * "LaunchTemplateName": "my-template", - * "VersionNumber": 1 + * LaunchTemplateId: "lt-0abcd290751193123", + * LaunchTemplateName: "my-template", + * VersionNumber: 1 * } * ], - * "UnsuccessfullyDeletedLaunchTemplateVersions": [] + * UnsuccessfullyDeletedLaunchTemplateVersions: [] * } * *\/ - * // example id: to-delete-a-launch-template-version-1529024790864 * ``` * + * @public */ export class DeleteLaunchTemplateVersionsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteCommand.ts b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteCommand.ts index 5c8ae2670ef70..d9d87613370a9 100644 --- a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteCommand.ts @@ -70,6 +70,7 @@ export interface DeleteLocalGatewayRouteCommandOutput extends DeleteLocalGateway * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteLocalGatewayRouteCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableCommand.ts index 1b956d8c21cf2..695976d51b2b5 100644 --- a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableCommand.ts @@ -78,6 +78,7 @@ export interface DeleteLocalGatewayRouteTableCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteLocalGatewayRouteTableCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts index be7cc96bc8786..67c2fa27223f1 100644 --- a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts @@ -81,6 +81,7 @@ export interface DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCom * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.ts b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.ts index 04bf453f7a142..d750bc26773af 100644 --- a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.ts @@ -79,6 +79,7 @@ export interface DeleteLocalGatewayRouteTableVpcAssociationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteLocalGatewayRouteTableVpcAssociationCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteManagedPrefixListCommand.ts b/clients/client-ec2/src/commands/DeleteManagedPrefixListCommand.ts index e4ce4d3884440..c5f710638c001 100644 --- a/clients/client-ec2/src/commands/DeleteManagedPrefixListCommand.ts +++ b/clients/client-ec2/src/commands/DeleteManagedPrefixListCommand.ts @@ -72,6 +72,7 @@ export interface DeleteManagedPrefixListCommandOutput extends DeleteManagedPrefi * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteManagedPrefixListCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteNatGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteNatGatewayCommand.ts index 4741505b04bc4..23b99a2d374f8 100644 --- a/clients/client-ec2/src/commands/DeleteNatGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNatGatewayCommand.ts @@ -58,23 +58,23 @@ export interface DeleteNatGatewayCommandOutput extends DeleteNatGatewayResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a NAT gateway * ```javascript * // This example deletes the specified NAT gateway. * const input = { - * "NatGatewayId": "nat-04ae55e711cec5680" + * NatGatewayId: "nat-04ae55e711cec5680" * }; * const command = new DeleteNatGatewayCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NatGatewayId": "nat-04ae55e711cec5680" + * NatGatewayId: "nat-04ae55e711cec5680" * } * *\/ - * // example id: ec2-delete-nat-gateway-1 * ``` * + * @public */ export class DeleteNatGatewayCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteNetworkAclCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkAclCommand.ts index 0a7a30d182364..31c010294562b 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkAclCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkAclCommand.ts @@ -54,18 +54,21 @@ export interface DeleteNetworkAclCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a network ACL * ```javascript * // This example deletes the specified network ACL. * const input = { - * "NetworkAclId": "acl-5fb85d36" + * NetworkAclId: "acl-5fb85d36" * }; * const command = new DeleteNetworkAclCommand(input); - * await client.send(command); - * // example id: ec2-delete-network-acl-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteNetworkAclCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteNetworkAclEntryCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkAclEntryCommand.ts index 863d3bd885fe7..75fafad05293e 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkAclEntryCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkAclEntryCommand.ts @@ -56,20 +56,23 @@ export interface DeleteNetworkAclEntryCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a network ACL entry * ```javascript * // This example deletes ingress rule number 100 from the specified network ACL. * const input = { - * "Egress": true, - * "NetworkAclId": "acl-5fb85d36", - * "RuleNumber": 100 + * Egress: true, + * NetworkAclId: "acl-5fb85d36", + * RuleNumber: 100 * }; * const command = new DeleteNetworkAclEntryCommand(input); - * await client.send(command); - * // example id: ec2-delete-network-acl-entry-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteNetworkAclEntryCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.ts index bde41f950fb4f..56c62b721a4d2 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.ts @@ -65,6 +65,7 @@ export interface DeleteNetworkInsightsAccessScopeAnalysisCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteNetworkInsightsAccessScopeAnalysisCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeCommand.ts index 7fa44ebc9c3bc..29a34feff52b0 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeCommand.ts @@ -61,6 +61,7 @@ export interface DeleteNetworkInsightsAccessScopeCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteNetworkInsightsAccessScopeCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteNetworkInsightsAnalysisCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInsightsAnalysisCommand.ts index c38c74b849d24..2d2e8fcc83a0a 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInsightsAnalysisCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInsightsAnalysisCommand.ts @@ -58,6 +58,7 @@ export interface DeleteNetworkInsightsAnalysisCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteNetworkInsightsAnalysisCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteNetworkInsightsPathCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInsightsPathCommand.ts index eaffd9196b2a5..dae28d9199f90 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInsightsPathCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInsightsPathCommand.ts @@ -56,6 +56,7 @@ export interface DeleteNetworkInsightsPathCommandOutput extends DeleteNetworkIns * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteNetworkInsightsPathCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteNetworkInterfaceCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInterfaceCommand.ts index c2898de9b3e7f..2b4720df99d3c 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInterfaceCommand.ts @@ -54,18 +54,21 @@ export interface DeleteNetworkInterfaceCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a network interface * ```javascript * // This example deletes the specified network interface. * const input = { - * "NetworkInterfaceId": "eni-e5aa89a3" + * NetworkInterfaceId: "eni-e5aa89a3" * }; * const command = new DeleteNetworkInterfaceCommand(input); - * await client.send(command); - * // example id: ec2-delete-network-interface-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteNetworkInterfaceCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteNetworkInterfacePermissionCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInterfacePermissionCommand.ts index c9bb44d37d21c..91ad26f398cfc 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInterfacePermissionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInterfacePermissionCommand.ts @@ -65,6 +65,7 @@ export interface DeleteNetworkInterfacePermissionCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteNetworkInterfacePermissionCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeletePlacementGroupCommand.ts b/clients/client-ec2/src/commands/DeletePlacementGroupCommand.ts index 05af5ca2b670b..5bd349038c2e5 100644 --- a/clients/client-ec2/src/commands/DeletePlacementGroupCommand.ts +++ b/clients/client-ec2/src/commands/DeletePlacementGroupCommand.ts @@ -56,19 +56,22 @@ export interface DeletePlacementGroupCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a placement group * ```javascript * // This example deletes the specified placement group. - * // + * * const input = { - * "GroupName": "my-cluster" + * GroupName: "my-cluster" * }; * const command = new DeletePlacementGroupCommand(input); - * await client.send(command); - * // example id: to-delete-a-placement-group-1472712349959 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeletePlacementGroupCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeletePublicIpv4PoolCommand.ts b/clients/client-ec2/src/commands/DeletePublicIpv4PoolCommand.ts index c52dec38dc8b9..a917151b1428f 100644 --- a/clients/client-ec2/src/commands/DeletePublicIpv4PoolCommand.ts +++ b/clients/client-ec2/src/commands/DeletePublicIpv4PoolCommand.ts @@ -57,6 +57,7 @@ export interface DeletePublicIpv4PoolCommandOutput extends DeletePublicIpv4PoolR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeletePublicIpv4PoolCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteQueuedReservedInstancesCommand.ts b/clients/client-ec2/src/commands/DeleteQueuedReservedInstancesCommand.ts index 32ed4574734f3..93f2c9bcdee0a 100644 --- a/clients/client-ec2/src/commands/DeleteQueuedReservedInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DeleteQueuedReservedInstancesCommand.ts @@ -73,6 +73,7 @@ export interface DeleteQueuedReservedInstancesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteQueuedReservedInstancesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteRouteCommand.ts b/clients/client-ec2/src/commands/DeleteRouteCommand.ts index 9c855bbdf8248..214be83e58ae9 100644 --- a/clients/client-ec2/src/commands/DeleteRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteRouteCommand.ts @@ -57,19 +57,22 @@ export interface DeleteRouteCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a route * ```javascript * // This example deletes the specified route from the specified route table. * const input = { - * "DestinationCidrBlock": "0.0.0.0/0", - * "RouteTableId": "rtb-22574640" + * DestinationCidrBlock: "0.0.0.0/0", + * RouteTableId: "rtb-22574640" * }; * const command = new DeleteRouteCommand(input); - * await client.send(command); - * // example id: ec2-delete-route-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteRouteCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteRouteTableCommand.ts b/clients/client-ec2/src/commands/DeleteRouteTableCommand.ts index be343d31defe5..d49b176c4f38d 100644 --- a/clients/client-ec2/src/commands/DeleteRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DeleteRouteTableCommand.ts @@ -54,18 +54,21 @@ export interface DeleteRouteTableCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a route table * ```javascript * // This example deletes the specified route table. * const input = { - * "RouteTableId": "rtb-22574640" + * RouteTableId: "rtb-22574640" * }; * const command = new DeleteRouteTableCommand(input); - * await client.send(command); - * // example id: ec2-delete-route-table-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteRouteTableCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteSecurityGroupCommand.ts b/clients/client-ec2/src/commands/DeleteSecurityGroupCommand.ts index a2a706bfdc7b1..25d1c9a490cbf 100644 --- a/clients/client-ec2/src/commands/DeleteSecurityGroupCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSecurityGroupCommand.ts @@ -61,18 +61,21 @@ export interface DeleteSecurityGroupCommandOutput extends DeleteSecurityGroupRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a security group * ```javascript * // This example deletes the specified security group. * const input = { - * "GroupId": "sg-903004f8" + * GroupId: "sg-903004f8" * }; * const command = new DeleteSecurityGroupCommand(input); - * await client.send(command); - * // example id: to-delete-a-security-group-1529024952972 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteSecurityGroupCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteSnapshotCommand.ts b/clients/client-ec2/src/commands/DeleteSnapshotCommand.ts index 14b2b97871663..a0c81e7442bcf 100644 --- a/clients/client-ec2/src/commands/DeleteSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSnapshotCommand.ts @@ -63,18 +63,21 @@ export interface DeleteSnapshotCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a snapshot * ```javascript * // This example deletes a snapshot with the snapshot ID of ``snap-1234567890abcdef0``. If the command succeeds, no output is returned. * const input = { - * "SnapshotId": "snap-1234567890abcdef0" + * SnapshotId: "snap-1234567890abcdef0" * }; * const command = new DeleteSnapshotCommand(input); - * await client.send(command); - * // example id: to-delete-a-snapshot-1472503042567 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteSnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteSpotDatafeedSubscriptionCommand.ts b/clients/client-ec2/src/commands/DeleteSpotDatafeedSubscriptionCommand.ts index 865e02bdcd537..4a0c72725529e 100644 --- a/clients/client-ec2/src/commands/DeleteSpotDatafeedSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSpotDatafeedSubscriptionCommand.ts @@ -56,16 +56,19 @@ export interface DeleteSpotDatafeedSubscriptionCommandOutput extends __MetadataB * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To cancel a Spot Instance data feed subscription * ```javascript * // This example deletes a Spot data feed subscription for the account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DeleteSpotDatafeedSubscriptionCommand(input); - * await client.send(command); - * // example id: ec2-delete-spot-datafeed-subscription-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteSpotDatafeedSubscriptionCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteSubnetCidrReservationCommand.ts b/clients/client-ec2/src/commands/DeleteSubnetCidrReservationCommand.ts index 7d06930144c33..2f9c62402af0d 100644 --- a/clients/client-ec2/src/commands/DeleteSubnetCidrReservationCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSubnetCidrReservationCommand.ts @@ -69,6 +69,7 @@ export interface DeleteSubnetCidrReservationCommandOutput extends DeleteSubnetCi * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteSubnetCidrReservationCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteSubnetCommand.ts b/clients/client-ec2/src/commands/DeleteSubnetCommand.ts index c2f2eabfded66..e8737027e56a1 100644 --- a/clients/client-ec2/src/commands/DeleteSubnetCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSubnetCommand.ts @@ -54,18 +54,21 @@ export interface DeleteSubnetCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a subnet * ```javascript * // This example deletes the specified subnet. * const input = { - * "SubnetId": "subnet-9d4a7b6c" + * SubnetId: "subnet-9d4a7b6c" * }; * const command = new DeleteSubnetCommand(input); - * await client.send(command); - * // example id: ec2-delete-subnet-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteSubnetCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteTagsCommand.ts b/clients/client-ec2/src/commands/DeleteTagsCommand.ts index 3eb90aa43dfc7..0e5b769fdaca9 100644 --- a/clients/client-ec2/src/commands/DeleteTagsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTagsCommand.ts @@ -66,26 +66,29 @@ export interface DeleteTagsCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a tag from a resource * ```javascript * // This example deletes the tag Stack=test from the specified image. * const input = { - * "Resources": [ + * Resources: [ * "ami-78a54011" * ], - * "Tags": [ + * Tags: [ * { - * "Key": "Stack", - * "Value": "test" + * Key: "Stack", + * Value: "test" * } * ] * }; * const command = new DeleteTagsCommand(input); - * await client.send(command); - * // example id: ec2-delete-tags-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteTagsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterCommand.ts b/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterCommand.ts index 4e3ec7d5f7236..8d0c540535e16 100644 --- a/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterCommand.ts @@ -57,6 +57,7 @@ export interface DeleteTrafficMirrorFilterCommandOutput extends DeleteTrafficMir * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTrafficMirrorFilterCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterRuleCommand.ts b/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterRuleCommand.ts index c92638780d4df..69e8ccab71e3a 100644 --- a/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterRuleCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterRuleCommand.ts @@ -58,6 +58,7 @@ export interface DeleteTrafficMirrorFilterRuleCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTrafficMirrorFilterRuleCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteTrafficMirrorSessionCommand.ts b/clients/client-ec2/src/commands/DeleteTrafficMirrorSessionCommand.ts index c9639dafd7e75..9794ff4f80c06 100644 --- a/clients/client-ec2/src/commands/DeleteTrafficMirrorSessionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTrafficMirrorSessionCommand.ts @@ -56,6 +56,7 @@ export interface DeleteTrafficMirrorSessionCommandOutput extends DeleteTrafficMi * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTrafficMirrorSessionCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteTrafficMirrorTargetCommand.ts b/clients/client-ec2/src/commands/DeleteTrafficMirrorTargetCommand.ts index 24534f737d040..ee01794b43a39 100644 --- a/clients/client-ec2/src/commands/DeleteTrafficMirrorTargetCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTrafficMirrorTargetCommand.ts @@ -57,6 +57,7 @@ export interface DeleteTrafficMirrorTargetCommandOutput extends DeleteTrafficMir * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTrafficMirrorTargetCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayCommand.ts index 0a408d29075e6..092013446cc54 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayCommand.ts @@ -84,6 +84,7 @@ export interface DeleteTransitGatewayCommandOutput extends DeleteTransitGatewayR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTransitGatewayCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayConnectCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayConnectCommand.ts index 2da18648baa38..a683137a69297 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayConnectCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayConnectCommand.ts @@ -72,6 +72,7 @@ export interface DeleteTransitGatewayConnectCommandOutput extends DeleteTransitG * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTransitGatewayConnectCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayConnectPeerCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayConnectPeerCommand.ts index 2560b849fb002..299316943fbf1 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayConnectPeerCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayConnectPeerCommand.ts @@ -89,6 +89,7 @@ export interface DeleteTransitGatewayConnectPeerCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTransitGatewayConnectPeerCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayMulticastDomainCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayMulticastDomainCommand.ts index 6592d14b6e872..c37048a61161f 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayMulticastDomainCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayMulticastDomainCommand.ts @@ -82,6 +82,7 @@ export interface DeleteTransitGatewayMulticastDomainCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTransitGatewayMulticastDomainCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayPeeringAttachmentCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayPeeringAttachmentCommand.ts index b1722bf61354a..2e3c7b8825422 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayPeeringAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayPeeringAttachmentCommand.ts @@ -95,6 +95,7 @@ export interface DeleteTransitGatewayPeeringAttachmentCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTransitGatewayPeeringAttachmentCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayPolicyTableCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayPolicyTableCommand.ts index 072aec4af2b00..d2d34be71df81 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayPolicyTableCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayPolicyTableCommand.ts @@ -72,6 +72,7 @@ export interface DeleteTransitGatewayPolicyTableCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTransitGatewayPolicyTableCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayPrefixListReferenceCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayPrefixListReferenceCommand.ts index 68bc2bd071e46..04efd84a58fc7 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayPrefixListReferenceCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayPrefixListReferenceCommand.ts @@ -77,6 +77,7 @@ export interface DeleteTransitGatewayPrefixListReferenceCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTransitGatewayPrefixListReferenceCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteCommand.ts index e9642a8cb810e..9868af5019dc5 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteCommand.ts @@ -70,6 +70,7 @@ export interface DeleteTransitGatewayRouteCommandOutput extends DeleteTransitGat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTransitGatewayRouteCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.ts index 0f54207aa0e71..18d0f9ce1704c 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.ts @@ -82,6 +82,7 @@ export interface DeleteTransitGatewayRouteTableAnnouncementCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTransitGatewayRouteTableAnnouncementCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableCommand.ts index b2d3688e89af7..c2d1749e0e5b0 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableCommand.ts @@ -75,6 +75,7 @@ export interface DeleteTransitGatewayRouteTableCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTransitGatewayRouteTableCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayVpcAttachmentCommand.ts index 1724edf011fba..212bb19fb3af6 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayVpcAttachmentCommand.ts @@ -83,6 +83,7 @@ export interface DeleteTransitGatewayVpcAttachmentCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteTransitGatewayVpcAttachmentCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteVerifiedAccessEndpointCommand.ts b/clients/client-ec2/src/commands/DeleteVerifiedAccessEndpointCommand.ts index 9d5428b525250..3bf3054888211 100644 --- a/clients/client-ec2/src/commands/DeleteVerifiedAccessEndpointCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVerifiedAccessEndpointCommand.ts @@ -139,6 +139,7 @@ export interface DeleteVerifiedAccessEndpointCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteVerifiedAccessEndpointCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteVerifiedAccessGroupCommand.ts b/clients/client-ec2/src/commands/DeleteVerifiedAccessGroupCommand.ts index 086c41ed5cdca..611499f7fb2e8 100644 --- a/clients/client-ec2/src/commands/DeleteVerifiedAccessGroupCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVerifiedAccessGroupCommand.ts @@ -76,6 +76,7 @@ export interface DeleteVerifiedAccessGroupCommandOutput extends DeleteVerifiedAc * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteVerifiedAccessGroupCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteVerifiedAccessInstanceCommand.ts b/clients/client-ec2/src/commands/DeleteVerifiedAccessInstanceCommand.ts index 86b5ec35542c5..6cc5d88e81901 100644 --- a/clients/client-ec2/src/commands/DeleteVerifiedAccessInstanceCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVerifiedAccessInstanceCommand.ts @@ -86,6 +86,7 @@ export interface DeleteVerifiedAccessInstanceCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteVerifiedAccessInstanceCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/DeleteVerifiedAccessTrustProviderCommand.ts index d03c7e13d9845..c742f2a18a0a0 100644 --- a/clients/client-ec2/src/commands/DeleteVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVerifiedAccessTrustProviderCommand.ts @@ -107,6 +107,7 @@ export interface DeleteVerifiedAccessTrustProviderCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteVerifiedAccessTrustProviderCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteVolumeCommand.ts b/clients/client-ec2/src/commands/DeleteVolumeCommand.ts index 5074dd147c146..52f5a24485665 100644 --- a/clients/client-ec2/src/commands/DeleteVolumeCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVolumeCommand.ts @@ -58,18 +58,21 @@ export interface DeleteVolumeCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a volume * ```javascript * // This example deletes an available volume with the volume ID of ``vol-049df61146c4d7901``. If the command succeeds, no output is returned. * const input = { - * "VolumeId": "vol-049df61146c4d7901" + * VolumeId: "vol-049df61146c4d7901" * }; * const command = new DeleteVolumeCommand(input); - * await client.send(command); - * // example id: to-delete-a-volume-1472503111160 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteVolumeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteVpcBlockPublicAccessExclusionCommand.ts b/clients/client-ec2/src/commands/DeleteVpcBlockPublicAccessExclusionCommand.ts index d9e7b1cb26d88..004f231330226 100644 --- a/clients/client-ec2/src/commands/DeleteVpcBlockPublicAccessExclusionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcBlockPublicAccessExclusionCommand.ts @@ -79,6 +79,7 @@ export interface DeleteVpcBlockPublicAccessExclusionCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteVpcBlockPublicAccessExclusionCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteVpcCommand.ts b/clients/client-ec2/src/commands/DeleteVpcCommand.ts index 2c244a3071130..25dce5a4f3613 100644 --- a/clients/client-ec2/src/commands/DeleteVpcCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcCommand.ts @@ -60,18 +60,21 @@ export interface DeleteVpcCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To delete a VPC * ```javascript * // This example deletes the specified VPC. * const input = { - * "VpcId": "vpc-a01106c2" + * VpcId: "vpc-a01106c2" * }; * const command = new DeleteVpcCommand(input); - * await client.send(command); - * // example id: ec2-delete-vpc-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteVpcCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DeleteVpcEndpointConnectionNotificationsCommand.ts b/clients/client-ec2/src/commands/DeleteVpcEndpointConnectionNotificationsCommand.ts index 6da1f2602afdb..9d353da2f8c22 100644 --- a/clients/client-ec2/src/commands/DeleteVpcEndpointConnectionNotificationsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcEndpointConnectionNotificationsCommand.ts @@ -75,6 +75,7 @@ export interface DeleteVpcEndpointConnectionNotificationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteVpcEndpointConnectionNotificationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteVpcEndpointServiceConfigurationsCommand.ts b/clients/client-ec2/src/commands/DeleteVpcEndpointServiceConfigurationsCommand.ts index 5346e6952bbc5..d7f43026f9df9 100644 --- a/clients/client-ec2/src/commands/DeleteVpcEndpointServiceConfigurationsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcEndpointServiceConfigurationsCommand.ts @@ -78,6 +78,7 @@ export interface DeleteVpcEndpointServiceConfigurationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteVpcEndpointServiceConfigurationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteVpcEndpointsCommand.ts b/clients/client-ec2/src/commands/DeleteVpcEndpointsCommand.ts index 19ab9cd6ef79b..695e32d5643a2 100644 --- a/clients/client-ec2/src/commands/DeleteVpcEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcEndpointsCommand.ts @@ -70,6 +70,7 @@ export interface DeleteVpcEndpointsCommandOutput extends DeleteVpcEndpointsResul * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteVpcEndpointsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteVpcPeeringConnectionCommand.ts b/clients/client-ec2/src/commands/DeleteVpcPeeringConnectionCommand.ts index 497bb3ab52617..7d97e6b5c77e6 100644 --- a/clients/client-ec2/src/commands/DeleteVpcPeeringConnectionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcPeeringConnectionCommand.ts @@ -60,6 +60,7 @@ export interface DeleteVpcPeeringConnectionCommandOutput extends DeleteVpcPeerin * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteVpcPeeringConnectionCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteVpnConnectionCommand.ts b/clients/client-ec2/src/commands/DeleteVpnConnectionCommand.ts index bfd10079a9213..38b094d729f2b 100644 --- a/clients/client-ec2/src/commands/DeleteVpnConnectionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpnConnectionCommand.ts @@ -64,6 +64,7 @@ export interface DeleteVpnConnectionCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteVpnConnectionCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteVpnConnectionRouteCommand.ts b/clients/client-ec2/src/commands/DeleteVpnConnectionRouteCommand.ts index 56b41d744a83f..ef5a64388396c 100644 --- a/clients/client-ec2/src/commands/DeleteVpnConnectionRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpnConnectionRouteCommand.ts @@ -57,6 +57,7 @@ export interface DeleteVpnConnectionRouteCommandOutput extends __MetadataBearer * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteVpnConnectionRouteCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeleteVpnGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteVpnGatewayCommand.ts index 5c84071213e69..fe60cba7ff42a 100644 --- a/clients/client-ec2/src/commands/DeleteVpnGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpnGatewayCommand.ts @@ -57,6 +57,7 @@ export interface DeleteVpnGatewayCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeleteVpnGatewayCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeprovisionByoipCidrCommand.ts b/clients/client-ec2/src/commands/DeprovisionByoipCidrCommand.ts index 3b30ffa4026bc..f7b3bb85edddd 100644 --- a/clients/client-ec2/src/commands/DeprovisionByoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/DeprovisionByoipCidrCommand.ts @@ -73,6 +73,7 @@ export interface DeprovisionByoipCidrCommandOutput extends DeprovisionByoipCidrR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeprovisionByoipCidrCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeprovisionIpamByoasnCommand.ts b/clients/client-ec2/src/commands/DeprovisionIpamByoasnCommand.ts index 668c626cc66d8..416cb64115b17 100644 --- a/clients/client-ec2/src/commands/DeprovisionIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/DeprovisionIpamByoasnCommand.ts @@ -63,6 +63,7 @@ export interface DeprovisionIpamByoasnCommandOutput extends DeprovisionIpamByoas * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeprovisionIpamByoasnCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeprovisionIpamPoolCidrCommand.ts b/clients/client-ec2/src/commands/DeprovisionIpamPoolCidrCommand.ts index 7ef3925874009..5249b69d454c6 100644 --- a/clients/client-ec2/src/commands/DeprovisionIpamPoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/DeprovisionIpamPoolCidrCommand.ts @@ -66,6 +66,7 @@ export interface DeprovisionIpamPoolCidrCommandOutput extends DeprovisionIpamPoo * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeprovisionIpamPoolCidrCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeprovisionPublicIpv4PoolCidrCommand.ts b/clients/client-ec2/src/commands/DeprovisionPublicIpv4PoolCidrCommand.ts index 5c5d08b1e1492..20094f90bd43f 100644 --- a/clients/client-ec2/src/commands/DeprovisionPublicIpv4PoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/DeprovisionPublicIpv4PoolCidrCommand.ts @@ -62,6 +62,7 @@ export interface DeprovisionPublicIpv4PoolCidrCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeprovisionPublicIpv4PoolCidrCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeregisterImageCommand.ts b/clients/client-ec2/src/commands/DeregisterImageCommand.ts index 9e6f323e55f57..bc4448152aed8 100644 --- a/clients/client-ec2/src/commands/DeregisterImageCommand.ts +++ b/clients/client-ec2/src/commands/DeregisterImageCommand.ts @@ -65,6 +65,7 @@ export interface DeregisterImageCommandOutput extends DeregisterImageResult, __M * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeregisterImageCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeregisterInstanceEventNotificationAttributesCommand.ts b/clients/client-ec2/src/commands/DeregisterInstanceEventNotificationAttributesCommand.ts index e4cec8348fbf7..13907e509cb20 100644 --- a/clients/client-ec2/src/commands/DeregisterInstanceEventNotificationAttributesCommand.ts +++ b/clients/client-ec2/src/commands/DeregisterInstanceEventNotificationAttributesCommand.ts @@ -76,6 +76,7 @@ export interface DeregisterInstanceEventNotificationAttributesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeregisterInstanceEventNotificationAttributesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.ts b/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.ts index 01ffee5a05917..b1a138cfc8dbf 100644 --- a/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.ts +++ b/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.ts @@ -75,6 +75,7 @@ export interface DeregisterTransitGatewayMulticastGroupMembersCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeregisterTransitGatewayMulticastGroupMembersCommand extends $Command diff --git a/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.ts b/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.ts index 1a66c31fdc7a2..f06359f9b42b2 100644 --- a/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.ts +++ b/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.ts @@ -75,6 +75,7 @@ export interface DeregisterTransitGatewayMulticastGroupSourcesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DeregisterTransitGatewayMulticastGroupSourcesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-ec2/src/commands/DescribeAccountAttributesCommand.ts index 5d5646c140967..99fbbe461176f 100644 --- a/clients/client-ec2/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAccountAttributesCommand.ts @@ -102,103 +102,102 @@ export interface DescribeAccountAttributesCommandOutput extends DescribeAccountA * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe a single attribute for your AWS account * ```javascript * // This example describes the supported-platforms attribute for your AWS account. * const input = { - * "AttributeNames": [ + * AttributeNames: [ * "supported-platforms" * ] * }; * const command = new DescribeAccountAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AccountAttributes": [ + * AccountAttributes: [ * { - * "AttributeName": "supported-platforms", - * "AttributeValues": [ + * AttributeName: "supported-platforms", + * AttributeValues: [ * { - * "AttributeValue": "EC2" + * AttributeValue: "EC2" * }, * { - * "AttributeValue": "VPC" + * AttributeValue: "VPC" * } * ] * } * ] * } * *\/ - * // example id: ec2-describe-account-attributes-1 * ``` * * @example To describe all attributes for your AWS account * ```javascript * // This example describes the attributes for your AWS account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeAccountAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AccountAttributes": [ + * AccountAttributes: [ * { - * "AttributeName": "supported-platforms", - * "AttributeValues": [ + * AttributeName: "supported-platforms", + * AttributeValues: [ * { - * "AttributeValue": "EC2" + * AttributeValue: "EC2" * }, * { - * "AttributeValue": "VPC" + * AttributeValue: "VPC" * } * ] * }, * { - * "AttributeName": "vpc-max-security-groups-per-interface", - * "AttributeValues": [ + * AttributeName: "vpc-max-security-groups-per-interface", + * AttributeValues: [ * { - * "AttributeValue": "5" + * AttributeValue: "5" * } * ] * }, * { - * "AttributeName": "max-elastic-ips", - * "AttributeValues": [ + * AttributeName: "max-elastic-ips", + * AttributeValues: [ * { - * "AttributeValue": "5" + * AttributeValue: "5" * } * ] * }, * { - * "AttributeName": "max-instances", - * "AttributeValues": [ + * AttributeName: "max-instances", + * AttributeValues: [ * { - * "AttributeValue": "20" + * AttributeValue: "20" * } * ] * }, * { - * "AttributeName": "vpc-max-elastic-ips", - * "AttributeValues": [ + * AttributeName: "vpc-max-elastic-ips", + * AttributeValues: [ * { - * "AttributeValue": "5" + * AttributeValue: "5" * } * ] * }, * { - * "AttributeName": "default-vpc", - * "AttributeValues": [ + * AttributeName: "default-vpc", + * AttributeValues: [ * { - * "AttributeValue": "none" + * AttributeValue: "none" * } * ] * } * ] * } * *\/ - * // example id: ec2-describe-account-attributes-2 * ``` * + * @public */ export class DescribeAccountAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeAddressTransfersCommand.ts b/clients/client-ec2/src/commands/DescribeAddressTransfersCommand.ts index 53ca206f9aac4..d7d6a3792ea60 100644 --- a/clients/client-ec2/src/commands/DescribeAddressTransfersCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAddressTransfersCommand.ts @@ -79,6 +79,7 @@ export interface DescribeAddressTransfersCommandOutput extends DescribeAddressTr * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeAddressTransfersCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeAddressesAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeAddressesAttributeCommand.ts index 0be601964dbea..e2f4755eb4d52 100644 --- a/clients/client-ec2/src/commands/DescribeAddressesAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAddressesAttributeCommand.ts @@ -73,6 +73,7 @@ export interface DescribeAddressesAttributeCommandOutput extends DescribeAddress * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeAddressesAttributeCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeAddressesCommand.ts b/clients/client-ec2/src/commands/DescribeAddressesCommand.ts index 1bfc2231dda3d..93fb1c9a96865 100644 --- a/clients/client-ec2/src/commands/DescribeAddressesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAddressesCommand.ts @@ -92,37 +92,37 @@ export interface DescribeAddressesCommandOutput extends DescribeAddressesResult, * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe your Elastic IP addresses * ```javascript * // This example describes your Elastic IP addresses. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeAddressesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Addresses": [ + * Addresses: [ * { - * "Domain": "standard", - * "InstanceId": "i-1234567890abcdef0", - * "PublicIp": "198.51.100.0" + * Domain: "standard", + * InstanceId: "i-1234567890abcdef0", + * PublicIp: "198.51.100.0" * }, * { - * "AllocationId": "eipalloc-12345678", - * "AssociationId": "eipassoc-12345678", - * "Domain": "vpc", - * "InstanceId": "i-1234567890abcdef0", - * "NetworkInterfaceId": "eni-12345678", - * "NetworkInterfaceOwnerId": "123456789012", - * "PrivateIpAddress": "10.0.1.241", - * "PublicIp": "203.0.113.0" + * AllocationId: "eipalloc-12345678", + * AssociationId: "eipassoc-12345678", + * Domain: "vpc", + * InstanceId: "i-1234567890abcdef0", + * NetworkInterfaceId: "eni-12345678", + * NetworkInterfaceOwnerId: "123456789012", + * PrivateIpAddress: "10.0.1.241", + * PublicIp: "203.0.113.0" * } * ] * } * *\/ - * // example id: ec2-describe-addresses-1 * ``` * + * @public */ export class DescribeAddressesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeAggregateIdFormatCommand.ts b/clients/client-ec2/src/commands/DescribeAggregateIdFormatCommand.ts index 6351229fe1273..d7da328b4e173 100644 --- a/clients/client-ec2/src/commands/DescribeAggregateIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAggregateIdFormatCommand.ts @@ -78,6 +78,7 @@ export interface DescribeAggregateIdFormatCommandOutput extends DescribeAggregat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeAggregateIdFormatCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeAvailabilityZonesCommand.ts b/clients/client-ec2/src/commands/DescribeAvailabilityZonesCommand.ts index 6b1d391e31ff7..6f84168f18f59 100644 --- a/clients/client-ec2/src/commands/DescribeAvailabilityZonesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAvailabilityZonesCommand.ts @@ -98,46 +98,46 @@ export interface DescribeAvailabilityZonesCommandOutput extends DescribeAvailabi * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe your Availability Zones * ```javascript * // This example describes the Availability Zones that are available to you. The response includes Availability Zones only for the current region. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeAvailabilityZonesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AvailabilityZones": [ + * AvailabilityZones: [ * { - * "Messages": [], - * "RegionName": "us-east-1", - * "State": "available", - * "ZoneName": "us-east-1b" + * Messages: [], + * RegionName: "us-east-1", + * State: "available", + * ZoneName: "us-east-1b" * }, * { - * "Messages": [], - * "RegionName": "us-east-1", - * "State": "available", - * "ZoneName": "us-east-1c" + * Messages: [], + * RegionName: "us-east-1", + * State: "available", + * ZoneName: "us-east-1c" * }, * { - * "Messages": [], - * "RegionName": "us-east-1", - * "State": "available", - * "ZoneName": "us-east-1d" + * Messages: [], + * RegionName: "us-east-1", + * State: "available", + * ZoneName: "us-east-1d" * }, * { - * "Messages": [], - * "RegionName": "us-east-1", - * "State": "available", - * "ZoneName": "us-east-1e" + * Messages: [], + * RegionName: "us-east-1", + * State: "available", + * ZoneName: "us-east-1e" * } * ] * } * *\/ - * // example id: ec2-describe-availability-zones-1 * ``` * + * @public */ export class DescribeAvailabilityZonesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.ts b/clients/client-ec2/src/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.ts index 68a487f983f42..5b1cab73ce1f8 100644 --- a/clients/client-ec2/src/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.ts @@ -83,6 +83,7 @@ export interface DescribeAwsNetworkPerformanceMetricSubscriptionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeAwsNetworkPerformanceMetricSubscriptionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeBundleTasksCommand.ts b/clients/client-ec2/src/commands/DescribeBundleTasksCommand.ts index 411f0abe3e149..8cd103848d085 100644 --- a/clients/client-ec2/src/commands/DescribeBundleTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeBundleTasksCommand.ts @@ -102,6 +102,7 @@ export interface DescribeBundleTasksCommandOutput extends DescribeBundleTasksRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeBundleTasksCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeByoipCidrsCommand.ts b/clients/client-ec2/src/commands/DescribeByoipCidrsCommand.ts index 832a758c6c3f7..a3b27ff8bb754 100644 --- a/clients/client-ec2/src/commands/DescribeByoipCidrsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeByoipCidrsCommand.ts @@ -76,6 +76,7 @@ export interface DescribeByoipCidrsCommandOutput extends DescribeByoipCidrsResul * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeByoipCidrsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionHistoryCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionHistoryCommand.ts index 9f6e0d1d3cf7d..50fc2ed9dcf56 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionHistoryCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionHistoryCommand.ts @@ -95,6 +95,7 @@ export interface DescribeCapacityBlockExtensionHistoryCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeCapacityBlockExtensionHistoryCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionOfferingsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionOfferingsCommand.ts index 2abf44bdf0e4a..995a3cd14b099 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionOfferingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionOfferingsCommand.ts @@ -85,6 +85,7 @@ export interface DescribeCapacityBlockExtensionOfferingsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeCapacityBlockExtensionOfferingsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeCapacityBlockOfferingsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityBlockOfferingsCommand.ts index 243b1cd5ed80a..c6f2260fc4679 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityBlockOfferingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityBlockOfferingsCommand.ts @@ -97,6 +97,7 @@ export interface DescribeCapacityBlockOfferingsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeCapacityBlockOfferingsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeCapacityReservationBillingRequestsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityReservationBillingRequestsCommand.ts index eae90af967f78..26c369e7cefca 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityReservationBillingRequestsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityReservationBillingRequestsCommand.ts @@ -95,6 +95,7 @@ export interface DescribeCapacityReservationBillingRequestsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeCapacityReservationBillingRequestsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts index 76b9d04ffd9b6..047513f8d0c35 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts @@ -108,6 +108,7 @@ export interface DescribeCapacityReservationFleetsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeCapacityReservationFleetsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts index 2c932ae770c7e..1c2cedb6a8a91 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts @@ -116,6 +116,7 @@ export interface DescribeCapacityReservationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeCapacityReservationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeCarrierGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeCarrierGatewaysCommand.ts index 473b511c4d190..c468a6b778b53 100644 --- a/clients/client-ec2/src/commands/DescribeCarrierGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCarrierGatewaysCommand.ts @@ -82,6 +82,7 @@ export interface DescribeCarrierGatewaysCommandOutput extends DescribeCarrierGat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeCarrierGatewaysCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeClassicLinkInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeClassicLinkInstancesCommand.ts index 4c886f69b66c9..4e67024769da0 100644 --- a/clients/client-ec2/src/commands/DescribeClassicLinkInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClassicLinkInstancesCommand.ts @@ -93,6 +93,7 @@ export interface DescribeClassicLinkInstancesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeClassicLinkInstancesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeClientVpnAuthorizationRulesCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnAuthorizationRulesCommand.ts index c74ed300c0328..730313458552a 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnAuthorizationRulesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnAuthorizationRulesCommand.ts @@ -87,6 +87,7 @@ export interface DescribeClientVpnAuthorizationRulesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeClientVpnAuthorizationRulesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeClientVpnConnectionsCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnConnectionsCommand.ts index c820ad4154510..e0819701d96e1 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnConnectionsCommand.ts @@ -92,6 +92,7 @@ export interface DescribeClientVpnConnectionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeClientVpnConnectionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeClientVpnEndpointsCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnEndpointsCommand.ts index 6f30ba7809c9e..5f2ac72f4d975 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnEndpointsCommand.ts @@ -141,6 +141,7 @@ export interface DescribeClientVpnEndpointsCommandOutput extends DescribeClientV * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeClientVpnEndpointsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeClientVpnRoutesCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnRoutesCommand.ts index 98ce8e9721a86..4e93ecd9b42d2 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnRoutesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnRoutesCommand.ts @@ -80,6 +80,7 @@ export interface DescribeClientVpnRoutesCommandOutput extends DescribeClientVpnR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeClientVpnRoutesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeClientVpnTargetNetworksCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnTargetNetworksCommand.ts index e54a24e1cc63b..4e08771ed76bb 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnTargetNetworksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnTargetNetworksCommand.ts @@ -89,6 +89,7 @@ export interface DescribeClientVpnTargetNetworksCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeClientVpnTargetNetworksCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeCoipPoolsCommand.ts b/clients/client-ec2/src/commands/DescribeCoipPoolsCommand.ts index e707a1d0c6f6c..772ddb45ad820 100644 --- a/clients/client-ec2/src/commands/DescribeCoipPoolsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCoipPoolsCommand.ts @@ -84,6 +84,7 @@ export interface DescribeCoipPoolsCommandOutput extends DescribeCoipPoolsResult, * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeCoipPoolsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeConversionTasksCommand.ts b/clients/client-ec2/src/commands/DescribeConversionTasksCommand.ts index 24b0afdeaa652..70f2713d33fae 100644 --- a/clients/client-ec2/src/commands/DescribeConversionTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeConversionTasksCommand.ts @@ -116,6 +116,7 @@ export interface DescribeConversionTasksCommandOutput extends DescribeConversion * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeConversionTasksCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeCustomerGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeCustomerGatewaysCommand.ts index 2ac06bb259bf5..a7b6c304d48f2 100644 --- a/clients/client-ec2/src/commands/DescribeCustomerGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCustomerGatewaysCommand.ts @@ -85,33 +85,33 @@ export interface DescribeCustomerGatewaysCommandOutput extends DescribeCustomerG * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe a customer gateway * ```javascript * // This example describes the specified customer gateway. * const input = { - * "CustomerGatewayIds": [ + * CustomerGatewayIds: [ * "cgw-0e11f167" * ] * }; * const command = new DescribeCustomerGatewaysCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CustomerGateways": [ + * CustomerGateways: [ * { - * "BgpAsn": "65534", - * "CustomerGatewayId": "cgw-0e11f167", - * "IpAddress": "12.1.2.3", - * "State": "available", - * "Type": "ipsec.1" + * BgpAsn: "65534", + * CustomerGatewayId: "cgw-0e11f167", + * IpAddress: "12.1.2.3", + * State: "available", + * Type: "ipsec.1" * } * ] * } * *\/ - * // example id: ec2-describe-customer-gateways-1 * ``` * + * @public */ export class DescribeCustomerGatewaysCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeDeclarativePoliciesReportsCommand.ts b/clients/client-ec2/src/commands/DescribeDeclarativePoliciesReportsCommand.ts index 5ad1308019380..e5c36b71e90f3 100644 --- a/clients/client-ec2/src/commands/DescribeDeclarativePoliciesReportsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeDeclarativePoliciesReportsCommand.ts @@ -94,6 +94,7 @@ export interface DescribeDeclarativePoliciesReportsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeDeclarativePoliciesReportsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeDhcpOptionsCommand.ts b/clients/client-ec2/src/commands/DescribeDhcpOptionsCommand.ts index e78703bc6c460..b9cf5307b561e 100644 --- a/clients/client-ec2/src/commands/DescribeDhcpOptionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeDhcpOptionsCommand.ts @@ -94,42 +94,42 @@ export interface DescribeDhcpOptionsCommandOutput extends DescribeDhcpOptionsRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe a DHCP options set * ```javascript * // This example describes the specified DHCP options set. * const input = { - * "DhcpOptionsIds": [ + * DhcpOptionsIds: [ * "dopt-d9070ebb" * ] * }; * const command = new DescribeDhcpOptionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DhcpOptions": [ + * DhcpOptions: [ * { - * "DhcpConfigurations": [ + * DhcpConfigurations: [ * { - * "Key": "domain-name-servers", - * "Values": [ + * Key: "domain-name-servers", + * Values: [ * { - * "Value": "10.2.5.2" + * Value: "10.2.5.2" * }, * { - * "Value": "10.2.5.1" + * Value: "10.2.5.1" * } * ] * } * ], - * "DhcpOptionsId": "dopt-d9070ebb" + * DhcpOptionsId: "dopt-d9070ebb" * } * ] * } * *\/ - * // example id: ec2-describe-dhcp-options-1 * ``` * + * @public */ export class DescribeDhcpOptionsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeEgressOnlyInternetGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeEgressOnlyInternetGatewaysCommand.ts index 289a51f44c5a9..7578542e598b1 100644 --- a/clients/client-ec2/src/commands/DescribeEgressOnlyInternetGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeEgressOnlyInternetGatewaysCommand.ts @@ -95,6 +95,7 @@ export interface DescribeEgressOnlyInternetGatewaysCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeEgressOnlyInternetGatewaysCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeElasticGpusCommand.ts b/clients/client-ec2/src/commands/DescribeElasticGpusCommand.ts index b126c4250f76d..468bb5a1e7c31 100644 --- a/clients/client-ec2/src/commands/DescribeElasticGpusCommand.ts +++ b/clients/client-ec2/src/commands/DescribeElasticGpusCommand.ts @@ -90,6 +90,7 @@ export interface DescribeElasticGpusCommandOutput extends DescribeElasticGpusRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeElasticGpusCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeExportImageTasksCommand.ts b/clients/client-ec2/src/commands/DescribeExportImageTasksCommand.ts index df7c630ed90e7..bfd59bf2d8b5b 100644 --- a/clients/client-ec2/src/commands/DescribeExportImageTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeExportImageTasksCommand.ts @@ -88,6 +88,7 @@ export interface DescribeExportImageTasksCommandOutput extends DescribeExportIma * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeExportImageTasksCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeExportTasksCommand.ts b/clients/client-ec2/src/commands/DescribeExportTasksCommand.ts index 990af5b6d71a3..1a42cb6c36ef6 100644 --- a/clients/client-ec2/src/commands/DescribeExportTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeExportTasksCommand.ts @@ -88,6 +88,7 @@ export interface DescribeExportTasksCommandOutput extends DescribeExportTasksRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeExportTasksCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeFastLaunchImagesCommand.ts b/clients/client-ec2/src/commands/DescribeFastLaunchImagesCommand.ts index 16acf6dd29bc2..4c7cf364ab540 100644 --- a/clients/client-ec2/src/commands/DescribeFastLaunchImagesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFastLaunchImagesCommand.ts @@ -88,6 +88,7 @@ export interface DescribeFastLaunchImagesCommandOutput extends DescribeFastLaunc * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeFastLaunchImagesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeFastSnapshotRestoresCommand.ts b/clients/client-ec2/src/commands/DescribeFastSnapshotRestoresCommand.ts index 7a23e4d6219ed..dd20a093082ce 100644 --- a/clients/client-ec2/src/commands/DescribeFastSnapshotRestoresCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFastSnapshotRestoresCommand.ts @@ -82,6 +82,7 @@ export interface DescribeFastSnapshotRestoresCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeFastSnapshotRestoresCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeFleetHistoryCommand.ts b/clients/client-ec2/src/commands/DescribeFleetHistoryCommand.ts index 28b2cf4887d26..1b17181df5e79 100644 --- a/clients/client-ec2/src/commands/DescribeFleetHistoryCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFleetHistoryCommand.ts @@ -79,6 +79,7 @@ export interface DescribeFleetHistoryCommandOutput extends DescribeFleetHistoryR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeFleetHistoryCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeFleetInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeFleetInstancesCommand.ts index 57be3c6d6849d..cc61f346fd7e9 100644 --- a/clients/client-ec2/src/commands/DescribeFleetInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFleetInstancesCommand.ts @@ -82,6 +82,7 @@ export interface DescribeFleetInstancesCommandOutput extends DescribeFleetInstan * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeFleetInstancesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeFleetsCommand.ts b/clients/client-ec2/src/commands/DescribeFleetsCommand.ts index 0f564a0b698e4..dd509bd5b0fc1 100644 --- a/clients/client-ec2/src/commands/DescribeFleetsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFleetsCommand.ts @@ -493,6 +493,7 @@ export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeFleetsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeFlowLogsCommand.ts b/clients/client-ec2/src/commands/DescribeFlowLogsCommand.ts index cb5addcafd6b4..ec11f196af261 100644 --- a/clients/client-ec2/src/commands/DescribeFlowLogsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFlowLogsCommand.ts @@ -99,6 +99,7 @@ export interface DescribeFlowLogsCommandOutput extends DescribeFlowLogsResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeFlowLogsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeFpgaImageAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeFpgaImageAttributeCommand.ts index 699005c08abb0..a66210dd96976 100644 --- a/clients/client-ec2/src/commands/DescribeFpgaImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFpgaImageAttributeCommand.ts @@ -73,6 +73,7 @@ export interface DescribeFpgaImageAttributeCommandOutput extends DescribeFpgaIma * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeFpgaImageAttributeCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeFpgaImagesCommand.ts b/clients/client-ec2/src/commands/DescribeFpgaImagesCommand.ts index f51ff603e5b73..c1028c2780c6a 100644 --- a/clients/client-ec2/src/commands/DescribeFpgaImagesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFpgaImagesCommand.ts @@ -113,6 +113,7 @@ export interface DescribeFpgaImagesCommandOutput extends DescribeFpgaImagesResul * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeFpgaImagesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeHostReservationOfferingsCommand.ts b/clients/client-ec2/src/commands/DescribeHostReservationOfferingsCommand.ts index 1d33f13b77a99..4046b9f5a2aa6 100644 --- a/clients/client-ec2/src/commands/DescribeHostReservationOfferingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeHostReservationOfferingsCommand.ts @@ -89,6 +89,7 @@ export interface DescribeHostReservationOfferingsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeHostReservationOfferingsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeHostReservationsCommand.ts b/clients/client-ec2/src/commands/DescribeHostReservationsCommand.ts index 16ab442260f72..d10cc9e7f8e03 100644 --- a/clients/client-ec2/src/commands/DescribeHostReservationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeHostReservationsCommand.ts @@ -93,6 +93,7 @@ export interface DescribeHostReservationsCommandOutput extends DescribeHostReser * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeHostReservationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeHostsCommand.ts b/clients/client-ec2/src/commands/DescribeHostsCommand.ts index 3c74f74b82dcf..8431d2eb40f64 100644 --- a/clients/client-ec2/src/commands/DescribeHostsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeHostsCommand.ts @@ -120,6 +120,7 @@ export interface DescribeHostsCommandOutput extends DescribeHostsResult, __Metad * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeHostsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeIamInstanceProfileAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeIamInstanceProfileAssociationsCommand.ts index 97f3ced2995b6..b5c92539b3f57 100644 --- a/clients/client-ec2/src/commands/DescribeIamInstanceProfileAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIamInstanceProfileAssociationsCommand.ts @@ -88,35 +88,35 @@ export interface DescribeIamInstanceProfileAssociationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe an IAM instance profile association * ```javascript * // This example describes the specified IAM instance profile association. * const input = { - * "AssociationIds": [ + * AssociationIds: [ * "iip-assoc-0db249b1f25fa24b8" * ] * }; * const command = new DescribeIamInstanceProfileAssociationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "IamInstanceProfileAssociations": [ + * IamInstanceProfileAssociations: [ * { - * "AssociationId": "iip-assoc-0db249b1f25fa24b8", - * "IamInstanceProfile": { - * "Arn": "arn:aws:iam::123456789012:instance-profile/admin-role", - * "Id": "AIPAJVQN4F5WVLGCJDRGM" + * AssociationId: "iip-assoc-0db249b1f25fa24b8", + * IamInstanceProfile: { + * Arn: "arn:aws:iam::123456789012:instance-profile/admin-role", + * Id: "AIPAJVQN4F5WVLGCJDRGM" * }, - * "InstanceId": "i-09eb09efa73ec1dee", - * "State": "associated" + * InstanceId: "i-09eb09efa73ec1dee", + * State: "associated" * } * ] * } * *\/ - * // example id: to-describe-an-iam-instance-profile-association-1529025123918 * ``` * + * @public */ export class DescribeIamInstanceProfileAssociationsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeIdFormatCommand.ts b/clients/client-ec2/src/commands/DescribeIdFormatCommand.ts index 8438fa1acb5de..e4e4509da7d54 100644 --- a/clients/client-ec2/src/commands/DescribeIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIdFormatCommand.ts @@ -80,6 +80,7 @@ export interface DescribeIdFormatCommandOutput extends DescribeIdFormatResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeIdFormatCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeIdentityIdFormatCommand.ts b/clients/client-ec2/src/commands/DescribeIdentityIdFormatCommand.ts index dd81ede41978f..3c27eb2a177e1 100644 --- a/clients/client-ec2/src/commands/DescribeIdentityIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIdentityIdFormatCommand.ts @@ -80,6 +80,7 @@ export interface DescribeIdentityIdFormatCommandOutput extends DescribeIdentityI * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeIdentityIdFormatCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeImageAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeImageAttributeCommand.ts index afc22fdbd92fa..d0bde0043566c 100644 --- a/clients/client-ec2/src/commands/DescribeImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImageAttributeCommand.ts @@ -114,29 +114,29 @@ export interface DescribeImageAttributeCommandOutput extends ImageAttribute, __M * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe the launch permissions for an AMI * ```javascript * // This example describes the launch permissions for the specified AMI. * const input = { - * "Attribute": "launchPermission", - * "ImageId": "ami-5731123e" + * Attribute: "launchPermission", + * ImageId: "ami-5731123e" * }; * const command = new DescribeImageAttributeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ImageId": "ami-5731123e", - * "LaunchPermissions": [ + * ImageId: "ami-5731123e", + * LaunchPermissions: [ * { - * "UserId": "123456789012" + * UserId: "123456789012" * } * ] * } * *\/ - * // example id: to-describe-the-launch-permissions-for-an-ami-1529025296264 * ``` * + * @public */ export class DescribeImageAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeImagesCommand.ts b/clients/client-ec2/src/commands/DescribeImagesCommand.ts index 488557d3150f7..345966c047be7 100644 --- a/clients/client-ec2/src/commands/DescribeImagesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImagesCommand.ts @@ -167,53 +167,53 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe an AMI * ```javascript * // This example describes the specified AMI. * const input = { - * "ImageIds": [ + * ImageIds: [ * "ami-5731123e" * ] * }; * const command = new DescribeImagesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Images": [ + * Images: [ * { - * "Architecture": "x86_64", - * "BlockDeviceMappings": [ + * Architecture: "x86_64", + * BlockDeviceMappings: [ * { - * "DeviceName": "/dev/sda1", - * "Ebs": { - * "DeleteOnTermination": true, - * "SnapshotId": "snap-1234567890abcdef0", - * "VolumeSize": 8, - * "VolumeType": "standard" + * DeviceName: "/dev/sda1", + * Ebs: { + * DeleteOnTermination: true, + * SnapshotId: "snap-1234567890abcdef0", + * VolumeSize: 8, + * VolumeType: "standard" * } * } * ], - * "Description": "An AMI for my server", - * "Hypervisor": "xen", - * "ImageId": "ami-5731123e", - * "ImageLocation": "123456789012/My server", - * "ImageType": "machine", - * "KernelId": "aki-88aa75e1", - * "Name": "My server", - * "OwnerId": "123456789012", - * "Public": false, - * "RootDeviceName": "/dev/sda1", - * "RootDeviceType": "ebs", - * "State": "available", - * "VirtualizationType": "paravirtual" + * Description: "An AMI for my server", + * Hypervisor: "xen", + * ImageId: "ami-5731123e", + * ImageLocation: "123456789012/My server", + * ImageType: "machine", + * KernelId: "aki-88aa75e1", + * Name: "My server", + * OwnerId: "123456789012", + * Public: false, + * RootDeviceName: "/dev/sda1", + * RootDeviceType: "ebs", + * State: "available", + * VirtualizationType: "paravirtual" * } * ] * } * *\/ - * // example id: to-describe-an-ami-1529025482866 * ``` * + * @public */ export class DescribeImagesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeImportImageTasksCommand.ts b/clients/client-ec2/src/commands/DescribeImportImageTasksCommand.ts index 520f22315469f..1fb0934e30314 100644 --- a/clients/client-ec2/src/commands/DescribeImportImageTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImportImageTasksCommand.ts @@ -118,6 +118,7 @@ export interface DescribeImportImageTasksCommandOutput extends DescribeImportIma * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeImportImageTasksCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeImportSnapshotTasksCommand.ts b/clients/client-ec2/src/commands/DescribeImportSnapshotTasksCommand.ts index 400ae86377e1e..c623d3645cfdc 100644 --- a/clients/client-ec2/src/commands/DescribeImportSnapshotTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImportSnapshotTasksCommand.ts @@ -100,6 +100,7 @@ export interface DescribeImportSnapshotTasksCommandOutput extends DescribeImport * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeImportSnapshotTasksCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeInstanceAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceAttributeCommand.ts index 4a43fa89986b7..3ac54e488b130 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceAttributeCommand.ts @@ -123,87 +123,65 @@ export interface DescribeInstanceAttributeCommandOutput extends InstanceAttribut * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public - * @example To describe the instance type - * ```javascript - * // This example describes the instance type of the specified instance. - * // - * const input = { - * "Attribute": "instanceType", - * "InstanceId": "i-1234567890abcdef0" - * }; - * const command = new DescribeInstanceAttributeCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "InstanceId": "i-1234567890abcdef0", - * "InstanceType": { - * "Value": "t1.micro" - * } - * } - * *\/ - * // example id: to-describe-the-instance-type-1472712432132 - * ``` * - * @example To describe the disableApiTermination attribute + * @example To describe the block device mapping for an instance * ```javascript - * // This example describes the ``disableApiTermination`` attribute of the specified instance. - * // + * // This example describes the ``blockDeviceMapping`` attribute of the specified instance. + * * const input = { - * "Attribute": "disableApiTermination", - * "InstanceId": "i-1234567890abcdef0" + * Attribute: "blockDeviceMapping", + * InstanceId: "i-1234567890abcdef0" * }; * const command = new DescribeInstanceAttributeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DisableApiTermination": { - * "Value": "false" - * }, - * "InstanceId": "i-1234567890abcdef0" + * BlockDeviceMappings: [ + * { + * DeviceName: "/dev/sda1", + * Ebs: { + * AttachTime: "2013-05-17T22:42:34.000Z", + * DeleteOnTermination: true, + * Status: "attached", + * VolumeId: "vol-049df61146c4d7901" + * } + * }, + * { + * DeviceName: "/dev/sdf", + * Ebs: { + * AttachTime: "2013-09-10T23:07:00.000Z", + * DeleteOnTermination: false, + * Status: "attached", + * VolumeId: "vol-049df61146c4d7901" + * } + * } + * ], + * InstanceId: "i-1234567890abcdef0" * } * *\/ - * // example id: to-describe-the-disableapitermination-attribute-1472712533466 * ``` * - * @example To describe the block device mapping for an instance + * @example To describe the instance type * ```javascript - * // This example describes the ``blockDeviceMapping`` attribute of the specified instance. - * // + * // This example describes the instance type of the specified instance. + * * const input = { - * "Attribute": "blockDeviceMapping", - * "InstanceId": "i-1234567890abcdef0" + * Attribute: "instanceType", + * InstanceId: "i-1234567890abcdef0" * }; * const command = new DescribeInstanceAttributeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "BlockDeviceMappings": [ - * { - * "DeviceName": "/dev/sda1", - * "Ebs": { - * "AttachTime": "2013-05-17T22:42:34.000Z", - * "DeleteOnTermination": true, - * "Status": "attached", - * "VolumeId": "vol-049df61146c4d7901" - * } - * }, - * { - * "DeviceName": "/dev/sdf", - * "Ebs": { - * "AttachTime": "2013-09-10T23:07:00.000Z", - * "DeleteOnTermination": false, - * "Status": "attached", - * "VolumeId": "vol-049df61146c4d7901" - * } - * } - * ], - * "InstanceId": "i-1234567890abcdef0" + * InstanceId: "i-1234567890abcdef0", + * InstanceType: { + * Value: "t1.micro" + * } * } * *\/ - * // example id: to-describe-the-block-device-mapping-for-an-instance-1472712645423 * ``` * + * @public */ export class DescribeInstanceAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeInstanceConnectEndpointsCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceConnectEndpointsCommand.ts index e7fff0ced99bf..3220ada4b8915 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceConnectEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceConnectEndpointsCommand.ts @@ -101,6 +101,7 @@ export interface DescribeInstanceConnectEndpointsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeInstanceConnectEndpointsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeInstanceCreditSpecificationsCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceCreditSpecificationsCommand.ts index c9cdd09a7125d..ef9b811695091 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceCreditSpecificationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceCreditSpecificationsCommand.ts @@ -101,6 +101,7 @@ export interface DescribeInstanceCreditSpecificationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeInstanceCreditSpecificationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeInstanceEventNotificationAttributesCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceEventNotificationAttributesCommand.ts index f3c1c4f7b6feb..c8543e3576836 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceEventNotificationAttributesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceEventNotificationAttributesCommand.ts @@ -70,6 +70,7 @@ export interface DescribeInstanceEventNotificationAttributesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeInstanceEventNotificationAttributesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeInstanceEventWindowsCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceEventWindowsCommand.ts index ddbf96b905e6f..8094f6c32f999 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceEventWindowsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceEventWindowsCommand.ts @@ -114,6 +114,7 @@ export interface DescribeInstanceEventWindowsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeInstanceEventWindowsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeInstanceImageMetadataCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceImageMetadataCommand.ts index b51b05ea71709..3801d0d93dd4d 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceImageMetadataCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceImageMetadataCommand.ts @@ -124,6 +124,7 @@ export interface DescribeInstanceImageMetadataCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeInstanceImageMetadataCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeInstanceStatusCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceStatusCommand.ts index c9045e20ececa..001756b435fbc 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceStatusCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceStatusCommand.ts @@ -157,52 +157,52 @@ export interface DescribeInstanceStatusCommandOutput extends DescribeInstanceSta * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe the status of an instance * ```javascript * // This example describes the current status of the specified instance. * const input = { - * "InstanceIds": [ + * InstanceIds: [ * "i-1234567890abcdef0" * ] * }; * const command = new DescribeInstanceStatusCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InstanceStatuses": [ + * InstanceStatuses: [ * { - * "AvailabilityZone": "us-east-1d", - * "InstanceId": "i-1234567890abcdef0", - * "InstanceState": { - * "Code": 16, - * "Name": "running" + * AvailabilityZone: "us-east-1d", + * InstanceId: "i-1234567890abcdef0", + * InstanceState: { + * Code: 16, + * Name: "running" * }, - * "InstanceStatus": { - * "Details": [ + * InstanceStatus: { + * Details: [ * { - * "Name": "reachability", - * "Status": "passed" + * Name: "reachability", + * Status: "passed" * } * ], - * "Status": "ok" + * Status: "ok" * }, - * "SystemStatus": { - * "Details": [ + * SystemStatus: { + * Details: [ * { - * "Name": "reachability", - * "Status": "passed" + * Name: "reachability", + * Status: "passed" * } * ], - * "Status": "ok" + * Status: "ok" * } * } * ] * } * *\/ - * // example id: to-describe-the-status-of-an-instance-1529025696830 * ``` * + * @public */ export class DescribeInstanceStatusCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeInstanceTopologyCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceTopologyCommand.ts index 0e7d753a403d2..8f7a4db8ec938 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceTopologyCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceTopologyCommand.ts @@ -132,6 +132,7 @@ export interface DescribeInstanceTopologyCommandOutput extends DescribeInstanceT * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeInstanceTopologyCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeInstanceTypeOfferingsCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceTypeOfferingsCommand.ts index 288aff9752a89..a59b09ee6c2e7 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceTypeOfferingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceTypeOfferingsCommand.ts @@ -77,6 +77,7 @@ export interface DescribeInstanceTypeOfferingsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeInstanceTypeOfferingsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeInstanceTypesCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceTypesCommand.ts index 8f1420a143b0b..9df70271b6abd 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceTypesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceTypesCommand.ts @@ -253,6 +253,7 @@ export interface DescribeInstanceTypesCommandOutput extends DescribeInstanceType * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeInstanceTypesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeInstancesCommand.ts index b818fe587958d..2a2b5784aaecb 100644 --- a/clients/client-ec2/src/commands/DescribeInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstancesCommand.ts @@ -342,56 +342,63 @@ export interface DescribeInstancesCommandOutput extends DescribeInstancesResult, * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe an Amazon EC2 instance * ```javascript * // This example describes the specified instance. * const input = { - * "InstanceIds": [ + * InstanceIds: [ * "i-1234567890abcdef0" * ] * }; * const command = new DescribeInstancesCommand(input); - * await client.send(command); - * // example id: to-describe-an-amazon-ec2-instance-1529025982172 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * - * @example To describe the instances with a specific instance type + * @example To describe the instances with a specific tag * ```javascript - * // This example describes the instances with the t2.micro instance type. + * // This example describes the instances with the Purpose=test tag. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "instance-type", - * "Values": [ - * "t2.micro" + * Name: "tag:Purpose", + * Values: [ + * "test" * ] * } * ] * }; * const command = new DescribeInstancesCommand(input); - * await client.send(command); - * // example id: to-describe-the-instances-with-the-instance-type-t2micro-1529026147602 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * - * @example To describe the instances with a specific tag + * @example To describe the instances with a specific instance type * ```javascript - * // This example describes the instances with the Purpose=test tag. + * // This example describes the instances with the t2.micro instance type. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "tag:Purpose", - * "Values": [ - * "test" + * Name: "instance-type", + * Values: [ + * "t2.micro" * ] * } * ] * }; * const command = new DescribeInstancesCommand(input); - * await client.send(command); - * // example id: to-describe-the-instances-with-a-specific-tag-1529026251928 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DescribeInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeInternetGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeInternetGatewaysCommand.ts index d10937cbaa4fe..f915c56d5b3e3 100644 --- a/clients/client-ec2/src/commands/DescribeInternetGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInternetGatewaysCommand.ts @@ -88,15 +88,15 @@ export interface DescribeInternetGatewaysCommandOutput extends DescribeInternetG * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe the Internet gateway for a VPC * ```javascript * // This example describes the Internet gateway for the specified VPC. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "attachment.vpc-id", - * "Values": [ + * Name: "attachment.vpc-id", + * Values: [ * "vpc-a01106c2" * ] * } @@ -104,25 +104,25 @@ export interface DescribeInternetGatewaysCommandOutput extends DescribeInternetG * }; * const command = new DescribeInternetGatewaysCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InternetGateways": [ + * InternetGateways: [ * { - * "Attachments": [ + * Attachments: [ * { - * "State": "attached", - * "VpcId": "vpc-a01106c2" + * State: "attached", + * VpcId: "vpc-a01106c2" * } * ], - * "InternetGatewayId": "igw-c0a643a9", - * "Tags": [] + * InternetGatewayId: "igw-c0a643a9", + * Tags: [] * } * ] * } * *\/ - * // example id: ec2-describe-internet-gateways-1 * ``` * + * @public */ export class DescribeInternetGatewaysCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeIpamByoasnCommand.ts b/clients/client-ec2/src/commands/DescribeIpamByoasnCommand.ts index 6e0cf4c9efb9e..e4e560a0ce5ff 100644 --- a/clients/client-ec2/src/commands/DescribeIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamByoasnCommand.ts @@ -65,6 +65,7 @@ export interface DescribeIpamByoasnCommandOutput extends DescribeIpamByoasnResul * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeIpamByoasnCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeIpamExternalResourceVerificationTokensCommand.ts b/clients/client-ec2/src/commands/DescribeIpamExternalResourceVerificationTokensCommand.ts index e17892ffed08d..4613e7c19c2df 100644 --- a/clients/client-ec2/src/commands/DescribeIpamExternalResourceVerificationTokensCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamExternalResourceVerificationTokensCommand.ts @@ -98,6 +98,7 @@ export interface DescribeIpamExternalResourceVerificationTokensCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeIpamExternalResourceVerificationTokensCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeIpamPoolsCommand.ts b/clients/client-ec2/src/commands/DescribeIpamPoolsCommand.ts index 8d55bf2e616b0..246ba5c5e8d47 100644 --- a/clients/client-ec2/src/commands/DescribeIpamPoolsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamPoolsCommand.ts @@ -111,6 +111,7 @@ export interface DescribeIpamPoolsCommandOutput extends DescribeIpamPoolsResult, * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeIpamPoolsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveriesCommand.ts b/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveriesCommand.ts index ae05c3088a2e3..0fb9b94d41da5 100644 --- a/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveriesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveriesCommand.ts @@ -100,6 +100,7 @@ export interface DescribeIpamResourceDiscoveriesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeIpamResourceDiscoveriesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveryAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveryAssociationsCommand.ts index 1cba793dca6a4..d08a248259960 100644 --- a/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveryAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveryAssociationsCommand.ts @@ -97,6 +97,7 @@ export interface DescribeIpamResourceDiscoveryAssociationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeIpamResourceDiscoveryAssociationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeIpamScopesCommand.ts b/clients/client-ec2/src/commands/DescribeIpamScopesCommand.ts index 74c6718a6fc12..bee4072ff6000 100644 --- a/clients/client-ec2/src/commands/DescribeIpamScopesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamScopesCommand.ts @@ -88,6 +88,7 @@ export interface DescribeIpamScopesCommandOutput extends DescribeIpamScopesResul * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeIpamScopesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeIpamsCommand.ts b/clients/client-ec2/src/commands/DescribeIpamsCommand.ts index 81a90cb844af3..5a728ada6d95d 100644 --- a/clients/client-ec2/src/commands/DescribeIpamsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamsCommand.ts @@ -100,6 +100,7 @@ export interface DescribeIpamsCommandOutput extends DescribeIpamsResult, __Metad * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeIpamsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeIpv6PoolsCommand.ts b/clients/client-ec2/src/commands/DescribeIpv6PoolsCommand.ts index 56418f29dc648..19c1991e8d51b 100644 --- a/clients/client-ec2/src/commands/DescribeIpv6PoolsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpv6PoolsCommand.ts @@ -85,6 +85,7 @@ export interface DescribeIpv6PoolsCommandOutput extends DescribeIpv6PoolsResult, * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeIpv6PoolsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeKeyPairsCommand.ts b/clients/client-ec2/src/commands/DescribeKeyPairsCommand.ts index 784b5879bb43e..74085b2fab848 100644 --- a/clients/client-ec2/src/commands/DescribeKeyPairsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeKeyPairsCommand.ts @@ -87,30 +87,30 @@ export interface DescribeKeyPairsCommandOutput extends DescribeKeyPairsResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To display a key pair * ```javascript * // This example displays the fingerprint for the specified key. * const input = { - * "KeyNames": [ + * KeyNames: [ * "my-key-pair" * ] * }; * const command = new DescribeKeyPairsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyPairs": [ + * KeyPairs: [ * { - * "KeyFingerprint": "1f:51:ae:28:bf:89:e9:d8:1f:25:5d:37:2d:7d:b8:ca:9f:f5:f1:6f", - * "KeyName": "my-key-pair" + * KeyFingerprint: "1f:51:ae:28:bf:89:e9:d8:1f:25:5d:37:2d:7d:b8:ca:9f:f5:f1:6f", + * KeyName: "my-key-pair" * } * ] * } * *\/ - * // example id: ec2-describe-key-pairs-1 * ``` * + * @public */ export class DescribeKeyPairsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeLaunchTemplateVersionsCommand.ts b/clients/client-ec2/src/commands/DescribeLaunchTemplateVersionsCommand.ts index 021b48b0ed204..055500b7c081c 100644 --- a/clients/client-ec2/src/commands/DescribeLaunchTemplateVersionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLaunchTemplateVersionsCommand.ts @@ -367,71 +367,71 @@ export interface DescribeLaunchTemplateVersionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe the versions for a launch template * ```javascript * // This example describes the versions for the specified launch template. * const input = { - * "LaunchTemplateId": "068f72b72934aff71" + * LaunchTemplateId: "068f72b72934aff71" * }; * const command = new DescribeLaunchTemplateVersionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LaunchTemplateVersions": [ + * LaunchTemplateVersions: [ * { - * "CreateTime": "2017-11-20T13:12:32.000Z", - * "CreatedBy": "arn:aws:iam::123456789102:root", - * "DefaultVersion": false, - * "LaunchTemplateData": { - * "ImageId": "ami-6057e21a", - * "InstanceType": "t2.medium", - * "KeyName": "kp-us-east", - * "NetworkInterfaces": [ + * CreateTime: "2017-11-20T13:12:32.000Z", + * CreatedBy: "arn:aws:iam::123456789102:root", + * DefaultVersion: false, + * LaunchTemplateData: { + * ImageId: "ami-6057e21a", + * InstanceType: "t2.medium", + * KeyName: "kp-us-east", + * NetworkInterfaces: [ * { - * "DeviceIndex": 0, - * "Groups": [ + * DeviceIndex: 0, + * Groups: [ * "sg-7c227019" * ], - * "SubnetId": "subnet-1a2b3c4d" + * SubnetId: "subnet-1a2b3c4d" * } * ] * }, - * "LaunchTemplateId": "lt-068f72b72934aff71", - * "LaunchTemplateName": "Webservers", - * "VersionNumber": 2 + * LaunchTemplateId: "lt-068f72b72934aff71", + * LaunchTemplateName: "Webservers", + * VersionNumber: 2 * }, * { - * "CreateTime": "2017-11-20T12:52:33.000Z", - * "CreatedBy": "arn:aws:iam::123456789102:root", - * "DefaultVersion": true, - * "LaunchTemplateData": { - * "ImageId": "ami-aabbcc11", - * "InstanceType": "t2.medium", - * "KeyName": "kp-us-east", - * "NetworkInterfaces": [ + * CreateTime: "2017-11-20T12:52:33.000Z", + * CreatedBy: "arn:aws:iam::123456789102:root", + * DefaultVersion: true, + * LaunchTemplateData: { + * ImageId: "ami-aabbcc11", + * InstanceType: "t2.medium", + * KeyName: "kp-us-east", + * NetworkInterfaces: [ * { - * "AssociatePublicIpAddress": true, - * "DeleteOnTermination": false, - * "DeviceIndex": 0, - * "Groups": [ + * AssociatePublicIpAddress: true, + * DeleteOnTermination: false, + * DeviceIndex: 0, + * Groups: [ * "sg-7c227019" * ], - * "SubnetId": "subnet-7b16de0c" + * SubnetId: "subnet-7b16de0c" * } * ], - * "UserData": "" + * UserData: "" * }, - * "LaunchTemplateId": "lt-068f72b72934aff71", - * "LaunchTemplateName": "Webservers", - * "VersionNumber": 1 + * LaunchTemplateId: "lt-068f72b72934aff71", + * LaunchTemplateName: "Webservers", + * VersionNumber: 1 * } * ] * } * *\/ - * // example id: to-describe-the-versions-for-a-launch-template-1529344425048 * ``` * + * @public */ export class DescribeLaunchTemplateVersionsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeLaunchTemplatesCommand.ts b/clients/client-ec2/src/commands/DescribeLaunchTemplatesCommand.ts index effea69aa4b38..3595260a78bd5 100644 --- a/clients/client-ec2/src/commands/DescribeLaunchTemplatesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLaunchTemplatesCommand.ts @@ -91,34 +91,34 @@ export interface DescribeLaunchTemplatesCommandOutput extends DescribeLaunchTemp * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe a launch template * ```javascript * // This example describes the specified launch template. * const input = { - * "LaunchTemplateIds": [ + * LaunchTemplateIds: [ * "lt-01238c059e3466abc" * ] * }; * const command = new DescribeLaunchTemplatesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LaunchTemplates": [ + * LaunchTemplates: [ * { - * "CreateTime": "2018-01-16T04:32:57.000Z", - * "CreatedBy": "arn:aws:iam::123456789012:root", - * "DefaultVersionNumber": 1, - * "LatestVersionNumber": 1, - * "LaunchTemplateId": "lt-01238c059e3466abc", - * "LaunchTemplateName": "my-template" + * CreateTime: "2018-01-16T04:32:57.000Z", + * CreatedBy: "arn:aws:iam::123456789012:root", + * DefaultVersionNumber: 1, + * LatestVersionNumber: 1, + * LaunchTemplateId: "lt-01238c059e3466abc", + * LaunchTemplateName: "my-template" * } * ] * } * *\/ - * // example id: to-describe-a-launch-template-1529344182862 * ``` * + * @public */ export class DescribeLaunchTemplatesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.ts index c6fb2e2622bc8..5a07d8c79536a 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.ts @@ -94,6 +94,7 @@ export interface DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.ts index 9d17ba4c1d713..29ec057f8aec9 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.ts @@ -94,6 +94,7 @@ export interface DescribeLocalGatewayRouteTableVpcAssociationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeLocalGatewayRouteTableVpcAssociationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTablesCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTablesCommand.ts index 82f595bf83c22..b4210505e7044 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTablesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTablesCommand.ts @@ -95,6 +95,7 @@ export interface DescribeLocalGatewayRouteTablesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeLocalGatewayRouteTablesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.ts index b6c2de4cee444..5f29b86d57464 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.ts @@ -93,6 +93,7 @@ export interface DescribeLocalGatewayVirtualInterfaceGroupsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeLocalGatewayVirtualInterfaceGroupsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfacesCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfacesCommand.ts index c904f4e04ed3e..3908ff21cf4bf 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfacesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfacesCommand.ts @@ -95,6 +95,7 @@ export interface DescribeLocalGatewayVirtualInterfacesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeLocalGatewayVirtualInterfacesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewaysCommand.ts index f842569f70daa..139c31d25774b 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewaysCommand.ts @@ -83,6 +83,7 @@ export interface DescribeLocalGatewaysCommandOutput extends DescribeLocalGateway * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeLocalGatewaysCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeLockedSnapshotsCommand.ts b/clients/client-ec2/src/commands/DescribeLockedSnapshotsCommand.ts index 125aeb8421847..f28317b930918 100644 --- a/clients/client-ec2/src/commands/DescribeLockedSnapshotsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLockedSnapshotsCommand.ts @@ -81,6 +81,7 @@ export interface DescribeLockedSnapshotsCommandOutput extends DescribeLockedSnap * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeLockedSnapshotsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeMacHostsCommand.ts b/clients/client-ec2/src/commands/DescribeMacHostsCommand.ts index ea672e2359c2c..eed304c6eb20e 100644 --- a/clients/client-ec2/src/commands/DescribeMacHostsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeMacHostsCommand.ts @@ -75,6 +75,7 @@ export interface DescribeMacHostsCommandOutput extends DescribeMacHostsResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeMacHostsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeManagedPrefixListsCommand.ts b/clients/client-ec2/src/commands/DescribeManagedPrefixListsCommand.ts index 8ab2f8b94a99b..b90cb27bfd025 100644 --- a/clients/client-ec2/src/commands/DescribeManagedPrefixListsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeManagedPrefixListsCommand.ts @@ -88,6 +88,7 @@ export interface DescribeManagedPrefixListsCommandOutput extends DescribeManaged * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeManagedPrefixListsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeMovingAddressesCommand.ts b/clients/client-ec2/src/commands/DescribeMovingAddressesCommand.ts index ac94ccbfe65e7..5774b94e70f54 100644 --- a/clients/client-ec2/src/commands/DescribeMovingAddressesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeMovingAddressesCommand.ts @@ -78,26 +78,26 @@ export interface DescribeMovingAddressesCommandOutput extends DescribeMovingAddr * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe your moving addresses * ```javascript * // This example describes all of your moving Elastic IP addresses. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeMovingAddressesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "MovingAddressStatuses": [ + * MovingAddressStatuses: [ * { - * "MoveStatus": "movingToVpc", - * "PublicIp": "198.51.100.0" + * MoveStatus: "movingToVpc", + * PublicIp: "198.51.100.0" * } * ] * } * *\/ - * // example id: ec2-describe-moving-addresses-1 * ``` * + * @public */ export class DescribeMovingAddressesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeNatGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeNatGatewaysCommand.ts index c15653bf19cd7..98ddb6a000f53 100644 --- a/clients/client-ec2/src/commands/DescribeNatGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNatGatewaysCommand.ts @@ -108,15 +108,15 @@ export interface DescribeNatGatewaysCommandOutput extends DescribeNatGatewaysRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe a NAT gateway * ```javascript * // This example describes the NAT gateway for the specified VPC. * const input = { - * "Filter": [ + * Filter: [ * { - * "Name": "vpc-id", - * "Values": [ + * Name: "vpc-id", + * Values: [ * "vpc-1a2b3c4d" * ] * } @@ -124,30 +124,30 @@ export interface DescribeNatGatewaysCommandOutput extends DescribeNatGatewaysRes * }; * const command = new DescribeNatGatewaysCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NatGateways": [ + * NatGateways: [ * { - * "CreateTime": "2015-12-01T12:26:55.983Z", - * "NatGatewayAddresses": [ + * CreateTime: "2015-12-01T12:26:55.983Z", + * NatGatewayAddresses: [ * { - * "AllocationId": "eipalloc-89c620ec", - * "NetworkInterfaceId": "eni-9dec76cd", - * "PrivateIp": "10.0.0.149", - * "PublicIp": "198.11.222.333" + * AllocationId: "eipalloc-89c620ec", + * NetworkInterfaceId: "eni-9dec76cd", + * PrivateIp: "10.0.0.149", + * PublicIp: "198.11.222.333" * } * ], - * "NatGatewayId": "nat-05dba92075d71c408", - * "State": "available", - * "SubnetId": "subnet-847e4dc2", - * "VpcId": "vpc-1a2b3c4d" + * NatGatewayId: "nat-05dba92075d71c408", + * State: "available", + * SubnetId: "subnet-847e4dc2", + * VpcId: "vpc-1a2b3c4d" * } * ] * } * *\/ - * // example id: ec2-describe-nat-gateways-1 * ``` * + * @public */ export class DescribeNatGatewaysCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeNetworkAclsCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkAclsCommand.ts index 63795d0ec2497..7c72a0d8d35cb 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkAclsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkAclsCommand.ts @@ -111,55 +111,55 @@ export interface DescribeNetworkAclsCommandOutput extends DescribeNetworkAclsRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe a network ACL * ```javascript * // This example describes the specified network ACL. * const input = { - * "NetworkAclIds": [ + * NetworkAclIds: [ * "acl-5fb85d36" * ] * }; * const command = new DescribeNetworkAclsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NetworkAcls": [ + * NetworkAcls: [ * { - * "Associations": [ + * Associations: [ * { - * "NetworkAclAssociationId": "aclassoc-66ea5f0b", - * "NetworkAclId": "acl-9aeb5ef7", - * "SubnetId": "subnet-65ea5f08" + * NetworkAclAssociationId: "aclassoc-66ea5f0b", + * NetworkAclId: "acl-9aeb5ef7", + * SubnetId: "subnet-65ea5f08" * } * ], - * "Entries": [ + * Entries: [ * { - * "CidrBlock": "0.0.0.0/0", - * "Egress": true, - * "Protocol": "-1", - * "RuleAction": "deny", - * "RuleNumber": 32767 + * CidrBlock: "0.0.0.0/0", + * Egress: true, + * Protocol: "-1", + * RuleAction: "deny", + * RuleNumber: 32767 * }, * { - * "CidrBlock": "0.0.0.0/0", - * "Egress": false, - * "Protocol": "-1", - * "RuleAction": "deny", - * "RuleNumber": 32767 + * CidrBlock: "0.0.0.0/0", + * Egress: false, + * Protocol: "-1", + * RuleAction: "deny", + * RuleNumber: 32767 * } * ], - * "IsDefault": false, - * "NetworkAclId": "acl-5fb85d36", - * "Tags": [], - * "VpcId": "vpc-a01106c2" + * IsDefault: false, + * NetworkAclId: "acl-5fb85d36", + * Tags: [], + * VpcId: "vpc-a01106c2" * } * ] * } * *\/ - * // example id: ec2- * ``` * + * @public */ export class DescribeNetworkAclsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.ts index 6e325f6c87616..13d917d7ef2f9 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.ts @@ -100,6 +100,7 @@ export interface DescribeNetworkInsightsAccessScopeAnalysesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeNetworkInsightsAccessScopeAnalysesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopesCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopesCommand.ts index 7e9170456099b..dc13cd5db1084 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopesCommand.ts @@ -90,6 +90,7 @@ export interface DescribeNetworkInsightsAccessScopesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeNetworkInsightsAccessScopesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeNetworkInsightsAnalysesCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInsightsAnalysesCommand.ts index 2c272e9516309..1ccd34d86242b 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInsightsAnalysesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInsightsAnalysesCommand.ts @@ -792,6 +792,7 @@ export interface DescribeNetworkInsightsAnalysesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeNetworkInsightsAnalysesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeNetworkInsightsPathsCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInsightsPathsCommand.ts index 27e75e1887b90..73ba3c15cd5f3 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInsightsPathsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInsightsPathsCommand.ts @@ -115,6 +115,7 @@ export interface DescribeNetworkInsightsPathsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeNetworkInsightsPathsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeNetworkInterfaceAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInterfaceAttributeCommand.ts index f1526459adee3..85537e7cc910f 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInterfaceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInterfaceAttributeCommand.ts @@ -91,96 +91,93 @@ export interface DescribeNetworkInterfaceAttributeCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe the attachment attribute of a network interface * ```javascript * // This example describes the attachment attribute of the specified network interface. * const input = { - * "Attribute": "attachment", - * "NetworkInterfaceId": "eni-686ea200" + * Attribute: "attachment", + * NetworkInterfaceId: "eni-686ea200" * }; * const command = new DescribeNetworkInterfaceAttributeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Attachment": { - * "AttachTime": "2015-05-21T20:02:20.000Z", - * "AttachmentId": "eni-attach-43348162", - * "DeleteOnTermination": true, - * "DeviceIndex": 0, - * "InstanceId": "i-1234567890abcdef0", - * "InstanceOwnerId": "123456789012", - * "Status": "attached" + * Attachment: { + * AttachTime: "2015-05-21T20:02:20.000Z", + * AttachmentId: "eni-attach-43348162", + * DeleteOnTermination: true, + * DeviceIndex: 0, + * InstanceId: "i-1234567890abcdef0", + * InstanceOwnerId: "123456789012", + * Status: "attached" * }, - * "NetworkInterfaceId": "eni-686ea200" + * NetworkInterfaceId: "eni-686ea200" * } * *\/ - * // example id: ec2-describe-network-interface-attribute-1 * ``` * * @example To describe the description attribute of a network interface * ```javascript * // This example describes the description attribute of the specified network interface. * const input = { - * "Attribute": "description", - * "NetworkInterfaceId": "eni-686ea200" + * Attribute: "description", + * NetworkInterfaceId: "eni-686ea200" * }; * const command = new DescribeNetworkInterfaceAttributeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Description": { - * "Value": "My description" + * Description: { + * Value: "My description" * }, - * "NetworkInterfaceId": "eni-686ea200" + * NetworkInterfaceId: "eni-686ea200" * } * *\/ - * // example id: ec2-describe-network-interface-attribute-2 * ``` * * @example To describe the groupSet attribute of a network interface * ```javascript * // This example describes the groupSet attribute of the specified network interface. * const input = { - * "Attribute": "groupSet", - * "NetworkInterfaceId": "eni-686ea200" + * Attribute: "groupSet", + * NetworkInterfaceId: "eni-686ea200" * }; * const command = new DescribeNetworkInterfaceAttributeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Groups": [ + * Groups: [ * { - * "GroupId": "sg-903004f8", - * "GroupName": "my-security-group" + * GroupId: "sg-903004f8", + * GroupName: "my-security-group" * } * ], - * "NetworkInterfaceId": "eni-686ea200" + * NetworkInterfaceId: "eni-686ea200" * } * *\/ - * // example id: ec2-describe-network-interface-attribute-3 * ``` * * @example To describe the sourceDestCheck attribute of a network interface * ```javascript * // This example describes the sourceDestCheck attribute of the specified network interface. * const input = { - * "Attribute": "sourceDestCheck", - * "NetworkInterfaceId": "eni-686ea200" + * Attribute: "sourceDestCheck", + * NetworkInterfaceId: "eni-686ea200" * }; * const command = new DescribeNetworkInterfaceAttributeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NetworkInterfaceId": "eni-686ea200", - * "SourceDestCheck": { - * "Value": true + * NetworkInterfaceId: "eni-686ea200", + * SourceDestCheck: { + * Value: true * } * } * *\/ - * // example id: ec2-describe-network-interface-attribute-4 * ``` * + * @public */ export class DescribeNetworkInterfaceAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeNetworkInterfacePermissionsCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInterfacePermissionsCommand.ts index 13ae4963b5964..81a9c64ab4b39 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInterfacePermissionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInterfacePermissionsCommand.ts @@ -88,6 +88,7 @@ export interface DescribeNetworkInterfacePermissionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeNetworkInterfacePermissionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeNetworkInterfacesCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInterfacesCommand.ts index 6a6ae17c38fba..191d3807b65cc 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInterfacesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInterfacesCommand.ts @@ -176,75 +176,75 @@ export interface DescribeNetworkInterfacesCommandOutput extends DescribeNetworkI * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe a network interface * ```javascript * // * const input = { - * "NetworkInterfaceIds": [ + * NetworkInterfaceIds: [ * "eni-e5aa89a3" * ] * }; * const command = new DescribeNetworkInterfacesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NetworkInterfaces": [ + * NetworkInterfaces: [ * { - * "Association": { - * "AssociationId": "eipassoc-0fbb766a", - * "IpOwnerId": "123456789012", - * "PublicDnsName": "ec2-203-0-113-12.compute-1.amazonaws.com", - * "PublicIp": "203.0.113.12" + * Association: { + * AssociationId: "eipassoc-0fbb766a", + * IpOwnerId: "123456789012", + * PublicDnsName: "ec2-203-0-113-12.compute-1.amazonaws.com", + * PublicIp: "203.0.113.12" * }, - * "Attachment": { - * "AttachTime": "2013-11-30T23:36:42.000Z", - * "AttachmentId": "eni-attach-66c4350a", - * "DeleteOnTermination": false, - * "DeviceIndex": 1, - * "InstanceId": "i-1234567890abcdef0", - * "InstanceOwnerId": "123456789012", - * "Status": "attached" + * Attachment: { + * AttachTime: "2013-11-30T23:36:42.000Z", + * AttachmentId: "eni-attach-66c4350a", + * DeleteOnTermination: false, + * DeviceIndex: 1, + * InstanceId: "i-1234567890abcdef0", + * InstanceOwnerId: "123456789012", + * Status: "attached" * }, - * "AvailabilityZone": "us-east-1d", - * "Description": "my network interface", - * "Groups": [ + * AvailabilityZone: "us-east-1d", + * Description: "my network interface", + * Groups: [ * { - * "GroupId": "sg-8637d3e3", - * "GroupName": "default" + * GroupId: "sg-8637d3e3", + * GroupName: "default" * } * ], - * "MacAddress": "02:2f:8f:b0:cf:75", - * "NetworkInterfaceId": "eni-e5aa89a3", - * "OwnerId": "123456789012", - * "PrivateDnsName": "ip-10-0-1-17.ec2.internal", - * "PrivateIpAddress": "10.0.1.17", - * "PrivateIpAddresses": [ + * MacAddress: "02:2f:8f:b0:cf:75", + * NetworkInterfaceId: "eni-e5aa89a3", + * OwnerId: "123456789012", + * PrivateDnsName: "ip-10-0-1-17.ec2.internal", + * PrivateIpAddress: "10.0.1.17", + * PrivateIpAddresses: [ * { - * "Association": { - * "AssociationId": "eipassoc-0fbb766a", - * "IpOwnerId": "123456789012", - * "PublicDnsName": "ec2-203-0-113-12.compute-1.amazonaws.com", - * "PublicIp": "203.0.113.12" + * Association: { + * AssociationId: "eipassoc-0fbb766a", + * IpOwnerId: "123456789012", + * PublicDnsName: "ec2-203-0-113-12.compute-1.amazonaws.com", + * PublicIp: "203.0.113.12" * }, - * "Primary": true, - * "PrivateDnsName": "ip-10-0-1-17.ec2.internal", - * "PrivateIpAddress": "10.0.1.17" + * Primary: true, + * PrivateDnsName: "ip-10-0-1-17.ec2.internal", + * PrivateIpAddress: "10.0.1.17" * } * ], - * "RequesterManaged": false, - * "SourceDestCheck": true, - * "Status": "in-use", - * "SubnetId": "subnet-b61f49f0", - * "TagSet": [], - * "VpcId": "vpc-a01106c2" + * RequesterManaged: false, + * SourceDestCheck: true, + * Status: "in-use", + * SubnetId: "subnet-b61f49f0", + * TagSet: [], + * VpcId: "vpc-a01106c2" * } * ] * } * *\/ - * // example id: ec2-describe-network-interfaces-1 * ``` * + * @public */ export class DescribeNetworkInterfacesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribePlacementGroupsCommand.ts b/clients/client-ec2/src/commands/DescribePlacementGroupsCommand.ts index 526814771d744..8609edd799e2a 100644 --- a/clients/client-ec2/src/commands/DescribePlacementGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribePlacementGroupsCommand.ts @@ -94,6 +94,7 @@ export interface DescribePlacementGroupsCommandOutput extends DescribePlacementG * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribePlacementGroupsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribePrefixListsCommand.ts b/clients/client-ec2/src/commands/DescribePrefixListsCommand.ts index c21f417f1b671..dc5e9f38fc764 100644 --- a/clients/client-ec2/src/commands/DescribePrefixListsCommand.ts +++ b/clients/client-ec2/src/commands/DescribePrefixListsCommand.ts @@ -79,6 +79,7 @@ export interface DescribePrefixListsCommandOutput extends DescribePrefixListsRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribePrefixListsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribePrincipalIdFormatCommand.ts b/clients/client-ec2/src/commands/DescribePrincipalIdFormatCommand.ts index 70eaaf608dbac..05db06a76c543 100644 --- a/clients/client-ec2/src/commands/DescribePrincipalIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/DescribePrincipalIdFormatCommand.ts @@ -90,6 +90,7 @@ export interface DescribePrincipalIdFormatCommandOutput extends DescribePrincipa * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribePrincipalIdFormatCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribePublicIpv4PoolsCommand.ts b/clients/client-ec2/src/commands/DescribePublicIpv4PoolsCommand.ts index a04fb769cfe28..43ba61859a44c 100644 --- a/clients/client-ec2/src/commands/DescribePublicIpv4PoolsCommand.ts +++ b/clients/client-ec2/src/commands/DescribePublicIpv4PoolsCommand.ts @@ -90,6 +90,7 @@ export interface DescribePublicIpv4PoolsCommandOutput extends DescribePublicIpv4 * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribePublicIpv4PoolsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeRegionsCommand.ts b/clients/client-ec2/src/commands/DescribeRegionsCommand.ts index 37e51eaf7ce02..fcb84f0374e2c 100644 --- a/clients/client-ec2/src/commands/DescribeRegionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeRegionsCommand.ts @@ -80,66 +80,66 @@ export interface DescribeRegionsCommandOutput extends DescribeRegionsResult, __M * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe your regions * ```javascript * // This example describes all the regions that are available to you. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeRegionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Regions": [ + * Regions: [ * { - * "Endpoint": "ec2.ap-south-1.amazonaws.com", - * "RegionName": "ap-south-1" + * Endpoint: "ec2.ap-south-1.amazonaws.com", + * RegionName: "ap-south-1" * }, * { - * "Endpoint": "ec2.eu-west-1.amazonaws.com", - * "RegionName": "eu-west-1" + * Endpoint: "ec2.eu-west-1.amazonaws.com", + * RegionName: "eu-west-1" * }, * { - * "Endpoint": "ec2.ap-southeast-1.amazonaws.com", - * "RegionName": "ap-southeast-1" + * Endpoint: "ec2.ap-southeast-1.amazonaws.com", + * RegionName: "ap-southeast-1" * }, * { - * "Endpoint": "ec2.ap-southeast-2.amazonaws.com", - * "RegionName": "ap-southeast-2" + * Endpoint: "ec2.ap-southeast-2.amazonaws.com", + * RegionName: "ap-southeast-2" * }, * { - * "Endpoint": "ec2.eu-central-1.amazonaws.com", - * "RegionName": "eu-central-1" + * Endpoint: "ec2.eu-central-1.amazonaws.com", + * RegionName: "eu-central-1" * }, * { - * "Endpoint": "ec2.ap-northeast-2.amazonaws.com", - * "RegionName": "ap-northeast-2" + * Endpoint: "ec2.ap-northeast-2.amazonaws.com", + * RegionName: "ap-northeast-2" * }, * { - * "Endpoint": "ec2.ap-northeast-1.amazonaws.com", - * "RegionName": "ap-northeast-1" + * Endpoint: "ec2.ap-northeast-1.amazonaws.com", + * RegionName: "ap-northeast-1" * }, * { - * "Endpoint": "ec2.us-east-1.amazonaws.com", - * "RegionName": "us-east-1" + * Endpoint: "ec2.us-east-1.amazonaws.com", + * RegionName: "us-east-1" * }, * { - * "Endpoint": "ec2.sa-east-1.amazonaws.com", - * "RegionName": "sa-east-1" + * Endpoint: "ec2.sa-east-1.amazonaws.com", + * RegionName: "sa-east-1" * }, * { - * "Endpoint": "ec2.us-west-1.amazonaws.com", - * "RegionName": "us-west-1" + * Endpoint: "ec2.us-west-1.amazonaws.com", + * RegionName: "us-west-1" * }, * { - * "Endpoint": "ec2.us-west-2.amazonaws.com", - * "RegionName": "us-west-2" + * Endpoint: "ec2.us-west-2.amazonaws.com", + * RegionName: "us-west-2" * } * ] * } * *\/ - * // example id: ec2-describe-regions-1 * ``` * + * @public */ export class DescribeRegionsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeReplaceRootVolumeTasksCommand.ts b/clients/client-ec2/src/commands/DescribeReplaceRootVolumeTasksCommand.ts index b08d47dce2cd2..44ea76bc7ea19 100644 --- a/clients/client-ec2/src/commands/DescribeReplaceRootVolumeTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReplaceRootVolumeTasksCommand.ts @@ -92,6 +92,7 @@ export interface DescribeReplaceRootVolumeTasksCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeReplaceRootVolumeTasksCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeReservedInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeReservedInstancesCommand.ts index 7052d55b73b29..69091612b3395 100644 --- a/clients/client-ec2/src/commands/DescribeReservedInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReservedInstancesCommand.ts @@ -106,6 +106,7 @@ export interface DescribeReservedInstancesCommandOutput extends DescribeReserved * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeReservedInstancesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeReservedInstancesListingsCommand.ts b/clients/client-ec2/src/commands/DescribeReservedInstancesListingsCommand.ts index 3b43edcd277cf..5237b33358079 100644 --- a/clients/client-ec2/src/commands/DescribeReservedInstancesListingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReservedInstancesListingsCommand.ts @@ -109,6 +109,7 @@ export interface DescribeReservedInstancesListingsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeReservedInstancesListingsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeReservedInstancesModificationsCommand.ts b/clients/client-ec2/src/commands/DescribeReservedInstancesModificationsCommand.ts index 36966b500f5c3..0eaa46bf1d0d3 100644 --- a/clients/client-ec2/src/commands/DescribeReservedInstancesModificationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReservedInstancesModificationsCommand.ts @@ -110,6 +110,7 @@ export interface DescribeReservedInstancesModificationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeReservedInstancesModificationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeReservedInstancesOfferingsCommand.ts b/clients/client-ec2/src/commands/DescribeReservedInstancesOfferingsCommand.ts index 9c7e748f11f7c..9f936fb6444ad 100644 --- a/clients/client-ec2/src/commands/DescribeReservedInstancesOfferingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReservedInstancesOfferingsCommand.ts @@ -123,6 +123,7 @@ export interface DescribeReservedInstancesOfferingsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeReservedInstancesOfferingsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeRouteTablesCommand.ts b/clients/client-ec2/src/commands/DescribeRouteTablesCommand.ts index aba9631f0c9b7..e5dda5385816d 100644 --- a/clients/client-ec2/src/commands/DescribeRouteTablesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeRouteTablesCommand.ts @@ -124,46 +124,46 @@ export interface DescribeRouteTablesCommandOutput extends DescribeRouteTablesRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe a route table * ```javascript * // This example describes the specified route table. * const input = { - * "RouteTableIds": [ + * RouteTableIds: [ * "rtb-1f382e7d" * ] * }; * const command = new DescribeRouteTablesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RouteTables": [ + * RouteTables: [ * { - * "Associations": [ + * Associations: [ * { - * "Main": true, - * "RouteTableAssociationId": "rtbassoc-d8ccddba", - * "RouteTableId": "rtb-1f382e7d" + * Main: true, + * RouteTableAssociationId: "rtbassoc-d8ccddba", + * RouteTableId: "rtb-1f382e7d" * } * ], - * "PropagatingVgws": [], - * "RouteTableId": "rtb-1f382e7d", - * "Routes": [ + * PropagatingVgws: [], + * RouteTableId: "rtb-1f382e7d", + * Routes: [ * { - * "DestinationCidrBlock": "10.0.0.0/16", - * "GatewayId": "local", - * "State": "active" + * DestinationCidrBlock: "10.0.0.0/16", + * GatewayId: "local", + * State: "active" * } * ], - * "Tags": [], - * "VpcId": "vpc-a01106c2" + * Tags: [], + * VpcId: "vpc-a01106c2" * } * ] * } * *\/ - * // example id: ec2-describe-route-tables-1 * ``` * + * @public */ export class DescribeRouteTablesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeScheduledInstanceAvailabilityCommand.ts b/clients/client-ec2/src/commands/DescribeScheduledInstanceAvailabilityCommand.ts index 58176675fa357..57005014f21b3 100644 --- a/clients/client-ec2/src/commands/DescribeScheduledInstanceAvailabilityCommand.ts +++ b/clients/client-ec2/src/commands/DescribeScheduledInstanceAvailabilityCommand.ts @@ -117,6 +117,7 @@ export interface DescribeScheduledInstanceAvailabilityCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeScheduledInstanceAvailabilityCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeScheduledInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeScheduledInstancesCommand.ts index 8992bd67105ae..f4798439603ea 100644 --- a/clients/client-ec2/src/commands/DescribeScheduledInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeScheduledInstancesCommand.ts @@ -99,6 +99,7 @@ export interface DescribeScheduledInstancesCommandOutput extends DescribeSchedul * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeScheduledInstancesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeSecurityGroupReferencesCommand.ts b/clients/client-ec2/src/commands/DescribeSecurityGroupReferencesCommand.ts index 4422a69587f8a..579798c1b30c9 100644 --- a/clients/client-ec2/src/commands/DescribeSecurityGroupReferencesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSecurityGroupReferencesCommand.ts @@ -70,31 +70,31 @@ export interface DescribeSecurityGroupReferencesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe security group references * ```javascript * // This example describes the security group references for the specified security group. * const input = { - * "GroupId": [ + * GroupId: [ * "sg-903004f8" * ] * }; * const command = new DescribeSecurityGroupReferencesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SecurityGroupReferenceSet": [ + * SecurityGroupReferenceSet: [ * { - * "GroupId": "sg-903004f8", - * "ReferencingVpcId": "vpc-1a2b3c4d", - * "VpcPeeringConnectionId": "pcx-b04deed9" + * GroupId: "sg-903004f8", + * ReferencingVpcId: "vpc-1a2b3c4d", + * VpcPeeringConnectionId: "pcx-b04deed9" * } * ] * } * *\/ - * // example id: to-describe-security-group-references-1529354312088 * ``` * + * @public */ export class DescribeSecurityGroupReferencesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeSecurityGroupRulesCommand.ts b/clients/client-ec2/src/commands/DescribeSecurityGroupRulesCommand.ts index 70777d3ad04b5..0e21918ba4023 100644 --- a/clients/client-ec2/src/commands/DescribeSecurityGroupRulesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSecurityGroupRulesCommand.ts @@ -97,6 +97,7 @@ export interface DescribeSecurityGroupRulesCommandOutput extends DescribeSecurit * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeSecurityGroupRulesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeSecurityGroupVpcAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeSecurityGroupVpcAssociationsCommand.ts index 0482e1fe5f2bb..4e42c85487fec 100644 --- a/clients/client-ec2/src/commands/DescribeSecurityGroupVpcAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSecurityGroupVpcAssociationsCommand.ts @@ -82,6 +82,7 @@ export interface DescribeSecurityGroupVpcAssociationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeSecurityGroupVpcAssociationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeSecurityGroupsCommand.ts b/clients/client-ec2/src/commands/DescribeSecurityGroupsCommand.ts index ab5a843a8757e..7705c9df56152 100644 --- a/clients/client-ec2/src/commands/DescribeSecurityGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSecurityGroupsCommand.ts @@ -159,38 +159,43 @@ export interface DescribeSecurityGroupsCommandOutput extends DescribeSecurityGro * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe a security group * ```javascript * // This example describes the specified security group. * const input = { - * "GroupIds": [ + * GroupIds: [ * "sg-903004f8" * ] * }; * const command = new DescribeSecurityGroupsCommand(input); - * await client.send(command); - * // example id: to-describe-a-security-group-1529354426314 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * * @example To describe a tagged security group * ```javascript * // This example describes the security groups that include the specified tag (Purpose=test). * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "tag:Purpose", - * "Values": [ + * Name: "tag:Purpose", + * Values: [ * "test" * ] * } * ] * }; * const command = new DescribeSecurityGroupsCommand(input); - * await client.send(command); - * // example id: to-describe-a-tagged-security-group-1529354553880 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DescribeSecurityGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeSnapshotAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeSnapshotAttributeCommand.ts index c5c1f9b709387..f67c0fbc4661f 100644 --- a/clients/client-ec2/src/commands/DescribeSnapshotAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSnapshotAttributeCommand.ts @@ -71,25 +71,25 @@ export interface DescribeSnapshotAttributeCommandOutput extends DescribeSnapshot * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe snapshot attributes * ```javascript * // This example describes the ``createVolumePermission`` attribute on a snapshot with the snapshot ID of ``snap-066877671789bd71b``. * const input = { - * "Attribute": "createVolumePermission", - * "SnapshotId": "snap-066877671789bd71b" + * Attribute: "createVolumePermission", + * SnapshotId: "snap-066877671789bd71b" * }; * const command = new DescribeSnapshotAttributeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CreateVolumePermissions": [], - * "SnapshotId": "snap-066877671789bd71b" + * CreateVolumePermissions: [], + * SnapshotId: "snap-066877671789bd71b" * } * *\/ - * // example id: to-describe-snapshot-attributes-1472503199736 * ``` * + * @public */ export class DescribeSnapshotAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeSnapshotTierStatusCommand.ts b/clients/client-ec2/src/commands/DescribeSnapshotTierStatusCommand.ts index f33309e250bf6..d08d220a63796 100644 --- a/clients/client-ec2/src/commands/DescribeSnapshotTierStatusCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSnapshotTierStatusCommand.ts @@ -86,6 +86,7 @@ export interface DescribeSnapshotTierStatusCommandOutput extends DescribeSnapsho * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeSnapshotTierStatusCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeSnapshotsCommand.ts b/clients/client-ec2/src/commands/DescribeSnapshotsCommand.ts index 8010e5ea8d7c1..0a15c181d39a8 100644 --- a/clients/client-ec2/src/commands/DescribeSnapshotsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSnapshotsCommand.ts @@ -152,75 +152,74 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsResult, * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe a snapshot * ```javascript * // This example describes a snapshot with the snapshot ID of ``snap-1234567890abcdef0``. * const input = { - * "SnapshotIds": [ + * SnapshotIds: [ * "snap-1234567890abcdef0" * ] * }; * const command = new DescribeSnapshotsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NextToken": "", - * "Snapshots": [ + * NextToken: "", + * Snapshots: [ * { - * "Description": "This is my snapshot.", - * "OwnerId": "012345678910", - * "Progress": "100%", - * "SnapshotId": "snap-1234567890abcdef0", - * "StartTime": "2014-02-28T21:28:32.000Z", - * "State": "completed", - * "VolumeId": "vol-049df61146c4d7901", - * "VolumeSize": 8 + * Description: "This is my snapshot.", + * OwnerId: "012345678910", + * Progress: "100%", + * SnapshotId: "snap-1234567890abcdef0", + * StartTime: "2014-02-28T21:28:32.000Z", + * State: "completed", + * VolumeId: "vol-049df61146c4d7901", + * VolumeSize: 8 * } * ] * } * *\/ - * // example id: to-describe-a-snapshot-1472503807850 * ``` * * @example To describe snapshots using filters * ```javascript * // This example describes all snapshots owned by the ID 012345678910 that are in the ``pending`` status. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "status", - * "Values": [ + * Name: "status", + * Values: [ * "pending" * ] * } * ], - * "OwnerIds": [ + * OwnerIds: [ * "012345678910" * ] * }; * const command = new DescribeSnapshotsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NextToken": "", - * "Snapshots": [ + * NextToken: "", + * Snapshots: [ * { - * "Description": "This is my copied snapshot.", - * "OwnerId": "012345678910", - * "Progress": "87%", - * "SnapshotId": "snap-066877671789bd71b", - * "StartTime": "2014-02-28T21:37:27.000Z", - * "State": "pending", - * "VolumeId": "vol-1234567890abcdef0", - * "VolumeSize": 8 + * Description: "This is my copied snapshot.", + * OwnerId: "012345678910", + * Progress: "87%", + * SnapshotId: "snap-066877671789bd71b", + * StartTime: "2014-02-28T21:37:27.000Z", + * State: "pending", + * VolumeId: "vol-1234567890abcdef0", + * VolumeSize: 8 * } * ] * } * *\/ - * // example id: to-describe-snapshots-using-filters-1472503929793 * ``` * + * @public */ export class DescribeSnapshotsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeSpotDatafeedSubscriptionCommand.ts b/clients/client-ec2/src/commands/DescribeSpotDatafeedSubscriptionCommand.ts index 75264616ce2ae..1d6f5159e7e8a 100644 --- a/clients/client-ec2/src/commands/DescribeSpotDatafeedSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotDatafeedSubscriptionCommand.ts @@ -70,26 +70,26 @@ export interface DescribeSpotDatafeedSubscriptionCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe the datafeed for your AWS account * ```javascript * // This example describes the Spot Instance datafeed subscription for your AWS account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeSpotDatafeedSubscriptionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SpotDatafeedSubscription": { - * "Bucket": "my-s3-bucket", - * "OwnerId": "123456789012", - * "Prefix": "spotdata", - * "State": "Active" + * SpotDatafeedSubscription: { + * Bucket: "my-s3-bucket", + * OwnerId: "123456789012", + * Prefix: "spotdata", + * State: "Active" * } * } * *\/ - * // example id: ec2-describe-spot-datafeed-subscription-1 * ``` * + * @public */ export class DescribeSpotDatafeedSubscriptionCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeSpotFleetInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeSpotFleetInstancesCommand.ts index 34e1daf644ec2..8f2038851ed2d 100644 --- a/clients/client-ec2/src/commands/DescribeSpotFleetInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotFleetInstancesCommand.ts @@ -67,30 +67,30 @@ export interface DescribeSpotFleetInstancesCommandOutput extends DescribeSpotFle * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe the Spot Instances associated with a Spot fleet * ```javascript * // This example lists the Spot Instances associated with the specified Spot fleet. * const input = { - * "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" + * SpotFleetRequestId: "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" * }; * const command = new DescribeSpotFleetInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ActiveInstances": [ + * ActiveInstances: [ * { - * "InstanceId": "i-1234567890abcdef0", - * "InstanceType": "m3.medium", - * "SpotInstanceRequestId": "sir-08b93456" + * InstanceId: "i-1234567890abcdef0", + * InstanceType: "m3.medium", + * SpotInstanceRequestId: "sir-08b93456" * } * ], - * "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" + * SpotFleetRequestId: "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" * } * *\/ - * // example id: ec2-describe-spot-fleet-instances-1 * ``` * + * @public */ export class DescribeSpotFleetInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeSpotFleetRequestHistoryCommand.ts b/clients/client-ec2/src/commands/DescribeSpotFleetRequestHistoryCommand.ts index fd0797fa603a5..2470a8d105a31 100644 --- a/clients/client-ec2/src/commands/DescribeSpotFleetRequestHistoryCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotFleetRequestHistoryCommand.ts @@ -85,58 +85,58 @@ export interface DescribeSpotFleetRequestHistoryCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe Spot fleet history * ```javascript * // This example returns the history for the specified Spot fleet starting at the specified time. * const input = { - * "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE", - * "StartTime": "2015-05-26T00:00:00Z" + * SpotFleetRequestId: "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE", + * StartTime: "2015-05-26T00:00:00Z" * }; * const command = new DescribeSpotFleetRequestHistoryCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "HistoryRecords": [ + * HistoryRecords: [ * { - * "EventInformation": { - * "EventSubType": "submitted" + * EventInformation: { + * EventSubType: "submitted" * }, - * "EventType": "fleetRequestChange", - * "Timestamp": "2015-05-26T23:17:20.697Z" + * EventType: "fleetRequestChange", + * Timestamp: "2015-05-26T23:17:20.697Z" * }, * { - * "EventInformation": { - * "EventSubType": "active" + * EventInformation: { + * EventSubType: "active" * }, - * "EventType": "fleetRequestChange", - * "Timestamp": "2015-05-26T23:17:20.873Z" + * EventType: "fleetRequestChange", + * Timestamp: "2015-05-26T23:17:20.873Z" * }, * { - * "EventInformation": { - * "EventSubType": "launched", - * "InstanceId": "i-1234567890abcdef0" + * EventInformation: { + * EventSubType: "launched", + * InstanceId: "i-1234567890abcdef0" * }, - * "EventType": "instanceChange", - * "Timestamp": "2015-05-26T23:21:21.712Z" + * EventType: "instanceChange", + * Timestamp: "2015-05-26T23:21:21.712Z" * }, * { - * "EventInformation": { - * "EventSubType": "launched", - * "InstanceId": "i-1234567890abcdef1" + * EventInformation: { + * EventSubType: "launched", + * InstanceId: "i-1234567890abcdef1" * }, - * "EventType": "instanceChange", - * "Timestamp": "2015-05-26T23:21:21.816Z" + * EventType: "instanceChange", + * Timestamp: "2015-05-26T23:21:21.816Z" * } * ], - * "NextToken": "CpHNsscimcV5oH7bSbub03CI2Qms5+ypNpNm+53MNlR0YcXAkp0xFlfKf91yVxSExmbtma3awYxMFzNA663ZskT0AHtJ6TCb2Z8bQC2EnZgyELbymtWPfpZ1ZbauVg+P+TfGlWxWWB/Vr5dk5d4LfdgA/DRAHUrYgxzrEXAMPLE=", - * "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE", - * "StartTime": "2015-05-26T00:00:00Z" + * NextToken: "CpHNsscimcV5oH7bSbub03CI2Qms5+ypNpNm+53MNlR0YcXAkp0xFlfKf91yVxSExmbtma3awYxMFzNA663ZskT0AHtJ6TCb2Z8bQC2EnZgyELbymtWPfpZ1ZbauVg+P+TfGlWxWWB/Vr5dk5d4LfdgA/DRAHUrYgxzrEXAMPLE=", + * SpotFleetRequestId: "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE", + * StartTime: "2015-05-26T00:00:00Z" * } * *\/ - * // example id: ec2-describe-spot-fleet-request-history-1 * ``` * + * @public */ export class DescribeSpotFleetRequestHistoryCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeSpotFleetRequestsCommand.ts b/clients/client-ec2/src/commands/DescribeSpotFleetRequestsCommand.ts index eef87a84cb581..4b5bdf88052c0 100644 --- a/clients/client-ec2/src/commands/DescribeSpotFleetRequestsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotFleetRequestsCommand.ts @@ -423,65 +423,65 @@ export interface DescribeSpotFleetRequestsCommandOutput extends DescribeSpotFlee * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe a Spot fleet request * ```javascript * // This example describes the specified Spot fleet request. * const input = { - * "SpotFleetRequestIds": [ + * SpotFleetRequestIds: [ * "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" * ] * }; * const command = new DescribeSpotFleetRequestsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SpotFleetRequestConfigs": [ + * SpotFleetRequestConfigs: [ * { - * "SpotFleetRequestConfig": { - * "IamFleetRole": "arn:aws:iam::123456789012:role/my-spot-fleet-role", - * "LaunchSpecifications": [ + * SpotFleetRequestConfig: { + * IamFleetRole: "arn:aws:iam::123456789012:role/my-spot-fleet-role", + * LaunchSpecifications: [ * { - * "EbsOptimized": false, - * "ImageId": "ami-1a2b3c4d", - * "InstanceType": "cc2.8xlarge", - * "NetworkInterfaces": [ + * EbsOptimized: false, + * ImageId: "ami-1a2b3c4d", + * InstanceType: "cc2.8xlarge", + * NetworkInterfaces: [ * { - * "AssociatePublicIpAddress": true, - * "DeleteOnTermination": false, - * "DeviceIndex": 0, - * "SecondaryPrivateIpAddressCount": 0, - * "SubnetId": "subnet-a61dafcf" + * AssociatePublicIpAddress: true, + * DeleteOnTermination: false, + * DeviceIndex: 0, + * SecondaryPrivateIpAddressCount: 0, + * SubnetId: "subnet-a61dafcf" * } * ] * }, * { - * "EbsOptimized": false, - * "ImageId": "ami-1a2b3c4d", - * "InstanceType": "r3.8xlarge", - * "NetworkInterfaces": [ + * EbsOptimized: false, + * ImageId: "ami-1a2b3c4d", + * InstanceType: "r3.8xlarge", + * NetworkInterfaces: [ * { - * "AssociatePublicIpAddress": true, - * "DeleteOnTermination": false, - * "DeviceIndex": 0, - * "SecondaryPrivateIpAddressCount": 0, - * "SubnetId": "subnet-a61dafcf" + * AssociatePublicIpAddress: true, + * DeleteOnTermination: false, + * DeviceIndex: 0, + * SecondaryPrivateIpAddressCount: 0, + * SubnetId: "subnet-a61dafcf" * } * ] * } * ], - * "SpotPrice": "0.05", - * "TargetCapacity": 20 + * SpotPrice: "0.05", + * TargetCapacity: 20 * }, - * "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE", - * "SpotFleetRequestState": "active" + * SpotFleetRequestId: "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE", + * SpotFleetRequestState: "active" * } * ] * } * *\/ - * // example id: ec2-describe-spot-fleet-requests-1 * ``` * + * @public */ export class DescribeSpotFleetRequestsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeSpotInstanceRequestsCommand.ts b/clients/client-ec2/src/commands/DescribeSpotInstanceRequestsCommand.ts index 0f28871cb155d..10bc0d70ac4ad 100644 --- a/clients/client-ec2/src/commands/DescribeSpotInstanceRequestsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotInstanceRequestsCommand.ts @@ -225,63 +225,63 @@ export interface DescribeSpotInstanceRequestsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe a Spot Instance request * ```javascript * // This example describes the specified Spot Instance request. * const input = { - * "SpotInstanceRequestIds": [ + * SpotInstanceRequestIds: [ * "sir-08b93456" * ] * }; * const command = new DescribeSpotInstanceRequestsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SpotInstanceRequests": [ + * SpotInstanceRequests: [ * { - * "CreateTime": "2014-04-30T18:14:55.000Z", - * "InstanceId": "i-1234567890abcdef0", - * "LaunchSpecification": { - * "BlockDeviceMappings": [ + * CreateTime: "2014-04-30T18:14:55.000Z", + * InstanceId: "i-1234567890abcdef0", + * LaunchSpecification: { + * BlockDeviceMappings: [ * { - * "DeviceName": "/dev/sda1", - * "Ebs": { - * "DeleteOnTermination": true, - * "VolumeSize": 8, - * "VolumeType": "standard" + * DeviceName: "/dev/sda1", + * Ebs: { + * DeleteOnTermination: true, + * VolumeSize: 8, + * VolumeType: "standard" * } * } * ], - * "EbsOptimized": false, - * "ImageId": "ami-7aba833f", - * "InstanceType": "m1.small", - * "KeyName": "my-key-pair", - * "SecurityGroups": [ + * EbsOptimized: false, + * ImageId: "ami-7aba833f", + * InstanceType: "m1.small", + * KeyName: "my-key-pair", + * SecurityGroups: [ * { - * "GroupId": "sg-e38f24a7", - * "GroupName": "my-security-group" + * GroupId: "sg-e38f24a7", + * GroupName: "my-security-group" * } * ] * }, - * "LaunchedAvailabilityZone": "us-west-1b", - * "ProductDescription": "Linux/UNIX", - * "SpotInstanceRequestId": "sir-08b93456", - * "SpotPrice": "0.010000", - * "State": "active", - * "Status": { - * "Code": "fulfilled", - * "Message": "Your Spot request is fulfilled.", - * "UpdateTime": "2014-04-30T18:16:21.000Z" + * LaunchedAvailabilityZone: "us-west-1b", + * ProductDescription: "Linux/UNIX", + * SpotInstanceRequestId: "sir-08b93456", + * SpotPrice: "0.010000", + * State: "active", + * Status: { + * Code: "fulfilled", + * Message: "Your Spot request is fulfilled.", + * UpdateTime: "2014-04-30T18:16:21.000Z" * }, - * "Type": "one-time" + * Type: "one-time" * } * ] * } * *\/ - * // example id: ec2-describe-spot-instance-requests-1 * ``` * + * @public */ export class DescribeSpotInstanceRequestsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeSpotPriceHistoryCommand.ts b/clients/client-ec2/src/commands/DescribeSpotPriceHistoryCommand.ts index 4a3ae454869ea..5472fab285249 100644 --- a/clients/client-ec2/src/commands/DescribeSpotPriceHistoryCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotPriceHistoryCommand.ts @@ -87,45 +87,45 @@ export interface DescribeSpotPriceHistoryCommandOutput extends DescribeSpotPrice * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe Spot price history for Linux/UNIX (Amazon VPC) * ```javascript * // This example returns the Spot Price history for m1.xlarge, Linux/UNIX (Amazon VPC) instances for a particular day in January. * const input = { - * "EndTime": "2014-01-06T08:09:10.05Z", - * "InstanceTypes": [ + * EndTime: "2014-01-06T08:09:10.05Z", + * InstanceTypes: [ * "m1.xlarge" * ], - * "ProductDescriptions": [ + * ProductDescriptions: [ * "Linux/UNIX (Amazon VPC)" * ], - * "StartTime": "2014-01-06T07:08:09.05Z" + * StartTime: "2014-01-06T07:08:09.05Z" * }; * const command = new DescribeSpotPriceHistoryCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SpotPriceHistory": [ + * SpotPriceHistory: [ * { - * "AvailabilityZone": "us-west-1a", - * "InstanceType": "m1.xlarge", - * "ProductDescription": "Linux/UNIX (Amazon VPC)", - * "SpotPrice": "0.080000", - * "Timestamp": "2014-01-06T04:32:53.000Z" + * AvailabilityZone: "us-west-1a", + * InstanceType: "m1.xlarge", + * ProductDescription: "Linux/UNIX (Amazon VPC)", + * SpotPrice: "0.080000", + * Timestamp: "2014-01-06T04:32:53.000Z" * }, * { - * "AvailabilityZone": "us-west-1c", - * "InstanceType": "m1.xlarge", - * "ProductDescription": "Linux/UNIX (Amazon VPC)", - * "SpotPrice": "0.080000", - * "Timestamp": "2014-01-05T11:28:26.000Z" + * AvailabilityZone: "us-west-1c", + * InstanceType: "m1.xlarge", + * ProductDescription: "Linux/UNIX (Amazon VPC)", + * SpotPrice: "0.080000", + * Timestamp: "2014-01-05T11:28:26.000Z" * } * ] * } * *\/ - * // example id: ec2-describe-spot-price-history-1 * ``` * + * @public */ export class DescribeSpotPriceHistoryCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeStaleSecurityGroupsCommand.ts b/clients/client-ec2/src/commands/DescribeStaleSecurityGroupsCommand.ts index ea19abda3bd6a..f6de0419c7365 100644 --- a/clients/client-ec2/src/commands/DescribeStaleSecurityGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeStaleSecurityGroupsCommand.ts @@ -121,6 +121,7 @@ export interface DescribeStaleSecurityGroupsCommandOutput extends DescribeStaleS * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeStaleSecurityGroupsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeStoreImageTasksCommand.ts b/clients/client-ec2/src/commands/DescribeStoreImageTasksCommand.ts index 8651f60aca3f7..a828953cb9fe0 100644 --- a/clients/client-ec2/src/commands/DescribeStoreImageTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeStoreImageTasksCommand.ts @@ -90,6 +90,7 @@ export interface DescribeStoreImageTasksCommandOutput extends DescribeStoreImage * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeStoreImageTasksCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeSubnetsCommand.ts b/clients/client-ec2/src/commands/DescribeSubnetsCommand.ts index d5a673d46ec29..aa4d3f28d936b 100644 --- a/clients/client-ec2/src/commands/DescribeSubnetsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSubnetsCommand.ts @@ -120,15 +120,15 @@ export interface DescribeSubnetsCommandOutput extends DescribeSubnetsResult, __M * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe the subnets for a VPC * ```javascript * // This example describes the subnets for the specified VPC. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "vpc-id", - * "Values": [ + * Name: "vpc-id", + * Values: [ * "vpc-a01106c2" * ] * } @@ -136,25 +136,25 @@ export interface DescribeSubnetsCommandOutput extends DescribeSubnetsResult, __M * }; * const command = new DescribeSubnetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Subnets": [ + * Subnets: [ * { - * "AvailabilityZone": "us-east-1c", - * "AvailableIpAddressCount": 251, - * "CidrBlock": "10.0.1.0/24", - * "DefaultForAz": false, - * "MapPublicIpOnLaunch": false, - * "State": "available", - * "SubnetId": "subnet-9d4a7b6c", - * "VpcId": "vpc-a01106c2" + * AvailabilityZone: "us-east-1c", + * AvailableIpAddressCount: 251, + * CidrBlock: "10.0.1.0/24", + * DefaultForAz: false, + * MapPublicIpOnLaunch: false, + * State: "available", + * SubnetId: "subnet-9d4a7b6c", + * VpcId: "vpc-a01106c2" * } * ] * } * *\/ - * // example id: ec2-describe-subnets-1 * ``` * + * @public */ export class DescribeSubnetsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeTagsCommand.ts b/clients/client-ec2/src/commands/DescribeTagsCommand.ts index a5dd6de09ab9d..deea954eb98af 100644 --- a/clients/client-ec2/src/commands/DescribeTagsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTagsCommand.ts @@ -84,15 +84,15 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResult, __Metadat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe the tags for a single resource * ```javascript * // This example describes the tags for the specified instance. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "resource-id", - * "Values": [ + * Name: "resource-id", + * Values: [ * "i-1234567890abcdef8" * ] * } @@ -100,27 +100,27 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResult, __Metadat * }; * const command = new DescribeTagsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Tags": [ + * Tags: [ * { - * "Key": "Stack", - * "ResourceId": "i-1234567890abcdef8", - * "ResourceType": "instance", - * "Value": "test" + * Key: "Stack", + * ResourceId: "i-1234567890abcdef8", + * ResourceType: "instance", + * Value: "test" * }, * { - * "Key": "Name", - * "ResourceId": "i-1234567890abcdef8", - * "ResourceType": "instance", - * "Value": "Beta Server" + * Key: "Name", + * ResourceId: "i-1234567890abcdef8", + * ResourceType: "instance", + * Value: "Beta Server" * } * ] * } * *\/ - * // example id: ec2-describe-tags-1 * ``` * + * @public */ export class DescribeTagsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeTrafficMirrorFilterRulesCommand.ts b/clients/client-ec2/src/commands/DescribeTrafficMirrorFilterRulesCommand.ts index 49eed2a40be0a..422abcee04fa2 100644 --- a/clients/client-ec2/src/commands/DescribeTrafficMirrorFilterRulesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrafficMirrorFilterRulesCommand.ts @@ -101,6 +101,7 @@ export interface DescribeTrafficMirrorFilterRulesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTrafficMirrorFilterRulesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeTrafficMirrorFiltersCommand.ts b/clients/client-ec2/src/commands/DescribeTrafficMirrorFiltersCommand.ts index a311afa9e9de2..ac501b4d3c991 100644 --- a/clients/client-ec2/src/commands/DescribeTrafficMirrorFiltersCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrafficMirrorFiltersCommand.ts @@ -139,6 +139,7 @@ export interface DescribeTrafficMirrorFiltersCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTrafficMirrorFiltersCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeTrafficMirrorSessionsCommand.ts b/clients/client-ec2/src/commands/DescribeTrafficMirrorSessionsCommand.ts index da14217cd6965..1c857d259dd82 100644 --- a/clients/client-ec2/src/commands/DescribeTrafficMirrorSessionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrafficMirrorSessionsCommand.ts @@ -89,6 +89,7 @@ export interface DescribeTrafficMirrorSessionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTrafficMirrorSessionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeTrafficMirrorTargetsCommand.ts b/clients/client-ec2/src/commands/DescribeTrafficMirrorTargetsCommand.ts index 2bfc6446a41f4..4b277b3c9b6e3 100644 --- a/clients/client-ec2/src/commands/DescribeTrafficMirrorTargetsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrafficMirrorTargetsCommand.ts @@ -87,6 +87,7 @@ export interface DescribeTrafficMirrorTargetsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTrafficMirrorTargetsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayAttachmentsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayAttachmentsCommand.ts index 31f699f4b4efd..053d8e91ba745 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayAttachmentsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayAttachmentsCommand.ts @@ -96,6 +96,7 @@ export interface DescribeTransitGatewayAttachmentsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTransitGatewayAttachmentsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayConnectPeersCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayConnectPeersCommand.ts index 3fca2cf7f849a..73de461c091f1 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayConnectPeersCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayConnectPeersCommand.ts @@ -107,6 +107,7 @@ export interface DescribeTransitGatewayConnectPeersCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTransitGatewayConnectPeersCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayConnectsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayConnectsCommand.ts index ecdf7d0c83e08..15b0ca7c60c05 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayConnectsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayConnectsCommand.ts @@ -91,6 +91,7 @@ export interface DescribeTransitGatewayConnectsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTransitGatewayConnectsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayMulticastDomainsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayMulticastDomainsCommand.ts index ab9441a8761e3..2d117c3ebaf27 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayMulticastDomainsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayMulticastDomainsCommand.ts @@ -98,6 +98,7 @@ export interface DescribeTransitGatewayMulticastDomainsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTransitGatewayMulticastDomainsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayPeeringAttachmentsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayPeeringAttachmentsCommand.ts index 6d8ca736356fa..8c51c10b53d90 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayPeeringAttachmentsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayPeeringAttachmentsCommand.ts @@ -110,6 +110,7 @@ export interface DescribeTransitGatewayPeeringAttachmentsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTransitGatewayPeeringAttachmentsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayPolicyTablesCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayPolicyTablesCommand.ts index 81e2f348dbb54..294644b5ec436 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayPolicyTablesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayPolicyTablesCommand.ts @@ -90,6 +90,7 @@ export interface DescribeTransitGatewayPolicyTablesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTransitGatewayPolicyTablesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.ts index 908637d7a4a65..f9aba13658554 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.ts @@ -97,6 +97,7 @@ export interface DescribeTransitGatewayRouteTableAnnouncementsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTransitGatewayRouteTableAnnouncementsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTablesCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTablesCommand.ts index ba86f253154aa..6bebc7809772f 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTablesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTablesCommand.ts @@ -90,6 +90,7 @@ export interface DescribeTransitGatewayRouteTablesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTransitGatewayRouteTablesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayVpcAttachmentsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayVpcAttachmentsCommand.ts index d44b43b614dc5..7f97da8671be5 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayVpcAttachmentsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayVpcAttachmentsCommand.ts @@ -102,6 +102,7 @@ export interface DescribeTransitGatewayVpcAttachmentsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTransitGatewayVpcAttachmentsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewaysCommand.ts index a03bde871bd10..603e0340cc7dc 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewaysCommand.ts @@ -100,6 +100,7 @@ export interface DescribeTransitGatewaysCommandOutput extends DescribeTransitGat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTransitGatewaysCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeTrunkInterfaceAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeTrunkInterfaceAssociationsCommand.ts index 1aaad8c7a9953..11a6ac17cf50e 100644 --- a/clients/client-ec2/src/commands/DescribeTrunkInterfaceAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrunkInterfaceAssociationsCommand.ts @@ -92,6 +92,7 @@ export interface DescribeTrunkInterfaceAssociationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeTrunkInterfaceAssociationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessEndpointsCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessEndpointsCommand.ts index 4d09c80638911..3bf60f9d58401 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessEndpointsCommand.ts @@ -158,6 +158,7 @@ export interface DescribeVerifiedAccessEndpointsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVerifiedAccessEndpointsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessGroupsCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessGroupsCommand.ts index fb859e6771596..de59ae1c74500 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessGroupsCommand.ts @@ -93,6 +93,7 @@ export interface DescribeVerifiedAccessGroupsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVerifiedAccessGroupsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.ts index 47d2bd1149ca6..00c4ade9befdc 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.ts @@ -112,6 +112,7 @@ export interface DescribeVerifiedAccessInstanceLoggingConfigurationsCommandOutpu * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVerifiedAccessInstanceLoggingConfigurationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessInstancesCommand.ts index 287b583d5397f..0432cebb3e801 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessInstancesCommand.ts @@ -103,6 +103,7 @@ export interface DescribeVerifiedAccessInstancesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVerifiedAccessInstancesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessTrustProvidersCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessTrustProvidersCommand.ts index cce95caaf2e6a..12e82b87ba554 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessTrustProvidersCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessTrustProvidersCommand.ts @@ -121,6 +121,7 @@ export interface DescribeVerifiedAccessTrustProvidersCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVerifiedAccessTrustProvidersCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVolumeAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeVolumeAttributeCommand.ts index 8649af97792d2..8abb371fe43d4 100644 --- a/clients/client-ec2/src/commands/DescribeVolumeAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVolumeAttributeCommand.ts @@ -68,27 +68,27 @@ export interface DescribeVolumeAttributeCommandOutput extends DescribeVolumeAttr * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe a volume attribute * ```javascript * // This example describes the ``autoEnableIo`` attribute of the volume with the ID ``vol-049df61146c4d7901``. * const input = { - * "Attribute": "autoEnableIO", - * "VolumeId": "vol-049df61146c4d7901" + * Attribute: "autoEnableIO", + * VolumeId: "vol-049df61146c4d7901" * }; * const command = new DescribeVolumeAttributeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AutoEnableIO": { - * "Value": false + * AutoEnableIO: { + * Value: false * }, - * "VolumeId": "vol-049df61146c4d7901" + * VolumeId: "vol-049df61146c4d7901" * } * *\/ - * // example id: to-describe-a-volume-attribute-1472505773492 * ``` * + * @public */ export class DescribeVolumeAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeVolumeStatusCommand.ts b/clients/client-ec2/src/commands/DescribeVolumeStatusCommand.ts index 159afedafdf53..f18c7808ea59e 100644 --- a/clients/client-ec2/src/commands/DescribeVolumeStatusCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVolumeStatusCommand.ts @@ -145,53 +145,52 @@ export interface DescribeVolumeStatusCommandOutput extends DescribeVolumeStatusR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe the status of a single volume * ```javascript * // This example describes the status for the volume ``vol-1234567890abcdef0``. * const input = { - * "VolumeIds": [ + * VolumeIds: [ * "vol-1234567890abcdef0" * ] * }; * const command = new DescribeVolumeStatusCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "VolumeStatuses": [ + * VolumeStatuses: [ * { - * "Actions": [], - * "AvailabilityZone": "us-east-1a", - * "Events": [], - * "VolumeId": "vol-1234567890abcdef0", - * "VolumeStatus": { - * "Details": [ + * Actions: [], + * AvailabilityZone: "us-east-1a", + * Events: [], + * VolumeId: "vol-1234567890abcdef0", + * VolumeStatus: { + * Details: [ * { - * "Name": "io-enabled", - * "Status": "passed" + * Name: "io-enabled", + * Status: "passed" * }, * { - * "Name": "io-performance", - * "Status": "not-applicable" + * Name: "io-performance", + * Status: "not-applicable" * } * ], - * "Status": "ok" + * Status: "ok" * } * } * ] * } * *\/ - * // example id: to-describe-the-status-of-a-single-volume-1472507016193 * ``` * * @example To describe the status of impaired volumes * ```javascript * // This example describes the status for all volumes that are impaired. In this example output, there are no impaired volumes. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "volume-status.status", - * "Values": [ + * Name: "volume-status.status", + * Values: [ * "impaired" * ] * } @@ -199,14 +198,14 @@ export interface DescribeVolumeStatusCommandOutput extends DescribeVolumeStatusR * }; * const command = new DescribeVolumeStatusCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "VolumeStatuses": [] + * VolumeStatuses: [] * } * *\/ - * // example id: to-describe-the-status-of-impaired-volumes-1472507239821 * ``` * + * @public */ export class DescribeVolumeStatusCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeVolumesCommand.ts b/clients/client-ec2/src/commands/DescribeVolumesCommand.ts index 78c42e0cddcb0..2007521e46267 100644 --- a/clients/client-ec2/src/commands/DescribeVolumesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVolumesCommand.ts @@ -121,56 +121,55 @@ export interface DescribeVolumesCommandOutput extends DescribeVolumesResult, __M * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe all volumes * ```javascript * // This example describes all of your volumes in the default region. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeVolumesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NextToken": "", - * "Volumes": [ + * NextToken: "", + * Volumes: [ * { - * "Attachments": [ + * Attachments: [ * { - * "AttachTime": "2013-12-18T22:35:00.000Z", - * "DeleteOnTermination": true, - * "Device": "/dev/sda1", - * "InstanceId": "i-1234567890abcdef0", - * "State": "attached", - * "VolumeId": "vol-049df61146c4d7901" + * AttachTime: "2013-12-18T22:35:00.000Z", + * DeleteOnTermination: true, + * Device: "/dev/sda1", + * InstanceId: "i-1234567890abcdef0", + * State: "attached", + * VolumeId: "vol-049df61146c4d7901" * } * ], - * "AvailabilityZone": "us-east-1a", - * "CreateTime": "2013-12-18T22:35:00.084Z", - * "Size": 8, - * "SnapshotId": "snap-1234567890abcdef0", - * "State": "in-use", - * "VolumeId": "vol-049df61146c4d7901", - * "VolumeType": "standard" + * AvailabilityZone: "us-east-1a", + * CreateTime: "2013-12-18T22:35:00.084Z", + * Size: 8, + * SnapshotId: "snap-1234567890abcdef0", + * State: "in-use", + * VolumeId: "vol-049df61146c4d7901", + * VolumeType: "standard" * } * ] * } * *\/ - * // example id: to-describe-all-volumes-1472506358883 * ``` * * @example To describe volumes that are attached to a specific instance * ```javascript * // This example describes all volumes that are both attached to the instance with the ID i-1234567890abcdef0 and set to delete when the instance terminates. * const input = { - * "Filters": [ + * Filters: [ * { - * "Name": "attachment.instance-id", - * "Values": [ + * Name: "attachment.instance-id", + * Values: [ * "i-1234567890abcdef0" * ] * }, * { - * "Name": "attachment.delete-on-termination", - * "Values": [ + * Name: "attachment.delete-on-termination", + * Values: [ * "true" * ] * } @@ -178,34 +177,34 @@ export interface DescribeVolumesCommandOutput extends DescribeVolumesResult, __M * }; * const command = new DescribeVolumesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Volumes": [ + * Volumes: [ * { - * "Attachments": [ + * Attachments: [ * { - * "AttachTime": "2013-12-18T22:35:00.000Z", - * "DeleteOnTermination": true, - * "Device": "/dev/sda1", - * "InstanceId": "i-1234567890abcdef0", - * "State": "attached", - * "VolumeId": "vol-049df61146c4d7901" + * AttachTime: "2013-12-18T22:35:00.000Z", + * DeleteOnTermination: true, + * Device: "/dev/sda1", + * InstanceId: "i-1234567890abcdef0", + * State: "attached", + * VolumeId: "vol-049df61146c4d7901" * } * ], - * "AvailabilityZone": "us-east-1a", - * "CreateTime": "2013-12-18T22:35:00.084Z", - * "Size": 8, - * "SnapshotId": "snap-1234567890abcdef0", - * "State": "in-use", - * "VolumeId": "vol-049df61146c4d7901", - * "VolumeType": "standard" + * AvailabilityZone: "us-east-1a", + * CreateTime: "2013-12-18T22:35:00.084Z", + * Size: 8, + * SnapshotId: "snap-1234567890abcdef0", + * State: "in-use", + * VolumeId: "vol-049df61146c4d7901", + * VolumeType: "standard" * } * ] * } * *\/ - * // example id: to-describe-volumes-that-are-attached-to-a-specific-instance-1472506613578 * ``` * + * @public */ export class DescribeVolumesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeVolumesModificationsCommand.ts b/clients/client-ec2/src/commands/DescribeVolumesModificationsCommand.ts index 2a54c8a8582b3..fd43ddf5b8471 100644 --- a/clients/client-ec2/src/commands/DescribeVolumesModificationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVolumesModificationsCommand.ts @@ -92,6 +92,7 @@ export interface DescribeVolumesModificationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVolumesModificationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVpcAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeVpcAttributeCommand.ts index 48a38d959aa6f..4879f52330a91 100644 --- a/clients/client-ec2/src/commands/DescribeVpcAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcAttributeCommand.ts @@ -66,47 +66,46 @@ export interface DescribeVpcAttributeCommandOutput extends DescribeVpcAttributeR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe the enableDnsSupport attribute * ```javascript * // This example describes the enableDnsSupport attribute. This attribute indicates whether DNS resolution is enabled for the VPC. If this attribute is true, the Amazon DNS server resolves DNS hostnames for your instances to their corresponding IP addresses; otherwise, it does not. * const input = { - * "Attribute": "enableDnsSupport", - * "VpcId": "vpc-a01106c2" + * Attribute: "enableDnsSupport", + * VpcId: "vpc-a01106c2" * }; * const command = new DescribeVpcAttributeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EnableDnsSupport": { - * "Value": true + * EnableDnsSupport: { + * Value: true * }, - * "VpcId": "vpc-a01106c2" + * VpcId: "vpc-a01106c2" * } * *\/ - * // example id: ec2-describe-vpc-attribute-1 * ``` * * @example To describe the enableDnsHostnames attribute * ```javascript * // This example describes the enableDnsHostnames attribute. This attribute indicates whether the instances launched in the VPC get DNS hostnames. If this attribute is true, instances in the VPC get DNS hostnames; otherwise, they do not. * const input = { - * "Attribute": "enableDnsHostnames", - * "VpcId": "vpc-a01106c2" + * Attribute: "enableDnsHostnames", + * VpcId: "vpc-a01106c2" * }; * const command = new DescribeVpcAttributeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EnableDnsHostnames": { - * "Value": true + * EnableDnsHostnames: { + * Value: true * }, - * "VpcId": "vpc-a01106c2" + * VpcId: "vpc-a01106c2" * } * *\/ - * // example id: ec2-describe-vpc-attribute-2 * ``` * + * @public */ export class DescribeVpcAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessExclusionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessExclusionsCommand.ts index 6cb1f8af30761..aead5e4cdaa0b 100644 --- a/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessExclusionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessExclusionsCommand.ts @@ -95,6 +95,7 @@ export interface DescribeVpcBlockPublicAccessExclusionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVpcBlockPublicAccessExclusionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessOptionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessOptionsCommand.ts index b3c8657facb72..1945de722538e 100644 --- a/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessOptionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessOptionsCommand.ts @@ -72,6 +72,7 @@ export interface DescribeVpcBlockPublicAccessOptionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVpcBlockPublicAccessOptionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVpcClassicLinkCommand.ts b/clients/client-ec2/src/commands/DescribeVpcClassicLinkCommand.ts index 73a65ba9c99ce..f21789de5a272 100644 --- a/clients/client-ec2/src/commands/DescribeVpcClassicLinkCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcClassicLinkCommand.ts @@ -80,6 +80,7 @@ export interface DescribeVpcClassicLinkCommandOutput extends DescribeVpcClassicL * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVpcClassicLinkCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVpcClassicLinkDnsSupportCommand.ts b/clients/client-ec2/src/commands/DescribeVpcClassicLinkDnsSupportCommand.ts index 66e7b5f4f1f74..632a8b837a47f 100644 --- a/clients/client-ec2/src/commands/DescribeVpcClassicLinkDnsSupportCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcClassicLinkDnsSupportCommand.ts @@ -77,6 +77,7 @@ export interface DescribeVpcClassicLinkDnsSupportCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVpcClassicLinkDnsSupportCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointAssociationsCommand.ts index fa00b79fbd337..1618b056708e3 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointAssociationsCommand.ts @@ -101,6 +101,7 @@ export interface DescribeVpcEndpointAssociationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVpcEndpointAssociationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionNotificationsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionNotificationsCommand.ts index 8ae1444617403..aab07ee1044e9 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionNotificationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionNotificationsCommand.ts @@ -90,6 +90,7 @@ export interface DescribeVpcEndpointConnectionNotificationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVpcEndpointConnectionNotificationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionsCommand.ts index 01be59f65589e..3612905da0e4b 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionsCommand.ts @@ -101,6 +101,7 @@ export interface DescribeVpcEndpointConnectionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVpcEndpointConnectionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointServiceConfigurationsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointServiceConfigurationsCommand.ts index cfed7e7eb5bd7..653bafd153299 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointServiceConfigurationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointServiceConfigurationsCommand.ts @@ -127,6 +127,7 @@ export interface DescribeVpcEndpointServiceConfigurationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVpcEndpointServiceConfigurationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointServicePermissionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointServicePermissionsCommand.ts index a227c5695e31a..8506e2109e9a5 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointServicePermissionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointServicePermissionsCommand.ts @@ -90,6 +90,7 @@ export interface DescribeVpcEndpointServicePermissionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVpcEndpointServicePermissionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointServicesCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointServicesCommand.ts index 379b96809b457..19c5151a34ba6 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointServicesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointServicesCommand.ts @@ -120,6 +120,7 @@ export interface DescribeVpcEndpointServicesCommandOutput extends DescribeVpcEnd * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVpcEndpointServicesCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointsCommand.ts index 25da24acfc08d..39eb607066a71 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointsCommand.ts @@ -140,6 +140,7 @@ export interface DescribeVpcEndpointsCommandOutput extends DescribeVpcEndpointsR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVpcEndpointsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVpcPeeringConnectionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcPeeringConnectionsCommand.ts index e5e9b6313d0e1..7ae76dbfe6d0f 100644 --- a/clients/client-ec2/src/commands/DescribeVpcPeeringConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcPeeringConnectionsCommand.ts @@ -130,6 +130,7 @@ export interface DescribeVpcPeeringConnectionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVpcPeeringConnectionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVpcsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcsCommand.ts index 1bd81cb1f5ece..4d6f62e5dbb8b 100644 --- a/clients/client-ec2/src/commands/DescribeVpcsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcsCommand.ts @@ -149,40 +149,40 @@ export interface DescribeVpcsCommandOutput extends DescribeVpcsResult, __Metadat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To describe a VPC * ```javascript * // This example describes the specified VPC. * const input = { - * "VpcIds": [ + * VpcIds: [ * "vpc-a01106c2" * ] * }; * const command = new DescribeVpcsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Vpcs": [ + * Vpcs: [ * { - * "CidrBlock": "10.0.0.0/16", - * "DhcpOptionsId": "dopt-7a8b9c2d", - * "InstanceTenancy": "default", - * "IsDefault": false, - * "State": "available", - * "Tags": [ + * CidrBlock: "10.0.0.0/16", + * DhcpOptionsId: "dopt-7a8b9c2d", + * InstanceTenancy: "default", + * IsDefault: false, + * State: "available", + * Tags: [ * { - * "Key": "Name", - * "Value": "MyVPC" + * Key: "Name", + * Value: "MyVPC" * } * ], - * "VpcId": "vpc-a01106c2" + * VpcId: "vpc-a01106c2" * } * ] * } * *\/ - * // example id: ec2-describe-vpcs-1 * ``` * + * @public */ export class DescribeVpcsCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DescribeVpnConnectionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpnConnectionsCommand.ts index 6ad5566a98141..56fd74046f11b 100644 --- a/clients/client-ec2/src/commands/DescribeVpnConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpnConnectionsCommand.ts @@ -179,6 +179,7 @@ export interface DescribeVpnConnectionsCommandOutput extends DescribeVpnConnecti * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVpnConnectionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DescribeVpnGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeVpnGatewaysCommand.ts index 4cc8adb2a6b90..ad4f6247124cb 100644 --- a/clients/client-ec2/src/commands/DescribeVpnGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpnGatewaysCommand.ts @@ -88,6 +88,7 @@ export interface DescribeVpnGatewaysCommandOutput extends DescribeVpnGatewaysRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DescribeVpnGatewaysCommand extends $Command diff --git a/clients/client-ec2/src/commands/DetachClassicLinkVpcCommand.ts b/clients/client-ec2/src/commands/DetachClassicLinkVpcCommand.ts index 411a31f37ca0f..8761a0f87da8a 100644 --- a/clients/client-ec2/src/commands/DetachClassicLinkVpcCommand.ts +++ b/clients/client-ec2/src/commands/DetachClassicLinkVpcCommand.ts @@ -62,6 +62,7 @@ export interface DetachClassicLinkVpcCommandOutput extends DetachClassicLinkVpcR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DetachClassicLinkVpcCommand extends $Command diff --git a/clients/client-ec2/src/commands/DetachInternetGatewayCommand.ts b/clients/client-ec2/src/commands/DetachInternetGatewayCommand.ts index 2764268ceed67..c2433ec386b27 100644 --- a/clients/client-ec2/src/commands/DetachInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DetachInternetGatewayCommand.ts @@ -57,19 +57,22 @@ export interface DetachInternetGatewayCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To detach an Internet gateway from a VPC * ```javascript * // This example detaches the specified Internet gateway from the specified VPC. * const input = { - * "InternetGatewayId": "igw-c0a643a9", - * "VpcId": "vpc-a01106c2" + * InternetGatewayId: "igw-c0a643a9", + * VpcId: "vpc-a01106c2" * }; * const command = new DetachInternetGatewayCommand(input); - * await client.send(command); - * // example id: ec2-detach-internet-gateway-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DetachInternetGatewayCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DetachNetworkInterfaceCommand.ts b/clients/client-ec2/src/commands/DetachNetworkInterfaceCommand.ts index 952e5eac6917a..36f79b59706e1 100644 --- a/clients/client-ec2/src/commands/DetachNetworkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/DetachNetworkInterfaceCommand.ts @@ -55,18 +55,21 @@ export interface DetachNetworkInterfaceCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To detach a network interface from an instance * ```javascript * // This example detaches the specified network interface from its attached instance. * const input = { - * "AttachmentId": "eni-attach-66c4350a" + * AttachmentId: "eni-attach-66c4350a" * }; * const command = new DetachNetworkInterfaceCommand(input); - * await client.send(command); - * // example id: ec2-detach-network-interface-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DetachNetworkInterfaceCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DetachVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/DetachVerifiedAccessTrustProviderCommand.ts index 81d5e02225f5f..f2c39e04feefb 100644 --- a/clients/client-ec2/src/commands/DetachVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/DetachVerifiedAccessTrustProviderCommand.ts @@ -136,6 +136,7 @@ export interface DetachVerifiedAccessTrustProviderCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DetachVerifiedAccessTrustProviderCommand extends $Command diff --git a/clients/client-ec2/src/commands/DetachVolumeCommand.ts b/clients/client-ec2/src/commands/DetachVolumeCommand.ts index 651482ae61aec..3b05a34676855 100644 --- a/clients/client-ec2/src/commands/DetachVolumeCommand.ts +++ b/clients/client-ec2/src/commands/DetachVolumeCommand.ts @@ -80,27 +80,27 @@ export interface DetachVolumeCommandOutput extends VolumeAttachment, __MetadataB * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To detach a volume from an instance * ```javascript * // This example detaches the volume (``vol-049df61146c4d7901``) from the instance it is attached to. * const input = { - * "VolumeId": "vol-1234567890abcdef0" + * VolumeId: "vol-1234567890abcdef0" * }; * const command = new DetachVolumeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AttachTime": "2014-02-27T19:23:06.000Z", - * "Device": "/dev/sdb", - * "InstanceId": "i-1234567890abcdef0", - * "State": "detaching", - * "VolumeId": "vol-049df61146c4d7901" + * AttachTime: "2014-02-27T19:23:06.000Z", + * Device: "/dev/sdb", + * InstanceId: "i-1234567890abcdef0", + * State: "detaching", + * VolumeId: "vol-049df61146c4d7901" * } * *\/ - * // example id: to-detach-a-volume-from-an-instance-1472507977694 * ``` * + * @public */ export class DetachVolumeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DetachVpnGatewayCommand.ts b/clients/client-ec2/src/commands/DetachVpnGatewayCommand.ts index 28a65b17bfd4b..8f78666bd3e8f 100644 --- a/clients/client-ec2/src/commands/DetachVpnGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DetachVpnGatewayCommand.ts @@ -60,6 +60,7 @@ export interface DetachVpnGatewayCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DetachVpnGatewayCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableAddressTransferCommand.ts b/clients/client-ec2/src/commands/DisableAddressTransferCommand.ts index 14e95bb658e96..69e859587e0d2 100644 --- a/clients/client-ec2/src/commands/DisableAddressTransferCommand.ts +++ b/clients/client-ec2/src/commands/DisableAddressTransferCommand.ts @@ -63,6 +63,7 @@ export interface DisableAddressTransferCommandOutput extends DisableAddressTrans * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableAddressTransferCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableAllowedImagesSettingsCommand.ts b/clients/client-ec2/src/commands/DisableAllowedImagesSettingsCommand.ts index 6f1cfd643a343..aea946d94dec2 100644 --- a/clients/client-ec2/src/commands/DisableAllowedImagesSettingsCommand.ts +++ b/clients/client-ec2/src/commands/DisableAllowedImagesSettingsCommand.ts @@ -68,6 +68,7 @@ export interface DisableAllowedImagesSettingsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableAllowedImagesSettingsCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.ts b/clients/client-ec2/src/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.ts index c4156ff19d716..e8e1360fedf3c 100644 --- a/clients/client-ec2/src/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.ts @@ -68,6 +68,7 @@ export interface DisableAwsNetworkPerformanceMetricSubscriptionCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableAwsNetworkPerformanceMetricSubscriptionCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableEbsEncryptionByDefaultCommand.ts b/clients/client-ec2/src/commands/DisableEbsEncryptionByDefaultCommand.ts index 60fca5f7b4ca1..f027279b10c10 100644 --- a/clients/client-ec2/src/commands/DisableEbsEncryptionByDefaultCommand.ts +++ b/clients/client-ec2/src/commands/DisableEbsEncryptionByDefaultCommand.ts @@ -63,6 +63,7 @@ export interface DisableEbsEncryptionByDefaultCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableEbsEncryptionByDefaultCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableFastLaunchCommand.ts b/clients/client-ec2/src/commands/DisableFastLaunchCommand.ts index 480cc0ecfb9ef..7b8662db33584 100644 --- a/clients/client-ec2/src/commands/DisableFastLaunchCommand.ts +++ b/clients/client-ec2/src/commands/DisableFastLaunchCommand.ts @@ -78,6 +78,7 @@ export interface DisableFastLaunchCommandOutput extends DisableFastLaunchResult, * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableFastLaunchCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableFastSnapshotRestoresCommand.ts b/clients/client-ec2/src/commands/DisableFastSnapshotRestoresCommand.ts index 8fd7d542e4adf..55daf825b94e3 100644 --- a/clients/client-ec2/src/commands/DisableFastSnapshotRestoresCommand.ts +++ b/clients/client-ec2/src/commands/DisableFastSnapshotRestoresCommand.ts @@ -89,6 +89,7 @@ export interface DisableFastSnapshotRestoresCommandOutput extends DisableFastSna * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableFastSnapshotRestoresCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableImageBlockPublicAccessCommand.ts b/clients/client-ec2/src/commands/DisableImageBlockPublicAccessCommand.ts index 1deb375ea52f6..e2459fd8f29b7 100644 --- a/clients/client-ec2/src/commands/DisableImageBlockPublicAccessCommand.ts +++ b/clients/client-ec2/src/commands/DisableImageBlockPublicAccessCommand.ts @@ -66,6 +66,7 @@ export interface DisableImageBlockPublicAccessCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableImageBlockPublicAccessCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableImageCommand.ts b/clients/client-ec2/src/commands/DisableImageCommand.ts index 36a910c4b0412..df0a9bb81092e 100644 --- a/clients/client-ec2/src/commands/DisableImageCommand.ts +++ b/clients/client-ec2/src/commands/DisableImageCommand.ts @@ -66,6 +66,7 @@ export interface DisableImageCommandOutput extends DisableImageResult, __Metadat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableImageCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableImageDeprecationCommand.ts b/clients/client-ec2/src/commands/DisableImageDeprecationCommand.ts index 55fd824403e95..2bf2c531b487c 100644 --- a/clients/client-ec2/src/commands/DisableImageDeprecationCommand.ts +++ b/clients/client-ec2/src/commands/DisableImageDeprecationCommand.ts @@ -58,6 +58,7 @@ export interface DisableImageDeprecationCommandOutput extends DisableImageDeprec * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableImageDeprecationCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableImageDeregistrationProtectionCommand.ts b/clients/client-ec2/src/commands/DisableImageDeregistrationProtectionCommand.ts index 455c35d0b691d..a2473868aa928 100644 --- a/clients/client-ec2/src/commands/DisableImageDeregistrationProtectionCommand.ts +++ b/clients/client-ec2/src/commands/DisableImageDeregistrationProtectionCommand.ts @@ -70,6 +70,7 @@ export interface DisableImageDeregistrationProtectionCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableImageDeregistrationProtectionCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableIpamOrganizationAdminAccountCommand.ts b/clients/client-ec2/src/commands/DisableIpamOrganizationAdminAccountCommand.ts index ca66378f3160e..2fe7811a77448 100644 --- a/clients/client-ec2/src/commands/DisableIpamOrganizationAdminAccountCommand.ts +++ b/clients/client-ec2/src/commands/DisableIpamOrganizationAdminAccountCommand.ts @@ -65,6 +65,7 @@ export interface DisableIpamOrganizationAdminAccountCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableIpamOrganizationAdminAccountCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableSerialConsoleAccessCommand.ts b/clients/client-ec2/src/commands/DisableSerialConsoleAccessCommand.ts index 752ac13bf83a3..655865eca73ef 100644 --- a/clients/client-ec2/src/commands/DisableSerialConsoleAccessCommand.ts +++ b/clients/client-ec2/src/commands/DisableSerialConsoleAccessCommand.ts @@ -58,6 +58,7 @@ export interface DisableSerialConsoleAccessCommandOutput extends DisableSerialCo * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableSerialConsoleAccessCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableSnapshotBlockPublicAccessCommand.ts b/clients/client-ec2/src/commands/DisableSnapshotBlockPublicAccessCommand.ts index 0666523e3d404..29e2278ff9fc5 100644 --- a/clients/client-ec2/src/commands/DisableSnapshotBlockPublicAccessCommand.ts +++ b/clients/client-ec2/src/commands/DisableSnapshotBlockPublicAccessCommand.ts @@ -74,6 +74,7 @@ export interface DisableSnapshotBlockPublicAccessCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableSnapshotBlockPublicAccessCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableTransitGatewayRouteTablePropagationCommand.ts b/clients/client-ec2/src/commands/DisableTransitGatewayRouteTablePropagationCommand.ts index 4a69edaee8d3a..dd71480ee9f5e 100644 --- a/clients/client-ec2/src/commands/DisableTransitGatewayRouteTablePropagationCommand.ts +++ b/clients/client-ec2/src/commands/DisableTransitGatewayRouteTablePropagationCommand.ts @@ -75,6 +75,7 @@ export interface DisableTransitGatewayRouteTablePropagationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableTransitGatewayRouteTablePropagationCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableVgwRoutePropagationCommand.ts b/clients/client-ec2/src/commands/DisableVgwRoutePropagationCommand.ts index 0ab50db00be85..02161be1a3377 100644 --- a/clients/client-ec2/src/commands/DisableVgwRoutePropagationCommand.ts +++ b/clients/client-ec2/src/commands/DisableVgwRoutePropagationCommand.ts @@ -56,19 +56,22 @@ export interface DisableVgwRoutePropagationCommandOutput extends __MetadataBeare * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To disable route propagation * ```javascript * // This example disables the specified virtual private gateway from propagating static routes to the specified route table. * const input = { - * "GatewayId": "vgw-9a4cacf3", - * "RouteTableId": "rtb-22574640" + * GatewayId: "vgw-9a4cacf3", + * RouteTableId: "rtb-22574640" * }; * const command = new DisableVgwRoutePropagationCommand(input); - * await client.send(command); - * // example id: ec2-disable-vgw-route-propagation-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DisableVgwRoutePropagationCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DisableVpcClassicLinkCommand.ts b/clients/client-ec2/src/commands/DisableVpcClassicLinkCommand.ts index 2c1f71529eac3..4d452b23792c9 100644 --- a/clients/client-ec2/src/commands/DisableVpcClassicLinkCommand.ts +++ b/clients/client-ec2/src/commands/DisableVpcClassicLinkCommand.ts @@ -60,6 +60,7 @@ export interface DisableVpcClassicLinkCommandOutput extends DisableVpcClassicLin * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableVpcClassicLinkCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisableVpcClassicLinkDnsSupportCommand.ts b/clients/client-ec2/src/commands/DisableVpcClassicLinkDnsSupportCommand.ts index f36a9fbd2ff06..9bcea8c4395ed 100644 --- a/clients/client-ec2/src/commands/DisableVpcClassicLinkDnsSupportCommand.ts +++ b/clients/client-ec2/src/commands/DisableVpcClassicLinkDnsSupportCommand.ts @@ -66,6 +66,7 @@ export interface DisableVpcClassicLinkDnsSupportCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisableVpcClassicLinkDnsSupportCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisassociateAddressCommand.ts b/clients/client-ec2/src/commands/DisassociateAddressCommand.ts index 510e4363091d0..c496e5d4d18d5 100644 --- a/clients/client-ec2/src/commands/DisassociateAddressCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateAddressCommand.ts @@ -56,18 +56,21 @@ export interface DisassociateAddressCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To disassociate an Elastic IP address * ```javascript * // This example disassociates an Elastic IP address from an instance. * const input = { - * "AssociationId": "eipassoc-2bebb745" + * AssociationId: "eipassoc-2bebb745" * }; * const command = new DisassociateAddressCommand(input); - * await client.send(command); - * // example id: ec2-disassociate-address-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DisassociateAddressCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DisassociateCapacityReservationBillingOwnerCommand.ts b/clients/client-ec2/src/commands/DisassociateCapacityReservationBillingOwnerCommand.ts index bdcc6e4c65a08..b12b0f788fd4b 100644 --- a/clients/client-ec2/src/commands/DisassociateCapacityReservationBillingOwnerCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateCapacityReservationBillingOwnerCommand.ts @@ -69,6 +69,7 @@ export interface DisassociateCapacityReservationBillingOwnerCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisassociateCapacityReservationBillingOwnerCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisassociateClientVpnTargetNetworkCommand.ts b/clients/client-ec2/src/commands/DisassociateClientVpnTargetNetworkCommand.ts index e329c759c2331..b9a196cd965ae 100644 --- a/clients/client-ec2/src/commands/DisassociateClientVpnTargetNetworkCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateClientVpnTargetNetworkCommand.ts @@ -85,6 +85,7 @@ export interface DisassociateClientVpnTargetNetworkCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisassociateClientVpnTargetNetworkCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisassociateEnclaveCertificateIamRoleCommand.ts b/clients/client-ec2/src/commands/DisassociateEnclaveCertificateIamRoleCommand.ts index bf41761d0e149..47d7c060f207b 100644 --- a/clients/client-ec2/src/commands/DisassociateEnclaveCertificateIamRoleCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateEnclaveCertificateIamRoleCommand.ts @@ -70,6 +70,7 @@ export interface DisassociateEnclaveCertificateIamRoleCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisassociateEnclaveCertificateIamRoleCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisassociateIamInstanceProfileCommand.ts b/clients/client-ec2/src/commands/DisassociateIamInstanceProfileCommand.ts index 48b47806b71f6..7403549049948 100644 --- a/clients/client-ec2/src/commands/DisassociateIamInstanceProfileCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateIamInstanceProfileCommand.ts @@ -71,31 +71,31 @@ export interface DisassociateIamInstanceProfileCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To disassociate an IAM instance profile * ```javascript * // This example disassociates the specified IAM instance profile from an instance. * const input = { - * "AssociationId": "iip-assoc-05020b59952902f5f" + * AssociationId: "iip-assoc-05020b59952902f5f" * }; * const command = new DisassociateIamInstanceProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "IamInstanceProfileAssociation": { - * "AssociationId": "iip-assoc-05020b59952902f5f", - * "IamInstanceProfile": { - * "Arn": "arn:aws:iam::123456789012:instance-profile/admin-role", - * "Id": "AIPAI5IVIHMFFYY2DKV5Y" + * IamInstanceProfileAssociation: { + * AssociationId: "iip-assoc-05020b59952902f5f", + * IamInstanceProfile: { + * Arn: "arn:aws:iam::123456789012:instance-profile/admin-role", + * Id: "AIPAI5IVIHMFFYY2DKV5Y" * }, - * "InstanceId": "i-123456789abcde123", - * "State": "disassociating" + * InstanceId: "i-123456789abcde123", + * State: "disassociating" * } * } * *\/ - * // example id: to-disassociate-an-iam-instance-profile-1529355364478 * ``` * + * @public */ export class DisassociateIamInstanceProfileCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DisassociateInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/DisassociateInstanceEventWindowCommand.ts index f9d43cc0c4c6a..2b680b71a185b 100644 --- a/clients/client-ec2/src/commands/DisassociateInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateInstanceEventWindowCommand.ts @@ -110,6 +110,7 @@ export interface DisassociateInstanceEventWindowCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisassociateInstanceEventWindowCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisassociateIpamByoasnCommand.ts b/clients/client-ec2/src/commands/DisassociateIpamByoasnCommand.ts index a13cbd537be32..0b53f2c6ae871 100644 --- a/clients/client-ec2/src/commands/DisassociateIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateIpamByoasnCommand.ts @@ -63,6 +63,7 @@ export interface DisassociateIpamByoasnCommandOutput extends DisassociateIpamByo * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisassociateIpamByoasnCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisassociateIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/DisassociateIpamResourceDiscoveryCommand.ts index 081e601e1e4b3..272bbd33cb87d 100644 --- a/clients/client-ec2/src/commands/DisassociateIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateIpamResourceDiscoveryCommand.ts @@ -78,6 +78,7 @@ export interface DisassociateIpamResourceDiscoveryCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisassociateIpamResourceDiscoveryCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisassociateNatGatewayAddressCommand.ts b/clients/client-ec2/src/commands/DisassociateNatGatewayAddressCommand.ts index b8295d36a71c4..2799d08c639c0 100644 --- a/clients/client-ec2/src/commands/DisassociateNatGatewayAddressCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateNatGatewayAddressCommand.ts @@ -81,6 +81,7 @@ export interface DisassociateNatGatewayAddressCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisassociateNatGatewayAddressCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisassociateRouteTableCommand.ts b/clients/client-ec2/src/commands/DisassociateRouteTableCommand.ts index 560085852143f..30615e9f79ef3 100644 --- a/clients/client-ec2/src/commands/DisassociateRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateRouteTableCommand.ts @@ -58,18 +58,21 @@ export interface DisassociateRouteTableCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To disassociate a route table * ```javascript * // This example disassociates the specified route table from its associated subnet. * const input = { - * "AssociationId": "rtbassoc-781d0d1a" + * AssociationId: "rtbassoc-781d0d1a" * }; * const command = new DisassociateRouteTableCommand(input); - * await client.send(command); - * // example id: ec2-disassociate-route-table-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DisassociateRouteTableCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/DisassociateSecurityGroupVpcCommand.ts b/clients/client-ec2/src/commands/DisassociateSecurityGroupVpcCommand.ts index e4dca67a60825..2cd987ff430fe 100644 --- a/clients/client-ec2/src/commands/DisassociateSecurityGroupVpcCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateSecurityGroupVpcCommand.ts @@ -61,6 +61,7 @@ export interface DisassociateSecurityGroupVpcCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisassociateSecurityGroupVpcCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisassociateSubnetCidrBlockCommand.ts b/clients/client-ec2/src/commands/DisassociateSubnetCidrBlockCommand.ts index a86281366fbdb..2333dfdbdd2fe 100644 --- a/clients/client-ec2/src/commands/DisassociateSubnetCidrBlockCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateSubnetCidrBlockCommand.ts @@ -66,6 +66,7 @@ export interface DisassociateSubnetCidrBlockCommandOutput extends DisassociateSu * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisassociateSubnetCidrBlockCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisassociateTransitGatewayMulticastDomainCommand.ts b/clients/client-ec2/src/commands/DisassociateTransitGatewayMulticastDomainCommand.ts index 487d9a2bd8de4..f3437add56c97 100644 --- a/clients/client-ec2/src/commands/DisassociateTransitGatewayMulticastDomainCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateTransitGatewayMulticastDomainCommand.ts @@ -81,6 +81,7 @@ export interface DisassociateTransitGatewayMulticastDomainCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisassociateTransitGatewayMulticastDomainCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisassociateTransitGatewayPolicyTableCommand.ts b/clients/client-ec2/src/commands/DisassociateTransitGatewayPolicyTableCommand.ts index 05b2ebc1ba27f..07126d61bd275 100644 --- a/clients/client-ec2/src/commands/DisassociateTransitGatewayPolicyTableCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateTransitGatewayPolicyTableCommand.ts @@ -72,6 +72,7 @@ export interface DisassociateTransitGatewayPolicyTableCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisassociateTransitGatewayPolicyTableCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisassociateTransitGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/DisassociateTransitGatewayRouteTableCommand.ts index 8d6d90d85cff4..33e799fe5d4a2 100644 --- a/clients/client-ec2/src/commands/DisassociateTransitGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateTransitGatewayRouteTableCommand.ts @@ -71,6 +71,7 @@ export interface DisassociateTransitGatewayRouteTableCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisassociateTransitGatewayRouteTableCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisassociateTrunkInterfaceCommand.ts b/clients/client-ec2/src/commands/DisassociateTrunkInterfaceCommand.ts index 4d964efef2be3..baf2898d58c7d 100644 --- a/clients/client-ec2/src/commands/DisassociateTrunkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateTrunkInterfaceCommand.ts @@ -58,6 +58,7 @@ export interface DisassociateTrunkInterfaceCommandOutput extends DisassociateTru * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisassociateTrunkInterfaceCommand extends $Command diff --git a/clients/client-ec2/src/commands/DisassociateVpcCidrBlockCommand.ts b/clients/client-ec2/src/commands/DisassociateVpcCidrBlockCommand.ts index 28d4f75d61b49..baefa7dee5109 100644 --- a/clients/client-ec2/src/commands/DisassociateVpcCidrBlockCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateVpcCidrBlockCommand.ts @@ -80,6 +80,7 @@ export interface DisassociateVpcCidrBlockCommandOutput extends DisassociateVpcCi * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class DisassociateVpcCidrBlockCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableAddressTransferCommand.ts b/clients/client-ec2/src/commands/EnableAddressTransferCommand.ts index 6c2487bf29044..3bf3ad428a2e5 100644 --- a/clients/client-ec2/src/commands/EnableAddressTransferCommand.ts +++ b/clients/client-ec2/src/commands/EnableAddressTransferCommand.ts @@ -64,6 +64,7 @@ export interface EnableAddressTransferCommandOutput extends EnableAddressTransfe * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableAddressTransferCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableAllowedImagesSettingsCommand.ts b/clients/client-ec2/src/commands/EnableAllowedImagesSettingsCommand.ts index 9c7858961faaf..da86b38513e2c 100644 --- a/clients/client-ec2/src/commands/EnableAllowedImagesSettingsCommand.ts +++ b/clients/client-ec2/src/commands/EnableAllowedImagesSettingsCommand.ts @@ -84,6 +84,7 @@ export interface EnableAllowedImagesSettingsCommandOutput extends EnableAllowedI * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableAllowedImagesSettingsCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.ts b/clients/client-ec2/src/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.ts index 7daa722008983..46c8526ad75c0 100644 --- a/clients/client-ec2/src/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.ts @@ -68,6 +68,7 @@ export interface EnableAwsNetworkPerformanceMetricSubscriptionCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableAwsNetworkPerformanceMetricSubscriptionCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableEbsEncryptionByDefaultCommand.ts b/clients/client-ec2/src/commands/EnableEbsEncryptionByDefaultCommand.ts index fccf233561dc7..44712e2b79889 100644 --- a/clients/client-ec2/src/commands/EnableEbsEncryptionByDefaultCommand.ts +++ b/clients/client-ec2/src/commands/EnableEbsEncryptionByDefaultCommand.ts @@ -68,6 +68,7 @@ export interface EnableEbsEncryptionByDefaultCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableEbsEncryptionByDefaultCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableFastLaunchCommand.ts b/clients/client-ec2/src/commands/EnableFastLaunchCommand.ts index f57d57db24ea2..4508408c575c2 100644 --- a/clients/client-ec2/src/commands/EnableFastLaunchCommand.ts +++ b/clients/client-ec2/src/commands/EnableFastLaunchCommand.ts @@ -89,6 +89,7 @@ export interface EnableFastLaunchCommandOutput extends EnableFastLaunchResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableFastLaunchCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableFastSnapshotRestoresCommand.ts b/clients/client-ec2/src/commands/EnableFastSnapshotRestoresCommand.ts index dc9c3369c156a..700b14100cd58 100644 --- a/clients/client-ec2/src/commands/EnableFastSnapshotRestoresCommand.ts +++ b/clients/client-ec2/src/commands/EnableFastSnapshotRestoresCommand.ts @@ -94,6 +94,7 @@ export interface EnableFastSnapshotRestoresCommandOutput extends EnableFastSnaps * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableFastSnapshotRestoresCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableImageBlockPublicAccessCommand.ts b/clients/client-ec2/src/commands/EnableImageBlockPublicAccessCommand.ts index 3b22f9e0b1956..45aacbd5cc18e 100644 --- a/clients/client-ec2/src/commands/EnableImageBlockPublicAccessCommand.ts +++ b/clients/client-ec2/src/commands/EnableImageBlockPublicAccessCommand.ts @@ -66,6 +66,7 @@ export interface EnableImageBlockPublicAccessCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableImageBlockPublicAccessCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableImageCommand.ts b/clients/client-ec2/src/commands/EnableImageCommand.ts index 5e67043b35a2a..cb330cfa26365 100644 --- a/clients/client-ec2/src/commands/EnableImageCommand.ts +++ b/clients/client-ec2/src/commands/EnableImageCommand.ts @@ -63,6 +63,7 @@ export interface EnableImageCommandOutput extends EnableImageResult, __MetadataB * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableImageCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableImageDeprecationCommand.ts b/clients/client-ec2/src/commands/EnableImageDeprecationCommand.ts index c983f98db39e7..83d086d1d241a 100644 --- a/clients/client-ec2/src/commands/EnableImageDeprecationCommand.ts +++ b/clients/client-ec2/src/commands/EnableImageDeprecationCommand.ts @@ -59,6 +59,7 @@ export interface EnableImageDeprecationCommandOutput extends EnableImageDeprecat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableImageDeprecationCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableImageDeregistrationProtectionCommand.ts b/clients/client-ec2/src/commands/EnableImageDeregistrationProtectionCommand.ts index f09582261300c..426606429d01f 100644 --- a/clients/client-ec2/src/commands/EnableImageDeregistrationProtectionCommand.ts +++ b/clients/client-ec2/src/commands/EnableImageDeregistrationProtectionCommand.ts @@ -70,6 +70,7 @@ export interface EnableImageDeregistrationProtectionCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableImageDeregistrationProtectionCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableIpamOrganizationAdminAccountCommand.ts b/clients/client-ec2/src/commands/EnableIpamOrganizationAdminAccountCommand.ts index 7a9ad44104bd0..7d927372ee033 100644 --- a/clients/client-ec2/src/commands/EnableIpamOrganizationAdminAccountCommand.ts +++ b/clients/client-ec2/src/commands/EnableIpamOrganizationAdminAccountCommand.ts @@ -65,6 +65,7 @@ export interface EnableIpamOrganizationAdminAccountCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableIpamOrganizationAdminAccountCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.ts b/clients/client-ec2/src/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.ts index 56536517ae79a..9f54ebafa1b74 100644 --- a/clients/client-ec2/src/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.ts +++ b/clients/client-ec2/src/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.ts @@ -68,6 +68,7 @@ export interface EnableReachabilityAnalyzerOrganizationSharingCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableReachabilityAnalyzerOrganizationSharingCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableSerialConsoleAccessCommand.ts b/clients/client-ec2/src/commands/EnableSerialConsoleAccessCommand.ts index 1158fafc1e837..507e0c872acec 100644 --- a/clients/client-ec2/src/commands/EnableSerialConsoleAccessCommand.ts +++ b/clients/client-ec2/src/commands/EnableSerialConsoleAccessCommand.ts @@ -57,6 +57,7 @@ export interface EnableSerialConsoleAccessCommandOutput extends EnableSerialCons * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableSerialConsoleAccessCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableSnapshotBlockPublicAccessCommand.ts b/clients/client-ec2/src/commands/EnableSnapshotBlockPublicAccessCommand.ts index 68e9c4011bf15..9d3948e49fffa 100644 --- a/clients/client-ec2/src/commands/EnableSnapshotBlockPublicAccessCommand.ts +++ b/clients/client-ec2/src/commands/EnableSnapshotBlockPublicAccessCommand.ts @@ -77,6 +77,7 @@ export interface EnableSnapshotBlockPublicAccessCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableSnapshotBlockPublicAccessCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableTransitGatewayRouteTablePropagationCommand.ts b/clients/client-ec2/src/commands/EnableTransitGatewayRouteTablePropagationCommand.ts index 6aa79697f3bd8..78541d2a531a0 100644 --- a/clients/client-ec2/src/commands/EnableTransitGatewayRouteTablePropagationCommand.ts +++ b/clients/client-ec2/src/commands/EnableTransitGatewayRouteTablePropagationCommand.ts @@ -75,6 +75,7 @@ export interface EnableTransitGatewayRouteTablePropagationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableTransitGatewayRouteTablePropagationCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableVgwRoutePropagationCommand.ts b/clients/client-ec2/src/commands/EnableVgwRoutePropagationCommand.ts index 334d6cc75c5d5..07ef0059cba10 100644 --- a/clients/client-ec2/src/commands/EnableVgwRoutePropagationCommand.ts +++ b/clients/client-ec2/src/commands/EnableVgwRoutePropagationCommand.ts @@ -56,19 +56,22 @@ export interface EnableVgwRoutePropagationCommandOutput extends __MetadataBearer * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To enable route propagation * ```javascript * // This example enables the specified virtual private gateway to propagate static routes to the specified route table. * const input = { - * "GatewayId": "vgw-9a4cacf3", - * "RouteTableId": "rtb-22574640" + * GatewayId: "vgw-9a4cacf3", + * RouteTableId: "rtb-22574640" * }; * const command = new EnableVgwRoutePropagationCommand(input); - * await client.send(command); - * // example id: ec2-enable-vgw-route-propagation-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class EnableVgwRoutePropagationCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/EnableVolumeIOCommand.ts b/clients/client-ec2/src/commands/EnableVolumeIOCommand.ts index 7ecbb5bc1ccee..37e13d1559f54 100644 --- a/clients/client-ec2/src/commands/EnableVolumeIOCommand.ts +++ b/clients/client-ec2/src/commands/EnableVolumeIOCommand.ts @@ -55,18 +55,21 @@ export interface EnableVolumeIOCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To enable I/O for a volume * ```javascript * // This example enables I/O on volume ``vol-1234567890abcdef0``. * const input = { - * "VolumeId": "vol-1234567890abcdef0" + * VolumeId: "vol-1234567890abcdef0" * }; * const command = new EnableVolumeIOCommand(input); - * await client.send(command); - * // example id: to-enable-io-for-a-volume-1472508114867 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class EnableVolumeIOCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/EnableVpcClassicLinkCommand.ts b/clients/client-ec2/src/commands/EnableVpcClassicLinkCommand.ts index 1f3c9f0768725..206c83d4e2b73 100644 --- a/clients/client-ec2/src/commands/EnableVpcClassicLinkCommand.ts +++ b/clients/client-ec2/src/commands/EnableVpcClassicLinkCommand.ts @@ -64,6 +64,7 @@ export interface EnableVpcClassicLinkCommandOutput extends EnableVpcClassicLinkR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableVpcClassicLinkCommand extends $Command diff --git a/clients/client-ec2/src/commands/EnableVpcClassicLinkDnsSupportCommand.ts b/clients/client-ec2/src/commands/EnableVpcClassicLinkDnsSupportCommand.ts index d16bd28bde380..c82ca7d8779b9 100644 --- a/clients/client-ec2/src/commands/EnableVpcClassicLinkDnsSupportCommand.ts +++ b/clients/client-ec2/src/commands/EnableVpcClassicLinkDnsSupportCommand.ts @@ -68,6 +68,7 @@ export interface EnableVpcClassicLinkDnsSupportCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class EnableVpcClassicLinkDnsSupportCommand extends $Command diff --git a/clients/client-ec2/src/commands/ExportClientVpnClientCertificateRevocationListCommand.ts b/clients/client-ec2/src/commands/ExportClientVpnClientCertificateRevocationListCommand.ts index a696941f0409e..1c7fe86744db1 100644 --- a/clients/client-ec2/src/commands/ExportClientVpnClientCertificateRevocationListCommand.ts +++ b/clients/client-ec2/src/commands/ExportClientVpnClientCertificateRevocationListCommand.ts @@ -69,6 +69,7 @@ export interface ExportClientVpnClientCertificateRevocationListCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ExportClientVpnClientCertificateRevocationListCommand extends $Command diff --git a/clients/client-ec2/src/commands/ExportClientVpnClientConfigurationCommand.ts b/clients/client-ec2/src/commands/ExportClientVpnClientConfigurationCommand.ts index 0afca3e2865dc..74774801b4d41 100644 --- a/clients/client-ec2/src/commands/ExportClientVpnClientConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/ExportClientVpnClientConfigurationCommand.ts @@ -66,6 +66,7 @@ export interface ExportClientVpnClientConfigurationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ExportClientVpnClientConfigurationCommand extends $Command diff --git a/clients/client-ec2/src/commands/ExportImageCommand.ts b/clients/client-ec2/src/commands/ExportImageCommand.ts index 2f586a689fa74..3e2c0ac718aad 100644 --- a/clients/client-ec2/src/commands/ExportImageCommand.ts +++ b/clients/client-ec2/src/commands/ExportImageCommand.ts @@ -94,6 +94,7 @@ export interface ExportImageCommandOutput extends ExportImageResult, __MetadataB * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ExportImageCommand extends $Command diff --git a/clients/client-ec2/src/commands/ExportTransitGatewayRoutesCommand.ts b/clients/client-ec2/src/commands/ExportTransitGatewayRoutesCommand.ts index fa2ef34e18d45..33fbbde0d34d4 100644 --- a/clients/client-ec2/src/commands/ExportTransitGatewayRoutesCommand.ts +++ b/clients/client-ec2/src/commands/ExportTransitGatewayRoutesCommand.ts @@ -69,6 +69,7 @@ export interface ExportTransitGatewayRoutesCommandOutput extends ExportTransitGa * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ExportTransitGatewayRoutesCommand extends $Command diff --git a/clients/client-ec2/src/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.ts b/clients/client-ec2/src/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.ts index 6ec1a70413292..4b2f0b40951e2 100644 --- a/clients/client-ec2/src/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.ts @@ -93,6 +93,7 @@ export interface ExportVerifiedAccessInstanceClientConfigurationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ExportVerifiedAccessInstanceClientConfigurationCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetAllowedImagesSettingsCommand.ts b/clients/client-ec2/src/commands/GetAllowedImagesSettingsCommand.ts index 665f07d83ff83..724735dccc638 100644 --- a/clients/client-ec2/src/commands/GetAllowedImagesSettingsCommand.ts +++ b/clients/client-ec2/src/commands/GetAllowedImagesSettingsCommand.ts @@ -72,6 +72,7 @@ export interface GetAllowedImagesSettingsCommandOutput extends GetAllowedImagesS * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetAllowedImagesSettingsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetAssociatedEnclaveCertificateIamRolesCommand.ts b/clients/client-ec2/src/commands/GetAssociatedEnclaveCertificateIamRolesCommand.ts index 0725bdaa17032..a44c53a6446cf 100644 --- a/clients/client-ec2/src/commands/GetAssociatedEnclaveCertificateIamRolesCommand.ts +++ b/clients/client-ec2/src/commands/GetAssociatedEnclaveCertificateIamRolesCommand.ts @@ -75,6 +75,7 @@ export interface GetAssociatedEnclaveCertificateIamRolesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetAssociatedEnclaveCertificateIamRolesCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetAssociatedIpv6PoolCidrsCommand.ts b/clients/client-ec2/src/commands/GetAssociatedIpv6PoolCidrsCommand.ts index d4b7ca3f12255..c93044240a22e 100644 --- a/clients/client-ec2/src/commands/GetAssociatedIpv6PoolCidrsCommand.ts +++ b/clients/client-ec2/src/commands/GetAssociatedIpv6PoolCidrsCommand.ts @@ -64,6 +64,7 @@ export interface GetAssociatedIpv6PoolCidrsCommandOutput extends GetAssociatedIp * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetAssociatedIpv6PoolCidrsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetAwsNetworkPerformanceDataCommand.ts b/clients/client-ec2/src/commands/GetAwsNetworkPerformanceDataCommand.ts index a4ea27d1c611a..da7bcba46ef66 100644 --- a/clients/client-ec2/src/commands/GetAwsNetworkPerformanceDataCommand.ts +++ b/clients/client-ec2/src/commands/GetAwsNetworkPerformanceDataCommand.ts @@ -89,6 +89,7 @@ export interface GetAwsNetworkPerformanceDataCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetAwsNetworkPerformanceDataCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetCapacityReservationUsageCommand.ts b/clients/client-ec2/src/commands/GetCapacityReservationUsageCommand.ts index 25717e754251c..d56fd26efe897 100644 --- a/clients/client-ec2/src/commands/GetCapacityReservationUsageCommand.ts +++ b/clients/client-ec2/src/commands/GetCapacityReservationUsageCommand.ts @@ -71,6 +71,7 @@ export interface GetCapacityReservationUsageCommandOutput extends GetCapacityRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetCapacityReservationUsageCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetCoipPoolUsageCommand.ts b/clients/client-ec2/src/commands/GetCoipPoolUsageCommand.ts index 86be9f3bc4351..c975e92d24322 100644 --- a/clients/client-ec2/src/commands/GetCoipPoolUsageCommand.ts +++ b/clients/client-ec2/src/commands/GetCoipPoolUsageCommand.ts @@ -76,6 +76,7 @@ export interface GetCoipPoolUsageCommandOutput extends GetCoipPoolUsageResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetCoipPoolUsageCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetConsoleOutputCommand.ts b/clients/client-ec2/src/commands/GetConsoleOutputCommand.ts index 50a9851a0d99b..2a78bd88f9eae 100644 --- a/clients/client-ec2/src/commands/GetConsoleOutputCommand.ts +++ b/clients/client-ec2/src/commands/GetConsoleOutputCommand.ts @@ -64,25 +64,25 @@ export interface GetConsoleOutputCommandOutput extends GetConsoleOutputResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To get the console output * ```javascript * // This example gets the console output for the specified instance. * const input = { - * "InstanceId": "i-1234567890abcdef0" + * InstanceId: "i-1234567890abcdef0" * }; * const command = new GetConsoleOutputCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InstanceId": "i-1234567890abcdef0", - * "Output": "...", - * "Timestamp": "2018-05-25T21:23:53.000Z" + * InstanceId: "i-1234567890abcdef0", + * Output: "...", + * Timestamp: "2018-05-25T21:23:53.000Z" * } * *\/ - * // example id: to-get-the-console-output-1529355683194 * ``` * + * @public */ export class GetConsoleOutputCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/GetConsoleScreenshotCommand.ts b/clients/client-ec2/src/commands/GetConsoleScreenshotCommand.ts index f412bb99307a8..997ba87c909d9 100644 --- a/clients/client-ec2/src/commands/GetConsoleScreenshotCommand.ts +++ b/clients/client-ec2/src/commands/GetConsoleScreenshotCommand.ts @@ -61,6 +61,7 @@ export interface GetConsoleScreenshotCommandOutput extends GetConsoleScreenshotR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetConsoleScreenshotCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetDeclarativePoliciesReportSummaryCommand.ts b/clients/client-ec2/src/commands/GetDeclarativePoliciesReportSummaryCommand.ts index 62aab5502eecc..faa2d84c7c6da 100644 --- a/clients/client-ec2/src/commands/GetDeclarativePoliciesReportSummaryCommand.ts +++ b/clients/client-ec2/src/commands/GetDeclarativePoliciesReportSummaryCommand.ts @@ -94,6 +94,7 @@ export interface GetDeclarativePoliciesReportSummaryCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetDeclarativePoliciesReportSummaryCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetDefaultCreditSpecificationCommand.ts b/clients/client-ec2/src/commands/GetDefaultCreditSpecificationCommand.ts index 16a86e174962a..c129b43a7ea26 100644 --- a/clients/client-ec2/src/commands/GetDefaultCreditSpecificationCommand.ts +++ b/clients/client-ec2/src/commands/GetDefaultCreditSpecificationCommand.ts @@ -64,6 +64,7 @@ export interface GetDefaultCreditSpecificationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetDefaultCreditSpecificationCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetEbsDefaultKmsKeyIdCommand.ts b/clients/client-ec2/src/commands/GetEbsDefaultKmsKeyIdCommand.ts index bbf124697521a..8f98f56557031 100644 --- a/clients/client-ec2/src/commands/GetEbsDefaultKmsKeyIdCommand.ts +++ b/clients/client-ec2/src/commands/GetEbsDefaultKmsKeyIdCommand.ts @@ -59,6 +59,7 @@ export interface GetEbsDefaultKmsKeyIdCommandOutput extends GetEbsDefaultKmsKeyI * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetEbsDefaultKmsKeyIdCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetEbsEncryptionByDefaultCommand.ts b/clients/client-ec2/src/commands/GetEbsEncryptionByDefaultCommand.ts index d7009f18cbd52..21f0c3c0b30be 100644 --- a/clients/client-ec2/src/commands/GetEbsEncryptionByDefaultCommand.ts +++ b/clients/client-ec2/src/commands/GetEbsEncryptionByDefaultCommand.ts @@ -59,6 +59,7 @@ export interface GetEbsEncryptionByDefaultCommandOutput extends GetEbsEncryption * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetEbsEncryptionByDefaultCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetFlowLogsIntegrationTemplateCommand.ts b/clients/client-ec2/src/commands/GetFlowLogsIntegrationTemplateCommand.ts index cf80a5b2115be..6941077f4e9f7 100644 --- a/clients/client-ec2/src/commands/GetFlowLogsIntegrationTemplateCommand.ts +++ b/clients/client-ec2/src/commands/GetFlowLogsIntegrationTemplateCommand.ts @@ -94,6 +94,7 @@ export interface GetFlowLogsIntegrationTemplateCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetFlowLogsIntegrationTemplateCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetGroupsForCapacityReservationCommand.ts b/clients/client-ec2/src/commands/GetGroupsForCapacityReservationCommand.ts index 0dfd27c33ddfb..d01edc71e050f 100644 --- a/clients/client-ec2/src/commands/GetGroupsForCapacityReservationCommand.ts +++ b/clients/client-ec2/src/commands/GetGroupsForCapacityReservationCommand.ts @@ -69,6 +69,7 @@ export interface GetGroupsForCapacityReservationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetGroupsForCapacityReservationCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetHostReservationPurchasePreviewCommand.ts b/clients/client-ec2/src/commands/GetHostReservationPurchasePreviewCommand.ts index a7b13fca4a369..56f2af1893c44 100644 --- a/clients/client-ec2/src/commands/GetHostReservationPurchasePreviewCommand.ts +++ b/clients/client-ec2/src/commands/GetHostReservationPurchasePreviewCommand.ts @@ -83,6 +83,7 @@ export interface GetHostReservationPurchasePreviewCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetHostReservationPurchasePreviewCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetImageBlockPublicAccessStateCommand.ts b/clients/client-ec2/src/commands/GetImageBlockPublicAccessStateCommand.ts index 99d5e53998289..ad283a2548f52 100644 --- a/clients/client-ec2/src/commands/GetImageBlockPublicAccessStateCommand.ts +++ b/clients/client-ec2/src/commands/GetImageBlockPublicAccessStateCommand.ts @@ -64,6 +64,7 @@ export interface GetImageBlockPublicAccessStateCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetImageBlockPublicAccessStateCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetInstanceMetadataDefaultsCommand.ts b/clients/client-ec2/src/commands/GetInstanceMetadataDefaultsCommand.ts index 9b241c1fa16a0..725141ee95883 100644 --- a/clients/client-ec2/src/commands/GetInstanceMetadataDefaultsCommand.ts +++ b/clients/client-ec2/src/commands/GetInstanceMetadataDefaultsCommand.ts @@ -65,6 +65,7 @@ export interface GetInstanceMetadataDefaultsCommandOutput extends GetInstanceMet * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetInstanceMetadataDefaultsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetInstanceTpmEkPubCommand.ts b/clients/client-ec2/src/commands/GetInstanceTpmEkPubCommand.ts index ab53dde57d113..0e1ab364aa04b 100644 --- a/clients/client-ec2/src/commands/GetInstanceTpmEkPubCommand.ts +++ b/clients/client-ec2/src/commands/GetInstanceTpmEkPubCommand.ts @@ -66,6 +66,7 @@ export interface GetInstanceTpmEkPubCommandOutput extends GetInstanceTpmEkPubRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetInstanceTpmEkPubCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetInstanceTypesFromInstanceRequirementsCommand.ts b/clients/client-ec2/src/commands/GetInstanceTypesFromInstanceRequirementsCommand.ts index 6c3935a7d7f84..ecc26b6bd5c09 100644 --- a/clients/client-ec2/src/commands/GetInstanceTypesFromInstanceRequirementsCommand.ts +++ b/clients/client-ec2/src/commands/GetInstanceTypesFromInstanceRequirementsCommand.ts @@ -164,6 +164,7 @@ export interface GetInstanceTypesFromInstanceRequirementsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetInstanceTypesFromInstanceRequirementsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetInstanceUefiDataCommand.ts b/clients/client-ec2/src/commands/GetInstanceUefiDataCommand.ts index 40dbfc40cb637..f7652219d6658 100644 --- a/clients/client-ec2/src/commands/GetInstanceUefiDataCommand.ts +++ b/clients/client-ec2/src/commands/GetInstanceUefiDataCommand.ts @@ -67,6 +67,7 @@ export interface GetInstanceUefiDataCommandOutput extends GetInstanceUefiDataRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetInstanceUefiDataCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetIpamAddressHistoryCommand.ts b/clients/client-ec2/src/commands/GetIpamAddressHistoryCommand.ts index 538589112c412..278b775d46f42 100644 --- a/clients/client-ec2/src/commands/GetIpamAddressHistoryCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamAddressHistoryCommand.ts @@ -77,6 +77,7 @@ export interface GetIpamAddressHistoryCommandOutput extends GetIpamAddressHistor * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetIpamAddressHistoryCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetIpamDiscoveredAccountsCommand.ts b/clients/client-ec2/src/commands/GetIpamDiscoveredAccountsCommand.ts index 0bd24d96b2cd1..cc267dfc7e2a2 100644 --- a/clients/client-ec2/src/commands/GetIpamDiscoveredAccountsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamDiscoveredAccountsCommand.ts @@ -80,6 +80,7 @@ export interface GetIpamDiscoveredAccountsCommandOutput extends GetIpamDiscovere * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetIpamDiscoveredAccountsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetIpamDiscoveredPublicAddressesCommand.ts b/clients/client-ec2/src/commands/GetIpamDiscoveredPublicAddressesCommand.ts index 51cdd04fcec54..8b2d4ffdfe0f1 100644 --- a/clients/client-ec2/src/commands/GetIpamDiscoveredPublicAddressesCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamDiscoveredPublicAddressesCommand.ts @@ -108,6 +108,7 @@ export interface GetIpamDiscoveredPublicAddressesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetIpamDiscoveredPublicAddressesCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetIpamDiscoveredResourceCidrsCommand.ts b/clients/client-ec2/src/commands/GetIpamDiscoveredResourceCidrsCommand.ts index a816234fca026..5103be4145460 100644 --- a/clients/client-ec2/src/commands/GetIpamDiscoveredResourceCidrsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamDiscoveredResourceCidrsCommand.ts @@ -95,6 +95,7 @@ export interface GetIpamDiscoveredResourceCidrsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetIpamDiscoveredResourceCidrsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetIpamPoolAllocationsCommand.ts b/clients/client-ec2/src/commands/GetIpamPoolAllocationsCommand.ts index bfb9c067c965e..6f034e2f7f7aa 100644 --- a/clients/client-ec2/src/commands/GetIpamPoolAllocationsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamPoolAllocationsCommand.ts @@ -81,6 +81,7 @@ export interface GetIpamPoolAllocationsCommandOutput extends GetIpamPoolAllocati * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetIpamPoolAllocationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetIpamPoolCidrsCommand.ts b/clients/client-ec2/src/commands/GetIpamPoolCidrsCommand.ts index 54a20a978932f..2ea13702ee9c2 100644 --- a/clients/client-ec2/src/commands/GetIpamPoolCidrsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamPoolCidrsCommand.ts @@ -78,6 +78,7 @@ export interface GetIpamPoolCidrsCommandOutput extends GetIpamPoolCidrsResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetIpamPoolCidrsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetIpamResourceCidrsCommand.ts b/clients/client-ec2/src/commands/GetIpamResourceCidrsCommand.ts index b3716b5645f11..cfa92bcdbea89 100644 --- a/clients/client-ec2/src/commands/GetIpamResourceCidrsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamResourceCidrsCommand.ts @@ -99,6 +99,7 @@ export interface GetIpamResourceCidrsCommandOutput extends GetIpamResourceCidrsR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetIpamResourceCidrsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetLaunchTemplateDataCommand.ts b/clients/client-ec2/src/commands/GetLaunchTemplateDataCommand.ts index ab7294a53e582..6350180f64ded 100644 --- a/clients/client-ec2/src/commands/GetLaunchTemplateDataCommand.ts +++ b/clients/client-ec2/src/commands/GetLaunchTemplateDataCommand.ts @@ -332,70 +332,70 @@ export interface GetLaunchTemplateDataCommandOutput extends GetLaunchTemplateDat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To get the launch template data for an instance * ```javascript * // This example gets the launch template data for the specified instance. * const input = { - * "InstanceId": "0123d646e8048babc" + * InstanceId: "0123d646e8048babc" * }; * const command = new GetLaunchTemplateDataCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LaunchTemplateData": { - * "BlockDeviceMappings": [ + * LaunchTemplateData: { + * BlockDeviceMappings: [ * { - * "DeviceName": "/dev/xvda", - * "Ebs": { - * "DeleteOnTermination": true, - * "Encrypted": false, - * "Iops": 100, - * "SnapshotId": "snap-02594938353ef77d3", - * "VolumeSize": 8, - * "VolumeType": "gp2" + * DeviceName: "/dev/xvda", + * Ebs: { + * DeleteOnTermination: true, + * Encrypted: false, + * Iops: 100, + * SnapshotId: "snap-02594938353ef77d3", + * VolumeSize: 8, + * VolumeType: "gp2" * } * } * ], - * "EbsOptimized": false, - * "ImageId": "ami-32cf7b4a", - * "InstanceType": "t2.medium", - * "KeyName": "my-key-pair", - * "Monitoring": { - * "Enabled": false + * EbsOptimized: false, + * ImageId: "ami-32cf7b4a", + * InstanceType: "t2.medium", + * KeyName: "my-key-pair", + * Monitoring: { + * Enabled: false * }, - * "NetworkInterfaces": [ + * NetworkInterfaces: [ * { - * "AssociatePublicIpAddress": false, - * "DeleteOnTermination": true, - * "Description": "", - * "DeviceIndex": 0, - * "Groups": [ + * AssociatePublicIpAddress: false, + * DeleteOnTermination: true, + * Description: "", + * DeviceIndex: 0, + * Groups: [ * "sg-d14e1bb4" * ], - * "Ipv6Addresses": [], - * "NetworkInterfaceId": "eni-4338b5a9", - * "PrivateIpAddress": "10.0.3.233", - * "PrivateIpAddresses": [ + * Ipv6Addresses: [], + * NetworkInterfaceId: "eni-4338b5a9", + * PrivateIpAddress: "10.0.3.233", + * PrivateIpAddresses: [ * { - * "Primary": true, - * "PrivateIpAddress": "10.0.3.233" + * Primary: true, + * PrivateIpAddress: "10.0.3.233" * } * ], - * "SubnetId": "subnet-5264e837" + * SubnetId: "subnet-5264e837" * } * ], - * "Placement": { - * "AvailabilityZone": "us-east-2b", - * "GroupName": "", - * "Tenancy": "default" + * Placement: { + * AvailabilityZone: "us-east-2b", + * GroupName: "", + * Tenancy: "default" * } * } * } * *\/ - * // example id: to-get-the-launch-template-data-for-an-instance--1529356515702 * ``` * + * @public */ export class GetLaunchTemplateDataCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/GetManagedPrefixListAssociationsCommand.ts b/clients/client-ec2/src/commands/GetManagedPrefixListAssociationsCommand.ts index b663ecbc29457..8e22b9f100acb 100644 --- a/clients/client-ec2/src/commands/GetManagedPrefixListAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/GetManagedPrefixListAssociationsCommand.ts @@ -69,6 +69,7 @@ export interface GetManagedPrefixListAssociationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetManagedPrefixListAssociationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetManagedPrefixListEntriesCommand.ts b/clients/client-ec2/src/commands/GetManagedPrefixListEntriesCommand.ts index 619b0d3abc759..89e26dc0ac971 100644 --- a/clients/client-ec2/src/commands/GetManagedPrefixListEntriesCommand.ts +++ b/clients/client-ec2/src/commands/GetManagedPrefixListEntriesCommand.ts @@ -65,6 +65,7 @@ export interface GetManagedPrefixListEntriesCommandOutput extends GetManagedPref * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetManagedPrefixListEntriesCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.ts b/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.ts index ab081abbcecde..367c2c7f47273 100644 --- a/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.ts +++ b/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.ts @@ -396,6 +396,7 @@ export interface GetNetworkInsightsAccessScopeAnalysisFindingsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetNetworkInsightsAccessScopeAnalysisFindingsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeContentCommand.ts b/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeContentCommand.ts index 811d6e5c78aad..9d612cc683f5f 100644 --- a/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeContentCommand.ts +++ b/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeContentCommand.ts @@ -165,6 +165,7 @@ export interface GetNetworkInsightsAccessScopeContentCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetNetworkInsightsAccessScopeContentCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetPasswordDataCommand.ts b/clients/client-ec2/src/commands/GetPasswordDataCommand.ts index 9622507f9e17c..786ec17233fcf 100644 --- a/clients/client-ec2/src/commands/GetPasswordDataCommand.ts +++ b/clients/client-ec2/src/commands/GetPasswordDataCommand.ts @@ -74,6 +74,7 @@ export interface GetPasswordDataCommandOutput extends GetPasswordDataResult, __M * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetPasswordDataCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetReservedInstancesExchangeQuoteCommand.ts b/clients/client-ec2/src/commands/GetReservedInstancesExchangeQuoteCommand.ts index 661a43f302e95..b19ab43e96512 100644 --- a/clients/client-ec2/src/commands/GetReservedInstancesExchangeQuoteCommand.ts +++ b/clients/client-ec2/src/commands/GetReservedInstancesExchangeQuoteCommand.ts @@ -108,6 +108,7 @@ export interface GetReservedInstancesExchangeQuoteCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetReservedInstancesExchangeQuoteCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetSecurityGroupsForVpcCommand.ts b/clients/client-ec2/src/commands/GetSecurityGroupsForVpcCommand.ts index b756591de69e0..8323b2bfc183b 100644 --- a/clients/client-ec2/src/commands/GetSecurityGroupsForVpcCommand.ts +++ b/clients/client-ec2/src/commands/GetSecurityGroupsForVpcCommand.ts @@ -81,6 +81,7 @@ export interface GetSecurityGroupsForVpcCommandOutput extends GetSecurityGroupsF * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetSecurityGroupsForVpcCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetSerialConsoleAccessStatusCommand.ts b/clients/client-ec2/src/commands/GetSerialConsoleAccessStatusCommand.ts index b7fc409bfc203..79007e78d71a9 100644 --- a/clients/client-ec2/src/commands/GetSerialConsoleAccessStatusCommand.ts +++ b/clients/client-ec2/src/commands/GetSerialConsoleAccessStatusCommand.ts @@ -61,6 +61,7 @@ export interface GetSerialConsoleAccessStatusCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetSerialConsoleAccessStatusCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetSnapshotBlockPublicAccessStateCommand.ts b/clients/client-ec2/src/commands/GetSnapshotBlockPublicAccessStateCommand.ts index 9b9254d8dc1e7..7f27289f0dd0a 100644 --- a/clients/client-ec2/src/commands/GetSnapshotBlockPublicAccessStateCommand.ts +++ b/clients/client-ec2/src/commands/GetSnapshotBlockPublicAccessStateCommand.ts @@ -64,6 +64,7 @@ export interface GetSnapshotBlockPublicAccessStateCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetSnapshotBlockPublicAccessStateCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetSpotPlacementScoresCommand.ts b/clients/client-ec2/src/commands/GetSpotPlacementScoresCommand.ts index b7838e65e3d1f..ad25a645bfa4e 100644 --- a/clients/client-ec2/src/commands/GetSpotPlacementScoresCommand.ts +++ b/clients/client-ec2/src/commands/GetSpotPlacementScoresCommand.ts @@ -166,6 +166,7 @@ export interface GetSpotPlacementScoresCommandOutput extends GetSpotPlacementSco * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetSpotPlacementScoresCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetSubnetCidrReservationsCommand.ts b/clients/client-ec2/src/commands/GetSubnetCidrReservationsCommand.ts index 19c34f94e3ebc..138856c491457 100644 --- a/clients/client-ec2/src/commands/GetSubnetCidrReservationsCommand.ts +++ b/clients/client-ec2/src/commands/GetSubnetCidrReservationsCommand.ts @@ -98,6 +98,7 @@ export interface GetSubnetCidrReservationsCommandOutput extends GetSubnetCidrRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetSubnetCidrReservationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetTransitGatewayAttachmentPropagationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayAttachmentPropagationsCommand.ts index 67cdea8825c04..8b197f17b97c2 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayAttachmentPropagationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayAttachmentPropagationsCommand.ts @@ -81,6 +81,7 @@ export interface GetTransitGatewayAttachmentPropagationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetTransitGatewayAttachmentPropagationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetTransitGatewayMulticastDomainAssociationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayMulticastDomainAssociationsCommand.ts index 4911a4df66781..718c62db03945 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayMulticastDomainAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayMulticastDomainAssociationsCommand.ts @@ -87,6 +87,7 @@ export interface GetTransitGatewayMulticastDomainAssociationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetTransitGatewayMulticastDomainAssociationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableAssociationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableAssociationsCommand.ts index 01a58f6cda40e..80733b9d9c866 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableAssociationsCommand.ts @@ -84,6 +84,7 @@ export interface GetTransitGatewayPolicyTableAssociationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetTransitGatewayPolicyTableAssociationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableEntriesCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableEntriesCommand.ts index d41898c4c2287..bda467bf9d4ee 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableEntriesCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableEntriesCommand.ts @@ -90,6 +90,7 @@ export interface GetTransitGatewayPolicyTableEntriesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetTransitGatewayPolicyTableEntriesCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetTransitGatewayPrefixListReferencesCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayPrefixListReferencesCommand.ts index 3424794f8afe5..5634df0a8f72b 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayPrefixListReferencesCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayPrefixListReferencesCommand.ts @@ -89,6 +89,7 @@ export interface GetTransitGatewayPrefixListReferencesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetTransitGatewayPrefixListReferencesCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetTransitGatewayRouteTableAssociationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayRouteTableAssociationsCommand.ts index 22f0194376b83..910d10be5bc79 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayRouteTableAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayRouteTableAssociationsCommand.ts @@ -83,6 +83,7 @@ export interface GetTransitGatewayRouteTableAssociationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetTransitGatewayRouteTableAssociationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts index cc3b6cc45be08..b4c0e01070f89 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts @@ -84,6 +84,7 @@ export interface GetTransitGatewayRouteTablePropagationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetTransitGatewayRouteTablePropagationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts b/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts index b12a807946050..41962c3abc658 100644 --- a/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts +++ b/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts @@ -62,6 +62,7 @@ export interface GetVerifiedAccessEndpointPolicyCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetVerifiedAccessEndpointPolicyCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetVerifiedAccessEndpointTargetsCommand.ts b/clients/client-ec2/src/commands/GetVerifiedAccessEndpointTargetsCommand.ts index 5cb165d67e353..2678e0ebcf3b3 100644 --- a/clients/client-ec2/src/commands/GetVerifiedAccessEndpointTargetsCommand.ts +++ b/clients/client-ec2/src/commands/GetVerifiedAccessEndpointTargetsCommand.ts @@ -70,6 +70,7 @@ export interface GetVerifiedAccessEndpointTargetsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetVerifiedAccessEndpointTargetsCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetVerifiedAccessGroupPolicyCommand.ts b/clients/client-ec2/src/commands/GetVerifiedAccessGroupPolicyCommand.ts index 3a9701d7dcc28..ac6ae08ec0ec4 100644 --- a/clients/client-ec2/src/commands/GetVerifiedAccessGroupPolicyCommand.ts +++ b/clients/client-ec2/src/commands/GetVerifiedAccessGroupPolicyCommand.ts @@ -59,6 +59,7 @@ export interface GetVerifiedAccessGroupPolicyCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetVerifiedAccessGroupPolicyCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetVpnConnectionDeviceSampleConfigurationCommand.ts b/clients/client-ec2/src/commands/GetVpnConnectionDeviceSampleConfigurationCommand.ts index f82d8f57a5a2d..e966c2f91bebf 100644 --- a/clients/client-ec2/src/commands/GetVpnConnectionDeviceSampleConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/GetVpnConnectionDeviceSampleConfigurationCommand.ts @@ -69,6 +69,7 @@ export interface GetVpnConnectionDeviceSampleConfigurationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetVpnConnectionDeviceSampleConfigurationCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetVpnConnectionDeviceTypesCommand.ts b/clients/client-ec2/src/commands/GetVpnConnectionDeviceTypesCommand.ts index e60da521d6616..92a25c74b53d1 100644 --- a/clients/client-ec2/src/commands/GetVpnConnectionDeviceTypesCommand.ts +++ b/clients/client-ec2/src/commands/GetVpnConnectionDeviceTypesCommand.ts @@ -68,6 +68,7 @@ export interface GetVpnConnectionDeviceTypesCommandOutput extends GetVpnConnecti * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetVpnConnectionDeviceTypesCommand extends $Command diff --git a/clients/client-ec2/src/commands/GetVpnTunnelReplacementStatusCommand.ts b/clients/client-ec2/src/commands/GetVpnTunnelReplacementStatusCommand.ts index aeca4843d87f0..53f16a43b6a59 100644 --- a/clients/client-ec2/src/commands/GetVpnTunnelReplacementStatusCommand.ts +++ b/clients/client-ec2/src/commands/GetVpnTunnelReplacementStatusCommand.ts @@ -68,6 +68,7 @@ export interface GetVpnTunnelReplacementStatusCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class GetVpnTunnelReplacementStatusCommand extends $Command diff --git a/clients/client-ec2/src/commands/ImportClientVpnClientCertificateRevocationListCommand.ts b/clients/client-ec2/src/commands/ImportClientVpnClientCertificateRevocationListCommand.ts index ff77cf62a521c..76be2b89d899f 100644 --- a/clients/client-ec2/src/commands/ImportClientVpnClientCertificateRevocationListCommand.ts +++ b/clients/client-ec2/src/commands/ImportClientVpnClientCertificateRevocationListCommand.ts @@ -67,6 +67,7 @@ export interface ImportClientVpnClientCertificateRevocationListCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ImportClientVpnClientCertificateRevocationListCommand extends $Command diff --git a/clients/client-ec2/src/commands/ImportImageCommand.ts b/clients/client-ec2/src/commands/ImportImageCommand.ts index ccaf1a510d377..a176ee2730f73 100644 --- a/clients/client-ec2/src/commands/ImportImageCommand.ts +++ b/clients/client-ec2/src/commands/ImportImageCommand.ts @@ -161,6 +161,7 @@ export interface ImportImageCommandOutput extends ImportImageResult, __MetadataB * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ImportImageCommand extends $Command diff --git a/clients/client-ec2/src/commands/ImportInstanceCommand.ts b/clients/client-ec2/src/commands/ImportInstanceCommand.ts index 28de8b7d913ae..3f4620f84ad00 100644 --- a/clients/client-ec2/src/commands/ImportInstanceCommand.ts +++ b/clients/client-ec2/src/commands/ImportInstanceCommand.ts @@ -165,6 +165,7 @@ export interface ImportInstanceCommandOutput extends ImportInstanceResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ImportInstanceCommand extends $Command diff --git a/clients/client-ec2/src/commands/ImportKeyPairCommand.ts b/clients/client-ec2/src/commands/ImportKeyPairCommand.ts index 50952c8c03c7b..bde250fb0b8da 100644 --- a/clients/client-ec2/src/commands/ImportKeyPairCommand.ts +++ b/clients/client-ec2/src/commands/ImportKeyPairCommand.ts @@ -78,6 +78,7 @@ export interface ImportKeyPairCommandOutput extends ImportKeyPairResult, __Metad * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ImportKeyPairCommand extends $Command diff --git a/clients/client-ec2/src/commands/ImportSnapshotCommand.ts b/clients/client-ec2/src/commands/ImportSnapshotCommand.ts index c2ccd47119592..c9058014a593b 100644 --- a/clients/client-ec2/src/commands/ImportSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/ImportSnapshotCommand.ts @@ -116,6 +116,7 @@ export interface ImportSnapshotCommandOutput extends ImportSnapshotResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ImportSnapshotCommand extends $Command diff --git a/clients/client-ec2/src/commands/ImportVolumeCommand.ts b/clients/client-ec2/src/commands/ImportVolumeCommand.ts index 0baa438666d5a..58e1098059780 100644 --- a/clients/client-ec2/src/commands/ImportVolumeCommand.ts +++ b/clients/client-ec2/src/commands/ImportVolumeCommand.ts @@ -127,6 +127,7 @@ export interface ImportVolumeCommandOutput extends ImportVolumeResult, __Metadat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ImportVolumeCommand extends $Command diff --git a/clients/client-ec2/src/commands/ListImagesInRecycleBinCommand.ts b/clients/client-ec2/src/commands/ListImagesInRecycleBinCommand.ts index 91183d6b6f48b..d053b9907d1f9 100644 --- a/clients/client-ec2/src/commands/ListImagesInRecycleBinCommand.ts +++ b/clients/client-ec2/src/commands/ListImagesInRecycleBinCommand.ts @@ -71,6 +71,7 @@ export interface ListImagesInRecycleBinCommandOutput extends ListImagesInRecycle * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ListImagesInRecycleBinCommand extends $Command diff --git a/clients/client-ec2/src/commands/ListSnapshotsInRecycleBinCommand.ts b/clients/client-ec2/src/commands/ListSnapshotsInRecycleBinCommand.ts index b758356d0c94c..32b33b3de101e 100644 --- a/clients/client-ec2/src/commands/ListSnapshotsInRecycleBinCommand.ts +++ b/clients/client-ec2/src/commands/ListSnapshotsInRecycleBinCommand.ts @@ -69,6 +69,7 @@ export interface ListSnapshotsInRecycleBinCommandOutput extends ListSnapshotsInR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ListSnapshotsInRecycleBinCommand extends $Command diff --git a/clients/client-ec2/src/commands/LockSnapshotCommand.ts b/clients/client-ec2/src/commands/LockSnapshotCommand.ts index c82a1f3dc8a60..c37a3f0700e62 100644 --- a/clients/client-ec2/src/commands/LockSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/LockSnapshotCommand.ts @@ -85,6 +85,7 @@ export interface LockSnapshotCommandOutput extends LockSnapshotResult, __Metadat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class LockSnapshotCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyAddressAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyAddressAttributeCommand.ts index 3dffc0862bd93..a3f2f162b707f 100644 --- a/clients/client-ec2/src/commands/ModifyAddressAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyAddressAttributeCommand.ts @@ -66,6 +66,7 @@ export interface ModifyAddressAttributeCommandOutput extends ModifyAddressAttrib * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyAddressAttributeCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyAvailabilityZoneGroupCommand.ts b/clients/client-ec2/src/commands/ModifyAvailabilityZoneGroupCommand.ts index 598a8c1e2273c..e4e522ca253d4 100644 --- a/clients/client-ec2/src/commands/ModifyAvailabilityZoneGroupCommand.ts +++ b/clients/client-ec2/src/commands/ModifyAvailabilityZoneGroupCommand.ts @@ -57,6 +57,7 @@ export interface ModifyAvailabilityZoneGroupCommandOutput extends ModifyAvailabi * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyAvailabilityZoneGroupCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyCapacityReservationCommand.ts b/clients/client-ec2/src/commands/ModifyCapacityReservationCommand.ts index 12caa42dc0434..cf36ce269fa71 100644 --- a/clients/client-ec2/src/commands/ModifyCapacityReservationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyCapacityReservationCommand.ts @@ -94,6 +94,7 @@ export interface ModifyCapacityReservationCommandOutput extends ModifyCapacityRe * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyCapacityReservationCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyCapacityReservationFleetCommand.ts b/clients/client-ec2/src/commands/ModifyCapacityReservationFleetCommand.ts index a1359c7f1a647..aa4a29ef4dd68 100644 --- a/clients/client-ec2/src/commands/ModifyCapacityReservationFleetCommand.ts +++ b/clients/client-ec2/src/commands/ModifyCapacityReservationFleetCommand.ts @@ -69,6 +69,7 @@ export interface ModifyCapacityReservationFleetCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyCapacityReservationFleetCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyClientVpnEndpointCommand.ts b/clients/client-ec2/src/commands/ModifyClientVpnEndpointCommand.ts index 4a50cc2c753eb..800b169230d7c 100644 --- a/clients/client-ec2/src/commands/ModifyClientVpnEndpointCommand.ts +++ b/clients/client-ec2/src/commands/ModifyClientVpnEndpointCommand.ts @@ -86,6 +86,7 @@ export interface ModifyClientVpnEndpointCommandOutput extends ModifyClientVpnEnd * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyClientVpnEndpointCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyDefaultCreditSpecificationCommand.ts b/clients/client-ec2/src/commands/ModifyDefaultCreditSpecificationCommand.ts index eada3bbd072d5..beba3511f5bb3 100644 --- a/clients/client-ec2/src/commands/ModifyDefaultCreditSpecificationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyDefaultCreditSpecificationCommand.ts @@ -78,6 +78,7 @@ export interface ModifyDefaultCreditSpecificationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyDefaultCreditSpecificationCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyEbsDefaultKmsKeyIdCommand.ts b/clients/client-ec2/src/commands/ModifyEbsDefaultKmsKeyIdCommand.ts index 2d29fd5b3e03b..4cd2d4ae93c54 100644 --- a/clients/client-ec2/src/commands/ModifyEbsDefaultKmsKeyIdCommand.ts +++ b/clients/client-ec2/src/commands/ModifyEbsDefaultKmsKeyIdCommand.ts @@ -63,6 +63,7 @@ export interface ModifyEbsDefaultKmsKeyIdCommandOutput extends ModifyEbsDefaultK * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyEbsDefaultKmsKeyIdCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyFleetCommand.ts b/clients/client-ec2/src/commands/ModifyFleetCommand.ts index eedb5d1ceff22..bcb093e6cfb5b 100644 --- a/clients/client-ec2/src/commands/ModifyFleetCommand.ts +++ b/clients/client-ec2/src/commands/ModifyFleetCommand.ts @@ -212,6 +212,7 @@ export interface ModifyFleetCommandOutput extends ModifyFleetResult, __MetadataB * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyFleetCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyFpgaImageAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyFpgaImageAttributeCommand.ts index 4a72992635d2d..983d73b6aac25 100644 --- a/clients/client-ec2/src/commands/ModifyFpgaImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyFpgaImageAttributeCommand.ts @@ -99,6 +99,7 @@ export interface ModifyFpgaImageAttributeCommandOutput extends ModifyFpgaImageAt * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyFpgaImageAttributeCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyHostsCommand.ts b/clients/client-ec2/src/commands/ModifyHostsCommand.ts index e9975ea5a8d93..841bfa7e0c8ce 100644 --- a/clients/client-ec2/src/commands/ModifyHostsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyHostsCommand.ts @@ -81,6 +81,7 @@ export interface ModifyHostsCommandOutput extends ModifyHostsResult, __MetadataB * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyHostsCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyIdFormatCommand.ts b/clients/client-ec2/src/commands/ModifyIdFormatCommand.ts index f34099a0f6bda..f594d603a7bcc 100644 --- a/clients/client-ec2/src/commands/ModifyIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIdFormatCommand.ts @@ -77,6 +77,7 @@ export interface ModifyIdFormatCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyIdFormatCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyIdentityIdFormatCommand.ts b/clients/client-ec2/src/commands/ModifyIdentityIdFormatCommand.ts index 612dcdd54e4d6..989b180d98935 100644 --- a/clients/client-ec2/src/commands/ModifyIdentityIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIdentityIdFormatCommand.ts @@ -76,6 +76,7 @@ export interface ModifyIdentityIdFormatCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyIdentityIdFormatCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyImageAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyImageAttributeCommand.ts index e8b9e7c189b4f..7cb5eee090cfc 100644 --- a/clients/client-ec2/src/commands/ModifyImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyImageAttributeCommand.ts @@ -103,43 +103,48 @@ export interface ModifyImageAttributeCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public - * @example To make an AMI public + * + * @example To grant launch permissions * ```javascript - * // This example makes the specified AMI public. + * // This example grants launch permissions for the specified AMI to the specified AWS account. * const input = { - * "ImageId": "ami-5731123e", - * "LaunchPermission": { - * "Add": [ + * ImageId: "ami-5731123e", + * LaunchPermission: { + * Add: [ * { - * "Group": "all" + * UserId: "123456789012" * } * ] * } * }; * const command = new ModifyImageAttributeCommand(input); - * await client.send(command); - * // example id: to-make-an-ami-public-1529357395278 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * - * @example To grant launch permissions + * @example To make an AMI public * ```javascript - * // This example grants launch permissions for the specified AMI to the specified AWS account. + * // This example makes the specified AMI public. * const input = { - * "ImageId": "ami-5731123e", - * "LaunchPermission": { - * "Add": [ + * ImageId: "ami-5731123e", + * LaunchPermission: { + * Add: [ * { - * "UserId": "123456789012" + * Group: "all" * } * ] * } * }; * const command = new ModifyImageAttributeCommand(input); - * await client.send(command); - * // example id: to-grant-launch-permissions-1529357727906 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class ModifyImageAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ModifyInstanceAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceAttributeCommand.ts index f927c7899ac5b..5d2ff1e1fe1f4 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceAttributeCommand.ts @@ -113,35 +113,40 @@ export interface ModifyInstanceAttributeCommandOutput extends __MetadataBearer { * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public - * @example To modify the instance type + * + * @example To enable enhanced networking * ```javascript - * // This example modifies the instance type of the specified stopped instance. + * // This example enables enhanced networking for the specified stopped instance. * const input = { - * "InstanceId": "i-1234567890abcdef0", - * "InstanceType": { - * "Value": "m5.large" - * } + * EnaSupport: { + * Value: true + * }, + * InstanceId: "i-1234567890abcdef0" * }; * const command = new ModifyInstanceAttributeCommand(input); - * await client.send(command); - * // example id: to-modify-the-instance-type-1529357844378 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * - * @example To enable enhanced networking + * @example To modify the instance type * ```javascript - * // This example enables enhanced networking for the specified stopped instance. + * // This example modifies the instance type of the specified stopped instance. * const input = { - * "EnaSupport": { - * "Value": true - * }, - * "InstanceId": "i-1234567890abcdef0" + * InstanceId: "i-1234567890abcdef0", + * InstanceType: { + * Value: "m5.large" + * } * }; * const command = new ModifyInstanceAttributeCommand(input); - * await client.send(command); - * // example id: to-enable-enhanced-networking-1529358279870 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class ModifyInstanceAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ModifyInstanceCapacityReservationAttributesCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceCapacityReservationAttributesCommand.ts index 739ce3ea3f623..48e3d8f6f2682 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceCapacityReservationAttributesCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceCapacityReservationAttributesCommand.ts @@ -73,6 +73,7 @@ export interface ModifyInstanceCapacityReservationAttributesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyInstanceCapacityReservationAttributesCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyInstanceCpuOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceCpuOptionsCommand.ts index 56efb2dc6b7e4..125caca8c4dea 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceCpuOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceCpuOptionsCommand.ts @@ -69,6 +69,7 @@ export interface ModifyInstanceCpuOptionsCommandOutput extends ModifyInstanceCpu * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyInstanceCpuOptionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyInstanceCreditSpecificationCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceCreditSpecificationCommand.ts index d588b1ae3f0a9..45ef3169a1a29 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceCreditSpecificationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceCreditSpecificationCommand.ts @@ -84,6 +84,7 @@ export interface ModifyInstanceCreditSpecificationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyInstanceCreditSpecificationCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyInstanceEventStartTimeCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceEventStartTimeCommand.ts index 1e4cc409502f4..c8c8aa660dee4 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceEventStartTimeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceEventStartTimeCommand.ts @@ -67,6 +67,7 @@ export interface ModifyInstanceEventStartTimeCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyInstanceEventStartTimeCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceEventWindowCommand.ts index 37d3dadedf059..3f367bcaaa679 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceEventWindowCommand.ts @@ -106,6 +106,7 @@ export interface ModifyInstanceEventWindowCommandOutput extends ModifyInstanceEv * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyInstanceEventWindowCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyInstanceMaintenanceOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceMaintenanceOptionsCommand.ts index 12c143a851b67..169b83a28f26b 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceMaintenanceOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceMaintenanceOptionsCommand.ts @@ -66,6 +66,7 @@ export interface ModifyInstanceMaintenanceOptionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyInstanceMaintenanceOptionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyInstanceMetadataDefaultsCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceMetadataDefaultsCommand.ts index 712812e0b0651..b8be4a192f57c 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceMetadataDefaultsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceMetadataDefaultsCommand.ts @@ -72,6 +72,7 @@ export interface ModifyInstanceMetadataDefaultsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyInstanceMetadataDefaultsCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyInstanceMetadataOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceMetadataOptionsCommand.ts index b84f949061dc6..05caaa206fbe3 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceMetadataOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceMetadataOptionsCommand.ts @@ -77,6 +77,7 @@ export interface ModifyInstanceMetadataOptionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyInstanceMetadataOptionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyInstanceNetworkPerformanceOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceNetworkPerformanceOptionsCommand.ts index 031fc8fb107bb..99eb6911639de 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceNetworkPerformanceOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceNetworkPerformanceOptionsCommand.ts @@ -64,6 +64,7 @@ export interface ModifyInstanceNetworkPerformanceOptionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyInstanceNetworkPerformanceOptionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyInstancePlacementCommand.ts b/clients/client-ec2/src/commands/ModifyInstancePlacementCommand.ts index 975f3a805fe28..8244e5ee21e92 100644 --- a/clients/client-ec2/src/commands/ModifyInstancePlacementCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstancePlacementCommand.ts @@ -87,6 +87,7 @@ export interface ModifyInstancePlacementCommandOutput extends ModifyInstancePlac * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyInstancePlacementCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyIpamCommand.ts b/clients/client-ec2/src/commands/ModifyIpamCommand.ts index 79217661b7377..1eb815587832c 100644 --- a/clients/client-ec2/src/commands/ModifyIpamCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamCommand.ts @@ -97,6 +97,7 @@ export interface ModifyIpamCommandOutput extends ModifyIpamResult, __MetadataBea * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyIpamCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyIpamPoolCommand.ts b/clients/client-ec2/src/commands/ModifyIpamPoolCommand.ts index d754209ffefb9..b7f3bc9a4d3c3 100644 --- a/clients/client-ec2/src/commands/ModifyIpamPoolCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamPoolCommand.ts @@ -116,6 +116,7 @@ export interface ModifyIpamPoolCommandOutput extends ModifyIpamPoolResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyIpamPoolCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyIpamResourceCidrCommand.ts b/clients/client-ec2/src/commands/ModifyIpamResourceCidrCommand.ts index 67516e1667d1f..33f94405d8b07 100644 --- a/clients/client-ec2/src/commands/ModifyIpamResourceCidrCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamResourceCidrCommand.ts @@ -84,6 +84,7 @@ export interface ModifyIpamResourceCidrCommandOutput extends ModifyIpamResourceC * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyIpamResourceCidrCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/ModifyIpamResourceDiscoveryCommand.ts index 5ee62ff65b7ef..cc9b9ae9dd47f 100644 --- a/clients/client-ec2/src/commands/ModifyIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamResourceDiscoveryCommand.ts @@ -101,6 +101,7 @@ export interface ModifyIpamResourceDiscoveryCommandOutput extends ModifyIpamReso * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyIpamResourceDiscoveryCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyIpamScopeCommand.ts b/clients/client-ec2/src/commands/ModifyIpamScopeCommand.ts index 1805ec7524870..dad84b3478d73 100644 --- a/clients/client-ec2/src/commands/ModifyIpamScopeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamScopeCommand.ts @@ -74,6 +74,7 @@ export interface ModifyIpamScopeCommandOutput extends ModifyIpamScopeResult, __M * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyIpamScopeCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyLaunchTemplateCommand.ts b/clients/client-ec2/src/commands/ModifyLaunchTemplateCommand.ts index c1cafef9d6f73..dfd5274ca0ec0 100644 --- a/clients/client-ec2/src/commands/ModifyLaunchTemplateCommand.ts +++ b/clients/client-ec2/src/commands/ModifyLaunchTemplateCommand.ts @@ -78,31 +78,31 @@ export interface ModifyLaunchTemplateCommandOutput extends ModifyLaunchTemplateR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To change the default version of a launch template * ```javascript * // This example specifies version 2 as the default version of the specified launch template. * const input = { - * "DefaultVersion": "2", - * "LaunchTemplateId": "lt-0abcd290751193123" + * DefaultVersion: "2", + * LaunchTemplateId: "lt-0abcd290751193123" * }; * const command = new ModifyLaunchTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LaunchTemplate": { - * "CreateTime": "2017-12-01T13:35:46.000Z", - * "CreatedBy": "arn:aws:iam::123456789012:root", - * "DefaultVersionNumber": 2, - * "LatestVersionNumber": 2, - * "LaunchTemplateId": "lt-0abcd290751193123", - * "LaunchTemplateName": "WebServers" + * LaunchTemplate: { + * CreateTime: "2017-12-01T13:35:46.000Z", + * CreatedBy: "arn:aws:iam::123456789012:root", + * DefaultVersionNumber: 2, + * LatestVersionNumber: 2, + * LaunchTemplateId: "lt-0abcd290751193123", + * LaunchTemplateName: "WebServers" * } * } * *\/ - * // example id: to-change-the-default-version-of-a-launch-template-1529358440364 * ``` * + * @public */ export class ModifyLaunchTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ModifyLocalGatewayRouteCommand.ts b/clients/client-ec2/src/commands/ModifyLocalGatewayRouteCommand.ts index 859929b9dab76..b9e179154719d 100644 --- a/clients/client-ec2/src/commands/ModifyLocalGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/ModifyLocalGatewayRouteCommand.ts @@ -72,6 +72,7 @@ export interface ModifyLocalGatewayRouteCommandOutput extends ModifyLocalGateway * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyLocalGatewayRouteCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyManagedPrefixListCommand.ts b/clients/client-ec2/src/commands/ModifyManagedPrefixListCommand.ts index 519b2c38d7799..97b4a6c488fee 100644 --- a/clients/client-ec2/src/commands/ModifyManagedPrefixListCommand.ts +++ b/clients/client-ec2/src/commands/ModifyManagedPrefixListCommand.ts @@ -90,6 +90,7 @@ export interface ModifyManagedPrefixListCommandOutput extends ModifyManagedPrefi * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyManagedPrefixListCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyNetworkInterfaceAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyNetworkInterfaceAttributeCommand.ts index 95b9d2fe2e583..712b93602261f 100644 --- a/clients/client-ec2/src/commands/ModifyNetworkInterfaceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyNetworkInterfaceAttributeCommand.ts @@ -85,65 +85,74 @@ export interface ModifyNetworkInterfaceAttributeCommandOutput extends __Metadata * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To modify the attachment attribute of a network interface * ```javascript * // This example modifies the attachment attribute of the specified network interface. * const input = { - * "Attachment": { - * "AttachmentId": "eni-attach-43348162", - * "DeleteOnTermination": false + * Attachment: { + * AttachmentId: "eni-attach-43348162", + * DeleteOnTermination: false * }, - * "NetworkInterfaceId": "eni-686ea200" + * NetworkInterfaceId: "eni-686ea200" * }; * const command = new ModifyNetworkInterfaceAttributeCommand(input); - * await client.send(command); - * // example id: ec2-modify-network-interface-attribute-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To modify the description attribute of a network interface * ```javascript * // This example modifies the description attribute of the specified network interface. * const input = { - * "Description": { - * "Value": "My description" + * Description: { + * Value: "My description" * }, - * "NetworkInterfaceId": "eni-686ea200" + * NetworkInterfaceId: "eni-686ea200" * }; * const command = new ModifyNetworkInterfaceAttributeCommand(input); - * await client.send(command); - * // example id: ec2-modify-network-interface-attribute-2 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To modify the groupSet attribute of a network interface * ```javascript * // This example command modifies the groupSet attribute of the specified network interface. * const input = { - * "Groups": [ + * Groups: [ * "sg-903004f8", * "sg-1a2b3c4d" * ], - * "NetworkInterfaceId": "eni-686ea200" + * NetworkInterfaceId: "eni-686ea200" * }; * const command = new ModifyNetworkInterfaceAttributeCommand(input); - * await client.send(command); - * // example id: ec2-modify-network-interface-attribute-3 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To modify the sourceDestCheck attribute of a network interface * ```javascript * // This example command modifies the sourceDestCheck attribute of the specified network interface. * const input = { - * "NetworkInterfaceId": "eni-686ea200", - * "SourceDestCheck": { - * "Value": false + * NetworkInterfaceId: "eni-686ea200", + * SourceDestCheck: { + * Value: false * } * }; * const command = new ModifyNetworkInterfaceAttributeCommand(input); - * await client.send(command); - * // example id: ec2-modify-network-interface-attribute-4 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ModifyNetworkInterfaceAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ModifyPrivateDnsNameOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyPrivateDnsNameOptionsCommand.ts index ba12301b77f80..e6c70ec3d88bb 100644 --- a/clients/client-ec2/src/commands/ModifyPrivateDnsNameOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyPrivateDnsNameOptionsCommand.ts @@ -59,6 +59,7 @@ export interface ModifyPrivateDnsNameOptionsCommandOutput extends ModifyPrivateD * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyPrivateDnsNameOptionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyReservedInstancesCommand.ts b/clients/client-ec2/src/commands/ModifyReservedInstancesCommand.ts index d4bc283224175..1206e420b3634 100644 --- a/clients/client-ec2/src/commands/ModifyReservedInstancesCommand.ts +++ b/clients/client-ec2/src/commands/ModifyReservedInstancesCommand.ts @@ -71,6 +71,7 @@ export interface ModifyReservedInstancesCommandOutput extends ModifyReservedInst * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyReservedInstancesCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifySecurityGroupRulesCommand.ts b/clients/client-ec2/src/commands/ModifySecurityGroupRulesCommand.ts index 17389dec2b3c4..652fdf95e410a 100644 --- a/clients/client-ec2/src/commands/ModifySecurityGroupRulesCommand.ts +++ b/clients/client-ec2/src/commands/ModifySecurityGroupRulesCommand.ts @@ -71,6 +71,7 @@ export interface ModifySecurityGroupRulesCommandOutput extends ModifySecurityGro * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifySecurityGroupRulesCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifySnapshotAttributeCommand.ts b/clients/client-ec2/src/commands/ModifySnapshotAttributeCommand.ts index a83b85fb4fb24..c9a70b46414c3 100644 --- a/clients/client-ec2/src/commands/ModifySnapshotAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifySnapshotAttributeCommand.ts @@ -83,39 +83,44 @@ export interface ModifySnapshotAttributeCommandOutput extends __MetadataBearer { * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public - * @example To modify a snapshot attribute + * + * @example To make a snapshot public * ```javascript - * // This example modifies snapshot ``snap-1234567890abcdef0`` to remove the create volume permission for a user with the account ID ``123456789012``. If the command succeeds, no output is returned. + * // This example makes the snapshot ``snap-1234567890abcdef0`` public. * const input = { - * "Attribute": "createVolumePermission", - * "OperationType": "remove", - * "SnapshotId": "snap-1234567890abcdef0", - * "UserIds": [ - * "123456789012" - * ] + * Attribute: "createVolumePermission", + * GroupNames: [ + * "all" + * ], + * OperationType: "add", + * SnapshotId: "snap-1234567890abcdef0" * }; * const command = new ModifySnapshotAttributeCommand(input); - * await client.send(command); - * // example id: to-modify-a-snapshot-attribute-1472508385907 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * - * @example To make a snapshot public + * @example To modify a snapshot attribute * ```javascript - * // This example makes the snapshot ``snap-1234567890abcdef0`` public. + * // This example modifies snapshot ``snap-1234567890abcdef0`` to remove the create volume permission for a user with the account ID ``123456789012``. If the command succeeds, no output is returned. * const input = { - * "Attribute": "createVolumePermission", - * "GroupNames": [ - * "all" - * ], - * "OperationType": "add", - * "SnapshotId": "snap-1234567890abcdef0" + * Attribute: "createVolumePermission", + * OperationType: "remove", + * SnapshotId: "snap-1234567890abcdef0", + * UserIds: [ + * "123456789012" + * ] * }; * const command = new ModifySnapshotAttributeCommand(input); - * await client.send(command); - * // example id: to-make-a-snapshot-public-1472508470529 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class ModifySnapshotAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ModifySnapshotTierCommand.ts b/clients/client-ec2/src/commands/ModifySnapshotTierCommand.ts index e50bc16c90a10..e60a3c870ce13 100644 --- a/clients/client-ec2/src/commands/ModifySnapshotTierCommand.ts +++ b/clients/client-ec2/src/commands/ModifySnapshotTierCommand.ts @@ -62,6 +62,7 @@ export interface ModifySnapshotTierCommandOutput extends ModifySnapshotTierResul * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifySnapshotTierCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifySpotFleetRequestCommand.ts b/clients/client-ec2/src/commands/ModifySpotFleetRequestCommand.ts index b98ea6a0a83fe..f7062f84c76ca 100644 --- a/clients/client-ec2/src/commands/ModifySpotFleetRequestCommand.ts +++ b/clients/client-ec2/src/commands/ModifySpotFleetRequestCommand.ts @@ -180,42 +180,24 @@ export interface ModifySpotFleetRequestCommandOutput extends ModifySpotFleetRequ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To increase the target capacity of a Spot fleet request * ```javascript * // This example increases the target capacity of the specified Spot fleet request. * const input = { - * "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE", - * "TargetCapacity": 20 + * SpotFleetRequestId: "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE", + * TargetCapacity: 20 * }; * const command = new ModifySpotFleetRequestCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Return": true + * Return: true * } * *\/ - * // example id: ec2-modify-spot-fleet-request-1 - * ``` - * - * @example To decrease the target capacity of a Spot fleet request - * ```javascript - * // This example decreases the target capacity of the specified Spot fleet request without terminating any Spot Instances as a result. - * const input = { - * "ExcessCapacityTerminationPolicy": "NoTermination ", - * "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE", - * "TargetCapacity": 10 - * }; - * const command = new ModifySpotFleetRequestCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Return": true - * } - * *\/ - * // example id: ec2-modify-spot-fleet-request-2 * ``` * + * @public */ export class ModifySpotFleetRequestCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ModifySubnetAttributeCommand.ts b/clients/client-ec2/src/commands/ModifySubnetAttributeCommand.ts index 383911873ff0a..a1b98402c100c 100644 --- a/clients/client-ec2/src/commands/ModifySubnetAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifySubnetAttributeCommand.ts @@ -100,21 +100,24 @@ export interface ModifySubnetAttributeCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To change a subnet's public IP addressing behavior * ```javascript * // This example modifies the specified subnet so that all instances launched into this subnet are assigned a public IP address. * const input = { - * "MapPublicIpOnLaunch": { - * "Value": true + * MapPublicIpOnLaunch: { + * Value: true * }, - * "SubnetId": "subnet-1a2b3c4d" + * SubnetId: "subnet-1a2b3c4d" * }; * const command = new ModifySubnetAttributeCommand(input); - * await client.send(command); - * // example id: ec2-modify-subnet-attribute-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ModifySubnetAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.ts b/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.ts index 7050ed24795fb..95da0be8bef19 100644 --- a/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.ts @@ -140,6 +140,7 @@ export interface ModifyTrafficMirrorFilterNetworkServicesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyTrafficMirrorFilterNetworkServicesCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterRuleCommand.ts b/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterRuleCommand.ts index 510fcf7dfc359..87529f865f018 100644 --- a/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterRuleCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterRuleCommand.ts @@ -103,6 +103,7 @@ export interface ModifyTrafficMirrorFilterRuleCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyTrafficMirrorFilterRuleCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyTrafficMirrorSessionCommand.ts b/clients/client-ec2/src/commands/ModifyTrafficMirrorSessionCommand.ts index 7789aea813e4a..a1822f91a5b74 100644 --- a/clients/client-ec2/src/commands/ModifyTrafficMirrorSessionCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTrafficMirrorSessionCommand.ts @@ -81,6 +81,7 @@ export interface ModifyTrafficMirrorSessionCommandOutput extends ModifyTrafficMi * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyTrafficMirrorSessionCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyTransitGatewayCommand.ts b/clients/client-ec2/src/commands/ModifyTransitGatewayCommand.ts index 0fb42cdde2587..993899301e2d9 100644 --- a/clients/client-ec2/src/commands/ModifyTransitGatewayCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTransitGatewayCommand.ts @@ -102,6 +102,7 @@ export interface ModifyTransitGatewayCommandOutput extends ModifyTransitGatewayR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyTransitGatewayCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyTransitGatewayPrefixListReferenceCommand.ts b/clients/client-ec2/src/commands/ModifyTransitGatewayPrefixListReferenceCommand.ts index cfb70d8045f5a..d488a4fe69b3e 100644 --- a/clients/client-ec2/src/commands/ModifyTransitGatewayPrefixListReferenceCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTransitGatewayPrefixListReferenceCommand.ts @@ -79,6 +79,7 @@ export interface ModifyTransitGatewayPrefixListReferenceCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyTransitGatewayPrefixListReferenceCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/ModifyTransitGatewayVpcAttachmentCommand.ts index bc95ef1c0ee10..69e2d369d13f8 100644 --- a/clients/client-ec2/src/commands/ModifyTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTransitGatewayVpcAttachmentCommand.ts @@ -95,6 +95,7 @@ export interface ModifyTransitGatewayVpcAttachmentCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyTransitGatewayVpcAttachmentCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointCommand.ts index fc2f5e81fef9b..2cd1571c84b5d 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointCommand.ts @@ -179,6 +179,7 @@ export interface ModifyVerifiedAccessEndpointCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVerifiedAccessEndpointCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointPolicyCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointPolicyCommand.ts index 4a24471bc2ccd..ec4bebb1089ff 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointPolicyCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointPolicyCommand.ts @@ -76,6 +76,7 @@ export interface ModifyVerifiedAccessEndpointPolicyCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVerifiedAccessEndpointPolicyCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupCommand.ts index 3ffe6a96e8bd7..f0e703748ea2e 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupCommand.ts @@ -78,6 +78,7 @@ export interface ModifyVerifiedAccessGroupCommandOutput extends ModifyVerifiedAc * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVerifiedAccessGroupCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupPolicyCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupPolicyCommand.ts index 5dc31bba1da20..56970d7220cdc 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupPolicyCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupPolicyCommand.ts @@ -73,6 +73,7 @@ export interface ModifyVerifiedAccessGroupPolicyCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVerifiedAccessGroupPolicyCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceCommand.ts index fa1966f573b25..6e4ae9476deb5 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceCommand.ts @@ -88,6 +88,7 @@ export interface ModifyVerifiedAccessInstanceCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVerifiedAccessInstanceCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.ts index 541a3cb7223b8..57afab4b62424 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.ts @@ -116,6 +116,7 @@ export interface ModifyVerifiedAccessInstanceLoggingConfigurationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVerifiedAccessInstanceLoggingConfigurationCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessTrustProviderCommand.ts index 9b464d373530c..5d2025660a0a5 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessTrustProviderCommand.ts @@ -135,6 +135,7 @@ export interface ModifyVerifiedAccessTrustProviderCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVerifiedAccessTrustProviderCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVolumeAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyVolumeAttributeCommand.ts index 862c0fcb335d0..433fe0c7b657a 100644 --- a/clients/client-ec2/src/commands/ModifyVolumeAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVolumeAttributeCommand.ts @@ -63,22 +63,25 @@ export interface ModifyVolumeAttributeCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To modify a volume attribute * ```javascript * // This example sets the ``autoEnableIo`` attribute of the volume with the ID ``vol-1234567890abcdef0`` to ``true``. If the command succeeds, no output is returned. * const input = { - * "AutoEnableIO": { - * "Value": true + * AutoEnableIO: { + * Value: true * }, - * "DryRun": true, - * "VolumeId": "vol-1234567890abcdef0" + * DryRun: true, + * VolumeId: "vol-1234567890abcdef0" * }; * const command = new ModifyVolumeAttributeCommand(input); - * await client.send(command); - * // example id: to-modify-a-volume-attribute-1472508596749 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class ModifyVolumeAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ModifyVolumeCommand.ts b/clients/client-ec2/src/commands/ModifyVolumeCommand.ts index 64eb8de3be70e..a9a59abb08587 100644 --- a/clients/client-ec2/src/commands/ModifyVolumeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVolumeCommand.ts @@ -90,6 +90,7 @@ export interface ModifyVolumeCommandOutput extends ModifyVolumeResult, __Metadat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVolumeCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVpcAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyVpcAttributeCommand.ts index ee1b2cc420ee4..f880584802382 100644 --- a/clients/client-ec2/src/commands/ModifyVpcAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcAttributeCommand.ts @@ -62,35 +62,40 @@ export interface ModifyVpcAttributeCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To modify the enableDnsSupport attribute * ```javascript * // This example modifies the enableDnsSupport attribute. This attribute indicates whether DNS resolution is enabled for the VPC. If this attribute is true, the Amazon DNS server resolves DNS hostnames for instances in the VPC to their corresponding IP addresses; otherwise, it does not. * const input = { - * "EnableDnsSupport": { - * "Value": false + * EnableDnsSupport: { + * Value: false * }, - * "VpcId": "vpc-a01106c2" + * VpcId: "vpc-a01106c2" * }; * const command = new ModifyVpcAttributeCommand(input); - * await client.send(command); - * // example id: ec2-modify-vpc-attribute-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To modify the enableDnsHostnames attribute * ```javascript * // This example modifies the enableDnsHostnames attribute. This attribute indicates whether instances launched in the VPC get DNS hostnames. If this attribute is true, instances in the VPC get DNS hostnames; otherwise, they do not. * const input = { - * "EnableDnsHostnames": { - * "Value": false + * EnableDnsHostnames: { + * Value: false * }, - * "VpcId": "vpc-a01106c2" + * VpcId: "vpc-a01106c2" * }; * const command = new ModifyVpcAttributeCommand(input); - * await client.send(command); - * // example id: ec2-modify-vpc-attribute-2 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ModifyVpcAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessExclusionCommand.ts b/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessExclusionCommand.ts index 4f4a04aab9fd0..ec9b63ed4873e 100644 --- a/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessExclusionCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessExclusionCommand.ts @@ -80,6 +80,7 @@ export interface ModifyVpcBlockPublicAccessExclusionCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVpcBlockPublicAccessExclusionCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessOptionsCommand.ts index a175f7198943b..aa39bb1c92a28 100644 --- a/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessOptionsCommand.ts @@ -70,6 +70,7 @@ export interface ModifyVpcBlockPublicAccessOptionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVpcBlockPublicAccessOptionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointCommand.ts index b327e8007d5b6..ffc4eab1d14ef 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointCommand.ts @@ -92,6 +92,7 @@ export interface ModifyVpcEndpointCommandOutput extends ModifyVpcEndpointResult, * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVpcEndpointCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointConnectionNotificationCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointConnectionNotificationCommand.ts index 176116716fade..43b061e679a5c 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointConnectionNotificationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointConnectionNotificationCommand.ts @@ -70,6 +70,7 @@ export interface ModifyVpcEndpointConnectionNotificationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVpcEndpointConnectionNotificationCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointServiceConfigurationCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointServiceConfigurationCommand.ts index 831441b7bb843..d0b22bac98cd7 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointServiceConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointServiceConfigurationCommand.ts @@ -88,6 +88,7 @@ export interface ModifyVpcEndpointServiceConfigurationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVpcEndpointServiceConfigurationCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.ts index 2819066f87223..c49a200c61b27 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.ts @@ -66,6 +66,7 @@ export interface ModifyVpcEndpointServicePayerResponsibilityCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVpcEndpointServicePayerResponsibilityCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointServicePermissionsCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointServicePermissionsCommand.ts index dc192a1ccdb46..8b326308a090b 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointServicePermissionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointServicePermissionsCommand.ts @@ -83,6 +83,7 @@ export interface ModifyVpcEndpointServicePermissionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVpcEndpointServicePermissionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVpcPeeringConnectionOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyVpcPeeringConnectionOptionsCommand.ts index 164277ccfc945..4687d3c3c5549 100644 --- a/clients/client-ec2/src/commands/ModifyVpcPeeringConnectionOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcPeeringConnectionOptionsCommand.ts @@ -90,6 +90,7 @@ export interface ModifyVpcPeeringConnectionOptionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVpcPeeringConnectionOptionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVpcTenancyCommand.ts b/clients/client-ec2/src/commands/ModifyVpcTenancyCommand.ts index 5eccc7fef6344..c0fb3ecd08ae6 100644 --- a/clients/client-ec2/src/commands/ModifyVpcTenancyCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcTenancyCommand.ts @@ -64,6 +64,7 @@ export interface ModifyVpcTenancyCommandOutput extends ModifyVpcTenancyResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVpcTenancyCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVpnConnectionCommand.ts b/clients/client-ec2/src/commands/ModifyVpnConnectionCommand.ts index f83183c0e3937..af071c389bba6 100644 --- a/clients/client-ec2/src/commands/ModifyVpnConnectionCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpnConnectionCommand.ts @@ -203,6 +203,7 @@ export interface ModifyVpnConnectionCommandOutput extends ModifyVpnConnectionRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVpnConnectionCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVpnConnectionOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyVpnConnectionOptionsCommand.ts index fe69f36720220..d61df7d1c3896 100644 --- a/clients/client-ec2/src/commands/ModifyVpnConnectionOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpnConnectionOptionsCommand.ts @@ -173,6 +173,7 @@ export interface ModifyVpnConnectionOptionsCommandOutput extends ModifyVpnConnec * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVpnConnectionOptionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVpnTunnelCertificateCommand.ts b/clients/client-ec2/src/commands/ModifyVpnTunnelCertificateCommand.ts index dc499defb05b2..66b1951b396f0 100644 --- a/clients/client-ec2/src/commands/ModifyVpnTunnelCertificateCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpnTunnelCertificateCommand.ts @@ -166,6 +166,7 @@ export interface ModifyVpnTunnelCertificateCommandOutput extends ModifyVpnTunnel * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVpnTunnelCertificateCommand extends $Command diff --git a/clients/client-ec2/src/commands/ModifyVpnTunnelOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyVpnTunnelOptionsCommand.ts index 12bd80deefaa6..17396be8eb8f7 100644 --- a/clients/client-ec2/src/commands/ModifyVpnTunnelOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpnTunnelOptionsCommand.ts @@ -227,6 +227,7 @@ export interface ModifyVpnTunnelOptionsCommandOutput extends ModifyVpnTunnelOpti * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ModifyVpnTunnelOptionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/MonitorInstancesCommand.ts b/clients/client-ec2/src/commands/MonitorInstancesCommand.ts index 74b4068b7f195..8317202651d77 100644 --- a/clients/client-ec2/src/commands/MonitorInstancesCommand.ts +++ b/clients/client-ec2/src/commands/MonitorInstancesCommand.ts @@ -68,6 +68,7 @@ export interface MonitorInstancesCommandOutput extends MonitorInstancesResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class MonitorInstancesCommand extends $Command diff --git a/clients/client-ec2/src/commands/MoveAddressToVpcCommand.ts b/clients/client-ec2/src/commands/MoveAddressToVpcCommand.ts index e7bf78f13d9fc..edc74e1326ac2 100644 --- a/clients/client-ec2/src/commands/MoveAddressToVpcCommand.ts +++ b/clients/client-ec2/src/commands/MoveAddressToVpcCommand.ts @@ -65,23 +65,23 @@ export interface MoveAddressToVpcCommandOutput extends MoveAddressToVpcResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To move an address to EC2-VPC * ```javascript * // This example moves the specified Elastic IP address to the EC2-VPC platform. * const input = { - * "PublicIp": "54.123.4.56" + * PublicIp: "54.123.4.56" * }; * const command = new MoveAddressToVpcCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Status": "MoveInProgress" + * Status: "MoveInProgress" * } * *\/ - * // example id: ec2-move-address-to-vpc-1 * ``` * + * @public */ export class MoveAddressToVpcCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/MoveByoipCidrToIpamCommand.ts b/clients/client-ec2/src/commands/MoveByoipCidrToIpamCommand.ts index e552959c8995e..2ad20f62ed382 100644 --- a/clients/client-ec2/src/commands/MoveByoipCidrToIpamCommand.ts +++ b/clients/client-ec2/src/commands/MoveByoipCidrToIpamCommand.ts @@ -73,6 +73,7 @@ export interface MoveByoipCidrToIpamCommandOutput extends MoveByoipCidrToIpamRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class MoveByoipCidrToIpamCommand extends $Command diff --git a/clients/client-ec2/src/commands/MoveCapacityReservationInstancesCommand.ts b/clients/client-ec2/src/commands/MoveCapacityReservationInstancesCommand.ts index 5e559cce16893..0d84d028cba0b 100644 --- a/clients/client-ec2/src/commands/MoveCapacityReservationInstancesCommand.ts +++ b/clients/client-ec2/src/commands/MoveCapacityReservationInstancesCommand.ts @@ -171,6 +171,7 @@ export interface MoveCapacityReservationInstancesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class MoveCapacityReservationInstancesCommand extends $Command diff --git a/clients/client-ec2/src/commands/ProvisionByoipCidrCommand.ts b/clients/client-ec2/src/commands/ProvisionByoipCidrCommand.ts index 760eb00259119..1e333b118f3be 100644 --- a/clients/client-ec2/src/commands/ProvisionByoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/ProvisionByoipCidrCommand.ts @@ -100,6 +100,7 @@ export interface ProvisionByoipCidrCommandOutput extends ProvisionByoipCidrResul * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ProvisionByoipCidrCommand extends $Command diff --git a/clients/client-ec2/src/commands/ProvisionIpamByoasnCommand.ts b/clients/client-ec2/src/commands/ProvisionIpamByoasnCommand.ts index bfa56a909be73..968c468e3eb8f 100644 --- a/clients/client-ec2/src/commands/ProvisionIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/ProvisionIpamByoasnCommand.ts @@ -66,6 +66,7 @@ export interface ProvisionIpamByoasnCommandOutput extends ProvisionIpamByoasnRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ProvisionIpamByoasnCommand extends $Command diff --git a/clients/client-ec2/src/commands/ProvisionIpamPoolCidrCommand.ts b/clients/client-ec2/src/commands/ProvisionIpamPoolCidrCommand.ts index 6b24aaf3f09ae..71a62ee364417 100644 --- a/clients/client-ec2/src/commands/ProvisionIpamPoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/ProvisionIpamPoolCidrCommand.ts @@ -76,6 +76,7 @@ export interface ProvisionIpamPoolCidrCommandOutput extends ProvisionIpamPoolCid * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ProvisionIpamPoolCidrCommand extends $Command diff --git a/clients/client-ec2/src/commands/ProvisionPublicIpv4PoolCidrCommand.ts b/clients/client-ec2/src/commands/ProvisionPublicIpv4PoolCidrCommand.ts index c7d787c4a4bc9..3b5ff6e3e46a9 100644 --- a/clients/client-ec2/src/commands/ProvisionPublicIpv4PoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/ProvisionPublicIpv4PoolCidrCommand.ts @@ -66,6 +66,7 @@ export interface ProvisionPublicIpv4PoolCidrCommandOutput extends ProvisionPubli * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ProvisionPublicIpv4PoolCidrCommand extends $Command diff --git a/clients/client-ec2/src/commands/PurchaseCapacityBlockCommand.ts b/clients/client-ec2/src/commands/PurchaseCapacityBlockCommand.ts index 5d7d2653fee38..5b077b8a18fec 100644 --- a/clients/client-ec2/src/commands/PurchaseCapacityBlockCommand.ts +++ b/clients/client-ec2/src/commands/PurchaseCapacityBlockCommand.ts @@ -111,6 +111,7 @@ export interface PurchaseCapacityBlockCommandOutput extends PurchaseCapacityBloc * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class PurchaseCapacityBlockCommand extends $Command diff --git a/clients/client-ec2/src/commands/PurchaseCapacityBlockExtensionCommand.ts b/clients/client-ec2/src/commands/PurchaseCapacityBlockExtensionCommand.ts index 49d5a6e263938..c7c2851640a16 100644 --- a/clients/client-ec2/src/commands/PurchaseCapacityBlockExtensionCommand.ts +++ b/clients/client-ec2/src/commands/PurchaseCapacityBlockExtensionCommand.ts @@ -79,6 +79,7 @@ export interface PurchaseCapacityBlockExtensionCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class PurchaseCapacityBlockExtensionCommand extends $Command diff --git a/clients/client-ec2/src/commands/PurchaseHostReservationCommand.ts b/clients/client-ec2/src/commands/PurchaseHostReservationCommand.ts index af475483b756f..75c7a08c5a3cf 100644 --- a/clients/client-ec2/src/commands/PurchaseHostReservationCommand.ts +++ b/clients/client-ec2/src/commands/PurchaseHostReservationCommand.ts @@ -92,6 +92,7 @@ export interface PurchaseHostReservationCommandOutput extends PurchaseHostReserv * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class PurchaseHostReservationCommand extends $Command diff --git a/clients/client-ec2/src/commands/PurchaseReservedInstancesOfferingCommand.ts b/clients/client-ec2/src/commands/PurchaseReservedInstancesOfferingCommand.ts index 09734c6c04b0b..4b4db5c2ec755 100644 --- a/clients/client-ec2/src/commands/PurchaseReservedInstancesOfferingCommand.ts +++ b/clients/client-ec2/src/commands/PurchaseReservedInstancesOfferingCommand.ts @@ -76,6 +76,7 @@ export interface PurchaseReservedInstancesOfferingCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class PurchaseReservedInstancesOfferingCommand extends $Command diff --git a/clients/client-ec2/src/commands/PurchaseScheduledInstancesCommand.ts b/clients/client-ec2/src/commands/PurchaseScheduledInstancesCommand.ts index 851fe8233a295..ffecac8fe4738 100644 --- a/clients/client-ec2/src/commands/PurchaseScheduledInstancesCommand.ts +++ b/clients/client-ec2/src/commands/PurchaseScheduledInstancesCommand.ts @@ -96,6 +96,7 @@ export interface PurchaseScheduledInstancesCommandOutput extends PurchaseSchedul * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class PurchaseScheduledInstancesCommand extends $Command diff --git a/clients/client-ec2/src/commands/RebootInstancesCommand.ts b/clients/client-ec2/src/commands/RebootInstancesCommand.ts index ffe26da0ce1ce..c92cf47dd4a98 100644 --- a/clients/client-ec2/src/commands/RebootInstancesCommand.ts +++ b/clients/client-ec2/src/commands/RebootInstancesCommand.ts @@ -63,20 +63,23 @@ export interface RebootInstancesCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To reboot an EC2 instance * ```javascript * // This example reboots the specified EC2 instance. * const input = { - * "InstanceIds": [ + * InstanceIds: [ * "i-1234567890abcdef5" * ] * }; * const command = new RebootInstancesCommand(input); - * await client.send(command); - * // example id: to-reboot-an-ec2-instance-1529358566382 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class RebootInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/RegisterImageCommand.ts b/clients/client-ec2/src/commands/RegisterImageCommand.ts index 48a56b068f9ed..d6a683b03084c 100644 --- a/clients/client-ec2/src/commands/RegisterImageCommand.ts +++ b/clients/client-ec2/src/commands/RegisterImageCommand.ts @@ -143,6 +143,7 @@ export interface RegisterImageCommandOutput extends RegisterImageResult, __Metad * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RegisterImageCommand extends $Command diff --git a/clients/client-ec2/src/commands/RegisterInstanceEventNotificationAttributesCommand.ts b/clients/client-ec2/src/commands/RegisterInstanceEventNotificationAttributesCommand.ts index c0e1a949f84f9..c72a158e8ebe0 100644 --- a/clients/client-ec2/src/commands/RegisterInstanceEventNotificationAttributesCommand.ts +++ b/clients/client-ec2/src/commands/RegisterInstanceEventNotificationAttributesCommand.ts @@ -78,6 +78,7 @@ export interface RegisterInstanceEventNotificationAttributesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RegisterInstanceEventNotificationAttributesCommand extends $Command diff --git a/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupMembersCommand.ts b/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupMembersCommand.ts index fd259e898f1bd..abbf063f8f55e 100644 --- a/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupMembersCommand.ts +++ b/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupMembersCommand.ts @@ -80,6 +80,7 @@ export interface RegisterTransitGatewayMulticastGroupMembersCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RegisterTransitGatewayMulticastGroupMembersCommand extends $Command diff --git a/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.ts b/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.ts index bf9cd7d19a93b..b3f968af1ae51 100644 --- a/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.ts +++ b/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.ts @@ -80,6 +80,7 @@ export interface RegisterTransitGatewayMulticastGroupSourcesCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RegisterTransitGatewayMulticastGroupSourcesCommand extends $Command diff --git a/clients/client-ec2/src/commands/RejectCapacityReservationBillingOwnershipCommand.ts b/clients/client-ec2/src/commands/RejectCapacityReservationBillingOwnershipCommand.ts index 1c601b82f984f..79903b980f533 100644 --- a/clients/client-ec2/src/commands/RejectCapacityReservationBillingOwnershipCommand.ts +++ b/clients/client-ec2/src/commands/RejectCapacityReservationBillingOwnershipCommand.ts @@ -67,6 +67,7 @@ export interface RejectCapacityReservationBillingOwnershipCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RejectCapacityReservationBillingOwnershipCommand extends $Command diff --git a/clients/client-ec2/src/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.ts b/clients/client-ec2/src/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.ts index d4d1aae62a8f6..da7556938d4f0 100644 --- a/clients/client-ec2/src/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.ts @@ -81,6 +81,7 @@ export interface RejectTransitGatewayMulticastDomainAssociationsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RejectTransitGatewayMulticastDomainAssociationsCommand extends $Command diff --git a/clients/client-ec2/src/commands/RejectTransitGatewayPeeringAttachmentCommand.ts b/clients/client-ec2/src/commands/RejectTransitGatewayPeeringAttachmentCommand.ts index aa997f1f53f9a..272a2a204b2f5 100644 --- a/clients/client-ec2/src/commands/RejectTransitGatewayPeeringAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/RejectTransitGatewayPeeringAttachmentCommand.ts @@ -95,6 +95,7 @@ export interface RejectTransitGatewayPeeringAttachmentCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RejectTransitGatewayPeeringAttachmentCommand extends $Command diff --git a/clients/client-ec2/src/commands/RejectTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/RejectTransitGatewayVpcAttachmentCommand.ts index 0f348cf92acc5..de30097e56e3d 100644 --- a/clients/client-ec2/src/commands/RejectTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/RejectTransitGatewayVpcAttachmentCommand.ts @@ -86,6 +86,7 @@ export interface RejectTransitGatewayVpcAttachmentCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RejectTransitGatewayVpcAttachmentCommand extends $Command diff --git a/clients/client-ec2/src/commands/RejectVpcEndpointConnectionsCommand.ts b/clients/client-ec2/src/commands/RejectVpcEndpointConnectionsCommand.ts index 0ea0bb21cbf2e..254a926ce0ad5 100644 --- a/clients/client-ec2/src/commands/RejectVpcEndpointConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/RejectVpcEndpointConnectionsCommand.ts @@ -69,6 +69,7 @@ export interface RejectVpcEndpointConnectionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RejectVpcEndpointConnectionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/RejectVpcPeeringConnectionCommand.ts b/clients/client-ec2/src/commands/RejectVpcPeeringConnectionCommand.ts index 5bf37d41cb5f1..54bb27a09f9e0 100644 --- a/clients/client-ec2/src/commands/RejectVpcPeeringConnectionCommand.ts +++ b/clients/client-ec2/src/commands/RejectVpcPeeringConnectionCommand.ts @@ -59,6 +59,7 @@ export interface RejectVpcPeeringConnectionCommandOutput extends RejectVpcPeerin * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RejectVpcPeeringConnectionCommand extends $Command diff --git a/clients/client-ec2/src/commands/ReleaseAddressCommand.ts b/clients/client-ec2/src/commands/ReleaseAddressCommand.ts index 0f9699a9d70a9..451e763436434 100644 --- a/clients/client-ec2/src/commands/ReleaseAddressCommand.ts +++ b/clients/client-ec2/src/commands/ReleaseAddressCommand.ts @@ -67,18 +67,21 @@ export interface ReleaseAddressCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To release an Elastic IP address * ```javascript * // This example releases the specified Elastic IP address. * const input = { - * "AllocationId": "eipalloc-64d5890a" + * AllocationId: "eipalloc-64d5890a" * }; * const command = new ReleaseAddressCommand(input); - * await client.send(command); - * // example id: ec2-release-address-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ReleaseAddressCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ReleaseHostsCommand.ts b/clients/client-ec2/src/commands/ReleaseHostsCommand.ts index 1cdf28ea9429b..16b2e5a646df1 100644 --- a/clients/client-ec2/src/commands/ReleaseHostsCommand.ts +++ b/clients/client-ec2/src/commands/ReleaseHostsCommand.ts @@ -76,6 +76,7 @@ export interface ReleaseHostsCommandOutput extends ReleaseHostsResult, __Metadat * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ReleaseHostsCommand extends $Command diff --git a/clients/client-ec2/src/commands/ReleaseIpamPoolAllocationCommand.ts b/clients/client-ec2/src/commands/ReleaseIpamPoolAllocationCommand.ts index a1df7fb83db2f..b07351acf7f83 100644 --- a/clients/client-ec2/src/commands/ReleaseIpamPoolAllocationCommand.ts +++ b/clients/client-ec2/src/commands/ReleaseIpamPoolAllocationCommand.ts @@ -62,6 +62,7 @@ export interface ReleaseIpamPoolAllocationCommandOutput extends ReleaseIpamPoolA * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ReleaseIpamPoolAllocationCommand extends $Command diff --git a/clients/client-ec2/src/commands/ReplaceIamInstanceProfileAssociationCommand.ts b/clients/client-ec2/src/commands/ReplaceIamInstanceProfileAssociationCommand.ts index c5793136c762f..65c6948d0cfac 100644 --- a/clients/client-ec2/src/commands/ReplaceIamInstanceProfileAssociationCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceIamInstanceProfileAssociationCommand.ts @@ -80,6 +80,7 @@ export interface ReplaceIamInstanceProfileAssociationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ReplaceIamInstanceProfileAssociationCommand extends $Command diff --git a/clients/client-ec2/src/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.ts b/clients/client-ec2/src/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.ts index 817ce371b8154..1e0ebea4d5f08 100644 --- a/clients/client-ec2/src/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.ts @@ -79,6 +79,7 @@ export interface ReplaceImageCriteriaInAllowedImagesSettingsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ReplaceImageCriteriaInAllowedImagesSettingsCommand extends $Command diff --git a/clients/client-ec2/src/commands/ReplaceNetworkAclAssociationCommand.ts b/clients/client-ec2/src/commands/ReplaceNetworkAclAssociationCommand.ts index 53725d8c55f93..49d518442ea4e 100644 --- a/clients/client-ec2/src/commands/ReplaceNetworkAclAssociationCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceNetworkAclAssociationCommand.ts @@ -62,24 +62,24 @@ export interface ReplaceNetworkAclAssociationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To replace the network ACL associated with a subnet * ```javascript * // This example associates the specified network ACL with the subnet for the specified network ACL association. * const input = { - * "AssociationId": "aclassoc-e5b95c8c", - * "NetworkAclId": "acl-5fb85d36" + * AssociationId: "aclassoc-e5b95c8c", + * NetworkAclId: "acl-5fb85d36" * }; * const command = new ReplaceNetworkAclAssociationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NewAssociationId": "aclassoc-3999875b" + * NewAssociationId: "aclassoc-3999875b" * } * *\/ - * // example id: ec2-replace-network-acl-association-1 * ``` * + * @public */ export class ReplaceNetworkAclAssociationCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ReplaceNetworkAclEntryCommand.ts b/clients/client-ec2/src/commands/ReplaceNetworkAclEntryCommand.ts index 13235d787791a..b827f0565a936 100644 --- a/clients/client-ec2/src/commands/ReplaceNetworkAclEntryCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceNetworkAclEntryCommand.ts @@ -69,27 +69,30 @@ export interface ReplaceNetworkAclEntryCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To replace a network ACL entry * ```javascript * // This example replaces an entry for the specified network ACL. The new rule 100 allows ingress traffic from 203.0.113.12/24 on UDP port 53 (DNS) into any associated subnet. * const input = { - * "CidrBlock": "203.0.113.12/24", - * "Egress": false, - * "NetworkAclId": "acl-5fb85d36", - * "PortRange": { - * "From": 53, - * "To": 53 + * CidrBlock: "203.0.113.12/24", + * Egress: false, + * NetworkAclId: "acl-5fb85d36", + * PortRange: { + * From: 53, + * To: 53 * }, - * "Protocol": "17", - * "RuleAction": "allow", - * "RuleNumber": 100 + * Protocol: "17", + * RuleAction: "allow", + * RuleNumber: 100 * }; * const command = new ReplaceNetworkAclEntryCommand(input); - * await client.send(command); - * // example id: ec2-replace-network-acl-entry-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ReplaceNetworkAclEntryCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ReplaceRouteCommand.ts b/clients/client-ec2/src/commands/ReplaceRouteCommand.ts index 39daee31d371d..b0512d1451e4b 100644 --- a/clients/client-ec2/src/commands/ReplaceRouteCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceRouteCommand.ts @@ -74,20 +74,23 @@ export interface ReplaceRouteCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To replace a route * ```javascript * // This example replaces the specified route in the specified table table. The new route matches the specified CIDR and sends the traffic to the specified virtual private gateway. * const input = { - * "DestinationCidrBlock": "10.0.0.0/16", - * "GatewayId": "vgw-9a4cacf3", - * "RouteTableId": "rtb-22574640" + * DestinationCidrBlock: "10.0.0.0/16", + * GatewayId: "vgw-9a4cacf3", + * RouteTableId: "rtb-22574640" * }; * const command = new ReplaceRouteCommand(input); - * await client.send(command); - * // example id: ec2-replace-route-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ReplaceRouteCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ReplaceRouteTableAssociationCommand.ts b/clients/client-ec2/src/commands/ReplaceRouteTableAssociationCommand.ts index 258672c8a452b..5dedc9136130b 100644 --- a/clients/client-ec2/src/commands/ReplaceRouteTableAssociationCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceRouteTableAssociationCommand.ts @@ -67,24 +67,24 @@ export interface ReplaceRouteTableAssociationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To replace the route table associated with a subnet * ```javascript * // This example associates the specified route table with the subnet for the specified route table association. * const input = { - * "AssociationId": "rtbassoc-781d0d1a", - * "RouteTableId": "rtb-22574640" + * AssociationId: "rtbassoc-781d0d1a", + * RouteTableId: "rtb-22574640" * }; * const command = new ReplaceRouteTableAssociationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NewAssociationId": "rtbassoc-3a1f0f58" + * NewAssociationId: "rtbassoc-3a1f0f58" * } * *\/ - * // example id: ec2-replace-route-table-association-1 * ``` * + * @public */ export class ReplaceRouteTableAssociationCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ReplaceTransitGatewayRouteCommand.ts b/clients/client-ec2/src/commands/ReplaceTransitGatewayRouteCommand.ts index 3e3499292f672..f11b55e6c5832 100644 --- a/clients/client-ec2/src/commands/ReplaceTransitGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceTransitGatewayRouteCommand.ts @@ -72,6 +72,7 @@ export interface ReplaceTransitGatewayRouteCommandOutput extends ReplaceTransitG * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ReplaceTransitGatewayRouteCommand extends $Command diff --git a/clients/client-ec2/src/commands/ReplaceVpnTunnelCommand.ts b/clients/client-ec2/src/commands/ReplaceVpnTunnelCommand.ts index 1c5a4f2afb85e..10f7de2f7e201 100644 --- a/clients/client-ec2/src/commands/ReplaceVpnTunnelCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceVpnTunnelCommand.ts @@ -58,6 +58,7 @@ export interface ReplaceVpnTunnelCommandOutput extends ReplaceVpnTunnelResult, _ * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ReplaceVpnTunnelCommand extends $Command diff --git a/clients/client-ec2/src/commands/ReportInstanceStatusCommand.ts b/clients/client-ec2/src/commands/ReportInstanceStatusCommand.ts index ee71d4b090d88..a68220a2f6fb3 100644 --- a/clients/client-ec2/src/commands/ReportInstanceStatusCommand.ts +++ b/clients/client-ec2/src/commands/ReportInstanceStatusCommand.ts @@ -67,6 +67,7 @@ export interface ReportInstanceStatusCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ReportInstanceStatusCommand extends $Command diff --git a/clients/client-ec2/src/commands/RequestSpotFleetCommand.ts b/clients/client-ec2/src/commands/RequestSpotFleetCommand.ts index dacc5c4531140..186ffb6f81c07 100644 --- a/clients/client-ec2/src/commands/RequestSpotFleetCommand.ts +++ b/clients/client-ec2/src/commands/RequestSpotFleetCommand.ts @@ -433,159 +433,156 @@ export interface RequestSpotFleetCommandOutput extends RequestSpotFleetResponse, * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To request a Spot fleet in the subnet with the lowest price * ```javascript * // This example creates a Spot fleet request with two launch specifications that differ only by subnet. The Spot fleet launches the instances in the specified subnet with the lowest price. If the instances are launched in a default VPC, they receive a public IP address by default. If the instances are launched in a nondefault VPC, they do not receive a public IP address by default. Note that you can't specify different subnets from the same Availability Zone in a Spot fleet request. * const input = { - * "SpotFleetRequestConfig": { - * "IamFleetRole": "arn:aws:iam::123456789012:role/my-spot-fleet-role", - * "LaunchSpecifications": [ + * SpotFleetRequestConfig: { + * IamFleetRole: "arn:aws:iam::123456789012:role/my-spot-fleet-role", + * LaunchSpecifications: [ * { - * "IamInstanceProfile": { - * "Arn": "arn:aws:iam::123456789012:instance-profile/my-iam-role" + * IamInstanceProfile: { + * Arn: "arn:aws:iam::123456789012:instance-profile/my-iam-role" * }, - * "ImageId": "ami-1a2b3c4d", - * "InstanceType": "m3.medium", - * "KeyName": "my-key-pair", - * "SecurityGroups": [ + * ImageId: "ami-1a2b3c4d", + * InstanceType: "m3.medium", + * KeyName: "my-key-pair", + * SecurityGroups: [ * { - * "GroupId": "sg-1a2b3c4d" + * GroupId: "sg-1a2b3c4d" * } * ], - * "SubnetId": "subnet-1a2b3c4d, subnet-3c4d5e6f" + * SubnetId: "subnet-1a2b3c4d, subnet-3c4d5e6f" * } * ], - * "SpotPrice": "0.04", - * "TargetCapacity": 2 + * SpotPrice: "0.04", + * TargetCapacity: 2 * } * }; * const command = new RequestSpotFleetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" + * SpotFleetRequestId: "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" * } * *\/ - * // example id: ec2-request-spot-fleet-1 * ``` * * @example To request a Spot fleet in the Availability Zone with the lowest price * ```javascript * // This example creates a Spot fleet request with two launch specifications that differ only by Availability Zone. The Spot fleet launches the instances in the specified Availability Zone with the lowest price. If your account supports EC2-VPC only, Amazon EC2 launches the Spot instances in the default subnet of the Availability Zone. * const input = { - * "SpotFleetRequestConfig": { - * "IamFleetRole": "arn:aws:iam::123456789012:role/my-spot-fleet-role", - * "LaunchSpecifications": [ + * SpotFleetRequestConfig: { + * IamFleetRole: "arn:aws:iam::123456789012:role/my-spot-fleet-role", + * LaunchSpecifications: [ * { - * "IamInstanceProfile": { - * "Arn": "arn:aws:iam::123456789012:instance-profile/my-iam-role" + * IamInstanceProfile: { + * Arn: "arn:aws:iam::123456789012:instance-profile/my-iam-role" * }, - * "ImageId": "ami-1a2b3c4d", - * "InstanceType": "m3.medium", - * "KeyName": "my-key-pair", - * "Placement": { - * "AvailabilityZone": "us-west-2a, us-west-2b" + * ImageId: "ami-1a2b3c4d", + * InstanceType: "m3.medium", + * KeyName: "my-key-pair", + * Placement: { + * AvailabilityZone: "us-west-2a, us-west-2b" * }, - * "SecurityGroups": [ + * SecurityGroups: [ * { - * "GroupId": "sg-1a2b3c4d" + * GroupId: "sg-1a2b3c4d" * } * ] * } * ], - * "SpotPrice": "0.04", - * "TargetCapacity": 2 + * SpotPrice: "0.04", + * TargetCapacity: 2 * } * }; * const command = new RequestSpotFleetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" + * SpotFleetRequestId: "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" * } * *\/ - * // example id: ec2-request-spot-fleet-2 * ``` * * @example To launch Spot instances in a subnet and assign them public IP addresses * ```javascript * // This example assigns public addresses to instances launched in a nondefault VPC. Note that when you specify a network interface, you must include the subnet ID and security group ID using the network interface. * const input = { - * "SpotFleetRequestConfig": { - * "IamFleetRole": "arn:aws:iam::123456789012:role/my-spot-fleet-role", - * "LaunchSpecifications": [ + * SpotFleetRequestConfig: { + * IamFleetRole: "arn:aws:iam::123456789012:role/my-spot-fleet-role", + * LaunchSpecifications: [ * { - * "IamInstanceProfile": { - * "Arn": "arn:aws:iam::880185128111:instance-profile/my-iam-role" + * IamInstanceProfile: { + * Arn: "arn:aws:iam::880185128111:instance-profile/my-iam-role" * }, - * "ImageId": "ami-1a2b3c4d", - * "InstanceType": "m3.medium", - * "KeyName": "my-key-pair", - * "NetworkInterfaces": [ + * ImageId: "ami-1a2b3c4d", + * InstanceType: "m3.medium", + * KeyName: "my-key-pair", + * NetworkInterfaces: [ * { - * "AssociatePublicIpAddress": true, - * "DeviceIndex": 0, - * "Groups": [ + * AssociatePublicIpAddress: true, + * DeviceIndex: 0, + * Groups: [ * "sg-1a2b3c4d" * ], - * "SubnetId": "subnet-1a2b3c4d" + * SubnetId: "subnet-1a2b3c4d" * } * ] * } * ], - * "SpotPrice": "0.04", - * "TargetCapacity": 2 + * SpotPrice: "0.04", + * TargetCapacity: 2 * } * }; * const command = new RequestSpotFleetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" + * SpotFleetRequestId: "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" * } * *\/ - * // example id: ec2-request-spot-fleet-3 * ``` * * @example To request a Spot fleet using the diversified allocation strategy * ```javascript * // This example creates a Spot fleet request that launches 30 instances using the diversified allocation strategy. The launch specifications differ by instance type. The Spot fleet distributes the instances across the launch specifications such that there are 10 instances of each type. * const input = { - * "SpotFleetRequestConfig": { - * "AllocationStrategy": "diversified", - * "IamFleetRole": "arn:aws:iam::123456789012:role/my-spot-fleet-role", - * "LaunchSpecifications": [ + * SpotFleetRequestConfig: { + * AllocationStrategy: "diversified", + * IamFleetRole: "arn:aws:iam::123456789012:role/my-spot-fleet-role", + * LaunchSpecifications: [ * { - * "ImageId": "ami-1a2b3c4d", - * "InstanceType": "c4.2xlarge", - * "SubnetId": "subnet-1a2b3c4d" + * ImageId: "ami-1a2b3c4d", + * InstanceType: "c4.2xlarge", + * SubnetId: "subnet-1a2b3c4d" * }, * { - * "ImageId": "ami-1a2b3c4d", - * "InstanceType": "m3.2xlarge", - * "SubnetId": "subnet-1a2b3c4d" + * ImageId: "ami-1a2b3c4d", + * InstanceType: "m3.2xlarge", + * SubnetId: "subnet-1a2b3c4d" * }, * { - * "ImageId": "ami-1a2b3c4d", - * "InstanceType": "r3.2xlarge", - * "SubnetId": "subnet-1a2b3c4d" + * ImageId: "ami-1a2b3c4d", + * InstanceType: "r3.2xlarge", + * SubnetId: "subnet-1a2b3c4d" * } * ], - * "SpotPrice": "0.70", - * "TargetCapacity": 30 + * SpotPrice: "0.70", + * TargetCapacity: 30 * } * }; * const command = new RequestSpotFleetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" + * SpotFleetRequestId: "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE" * } * *\/ - * // example id: ec2-request-spot-fleet-4 * ``` * + * @public */ export class RequestSpotFleetCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/RequestSpotInstancesCommand.ts b/clients/client-ec2/src/commands/RequestSpotInstancesCommand.ts index c0e646fe75622..5779e69c24981 100644 --- a/clients/client-ec2/src/commands/RequestSpotInstancesCommand.ts +++ b/clients/client-ec2/src/commands/RequestSpotInstancesCommand.ts @@ -327,58 +327,63 @@ export interface RequestSpotInstancesCommandOutput extends RequestSpotInstancesR * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To create a one-time Spot Instance request * ```javascript * // This example creates a one-time Spot Instance request for five instances in the specified Availability Zone. If your account supports EC2-VPC only, Amazon EC2 launches the instances in the default subnet of the specified Availability Zone. * const input = { - * "InstanceCount": 5, - * "LaunchSpecification": { - * "IamInstanceProfile": { - * "Arn": "arn:aws:iam::123456789012:instance-profile/my-iam-role" + * InstanceCount: 5, + * LaunchSpecification: { + * IamInstanceProfile: { + * Arn: "arn:aws:iam::123456789012:instance-profile/my-iam-role" * }, - * "ImageId": "ami-1a2b3c4d", - * "InstanceType": "m3.medium", - * "KeyName": "my-key-pair", - * "Placement": { - * "AvailabilityZone": "us-west-2a" + * ImageId: "ami-1a2b3c4d", + * InstanceType: "m3.medium", + * KeyName: "my-key-pair", + * Placement: { + * AvailabilityZone: "us-west-2a" * }, - * "SecurityGroupIds": [ + * SecurityGroupIds: [ * "sg-1a2b3c4d" * ] * }, - * "SpotPrice": "0.03", - * "Type": "one-time" + * SpotPrice: "0.03", + * Type: "one-time" * }; * const command = new RequestSpotInstancesCommand(input); - * await client.send(command); - * // example id: ec2-request-spot-instances-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To create a one-time Spot Instance request * ```javascript * // This example command creates a one-time Spot Instance request for five instances in the specified subnet. Amazon EC2 launches the instances in the specified subnet. If the VPC is a nondefault VPC, the instances do not receive a public IP address by default. * const input = { - * "InstanceCount": 5, - * "LaunchSpecification": { - * "IamInstanceProfile": { - * "Arn": "arn:aws:iam::123456789012:instance-profile/my-iam-role" + * InstanceCount: 5, + * LaunchSpecification: { + * IamInstanceProfile: { + * Arn: "arn:aws:iam::123456789012:instance-profile/my-iam-role" * }, - * "ImageId": "ami-1a2b3c4d", - * "InstanceType": "m3.medium", - * "SecurityGroupIds": [ + * ImageId: "ami-1a2b3c4d", + * InstanceType: "m3.medium", + * SecurityGroupIds: [ * "sg-1a2b3c4d" * ], - * "SubnetId": "subnet-1a2b3c4d" + * SubnetId: "subnet-1a2b3c4d" * }, - * "SpotPrice": "0.050", - * "Type": "one-time" + * SpotPrice: "0.050", + * Type: "one-time" * }; * const command = new RequestSpotInstancesCommand(input); - * await client.send(command); - * // example id: ec2-request-spot-instances-2 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RequestSpotInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ResetAddressAttributeCommand.ts b/clients/client-ec2/src/commands/ResetAddressAttributeCommand.ts index d930065f04735..2b96ab4b01df8 100644 --- a/clients/client-ec2/src/commands/ResetAddressAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetAddressAttributeCommand.ts @@ -66,6 +66,7 @@ export interface ResetAddressAttributeCommandOutput extends ResetAddressAttribut * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ResetAddressAttributeCommand extends $Command diff --git a/clients/client-ec2/src/commands/ResetEbsDefaultKmsKeyIdCommand.ts b/clients/client-ec2/src/commands/ResetEbsDefaultKmsKeyIdCommand.ts index 049448708e95e..ee64c43e9e82d 100644 --- a/clients/client-ec2/src/commands/ResetEbsDefaultKmsKeyIdCommand.ts +++ b/clients/client-ec2/src/commands/ResetEbsDefaultKmsKeyIdCommand.ts @@ -60,6 +60,7 @@ export interface ResetEbsDefaultKmsKeyIdCommandOutput extends ResetEbsDefaultKms * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ResetEbsDefaultKmsKeyIdCommand extends $Command diff --git a/clients/client-ec2/src/commands/ResetFpgaImageAttributeCommand.ts b/clients/client-ec2/src/commands/ResetFpgaImageAttributeCommand.ts index 547b254dab072..26e7012fe602a 100644 --- a/clients/client-ec2/src/commands/ResetFpgaImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetFpgaImageAttributeCommand.ts @@ -58,6 +58,7 @@ export interface ResetFpgaImageAttributeCommandOutput extends ResetFpgaImageAttr * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ResetFpgaImageAttributeCommand extends $Command diff --git a/clients/client-ec2/src/commands/ResetImageAttributeCommand.ts b/clients/client-ec2/src/commands/ResetImageAttributeCommand.ts index 67c77cb3f2425..63344c4d2746b 100644 --- a/clients/client-ec2/src/commands/ResetImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetImageAttributeCommand.ts @@ -55,19 +55,22 @@ export interface ResetImageAttributeCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To reset the launchPermission attribute * ```javascript * // This example resets the launchPermission attribute for the specified AMI. By default, AMIs are private. * const input = { - * "Attribute": "launchPermission", - * "ImageId": "ami-5731123e" + * Attribute: "launchPermission", + * ImageId: "ami-5731123e" * }; * const command = new ResetImageAttributeCommand(input); - * await client.send(command); - * // example id: to-reset-the-launchpermission-attribute-1529359519534 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class ResetImageAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ResetInstanceAttributeCommand.ts b/clients/client-ec2/src/commands/ResetInstanceAttributeCommand.ts index af6209da2bcb2..506093577d59d 100644 --- a/clients/client-ec2/src/commands/ResetInstanceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetInstanceAttributeCommand.ts @@ -63,19 +63,22 @@ export interface ResetInstanceAttributeCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To reset the sourceDestCheck attribute * ```javascript * // This example resets the sourceDestCheck attribute for the specified instance. * const input = { - * "Attribute": "sourceDestCheck", - * "InstanceId": "i-1234567890abcdef0" + * Attribute: "sourceDestCheck", + * InstanceId: "i-1234567890abcdef0" * }; * const command = new ResetInstanceAttributeCommand(input); - * await client.send(command); - * // example id: to-reset-the-sourcedestcheck-attribute-1529359630708 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class ResetInstanceAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/ResetNetworkInterfaceAttributeCommand.ts b/clients/client-ec2/src/commands/ResetNetworkInterfaceAttributeCommand.ts index c6e5f4def0612..9a4147ab853e7 100644 --- a/clients/client-ec2/src/commands/ResetNetworkInterfaceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetNetworkInterfaceAttributeCommand.ts @@ -58,6 +58,7 @@ export interface ResetNetworkInterfaceAttributeCommandOutput extends __MetadataB * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class ResetNetworkInterfaceAttributeCommand extends $Command diff --git a/clients/client-ec2/src/commands/ResetSnapshotAttributeCommand.ts b/clients/client-ec2/src/commands/ResetSnapshotAttributeCommand.ts index 900d8cb6497c1..7f6eaae57d18e 100644 --- a/clients/client-ec2/src/commands/ResetSnapshotAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetSnapshotAttributeCommand.ts @@ -57,19 +57,22 @@ export interface ResetSnapshotAttributeCommandOutput extends __MetadataBearer {} * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To reset a snapshot attribute * ```javascript * // This example resets the create volume permissions for snapshot ``snap-1234567890abcdef0``. If the command succeeds, no output is returned. * const input = { - * "Attribute": "createVolumePermission", - * "SnapshotId": "snap-1234567890abcdef0" + * Attribute: "createVolumePermission", + * SnapshotId: "snap-1234567890abcdef0" * }; * const command = new ResetSnapshotAttributeCommand(input); - * await client.send(command); - * // example id: to-reset-a-snapshot-attribute-1472508825735 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class ResetSnapshotAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/RestoreAddressToClassicCommand.ts b/clients/client-ec2/src/commands/RestoreAddressToClassicCommand.ts index e37e28e5f0b6c..eb028af5b656e 100644 --- a/clients/client-ec2/src/commands/RestoreAddressToClassicCommand.ts +++ b/clients/client-ec2/src/commands/RestoreAddressToClassicCommand.ts @@ -60,6 +60,7 @@ export interface RestoreAddressToClassicCommandOutput extends RestoreAddressToCl * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RestoreAddressToClassicCommand extends $Command diff --git a/clients/client-ec2/src/commands/RestoreImageFromRecycleBinCommand.ts b/clients/client-ec2/src/commands/RestoreImageFromRecycleBinCommand.ts index 92c238eff7dc8..419de4fe19043 100644 --- a/clients/client-ec2/src/commands/RestoreImageFromRecycleBinCommand.ts +++ b/clients/client-ec2/src/commands/RestoreImageFromRecycleBinCommand.ts @@ -57,6 +57,7 @@ export interface RestoreImageFromRecycleBinCommandOutput extends RestoreImageFro * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RestoreImageFromRecycleBinCommand extends $Command diff --git a/clients/client-ec2/src/commands/RestoreManagedPrefixListVersionCommand.ts b/clients/client-ec2/src/commands/RestoreManagedPrefixListVersionCommand.ts index 900cb4170c8c6..0e820e6547c98 100644 --- a/clients/client-ec2/src/commands/RestoreManagedPrefixListVersionCommand.ts +++ b/clients/client-ec2/src/commands/RestoreManagedPrefixListVersionCommand.ts @@ -79,6 +79,7 @@ export interface RestoreManagedPrefixListVersionCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RestoreManagedPrefixListVersionCommand extends $Command diff --git a/clients/client-ec2/src/commands/RestoreSnapshotFromRecycleBinCommand.ts b/clients/client-ec2/src/commands/RestoreSnapshotFromRecycleBinCommand.ts index 9fa65bb7f4abc..874f0d66e2d20 100644 --- a/clients/client-ec2/src/commands/RestoreSnapshotFromRecycleBinCommand.ts +++ b/clients/client-ec2/src/commands/RestoreSnapshotFromRecycleBinCommand.ts @@ -69,6 +69,7 @@ export interface RestoreSnapshotFromRecycleBinCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RestoreSnapshotFromRecycleBinCommand extends $Command diff --git a/clients/client-ec2/src/commands/RestoreSnapshotTierCommand.ts b/clients/client-ec2/src/commands/RestoreSnapshotTierCommand.ts index 550e589707053..af01bfbb22d47 100644 --- a/clients/client-ec2/src/commands/RestoreSnapshotTierCommand.ts +++ b/clients/client-ec2/src/commands/RestoreSnapshotTierCommand.ts @@ -65,6 +65,7 @@ export interface RestoreSnapshotTierCommandOutput extends RestoreSnapshotTierRes * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RestoreSnapshotTierCommand extends $Command diff --git a/clients/client-ec2/src/commands/RevokeClientVpnIngressCommand.ts b/clients/client-ec2/src/commands/RevokeClientVpnIngressCommand.ts index 3039305ddc076..acc06d6f2df39 100644 --- a/clients/client-ec2/src/commands/RevokeClientVpnIngressCommand.ts +++ b/clients/client-ec2/src/commands/RevokeClientVpnIngressCommand.ts @@ -62,6 +62,7 @@ export interface RevokeClientVpnIngressCommandOutput extends RevokeClientVpnIngr * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RevokeClientVpnIngressCommand extends $Command diff --git a/clients/client-ec2/src/commands/RevokeSecurityGroupEgressCommand.ts b/clients/client-ec2/src/commands/RevokeSecurityGroupEgressCommand.ts index 85a00c397e732..1c611cf02e1d4 100644 --- a/clients/client-ec2/src/commands/RevokeSecurityGroupEgressCommand.ts +++ b/clients/client-ec2/src/commands/RevokeSecurityGroupEgressCommand.ts @@ -164,6 +164,7 @@ export interface RevokeSecurityGroupEgressCommandOutput extends RevokeSecurityGr * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RevokeSecurityGroupEgressCommand extends $Command diff --git a/clients/client-ec2/src/commands/RevokeSecurityGroupIngressCommand.ts b/clients/client-ec2/src/commands/RevokeSecurityGroupIngressCommand.ts index 62bbbe41de4d7..b05f0b0ad4571 100644 --- a/clients/client-ec2/src/commands/RevokeSecurityGroupIngressCommand.ts +++ b/clients/client-ec2/src/commands/RevokeSecurityGroupIngressCommand.ts @@ -169,6 +169,7 @@ export interface RevokeSecurityGroupIngressCommandOutput extends RevokeSecurityG * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RevokeSecurityGroupIngressCommand extends $Command diff --git a/clients/client-ec2/src/commands/RunInstancesCommand.ts b/clients/client-ec2/src/commands/RunInstancesCommand.ts index b062f57af3746..c8578ec7bf3b5 100644 --- a/clients/client-ec2/src/commands/RunInstancesCommand.ts +++ b/clients/client-ec2/src/commands/RunInstancesCommand.ts @@ -556,45 +556,48 @@ export interface RunInstancesCommandOutput extends Reservation, __MetadataBearer * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To launch an instance * ```javascript * // This example launches an instance using the specified AMI, instance type, security group, subnet, block device mapping, and tags. * const input = { - * "BlockDeviceMappings": [ + * BlockDeviceMappings: [ * { - * "DeviceName": "/dev/sdh", - * "Ebs": { - * "VolumeSize": 100 + * DeviceName: "/dev/sdh", + * Ebs: { + * VolumeSize: 100 * } * } * ], - * "ImageId": "ami-abc12345", - * "InstanceType": "t2.micro", - * "KeyName": "my-key-pair", - * "MaxCount": 1, - * "MinCount": 1, - * "SecurityGroupIds": [ + * ImageId: "ami-abc12345", + * InstanceType: "t2.micro", + * KeyName: "my-key-pair", + * MaxCount: 1, + * MinCount: 1, + * SecurityGroupIds: [ * "sg-1a2b3c4d" * ], - * "SubnetId": "subnet-6e7f829e", - * "TagSpecifications": [ + * SubnetId: "subnet-6e7f829e", + * TagSpecifications: [ * { - * "ResourceType": "instance", - * "Tags": [ + * ResourceType: "instance", + * Tags: [ * { - * "Key": "Purpose", - * "Value": "test" + * Key: "Purpose", + * Value: "test" * } * ] * } * ] * }; * const command = new RunInstancesCommand(input); - * await client.send(command); - * // example id: to-launch-an-instance-1529360150806 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class RunInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/RunScheduledInstancesCommand.ts b/clients/client-ec2/src/commands/RunScheduledInstancesCommand.ts index a623ceeaaf0d5..8de6b6e8ae5f6 100644 --- a/clients/client-ec2/src/commands/RunScheduledInstancesCommand.ts +++ b/clients/client-ec2/src/commands/RunScheduledInstancesCommand.ts @@ -135,6 +135,7 @@ export interface RunScheduledInstancesCommandOutput extends RunScheduledInstance * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class RunScheduledInstancesCommand extends $Command diff --git a/clients/client-ec2/src/commands/SearchLocalGatewayRoutesCommand.ts b/clients/client-ec2/src/commands/SearchLocalGatewayRoutesCommand.ts index 10126135e21a3..cd1f0c2ffa47c 100644 --- a/clients/client-ec2/src/commands/SearchLocalGatewayRoutesCommand.ts +++ b/clients/client-ec2/src/commands/SearchLocalGatewayRoutesCommand.ts @@ -81,6 +81,7 @@ export interface SearchLocalGatewayRoutesCommandOutput extends SearchLocalGatewa * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class SearchLocalGatewayRoutesCommand extends $Command diff --git a/clients/client-ec2/src/commands/SearchTransitGatewayMulticastGroupsCommand.ts b/clients/client-ec2/src/commands/SearchTransitGatewayMulticastGroupsCommand.ts index 50d223a621c49..15fe614f481bc 100644 --- a/clients/client-ec2/src/commands/SearchTransitGatewayMulticastGroupsCommand.ts +++ b/clients/client-ec2/src/commands/SearchTransitGatewayMulticastGroupsCommand.ts @@ -89,6 +89,7 @@ export interface SearchTransitGatewayMulticastGroupsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class SearchTransitGatewayMulticastGroupsCommand extends $Command diff --git a/clients/client-ec2/src/commands/SearchTransitGatewayRoutesCommand.ts b/clients/client-ec2/src/commands/SearchTransitGatewayRoutesCommand.ts index 109f63567bd95..3fe781de5acab 100644 --- a/clients/client-ec2/src/commands/SearchTransitGatewayRoutesCommand.ts +++ b/clients/client-ec2/src/commands/SearchTransitGatewayRoutesCommand.ts @@ -81,6 +81,7 @@ export interface SearchTransitGatewayRoutesCommandOutput extends SearchTransitGa * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class SearchTransitGatewayRoutesCommand extends $Command diff --git a/clients/client-ec2/src/commands/SendDiagnosticInterruptCommand.ts b/clients/client-ec2/src/commands/SendDiagnosticInterruptCommand.ts index b005ee67ef5c9..bfc06dcf86301 100644 --- a/clients/client-ec2/src/commands/SendDiagnosticInterruptCommand.ts +++ b/clients/client-ec2/src/commands/SendDiagnosticInterruptCommand.ts @@ -67,6 +67,7 @@ export interface SendDiagnosticInterruptCommandOutput extends __MetadataBearer { * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class SendDiagnosticInterruptCommand extends $Command diff --git a/clients/client-ec2/src/commands/StartDeclarativePoliciesReportCommand.ts b/clients/client-ec2/src/commands/StartDeclarativePoliciesReportCommand.ts index 88a783dadfe0f..278e5134f2a8d 100644 --- a/clients/client-ec2/src/commands/StartDeclarativePoliciesReportCommand.ts +++ b/clients/client-ec2/src/commands/StartDeclarativePoliciesReportCommand.ts @@ -118,6 +118,7 @@ export interface StartDeclarativePoliciesReportCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class StartDeclarativePoliciesReportCommand extends $Command diff --git a/clients/client-ec2/src/commands/StartInstancesCommand.ts b/clients/client-ec2/src/commands/StartInstancesCommand.ts index 7c8598f83e98a..bdc4b27ef95ee 100644 --- a/clients/client-ec2/src/commands/StartInstancesCommand.ts +++ b/clients/client-ec2/src/commands/StartInstancesCommand.ts @@ -89,37 +89,37 @@ export interface StartInstancesCommandOutput extends StartInstancesResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To start a stopped EC2 instance * ```javascript * // This example starts the specified EC2 instance. * const input = { - * "InstanceIds": [ + * InstanceIds: [ * "i-1234567890abcdef0" * ] * }; * const command = new StartInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "StartingInstances": [ + * StartingInstances: [ * { - * "CurrentState": { - * "Code": 0, - * "Name": "pending" + * CurrentState: { + * Code: 0, + * Name: "pending" * }, - * "InstanceId": "i-1234567890abcdef0", - * "PreviousState": { - * "Code": 80, - * "Name": "stopped" + * InstanceId: "i-1234567890abcdef0", + * PreviousState: { + * Code: 80, + * Name: "stopped" * } * } * ] * } * *\/ - * // example id: to-start-a-stopped-ec2-instance-1529358792730 * ``` * + * @public */ export class StartInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/StartNetworkInsightsAccessScopeAnalysisCommand.ts b/clients/client-ec2/src/commands/StartNetworkInsightsAccessScopeAnalysisCommand.ts index cf635a7b6c1d0..26a3aa8e1e2bc 100644 --- a/clients/client-ec2/src/commands/StartNetworkInsightsAccessScopeAnalysisCommand.ts +++ b/clients/client-ec2/src/commands/StartNetworkInsightsAccessScopeAnalysisCommand.ts @@ -94,6 +94,7 @@ export interface StartNetworkInsightsAccessScopeAnalysisCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class StartNetworkInsightsAccessScopeAnalysisCommand extends $Command diff --git a/clients/client-ec2/src/commands/StartNetworkInsightsAnalysisCommand.ts b/clients/client-ec2/src/commands/StartNetworkInsightsAnalysisCommand.ts index d4b6e2d0764cf..32a021ec86148 100644 --- a/clients/client-ec2/src/commands/StartNetworkInsightsAnalysisCommand.ts +++ b/clients/client-ec2/src/commands/StartNetworkInsightsAnalysisCommand.ts @@ -790,6 +790,7 @@ export interface StartNetworkInsightsAnalysisCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class StartNetworkInsightsAnalysisCommand extends $Command diff --git a/clients/client-ec2/src/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.ts b/clients/client-ec2/src/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.ts index c74ad3176aa34..f01d153b9c72e 100644 --- a/clients/client-ec2/src/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.ts +++ b/clients/client-ec2/src/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.ts @@ -68,6 +68,7 @@ export interface StartVpcEndpointServicePrivateDnsVerificationCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class StartVpcEndpointServicePrivateDnsVerificationCommand extends $Command diff --git a/clients/client-ec2/src/commands/StopInstancesCommand.ts b/clients/client-ec2/src/commands/StopInstancesCommand.ts index 01d6bc7be7a0a..ec8c7f90bfc58 100644 --- a/clients/client-ec2/src/commands/StopInstancesCommand.ts +++ b/clients/client-ec2/src/commands/StopInstancesCommand.ts @@ -103,37 +103,37 @@ export interface StopInstancesCommandOutput extends StopInstancesResult, __Metad * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To stop a running EC2 instance * ```javascript * // This example stops the specified EC2 instance. * const input = { - * "InstanceIds": [ + * InstanceIds: [ * "i-1234567890abcdef0" * ] * }; * const command = new StopInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "StoppingInstances": [ + * StoppingInstances: [ * { - * "CurrentState": { - * "Code": 64, - * "Name": "stopping" + * CurrentState: { + * Code: 64, + * Name: "stopping" * }, - * "InstanceId": "i-1234567890abcdef0", - * "PreviousState": { - * "Code": 16, - * "Name": "running" + * InstanceId: "i-1234567890abcdef0", + * PreviousState: { + * Code: 16, + * Name: "running" * } * } * ] * } * *\/ - * // example id: to-stop-a-running-ec2-instance-1529358905540 * ``` * + * @public */ export class StopInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/TerminateClientVpnConnectionsCommand.ts b/clients/client-ec2/src/commands/TerminateClientVpnConnectionsCommand.ts index d2e6cb931b492..22481058fe843 100644 --- a/clients/client-ec2/src/commands/TerminateClientVpnConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/TerminateClientVpnConnectionsCommand.ts @@ -74,6 +74,7 @@ export interface TerminateClientVpnConnectionsCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class TerminateClientVpnConnectionsCommand extends $Command diff --git a/clients/client-ec2/src/commands/TerminateInstancesCommand.ts b/clients/client-ec2/src/commands/TerminateInstancesCommand.ts index 88272babe1012..fd6a552989ef1 100644 --- a/clients/client-ec2/src/commands/TerminateInstancesCommand.ts +++ b/clients/client-ec2/src/commands/TerminateInstancesCommand.ts @@ -129,37 +129,37 @@ export interface TerminateInstancesCommandOutput extends TerminateInstancesResul * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To terminate an EC2 instance * ```javascript * // This example terminates the specified EC2 instance. * const input = { - * "InstanceIds": [ + * InstanceIds: [ * "i-1234567890abcdef0" * ] * }; * const command = new TerminateInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TerminatingInstances": [ + * TerminatingInstances: [ * { - * "CurrentState": { - * "Code": 32, - * "Name": "shutting-down" + * CurrentState: { + * Code: 32, + * Name: "shutting-down" * }, - * "InstanceId": "i-1234567890abcdef0", - * "PreviousState": { - * "Code": 16, - * "Name": "running" + * InstanceId: "i-1234567890abcdef0", + * PreviousState: { + * Code: 16, + * Name: "running" * } * } * ] * } * *\/ - * // example id: to-terminate-an-ec2-instance-1529359350660 * ``` * + * @public */ export class TerminateInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/UnassignIpv6AddressesCommand.ts b/clients/client-ec2/src/commands/UnassignIpv6AddressesCommand.ts index 13cf0f9a7cf1c..d39b13389b587 100644 --- a/clients/client-ec2/src/commands/UnassignIpv6AddressesCommand.ts +++ b/clients/client-ec2/src/commands/UnassignIpv6AddressesCommand.ts @@ -67,6 +67,7 @@ export interface UnassignIpv6AddressesCommandOutput extends UnassignIpv6Addresse * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class UnassignIpv6AddressesCommand extends $Command diff --git a/clients/client-ec2/src/commands/UnassignPrivateIpAddressesCommand.ts b/clients/client-ec2/src/commands/UnassignPrivateIpAddressesCommand.ts index 68ca0218fe3c1..f8e780d3dbb8a 100644 --- a/clients/client-ec2/src/commands/UnassignPrivateIpAddressesCommand.ts +++ b/clients/client-ec2/src/commands/UnassignPrivateIpAddressesCommand.ts @@ -60,21 +60,24 @@ export interface UnassignPrivateIpAddressesCommandOutput extends __MetadataBeare * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To unassign a secondary private IP address from a network interface * ```javascript * // This example unassigns the specified private IP address from the specified network interface. * const input = { - * "NetworkInterfaceId": "eni-e5aa89a3", - * "PrivateIpAddresses": [ + * NetworkInterfaceId: "eni-e5aa89a3", + * PrivateIpAddresses: [ * "10.0.0.82" * ] * }; * const command = new UnassignPrivateIpAddressesCommand(input); - * await client.send(command); - * // example id: ec2-unassign-private-ip-addresses-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UnassignPrivateIpAddressesCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/UnassignPrivateNatGatewayAddressCommand.ts b/clients/client-ec2/src/commands/UnassignPrivateNatGatewayAddressCommand.ts index 8301d2e0ebf65..f66239f962b8b 100644 --- a/clients/client-ec2/src/commands/UnassignPrivateNatGatewayAddressCommand.ts +++ b/clients/client-ec2/src/commands/UnassignPrivateNatGatewayAddressCommand.ts @@ -87,6 +87,7 @@ export interface UnassignPrivateNatGatewayAddressCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class UnassignPrivateNatGatewayAddressCommand extends $Command diff --git a/clients/client-ec2/src/commands/UnlockSnapshotCommand.ts b/clients/client-ec2/src/commands/UnlockSnapshotCommand.ts index 981eb131f8795..af70152c55309 100644 --- a/clients/client-ec2/src/commands/UnlockSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/UnlockSnapshotCommand.ts @@ -58,6 +58,7 @@ export interface UnlockSnapshotCommandOutput extends UnlockSnapshotResult, __Met * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class UnlockSnapshotCommand extends $Command diff --git a/clients/client-ec2/src/commands/UnmonitorInstancesCommand.ts b/clients/client-ec2/src/commands/UnmonitorInstancesCommand.ts index e2a96515bfcd5..e0ee9ba5cadf0 100644 --- a/clients/client-ec2/src/commands/UnmonitorInstancesCommand.ts +++ b/clients/client-ec2/src/commands/UnmonitorInstancesCommand.ts @@ -67,6 +67,7 @@ export interface UnmonitorInstancesCommandOutput extends UnmonitorInstancesResul * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class UnmonitorInstancesCommand extends $Command diff --git a/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.ts b/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.ts index 95678602c726d..ae4e4aad2aa5e 100644 --- a/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.ts +++ b/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.ts @@ -111,31 +111,34 @@ export interface UpdateSecurityGroupRuleDescriptionsEgressCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To update an outbound security group rule description * ```javascript * // This example updates the description for the specified security group rule. * const input = { - * "GroupId": "sg-123abc12", - * "IpPermissions": [ + * GroupId: "sg-123abc12", + * IpPermissions: [ * { - * "FromPort": 80, - * "IpProtocol": "tcp", - * "IpRanges": [ + * FromPort: 80, + * IpProtocol: "tcp", + * IpRanges: [ * { - * "CidrIp": "203.0.113.0/24", - * "Description": "Outbound HTTP access to server 2" + * CidrIp: "203.0.113.0/24", + * Description: "Outbound HTTP access to server 2" * } * ], - * "ToPort": 80 + * ToPort: 80 * } * ] * }; * const command = new UpdateSecurityGroupRuleDescriptionsEgressCommand(input); - * await client.send(command); - * // example id: to-update-an-outbound-security-group-rule-description-1529360481544 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UpdateSecurityGroupRuleDescriptionsEgressCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.ts b/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.ts index 177d9ed959118..0ad9afc440d04 100644 --- a/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.ts +++ b/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.ts @@ -111,31 +111,34 @@ export interface UpdateSecurityGroupRuleDescriptionsIngressCommandOutput * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* - * @public + * * @example To update an inbound security group rule description * ```javascript * // This example updates the description for the specified security group rule. * const input = { - * "GroupId": "sg-123abc12", - * "IpPermissions": [ + * GroupId: "sg-123abc12", + * IpPermissions: [ * { - * "FromPort": 22, - * "IpProtocol": "tcp", - * "IpRanges": [ + * FromPort: 22, + * IpProtocol: "tcp", + * IpRanges: [ * { - * "CidrIp": "203.0.113.0/16", - * "Description": "SSH access from the LA office" + * CidrIp: "203.0.113.0/16", + * Description: "SSH access from the LA office" * } * ], - * "ToPort": 22 + * ToPort: 22 * } * ] * }; * const command = new UpdateSecurityGroupRuleDescriptionsIngressCommand(input); - * await client.send(command); - * // example id: to-update-an-inbound-security-group-rule-description-1529360820372 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UpdateSecurityGroupRuleDescriptionsIngressCommand extends $Command .classBuilder< diff --git a/clients/client-ec2/src/commands/WithdrawByoipCidrCommand.ts b/clients/client-ec2/src/commands/WithdrawByoipCidrCommand.ts index fa536381abdc5..196b98452a438 100644 --- a/clients/client-ec2/src/commands/WithdrawByoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/WithdrawByoipCidrCommand.ts @@ -74,6 +74,7 @@ export interface WithdrawByoipCidrCommandOutput extends WithdrawByoipCidrResult, * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* + * * @public */ export class WithdrawByoipCidrCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/BatchCheckLayerAvailabilityCommand.ts b/clients/client-ecr-public/src/commands/BatchCheckLayerAvailabilityCommand.ts index cfa68cad3f3fd..6230c4ced383d 100644 --- a/clients/client-ecr-public/src/commands/BatchCheckLayerAvailabilityCommand.ts +++ b/clients/client-ecr-public/src/commands/BatchCheckLayerAvailabilityCommand.ts @@ -98,6 +98,7 @@ export interface BatchCheckLayerAvailabilityCommandOutput * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class BatchCheckLayerAvailabilityCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/BatchDeleteImageCommand.ts b/clients/client-ecr-public/src/commands/BatchDeleteImageCommand.ts index f2cd239c68200..e83067da09b53 100644 --- a/clients/client-ecr-public/src/commands/BatchDeleteImageCommand.ts +++ b/clients/client-ecr-public/src/commands/BatchDeleteImageCommand.ts @@ -97,6 +97,7 @@ export interface BatchDeleteImageCommandOutput extends BatchDeleteImageResponse, * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class BatchDeleteImageCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/CompleteLayerUploadCommand.ts b/clients/client-ecr-public/src/commands/CompleteLayerUploadCommand.ts index a470febbc8ebf..cfe190cff4422 100644 --- a/clients/client-ecr-public/src/commands/CompleteLayerUploadCommand.ts +++ b/clients/client-ecr-public/src/commands/CompleteLayerUploadCommand.ts @@ -104,6 +104,7 @@ export interface CompleteLayerUploadCommandOutput extends CompleteLayerUploadRes * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class CompleteLayerUploadCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/CreateRepositoryCommand.ts b/clients/client-ecr-public/src/commands/CreateRepositoryCommand.ts index dc7654e2ac1ab..394a258269342 100644 --- a/clients/client-ecr-public/src/commands/CreateRepositoryCommand.ts +++ b/clients/client-ecr-public/src/commands/CreateRepositoryCommand.ts @@ -118,6 +118,7 @@ export interface CreateRepositoryCommandOutput extends CreateRepositoryResponse, * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class CreateRepositoryCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/DeleteRepositoryCommand.ts b/clients/client-ecr-public/src/commands/DeleteRepositoryCommand.ts index 7e258eb627c1b..50878ce313f48 100644 --- a/clients/client-ecr-public/src/commands/DeleteRepositoryCommand.ts +++ b/clients/client-ecr-public/src/commands/DeleteRepositoryCommand.ts @@ -83,6 +83,7 @@ export interface DeleteRepositoryCommandOutput extends DeleteRepositoryResponse, * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class DeleteRepositoryCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/DeleteRepositoryPolicyCommand.ts b/clients/client-ecr-public/src/commands/DeleteRepositoryPolicyCommand.ts index f1a81be2e3e7e..234467f7cbc9a 100644 --- a/clients/client-ecr-public/src/commands/DeleteRepositoryPolicyCommand.ts +++ b/clients/client-ecr-public/src/commands/DeleteRepositoryPolicyCommand.ts @@ -76,6 +76,7 @@ export interface DeleteRepositoryPolicyCommandOutput extends DeleteRepositoryPol * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class DeleteRepositoryPolicyCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/DescribeImageTagsCommand.ts b/clients/client-ecr-public/src/commands/DescribeImageTagsCommand.ts index 562547ff10b5b..c022bafff963a 100644 --- a/clients/client-ecr-public/src/commands/DescribeImageTagsCommand.ts +++ b/clients/client-ecr-public/src/commands/DescribeImageTagsCommand.ts @@ -85,6 +85,7 @@ export interface DescribeImageTagsCommandOutput extends DescribeImageTagsRespons * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class DescribeImageTagsCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/DescribeImagesCommand.ts b/clients/client-ecr-public/src/commands/DescribeImagesCommand.ts index e84dfbad0eb8f..ac513f2531df4 100644 --- a/clients/client-ecr-public/src/commands/DescribeImagesCommand.ts +++ b/clients/client-ecr-public/src/commands/DescribeImagesCommand.ts @@ -102,6 +102,7 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResponse, __M * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class DescribeImagesCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/DescribeRegistriesCommand.ts b/clients/client-ecr-public/src/commands/DescribeRegistriesCommand.ts index bda2f1fe91d45..f9010d93d1247 100644 --- a/clients/client-ecr-public/src/commands/DescribeRegistriesCommand.ts +++ b/clients/client-ecr-public/src/commands/DescribeRegistriesCommand.ts @@ -82,6 +82,7 @@ export interface DescribeRegistriesCommandOutput extends DescribeRegistriesRespo * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class DescribeRegistriesCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/DescribeRepositoriesCommand.ts b/clients/client-ecr-public/src/commands/DescribeRepositoriesCommand.ts index c9f0f80b86277..ab1a914b6644f 100644 --- a/clients/client-ecr-public/src/commands/DescribeRepositoriesCommand.ts +++ b/clients/client-ecr-public/src/commands/DescribeRepositoriesCommand.ts @@ -83,6 +83,7 @@ export interface DescribeRepositoriesCommandOutput extends DescribeRepositoriesR * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class DescribeRepositoriesCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/GetAuthorizationTokenCommand.ts b/clients/client-ecr-public/src/commands/GetAuthorizationTokenCommand.ts index 05e6343525e1f..7c89e858c1e60 100644 --- a/clients/client-ecr-public/src/commands/GetAuthorizationTokenCommand.ts +++ b/clients/client-ecr-public/src/commands/GetAuthorizationTokenCommand.ts @@ -70,6 +70,7 @@ export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationToke * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class GetAuthorizationTokenCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/GetRegistryCatalogDataCommand.ts b/clients/client-ecr-public/src/commands/GetRegistryCatalogDataCommand.ts index 4de0ebd00d2d6..11b7e2415180e 100644 --- a/clients/client-ecr-public/src/commands/GetRegistryCatalogDataCommand.ts +++ b/clients/client-ecr-public/src/commands/GetRegistryCatalogDataCommand.ts @@ -61,6 +61,7 @@ export interface GetRegistryCatalogDataCommandOutput extends GetRegistryCatalogD * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class GetRegistryCatalogDataCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/GetRepositoryCatalogDataCommand.ts b/clients/client-ecr-public/src/commands/GetRepositoryCatalogDataCommand.ts index 86f777ca87cb3..412844f0a21ff 100644 --- a/clients/client-ecr-public/src/commands/GetRepositoryCatalogDataCommand.ts +++ b/clients/client-ecr-public/src/commands/GetRepositoryCatalogDataCommand.ts @@ -86,6 +86,7 @@ export interface GetRepositoryCatalogDataCommandOutput extends GetRepositoryCata * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class GetRepositoryCatalogDataCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/GetRepositoryPolicyCommand.ts b/clients/client-ecr-public/src/commands/GetRepositoryPolicyCommand.ts index 765bb119305d1..4c57468591d3e 100644 --- a/clients/client-ecr-public/src/commands/GetRepositoryPolicyCommand.ts +++ b/clients/client-ecr-public/src/commands/GetRepositoryPolicyCommand.ts @@ -76,6 +76,7 @@ export interface GetRepositoryPolicyCommandOutput extends GetRepositoryPolicyRes * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class GetRepositoryPolicyCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/InitiateLayerUploadCommand.ts b/clients/client-ecr-public/src/commands/InitiateLayerUploadCommand.ts index 3ad2878c6c4a0..a82ff74586ff4 100644 --- a/clients/client-ecr-public/src/commands/InitiateLayerUploadCommand.ts +++ b/clients/client-ecr-public/src/commands/InitiateLayerUploadCommand.ts @@ -80,6 +80,7 @@ export interface InitiateLayerUploadCommandOutput extends InitiateLayerUploadRes * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class InitiateLayerUploadCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/ListTagsForResourceCommand.ts b/clients/client-ecr-public/src/commands/ListTagsForResourceCommand.ts index 2a0ab4c8fe5f4..057807d8b82f0 100644 --- a/clients/client-ecr-public/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ecr-public/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/PutImageCommand.ts b/clients/client-ecr-public/src/commands/PutImageCommand.ts index ffde06f2df473..71bfa81361a5a 100644 --- a/clients/client-ecr-public/src/commands/PutImageCommand.ts +++ b/clients/client-ecr-public/src/commands/PutImageCommand.ts @@ -116,6 +116,7 @@ export interface PutImageCommandOutput extends PutImageResponse, __MetadataBeare * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class PutImageCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/PutRegistryCatalogDataCommand.ts b/clients/client-ecr-public/src/commands/PutRegistryCatalogDataCommand.ts index 27388861d5ea3..93e69fb1784b7 100644 --- a/clients/client-ecr-public/src/commands/PutRegistryCatalogDataCommand.ts +++ b/clients/client-ecr-public/src/commands/PutRegistryCatalogDataCommand.ts @@ -67,6 +67,7 @@ export interface PutRegistryCatalogDataCommandOutput extends PutRegistryCatalogD * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class PutRegistryCatalogDataCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/PutRepositoryCatalogDataCommand.ts b/clients/client-ecr-public/src/commands/PutRepositoryCatalogDataCommand.ts index aa5c280b1af41..58f8b306fb8b7 100644 --- a/clients/client-ecr-public/src/commands/PutRepositoryCatalogDataCommand.ts +++ b/clients/client-ecr-public/src/commands/PutRepositoryCatalogDataCommand.ts @@ -94,6 +94,7 @@ export interface PutRepositoryCatalogDataCommandOutput extends PutRepositoryCata * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class PutRepositoryCatalogDataCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/SetRepositoryPolicyCommand.ts b/clients/client-ecr-public/src/commands/SetRepositoryPolicyCommand.ts index ed767387b6c82..f68d0ecf1a20d 100644 --- a/clients/client-ecr-public/src/commands/SetRepositoryPolicyCommand.ts +++ b/clients/client-ecr-public/src/commands/SetRepositoryPolicyCommand.ts @@ -76,6 +76,7 @@ export interface SetRepositoryPolicyCommandOutput extends SetRepositoryPolicyRes * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class SetRepositoryPolicyCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/TagResourceCommand.ts b/clients/client-ecr-public/src/commands/TagResourceCommand.ts index 02b9f6c80ed32..98650d3b55a02 100644 --- a/clients/client-ecr-public/src/commands/TagResourceCommand.ts +++ b/clients/client-ecr-public/src/commands/TagResourceCommand.ts @@ -83,6 +83,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/UntagResourceCommand.ts b/clients/client-ecr-public/src/commands/UntagResourceCommand.ts index 7a91edc2abed3..85a96eb0515fb 100644 --- a/clients/client-ecr-public/src/commands/UntagResourceCommand.ts +++ b/clients/client-ecr-public/src/commands/UntagResourceCommand.ts @@ -77,6 +77,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-ecr-public/src/commands/UploadLayerPartCommand.ts b/clients/client-ecr-public/src/commands/UploadLayerPartCommand.ts index 3a7d2d6f28c9e..1cc723b5228cd 100644 --- a/clients/client-ecr-public/src/commands/UploadLayerPartCommand.ts +++ b/clients/client-ecr-public/src/commands/UploadLayerPartCommand.ts @@ -99,6 +99,7 @@ export interface UploadLayerPartCommandOutput extends UploadLayerPartResponse, _ * @throws {@link ECRPUBLICServiceException} *

Base exception class for all service exceptions from ECRPUBLIC service.

* + * * @public */ export class UploadLayerPartCommand extends $Command diff --git a/clients/client-ecr/src/commands/BatchCheckLayerAvailabilityCommand.ts b/clients/client-ecr/src/commands/BatchCheckLayerAvailabilityCommand.ts index 6cec7632d2ce7..75903ab9ca534 100644 --- a/clients/client-ecr/src/commands/BatchCheckLayerAvailabilityCommand.ts +++ b/clients/client-ecr/src/commands/BatchCheckLayerAvailabilityCommand.ts @@ -93,6 +93,7 @@ export interface BatchCheckLayerAvailabilityCommandOutput * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class BatchCheckLayerAvailabilityCommand extends $Command diff --git a/clients/client-ecr/src/commands/BatchDeleteImageCommand.ts b/clients/client-ecr/src/commands/BatchDeleteImageCommand.ts index 4164cbdea1ce2..9512e4a8ae62d 100644 --- a/clients/client-ecr/src/commands/BatchDeleteImageCommand.ts +++ b/clients/client-ecr/src/commands/BatchDeleteImageCommand.ts @@ -93,34 +93,34 @@ export interface BatchDeleteImageCommandOutput extends BatchDeleteImageResponse, * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* - * @public + * * @example To delete multiple images * ```javascript * // This example deletes images with the tags precise and trusty in a repository called ubuntu in the default registry for an account. * const input = { - * "imageIds": [ + * imageIds: [ * { - * "imageTag": "precise" + * imageTag: "precise" * } * ], - * "repositoryName": "ubuntu" + * repositoryName: "ubuntu" * }; * const command = new BatchDeleteImageCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "failures": [], - * "imageIds": [ + * failures: [], + * imageIds: [ * { - * "imageDigest": "sha256:examplee6d1e504117a17000003d3753086354a38375961f2e665416ef4b1b2f", - * "imageTag": "precise" + * imageDigest: "sha256:examplee6d1e504117a17000003d3753086354a38375961f2e665416ef4b1b2f", + * imageTag: "precise" * } * ] * } * *\/ - * // example id: batchdeleteimages-example-1470860541707 * ``` * + * @public */ export class BatchDeleteImageCommand extends $Command .classBuilder< diff --git a/clients/client-ecr/src/commands/BatchGetImageCommand.ts b/clients/client-ecr/src/commands/BatchGetImageCommand.ts index d0fc804534ba1..f451bfc2099af 100644 --- a/clients/client-ecr/src/commands/BatchGetImageCommand.ts +++ b/clients/client-ecr/src/commands/BatchGetImageCommand.ts @@ -110,39 +110,43 @@ export interface BatchGetImageCommandOutput extends BatchGetImageResponse, __Met * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* - * @public + * * @example To obtain multiple images in a single request * ```javascript * // This example obtains information for an image with a specified image digest ID from the repository named ubuntu in the current account. * const input = { - * "imageIds": [ + * imageIds: [ * { - * "imageTag": "precise" + * imageTag: "precise" * } * ], - * "repositoryName": "ubuntu" + * repositoryName: "ubuntu" * }; * const command = new BatchGetImageCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "failures": [], - * "images": [ + * failures: [], + * images: [ * { - * "imageId": { - * "imageDigest": "sha256:example76bdff6d83a09ba2a818f0d00000063724a9ac3ba5019c56f74ebf42a", - * "imageTag": "precise" + * imageId: { + * imageDigest: "sha256:example76bdff6d83a09ba2a818f0d00000063724a9ac3ba5019c56f74ebf42a", + * imageTag: "precise" * }, - * "imageManifest": "{\n \"schemaVersion\": 1,\n \"name\": \"ubuntu\",\n \"tag\": \"precise\",\n...", - * "registryId": "244698725403", - * "repositoryName": "ubuntu" + * imageManifest: `{ + * "schemaVersion": 1, + * "name": "ubuntu", + * "tag": "precise", + * ...`, + * registryId: "244698725403", + * repositoryName: "ubuntu" * } * ] * } * *\/ - * // example id: batchgetimage-example-1470862771437 * ``` * + * @public */ export class BatchGetImageCommand extends $Command .classBuilder< diff --git a/clients/client-ecr/src/commands/BatchGetRepositoryScanningConfigurationCommand.ts b/clients/client-ecr/src/commands/BatchGetRepositoryScanningConfigurationCommand.ts index f77ea50f8a201..f45302174e9b2 100644 --- a/clients/client-ecr/src/commands/BatchGetRepositoryScanningConfigurationCommand.ts +++ b/clients/client-ecr/src/commands/BatchGetRepositoryScanningConfigurationCommand.ts @@ -100,6 +100,7 @@ export interface BatchGetRepositoryScanningConfigurationCommandOutput * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class BatchGetRepositoryScanningConfigurationCommand extends $Command diff --git a/clients/client-ecr/src/commands/CompleteLayerUploadCommand.ts b/clients/client-ecr/src/commands/CompleteLayerUploadCommand.ts index c1ae59f064d9f..904312be39b82 100644 --- a/clients/client-ecr/src/commands/CompleteLayerUploadCommand.ts +++ b/clients/client-ecr/src/commands/CompleteLayerUploadCommand.ts @@ -102,6 +102,7 @@ export interface CompleteLayerUploadCommandOutput extends CompleteLayerUploadRes * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class CompleteLayerUploadCommand extends $Command diff --git a/clients/client-ecr/src/commands/CreatePullThroughCacheRuleCommand.ts b/clients/client-ecr/src/commands/CreatePullThroughCacheRuleCommand.ts index 0d2dc0bb043f8..65d9293eaed07 100644 --- a/clients/client-ecr/src/commands/CreatePullThroughCacheRuleCommand.ts +++ b/clients/client-ecr/src/commands/CreatePullThroughCacheRuleCommand.ts @@ -105,6 +105,7 @@ export interface CreatePullThroughCacheRuleCommandOutput extends CreatePullThrou * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class CreatePullThroughCacheRuleCommand extends $Command diff --git a/clients/client-ecr/src/commands/CreateRepositoryCommand.ts b/clients/client-ecr/src/commands/CreateRepositoryCommand.ts index 654280d2dee78..933869ed613fc 100644 --- a/clients/client-ecr/src/commands/CreateRepositoryCommand.ts +++ b/clients/client-ecr/src/commands/CreateRepositoryCommand.ts @@ -111,27 +111,27 @@ export interface CreateRepositoryCommandOutput extends CreateRepositoryResponse, * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* - * @public + * * @example To create a new repository * ```javascript * // This example creates a repository called nginx-web-app inside the project-a namespace in the default registry for an account. * const input = { - * "repositoryName": "project-a/nginx-web-app" + * repositoryName: "project-a/nginx-web-app" * }; * const command = new CreateRepositoryCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "repository": { - * "registryId": "012345678901", - * "repositoryArn": "arn:aws:ecr:us-west-2:012345678901:repository/project-a/nginx-web-app", - * "repositoryName": "project-a/nginx-web-app" + * repository: { + * registryId: "012345678901", + * repositoryArn: "arn:aws:ecr:us-west-2:012345678901:repository/project-a/nginx-web-app", + * repositoryName: "project-a/nginx-web-app" * } * } * *\/ - * // example id: createrepository-example-1470863688724 * ``` * + * @public */ export class CreateRepositoryCommand extends $Command .classBuilder< diff --git a/clients/client-ecr/src/commands/CreateRepositoryCreationTemplateCommand.ts b/clients/client-ecr/src/commands/CreateRepositoryCreationTemplateCommand.ts index 4bc4c37997685..7d343a2520172 100644 --- a/clients/client-ecr/src/commands/CreateRepositoryCreationTemplateCommand.ts +++ b/clients/client-ecr/src/commands/CreateRepositoryCreationTemplateCommand.ts @@ -124,62 +124,8 @@ export interface CreateRepositoryCreationTemplateCommandOutput * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* - * @public - * @example Create a new repository creation template - * ```javascript - * // This example creates a repository creation template. - * const input = { - * "appliedFor": [ - * "REPLICATION", - * "PULL_THROUGH_CACHE" - * ], - * "description": "Repos for testing images", - * "encryptionConfiguration": { - * "encryptionType": "AES256" - * }, - * "imageTagMutability": "MUTABLE", - * "lifecyclePolicy": "{\r\n \"rules\": [\r\n {\r\n \"rulePriority\": 1,\r\n \"description\": \"Expire images older than 14 days\",\r\n \"selection\": {\r\n \"tagStatus\": \"untagged\",\r\n \"countType\": \"sinceImagePushed\",\r\n \"countUnit\": \"days\",\r\n \"countNumber\": 14\r\n },\r\n \"action\": {\r\n \"type\": \"expire\"\r\n }\r\n }\r\n ]\r\n}", - * "prefix": "eng/test", - * "repositoryPolicy": "{\r\n \"Version\": \"2012-10-17\",\r\n \"Statement\": [\r\n {\r\n \"Sid\": \"LambdaECRPullPolicy\",\r\n \"Effect\": \"Allow\",\r\n \"Principal\": {\r\n \"Service\": \"lambda.amazonaws.com\"\r\n },\r\n \"Action\": \"ecr:BatchGetImage\"\r\n }\r\n ]\r\n}", - * "resourceTags": [ - * { - * "Key": "environment", - * "Value": "test" - * } - * ] - * }; - * const command = new CreateRepositoryCreationTemplateCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "registryId": "012345678901", - * "repositoryCreationTemplate": { - * "appliedFor": [ - * "REPLICATION", - * "PULL_THROUGH_CACHE" - * ], - * "createdAt": "2023-12-16T17:29:02-07:00", - * "description": "Repos for testing images", - * "encryptionConfiguration": { - * "encryptionType": "AES256" - * }, - * "imageTagMutability": "MUTABLE", - * "lifecyclePolicy": "{\r\n \"rules\": [\r\n {\r\n \"rulePriority\": 1,\r\n \"description\": \"Expire images older than 14 days\",\r\n \"selection\": {\r\n \"tagStatus\": \"untagged\",\r\n \"countType\": \"sinceImagePushed\",\r\n \"countUnit\": \"days\",\r\n \"countNumber\": 14\r\n },\r\n \"action\": {\r\n \"type\": \"expire\"\r\n }\r\n }\r\n ]\r\n}", - * "prefix": "eng/test", - * "repositoryPolicy": "{\n \"Version\" : \"2012-10-17\",\n \"Statement\" : [ {\n \"Sid\" : \"LambdaECRPullPolicy\",\n \"Effect\" : \"Allow\",\n \"Principal\" : {\n \"Service\" : \"lambda.amazonaws.com\"\n },\n \"Action\" : \"ecr:BatchGetImage\"\n } ]\n}", - * "resourceTags": [ - * { - * "Key": "environment", - * "Value": "test" - * } - * ], - * "updatedAt": "2023-12-16T17:29:02-07:00" - * } - * } - * *\/ - * // example id: create-a-new-repository-creation-template-1713296923053 - * ``` * + * @public */ export class CreateRepositoryCreationTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-ecr/src/commands/DeleteLifecyclePolicyCommand.ts b/clients/client-ecr/src/commands/DeleteLifecyclePolicyCommand.ts index 9302e74513b0f..d9d810bfc07ff 100644 --- a/clients/client-ecr/src/commands/DeleteLifecyclePolicyCommand.ts +++ b/clients/client-ecr/src/commands/DeleteLifecyclePolicyCommand.ts @@ -77,6 +77,7 @@ export interface DeleteLifecyclePolicyCommandOutput extends DeleteLifecyclePolic * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class DeleteLifecyclePolicyCommand extends $Command diff --git a/clients/client-ecr/src/commands/DeletePullThroughCacheRuleCommand.ts b/clients/client-ecr/src/commands/DeletePullThroughCacheRuleCommand.ts index 1575bc5aeb2f1..7ed3928125762 100644 --- a/clients/client-ecr/src/commands/DeletePullThroughCacheRuleCommand.ts +++ b/clients/client-ecr/src/commands/DeletePullThroughCacheRuleCommand.ts @@ -76,6 +76,7 @@ export interface DeletePullThroughCacheRuleCommandOutput extends DeletePullThrou * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class DeletePullThroughCacheRuleCommand extends $Command diff --git a/clients/client-ecr/src/commands/DeleteRegistryPolicyCommand.ts b/clients/client-ecr/src/commands/DeleteRegistryPolicyCommand.ts index 33e3f8df83788..26afda1cab0f5 100644 --- a/clients/client-ecr/src/commands/DeleteRegistryPolicyCommand.ts +++ b/clients/client-ecr/src/commands/DeleteRegistryPolicyCommand.ts @@ -67,6 +67,7 @@ export interface DeleteRegistryPolicyCommandOutput extends DeleteRegistryPolicyR * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class DeleteRegistryPolicyCommand extends $Command diff --git a/clients/client-ecr/src/commands/DeleteRepositoryCommand.ts b/clients/client-ecr/src/commands/DeleteRepositoryCommand.ts index da744039d4699..1116669e0d07f 100644 --- a/clients/client-ecr/src/commands/DeleteRepositoryCommand.ts +++ b/clients/client-ecr/src/commands/DeleteRepositoryCommand.ts @@ -91,28 +91,28 @@ export interface DeleteRepositoryCommandOutput extends DeleteRepositoryResponse, * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* - * @public + * * @example To force delete a repository * ```javascript * // This example force deletes a repository named ubuntu in the default registry for an account. The force parameter is required if the repository contains images. * const input = { - * "force": true, - * "repositoryName": "ubuntu" + * force: true, + * repositoryName: "ubuntu" * }; * const command = new DeleteRepositoryCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "repository": { - * "registryId": "012345678901", - * "repositoryArn": "arn:aws:ecr:us-west-2:012345678901:repository/ubuntu", - * "repositoryName": "ubuntu" + * repository: { + * registryId: "012345678901", + * repositoryArn: "arn:aws:ecr:us-west-2:012345678901:repository/ubuntu", + * repositoryName: "ubuntu" * } * } * *\/ - * // example id: deleterepository-example-1470863805703 * ``` * + * @public */ export class DeleteRepositoryCommand extends $Command .classBuilder< diff --git a/clients/client-ecr/src/commands/DeleteRepositoryCreationTemplateCommand.ts b/clients/client-ecr/src/commands/DeleteRepositoryCreationTemplateCommand.ts index 4a2d127f679ba..c8019637fa4b5 100644 --- a/clients/client-ecr/src/commands/DeleteRepositoryCreationTemplateCommand.ts +++ b/clients/client-ecr/src/commands/DeleteRepositoryCreationTemplateCommand.ts @@ -97,32 +97,8 @@ export interface DeleteRepositoryCreationTemplateCommandOutput * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* - * @public - * @example Delete a repository creation template - * ```javascript - * // This example deletes a repository creation template. - * const input = { - * "prefix": "eng" - * }; - * const command = new DeleteRepositoryCreationTemplateCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "registryId": "012345678901", - * "repositoryCreationTemplate": { - * "createdAt": "2023-12-03T16:27:57.933000-08:00", - * "encryptionConfiguration": { - * "encryptionType": "AES256" - * }, - * "imageTagMutability": "MUTABLE", - * "prefix": "eng", - * "updatedAt": "2023-12-03T16:27:57.933000-08:00" - * } - * } - * *\/ - * // example id: delete-a-repository-creation-template-1713298142230 - * ``` * + * @public */ export class DeleteRepositoryCreationTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-ecr/src/commands/DeleteRepositoryPolicyCommand.ts b/clients/client-ecr/src/commands/DeleteRepositoryPolicyCommand.ts index 1fde87194eba6..ac07b5f06bcc4 100644 --- a/clients/client-ecr/src/commands/DeleteRepositoryPolicyCommand.ts +++ b/clients/client-ecr/src/commands/DeleteRepositoryPolicyCommand.ts @@ -73,25 +73,25 @@ export interface DeleteRepositoryPolicyCommandOutput extends DeleteRepositoryPol * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* - * @public + * * @example To delete the policy associated with a repository * ```javascript * // This example deletes the policy associated with the repository named ubuntu in the current account. * const input = { - * "repositoryName": "ubuntu" + * repositoryName: "ubuntu" * }; * const command = new DeleteRepositoryPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "policyText": "{ ... }", - * "registryId": "012345678901", - * "repositoryName": "ubuntu" + * policyText: "{ ... }", + * registryId: "012345678901", + * repositoryName: "ubuntu" * } * *\/ - * // example id: deleterepositorypolicy-example-1470866943748 * ``` * + * @public */ export class DeleteRepositoryPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-ecr/src/commands/DescribeImageReplicationStatusCommand.ts b/clients/client-ecr/src/commands/DescribeImageReplicationStatusCommand.ts index 14244a735afbb..faf2df666bd2e 100644 --- a/clients/client-ecr/src/commands/DescribeImageReplicationStatusCommand.ts +++ b/clients/client-ecr/src/commands/DescribeImageReplicationStatusCommand.ts @@ -94,6 +94,7 @@ export interface DescribeImageReplicationStatusCommandOutput * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class DescribeImageReplicationStatusCommand extends $Command diff --git a/clients/client-ecr/src/commands/DescribeImageScanFindingsCommand.ts b/clients/client-ecr/src/commands/DescribeImageScanFindingsCommand.ts index 4e9a64ce962c1..95ea2b7ea3205 100644 --- a/clients/client-ecr/src/commands/DescribeImageScanFindingsCommand.ts +++ b/clients/client-ecr/src/commands/DescribeImageScanFindingsCommand.ts @@ -209,6 +209,7 @@ export interface DescribeImageScanFindingsCommandOutput extends DescribeImageSca * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class DescribeImageScanFindingsCommand extends $Command diff --git a/clients/client-ecr/src/commands/DescribeImagesCommand.ts b/clients/client-ecr/src/commands/DescribeImagesCommand.ts index 8e8c4d492c016..80e4dd47cc6d0 100644 --- a/clients/client-ecr/src/commands/DescribeImagesCommand.ts +++ b/clients/client-ecr/src/commands/DescribeImagesCommand.ts @@ -113,6 +113,7 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResponse, __M * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class DescribeImagesCommand extends $Command diff --git a/clients/client-ecr/src/commands/DescribePullThroughCacheRulesCommand.ts b/clients/client-ecr/src/commands/DescribePullThroughCacheRulesCommand.ts index af98be7fe8a15..b300f118e799a 100644 --- a/clients/client-ecr/src/commands/DescribePullThroughCacheRulesCommand.ts +++ b/clients/client-ecr/src/commands/DescribePullThroughCacheRulesCommand.ts @@ -92,6 +92,7 @@ export interface DescribePullThroughCacheRulesCommandOutput * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class DescribePullThroughCacheRulesCommand extends $Command diff --git a/clients/client-ecr/src/commands/DescribeRegistryCommand.ts b/clients/client-ecr/src/commands/DescribeRegistryCommand.ts index 0fd35cd5be10d..01de56cd00463 100644 --- a/clients/client-ecr/src/commands/DescribeRegistryCommand.ts +++ b/clients/client-ecr/src/commands/DescribeRegistryCommand.ts @@ -83,6 +83,7 @@ export interface DescribeRegistryCommandOutput extends DescribeRegistryResponse, * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class DescribeRegistryCommand extends $Command diff --git a/clients/client-ecr/src/commands/DescribeRepositoriesCommand.ts b/clients/client-ecr/src/commands/DescribeRepositoriesCommand.ts index be34019533990..ad7fd6e1f82ae 100644 --- a/clients/client-ecr/src/commands/DescribeRepositoriesCommand.ts +++ b/clients/client-ecr/src/commands/DescribeRepositoriesCommand.ts @@ -88,32 +88,32 @@ export interface DescribeRepositoriesCommandOutput extends DescribeRepositoriesR * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* - * @public + * * @example To describe all repositories in the current account * ```javascript * // The following example obtains a list and description of all repositories in the default registry to which the current user has access. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeRepositoriesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "repositories": [ + * repositories: [ * { - * "registryId": "012345678910", - * "repositoryArn": "arn:aws:ecr:us-west-2:012345678910:repository/ubuntu", - * "repositoryName": "ubuntu" + * registryId: "012345678910", + * repositoryArn: "arn:aws:ecr:us-west-2:012345678910:repository/ubuntu", + * repositoryName: "ubuntu" * }, * { - * "registryId": "012345678910", - * "repositoryArn": "arn:aws:ecr:us-west-2:012345678910:repository/test", - * "repositoryName": "test" + * registryId: "012345678910", + * repositoryArn: "arn:aws:ecr:us-west-2:012345678910:repository/test", + * repositoryName: "test" * } * ] * } * *\/ - * // example id: describe-repositories-1470856017467 * ``` * + * @public */ export class DescribeRepositoriesCommand extends $Command .classBuilder< diff --git a/clients/client-ecr/src/commands/DescribeRepositoryCreationTemplatesCommand.ts b/clients/client-ecr/src/commands/DescribeRepositoryCreationTemplatesCommand.ts index af840e2f31c18..ed945b5600785 100644 --- a/clients/client-ecr/src/commands/DescribeRepositoryCreationTemplatesCommand.ts +++ b/clients/client-ecr/src/commands/DescribeRepositoryCreationTemplatesCommand.ts @@ -105,55 +105,8 @@ export interface DescribeRepositoryCreationTemplatesCommandOutput * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* - * @public - * @example Describe a repository creation template - * ```javascript - * // This example describes the contents of a repository creation template. - * const input = { - * "maxResults": 123, - * "nextToken": "", - * "prefixes": [ - * "eng" - * ] - * }; - * const command = new DescribeRepositoryCreationTemplatesCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "nextToken": "", - * "registryId": "012345678901", - * "repositoryCreationTemplates": [ - * { - * "appliedFor": [ - * "PULL_THROUGH_CACHE", - * "REPLICATION" - * ], - * "createdAt": "2023-12-16T17:29:02-07:00", - * "encryptionConfiguration": { - * "encryptionType": "AES256" - * }, - * "imageTagMutability": "MUTABLE", - * "prefix": "eng/test", - * "updatedAt": "2023-12-16T19:55:02-07:00" - * }, - * { - * "appliedFor": [ - * "REPLICATION" - * ], - * "createdAt": "2023-12-14T17:29:02-07:00", - * "encryptionConfiguration": { - * "encryptionType": "AES256" - * }, - * "imageTagMutability": "IMMUTABLE", - * "prefix": "eng/replication-test", - * "updatedAt": "2023-12-14T19:55:02-07:00" - * } - * ] - * } - * *\/ - * // example id: describe-a-repository-creation-template-1713298784302 - * ``` * + * @public */ export class DescribeRepositoryCreationTemplatesCommand extends $Command .classBuilder< diff --git a/clients/client-ecr/src/commands/GetAccountSettingCommand.ts b/clients/client-ecr/src/commands/GetAccountSettingCommand.ts index b77ce9fa69817..d72f192b197e2 100644 --- a/clients/client-ecr/src/commands/GetAccountSettingCommand.ts +++ b/clients/client-ecr/src/commands/GetAccountSettingCommand.ts @@ -66,6 +66,7 @@ export interface GetAccountSettingCommandOutput extends GetAccountSettingRespons * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class GetAccountSettingCommand extends $Command diff --git a/clients/client-ecr/src/commands/GetAuthorizationTokenCommand.ts b/clients/client-ecr/src/commands/GetAuthorizationTokenCommand.ts index c62e59f03704b..a8590565149a0 100644 --- a/clients/client-ecr/src/commands/GetAuthorizationTokenCommand.ts +++ b/clients/client-ecr/src/commands/GetAuthorizationTokenCommand.ts @@ -77,27 +77,8 @@ export interface GetAuthorizationTokenCommandOutput extends GetAuthorizationToke * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* - * @public - * @example To obtain an authorization token - * ```javascript - * // This example gets an authorization token for your default registry. - * const input = {}; - * const command = new GetAuthorizationTokenCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "authorizationData": [ - * { - * "authorizationToken": "QVdTOkNEXAMPLE", - * "expiresAt": "2022-05-17T06:56:13.652000+00:00", - * "proxyEndpoint": "https://012345678901.dkr.ecr.us-west-2.amazonaws.com" - * } - * ] - * } - * *\/ - * // example id: getauthorizationtoken-example-1470867047084 - * ``` * + * @public */ export class GetAuthorizationTokenCommand extends $Command .classBuilder< diff --git a/clients/client-ecr/src/commands/GetDownloadUrlForLayerCommand.ts b/clients/client-ecr/src/commands/GetDownloadUrlForLayerCommand.ts index bfe267357b8b5..d00e44e831765 100644 --- a/clients/client-ecr/src/commands/GetDownloadUrlForLayerCommand.ts +++ b/clients/client-ecr/src/commands/GetDownloadUrlForLayerCommand.ts @@ -88,6 +88,7 @@ export interface GetDownloadUrlForLayerCommandOutput extends GetDownloadUrlForLa * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class GetDownloadUrlForLayerCommand extends $Command diff --git a/clients/client-ecr/src/commands/GetLifecyclePolicyCommand.ts b/clients/client-ecr/src/commands/GetLifecyclePolicyCommand.ts index 05984a6e0f28c..065d888531757 100644 --- a/clients/client-ecr/src/commands/GetLifecyclePolicyCommand.ts +++ b/clients/client-ecr/src/commands/GetLifecyclePolicyCommand.ts @@ -77,6 +77,7 @@ export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyRespo * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class GetLifecyclePolicyCommand extends $Command diff --git a/clients/client-ecr/src/commands/GetLifecyclePolicyPreviewCommand.ts b/clients/client-ecr/src/commands/GetLifecyclePolicyPreviewCommand.ts index c826dc2198b15..0cdd395f229e7 100644 --- a/clients/client-ecr/src/commands/GetLifecyclePolicyPreviewCommand.ts +++ b/clients/client-ecr/src/commands/GetLifecyclePolicyPreviewCommand.ts @@ -105,6 +105,7 @@ export interface GetLifecyclePolicyPreviewCommandOutput extends GetLifecyclePoli * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class GetLifecyclePolicyPreviewCommand extends $Command diff --git a/clients/client-ecr/src/commands/GetRegistryPolicyCommand.ts b/clients/client-ecr/src/commands/GetRegistryPolicyCommand.ts index 5abc9fea03879..d83b6d0339cb1 100644 --- a/clients/client-ecr/src/commands/GetRegistryPolicyCommand.ts +++ b/clients/client-ecr/src/commands/GetRegistryPolicyCommand.ts @@ -67,6 +67,7 @@ export interface GetRegistryPolicyCommandOutput extends GetRegistryPolicyRespons * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class GetRegistryPolicyCommand extends $Command diff --git a/clients/client-ecr/src/commands/GetRegistryScanningConfigurationCommand.ts b/clients/client-ecr/src/commands/GetRegistryScanningConfigurationCommand.ts index b4fb58f3f5bcc..e88814f369294 100644 --- a/clients/client-ecr/src/commands/GetRegistryScanningConfigurationCommand.ts +++ b/clients/client-ecr/src/commands/GetRegistryScanningConfigurationCommand.ts @@ -82,6 +82,7 @@ export interface GetRegistryScanningConfigurationCommandOutput * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class GetRegistryScanningConfigurationCommand extends $Command diff --git a/clients/client-ecr/src/commands/GetRepositoryPolicyCommand.ts b/clients/client-ecr/src/commands/GetRepositoryPolicyCommand.ts index ab854626084af..18abc433a4f83 100644 --- a/clients/client-ecr/src/commands/GetRepositoryPolicyCommand.ts +++ b/clients/client-ecr/src/commands/GetRepositoryPolicyCommand.ts @@ -73,25 +73,35 @@ export interface GetRepositoryPolicyCommandOutput extends GetRepositoryPolicyRes * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* - * @public + * * @example To get the current policy for a repository * ```javascript * // This example obtains the repository policy for the repository named ubuntu. * const input = { - * "repositoryName": "ubuntu" + * repositoryName: "ubuntu" * }; * const command = new GetRepositoryPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "policyText": "{\n \"Version\" : \"2008-10-17\",\n \"Statement\" : [ {\n \"Sid\" : \"new statement\",\n \"Effect\" : \"Allow\",\n \"Principal\" : {\n \"AWS\" : \"arn:aws:iam::012345678901:role/CodeDeployDemo\"\n },\n\"Action\" : [ \"ecr:GetDownloadUrlForLayer\", \"ecr:BatchGetImage\", \"ecr:BatchCheckLayerAvailability\" ]\n } ]\n}", - * "registryId": "012345678901", - * "repositoryName": "ubuntu" + * policyText: `{ + * "Version" : "2008-10-17", + * "Statement" : [ { + * "Sid" : "new statement", + * "Effect" : "Allow", + * "Principal" : { + * "AWS" : "arn:aws:iam::012345678901:role/CodeDeployDemo" + * }, + * "Action" : [ "ecr:GetDownloadUrlForLayer", "ecr:BatchGetImage", "ecr:BatchCheckLayerAvailability" ] + * } ] + * }`, + * registryId: "012345678901", + * repositoryName: "ubuntu" * } * *\/ - * // example id: getrepositorypolicy-example-1470867669211 * ``` * + * @public */ export class GetRepositoryPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-ecr/src/commands/InitiateLayerUploadCommand.ts b/clients/client-ecr/src/commands/InitiateLayerUploadCommand.ts index ecf3af1f3f7ef..3b3a08aac8987 100644 --- a/clients/client-ecr/src/commands/InitiateLayerUploadCommand.ts +++ b/clients/client-ecr/src/commands/InitiateLayerUploadCommand.ts @@ -78,6 +78,7 @@ export interface InitiateLayerUploadCommandOutput extends InitiateLayerUploadRes * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class InitiateLayerUploadCommand extends $Command diff --git a/clients/client-ecr/src/commands/ListImagesCommand.ts b/clients/client-ecr/src/commands/ListImagesCommand.ts index 7ec2ca58ca1c0..8cbad81a6154e 100644 --- a/clients/client-ecr/src/commands/ListImagesCommand.ts +++ b/clients/client-ecr/src/commands/ListImagesCommand.ts @@ -84,28 +84,28 @@ export interface ListImagesCommandOutput extends ListImagesResponse, __MetadataB * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* - * @public + * * @example To list all images in a repository * ```javascript * // This example lists all of the images in the repository named ubuntu in the default registry in the current account. * const input = { - * "repositoryName": "ubuntu" + * repositoryName: "ubuntu" * }; * const command = new ListImagesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "imageIds": [ + * imageIds: [ * { - * "imageDigest": "sha256:764f63476bdff6d83a09ba2a818f0d35757063724a9ac3ba5019c56f74ebf42a", - * "imageTag": "precise" + * imageDigest: "sha256:764f63476bdff6d83a09ba2a818f0d35757063724a9ac3ba5019c56f74ebf42a", + * imageTag: "precise" * } * ] * } * *\/ - * // example id: listimages-example-1470868161594 * ``` * + * @public */ export class ListImagesCommand extends $Command .classBuilder< diff --git a/clients/client-ecr/src/commands/ListTagsForResourceCommand.ts b/clients/client-ecr/src/commands/ListTagsForResourceCommand.ts index 89e08a368e628..10ce6425ad86b 100644 --- a/clients/client-ecr/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ecr/src/commands/ListTagsForResourceCommand.ts @@ -71,6 +71,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-ecr/src/commands/PutAccountSettingCommand.ts b/clients/client-ecr/src/commands/PutAccountSettingCommand.ts index 9ce103c401ea0..78e45054efb1b 100644 --- a/clients/client-ecr/src/commands/PutAccountSettingCommand.ts +++ b/clients/client-ecr/src/commands/PutAccountSettingCommand.ts @@ -72,6 +72,7 @@ export interface PutAccountSettingCommandOutput extends PutAccountSettingRespons * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class PutAccountSettingCommand extends $Command diff --git a/clients/client-ecr/src/commands/PutImageCommand.ts b/clients/client-ecr/src/commands/PutImageCommand.ts index 04769571c444d..6150899344a75 100644 --- a/clients/client-ecr/src/commands/PutImageCommand.ts +++ b/clients/client-ecr/src/commands/PutImageCommand.ts @@ -114,6 +114,7 @@ export interface PutImageCommandOutput extends PutImageResponse, __MetadataBeare * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class PutImageCommand extends $Command diff --git a/clients/client-ecr/src/commands/PutImageScanningConfigurationCommand.ts b/clients/client-ecr/src/commands/PutImageScanningConfigurationCommand.ts index 7ad411ab0058f..1617650780c73 100644 --- a/clients/client-ecr/src/commands/PutImageScanningConfigurationCommand.ts +++ b/clients/client-ecr/src/commands/PutImageScanningConfigurationCommand.ts @@ -87,6 +87,7 @@ export interface PutImageScanningConfigurationCommandOutput * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class PutImageScanningConfigurationCommand extends $Command diff --git a/clients/client-ecr/src/commands/PutImageTagMutabilityCommand.ts b/clients/client-ecr/src/commands/PutImageTagMutabilityCommand.ts index 53f37bd12cc18..80cfb7f43d3e2 100644 --- a/clients/client-ecr/src/commands/PutImageTagMutabilityCommand.ts +++ b/clients/client-ecr/src/commands/PutImageTagMutabilityCommand.ts @@ -72,6 +72,7 @@ export interface PutImageTagMutabilityCommandOutput extends PutImageTagMutabilit * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class PutImageTagMutabilityCommand extends $Command diff --git a/clients/client-ecr/src/commands/PutLifecyclePolicyCommand.ts b/clients/client-ecr/src/commands/PutLifecyclePolicyCommand.ts index f2771b48f81a3..f36fe33395ee5 100644 --- a/clients/client-ecr/src/commands/PutLifecyclePolicyCommand.ts +++ b/clients/client-ecr/src/commands/PutLifecyclePolicyCommand.ts @@ -75,6 +75,7 @@ export interface PutLifecyclePolicyCommandOutput extends PutLifecyclePolicyRespo * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class PutLifecyclePolicyCommand extends $Command diff --git a/clients/client-ecr/src/commands/PutRegistryPolicyCommand.ts b/clients/client-ecr/src/commands/PutRegistryPolicyCommand.ts index 4aafd907ad56e..c42121582101b 100644 --- a/clients/client-ecr/src/commands/PutRegistryPolicyCommand.ts +++ b/clients/client-ecr/src/commands/PutRegistryPolicyCommand.ts @@ -68,6 +68,7 @@ export interface PutRegistryPolicyCommandOutput extends PutRegistryPolicyRespons * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class PutRegistryPolicyCommand extends $Command diff --git a/clients/client-ecr/src/commands/PutRegistryScanningConfigurationCommand.ts b/clients/client-ecr/src/commands/PutRegistryScanningConfigurationCommand.ts index 4e5cf1b21b5f1..6847c7f27578c 100644 --- a/clients/client-ecr/src/commands/PutRegistryScanningConfigurationCommand.ts +++ b/clients/client-ecr/src/commands/PutRegistryScanningConfigurationCommand.ts @@ -94,6 +94,7 @@ export interface PutRegistryScanningConfigurationCommandOutput * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class PutRegistryScanningConfigurationCommand extends $Command diff --git a/clients/client-ecr/src/commands/PutReplicationConfigurationCommand.ts b/clients/client-ecr/src/commands/PutReplicationConfigurationCommand.ts index bed55f78f5ae5..2fd243af84fd0 100644 --- a/clients/client-ecr/src/commands/PutReplicationConfigurationCommand.ts +++ b/clients/client-ecr/src/commands/PutReplicationConfigurationCommand.ts @@ -111,6 +111,7 @@ export interface PutReplicationConfigurationCommandOutput * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class PutReplicationConfigurationCommand extends $Command diff --git a/clients/client-ecr/src/commands/SetRepositoryPolicyCommand.ts b/clients/client-ecr/src/commands/SetRepositoryPolicyCommand.ts index 9a4bffaf20c3c..ffe83857a7588 100644 --- a/clients/client-ecr/src/commands/SetRepositoryPolicyCommand.ts +++ b/clients/client-ecr/src/commands/SetRepositoryPolicyCommand.ts @@ -73,6 +73,7 @@ export interface SetRepositoryPolicyCommandOutput extends SetRepositoryPolicyRes * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class SetRepositoryPolicyCommand extends $Command diff --git a/clients/client-ecr/src/commands/StartImageScanCommand.ts b/clients/client-ecr/src/commands/StartImageScanCommand.ts index 620e05e9daac3..c1af687f3d973 100644 --- a/clients/client-ecr/src/commands/StartImageScanCommand.ts +++ b/clients/client-ecr/src/commands/StartImageScanCommand.ts @@ -99,6 +99,7 @@ export interface StartImageScanCommandOutput extends StartImageScanResponse, __M * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class StartImageScanCommand extends $Command diff --git a/clients/client-ecr/src/commands/StartLifecyclePolicyPreviewCommand.ts b/clients/client-ecr/src/commands/StartLifecyclePolicyPreviewCommand.ts index 1e76aea5ac1cc..cd14d1f1103d2 100644 --- a/clients/client-ecr/src/commands/StartLifecyclePolicyPreviewCommand.ts +++ b/clients/client-ecr/src/commands/StartLifecyclePolicyPreviewCommand.ts @@ -85,6 +85,7 @@ export interface StartLifecyclePolicyPreviewCommandOutput * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class StartLifecyclePolicyPreviewCommand extends $Command diff --git a/clients/client-ecr/src/commands/TagResourceCommand.ts b/clients/client-ecr/src/commands/TagResourceCommand.ts index bae54fe593a1b..df1fd88ab0550 100644 --- a/clients/client-ecr/src/commands/TagResourceCommand.ts +++ b/clients/client-ecr/src/commands/TagResourceCommand.ts @@ -79,6 +79,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-ecr/src/commands/UntagResourceCommand.ts b/clients/client-ecr/src/commands/UntagResourceCommand.ts index a3cb567e7ef11..2cf387bc50d2b 100644 --- a/clients/client-ecr/src/commands/UntagResourceCommand.ts +++ b/clients/client-ecr/src/commands/UntagResourceCommand.ts @@ -75,6 +75,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-ecr/src/commands/UpdatePullThroughCacheRuleCommand.ts b/clients/client-ecr/src/commands/UpdatePullThroughCacheRuleCommand.ts index 8f07298c7d8e7..91871d7428a98 100644 --- a/clients/client-ecr/src/commands/UpdatePullThroughCacheRuleCommand.ts +++ b/clients/client-ecr/src/commands/UpdatePullThroughCacheRuleCommand.ts @@ -89,6 +89,7 @@ export interface UpdatePullThroughCacheRuleCommandOutput extends UpdatePullThrou * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class UpdatePullThroughCacheRuleCommand extends $Command diff --git a/clients/client-ecr/src/commands/UpdateRepositoryCreationTemplateCommand.ts b/clients/client-ecr/src/commands/UpdateRepositoryCreationTemplateCommand.ts index dc8fe8dd6848f..bbdb539b570f5 100644 --- a/clients/client-ecr/src/commands/UpdateRepositoryCreationTemplateCommand.ts +++ b/clients/client-ecr/src/commands/UpdateRepositoryCreationTemplateCommand.ts @@ -115,53 +115,8 @@ export interface UpdateRepositoryCreationTemplateCommandOutput * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* - * @public - * @example Update a repository creation template - * ```javascript - * // This example updates a repository creation template. - * const input = { - * "appliedFor": [ - * "REPLICATION" - * ], - * "prefix": "eng/test", - * "resourceTags": [ - * { - * "Key": "environment", - * "Value": "test" - * } - * ] - * }; - * const command = new UpdateRepositoryCreationTemplateCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "registryId": "012345678901", - * "repositoryCreationTemplate": { - * "appliedFor": [ - * "REPLICATION" - * ], - * "createdAt": "2023-12-16T17:29:02-07:00", - * "description": "Repos for testing images", - * "encryptionConfiguration": { - * "encryptionType": "AES256" - * }, - * "imageTagMutability": "MUTABLE", - * "lifecyclePolicy": "{\r\n \"rules\": [\r\n {\r\n \"rulePriority\": 1,\r\n \"description\": \"Expire images older than 14 days\",\r\n \"selection\": {\r\n \"tagStatus\": \"untagged\",\r\n \"countType\": \"sinceImagePushed\",\r\n \"countUnit\": \"days\",\r\n \"countNumber\": 14\r\n },\r\n \"action\": {\r\n \"type\": \"expire\"\r\n }\r\n }\r\n ]\r\n}", - * "prefix": "eng/test", - * "repositoryPolicy": "{\n \"Version\" : \"2012-10-17\",\n \"Statement\" : [ {\n \"Sid\" : \"LambdaECRPullPolicy\",\n \"Effect\" : \"Allow\",\n \"Principal\" : {\n \"Service\" : \"lambda.amazonaws.com\"\n },\n \"Action\" : \"ecr:BatchGetImage\"\n } ]\n}", - * "resourceTags": [ - * { - * "Key": "environment", - * "Value": "test" - * } - * ], - * "updatedAt": "2023-12-16T19:55:02-07:00" - * } - * } - * *\/ - * // example id: update-a-repository-creation-template-1713299261276 - * ``` * + * @public */ export class UpdateRepositoryCreationTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-ecr/src/commands/UploadLayerPartCommand.ts b/clients/client-ecr/src/commands/UploadLayerPartCommand.ts index 393f0521c2ca4..86f3e9506c57a 100644 --- a/clients/client-ecr/src/commands/UploadLayerPartCommand.ts +++ b/clients/client-ecr/src/commands/UploadLayerPartCommand.ts @@ -97,6 +97,7 @@ export interface UploadLayerPartCommandOutput extends UploadLayerPartResponse, _ * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class UploadLayerPartCommand extends $Command diff --git a/clients/client-ecr/src/commands/ValidatePullThroughCacheRuleCommand.ts b/clients/client-ecr/src/commands/ValidatePullThroughCacheRuleCommand.ts index 9bbe3eaef3ae8..3e407c404bd46 100644 --- a/clients/client-ecr/src/commands/ValidatePullThroughCacheRuleCommand.ts +++ b/clients/client-ecr/src/commands/ValidatePullThroughCacheRuleCommand.ts @@ -85,6 +85,7 @@ export interface ValidatePullThroughCacheRuleCommandOutput * @throws {@link ECRServiceException} *

Base exception class for all service exceptions from ECR service.

* + * * @public */ export class ValidatePullThroughCacheRuleCommand extends $Command diff --git a/clients/client-ecs/src/commands/CreateCapacityProviderCommand.ts b/clients/client-ecs/src/commands/CreateCapacityProviderCommand.ts index 38f5b5a33ce33..191fdfe82d42f 100644 --- a/clients/client-ecs/src/commands/CreateCapacityProviderCommand.ts +++ b/clients/client-ecs/src/commands/CreateCapacityProviderCommand.ts @@ -136,47 +136,47 @@ export interface CreateCapacityProviderCommandOutput extends CreateCapacityProvi * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To create a capacity provider * ```javascript * // This example creates a capacity provider that uses the specified Auto Scaling group MyASG and has managed scaling and manager termination protection enabled. * const input = { - * "name": "MyCapacityProvider", - * "autoScalingGroupProvider": { - * "autoScalingGroupArn": "arn:aws:autoscaling:us-east-1:123456789012:autoScalingGroup:57ffcb94-11f0-4d6d-bf60-3bac5EXAMPLE:autoScalingGroupName/MyASG", - * "managedScaling": { - * "status": "ENABLED", - * "targetCapacity": 100 + * autoScalingGroupProvider: { + * autoScalingGroupArn: "arn:aws:autoscaling:us-east-1:123456789012:autoScalingGroup:57ffcb94-11f0-4d6d-bf60-3bac5EXAMPLE:autoScalingGroupName/MyASG", + * managedScaling: { + * status: "ENABLED", + * targetCapacity: 100 * }, - * "managedTerminationProtection": "ENABLED" - * } + * managedTerminationProtection: "ENABLED" + * }, + * name: "MyCapacityProvider" * }; * const command = new CreateCapacityProviderCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "capacityProvider": { - * "name": "MyCapacityProvider", - * "autoScalingGroupProvider": { - * "autoScalingGroupArn": "arn:aws:autoscaling:us-east-1:132456789012:autoScalingGroup:57ffcb94-11f0-4d6d-bf60-3bac5EXAMPLE:autoScalingGroupName/MyASG", - * "managedScaling": { - * "instanceWarmupPeriod": 300, - * "maximumScalingStepSize": 10000, - * "minimumScalingStepSize": 1, - * "status": "ENABLED", - * "targetCapacity": 100 + * capacityProvider: { + * autoScalingGroupProvider: { + * autoScalingGroupArn: "arn:aws:autoscaling:us-east-1:132456789012:autoScalingGroup:57ffcb94-11f0-4d6d-bf60-3bac5EXAMPLE:autoScalingGroupName/MyASG", + * managedScaling: { + * instanceWarmupPeriod: 300, + * maximumScalingStepSize: 10000, + * minimumScalingStepSize: 1, + * status: "ENABLED", + * targetCapacity: 100 * }, - * "managedTerminationProtection": "ENABLED" + * managedTerminationProtection: "ENABLED" * }, - * "capacityProviderArn": "arn:aws:ecs:us-east-1:123456789012:capacity-provider/MyCapacityProvider", - * "status": "ACTIVE", - * "tags": [] + * capacityProviderArn: "arn:aws:ecs:us-east-1:123456789012:capacity-provider/MyCapacityProvider", + * name: "MyCapacityProvider", + * status: "ACTIVE", + * tags: [] * } * } * *\/ - * // example id: to-create-a-capacity-provider--1733861347945 * ``` * + * @public */ export class CreateCapacityProviderCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/CreateClusterCommand.ts b/clients/client-ecs/src/commands/CreateClusterCommand.ts index efdd21023134d..c0737c56af765 100644 --- a/clients/client-ecs/src/commands/CreateClusterCommand.ts +++ b/clients/client-ecs/src/commands/CreateClusterCommand.ts @@ -203,31 +203,31 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To create a new cluster * ```javascript * // This example creates a cluster in your default region. * const input = { - * "clusterName": "my_cluster" + * clusterName: "my_cluster" * }; * const command = new CreateClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "cluster": { - * "activeServicesCount": 0, - * "clusterArn": "arn:aws:ecs:us-east-1:012345678910:cluster/my_cluster", - * "clusterName": "my_cluster", - * "pendingTasksCount": 0, - * "registeredContainerInstancesCount": 0, - * "runningTasksCount": 0, - * "status": "ACTIVE" + * cluster: { + * activeServicesCount: 0, + * clusterArn: "arn:aws:ecs:us-east-1:012345678910:cluster/my_cluster", + * clusterName: "my_cluster", + * pendingTasksCount: 0, + * registeredContainerInstancesCount: 0, + * runningTasksCount: 0, + * status: "ACTIVE" * } * } * *\/ - * // example id: to-create-a-new-cluster-1472514079365 * ``` * + * @public */ export class CreateClusterCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/CreateServiceCommand.ts b/clients/client-ecs/src/commands/CreateServiceCommand.ts index 5094d89f43df3..aa5b415a38942 100644 --- a/clients/client-ecs/src/commands/CreateServiceCommand.ts +++ b/clients/client-ecs/src/commands/CreateServiceCommand.ts @@ -619,124 +619,123 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To create a new service * ```javascript * // This example creates a service in your default region called ``ecs-simple-service``. The service uses the ``hello_world`` task definition and it maintains 10 copies of that task. * const input = { - * "desiredCount": 10, - * "serviceName": "ecs-simple-service", - * "taskDefinition": "hello_world" + * desiredCount: 10, + * serviceName: "ecs-simple-service", + * taskDefinition: "hello_world" * }; * const command = new CreateServiceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "service": { - * "clusterArn": "arn:aws:ecs:us-east-1:012345678910:cluster/default", - * "createdAt": "2016-08-29T16:13:47.298Z", - * "deploymentConfiguration": { - * "maximumPercent": 200, - * "minimumHealthyPercent": 100 + * service: { + * clusterArn: "arn:aws:ecs:us-east-1:012345678910:cluster/default", + * createdAt: "2016-08-29T16:13:47.298Z", + * deploymentConfiguration: { + * maximumPercent: 200, + * minimumHealthyPercent: 100 * }, - * "deployments": [ + * deployments: [ * { - * "createdAt": "2016-08-29T16:13:47.298Z", - * "desiredCount": 10, - * "id": "ecs-svc/9223370564342348388", - * "pendingCount": 0, - * "runningCount": 0, - * "status": "PRIMARY", - * "taskDefinition": "arn:aws:ecs:us-east-1:012345678910:task-definition/hello_world:6", - * "updatedAt": "2016-08-29T16:13:47.298Z" + * createdAt: "2016-08-29T16:13:47.298Z", + * desiredCount: 10, + * id: "ecs-svc/9223370564342348388", + * pendingCount: 0, + * runningCount: 0, + * status: "PRIMARY", + * taskDefinition: "arn:aws:ecs:us-east-1:012345678910:task-definition/hello_world:6", + * updatedAt: "2016-08-29T16:13:47.298Z" * }, * { - * "createdAt": "2016-08-29T15:52:44.481Z", - * "desiredCount": 0, - * "id": "ecs-svc/9223370564343611322", - * "pendingCount": 0, - * "runningCount": 0, - * "status": "ACTIVE", - * "taskDefinition": "arn:aws:ecs:us-east-1:012345678910:task-definition/hello_world:6", - * "updatedAt": "2016-08-29T16:11:38.941Z" + * createdAt: "2016-08-29T15:52:44.481Z", + * desiredCount: 0, + * id: "ecs-svc/9223370564343611322", + * pendingCount: 0, + * runningCount: 0, + * status: "ACTIVE", + * taskDefinition: "arn:aws:ecs:us-east-1:012345678910:task-definition/hello_world:6", + * updatedAt: "2016-08-29T16:11:38.941Z" * } * ], - * "desiredCount": 10, - * "events": [], - * "loadBalancers": [], - * "pendingCount": 0, - * "runningCount": 0, - * "serviceArn": "arn:aws:ecs:us-east-1:012345678910:service/default/ecs-simple-service", - * "serviceName": "ecs-simple-service", - * "status": "ACTIVE", - * "taskDefinition": "arn:aws:ecs:us-east-1:012345678910:task-definition/default/hello_world:6" + * desiredCount: 10, + * events: [], + * loadBalancers: [], + * pendingCount: 0, + * runningCount: 0, + * serviceArn: "arn:aws:ecs:us-east-1:012345678910:service/default/ecs-simple-service", + * serviceName: "ecs-simple-service", + * status: "ACTIVE", + * taskDefinition: "arn:aws:ecs:us-east-1:012345678910:task-definition/default/hello_world:6" * } * } * *\/ - * // example id: to-create-a-new-service-1472512584282 * ``` * * @example To create a new service behind a load balancer * ```javascript * // This example creates a service in your default region called ``ecs-simple-service-elb``. The service uses the ``ecs-demo`` task definition and it maintains 10 copies of that task. You must reference an existing load balancer in the same region by its name. * const input = { - * "desiredCount": 10, - * "loadBalancers": [ + * desiredCount: 10, + * loadBalancers: [ * { - * "containerName": "simple-app", - * "containerPort": 80, - * "loadBalancerName": "EC2Contai-EcsElast-15DCDAURT3ZO2" + * containerName: "simple-app", + * containerPort: 80, + * loadBalancerName: "EC2Contai-EcsElast-15DCDAURT3ZO2" * } * ], - * "role": "ecsServiceRole", - * "serviceName": "ecs-simple-service-elb", - * "taskDefinition": "console-sample-app-static" + * role: "ecsServiceRole", + * serviceName: "ecs-simple-service-elb", + * taskDefinition: "console-sample-app-static" * }; * const command = new CreateServiceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "service": { - * "clusterArn": "arn:aws:ecs:us-east-1:012345678910:cluster/default", - * "createdAt": "2016-08-29T16:02:54.884Z", - * "deploymentConfiguration": { - * "maximumPercent": 200, - * "minimumHealthyPercent": 100 + * service: { + * clusterArn: "arn:aws:ecs:us-east-1:012345678910:cluster/default", + * createdAt: "2016-08-29T16:02:54.884Z", + * deploymentConfiguration: { + * maximumPercent: 200, + * minimumHealthyPercent: 100 * }, - * "deployments": [ + * deployments: [ * { - * "createdAt": "2016-08-29T16:02:54.884Z", - * "desiredCount": 10, - * "id": "ecs-svc/9223370564343000923", - * "pendingCount": 0, - * "runningCount": 0, - * "status": "PRIMARY", - * "taskDefinition": "arn:aws:ecs:us-east-1:012345678910:task-definition/console-sample-app-static:6", - * "updatedAt": "2016-08-29T16:02:54.884Z" + * createdAt: "2016-08-29T16:02:54.884Z", + * desiredCount: 10, + * id: "ecs-svc/9223370564343000923", + * pendingCount: 0, + * runningCount: 0, + * status: "PRIMARY", + * taskDefinition: "arn:aws:ecs:us-east-1:012345678910:task-definition/console-sample-app-static:6", + * updatedAt: "2016-08-29T16:02:54.884Z" * } * ], - * "desiredCount": 10, - * "events": [], - * "loadBalancers": [ + * desiredCount: 10, + * events: [], + * loadBalancers: [ * { - * "containerName": "simple-app", - * "containerPort": 80, - * "loadBalancerName": "EC2Contai-EcsElast-15DCDAURT3ZO2" + * containerName: "simple-app", + * containerPort: 80, + * loadBalancerName: "EC2Contai-EcsElast-15DCDAURT3ZO2" * } * ], - * "pendingCount": 0, - * "roleArn": "arn:aws:iam::012345678910:role/ecsServiceRole", - * "runningCount": 0, - * "serviceArn": "arn:aws:ecs:us-east-1:012345678910:service/default/ecs-simple-service-elb", - * "serviceName": "ecs-simple-service-elb", - * "status": "ACTIVE", - * "taskDefinition": "arn:aws:ecs:us-east-1:012345678910:task-definition/default/console-sample-app-static:6" + * pendingCount: 0, + * roleArn: "arn:aws:iam::012345678910:role/ecsServiceRole", + * runningCount: 0, + * serviceArn: "arn:aws:ecs:us-east-1:012345678910:service/default/ecs-simple-service-elb", + * serviceName: "ecs-simple-service-elb", + * status: "ACTIVE", + * taskDefinition: "arn:aws:ecs:us-east-1:012345678910:task-definition/default/console-sample-app-static:6" * } * } * *\/ - * // example id: to-create-a-new-service-behind-a-load-balancer-1472512484823 * ``` * + * @public */ export class CreateServiceCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/CreateTaskSetCommand.ts b/clients/client-ecs/src/commands/CreateTaskSetCommand.ts index b6feef93108c7..10cb72216c67d 100644 --- a/clients/client-ecs/src/commands/CreateTaskSetCommand.ts +++ b/clients/client-ecs/src/commands/CreateTaskSetCommand.ts @@ -229,65 +229,65 @@ export interface CreateTaskSetCommandOutput extends CreateTaskSetResponse, __Met * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To create a task set * ```javascript * // This example creates a task set in a service that uses the EXTERNAL deployment controller. * const input = { - * "cluster": "MyCluster", - * "networkConfiguration": { - * "awsvpcConfiguration": { - * "securityGroups": [ + * cluster: "MyCluster", + * networkConfiguration: { + * awsvpcConfiguration: { + * securityGroups: [ * "sg-12344321" * ], - * "subnets": [ + * subnets: [ * "subnet-12344321" * ] * } * }, - * "service": "MyService", - * "taskDefinition": "MyTaskDefinition:2" + * service: "MyService", + * taskDefinition: "MyTaskDefinition:2" * }; * const command = new CreateTaskSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "taskSet": { - * "computedDesiredCount": 0, - * "createdAt": 1557128360.711, - * "id": "ecs-svc/1234567890123456789", - * "launchType": "EC2", - * "loadBalancers": [], - * "networkConfiguration": { - * "awsvpcConfiguration": { - * "assignPublicIp": "DISABLED", - * "securityGroups": [ + * taskSet: { + * computedDesiredCount: 0, + * createdAt: 1.557128360711E9, + * id: "ecs-svc/1234567890123456789", + * launchType: "EC2", + * loadBalancers: [], + * networkConfiguration: { + * awsvpcConfiguration: { + * assignPublicIp: "DISABLED", + * securityGroups: [ * "sg-12344321" * ], - * "subnets": [ + * subnets: [ * "subnet-12344321" * ] * } * }, - * "pendingCount": 0, - * "runningCount": 0, - * "scale": { - * "value": 0, - * "unit": "PERCENT" + * pendingCount: 0, + * runningCount: 0, + * scale: { + * unit: "PERCENT", + * value: 0 * }, - * "serviceRegistries": [], - * "stabilityStatus": "STABILIZING", - * "stabilityStatusAt": 1557128360.711, - * "status": "ACTIVE", - * "taskDefinition": "arn:aws:ecs:us-west-2:123456789012:task-definition/MyTaskDefinition:2", - * "taskSetArn": "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789", - * "updatedAt": 1557128360.711 + * serviceRegistries: [], + * stabilityStatus: "STABILIZING", + * stabilityStatusAt: 1.557128360711E9, + * status: "ACTIVE", + * taskDefinition: "arn:aws:ecs:us-west-2:123456789012:task-definition/MyTaskDefinition:2", + * taskSetArn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789", + * updatedAt: 1.557128360711E9 * } * } * *\/ - * // example id: to-create-a-task-set-1733864092815 * ``` * + * @public */ export class CreateTaskSetCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DeleteAccountSettingCommand.ts b/clients/client-ecs/src/commands/DeleteAccountSettingCommand.ts index 89d8d6acdc83a..aed30112902c3 100644 --- a/clients/client-ecs/src/commands/DeleteAccountSettingCommand.ts +++ b/clients/client-ecs/src/commands/DeleteAccountSettingCommand.ts @@ -85,48 +85,47 @@ export interface DeleteAccountSettingCommandOutput extends DeleteAccountSettingR * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public - * @example To delete your account setting + * + * @example To delete the account settings for a specific IAM user or IAM role * ```javascript - * // This example deletes the account setting for your user for the specified resource type. + * // This example deletes the account setting for a specific IAM user or IAM role for the specified resource type. Only the root user can view or modify the account settings for another user. * const input = { - * "name": "serviceLongArnFormat" + * name: "containerInstanceLongArnFormat", + * principalArn: "arn:aws:iam:::user/principalName" * }; * const command = new DeleteAccountSettingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "setting": { - * "name": "serviceLongArnFormat", - * "value": "enabled", - * "principalArn": "arn:aws:iam:::user/principalName" + * setting: { + * name: "containerInstanceLongArnFormat", + * principalArn: "arn:aws:iam:::user/principalName", + * value: "enabled" * } * } * *\/ - * // example id: to-delete-the-account-setting-for-your-user-account-1549524548115 * ``` * - * @example To delete the account settings for a specific IAM user or IAM role + * @example To delete your account setting * ```javascript - * // This example deletes the account setting for a specific IAM user or IAM role for the specified resource type. Only the root user can view or modify the account settings for another user. + * // This example deletes the account setting for your user for the specified resource type. * const input = { - * "name": "containerInstanceLongArnFormat", - * "principalArn": "arn:aws:iam:::user/principalName" + * name: "serviceLongArnFormat" * }; * const command = new DeleteAccountSettingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "setting": { - * "name": "containerInstanceLongArnFormat", - * "value": "enabled", - * "principalArn": "arn:aws:iam:::user/principalName" + * setting: { + * name: "serviceLongArnFormat", + * principalArn: "arn:aws:iam:::user/principalName", + * value: "enabled" * } * } * *\/ - * // example id: to-delete-the-account-setting-for-a-specific-iam-user-or-iam-role-1549524612917 * ``` * + * @public */ export class DeleteAccountSettingCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DeleteAttributesCommand.ts b/clients/client-ecs/src/commands/DeleteAttributesCommand.ts index d2965001eec64..27480b3d99ccf 100644 --- a/clients/client-ecs/src/commands/DeleteAttributesCommand.ts +++ b/clients/client-ecs/src/commands/DeleteAttributesCommand.ts @@ -83,34 +83,34 @@ export interface DeleteAttributesCommandOutput extends DeleteAttributesResponse, * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To delete a custom attribute from an Amazon ECS instance * ```javascript * // This example deletes an attribute named stack from a container instance. * const input = { - * "attributes": [ + * attributes: [ * { - * "name": "stack", - * "targetId": "aws:ecs:us-west-2:130757420319:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34" + * name: "stack", + * targetId: "aws:ecs:us-west-2:130757420319:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34" * } * ] * }; * const command = new DeleteAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "attributes": [ + * attributes: [ * { - * "name": "stack", - * "value": "production", - * "targetId": "aws:ecs:us-west-2:130757420319:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34" + * name: "stack", + * targetId: "aws:ecs:us-west-2:130757420319:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34", + * value: "production" * } * ] * } * *\/ - * // example id: to-delete-a-custom-attribute-from-an-amazon-ecs-instance-1733867267541 * ``` * + * @public */ export class DeleteAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DeleteCapacityProviderCommand.ts b/clients/client-ecs/src/commands/DeleteCapacityProviderCommand.ts index 832b7f2a88d46..8332300d5e800 100644 --- a/clients/client-ecs/src/commands/DeleteCapacityProviderCommand.ts +++ b/clients/client-ecs/src/commands/DeleteCapacityProviderCommand.ts @@ -115,39 +115,39 @@ export interface DeleteCapacityProviderCommandOutput extends DeleteCapacityProvi * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To delete a specified capacity provider * ```javascript * // This example deletes a specified capacity provider. * const input = { - * "capacityProvider": "arn:aws:ecs:us-west-2:123456789012:capacity-provider/ExampleCapacityProvider" + * capacityProvider: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/ExampleCapacityProvider" * }; * const command = new DeleteCapacityProviderCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "capacityProvider": { - * "name": "ExampleCapacityProvider", - * "autoScalingGroupProvider": { - * "autoScalingGroupArn": "arn:aws:autoscaling:us-west-2:123456789012:autoScalingGroup:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111:autoScalingGroupName/MyAutoScalingGroup", - * "managedScaling": { - * "maximumScalingStepSize": 10000, - * "minimumScalingStepSize": 1, - * "status": "ENABLED", - * "targetCapacity": 100 + * capacityProvider: { + * autoScalingGroupProvider: { + * autoScalingGroupArn: "arn:aws:autoscaling:us-west-2:123456789012:autoScalingGroup:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111:autoScalingGroupName/MyAutoScalingGroup", + * managedScaling: { + * maximumScalingStepSize: 10000, + * minimumScalingStepSize: 1, + * status: "ENABLED", + * targetCapacity: 100 * }, - * "managedTerminationProtection": "DISABLED" + * managedTerminationProtection: "DISABLED" * }, - * "capacityProviderArn": "arn:aws:ecs:us-west-2:123456789012:capacity-provider/ExampleCapacityProvider", - * "status": "ACTIVE", - * "tags": [], - * "updateStatus": "DELETE_IN_PROGRESS" + * capacityProviderArn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/ExampleCapacityProvider", + * name: "ExampleCapacityProvider", + * status: "ACTIVE", + * tags: [], + * updateStatus: "DELETE_IN_PROGRESS" * } * } * *\/ - * // example id: to-delete-a-specified-capacity-provider-1733868702678 * ``` * + * @public */ export class DeleteCapacityProviderCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DeleteClusterCommand.ts b/clients/client-ecs/src/commands/DeleteClusterCommand.ts index df7460a1644b7..a9f879499d6d1 100644 --- a/clients/client-ecs/src/commands/DeleteClusterCommand.ts +++ b/clients/client-ecs/src/commands/DeleteClusterCommand.ts @@ -177,31 +177,31 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To delete an empty cluster * ```javascript * // This example deletes an empty cluster in your default region. * const input = { - * "cluster": "my_cluster" + * cluster: "my_cluster" * }; * const command = new DeleteClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "cluster": { - * "activeServicesCount": 0, - * "clusterArn": "arn:aws:ecs:us-east-1:012345678910:cluster/my_cluster", - * "clusterName": "my_cluster", - * "pendingTasksCount": 0, - * "registeredContainerInstancesCount": 0, - * "runningTasksCount": 0, - * "status": "INACTIVE" + * cluster: { + * activeServicesCount: 0, + * clusterArn: "arn:aws:ecs:us-east-1:012345678910:cluster/my_cluster", + * clusterName: "my_cluster", + * pendingTasksCount: 0, + * registeredContainerInstancesCount: 0, + * runningTasksCount: 0, + * status: "INACTIVE" * } * } * *\/ - * // example id: to-delete-an-empty-cluster-1472512705352 * ``` * + * @public */ export class DeleteClusterCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DeleteServiceCommand.ts b/clients/client-ecs/src/commands/DeleteServiceCommand.ts index c4aa4730c1e48..6b5e6edbdbea1 100644 --- a/clients/client-ecs/src/commands/DeleteServiceCommand.ts +++ b/clients/client-ecs/src/commands/DeleteServiceCommand.ts @@ -385,18 +385,21 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To delete a service * ```javascript * // This example deletes the my-http-service service. The service must have a desired count and running count of 0 before you can delete it. * const input = { - * "service": "my-http-service" + * service: "my-http-service" * }; * const command = new DeleteServiceCommand(input); - * await client.send(command); - * // example id: e8183e38-f86e-4390-b811-f74f30a6007d + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteServiceCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DeleteTaskDefinitionsCommand.ts b/clients/client-ecs/src/commands/DeleteTaskDefinitionsCommand.ts index faf636bb41083..84e44ebcfb19f 100644 --- a/clients/client-ecs/src/commands/DeleteTaskDefinitionsCommand.ts +++ b/clients/client-ecs/src/commands/DeleteTaskDefinitionsCommand.ts @@ -382,54 +382,54 @@ export interface DeleteTaskDefinitionsCommandOutput extends DeleteTaskDefinition * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To delete a task definition that has been deregistered * ```javascript * // This example deletes a specified deregistered task definition. * const input = { - * "taskDefinitions": [ + * taskDefinitions: [ * "Example-task-definition:1" * ] * }; * const command = new DeleteTaskDefinitionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "failures": [], - * "taskDefinitions": [ + * failures: [], + * taskDefinitions: [ * { - * "containerDefinitions": [ + * containerDefinitions: [ * { - * "name": "wave", - * "command": [ + * command: [ * "apt-get update; apt-get install stress; while true; do stress --cpu $(( RANDOM % 4 )) -t $(( RANDOM % 10 )); done" * ], - * "cpu": 50, - * "entryPoint": [ + * cpu: 50, + * entryPoint: [ * "bash", * "-c" * ], - * "environment": [], - * "essential": true, - * "image": "ubuntu", - * "memory": 100, - * "mountPoints": [], - * "portMappings": [], - * "volumesFrom": [] + * environment: [], + * essential: true, + * image: "ubuntu", + * memory: 100, + * mountPoints: [], + * name: "wave", + * portMappings: [], + * volumesFrom: [] * } * ], - * "family": "cpu-wave", - * "revision": 1, - * "status": "DELETE_IN_PROGRESS", - * "taskDefinitionArn": "arn:aws:ecs:us-east-1:012345678910:task-definition/Example-task-definition:1", - * "volumes": [] + * family: "cpu-wave", + * revision: 1, + * status: "DELETE_IN_PROGRESS", + * taskDefinitionArn: "arn:aws:ecs:us-east-1:012345678910:task-definition/Example-task-definition:1", + * volumes: [] * } * ] * } * *\/ - * // example id: to-delete-a-task-definition-that-has-been-deregistered-1733940790186 * ``` * + * @public */ export class DeleteTaskDefinitionsCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DeleteTaskSetCommand.ts b/clients/client-ecs/src/commands/DeleteTaskSetCommand.ts index 19c6249a4e92a..d9875e7954169 100644 --- a/clients/client-ecs/src/commands/DeleteTaskSetCommand.ts +++ b/clients/client-ecs/src/commands/DeleteTaskSetCommand.ts @@ -169,56 +169,56 @@ export interface DeleteTaskSetCommandOutput extends DeleteTaskSetResponse, __Met * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To delete a task set within a service that uses the EXTERNAL deployment controller type * ```javascript * // This example deletes a task set and uses the force flag to force deletion if it hasn't scaled to zero. * const input = { - * "cluster": "MyCluster", - * "force": true, - * "service": "MyService", - * "taskSet": "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789" + * cluster: "MyCluster", + * force: true, + * service: "MyService", + * taskSet: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789" * }; * const command = new DeleteTaskSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "taskSet": { - * "computedDesiredCount": 0, - * "createdAt": 1557130260.276, - * "id": "ecs-svc/1234567890123456789", - * "launchType": "EC2", - * "loadBalancers": [], - * "networkConfiguration": { - * "awsvpcConfiguration": { - * "assignPublicIp": "DISABLED", - * "securityGroups": [ + * taskSet: { + * computedDesiredCount: 0, + * createdAt: 1.557130260276E9, + * id: "ecs-svc/1234567890123456789", + * launchType: "EC2", + * loadBalancers: [], + * networkConfiguration: { + * awsvpcConfiguration: { + * assignPublicIp: "DISABLED", + * securityGroups: [ * "sg-12345678" * ], - * "subnets": [ + * subnets: [ * "subnet-12345678" * ] * } * }, - * "pendingCount": 0, - * "runningCount": 0, - * "scale": { - * "value": 0, - * "unit": "PERCENT" + * pendingCount: 0, + * runningCount: 0, + * scale: { + * unit: "PERCENT", + * value: 0 * }, - * "serviceRegistries": [], - * "stabilityStatus": "STABILIZING", - * "stabilityStatusAt": 1557130290.707, - * "status": "DRAINING", - * "taskDefinition": "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2", - * "taskSetArn": "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789", - * "updatedAt": 1557130290.707 + * serviceRegistries: [], + * stabilityStatus: "STABILIZING", + * stabilityStatusAt: 1.557130290707E9, + * status: "DRAINING", + * taskDefinition: "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2", + * taskSetArn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789", + * updatedAt: 1.557130290707E9 * } * } * *\/ - * // example id: to-delete-a-task-set-within-a-service-that-uses-the-external-deployment-controller-type-1733949897807 * ``` * + * @public */ export class DeleteTaskSetCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DeregisterContainerInstanceCommand.ts b/clients/client-ecs/src/commands/DeregisterContainerInstanceCommand.ts index 54990e8e9629e..99c32958d1539 100644 --- a/clients/client-ecs/src/commands/DeregisterContainerInstanceCommand.ts +++ b/clients/client-ecs/src/commands/DeregisterContainerInstanceCommand.ts @@ -177,20 +177,23 @@ export interface DeregisterContainerInstanceCommandOutput * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To deregister a container instance from a cluster * ```javascript * // This example deregisters a container instance from the specified cluster in your default region. If there are still tasks running on the container instance, you must either stop those tasks before deregistering, or use the force option. * const input = { - * "cluster": "default", - * "containerInstance": "container_instance_UUID", - * "force": true + * cluster: "default", + * containerInstance: "container_instance_UUID", + * force: true * }; * const command = new DeregisterContainerInstanceCommand(input); - * await client.send(command); - * // example id: bf624927-cf64-4f4b-8b7e-c024a4e682f6 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeregisterContainerInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DeregisterTaskDefinitionCommand.ts b/clients/client-ecs/src/commands/DeregisterTaskDefinitionCommand.ts index 4c0e3526ec4da..b45915e39cf2f 100644 --- a/clients/client-ecs/src/commands/DeregisterTaskDefinitionCommand.ts +++ b/clients/client-ecs/src/commands/DeregisterTaskDefinitionCommand.ts @@ -366,46 +366,46 @@ export interface DeregisterTaskDefinitionCommandOutput extends DeregisterTaskDef * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To deregister a revision of a task definition * ```javascript * // This example deregisters the first revision of the curler task definition * const input = { - * "taskDefinition": "curler:1" + * taskDefinition: "curler:1" * }; * const command = new DeregisterTaskDefinitionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "taskDefinition": { - * "containerDefinitions": [ + * taskDefinition: { + * containerDefinitions: [ * { - * "name": "curler", - * "command": [ + * command: [ * "curl -v http://example.com/" * ], - * "cpu": 100, - * "entryPoint": [], - * "environment": [], - * "essential": true, - * "image": "curl:latest", - * "memory": 256, - * "mountPoints": [], - * "portMappings": [], - * "volumesFrom": [] + * cpu: 100, + * entryPoint: [], + * environment: [], + * essential: true, + * image: "curl:latest", + * memory: 256, + * mountPoints: [], + * name: "curler", + * portMappings: [], + * volumesFrom: [] * } * ], - * "family": "curler", - * "revision": 1, - * "status": "INACTIVE", - * "taskDefinitionArn": "arn:aws:ecs:us-west-2:123456789012:task-definition/curler:1", - * "volumes": [] + * family: "curler", + * revision: 1, + * status: "INACTIVE", + * taskDefinitionArn: "arn:aws:ecs:us-west-2:123456789012:task-definition/curler:1", + * volumes: [] * } * } * *\/ - * // example id: to-deregister-a-revision-of-a-task-definition-1733950214421 * ``` * + * @public */ export class DeregisterTaskDefinitionCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DescribeCapacityProvidersCommand.ts b/clients/client-ecs/src/commands/DescribeCapacityProvidersCommand.ts index c5850c25d60f2..49da434080e2d 100644 --- a/clients/client-ecs/src/commands/DescribeCapacityProvidersCommand.ts +++ b/clients/client-ecs/src/commands/DescribeCapacityProvidersCommand.ts @@ -119,93 +119,92 @@ export interface DescribeCapacityProvidersCommandOutput extends DescribeCapacity * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public - * @example To describe all capacity providers + * + * @example To describe a specific capacity provider * ```javascript - * // This example retrieves details about all capacity providers. - * const input = {}; + * // This example retrieves details about the capacity provider MyCapacityProvider + * const input = { + * capacityProviders: [ + * "MyCapacityProvider" + * ], + * include: [ + * "TAGS" + * ] + * }; * const command = new DescribeCapacityProvidersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "capacityProviders": [ + * capacityProviders: [ * { - * "name": "MyCapacityProvider", - * "autoScalingGroupProvider": { - * "autoScalingGroupArn": "arn:aws:autoscaling:us-west-2:123456789012:autoScalingGroup:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111:autoScalingGroupName/MyAutoScalingGroup", - * "managedScaling": { - * "maximumScalingStepSize": 1000, - * "minimumScalingStepSize": 1, - * "status": "ENABLED", - * "targetCapacity": 100 + * autoScalingGroupProvider: { + * autoScalingGroupArn: "arn:aws:autoscaling:us-west-2:123456789012:autoScalingGroup:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111:autoScalingGroupName/MyAutoScalingGroup", + * managedScaling: { + * maximumScalingStepSize: 1000, + * minimumScalingStepSize: 1, + * status: "ENABLED", + * targetCapacity: 100 * }, - * "managedTerminationProtection": "ENABLED" + * managedTerminationProtection: "ENABLED" * }, - * "capacityProviderArn": "arn:aws:ecs:us-west-2:123456789012:capacity-provider/MyCapacityProvider", - * "status": "ACTIVE", - * "tags": [] - * }, - * { - * "name": "FARGATE", - * "capacityProviderArn": "arn:aws:ecs:us-west-2:123456789012:capacity-provider/FARGATE", - * "status": "ACTIVE", - * "tags": [] - * }, - * { - * "name": "FARGATE_SPOT", - * "capacityProviderArn": "arn:aws:ecs:us-west-2:123456789012:capacity-provider/FARGATE_SPOT", - * "status": "ACTIVE", - * "tags": [] + * capacityProviderArn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/MyCapacityProvider", + * name: "MyCapacityProvider", + * status: "ACTIVE", + * tags: [ + * { + * key: "environment", + * value: "production" + * } + * ] * } * ] * } * *\/ - * // example id: to-describe-all-capacity-providers-1733951199913 * ``` * - * @example To describe a specific capacity provider + * @example To describe all capacity providers * ```javascript - * // This example retrieves details about the capacity provider MyCapacityProvider - * const input = { - * "capacityProviders": [ - * "MyCapacityProvider" - * ], - * "include": [ - * "TAGS" - * ] - * }; + * // This example retrieves details about all capacity providers. + * const input = { /* empty *\/ }; * const command = new DescribeCapacityProvidersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "capacityProviders": [ + * capacityProviders: [ * { - * "name": "MyCapacityProvider", - * "autoScalingGroupProvider": { - * "autoScalingGroupArn": "arn:aws:autoscaling:us-west-2:123456789012:autoScalingGroup:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111:autoScalingGroupName/MyAutoScalingGroup", - * "managedScaling": { - * "maximumScalingStepSize": 1000, - * "minimumScalingStepSize": 1, - * "status": "ENABLED", - * "targetCapacity": 100 + * autoScalingGroupProvider: { + * autoScalingGroupArn: "arn:aws:autoscaling:us-west-2:123456789012:autoScalingGroup:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111:autoScalingGroupName/MyAutoScalingGroup", + * managedScaling: { + * maximumScalingStepSize: 1000, + * minimumScalingStepSize: 1, + * status: "ENABLED", + * targetCapacity: 100 * }, - * "managedTerminationProtection": "ENABLED" + * managedTerminationProtection: "ENABLED" * }, - * "capacityProviderArn": "arn:aws:ecs:us-west-2:123456789012:capacity-provider/MyCapacityProvider", - * "status": "ACTIVE", - * "tags": [ - * { - * "key": "environment", - * "value": "production" - * } - * ] + * capacityProviderArn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/MyCapacityProvider", + * name: "MyCapacityProvider", + * status: "ACTIVE", + * tags: [] + * }, + * { + * capacityProviderArn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/FARGATE", + * name: "FARGATE", + * status: "ACTIVE", + * tags: [] + * }, + * { + * capacityProviderArn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/FARGATE_SPOT", + * name: "FARGATE_SPOT", + * status: "ACTIVE", + * tags: [] * } * ] * } * *\/ - * // example id: to-describe-a-specific-capacity-provider-1733951378688 * ``` * + * @public */ export class DescribeCapacityProvidersCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DescribeClustersCommand.ts b/clients/client-ecs/src/commands/DescribeClustersCommand.ts index 54dbc61d30a7b..d4f2fda4c1fce 100644 --- a/clients/client-ecs/src/commands/DescribeClustersCommand.ts +++ b/clients/client-ecs/src/commands/DescribeClustersCommand.ts @@ -163,32 +163,32 @@ export interface DescribeClustersCommandOutput extends DescribeClustersResponse, * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To describe a cluster * ```javascript * // This example provides a description of the specified cluster in your default region. * const input = { - * "clusters": [ + * clusters: [ * "default" * ] * }; * const command = new DescribeClustersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "clusters": [ + * clusters: [ * { - * "clusterArn": "arn:aws:ecs:us-east-1:aws_account_id:cluster/default", - * "clusterName": "default", - * "status": "ACTIVE" + * clusterArn: "arn:aws:ecs:us-east-1:aws_account_id:cluster/default", + * clusterName: "default", + * status: "ACTIVE" * } * ], - * "failures": [] + * failures: [] * } * *\/ - * // example id: ba88d100-9672-4231-80da-a4bd210bf728 * ``` * + * @public */ export class DescribeClustersCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DescribeContainerInstancesCommand.ts b/clients/client-ecs/src/commands/DescribeContainerInstancesCommand.ts index 55cc8d36b9e2e..369b47cb459ed 100644 --- a/clients/client-ecs/src/commands/DescribeContainerInstancesCommand.ts +++ b/clients/client-ecs/src/commands/DescribeContainerInstancesCommand.ts @@ -176,95 +176,95 @@ export interface DescribeContainerInstancesCommandOutput extends DescribeContain * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To describe container instance * ```javascript * // This example provides a description of the specified container instance in your default region, using the container instance UUID as an identifier. * const input = { - * "cluster": "default", - * "containerInstances": [ + * cluster: "default", + * containerInstances: [ * "f2756532-8f13-4d53-87c9-aed50dc94cd7" * ] * }; * const command = new DescribeContainerInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "containerInstances": [ + * containerInstances: [ * { - * "agentConnected": true, - * "containerInstanceArn": "arn:aws:ecs:us-east-1:012345678910:container-instance/default/f2756532-8f13-4d53-87c9-aed50dc94cd7", - * "ec2InstanceId": "i-807f3249", - * "pendingTasksCount": 0, - * "registeredResources": [ + * agentConnected: true, + * containerInstanceArn: "arn:aws:ecs:us-east-1:012345678910:container-instance/default/f2756532-8f13-4d53-87c9-aed50dc94cd7", + * ec2InstanceId: "i-807f3249", + * pendingTasksCount: 0, + * registeredResources: [ * { - * "name": "CPU", - * "type": "INTEGER", - * "doubleValue": 0, - * "integerValue": 2048, - * "longValue": 0 + * doubleValue: 0.0, + * integerValue: 2048, + * longValue: 0, + * name: "CPU", + * type: "INTEGER" * }, * { - * "name": "MEMORY", - * "type": "INTEGER", - * "doubleValue": 0, - * "integerValue": 3768, - * "longValue": 0 + * doubleValue: 0.0, + * integerValue: 3768, + * longValue: 0, + * name: "MEMORY", + * type: "INTEGER" * }, * { - * "name": "PORTS", - * "type": "STRINGSET", - * "doubleValue": 0, - * "integerValue": 0, - * "longValue": 0, - * "stringSetValue": [ + * doubleValue: 0.0, + * integerValue: 0, + * longValue: 0, + * name: "PORTS", + * stringSetValue: [ * "2376", * "22", * "51678", * "2375" - * ] + * ], + * type: "STRINGSET" * } * ], - * "remainingResources": [ + * remainingResources: [ * { - * "name": "CPU", - * "type": "INTEGER", - * "doubleValue": 0, - * "integerValue": 1948, - * "longValue": 0 + * doubleValue: 0.0, + * integerValue: 1948, + * longValue: 0, + * name: "CPU", + * type: "INTEGER" * }, * { - * "name": "MEMORY", - * "type": "INTEGER", - * "doubleValue": 0, - * "integerValue": 3668, - * "longValue": 0 + * doubleValue: 0.0, + * integerValue: 3668, + * longValue: 0, + * name: "MEMORY", + * type: "INTEGER" * }, * { - * "name": "PORTS", - * "type": "STRINGSET", - * "doubleValue": 0, - * "integerValue": 0, - * "longValue": 0, - * "stringSetValue": [ + * doubleValue: 0.0, + * integerValue: 0, + * longValue: 0, + * name: "PORTS", + * stringSetValue: [ * "2376", * "22", * "80", * "51678", * "2375" - * ] + * ], + * type: "STRINGSET" * } * ], - * "runningTasksCount": 1, - * "status": "ACTIVE" + * runningTasksCount: 1, + * status: "ACTIVE" * } * ], - * "failures": [] + * failures: [] * } * *\/ - * // example id: c8f439de-eb27-4269-8ca7-2c0a7ba75ab0 * ``` * + * @public */ export class DescribeContainerInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DescribeServiceDeploymentsCommand.ts b/clients/client-ecs/src/commands/DescribeServiceDeploymentsCommand.ts index ade5ae37ef604..6412b7adfcd73 100644 --- a/clients/client-ecs/src/commands/DescribeServiceDeploymentsCommand.ts +++ b/clients/client-ecs/src/commands/DescribeServiceDeploymentsCommand.ts @@ -164,48 +164,8 @@ export interface DescribeServiceDeploymentsCommandOutput extends DescribeService * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public - * @example To describe a service deployment - * ```javascript - * // This example describes a service deployment for the service sd-example in the example cluster. - * const input = { - * "serviceDeploymentArns": [ - * "arn:aws:ecs:us-west-2:123456789012:service-deployment/example/sd-example/NCWGC2ZR-taawPAYrIaU5" - * ] - * }; - * const command = new DescribeServiceDeploymentsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "failures": [], - * "serviceDeployments": [ - * { - * "clusterArn": "arn:aws:ecs:us-west-2:123456789012:cluster/example", - * "deploymentConfiguration": { - * "deploymentCircuitBreaker": { - * "enable": false, - * "rollback": false - * }, - * "maximumPercent": 200, - * "minimumHealthyPercent": 100 - * }, - * "serviceArn": "arn:aws:ecs:us-west-2:123456789012:service/example/sd-example", - * "serviceDeploymentArn": "arn:aws:ecs:us-west-2:123456789012:service-deployment/example/sd-example/NCWGC2ZR-taawPAYrIaU5", - * "status": "PENDING", - * "targetServiceRevision": { - * "arn": "arn:aws:ecs:us-west-2:123456789012:service-revision/example/sd-example/4980306466373577095", - * "pendingTaskCount": 0, - * "requestedTaskCount": 0, - * "runningTaskCount": 0 - * }, - * "updatedAt": "2024-09-10T16:49:35.572000+00:00" - * } - * ] - * } - * *\/ - * // example id: to-describe-a-service-deployment--1733954961143 - * ``` * + * @public */ export class DescribeServiceDeploymentsCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DescribeServiceRevisionsCommand.ts b/clients/client-ecs/src/commands/DescribeServiceRevisionsCommand.ts index 401e1a388e885..52955935cad94 100644 --- a/clients/client-ecs/src/commands/DescribeServiceRevisionsCommand.ts +++ b/clients/client-ecs/src/commands/DescribeServiceRevisionsCommand.ts @@ -235,48 +235,8 @@ export interface DescribeServiceRevisionsCommandOutput extends DescribeServiceRe * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public - * @example To describe a service revision - * ```javascript - * // This example describes a service revision with the specified ARN - * const input = { - * "serviceRevisionArns": [ - * "arn:aws:ecs:us-west-2:123456789012:service-revision/testc/sd1/4980306466373577095" - * ] - * }; - * const command = new DescribeServiceRevisionsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "failures": [], - * "serviceRevisions": [ - * { - * "clusterArn": "arn:aws:ecs:us-west-2:123456789012:cluster/example", - * "createdAt": "2024-09-10T16:49:26.388000+00:00", - * "launchType": "FARGATE", - * "networkConfiguration": { - * "awsvpcConfiguration": { - * "assignPublicIp": "ENABLED", - * "securityGroups": [ - * "sg-09605d60a6bc1b296" - * ], - * "subnets": [ - * "subnet-0a4040e73895f04e1" - * ] - * } - * }, - * "platformFamily": "DockerLinux", - * "platformVersion": "1.4.0", - * "serviceArn": "arn:aws:ecs:us-west-2:123456789012:service/example/sd-example", - * "serviceRevisionArn": "arn:aws:ecs:us-west-2:123456789012:service-revision/example/sd-example/4980306466373577095", - * "taskDefinition": "arn:aws:ecs:us-west-2:123456789012:task-definition/large-ngingx:1" - * } - * ] - * } - * *\/ - * // example id: to-describe-a-service-revision--1734033215738 - * ``` * + * @public */ export class DescribeServiceRevisionsCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DescribeServicesCommand.ts b/clients/client-ecs/src/commands/DescribeServicesCommand.ts index 6003bd5422832..caaf981cf3702 100644 --- a/clients/client-ecs/src/commands/DescribeServicesCommand.ts +++ b/clients/client-ecs/src/commands/DescribeServicesCommand.ts @@ -374,62 +374,62 @@ export interface DescribeServicesCommandOutput extends DescribeServicesResponse, * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To describe a service * ```javascript * // This example provides descriptive information about the service named ``ecs-simple-service``. * const input = { - * "services": [ + * services: [ * "ecs-simple-service" * ] * }; * const command = new DescribeServicesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "failures": [], - * "services": [ + * failures: [], + * services: [ * { - * "clusterArn": "arn:aws:ecs:us-east-1:012345678910:cluster/default", - * "createdAt": "2016-08-29T16:25:52.130Z", - * "deploymentConfiguration": { - * "maximumPercent": 200, - * "minimumHealthyPercent": 100 + * clusterArn: "arn:aws:ecs:us-east-1:012345678910:cluster/default", + * createdAt: "2016-08-29T16:25:52.130Z", + * deploymentConfiguration: { + * maximumPercent: 200, + * minimumHealthyPercent: 100 * }, - * "deployments": [ + * deployments: [ * { - * "createdAt": "2016-08-29T16:25:52.130Z", - * "desiredCount": 1, - * "id": "ecs-svc/9223370564341623665", - * "pendingCount": 0, - * "runningCount": 0, - * "status": "PRIMARY", - * "taskDefinition": "arn:aws:ecs:us-east-1:012345678910:task-definition/hello_world:6", - * "updatedAt": "2016-08-29T16:25:52.130Z" + * createdAt: "2016-08-29T16:25:52.130Z", + * desiredCount: 1, + * id: "ecs-svc/9223370564341623665", + * pendingCount: 0, + * runningCount: 0, + * status: "PRIMARY", + * taskDefinition: "arn:aws:ecs:us-east-1:012345678910:task-definition/hello_world:6", + * updatedAt: "2016-08-29T16:25:52.130Z" * } * ], - * "desiredCount": 1, - * "events": [ + * desiredCount: 1, + * events: [ * { - * "createdAt": "2016-08-29T16:25:58.520Z", - * "id": "38c285e5-d335-4b68-8b15-e46dedc8e88d", - * "message": "(service ecs-simple-service) was unable to place a task because no container instance met all of its requirements. The closest matching (container-instance 3f4de1c5-ffdd-4954-af7e-75b4be0c8841) is already using a port required by your task. For more information, see the Troubleshooting section of the Amazon ECS Developer Guide." + * createdAt: "2016-08-29T16:25:58.520Z", + * id: "38c285e5-d335-4b68-8b15-e46dedc8e88d", + * message: "(service ecs-simple-service) was unable to place a task because no container instance met all of its requirements. The closest matching (container-instance 3f4de1c5-ffdd-4954-af7e-75b4be0c8841) is already using a port required by your task. For more information, see the Troubleshooting section of the Amazon ECS Developer Guide." * } * ], - * "loadBalancers": [], - * "pendingCount": 0, - * "runningCount": 0, - * "serviceArn": "arn:aws:ecs:us-east-1:012345678910:service/default/ecs-simple-service", - * "serviceName": "ecs-simple-service", - * "status": "ACTIVE", - * "taskDefinition": "arn:aws:ecs:us-east-1:012345678910:task-definition/default/hello_world:6" + * loadBalancers: [], + * pendingCount: 0, + * runningCount: 0, + * serviceArn: "arn:aws:ecs:us-east-1:012345678910:service/default/ecs-simple-service", + * serviceName: "ecs-simple-service", + * status: "ACTIVE", + * taskDefinition: "arn:aws:ecs:us-east-1:012345678910:task-definition/default/hello_world:6" * } * ] * } * *\/ - * // example id: to-describe-a-service-1472513256350 * ``` * + * @public */ export class DescribeServicesCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DescribeTaskDefinitionCommand.ts b/clients/client-ecs/src/commands/DescribeTaskDefinitionCommand.ts index d88daec4bdcde..dc820c9ff748b 100644 --- a/clients/client-ecs/src/commands/DescribeTaskDefinitionCommand.ts +++ b/clients/client-ecs/src/commands/DescribeTaskDefinitionCommand.ts @@ -365,65 +365,65 @@ export interface DescribeTaskDefinitionCommandOutput extends DescribeTaskDefinit * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To describe a task definition * ```javascript * // This example provides a description of the specified task definition. * const input = { - * "taskDefinition": "hello_world:8" + * taskDefinition: "hello_world:8" * }; * const command = new DescribeTaskDefinitionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "taskDefinition": { - * "containerDefinitions": [ + * taskDefinition: { + * containerDefinitions: [ * { - * "name": "wordpress", - * "cpu": 10, - * "environment": [], - * "essential": true, - * "image": "wordpress", - * "links": [ + * cpu: 10, + * environment: [], + * essential: true, + * image: "wordpress", + * links: [ * "mysql" * ], - * "memory": 500, - * "mountPoints": [], - * "portMappings": [ + * memory: 500, + * mountPoints: [], + * name: "wordpress", + * portMappings: [ * { - * "containerPort": 80, - * "hostPort": 80 + * containerPort: 80, + * hostPort: 80 * } * ], - * "volumesFrom": [] + * volumesFrom: [] * }, * { - * "name": "mysql", - * "cpu": 10, - * "environment": [ + * cpu: 10, + * environment: [ * { - * "name": "MYSQL_ROOT_PASSWORD", - * "value": "password" + * name: "MYSQL_ROOT_PASSWORD", + * value: "password" * } * ], - * "essential": true, - * "image": "mysql", - * "memory": 500, - * "mountPoints": [], - * "portMappings": [], - * "volumesFrom": [] + * essential: true, + * image: "mysql", + * memory: 500, + * mountPoints: [], + * name: "mysql", + * portMappings: [], + * volumesFrom: [] * } * ], - * "family": "hello_world", - * "revision": 8, - * "taskDefinitionArn": "arn:aws:ecs:us-east-1::task-definition/hello_world:8", - * "volumes": [] + * family: "hello_world", + * revision: 8, + * taskDefinitionArn: "arn:aws:ecs:us-east-1::task-definition/hello_world:8", + * volumes: [] * } * } * *\/ - * // example id: 4c21eeb1-f1da-4a08-8c44-297fc8d0ea88 * ``` * + * @public */ export class DescribeTaskDefinitionCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DescribeTaskSetsCommand.ts b/clients/client-ecs/src/commands/DescribeTaskSetsCommand.ts index 5ca77b8323ff0..c98bf776daf36 100644 --- a/clients/client-ecs/src/commands/DescribeTaskSetsCommand.ts +++ b/clients/client-ecs/src/commands/DescribeTaskSetsCommand.ts @@ -180,60 +180,60 @@ export interface DescribeTaskSetsCommandOutput extends DescribeTaskSetsResponse, * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To describe a task set * ```javascript * // This example describes a task set in service MyService that uses an EXTERNAL deployment controller. * const input = { - * "cluster": "MyCluster", - * "service": "MyService", - * "taskSets": [ + * cluster: "MyCluster", + * service: "MyService", + * taskSets: [ * "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789" * ] * }; * const command = new DescribeTaskSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "failures": [], - * "taskSets": [ + * failures: [], + * taskSets: [ * { - * "computedDesiredCount": 0, - * "createdAt": 1557207715.195, - * "id": "ecs-svc/1234567890123456789", - * "launchType": "EC2", - * "loadBalancers": [], - * "networkConfiguration": { - * "awsvpcConfiguration": { - * "assignPublicIp": "DISABLED", - * "securityGroups": [ + * computedDesiredCount: 0, + * createdAt: 1.557207715195E9, + * id: "ecs-svc/1234567890123456789", + * launchType: "EC2", + * loadBalancers: [], + * networkConfiguration: { + * awsvpcConfiguration: { + * assignPublicIp: "DISABLED", + * securityGroups: [ * "sg-1234431" * ], - * "subnets": [ + * subnets: [ * "subnet-12344321" * ] * } * }, - * "pendingCount": 0, - * "runningCount": 0, - * "scale": { - * "value": 0, - * "unit": "PERCENT" + * pendingCount: 0, + * runningCount: 0, + * scale: { + * unit: "PERCENT", + * value: 0 * }, - * "serviceRegistries": [], - * "stabilityStatus": "STEADY_STATE", - * "stabilityStatusAt": 1557207740.014, - * "status": "ACTIVE", - * "taskDefinition": "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2", - * "taskSetArn": "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789", - * "updatedAt": 1557207740.014 + * serviceRegistries: [], + * stabilityStatus: "STEADY_STATE", + * stabilityStatusAt: 1.557207740014E9, + * status: "ACTIVE", + * taskDefinition: "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2", + * taskSetArn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789", + * updatedAt: 1.557207740014E9 * } * ] * } * *\/ - * // example id: to-describe-a-task-set--1734035629507 * ``` * + * @public */ export class DescribeTaskSetsCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DescribeTasksCommand.ts b/clients/client-ecs/src/commands/DescribeTasksCommand.ts index 8150ea69d5d9d..68a24c81a0b1d 100644 --- a/clients/client-ecs/src/commands/DescribeTasksCommand.ts +++ b/clients/client-ecs/src/commands/DescribeTasksCommand.ts @@ -259,58 +259,58 @@ export interface DescribeTasksCommandOutput extends DescribeTasksResponse, __Met * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To describe a task * ```javascript * // This example provides a description of the specified task, using the task UUID as an identifier. * const input = { - * "tasks": [ + * tasks: [ * "c5cba4eb-5dad-405e-96db-71ef8eefe6a8" * ] * }; * const command = new DescribeTasksCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "failures": [], - * "tasks": [ + * failures: [], + * tasks: [ * { - * "clusterArn": "arn:aws:ecs:::cluster/default", - * "containerInstanceArn": "arn:aws:ecs:::container-instance/default/18f9eda5-27d7-4c19-b133-45adc516e8fb", - * "containers": [ + * clusterArn: "arn:aws:ecs:::cluster/default", + * containerInstanceArn: "arn:aws:ecs:::container-instance/default/18f9eda5-27d7-4c19-b133-45adc516e8fb", + * containers: [ * { - * "name": "ecs-demo", - * "containerArn": "arn:aws:ecs:::container/7c01765b-c588-45b3-8290-4ba38bd6c5a6", - * "lastStatus": "RUNNING", - * "networkBindings": [ + * containerArn: "arn:aws:ecs:::container/7c01765b-c588-45b3-8290-4ba38bd6c5a6", + * lastStatus: "RUNNING", + * name: "ecs-demo", + * networkBindings: [ * { - * "bindIP": "0.0.0.0", - * "containerPort": 80, - * "hostPort": 80 + * bindIP: "0.0.0.0", + * containerPort: 80, + * hostPort: 80 * } * ], - * "taskArn": "arn:aws:ecs:::task/default/c5cba4eb-5dad-405e-96db-71ef8eefe6a8" + * taskArn: "arn:aws:ecs:::task/default/c5cba4eb-5dad-405e-96db-71ef8eefe6a8" * } * ], - * "desiredStatus": "RUNNING", - * "lastStatus": "RUNNING", - * "overrides": { - * "containerOverrides": [ + * desiredStatus: "RUNNING", + * lastStatus: "RUNNING", + * overrides: { + * containerOverrides: [ * { - * "name": "ecs-demo" + * name: "ecs-demo" * } * ] * }, - * "startedBy": "ecs-svc/9223370608528463088", - * "taskArn": "arn:aws:ecs:::task/default/c5cba4eb-5dad-405e-96db-71ef8eefe6a8", - * "taskDefinitionArn": "arn:aws:ecs:::task-definition/amazon-ecs-sample:1" + * startedBy: "ecs-svc/9223370608528463088", + * taskArn: "arn:aws:ecs:::task/default/c5cba4eb-5dad-405e-96db-71ef8eefe6a8", + * taskDefinitionArn: "arn:aws:ecs:::task-definition/amazon-ecs-sample:1" * } * ] * } * *\/ - * // example id: a90b0cde-f965-4946-b55e-cfd8cc54e827 * ``` * + * @public */ export class DescribeTasksCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/DiscoverPollEndpointCommand.ts b/clients/client-ecs/src/commands/DiscoverPollEndpointCommand.ts index 08519b4fc364b..9618cf44ebb38 100644 --- a/clients/client-ecs/src/commands/DiscoverPollEndpointCommand.ts +++ b/clients/client-ecs/src/commands/DiscoverPollEndpointCommand.ts @@ -79,6 +79,7 @@ export interface DiscoverPollEndpointCommandOutput extends DiscoverPollEndpointR * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* + * * @public */ export class DiscoverPollEndpointCommand extends $Command diff --git a/clients/client-ecs/src/commands/ExecuteCommandCommand.ts b/clients/client-ecs/src/commands/ExecuteCommandCommand.ts index 91f4158d0b408..825d68a20ae71 100644 --- a/clients/client-ecs/src/commands/ExecuteCommandCommand.ts +++ b/clients/client-ecs/src/commands/ExecuteCommandCommand.ts @@ -126,36 +126,36 @@ export interface ExecuteCommandCommandOutput extends ExecuteCommandResponse, __M * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To run a command remotely on a container in a task * ```javascript * // This example runs an interactive /bin/sh command on a container MyContainer. * const input = { - * "cluster": "MyCluster", - * "command": "/bin/sh", - * "container": "MyContainer", - * "interactive": true, - * "task": "arn:aws:ecs:us-east-1:123456789012:task/MyCluster/d789e94343414c25b9f6bd59eEXAMPLE" + * cluster: "MyCluster", + * command: "/bin/sh", + * container: "MyContainer", + * interactive: true, + * task: "arn:aws:ecs:us-east-1:123456789012:task/MyCluster/d789e94343414c25b9f6bd59eEXAMPLE" * }; * const command = new ExecuteCommandCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "clusterArn": "arn:aws:ecs:us-east-1:123456789012:cluster/MyCluster", - * "containerArn": "arn:aws:ecs:us-east-1:123456789012:container/MyCluster/d789e94343414c25b9f6bd59eEXAMPLE/43ba4b77-37f7-4a41-b923-69d4abEXAMPLE", - * "containerName": "MyContainer", - * "interactive": true, - * "session": { - * "sessionId": "ecs-execute-command-794nnsxobsg4p2hiur6gxu9a9e", - * "streamUrl": "wss://ssmmessages.us-east-1.amazonaws.com/v1/data-channel/ecs-execute-command-794nnsxobsg4p2hiur6gxu9a9e?role=publish_subscribe&cell-number=AAEAAfiZG4oybxqsYj3Zhm15s4J0W1k7d9nxVRenNO8Kl5nzAAAAAGdbWGl479/y/4IrTWPadUic3eBrMu3vmB7aPvI+s12lbpDc142y1KZy", - * "tokenValue": "AAEAAcVb7ww10N9aNUI5Cl7K7DbHjbD2Ed4Mw6uaGYIc+UFNAAAAAGdbWGmMDaPbGfDkzrVIhyKEsc4CPT2hcToPU6yzlddPm7rRZvYQtpaAgsvQdjbCAd9OB6ohtDYfqZI9gzMqLKegXq0E+KbDcGPnQVODFNHmQxnR1BvC6vNcHqh6HAJuKnQD7RSYx/J5bfYNHj4hCYHuN0HNcueSDOOTRB/MBt5DBDY7Djv2uzs9FD0N1kcsGljZkZWLuPTVKHHyrU3zh0awfrFFC3RXvgaUCBnloIIvZeq2CjTesxn9JJS+3N4I0DVxfkHdWWBbBY/5+wH82JVTJpqN3yOAt74u/W7TvYBd7Xu2lQbvtpuAnEszl++bFG2ZoV3dfnmBkSnfD/qV1FJcEskbxUHKgmqe0Paouv4zwrQKNfWYfcv9xkWskqcExh07IeaxZz1tp/WegZ5D76sD6xYeuH+35TMNXMoY7oudLgxIXsA7b39ElM7orGi4Jy3W2tLyuNIvDoI2JI6ww4tYdEjYZnld9rhKwV9rDHk1Z8wjHMs++3BIkHrFQRsv7BFUWlZ9lyqO9GWlXeBe7dQtOeFNahBuJUE9z/xLHJn1x13VkdROKqUVHTJrT4sXAnI5roWiGPoQPVY7aHVYJnwjSxrPRWJBsgyHiVN3dAWTmeVMjp0VbOiJaLlpBI+AUWs8OeVRzuJSZ+1alETpK7Ukag7ma9K4lxq/N7IxYo2ub0cG/bvX42zQqdJAW+9St9sQ1QMaMvkSq1tdbLoOuY0QjN7JrkuKLFQA5bhs+o1YwItzIp7bNrzQ9Z9IN51qoGL5HDXQzi1kNFfYtAryhwt6BgtQU9Z0k+RpE+V5G+V68E0MMUvb313f0nRBYj1u5VKonWb708wADPbUU+s7nvbWuD5oLp1Z6A4iqI9Om0R4RrFASj/7fVY7r3raNXcIYA=" + * clusterArn: "arn:aws:ecs:us-east-1:123456789012:cluster/MyCluster", + * containerArn: "arn:aws:ecs:us-east-1:123456789012:container/MyCluster/d789e94343414c25b9f6bd59eEXAMPLE/43ba4b77-37f7-4a41-b923-69d4abEXAMPLE", + * containerName: "MyContainer", + * interactive: true, + * session: { + * sessionId: "ecs-execute-command-794nnsxobsg4p2hiur6gxu9a9e", + * streamUrl: "wss://ssmmessages.us-east-1.amazonaws.com/v1/data-channel/ecs-execute-command-794nnsxobsg4p2hiur6gxu9a9e?role=publish_subscribe&cell-number=AAEAAfiZG4oybxqsYj3Zhm15s4J0W1k7d9nxVRenNO8Kl5nzAAAAAGdbWGl479/y/4IrTWPadUic3eBrMu3vmB7aPvI+s12lbpDc142y1KZy", + * tokenValue: "AAEAAcVb7ww10N9aNUI5Cl7K7DbHjbD2Ed4Mw6uaGYIc+UFNAAAAAGdbWGmMDaPbGfDkzrVIhyKEsc4CPT2hcToPU6yzlddPm7rRZvYQtpaAgsvQdjbCAd9OB6ohtDYfqZI9gzMqLKegXq0E+KbDcGPnQVODFNHmQxnR1BvC6vNcHqh6HAJuKnQD7RSYx/J5bfYNHj4hCYHuN0HNcueSDOOTRB/MBt5DBDY7Djv2uzs9FD0N1kcsGljZkZWLuPTVKHHyrU3zh0awfrFFC3RXvgaUCBnloIIvZeq2CjTesxn9JJS+3N4I0DVxfkHdWWBbBY/5+wH82JVTJpqN3yOAt74u/W7TvYBd7Xu2lQbvtpuAnEszl++bFG2ZoV3dfnmBkSnfD/qV1FJcEskbxUHKgmqe0Paouv4zwrQKNfWYfcv9xkWskqcExh07IeaxZz1tp/WegZ5D76sD6xYeuH+35TMNXMoY7oudLgxIXsA7b39ElM7orGi4Jy3W2tLyuNIvDoI2JI6ww4tYdEjYZnld9rhKwV9rDHk1Z8wjHMs++3BIkHrFQRsv7BFUWlZ9lyqO9GWlXeBe7dQtOeFNahBuJUE9z/xLHJn1x13VkdROKqUVHTJrT4sXAnI5roWiGPoQPVY7aHVYJnwjSxrPRWJBsgyHiVN3dAWTmeVMjp0VbOiJaLlpBI+AUWs8OeVRzuJSZ+1alETpK7Ukag7ma9K4lxq/N7IxYo2ub0cG/bvX42zQqdJAW+9St9sQ1QMaMvkSq1tdbLoOuY0QjN7JrkuKLFQA5bhs+o1YwItzIp7bNrzQ9Z9IN51qoGL5HDXQzi1kNFfYtAryhwt6BgtQU9Z0k+RpE+V5G+V68E0MMUvb313f0nRBYj1u5VKonWb708wADPbUU+s7nvbWuD5oLp1Z6A4iqI9Om0R4RrFASj/7fVY7r3raNXcIYA=" * }, - * "taskArn": "arn:aws:ecs:us-east-1:123456789012:task/MyCluster/d789e94343414c25b9f6bd59eEXAMPLE" + * taskArn: "arn:aws:ecs:us-east-1:123456789012:task/MyCluster/d789e94343414c25b9f6bd59eEXAMPLE" * } * *\/ - * // example id: to-run-a-command-remotely-on-a-container-in-a-task-1734037663312 * ``` * + * @public */ export class ExecuteCommandCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/GetTaskProtectionCommand.ts b/clients/client-ecs/src/commands/GetTaskProtectionCommand.ts index 60175ce15c5ce..cec3667880345 100644 --- a/clients/client-ecs/src/commands/GetTaskProtectionCommand.ts +++ b/clients/client-ecs/src/commands/GetTaskProtectionCommand.ts @@ -106,33 +106,33 @@ export interface GetTaskProtectionCommandOutput extends GetTaskProtectionRespons * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To get the protection status of a task * ```javascript * // In this example, we get the protection status for a single task. * const input = { - * "cluster": "test-task-protection", - * "tasks": [ + * cluster: "test-task-protection", + * tasks: [ * "b8b1cf532d0e46ba8d44a40d1de16772" * ] * }; * const command = new GetTaskProtectionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "failures": [], - * "protectedTasks": [ + * failures: [], + * protectedTasks: [ * { - * "expirationDate": "2022-11-02T06:56:32.553Z", - * "protectionEnabled": true, - * "taskArn": "arn:aws:ecs:us-west-2:012345678910:task/default/b8b1cf532d0e46ba8d44a40d1de16772" + * expirationDate: "2022-11-02T06:56:32.553Z", + * protectionEnabled: true, + * taskArn: "arn:aws:ecs:us-west-2:012345678910:task/default/b8b1cf532d0e46ba8d44a40d1de16772" * } * ] * } * *\/ - * // example id: get-the-protection-status-for-a-single-task-2022-11-02T06:56:32.553Z * ``` * + * @public */ export class GetTaskProtectionCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/ListAccountSettingsCommand.ts b/clients/client-ecs/src/commands/ListAccountSettingsCommand.ts index 846ccea2044a5..6369e721ddfb1 100644 --- a/clients/client-ecs/src/commands/ListAccountSettingsCommand.ts +++ b/clients/client-ecs/src/commands/ListAccountSettingsCommand.ts @@ -91,72 +91,71 @@ export interface ListAccountSettingsCommandOutput extends ListAccountSettingsRes * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public - * @example To view your effective account settings + * + * @example To view the effective account settings for a specific IAM user or IAM role * ```javascript - * // This example displays the effective account settings for your account. + * // This example displays the effective account settings for the specified user or role. * const input = { - * "effectiveSettings": true + * effectiveSettings: true, + * principalArn: "arn:aws:iam:::user/principalName" * }; * const command = new ListAccountSettingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "settings": [ + * settings: [ * { - * "name": "containerInstanceLongArnFormat", - * "value": "disabled", - * "principalArn": "arn:aws:iam:::user/principalName" + * name: "containerInstanceLongArnFormat", + * principalArn: "arn:aws:iam:::user/principalName", + * value: "disabled" * }, * { - * "name": "serviceLongArnFormat", - * "value": "enabled", - * "principalArn": "arn:aws:iam:::user/principalName" + * name: "serviceLongArnFormat", + * principalArn: "arn:aws:iam:::user/principalName", + * value: "enabled" * }, * { - * "name": "taskLongArnFormat", - * "value": "disabled", - * "principalArn": "arn:aws:iam:::user/principalName" + * name: "taskLongArnFormat", + * principalArn: "arn:aws:iam:::user/principalName", + * value: "disabled" * } * ] * } * *\/ - * // example id: to-view-your-account-settings-1549524118170 * ``` * - * @example To view the effective account settings for a specific IAM user or IAM role + * @example To view your effective account settings * ```javascript - * // This example displays the effective account settings for the specified user or role. + * // This example displays the effective account settings for your account. * const input = { - * "effectiveSettings": true, - * "principalArn": "arn:aws:iam:::user/principalName" + * effectiveSettings: true * }; * const command = new ListAccountSettingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "settings": [ + * settings: [ * { - * "name": "containerInstanceLongArnFormat", - * "value": "disabled", - * "principalArn": "arn:aws:iam:::user/principalName" + * name: "containerInstanceLongArnFormat", + * principalArn: "arn:aws:iam:::user/principalName", + * value: "disabled" * }, * { - * "name": "serviceLongArnFormat", - * "value": "enabled", - * "principalArn": "arn:aws:iam:::user/principalName" + * name: "serviceLongArnFormat", + * principalArn: "arn:aws:iam:::user/principalName", + * value: "enabled" * }, * { - * "name": "taskLongArnFormat", - * "value": "disabled", - * "principalArn": "arn:aws:iam:::user/principalName" + * name: "taskLongArnFormat", + * principalArn: "arn:aws:iam:::user/principalName", + * value: "disabled" * } * ] * } * *\/ - * // example id: to-view-the-account-settings-for-a-specific-iam-user-or-iam-role-1549524237932 * ``` * + * @public */ export class ListAccountSettingsCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/ListAttributesCommand.ts b/clients/client-ecs/src/commands/ListAttributesCommand.ts index 50ef11c2f729d..cd524fcde5f58 100644 --- a/clients/client-ecs/src/commands/ListAttributesCommand.ts +++ b/clients/client-ecs/src/commands/ListAttributesCommand.ts @@ -82,32 +82,32 @@ export interface ListAttributesCommandOutput extends ListAttributesResponse, __M * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To list container instances that have a specific attribute * ```javascript * // This example lists attributes for a container instance with the attribute "stack" equal to the value "production". * const input = { - * "attributeName": "stack", - * "attributeValue": "production", - * "cluster": "MyCluster", - * "targetType": "container-instance" + * attributeName: "stack", + * attributeValue: "production", + * cluster: "MyCluster", + * targetType: "container-instance" * }; * const command = new ListAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "attributes": [ + * attributes: [ * { - * "name": "stack", - * "value": "production", - * "targetId": "arn:aws:ecs:us-west-2:123456789012:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34" + * name: "stack", + * targetId: "arn:aws:ecs:us-west-2:123456789012:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34", + * value: "production" * } * ] * } * *\/ - * // example id: to-list-container-instances-that-have-a-specific-attribute-1734368946577 * ``` * + * @public */ export class ListAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/ListClustersCommand.ts b/clients/client-ecs/src/commands/ListClustersCommand.ts index 2536e866e60d8..8be4f8b5160ae 100644 --- a/clients/client-ecs/src/commands/ListClustersCommand.ts +++ b/clients/client-ecs/src/commands/ListClustersCommand.ts @@ -82,24 +82,24 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To list your available clusters * ```javascript * // This example lists all of your available clusters in your default region. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListClustersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "clusterArns": [ + * clusterArns: [ * "arn:aws:ecs:us-east-1::cluster/test", * "arn:aws:ecs:us-east-1::cluster/default" * ] * } * *\/ - * // example id: e337d059-134f-4125-ba8e-4f499139facf * ``` * + * @public */ export class ListClustersCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/ListContainerInstancesCommand.ts b/clients/client-ecs/src/commands/ListContainerInstancesCommand.ts index 3827c3d125819..a2f5253ce6b7c 100644 --- a/clients/client-ecs/src/commands/ListContainerInstancesCommand.ts +++ b/clients/client-ecs/src/commands/ListContainerInstancesCommand.ts @@ -90,26 +90,26 @@ export interface ListContainerInstancesCommandOutput extends ListContainerInstan * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To list your available container instances in a cluster * ```javascript * // This example lists all of your available container instances in the specified cluster in your default region. * const input = { - * "cluster": "default" + * cluster: "default" * }; * const command = new ListContainerInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "containerInstanceArns": [ + * containerInstanceArns: [ * "arn:aws:ecs:us-east-1::container-instance/default/f6bbb147-5370-4ace-8c73-c7181ded911f", * "arn:aws:ecs:us-east-1::container-instance/default/ffe3d344-77e2-476c-a4d0-bf560ad50acb" * ] * } * *\/ - * // example id: 62a82a94-713c-4e18-8420-1d2b2ba9d484 * ``` * + * @public */ export class ListContainerInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/ListServiceDeploymentsCommand.ts b/clients/client-ecs/src/commands/ListServiceDeploymentsCommand.ts index 22976945d607d..ed1fb81662b3f 100644 --- a/clients/client-ecs/src/commands/ListServiceDeploymentsCommand.ts +++ b/clients/client-ecs/src/commands/ListServiceDeploymentsCommand.ts @@ -116,35 +116,35 @@ export interface ListServiceDeploymentsCommandOutput extends ListServiceDeployme * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To list service deployments that meet the specified criteria * ```javascript * // This example lists all successful service deployments for the service "sd-example" in the cluster "example". * const input = { - * "cluster": "example", - * "service": "sd-example", - * "status": [ + * cluster: "example", + * service: "sd-example", + * status: [ * "SUCCESSFUL" * ] * }; * const command = new ListServiceDeploymentsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "serviceDeployments": [ + * serviceDeployments: [ * { - * "clusterArn": "arn:aws:ecs:us-west-2:123456789012:cluster/example", - * "serviceArn": "arn:aws:ecs:us-west-2:123456789012:service/example/sd-example", - * "serviceDeploymentArn": "arn:aws:ecs:us-west-2:123456789012:service-deployment/example/sd-example/NCWGC2ZR-taawPAYrIaU5", - * "status": "SUCCESSFUL", - * "targetServiceRevisionArn": "arn:aws:ecs:us-west-2:123456789012:service-revision/example/sd-example/4980306466373577095" + * clusterArn: "arn:aws:ecs:us-west-2:123456789012:cluster/example", + * serviceArn: "arn:aws:ecs:us-west-2:123456789012:service/example/sd-example", + * serviceDeploymentArn: "arn:aws:ecs:us-west-2:123456789012:service-deployment/example/sd-example/NCWGC2ZR-taawPAYrIaU5", + * status: "SUCCESSFUL", + * targetServiceRevisionArn: "arn:aws:ecs:us-west-2:123456789012:service-revision/example/sd-example/4980306466373577095" * } * ] * } * *\/ - * // example id: to-list-service-deployments-that-meet-the-specified-criteria-1734370445427 * ``` * + * @public */ export class ListServiceDeploymentsCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/ListServicesByNamespaceCommand.ts b/clients/client-ecs/src/commands/ListServicesByNamespaceCommand.ts index 9a1f1992e9cd1..b1182950ed8b3 100644 --- a/clients/client-ecs/src/commands/ListServicesByNamespaceCommand.ts +++ b/clients/client-ecs/src/commands/ListServicesByNamespaceCommand.ts @@ -90,6 +90,7 @@ export interface ListServicesByNamespaceCommandOutput extends ListServicesByName * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* + * * @public */ export class ListServicesByNamespaceCommand extends $Command diff --git a/clients/client-ecs/src/commands/ListServicesCommand.ts b/clients/client-ecs/src/commands/ListServicesCommand.ts index 5e08ad344ed52..d2ff34c7117b1 100644 --- a/clients/client-ecs/src/commands/ListServicesCommand.ts +++ b/clients/client-ecs/src/commands/ListServicesCommand.ts @@ -89,23 +89,23 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To list the services in a cluster * ```javascript * // This example lists the services running in the default cluster for an account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListServicesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "serviceArns": [ + * serviceArns: [ * "arn:aws:ecs:us-east-1:012345678910:service/default/my-http-service" * ] * } * *\/ - * // example id: 1d9a8037-4e0e-4234-a528-609656809a3a * ``` * + * @public */ export class ListServicesCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/ListTagsForResourceCommand.ts b/clients/client-ecs/src/commands/ListTagsForResourceCommand.ts index a8865f46b26b8..fa77c3720cb42 100644 --- a/clients/client-ecs/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ecs/src/commands/ListTagsForResourceCommand.ts @@ -86,28 +86,28 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To list the tags for a cluster. * ```javascript * // This example lists the tags for the 'dev' cluster. * const input = { - * "resourceArn": "arn:aws:ecs:region:aws_account_id:cluster/dev" + * resourceArn: "arn:aws:ecs:region:aws_account_id:cluster/dev" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "tags": [ + * tags: [ * { - * "key": "team", - * "value": "dev" + * key: "team", + * value: "dev" * } * ] * } * *\/ - * // example id: to-list-the-tags-for-a-cluster-1540582700259 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/ListTaskDefinitionFamiliesCommand.ts b/clients/client-ecs/src/commands/ListTaskDefinitionFamiliesCommand.ts index 4bddf28589658..aab80cbd70317 100644 --- a/clients/client-ecs/src/commands/ListTaskDefinitionFamiliesCommand.ts +++ b/clients/client-ecs/src/commands/ListTaskDefinitionFamiliesCommand.ts @@ -90,45 +90,44 @@ export interface ListTaskDefinitionFamiliesCommandOutput extends ListTaskDefinit * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public - * @example To list your registered task definition families + * + * @example To filter your registered task definition families * ```javascript - * // This example lists all of your registered task definition families. - * const input = {}; + * // This example lists the task definition revisions that start with "hpcc". + * const input = { + * familyPrefix: "hpcc" + * }; * const command = new ListTaskDefinitionFamiliesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "families": [ - * "node-js-app", - * "web-timer", + * families: [ * "hpcc", * "hpcc-c4-8xlarge" * ] * } * *\/ - * // example id: b5c89769-1d94-4ca2-a79e-8069103c7f75 * ``` * - * @example To filter your registered task definition families + * @example To list your registered task definition families * ```javascript - * // This example lists the task definition revisions that start with "hpcc". - * const input = { - * "familyPrefix": "hpcc" - * }; + * // This example lists all of your registered task definition families. + * const input = { /* empty *\/ }; * const command = new ListTaskDefinitionFamiliesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "families": [ + * families: [ + * "node-js-app", + * "web-timer", * "hpcc", * "hpcc-c4-8xlarge" * ] * } * *\/ - * // example id: 8a4cf9a6-42c1-4fe3-852d-99ac8968e11b * ``` * + * @public */ export class ListTaskDefinitionFamiliesCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/ListTaskDefinitionsCommand.ts b/clients/client-ecs/src/commands/ListTaskDefinitionsCommand.ts index 43f89a313fa8f..f616996b923ed 100644 --- a/clients/client-ecs/src/commands/ListTaskDefinitionsCommand.ts +++ b/clients/client-ecs/src/commands/ListTaskDefinitionsCommand.ts @@ -87,18 +87,18 @@ export interface ListTaskDefinitionsCommandOutput extends ListTaskDefinitionsRes * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public - * @example To list your registered task definitions + * + * @example To list the registered task definitions in a family * ```javascript - * // This example lists all of your registered task definitions. - * const input = {}; + * // This example lists the task definition revisions of a specified family. + * const input = { + * familyPrefix: "wordpress" + * }; * const command = new ListTaskDefinitionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "taskDefinitionArns": [ - * "arn:aws:ecs:us-east-1::task-definition/sleep300:2", - * "arn:aws:ecs:us-east-1::task-definition/sleep360:1", + * taskDefinitionArns: [ * "arn:aws:ecs:us-east-1::task-definition/wordpress:3", * "arn:aws:ecs:us-east-1::task-definition/wordpress:4", * "arn:aws:ecs:us-east-1::task-definition/wordpress:5", @@ -106,20 +106,19 @@ export interface ListTaskDefinitionsCommandOutput extends ListTaskDefinitionsRes * ] * } * *\/ - * // example id: b381ebaf-7eba-4d60-b99b-7f6ae49d3d60 * ``` * - * @example To list the registered task definitions in a family + * @example To list your registered task definitions * ```javascript - * // This example lists the task definition revisions of a specified family. - * const input = { - * "familyPrefix": "wordpress" - * }; + * // This example lists all of your registered task definitions. + * const input = { /* empty *\/ }; * const command = new ListTaskDefinitionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "taskDefinitionArns": [ + * taskDefinitionArns: [ + * "arn:aws:ecs:us-east-1::task-definition/sleep300:2", + * "arn:aws:ecs:us-east-1::task-definition/sleep360:1", * "arn:aws:ecs:us-east-1::task-definition/wordpress:3", * "arn:aws:ecs:us-east-1::task-definition/wordpress:4", * "arn:aws:ecs:us-east-1::task-definition/wordpress:5", @@ -127,9 +126,9 @@ export interface ListTaskDefinitionsCommandOutput extends ListTaskDefinitionsRes * ] * } * *\/ - * // example id: 734e7afd-753a-4bc2-85d0-badddce10910 * ``` * + * @public */ export class ListTaskDefinitionsCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/ListTasksCommand.ts b/clients/client-ecs/src/commands/ListTasksCommand.ts index 7434bdd1fe8eb..6a20e96840a75 100644 --- a/clients/client-ecs/src/commands/ListTasksCommand.ts +++ b/clients/client-ecs/src/commands/ListTasksCommand.ts @@ -99,45 +99,44 @@ export interface ListTasksCommandOutput extends ListTasksResponse, __MetadataBea * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public - * @example To list the tasks in a cluster + * + * @example To list the tasks on a particular container instance * ```javascript - * // This example lists all of the tasks in a cluster. + * // This example lists the tasks of a specified container instance. Specifying a ``containerInstance`` value limits the results to tasks that belong to that container instance. * const input = { - * "cluster": "default" + * cluster: "default", + * containerInstance: "f6bbb147-5370-4ace-8c73-c7181ded911f" * }; * const command = new ListTasksCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "taskArns": [ - * "arn:aws:ecs:us-east-1:012345678910:task/default/0cc43cdb-3bee-4407-9c26-c0e6ea5bee84", - * "arn:aws:ecs:us-east-1:012345678910:task/default/6b809ef6-c67e-4467-921f-ee261c15a0a1" + * taskArns: [ + * "arn:aws:ecs:us-east-1:012345678910:task/default/0cc43cdb-3bee-4407-9c26-c0e6ea5bee84" * ] * } * *\/ - * // example id: 9a6ec707-1a77-45d0-b2eb-516b5dd9e924 * ``` * - * @example To list the tasks on a particular container instance + * @example To list the tasks in a cluster * ```javascript - * // This example lists the tasks of a specified container instance. Specifying a ``containerInstance`` value limits the results to tasks that belong to that container instance. + * // This example lists all of the tasks in a cluster. * const input = { - * "cluster": "default", - * "containerInstance": "f6bbb147-5370-4ace-8c73-c7181ded911f" + * cluster: "default" * }; * const command = new ListTasksCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "taskArns": [ - * "arn:aws:ecs:us-east-1:012345678910:task/default/0cc43cdb-3bee-4407-9c26-c0e6ea5bee84" + * taskArns: [ + * "arn:aws:ecs:us-east-1:012345678910:task/default/0cc43cdb-3bee-4407-9c26-c0e6ea5bee84", + * "arn:aws:ecs:us-east-1:012345678910:task/default/6b809ef6-c67e-4467-921f-ee261c15a0a1" * ] * } * *\/ - * // example id: 024bf3b7-9cbb-44e3-848f-9d074e1fecce * ``` * + * @public */ export class ListTasksCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/PutAccountSettingCommand.ts b/clients/client-ecs/src/commands/PutAccountSettingCommand.ts index 066502ec7576c..2f823bcf92657 100644 --- a/clients/client-ecs/src/commands/PutAccountSettingCommand.ts +++ b/clients/client-ecs/src/commands/PutAccountSettingCommand.ts @@ -89,50 +89,49 @@ export interface PutAccountSettingCommandOutput extends PutAccountSettingRespons * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public - * @example To modify your account settings + * + * @example To modify the account settings for a specific IAM user or IAM role * ```javascript - * // This example modifies your account settings to opt in to the new ARN and resource ID format for Amazon ECS services. If you’re using this command as the root user, then changes apply to the entire AWS account, unless an IAM user or role explicitly overrides these settings for themselves. + * // This example modifies the account setting for a specific IAM user or IAM role to opt in to the new ARN and resource ID format for Amazon ECS container instances. If you’re using this command as the root user, then changes apply to the entire AWS account, unless an IAM user or role explicitly overrides these settings for themselves. * const input = { - * "name": "serviceLongArnFormat", - * "value": "enabled" + * name: "containerInstanceLongArnFormat", + * principalArn: "arn:aws:iam:::user/principalName", + * value: "enabled" * }; * const command = new PutAccountSettingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "setting": { - * "name": "serviceLongArnFormat", - * "value": "enabled", - * "principalArn": "arn:aws:iam:::user/principalName" + * setting: { + * name: "containerInstanceLongArnFormat", + * principalArn: "arn:aws:iam:::user/principalName", + * value: "enabled" * } * } * *\/ - * // example id: to-modify-the-account-settings-for-your-iam-user-account-1549523130939 * ``` * - * @example To modify the account settings for a specific IAM user or IAM role + * @example To modify your account settings * ```javascript - * // This example modifies the account setting for a specific IAM user or IAM role to opt in to the new ARN and resource ID format for Amazon ECS container instances. If you’re using this command as the root user, then changes apply to the entire AWS account, unless an IAM user or role explicitly overrides these settings for themselves. + * // This example modifies your account settings to opt in to the new ARN and resource ID format for Amazon ECS services. If you’re using this command as the root user, then changes apply to the entire AWS account, unless an IAM user or role explicitly overrides these settings for themselves. * const input = { - * "name": "containerInstanceLongArnFormat", - * "value": "enabled", - * "principalArn": "arn:aws:iam:::user/principalName" + * name: "serviceLongArnFormat", + * value: "enabled" * }; * const command = new PutAccountSettingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "setting": { - * "name": "containerInstanceLongArnFormat", - * "value": "enabled", - * "principalArn": "arn:aws:iam:::user/principalName" + * setting: { + * name: "serviceLongArnFormat", + * principalArn: "arn:aws:iam:::user/principalName", + * value: "enabled" * } * } * *\/ - * // example id: to-modify-the-account-settings-for-a-specific-iam-user-or-iam-role-1549523518390 * ``` * + * @public */ export class PutAccountSettingCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/PutAccountSettingDefaultCommand.ts b/clients/client-ecs/src/commands/PutAccountSettingDefaultCommand.ts index 6254f1046bb50..e5776f341a2ca 100644 --- a/clients/client-ecs/src/commands/PutAccountSettingDefaultCommand.ts +++ b/clients/client-ecs/src/commands/PutAccountSettingDefaultCommand.ts @@ -85,28 +85,28 @@ export interface PutAccountSettingDefaultCommandOutput extends PutAccountSetting * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To modify the default account settings for all IAM users or roles on an account * ```javascript * // This example modifies the default account setting for the specified resource for all IAM users or roles on an account. These changes apply to the entire AWS account, unless an IAM user or role explicitly overrides these settings for themselves. * const input = { - * "name": "serviceLongArnFormat", - * "value": "enabled" + * name: "serviceLongArnFormat", + * value: "enabled" * }; * const command = new PutAccountSettingDefaultCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "setting": { - * "name": "serviceLongArnFormat", - * "value": "enabled", - * "principalArn": "arn:aws:iam:::root" + * setting: { + * name: "serviceLongArnFormat", + * principalArn: "arn:aws:iam:::root", + * value: "enabled" * } * } * *\/ - * // example id: to-modify-the-default-account-settings-for-all-iam-users-or-roles-on-your-account-1549523794603 * ``` * + * @public */ export class PutAccountSettingDefaultCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/PutAttributesCommand.ts b/clients/client-ecs/src/commands/PutAttributesCommand.ts index 8c908dee3b286..0f05122510736 100644 --- a/clients/client-ecs/src/commands/PutAttributesCommand.ts +++ b/clients/client-ecs/src/commands/PutAttributesCommand.ts @@ -90,36 +90,36 @@ export interface PutAttributesCommandOutput extends PutAttributesResponse, __Met * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To create or update an attribute on a resource * ```javascript * // This example adds an attribute "stack" with the value "production" to a container instance. * const input = { - * "attributes": [ + * attributes: [ * { - * "name": "stack", - * "value": "production", - * "targetId": "arn:aws:ecs:us-west-2:123456789012:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34" + * name: "stack", + * targetId: "arn:aws:ecs:us-west-2:123456789012:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34", + * value: "production" * } * ], - * "cluster": "MyCluster" + * cluster: "MyCluster" * }; * const command = new PutAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "attributes": [ + * attributes: [ * { - * "name": "stack", - * "value": "production", - * "targetId": "arn:aws:ecs:us-west-2:123456789012:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34" + * name: "stack", + * targetId: "arn:aws:ecs:us-west-2:123456789012:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34", + * value: "production" * } * ] * } * *\/ - * // example id: to-create-or-update-an-attribute-on-a-resource-1734382423405 * ``` * + * @public */ export class PutAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/PutClusterCapacityProvidersCommand.ts b/clients/client-ecs/src/commands/PutClusterCapacityProvidersCommand.ts index 2ee04566ba591..15943f34e09e9 100644 --- a/clients/client-ecs/src/commands/PutClusterCapacityProvidersCommand.ts +++ b/clients/client-ecs/src/commands/PutClusterCapacityProvidersCommand.ts @@ -186,256 +186,254 @@ export interface PutClusterCapacityProvidersCommandOutput * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To add an existing capacity provider to a cluuster * ```javascript * // This example adds an existing capacity provider "MyCapacityProvider2" to a cluster that already has the capacity provider "MyCapacityProvider1" associated with it. Both "MyCapacityProvider2" and "MyCapacityProvider1" need to be specified. * const input = { - * "capacityProviders": [ + * capacityProviders: [ * "MyCapacityProvider1", * "MyCapacityProvider2" * ], - * "cluster": "MyCluster", - * "defaultCapacityProviderStrategy": [ + * cluster: "MyCluster", + * defaultCapacityProviderStrategy: [ * { - * "capacityProvider": "MyCapacityProvider1", - * "weight": 1 + * capacityProvider: "MyCapacityProvider1", + * weight: 1 * }, * { - * "capacityProvider": "MyCapacityProvider2", - * "weight": 1 + * capacityProvider: "MyCapacityProvider2", + * weight: 1 * } * ] * }; * const command = new PutClusterCapacityProvidersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "cluster": { - * "activeServicesCount": 0, - * "attachments": [ + * cluster: { + * activeServicesCount: 0, + * attachments: [ * { - * "type": "as_policy", - * "details": [ + * details: [ * { - * "name": "capacityProviderName", - * "value": "MyCapacityProvider1" + * name: "capacityProviderName", + * value: "MyCapacityProvider1" * }, * { - * "name": "scalingPolicyName", - * "value": "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" + * name: "scalingPolicyName", + * value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * } * ], - * "id": "0fb0c8f4-6edd-4de1-9b09-17e470ee1918", - * "status": "ACTIVE" + * id: "0fb0c8f4-6edd-4de1-9b09-17e470ee1918", + * status: "ACTIVE", + * type: "as_policy" * }, * { - * "type": "as_policy", - * "details": [ + * details: [ * { - * "name": "capacityProviderName", - * "value": "MyCapacityProvider2" + * name: "capacityProviderName", + * value: "MyCapacityProvider2" * }, * { - * "name": "scalingPolicyName", - * "value": "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222" + * name: "scalingPolicyName", + * value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222" * } * ], - * "id": "ae592060-2382-4663-9476-b015c685593c", - * "status": "ACTIVE" + * id: "ae592060-2382-4663-9476-b015c685593c", + * status: "ACTIVE", + * type: "as_policy" * } * ], - * "attachmentsStatus": "UPDATE_IN_PROGRESS", - * "capacityProviders": [ + * attachmentsStatus: "UPDATE_IN_PROGRESS", + * capacityProviders: [ * "MyCapacityProvider1", * "MyCapacityProvider2" * ], - * "clusterArn": "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster", - * "clusterName": "MyCluster", - * "defaultCapacityProviderStrategy": [ + * clusterArn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster", + * clusterName: "MyCluster", + * defaultCapacityProviderStrategy: [ * { - * "base": 0, - * "capacityProvider": "MyCapacityProvider1", - * "weight": 1 + * base: 0, + * capacityProvider: "MyCapacityProvider1", + * weight: 1 * }, * { - * "base": 0, - * "capacityProvider": "MyCapacityProvider2", - * "weight": 1 + * base: 0, + * capacityProvider: "MyCapacityProvider2", + * weight: 1 * } * ], - * "pendingTasksCount": 0, - * "registeredContainerInstancesCount": 0, - * "runningTasksCount": 0, - * "settings": [ + * pendingTasksCount: 0, + * registeredContainerInstancesCount: 0, + * runningTasksCount: 0, + * settings: [ * { - * "name": "containerInsights", - * "value": "enabled" + * name: "containerInsights", + * value: "enabled" * } * ], - * "statistics": [], - * "status": "ACTIVE", - * "tags": [] + * statistics: [], + * status: "ACTIVE", + * tags: [] * } * } * *\/ - * // example id: to-add-an-existing-capacity-provider-to-a-cluster-1734385195698 * ``` * * @example To remove a capacity provider from a cluster * ```javascript * // This example removes a capacity provider "MyCapacityProvider2" from a cluster that has both "MyCapacityProvider2" and "MyCapacityProvider1" associated with it. Only "MyCapacityProvider1" needs to be specified in this scenario. * const input = { - * "capacityProviders": [ + * capacityProviders: [ * "MyCapacityProvider1" * ], - * "cluster": "MyCluster", - * "defaultCapacityProviderStrategy": [ + * cluster: "MyCluster", + * defaultCapacityProviderStrategy: [ * { - * "base": 0, - * "capacityProvider": "MyCapacityProvider1", - * "weight": 1 + * base: 0, + * capacityProvider: "MyCapacityProvider1", + * weight: 1 * } * ] * }; * const command = new PutClusterCapacityProvidersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "cluster": { - * "activeServicesCount": 0, - * "attachments": [ + * cluster: { + * activeServicesCount: 0, + * attachments: [ * { - * "type": "as_policy", - * "details": [ + * details: [ * { - * "name": "capacityProviderName", - * "value": "MyCapacityProvider1" + * name: "capacityProviderName", + * value: "MyCapacityProvider1" * }, * { - * "name": "scalingPolicyName", - * "value": "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" + * name: "scalingPolicyName", + * value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * } * ], - * "id": "0fb0c8f4-6edd-4de1-9b09-17e470ee1918", - * "status": "ACTIVE" + * id: "0fb0c8f4-6edd-4de1-9b09-17e470ee1918", + * status: "ACTIVE", + * type: "as_policy" * }, * { - * "type": "as_policy", - * "details": [ + * details: [ * { - * "name": "capacityProviderName", - * "value": "MyCapacityProvider2" + * name: "capacityProviderName", + * value: "MyCapacityProvider2" * }, * { - * "name": "scalingPolicyName", - * "value": "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222" + * name: "scalingPolicyName", + * value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222" * } * ], - * "id": "ae592060-2382-4663-9476-b015c685593c", - * "status": "DELETING" + * id: "ae592060-2382-4663-9476-b015c685593c", + * status: "DELETING", + * type: "as_policy" * } * ], - * "attachmentsStatus": "UPDATE_IN_PROGRESS", - * "capacityProviders": [ + * attachmentsStatus: "UPDATE_IN_PROGRESS", + * capacityProviders: [ * "MyCapacityProvider1" * ], - * "clusterArn": "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster", - * "clusterName": "MyCluster", - * "defaultCapacityProviderStrategy": [ + * clusterArn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster", + * clusterName: "MyCluster", + * defaultCapacityProviderStrategy: [ * { - * "base": 0, - * "capacityProvider": "MyCapacityProvider1", - * "weight": 1 + * base: 0, + * capacityProvider: "MyCapacityProvider1", + * weight: 1 * } * ], - * "pendingTasksCount": 0, - * "registeredContainerInstancesCount": 0, - * "runningTasksCount": 0, - * "settings": [ + * pendingTasksCount: 0, + * registeredContainerInstancesCount: 0, + * runningTasksCount: 0, + * settings: [ * { - * "name": "containerInsights", - * "value": "enabled" + * name: "containerInsights", + * value: "enabled" * } * ], - * "statistics": [], - * "status": "ACTIVE", - * "tags": [] + * statistics: [], + * status: "ACTIVE", + * tags: [] * } * } * *\/ - * // example id: to-remove-a-capacity-provider-from-a-cluster-1734386641517 * ``` * * @example To remove all capacity providers from a cluster * ```javascript * // This example removes all capacity providers associated with a cluster. * const input = { - * "capacityProviders": [], - * "cluster": "MyCluster", - * "defaultCapacityProviderStrategy": [] + * capacityProviders: [], + * cluster: "MyCluster", + * defaultCapacityProviderStrategy: [] * }; * const command = new PutClusterCapacityProvidersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "cluster": { - * "activeServicesCount": 0, - * "attachments": [ + * cluster: { + * activeServicesCount: 0, + * attachments: [ * { - * "type": "as_policy", - * "details": [ + * details: [ * { - * "name": "capacityProviderName", - * "value": "MyCapacityProvider1" + * name: "capacityProviderName", + * value: "MyCapacityProvider1" * }, * { - * "name": "scalingPolicyName", - * "value": "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" + * name: "scalingPolicyName", + * value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * } * ], - * "id": "0fb0c8f4-6edd-4de1-9b09-17e470ee1918", - * "status": "DELETING" + * id: "0fb0c8f4-6edd-4de1-9b09-17e470ee1918", + * status: "DELETING", + * type: "as_policy" * }, * { - * "type": "as_policy", - * "details": [ + * details: [ * { - * "name": "capacityProviderName", - * "value": "MyCapacityProvider2" + * name: "capacityProviderName", + * value: "MyCapacityProvider2" * }, * { - * "name": "scalingPolicyName", - * "value": "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222" + * name: "scalingPolicyName", + * value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222" * } * ], - * "id": "ae592060-2382-4663-9476-b015c685593c", - * "status": "DELETING" + * id: "ae592060-2382-4663-9476-b015c685593c", + * status: "DELETING", + * type: "as_policy" * } * ], - * "attachmentsStatus": "UPDATE_IN_PROGRESS", - * "capacityProviders": [], - * "clusterArn": "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster", - * "clusterName": "MyCluster", - * "defaultCapacityProviderStrategy": [], - * "pendingTasksCount": 0, - * "registeredContainerInstancesCount": 0, - * "runningTasksCount": 0, - * "settings": [ + * attachmentsStatus: "UPDATE_IN_PROGRESS", + * capacityProviders: [], + * clusterArn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster", + * clusterName: "MyCluster", + * defaultCapacityProviderStrategy: [], + * pendingTasksCount: 0, + * registeredContainerInstancesCount: 0, + * runningTasksCount: 0, + * settings: [ * { - * "name": "containerInsights", - * "value": "enabled" + * name: "containerInsights", + * value: "enabled" * } * ], - * "statistics": [], - * "status": "ACTIVE", - * "tags": [] + * statistics: [], + * status: "ACTIVE", + * tags: [] * } * } * *\/ - * // example id: to-remove-all-capacity-providers-from-a-cluster-1734387170874 * ``` * + * @public */ export class PutClusterCapacityProvidersCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/RegisterContainerInstanceCommand.ts b/clients/client-ecs/src/commands/RegisterContainerInstanceCommand.ts index 0ef900fa5298b..8442513cf5ba9 100644 --- a/clients/client-ecs/src/commands/RegisterContainerInstanceCommand.ts +++ b/clients/client-ecs/src/commands/RegisterContainerInstanceCommand.ts @@ -201,6 +201,7 @@ export interface RegisterContainerInstanceCommandOutput extends RegisterContaine * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* + * * @public */ export class RegisterContainerInstanceCommand extends $Command diff --git a/clients/client-ecs/src/commands/RegisterTaskDefinitionCommand.ts b/clients/client-ecs/src/commands/RegisterTaskDefinitionCommand.ts index 2efd44f5a8ba7..d9c0df7dc8ca1 100644 --- a/clients/client-ecs/src/commands/RegisterTaskDefinitionCommand.ts +++ b/clients/client-ecs/src/commands/RegisterTaskDefinitionCommand.ts @@ -628,60 +628,60 @@ export interface RegisterTaskDefinitionCommandOutput extends RegisterTaskDefinit * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To register a task definition * ```javascript * // This example registers a task definition to the specified family. * const input = { - * "containerDefinitions": [ + * containerDefinitions: [ * { - * "name": "sleep", - * "command": [ + * command: [ * "sleep", * "360" * ], - * "cpu": 10, - * "essential": true, - * "image": "busybox", - * "memory": 10 + * cpu: 10, + * essential: true, + * image: "busybox", + * memory: 10, + * name: "sleep" * } * ], - * "family": "sleep360", - * "taskRoleArn": "", - * "volumes": [] + * family: "sleep360", + * taskRoleArn: "", + * volumes: [] * }; * const command = new RegisterTaskDefinitionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "taskDefinition": { - * "containerDefinitions": [ + * taskDefinition: { + * containerDefinitions: [ * { - * "name": "sleep", - * "command": [ + * command: [ * "sleep", * "360" * ], - * "cpu": 10, - * "environment": [], - * "essential": true, - * "image": "busybox", - * "memory": 10, - * "mountPoints": [], - * "portMappings": [], - * "volumesFrom": [] + * cpu: 10, + * environment: [], + * essential: true, + * image: "busybox", + * memory: 10, + * mountPoints: [], + * name: "sleep", + * portMappings: [], + * volumesFrom: [] * } * ], - * "family": "sleep360", - * "revision": 1, - * "taskDefinitionArn": "arn:aws:ecs:us-east-1::task-definition/sleep360:19", - * "volumes": [] + * family: "sleep360", + * revision: 1, + * taskDefinitionArn: "arn:aws:ecs:us-east-1::task-definition/sleep360:19", + * volumes: [] * } * } * *\/ - * // example id: to-register-a-task-definition-1470764550877 * ``` * + * @public */ export class RegisterTaskDefinitionCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/RunTaskCommand.ts b/clients/client-ecs/src/commands/RunTaskCommand.ts index fd0f6cc3a9423..5e1aa982b07d2 100644 --- a/clients/client-ecs/src/commands/RunTaskCommand.ts +++ b/clients/client-ecs/src/commands/RunTaskCommand.ts @@ -439,47 +439,47 @@ export interface RunTaskCommandOutput extends RunTaskResponse, __MetadataBearer * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To run a task on your default cluster * ```javascript * // This example runs the specified task definition on your default cluster. * const input = { - * "cluster": "default", - * "taskDefinition": "sleep360:1" + * cluster: "default", + * taskDefinition: "sleep360:1" * }; * const command = new RunTaskCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "tasks": [ + * tasks: [ * { - * "containerInstanceArn": "arn:aws:ecs:us-east-1::container-instance/default/ffe3d344-77e2-476c-a4d0-bf560ad50acb", - * "containers": [ + * containerInstanceArn: "arn:aws:ecs:us-east-1::container-instance/default/ffe3d344-77e2-476c-a4d0-bf560ad50acb", + * containers: [ * { - * "name": "sleep", - * "containerArn": "arn:aws:ecs:us-east-1::container/default/58591c8e-be29-4ddf-95aa-ee459d4c59fd", - * "lastStatus": "PENDING", - * "taskArn": "arn:aws:ecs:us-east-1::task/default/a9f21ea7-c9f5-44b1-b8e6-b31f50ed33c0" + * containerArn: "arn:aws:ecs:us-east-1::container/default/58591c8e-be29-4ddf-95aa-ee459d4c59fd", + * lastStatus: "PENDING", + * name: "sleep", + * taskArn: "arn:aws:ecs:us-east-1::task/default/a9f21ea7-c9f5-44b1-b8e6-b31f50ed33c0" * } * ], - * "desiredStatus": "RUNNING", - * "lastStatus": "PENDING", - * "overrides": { - * "containerOverrides": [ + * desiredStatus: "RUNNING", + * lastStatus: "PENDING", + * overrides: { + * containerOverrides: [ * { - * "name": "sleep" + * name: "sleep" * } * ] * }, - * "taskArn": "arn:aws:ecs:us-east-1::task/default/a9f21ea7-c9f5-44b1-b8e6-b31f50ed33c0", - * "taskDefinitionArn": "arn:aws:ecs:us-east-1::task-definition/sleep360:1" + * taskArn: "arn:aws:ecs:us-east-1::task/default/a9f21ea7-c9f5-44b1-b8e6-b31f50ed33c0", + * taskDefinitionArn: "arn:aws:ecs:us-east-1::task-definition/sleep360:1" * } * ] * } * *\/ - * // example id: 6f238c83-a133-42cd-ab3d-abeca0560445 * ``` * + * @public */ export class RunTaskCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/StartTaskCommand.ts b/clients/client-ecs/src/commands/StartTaskCommand.ts index d6fdd9c4032f2..9699f701c0fa2 100644 --- a/clients/client-ecs/src/commands/StartTaskCommand.ts +++ b/clients/client-ecs/src/commands/StartTaskCommand.ts @@ -363,63 +363,63 @@ export interface StartTaskCommandOutput extends StartTaskResponse, __MetadataBea * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To start a new task * ```javascript * // This example starts a new task in the cluster "MyCluster" on the specified container instance using the latest revision of the "hello-world" task definition. * const input = { - * "cluster": "MyCluster", - * "containerInstances": [ + * cluster: "MyCluster", + * containerInstances: [ * "4c543eed-f83f-47da-b1d8-3d23f1da4c64" * ], - * "taskDefinition": "hello-world" + * taskDefinition: "hello-world" * }; * const command = new StartTaskCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "failures": [], - * "tasks": [ + * failures: [], + * tasks: [ * { - * "version": 1, - * "clusterArn": "arn:aws:ecs:us-east-1:012345678910:cluster/default", - * "containerInstanceArn": "arn:aws:ecs:us-east-1:012345678910:container-instance/default/4c543eed-f83f-47da-b1d8-3d23f1da4c64", - * "containers": [ + * clusterArn: "arn:aws:ecs:us-east-1:012345678910:cluster/default", + * containerInstanceArn: "arn:aws:ecs:us-east-1:012345678910:container-instance/default/4c543eed-f83f-47da-b1d8-3d23f1da4c64", + * containers: [ * { - * "name": "wordpress", - * "containerArn": "arn:aws:ecs:us-east-1:012345678910:container/e76594d4-27e1-4c74-98b5-46a6435eb769", - * "lastStatus": "PENDING", - * "taskArn": "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb" + * containerArn: "arn:aws:ecs:us-east-1:012345678910:container/e76594d4-27e1-4c74-98b5-46a6435eb769", + * lastStatus: "PENDING", + * name: "wordpress", + * taskArn: "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb" * }, * { - * "name": "mysql", - * "containerArn": "arn:aws:ecs:us-east-1:012345678910:container/default/b19106ea-4fa8-4f1d-9767-96922c82b070", - * "lastStatus": "PENDING", - * "taskArn": "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb" + * containerArn: "arn:aws:ecs:us-east-1:012345678910:container/default/b19106ea-4fa8-4f1d-9767-96922c82b070", + * lastStatus: "PENDING", + * name: "mysql", + * taskArn: "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb" * } * ], - * "createdAt": 1479765460.842, - * "desiredStatus": "RUNNING", - * "lastStatus": "PENDING", - * "overrides": { - * "containerOverrides": [ + * createdAt: 1.479765460842E9, + * desiredStatus: "RUNNING", + * lastStatus: "PENDING", + * overrides: { + * containerOverrides: [ * { - * "name": "wordpress" + * name: "wordpress" * }, * { - * "name": "mysql" + * name: "mysql" * } * ] * }, - * "taskArn": "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb", - * "taskDefinitionArn": "arn:aws:ecs:us-east-1:012345678910:task-definition/hello_world:6" + * taskArn: "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb", + * taskDefinitionArn: "arn:aws:ecs:us-east-1:012345678910:task-definition/hello_world:6", + * version: 1 * } * ] * } * *\/ - * // example id: to-start-a-new-task-1734455482966 * ``` * + * @public */ export class StartTaskCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/StopTaskCommand.ts b/clients/client-ecs/src/commands/StopTaskCommand.ts index ea788716e7af5..9854e0818f4cd 100644 --- a/clients/client-ecs/src/commands/StopTaskCommand.ts +++ b/clients/client-ecs/src/commands/StopTaskCommand.ts @@ -257,70 +257,70 @@ export interface StopTaskCommandOutput extends StopTaskResponse, __MetadataBeare * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To stop a task * ```javascript * // This example stops a task with ID "1dc5c17a-422b-4dc4-b493-371970c6c4d6" in cluster "MyCluster". * const input = { - * "cluster": "MyCluster", - * "reason": "testing stop task.", - * "task": "1dc5c17a-422b-4dc4-b493-371970c6c4d6" + * cluster: "MyCluster", + * reason: "testing stop task.", + * task: "1dc5c17a-422b-4dc4-b493-371970c6c4d6" * }; * const command = new StopTaskCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "task": { - * "version": 0, - * "clusterArn": "arn:aws:ecs:us-east-1:012345678910:cluster/MyCluster", - * "containerInstanceArn": "arn:aws:ecs:us-east-1:012345678910:container-instance/MyCluster/5991d8da-1d59-49d2-a31f-4230f9e73140", - * "containers": [ + * task: { + * clusterArn: "arn:aws:ecs:us-east-1:012345678910:cluster/MyCluster", + * containerInstanceArn: "arn:aws:ecs:us-east-1:012345678910:container-instance/MyCluster/5991d8da-1d59-49d2-a31f-4230f9e73140", + * containers: [ * { - * "name": "simple-app", - * "containerArn": "arn:aws:ecs:us-east-1:012345678910:container/4df26bb4-f057-467b-a079-961675296e64", - * "lastStatus": "RUNNING", - * "networkBindings": [ + * containerArn: "arn:aws:ecs:us-east-1:012345678910:container/4df26bb4-f057-467b-a079-961675296e64", + * lastStatus: "RUNNING", + * name: "simple-app", + * networkBindings: [ * { - * "bindIP": "0.0.0.0", - * "containerPort": 80, - * "hostPort": 32774, - * "protocol": "tcp" + * bindIP: "0.0.0.0", + * containerPort: 80, + * hostPort: 32774, + * protocol: "tcp" * } * ], - * "taskArn": "arn:aws:ecs:us-east-1:012345678910:task/MyCluster/1dc5c17a-422b-4dc4-b493-371970c6c4d6" + * taskArn: "arn:aws:ecs:us-east-1:012345678910:task/MyCluster/1dc5c17a-422b-4dc4-b493-371970c6c4d6" * }, * { - * "name": "busybox", - * "containerArn": "arn:aws:ecs:us-east-1:012345678910:container/e09064f7-7361-4c87-8ab9-8d073bbdbcb9", - * "lastStatus": "RUNNING", - * "networkBindings": [], - * "taskArn": "arn:aws:ecs:us-east-1:012345678910:task/MyCluster/1dc5c17a-422b-4dc4-b493-371970c6c4d6" + * containerArn: "arn:aws:ecs:us-east-1:012345678910:container/e09064f7-7361-4c87-8ab9-8d073bbdbcb9", + * lastStatus: "RUNNING", + * name: "busybox", + * networkBindings: [], + * taskArn: "arn:aws:ecs:us-east-1:012345678910:task/MyCluster/1dc5c17a-422b-4dc4-b493-371970c6c4d6" * } * ], - * "createdAt": 1476822811.295, - * "desiredStatus": "STOPPED", - * "lastStatus": "RUNNING", - * "overrides": { - * "containerOverrides": [ + * createdAt: 1.476822811295E9, + * desiredStatus: "STOPPED", + * lastStatus: "RUNNING", + * overrides: { + * containerOverrides: [ * { - * "name": "simple-app" + * name: "simple-app" * }, * { - * "name": "busybox" + * name: "busybox" * } * ] * }, - * "startedAt": 1476822833.998, - * "startedBy": "ecs-svc/9223370560032507596", - * "stoppedReason": "testing stop task.", - * "taskArn": "arn:aws:ecs:us-east-1:012345678910:task/1dc5c17a-422b-4dc4-b493-371970c6c4d6", - * "taskDefinitionArn": "arn:aws:ecs:us-east-1:012345678910:task-definition/console-sample-app-dynamic-ports:1" + * startedAt: 1.476822833998E9, + * startedBy: "ecs-svc/9223370560032507596", + * stoppedReason: "testing stop task.", + * taskArn: "arn:aws:ecs:us-east-1:012345678910:task/1dc5c17a-422b-4dc4-b493-371970c6c4d6", + * taskDefinitionArn: "arn:aws:ecs:us-east-1:012345678910:task-definition/console-sample-app-dynamic-ports:1", + * version: 0 * } * } * *\/ - * // example id: to-stop-a-task-1734457210346 * ``` * + * @public */ export class StopTaskCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/SubmitAttachmentStateChangesCommand.ts b/clients/client-ecs/src/commands/SubmitAttachmentStateChangesCommand.ts index d15b1b9585a1b..ec2992cbdde53 100644 --- a/clients/client-ecs/src/commands/SubmitAttachmentStateChangesCommand.ts +++ b/clients/client-ecs/src/commands/SubmitAttachmentStateChangesCommand.ts @@ -95,6 +95,7 @@ export interface SubmitAttachmentStateChangesCommandOutput * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* + * * @public */ export class SubmitAttachmentStateChangesCommand extends $Command diff --git a/clients/client-ecs/src/commands/SubmitContainerStateChangeCommand.ts b/clients/client-ecs/src/commands/SubmitContainerStateChangeCommand.ts index 077fc7f3e8b07..8c4209fd4f853 100644 --- a/clients/client-ecs/src/commands/SubmitContainerStateChangeCommand.ts +++ b/clients/client-ecs/src/commands/SubmitContainerStateChangeCommand.ts @@ -95,6 +95,7 @@ export interface SubmitContainerStateChangeCommandOutput extends SubmitContainer * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* + * * @public */ export class SubmitContainerStateChangeCommand extends $Command diff --git a/clients/client-ecs/src/commands/SubmitTaskStateChangeCommand.ts b/clients/client-ecs/src/commands/SubmitTaskStateChangeCommand.ts index 70e22590f5688..74f421a2ed478 100644 --- a/clients/client-ecs/src/commands/SubmitTaskStateChangeCommand.ts +++ b/clients/client-ecs/src/commands/SubmitTaskStateChangeCommand.ts @@ -124,6 +124,7 @@ export interface SubmitTaskStateChangeCommandOutput extends SubmitTaskStateChang * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* + * * @public */ export class SubmitTaskStateChangeCommand extends $Command diff --git a/clients/client-ecs/src/commands/TagResourceCommand.ts b/clients/client-ecs/src/commands/TagResourceCommand.ts index 3645e3328685a..df6dde2dd0758 100644 --- a/clients/client-ecs/src/commands/TagResourceCommand.ts +++ b/clients/client-ecs/src/commands/TagResourceCommand.ts @@ -91,24 +91,27 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To tag a cluster. * ```javascript * // This example tags the 'dev' cluster with key 'team' and value 'dev'. * const input = { - * "resourceArn": "arn:aws:ecs:region:aws_account_id:cluster/dev", - * "tags": [ + * resourceArn: "arn:aws:ecs:region:aws_account_id:cluster/dev", + * tags: [ * { - * "key": "team", - * "value": "dev" + * key: "team", + * value: "dev" * } * ] * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: to-tag-a-cluster-1540581863751 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/UntagResourceCommand.ts b/clients/client-ecs/src/commands/UntagResourceCommand.ts index 34e4e30f6bd63..977e88ce9edbc 100644 --- a/clients/client-ecs/src/commands/UntagResourceCommand.ts +++ b/clients/client-ecs/src/commands/UntagResourceCommand.ts @@ -85,21 +85,24 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To untag a cluster. * ```javascript * // This example deletes the 'team' tag from the 'dev' cluster. * const input = { - * "resourceArn": "arn:aws:ecs:region:aws_account_id:cluster/dev", - * "tagKeys": [ + * resourceArn: "arn:aws:ecs:region:aws_account_id:cluster/dev", + * tagKeys: [ * "team" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: to-untag-a-cluster-1540582546056 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/UpdateCapacityProviderCommand.ts b/clients/client-ecs/src/commands/UpdateCapacityProviderCommand.ts index 4feb76ea5e9eb..ca90a75e5e388 100644 --- a/clients/client-ecs/src/commands/UpdateCapacityProviderCommand.ts +++ b/clients/client-ecs/src/commands/UpdateCapacityProviderCommand.ts @@ -113,47 +113,47 @@ export interface UpdateCapacityProviderCommandOutput extends UpdateCapacityProvi * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To update a capacity provider's parameters * ```javascript * // This example updates the targetCapacity and instanceWarmupPeriod parameters for the capacity provider MyCapacityProvider to 90 and 150 respectively. * const input = { - * "name": "MyCapacityProvider", - * "autoScalingGroupProvider": { - * "managedScaling": { - * "instanceWarmupPeriod": 150, - * "status": "ENABLED", - * "targetCapacity": 90 + * autoScalingGroupProvider: { + * managedScaling: { + * instanceWarmupPeriod: 150, + * status: "ENABLED", + * targetCapacity: 90 * } - * } + * }, + * name: "MyCapacityProvider" * }; * const command = new UpdateCapacityProviderCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "capacityProvider": { - * "name": "MyCapacityProvider", - * "autoScalingGroupProvider": { - * "autoScalingGroupArn": "arn:aws:autoscaling:us-east-1:132456789012:autoScalingGroup:57ffcb94-11f0-4d6d-bf60-3bac5EXAMPLE:autoScalingGroupName/MyASG", - * "managedScaling": { - * "instanceWarmupPeriod": 150, - * "maximumScalingStepSize": 10000, - * "minimumScalingStepSize": 1, - * "status": "ENABLED", - * "targetCapacity": 90 + * capacityProvider: { + * autoScalingGroupProvider: { + * autoScalingGroupArn: "arn:aws:autoscaling:us-east-1:132456789012:autoScalingGroup:57ffcb94-11f0-4d6d-bf60-3bac5EXAMPLE:autoScalingGroupName/MyASG", + * managedScaling: { + * instanceWarmupPeriod: 150, + * maximumScalingStepSize: 10000, + * minimumScalingStepSize: 1, + * status: "ENABLED", + * targetCapacity: 90 * }, - * "managedTerminationProtection": "ENABLED" + * managedTerminationProtection: "ENABLED" * }, - * "capacityProviderArn": "arn:aws:ecs:us-east-1:123456789012:capacity-provider/MyCapacityProvider", - * "status": "ACTIVE", - * "tags": [], - * "updateStatus": "UPDATE_COMPLETE" + * capacityProviderArn: "arn:aws:ecs:us-east-1:123456789012:capacity-provider/MyCapacityProvider", + * name: "MyCapacityProvider", + * status: "ACTIVE", + * tags: [], + * updateStatus: "UPDATE_COMPLETE" * } * } * *\/ - * // example id: to-update-a-capacity-providers-parameters-1734557290198 * ``` * + * @public */ export class UpdateCapacityProviderCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/UpdateClusterCommand.ts b/clients/client-ecs/src/commands/UpdateClusterCommand.ts index ab17e0374d7b0..9697c826e0c12 100644 --- a/clients/client-ecs/src/commands/UpdateClusterCommand.ts +++ b/clients/client-ecs/src/commands/UpdateClusterCommand.ts @@ -180,196 +180,195 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To update a cluster's observability settings. * ```javascript * // This example turns on enhanced containerInsights in an existing cluster. * const input = { - * "cluster": "ECS-project-update-cluster", - * "settings": [ + * cluster: "ECS-project-update-cluster", + * settings: [ * { - * "name": "containerInsights", - * "value": "enhanced" + * name: "containerInsights", + * value: "enhanced" * } * ] * }; * const command = new UpdateClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "cluster": { - * "activeServicesCount": 0, - * "attachments": [ + * cluster: { + * activeServicesCount: 0, + * attachments: [ * { - * "type": "as_policy", - * "details": [ + * details: [ * { - * "name": "capacityProviderName", - * "value": "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt" + * name: "capacityProviderName", + * value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt" * }, * { - * "name": "scalingPolicyName", - * "value": "ECSManagedAutoScalingPolicy-152363a6-8c65-484c-b721-42c3e070ae93" + * name: "scalingPolicyName", + * value: "ECSManagedAutoScalingPolicy-152363a6-8c65-484c-b721-42c3e070ae93" * } * ], - * "id": "069d002b-7634-42e4-b1d4-544f4c8f6380", - * "status": "CREATED" + * id: "069d002b-7634-42e4-b1d4-544f4c8f6380", + * status: "CREATED", + * type: "as_policy" * }, * { - * "type": "managed_draining", - * "details": [ + * details: [ * { - * "name": "capacityProviderName", - * "value": "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt" + * name: "capacityProviderName", + * value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt" * }, * { - * "name": "autoScalingLifecycleHookName", - * "value": "ecs-managed-draining-termination-hook" + * name: "autoScalingLifecycleHookName", + * value: "ecs-managed-draining-termination-hook" * } * ], - * "id": "08b5b6ca-45e9-4209-a65d-e962a27c490a", - * "status": "CREATED" + * id: "08b5b6ca-45e9-4209-a65d-e962a27c490a", + * status: "CREATED", + * type: "managed_draining" * }, * { - * "type": "sc", - * "details": [], - * "id": "45d0b36f-8cff-46b6-9380-1288744802ab", - * "status": "ATTACHED" + * details: [], + * id: "45d0b36f-8cff-46b6-9380-1288744802ab", + * status: "ATTACHED", + * type: "sc" * } * ], - * "attachmentsStatus": "UPDATE_COMPLETE", - * "capacityProviders": [ + * attachmentsStatus: "UPDATE_COMPLETE", + * capacityProviders: [ * "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt" * ], - * "clusterArn": "arn:aws:ecs:us-west-2:123456789012:cluster/ECS-project-update-cluster", - * "clusterName": "ECS-project-update-cluster", - * "defaultCapacityProviderStrategy": [ + * clusterArn: "arn:aws:ecs:us-west-2:123456789012:cluster/ECS-project-update-cluster", + * clusterName: "ECS-project-update-cluster", + * defaultCapacityProviderStrategy: [ * { - * "base": 0, - * "capacityProvider": "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt", - * "weight": 1 + * base: 0, + * capacityProvider: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt", + * weight: 1 * } * ], - * "pendingTasksCount": 0, - * "registeredContainerInstancesCount": 0, - * "runningTasksCount": 0, - * "serviceConnectDefaults": { - * "namespace": "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-igwrsylmy3kwvcdx" + * pendingTasksCount: 0, + * registeredContainerInstancesCount: 0, + * runningTasksCount: 0, + * serviceConnectDefaults: { + * namespace: "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-igwrsylmy3kwvcdx" * }, - * "settings": [ + * settings: [ * { - * "name": "containerInsights", - * "value": "enhanced" + * name: "containerInsights", + * value: "enhanced" * } * ], - * "statistics": [], - * "status": "ACTIVE", - * "tags": [] + * statistics: [], + * status: "ACTIVE", + * tags: [] * } * } * *\/ - * // example id: to-update-a-clusters-observability-settings-1734626018966 * ``` * * @example To update a cluster's Service Connect defaults. * ```javascript * // This example sets a default Service Connect namespace. * const input = { - * "cluster": "ECS-project-update-cluster", - * "serviceConnectDefaults": { - * "namespace": "test" + * cluster: "ECS-project-update-cluster", + * serviceConnectDefaults: { + * namespace: "test" * } * }; * const command = new UpdateClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "cluster": { - * "activeServicesCount": 0, - * "attachments": [ + * cluster: { + * activeServicesCount: 0, + * attachments: [ * { - * "type": "as_policy", - * "details": [ + * details: [ * { - * "name": "capacityProviderName", - * "value": "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt" + * name: "capacityProviderName", + * value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt" * }, * { - * "name": "scalingPolicyName", - * "value": "ECSManagedAutoScalingPolicy-152363a6-8c65-484c-b721-42c3e070ae93" + * name: "scalingPolicyName", + * value: "ECSManagedAutoScalingPolicy-152363a6-8c65-484c-b721-42c3e070ae93" * } * ], - * "id": "069d002b-7634-42e4-b1d4-544f4c8f6380", - * "status": "CREATED" + * id: "069d002b-7634-42e4-b1d4-544f4c8f6380", + * status: "CREATED", + * type: "as_policy" * }, * { - * "type": "managed_draining", - * "details": [ + * details: [ * { - * "name": "capacityProviderName", - * "value": "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt" + * name: "capacityProviderName", + * value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt" * }, * { - * "name": "autoScalingLifecycleHookName", - * "value": "ecs-managed-draining-termination-hook" + * name: "autoScalingLifecycleHookName", + * value: "ecs-managed-draining-termination-hook" * } * ], - * "id": "08b5b6ca-45e9-4209-a65d-e962a27c490a", - * "status": "CREATED" + * id: "08b5b6ca-45e9-4209-a65d-e962a27c490a", + * status: "CREATED", + * type: "managed_draining" * }, * { - * "type": "sc", - * "details": [], - * "id": "45d0b36f-8cff-46b6-9380-1288744802ab", - * "status": "DELETED" + * details: [], + * id: "45d0b36f-8cff-46b6-9380-1288744802ab", + * status: "DELETED", + * type: "sc" * }, * { - * "type": "sc", - * "details": [], - * "id": "3e6890c3-609c-4832-91de-d6ca891b3ef1", - * "status": "ATTACHED" + * details: [], + * id: "3e6890c3-609c-4832-91de-d6ca891b3ef1", + * status: "ATTACHED", + * type: "sc" * }, * { - * "type": "sc", - * "details": [], - * "id": "961b8ec1-c2f1-4070-8495-e669b7668e90", - * "status": "DELETED" + * details: [], + * id: "961b8ec1-c2f1-4070-8495-e669b7668e90", + * status: "DELETED", + * type: "sc" * } * ], - * "attachmentsStatus": "UPDATE_COMPLETE", - * "capacityProviders": [ + * attachmentsStatus: "UPDATE_COMPLETE", + * capacityProviders: [ * "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt" * ], - * "clusterArn": "arn:aws:ecs:us-west-2:123456789012:cluster/ECS-project-update-cluster", - * "clusterName": "ECS-project-update-cluster", - * "defaultCapacityProviderStrategy": [ + * clusterArn: "arn:aws:ecs:us-west-2:123456789012:cluster/ECS-project-update-cluster", + * clusterName: "ECS-project-update-cluster", + * defaultCapacityProviderStrategy: [ * { - * "base": 0, - * "capacityProvider": "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt", - * "weight": 1 + * base: 0, + * capacityProvider: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt", + * weight: 1 * } * ], - * "pendingTasksCount": 0, - * "registeredContainerInstancesCount": 0, - * "runningTasksCount": 0, - * "serviceConnectDefaults": { - * "namespace": "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-dtjmxqpfi46ht7dr" + * pendingTasksCount: 0, + * registeredContainerInstancesCount: 0, + * runningTasksCount: 0, + * serviceConnectDefaults: { + * namespace: "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-dtjmxqpfi46ht7dr" * }, - * "settings": [ + * settings: [ * { - * "name": "containerInsights", - * "value": "enhanced" + * name: "containerInsights", + * value: "enhanced" * } * ], - * "statistics": [], - * "status": "ACTIVE", - * "tags": [] + * statistics: [], + * status: "ACTIVE", + * tags: [] * } * } * *\/ - * // example id: to-update-a-clusters-service-connect-defaults-1734626891648 * ``` * + * @public */ export class UpdateClusterCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/UpdateClusterSettingsCommand.ts b/clients/client-ecs/src/commands/UpdateClusterSettingsCommand.ts index 04e2d706f3545..5d437448372c2 100644 --- a/clients/client-ecs/src/commands/UpdateClusterSettingsCommand.ts +++ b/clients/client-ecs/src/commands/UpdateClusterSettingsCommand.ts @@ -157,45 +157,45 @@ export interface UpdateClusterSettingsCommandOutput extends UpdateClusterSetting * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To update a cluster's settings * ```javascript * // This example enables CloudWatch Container Insights for the default cluster. * const input = { - * "cluster": "default", - * "settings": [ + * cluster: "default", + * settings: [ * { - * "name": "containerInsights", - * "value": "enabled" + * name: "containerInsights", + * value: "enabled" * } * ] * }; * const command = new UpdateClusterSettingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "cluster": { - * "activeServicesCount": 0, - * "clusterArn": "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster", - * "clusterName": "default", - * "pendingTasksCount": 0, - * "registeredContainerInstancesCount": 0, - * "runningTasksCount": 0, - * "settings": [ + * cluster: { + * activeServicesCount: 0, + * clusterArn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster", + * clusterName: "default", + * pendingTasksCount: 0, + * registeredContainerInstancesCount: 0, + * runningTasksCount: 0, + * settings: [ * { - * "name": "containerInsights", - * "value": "enabled" + * name: "containerInsights", + * value: "enabled" * } * ], - * "statistics": [], - * "status": "ACTIVE", - * "tags": [] + * statistics: [], + * status: "ACTIVE", + * tags: [] * } * } * *\/ - * // example id: to-update-a-clusters-settings-1734628004887 * ``` * + * @public */ export class UpdateClusterSettingsCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/UpdateContainerAgentCommand.ts b/clients/client-ecs/src/commands/UpdateContainerAgentCommand.ts index ec2c49c8e4ca1..8118e5ef16750 100644 --- a/clients/client-ecs/src/commands/UpdateContainerAgentCommand.ts +++ b/clients/client-ecs/src/commands/UpdateContainerAgentCommand.ts @@ -197,32 +197,32 @@ export interface UpdateContainerAgentCommandOutput extends UpdateContainerAgentR * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To update the container agent version on a container instance * ```javascript * // This example updates the container agent version on the specified container instance in cluster MyCluster. * const input = { - * "cluster": "MyCluster", - * "containerInstance": "53ac7152-dcd1-4102-81f5-208962864132" + * cluster: "MyCluster", + * containerInstance: "53ac7152-dcd1-4102-81f5-208962864132" * }; * const command = new UpdateContainerAgentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "containerInstance": { - * "agentConnected": true, - * "agentUpdateStatus": "PENDING", - * "versionInfo": { - * "agentHash": "4023248", - * "agentVersion": "1.0.0", - * "dockerVersion": "DockerVersion: 1.5.0" + * containerInstance: { + * agentConnected: true, + * agentUpdateStatus: "PENDING", + * versionInfo: { + * agentHash: "4023248", + * agentVersion: "1.0.0", + * dockerVersion: "DockerVersion: 1.5.0" * } * } * } * *\/ - * // example id: to-update-the-container-agent-version-on-a-container-instance-1734628653210 * ``` * + * @public */ export class UpdateContainerAgentCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/UpdateContainerInstancesStateCommand.ts b/clients/client-ecs/src/commands/UpdateContainerInstancesStateCommand.ts index 104a5fb20ecf4..eea43f54cbfa3 100644 --- a/clients/client-ecs/src/commands/UpdateContainerInstancesStateCommand.ts +++ b/clients/client-ecs/src/commands/UpdateContainerInstancesStateCommand.ts @@ -226,179 +226,179 @@ export interface UpdateContainerInstancesStateCommandOutput * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To update the state of a container instance * ```javascript * // This example updates the state of the specified container instance in the default cluster to DRAINING. * const input = { - * "cluster": "default", - * "containerInstances": [ + * cluster: "default", + * containerInstances: [ * "1c3be8ed-df30-47b4-8f1e-6e68ebd01f34" * ], - * "status": "DRAINING" + * status: "DRAINING" * }; * const command = new UpdateContainerInstancesStateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "containerInstances": [ + * containerInstances: [ * { - * "version": 30, - * "agentConnected": true, - * "attributes": [ + * agentConnected: true, + * attributes: [ * { - * "name": "ecs.availability-zone", - * "value": "us-west-2b" + * name: "ecs.availability-zone", + * value: "us-west-2b" * }, * { - * "name": "com.amazonaws.ecs.capability.logging-driver.syslog" + * name: "com.amazonaws.ecs.capability.logging-driver.syslog" * }, * { - * "name": "ecs.instance-type", - * "value": "c4.xlarge" + * name: "ecs.instance-type", + * value: "c4.xlarge" * }, * { - * "name": "ecs.ami-id", - * "value": "ami-a2ca61c2" + * name: "ecs.ami-id", + * value: "ami-a2ca61c2" * }, * { - * "name": "com.amazonaws.ecs.capability.task-iam-role-network-host" + * name: "com.amazonaws.ecs.capability.task-iam-role-network-host" * }, * { - * "name": "com.amazonaws.ecs.capability.logging-driver.awslogs" + * name: "com.amazonaws.ecs.capability.logging-driver.awslogs" * }, * { - * "name": "com.amazonaws.ecs.capability.logging-driver.json-file" + * name: "com.amazonaws.ecs.capability.logging-driver.json-file" * }, * { - * "name": "com.amazonaws.ecs.capability.docker-remote-api.1.17" + * name: "com.amazonaws.ecs.capability.docker-remote-api.1.17" * }, * { - * "name": "com.amazonaws.ecs.capability.privileged-container" + * name: "com.amazonaws.ecs.capability.privileged-container" * }, * { - * "name": "com.amazonaws.ecs.capability.docker-remote-api.1.18" + * name: "com.amazonaws.ecs.capability.docker-remote-api.1.18" * }, * { - * "name": "com.amazonaws.ecs.capability.docker-remote-api.1.19" + * name: "com.amazonaws.ecs.capability.docker-remote-api.1.19" * }, * { - * "name": "com.amazonaws.ecs.capability.ecr-auth" + * name: "com.amazonaws.ecs.capability.ecr-auth" * }, * { - * "name": "ecs.os-type", - * "value": "linux" + * name: "ecs.os-type", + * value: "linux" * }, * { - * "name": "com.amazonaws.ecs.capability.docker-remote-api.1.20" + * name: "com.amazonaws.ecs.capability.docker-remote-api.1.20" * }, * { - * "name": "com.amazonaws.ecs.capability.docker-remote-api.1.21" + * name: "com.amazonaws.ecs.capability.docker-remote-api.1.21" * }, * { - * "name": "com.amazonaws.ecs.capability.docker-remote-api.1.22" + * name: "com.amazonaws.ecs.capability.docker-remote-api.1.22" * }, * { - * "name": "com.amazonaws.ecs.capability.task-iam-role" + * name: "com.amazonaws.ecs.capability.task-iam-role" * }, * { - * "name": "com.amazonaws.ecs.capability.docker-remote-api.1.23" + * name: "com.amazonaws.ecs.capability.docker-remote-api.1.23" * } * ], - * "containerInstanceArn": "arn:aws:ecs:us-west-2:012345678910:container-instance/default/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34", - * "ec2InstanceId": "i-05d99c76955727ec6", - * "pendingTasksCount": 0, - * "registeredResources": [ + * containerInstanceArn: "arn:aws:ecs:us-west-2:012345678910:container-instance/default/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34", + * ec2InstanceId: "i-05d99c76955727ec6", + * pendingTasksCount: 0, + * registeredResources: [ * { - * "name": "CPU", - * "type": "INTEGER", - * "doubleValue": 0, - * "integerValue": 4096, - * "longValue": 0 + * doubleValue: 0, + * integerValue: 4096, + * longValue: 0, + * name: "CPU", + * type: "INTEGER" * }, * { - * "name": "MEMORY", - * "type": "INTEGER", - * "doubleValue": 0, - * "integerValue": 7482, - * "longValue": 0 + * doubleValue: 0, + * integerValue: 7482, + * longValue: 0, + * name: "MEMORY", + * type: "INTEGER" * }, * { - * "name": "PORTS", - * "type": "STRINGSET", - * "doubleValue": 0, - * "integerValue": 0, - * "longValue": 0, - * "stringSetValue": [ + * doubleValue: 0, + * integerValue: 0, + * longValue: 0, + * name: "PORTS", + * stringSetValue: [ * "22", * "2376", * "2375", * "51678", * "51679" - * ] + * ], + * type: "STRINGSET" * }, * { - * "name": "PORTS_UDP", - * "type": "STRINGSET", - * "doubleValue": 0, - * "integerValue": 0, - * "longValue": 0, - * "stringSetValue": [] + * doubleValue: 0, + * integerValue: 0, + * longValue: 0, + * name: "PORTS_UDP", + * stringSetValue: [], + * type: "STRINGSET" * } * ], - * "remainingResources": [ + * remainingResources: [ * { - * "name": "CPU", - * "type": "INTEGER", - * "doubleValue": 0, - * "integerValue": 4096, - * "longValue": 0 + * doubleValue: 0, + * integerValue: 4096, + * longValue: 0, + * name: "CPU", + * type: "INTEGER" * }, * { - * "name": "MEMORY", - * "type": "INTEGER", - * "doubleValue": 0, - * "integerValue": 7482, - * "longValue": 0 + * doubleValue: 0, + * integerValue: 7482, + * longValue: 0, + * name: "MEMORY", + * type: "INTEGER" * }, * { - * "name": "PORTS", - * "type": "STRINGSET", - * "doubleValue": 0, - * "integerValue": 0, - * "longValue": 0, - * "stringSetValue": [ + * doubleValue: 0, + * integerValue: 0, + * longValue: 0, + * name: "PORTS", + * stringSetValue: [ * "22", * "2376", * "2375", * "51678", * "51679" - * ] + * ], + * type: "STRINGSET" * }, * { - * "name": "PORTS_UDP", - * "type": "STRINGSET", - * "doubleValue": 0, - * "integerValue": 0, - * "longValue": 0, - * "stringSetValue": [] + * doubleValue: 0, + * integerValue: 0, + * longValue: 0, + * name: "PORTS_UDP", + * stringSetValue: [], + * type: "STRINGSET" * } * ], - * "runningTasksCount": 0, - * "status": "DRAINING", - * "versionInfo": { - * "agentHash": "efe53c6", - * "agentVersion": "1.13.1", - * "dockerVersion": "DockerVersion: 1.11.2" + * runningTasksCount: 0, + * status: "DRAINING", + * version: 30, + * versionInfo: { + * agentHash: "efe53c6", + * agentVersion: "1.13.1", + * dockerVersion: "DockerVersion: 1.11.2" * } * } * ], - * "failures": [] + * failures: [] * } * *\/ - * // example id: to-update-the-state-of-a-container-instance-1734630991280 * ``` * + * @public */ export class UpdateContainerInstancesStateCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/UpdateServiceCommand.ts b/clients/client-ecs/src/commands/UpdateServiceCommand.ts index 236db53411e72..2ab21e77b41c0 100644 --- a/clients/client-ecs/src/commands/UpdateServiceCommand.ts +++ b/clients/client-ecs/src/commands/UpdateServiceCommand.ts @@ -664,31 +664,36 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public - * @example To change the task definition used in a service + * + * @example To change the number of tasks in a service * ```javascript - * // This example updates the my-http-service service to use the amazon-ecs-sample task definition. + * // This example updates the desired count of the my-http-service service to 10. * const input = { - * "service": "my-http-service", - * "taskDefinition": "amazon-ecs-sample" + * desiredCount: 10, + * service: "my-http-service" * }; * const command = new UpdateServiceCommand(input); - * await client.send(command); - * // example id: cc9e8900-0cc2-44d2-8491-64d1d3d37887 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * - * @example To change the number of tasks in a service + * @example To change the task definition used in a service * ```javascript - * // This example updates the desired count of the my-http-service service to 10. + * // This example updates the my-http-service service to use the amazon-ecs-sample task definition. * const input = { - * "desiredCount": 10, - * "service": "my-http-service" + * service: "my-http-service", + * taskDefinition: "amazon-ecs-sample" * }; * const command = new UpdateServiceCommand(input); - * await client.send(command); - * // example id: 9581d6c5-02e3-4140-8cc1-5a4301586633 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UpdateServiceCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/UpdateServicePrimaryTaskSetCommand.ts b/clients/client-ecs/src/commands/UpdateServicePrimaryTaskSetCommand.ts index cef2030aa1e81..d649a994fc347 100644 --- a/clients/client-ecs/src/commands/UpdateServicePrimaryTaskSetCommand.ts +++ b/clients/client-ecs/src/commands/UpdateServicePrimaryTaskSetCommand.ts @@ -173,55 +173,55 @@ export interface UpdateServicePrimaryTaskSetCommandOutput * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To update the primary task set for a service * ```javascript * // This example updates the primary task set for a service MyService that uses the EXTERNAL deployment controller type. * const input = { - * "cluster": "MyCluster", - * "primaryTaskSet": "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789", - * "service": "MyService" + * cluster: "MyCluster", + * primaryTaskSet: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789", + * service: "MyService" * }; * const command = new UpdateServicePrimaryTaskSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "taskSet": { - * "computedDesiredCount": 1, - * "createdAt": 1557128360.711, - * "id": "ecs-svc/1234567890123456789", - * "launchType": "EC2", - * "loadBalancers": [], - * "networkConfiguration": { - * "awsvpcConfiguration": { - * "assignPublicIp": "DISABLED", - * "securityGroups": [ + * taskSet: { + * computedDesiredCount: 1, + * createdAt: 1.557128360711E9, + * id: "ecs-svc/1234567890123456789", + * launchType: "EC2", + * loadBalancers: [], + * networkConfiguration: { + * awsvpcConfiguration: { + * assignPublicIp: "DISABLED", + * securityGroups: [ * "sg-12344312" * ], - * "subnets": [ + * subnets: [ * "subnet-12344321" * ] * } * }, - * "pendingCount": 0, - * "runningCount": 0, - * "scale": { - * "value": 50, - * "unit": "PERCENT" + * pendingCount: 0, + * runningCount: 0, + * scale: { + * unit: "PERCENT", + * value: 50 * }, - * "serviceRegistries": [], - * "stabilityStatus": "STABILIZING", - * "stabilityStatusAt": 1557129279.914, - * "status": "PRIMARY", - * "taskDefinition": "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2", - * "taskSetArn": "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789", - * "updatedAt": 1557129412.653 + * serviceRegistries: [], + * stabilityStatus: "STABILIZING", + * stabilityStatusAt: 1.557129279914E9, + * status: "PRIMARY", + * taskDefinition: "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2", + * taskSetArn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789", + * updatedAt: 1.557129412653E9 * } * } * *\/ - * // example id: to-update-the-primary-task-set-for-a-service-1734637150370 * ``` * + * @public */ export class UpdateServicePrimaryTaskSetCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/UpdateTaskProtectionCommand.ts b/clients/client-ecs/src/commands/UpdateTaskProtectionCommand.ts index e008d18c3d4a6..4bf24efff218b 100644 --- a/clients/client-ecs/src/commands/UpdateTaskProtectionCommand.ts +++ b/clients/client-ecs/src/commands/UpdateTaskProtectionCommand.ts @@ -134,88 +134,86 @@ export interface UpdateTaskProtectionCommandOutput extends UpdateTaskProtectionR * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public - * @example To set task scale-in protection for a task for 60 minutes + * + * @example To remove task scale-in protection * ```javascript - * // This example enables scale-in protection for a task for 60 minutes. + * // This example removes scale-in protection for a task. * const input = { - * "cluster": "test-task-protection", - * "expiresInMinutes": 60, - * "protectionEnabled": true, - * "tasks": [ + * cluster: "test-task-protection", + * protectionEnabled: false, + * tasks: [ * "b8b1cf532d0e46ba8d44a40d1de16772" * ] * }; * const command = new UpdateTaskProtectionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "failures": [], - * "protectedTasks": [ + * failures: [], + * protectedTasks: [ * { - * "expirationDate": "2022-11-02T06:56:32.553Z", - * "protectionEnabled": true, - * "taskArn": "arn:aws:ecs:us-west-2:012345678910:task/default/b8b1cf532d0e46ba8d44a40d1de16772" + * protectionEnabled: false, + * taskArn: "arn:aws:ecs:us-west-2:012345678910:task/default/b8b1cf532d0e46ba8d44a40d1de16772" * } * ] * } * *\/ - * // example id: enable-the-protection-status-for-a-single-task-for-60-minutes-2022-11-02T06:56:32.553Z * ``` * - * @example To set task scale-in protection for the default time period in minutes + * @example To set task scale-in protection for a task for 60 minutes * ```javascript - * // This example enables task scale-in protection for a task, without specifying the expiresInMinutes parameter, for the default protection period of 120 minutes. + * // This example enables scale-in protection for a task for 60 minutes. * const input = { - * "cluster": "test-task-protection", - * "protectionEnabled": true, - * "tasks": [ + * cluster: "test-task-protection", + * expiresInMinutes: 60, + * protectionEnabled: true, + * tasks: [ * "b8b1cf532d0e46ba8d44a40d1de16772" * ] * }; * const command = new UpdateTaskProtectionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "failures": [], - * "protectedTasks": [ + * failures: [], + * protectedTasks: [ * { - * "expirationDate": "2022-11-02T06:56:32.553Z", - * "protectionEnabled": true, - * "taskArn": "arn:aws:ecs:us-west-2:012345678910:task/default/b8b1cf532d0e46ba8d44a40d1de16772" + * expirationDate: "2022-11-02T06:56:32.553Z", + * protectionEnabled: true, + * taskArn: "arn:aws:ecs:us-west-2:012345678910:task/default/b8b1cf532d0e46ba8d44a40d1de16772" * } * ] * } * *\/ - * // example id: enable-the-protection-status-for-a-single-task-with-default-expiresinminutes-2022-11-02T06:56:32.553Z * ``` * - * @example To remove task scale-in protection + * @example To set task scale-in protection for the default time period in minutes * ```javascript - * // This example removes scale-in protection for a task. + * // This example enables task scale-in protection for a task, without specifying the expiresInMinutes parameter, for the default protection period of 120 minutes. * const input = { - * "cluster": "test-task-protection", - * "protectionEnabled": false, - * "tasks": [ + * cluster: "test-task-protection", + * protectionEnabled: true, + * tasks: [ * "b8b1cf532d0e46ba8d44a40d1de16772" * ] * }; * const command = new UpdateTaskProtectionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "failures": [], - * "protectedTasks": [ + * failures: [], + * protectedTasks: [ * { - * "protectionEnabled": false, - * "taskArn": "arn:aws:ecs:us-west-2:012345678910:task/default/b8b1cf532d0e46ba8d44a40d1de16772" + * expirationDate: "2022-11-02T06:56:32.553Z", + * protectionEnabled: true, + * taskArn: "arn:aws:ecs:us-west-2:012345678910:task/default/b8b1cf532d0e46ba8d44a40d1de16772" * } * ] * } * *\/ - * // example id: disable-scale-in-protection-on-a-single-task * ``` * + * @public */ export class UpdateTaskProtectionCommand extends $Command .classBuilder< diff --git a/clients/client-ecs/src/commands/UpdateTaskSetCommand.ts b/clients/client-ecs/src/commands/UpdateTaskSetCommand.ts index 85923462e7d34..a1eb63fd3627f 100644 --- a/clients/client-ecs/src/commands/UpdateTaskSetCommand.ts +++ b/clients/client-ecs/src/commands/UpdateTaskSetCommand.ts @@ -173,59 +173,59 @@ export interface UpdateTaskSetCommandOutput extends UpdateTaskSetResponse, __Met * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

* - * @public + * * @example To update a task set * ```javascript * // This example updates the task set to adjust the scale. * const input = { - * "cluster": "MyCluster", - * "scale": { - * "value": 50, - * "unit": "PERCENT" + * cluster: "MyCluster", + * scale: { + * unit: "PERCENT", + * value: 50 * }, - * "service": "MyService", - * "taskSet": "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789" + * service: "MyService", + * taskSet: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789" * }; * const command = new UpdateTaskSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "taskSet": { - * "computedDesiredCount": 0, - * "createdAt": 1557128360.711, - * "id": "ecs-svc/1234567890123456789", - * "launchType": "EC2", - * "loadBalancers": [], - * "networkConfiguration": { - * "awsvpcConfiguration": { - * "assignPublicIp": "DISABLED", - * "securityGroups": [ + * taskSet: { + * computedDesiredCount: 0, + * createdAt: 1.557128360711E9, + * id: "ecs-svc/1234567890123456789", + * launchType: "EC2", + * loadBalancers: [], + * networkConfiguration: { + * awsvpcConfiguration: { + * assignPublicIp: "DISABLED", + * securityGroups: [ * "sg-12344321" * ], - * "subnets": [ + * subnets: [ * "subnet-12344321" * ] * } * }, - * "pendingCount": 0, - * "runningCount": 0, - * "scale": { - * "value": 50, - * "unit": "PERCENT" + * pendingCount: 0, + * runningCount: 0, + * scale: { + * unit: "PERCENT", + * value: 50 * }, - * "serviceRegistries": [], - * "stabilityStatus": "STABILIZING", - * "stabilityStatusAt": 1557129279.914, - * "status": "ACTIVE", - * "taskDefinition": "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2", - * "taskSetArn": "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789", - * "updatedAt": 1557129279.914 + * serviceRegistries: [], + * stabilityStatus: "STABILIZING", + * stabilityStatusAt: 1.557129279914E9, + * status: "ACTIVE", + * taskDefinition: "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2", + * taskSetArn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789", + * updatedAt: 1.557129279914E9 * } * } * *\/ - * // example id: to-update-a-task-set-1734638754368 * ``` * + * @public */ export class UpdateTaskSetCommand extends $Command .classBuilder< diff --git a/clients/client-efs/src/commands/CreateAccessPointCommand.ts b/clients/client-efs/src/commands/CreateAccessPointCommand.ts index 9566bc1c8a24a..a6322e90ad7ae 100644 --- a/clients/client-efs/src/commands/CreateAccessPointCommand.ts +++ b/clients/client-efs/src/commands/CreateAccessPointCommand.ts @@ -151,6 +151,7 @@ export interface CreateAccessPointCommandOutput extends AccessPointDescription, * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class CreateAccessPointCommand extends $Command diff --git a/clients/client-efs/src/commands/CreateFileSystemCommand.ts b/clients/client-efs/src/commands/CreateFileSystemCommand.ts index 70087a1164c6f..11556941d781d 100644 --- a/clients/client-efs/src/commands/CreateFileSystemCommand.ts +++ b/clients/client-efs/src/commands/CreateFileSystemCommand.ts @@ -183,48 +183,8 @@ export interface CreateFileSystemCommandOutput extends FileSystemDescription, __ * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* - * @public - * @example To create a new file system - * ```javascript - * // This operation creates a new, encrypted file system with automatic backups enabled, and the default generalpurpose performance mode. - * const input = { - * "Backup": true, - * "CreationToken": "tokenstring", - * "Encrypted": true, - * "PerformanceMode": "generalPurpose", - * "Tags": [ - * { - * "Key": "Name", - * "Value": "MyFileSystem" - * } - * ] - * }; - * const command = new CreateFileSystemCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "CreationTime": "1481841524.0", - * "CreationToken": "tokenstring", - * "Encrypted": true, - * "FileSystemId": "fs-01234567", - * "LifeCycleState": "creating", - * "NumberOfMountTargets": 0, - * "OwnerId": "012345678912", - * "PerformanceMode": "generalPurpose", - * "SizeInBytes": { - * "Value": 0 - * }, - * "Tags": [ - * { - * "Key": "Name", - * "Value": "MyFileSystem" - * } - * ] - * } - * *\/ - * // example id: to-create-a-new-file-system-1481840798547 - * ``` * + * @public */ export class CreateFileSystemCommand extends $Command .classBuilder< diff --git a/clients/client-efs/src/commands/CreateMountTargetCommand.ts b/clients/client-efs/src/commands/CreateMountTargetCommand.ts index 81000f3edbead..39305b488b8b9 100644 --- a/clients/client-efs/src/commands/CreateMountTargetCommand.ts +++ b/clients/client-efs/src/commands/CreateMountTargetCommand.ts @@ -262,30 +262,30 @@ export interface CreateMountTargetCommandOutput extends MountTargetDescription, * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* - * @public + * * @example To create a new mount target * ```javascript * // This operation creates a new mount target for an EFS file system. * const input = { - * "FileSystemId": "fs-01234567", - * "SubnetId": "subnet-1234abcd" + * FileSystemId: "fs-01234567", + * SubnetId: "subnet-1234abcd" * }; * const command = new CreateMountTargetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FileSystemId": "fs-01234567", - * "IpAddress": "192.0.0.2", - * "LifeCycleState": "creating", - * "MountTargetId": "fsmt-12340abc", - * "NetworkInterfaceId": "eni-cedf6789", - * "OwnerId": "012345678912", - * "SubnetId": "subnet-1234abcd" + * FileSystemId: "fs-01234567", + * IpAddress: "192.0.0.2", + * LifeCycleState: "creating", + * MountTargetId: "fsmt-12340abc", + * NetworkInterfaceId: "eni-cedf6789", + * OwnerId: "012345678912", + * SubnetId: "subnet-1234abcd" * } * *\/ - * // example id: to-create-a-new-mount-target-1481842289329 * ``` * + * @public */ export class CreateMountTargetCommand extends $Command .classBuilder< diff --git a/clients/client-efs/src/commands/CreateReplicationConfigurationCommand.ts b/clients/client-efs/src/commands/CreateReplicationConfigurationCommand.ts index a77b00e3c0ff5..7bb96f2561947 100644 --- a/clients/client-efs/src/commands/CreateReplicationConfigurationCommand.ts +++ b/clients/client-efs/src/commands/CreateReplicationConfigurationCommand.ts @@ -153,6 +153,7 @@ export interface CreateReplicationConfigurationCommandOutput * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class CreateReplicationConfigurationCommand extends $Command diff --git a/clients/client-efs/src/commands/CreateTagsCommand.ts b/clients/client-efs/src/commands/CreateTagsCommand.ts index 20b054552264d..2d89be158090a 100644 --- a/clients/client-efs/src/commands/CreateTagsCommand.ts +++ b/clients/client-efs/src/commands/CreateTagsCommand.ts @@ -81,24 +81,27 @@ export interface CreateTagsCommandOutput extends __MetadataBearer {} * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* - * @public + * * @example To create a new tag * ```javascript * // This operation creates a new tag for an EFS file system. * const input = { - * "FileSystemId": "fs-01234567", - * "Tags": [ + * FileSystemId: "fs-01234567", + * Tags: [ * { - * "Key": "Name", - * "Value": "MyFileSystem" + * Key: "Name", + * Value: "MyFileSystem" * } * ] * }; * const command = new CreateTagsCommand(input); - * await client.send(command); - * // example id: to-create-a-new-tag-1481843409357 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateTagsCommand extends $Command .classBuilder< diff --git a/clients/client-efs/src/commands/DeleteAccessPointCommand.ts b/clients/client-efs/src/commands/DeleteAccessPointCommand.ts index db3d9ecb38c00..163ba98fb5f09 100644 --- a/clients/client-efs/src/commands/DeleteAccessPointCommand.ts +++ b/clients/client-efs/src/commands/DeleteAccessPointCommand.ts @@ -67,6 +67,7 @@ export interface DeleteAccessPointCommandOutput extends __MetadataBearer {} * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class DeleteAccessPointCommand extends $Command diff --git a/clients/client-efs/src/commands/DeleteFileSystemCommand.ts b/clients/client-efs/src/commands/DeleteFileSystemCommand.ts index 21d60f1d6084f..b393e418813da 100644 --- a/clients/client-efs/src/commands/DeleteFileSystemCommand.ts +++ b/clients/client-efs/src/commands/DeleteFileSystemCommand.ts @@ -86,18 +86,21 @@ export interface DeleteFileSystemCommandOutput extends __MetadataBearer {} * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* - * @public + * * @example To delete a file system * ```javascript * // This operation deletes an EFS file system. * const input = { - * "FileSystemId": "fs-01234567" + * FileSystemId: "fs-01234567" * }; * const command = new DeleteFileSystemCommand(input); - * await client.send(command); - * // example id: to-delete-a-file-system-1481847318348 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteFileSystemCommand extends $Command .classBuilder< diff --git a/clients/client-efs/src/commands/DeleteFileSystemPolicyCommand.ts b/clients/client-efs/src/commands/DeleteFileSystemPolicyCommand.ts index b6e930ab4355a..1b22883301855 100644 --- a/clients/client-efs/src/commands/DeleteFileSystemPolicyCommand.ts +++ b/clients/client-efs/src/commands/DeleteFileSystemPolicyCommand.ts @@ -70,6 +70,7 @@ export interface DeleteFileSystemPolicyCommandOutput extends __MetadataBearer {} * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class DeleteFileSystemPolicyCommand extends $Command diff --git a/clients/client-efs/src/commands/DeleteMountTargetCommand.ts b/clients/client-efs/src/commands/DeleteMountTargetCommand.ts index 3aa8aa064b851..631ee11a3bb66 100644 --- a/clients/client-efs/src/commands/DeleteMountTargetCommand.ts +++ b/clients/client-efs/src/commands/DeleteMountTargetCommand.ts @@ -98,18 +98,21 @@ export interface DeleteMountTargetCommandOutput extends __MetadataBearer {} * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* - * @public + * * @example To delete a mount target * ```javascript * // This operation deletes a mount target. * const input = { - * "MountTargetId": "fsmt-12340abc" + * MountTargetId: "fsmt-12340abc" * }; * const command = new DeleteMountTargetCommand(input); - * await client.send(command); - * // example id: to-delete-a-mount-target-1481847635607 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteMountTargetCommand extends $Command .classBuilder< diff --git a/clients/client-efs/src/commands/DeleteReplicationConfigurationCommand.ts b/clients/client-efs/src/commands/DeleteReplicationConfigurationCommand.ts index 5073acbd8cab0..69ec0c629b859 100644 --- a/clients/client-efs/src/commands/DeleteReplicationConfigurationCommand.ts +++ b/clients/client-efs/src/commands/DeleteReplicationConfigurationCommand.ts @@ -77,6 +77,7 @@ export interface DeleteReplicationConfigurationCommandOutput extends __MetadataB * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class DeleteReplicationConfigurationCommand extends $Command diff --git a/clients/client-efs/src/commands/DeleteTagsCommand.ts b/clients/client-efs/src/commands/DeleteTagsCommand.ts index 8a24ddb597a83..22c5e6742f775 100644 --- a/clients/client-efs/src/commands/DeleteTagsCommand.ts +++ b/clients/client-efs/src/commands/DeleteTagsCommand.ts @@ -78,21 +78,24 @@ export interface DeleteTagsCommandOutput extends __MetadataBearer {} * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* - * @public + * * @example To delete tags for an EFS file system * ```javascript * // This operation deletes tags for an EFS file system. * const input = { - * "FileSystemId": "fs-01234567", - * "TagKeys": [ + * FileSystemId: "fs-01234567", + * TagKeys: [ * "Name" * ] * }; * const command = new DeleteTagsCommand(input); - * await client.send(command); - * // example id: to-delete-tags-for-an-efs-file-system-1481848189061 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteTagsCommand extends $Command .classBuilder< diff --git a/clients/client-efs/src/commands/DescribeAccessPointsCommand.ts b/clients/client-efs/src/commands/DescribeAccessPointsCommand.ts index 4708f7ae1bc8d..d6ac0ec6cc0d6 100644 --- a/clients/client-efs/src/commands/DescribeAccessPointsCommand.ts +++ b/clients/client-efs/src/commands/DescribeAccessPointsCommand.ts @@ -110,6 +110,7 @@ export interface DescribeAccessPointsCommandOutput extends DescribeAccessPointsR * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class DescribeAccessPointsCommand extends $Command diff --git a/clients/client-efs/src/commands/DescribeAccountPreferencesCommand.ts b/clients/client-efs/src/commands/DescribeAccountPreferencesCommand.ts index 5eda9fb98a848..826af10db9fa1 100644 --- a/clients/client-efs/src/commands/DescribeAccountPreferencesCommand.ts +++ b/clients/client-efs/src/commands/DescribeAccountPreferencesCommand.ts @@ -65,6 +65,7 @@ export interface DescribeAccountPreferencesCommandOutput extends DescribeAccount * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class DescribeAccountPreferencesCommand extends $Command diff --git a/clients/client-efs/src/commands/DescribeBackupPolicyCommand.ts b/clients/client-efs/src/commands/DescribeBackupPolicyCommand.ts index 3972946411202..c054a4d6b1e35 100644 --- a/clients/client-efs/src/commands/DescribeBackupPolicyCommand.ts +++ b/clients/client-efs/src/commands/DescribeBackupPolicyCommand.ts @@ -74,6 +74,7 @@ export interface DescribeBackupPolicyCommandOutput extends BackupPolicyDescripti * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class DescribeBackupPolicyCommand extends $Command diff --git a/clients/client-efs/src/commands/DescribeFileSystemPolicyCommand.ts b/clients/client-efs/src/commands/DescribeFileSystemPolicyCommand.ts index aae13adec5d02..7a7344990b306 100644 --- a/clients/client-efs/src/commands/DescribeFileSystemPolicyCommand.ts +++ b/clients/client-efs/src/commands/DescribeFileSystemPolicyCommand.ts @@ -72,6 +72,7 @@ export interface DescribeFileSystemPolicyCommandOutput extends FileSystemPolicyD * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class DescribeFileSystemPolicyCommand extends $Command diff --git a/clients/client-efs/src/commands/DescribeFileSystemsCommand.ts b/clients/client-efs/src/commands/DescribeFileSystemsCommand.ts index 679013457f338..cdf2ce4384a10 100644 --- a/clients/client-efs/src/commands/DescribeFileSystemsCommand.ts +++ b/clients/client-efs/src/commands/DescribeFileSystemsCommand.ts @@ -124,41 +124,8 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* - * @public - * @example To describe an EFS file system - * ```javascript - * // This operation describes all of the EFS file systems in an account. - * const input = {}; - * const command = new DescribeFileSystemsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "FileSystems": [ - * { - * "CreationTime": "1481841524.0", - * "CreationToken": "tokenstring", - * "FileSystemId": "fs-01234567", - * "LifeCycleState": "available", - * "Name": "MyFileSystem", - * "NumberOfMountTargets": 1, - * "OwnerId": "012345678912", - * "PerformanceMode": "generalPurpose", - * "SizeInBytes": { - * "Value": 6144 - * }, - * "Tags": [ - * { - * "Key": "Name", - * "Value": "MyFileSystem" - * } - * ] - * } - * ] - * } - * *\/ - * // example id: to-describe-an-efs-file-system-1481848448460 - * ``` * + * @public */ export class DescribeFileSystemsCommand extends $Command .classBuilder< diff --git a/clients/client-efs/src/commands/DescribeLifecycleConfigurationCommand.ts b/clients/client-efs/src/commands/DescribeLifecycleConfigurationCommand.ts index ae9d3d239325b..38f3acd5a95e9 100644 --- a/clients/client-efs/src/commands/DescribeLifecycleConfigurationCommand.ts +++ b/clients/client-efs/src/commands/DescribeLifecycleConfigurationCommand.ts @@ -83,27 +83,27 @@ export interface DescribeLifecycleConfigurationCommandOutput * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* - * @public + * * @example To describe the lifecycle configuration for a file system * ```javascript * // This operation describes a file system's LifecycleConfiguration. EFS lifecycle management uses the LifecycleConfiguration object to identify which files to move to the EFS Infrequent Access (IA) storage class. * const input = { - * "FileSystemId": "fs-01234567" + * FileSystemId: "fs-01234567" * }; * const command = new DescribeLifecycleConfigurationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LifecyclePolicies": [ + * LifecyclePolicies: [ * { - * "TransitionToIA": "AFTER_30_DAYS" + * TransitionToIA: "AFTER_30_DAYS" * } * ] * } * *\/ - * // example id: to-describe-the-lifecycle-configuration-for-a-file-system-1551200664502 * ``` * + * @public */ export class DescribeLifecycleConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-efs/src/commands/DescribeMountTargetSecurityGroupsCommand.ts b/clients/client-efs/src/commands/DescribeMountTargetSecurityGroupsCommand.ts index 55d43c1e33623..34aa71fa6e97d 100644 --- a/clients/client-efs/src/commands/DescribeMountTargetSecurityGroupsCommand.ts +++ b/clients/client-efs/src/commands/DescribeMountTargetSecurityGroupsCommand.ts @@ -95,25 +95,25 @@ export interface DescribeMountTargetSecurityGroupsCommandOutput * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* - * @public + * * @example To describe the security groups for a mount target * ```javascript * // This operation describes all of the security groups for a file system's mount target. * const input = { - * "MountTargetId": "fsmt-12340abc" + * MountTargetId: "fsmt-12340abc" * }; * const command = new DescribeMountTargetSecurityGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SecurityGroups": [ + * SecurityGroups: [ * "sg-4567abcd" * ] * } * *\/ - * // example id: to-describe-the-security-groups-for-a-mount-target-1481849317823 * ``` * + * @public */ export class DescribeMountTargetSecurityGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-efs/src/commands/DescribeMountTargetsCommand.ts b/clients/client-efs/src/commands/DescribeMountTargetsCommand.ts index 23a6c0f6dd7b0..09108873a087b 100644 --- a/clients/client-efs/src/commands/DescribeMountTargetsCommand.ts +++ b/clients/client-efs/src/commands/DescribeMountTargetsCommand.ts @@ -99,33 +99,33 @@ export interface DescribeMountTargetsCommandOutput extends DescribeMountTargetsR * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* - * @public + * * @example To describe the mount targets for a file system * ```javascript * // This operation describes all of a file system's mount targets. * const input = { - * "FileSystemId": "fs-01234567" + * FileSystemId: "fs-01234567" * }; * const command = new DescribeMountTargetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "MountTargets": [ + * MountTargets: [ * { - * "FileSystemId": "fs-01234567", - * "IpAddress": "192.0.0.2", - * "LifeCycleState": "available", - * "MountTargetId": "fsmt-12340abc", - * "NetworkInterfaceId": "eni-cedf6789", - * "OwnerId": "012345678912", - * "SubnetId": "subnet-1234abcd" + * FileSystemId: "fs-01234567", + * IpAddress: "192.0.0.2", + * LifeCycleState: "available", + * MountTargetId: "fsmt-12340abc", + * NetworkInterfaceId: "eni-cedf6789", + * OwnerId: "012345678912", + * SubnetId: "subnet-1234abcd" * } * ] * } * *\/ - * // example id: to-describe-the-mount-targets-for-a-file-system-1481849958584 * ``` * + * @public */ export class DescribeMountTargetsCommand extends $Command .classBuilder< diff --git a/clients/client-efs/src/commands/DescribeReplicationConfigurationsCommand.ts b/clients/client-efs/src/commands/DescribeReplicationConfigurationsCommand.ts index f2913394e1f51..c3ca47ae8bd74 100644 --- a/clients/client-efs/src/commands/DescribeReplicationConfigurationsCommand.ts +++ b/clients/client-efs/src/commands/DescribeReplicationConfigurationsCommand.ts @@ -106,6 +106,7 @@ export interface DescribeReplicationConfigurationsCommandOutput * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class DescribeReplicationConfigurationsCommand extends $Command diff --git a/clients/client-efs/src/commands/DescribeTagsCommand.ts b/clients/client-efs/src/commands/DescribeTagsCommand.ts index e666f347a23d1..b70a7cb76f472 100644 --- a/clients/client-efs/src/commands/DescribeTagsCommand.ts +++ b/clients/client-efs/src/commands/DescribeTagsCommand.ts @@ -86,28 +86,28 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* - * @public + * * @example To describe the tags for a file system * ```javascript * // This operation describes all of a file system's tags. * const input = { - * "FileSystemId": "fs-01234567" + * FileSystemId: "fs-01234567" * }; * const command = new DescribeTagsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Tags": [ + * Tags: [ * { - * "Key": "Name", - * "Value": "MyFileSystem" + * Key: "Name", + * Value: "MyFileSystem" * } * ] * } * *\/ - * // example id: to-describe-the-tags-for-a-file-system-1481850497090 * ``` * + * @public */ export class DescribeTagsCommand extends $Command .classBuilder< diff --git a/clients/client-efs/src/commands/ListTagsForResourceCommand.ts b/clients/client-efs/src/commands/ListTagsForResourceCommand.ts index 725e54da1897b..0dcf0b91d081b 100644 --- a/clients/client-efs/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-efs/src/commands/ListTagsForResourceCommand.ts @@ -80,6 +80,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-efs/src/commands/ModifyMountTargetSecurityGroupsCommand.ts b/clients/client-efs/src/commands/ModifyMountTargetSecurityGroupsCommand.ts index dccf00ac5ed41..b6e1001bfb855 100644 --- a/clients/client-efs/src/commands/ModifyMountTargetSecurityGroupsCommand.ts +++ b/clients/client-efs/src/commands/ModifyMountTargetSecurityGroupsCommand.ts @@ -101,21 +101,24 @@ export interface ModifyMountTargetSecurityGroupsCommandOutput extends __Metadata * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* - * @public + * * @example To modify the security groups associated with a mount target for a file system * ```javascript * // This operation modifies the security groups associated with a mount target for a file system. * const input = { - * "MountTargetId": "fsmt-12340abc", - * "SecurityGroups": [ + * MountTargetId: "fsmt-12340abc", + * SecurityGroups: [ * "sg-abcd1234" * ] * }; * const command = new ModifyMountTargetSecurityGroupsCommand(input); - * await client.send(command); - * // example id: to-modify-the-security-groups-associated-with-a-mount-target-for-a-file-system-1481850772562 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ModifyMountTargetSecurityGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-efs/src/commands/PutAccountPreferencesCommand.ts b/clients/client-efs/src/commands/PutAccountPreferencesCommand.ts index 2187be47468ad..e89f6013d6f5f 100644 --- a/clients/client-efs/src/commands/PutAccountPreferencesCommand.ts +++ b/clients/client-efs/src/commands/PutAccountPreferencesCommand.ts @@ -76,6 +76,7 @@ export interface PutAccountPreferencesCommandOutput extends PutAccountPreference * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class PutAccountPreferencesCommand extends $Command diff --git a/clients/client-efs/src/commands/PutBackupPolicyCommand.ts b/clients/client-efs/src/commands/PutBackupPolicyCommand.ts index 7c395946c0a47..fa9a7af92b100 100644 --- a/clients/client-efs/src/commands/PutBackupPolicyCommand.ts +++ b/clients/client-efs/src/commands/PutBackupPolicyCommand.ts @@ -77,6 +77,7 @@ export interface PutBackupPolicyCommandOutput extends BackupPolicyDescription, _ * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class PutBackupPolicyCommand extends $Command diff --git a/clients/client-efs/src/commands/PutFileSystemPolicyCommand.ts b/clients/client-efs/src/commands/PutFileSystemPolicyCommand.ts index 0f63754c78aca..e771212b2fc5b 100644 --- a/clients/client-efs/src/commands/PutFileSystemPolicyCommand.ts +++ b/clients/client-efs/src/commands/PutFileSystemPolicyCommand.ts @@ -88,6 +88,7 @@ export interface PutFileSystemPolicyCommandOutput extends FileSystemPolicyDescri * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class PutFileSystemPolicyCommand extends $Command diff --git a/clients/client-efs/src/commands/PutLifecycleConfigurationCommand.ts b/clients/client-efs/src/commands/PutLifecycleConfigurationCommand.ts index 70b28467018c5..92ca36b8dd3c9 100644 --- a/clients/client-efs/src/commands/PutLifecycleConfigurationCommand.ts +++ b/clients/client-efs/src/commands/PutLifecycleConfigurationCommand.ts @@ -145,32 +145,32 @@ export interface PutLifecycleConfigurationCommandOutput extends LifecycleConfigu * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* - * @public + * * @example Creates a new lifecycleconfiguration object for a file system * ```javascript * // This operation enables lifecycle management on a file system by creating a new LifecycleConfiguration object. A LifecycleConfiguration object defines when files in an Amazon EFS file system are automatically transitioned to the lower-cost EFS Infrequent Access (IA) storage class. A LifecycleConfiguration applies to all files in a file system. * const input = { - * "FileSystemId": "fs-01234567", - * "LifecyclePolicies": [ + * FileSystemId: "fs-01234567", + * LifecyclePolicies: [ * { - * "TransitionToIA": "AFTER_30_DAYS" + * TransitionToIA: "AFTER_30_DAYS" * } * ] * }; * const command = new PutLifecycleConfigurationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LifecyclePolicies": [ + * LifecyclePolicies: [ * { - * "TransitionToIA": "AFTER_30_DAYS" + * TransitionToIA: "AFTER_30_DAYS" * } * ] * } * *\/ - * // example id: creates-a-new-lifecycleconfiguration-object-for-a-file-system-1551201594692 * ``` * + * @public */ export class PutLifecycleConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-efs/src/commands/TagResourceCommand.ts b/clients/client-efs/src/commands/TagResourceCommand.ts index d49dc4ccab7ba..f7094624c2331 100644 --- a/clients/client-efs/src/commands/TagResourceCommand.ts +++ b/clients/client-efs/src/commands/TagResourceCommand.ts @@ -76,6 +76,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-efs/src/commands/UntagResourceCommand.ts b/clients/client-efs/src/commands/UntagResourceCommand.ts index 366e91d7194c4..4afde4f96106a 100644 --- a/clients/client-efs/src/commands/UntagResourceCommand.ts +++ b/clients/client-efs/src/commands/UntagResourceCommand.ts @@ -73,6 +73,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-efs/src/commands/UpdateFileSystemCommand.ts b/clients/client-efs/src/commands/UpdateFileSystemCommand.ts index 33160cd0cdb2c..cf3b9145ee216 100644 --- a/clients/client-efs/src/commands/UpdateFileSystemCommand.ts +++ b/clients/client-efs/src/commands/UpdateFileSystemCommand.ts @@ -117,6 +117,7 @@ export interface UpdateFileSystemCommandOutput extends FileSystemDescription, __ * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class UpdateFileSystemCommand extends $Command diff --git a/clients/client-efs/src/commands/UpdateFileSystemProtectionCommand.ts b/clients/client-efs/src/commands/UpdateFileSystemProtectionCommand.ts index 2ba338809da4b..adf978ae22b3f 100644 --- a/clients/client-efs/src/commands/UpdateFileSystemProtectionCommand.ts +++ b/clients/client-efs/src/commands/UpdateFileSystemProtectionCommand.ts @@ -90,6 +90,7 @@ export interface UpdateFileSystemProtectionCommandOutput extends FileSystemProte * @throws {@link EFSServiceException} *

Base exception class for all service exceptions from EFS service.

* + * * @public */ export class UpdateFileSystemProtectionCommand extends $Command diff --git a/clients/client-eks-auth/src/commands/AssumeRoleForPodIdentityCommand.ts b/clients/client-eks-auth/src/commands/AssumeRoleForPodIdentityCommand.ts index b9e2c654574f1..1d90c7f1d5336 100644 --- a/clients/client-eks-auth/src/commands/AssumeRoleForPodIdentityCommand.ts +++ b/clients/client-eks-auth/src/commands/AssumeRoleForPodIdentityCommand.ts @@ -115,6 +115,7 @@ export interface AssumeRoleForPodIdentityCommandOutput extends AssumeRoleForPodI * @throws {@link EKSAuthServiceException} *

Base exception class for all service exceptions from EKSAuth service.

* + * * @public */ export class AssumeRoleForPodIdentityCommand extends $Command diff --git a/clients/client-eks/src/commands/AssociateAccessPolicyCommand.ts b/clients/client-eks/src/commands/AssociateAccessPolicyCommand.ts index e1541bf382cd5..9ca4682793357 100644 --- a/clients/client-eks/src/commands/AssociateAccessPolicyCommand.ts +++ b/clients/client-eks/src/commands/AssociateAccessPolicyCommand.ts @@ -94,6 +94,7 @@ export interface AssociateAccessPolicyCommandOutput extends AssociateAccessPolic * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class AssociateAccessPolicyCommand extends $Command diff --git a/clients/client-eks/src/commands/AssociateEncryptionConfigCommand.ts b/clients/client-eks/src/commands/AssociateEncryptionConfigCommand.ts index 97d10445ad060..9d4e3cf39be41 100644 --- a/clients/client-eks/src/commands/AssociateEncryptionConfigCommand.ts +++ b/clients/client-eks/src/commands/AssociateEncryptionConfigCommand.ts @@ -118,6 +118,7 @@ export interface AssociateEncryptionConfigCommandOutput extends AssociateEncrypt * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class AssociateEncryptionConfigCommand extends $Command diff --git a/clients/client-eks/src/commands/AssociateIdentityProviderConfigCommand.ts b/clients/client-eks/src/commands/AssociateIdentityProviderConfigCommand.ts index 9932731ecbd44..cb37871977d3b 100644 --- a/clients/client-eks/src/commands/AssociateIdentityProviderConfigCommand.ts +++ b/clients/client-eks/src/commands/AssociateIdentityProviderConfigCommand.ts @@ -135,6 +135,7 @@ export interface AssociateIdentityProviderConfigCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class AssociateIdentityProviderConfigCommand extends $Command diff --git a/clients/client-eks/src/commands/CreateAccessEntryCommand.ts b/clients/client-eks/src/commands/CreateAccessEntryCommand.ts index ef1d80be26c8b..e12bc98086380 100644 --- a/clients/client-eks/src/commands/CreateAccessEntryCommand.ts +++ b/clients/client-eks/src/commands/CreateAccessEntryCommand.ts @@ -114,6 +114,7 @@ export interface CreateAccessEntryCommandOutput extends CreateAccessEntryRespons * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class CreateAccessEntryCommand extends $Command diff --git a/clients/client-eks/src/commands/CreateAddonCommand.ts b/clients/client-eks/src/commands/CreateAddonCommand.ts index bd0668a468ee8..c6eac4cefdaf3 100644 --- a/clients/client-eks/src/commands/CreateAddonCommand.ts +++ b/clients/client-eks/src/commands/CreateAddonCommand.ts @@ -131,6 +131,7 @@ export interface CreateAddonCommandOutput extends CreateAddonResponse, __Metadat * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class CreateAddonCommand extends $Command diff --git a/clients/client-eks/src/commands/CreateClusterCommand.ts b/clients/client-eks/src/commands/CreateClusterCommand.ts index 205e867b4370d..161fefb26650c 100644 --- a/clients/client-eks/src/commands/CreateClusterCommand.ts +++ b/clients/client-eks/src/commands/CreateClusterCommand.ts @@ -325,30 +325,33 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* - * @public + * * @example To create a new cluster * ```javascript * // The following example creates an Amazon EKS cluster called prod. * const input = { - * "version": "1.10", - * "name": "prod", - * "clientRequestToken": "1d2129a1-3d38-460a-9756-e5b91fddb951", - * "resourcesVpcConfig": { - * "securityGroupIds": [ + * clientRequestToken: "1d2129a1-3d38-460a-9756-e5b91fddb951", + * name: "prod", + * resourcesVpcConfig: { + * securityGroupIds: [ * "sg-6979fe18" * ], - * "subnetIds": [ + * subnetIds: [ * "subnet-6782e71e", * "subnet-e7e761ac" * ] * }, - * "roleArn": "arn:aws:iam::012345678910:role/eks-service-role-AWSServiceRoleForAmazonEKS-J7ONKE3BQ4PI" + * roleArn: "arn:aws:iam::012345678910:role/eks-service-role-AWSServiceRoleForAmazonEKS-J7ONKE3BQ4PI", + * version: "1.10" * }; * const command = new CreateClusterCommand(input); - * await client.send(command); - * // example id: to-create-a-new-cluster-1527868185648 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class CreateClusterCommand extends $Command .classBuilder< diff --git a/clients/client-eks/src/commands/CreateEksAnywhereSubscriptionCommand.ts b/clients/client-eks/src/commands/CreateEksAnywhereSubscriptionCommand.ts index d2a93d723f25e..ee173f05102ea 100644 --- a/clients/client-eks/src/commands/CreateEksAnywhereSubscriptionCommand.ts +++ b/clients/client-eks/src/commands/CreateEksAnywhereSubscriptionCommand.ts @@ -118,6 +118,7 @@ export interface CreateEksAnywhereSubscriptionCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class CreateEksAnywhereSubscriptionCommand extends $Command diff --git a/clients/client-eks/src/commands/CreateFargateProfileCommand.ts b/clients/client-eks/src/commands/CreateFargateProfileCommand.ts index d526b5081fb19..4642a9a869e61 100644 --- a/clients/client-eks/src/commands/CreateFargateProfileCommand.ts +++ b/clients/client-eks/src/commands/CreateFargateProfileCommand.ts @@ -152,6 +152,7 @@ export interface CreateFargateProfileCommandOutput extends CreateFargateProfileR * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class CreateFargateProfileCommand extends $Command diff --git a/clients/client-eks/src/commands/CreateNodegroupCommand.ts b/clients/client-eks/src/commands/CreateNodegroupCommand.ts index 8cae166c40f77..941d8e5377250 100644 --- a/clients/client-eks/src/commands/CreateNodegroupCommand.ts +++ b/clients/client-eks/src/commands/CreateNodegroupCommand.ts @@ -221,6 +221,7 @@ export interface CreateNodegroupCommandOutput extends CreateNodegroupResponse, _ * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class CreateNodegroupCommand extends $Command diff --git a/clients/client-eks/src/commands/CreatePodIdentityAssociationCommand.ts b/clients/client-eks/src/commands/CreatePodIdentityAssociationCommand.ts index 1f54e9a18f19e..778ca97591220 100644 --- a/clients/client-eks/src/commands/CreatePodIdentityAssociationCommand.ts +++ b/clients/client-eks/src/commands/CreatePodIdentityAssociationCommand.ts @@ -113,6 +113,7 @@ export interface CreatePodIdentityAssociationCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class CreatePodIdentityAssociationCommand extends $Command diff --git a/clients/client-eks/src/commands/DeleteAccessEntryCommand.ts b/clients/client-eks/src/commands/DeleteAccessEntryCommand.ts index 292dd5180c85c..3be4a15149b24 100644 --- a/clients/client-eks/src/commands/DeleteAccessEntryCommand.ts +++ b/clients/client-eks/src/commands/DeleteAccessEntryCommand.ts @@ -70,6 +70,7 @@ export interface DeleteAccessEntryCommandOutput extends DeleteAccessEntryRespons * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DeleteAccessEntryCommand extends $Command diff --git a/clients/client-eks/src/commands/DeleteAddonCommand.ts b/clients/client-eks/src/commands/DeleteAddonCommand.ts index 2bb126713f82f..9d8633d0bbf53 100644 --- a/clients/client-eks/src/commands/DeleteAddonCommand.ts +++ b/clients/client-eks/src/commands/DeleteAddonCommand.ts @@ -114,6 +114,7 @@ export interface DeleteAddonCommandOutput extends DeleteAddonResponse, __Metadat * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DeleteAddonCommand extends $Command diff --git a/clients/client-eks/src/commands/DeleteClusterCommand.ts b/clients/client-eks/src/commands/DeleteClusterCommand.ts index 1f64dc43aa261..9720a51f0ddbe 100644 --- a/clients/client-eks/src/commands/DeleteClusterCommand.ts +++ b/clients/client-eks/src/commands/DeleteClusterCommand.ts @@ -203,18 +203,21 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* - * @public + * * @example To delete a cluster * ```javascript * // This example command deletes a cluster named `devel` in your default region. * const input = { - * "name": "devel" + * name: "devel" * }; * const command = new DeleteClusterCommand(input); - * await client.send(command); - * // example id: to-delete-a-cluster-1527868641252 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteClusterCommand extends $Command .classBuilder< diff --git a/clients/client-eks/src/commands/DeleteEksAnywhereSubscriptionCommand.ts b/clients/client-eks/src/commands/DeleteEksAnywhereSubscriptionCommand.ts index 8dbd24037037f..8d09ad82ec815 100644 --- a/clients/client-eks/src/commands/DeleteEksAnywhereSubscriptionCommand.ts +++ b/clients/client-eks/src/commands/DeleteEksAnywhereSubscriptionCommand.ts @@ -107,6 +107,7 @@ export interface DeleteEksAnywhereSubscriptionCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DeleteEksAnywhereSubscriptionCommand extends $Command diff --git a/clients/client-eks/src/commands/DeleteFargateProfileCommand.ts b/clients/client-eks/src/commands/DeleteFargateProfileCommand.ts index 112097fa1a2b0..c242acb9af474 100644 --- a/clients/client-eks/src/commands/DeleteFargateProfileCommand.ts +++ b/clients/client-eks/src/commands/DeleteFargateProfileCommand.ts @@ -114,6 +114,7 @@ export interface DeleteFargateProfileCommandOutput extends DeleteFargateProfileR * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DeleteFargateProfileCommand extends $Command diff --git a/clients/client-eks/src/commands/DeleteNodegroupCommand.ts b/clients/client-eks/src/commands/DeleteNodegroupCommand.ts index 9c2f6c835be17..523041e185ae9 100644 --- a/clients/client-eks/src/commands/DeleteNodegroupCommand.ts +++ b/clients/client-eks/src/commands/DeleteNodegroupCommand.ts @@ -153,6 +153,7 @@ export interface DeleteNodegroupCommandOutput extends DeleteNodegroupResponse, _ * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DeleteNodegroupCommand extends $Command diff --git a/clients/client-eks/src/commands/DeletePodIdentityAssociationCommand.ts b/clients/client-eks/src/commands/DeletePodIdentityAssociationCommand.ts index 885b61795412c..f1bee548a029e 100644 --- a/clients/client-eks/src/commands/DeletePodIdentityAssociationCommand.ts +++ b/clients/client-eks/src/commands/DeletePodIdentityAssociationCommand.ts @@ -92,6 +92,7 @@ export interface DeletePodIdentityAssociationCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DeletePodIdentityAssociationCommand extends $Command diff --git a/clients/client-eks/src/commands/DeregisterClusterCommand.ts b/clients/client-eks/src/commands/DeregisterClusterCommand.ts index ddbb0430de6d2..bad5371e6c4c5 100644 --- a/clients/client-eks/src/commands/DeregisterClusterCommand.ts +++ b/clients/client-eks/src/commands/DeregisterClusterCommand.ts @@ -203,6 +203,7 @@ export interface DeregisterClusterCommandOutput extends DeregisterClusterRespons * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DeregisterClusterCommand extends $Command diff --git a/clients/client-eks/src/commands/DescribeAccessEntryCommand.ts b/clients/client-eks/src/commands/DescribeAccessEntryCommand.ts index 6c619e5a05bd9..f388809f95916 100644 --- a/clients/client-eks/src/commands/DescribeAccessEntryCommand.ts +++ b/clients/client-eks/src/commands/DescribeAccessEntryCommand.ts @@ -83,6 +83,7 @@ export interface DescribeAccessEntryCommandOutput extends DescribeAccessEntryRes * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DescribeAccessEntryCommand extends $Command diff --git a/clients/client-eks/src/commands/DescribeAddonCommand.ts b/clients/client-eks/src/commands/DescribeAddonCommand.ts index 1adfd829bc0ff..72aee246e9615 100644 --- a/clients/client-eks/src/commands/DescribeAddonCommand.ts +++ b/clients/client-eks/src/commands/DescribeAddonCommand.ts @@ -111,6 +111,7 @@ export interface DescribeAddonCommandOutput extends DescribeAddonResponse, __Met * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DescribeAddonCommand extends $Command diff --git a/clients/client-eks/src/commands/DescribeAddonConfigurationCommand.ts b/clients/client-eks/src/commands/DescribeAddonConfigurationCommand.ts index 50eebde5ea980..ba74d10b682c4 100644 --- a/clients/client-eks/src/commands/DescribeAddonConfigurationCommand.ts +++ b/clients/client-eks/src/commands/DescribeAddonConfigurationCommand.ts @@ -79,6 +79,7 @@ export interface DescribeAddonConfigurationCommandOutput extends DescribeAddonCo * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DescribeAddonConfigurationCommand extends $Command diff --git a/clients/client-eks/src/commands/DescribeAddonVersionsCommand.ts b/clients/client-eks/src/commands/DescribeAddonVersionsCommand.ts index 1d7d9f0be6df3..525deb9fcb0e7 100644 --- a/clients/client-eks/src/commands/DescribeAddonVersionsCommand.ts +++ b/clients/client-eks/src/commands/DescribeAddonVersionsCommand.ts @@ -117,6 +117,7 @@ export interface DescribeAddonVersionsCommandOutput extends DescribeAddonVersion * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DescribeAddonVersionsCommand extends $Command diff --git a/clients/client-eks/src/commands/DescribeClusterCommand.ts b/clients/client-eks/src/commands/DescribeClusterCommand.ts index dc6d547e3984c..0db70dd8895d7 100644 --- a/clients/client-eks/src/commands/DescribeClusterCommand.ts +++ b/clients/client-eks/src/commands/DescribeClusterCommand.ts @@ -200,44 +200,44 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _ * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* - * @public + * * @example To describe a cluster * ```javascript * // This example command provides a description of the specified cluster in your default region. * const input = { - * "name": "devel" + * name: "devel" * }; * const command = new DescribeClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "cluster": { - * "version": "1.10", - * "name": "devel", - * "arn": "arn:aws:eks:us-west-2:012345678910:cluster/devel", - * "certificateAuthority": { - * "data": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUN5RENDQWJDZ0F3SUJBZ0lCQURBTkJna3Foa2lHOXcwQkFRc0ZBREFWTVJNd0VRWURWUVFERXdwcmRXSmwKY201bGRHVnpNQjRYRFRFNE1EVXpNVEl6TVRFek1Wb1hEVEk0TURVeU9ESXpNVEV6TVZvd0ZURVRNQkVHQTFVRQpBeE1LYTNWaVpYSnVaWFJsY3pDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTTZWCjVUaG4rdFcySm9Xa2hQMzRlVUZMNitaRXJOZGIvWVdrTmtDdWNGS2RaaXl2TjlMVmdvUmV2MjlFVFZlN1ZGbSsKUTJ3ZURyRXJiQyt0dVlibkFuN1ZLYmE3ay9hb1BHekZMdmVnb0t6b0M1N2NUdGVwZzRIazRlK2tIWHNaME10MApyb3NzcjhFM1ROeExETnNJTThGL1cwdjhsTGNCbWRPcjQyV2VuTjFHZXJnaDNSZ2wzR3JIazBnNTU0SjFWenJZCm9hTi8zODFUczlOTFF2QTBXb0xIcjBFRlZpTFdSZEoyZ3lXaC9ybDVyOFNDOHZaQXg1YW1BU0hVd01aTFpWRC8KTDBpOW4wRVM0MkpVdzQyQmxHOEdpd3NhTkJWV3lUTHZKclNhRXlDSHFtVVZaUTFDZkFXUjl0L3JleVVOVXM3TApWV1FqM3BFbk9RMitMSWJrc0RzQ0F3RUFBYU1qTUNFd0RnWURWUjBQQVFIL0JBUURBZ0trTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFNZ3RsQ1dIQ2U2YzVHMXl2YlFTS0Q4K2hUalkKSm1NSG56L2EvRGt0WG9YUjFVQzIrZUgzT1BZWmVjRVZZZHVaSlZCckNNQ2VWR0ZkeWdBYlNLc1FxWDg0S2RXbAp1MU5QaERDSmEyRHliN2pVMUV6VThTQjFGZUZ5ZFE3a0hNS1E1blpBRVFQOTY4S01hSGUrSm0yQ2x1UFJWbEJVCjF4WlhTS1gzTVZ0K1Q0SU1EV2d6c3JRSjVuQkRjdEtLcUZtM3pKdVVubHo5ZEpVckdscEltMjVJWXJDckxYUFgKWkUwRUtRNWEzMHhkVWNrTHRGQkQrOEtBdFdqSS9yZUZPNzM1YnBMdVoyOTBaNm42QlF3elRrS0p4cnhVc3QvOAppNGsxcnlsaUdWMm5SSjBUYjNORkczNHgrYWdzYTRoSTFPbU90TFM0TmgvRXJxT3lIUXNDc2hEQUtKUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + * cluster: { + * arn: "arn:aws:eks:us-west-2:012345678910:cluster/devel", + * certificateAuthority: { + * data: "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUN5RENDQWJDZ0F3SUJBZ0lCQURBTkJna3Foa2lHOXcwQkFRc0ZBREFWTVJNd0VRWURWUVFERXdwcmRXSmwKY201bGRHVnpNQjRYRFRFNE1EVXpNVEl6TVRFek1Wb1hEVEk0TURVeU9ESXpNVEV6TVZvd0ZURVRNQkVHQTFVRQpBeE1LYTNWaVpYSnVaWFJsY3pDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTTZWCjVUaG4rdFcySm9Xa2hQMzRlVUZMNitaRXJOZGIvWVdrTmtDdWNGS2RaaXl2TjlMVmdvUmV2MjlFVFZlN1ZGbSsKUTJ3ZURyRXJiQyt0dVlibkFuN1ZLYmE3ay9hb1BHekZMdmVnb0t6b0M1N2NUdGVwZzRIazRlK2tIWHNaME10MApyb3NzcjhFM1ROeExETnNJTThGL1cwdjhsTGNCbWRPcjQyV2VuTjFHZXJnaDNSZ2wzR3JIazBnNTU0SjFWenJZCm9hTi8zODFUczlOTFF2QTBXb0xIcjBFRlZpTFdSZEoyZ3lXaC9ybDVyOFNDOHZaQXg1YW1BU0hVd01aTFpWRC8KTDBpOW4wRVM0MkpVdzQyQmxHOEdpd3NhTkJWV3lUTHZKclNhRXlDSHFtVVZaUTFDZkFXUjl0L3JleVVOVXM3TApWV1FqM3BFbk9RMitMSWJrc0RzQ0F3RUFBYU1qTUNFd0RnWURWUjBQQVFIL0JBUURBZ0trTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFNZ3RsQ1dIQ2U2YzVHMXl2YlFTS0Q4K2hUalkKSm1NSG56L2EvRGt0WG9YUjFVQzIrZUgzT1BZWmVjRVZZZHVaSlZCckNNQ2VWR0ZkeWdBYlNLc1FxWDg0S2RXbAp1MU5QaERDSmEyRHliN2pVMUV6VThTQjFGZUZ5ZFE3a0hNS1E1blpBRVFQOTY4S01hSGUrSm0yQ2x1UFJWbEJVCjF4WlhTS1gzTVZ0K1Q0SU1EV2d6c3JRSjVuQkRjdEtLcUZtM3pKdVVubHo5ZEpVckdscEltMjVJWXJDckxYUFgKWkUwRUtRNWEzMHhkVWNrTHRGQkQrOEtBdFdqSS9yZUZPNzM1YnBMdVoyOTBaNm42QlF3elRrS0p4cnhVc3QvOAppNGsxcnlsaUdWMm5SSjBUYjNORkczNHgrYWdzYTRoSTFPbU90TFM0TmgvRXJxT3lIUXNDc2hEQUtKUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" * }, - * "createdAt": 1527807879.988, - * "endpoint": "https://A0DCCD80A04F01705DD065655C30CC3D.yl4.us-west-2.eks.amazonaws.com", - * "resourcesVpcConfig": { - * "securityGroupIds": [ + * createdAt: 1.527807879988E9, + * endpoint: "https://A0DCCD80A04F01705DD065655C30CC3D.yl4.us-west-2.eks.amazonaws.com", + * name: "devel", + * resourcesVpcConfig: { + * securityGroupIds: [ * "sg-6979fe18" * ], - * "subnetIds": [ + * subnetIds: [ * "subnet-6782e71e", * "subnet-e7e761ac" * ], - * "vpcId": "vpc-950809ec" + * vpcId: "vpc-950809ec" * }, - * "roleArn": "arn:aws:iam::012345678910:role/eks-service-role-AWSServiceRoleForAmazonEKS-J7ONKE3BQ4PI", - * "status": "ACTIVE" + * roleArn: "arn:aws:iam::012345678910:role/eks-service-role-AWSServiceRoleForAmazonEKS-J7ONKE3BQ4PI", + * status: "ACTIVE", + * version: "1.10" * } * } * *\/ - * // example id: to-describe-a-cluster-1527868708512 * ``` * + * @public */ export class DescribeClusterCommand extends $Command .classBuilder< diff --git a/clients/client-eks/src/commands/DescribeClusterVersionsCommand.ts b/clients/client-eks/src/commands/DescribeClusterVersionsCommand.ts index 0cb763628f0cd..8b4b67629b26a 100644 --- a/clients/client-eks/src/commands/DescribeClusterVersionsCommand.ts +++ b/clients/client-eks/src/commands/DescribeClusterVersionsCommand.ts @@ -89,6 +89,7 @@ export interface DescribeClusterVersionsCommandOutput extends DescribeClusterVer * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DescribeClusterVersionsCommand extends $Command diff --git a/clients/client-eks/src/commands/DescribeEksAnywhereSubscriptionCommand.ts b/clients/client-eks/src/commands/DescribeEksAnywhereSubscriptionCommand.ts index 0db68c48a9392..49e17cc4cd8c9 100644 --- a/clients/client-eks/src/commands/DescribeEksAnywhereSubscriptionCommand.ts +++ b/clients/client-eks/src/commands/DescribeEksAnywhereSubscriptionCommand.ts @@ -103,6 +103,7 @@ export interface DescribeEksAnywhereSubscriptionCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DescribeEksAnywhereSubscriptionCommand extends $Command diff --git a/clients/client-eks/src/commands/DescribeFargateProfileCommand.ts b/clients/client-eks/src/commands/DescribeFargateProfileCommand.ts index fb0807ba59fed..0ca2cad4de497 100644 --- a/clients/client-eks/src/commands/DescribeFargateProfileCommand.ts +++ b/clients/client-eks/src/commands/DescribeFargateProfileCommand.ts @@ -106,6 +106,7 @@ export interface DescribeFargateProfileCommandOutput extends DescribeFargateProf * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DescribeFargateProfileCommand extends $Command diff --git a/clients/client-eks/src/commands/DescribeIdentityProviderConfigCommand.ts b/clients/client-eks/src/commands/DescribeIdentityProviderConfigCommand.ts index 145f70d884ee8..bef12f41e6162 100644 --- a/clients/client-eks/src/commands/DescribeIdentityProviderConfigCommand.ts +++ b/clients/client-eks/src/commands/DescribeIdentityProviderConfigCommand.ts @@ -104,6 +104,7 @@ export interface DescribeIdentityProviderConfigCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DescribeIdentityProviderConfigCommand extends $Command diff --git a/clients/client-eks/src/commands/DescribeInsightCommand.ts b/clients/client-eks/src/commands/DescribeInsightCommand.ts index d9d994fbdc023..624cba37585c9 100644 --- a/clients/client-eks/src/commands/DescribeInsightCommand.ts +++ b/clients/client-eks/src/commands/DescribeInsightCommand.ts @@ -124,6 +124,7 @@ export interface DescribeInsightCommandOutput extends DescribeInsightResponse, _ * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DescribeInsightCommand extends $Command diff --git a/clients/client-eks/src/commands/DescribeNodegroupCommand.ts b/clients/client-eks/src/commands/DescribeNodegroupCommand.ts index 5c476a3067ca5..ab886d162d637 100644 --- a/clients/client-eks/src/commands/DescribeNodegroupCommand.ts +++ b/clients/client-eks/src/commands/DescribeNodegroupCommand.ts @@ -150,6 +150,7 @@ export interface DescribeNodegroupCommandOutput extends DescribeNodegroupRespons * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DescribeNodegroupCommand extends $Command diff --git a/clients/client-eks/src/commands/DescribePodIdentityAssociationCommand.ts b/clients/client-eks/src/commands/DescribePodIdentityAssociationCommand.ts index f8bb3e2abb6ad..edeb0adc89ad7 100644 --- a/clients/client-eks/src/commands/DescribePodIdentityAssociationCommand.ts +++ b/clients/client-eks/src/commands/DescribePodIdentityAssociationCommand.ts @@ -95,6 +95,7 @@ export interface DescribePodIdentityAssociationCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DescribePodIdentityAssociationCommand extends $Command diff --git a/clients/client-eks/src/commands/DescribeUpdateCommand.ts b/clients/client-eks/src/commands/DescribeUpdateCommand.ts index 7b7d607d6d7e6..0ae1c732e8545 100644 --- a/clients/client-eks/src/commands/DescribeUpdateCommand.ts +++ b/clients/client-eks/src/commands/DescribeUpdateCommand.ts @@ -99,6 +99,7 @@ export interface DescribeUpdateCommandOutput extends DescribeUpdateResponse, __M * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DescribeUpdateCommand extends $Command diff --git a/clients/client-eks/src/commands/DisassociateAccessPolicyCommand.ts b/clients/client-eks/src/commands/DisassociateAccessPolicyCommand.ts index d711d64d8e838..37eeb4b4c3a5f 100644 --- a/clients/client-eks/src/commands/DisassociateAccessPolicyCommand.ts +++ b/clients/client-eks/src/commands/DisassociateAccessPolicyCommand.ts @@ -68,6 +68,7 @@ export interface DisassociateAccessPolicyCommandOutput extends DisassociateAcces * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DisassociateAccessPolicyCommand extends $Command diff --git a/clients/client-eks/src/commands/DisassociateIdentityProviderConfigCommand.ts b/clients/client-eks/src/commands/DisassociateIdentityProviderConfigCommand.ts index de530b518fc33..48fafc17980ff 100644 --- a/clients/client-eks/src/commands/DisassociateIdentityProviderConfigCommand.ts +++ b/clients/client-eks/src/commands/DisassociateIdentityProviderConfigCommand.ts @@ -120,6 +120,7 @@ export interface DisassociateIdentityProviderConfigCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class DisassociateIdentityProviderConfigCommand extends $Command diff --git a/clients/client-eks/src/commands/ListAccessEntriesCommand.ts b/clients/client-eks/src/commands/ListAccessEntriesCommand.ts index f36849061c9ff..dcfe3ade51c49 100644 --- a/clients/client-eks/src/commands/ListAccessEntriesCommand.ts +++ b/clients/client-eks/src/commands/ListAccessEntriesCommand.ts @@ -78,6 +78,7 @@ export interface ListAccessEntriesCommandOutput extends ListAccessEntriesRespons * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class ListAccessEntriesCommand extends $Command diff --git a/clients/client-eks/src/commands/ListAccessPoliciesCommand.ts b/clients/client-eks/src/commands/ListAccessPoliciesCommand.ts index 93dd6ec851a9d..e0c68acda6dee 100644 --- a/clients/client-eks/src/commands/ListAccessPoliciesCommand.ts +++ b/clients/client-eks/src/commands/ListAccessPoliciesCommand.ts @@ -65,6 +65,7 @@ export interface ListAccessPoliciesCommandOutput extends ListAccessPoliciesRespo * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class ListAccessPoliciesCommand extends $Command diff --git a/clients/client-eks/src/commands/ListAddonsCommand.ts b/clients/client-eks/src/commands/ListAddonsCommand.ts index 974b7137d9e6a..8fa60585e7686 100644 --- a/clients/client-eks/src/commands/ListAddonsCommand.ts +++ b/clients/client-eks/src/commands/ListAddonsCommand.ts @@ -82,6 +82,7 @@ export interface ListAddonsCommandOutput extends ListAddonsResponse, __MetadataB * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class ListAddonsCommand extends $Command diff --git a/clients/client-eks/src/commands/ListAssociatedAccessPoliciesCommand.ts b/clients/client-eks/src/commands/ListAssociatedAccessPoliciesCommand.ts index 0b529651465e6..dae5e70ae28f6 100644 --- a/clients/client-eks/src/commands/ListAssociatedAccessPoliciesCommand.ts +++ b/clients/client-eks/src/commands/ListAssociatedAccessPoliciesCommand.ts @@ -91,6 +91,7 @@ export interface ListAssociatedAccessPoliciesCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class ListAssociatedAccessPoliciesCommand extends $Command diff --git a/clients/client-eks/src/commands/ListClustersCommand.ts b/clients/client-eks/src/commands/ListClustersCommand.ts index 484c9720e1ba6..11dc9d3603b97 100644 --- a/clients/client-eks/src/commands/ListClustersCommand.ts +++ b/clients/client-eks/src/commands/ListClustersCommand.ts @@ -77,24 +77,24 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* - * @public + * * @example To list your available clusters * ```javascript * // This example command lists all of your available clusters in your default region. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListClustersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "clusters": [ + * clusters: [ * "devel", * "prod" * ] * } * *\/ - * // example id: to-list-your-available-clusters-1527868801040 * ``` * + * @public */ export class ListClustersCommand extends $Command .classBuilder< diff --git a/clients/client-eks/src/commands/ListEksAnywhereSubscriptionsCommand.ts b/clients/client-eks/src/commands/ListEksAnywhereSubscriptionsCommand.ts index 10813746e3b4b..4141d96274241 100644 --- a/clients/client-eks/src/commands/ListEksAnywhereSubscriptionsCommand.ts +++ b/clients/client-eks/src/commands/ListEksAnywhereSubscriptionsCommand.ts @@ -108,6 +108,7 @@ export interface ListEksAnywhereSubscriptionsCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class ListEksAnywhereSubscriptionsCommand extends $Command diff --git a/clients/client-eks/src/commands/ListFargateProfilesCommand.ts b/clients/client-eks/src/commands/ListFargateProfilesCommand.ts index df398c270fad9..7cd88c9cc563b 100644 --- a/clients/client-eks/src/commands/ListFargateProfilesCommand.ts +++ b/clients/client-eks/src/commands/ListFargateProfilesCommand.ts @@ -79,6 +79,7 @@ export interface ListFargateProfilesCommandOutput extends ListFargateProfilesRes * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class ListFargateProfilesCommand extends $Command diff --git a/clients/client-eks/src/commands/ListIdentityProviderConfigsCommand.ts b/clients/client-eks/src/commands/ListIdentityProviderConfigsCommand.ts index fdb3c46c7ff83..a08ca3537b1a2 100644 --- a/clients/client-eks/src/commands/ListIdentityProviderConfigsCommand.ts +++ b/clients/client-eks/src/commands/ListIdentityProviderConfigsCommand.ts @@ -89,6 +89,7 @@ export interface ListIdentityProviderConfigsCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class ListIdentityProviderConfigsCommand extends $Command diff --git a/clients/client-eks/src/commands/ListInsightsCommand.ts b/clients/client-eks/src/commands/ListInsightsCommand.ts index cfd8167cec58e..0672d1a0450de 100644 --- a/clients/client-eks/src/commands/ListInsightsCommand.ts +++ b/clients/client-eks/src/commands/ListInsightsCommand.ts @@ -102,6 +102,7 @@ export interface ListInsightsCommandOutput extends ListInsightsResponse, __Metad * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class ListInsightsCommand extends $Command diff --git a/clients/client-eks/src/commands/ListNodegroupsCommand.ts b/clients/client-eks/src/commands/ListNodegroupsCommand.ts index dea2ebf2fc400..72492ee573fd1 100644 --- a/clients/client-eks/src/commands/ListNodegroupsCommand.ts +++ b/clients/client-eks/src/commands/ListNodegroupsCommand.ts @@ -82,6 +82,7 @@ export interface ListNodegroupsCommandOutput extends ListNodegroupsResponse, __M * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class ListNodegroupsCommand extends $Command diff --git a/clients/client-eks/src/commands/ListPodIdentityAssociationsCommand.ts b/clients/client-eks/src/commands/ListPodIdentityAssociationsCommand.ts index 95ff4675b4236..8e80d5f097868 100644 --- a/clients/client-eks/src/commands/ListPodIdentityAssociationsCommand.ts +++ b/clients/client-eks/src/commands/ListPodIdentityAssociationsCommand.ts @@ -92,6 +92,7 @@ export interface ListPodIdentityAssociationsCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class ListPodIdentityAssociationsCommand extends $Command diff --git a/clients/client-eks/src/commands/ListTagsForResourceCommand.ts b/clients/client-eks/src/commands/ListTagsForResourceCommand.ts index e439417bd43b0..e720c8901db5c 100644 --- a/clients/client-eks/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-eks/src/commands/ListTagsForResourceCommand.ts @@ -65,25 +65,25 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* - * @public + * * @example To list tags for a cluster * ```javascript * // This example lists all of the tags for the `beta` cluster. * const input = { - * "resourceArn": "arn:aws:eks:us-west-2:012345678910:cluster/beta" + * resourceArn: "arn:aws:eks:us-west-2:012345678910:cluster/beta" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "tags": { - * "aws:tag:domain": "beta" + * tags: { + * aws:tag:domain: "beta" * } * } * *\/ - * // example id: to-list-tags-for-a-cluster-1568666903378 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-eks/src/commands/ListUpdatesCommand.ts b/clients/client-eks/src/commands/ListUpdatesCommand.ts index 74ceffd8f42cc..288d98a1f34e4 100644 --- a/clients/client-eks/src/commands/ListUpdatesCommand.ts +++ b/clients/client-eks/src/commands/ListUpdatesCommand.ts @@ -81,6 +81,7 @@ export interface ListUpdatesCommandOutput extends ListUpdatesResponse, __Metadat * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class ListUpdatesCommand extends $Command diff --git a/clients/client-eks/src/commands/RegisterClusterCommand.ts b/clients/client-eks/src/commands/RegisterClusterCommand.ts index 47b7715c209c5..a3ba0f0df3a55 100644 --- a/clients/client-eks/src/commands/RegisterClusterCommand.ts +++ b/clients/client-eks/src/commands/RegisterClusterCommand.ts @@ -227,6 +227,7 @@ export interface RegisterClusterCommandOutput extends RegisterClusterResponse, _ * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class RegisterClusterCommand extends $Command diff --git a/clients/client-eks/src/commands/TagResourceCommand.ts b/clients/client-eks/src/commands/TagResourceCommand.ts index 18c80aabe7e96..bcc472adb5fe4 100644 --- a/clients/client-eks/src/commands/TagResourceCommand.ts +++ b/clients/client-eks/src/commands/TagResourceCommand.ts @@ -70,6 +70,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-eks/src/commands/UntagResourceCommand.ts b/clients/client-eks/src/commands/UntagResourceCommand.ts index 8f438ee4be2c0..e6b6e85d59576 100644 --- a/clients/client-eks/src/commands/UntagResourceCommand.ts +++ b/clients/client-eks/src/commands/UntagResourceCommand.ts @@ -64,6 +64,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-eks/src/commands/UpdateAccessEntryCommand.ts b/clients/client-eks/src/commands/UpdateAccessEntryCommand.ts index faf177066c704..0f2dc887d8028 100644 --- a/clients/client-eks/src/commands/UpdateAccessEntryCommand.ts +++ b/clients/client-eks/src/commands/UpdateAccessEntryCommand.ts @@ -92,6 +92,7 @@ export interface UpdateAccessEntryCommandOutput extends UpdateAccessEntryRespons * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class UpdateAccessEntryCommand extends $Command diff --git a/clients/client-eks/src/commands/UpdateAddonCommand.ts b/clients/client-eks/src/commands/UpdateAddonCommand.ts index 566680bf0202f..ba20f5c44fa21 100644 --- a/clients/client-eks/src/commands/UpdateAddonCommand.ts +++ b/clients/client-eks/src/commands/UpdateAddonCommand.ts @@ -112,6 +112,7 @@ export interface UpdateAddonCommandOutput extends UpdateAddonResponse, __Metadat * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class UpdateAddonCommand extends $Command diff --git a/clients/client-eks/src/commands/UpdateClusterConfigCommand.ts b/clients/client-eks/src/commands/UpdateClusterConfigCommand.ts index 8a0ee2b5349ae..0d20e72b235bc 100644 --- a/clients/client-eks/src/commands/UpdateClusterConfigCommand.ts +++ b/clients/client-eks/src/commands/UpdateClusterConfigCommand.ts @@ -188,6 +188,7 @@ export interface UpdateClusterConfigCommandOutput extends UpdateClusterConfigRes * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class UpdateClusterConfigCommand extends $Command diff --git a/clients/client-eks/src/commands/UpdateClusterVersionCommand.ts b/clients/client-eks/src/commands/UpdateClusterVersionCommand.ts index 2006ed7aeec78..f11234bbe882c 100644 --- a/clients/client-eks/src/commands/UpdateClusterVersionCommand.ts +++ b/clients/client-eks/src/commands/UpdateClusterVersionCommand.ts @@ -127,6 +127,7 @@ export interface UpdateClusterVersionCommandOutput extends UpdateClusterVersionR * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class UpdateClusterVersionCommand extends $Command diff --git a/clients/client-eks/src/commands/UpdateEksAnywhereSubscriptionCommand.ts b/clients/client-eks/src/commands/UpdateEksAnywhereSubscriptionCommand.ts index 70008746a5386..c6e9dc40b08c2 100644 --- a/clients/client-eks/src/commands/UpdateEksAnywhereSubscriptionCommand.ts +++ b/clients/client-eks/src/commands/UpdateEksAnywhereSubscriptionCommand.ts @@ -111,6 +111,7 @@ export interface UpdateEksAnywhereSubscriptionCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class UpdateEksAnywhereSubscriptionCommand extends $Command diff --git a/clients/client-eks/src/commands/UpdateNodegroupConfigCommand.ts b/clients/client-eks/src/commands/UpdateNodegroupConfigCommand.ts index 957e3dda6c252..fdede5debb4a7 100644 --- a/clients/client-eks/src/commands/UpdateNodegroupConfigCommand.ts +++ b/clients/client-eks/src/commands/UpdateNodegroupConfigCommand.ts @@ -144,6 +144,7 @@ export interface UpdateNodegroupConfigCommandOutput extends UpdateNodegroupConfi * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class UpdateNodegroupConfigCommand extends $Command diff --git a/clients/client-eks/src/commands/UpdateNodegroupVersionCommand.ts b/clients/client-eks/src/commands/UpdateNodegroupVersionCommand.ts index 3ec217b82a09e..43e93cc2175ab 100644 --- a/clients/client-eks/src/commands/UpdateNodegroupVersionCommand.ts +++ b/clients/client-eks/src/commands/UpdateNodegroupVersionCommand.ts @@ -131,6 +131,7 @@ export interface UpdateNodegroupVersionCommandOutput extends UpdateNodegroupVers * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class UpdateNodegroupVersionCommand extends $Command diff --git a/clients/client-eks/src/commands/UpdatePodIdentityAssociationCommand.ts b/clients/client-eks/src/commands/UpdatePodIdentityAssociationCommand.ts index a2eb4a2f2db4b..2dae6d4dc9179 100644 --- a/clients/client-eks/src/commands/UpdatePodIdentityAssociationCommand.ts +++ b/clients/client-eks/src/commands/UpdatePodIdentityAssociationCommand.ts @@ -96,6 +96,7 @@ export interface UpdatePodIdentityAssociationCommandOutput * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* + * * @public */ export class UpdatePodIdentityAssociationCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/AbortEnvironmentUpdateCommand.ts b/clients/client-elastic-beanstalk/src/commands/AbortEnvironmentUpdateCommand.ts index 54d5c0573c0ff..04d5b7bab1f93 100644 --- a/clients/client-elastic-beanstalk/src/commands/AbortEnvironmentUpdateCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/AbortEnvironmentUpdateCommand.ts @@ -59,18 +59,21 @@ export interface AbortEnvironmentUpdateCommandOutput extends __MetadataBearer {} * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To abort a deployment * ```javascript * // The following code aborts a running application version deployment for an environment named my-env: * const input = { - * "EnvironmentName": "my-env" + * EnvironmentName: "my-env" * }; * const command = new AbortEnvironmentUpdateCommand(input); - * await client.send(command); - * // example id: to-abort-a-deployment-1456267848227 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AbortEnvironmentUpdateCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/ApplyEnvironmentManagedActionCommand.ts b/clients/client-elastic-beanstalk/src/commands/ApplyEnvironmentManagedActionCommand.ts index 5266ed04027c3..983624867d8c0 100644 --- a/clients/client-elastic-beanstalk/src/commands/ApplyEnvironmentManagedActionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ApplyEnvironmentManagedActionCommand.ts @@ -73,6 +73,7 @@ export interface ApplyEnvironmentManagedActionCommandOutput * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class ApplyEnvironmentManagedActionCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/AssociateEnvironmentOperationsRoleCommand.ts b/clients/client-elastic-beanstalk/src/commands/AssociateEnvironmentOperationsRoleCommand.ts index 869b38cf20c08..840cc2f6ccf70 100644 --- a/clients/client-elastic-beanstalk/src/commands/AssociateEnvironmentOperationsRoleCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/AssociateEnvironmentOperationsRoleCommand.ts @@ -64,6 +64,7 @@ export interface AssociateEnvironmentOperationsRoleCommandOutput extends __Metad * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class AssociateEnvironmentOperationsRoleCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/CheckDNSAvailabilityCommand.ts b/clients/client-elastic-beanstalk/src/commands/CheckDNSAvailabilityCommand.ts index 8583cc42af066..de3ebd12585a8 100644 --- a/clients/client-elastic-beanstalk/src/commands/CheckDNSAvailabilityCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CheckDNSAvailabilityCommand.ts @@ -56,24 +56,24 @@ export interface CheckDNSAvailabilityCommandOutput extends CheckDNSAvailabilityR * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To check the availability of a CNAME * ```javascript * // The following operation checks the availability of the subdomain my-cname: * const input = { - * "CNAMEPrefix": "my-cname" + * CNAMEPrefix: "my-cname" * }; * const command = new CheckDNSAvailabilityCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Available": true, - * "FullyQualifiedCNAME": "my-cname.us-west-2.elasticbeanstalk.com" + * Available: true, + * FullyQualifiedCNAME: "my-cname.us-west-2.elasticbeanstalk.com" * } * *\/ - * // example id: to-check-the-availability-of-a-cname-1456268589537 * ``` * + * @public */ export class CheckDNSAvailabilityCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/ComposeEnvironmentsCommand.ts b/clients/client-elastic-beanstalk/src/commands/ComposeEnvironmentsCommand.ts index 5dc3008e7ccfc..aa0ef669e6fd6 100644 --- a/clients/client-elastic-beanstalk/src/commands/ComposeEnvironmentsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ComposeEnvironmentsCommand.ts @@ -116,6 +116,7 @@ export interface ComposeEnvironmentsCommandOutput extends EnvironmentDescription * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class ComposeEnvironmentsCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/CreateApplicationCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateApplicationCommand.ts index 6ac58c61c4d77..43097c5e486a0 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateApplicationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateApplicationCommand.ts @@ -108,30 +108,30 @@ export interface CreateApplicationCommandOutput extends ApplicationDescriptionMe * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To create a new application * ```javascript * // The following operation creates a new application named my-app: * const input = { - * "ApplicationName": "my-app", - * "Description": "my application" + * ApplicationName: "my-app", + * Description: "my application" * }; * const command = new CreateApplicationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Application": { - * "ApplicationName": "my-app", - * "ConfigurationTemplates": [], - * "DateCreated": "2015-02-12T18:32:21.181Z", - * "DateUpdated": "2015-02-12T18:32:21.181Z", - * "Description": "my application" + * Application: { + * ApplicationName: "my-app", + * ConfigurationTemplates: [], + * DateCreated: "2015-02-12T18:32:21.181Z", + * DateUpdated: "2015-02-12T18:32:21.181Z", + * Description: "my application" * } * } * *\/ - * // example id: to-create-a-new-application-1456268895683 * ``` * + * @public */ export class CreateApplicationCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/CreateApplicationVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateApplicationVersionCommand.ts index f8d330aa9d2e9..220a2f731d3e8 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateApplicationVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateApplicationVersionCommand.ts @@ -143,41 +143,41 @@ export interface CreateApplicationVersionCommandOutput extends ApplicationVersio * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To create a new application * ```javascript * // The following operation creates a new version (v1) of an application named my-app: * const input = { - * "ApplicationName": "my-app", - * "AutoCreateApplication": true, - * "Description": "my-app-v1", - * "Process": true, - * "SourceBundle": { - * "S3Bucket": "my-bucket", - * "S3Key": "sample.war" + * ApplicationName: "my-app", + * AutoCreateApplication: true, + * Description: "my-app-v1", + * Process: true, + * SourceBundle: { + * S3Bucket: "my-bucket", + * S3Key: "sample.war" * }, - * "VersionLabel": "v1" + * VersionLabel: "v1" * }; * const command = new CreateApplicationVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationVersion": { - * "ApplicationName": "my-app", - * "DateCreated": "2015-02-03T23:01:25.412Z", - * "DateUpdated": "2015-02-03T23:01:25.412Z", - * "Description": "my-app-v1", - * "SourceBundle": { - * "S3Bucket": "my-bucket", - * "S3Key": "sample.war" + * ApplicationVersion: { + * ApplicationName: "my-app", + * DateCreated: "2015-02-03T23:01:25.412Z", + * DateUpdated: "2015-02-03T23:01:25.412Z", + * Description: "my-app-v1", + * SourceBundle: { + * S3Bucket: "my-bucket", + * S3Key: "sample.war" * }, - * "VersionLabel": "v1" + * VersionLabel: "v1" * } * } * *\/ - * // example id: to-create-a-new-application-1456268895683 * ``` * + * @public */ export class CreateApplicationVersionCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/CreateConfigurationTemplateCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateConfigurationTemplateCommand.ts index b30b47002e145..eb9cf0202a4e3 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateConfigurationTemplateCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateConfigurationTemplateCommand.ts @@ -127,29 +127,29 @@ export interface CreateConfigurationTemplateCommandOutput extends ConfigurationS * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To create a configuration template * ```javascript * // The following operation creates a configuration template named my-app-v1 from the settings applied to an environment with the id e-rpqsewtp2j: * const input = { - * "ApplicationName": "my-app", - * "EnvironmentId": "e-rpqsewtp2j", - * "TemplateName": "my-app-v1" + * ApplicationName: "my-app", + * EnvironmentId: "e-rpqsewtp2j", + * TemplateName: "my-app-v1" * }; * const command = new CreateConfigurationTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationName": "my-app", - * "DateCreated": "2015-08-12T18:40:39Z", - * "DateUpdated": "2015-08-12T18:40:39Z", - * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8", - * "TemplateName": "my-app-v1" + * ApplicationName: "my-app", + * DateCreated: "2015-08-12T18:40:39Z", + * DateUpdated: "2015-08-12T18:40:39Z", + * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8", + * TemplateName: "my-app-v1" * } * *\/ - * // example id: to-create-a-configuration-template-1456269283586 * ``` * + * @public */ export class CreateConfigurationTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/CreateEnvironmentCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateEnvironmentCommand.ts index e2c96bf62f28e..6077c15cc4a5c 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateEnvironmentCommand.ts @@ -138,41 +138,41 @@ export interface CreateEnvironmentCommandOutput extends EnvironmentDescription, * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To create a new environment for an application * ```javascript * // The following operation creates a new environment for version v1 of a java application named my-app: * const input = { - * "ApplicationName": "my-app", - * "CNAMEPrefix": "my-app", - * "EnvironmentName": "my-env", - * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8", - * "VersionLabel": "v1" + * ApplicationName: "my-app", + * CNAMEPrefix: "my-app", + * EnvironmentName: "my-env", + * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8", + * VersionLabel: "v1" * }; * const command = new CreateEnvironmentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationName": "my-app", - * "CNAME": "my-app.elasticbeanstalk.com", - * "DateCreated": "2015-02-03T23:04:54.479Z", - * "DateUpdated": "2015-02-03T23:04:54.479Z", - * "EnvironmentId": "e-izqpassy4h", - * "EnvironmentName": "my-env", - * "Health": "Grey", - * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8", - * "Status": "Launching", - * "Tier": { - * "Name": "WebServer", - * "Type": "Standard", - * "Version": " " + * ApplicationName: "my-app", + * CNAME: "my-app.elasticbeanstalk.com", + * DateCreated: "2015-02-03T23:04:54.479Z", + * DateUpdated: "2015-02-03T23:04:54.479Z", + * EnvironmentId: "e-izqpassy4h", + * EnvironmentName: "my-env", + * Health: "Grey", + * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8", + * Status: "Launching", + * Tier: { + * Name: "WebServer", + * Type: "Standard", + * Version: " " * }, - * "VersionLabel": "v1" + * VersionLabel: "v1" * } * *\/ - * // example id: to-create-a-new-environment-for-an-application-1456269380396 * ``` * + * @public */ export class CreateEnvironmentCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/CreatePlatformVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreatePlatformVersionCommand.ts index 0bdb9fcc5e348..2e435a8ffe2fb 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreatePlatformVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreatePlatformVersionCommand.ts @@ -105,6 +105,7 @@ export interface CreatePlatformVersionCommandOutput extends CreatePlatformVersio * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class CreatePlatformVersionCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/CreateStorageLocationCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateStorageLocationCommand.ts index 1fda5d1d78a5d..3b78c7e22d4f8 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateStorageLocationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateStorageLocationCommand.ts @@ -67,21 +67,21 @@ export interface CreateStorageLocationCommandOutput extends CreateStorageLocatio * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To create a new environment for an application * ```javascript * // The following operation creates a new environment for version v1 of a java application named my-app: - * const input = {}; + * const input = { /* empty *\/ }; * const command = new CreateStorageLocationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "S3Bucket": "elasticbeanstalk-us-west-2-0123456789012" + * S3Bucket: "elasticbeanstalk-us-west-2-0123456789012" * } * *\/ - * // example id: to-create-a-new-environment-for-an-application-1456269380396 * ``` * + * @public */ export class CreateStorageLocationCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/DeleteApplicationCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeleteApplicationCommand.ts index 2f254ecd4ad7e..f0b2dd60382f2 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeleteApplicationCommand.ts @@ -63,18 +63,21 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {} * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To delete an application * ```javascript * // The following operation deletes an application named my-app: * const input = { - * "ApplicationName": "my-app" + * ApplicationName: "my-app" * }; * const command = new DeleteApplicationCommand(input); - * await client.send(command); - * // example id: to-delete-an-application-1456269699366 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteApplicationCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/DeleteApplicationVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeleteApplicationVersionCommand.ts index 60635c4063ff0..e18800c7ac62c 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeleteApplicationVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeleteApplicationVersionCommand.ts @@ -86,20 +86,23 @@ export interface DeleteApplicationVersionCommandOutput extends __MetadataBearer * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To delete an application version * ```javascript * // The following operation deletes an application version named 22a0-stage-150819_182129 for an application named my-app: * const input = { - * "ApplicationName": "my-app", - * "DeleteSourceBundle": true, - * "VersionLabel": "22a0-stage-150819_182129" + * ApplicationName: "my-app", + * DeleteSourceBundle: true, + * VersionLabel: "22a0-stage-150819_182129" * }; * const command = new DeleteApplicationVersionCommand(input); - * await client.send(command); - * // example id: to-delete-an-application-version-1456269792956 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteApplicationVersionCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/DeleteConfigurationTemplateCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeleteConfigurationTemplateCommand.ts index dfe64907e9d05..725f3eefe4c6e 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeleteConfigurationTemplateCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeleteConfigurationTemplateCommand.ts @@ -63,19 +63,22 @@ export interface DeleteConfigurationTemplateCommandOutput extends __MetadataBear * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To delete a configuration template * ```javascript * // The following operation deletes a configuration template named my-template for an application named my-app: * const input = { - * "ApplicationName": "my-app", - * "TemplateName": "my-template" + * ApplicationName: "my-app", + * TemplateName: "my-template" * }; * const command = new DeleteConfigurationTemplateCommand(input); - * await client.send(command); - * // example id: to-delete-a-configuration-template-1456269836701 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteConfigurationTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/DeleteEnvironmentConfigurationCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeleteEnvironmentConfigurationCommand.ts index bee44e8988edc..f272b05f6a036 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeleteEnvironmentConfigurationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeleteEnvironmentConfigurationCommand.ts @@ -62,19 +62,22 @@ export interface DeleteEnvironmentConfigurationCommandOutput extends __MetadataB * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To delete a draft configuration * ```javascript * // The following operation deletes a draft configuration for an environment named my-env: * const input = { - * "ApplicationName": "my-app", - * "EnvironmentName": "my-env" + * ApplicationName: "my-app", + * EnvironmentName: "my-env" * }; * const command = new DeleteEnvironmentConfigurationCommand(input); - * await client.send(command); - * // example id: to-delete-a-draft-configuration-1456269886654 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteEnvironmentConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/DeletePlatformVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeletePlatformVersionCommand.ts index 828b79d1fc96c..ad1431dc8973f 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeletePlatformVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeletePlatformVersionCommand.ts @@ -86,6 +86,7 @@ export interface DeletePlatformVersionCommandOutput extends DeletePlatformVersio * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class DeletePlatformVersionCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeAccountAttributesCommand.ts index 21f24e705690a..0152146f5dbaf 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeAccountAttributesCommand.ts @@ -75,6 +75,7 @@ export interface DescribeAccountAttributesCommandOutput extends DescribeAccountA * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class DescribeAccountAttributesCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeApplicationVersionsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeApplicationVersionsCommand.ts index c6ace7bae7484..07db7392fbfc1 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeApplicationVersionsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeApplicationVersionsCommand.ts @@ -83,49 +83,49 @@ export interface DescribeApplicationVersionsCommandOutput * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To view information about an application version * ```javascript * // The following operation retrieves information about an application version labeled v2: * const input = { - * "ApplicationName": "my-app", - * "VersionLabels": [ + * ApplicationName: "my-app", + * VersionLabels: [ * "v2" * ] * }; * const command = new DescribeApplicationVersionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationVersions": [ + * ApplicationVersions: [ * { - * "ApplicationName": "my-app", - * "DateCreated": "2015-07-23T01:32:26.079Z", - * "DateUpdated": "2015-07-23T01:32:26.079Z", - * "Description": "update cover page", - * "SourceBundle": { - * "S3Bucket": "elasticbeanstalk-us-west-2-015321684451", - * "S3Key": "my-app/5026-stage-150723_224258.war" + * ApplicationName: "my-app", + * DateCreated: "2015-07-23T01:32:26.079Z", + * DateUpdated: "2015-07-23T01:32:26.079Z", + * Description: "update cover page", + * SourceBundle: { + * S3Bucket: "elasticbeanstalk-us-west-2-015321684451", + * S3Key: "my-app/5026-stage-150723_224258.war" * }, - * "VersionLabel": "v2" + * VersionLabel: "v2" * }, * { - * "ApplicationName": "my-app", - * "DateCreated": "2015-07-23T22:26:10.816Z", - * "DateUpdated": "2015-07-23T22:26:10.816Z", - * "Description": "initial version", - * "SourceBundle": { - * "S3Bucket": "elasticbeanstalk-us-west-2-015321684451", - * "S3Key": "my-app/5026-stage-150723_222618.war" + * ApplicationName: "my-app", + * DateCreated: "2015-07-23T22:26:10.816Z", + * DateUpdated: "2015-07-23T22:26:10.816Z", + * Description: "initial version", + * SourceBundle: { + * S3Bucket: "elasticbeanstalk-us-west-2-015321684451", + * S3Key: "my-app/5026-stage-150723_222618.war" * }, - * "VersionLabel": "v1" + * VersionLabel: "v1" * } * ] * } * *\/ - * // example id: to-view-information-about-an-application-version-1456269947428 * ``` * + * @public */ export class DescribeApplicationVersionsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeApplicationsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeApplicationsCommand.ts index 9c2256bff1d02..671046e74cafc 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeApplicationsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeApplicationsCommand.ts @@ -86,41 +86,41 @@ export interface DescribeApplicationsCommandOutput extends ApplicationDescriptio * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To view a list of applications * ```javascript * // The following operation retrieves information about applications in the current region: - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeApplicationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Applications": [ + * Applications: [ * { - * "ApplicationName": "ruby", - * "ConfigurationTemplates": [], - * "DateCreated": "2015-08-13T21:05:44.376Z", - * "DateUpdated": "2015-08-13T21:05:44.376Z", - * "Versions": [ + * ApplicationName: "ruby", + * ConfigurationTemplates: [], + * DateCreated: "2015-08-13T21:05:44.376Z", + * DateUpdated: "2015-08-13T21:05:44.376Z", + * Versions: [ * "Sample Application" * ] * }, * { - * "ApplicationName": "pythonsample", - * "ConfigurationTemplates": [], - * "DateCreated": "2015-08-13T19:05:43.637Z", - * "DateUpdated": "2015-08-13T19:05:43.637Z", - * "Description": "Application created from the EB CLI using \"eb init\"", - * "Versions": [ + * ApplicationName: "pythonsample", + * ConfigurationTemplates: [], + * DateCreated: "2015-08-13T19:05:43.637Z", + * DateUpdated: "2015-08-13T19:05:43.637Z", + * Description: `Application created from the EB CLI using "eb init"`, + * Versions: [ * "Sample Application" * ] * }, * { - * "ApplicationName": "nodejs-example", - * "ConfigurationTemplates": [], - * "DateCreated": "2015-08-06T17:50:02.486Z", - * "DateUpdated": "2015-08-06T17:50:02.486Z", - * "Versions": [ + * ApplicationName: "nodejs-example", + * ConfigurationTemplates: [], + * DateCreated: "2015-08-06T17:50:02.486Z", + * DateUpdated: "2015-08-06T17:50:02.486Z", + * Versions: [ * "add elasticache", * "First Release" * ] @@ -128,9 +128,9 @@ export interface DescribeApplicationsCommandOutput extends ApplicationDescriptio * ] * } * *\/ - * // example id: to-view-a-list-of-applications-1456270027373 * ``` * + * @public */ export class DescribeApplicationsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationOptionsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationOptionsCommand.ts index 3a64d21cac000..cc378c2a2a8b8 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationOptionsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationOptionsCommand.ts @@ -93,44 +93,44 @@ export interface DescribeConfigurationOptionsCommandOutput extends Configuration * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To view configuration options for an environment * ```javascript * // The following operation retrieves descriptions of all available configuration options for an environment named my-env: * const input = { - * "ApplicationName": "my-app", - * "EnvironmentName": "my-env" + * ApplicationName: "my-app", + * EnvironmentName: "my-env" * }; * const command = new DescribeConfigurationOptionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Options": [ + * Options: [ * { - * "ChangeSeverity": "NoInterruption", - * "DefaultValue": "30", - * "MaxValue": 300, - * "MinValue": 5, - * "Name": "Interval", - * "Namespace": "aws:elb:healthcheck", - * "UserDefined": false, - * "ValueType": "Scalar" + * ChangeSeverity: "NoInterruption", + * DefaultValue: "30", + * MaxValue: 300, + * MinValue: 5, + * Name: "Interval", + * Namespace: "aws:elb:healthcheck", + * UserDefined: false, + * ValueType: "Scalar" * }, * { - * "ChangeSeverity": "NoInterruption", - * "DefaultValue": "2000000", - * "MinValue": 0, - * "Name": "LowerThreshold", - * "Namespace": "aws:autoscaling:trigger", - * "UserDefined": false, - * "ValueType": "Scalar" + * ChangeSeverity: "NoInterruption", + * DefaultValue: "2000000", + * MinValue: 0, + * Name: "LowerThreshold", + * Namespace: "aws:autoscaling:trigger", + * UserDefined: false, + * ValueType: "Scalar" * } * ] * } * *\/ - * // example id: to-view-configuration-options-for-an-environment-1456276763917 * ``` * + * @public */ export class DescribeConfigurationOptionsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationSettingsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationSettingsCommand.ts index 4f67df5845c6f..f14287b0364fe 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationSettingsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationSettingsCommand.ts @@ -99,60 +99,60 @@ export interface DescribeConfigurationSettingsCommandOutput * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To view configurations settings for an environment * ```javascript * // The following operation retrieves configuration settings for an environment named my-env: * const input = { - * "ApplicationName": "my-app", - * "EnvironmentName": "my-env" + * ApplicationName: "my-app", + * EnvironmentName: "my-env" * }; * const command = new DescribeConfigurationSettingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ConfigurationSettings": [ + * ConfigurationSettings: [ * { - * "ApplicationName": "my-app", - * "DateCreated": "2015-08-13T19:16:25Z", - * "DateUpdated": "2015-08-13T23:30:07Z", - * "DeploymentStatus": "deployed", - * "Description": "Environment created from the EB CLI using \"eb create\"", - * "EnvironmentName": "my-env", - * "OptionSettings": [ + * ApplicationName: "my-app", + * DateCreated: "2015-08-13T19:16:25Z", + * DateUpdated: "2015-08-13T23:30:07Z", + * DeploymentStatus: "deployed", + * Description: `Environment created from the EB CLI using "eb create"`, + * EnvironmentName: "my-env", + * OptionSettings: [ * { - * "Namespace": "aws:autoscaling:asg", - * "OptionName": "Availability Zones", - * "ResourceName": "AWSEBAutoScalingGroup", - * "Value": "Any" + * Namespace: "aws:autoscaling:asg", + * OptionName: "Availability Zones", + * ResourceName: "AWSEBAutoScalingGroup", + * Value: "Any" * }, * { - * "Namespace": "aws:autoscaling:asg", - * "OptionName": "Cooldown", - * "ResourceName": "AWSEBAutoScalingGroup", - * "Value": "360" + * Namespace: "aws:autoscaling:asg", + * OptionName: "Cooldown", + * ResourceName: "AWSEBAutoScalingGroup", + * Value: "360" * }, * { - * "Namespace": "aws:elb:policies", - * "OptionName": "ConnectionDrainingTimeout", - * "ResourceName": "AWSEBLoadBalancer", - * "Value": "20" + * Namespace: "aws:elb:policies", + * OptionName: "ConnectionDrainingTimeout", + * ResourceName: "AWSEBLoadBalancer", + * Value: "20" * }, * { - * "Namespace": "aws:elb:policies", - * "OptionName": "ConnectionSettingIdleTimeout", - * "ResourceName": "AWSEBLoadBalancer", - * "Value": "60" + * Namespace: "aws:elb:policies", + * OptionName: "ConnectionSettingIdleTimeout", + * ResourceName: "AWSEBLoadBalancer", + * Value: "60" * } * ], - * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8" + * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8" * } * ] * } * *\/ - * // example id: to-view-configurations-settings-for-an-environment-1456276924537 * ``` * + * @public */ export class DescribeConfigurationSettingsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentHealthCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentHealthCommand.ts index f2437ebc5c109..669675058ae25 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentHealthCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentHealthCommand.ts @@ -105,60 +105,60 @@ export interface DescribeEnvironmentHealthCommandOutput extends DescribeEnvironm * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To view environment health * ```javascript * // The following operation retrieves overall health information for an environment named my-env: * const input = { - * "AttributeNames": [ + * AttributeNames: [ * "All" * ], - * "EnvironmentName": "my-env" + * EnvironmentName: "my-env" * }; * const command = new DescribeEnvironmentHealthCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationMetrics": { - * "Duration": 10, - * "Latency": { - * "P10": 0.001, - * "P50": 0.001, - * "P75": 0.002, - * "P85": 0.003, - * "P90": 0.003, - * "P95": 0.004, - * "P99": 0.004, - * "P999": 0.004 + * ApplicationMetrics: { + * Duration: 10, + * Latency: { + * P10: 0.001, + * P50: 0.001, + * P75: 0.002, + * P85: 0.003, + * P90: 0.003, + * P95: 0.004, + * P99: 0.004, + * P999: 0.004 * }, - * "RequestCount": 45, - * "StatusCodes": { - * "Status2xx": 45, - * "Status3xx": 0, - * "Status4xx": 0, - * "Status5xx": 0 + * RequestCount: 45, + * StatusCodes: { + * Status2xx: 45, + * Status3xx: 0, + * Status4xx: 0, + * Status5xx: 0 * } * }, - * "Causes": [], - * "Color": "Green", - * "EnvironmentName": "my-env", - * "HealthStatus": "Ok", - * "InstancesHealth": { - * "Degraded": 0, - * "Info": 0, - * "NoData": 0, - * "Ok": 1, - * "Pending": 0, - * "Severe": 0, - * "Unknown": 0, - * "Warning": 0 + * Causes: [], + * Color: "Green", + * EnvironmentName: "my-env", + * HealthStatus: "Ok", + * InstancesHealth: { + * Degraded: 0, + * Info: 0, + * NoData: 0, + * Ok: 1, + * Pending: 0, + * Severe: 0, + * Unknown: 0, + * Warning: 0 * }, - * "RefreshedAt": "2015-08-20T21:09:18Z" + * RefreshedAt: "2015-08-20T21:09:18Z" * } * *\/ - * // example id: to-view-environment-health-1456277109510 * ``` * + * @public */ export class DescribeEnvironmentHealthCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionHistoryCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionHistoryCommand.ts index a70121bd56922..d7e40c3a80ca6 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionHistoryCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionHistoryCommand.ts @@ -82,6 +82,7 @@ export interface DescribeEnvironmentManagedActionHistoryCommandOutput * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class DescribeEnvironmentManagedActionHistoryCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionsCommand.ts index d68c6989bb74a..0de47a35d3c90 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionsCommand.ts @@ -73,6 +73,7 @@ export interface DescribeEnvironmentManagedActionsCommandOutput * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class DescribeEnvironmentManagedActionsCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentResourcesCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentResourcesCommand.ts index 23c0d167dbd09..a1a2030457bfd 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentResourcesCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentResourcesCommand.ts @@ -100,47 +100,47 @@ export interface DescribeEnvironmentResourcesCommandOutput * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To view information about the AWS resources in your environment * ```javascript * // The following operation retrieves information about resources in an environment named my-env: * const input = { - * "EnvironmentName": "my-env" + * EnvironmentName: "my-env" * }; * const command = new DescribeEnvironmentResourcesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EnvironmentResources": { - * "AutoScalingGroups": [ + * EnvironmentResources: { + * AutoScalingGroups: [ * { - * "Name": "awseb-e-qu3fyyjyjs-stack-AWSEBAutoScalingGroup-QSB2ZO88SXZT" + * Name: "awseb-e-qu3fyyjyjs-stack-AWSEBAutoScalingGroup-QSB2ZO88SXZT" * } * ], - * "EnvironmentName": "my-env", - * "Instances": [ + * EnvironmentName: "my-env", + * Instances: [ * { - * "Id": "i-0c91c786" + * Id: "i-0c91c786" * } * ], - * "LaunchConfigurations": [ + * LaunchConfigurations: [ * { - * "Name": "awseb-e-qu3fyyjyjs-stack-AWSEBAutoScalingLaunchConfiguration-1UUVQIBC96TQ2" + * Name: "awseb-e-qu3fyyjyjs-stack-AWSEBAutoScalingLaunchConfiguration-1UUVQIBC96TQ2" * } * ], - * "LoadBalancers": [ + * LoadBalancers: [ * { - * "Name": "awseb-e-q-AWSEBLoa-1EEPZ0K98BIF0" + * Name: "awseb-e-q-AWSEBLoa-1EEPZ0K98BIF0" * } * ], - * "Queues": [], - * "Triggers": [] + * Queues: [], + * Triggers: [] * } * } * *\/ - * // example id: to-view-information-about-the-aws-resources-in-your-environment-1456277206232 * ``` * + * @public */ export class DescribeEnvironmentResourcesCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentsCommand.ts index e525039476f2e..12c1bab40dcd1 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentsCommand.ts @@ -111,45 +111,45 @@ export interface DescribeEnvironmentsCommandOutput extends EnvironmentDescriptio * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To view information about an environment * ```javascript * // The following operation retrieves information about an environment named my-env: * const input = { - * "EnvironmentNames": [ + * EnvironmentNames: [ * "my-env" * ] * }; * const command = new DescribeEnvironmentsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Environments": [ + * Environments: [ * { - * "AbortableOperationInProgress": false, - * "ApplicationName": "my-app", - * "CNAME": "my-env.elasticbeanstalk.com", - * "DateCreated": "2015-08-07T20:48:49.599Z", - * "DateUpdated": "2015-08-12T18:16:55.019Z", - * "EndpointURL": "awseb-e-w-AWSEBLoa-1483140XB0Q4L-109QXY8121.us-west-2.elb.amazonaws.com", - * "EnvironmentId": "e-rpqsewtp2j", - * "EnvironmentName": "my-env", - * "Health": "Green", - * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8", - * "Status": "Ready", - * "Tier": { - * "Name": "WebServer", - * "Type": "Standard", - * "Version": " " + * AbortableOperationInProgress: false, + * ApplicationName: "my-app", + * CNAME: "my-env.elasticbeanstalk.com", + * DateCreated: "2015-08-07T20:48:49.599Z", + * DateUpdated: "2015-08-12T18:16:55.019Z", + * EndpointURL: "awseb-e-w-AWSEBLoa-1483140XB0Q4L-109QXY8121.us-west-2.elb.amazonaws.com", + * EnvironmentId: "e-rpqsewtp2j", + * EnvironmentName: "my-env", + * Health: "Green", + * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8", + * Status: "Ready", + * Tier: { + * Name: "WebServer", + * Type: "Standard", + * Version: " " * }, - * "VersionLabel": "7f58-stage-150812_025409" + * VersionLabel: "7f58-stage-150812_025409" * } * ] * } * *\/ - * // example id: to-view-information-about-an-environment-1456277288662 * ``` * + * @public */ export class DescribeEnvironmentsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEventsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEventsCommand.ts index 57080dfd0fd12..a755186df0137 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEventsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEventsCommand.ts @@ -83,55 +83,55 @@ export interface DescribeEventsCommandOutput extends EventDescriptionsMessage, _ * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To view events for an environment * ```javascript * // The following operation retrieves events for an environment named my-env: * const input = { - * "EnvironmentName": "my-env" + * EnvironmentName: "my-env" * }; * const command = new DescribeEventsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Events": [ + * Events: [ * { - * "ApplicationName": "my-app", - * "EnvironmentName": "my-env", - * "EventDate": "2015-08-20T07:06:53.535Z", - * "Message": "Environment health has transitioned from Info to Ok.", - * "Severity": "INFO" + * ApplicationName: "my-app", + * EnvironmentName: "my-env", + * EventDate: "2015-08-20T07:06:53.535Z", + * Message: "Environment health has transitioned from Info to Ok.", + * Severity: "INFO" * }, * { - * "ApplicationName": "my-app", - * "EnvironmentName": "my-env", - * "EventDate": "2015-08-20T07:06:02.049Z", - * "Message": "Environment update completed successfully.", - * "RequestId": "b7f3960b-4709-11e5-ba1e-07e16200da41", - * "Severity": "INFO" + * ApplicationName: "my-app", + * EnvironmentName: "my-env", + * EventDate: "2015-08-20T07:06:02.049Z", + * Message: "Environment update completed successfully.", + * RequestId: "b7f3960b-4709-11e5-ba1e-07e16200da41", + * Severity: "INFO" * }, * { - * "ApplicationName": "my-app", - * "EnvironmentName": "my-env", - * "EventDate": "2015-08-13T19:16:27.561Z", - * "Message": "Using elasticbeanstalk-us-west-2-012445113685 as Amazon S3 storage bucket for environment data.", - * "RequestId": "ca8dfbf6-41ef-11e5-988b-651aa638f46b", - * "Severity": "INFO" + * ApplicationName: "my-app", + * EnvironmentName: "my-env", + * EventDate: "2015-08-13T19:16:27.561Z", + * Message: "Using elasticbeanstalk-us-west-2-012445113685 as Amazon S3 storage bucket for environment data.", + * RequestId: "ca8dfbf6-41ef-11e5-988b-651aa638f46b", + * Severity: "INFO" * }, * { - * "ApplicationName": "my-app", - * "EnvironmentName": "my-env", - * "EventDate": "2015-08-13T19:16:26.581Z", - * "Message": "createEnvironment is starting.", - * "RequestId": "cdfba8f6-41ef-11e5-988b-65638f41aa6b", - * "Severity": "INFO" + * ApplicationName: "my-app", + * EnvironmentName: "my-env", + * EventDate: "2015-08-13T19:16:26.581Z", + * Message: "createEnvironment is starting.", + * RequestId: "cdfba8f6-41ef-11e5-988b-65638f41aa6b", + * Severity: "INFO" * } * ] * } * *\/ - * // example id: to-view-events-for-an-environment-1456277367589 * ``` * + * @public */ export class DescribeEventsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeInstancesHealthCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeInstancesHealthCommand.ts index c607cee9779ab..6fe6c637c12de 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeInstancesHealthCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeInstancesHealthCommand.ts @@ -124,58 +124,58 @@ export interface DescribeInstancesHealthCommandOutput extends DescribeInstancesH * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To view environment health * ```javascript * // The following operation retrieves health information for instances in an environment named my-env: * const input = { - * "AttributeNames": [ + * AttributeNames: [ * "All" * ], - * "EnvironmentName": "my-env" + * EnvironmentName: "my-env" * }; * const command = new DescribeInstancesHealthCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InstanceHealthList": [ + * InstanceHealthList: [ * { - * "ApplicationMetrics": { - * "Duration": 10, - * "Latency": { - * "P10": 0, - * "P50": 0.001, - * "P75": 0.002, - * "P85": 0.003, - * "P90": 0.004, - * "P95": 0.005, - * "P99": 0.006, - * "P999": 0.006 + * ApplicationMetrics: { + * Duration: 10, + * Latency: { + * P10: 0, + * P50: 0.001, + * P75: 0.002, + * P85: 0.003, + * P90: 0.004, + * P95: 0.005, + * P99: 0.006, + * P999: 0.006 * }, - * "RequestCount": 48, - * "StatusCodes": { - * "Status2xx": 47, - * "Status3xx": 0, - * "Status4xx": 1, - * "Status5xx": 0 + * RequestCount: 48, + * StatusCodes: { + * Status2xx: 47, + * Status3xx: 0, + * Status4xx: 1, + * Status5xx: 0 * } * }, - * "Causes": [], - * "Color": "Green", - * "HealthStatus": "Ok", - * "InstanceId": "i-08691cc7", - * "LaunchedAt": "2015-08-13T19:17:09Z", - * "System": { - * "CPUUtilization": { - * "IOWait": 0.2, - * "IRQ": 0, - * "Idle": 97.8, - * "Nice": 0.1, - * "SoftIRQ": 0.1, - * "System": 0.3, - * "User": 1.5 + * Causes: [], + * Color: "Green", + * HealthStatus: "Ok", + * InstanceId: "i-08691cc7", + * LaunchedAt: "2015-08-13T19:17:09Z", + * System: { + * CPUUtilization: { + * IOWait: 0.2, + * IRQ: 0, + * Idle: 97.8, + * Nice: 0.1, + * SoftIRQ: 0.1, + * System: 0.3, + * User: 1.5 * }, - * "LoadAverage": [ + * LoadAverage: [ * 0, * 0.02, * 0.05 @@ -183,12 +183,12 @@ export interface DescribeInstancesHealthCommandOutput extends DescribeInstancesH * } * } * ], - * "RefreshedAt": "2015-08-20T21:09:08Z" + * RefreshedAt: "2015-08-20T21:09:08Z" * } * *\/ - * // example id: to-view-environment-health-1456277424757 * ``` * + * @public */ export class DescribeInstancesHealthCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/DescribePlatformVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribePlatformVersionCommand.ts index d29a7ae7e7e2d..6154c4aa4c2df 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribePlatformVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribePlatformVersionCommand.ts @@ -106,6 +106,7 @@ export interface DescribePlatformVersionCommandOutput extends DescribePlatformVe * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class DescribePlatformVersionCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/DisassociateEnvironmentOperationsRoleCommand.ts b/clients/client-elastic-beanstalk/src/commands/DisassociateEnvironmentOperationsRoleCommand.ts index cf973fdd34913..e8b2ae1251dc7 100644 --- a/clients/client-elastic-beanstalk/src/commands/DisassociateEnvironmentOperationsRoleCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DisassociateEnvironmentOperationsRoleCommand.ts @@ -64,6 +64,7 @@ export interface DisassociateEnvironmentOperationsRoleCommandOutput extends __Me * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class DisassociateEnvironmentOperationsRoleCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/ListAvailableSolutionStacksCommand.ts b/clients/client-elastic-beanstalk/src/commands/ListAvailableSolutionStacksCommand.ts index d3dc5c6e7cc56..747d720545fb3 100644 --- a/clients/client-elastic-beanstalk/src/commands/ListAvailableSolutionStacksCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ListAvailableSolutionStacksCommand.ts @@ -66,24 +66,24 @@ export interface ListAvailableSolutionStacksCommandOutput * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To view solution stacks * ```javascript * // The following operation lists solution stacks for all currently available platform configurations and any that you have used in the past: - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListAvailableSolutionStacksCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SolutionStackDetails": [ + * SolutionStackDetails: [ * { - * "PermittedFileTypes": [ + * PermittedFileTypes: [ * "zip" * ], - * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Node.js" + * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Node.js" * } * ], - * "SolutionStacks": [ + * SolutionStacks: [ * "64bit Amazon Linux 2015.03 v2.0.0 running Node.js", * "64bit Amazon Linux 2015.03 v2.0.0 running PHP 5.6", * "64bit Amazon Linux 2015.03 v2.0.0 running PHP 5.5", @@ -115,9 +115,9 @@ export interface ListAvailableSolutionStacksCommandOutput * ] * } * *\/ - * // example id: to-view-solution-stacks-1456277504811 * ``` * + * @public */ export class ListAvailableSolutionStacksCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/ListPlatformBranchesCommand.ts b/clients/client-elastic-beanstalk/src/commands/ListPlatformBranchesCommand.ts index 707ce8a33710d..f377e0fbe4a0d 100644 --- a/clients/client-elastic-beanstalk/src/commands/ListPlatformBranchesCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ListPlatformBranchesCommand.ts @@ -79,6 +79,7 @@ export interface ListPlatformBranchesCommandOutput extends ListPlatformBranchesR * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class ListPlatformBranchesCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/ListPlatformVersionsCommand.ts b/clients/client-elastic-beanstalk/src/commands/ListPlatformVersionsCommand.ts index c8daf53a3168c..13bc4f6893791 100644 --- a/clients/client-elastic-beanstalk/src/commands/ListPlatformVersionsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ListPlatformVersionsCommand.ts @@ -96,6 +96,7 @@ export interface ListPlatformVersionsCommandOutput extends ListPlatformVersionsR * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class ListPlatformVersionsCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/ListTagsForResourceCommand.ts b/clients/client-elastic-beanstalk/src/commands/ListTagsForResourceCommand.ts index 73089425498f1..6473e2fc5c422 100644 --- a/clients/client-elastic-beanstalk/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ResourceTagsDescriptio * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/RebuildEnvironmentCommand.ts b/clients/client-elastic-beanstalk/src/commands/RebuildEnvironmentCommand.ts index 33e1ebe5f8590..31fe179ca7fb9 100644 --- a/clients/client-elastic-beanstalk/src/commands/RebuildEnvironmentCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/RebuildEnvironmentCommand.ts @@ -59,18 +59,21 @@ export interface RebuildEnvironmentCommandOutput extends __MetadataBearer {} * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To rebuild an environment * ```javascript * // The following operation terminates and recreates the resources in an environment named my-env: * const input = { - * "EnvironmentName": "my-env" + * EnvironmentName: "my-env" * }; * const command = new RebuildEnvironmentCommand(input); - * await client.send(command); - * // example id: to-rebuild-an-environment-1456277600918 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RebuildEnvironmentCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/RequestEnvironmentInfoCommand.ts b/clients/client-elastic-beanstalk/src/commands/RequestEnvironmentInfoCommand.ts index 844c815afb29f..52febcb8cb19e 100644 --- a/clients/client-elastic-beanstalk/src/commands/RequestEnvironmentInfoCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/RequestEnvironmentInfoCommand.ts @@ -70,19 +70,22 @@ export interface RequestEnvironmentInfoCommandOutput extends __MetadataBearer {} * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To request tailed logs * ```javascript * // The following operation requests logs from an environment named my-env: * const input = { - * "EnvironmentName": "my-env", - * "InfoType": "tail" + * EnvironmentName: "my-env", + * InfoType: "tail" * }; * const command = new RequestEnvironmentInfoCommand(input); - * await client.send(command); - * // example id: to-request-tailed-logs-1456277657045 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RequestEnvironmentInfoCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/RestartAppServerCommand.ts b/clients/client-elastic-beanstalk/src/commands/RestartAppServerCommand.ts index 5c5d268ca7a6b..3c9d763adac3b 100644 --- a/clients/client-elastic-beanstalk/src/commands/RestartAppServerCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/RestartAppServerCommand.ts @@ -55,18 +55,21 @@ export interface RestartAppServerCommandOutput extends __MetadataBearer {} * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To restart application servers * ```javascript * // The following operation restarts application servers on all instances in an environment named my-env: * const input = { - * "EnvironmentName": "my-env" + * EnvironmentName: "my-env" * }; * const command = new RestartAppServerCommand(input); - * await client.send(command); - * // example id: to-restart-application-servers-1456277739302 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RestartAppServerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/RetrieveEnvironmentInfoCommand.ts b/clients/client-elastic-beanstalk/src/commands/RetrieveEnvironmentInfoCommand.ts index da8d01ea43a5d..a0401376867a4 100644 --- a/clients/client-elastic-beanstalk/src/commands/RetrieveEnvironmentInfoCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/RetrieveEnvironmentInfoCommand.ts @@ -73,31 +73,31 @@ export interface RetrieveEnvironmentInfoCommandOutput extends RetrieveEnvironmen * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To retrieve tailed logs * ```javascript * // The following operation retrieves a link to logs from an environment named my-env: * const input = { - * "EnvironmentName": "my-env", - * "InfoType": "tail" + * EnvironmentName: "my-env", + * InfoType: "tail" * }; * const command = new RetrieveEnvironmentInfoCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EnvironmentInfo": [ + * EnvironmentInfo: [ * { - * "Ec2InstanceId": "i-09c1c867", - * "InfoType": "tail", - * "Message": "https://elasticbeanstalk-us-west-2-0123456789012.s3.amazonaws.com/resources/environments/logs/tail/e-fyqyju3yjs/i-09c1c867/TailLogs-1440109397703.out?AWSAccessKeyId=AKGPT4J56IAJ2EUBL5CQ&Expires=1440195891&Signature=n%2BEalOV6A2HIOx4Rcfb7LT16bBM%3D", - * "SampleTimestamp": "2015-08-20T22:23:17.703Z" + * Ec2InstanceId: "i-09c1c867", + * InfoType: "tail", + * Message: "https://elasticbeanstalk-us-west-2-0123456789012.s3.amazonaws.com/resources/environments/logs/tail/e-fyqyju3yjs/i-09c1c867/TailLogs-1440109397703.out?AWSAccessKeyId=AKGPT4J56IAJ2EUBL5CQ&Expires=1440195891&Signature=n%2BEalOV6A2HIOx4Rcfb7LT16bBM%3D", + * SampleTimestamp: "2015-08-20T22:23:17.703Z" * } * ] * } * *\/ - * // example id: to-retrieve-tailed-logs-1456277792734 * ``` * + * @public */ export class RetrieveEnvironmentInfoCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/SwapEnvironmentCNAMEsCommand.ts b/clients/client-elastic-beanstalk/src/commands/SwapEnvironmentCNAMEsCommand.ts index 64e1396013e2c..1c3e512755821 100644 --- a/clients/client-elastic-beanstalk/src/commands/SwapEnvironmentCNAMEsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/SwapEnvironmentCNAMEsCommand.ts @@ -56,19 +56,22 @@ export interface SwapEnvironmentCNAMEsCommandOutput extends __MetadataBearer {} * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To swap environment CNAMES * ```javascript * // The following operation swaps the assigned subdomains of two environments: * const input = { - * "DestinationEnvironmentName": "my-env-green", - * "SourceEnvironmentName": "my-env-blue" + * DestinationEnvironmentName: "my-env-green", + * SourceEnvironmentName: "my-env-blue" * }; * const command = new SwapEnvironmentCNAMEsCommand(input); - * await client.send(command); - * // example id: to-swap-environment-cnames-1456277839438 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SwapEnvironmentCNAMEsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/TerminateEnvironmentCommand.ts b/clients/client-elastic-beanstalk/src/commands/TerminateEnvironmentCommand.ts index 8b6bfed9fd6de..d5e22a83ffb4f 100644 --- a/clients/client-elastic-beanstalk/src/commands/TerminateEnvironmentCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/TerminateEnvironmentCommand.ts @@ -102,38 +102,38 @@ export interface TerminateEnvironmentCommandOutput extends EnvironmentDescriptio * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To terminate an environment * ```javascript * // The following operation terminates an Elastic Beanstalk environment named my-env: * const input = { - * "EnvironmentName": "my-env" + * EnvironmentName: "my-env" * }; * const command = new TerminateEnvironmentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AbortableOperationInProgress": false, - * "ApplicationName": "my-app", - * "CNAME": "my-env.elasticbeanstalk.com", - * "DateCreated": "2015-08-12T18:52:53.622Z", - * "DateUpdated": "2015-08-12T19:05:54.744Z", - * "EndpointURL": "awseb-e-f-AWSEBLoa-1I9XUMP4-8492WNUP202574.us-west-2.elb.amazonaws.com", - * "EnvironmentId": "e-fh2eravpns", - * "EnvironmentName": "my-env", - * "Health": "Grey", - * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8", - * "Status": "Terminating", - * "Tier": { - * "Name": "WebServer", - * "Type": "Standard", - * "Version": " " + * AbortableOperationInProgress: false, + * ApplicationName: "my-app", + * CNAME: "my-env.elasticbeanstalk.com", + * DateCreated: "2015-08-12T18:52:53.622Z", + * DateUpdated: "2015-08-12T19:05:54.744Z", + * EndpointURL: "awseb-e-f-AWSEBLoa-1I9XUMP4-8492WNUP202574.us-west-2.elb.amazonaws.com", + * EnvironmentId: "e-fh2eravpns", + * EnvironmentName: "my-env", + * Health: "Grey", + * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8", + * Status: "Terminating", + * Tier: { + * Name: "WebServer", + * Type: "Standard", + * Version: " " * } * } * *\/ - * // example id: to-terminate-an-environment-1456277888556 * ``` * + * @public */ export class TerminateEnvironmentCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationCommand.ts index ceef722e99895..5eae5aee3cebb 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationCommand.ts @@ -87,25 +87,25 @@ export interface UpdateApplicationCommandOutput extends ApplicationDescriptionMe * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To change an application's description * ```javascript * // The following operation updates the description of an application named my-app: * const input = { - * "ApplicationName": "my-app", - * "Description": "my Elastic Beanstalk application" + * ApplicationName: "my-app", + * Description: "my Elastic Beanstalk application" * }; * const command = new UpdateApplicationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Application": { - * "ApplicationName": "my-app", - * "ConfigurationTemplates": [], - * "DateCreated": "2015-08-13T19:15:50.449Z", - * "DateUpdated": "2015-08-20T22:34:56.195Z", - * "Description": "my Elastic Beanstalk application", - * "Versions": [ + * Application: { + * ApplicationName: "my-app", + * ConfigurationTemplates: [], + * DateCreated: "2015-08-13T19:15:50.449Z", + * DateUpdated: "2015-08-20T22:34:56.195Z", + * Description: "my Elastic Beanstalk application", + * Versions: [ * "2fba-stage-150819_234450", * "bf07-stage-150820_214945", * "93f8", @@ -115,9 +115,9 @@ export interface UpdateApplicationCommandOutput extends ApplicationDescriptionMe * } * } * *\/ - * // example id: to-change-an-applications-description-1456277957075 * ``` * + * @public */ export class UpdateApplicationCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationResourceLifecycleCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationResourceLifecycleCommand.ts index 57665ce91d128..60cee0dd352c4 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationResourceLifecycleCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationResourceLifecycleCommand.ts @@ -97,6 +97,7 @@ export interface UpdateApplicationResourceLifecycleCommandOutput * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class UpdateApplicationResourceLifecycleCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationVersionCommand.ts index 4ca84f1f66908..df732f9762eb0 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationVersionCommand.ts @@ -79,35 +79,35 @@ export interface UpdateApplicationVersionCommandOutput extends ApplicationVersio * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To change an application version's description * ```javascript * // The following operation updates the description of an application version named 22a0-stage-150819_185942: * const input = { - * "ApplicationName": "my-app", - * "Description": "new description", - * "VersionLabel": "22a0-stage-150819_185942" + * ApplicationName: "my-app", + * Description: "new description", + * VersionLabel: "22a0-stage-150819_185942" * }; * const command = new UpdateApplicationVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationVersion": { - * "ApplicationName": "my-app", - * "DateCreated": "2015-08-19T18:59:17.646Z", - * "DateUpdated": "2015-08-20T22:53:28.871Z", - * "Description": "new description", - * "SourceBundle": { - * "S3Bucket": "elasticbeanstalk-us-west-2-0123456789012", - * "S3Key": "my-app/22a0-stage-150819_185942.war" + * ApplicationVersion: { + * ApplicationName: "my-app", + * DateCreated: "2015-08-19T18:59:17.646Z", + * DateUpdated: "2015-08-20T22:53:28.871Z", + * Description: "new description", + * SourceBundle: { + * S3Bucket: "elasticbeanstalk-us-west-2-0123456789012", + * S3Key: "my-app/22a0-stage-150819_185942.war" * }, - * "VersionLabel": "22a0-stage-150819_185942" + * VersionLabel: "22a0-stage-150819_185942" * } * } * *\/ - * // example id: to-change-an-application-versions-description-1456278019237 * ``` * + * @public */ export class UpdateApplicationVersionCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateConfigurationTemplateCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateConfigurationTemplateCommand.ts index 2e819bd74a43f..584c00bd55aea 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateConfigurationTemplateCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateConfigurationTemplateCommand.ts @@ -108,34 +108,34 @@ export interface UpdateConfigurationTemplateCommandOutput extends ConfigurationS * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To update a configuration template * ```javascript * // The following operation removes the configured CloudWatch custom health metrics configuration ConfigDocument from a saved configuration template named my-template: * const input = { - * "ApplicationName": "my-app", - * "OptionsToRemove": [ + * ApplicationName: "my-app", + * OptionsToRemove: [ * { - * "Namespace": "aws:elasticbeanstalk:healthreporting:system", - * "OptionName": "ConfigDocument" + * Namespace: "aws:elasticbeanstalk:healthreporting:system", + * OptionName: "ConfigDocument" * } * ], - * "TemplateName": "my-template" + * TemplateName: "my-template" * }; * const command = new UpdateConfigurationTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplicationName": "my-app", - * "DateCreated": "2015-08-20T22:39:31Z", - * "DateUpdated": "2015-08-20T22:43:11Z", - * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8", - * "TemplateName": "my-template" + * ApplicationName: "my-app", + * DateCreated: "2015-08-20T22:39:31Z", + * DateUpdated: "2015-08-20T22:43:11Z", + * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8", + * TemplateName: "my-template" * } * *\/ - * // example id: to-update-a-configuration-template-1456278075300 * ``` * + * @public */ export class UpdateConfigurationTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateEnvironmentCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateEnvironmentCommand.ts index 4e46c08f4fc75..5d98ae24a8a39 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateEnvironmentCommand.ts @@ -138,93 +138,92 @@ export interface UpdateEnvironmentCommandOutput extends EnvironmentDescription, * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public - * @example To update an environment to a new version - * ```javascript - * // The following operation updates an environment named "my-env" to version "v2" of the application to which it belongs: - * const input = { - * "EnvironmentName": "my-env", - * "VersionLabel": "v2" - * }; - * const command = new UpdateEnvironmentCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ApplicationName": "my-app", - * "CNAME": "my-env.elasticbeanstalk.com", - * "DateCreated": "2015-02-03T23:04:54.453Z", - * "DateUpdated": "2015-02-03T23:12:29.119Z", - * "EndpointURL": "awseb-e-i-AWSEBLoa-1RDLX6TC9VUAO-0123456789.us-west-2.elb.amazonaws.com", - * "EnvironmentId": "e-szqipays4h", - * "EnvironmentName": "my-env", - * "Health": "Grey", - * "SolutionStackName": "64bit Amazon Linux running Tomcat 7", - * "Status": "Updating", - * "Tier": { - * "Name": "WebServer", - * "Type": "Standard", - * "Version": " " - * }, - * "VersionLabel": "v2" - * } - * *\/ - * // example id: to-update-an-environment-to-a-new-version-1456278210718 - * ``` * * @example To configure option settings * ```javascript * // The following operation configures several options in the aws:elb:loadbalancer namespace: * const input = { - * "EnvironmentName": "my-env", - * "OptionSettings": [ + * EnvironmentName: "my-env", + * OptionSettings: [ * { - * "Namespace": "aws:elb:healthcheck", - * "OptionName": "Interval", - * "Value": "15" + * Namespace: "aws:elb:healthcheck", + * OptionName: "Interval", + * Value: "15" * }, * { - * "Namespace": "aws:elb:healthcheck", - * "OptionName": "Timeout", - * "Value": "8" + * Namespace: "aws:elb:healthcheck", + * OptionName: "Timeout", + * Value: "8" * }, * { - * "Namespace": "aws:elb:healthcheck", - * "OptionName": "HealthyThreshold", - * "Value": "2" + * Namespace: "aws:elb:healthcheck", + * OptionName: "HealthyThreshold", + * Value: "2" * }, * { - * "Namespace": "aws:elb:healthcheck", - * "OptionName": "UnhealthyThreshold", - * "Value": "3" + * Namespace: "aws:elb:healthcheck", + * OptionName: "UnhealthyThreshold", + * Value: "3" * } * ] * }; * const command = new UpdateEnvironmentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AbortableOperationInProgress": true, - * "ApplicationName": "my-app", - * "CNAME": "my-env.elasticbeanstalk.com", - * "DateCreated": "2015-08-07T20:48:49.599Z", - * "DateUpdated": "2015-08-12T18:15:23.804Z", - * "EndpointURL": "awseb-e-w-AWSEBLoa-14XB83101Q4L-104QXY80921.sa-east-1.elb.amazonaws.com", - * "EnvironmentId": "e-wtp2rpqsej", - * "EnvironmentName": "my-env", - * "Health": "Grey", - * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8", - * "Status": "Updating", - * "Tier": { - * "Name": "WebServer", - * "Type": "Standard", - * "Version": " " + * AbortableOperationInProgress: true, + * ApplicationName: "my-app", + * CNAME: "my-env.elasticbeanstalk.com", + * DateCreated: "2015-08-07T20:48:49.599Z", + * DateUpdated: "2015-08-12T18:15:23.804Z", + * EndpointURL: "awseb-e-w-AWSEBLoa-14XB83101Q4L-104QXY80921.sa-east-1.elb.amazonaws.com", + * EnvironmentId: "e-wtp2rpqsej", + * EnvironmentName: "my-env", + * Health: "Grey", + * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8", + * Status: "Updating", + * Tier: { + * Name: "WebServer", + * Type: "Standard", + * Version: " " * }, - * "VersionLabel": "7f58-stage-150812_025409" + * VersionLabel: "7f58-stage-150812_025409" * } * *\/ - * // example id: to-configure-option-settings-1456278286349 * ``` * + * @example To update an environment to a new version + * ```javascript + * // The following operation updates an environment named "my-env" to version "v2" of the application to which it belongs: + * const input = { + * EnvironmentName: "my-env", + * VersionLabel: "v2" + * }; + * const command = new UpdateEnvironmentCommand(input); + * const response = await client.send(command); + * /* response is + * { + * ApplicationName: "my-app", + * CNAME: "my-env.elasticbeanstalk.com", + * DateCreated: "2015-02-03T23:04:54.453Z", + * DateUpdated: "2015-02-03T23:12:29.119Z", + * EndpointURL: "awseb-e-i-AWSEBLoa-1RDLX6TC9VUAO-0123456789.us-west-2.elb.amazonaws.com", + * EnvironmentId: "e-szqipays4h", + * EnvironmentName: "my-env", + * Health: "Grey", + * SolutionStackName: "64bit Amazon Linux running Tomcat 7", + * Status: "Updating", + * Tier: { + * Name: "WebServer", + * Type: "Standard", + * Version: " " + * }, + * VersionLabel: "v2" + * } + * *\/ + * ``` + * + * @public */ export class UpdateEnvironmentCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateTagsForResourceCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateTagsForResourceCommand.ts index 2daee2771ff23..83eb2cfaafa08 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateTagsForResourceCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateTagsForResourceCommand.ts @@ -101,6 +101,7 @@ export interface UpdateTagsForResourceCommandOutput extends __MetadataBearer {} * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* + * * @public */ export class UpdateTagsForResourceCommand extends $Command diff --git a/clients/client-elastic-beanstalk/src/commands/ValidateConfigurationSettingsCommand.ts b/clients/client-elastic-beanstalk/src/commands/ValidateConfigurationSettingsCommand.ts index 105cc5afec7a9..0ee92041b1f6b 100644 --- a/clients/client-elastic-beanstalk/src/commands/ValidateConfigurationSettingsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ValidateConfigurationSettingsCommand.ts @@ -87,31 +87,31 @@ export interface ValidateConfigurationSettingsCommandOutput * @throws {@link ElasticBeanstalkServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* - * @public + * * @example To validate configuration settings * ```javascript * // The following operation validates a CloudWatch custom metrics config document: * const input = { - * "ApplicationName": "my-app", - * "EnvironmentName": "my-env", - * "OptionSettings": [ + * ApplicationName: "my-app", + * EnvironmentName: "my-env", + * OptionSettings: [ * { - * "Namespace": "aws:elasticbeanstalk:healthreporting:system", - * "OptionName": "ConfigDocument", - * "Value": "{\"CloudWatchMetrics\": {\"Environment\": {\"ApplicationLatencyP99.9\": null,\"InstancesSevere\": 60,\"ApplicationLatencyP90\": 60,\"ApplicationLatencyP99\": null,\"ApplicationLatencyP95\": 60,\"InstancesUnknown\": 60,\"ApplicationLatencyP85\": 60,\"InstancesInfo\": null,\"ApplicationRequests2xx\": null,\"InstancesDegraded\": null,\"InstancesWarning\": 60,\"ApplicationLatencyP50\": 60,\"ApplicationRequestsTotal\": null,\"InstancesNoData\": null,\"InstancesPending\": 60,\"ApplicationLatencyP10\": null,\"ApplicationRequests5xx\": null,\"ApplicationLatencyP75\": null,\"InstancesOk\": 60,\"ApplicationRequests3xx\": null,\"ApplicationRequests4xx\": null},\"Instance\": {\"ApplicationLatencyP99.9\": null,\"ApplicationLatencyP90\": 60,\"ApplicationLatencyP99\": null,\"ApplicationLatencyP95\": null,\"ApplicationLatencyP85\": null,\"CPUUser\": 60,\"ApplicationRequests2xx\": null,\"CPUIdle\": null,\"ApplicationLatencyP50\": null,\"ApplicationRequestsTotal\": 60,\"RootFilesystemUtil\": null,\"LoadAverage1min\": null,\"CPUIrq\": null,\"CPUNice\": 60,\"CPUIowait\": 60,\"ApplicationLatencyP10\": null,\"LoadAverage5min\": null,\"ApplicationRequests5xx\": null,\"ApplicationLatencyP75\": 60,\"CPUSystem\": 60,\"ApplicationRequests3xx\": 60,\"ApplicationRequests4xx\": null,\"InstanceHealth\": null,\"CPUSoftirq\": 60}},\"Version\": 1}" + * Namespace: "aws:elasticbeanstalk:healthreporting:system", + * OptionName: "ConfigDocument", + * Value: `{"CloudWatchMetrics": {"Environment": {"ApplicationLatencyP99.9": null,"InstancesSevere": 60,"ApplicationLatencyP90": 60,"ApplicationLatencyP99": null,"ApplicationLatencyP95": 60,"InstancesUnknown": 60,"ApplicationLatencyP85": 60,"InstancesInfo": null,"ApplicationRequests2xx": null,"InstancesDegraded": null,"InstancesWarning": 60,"ApplicationLatencyP50": 60,"ApplicationRequestsTotal": null,"InstancesNoData": null,"InstancesPending": 60,"ApplicationLatencyP10": null,"ApplicationRequests5xx": null,"ApplicationLatencyP75": null,"InstancesOk": 60,"ApplicationRequests3xx": null,"ApplicationRequests4xx": null},"Instance": {"ApplicationLatencyP99.9": null,"ApplicationLatencyP90": 60,"ApplicationLatencyP99": null,"ApplicationLatencyP95": null,"ApplicationLatencyP85": null,"CPUUser": 60,"ApplicationRequests2xx": null,"CPUIdle": null,"ApplicationLatencyP50": null,"ApplicationRequestsTotal": 60,"RootFilesystemUtil": null,"LoadAverage1min": null,"CPUIrq": null,"CPUNice": 60,"CPUIowait": 60,"ApplicationLatencyP10": null,"LoadAverage5min": null,"ApplicationRequests5xx": null,"ApplicationLatencyP75": 60,"CPUSystem": 60,"ApplicationRequests3xx": 60,"ApplicationRequests4xx": null,"InstanceHealth": null,"CPUSoftirq": 60}},"Version": 1}` * } * ] * }; * const command = new ValidateConfigurationSettingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Messages": [] + * Messages: [] * } * *\/ - * // example id: to-validate-configuration-settings-1456278393654 * ``` * + * @public */ export class ValidateConfigurationSettingsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/AddListenerCertificatesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/AddListenerCertificatesCommand.ts index bbf95a5a46ee1..22f1bd229d7ec 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/AddListenerCertificatesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/AddListenerCertificatesCommand.ts @@ -85,6 +85,7 @@ export interface AddListenerCertificatesCommandOutput extends AddListenerCertifi * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class AddListenerCertificatesCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/AddTagsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/AddTagsCommand.ts index f1c03e8804064..9604b89129e2d 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/AddTagsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/AddTagsCommand.ts @@ -90,30 +90,33 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {} * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To add tags to a load balancer * ```javascript * // This example adds the specified tags to the specified load balancer. * const input = { - * "ResourceArns": [ + * ResourceArns: [ * "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" * ], - * "Tags": [ + * Tags: [ * { - * "Key": "project", - * "Value": "lima" + * Key: "project", + * Value: "lima" * }, * { - * "Key": "department", - * "Value": "digital-media" + * Key: "department", + * Value: "digital-media" * } * ] * }; * const command = new AddTagsCommand(input); - * await client.send(command); - * // example id: elbv2-add-tags-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AddTagsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/AddTrustStoreRevocationsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/AddTrustStoreRevocationsCommand.ts index 9adbafc993e31..7072c27007193 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/AddTrustStoreRevocationsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/AddTrustStoreRevocationsCommand.ts @@ -86,6 +86,7 @@ export interface AddTrustStoreRevocationsCommandOutput extends AddTrustStoreRevo * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class AddTrustStoreRevocationsCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/CreateListenerCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/CreateListenerCommand.ts index 31d51fea6bba6..945e1e6bd6c86 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/CreateListenerCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/CreateListenerCommand.ts @@ -315,93 +315,92 @@ export interface CreateListenerCommandOutput extends CreateListenerOutput, __Met * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To create an HTTP listener * ```javascript * // This example creates an HTTP listener for the specified load balancer that forwards requests to the specified target group. * const input = { - * "DefaultActions": [ + * DefaultActions: [ * { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "Type": "forward" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * Type: "forward" * } * ], - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", - * "Port": 80, - * "Protocol": "HTTP" + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", + * Port: 80, + * Protocol: "HTTP" * }; * const command = new CreateListenerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Listeners": [ + * Listeners: [ * { - * "DefaultActions": [ + * DefaultActions: [ * { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "Type": "forward" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * Type: "forward" * } * ], - * "ListenerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2", - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", - * "Port": 80, - * "Protocol": "HTTP" + * ListenerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2", + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", + * Port: 80, + * Protocol: "HTTP" * } * ] * } * *\/ - * // example id: elbv2-create-listener-1 * ``` * * @example To create an HTTPS listener * ```javascript * // This example creates an HTTPS listener for the specified load balancer that forwards requests to the specified target group. Note that you must specify an SSL certificate for an HTTPS listener. You can create and manage certificates using AWS Certificate Manager (ACM). Alternatively, you can create a certificate using SSL/TLS tools, get the certificate signed by a certificate authority (CA), and upload the certificate to AWS Identity and Access Management (IAM). * const input = { - * "Certificates": [ + * Certificates: [ * { - * "CertificateArn": "arn:aws:iam::123456789012:server-certificate/my-server-cert" + * CertificateArn: "arn:aws:iam::123456789012:server-certificate/my-server-cert" * } * ], - * "DefaultActions": [ + * DefaultActions: [ * { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "Type": "forward" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * Type: "forward" * } * ], - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", - * "Port": 443, - * "Protocol": "HTTPS", - * "SslPolicy": "ELBSecurityPolicy-2015-05" + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", + * Port: 443, + * Protocol: "HTTPS", + * SslPolicy: "ELBSecurityPolicy-2015-05" * }; * const command = new CreateListenerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Listeners": [ + * Listeners: [ * { - * "Certificates": [ + * Certificates: [ * { - * "CertificateArn": "arn:aws:iam::123456789012:server-certificate/my-server-cert" + * CertificateArn: "arn:aws:iam::123456789012:server-certificate/my-server-cert" * } * ], - * "DefaultActions": [ + * DefaultActions: [ * { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "Type": "forward" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * Type: "forward" * } * ], - * "ListenerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2", - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", - * "Port": 443, - * "Protocol": "HTTPS", - * "SslPolicy": "ELBSecurityPolicy-2015-05" + * ListenerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2", + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", + * Port: 443, + * Protocol: "HTTPS", + * SslPolicy: "ELBSecurityPolicy-2015-05" * } * ] * } * *\/ - * // example id: elbv2-create-listener-2 * ``` * + * @public */ export class CreateListenerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/CreateLoadBalancerCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/CreateLoadBalancerCommand.ts index b84c0061051ab..311680c92c061 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/CreateLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/CreateLoadBalancerCommand.ts @@ -194,103 +194,102 @@ export interface CreateLoadBalancerCommandOutput extends CreateLoadBalancerOutpu * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To create an Internet-facing load balancer * ```javascript * // This example creates an Internet-facing load balancer and enables the Availability Zones for the specified subnets. * const input = { - * "Name": "my-load-balancer", - * "Subnets": [ + * Name: "my-load-balancer", + * Subnets: [ * "subnet-b7d581c0", * "subnet-8360a9e7" * ] * }; * const command = new CreateLoadBalancerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LoadBalancers": [ + * LoadBalancers: [ * { - * "AvailabilityZones": [ + * AvailabilityZones: [ * { - * "SubnetId": "subnet-8360a9e7", - * "ZoneName": "us-west-2a" + * SubnetId: "subnet-8360a9e7", + * ZoneName: "us-west-2a" * }, * { - * "SubnetId": "subnet-b7d581c0", - * "ZoneName": "us-west-2b" + * SubnetId: "subnet-b7d581c0", + * ZoneName: "us-west-2b" * } * ], - * "CanonicalHostedZoneId": "Z2P70J7EXAMPLE", - * "CreatedTime": "2016-03-25T21:26:12.920Z", - * "DNSName": "my-load-balancer-424835706.us-west-2.elb.amazonaws.com", - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", - * "LoadBalancerName": "my-load-balancer", - * "Scheme": "internet-facing", - * "SecurityGroups": [ + * CanonicalHostedZoneId: "Z2P70J7EXAMPLE", + * CreatedTime: "2016-03-25T21:26:12.920Z", + * DNSName: "my-load-balancer-424835706.us-west-2.elb.amazonaws.com", + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", + * LoadBalancerName: "my-load-balancer", + * Scheme: "internet-facing", + * SecurityGroups: [ * "sg-5943793c" * ], - * "State": { - * "Code": "provisioning" + * State: { + * Code: "provisioning" * }, - * "Type": "application", - * "VpcId": "vpc-3ac0fb5f" + * Type: "application", + * VpcId: "vpc-3ac0fb5f" * } * ] * } * *\/ - * // example id: elbv2-create-load-balancer-1 * ``` * * @example To create an internal load balancer * ```javascript * // This example creates an internal load balancer and enables the Availability Zones for the specified subnets. * const input = { - * "Name": "my-internal-load-balancer", - * "Scheme": "internal", - * "SecurityGroups": [], - * "Subnets": [ + * Name: "my-internal-load-balancer", + * Scheme: "internal", + * SecurityGroups: [], + * Subnets: [ * "subnet-b7d581c0", * "subnet-8360a9e7" * ] * }; * const command = new CreateLoadBalancerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LoadBalancers": [ + * LoadBalancers: [ * { - * "AvailabilityZones": [ + * AvailabilityZones: [ * { - * "SubnetId": "subnet-8360a9e7", - * "ZoneName": "us-west-2a" + * SubnetId: "subnet-8360a9e7", + * ZoneName: "us-west-2a" * }, * { - * "SubnetId": "subnet-b7d581c0", - * "ZoneName": "us-west-2b" + * SubnetId: "subnet-b7d581c0", + * ZoneName: "us-west-2b" * } * ], - * "CanonicalHostedZoneId": "Z2P70J7EXAMPLE", - * "CreatedTime": "2016-03-25T21:29:48.850Z", - * "DNSName": "internal-my-internal-load-balancer-1529930873.us-west-2.elb.amazonaws.com", - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-internal-load-balancer/5b49b8d4303115c2", - * "LoadBalancerName": "my-internal-load-balancer", - * "Scheme": "internal", - * "SecurityGroups": [ + * CanonicalHostedZoneId: "Z2P70J7EXAMPLE", + * CreatedTime: "2016-03-25T21:29:48.850Z", + * DNSName: "internal-my-internal-load-balancer-1529930873.us-west-2.elb.amazonaws.com", + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-internal-load-balancer/5b49b8d4303115c2", + * LoadBalancerName: "my-internal-load-balancer", + * Scheme: "internal", + * SecurityGroups: [ * "sg-5943793c" * ], - * "State": { - * "Code": "provisioning" + * State: { + * Code: "provisioning" * }, - * "Type": "application", - * "VpcId": "vpc-3ac0fb5f" + * Type: "application", + * VpcId: "vpc-3ac0fb5f" * } * ] * } * *\/ - * // example id: elbv2-create-load-balancer-2 * ``` * + * @public */ export class CreateLoadBalancerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/CreateRuleCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/CreateRuleCommand.ts index 0cbac477e319c..0d1bfe0438ef9 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/CreateRuleCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/CreateRuleCommand.ts @@ -326,58 +326,58 @@ export interface CreateRuleCommandOutput extends CreateRuleOutput, __MetadataBea * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To create a rule * ```javascript * // This example creates a rule that forwards requests to the specified target group if the URL contains the specified pattern (for example, /img/*). * const input = { - * "Actions": [ + * Actions: [ * { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "Type": "forward" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * Type: "forward" * } * ], - * "Conditions": [ + * Conditions: [ * { - * "Field": "path-pattern", - * "Values": [ + * Field: "path-pattern", + * Values: [ * "/img/*" * ] * } * ], - * "ListenerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2", - * "Priority": 10 + * ListenerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2", + * Priority: 10 * }; * const command = new CreateRuleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Rules": [ + * Rules: [ * { - * "Actions": [ + * Actions: [ * { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "Type": "forward" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * Type: "forward" * } * ], - * "Conditions": [ + * Conditions: [ * { - * "Field": "path-pattern", - * "Values": [ + * Field: "path-pattern", + * Values: [ * "/img/*" * ] * } * ], - * "IsDefault": false, - * "Priority": "10", - * "RuleArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/9683b2d02a6cabee" + * IsDefault: false, + * Priority: "10", + * RuleArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/9683b2d02a6cabee" * } * ] * } * *\/ - * // example id: elbv2-create-rule-1 * ``` * + * @public */ export class CreateRuleCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/CreateTargetGroupCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/CreateTargetGroupCommand.ts index bf371b1739958..ad4a1304e0328 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/CreateTargetGroupCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/CreateTargetGroupCommand.ts @@ -145,44 +145,44 @@ export interface CreateTargetGroupCommandOutput extends CreateTargetGroupOutput, * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To create a target group * ```javascript * // This example creates a target group that you can use to route traffic to targets using HTTP on port 80. This target group uses the default health check configuration. * const input = { - * "Name": "my-targets", - * "Port": 80, - * "Protocol": "HTTP", - * "VpcId": "vpc-3ac0fb5f" + * Name: "my-targets", + * Port: 80, + * Protocol: "HTTP", + * VpcId: "vpc-3ac0fb5f" * }; * const command = new CreateTargetGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TargetGroups": [ + * TargetGroups: [ * { - * "HealthCheckIntervalSeconds": 30, - * "HealthCheckPath": "/", - * "HealthCheckPort": "traffic-port", - * "HealthCheckProtocol": "HTTP", - * "HealthCheckTimeoutSeconds": 5, - * "HealthyThresholdCount": 5, - * "Matcher": { - * "HttpCode": "200" + * HealthCheckIntervalSeconds: 30, + * HealthCheckPath: "/", + * HealthCheckPort: "traffic-port", + * HealthCheckProtocol: "HTTP", + * HealthCheckTimeoutSeconds: 5, + * HealthyThresholdCount: 5, + * Matcher: { + * HttpCode: "200" * }, - * "Port": 80, - * "Protocol": "HTTP", - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "TargetGroupName": "my-targets", - * "UnhealthyThresholdCount": 2, - * "VpcId": "vpc-3ac0fb5f" + * Port: 80, + * Protocol: "HTTP", + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * TargetGroupName: "my-targets", + * UnhealthyThresholdCount: 2, + * VpcId: "vpc-3ac0fb5f" * } * ] * } * *\/ - * // example id: elbv2-create-target-group-1 * ``` * + * @public */ export class CreateTargetGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/CreateTrustStoreCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/CreateTrustStoreCommand.ts index 06429e31578eb..cd5e53d8fd73b 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/CreateTrustStoreCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/CreateTrustStoreCommand.ts @@ -94,6 +94,7 @@ export interface CreateTrustStoreCommandOutput extends CreateTrustStoreOutput, _ * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class CreateTrustStoreCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DeleteListenerCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DeleteListenerCommand.ts index 559b4f806520f..74c88968db801 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DeleteListenerCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DeleteListenerCommand.ts @@ -65,18 +65,21 @@ export interface DeleteListenerCommandOutput extends DeleteListenerOutput, __Met * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To delete a listener * ```javascript * // This example deletes the specified listener. * const input = { - * "ListenerArn": "arn:aws:elasticloadbalancing:ua-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2" + * ListenerArn: "arn:aws:elasticloadbalancing:ua-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2" * }; * const command = new DeleteListenerCommand(input); - * await client.send(command); - * // example id: elbv2-delete-listener-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteListenerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DeleteLoadBalancerCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DeleteLoadBalancerCommand.ts index 69ef3c6c797d3..ced39247a93f2 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DeleteLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DeleteLoadBalancerCommand.ts @@ -72,18 +72,21 @@ export interface DeleteLoadBalancerCommandOutput extends DeleteLoadBalancerOutpu * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To delete a load balancer * ```javascript * // This example deletes the specified load balancer. * const input = { - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" * }; * const command = new DeleteLoadBalancerCommand(input); - * await client.send(command); - * // example id: elbv2-delete-load-balancer-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteLoadBalancerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DeleteRuleCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DeleteRuleCommand.ts index ca292b9b18d16..6b2a17ad66841 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DeleteRuleCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DeleteRuleCommand.ts @@ -64,18 +64,21 @@ export interface DeleteRuleCommandOutput extends DeleteRuleOutput, __MetadataBea * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To delete a rule * ```javascript * // This example deletes the specified rule. * const input = { - * "RuleArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/1291d13826f405c3" + * RuleArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/1291d13826f405c3" * }; * const command = new DeleteRuleCommand(input); - * await client.send(command); - * // example id: elbv2-delete-rule-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteRuleCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DeleteSharedTrustStoreAssociationCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DeleteSharedTrustStoreAssociationCommand.ts index 1e9b99b75775a..c8249b099cc9d 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DeleteSharedTrustStoreAssociationCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DeleteSharedTrustStoreAssociationCommand.ts @@ -72,19 +72,22 @@ export interface DeleteSharedTrustStoreAssociationCommandOutput * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example Delete a shared trust store association * ```javascript * // This example deletes the association between the specified trust store and the specified load balancer. * const input = { - * "ResourceArn": "arn:aws:elasticloadbalancing:us-east-1:123456789012:loadbalancer/app/my-load-balancer/80233fa81d678c2c", - * "TrustStoreArn": "arn:aws:elasticloadbalancing:us-east-1:123456789012:truststore/my-trust-store/73e2d6bc24d8a063" + * ResourceArn: "arn:aws:elasticloadbalancing:us-east-1:123456789012:loadbalancer/app/my-load-balancer/80233fa81d678c2c", + * TrustStoreArn: "arn:aws:elasticloadbalancing:us-east-1:123456789012:truststore/my-trust-store/73e2d6bc24d8a063" * }; * const command = new DeleteSharedTrustStoreAssociationCommand(input); - * await client.send(command); - * // example id: delete-a-shared-trust-store-association-1721684063527 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteSharedTrustStoreAssociationCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DeleteTargetGroupCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DeleteTargetGroupCommand.ts index 83d6c6e3d1e79..a2b60eb27e59a 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DeleteTargetGroupCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DeleteTargetGroupCommand.ts @@ -64,18 +64,21 @@ export interface DeleteTargetGroupCommandOutput extends DeleteTargetGroupOutput, * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To delete a target group * ```javascript * // This example deletes the specified target group. * const input = { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" * }; * const command = new DeleteTargetGroupCommand(input); - * await client.send(command); - * // example id: elbv2-delete-target-group-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteTargetGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DeleteTrustStoreCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DeleteTrustStoreCommand.ts index 53d8dabf5446d..23af56939ade1 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DeleteTrustStoreCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DeleteTrustStoreCommand.ts @@ -63,6 +63,7 @@ export interface DeleteTrustStoreCommandOutput extends DeleteTrustStoreOutput, _ * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class DeleteTrustStoreCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DeregisterTargetsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DeregisterTargetsCommand.ts index 6a91a8593accd..26fbd79fc5fb1 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DeregisterTargetsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DeregisterTargetsCommand.ts @@ -97,23 +97,26 @@ export interface DeregisterTargetsCommandOutput extends DeregisterTargetsOutput, * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To deregister a target from a target group * ```javascript * // This example deregisters the specified instance from the specified target group. * const input = { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "Targets": [ + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * Targets: [ * { - * "Id": "i-0f76fade" + * Id: "i-0f76fade" * } * ] * }; * const command = new DeregisterTargetsCommand(input); - * await client.send(command); - * // example id: elbv2-deregister-targets-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeregisterTargetsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeAccountLimitsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeAccountLimitsCommand.ts index a2f0b831d7f57..6308225014724 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeAccountLimitsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeAccountLimitsCommand.ts @@ -88,6 +88,7 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class DescribeAccountLimitsCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeCapacityReservationCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeCapacityReservationCommand.ts index 15425b5966e55..db2443b877074 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeCapacityReservationCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeCapacityReservationCommand.ts @@ -76,6 +76,7 @@ export interface DescribeCapacityReservationCommandOutput extends DescribeCapaci * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class DescribeCapacityReservationCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerAttributesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerAttributesCommand.ts index a9ef4e88ea623..bd9818e56bda5 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerAttributesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerAttributesCommand.ts @@ -67,18 +67,21 @@ export interface DescribeListenerAttributesCommandOutput extends DescribeListene * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example Describe listener attributes * ```javascript * // This example describes the attributes of the specified listener. * const input = { - * "ListenerArn": "aws:elasticloadbalancing:us-east-1:123456789012:listener/net/my-listener/73e2d6bc24d8a067/d5dc06411fa5bcea" + * ListenerArn: "aws:elasticloadbalancing:us-east-1:123456789012:listener/net/my-listener/73e2d6bc24d8a067/d5dc06411fa5bcea" * }; * const command = new DescribeListenerAttributesCommand(input); - * await client.send(command); - * // example id: describe-listener-attributes-1724874395194 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DescribeListenerAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerCertificatesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerCertificatesCommand.ts index e52a7d9516351..b74ebc7b40af8 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerCertificatesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerCertificatesCommand.ts @@ -79,6 +79,7 @@ export interface DescribeListenerCertificatesCommandOutput * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class DescribeListenerCertificatesCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenersCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenersCommand.ts index a502f3006ad62..2c0057bceaaf4 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenersCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenersCommand.ts @@ -160,38 +160,38 @@ export interface DescribeListenersCommandOutput extends DescribeListenersOutput, * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To describe a listener * ```javascript * // This example describes the specified listener. * const input = { - * "ListenerArns": [ + * ListenerArns: [ * "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2" * ] * }; * const command = new DescribeListenersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Listeners": [ + * Listeners: [ * { - * "DefaultActions": [ + * DefaultActions: [ * { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "Type": "forward" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * Type: "forward" * } * ], - * "ListenerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2", - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", - * "Port": 80, - * "Protocol": "HTTP" + * ListenerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2", + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", + * Port: 80, + * Protocol: "HTTP" * } * ] * } * *\/ - * // example id: elbv2-describe-listeners-1 * ``` * + * @public */ export class DescribeListenersCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancerAttributesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancerAttributesCommand.ts index edebb28921bb1..4bad4dc3dc4de 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancerAttributesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancerAttributesCommand.ts @@ -94,44 +94,44 @@ export interface DescribeLoadBalancerAttributesCommandOutput * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To describe load balancer attributes * ```javascript * // This example describes the attributes of the specified load balancer. * const input = { - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" * }; * const command = new DescribeLoadBalancerAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Attributes": [ + * Attributes: [ * { - * "Key": "access_logs.s3.enabled", - * "Value": "false" + * Key: "access_logs.s3.enabled", + * Value: "false" * }, * { - * "Key": "idle_timeout.timeout_seconds", - * "Value": "60" + * Key: "idle_timeout.timeout_seconds", + * Value: "60" * }, * { - * "Key": "access_logs.s3.prefix", - * "Value": "" + * Key: "access_logs.s3.prefix", + * Value: "" * }, * { - * "Key": "deletion_protection.enabled", - * "Value": "false" + * Key: "deletion_protection.enabled", + * Value: "false" * }, * { - * "Key": "access_logs.s3.bucket", - * "Value": "" + * Key: "access_logs.s3.bucket", + * Value: "" * } * ] * } * *\/ - * // example id: elbv2-describe-load-balancer-attributes-1 * ``` * + * @public */ export class DescribeLoadBalancerAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancersCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancersCommand.ts index a8ae5b5e6870d..21a21e406ea2d 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancersCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancersCommand.ts @@ -113,52 +113,52 @@ export interface DescribeLoadBalancersCommandOutput extends DescribeLoadBalancer * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To describe a load balancer * ```javascript * // This example describes the specified load balancer. * const input = { - * "LoadBalancerArns": [ + * LoadBalancerArns: [ * "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" * ] * }; * const command = new DescribeLoadBalancersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LoadBalancers": [ + * LoadBalancers: [ * { - * "AvailabilityZones": [ + * AvailabilityZones: [ * { - * "SubnetId": "subnet-8360a9e7", - * "ZoneName": "us-west-2a" + * SubnetId: "subnet-8360a9e7", + * ZoneName: "us-west-2a" * }, * { - * "SubnetId": "subnet-b7d581c0", - * "ZoneName": "us-west-2b" + * SubnetId: "subnet-b7d581c0", + * ZoneName: "us-west-2b" * } * ], - * "CanonicalHostedZoneId": "Z2P70J7EXAMPLE", - * "CreatedTime": "2016-03-25T21:26:12.920Z", - * "DNSName": "my-load-balancer-424835706.us-west-2.elb.amazonaws.com", - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", - * "LoadBalancerName": "my-load-balancer", - * "Scheme": "internet-facing", - * "SecurityGroups": [ + * CanonicalHostedZoneId: "Z2P70J7EXAMPLE", + * CreatedTime: "2016-03-25T21:26:12.920Z", + * DNSName: "my-load-balancer-424835706.us-west-2.elb.amazonaws.com", + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", + * LoadBalancerName: "my-load-balancer", + * Scheme: "internet-facing", + * SecurityGroups: [ * "sg-5943793c" * ], - * "State": { - * "Code": "active" + * State: { + * Code: "active" * }, - * "Type": "application", - * "VpcId": "vpc-3ac0fb5f" + * Type: "application", + * VpcId: "vpc-3ac0fb5f" * } * ] * } * *\/ - * // example id: elbv2-describe-load-balancers-1 * ``` * + * @public */ export class DescribeLoadBalancersCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeRulesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeRulesCommand.ts index 66f37f8410af4..a19293d1be534 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeRulesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeRulesCommand.ts @@ -181,45 +181,45 @@ export interface DescribeRulesCommandOutput extends DescribeRulesOutput, __Metad * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To describe a rule * ```javascript * // This example describes the specified rule. * const input = { - * "RuleArns": [ + * RuleArns: [ * "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/9683b2d02a6cabee" * ] * }; * const command = new DescribeRulesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Rules": [ + * Rules: [ * { - * "Actions": [ + * Actions: [ * { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "Type": "forward" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * Type: "forward" * } * ], - * "Conditions": [ + * Conditions: [ * { - * "Field": "path-pattern", - * "Values": [ + * Field: "path-pattern", + * Values: [ * "/img/*" * ] * } * ], - * "IsDefault": false, - * "Priority": "10", - * "RuleArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/9683b2d02a6cabee" + * IsDefault: false, + * Priority: "10", + * RuleArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/9683b2d02a6cabee" * } * ] * } * *\/ - * // example id: elbv2-describe-rules-1 * ``` * + * @public */ export class DescribeRulesCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeSSLPoliciesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeSSLPoliciesCommand.ts index 1efd23dabee30..e76ca03eb7d0c 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeSSLPoliciesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeSSLPoliciesCommand.ts @@ -86,101 +86,101 @@ export interface DescribeSSLPoliciesCommandOutput extends DescribeSSLPoliciesOut * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To describe a policy used for SSL negotiation * ```javascript * // This example describes the specified policy used for SSL negotiation. * const input = { - * "Names": [ + * Names: [ * "ELBSecurityPolicy-2015-05" * ] * }; * const command = new DescribeSSLPoliciesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SslPolicies": [ + * SslPolicies: [ * { - * "Ciphers": [ + * Ciphers: [ * { - * "Name": "ECDHE-ECDSA-AES128-GCM-SHA256", - * "Priority": 1 + * Name: "ECDHE-ECDSA-AES128-GCM-SHA256", + * Priority: 1 * }, * { - * "Name": "ECDHE-RSA-AES128-GCM-SHA256", - * "Priority": 2 + * Name: "ECDHE-RSA-AES128-GCM-SHA256", + * Priority: 2 * }, * { - * "Name": "ECDHE-ECDSA-AES128-SHA256", - * "Priority": 3 + * Name: "ECDHE-ECDSA-AES128-SHA256", + * Priority: 3 * }, * { - * "Name": "ECDHE-RSA-AES128-SHA256", - * "Priority": 4 + * Name: "ECDHE-RSA-AES128-SHA256", + * Priority: 4 * }, * { - * "Name": "ECDHE-ECDSA-AES128-SHA", - * "Priority": 5 + * Name: "ECDHE-ECDSA-AES128-SHA", + * Priority: 5 * }, * { - * "Name": "ECDHE-RSA-AES128-SHA", - * "Priority": 6 + * Name: "ECDHE-RSA-AES128-SHA", + * Priority: 6 * }, * { - * "Name": "DHE-RSA-AES128-SHA", - * "Priority": 7 + * Name: "DHE-RSA-AES128-SHA", + * Priority: 7 * }, * { - * "Name": "ECDHE-ECDSA-AES256-GCM-SHA384", - * "Priority": 8 + * Name: "ECDHE-ECDSA-AES256-GCM-SHA384", + * Priority: 8 * }, * { - * "Name": "ECDHE-RSA-AES256-GCM-SHA384", - * "Priority": 9 + * Name: "ECDHE-RSA-AES256-GCM-SHA384", + * Priority: 9 * }, * { - * "Name": "ECDHE-ECDSA-AES256-SHA384", - * "Priority": 10 + * Name: "ECDHE-ECDSA-AES256-SHA384", + * Priority: 10 * }, * { - * "Name": "ECDHE-RSA-AES256-SHA384", - * "Priority": 11 + * Name: "ECDHE-RSA-AES256-SHA384", + * Priority: 11 * }, * { - * "Name": "ECDHE-RSA-AES256-SHA", - * "Priority": 12 + * Name: "ECDHE-RSA-AES256-SHA", + * Priority: 12 * }, * { - * "Name": "ECDHE-ECDSA-AES256-SHA", - * "Priority": 13 + * Name: "ECDHE-ECDSA-AES256-SHA", + * Priority: 13 * }, * { - * "Name": "AES128-GCM-SHA256", - * "Priority": 14 + * Name: "AES128-GCM-SHA256", + * Priority: 14 * }, * { - * "Name": "AES128-SHA256", - * "Priority": 15 + * Name: "AES128-SHA256", + * Priority: 15 * }, * { - * "Name": "AES128-SHA", - * "Priority": 16 + * Name: "AES128-SHA", + * Priority: 16 * }, * { - * "Name": "AES256-GCM-SHA384", - * "Priority": 17 + * Name: "AES256-GCM-SHA384", + * Priority: 17 * }, * { - * "Name": "AES256-SHA256", - * "Priority": 18 + * Name: "AES256-SHA256", + * Priority: 18 * }, * { - * "Name": "AES256-SHA", - * "Priority": 19 + * Name: "AES256-SHA", + * Priority: 19 * } * ], - * "Name": "ELBSecurityPolicy-2015-05", - * "SslProtocols": [ + * Name: "ELBSecurityPolicy-2015-05", + * SslProtocols: [ * "TLSv1", * "TLSv1.1", * "TLSv1.2" @@ -189,9 +189,9 @@ export interface DescribeSSLPoliciesCommandOutput extends DescribeSSLPoliciesOut * ] * } * *\/ - * // example id: elbv2-describe-ssl-policies-1 * ``` * + * @public */ export class DescribeSSLPoliciesCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTagsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTagsCommand.ts index 155c6e0798b93..472111cd19985 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTagsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTagsCommand.ts @@ -88,39 +88,39 @@ export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __Metadat * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To describe the tags assigned to a load balancer * ```javascript * // This example describes the tags assigned to the specified load balancer. * const input = { - * "ResourceArns": [ + * ResourceArns: [ * "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" * ] * }; * const command = new DescribeTagsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TagDescriptions": [ + * TagDescriptions: [ * { - * "ResourceArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", - * "Tags": [ + * ResourceArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", + * Tags: [ * { - * "Key": "project", - * "Value": "lima" + * Key: "project", + * Value: "lima" * }, * { - * "Key": "department", - * "Value": "digital-media" + * Key: "department", + * Value: "digital-media" * } * ] * } * ] * } * *\/ - * // example id: elbv2-describe-tags-1 * ``` * + * @public */ export class DescribeTagsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupAttributesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupAttributesCommand.ts index fd6b19f71094d..c273cfe92483d 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupAttributesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupAttributesCommand.ts @@ -93,40 +93,40 @@ export interface DescribeTargetGroupAttributesCommandOutput * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To describe target group attributes * ```javascript * // This example describes the attributes of the specified target group. * const input = { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" * }; * const command = new DescribeTargetGroupAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Attributes": [ + * Attributes: [ * { - * "Key": "stickiness.enabled", - * "Value": "false" + * Key: "stickiness.enabled", + * Value: "false" * }, * { - * "Key": "deregistration_delay.timeout_seconds", - * "Value": "300" + * Key: "deregistration_delay.timeout_seconds", + * Value: "300" * }, * { - * "Key": "stickiness.type", - * "Value": "lb_cookie" + * Key: "stickiness.type", + * Value: "lb_cookie" * }, * { - * "Key": "stickiness.lb_cookie.duration_seconds", - * "Value": "86400" + * Key: "stickiness.lb_cookie.duration_seconds", + * Value: "86400" * } * ] * } * *\/ - * // example id: elbv2-describe-target-group-attributes-1 * ``` * + * @public */ export class DescribeTargetGroupAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupsCommand.ts index 86729093f0ab5..868feed3bb8c1 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupsCommand.ts @@ -103,46 +103,46 @@ export interface DescribeTargetGroupsCommandOutput extends DescribeTargetGroupsO * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To describe a target group * ```javascript * // This example describes the specified target group. * const input = { - * "TargetGroupArns": [ + * TargetGroupArns: [ * "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" * ] * }; * const command = new DescribeTargetGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TargetGroups": [ + * TargetGroups: [ * { - * "HealthCheckIntervalSeconds": 30, - * "HealthCheckPath": "/", - * "HealthCheckPort": "traffic-port", - * "HealthCheckProtocol": "HTTP", - * "HealthCheckTimeoutSeconds": 5, - * "HealthyThresholdCount": 5, - * "LoadBalancerArns": [ + * HealthCheckIntervalSeconds: 30, + * HealthCheckPath: "/", + * HealthCheckPort: "traffic-port", + * HealthCheckProtocol: "HTTP", + * HealthCheckTimeoutSeconds: 5, + * HealthyThresholdCount: 5, + * LoadBalancerArns: [ * "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" * ], - * "Matcher": { - * "HttpCode": "200" + * Matcher: { + * HttpCode: "200" * }, - * "Port": 80, - * "Protocol": "HTTP", - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "TargetGroupName": "my-targets", - * "UnhealthyThresholdCount": 2, - * "VpcId": "vpc-3ac0fb5f" + * Port: 80, + * Protocol: "HTTP", + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * TargetGroupName: "my-targets", + * UnhealthyThresholdCount: 2, + * VpcId: "vpc-3ac0fb5f" * } * ] * } * *\/ - * // example id: elbv2-describe-target-groups-1 * ``` * + * @public */ export class DescribeTargetGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetHealthCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetHealthCommand.ts index 0168ad149f3ee..4f2fc491507b4 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetHealthCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetHealthCommand.ts @@ -103,78 +103,77 @@ export interface DescribeTargetHealthCommandOutput extends DescribeTargetHealthO * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To describe the health of the targets for a target group * ```javascript * // This example describes the health of the targets for the specified target group. One target is healthy but the other is not specified in an action, so it can't receive traffic from the load balancer. * const input = { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" * }; * const command = new DescribeTargetHealthCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TargetHealthDescriptions": [ + * TargetHealthDescriptions: [ * { - * "Target": { - * "Id": "i-0f76fade", - * "Port": 80 + * Target: { + * Id: "i-0f76fade", + * Port: 80 * }, - * "TargetHealth": { - * "Description": "Given target group is not configured to receive traffic from ELB", - * "Reason": "Target.NotInUse", - * "State": "unused" + * TargetHealth: { + * Description: "Given target group is not configured to receive traffic from ELB", + * Reason: "Target.NotInUse", + * State: "unused" * } * }, * { - * "HealthCheckPort": "80", - * "Target": { - * "Id": "i-0f76fade", - * "Port": 80 + * HealthCheckPort: "80", + * Target: { + * Id: "i-0f76fade", + * Port: 80 * }, - * "TargetHealth": { - * "State": "healthy" + * TargetHealth: { + * State: "healthy" * } * } * ] * } * *\/ - * // example id: elbv2-describe-target-health-1 * ``` * * @example To describe the health of a target * ```javascript * // This example describes the health of the specified target. This target is healthy. * const input = { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "Targets": [ + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * Targets: [ * { - * "Id": "i-0f76fade", - * "Port": 80 + * Id: "i-0f76fade", + * Port: 80 * } * ] * }; * const command = new DescribeTargetHealthCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TargetHealthDescriptions": [ + * TargetHealthDescriptions: [ * { - * "HealthCheckPort": "80", - * "Target": { - * "Id": "i-0f76fade", - * "Port": 80 + * HealthCheckPort: "80", + * Target: { + * Id: "i-0f76fade", + * Port: 80 * }, - * "TargetHealth": { - * "State": "healthy" + * TargetHealth: { + * State: "healthy" * } * } * ] * } * *\/ - * // example id: elbv2-describe-target-health-2 * ``` * + * @public */ export class DescribeTargetHealthCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreAssociationsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreAssociationsCommand.ts index d6a5719dc1525..736206168f9d8 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreAssociationsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreAssociationsCommand.ts @@ -74,6 +74,7 @@ export interface DescribeTrustStoreAssociationsCommandOutput * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class DescribeTrustStoreAssociationsCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreRevocationsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreRevocationsCommand.ts index 98766ba076a53..dd4c88ae3c872 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreRevocationsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreRevocationsCommand.ts @@ -84,6 +84,7 @@ export interface DescribeTrustStoreRevocationsCommandOutput * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class DescribeTrustStoreRevocationsCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoresCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoresCommand.ts index 441faf11b3639..1de09567f20c2 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoresCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoresCommand.ts @@ -78,6 +78,7 @@ export interface DescribeTrustStoresCommandOutput extends DescribeTrustStoresOut * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class DescribeTrustStoresCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/GetResourcePolicyCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/GetResourcePolicyCommand.ts index 6c4f1243fcb59..d1e2eaedabffc 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/GetResourcePolicyCommand.ts @@ -62,18 +62,21 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyOutput, * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example Retrieve a resource policy * ```javascript * // This example retrieves the resource policy for the specified trust store. * const input = { - * "ResourceArn": "arn:aws:elasticloadbalancing:us-east-1:123456789012:truststore/my-trust-store/73e2d6bc24d8a067" + * ResourceArn: "arn:aws:elasticloadbalancing:us-east-1:123456789012:truststore/my-trust-store/73e2d6bc24d8a067" * }; * const command = new GetResourcePolicyCommand(input); - * await client.send(command); - * // example id: retrieve-a-resource-policy-1721684356628 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class GetResourcePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreCaCertificatesBundleCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreCaCertificatesBundleCommand.ts index 56c5c1959ddb2..00c6fc4ce2dff 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreCaCertificatesBundleCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreCaCertificatesBundleCommand.ts @@ -69,6 +69,7 @@ export interface GetTrustStoreCaCertificatesBundleCommandOutput * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class GetTrustStoreCaCertificatesBundleCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreRevocationContentCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreRevocationContentCommand.ts index 147d5349f4647..227abb1782ccc 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreRevocationContentCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreRevocationContentCommand.ts @@ -73,6 +73,7 @@ export interface GetTrustStoreRevocationContentCommandOutput * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class GetTrustStoreRevocationContentCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyCapacityReservationCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyCapacityReservationCommand.ts index cecbdae36011e..92b76bd2f7b44 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyCapacityReservationCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyCapacityReservationCommand.ts @@ -103,6 +103,7 @@ export interface ModifyCapacityReservationCommandOutput extends ModifyCapacityRe * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class ModifyCapacityReservationCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyIpPoolsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyIpPoolsCommand.ts index a164251d3a95e..a0722258c21d3 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyIpPoolsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyIpPoolsCommand.ts @@ -70,6 +70,7 @@ export interface ModifyIpPoolsCommandOutput extends ModifyIpPoolsOutput, __Metad * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class ModifyIpPoolsCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerAttributesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerAttributesCommand.ts index 01c27e9baa353..50a25295b7d07 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerAttributesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerAttributesCommand.ts @@ -76,6 +76,7 @@ export interface ModifyListenerAttributesCommandOutput extends ModifyListenerAtt * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class ModifyListenerAttributesCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerCommand.ts index 1de5aab2a5ef9..983e695ea71bc 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerCommand.ts @@ -289,82 +289,81 @@ export interface ModifyListenerCommandOutput extends ModifyListenerOutput, __Met * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To change the default action for a listener * ```javascript * // This example changes the default action for the specified listener. * const input = { - * "DefaultActions": [ + * DefaultActions: [ * { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-new-targets/2453ed029918f21f", - * "Type": "forward" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-new-targets/2453ed029918f21f", + * Type: "forward" * } * ], - * "ListenerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2" + * ListenerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2" * }; * const command = new ModifyListenerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Listeners": [ + * Listeners: [ * { - * "DefaultActions": [ + * DefaultActions: [ * { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-new-targets/2453ed029918f21f", - * "Type": "forward" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-new-targets/2453ed029918f21f", + * Type: "forward" * } * ], - * "ListenerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2", - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", - * "Port": 80, - * "Protocol": "HTTP" + * ListenerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2", + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", + * Port: 80, + * Protocol: "HTTP" * } * ] * } * *\/ - * // example id: elbv2-modify-listener-1 * ``` * * @example To change the server certificate * ```javascript * // This example changes the server certificate for the specified HTTPS listener. * const input = { - * "Certificates": [ + * Certificates: [ * { - * "CertificateArn": "arn:aws:iam::123456789012:server-certificate/my-new-server-cert" + * CertificateArn: "arn:aws:iam::123456789012:server-certificate/my-new-server-cert" * } * ], - * "ListenerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/0467ef3c8400ae65" + * ListenerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/0467ef3c8400ae65" * }; * const command = new ModifyListenerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Listeners": [ + * Listeners: [ * { - * "Certificates": [ + * Certificates: [ * { - * "CertificateArn": "arn:aws:iam::123456789012:server-certificate/my-new-server-cert" + * CertificateArn: "arn:aws:iam::123456789012:server-certificate/my-new-server-cert" * } * ], - * "DefaultActions": [ + * DefaultActions: [ * { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "Type": "forward" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * Type: "forward" * } * ], - * "ListenerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/0467ef3c8400ae65", - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", - * "Port": 443, - * "Protocol": "HTTPS", - * "SslPolicy": "ELBSecurityPolicy-2015-05" + * ListenerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/0467ef3c8400ae65", + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", + * Port: 443, + * Protocol: "HTTPS", + * SslPolicy: "ELBSecurityPolicy-2015-05" * } * ] * } * *\/ - * // example id: elbv2-modify-listener-2 * ``` * + * @public */ export class ModifyListenerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyLoadBalancerAttributesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyLoadBalancerAttributesCommand.ts index 0242b419ed207..8955f5f3b4766 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyLoadBalancerAttributesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyLoadBalancerAttributesCommand.ts @@ -81,144 +81,142 @@ export interface ModifyLoadBalancerAttributesCommandOutput * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To enable deletion protection * ```javascript * // This example enables deletion protection for the specified load balancer. * const input = { - * "Attributes": [ + * Attributes: [ * { - * "Key": "deletion_protection.enabled", - * "Value": "true" + * Key: "deletion_protection.enabled", + * Value: "true" * } * ], - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" * }; * const command = new ModifyLoadBalancerAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Attributes": [ + * Attributes: [ * { - * "Key": "deletion_protection.enabled", - * "Value": "true" + * Key: "deletion_protection.enabled", + * Value: "true" * }, * { - * "Key": "access_logs.s3.enabled", - * "Value": "false" + * Key: "access_logs.s3.enabled", + * Value: "false" * }, * { - * "Key": "idle_timeout.timeout_seconds", - * "Value": "60" + * Key: "idle_timeout.timeout_seconds", + * Value: "60" * }, * { - * "Key": "access_logs.s3.prefix", - * "Value": "" + * Key: "access_logs.s3.prefix", + * Value: "" * }, * { - * "Key": "access_logs.s3.bucket", - * "Value": "" + * Key: "access_logs.s3.bucket", + * Value: "" * } * ] * } * *\/ - * // example id: elbv2-modify-load-balancer-attributes-1 * ``` * * @example To change the idle timeout * ```javascript * // This example changes the idle timeout value for the specified load balancer. * const input = { - * "Attributes": [ + * Attributes: [ * { - * "Key": "idle_timeout.timeout_seconds", - * "Value": "30" + * Key: "idle_timeout.timeout_seconds", + * Value: "30" * } * ], - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" * }; * const command = new ModifyLoadBalancerAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Attributes": [ + * Attributes: [ * { - * "Key": "idle_timeout.timeout_seconds", - * "Value": "30" + * Key: "idle_timeout.timeout_seconds", + * Value: "30" * }, * { - * "Key": "access_logs.s3.enabled", - * "Value": "false" + * Key: "access_logs.s3.enabled", + * Value: "false" * }, * { - * "Key": "access_logs.s3.prefix", - * "Value": "" + * Key: "access_logs.s3.prefix", + * Value: "" * }, * { - * "Key": "deletion_protection.enabled", - * "Value": "true" + * Key: "deletion_protection.enabled", + * Value: "true" * }, * { - * "Key": "access_logs.s3.bucket", - * "Value": "" + * Key: "access_logs.s3.bucket", + * Value: "" * } * ] * } * *\/ - * // example id: elbv2-modify-load-balancer-attributes-2 * ``` * * @example To enable access logs * ```javascript * // This example enables access logs for the specified load balancer. Note that the S3 bucket must exist in the same region as the load balancer and must have a policy attached that grants access to the Elastic Load Balancing service. * const input = { - * "Attributes": [ + * Attributes: [ * { - * "Key": "access_logs.s3.enabled", - * "Value": "true" + * Key: "access_logs.s3.enabled", + * Value: "true" * }, * { - * "Key": "access_logs.s3.bucket", - * "Value": "my-loadbalancer-logs" + * Key: "access_logs.s3.bucket", + * Value: "my-loadbalancer-logs" * }, * { - * "Key": "access_logs.s3.prefix", - * "Value": "myapp" + * Key: "access_logs.s3.prefix", + * Value: "myapp" * } * ], - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" * }; * const command = new ModifyLoadBalancerAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Attributes": [ + * Attributes: [ * { - * "Key": "access_logs.s3.enabled", - * "Value": "true" + * Key: "access_logs.s3.enabled", + * Value: "true" * }, * { - * "Key": "access_logs.s3.bucket", - * "Value": "my-load-balancer-logs" + * Key: "access_logs.s3.bucket", + * Value: "my-load-balancer-logs" * }, * { - * "Key": "access_logs.s3.prefix", - * "Value": "myapp" + * Key: "access_logs.s3.prefix", + * Value: "myapp" * }, * { - * "Key": "idle_timeout.timeout_seconds", - * "Value": "60" + * Key: "idle_timeout.timeout_seconds", + * Value: "60" * }, * { - * "Key": "deletion_protection.enabled", - * "Value": "false" + * Key: "deletion_protection.enabled", + * Value: "false" * } * ] * } * *\/ - * // example id: elbv2-modify-load-balancer-attributes-3 * ``` * + * @public */ export class ModifyLoadBalancerAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyRuleCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyRuleCommand.ts index 4beb51c9a100f..aa7c7a138cf24 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyRuleCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyRuleCommand.ts @@ -305,51 +305,51 @@ export interface ModifyRuleCommandOutput extends ModifyRuleOutput, __MetadataBea * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To modify a rule * ```javascript * // This example modifies the condition for the specified rule. * const input = { - * "Conditions": [ + * Conditions: [ * { - * "Field": "path-pattern", - * "Values": [ + * Field: "path-pattern", + * Values: [ * "/images/*" * ] * } * ], - * "RuleArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/9683b2d02a6cabee" + * RuleArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/9683b2d02a6cabee" * }; * const command = new ModifyRuleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Rules": [ + * Rules: [ * { - * "Actions": [ + * Actions: [ * { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "Type": "forward" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * Type: "forward" * } * ], - * "Conditions": [ + * Conditions: [ * { - * "Field": "path-pattern", - * "Values": [ + * Field: "path-pattern", + * Values: [ * "/images/*" * ] * } * ], - * "IsDefault": false, - * "Priority": "10", - * "RuleArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/9683b2d02a6cabee" + * IsDefault: false, + * Priority: "10", + * RuleArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/9683b2d02a6cabee" * } * ] * } * *\/ - * // example id: elbv2-modify-rule-1 * ``` * + * @public */ export class ModifyRuleCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupAttributesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupAttributesCommand.ts index f7fce388b6454..cf81bcd00ed13 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupAttributesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupAttributesCommand.ts @@ -76,46 +76,46 @@ export interface ModifyTargetGroupAttributesCommandOutput extends ModifyTargetGr * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To modify the deregistration delay timeout * ```javascript * // This example sets the deregistration delay timeout to the specified value for the specified target group. * const input = { - * "Attributes": [ + * Attributes: [ * { - * "Key": "deregistration_delay.timeout_seconds", - * "Value": "600" + * Key: "deregistration_delay.timeout_seconds", + * Value: "600" * } * ], - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067" * }; * const command = new ModifyTargetGroupAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Attributes": [ + * Attributes: [ * { - * "Key": "stickiness.enabled", - * "Value": "false" + * Key: "stickiness.enabled", + * Value: "false" * }, * { - * "Key": "deregistration_delay.timeout_seconds", - * "Value": "600" + * Key: "deregistration_delay.timeout_seconds", + * Value: "600" * }, * { - * "Key": "stickiness.type", - * "Value": "lb_cookie" + * Key: "stickiness.type", + * Value: "lb_cookie" * }, * { - * "Key": "stickiness.lb_cookie.duration_seconds", - * "Value": "86400" + * Key: "stickiness.lb_cookie.duration_seconds", + * Value: "86400" * } * ] * } * *\/ - * // example id: elbv2-modify-target-group-attributes-1 * ``` * + * @public */ export class ModifyTargetGroupAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupCommand.ts index 9e671b9ec3074..c076b930bc59b 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupCommand.ts @@ -104,45 +104,45 @@ export interface ModifyTargetGroupCommandOutput extends ModifyTargetGroupOutput, * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To modify the health check configuration for a target group * ```javascript * // This example changes the configuration of the health checks used to evaluate the health of the targets for the specified target group. * const input = { - * "HealthCheckPort": "443", - * "HealthCheckProtocol": "HTTPS", - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-https-targets/2453ed029918f21f" + * HealthCheckPort: "443", + * HealthCheckProtocol: "HTTPS", + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-https-targets/2453ed029918f21f" * }; * const command = new ModifyTargetGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TargetGroups": [ + * TargetGroups: [ * { - * "HealthCheckIntervalSeconds": 30, - * "HealthCheckPort": "443", - * "HealthCheckProtocol": "HTTPS", - * "HealthCheckTimeoutSeconds": 5, - * "HealthyThresholdCount": 5, - * "LoadBalancerArns": [ + * HealthCheckIntervalSeconds: 30, + * HealthCheckPort: "443", + * HealthCheckProtocol: "HTTPS", + * HealthCheckTimeoutSeconds: 5, + * HealthyThresholdCount: 5, + * LoadBalancerArns: [ * "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" * ], - * "Matcher": { - * "HttpCode": "200" + * Matcher: { + * HttpCode: "200" * }, - * "Port": 443, - * "Protocol": "HTTPS", - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-https-targets/2453ed029918f21f", - * "TargetGroupName": "my-https-targets", - * "UnhealthyThresholdCount": 2, - * "VpcId": "vpc-3ac0fb5f" + * Port: 443, + * Protocol: "HTTPS", + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-https-targets/2453ed029918f21f", + * TargetGroupName: "my-https-targets", + * UnhealthyThresholdCount: 2, + * VpcId: "vpc-3ac0fb5f" * } * ] * } * *\/ - * // example id: elbv2-modify-target-group-1 * ``` * + * @public */ export class ModifyTargetGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyTrustStoreCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyTrustStoreCommand.ts index 3de409ac14e70..6e5980f9495c1 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyTrustStoreCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyTrustStoreCommand.ts @@ -79,6 +79,7 @@ export interface ModifyTrustStoreCommandOutput extends ModifyTrustStoreOutput, _ * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class ModifyTrustStoreCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/RegisterTargetsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/RegisterTargetsCommand.ts index 174abb3474518..221267c781363 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/RegisterTargetsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/RegisterTargetsCommand.ts @@ -87,47 +87,52 @@ export interface RegisterTargetsCommandOutput extends RegisterTargetsOutput, __M * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To register targets with a target group * ```javascript * // This example registers the specified instances with the specified target group. * const input = { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "Targets": [ + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * Targets: [ * { - * "Id": "i-80c8dd94" + * Id: "i-80c8dd94" * }, * { - * "Id": "i-ceddcd4d" + * Id: "i-ceddcd4d" * } * ] * }; * const command = new RegisterTargetsCommand(input); - * await client.send(command); - * // example id: elbv2-register-targets-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To register targets with a target group using port overrides * ```javascript * // This example registers the specified instance with the specified target group using multiple ports. This enables you to register ECS containers on the same instance as targets in the target group. * const input = { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-new-targets/3bb63f11dfb0faf9", - * "Targets": [ + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-new-targets/3bb63f11dfb0faf9", + * Targets: [ * { - * "Id": "i-80c8dd94", - * "Port": 80 + * Id: "i-80c8dd94", + * Port: 80 * }, * { - * "Id": "i-80c8dd94", - * "Port": 766 + * Id: "i-80c8dd94", + * Port: 766 * } * ] * }; * const command = new RegisterTargetsCommand(input); - * await client.send(command); - * // example id: elbv2-register-targets-2 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RegisterTargetsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/RemoveListenerCertificatesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/RemoveListenerCertificatesCommand.ts index 9b559d58c90c0..8466896ff7e4a 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/RemoveListenerCertificatesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/RemoveListenerCertificatesCommand.ts @@ -70,6 +70,7 @@ export interface RemoveListenerCertificatesCommandOutput extends RemoveListenerC * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class RemoveListenerCertificatesCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/RemoveTagsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/RemoveTagsCommand.ts index e280618b295d1..9d7bf4b35db0a 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/RemoveTagsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/RemoveTagsCommand.ts @@ -82,24 +82,27 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To remove tags from a load balancer * ```javascript * // This example removes the specified tags from the specified load balancer. * const input = { - * "ResourceArns": [ + * ResourceArns: [ * "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188" * ], - * "TagKeys": [ + * TagKeys: [ * "project", * "department" * ] * }; * const command = new RemoveTagsCommand(input); - * await client.send(command); - * // example id: elbv2-remove-tags-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RemoveTagsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/RemoveTrustStoreRevocationsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/RemoveTrustStoreRevocationsCommand.ts index 198e44fd1fae7..5261413bf005b 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/RemoveTrustStoreRevocationsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/RemoveTrustStoreRevocationsCommand.ts @@ -66,6 +66,7 @@ export interface RemoveTrustStoreRevocationsCommandOutput extends RemoveTrustSto * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class RemoveTrustStoreRevocationsCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/SetIpAddressTypeCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/SetIpAddressTypeCommand.ts index 06aaaddbaae67..3580a2e774920 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/SetIpAddressTypeCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/SetIpAddressTypeCommand.ts @@ -69,6 +69,7 @@ export interface SetIpAddressTypeCommandOutput extends SetIpAddressTypeOutput, _ * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* + * * @public */ export class SetIpAddressTypeCommand extends $Command diff --git a/clients/client-elastic-load-balancing-v2/src/commands/SetRulePrioritiesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/SetRulePrioritiesCommand.ts index 68d08a8d81003..b6b613141f6b3 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/SetRulePrioritiesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/SetRulePrioritiesCommand.ts @@ -181,48 +181,48 @@ export interface SetRulePrioritiesCommandOutput extends SetRulePrioritiesOutput, * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To set the rule priority * ```javascript * // This example sets the priority of the specified rule. * const input = { - * "RulePriorities": [ + * RulePriorities: [ * { - * "Priority": 5, - * "RuleArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/1291d13826f405c3" + * Priority: 5, + * RuleArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/1291d13826f405c3" * } * ] * }; * const command = new SetRulePrioritiesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Rules": [ + * Rules: [ * { - * "Actions": [ + * Actions: [ * { - * "TargetGroupArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", - * "Type": "forward" + * TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", + * Type: "forward" * } * ], - * "Conditions": [ + * Conditions: [ * { - * "Field": "path-pattern", - * "Values": [ + * Field: "path-pattern", + * Values: [ * "/img/*" * ] * } * ], - * "IsDefault": false, - * "Priority": "5", - * "RuleArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/1291d13826f405c3" + * IsDefault: false, + * Priority: "5", + * RuleArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/1291d13826f405c3" * } * ] * } * *\/ - * // example id: elbv2-set-rule-priorities-1 * ``` * + * @public */ export class SetRulePrioritiesCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/SetSecurityGroupsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/SetSecurityGroupsCommand.ts index 53731e1518cad..4d6eda8065ca7 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/SetSecurityGroupsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/SetSecurityGroupsCommand.ts @@ -80,28 +80,28 @@ export interface SetSecurityGroupsCommandOutput extends SetSecurityGroupsOutput, * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To associate a security group with a load balancer * ```javascript * // This example associates the specified security group with the specified load balancer. * const input = { - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", - * "SecurityGroups": [ + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", + * SecurityGroups: [ * "sg-5943793c" * ] * }; * const command = new SetSecurityGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SecurityGroupIds": [ + * SecurityGroupIds: [ * "sg-5943793c" * ] * } * *\/ - * // example id: elbv2-set-security-groups-1 * ``` * + * @public */ export class SetSecurityGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing-v2/src/commands/SetSubnetsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/SetSubnetsCommand.ts index 306ee16ad508a..4e6fb39e1c679 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/SetSubnetsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/SetSubnetsCommand.ts @@ -118,36 +118,36 @@ export interface SetSubnetsCommandOutput extends SetSubnetsOutput, __MetadataBea * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* - * @public + * * @example To enable Availability Zones for a load balancer * ```javascript * // This example enables the Availability Zones for the specified subnets for the specified load balancer. * const input = { - * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", - * "Subnets": [ + * LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188", + * Subnets: [ * "subnet-8360a9e7", * "subnet-b7d581c0" * ] * }; * const command = new SetSubnetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AvailabilityZones": [ + * AvailabilityZones: [ * { - * "SubnetId": "subnet-8360a9e7", - * "ZoneName": "us-west-2a" + * SubnetId: "subnet-8360a9e7", + * ZoneName: "us-west-2a" * }, * { - * "SubnetId": "subnet-b7d581c0", - * "ZoneName": "us-west-2b" + * SubnetId: "subnet-b7d581c0", + * ZoneName: "us-west-2b" * } * ] * } * *\/ - * // example id: elbv2-set-subnets-1 * ``` * + * @public */ export class SetSubnetsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/AddTagsCommand.ts b/clients/client-elastic-load-balancing/src/commands/AddTagsCommand.ts index 1f04cfb341f15..54ee16212e608 100644 --- a/clients/client-elastic-load-balancing/src/commands/AddTagsCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/AddTagsCommand.ts @@ -80,30 +80,33 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {} * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To add tags to a load balancer * ```javascript * // This example adds two tags to the specified load balancer. * const input = { - * "LoadBalancerNames": [ + * LoadBalancerNames: [ * "my-load-balancer" * ], - * "Tags": [ + * Tags: [ * { - * "Key": "project", - * "Value": "lima" + * Key: "project", + * Value: "lima" * }, * { - * "Key": "department", - * "Value": "digital-media" + * Key: "department", + * Value: "digital-media" * } * ] * }; * const command = new AddTagsCommand(input); - * await client.send(command); - * // example id: elb-add-tags-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AddTagsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/ApplySecurityGroupsToLoadBalancerCommand.ts b/clients/client-elastic-load-balancing/src/commands/ApplySecurityGroupsToLoadBalancerCommand.ts index f2fc646b77579..de6d5d9bec525 100644 --- a/clients/client-elastic-load-balancing/src/commands/ApplySecurityGroupsToLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/ApplySecurityGroupsToLoadBalancerCommand.ts @@ -80,28 +80,28 @@ export interface ApplySecurityGroupsToLoadBalancerCommandOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To associate a security group with a load balancer in a VPC * ```javascript * // This example associates a security group with the specified load balancer in a VPC. * const input = { - * "LoadBalancerName": "my-load-balancer", - * "SecurityGroups": [ + * LoadBalancerName: "my-load-balancer", + * SecurityGroups: [ * "sg-fc448899" * ] * }; * const command = new ApplySecurityGroupsToLoadBalancerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SecurityGroups": [ + * SecurityGroups: [ * "sg-fc448899" * ] * } * *\/ - * // example id: elb-apply-security-groups-to-load-balancer-1 * ``` * + * @public */ export class ApplySecurityGroupsToLoadBalancerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/AttachLoadBalancerToSubnetsCommand.ts b/clients/client-elastic-load-balancing/src/commands/AttachLoadBalancerToSubnetsCommand.ts index 708d100d47b6f..09d836f0a0290 100644 --- a/clients/client-elastic-load-balancing/src/commands/AttachLoadBalancerToSubnetsCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/AttachLoadBalancerToSubnetsCommand.ts @@ -79,29 +79,29 @@ export interface AttachLoadBalancerToSubnetsCommandOutput extends AttachLoadBala * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To attach subnets to a load balancer * ```javascript * // This example adds the specified subnet to the set of configured subnets for the specified load balancer. * const input = { - * "LoadBalancerName": "my-load-balancer", - * "Subnets": [ + * LoadBalancerName: "my-load-balancer", + * Subnets: [ * "subnet-0ecac448" * ] * }; * const command = new AttachLoadBalancerToSubnetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Subnets": [ + * Subnets: [ * "subnet-15aaab61", * "subnet-0ecac448" * ] * } * *\/ - * // example id: elb-attach-load-balancer-to-subnets-1 * ``` * + * @public */ export class AttachLoadBalancerToSubnetsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/ConfigureHealthCheckCommand.ts b/clients/client-elastic-load-balancing/src/commands/ConfigureHealthCheckCommand.ts index 39bd9dd44a102..6563c4f3c8e43 100644 --- a/clients/client-elastic-load-balancing/src/commands/ConfigureHealthCheckCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/ConfigureHealthCheckCommand.ts @@ -77,36 +77,36 @@ export interface ConfigureHealthCheckCommandOutput extends ConfigureHealthCheckO * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To specify the health check settings for your backend EC2 instances * ```javascript * // This example specifies the health check settings used to evaluate the health of your backend EC2 instances. * const input = { - * "HealthCheck": { - * "HealthyThreshold": 2, - * "Interval": 30, - * "Target": "HTTP:80/png", - * "Timeout": 3, - * "UnhealthyThreshold": 2 + * HealthCheck: { + * HealthyThreshold: 2, + * Interval: 30, + * Target: "HTTP:80/png", + * Timeout: 3, + * UnhealthyThreshold: 2 * }, - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * }; * const command = new ConfigureHealthCheckCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "HealthCheck": { - * "HealthyThreshold": 2, - * "Interval": 30, - * "Target": "HTTP:80/png", - * "Timeout": 3, - * "UnhealthyThreshold": 2 + * HealthCheck: { + * HealthyThreshold: 2, + * Interval: 30, + * Target: "HTTP:80/png", + * Timeout: 3, + * UnhealthyThreshold: 2 * } * } * *\/ - * // example id: elb-configure-health-check-1 * ``` * + * @public */ export class ConfigureHealthCheckCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/CreateAppCookieStickinessPolicyCommand.ts b/clients/client-elastic-load-balancing/src/commands/CreateAppCookieStickinessPolicyCommand.ts index 9803a2f006678..ee3459ed103af 100644 --- a/clients/client-elastic-load-balancing/src/commands/CreateAppCookieStickinessPolicyCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/CreateAppCookieStickinessPolicyCommand.ts @@ -84,20 +84,23 @@ export interface CreateAppCookieStickinessPolicyCommandOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To generate a stickiness policy for your load balancer * ```javascript * // This example generates a stickiness policy that follows the sticky session lifetimes of the application-generated cookie. * const input = { - * "CookieName": "my-app-cookie", - * "LoadBalancerName": "my-load-balancer", - * "PolicyName": "my-app-cookie-policy" + * CookieName: "my-app-cookie", + * LoadBalancerName: "my-load-balancer", + * PolicyName: "my-app-cookie-policy" * }; * const command = new CreateAppCookieStickinessPolicyCommand(input); - * await client.send(command); - * // example id: elb-create-app-cookie-stickiness-policy-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateAppCookieStickinessPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/CreateLBCookieStickinessPolicyCommand.ts b/clients/client-elastic-load-balancing/src/commands/CreateLBCookieStickinessPolicyCommand.ts index 5781da4f309a7..f96723be68bab 100644 --- a/clients/client-elastic-load-balancing/src/commands/CreateLBCookieStickinessPolicyCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/CreateLBCookieStickinessPolicyCommand.ts @@ -82,20 +82,23 @@ export interface CreateLBCookieStickinessPolicyCommandOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To generate a duration-based stickiness policy for your load balancer * ```javascript * // This example generates a stickiness policy with sticky session lifetimes controlled by the specified expiration period. * const input = { - * "CookieExpirationPeriod": 60, - * "LoadBalancerName": "my-load-balancer", - * "PolicyName": "my-duration-cookie-policy" + * CookieExpirationPeriod: 60, + * LoadBalancerName: "my-load-balancer", + * PolicyName: "my-duration-cookie-policy" * }; * const command = new CreateLBCookieStickinessPolicyCommand(input); - * await client.send(command); - * // example id: elb-create-lb-cookie-stickiness-policy-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateLBCookieStickinessPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerCommand.ts b/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerCommand.ts index 163f84128bce4..bbdb1ee4d8a0b 100644 --- a/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerCommand.ts @@ -135,166 +135,162 @@ export interface CreateLoadBalancerCommandOutput extends CreateAccessPointOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To create an HTTP load balancer in a VPC * ```javascript * // This example creates a load balancer with an HTTP listener in a VPC. * const input = { - * "Listeners": [ + * Listeners: [ * { - * "InstancePort": 80, - * "InstanceProtocol": "HTTP", - * "LoadBalancerPort": 80, - * "Protocol": "HTTP" + * InstancePort: 80, + * InstanceProtocol: "HTTP", + * LoadBalancerPort: 80, + * Protocol: "HTTP" * } * ], - * "LoadBalancerName": "my-load-balancer", - * "SecurityGroups": [ + * LoadBalancerName: "my-load-balancer", + * SecurityGroups: [ * "sg-a61988c3" * ], - * "Subnets": [ + * Subnets: [ * "subnet-15aaab61" * ] * }; * const command = new CreateLoadBalancerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DNSName": "my-load-balancer-1234567890.us-west-2.elb.amazonaws.com" + * DNSName: "my-load-balancer-1234567890.us-west-2.elb.amazonaws.com" * } * *\/ - * // example id: elb-create-load-balancer-1 * ``` * * @example To create an HTTP load balancer in EC2-Classic * ```javascript * // This example creates a load balancer with an HTTP listener in EC2-Classic. * const input = { - * "AvailabilityZones": [ + * AvailabilityZones: [ * "us-west-2a" * ], - * "Listeners": [ + * Listeners: [ * { - * "InstancePort": 80, - * "InstanceProtocol": "HTTP", - * "LoadBalancerPort": 80, - * "Protocol": "HTTP" + * InstancePort: 80, + * InstanceProtocol: "HTTP", + * LoadBalancerPort: 80, + * Protocol: "HTTP" * } * ], - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * }; * const command = new CreateLoadBalancerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DNSName": "my-load-balancer-123456789.us-west-2.elb.amazonaws.com" + * DNSName: "my-load-balancer-123456789.us-west-2.elb.amazonaws.com" * } * *\/ - * // example id: elb-create-load-balancer-2 * ``` * * @example To create an HTTPS load balancer in a VPC * ```javascript * // This example creates a load balancer with an HTTPS listener in a VPC. * const input = { - * "Listeners": [ + * Listeners: [ * { - * "InstancePort": 80, - * "InstanceProtocol": "HTTP", - * "LoadBalancerPort": 80, - * "Protocol": "HTTP" + * InstancePort: 80, + * InstanceProtocol: "HTTP", + * LoadBalancerPort: 80, + * Protocol: "HTTP" * }, * { - * "InstancePort": 80, - * "InstanceProtocol": "HTTP", - * "LoadBalancerPort": 443, - * "Protocol": "HTTPS", - * "SSLCertificateId": "arn:aws:iam::123456789012:server-certificate/my-server-cert" + * InstancePort: 80, + * InstanceProtocol: "HTTP", + * LoadBalancerPort: 443, + * Protocol: "HTTPS", + * SSLCertificateId: "arn:aws:iam::123456789012:server-certificate/my-server-cert" * } * ], - * "LoadBalancerName": "my-load-balancer", - * "SecurityGroups": [ + * LoadBalancerName: "my-load-balancer", + * SecurityGroups: [ * "sg-a61988c3" * ], - * "Subnets": [ + * Subnets: [ * "subnet-15aaab61" * ] * }; * const command = new CreateLoadBalancerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DNSName": "my-load-balancer-1234567890.us-west-2.elb.amazonaws.com" + * DNSName: "my-load-balancer-1234567890.us-west-2.elb.amazonaws.com" * } * *\/ - * // example id: elb-create-load-balancer-3 * ``` * * @example To create an HTTPS load balancer in EC2-Classic * ```javascript * // This example creates a load balancer with an HTTPS listener in EC2-Classic. * const input = { - * "AvailabilityZones": [ + * AvailabilityZones: [ * "us-west-2a" * ], - * "Listeners": [ + * Listeners: [ * { - * "InstancePort": 80, - * "InstanceProtocol": "HTTP", - * "LoadBalancerPort": 80, - * "Protocol": "HTTP" + * InstancePort: 80, + * InstanceProtocol: "HTTP", + * LoadBalancerPort: 80, + * Protocol: "HTTP" * }, * { - * "InstancePort": 80, - * "InstanceProtocol": "HTTP", - * "LoadBalancerPort": 443, - * "Protocol": "HTTPS", - * "SSLCertificateId": "arn:aws:iam::123456789012:server-certificate/my-server-cert" + * InstancePort: 80, + * InstanceProtocol: "HTTP", + * LoadBalancerPort: 443, + * Protocol: "HTTPS", + * SSLCertificateId: "arn:aws:iam::123456789012:server-certificate/my-server-cert" * } * ], - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * }; * const command = new CreateLoadBalancerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DNSName": "my-load-balancer-123456789.us-west-2.elb.amazonaws.com" + * DNSName: "my-load-balancer-123456789.us-west-2.elb.amazonaws.com" * } * *\/ - * // example id: elb-create-load-balancer-4 * ``` * * @example To create an internal load balancer * ```javascript * // This example creates an internal load balancer with an HTTP listener in a VPC. * const input = { - * "Listeners": [ + * Listeners: [ * { - * "InstancePort": 80, - * "InstanceProtocol": "HTTP", - * "LoadBalancerPort": 80, - * "Protocol": "HTTP" + * InstancePort: 80, + * InstanceProtocol: "HTTP", + * LoadBalancerPort: 80, + * Protocol: "HTTP" * } * ], - * "LoadBalancerName": "my-load-balancer", - * "Scheme": "internal", - * "SecurityGroups": [ + * LoadBalancerName: "my-load-balancer", + * Scheme: "internal", + * SecurityGroups: [ * "sg-a61988c3" * ], - * "Subnets": [ + * Subnets: [ * "subnet-15aaab61" * ] * }; * const command = new CreateLoadBalancerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DNSName": "internal-my-load-balancer-123456789.us-west-2.elb.amazonaws.com" + * DNSName: "internal-my-load-balancer-123456789.us-west-2.elb.amazonaws.com" * } * *\/ - * // example id: elb-create-load-balancer-5 * ``` * + * @public */ export class CreateLoadBalancerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerListenersCommand.ts b/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerListenersCommand.ts index 5f2315497a150..0bc16a135341d 100644 --- a/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerListenersCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerListenersCommand.ts @@ -85,46 +85,51 @@ export interface CreateLoadBalancerListenersCommandOutput extends CreateLoadBala * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To create an HTTP listener for a load balancer * ```javascript * // This example creates a listener for your load balancer at port 80 using the HTTP protocol. * const input = { - * "Listeners": [ + * Listeners: [ * { - * "InstancePort": 80, - * "InstanceProtocol": "HTTP", - * "LoadBalancerPort": 80, - * "Protocol": "HTTP" + * InstancePort: 80, + * InstanceProtocol: "HTTP", + * LoadBalancerPort: 80, + * Protocol: "HTTP" * } * ], - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * }; * const command = new CreateLoadBalancerListenersCommand(input); - * await client.send(command); - * // example id: elb-create-load-balancer-listeners-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To create an HTTPS listener for a load balancer * ```javascript * // This example creates a listener for your load balancer at port 443 using the HTTPS protocol. * const input = { - * "Listeners": [ + * Listeners: [ * { - * "InstancePort": 80, - * "InstanceProtocol": "HTTP", - * "LoadBalancerPort": 443, - * "Protocol": "HTTPS", - * "SSLCertificateId": "arn:aws:iam::123456789012:server-certificate/my-server-cert" + * InstancePort: 80, + * InstanceProtocol: "HTTP", + * LoadBalancerPort: 443, + * Protocol: "HTTPS", + * SSLCertificateId: "arn:aws:iam::123456789012:server-certificate/my-server-cert" * } * ], - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * }; * const command = new CreateLoadBalancerListenersCommand(input); - * await client.send(command); - * // example id: elb-create-load-balancer-listeners-2 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateLoadBalancerListenersCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerPolicyCommand.ts b/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerPolicyCommand.ts index ac3bb08e6b9f3..3c4221a5483b8 100644 --- a/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerPolicyCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerPolicyCommand.ts @@ -81,64 +81,71 @@ export interface CreateLoadBalancerPolicyCommandOutput extends CreateLoadBalance * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To create a policy that enables Proxy Protocol on a load balancer * ```javascript * // This example creates a policy that enables Proxy Protocol on the specified load balancer. * const input = { - * "LoadBalancerName": "my-load-balancer", - * "PolicyAttributes": [ + * LoadBalancerName: "my-load-balancer", + * PolicyAttributes: [ * { - * "AttributeName": "ProxyProtocol", - * "AttributeValue": "true" + * AttributeName: "ProxyProtocol", + * AttributeValue: "true" * } * ], - * "PolicyName": "my-ProxyProtocol-policy", - * "PolicyTypeName": "ProxyProtocolPolicyType" + * PolicyName: "my-ProxyProtocol-policy", + * PolicyTypeName: "ProxyProtocolPolicyType" * }; * const command = new CreateLoadBalancerPolicyCommand(input); - * await client.send(command); - * // example id: elb-create-load-balancer-policy-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To create a public key policy * ```javascript * // This example creates a public key policy. * const input = { - * "LoadBalancerName": "my-load-balancer", - * "PolicyAttributes": [ + * LoadBalancerName: "my-load-balancer", + * PolicyAttributes: [ * { - * "AttributeName": "PublicKey", - * "AttributeValue": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwAYUjnfyEyXr1pxjhFWBpMlggUcqoi3kl+dS74kj//c6x7ROtusUaeQCTgIUkayttRDWchuqo1pHC1u+n5xxXnBBe2ejbb2WRsKIQ5rXEeixsjFpFsojpSQKkzhVGI6mJVZBJDVKSHmswnwLBdofLhzvllpovBPTHe+o4haAWvDBALJU0pkSI1FecPHcs2hwxf14zHoXy1e2k36A64nXW43wtfx5qcVSIxtCEOjnYRg7RPvybaGfQ+v6Iaxb/+7J5kEvZhTFQId+bSiJImF1FSUT1W1xwzBZPUbcUkkXDj45vC2s3Z8E+Lk7a3uZhvsQHLZnrfuWjBWGWvZ/MhZYgEXAMPLE" + * AttributeName: "PublicKey", + * AttributeValue: "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwAYUjnfyEyXr1pxjhFWBpMlggUcqoi3kl+dS74kj//c6x7ROtusUaeQCTgIUkayttRDWchuqo1pHC1u+n5xxXnBBe2ejbb2WRsKIQ5rXEeixsjFpFsojpSQKkzhVGI6mJVZBJDVKSHmswnwLBdofLhzvllpovBPTHe+o4haAWvDBALJU0pkSI1FecPHcs2hwxf14zHoXy1e2k36A64nXW43wtfx5qcVSIxtCEOjnYRg7RPvybaGfQ+v6Iaxb/+7J5kEvZhTFQId+bSiJImF1FSUT1W1xwzBZPUbcUkkXDj45vC2s3Z8E+Lk7a3uZhvsQHLZnrfuWjBWGWvZ/MhZYgEXAMPLE" * } * ], - * "PolicyName": "my-PublicKey-policy", - * "PolicyTypeName": "PublicKeyPolicyType" + * PolicyName: "my-PublicKey-policy", + * PolicyTypeName: "PublicKeyPolicyType" * }; * const command = new CreateLoadBalancerPolicyCommand(input); - * await client.send(command); - * // example id: elb-create-load-balancer-policy-2 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * * @example To create a backend server authentication policy * ```javascript * // This example creates a backend server authentication policy that enables authentication on your backend instance using a public key policy. * const input = { - * "LoadBalancerName": "my-load-balancer", - * "PolicyAttributes": [ + * LoadBalancerName: "my-load-balancer", + * PolicyAttributes: [ * { - * "AttributeName": "PublicKeyPolicyName", - * "AttributeValue": "my-PublicKey-policy" + * AttributeName: "PublicKeyPolicyName", + * AttributeValue: "my-PublicKey-policy" * } * ], - * "PolicyName": "my-authentication-policy", - * "PolicyTypeName": "BackendServerAuthenticationPolicyType" + * PolicyName: "my-authentication-policy", + * PolicyTypeName: "BackendServerAuthenticationPolicyType" * }; * const command = new CreateLoadBalancerPolicyCommand(input); - * await client.send(command); - * // example id: elb-create-load-balancer-policy-3 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateLoadBalancerPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerCommand.ts b/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerCommand.ts index 463312d6c70b5..d1c3f6b08bce4 100644 --- a/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerCommand.ts @@ -60,18 +60,21 @@ export interface DeleteLoadBalancerCommandOutput extends DeleteAccessPointOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To delete a load balancer * ```javascript * // This example deletes the specified load balancer. * const input = { - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * }; * const command = new DeleteLoadBalancerCommand(input); - * await client.send(command); - * // example id: elb-delete-load-balancer-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteLoadBalancerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerListenersCommand.ts b/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerListenersCommand.ts index 567d720e4ef94..0a0e7d6e02c39 100644 --- a/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerListenersCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerListenersCommand.ts @@ -63,21 +63,24 @@ export interface DeleteLoadBalancerListenersCommandOutput extends DeleteLoadBala * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To delete a listener from your load balancer * ```javascript * // This example deletes the listener for the specified port from the specified load balancer. * const input = { - * "LoadBalancerName": "my-load-balancer", - * "LoadBalancerPorts": [ + * LoadBalancerName: "my-load-balancer", + * LoadBalancerPorts: [ * 80 * ] * }; * const command = new DeleteLoadBalancerListenersCommand(input); - * await client.send(command); - * // example id: elb-delete-load-balancer-listeners-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteLoadBalancerListenersCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerPolicyCommand.ts b/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerPolicyCommand.ts index 3ce92b304f625..04a14e5547b32 100644 --- a/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerPolicyCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerPolicyCommand.ts @@ -64,19 +64,22 @@ export interface DeleteLoadBalancerPolicyCommandOutput extends DeleteLoadBalance * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To delete a policy from your load balancer * ```javascript * // This example deletes the specified policy from the specified load balancer. The policy must not be enabled on any listener. * const input = { - * "LoadBalancerName": "my-load-balancer", - * "PolicyName": "my-duration-cookie-policy" + * LoadBalancerName: "my-load-balancer", + * PolicyName: "my-duration-cookie-policy" * }; * const command = new DeleteLoadBalancerPolicyCommand(input); - * await client.send(command); - * // example id: elb-delete-load-balancer-policy-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteLoadBalancerPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/DeregisterInstancesFromLoadBalancerCommand.ts b/clients/client-elastic-load-balancing/src/commands/DeregisterInstancesFromLoadBalancerCommand.ts index 9c0ecde7fa9ce..90574b5ea5bed 100644 --- a/clients/client-elastic-load-balancing/src/commands/DeregisterInstancesFromLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DeregisterInstancesFromLoadBalancerCommand.ts @@ -82,35 +82,35 @@ export interface DeregisterInstancesFromLoadBalancerCommandOutput extends Deregi * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To deregister instances from a load balancer * ```javascript * // This example deregisters the specified instance from the specified load balancer. * const input = { - * "Instances": [ + * Instances: [ * { - * "InstanceId": "i-d6f6fae3" + * InstanceId: "i-d6f6fae3" * } * ], - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * }; * const command = new DeregisterInstancesFromLoadBalancerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Instances": [ + * Instances: [ * { - * "InstanceId": "i-207d9717" + * InstanceId: "i-207d9717" * }, * { - * "InstanceId": "i-afefb49b" + * InstanceId: "i-afefb49b" * } * ] * } * *\/ - * // example id: elb-deregister-instances-from-load-balancer-1 * ``` * + * @public */ export class DeregisterInstancesFromLoadBalancerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/DescribeAccountLimitsCommand.ts b/clients/client-elastic-load-balancing/src/commands/DescribeAccountLimitsCommand.ts index 907b44712372a..67661816ce5c0 100644 --- a/clients/client-elastic-load-balancing/src/commands/DescribeAccountLimitsCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DescribeAccountLimitsCommand.ts @@ -68,6 +68,7 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* + * * @public */ export class DescribeAccountLimitsCommand extends $Command diff --git a/clients/client-elastic-load-balancing/src/commands/DescribeInstanceHealthCommand.ts b/clients/client-elastic-load-balancing/src/commands/DescribeInstanceHealthCommand.ts index efb5c7c1a3341..b640346cbbbee 100644 --- a/clients/client-elastic-load-balancing/src/commands/DescribeInstanceHealthCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DescribeInstanceHealthCommand.ts @@ -77,36 +77,36 @@ export interface DescribeInstanceHealthCommandOutput extends DescribeEndPointSta * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To describe the health of the instances for a load balancer * ```javascript * // This example describes the health of the instances for the specified load balancer. * const input = { - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * }; * const command = new DescribeInstanceHealthCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InstanceStates": [ + * InstanceStates: [ * { - * "Description": "N/A", - * "InstanceId": "i-207d9717", - * "ReasonCode": "N/A", - * "State": "InService" + * Description: "N/A", + * InstanceId: "i-207d9717", + * ReasonCode: "N/A", + * State: "InService" * }, * { - * "Description": "N/A", - * "InstanceId": "i-afefb49b", - * "ReasonCode": "N/A", - * "State": "InService" + * Description: "N/A", + * InstanceId: "i-afefb49b", + * ReasonCode: "N/A", + * State: "InService" * } * ] * } * *\/ - * // example id: elb-describe-instance-health-1 * ``` * + * @public */ export class DescribeInstanceHealthCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerAttributesCommand.ts b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerAttributesCommand.ts index 11c2997bd5b34..2e95a9539e993 100644 --- a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerAttributesCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerAttributesCommand.ts @@ -93,37 +93,37 @@ export interface DescribeLoadBalancerAttributesCommandOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To describe the attributes of a load balancer * ```javascript * // This example describes the attributes of the specified load balancer. * const input = { - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * }; * const command = new DescribeLoadBalancerAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LoadBalancerAttributes": { - * "AccessLog": { - * "Enabled": false + * LoadBalancerAttributes: { + * AccessLog: { + * Enabled: false * }, - * "ConnectionDraining": { - * "Enabled": false, - * "Timeout": 300 + * ConnectionDraining: { + * Enabled: false, + * Timeout: 300 * }, - * "ConnectionSettings": { - * "IdleTimeout": 60 + * ConnectionSettings: { + * IdleTimeout: 60 * }, - * "CrossZoneLoadBalancing": { - * "Enabled": false + * CrossZoneLoadBalancing: { + * Enabled: false * } * } * } * *\/ - * // example id: elb-describe-load-balancer-attributes-1 * ``` * + * @public */ export class DescribeLoadBalancerAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPoliciesCommand.ts b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPoliciesCommand.ts index 66e68c23f8d7f..06fff4a98c88e 100644 --- a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPoliciesCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPoliciesCommand.ts @@ -85,37 +85,37 @@ export interface DescribeLoadBalancerPoliciesCommandOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To describe a policy associated with a load balancer * ```javascript * // This example describes the specified policy associated with the specified load balancer. * const input = { - * "LoadBalancerName": "my-load-balancer", - * "PolicyNames": [ + * LoadBalancerName: "my-load-balancer", + * PolicyNames: [ * "my-authentication-policy" * ] * }; * const command = new DescribeLoadBalancerPoliciesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "PolicyDescriptions": [ + * PolicyDescriptions: [ * { - * "PolicyAttributeDescriptions": [ + * PolicyAttributeDescriptions: [ * { - * "AttributeName": "PublicKeyPolicyName", - * "AttributeValue": "my-PublicKey-policy" + * AttributeName: "PublicKeyPolicyName", + * AttributeValue: "my-PublicKey-policy" * } * ], - * "PolicyName": "my-authentication-policy", - * "PolicyTypeName": "BackendServerAuthenticationPolicyType" + * PolicyName: "my-authentication-policy", + * PolicyTypeName: "BackendServerAuthenticationPolicyType" * } * ] * } * *\/ - * // example id: elb-describe-load-balancer-policies-1 * ``` * + * @public */ export class DescribeLoadBalancerPoliciesCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPolicyTypesCommand.ts b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPolicyTypesCommand.ts index 9a6b30d649887..2e67393344e6a 100644 --- a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPolicyTypesCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPolicyTypesCommand.ts @@ -90,37 +90,37 @@ export interface DescribeLoadBalancerPolicyTypesCommandOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To describe a load balancer policy type defined by Elastic Load Balancing * ```javascript * // This example describes the specified load balancer policy type. * const input = { - * "PolicyTypeNames": [ + * PolicyTypeNames: [ * "ProxyProtocolPolicyType" * ] * }; * const command = new DescribeLoadBalancerPolicyTypesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "PolicyTypeDescriptions": [ + * PolicyTypeDescriptions: [ * { - * "Description": "Policy that controls whether to include the IP address and port of the originating request for TCP messages. This policy operates on TCP listeners only.", - * "PolicyAttributeTypeDescriptions": [ + * Description: "Policy that controls whether to include the IP address and port of the originating request for TCP messages. This policy operates on TCP listeners only.", + * PolicyAttributeTypeDescriptions: [ * { - * "AttributeName": "ProxyProtocol", - * "AttributeType": "Boolean", - * "Cardinality": "ONE" + * AttributeName: "ProxyProtocol", + * AttributeType: "Boolean", + * Cardinality: "ONE" * } * ], - * "PolicyTypeName": "ProxyProtocolPolicyType" + * PolicyTypeName: "ProxyProtocolPolicyType" * } * ] * } * *\/ - * // example id: elb-describe-load-balancer-policy-types-1 * ``` * + * @public */ export class DescribeLoadBalancerPolicyTypesCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancersCommand.ts b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancersCommand.ts index 7b126d7159ca8..5f630f2891ba3 100644 --- a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancersCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancersCommand.ts @@ -144,84 +144,84 @@ export interface DescribeLoadBalancersCommandOutput extends DescribeAccessPoints * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To describe one of your load balancers * ```javascript * // This example describes the specified load balancer. * const input = { - * "LoadBalancerNames": [ + * LoadBalancerNames: [ * "my-load-balancer" * ] * }; * const command = new DescribeLoadBalancersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LoadBalancerDescriptions": [ + * LoadBalancerDescriptions: [ * { - * "AvailabilityZones": [ + * AvailabilityZones: [ * "us-west-2a" * ], - * "BackendServerDescriptions": [ + * BackendServerDescriptions: [ * { - * "InstancePort": 80, - * "PolicyNames": [ + * InstancePort: 80, + * PolicyNames: [ * "my-ProxyProtocol-policy" * ] * } * ], - * "CanonicalHostedZoneName": "my-load-balancer-1234567890.us-west-2.elb.amazonaws.com", - * "CanonicalHostedZoneNameID": "Z3DZXE0EXAMPLE", - * "CreatedTime": "2015-03-19T03:24:02.650Z", - * "DNSName": "my-load-balancer-1234567890.us-west-2.elb.amazonaws.com", - * "HealthCheck": { - * "HealthyThreshold": 2, - * "Interval": 30, - * "Target": "HTTP:80/png", - * "Timeout": 3, - * "UnhealthyThreshold": 2 + * CanonicalHostedZoneName: "my-load-balancer-1234567890.us-west-2.elb.amazonaws.com", + * CanonicalHostedZoneNameID: "Z3DZXE0EXAMPLE", + * CreatedTime: "2015-03-19T03:24:02.650Z", + * DNSName: "my-load-balancer-1234567890.us-west-2.elb.amazonaws.com", + * HealthCheck: { + * HealthyThreshold: 2, + * Interval: 30, + * Target: "HTTP:80/png", + * Timeout: 3, + * UnhealthyThreshold: 2 * }, - * "Instances": [ + * Instances: [ * { - * "InstanceId": "i-207d9717" + * InstanceId: "i-207d9717" * }, * { - * "InstanceId": "i-afefb49b" + * InstanceId: "i-afefb49b" * } * ], - * "ListenerDescriptions": [ + * ListenerDescriptions: [ * { - * "Listener": { - * "InstancePort": 80, - * "InstanceProtocol": "HTTP", - * "LoadBalancerPort": 80, - * "Protocol": "HTTP" + * Listener: { + * InstancePort: 80, + * InstanceProtocol: "HTTP", + * LoadBalancerPort: 80, + * Protocol: "HTTP" * }, - * "PolicyNames": [] + * PolicyNames: [] * }, * { - * "Listener": { - * "InstancePort": 443, - * "InstanceProtocol": "HTTPS", - * "LoadBalancerPort": 443, - * "Protocol": "HTTPS", - * "SSLCertificateId": "arn:aws:iam::123456789012:server-certificate/my-server-cert" + * Listener: { + * InstancePort: 443, + * InstanceProtocol: "HTTPS", + * LoadBalancerPort: 443, + * Protocol: "HTTPS", + * SSLCertificateId: "arn:aws:iam::123456789012:server-certificate/my-server-cert" * }, - * "PolicyNames": [ + * PolicyNames: [ * "ELBSecurityPolicy-2015-03" * ] * } * ], - * "LoadBalancerName": "my-load-balancer", - * "Policies": { - * "AppCookieStickinessPolicies": [], - * "LBCookieStickinessPolicies": [ + * LoadBalancerName: "my-load-balancer", + * Policies: { + * AppCookieStickinessPolicies: [], + * LBCookieStickinessPolicies: [ * { - * "CookieExpirationPeriod": 60, - * "PolicyName": "my-duration-cookie-policy" + * CookieExpirationPeriod: 60, + * PolicyName: "my-duration-cookie-policy" * } * ], - * "OtherPolicies": [ + * OtherPolicies: [ * "my-PublicKey-policy", * "my-authentication-policy", * "my-SSLNegotiation-policy", @@ -229,25 +229,25 @@ export interface DescribeLoadBalancersCommandOutput extends DescribeAccessPoints * "ELBSecurityPolicy-2015-03" * ] * }, - * "Scheme": "internet-facing", - * "SecurityGroups": [ + * Scheme: "internet-facing", + * SecurityGroups: [ * "sg-a61988c3" * ], - * "SourceSecurityGroup": { - * "GroupName": "my-elb-sg", - * "OwnerAlias": "123456789012" + * SourceSecurityGroup: { + * GroupName: "my-elb-sg", + * OwnerAlias: "123456789012" * }, - * "Subnets": [ + * Subnets: [ * "subnet-15aaab61" * ], - * "VPCId": "vpc-a01106c2" + * VPCId: "vpc-a01106c2" * } * ] * } * *\/ - * // example id: elb-describe-load-balancers-1 * ``` * + * @public */ export class DescribeLoadBalancersCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/DescribeTagsCommand.ts b/clients/client-elastic-load-balancing/src/commands/DescribeTagsCommand.ts index 9becce0583cbf..6c5ee4bbe6c65 100644 --- a/clients/client-elastic-load-balancing/src/commands/DescribeTagsCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DescribeTagsCommand.ts @@ -74,39 +74,39 @@ export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __Metadat * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To describe the tags for a load balancer * ```javascript * // This example describes the tags for the specified load balancer. * const input = { - * "LoadBalancerNames": [ + * LoadBalancerNames: [ * "my-load-balancer" * ] * }; * const command = new DescribeTagsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TagDescriptions": [ + * TagDescriptions: [ * { - * "LoadBalancerName": "my-load-balancer", - * "Tags": [ + * LoadBalancerName: "my-load-balancer", + * Tags: [ * { - * "Key": "project", - * "Value": "lima" + * Key: "project", + * Value: "lima" * }, * { - * "Key": "department", - * "Value": "digital-media" + * Key: "department", + * Value: "digital-media" * } * ] * } * ] * } * *\/ - * // example id: elb-describe-tags-1 * ``` * + * @public */ export class DescribeTagsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/DetachLoadBalancerFromSubnetsCommand.ts b/clients/client-elastic-load-balancing/src/commands/DetachLoadBalancerFromSubnetsCommand.ts index d0c525f8302c3..1cbd84b727256 100644 --- a/clients/client-elastic-load-balancing/src/commands/DetachLoadBalancerFromSubnetsCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DetachLoadBalancerFromSubnetsCommand.ts @@ -78,28 +78,28 @@ export interface DetachLoadBalancerFromSubnetsCommandOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To detach a load balancer from a subnet * ```javascript * // This example detaches the specified load balancer from the specified subnet. * const input = { - * "LoadBalancerName": "my-load-balancer", - * "Subnets": [ + * LoadBalancerName: "my-load-balancer", + * Subnets: [ * "subnet-0ecac448" * ] * }; * const command = new DetachLoadBalancerFromSubnetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Subnets": [ + * Subnets: [ * "subnet-15aaab61" * ] * } * *\/ - * // example id: elb-detach-load-balancer-from-subnets-1 * ``` * + * @public */ export class DetachLoadBalancerFromSubnetsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/DisableAvailabilityZonesForLoadBalancerCommand.ts b/clients/client-elastic-load-balancing/src/commands/DisableAvailabilityZonesForLoadBalancerCommand.ts index fba6164cc3cfd..273cd9820f9f8 100644 --- a/clients/client-elastic-load-balancing/src/commands/DisableAvailabilityZonesForLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DisableAvailabilityZonesForLoadBalancerCommand.ts @@ -83,28 +83,28 @@ export interface DisableAvailabilityZonesForLoadBalancerCommandOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To disable an Availability Zone for a load balancer * ```javascript * // This example removes the specified Availability Zone from the set of Availability Zones for the specified load balancer. * const input = { - * "AvailabilityZones": [ + * AvailabilityZones: [ * "us-west-2a" * ], - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * }; * const command = new DisableAvailabilityZonesForLoadBalancerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AvailabilityZones": [ + * AvailabilityZones: [ * "us-west-2b" * ] * } * *\/ - * // example id: elb-disable-availability-zones-for-load-balancer-1 * ``` * + * @public */ export class DisableAvailabilityZonesForLoadBalancerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/EnableAvailabilityZonesForLoadBalancerCommand.ts b/clients/client-elastic-load-balancing/src/commands/EnableAvailabilityZonesForLoadBalancerCommand.ts index 3c1d42afd99ce..f381de4907540 100644 --- a/clients/client-elastic-load-balancing/src/commands/EnableAvailabilityZonesForLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/EnableAvailabilityZonesForLoadBalancerCommand.ts @@ -77,29 +77,29 @@ export interface EnableAvailabilityZonesForLoadBalancerCommandOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To enable an Availability Zone for a load balancer * ```javascript * // This example adds the specified Availability Zone to the specified load balancer. * const input = { - * "AvailabilityZones": [ + * AvailabilityZones: [ * "us-west-2b" * ], - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * }; * const command = new EnableAvailabilityZonesForLoadBalancerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AvailabilityZones": [ + * AvailabilityZones: [ * "us-west-2a", * "us-west-2b" * ] * } * *\/ - * // example id: elb-enable-availability-zones-for-load-balancer-1 * ``` * + * @public */ export class EnableAvailabilityZonesForLoadBalancerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/ModifyLoadBalancerAttributesCommand.ts b/clients/client-elastic-load-balancing/src/commands/ModifyLoadBalancerAttributesCommand.ts index 3d1900d89e7bf..a446c9b35290b 100644 --- a/clients/client-elastic-load-balancing/src/commands/ModifyLoadBalancerAttributesCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/ModifyLoadBalancerAttributesCommand.ts @@ -144,61 +144,60 @@ export interface ModifyLoadBalancerAttributesCommandOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To enable cross-zone load balancing * ```javascript * // This example enables cross-zone load balancing for the specified load balancer. * const input = { - * "LoadBalancerAttributes": { - * "CrossZoneLoadBalancing": { - * "Enabled": true + * LoadBalancerAttributes: { + * CrossZoneLoadBalancing: { + * Enabled: true * } * }, - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * }; * const command = new ModifyLoadBalancerAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LoadBalancerAttributes": { - * "CrossZoneLoadBalancing": { - * "Enabled": true + * LoadBalancerAttributes: { + * CrossZoneLoadBalancing: { + * Enabled: true * } * }, - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * } * *\/ - * // example id: elb-modify-load-balancer-attributes-1 * ``` * * @example To enable connection draining * ```javascript * // This example enables connection draining for the specified load balancer. * const input = { - * "LoadBalancerAttributes": { - * "ConnectionDraining": { - * "Enabled": true, - * "Timeout": 300 + * LoadBalancerAttributes: { + * ConnectionDraining: { + * Enabled: true, + * Timeout: 300 * } * }, - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * }; * const command = new ModifyLoadBalancerAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LoadBalancerAttributes": { - * "ConnectionDraining": { - * "Enabled": true, - * "Timeout": 300 + * LoadBalancerAttributes: { + * ConnectionDraining: { + * Enabled: true, + * Timeout: 300 * } * }, - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * } * *\/ - * // example id: elb-modify-load-balancer-attributes-2 * ``` * + * @public */ export class ModifyLoadBalancerAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/RegisterInstancesWithLoadBalancerCommand.ts b/clients/client-elastic-load-balancing/src/commands/RegisterInstancesWithLoadBalancerCommand.ts index e666bf587ce44..f46320dacbc76 100644 --- a/clients/client-elastic-load-balancing/src/commands/RegisterInstancesWithLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/RegisterInstancesWithLoadBalancerCommand.ts @@ -95,38 +95,38 @@ export interface RegisterInstancesWithLoadBalancerCommandOutput extends Register * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To register instances with a load balancer * ```javascript * // This example registers the specified instance with the specified load balancer. * const input = { - * "Instances": [ + * Instances: [ * { - * "InstanceId": "i-d6f6fae3" + * InstanceId: "i-d6f6fae3" * } * ], - * "LoadBalancerName": "my-load-balancer" + * LoadBalancerName: "my-load-balancer" * }; * const command = new RegisterInstancesWithLoadBalancerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Instances": [ + * Instances: [ * { - * "InstanceId": "i-d6f6fae3" + * InstanceId: "i-d6f6fae3" * }, * { - * "InstanceId": "i-207d9717" + * InstanceId: "i-207d9717" * }, * { - * "InstanceId": "i-afefb49b" + * InstanceId: "i-afefb49b" * } * ] * } * *\/ - * // example id: elb-register-instances-with-load-balancer-1 * ``` * + * @public */ export class RegisterInstancesWithLoadBalancerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/RemoveTagsCommand.ts b/clients/client-elastic-load-balancing/src/commands/RemoveTagsCommand.ts index 0712dbebc6322..a1029591fa77e 100644 --- a/clients/client-elastic-load-balancing/src/commands/RemoveTagsCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/RemoveTagsCommand.ts @@ -67,25 +67,28 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To remove tags from a load balancer * ```javascript * // This example removes the specified tag from the specified load balancer. * const input = { - * "LoadBalancerNames": [ + * LoadBalancerNames: [ * "my-load-balancer" * ], - * "Tags": [ + * Tags: [ * { - * "Key": "project" + * Key: "project" * } * ] * }; * const command = new RemoveTagsCommand(input); - * await client.send(command); - * // example id: elb-remove-tags-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RemoveTagsCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerListenerSSLCertificateCommand.ts b/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerListenerSSLCertificateCommand.ts index b138c216ce390..e2b365a682dd9 100644 --- a/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerListenerSSLCertificateCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerListenerSSLCertificateCommand.ts @@ -88,20 +88,23 @@ export interface SetLoadBalancerListenerSSLCertificateCommandOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To update the SSL certificate for an HTTPS listener * ```javascript * // This example replaces the existing SSL certificate for the specified HTTPS listener. * const input = { - * "LoadBalancerName": "my-load-balancer", - * "LoadBalancerPort": 443, - * "SSLCertificateId": "arn:aws:iam::123456789012:server-certificate/new-server-cert" + * LoadBalancerName: "my-load-balancer", + * LoadBalancerPort: 443, + * SSLCertificateId: "arn:aws:iam::123456789012:server-certificate/new-server-cert" * }; * const command = new SetLoadBalancerListenerSSLCertificateCommand(input); - * await client.send(command); - * // example id: elb-set-load-balancer-listener-ssl-certificate-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetLoadBalancerListenerSSLCertificateCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesForBackendServerCommand.ts b/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesForBackendServerCommand.ts index 477ecc5192a5c..7462958c8d2b2 100644 --- a/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesForBackendServerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesForBackendServerCommand.ts @@ -89,22 +89,25 @@ export interface SetLoadBalancerPoliciesForBackendServerCommandOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To replace the policies associated with a port for a backend instance * ```javascript * // This example replaces the policies that are currently associated with the specified port. * const input = { - * "InstancePort": 80, - * "LoadBalancerName": "my-load-balancer", - * "PolicyNames": [ + * InstancePort: 80, + * LoadBalancerName: "my-load-balancer", + * PolicyNames: [ * "my-ProxyProtocol-policy" * ] * }; * const command = new SetLoadBalancerPoliciesForBackendServerCommand(input); - * await client.send(command); - * // example id: elb-set-load-balancer-policies-for-backend-server-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetLoadBalancerPoliciesForBackendServerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesOfListenerCommand.ts b/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesOfListenerCommand.ts index d0bbdaaf3b79e..1aa9942e61ddc 100644 --- a/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesOfListenerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesOfListenerCommand.ts @@ -84,22 +84,25 @@ export interface SetLoadBalancerPoliciesOfListenerCommandOutput * @throws {@link ElasticLoadBalancingServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancing service.

* - * @public + * * @example To replace the policies associated with a listener * ```javascript * // This example replaces the policies that are currently associated with the specified listener. * const input = { - * "LoadBalancerName": "my-load-balancer", - * "LoadBalancerPort": 80, - * "PolicyNames": [ + * LoadBalancerName: "my-load-balancer", + * LoadBalancerPort: 80, + * PolicyNames: [ * "my-SSLNegotiation-policy" * ] * }; * const command = new SetLoadBalancerPoliciesOfListenerCommand(input); - * await client.send(command); - * // example id: elb-set-load-balancer-policies-of-listener-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetLoadBalancerPoliciesOfListenerCommand extends $Command .classBuilder< diff --git a/clients/client-elastic-transcoder/src/commands/CancelJobCommand.ts b/clients/client-elastic-transcoder/src/commands/CancelJobCommand.ts index c8865fba738ff..4044092a9a8e1 100644 --- a/clients/client-elastic-transcoder/src/commands/CancelJobCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/CancelJobCommand.ts @@ -81,6 +81,7 @@ export interface CancelJobCommandOutput extends CancelJobResponse, __MetadataBea * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class CancelJobCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/CreateJobCommand.ts b/clients/client-elastic-transcoder/src/commands/CreateJobCommand.ts index bd6545a8ccf70..1c9dceb6b720c 100644 --- a/clients/client-elastic-transcoder/src/commands/CreateJobCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/CreateJobCommand.ts @@ -544,6 +544,7 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class CreateJobCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/CreatePipelineCommand.ts b/clients/client-elastic-transcoder/src/commands/CreatePipelineCommand.ts index 913ac977f87bf..f2fdf2e39ed4d 100644 --- a/clients/client-elastic-transcoder/src/commands/CreatePipelineCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/CreatePipelineCommand.ts @@ -161,6 +161,7 @@ export interface CreatePipelineCommandOutput extends CreatePipelineResponse, __M * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class CreatePipelineCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/CreatePresetCommand.ts b/clients/client-elastic-transcoder/src/commands/CreatePresetCommand.ts index 32dc010500679..b897c13b1dc2b 100644 --- a/clients/client-elastic-transcoder/src/commands/CreatePresetCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/CreatePresetCommand.ts @@ -207,6 +207,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class CreatePresetCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/DeletePipelineCommand.ts b/clients/client-elastic-transcoder/src/commands/DeletePipelineCommand.ts index df8269348dc24..a7393392e0593 100644 --- a/clients/client-elastic-transcoder/src/commands/DeletePipelineCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/DeletePipelineCommand.ts @@ -79,6 +79,7 @@ export interface DeletePipelineCommandOutput extends DeletePipelineResponse, __M * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class DeletePipelineCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/DeletePresetCommand.ts b/clients/client-elastic-transcoder/src/commands/DeletePresetCommand.ts index e602093bc7668..1d9f6ca6388cb 100644 --- a/clients/client-elastic-transcoder/src/commands/DeletePresetCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/DeletePresetCommand.ts @@ -75,6 +75,7 @@ export interface DeletePresetCommandOutput extends DeletePresetResponse, __Metad * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class DeletePresetCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/ListJobsByPipelineCommand.ts b/clients/client-elastic-transcoder/src/commands/ListJobsByPipelineCommand.ts index 0b886e3293078..95d72bf89d0e4 100644 --- a/clients/client-elastic-transcoder/src/commands/ListJobsByPipelineCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/ListJobsByPipelineCommand.ts @@ -328,6 +328,7 @@ export interface ListJobsByPipelineCommandOutput extends ListJobsByPipelineRespo * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class ListJobsByPipelineCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/ListJobsByStatusCommand.ts b/clients/client-elastic-transcoder/src/commands/ListJobsByStatusCommand.ts index ba8cea13b54fc..8f1f867aa1083 100644 --- a/clients/client-elastic-transcoder/src/commands/ListJobsByStatusCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/ListJobsByStatusCommand.ts @@ -327,6 +327,7 @@ export interface ListJobsByStatusCommandOutput extends ListJobsByStatusResponse, * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class ListJobsByStatusCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/ListPipelinesCommand.ts b/clients/client-elastic-transcoder/src/commands/ListPipelinesCommand.ts index 98c609ee93869..e60e9e626f893 100644 --- a/clients/client-elastic-transcoder/src/commands/ListPipelinesCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/ListPipelinesCommand.ts @@ -115,6 +115,7 @@ export interface ListPipelinesCommandOutput extends ListPipelinesResponse, __Met * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class ListPipelinesCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/ListPresetsCommand.ts b/clients/client-elastic-transcoder/src/commands/ListPresetsCommand.ts index a6294077efb56..916b362e3e089 100644 --- a/clients/client-elastic-transcoder/src/commands/ListPresetsCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/ListPresetsCommand.ts @@ -137,6 +137,7 @@ export interface ListPresetsCommandOutput extends ListPresetsResponse, __Metadat * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class ListPresetsCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/ReadJobCommand.ts b/clients/client-elastic-transcoder/src/commands/ReadJobCommand.ts index 7f142466fd351..6c9577739a347 100644 --- a/clients/client-elastic-transcoder/src/commands/ReadJobCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/ReadJobCommand.ts @@ -321,6 +321,7 @@ export interface ReadJobCommandOutput extends ReadJobResponse, __MetadataBearer * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class ReadJobCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/ReadPipelineCommand.ts b/clients/client-elastic-transcoder/src/commands/ReadPipelineCommand.ts index 20515b99afc26..05a70efdd5824 100644 --- a/clients/client-elastic-transcoder/src/commands/ReadPipelineCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/ReadPipelineCommand.ts @@ -121,6 +121,7 @@ export interface ReadPipelineCommandOutput extends ReadPipelineResponse, __Metad * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class ReadPipelineCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/ReadPresetCommand.ts b/clients/client-elastic-transcoder/src/commands/ReadPresetCommand.ts index 90c99d3f5d691..1626d1fb80563 100644 --- a/clients/client-elastic-transcoder/src/commands/ReadPresetCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/ReadPresetCommand.ts @@ -136,6 +136,7 @@ export interface ReadPresetCommandOutput extends ReadPresetResponse, __MetadataB * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class ReadPresetCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/TestRoleCommand.ts b/clients/client-elastic-transcoder/src/commands/TestRoleCommand.ts index 5bfdaa2790d2e..8032459603ef6 100644 --- a/clients/client-elastic-transcoder/src/commands/TestRoleCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/TestRoleCommand.ts @@ -89,6 +89,7 @@ export interface TestRoleCommandOutput extends TestRoleResponse, __MetadataBeare * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class TestRoleCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/UpdatePipelineCommand.ts b/clients/client-elastic-transcoder/src/commands/UpdatePipelineCommand.ts index 3d2ae484a6ec8..6ab121f7e9d59 100644 --- a/clients/client-elastic-transcoder/src/commands/UpdatePipelineCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/UpdatePipelineCommand.ts @@ -166,6 +166,7 @@ export interface UpdatePipelineCommandOutput extends UpdatePipelineResponse, __M * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class UpdatePipelineCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/UpdatePipelineNotificationsCommand.ts b/clients/client-elastic-transcoder/src/commands/UpdatePipelineNotificationsCommand.ts index 666e6048dd35c..13bfb31e92983 100644 --- a/clients/client-elastic-transcoder/src/commands/UpdatePipelineNotificationsCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/UpdatePipelineNotificationsCommand.ts @@ -131,6 +131,7 @@ export interface UpdatePipelineNotificationsCommandOutput * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class UpdatePipelineNotificationsCommand extends $Command diff --git a/clients/client-elastic-transcoder/src/commands/UpdatePipelineStatusCommand.ts b/clients/client-elastic-transcoder/src/commands/UpdatePipelineStatusCommand.ts index 0db325e32a793..df17d6dd7d3d2 100644 --- a/clients/client-elastic-transcoder/src/commands/UpdatePipelineStatusCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/UpdatePipelineStatusCommand.ts @@ -125,6 +125,7 @@ export interface UpdatePipelineStatusCommandOutput extends UpdatePipelineStatusR * @throws {@link ElasticTranscoderServiceException} *

Base exception class for all service exceptions from ElasticTranscoder service.

* + * * @public */ export class UpdatePipelineStatusCommand extends $Command diff --git a/clients/client-elasticache/src/commands/AddTagsToResourceCommand.ts b/clients/client-elasticache/src/commands/AddTagsToResourceCommand.ts index 105326485423d..a883cce46b630 100644 --- a/clients/client-elasticache/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-elasticache/src/commands/AddTagsToResourceCommand.ts @@ -131,42 +131,42 @@ export interface AddTagsToResourceCommandOutput extends TagListMessage, __Metada * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example AddTagsToResource * ```javascript * // Adds up to 10 tags, key/value pairs, to a cluster or snapshot resource. * const input = { - * "ResourceName": "arn:aws:elasticache:us-east-1:1234567890:cluster:my-mem-cluster", - * "Tags": [ + * ResourceName: "arn:aws:elasticache:us-east-1:1234567890:cluster:my-mem-cluster", + * Tags: [ * { - * "Key": "APIVersion", - * "Value": "20150202" + * Key: "APIVersion", + * Value: "20150202" * }, * { - * "Key": "Service", - * "Value": "ElastiCache" + * Key: "Service", + * Value: "ElastiCache" * } * ] * }; * const command = new AddTagsToResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TagList": [ + * TagList: [ * { - * "Key": "APIVersion", - * "Value": "20150202" + * Key: "APIVersion", + * Value: "20150202" * }, * { - * "Key": "Service", - * "Value": "ElastiCache" + * Key: "Service", + * Value: "ElastiCache" * } * ] * } * *\/ - * // example id: addtagstoresource-1482430264385 * ``` * + * @public */ export class AddTagsToResourceCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/AuthorizeCacheSecurityGroupIngressCommand.ts b/clients/client-elasticache/src/commands/AuthorizeCacheSecurityGroupIngressCommand.ts index e629f5aa2e2be..60cece00d59ba 100644 --- a/clients/client-elasticache/src/commands/AuthorizeCacheSecurityGroupIngressCommand.ts +++ b/clients/client-elasticache/src/commands/AuthorizeCacheSecurityGroupIngressCommand.ts @@ -100,20 +100,23 @@ export interface AuthorizeCacheSecurityGroupIngressCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example AuthorizeCacheCacheSecurityGroupIngress * ```javascript * // Allows network ingress to a cache security group. Applications using ElastiCache must be running on Amazon EC2. Amazon EC2 security groups are used as the authorization mechanism. * const input = { - * "CacheSecurityGroupName": "my-sec-grp", - * "EC2SecurityGroupName": "my-ec2-sec-grp", - * "EC2SecurityGroupOwnerId": "1234567890" + * CacheSecurityGroupName: "my-sec-grp", + * EC2SecurityGroupName: "my-ec2-sec-grp", + * EC2SecurityGroupOwnerId: "1234567890" * }; * const command = new AuthorizeCacheSecurityGroupIngressCommand(input); - * await client.send(command); - * // example id: authorizecachecachesecuritygroupingress-1483046446206 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AuthorizeCacheSecurityGroupIngressCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/BatchApplyUpdateActionCommand.ts b/clients/client-elasticache/src/commands/BatchApplyUpdateActionCommand.ts index ec0e5139cd46d..58293aad718a1 100644 --- a/clients/client-elasticache/src/commands/BatchApplyUpdateActionCommand.ts +++ b/clients/client-elasticache/src/commands/BatchApplyUpdateActionCommand.ts @@ -85,6 +85,7 @@ export interface BatchApplyUpdateActionCommandOutput extends UpdateActionResults * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class BatchApplyUpdateActionCommand extends $Command diff --git a/clients/client-elasticache/src/commands/BatchStopUpdateActionCommand.ts b/clients/client-elasticache/src/commands/BatchStopUpdateActionCommand.ts index d8cd50c6dbc1f..6f1c85e9f446f 100644 --- a/clients/client-elasticache/src/commands/BatchStopUpdateActionCommand.ts +++ b/clients/client-elasticache/src/commands/BatchStopUpdateActionCommand.ts @@ -85,6 +85,7 @@ export interface BatchStopUpdateActionCommandOutput extends UpdateActionResultsM * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class BatchStopUpdateActionCommand extends $Command diff --git a/clients/client-elasticache/src/commands/CompleteMigrationCommand.ts b/clients/client-elasticache/src/commands/CompleteMigrationCommand.ts index cc31ec1a15da6..d4537fcd904e3 100644 --- a/clients/client-elasticache/src/commands/CompleteMigrationCommand.ts +++ b/clients/client-elasticache/src/commands/CompleteMigrationCommand.ts @@ -185,6 +185,7 @@ export interface CompleteMigrationCommandOutput extends CompleteMigrationRespons * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class CompleteMigrationCommand extends $Command diff --git a/clients/client-elasticache/src/commands/CopyServerlessCacheSnapshotCommand.ts b/clients/client-elasticache/src/commands/CopyServerlessCacheSnapshotCommand.ts index e63ced24c9368..0513671b7ed25 100644 --- a/clients/client-elasticache/src/commands/CopyServerlessCacheSnapshotCommand.ts +++ b/clients/client-elasticache/src/commands/CopyServerlessCacheSnapshotCommand.ts @@ -105,6 +105,7 @@ export interface CopyServerlessCacheSnapshotCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class CopyServerlessCacheSnapshotCommand extends $Command diff --git a/clients/client-elasticache/src/commands/CopySnapshotCommand.ts b/clients/client-elasticache/src/commands/CopySnapshotCommand.ts index 6ab21d7b27831..cd0f803c62a71 100644 --- a/clients/client-elasticache/src/commands/CopySnapshotCommand.ts +++ b/clients/client-elasticache/src/commands/CopySnapshotCommand.ts @@ -230,52 +230,52 @@ export interface CopySnapshotCommandOutput extends CopySnapshotResult, __Metadat * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example CopySnapshot * ```javascript * // Copies a snapshot to a specified name. * const input = { - * "SourceSnapshotName": "my-snapshot", - * "TargetBucket": "", - * "TargetSnapshotName": "my-snapshot-copy" + * SourceSnapshotName: "my-snapshot", + * TargetBucket: "", + * TargetSnapshotName: "my-snapshot-copy" * }; * const command = new CopySnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Snapshot": { - * "AutoMinorVersionUpgrade": true, - * "CacheClusterCreateTime": "2016-12-21T22:24:04.955Z", - * "CacheClusterId": "my-redis4", - * "CacheNodeType": "cache.m3.large", - * "CacheParameterGroupName": "default.redis3.2", - * "CacheSubnetGroupName": "default", - * "Engine": "redis", - * "EngineVersion": "3.2.4", - * "NodeSnapshots": [ + * Snapshot: { + * AutoMinorVersionUpgrade: true, + * CacheClusterCreateTime: "2016-12-21T22:24:04.955Z", + * CacheClusterId: "my-redis4", + * CacheNodeType: "cache.m3.large", + * CacheParameterGroupName: "default.redis3.2", + * CacheSubnetGroupName: "default", + * Engine: "redis", + * EngineVersion: "3.2.4", + * NodeSnapshots: [ * { - * "CacheNodeCreateTime": "2016-12-21T22:24:04.955Z", - * "CacheNodeId": "0001", - * "CacheSize": "3 MB", - * "SnapshotCreateTime": "2016-12-28T07:00:52Z" + * CacheNodeCreateTime: "2016-12-21T22:24:04.955Z", + * CacheNodeId: "0001", + * CacheSize: "3 MB", + * SnapshotCreateTime: "2016-12-28T07:00:52Z" * } * ], - * "NumCacheNodes": 1, - * "Port": 6379, - * "PreferredAvailabilityZone": "us-east-1c", - * "PreferredMaintenanceWindow": "tue:09:30-tue:10:30", - * "SnapshotName": "my-snapshot-copy", - * "SnapshotRetentionLimit": 7, - * "SnapshotSource": "manual", - * "SnapshotStatus": "creating", - * "SnapshotWindow": "07:00-08:00", - * "VpcId": "vpc-3820329f3" + * NumCacheNodes: 1, + * Port: 6379, + * PreferredAvailabilityZone: "us-east-1c", + * PreferredMaintenanceWindow: "tue:09:30-tue:10:30", + * SnapshotName: "my-snapshot-copy", + * SnapshotRetentionLimit: 7, + * SnapshotSource: "manual", + * SnapshotStatus: "creating", + * SnapshotWindow: "07:00-08:00", + * VpcId: "vpc-3820329f3" * } * } * *\/ - * // example id: copysnapshot-1482961393820 * ``` * + * @public */ export class CopySnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/CreateCacheClusterCommand.ts b/clients/client-elasticache/src/commands/CreateCacheClusterCommand.ts index ef7aea2bfc950..235297e4a06aa 100644 --- a/clients/client-elasticache/src/commands/CreateCacheClusterCommand.ts +++ b/clients/client-elasticache/src/commands/CreateCacheClusterCommand.ts @@ -278,49 +278,94 @@ export interface CreateCacheClusterCommandOutput extends CreateCacheClusterResul * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example CreateCacheCluster * ```javascript * // Creates a Memcached cluster with 2 nodes. * const input = { - * "AZMode": "cross-az", - * "CacheClusterId": "my-memcached-cluster", - * "CacheNodeType": "cache.r3.large", - * "CacheSubnetGroupName": "default", - * "Engine": "memcached", - * "EngineVersion": "1.4.24", - * "NumCacheNodes": 2, - * "Port": 11211 + * AZMode: "cross-az", + * CacheClusterId: "my-memcached-cluster", + * CacheNodeType: "cache.r3.large", + * CacheSubnetGroupName: "default", + * Engine: "memcached", + * EngineVersion: "1.4.24", + * NumCacheNodes: 2, + * Port: 11211 + * }; + * const command = new CreateCacheClusterCommand(input); + * const response = await client.send(command); + * /* response is + * { + * CacheCluster: { + * AutoMinorVersionUpgrade: true, + * CacheClusterId: "my-memcached-cluster", + * CacheClusterStatus: "creating", + * CacheNodeType: "cache.r3.large", + * CacheParameterGroup: { + * CacheNodeIdsToReboot: [], + * CacheParameterGroupName: "default.memcached1.4", + * ParameterApplyStatus: "in-sync" + * }, + * CacheSecurityGroups: [], + * CacheSubnetGroupName: "default", + * ClientDownloadLandingPage: "https://console.aws.amazon.com/elasticache/home#client-download:", + * Engine: "memcached", + * EngineVersion: "1.4.24", + * NumCacheNodes: 2, + * PendingModifiedValues: { /* empty *\/ }, + * PreferredAvailabilityZone: "Multiple", + * PreferredMaintenanceWindow: "wed:09:00-wed:10:00" + * } + * } + * *\/ + * ``` + * + * @example CreateCacheCluster + * ```javascript + * // Creates a Redis cluster with 1 node. + * const input = { + * AutoMinorVersionUpgrade: true, + * CacheClusterId: "my-redis", + * CacheNodeType: "cache.r3.larage", + * CacheSubnetGroupName: "default", + * Engine: "redis", + * EngineVersion: "3.2.4", + * NumCacheNodes: 1, + * Port: 6379, + * PreferredAvailabilityZone: "us-east-1c", + * SnapshotRetentionLimit: 7 * }; * const command = new CreateCacheClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CacheCluster": { - * "AutoMinorVersionUpgrade": true, - * "CacheClusterId": "my-memcached-cluster", - * "CacheClusterStatus": "creating", - * "CacheNodeType": "cache.r3.large", - * "CacheParameterGroup": { - * "CacheNodeIdsToReboot": [], - * "CacheParameterGroupName": "default.memcached1.4", - * "ParameterApplyStatus": "in-sync" + * CacheCluster: { + * AutoMinorVersionUpgrade: true, + * CacheClusterId: "my-redis", + * CacheClusterStatus: "creating", + * CacheNodeType: "cache.m3.large", + * CacheParameterGroup: { + * CacheNodeIdsToReboot: [], + * CacheParameterGroupName: "default.redis3.2", + * ParameterApplyStatus: "in-sync" * }, - * "CacheSecurityGroups": [], - * "CacheSubnetGroupName": "default", - * "ClientDownloadLandingPage": "https://console.aws.amazon.com/elasticache/home#client-download:", - * "Engine": "memcached", - * "EngineVersion": "1.4.24", - * "NumCacheNodes": 2, - * "PendingModifiedValues": {}, - * "PreferredAvailabilityZone": "Multiple", - * "PreferredMaintenanceWindow": "wed:09:00-wed:10:00" + * CacheSecurityGroups: [], + * CacheSubnetGroupName: "default", + * ClientDownloadLandingPage: "https: //console.aws.amazon.com/elasticache/home#client-download: ", + * Engine: "redis", + * EngineVersion: "3.2.4", + * NumCacheNodes: 1, + * PendingModifiedValues: { /* empty *\/ }, + * PreferredAvailabilityZone: "us-east-1c", + * PreferredMaintenanceWindow: "fri: 05: 30-fri: 06: 30", + * SnapshotRetentionLimit: 7, + * SnapshotWindow: "10: 00-11: 00" * } * } * *\/ - * // example id: createcachecluster-1474994727381 * ``` * + * @public */ export class CreateCacheClusterCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/CreateCacheParameterGroupCommand.ts b/clients/client-elasticache/src/commands/CreateCacheParameterGroupCommand.ts index f01dddcd16241..2d8620993dfe8 100644 --- a/clients/client-elasticache/src/commands/CreateCacheParameterGroupCommand.ts +++ b/clients/client-elasticache/src/commands/CreateCacheParameterGroupCommand.ts @@ -108,29 +108,29 @@ export interface CreateCacheParameterGroupCommandOutput extends CreateCacheParam * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example CreateCacheParameterGroup * ```javascript * // Creates the Amazon ElastiCache parameter group custom-redis2-8. * const input = { - * "CacheParameterGroupFamily": "redis2.8", - * "CacheParameterGroupName": "custom-redis2-8", - * "Description": "Custom Redis 2.8 parameter group." + * CacheParameterGroupFamily: "redis2.8", + * CacheParameterGroupName: "custom-redis2-8", + * Description: "Custom Redis 2.8 parameter group." * }; * const command = new CreateCacheParameterGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CacheParameterGroup": { - * "CacheParameterGroupFamily": "redis2.8", - * "CacheParameterGroupName": "custom-redis2-8", - * "Description": "Custom Redis 2.8 parameter group." + * CacheParameterGroup: { + * CacheParameterGroupFamily: "redis2.8", + * CacheParameterGroupName: "custom-redis2-8", + * Description: "Custom Redis 2.8 parameter group." * } * } * *\/ - * // example id: createcacheparametergroup-1474997699362 * ``` * + * @public */ export class CreateCacheParameterGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/CreateCacheSecurityGroupCommand.ts b/clients/client-elasticache/src/commands/CreateCacheSecurityGroupCommand.ts index a8bf1ca211f04..45fc2f8351ff0 100644 --- a/clients/client-elasticache/src/commands/CreateCacheSecurityGroupCommand.ts +++ b/clients/client-elasticache/src/commands/CreateCacheSecurityGroupCommand.ts @@ -96,19 +96,22 @@ export interface CreateCacheSecurityGroupCommandOutput extends CreateCacheSecuri * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example CreateCacheSecurityGroup * ```javascript * // Creates an ElastiCache security group. ElastiCache security groups are only for clusters not running in an AWS VPC. * const input = { - * "CacheSecurityGroupName": "my-cache-sec-grp", - * "Description": "Example ElastiCache security group." + * CacheSecurityGroupName: "my-cache-sec-grp", + * Description: "Example ElastiCache security group." * }; * const command = new CreateCacheSecurityGroupCommand(input); - * await client.send(command); - * // example id: createcachesecuritygroup-1483041506604 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateCacheSecurityGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/CreateCacheSubnetGroupCommand.ts b/clients/client-elasticache/src/commands/CreateCacheSubnetGroupCommand.ts index f07915356e98e..bfbbf5fe9fc1e 100644 --- a/clients/client-elasticache/src/commands/CreateCacheSubnetGroupCommand.ts +++ b/clients/client-elasticache/src/commands/CreateCacheSubnetGroupCommand.ts @@ -115,14 +115,14 @@ export interface CreateCacheSubnetGroupCommandOutput extends CreateCacheSubnetGr * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example CreateCacheSubnet * ```javascript * // Creates a new cache subnet group. * const input = { - * "CacheSubnetGroupDescription": "Sample subnet group", - * "CacheSubnetGroupName": "my-sn-grp2", - * "SubnetIds": [ + * CacheSubnetGroupDescription: "Sample subnet group", + * CacheSubnetGroupName: "my-sn-grp2", + * SubnetIds: [ * "subnet-6f28c982", * "subnet-bcd382f3", * "subnet-845b3e7c0" @@ -130,38 +130,38 @@ export interface CreateCacheSubnetGroupCommandOutput extends CreateCacheSubnetGr * }; * const command = new CreateCacheSubnetGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CacheSubnetGroup": { - * "CacheSubnetGroupDescription": "My subnet group.", - * "CacheSubnetGroupName": "my-sn-grp", - * "Subnets": [ + * CacheSubnetGroup: { + * CacheSubnetGroupDescription: "My subnet group.", + * CacheSubnetGroupName: "my-sn-grp", + * Subnets: [ * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1a" + * SubnetAvailabilityZone: { + * Name: "us-east-1a" * }, - * "SubnetIdentifier": "subnet-6f28c982" + * SubnetIdentifier: "subnet-6f28c982" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1c" + * SubnetAvailabilityZone: { + * Name: "us-east-1c" * }, - * "SubnetIdentifier": "subnet-bcd382f3" + * SubnetIdentifier: "subnet-bcd382f3" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1b" + * SubnetAvailabilityZone: { + * Name: "us-east-1b" * }, - * "SubnetIdentifier": "subnet-845b3e7c0" + * SubnetIdentifier: "subnet-845b3e7c0" * } * ], - * "VpcId": "vpc-91280df6" + * VpcId: "vpc-91280df6" * } * } * *\/ - * // example id: createcachesubnet-1483042274558 * ``` * + * @public */ export class CreateCacheSubnetGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/CreateGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/CreateGlobalReplicationGroupCommand.ts index ff9c597ea4dbf..bc8d42a3d0b0c 100644 --- a/clients/client-elasticache/src/commands/CreateGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/CreateGlobalReplicationGroupCommand.ts @@ -116,6 +116,7 @@ export interface CreateGlobalReplicationGroupCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class CreateGlobalReplicationGroupCommand extends $Command diff --git a/clients/client-elasticache/src/commands/CreateReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/CreateReplicationGroupCommand.ts index 417e56acf78fb..dec4fecb6427e 100644 --- a/clients/client-elasticache/src/commands/CreateReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/CreateReplicationGroupCommand.ts @@ -353,100 +353,99 @@ export interface CreateReplicationGroupCommandOutput extends CreateReplicationGr * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example CreateCacheReplicationGroup * ```javascript * // Creates a Redis replication group with 3 nodes. * const input = { - * "AutomaticFailoverEnabled": true, - * "CacheNodeType": "cache.m3.medium", - * "Engine": "redis", - * "EngineVersion": "2.8.24", - * "NumCacheClusters": 3, - * "ReplicationGroupDescription": "A Redis replication group.", - * "ReplicationGroupId": "my-redis-rg", - * "SnapshotRetentionLimit": 30 + * AutomaticFailoverEnabled: true, + * CacheNodeType: "cache.m3.medium", + * Engine: "redis", + * EngineVersion: "2.8.24", + * NumCacheClusters: 3, + * ReplicationGroupDescription: "A Redis replication group.", + * ReplicationGroupId: "my-redis-rg", + * SnapshotRetentionLimit: 30 * }; * const command = new CreateReplicationGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicationGroup": { - * "AutomaticFailover": "enabling", - * "Description": "A Redis replication group.", - * "MemberClusters": [ + * ReplicationGroup: { + * AutomaticFailover: "enabling", + * Description: "A Redis replication group.", + * MemberClusters: [ * "my-redis-rg-001", * "my-redis-rg-002", * "my-redis-rg-003" * ], - * "PendingModifiedValues": {}, - * "ReplicationGroupId": "my-redis-rg", - * "SnapshottingClusterId": "my-redis-rg-002", - * "Status": "creating" + * PendingModifiedValues: { /* empty *\/ }, + * ReplicationGroupId: "my-redis-rg", + * SnapshottingClusterId: "my-redis-rg-002", + * Status: "creating" * } * } * *\/ - * // example id: createcachereplicationgroup-1474998730655 * ``` * * @example CreateReplicationGroup * ```javascript * // Creates a Redis (cluster mode enabled) replication group with two shards. One shard has one read replica node and the other shard has two read replicas. * const input = { - * "AutoMinorVersionUpgrade": true, - * "CacheNodeType": "cache.m3.medium", - * "CacheParameterGroupName": "default.redis3.2.cluster.on", - * "Engine": "redis", - * "EngineVersion": "3.2.4", - * "NodeGroupConfiguration": [ + * AutoMinorVersionUpgrade: true, + * CacheNodeType: "cache.m3.medium", + * CacheParameterGroupName: "default.redis3.2.cluster.on", + * Engine: "redis", + * EngineVersion: "3.2.4", + * NodeGroupConfiguration: [ * { - * "PrimaryAvailabilityZone": "us-east-1c", - * "ReplicaAvailabilityZones": [ + * PrimaryAvailabilityZone: "us-east-1c", + * ReplicaAvailabilityZones: [ * "us-east-1b" * ], - * "ReplicaCount": 1, - * "Slots": "0-8999" + * ReplicaCount: 1, + * Slots: "0-8999" * }, * { - * "PrimaryAvailabilityZone": "us-east-1a", - * "ReplicaAvailabilityZones": [ + * PrimaryAvailabilityZone: "us-east-1a", + * ReplicaAvailabilityZones: [ * "us-east-1a", * "us-east-1c" * ], - * "ReplicaCount": 2, - * "Slots": "9000-16383" + * ReplicaCount: 2, + * Slots: "9000-16383" * } * ], - * "NumNodeGroups": 2, - * "ReplicationGroupDescription": "A multi-sharded replication group", - * "ReplicationGroupId": "clustered-redis-rg", - * "SnapshotRetentionLimit": 8 + * NumNodeGroups: 2, + * ReplicationGroupDescription: "A multi-sharded replication group", + * ReplicationGroupId: "clustered-redis-rg", + * SnapshotRetentionLimit: 8 * }; * const command = new CreateReplicationGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicationGroup": { - * "AutomaticFailover": "enabled", - * "Description": "Sharded replication group", - * "MemberClusters": [ + * ReplicationGroup: { + * AutomaticFailover: "enabled", + * Description: "Sharded replication group", + * MemberClusters: [ * "rc-rg3-0001-001", * "rc-rg3-0001-002", * "rc-rg3-0002-001", * "rc-rg3-0002-002", * "rc-rg3-0002-003" * ], - * "PendingModifiedValues": {}, - * "ReplicationGroupId": "clustered-redis-rg", - * "SnapshotRetentionLimit": 8, - * "SnapshotWindow": "05:30-06:30", - * "Status": "creating" + * PendingModifiedValues: { /* empty *\/ }, + * ReplicationGroupId: "clustered-redis-rg", + * SnapshotRetentionLimit: 8, + * SnapshotWindow: "05:30-06:30", + * Status: "creating" * } * } * *\/ - * // example id: createreplicationgroup-1483657035585 * ``` * + * @public */ export class CreateReplicationGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/CreateServerlessCacheCommand.ts b/clients/client-elasticache/src/commands/CreateServerlessCacheCommand.ts index 0266346aa4528..3d7c8d9ca747e 100644 --- a/clients/client-elasticache/src/commands/CreateServerlessCacheCommand.ts +++ b/clients/client-elasticache/src/commands/CreateServerlessCacheCommand.ts @@ -161,6 +161,7 @@ export interface CreateServerlessCacheCommandOutput extends CreateServerlessCach * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class CreateServerlessCacheCommand extends $Command diff --git a/clients/client-elasticache/src/commands/CreateServerlessCacheSnapshotCommand.ts b/clients/client-elasticache/src/commands/CreateServerlessCacheSnapshotCommand.ts index f21ee63840271..e6edca9e21709 100644 --- a/clients/client-elasticache/src/commands/CreateServerlessCacheSnapshotCommand.ts +++ b/clients/client-elasticache/src/commands/CreateServerlessCacheSnapshotCommand.ts @@ -108,6 +108,7 @@ export interface CreateServerlessCacheSnapshotCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class CreateServerlessCacheSnapshotCommand extends $Command diff --git a/clients/client-elasticache/src/commands/CreateSnapshotCommand.ts b/clients/client-elasticache/src/commands/CreateSnapshotCommand.ts index 144c7fd3a9065..bfe71329b2d2a 100644 --- a/clients/client-elasticache/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-elasticache/src/commands/CreateSnapshotCommand.ts @@ -163,96 +163,137 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResult, __Met * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * + * @example CreateSnapshot - NonClustered Redis, 2 read-replicas + * ```javascript + * // Creates a snapshot of a non-clustered Redis cluster that has only three nodes, primary and two read-replicas. CacheClusterId must be a specific node in the cluster. + * const input = { + * CacheClusterId: "threenoderedis-001", + * SnapshotName: "snapshot-2" + * }; + * const command = new CreateSnapshotCommand(input); + * const response = await client.send(command); + * /* response is + * { + * Snapshot: { + * AutoMinorVersionUpgrade: true, + * CacheClusterCreateTime: "2017-02-03T15:43:36.278Z", + * CacheClusterId: "threenoderedis-001", + * CacheNodeType: "cache.m3.medium", + * CacheParameterGroupName: "default.redis3.2", + * CacheSubnetGroupName: "default", + * Engine: "redis", + * EngineVersion: "3.2.4", + * NodeSnapshots: [ + * { + * CacheNodeCreateTime: "2017-02-03T15:43:36.278Z", + * CacheNodeId: "0001", + * CacheSize: "" + * } + * ], + * NumCacheNodes: 1, + * Port: 6379, + * PreferredAvailabilityZone: "us-west-2c", + * PreferredMaintenanceWindow: "sat:08:00-sat:09:00", + * SnapshotName: "snapshot-2", + * SnapshotRetentionLimit: 1, + * SnapshotSource: "manual", + * SnapshotStatus: "creating", + * SnapshotWindow: "00:00-01:00", + * VpcId: "vpc-73c3cd17" + * } + * } + * *\/ + * ``` + * * @example CreateSnapshot - NonClustered Redis, no read-replicas * ```javascript * // Creates a snapshot of a non-clustered Redis cluster that has only one node. * const input = { - * "CacheClusterId": "onenoderedis", - * "SnapshotName": "snapshot-1" + * CacheClusterId: "onenoderedis", + * SnapshotName: "snapshot-1" * }; * const command = new CreateSnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Snapshot": { - * "AutoMinorVersionUpgrade": true, - * "CacheClusterCreateTime": "2017-02-03T15:43:36.278Z", - * "CacheClusterId": "onenoderedis", - * "CacheNodeType": "cache.m3.medium", - * "CacheParameterGroupName": "default.redis3.2", - * "CacheSubnetGroupName": "default", - * "Engine": "redis", - * "EngineVersion": "3.2.4", - * "NodeSnapshots": [ + * Snapshot: { + * AutoMinorVersionUpgrade: true, + * CacheClusterCreateTime: "2017-02-03T15:43:36.278Z", + * CacheClusterId: "onenoderedis", + * CacheNodeType: "cache.m3.medium", + * CacheParameterGroupName: "default.redis3.2", + * CacheSubnetGroupName: "default", + * Engine: "redis", + * EngineVersion: "3.2.4", + * NodeSnapshots: [ * { - * "CacheNodeCreateTime": "2017-02-03T15:43:36.278Z", - * "CacheNodeId": "0001", - * "CacheSize": "" + * CacheNodeCreateTime: "2017-02-03T15:43:36.278Z", + * CacheNodeId: "0001", + * CacheSize: "" * } * ], - * "NumCacheNodes": 1, - * "Port": 6379, - * "PreferredAvailabilityZone": "us-west-2c", - * "PreferredMaintenanceWindow": "sat:08:00-sat:09:00", - * "SnapshotName": "snapshot-1", - * "SnapshotRetentionLimit": 1, - * "SnapshotSource": "manual", - * "SnapshotStatus": "creating", - * "SnapshotWindow": "00:00-01:00", - * "VpcId": "vpc-73c3cd17" + * NumCacheNodes: 1, + * Port: 6379, + * PreferredAvailabilityZone: "us-west-2c", + * PreferredMaintenanceWindow: "sat:08:00-sat:09:00", + * SnapshotName: "snapshot-1", + * SnapshotRetentionLimit: 1, + * SnapshotSource: "manual", + * SnapshotStatus: "creating", + * SnapshotWindow: "00:00-01:00", + * VpcId: "vpc-73c3cd17" * } * } * *\/ - * // example id: createsnapshot-1474999681024 * ``` * * @example CreateSnapshot-clustered Redis * ```javascript * // Creates a snapshot of a clustered Redis cluster that has 2 shards, each with a primary and 4 read-replicas. * const input = { - * "ReplicationGroupId": "clusteredredis", - * "SnapshotName": "snapshot-2x5" + * ReplicationGroupId: "clusteredredis", + * SnapshotName: "snapshot-2x5" * }; * const command = new CreateSnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Snapshot": { - * "AutoMinorVersionUpgrade": true, - * "AutomaticFailover": "enabled", - * "CacheNodeType": "cache.m3.medium", - * "CacheParameterGroupName": "default.redis3.2.cluster.on", - * "CacheSubnetGroupName": "default", - * "Engine": "redis", - * "EngineVersion": "3.2.4", - * "NodeSnapshots": [ + * Snapshot: { + * AutoMinorVersionUpgrade: true, + * AutomaticFailover: "enabled", + * CacheNodeType: "cache.m3.medium", + * CacheParameterGroupName: "default.redis3.2.cluster.on", + * CacheSubnetGroupName: "default", + * Engine: "redis", + * EngineVersion: "3.2.4", + * NodeSnapshots: [ * { - * "CacheSize": "", - * "NodeGroupId": "0001" + * CacheSize: "", + * NodeGroupId: "0001" * }, * { - * "CacheSize": "", - * "NodeGroupId": "0002" + * CacheSize: "", + * NodeGroupId: "0002" * } * ], - * "NumNodeGroups": 2, - * "Port": 6379, - * "PreferredMaintenanceWindow": "mon:09:30-mon:10:30", - * "ReplicationGroupDescription": "Redis cluster with 2 shards.", - * "ReplicationGroupId": "clusteredredis", - * "SnapshotName": "snapshot-2x5", - * "SnapshotRetentionLimit": 1, - * "SnapshotSource": "manual", - * "SnapshotStatus": "creating", - * "SnapshotWindow": "12:00-13:00", - * "VpcId": "vpc-73c3cd17" + * NumNodeGroups: 2, + * Port: 6379, + * PreferredMaintenanceWindow: "mon:09:30-mon:10:30", + * ReplicationGroupDescription: "Redis cluster with 2 shards.", + * ReplicationGroupId: "clusteredredis", + * SnapshotName: "snapshot-2x5", + * SnapshotRetentionLimit: 1, + * SnapshotSource: "manual", + * SnapshotStatus: "creating", + * SnapshotWindow: "12:00-13:00", + * VpcId: "vpc-73c3cd17" * } * } * *\/ - * // example id: createsnapshot-clustered-redis-1486144841758 * ``` * + * @public */ export class CreateSnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/CreateUserCommand.ts b/clients/client-elasticache/src/commands/CreateUserCommand.ts index 586cf407ef1a1..dec61394e1af1 100644 --- a/clients/client-elasticache/src/commands/CreateUserCommand.ts +++ b/clients/client-elasticache/src/commands/CreateUserCommand.ts @@ -111,6 +111,7 @@ export interface CreateUserCommandOutput extends User, __MetadataBearer {} * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class CreateUserCommand extends $Command diff --git a/clients/client-elasticache/src/commands/CreateUserGroupCommand.ts b/clients/client-elasticache/src/commands/CreateUserGroupCommand.ts index b2adc6ec47784..ccfc84ad4f8d5 100644 --- a/clients/client-elasticache/src/commands/CreateUserGroupCommand.ts +++ b/clients/client-elasticache/src/commands/CreateUserGroupCommand.ts @@ -114,6 +114,7 @@ export interface CreateUserGroupCommandOutput extends UserGroup, __MetadataBeare * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class CreateUserGroupCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DecreaseNodeGroupsInGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/DecreaseNodeGroupsInGlobalReplicationGroupCommand.ts index 2aa299a3f1b22..93a5dfe4fd218 100644 --- a/clients/client-elasticache/src/commands/DecreaseNodeGroupsInGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DecreaseNodeGroupsInGlobalReplicationGroupCommand.ts @@ -111,6 +111,7 @@ export interface DecreaseNodeGroupsInGlobalReplicationGroupCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DecreaseNodeGroupsInGlobalReplicationGroupCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DecreaseReplicaCountCommand.ts b/clients/client-elasticache/src/commands/DecreaseReplicaCountCommand.ts index 4d68c124c8d26..cef0084d4f9d6 100644 --- a/clients/client-elasticache/src/commands/DecreaseReplicaCountCommand.ts +++ b/clients/client-elasticache/src/commands/DecreaseReplicaCountCommand.ts @@ -235,6 +235,7 @@ export interface DecreaseReplicaCountCommandOutput extends DecreaseReplicaCountR * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DecreaseReplicaCountCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DeleteCacheClusterCommand.ts b/clients/client-elasticache/src/commands/DeleteCacheClusterCommand.ts index 01e75fcbc1c4b..18e28e4f04bc0 100644 --- a/clients/client-elasticache/src/commands/DeleteCacheClusterCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteCacheClusterCommand.ts @@ -227,47 +227,47 @@ export interface DeleteCacheClusterCommandOutput extends DeleteCacheClusterResul * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DeleteCacheCluster * ```javascript * // Deletes an Amazon ElastiCache cluster. * const input = { - * "CacheClusterId": "my-memcached" + * CacheClusterId: "my-memcached" * }; * const command = new DeleteCacheClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CacheCluster": { - * "AutoMinorVersionUpgrade": true, - * "CacheClusterCreateTime": "2016-12-22T16:05:17.314Z", - * "CacheClusterId": "my-memcached", - * "CacheClusterStatus": "deleting", - * "CacheNodeType": "cache.r3.large", - * "CacheParameterGroup": { - * "CacheNodeIdsToReboot": [], - * "CacheParameterGroupName": "default.memcached1.4", - * "ParameterApplyStatus": "in-sync" + * CacheCluster: { + * AutoMinorVersionUpgrade: true, + * CacheClusterCreateTime: "2016-12-22T16:05:17.314Z", + * CacheClusterId: "my-memcached", + * CacheClusterStatus: "deleting", + * CacheNodeType: "cache.r3.large", + * CacheParameterGroup: { + * CacheNodeIdsToReboot: [], + * CacheParameterGroupName: "default.memcached1.4", + * ParameterApplyStatus: "in-sync" * }, - * "CacheSecurityGroups": [], - * "CacheSubnetGroupName": "default", - * "ClientDownloadLandingPage": "https://console.aws.amazon.com/elasticache/home#client-download:", - * "ConfigurationEndpoint": { - * "Address": "my-memcached2.ameaqx.cfg.use1.cache.amazonaws.com", - * "Port": 11211 + * CacheSecurityGroups: [], + * CacheSubnetGroupName: "default", + * ClientDownloadLandingPage: "https://console.aws.amazon.com/elasticache/home#client-download:", + * ConfigurationEndpoint: { + * Address: "my-memcached2.ameaqx.cfg.use1.cache.amazonaws.com", + * Port: 11211 * }, - * "Engine": "memcached", - * "EngineVersion": "1.4.24", - * "NumCacheNodes": 2, - * "PendingModifiedValues": {}, - * "PreferredAvailabilityZone": "Multiple", - * "PreferredMaintenanceWindow": "tue:07:30-tue:08:30" + * Engine: "memcached", + * EngineVersion: "1.4.24", + * NumCacheNodes: 2, + * PendingModifiedValues: { /* empty *\/ }, + * PreferredAvailabilityZone: "Multiple", + * PreferredMaintenanceWindow: "tue:07:30-tue:08:30" * } * } * *\/ - * // example id: deletecachecluster-1475010605291 * ``` * + * @public */ export class DeleteCacheClusterCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DeleteCacheParameterGroupCommand.ts b/clients/client-elasticache/src/commands/DeleteCacheParameterGroupCommand.ts index 668338cf9b2a7..f6e0ff4aeade7 100644 --- a/clients/client-elasticache/src/commands/DeleteCacheParameterGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteCacheParameterGroupCommand.ts @@ -69,18 +69,21 @@ export interface DeleteCacheParameterGroupCommandOutput extends __MetadataBearer * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DeleteCacheParameterGroup * ```javascript * // Deletes the Amazon ElastiCache parameter group custom-mem1-4. * const input = { - * "CacheParameterGroupName": "custom-mem1-4" + * CacheParameterGroupName: "custom-mem1-4" * }; * const command = new DeleteCacheParameterGroupCommand(input); - * await client.send(command); - * // example id: deletecacheparametergroup-1475010933957 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteCacheParameterGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DeleteCacheSecurityGroupCommand.ts b/clients/client-elasticache/src/commands/DeleteCacheSecurityGroupCommand.ts index 385d6c8e63ff2..f8bf5c1c620c4 100644 --- a/clients/client-elasticache/src/commands/DeleteCacheSecurityGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteCacheSecurityGroupCommand.ts @@ -70,18 +70,21 @@ export interface DeleteCacheSecurityGroupCommandOutput extends __MetadataBearer * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DeleteCacheSecurityGroup * ```javascript * // Deletes a cache security group. * const input = { - * "CacheSecurityGroupName": "my-sec-group" + * CacheSecurityGroupName: "my-sec-group" * }; * const command = new DeleteCacheSecurityGroupCommand(input); - * await client.send(command); - * // example id: deletecachesecuritygroup-1483046967507 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteCacheSecurityGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DeleteCacheSubnetGroupCommand.ts b/clients/client-elasticache/src/commands/DeleteCacheSubnetGroupCommand.ts index 5b190aafefbf8..6c24373f43722 100644 --- a/clients/client-elasticache/src/commands/DeleteCacheSubnetGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteCacheSubnetGroupCommand.ts @@ -64,18 +64,21 @@ export interface DeleteCacheSubnetGroupCommandOutput extends __MetadataBearer {} * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DeleteCacheSubnetGroup * ```javascript * // Deletes the Amazon ElastiCache subnet group my-subnet-group. * const input = { - * "CacheSubnetGroupName": "my-subnet-group" + * CacheSubnetGroupName: "my-subnet-group" * }; * const command = new DeleteCacheSubnetGroupCommand(input); - * await client.send(command); - * // example id: deletecachesubnetgroup-1475011431325 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteCacheSubnetGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DeleteGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/DeleteGlobalReplicationGroupCommand.ts index 6b54066576673..2b5d2d39829bf 100644 --- a/clients/client-elasticache/src/commands/DeleteGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteGlobalReplicationGroupCommand.ts @@ -114,6 +114,7 @@ export interface DeleteGlobalReplicationGroupCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DeleteGlobalReplicationGroupCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DeleteReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/DeleteReplicationGroupCommand.ts index 86e221007695b..28c0e5ed96ba5 100644 --- a/clients/client-elasticache/src/commands/DeleteReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteReplicationGroupCommand.ts @@ -229,30 +229,30 @@ export interface DeleteReplicationGroupCommandOutput extends DeleteReplicationGr * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DeleteReplicationGroup * ```javascript * // Deletes the Amazon ElastiCache replication group my-redis-rg. * const input = { - * "ReplicationGroupId": "my-redis-rg", - * "RetainPrimaryCluster": false + * ReplicationGroupId: "my-redis-rg", + * RetainPrimaryCluster: false * }; * const command = new DeleteReplicationGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicationGroup": { - * "AutomaticFailover": "disabled", - * "Description": "simple redis cluster", - * "PendingModifiedValues": {}, - * "ReplicationGroupId": "my-redis-rg", - * "Status": "deleting" + * ReplicationGroup: { + * AutomaticFailover: "disabled", + * Description: "simple redis cluster", + * PendingModifiedValues: { /* empty *\/ }, + * ReplicationGroupId: "my-redis-rg", + * Status: "deleting" * } * } * *\/ - * // example id: deletereplicationgroup-1475011641804 * ``` * + * @public */ export class DeleteReplicationGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DeleteServerlessCacheCommand.ts b/clients/client-elasticache/src/commands/DeleteServerlessCacheCommand.ts index b43db32d4117c..ed907157a70b5 100644 --- a/clients/client-elasticache/src/commands/DeleteServerlessCacheCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteServerlessCacheCommand.ts @@ -120,6 +120,7 @@ export interface DeleteServerlessCacheCommandOutput extends DeleteServerlessCach * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DeleteServerlessCacheCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DeleteServerlessCacheSnapshotCommand.ts b/clients/client-elasticache/src/commands/DeleteServerlessCacheSnapshotCommand.ts index aff0c47f6c840..c85de61316652 100644 --- a/clients/client-elasticache/src/commands/DeleteServerlessCacheSnapshotCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteServerlessCacheSnapshotCommand.ts @@ -86,6 +86,7 @@ export interface DeleteServerlessCacheSnapshotCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DeleteServerlessCacheSnapshotCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DeleteSnapshotCommand.ts b/clients/client-elasticache/src/commands/DeleteSnapshotCommand.ts index 24bcc65c0d331..434d8316edadd 100644 --- a/clients/client-elasticache/src/commands/DeleteSnapshotCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteSnapshotCommand.ts @@ -124,50 +124,50 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResult, __Met * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DeleteSnapshot * ```javascript * // Deletes the Redis snapshot snapshot-20160822. * const input = { - * "SnapshotName": "snapshot-20161212" + * SnapshotName: "snapshot-20161212" * }; * const command = new DeleteSnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Snapshot": { - * "AutoMinorVersionUpgrade": true, - * "CacheClusterCreateTime": "2016-12-21T22:27:12.543Z", - * "CacheClusterId": "my-redis5", - * "CacheNodeType": "cache.m3.large", - * "CacheParameterGroupName": "default.redis3.2", - * "CacheSubnetGroupName": "default", - * "Engine": "redis", - * "EngineVersion": "3.2.4", - * "NodeSnapshots": [ + * Snapshot: { + * AutoMinorVersionUpgrade: true, + * CacheClusterCreateTime: "2016-12-21T22:27:12.543Z", + * CacheClusterId: "my-redis5", + * CacheNodeType: "cache.m3.large", + * CacheParameterGroupName: "default.redis3.2", + * CacheSubnetGroupName: "default", + * Engine: "redis", + * EngineVersion: "3.2.4", + * NodeSnapshots: [ * { - * "CacheNodeCreateTime": "2016-12-21T22:27:12.543Z", - * "CacheNodeId": "0001", - * "CacheSize": "3 MB", - * "SnapshotCreateTime": "2016-12-21T22:30:26Z" + * CacheNodeCreateTime: "2016-12-21T22:27:12.543Z", + * CacheNodeId: "0001", + * CacheSize: "3 MB", + * SnapshotCreateTime: "2016-12-21T22:30:26Z" * } * ], - * "NumCacheNodes": 1, - * "Port": 6379, - * "PreferredAvailabilityZone": "us-east-1c", - * "PreferredMaintenanceWindow": "fri:05:30-fri:06:30", - * "SnapshotName": "snapshot-20161212", - * "SnapshotRetentionLimit": 7, - * "SnapshotSource": "manual", - * "SnapshotStatus": "deleting", - * "SnapshotWindow": "10:00-11:00", - * "VpcId": "vpc-91280df6" + * NumCacheNodes: 1, + * Port: 6379, + * PreferredAvailabilityZone: "us-east-1c", + * PreferredMaintenanceWindow: "fri:05:30-fri:06:30", + * SnapshotName: "snapshot-20161212", + * SnapshotRetentionLimit: 7, + * SnapshotSource: "manual", + * SnapshotStatus: "deleting", + * SnapshotWindow: "10:00-11:00", + * VpcId: "vpc-91280df6" * } * } * *\/ - * // example id: deletesnapshot-1475011945779 * ``` * + * @public */ export class DeleteSnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DeleteUserCommand.ts b/clients/client-elasticache/src/commands/DeleteUserCommand.ts index 470538ad5a075..093e3973c7fef 100644 --- a/clients/client-elasticache/src/commands/DeleteUserCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteUserCommand.ts @@ -85,6 +85,7 @@ export interface DeleteUserCommandOutput extends User, __MetadataBearer {} * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DeleteUserCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DeleteUserGroupCommand.ts b/clients/client-elasticache/src/commands/DeleteUserGroupCommand.ts index ba0810006785f..6f0420600dd6e 100644 --- a/clients/client-elasticache/src/commands/DeleteUserGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteUserGroupCommand.ts @@ -90,6 +90,7 @@ export interface DeleteUserGroupCommandOutput extends UserGroup, __MetadataBeare * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DeleteUserGroupCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DescribeCacheClustersCommand.ts b/clients/client-elasticache/src/commands/DescribeCacheClustersCommand.ts index 23a88a967384b..e8a0c493132a4 100644 --- a/clients/client-elasticache/src/commands/DescribeCacheClustersCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeCacheClustersCommand.ts @@ -197,49 +197,115 @@ export interface DescribeCacheClustersCommandOutput extends CacheClusterMessage, * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * + * @example DescribeCacheClusters + * ```javascript + * // Lists the details for the cache cluster my-mem-cluster. + * const input = { + * CacheClusterId: "my-mem-cluster", + * ShowCacheNodeInfo: true + * }; + * const command = new DescribeCacheClustersCommand(input); + * const response = await client.send(command); + * /* response is + * { + * CacheClusters: [ + * { + * AutoMinorVersionUpgrade: true, + * CacheClusterCreateTime: "2016-12-21T21:59:43.794Z", + * CacheClusterId: "my-mem-cluster", + * CacheClusterStatus: "available", + * CacheNodeType: "cache.t2.medium", + * CacheNodes: [ + * { + * CacheNodeCreateTime: "2016-12-21T21:59:43.794Z", + * CacheNodeId: "0001", + * CacheNodeStatus: "available", + * CustomerAvailabilityZone: "us-east-1b", + * Endpoint: { + * Address: "my-mem-cluster.ameaqx.0001.use1.cache.amazonaws.com", + * Port: 11211 + * }, + * ParameterGroupStatus: "in-sync" + * }, + * { + * CacheNodeCreateTime: "2016-12-21T21:59:43.794Z", + * CacheNodeId: "0002", + * CacheNodeStatus: "available", + * CustomerAvailabilityZone: "us-east-1a", + * Endpoint: { + * Address: "my-mem-cluster.ameaqx.0002.use1.cache.amazonaws.com", + * Port: 11211 + * }, + * ParameterGroupStatus: "in-sync" + * } + * ], + * CacheParameterGroup: { + * CacheNodeIdsToReboot: [], + * CacheParameterGroupName: "default.memcached1.4", + * ParameterApplyStatus: "in-sync" + * }, + * CacheSecurityGroups: [], + * CacheSubnetGroupName: "default", + * ClientDownloadLandingPage: "https://console.aws.amazon.com/elasticache/home#client-download:", + * ConfigurationEndpoint: { + * Address: "my-mem-cluster.ameaqx.cfg.use1.cache.amazonaws.com", + * Port: 11211 + * }, + * Engine: "memcached", + * EngineVersion: "1.4.24", + * NumCacheNodes: 2, + * PendingModifiedValues: { /* empty *\/ }, + * PreferredAvailabilityZone: "Multiple", + * PreferredMaintenanceWindow: "wed:06:00-wed:07:00" + * } + * ] + * } + * *\/ + * ``` + * * @example DescribeCacheClusters * ```javascript * // Lists the details for up to 50 cache clusters. * const input = { - * "CacheClusterId": "my-mem-cluster" + * CacheClusterId: "my-mem-cluster" * }; * const command = new DescribeCacheClustersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CacheClusters": [ + * CacheClusters: [ * { - * "AutoMinorVersionUpgrade": true, - * "CacheClusterCreateTime": "2016-12-21T21:59:43.794Z", - * "CacheClusterId": "my-mem-cluster", - * "CacheClusterStatus": "available", - * "CacheNodeType": "cache.t2.medium", - * "CacheParameterGroup": { - * "CacheNodeIdsToReboot": [], - * "CacheParameterGroupName": "default.memcached1.4", - * "ParameterApplyStatus": "in-sync" + * AutoMinorVersionUpgrade: true, + * CacheClusterCreateTime: "2016-12-21T21:59:43.794Z", + * CacheClusterId: "my-mem-cluster", + * CacheClusterStatus: "available", + * CacheNodeType: "cache.t2.medium", + * CacheParameterGroup: { + * CacheNodeIdsToReboot: [], + * CacheParameterGroupName: "default.memcached1.4", + * ParameterApplyStatus: "in-sync" * }, - * "CacheSecurityGroups": [], - * "CacheSubnetGroupName": "default", - * "ClientDownloadLandingPage": "https://console.aws.amazon.com/elasticache/home#client-download:", - * "ConfigurationEndpoint": { - * "Address": "my-mem-cluster.abcdef.cfg.use1.cache.amazonaws.com", - * "Port": 11211 + * CacheSecurityGroups: [], + * CacheSubnetGroupName: "default", + * ClientDownloadLandingPage: "https://console.aws.amazon.com/elasticache/home#client-download:", + * ConfigurationEndpoint: { + * Address: "my-mem-cluster.abcdef.cfg.use1.cache.amazonaws.com", + * Port: 11211 * }, - * "Engine": "memcached", - * "EngineVersion": "1.4.24", - * "NumCacheNodes": 2, - * "PendingModifiedValues": {}, - * "PreferredAvailabilityZone": "Multiple", - * "PreferredMaintenanceWindow": "wed:06:00-wed:07:00" + * Engine: "memcached", + * EngineVersion: "1.4.24", + * NumCacheNodes: 2, + * PendingModifiedValues: { /* empty *\/ }, + * PreferredAvailabilityZone: "Multiple", + * PreferredMaintenanceWindow: "wed:06:00-wed:07:00" * } * ] * } * *\/ - * // example id: describecacheclusters-1475012269754 * ``` * + * @public */ export class DescribeCacheClustersCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DescribeCacheEngineVersionsCommand.ts b/clients/client-elasticache/src/commands/DescribeCacheEngineVersionsCommand.ts index 19468bdc57945..f6b0a61c71358 100644 --- a/clients/client-elasticache/src/commands/DescribeCacheEngineVersionsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeCacheEngineVersionsCommand.ts @@ -69,106 +69,181 @@ export interface DescribeCacheEngineVersionsCommandOutput extends CacheEngineVer * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DescribeCacheEngineVersions * ```javascript * // Lists the details for up to 25 Memcached and Redis cache engine versions. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeCacheEngineVersionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CacheEngineVersions": [ + * CacheEngineVersions: [ * { - * "CacheEngineDescription": "memcached", - * "CacheEngineVersionDescription": "memcached version 1.4.14", - * "CacheParameterGroupFamily": "memcached1.4", - * "Engine": "memcached", - * "EngineVersion": "1.4.14" + * CacheEngineDescription: "memcached", + * CacheEngineVersionDescription: "memcached version 1.4.14", + * CacheParameterGroupFamily: "memcached1.4", + * Engine: "memcached", + * EngineVersion: "1.4.14" * }, * { - * "CacheEngineDescription": "memcached", - * "CacheEngineVersionDescription": "memcached version 1.4.24", - * "CacheParameterGroupFamily": "memcached1.4", - * "Engine": "memcached", - * "EngineVersion": "1.4.24" + * CacheEngineDescription: "memcached", + * CacheEngineVersionDescription: "memcached version 1.4.24", + * CacheParameterGroupFamily: "memcached1.4", + * Engine: "memcached", + * EngineVersion: "1.4.24" * }, * { - * "CacheEngineDescription": "memcached", - * "CacheEngineVersionDescription": "memcached version 1.4.33", - * "CacheParameterGroupFamily": "memcached1.4", - * "Engine": "memcached", - * "EngineVersion": "1.4.33" + * CacheEngineDescription: "memcached", + * CacheEngineVersionDescription: "memcached version 1.4.33", + * CacheParameterGroupFamily: "memcached1.4", + * Engine: "memcached", + * EngineVersion: "1.4.33" * }, * { - * "CacheEngineDescription": "memcached", - * "CacheEngineVersionDescription": "memcached version 1.4.5", - * "CacheParameterGroupFamily": "memcached1.4", - * "Engine": "memcached", - * "EngineVersion": "1.4.5" + * CacheEngineDescription: "memcached", + * CacheEngineVersionDescription: "memcached version 1.4.5", + * CacheParameterGroupFamily: "memcached1.4", + * Engine: "memcached", + * EngineVersion: "1.4.5" * }, * { - * "CacheEngineDescription": "Redis", - * "CacheEngineVersionDescription": "redis version 2.6.13", - * "CacheParameterGroupFamily": "redis2.6", - * "Engine": "redis", - * "EngineVersion": "2.6.13" + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 2.6.13", + * CacheParameterGroupFamily: "redis2.6", + * Engine: "redis", + * EngineVersion: "2.6.13" * }, * { - * "CacheEngineDescription": "Redis", - * "CacheEngineVersionDescription": "redis version 2.8.19", - * "CacheParameterGroupFamily": "redis2.8", - * "Engine": "redis", - * "EngineVersion": "2.8.19" + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 2.8.19", + * CacheParameterGroupFamily: "redis2.8", + * Engine: "redis", + * EngineVersion: "2.8.19" * }, * { - * "CacheEngineDescription": "Redis", - * "CacheEngineVersionDescription": "redis version 2.8.21", - * "CacheParameterGroupFamily": "redis2.8", - * "Engine": "redis", - * "EngineVersion": "2.8.21" + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 2.8.21", + * CacheParameterGroupFamily: "redis2.8", + * Engine: "redis", + * EngineVersion: "2.8.21" * }, * { - * "CacheEngineDescription": "Redis", - * "CacheEngineVersionDescription": "redis version 2.8.22 R5", - * "CacheParameterGroupFamily": "redis2.8", - * "Engine": "redis", - * "EngineVersion": "2.8.22" + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 2.8.22 R5", + * CacheParameterGroupFamily: "redis2.8", + * Engine: "redis", + * EngineVersion: "2.8.22" * }, * { - * "CacheEngineDescription": "Redis", - * "CacheEngineVersionDescription": "redis version 2.8.23 R4", - * "CacheParameterGroupFamily": "redis2.8", - * "Engine": "redis", - * "EngineVersion": "2.8.23" + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 2.8.23 R4", + * CacheParameterGroupFamily: "redis2.8", + * Engine: "redis", + * EngineVersion: "2.8.23" * }, * { - * "CacheEngineDescription": "Redis", - * "CacheEngineVersionDescription": "redis version 2.8.24 R3", - * "CacheParameterGroupFamily": "redis2.8", - * "Engine": "redis", - * "EngineVersion": "2.8.24" + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 2.8.24 R3", + * CacheParameterGroupFamily: "redis2.8", + * Engine: "redis", + * EngineVersion: "2.8.24" * }, * { - * "CacheEngineDescription": "Redis", - * "CacheEngineVersionDescription": "redis version 2.8.6", - * "CacheParameterGroupFamily": "redis2.8", - * "Engine": "redis", - * "EngineVersion": "2.8.6" + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 2.8.6", + * CacheParameterGroupFamily: "redis2.8", + * Engine: "redis", + * EngineVersion: "2.8.6" * }, * { - * "CacheEngineDescription": "Redis", - * "CacheEngineVersionDescription": "redis version 3.2.4", - * "CacheParameterGroupFamily": "redis3.2", - * "Engine": "redis", - * "EngineVersion": "3.2.4" + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 3.2.4", + * CacheParameterGroupFamily: "redis3.2", + * Engine: "redis", + * EngineVersion: "3.2.4" * } * ] * } * *\/ - * // example id: describecacheengineversions-1475012638790 * ``` * + * @example DescribeCacheEngineVersions + * ```javascript + * // Lists the details for up to 50 Redis cache engine versions. + * const input = { + * DefaultOnly: false, + * Engine: "redis", + * MaxRecords: 50 + * }; + * const command = new DescribeCacheEngineVersionsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * CacheEngineVersions: [ + * { + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 2.6.13", + * CacheParameterGroupFamily: "redis2.6", + * Engine: "redis", + * EngineVersion: "2.6.13" + * }, + * { + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 2.8.19", + * CacheParameterGroupFamily: "redis2.8", + * Engine: "redis", + * EngineVersion: "2.8.19" + * }, + * { + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 2.8.21", + * CacheParameterGroupFamily: "redis2.8", + * Engine: "redis", + * EngineVersion: "2.8.21" + * }, + * { + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 2.8.22 R5", + * CacheParameterGroupFamily: "redis2.8", + * Engine: "redis", + * EngineVersion: "2.8.22" + * }, + * { + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 2.8.23 R4", + * CacheParameterGroupFamily: "redis2.8", + * Engine: "redis", + * EngineVersion: "2.8.23" + * }, + * { + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 2.8.24 R3", + * CacheParameterGroupFamily: "redis2.8", + * Engine: "redis", + * EngineVersion: "2.8.24" + * }, + * { + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 2.8.6", + * CacheParameterGroupFamily: "redis2.8", + * Engine: "redis", + * EngineVersion: "2.8.6" + * }, + * { + * CacheEngineDescription: "Redis", + * CacheEngineVersionDescription: "redis version 3.2.4", + * CacheParameterGroupFamily: "redis3.2", + * Engine: "redis", + * EngineVersion: "3.2.4" + * } + * ], + * Marker: "" + * } + * *\/ + * ``` + * + * @public */ export class DescribeCacheEngineVersionsCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DescribeCacheParameterGroupsCommand.ts b/clients/client-elasticache/src/commands/DescribeCacheParameterGroupsCommand.ts index e0b7b5bd1998c..8a6dcff87e3d5 100644 --- a/clients/client-elasticache/src/commands/DescribeCacheParameterGroupsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeCacheParameterGroupsCommand.ts @@ -77,29 +77,29 @@ export interface DescribeCacheParameterGroupsCommandOutput extends CacheParamete * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DescribeCacheParameterGroups * ```javascript * // Returns a list of cache parameter group descriptions. If a cache parameter group name is specified, the list contains only the descriptions for that group. * const input = { - * "CacheParameterGroupName": "custom-mem1-4" + * CacheParameterGroupName: "custom-mem1-4" * }; * const command = new DescribeCacheParameterGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CacheParameterGroups": [ + * CacheParameterGroups: [ * { - * "CacheParameterGroupFamily": "memcached1.4", - * "CacheParameterGroupName": "custom-mem1-4", - * "Description": "Custom memcache param group" + * CacheParameterGroupFamily: "memcached1.4", + * CacheParameterGroupName: "custom-mem1-4", + * Description: "Custom memcache param group" * } * ] * } * *\/ - * // example id: describecacheparametergroups-1483045457557 * ``` * + * @public */ export class DescribeCacheParameterGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DescribeCacheParametersCommand.ts b/clients/client-elasticache/src/commands/DescribeCacheParametersCommand.ts index bda7ea3b40f66..fcec900ae5555 100644 --- a/clients/client-elasticache/src/commands/DescribeCacheParametersCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeCacheParametersCommand.ts @@ -99,410 +99,410 @@ export interface DescribeCacheParametersCommandOutput extends CacheParameterGrou * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DescribeCacheParameters * ```javascript * // Lists up to 100 user parameter values for the parameter group custom.redis2.8. * const input = { - * "CacheParameterGroupName": "custom-redis2-8", - * "MaxRecords": 100, - * "Source": "user" + * CacheParameterGroupName: "custom-redis2-8", + * MaxRecords: 100, + * Source: "user" * }; * const command = new DescribeCacheParametersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "", - * "Parameters": [ - * { - * "AllowedValues": "yes,no", - * "ChangeType": "requires-reboot", - * "DataType": "string", - * "Description": "Apply rehashing or not.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "activerehashing", - * "ParameterValue": "yes", - * "Source": "system" - * }, - * { - * "AllowedValues": "always,everysec,no", - * "ChangeType": "immediate", - * "DataType": "string", - * "Description": "fsync policy for AOF persistence", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "appendfsync", - * "ParameterValue": "everysec", - * "Source": "system" - * }, - * { - * "AllowedValues": "yes,no", - * "ChangeType": "immediate", - * "DataType": "string", - * "Description": "Enable Redis persistence.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "appendonly", - * "ParameterValue": "no", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Normal client output buffer hard limit in bytes.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-normal-hard-limit", - * "ParameterValue": "0", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Normal client output buffer soft limit in bytes.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-normal-soft-limit", - * "ParameterValue": "0", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Normal client output buffer soft limit in seconds.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-normal-soft-seconds", - * "ParameterValue": "0", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Pubsub client output buffer hard limit in bytes.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-pubsub-hard-limit", - * "ParameterValue": "33554432", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Pubsub client output buffer soft limit in bytes.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-pubsub-soft-limit", - * "ParameterValue": "8388608", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Pubsub client output buffer soft limit in seconds.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-pubsub-soft-seconds", - * "ParameterValue": "60", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Slave client output buffer soft limit in seconds.", - * "IsModifiable": false, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-slave-soft-seconds", - * "ParameterValue": "60", - * "Source": "system" - * }, - * { - * "AllowedValues": "yes,no", - * "ChangeType": "immediate", - * "DataType": "string", - * "Description": "If enabled, clients who attempt to write to a read-only slave will be disconnected. Applicable to 2.8.23 and higher.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.23", - * "ParameterName": "close-on-slave-write", - * "ParameterValue": "yes", - * "Source": "system" - * }, - * { - * "AllowedValues": "1-1200000", - * "ChangeType": "requires-reboot", - * "DataType": "integer", - * "Description": "Set the number of databases.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "databases", - * "ParameterValue": "16", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The maximum number of hash entries in order for the dataset to be compressed.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "hash-max-ziplist-entries", - * "ParameterValue": "512", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The threshold of biggest hash entries in order for the dataset to be compressed.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "hash-max-ziplist-value", - * "ParameterValue": "64", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The maximum number of list entries in order for the dataset to be compressed.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "list-max-ziplist-entries", - * "ParameterValue": "512", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The threshold of biggest list entries in order for the dataset to be compressed.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "list-max-ziplist-value", - * "ParameterValue": "64", - * "Source": "system" - * }, - * { - * "AllowedValues": "5000", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Max execution time of a Lua script in milliseconds. 0 for unlimited execution without warnings.", - * "IsModifiable": false, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "lua-time-limit", - * "ParameterValue": "5000", - * "Source": "system" - * }, - * { - * "AllowedValues": "1-65000", - * "ChangeType": "requires-reboot", - * "DataType": "integer", - * "Description": "The maximum number of Redis clients.", - * "IsModifiable": false, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "maxclients", - * "ParameterValue": "65000", - * "Source": "system" - * }, - * { - * "AllowedValues": "volatile-lru,allkeys-lru,volatile-random,allkeys-random,volatile-ttl,noeviction", - * "ChangeType": "immediate", - * "DataType": "string", - * "Description": "Max memory policy.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "maxmemory-policy", - * "ParameterValue": "volatile-lru", - * "Source": "system" - * }, - * { - * "AllowedValues": "1-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Max memory samples.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "maxmemory-samples", - * "ParameterValue": "3", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Maximum number of seconds within which the master must receive a ping from a slave to take writes. Use this parameter together with min-slaves-to-write to regulate when the master stops accepting writes. Setting this value to 0 means the master always takes writes.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "min-slaves-max-lag", - * "ParameterValue": "10", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Number of slaves that must be connected in order for master to take writes. Use this parameter together with min-slaves-max-lag to regulate when the master stops accepting writes. Setting this to 0 means the master always takes writes.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "min-slaves-to-write", - * "ParameterValue": "0", - * "Source": "system" - * }, - * { - * "ChangeType": "immediate", - * "DataType": "string", - * "Description": "The keyspace events for Redis to notify Pub/Sub clients about. By default all notifications are disabled", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "notify-keyspace-events", - * "Source": "system" - * }, - * { - * "AllowedValues": "16384-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The replication backlog size in bytes for PSYNC. This is the size of the buffer which accumulates slave data when slave is disconnected for some time, so that when slave reconnects again, only transfer the portion of data which the slave missed. Minimum value is 16K.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "repl-backlog-size", - * "ParameterValue": "1048576", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The amount of time in seconds after the master no longer have any slaves connected for the master to free the replication backlog. A value of 0 means to never release the backlog.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "repl-backlog-ttl", - * "ParameterValue": "3600", - * "Source": "system" - * }, - * { - * "AllowedValues": "11-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The timeout in seconds for bulk transfer I/O during sync and master timeout from the perspective of the slave, and slave timeout from the perspective of the master.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "repl-timeout", - * "ParameterValue": "60", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The amount of memory reserved for non-cache memory usage, in bytes. You may want to increase this parameter for nodes with read replicas, AOF enabled, etc, to reduce swap usage.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "reserved-memory", - * "ParameterValue": "0", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The limit in the size of the set in order for the dataset to be compressed.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "set-max-intset-entries", - * "ParameterValue": "512", - * "Source": "system" - * }, - * { - * "AllowedValues": "yes,no", - * "ChangeType": "immediate", - * "DataType": "string", - * "Description": "Configures if chaining of slaves is allowed", - * "IsModifiable": false, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "slave-allow-chaining", - * "ParameterValue": "no", - * "Source": "system" - * }, - * { - * "AllowedValues": "-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The execution time, in microseconds, to exceed in order for the command to get logged. Note that a negative number disables the slow log, while a value of zero forces the logging of every command.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "slowlog-log-slower-than", - * "ParameterValue": "10000", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The length of the slow log. There is no limit to this length. Just be aware that it will consume memory. You can reclaim memory used by the slow log with SLOWLOG RESET.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "slowlog-max-len", - * "ParameterValue": "128", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "If non-zero, send ACKs every given number of seconds.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "tcp-keepalive", - * "ParameterValue": "0", - * "Source": "system" - * }, - * { - * "AllowedValues": "0,20-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Close connection if client is idle for a given number of seconds, or never if 0.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "timeout", - * "ParameterValue": "0", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The maximum number of sorted set entries in order for the dataset to be compressed.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "zset-max-ziplist-entries", - * "ParameterValue": "128", - * "Source": "system" - * }, - * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The threshold of biggest sorted set entries in order for the dataset to be compressed.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "zset-max-ziplist-value", - * "ParameterValue": "64", - * "Source": "system" + * Marker: "", + * Parameters: [ + * { + * AllowedValues: "yes,no", + * ChangeType: "requires-reboot", + * DataType: "string", + * Description: "Apply rehashing or not.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "activerehashing", + * ParameterValue: "yes", + * Source: "system" + * }, + * { + * AllowedValues: "always,everysec,no", + * ChangeType: "immediate", + * DataType: "string", + * Description: "fsync policy for AOF persistence", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "appendfsync", + * ParameterValue: "everysec", + * Source: "system" + * }, + * { + * AllowedValues: "yes,no", + * ChangeType: "immediate", + * DataType: "string", + * Description: "Enable Redis persistence.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "appendonly", + * ParameterValue: "no", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Normal client output buffer hard limit in bytes.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-normal-hard-limit", + * ParameterValue: "0", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Normal client output buffer soft limit in bytes.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-normal-soft-limit", + * ParameterValue: "0", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Normal client output buffer soft limit in seconds.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-normal-soft-seconds", + * ParameterValue: "0", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Pubsub client output buffer hard limit in bytes.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-pubsub-hard-limit", + * ParameterValue: "33554432", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Pubsub client output buffer soft limit in bytes.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-pubsub-soft-limit", + * ParameterValue: "8388608", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Pubsub client output buffer soft limit in seconds.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-pubsub-soft-seconds", + * ParameterValue: "60", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Slave client output buffer soft limit in seconds.", + * IsModifiable: false, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-slave-soft-seconds", + * ParameterValue: "60", + * Source: "system" + * }, + * { + * AllowedValues: "yes,no", + * ChangeType: "immediate", + * DataType: "string", + * Description: "If enabled, clients who attempt to write to a read-only slave will be disconnected. Applicable to 2.8.23 and higher.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.23", + * ParameterName: "close-on-slave-write", + * ParameterValue: "yes", + * Source: "system" + * }, + * { + * AllowedValues: "1-1200000", + * ChangeType: "requires-reboot", + * DataType: "integer", + * Description: "Set the number of databases.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "databases", + * ParameterValue: "16", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The maximum number of hash entries in order for the dataset to be compressed.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "hash-max-ziplist-entries", + * ParameterValue: "512", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The threshold of biggest hash entries in order for the dataset to be compressed.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "hash-max-ziplist-value", + * ParameterValue: "64", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The maximum number of list entries in order for the dataset to be compressed.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "list-max-ziplist-entries", + * ParameterValue: "512", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The threshold of biggest list entries in order for the dataset to be compressed.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "list-max-ziplist-value", + * ParameterValue: "64", + * Source: "system" + * }, + * { + * AllowedValues: "5000", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Max execution time of a Lua script in milliseconds. 0 for unlimited execution without warnings.", + * IsModifiable: false, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "lua-time-limit", + * ParameterValue: "5000", + * Source: "system" + * }, + * { + * AllowedValues: "1-65000", + * ChangeType: "requires-reboot", + * DataType: "integer", + * Description: "The maximum number of Redis clients.", + * IsModifiable: false, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "maxclients", + * ParameterValue: "65000", + * Source: "system" + * }, + * { + * AllowedValues: "volatile-lru,allkeys-lru,volatile-random,allkeys-random,volatile-ttl,noeviction", + * ChangeType: "immediate", + * DataType: "string", + * Description: "Max memory policy.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "maxmemory-policy", + * ParameterValue: "volatile-lru", + * Source: "system" + * }, + * { + * AllowedValues: "1-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Max memory samples.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "maxmemory-samples", + * ParameterValue: "3", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Maximum number of seconds within which the master must receive a ping from a slave to take writes. Use this parameter together with min-slaves-to-write to regulate when the master stops accepting writes. Setting this value to 0 means the master always takes writes.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "min-slaves-max-lag", + * ParameterValue: "10", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Number of slaves that must be connected in order for master to take writes. Use this parameter together with min-slaves-max-lag to regulate when the master stops accepting writes. Setting this to 0 means the master always takes writes.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "min-slaves-to-write", + * ParameterValue: "0", + * Source: "system" + * }, + * { + * ChangeType: "immediate", + * DataType: "string", + * Description: "The keyspace events for Redis to notify Pub/Sub clients about. By default all notifications are disabled", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "notify-keyspace-events", + * Source: "system" + * }, + * { + * AllowedValues: "16384-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The replication backlog size in bytes for PSYNC. This is the size of the buffer which accumulates slave data when slave is disconnected for some time, so that when slave reconnects again, only transfer the portion of data which the slave missed. Minimum value is 16K.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "repl-backlog-size", + * ParameterValue: "1048576", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The amount of time in seconds after the master no longer have any slaves connected for the master to free the replication backlog. A value of 0 means to never release the backlog.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "repl-backlog-ttl", + * ParameterValue: "3600", + * Source: "system" + * }, + * { + * AllowedValues: "11-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The timeout in seconds for bulk transfer I/O during sync and master timeout from the perspective of the slave, and slave timeout from the perspective of the master.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "repl-timeout", + * ParameterValue: "60", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The amount of memory reserved for non-cache memory usage, in bytes. You may want to increase this parameter for nodes with read replicas, AOF enabled, etc, to reduce swap usage.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "reserved-memory", + * ParameterValue: "0", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The limit in the size of the set in order for the dataset to be compressed.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "set-max-intset-entries", + * ParameterValue: "512", + * Source: "system" + * }, + * { + * AllowedValues: "yes,no", + * ChangeType: "immediate", + * DataType: "string", + * Description: "Configures if chaining of slaves is allowed", + * IsModifiable: false, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "slave-allow-chaining", + * ParameterValue: "no", + * Source: "system" + * }, + * { + * AllowedValues: "-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The execution time, in microseconds, to exceed in order for the command to get logged. Note that a negative number disables the slow log, while a value of zero forces the logging of every command.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "slowlog-log-slower-than", + * ParameterValue: "10000", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The length of the slow log. There is no limit to this length. Just be aware that it will consume memory. You can reclaim memory used by the slow log with SLOWLOG RESET.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "slowlog-max-len", + * ParameterValue: "128", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "If non-zero, send ACKs every given number of seconds.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "tcp-keepalive", + * ParameterValue: "0", + * Source: "system" + * }, + * { + * AllowedValues: "0,20-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Close connection if client is idle for a given number of seconds, or never if 0.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "timeout", + * ParameterValue: "0", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The maximum number of sorted set entries in order for the dataset to be compressed.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "zset-max-ziplist-entries", + * ParameterValue: "128", + * Source: "system" + * }, + * { + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The threshold of biggest sorted set entries in order for the dataset to be compressed.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "zset-max-ziplist-value", + * ParameterValue: "64", + * Source: "system" * } * ] * } * *\/ - * // example id: describecacheparameters-1475013576900 * ``` * + * @public */ export class DescribeCacheParametersCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DescribeCacheSecurityGroupsCommand.ts b/clients/client-elasticache/src/commands/DescribeCacheSecurityGroupsCommand.ts index ae7da992c01fb..ca5f1ad95db87 100644 --- a/clients/client-elasticache/src/commands/DescribeCacheSecurityGroupsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeCacheSecurityGroupsCommand.ts @@ -84,18 +84,21 @@ export interface DescribeCacheSecurityGroupsCommandOutput extends CacheSecurityG * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DescribeCacheSecurityGroups * ```javascript * // Returns a list of cache security group descriptions. If a cache security group name is specified, the list contains only the description of that group. * const input = { - * "CacheSecurityGroupName": "my-sec-group" + * CacheSecurityGroupName: "my-sec-group" * }; * const command = new DescribeCacheSecurityGroupsCommand(input); - * await client.send(command); - * // example id: describecachesecuritygroups-1483047200801 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DescribeCacheSecurityGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DescribeCacheSubnetGroupsCommand.ts b/clients/client-elasticache/src/commands/DescribeCacheSubnetGroupsCommand.ts index c946cd77fbc0e..358cc7207b6d6 100644 --- a/clients/client-elasticache/src/commands/DescribeCacheSubnetGroupsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeCacheSubnetGroupsCommand.ts @@ -89,56 +89,56 @@ export interface DescribeCacheSubnetGroupsCommandOutput extends CacheSubnetGroup * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DescribeCacheSubnetGroups * ```javascript * // Describes up to 25 cache subnet groups. * const input = { - * "MaxRecords": 25 + * MaxRecords: 25 * }; * const command = new DescribeCacheSubnetGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CacheSubnetGroups": [ + * CacheSubnetGroups: [ * { - * "CacheSubnetGroupDescription": "Default CacheSubnetGroup", - * "CacheSubnetGroupName": "default", - * "Subnets": [ + * CacheSubnetGroupDescription: "Default CacheSubnetGroup", + * CacheSubnetGroupName: "default", + * Subnets: [ * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1a" + * SubnetAvailabilityZone: { + * Name: "us-east-1a" * }, - * "SubnetIdentifier": "subnet-1a2b3c4d" + * SubnetIdentifier: "subnet-1a2b3c4d" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1c" + * SubnetAvailabilityZone: { + * Name: "us-east-1c" * }, - * "SubnetIdentifier": "subnet-a1b2c3d4" + * SubnetIdentifier: "subnet-a1b2c3d4" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1e" + * SubnetAvailabilityZone: { + * Name: "us-east-1e" * }, - * "SubnetIdentifier": "subnet-abcd1234" + * SubnetIdentifier: "subnet-abcd1234" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1b" + * SubnetAvailabilityZone: { + * Name: "us-east-1b" * }, - * "SubnetIdentifier": "subnet-1234abcd" + * SubnetIdentifier: "subnet-1234abcd" * } * ], - * "VpcId": "vpc-91280df6" + * VpcId: "vpc-91280df6" * } * ], - * "Marker": "" + * Marker: "" * } * *\/ - * // example id: describecachesubnetgroups-1482439214064 * ``` * + * @public */ export class DescribeCacheSubnetGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DescribeEngineDefaultParametersCommand.ts b/clients/client-elasticache/src/commands/DescribeEngineDefaultParametersCommand.ts index c3c0aeee40f79..77630b8208309 100644 --- a/clients/client-elasticache/src/commands/DescribeEngineDefaultParametersCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeEngineDefaultParametersCommand.ts @@ -103,621 +103,621 @@ export interface DescribeEngineDefaultParametersCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DescribeEngineDefaultParameters * ```javascript * // Returns the default engine and system parameter information for the specified cache engine. * const input = { - * "CacheParameterGroupFamily": "redis2.8", - * "MaxRecords": 25 + * CacheParameterGroupFamily: "redis2.8", + * MaxRecords: 25 * }; * const command = new DescribeEngineDefaultParametersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EngineDefaults": { - * "CacheNodeTypeSpecificParameters": [ + * EngineDefaults: { + * CacheNodeTypeSpecificParameters: [ * { - * "AllowedValues": "0-", - * "CacheNodeTypeSpecificValues": [ + * AllowedValues: "0-", + * CacheNodeTypeSpecificValues: [ * { - * "CacheNodeType": "cache.c1.xlarge", - * "Value": "650117120" + * CacheNodeType: "cache.c1.xlarge", + * Value: "650117120" * }, * { - * "CacheNodeType": "cache.m1.large", - * "Value": "702545920" + * CacheNodeType: "cache.m1.large", + * Value: "702545920" * }, * { - * "CacheNodeType": "cache.m1.medium", - * "Value": "309329920" + * CacheNodeType: "cache.m1.medium", + * Value: "309329920" * }, * { - * "CacheNodeType": "cache.m1.small", - * "Value": "94371840" + * CacheNodeType: "cache.m1.small", + * Value: "94371840" * }, * { - * "CacheNodeType": "cache.m1.xlarge", - * "Value": "1488977920" + * CacheNodeType: "cache.m1.xlarge", + * Value: "1488977920" * }, * { - * "CacheNodeType": "cache.m2.2xlarge", - * "Value": "3502243840" + * CacheNodeType: "cache.m2.2xlarge", + * Value: "3502243840" * }, * { - * "CacheNodeType": "cache.m2.4xlarge", - * "Value": "7088373760" + * CacheNodeType: "cache.m2.4xlarge", + * Value: "7088373760" * }, * { - * "CacheNodeType": "cache.m2.xlarge", - * "Value": "1709178880" + * CacheNodeType: "cache.m2.xlarge", + * Value: "1709178880" * }, * { - * "CacheNodeType": "cache.m3.2xlarge", - * "Value": "2998927360" + * CacheNodeType: "cache.m3.2xlarge", + * Value: "2998927360" * }, * { - * "CacheNodeType": "cache.m3.large", - * "Value": "650117120" + * CacheNodeType: "cache.m3.large", + * Value: "650117120" * }, * { - * "CacheNodeType": "cache.m3.medium", - * "Value": "309329920" + * CacheNodeType: "cache.m3.medium", + * Value: "309329920" * }, * { - * "CacheNodeType": "cache.m3.xlarge", - * "Value": "1426063360" + * CacheNodeType: "cache.m3.xlarge", + * Value: "1426063360" * }, * { - * "CacheNodeType": "cache.m4.10xlarge", - * "Value": "16604761424" + * CacheNodeType: "cache.m4.10xlarge", + * Value: "16604761424" * }, * { - * "CacheNodeType": "cache.m4.2xlarge", - * "Value": "3188912636" + * CacheNodeType: "cache.m4.2xlarge", + * Value: "3188912636" * }, * { - * "CacheNodeType": "cache.m4.4xlarge", - * "Value": "6525729063" + * CacheNodeType: "cache.m4.4xlarge", + * Value: "6525729063" * }, * { - * "CacheNodeType": "cache.m4.large", - * "Value": "689259315" + * CacheNodeType: "cache.m4.large", + * Value: "689259315" * }, * { - * "CacheNodeType": "cache.m4.xlarge", - * "Value": "1532850176" + * CacheNodeType: "cache.m4.xlarge", + * Value: "1532850176" * }, * { - * "CacheNodeType": "cache.r3.2xlarge", - * "Value": "6081740800" + * CacheNodeType: "cache.r3.2xlarge", + * Value: "6081740800" * }, * { - * "CacheNodeType": "cache.r3.4xlarge", - * "Value": "12268339200" + * CacheNodeType: "cache.r3.4xlarge", + * Value: "12268339200" * }, * { - * "CacheNodeType": "cache.r3.8xlarge", - * "Value": "24536678400" + * CacheNodeType: "cache.r3.8xlarge", + * Value: "24536678400" * }, * { - * "CacheNodeType": "cache.r3.large", - * "Value": "1468006400" + * CacheNodeType: "cache.r3.large", + * Value: "1468006400" * }, * { - * "CacheNodeType": "cache.r3.xlarge", - * "Value": "3040870400" + * CacheNodeType: "cache.r3.xlarge", + * Value: "3040870400" * }, * { - * "CacheNodeType": "cache.t1.micro", - * "Value": "14260633" + * CacheNodeType: "cache.t1.micro", + * Value: "14260633" * }, * { - * "CacheNodeType": "cache.t2.medium", - * "Value": "346134937" + * CacheNodeType: "cache.t2.medium", + * Value: "346134937" * }, * { - * "CacheNodeType": "cache.t2.micro", - * "Value": "58195968" + * CacheNodeType: "cache.t2.micro", + * Value: "58195968" * }, * { - * "CacheNodeType": "cache.t2.small", - * "Value": "166513868" + * CacheNodeType: "cache.t2.small", + * Value: "166513868" * } * ], - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Slave client output buffer hard limit in bytes.", - * "IsModifiable": false, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-slave-hard-limit", - * "Source": "system" + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Slave client output buffer hard limit in bytes.", + * IsModifiable: false, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-slave-hard-limit", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "CacheNodeTypeSpecificValues": [ + * AllowedValues: "0-", + * CacheNodeTypeSpecificValues: [ * { - * "CacheNodeType": "cache.c1.xlarge", - * "Value": "650117120" + * CacheNodeType: "cache.c1.xlarge", + * Value: "650117120" * }, * { - * "CacheNodeType": "cache.m1.large", - * "Value": "702545920" + * CacheNodeType: "cache.m1.large", + * Value: "702545920" * }, * { - * "CacheNodeType": "cache.m1.medium", - * "Value": "309329920" + * CacheNodeType: "cache.m1.medium", + * Value: "309329920" * }, * { - * "CacheNodeType": "cache.m1.small", - * "Value": "94371840" + * CacheNodeType: "cache.m1.small", + * Value: "94371840" * }, * { - * "CacheNodeType": "cache.m1.xlarge", - * "Value": "1488977920" + * CacheNodeType: "cache.m1.xlarge", + * Value: "1488977920" * }, * { - * "CacheNodeType": "cache.m2.2xlarge", - * "Value": "3502243840" + * CacheNodeType: "cache.m2.2xlarge", + * Value: "3502243840" * }, * { - * "CacheNodeType": "cache.m2.4xlarge", - * "Value": "7088373760" + * CacheNodeType: "cache.m2.4xlarge", + * Value: "7088373760" * }, * { - * "CacheNodeType": "cache.m2.xlarge", - * "Value": "1709178880" + * CacheNodeType: "cache.m2.xlarge", + * Value: "1709178880" * }, * { - * "CacheNodeType": "cache.m3.2xlarge", - * "Value": "2998927360" + * CacheNodeType: "cache.m3.2xlarge", + * Value: "2998927360" * }, * { - * "CacheNodeType": "cache.m3.large", - * "Value": "650117120" + * CacheNodeType: "cache.m3.large", + * Value: "650117120" * }, * { - * "CacheNodeType": "cache.m3.medium", - * "Value": "309329920" + * CacheNodeType: "cache.m3.medium", + * Value: "309329920" * }, * { - * "CacheNodeType": "cache.m3.xlarge", - * "Value": "1426063360" + * CacheNodeType: "cache.m3.xlarge", + * Value: "1426063360" * }, * { - * "CacheNodeType": "cache.m4.10xlarge", - * "Value": "16604761424" + * CacheNodeType: "cache.m4.10xlarge", + * Value: "16604761424" * }, * { - * "CacheNodeType": "cache.m4.2xlarge", - * "Value": "3188912636" + * CacheNodeType: "cache.m4.2xlarge", + * Value: "3188912636" * }, * { - * "CacheNodeType": "cache.m4.4xlarge", - * "Value": "6525729063" + * CacheNodeType: "cache.m4.4xlarge", + * Value: "6525729063" * }, * { - * "CacheNodeType": "cache.m4.large", - * "Value": "689259315" + * CacheNodeType: "cache.m4.large", + * Value: "689259315" * }, * { - * "CacheNodeType": "cache.m4.xlarge", - * "Value": "1532850176" + * CacheNodeType: "cache.m4.xlarge", + * Value: "1532850176" * }, * { - * "CacheNodeType": "cache.r3.2xlarge", - * "Value": "6081740800" + * CacheNodeType: "cache.r3.2xlarge", + * Value: "6081740800" * }, * { - * "CacheNodeType": "cache.r3.4xlarge", - * "Value": "12268339200" + * CacheNodeType: "cache.r3.4xlarge", + * Value: "12268339200" * }, * { - * "CacheNodeType": "cache.r3.8xlarge", - * "Value": "24536678400" + * CacheNodeType: "cache.r3.8xlarge", + * Value: "24536678400" * }, * { - * "CacheNodeType": "cache.r3.large", - * "Value": "1468006400" + * CacheNodeType: "cache.r3.large", + * Value: "1468006400" * }, * { - * "CacheNodeType": "cache.r3.xlarge", - * "Value": "3040870400" + * CacheNodeType: "cache.r3.xlarge", + * Value: "3040870400" * }, * { - * "CacheNodeType": "cache.t1.micro", - * "Value": "14260633" + * CacheNodeType: "cache.t1.micro", + * Value: "14260633" * }, * { - * "CacheNodeType": "cache.t2.medium", - * "Value": "346134937" + * CacheNodeType: "cache.t2.medium", + * Value: "346134937" * }, * { - * "CacheNodeType": "cache.t2.micro", - * "Value": "58195968" + * CacheNodeType: "cache.t2.micro", + * Value: "58195968" * }, * { - * "CacheNodeType": "cache.t2.small", - * "Value": "166513868" + * CacheNodeType: "cache.t2.small", + * Value: "166513868" * } * ], - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Slave client output buffer soft limit in bytes.", - * "IsModifiable": false, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-slave-soft-limit", - * "Source": "system" + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Slave client output buffer soft limit in bytes.", + * IsModifiable: false, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-slave-soft-limit", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "CacheNodeTypeSpecificValues": [ + * AllowedValues: "0-", + * CacheNodeTypeSpecificValues: [ * { - * "CacheNodeType": "cache.c1.xlarge", - * "Value": "6501171200" + * CacheNodeType: "cache.c1.xlarge", + * Value: "6501171200" * }, * { - * "CacheNodeType": "cache.m1.large", - * "Value": "7025459200" + * CacheNodeType: "cache.m1.large", + * Value: "7025459200" * }, * { - * "CacheNodeType": "cache.m1.medium", - * "Value": "3093299200" + * CacheNodeType: "cache.m1.medium", + * Value: "3093299200" * }, * { - * "CacheNodeType": "cache.m1.small", - * "Value": "943718400" + * CacheNodeType: "cache.m1.small", + * Value: "943718400" * }, * { - * "CacheNodeType": "cache.m1.xlarge", - * "Value": "14889779200" + * CacheNodeType: "cache.m1.xlarge", + * Value: "14889779200" * }, * { - * "CacheNodeType": "cache.m2.2xlarge", - * "Value": "35022438400" + * CacheNodeType: "cache.m2.2xlarge", + * Value: "35022438400" * }, * { - * "CacheNodeType": "cache.m2.4xlarge", - * "Value": "70883737600" + * CacheNodeType: "cache.m2.4xlarge", + * Value: "70883737600" * }, * { - * "CacheNodeType": "cache.m2.xlarge", - * "Value": "17091788800" + * CacheNodeType: "cache.m2.xlarge", + * Value: "17091788800" * }, * { - * "CacheNodeType": "cache.m3.2xlarge", - * "Value": "29989273600" + * CacheNodeType: "cache.m3.2xlarge", + * Value: "29989273600" * }, * { - * "CacheNodeType": "cache.m3.large", - * "Value": "6501171200" + * CacheNodeType: "cache.m3.large", + * Value: "6501171200" * }, * { - * "CacheNodeType": "cache.m3.medium", - * "Value": "2988441600" + * CacheNodeType: "cache.m3.medium", + * Value: "2988441600" * }, * { - * "CacheNodeType": "cache.m3.xlarge", - * "Value": "14260633600" + * CacheNodeType: "cache.m3.xlarge", + * Value: "14260633600" * }, * { - * "CacheNodeType": "cache.m4.10xlarge", - * "Value": "166047614239" + * CacheNodeType: "cache.m4.10xlarge", + * Value: "166047614239" * }, * { - * "CacheNodeType": "cache.m4.2xlarge", - * "Value": "31889126359" + * CacheNodeType: "cache.m4.2xlarge", + * Value: "31889126359" * }, * { - * "CacheNodeType": "cache.m4.4xlarge", - * "Value": "65257290629" + * CacheNodeType: "cache.m4.4xlarge", + * Value: "65257290629" * }, * { - * "CacheNodeType": "cache.m4.large", - * "Value": "6892593152" + * CacheNodeType: "cache.m4.large", + * Value: "6892593152" * }, * { - * "CacheNodeType": "cache.m4.xlarge", - * "Value": "15328501760" + * CacheNodeType: "cache.m4.xlarge", + * Value: "15328501760" * }, * { - * "CacheNodeType": "cache.r3.2xlarge", - * "Value": "62495129600" + * CacheNodeType: "cache.r3.2xlarge", + * Value: "62495129600" * }, * { - * "CacheNodeType": "cache.r3.4xlarge", - * "Value": "126458265600" + * CacheNodeType: "cache.r3.4xlarge", + * Value: "126458265600" * }, * { - * "CacheNodeType": "cache.r3.8xlarge", - * "Value": "254384537600" + * CacheNodeType: "cache.r3.8xlarge", + * Value: "254384537600" * }, * { - * "CacheNodeType": "cache.r3.large", - * "Value": "14470348800" + * CacheNodeType: "cache.r3.large", + * Value: "14470348800" * }, * { - * "CacheNodeType": "cache.r3.xlarge", - * "Value": "30513561600" + * CacheNodeType: "cache.r3.xlarge", + * Value: "30513561600" * }, * { - * "CacheNodeType": "cache.t1.micro", - * "Value": "142606336" + * CacheNodeType: "cache.t1.micro", + * Value: "142606336" * }, * { - * "CacheNodeType": "cache.t2.medium", - * "Value": "3461349376" + * CacheNodeType: "cache.t2.medium", + * Value: "3461349376" * }, * { - * "CacheNodeType": "cache.t2.micro", - * "Value": "581959680" + * CacheNodeType: "cache.t2.micro", + * Value: "581959680" * }, * { - * "CacheNodeType": "cache.t2.small", - * "Value": "1665138688" + * CacheNodeType: "cache.t2.small", + * Value: "1665138688" * } * ], - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The maximum configurable amount of memory to use to store items, in bytes.", - * "IsModifiable": false, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "maxmemory", - * "Source": "system" + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The maximum configurable amount of memory to use to store items, in bytes.", + * IsModifiable: false, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "maxmemory", + * Source: "system" * } * ], - * "CacheParameterGroupFamily": "redis2.8", - * "Marker": "bWluLXNsYXZlcy10by13cml0ZQ==", - * "Parameters": [ + * CacheParameterGroupFamily: "redis2.8", + * Marker: "bWluLXNsYXZlcy10by13cml0ZQ==", + * Parameters: [ * { - * "AllowedValues": "yes,no", - * "ChangeType": "requires-reboot", - * "DataType": "string", - * "Description": "Apply rehashing or not.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "activerehashing", - * "ParameterValue": "yes", - * "Source": "system" + * AllowedValues: "yes,no", + * ChangeType: "requires-reboot", + * DataType: "string", + * Description: "Apply rehashing or not.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "activerehashing", + * ParameterValue: "yes", + * Source: "system" * }, * { - * "AllowedValues": "always,everysec,no", - * "ChangeType": "immediate", - * "DataType": "string", - * "Description": "fsync policy for AOF persistence", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "appendfsync", - * "ParameterValue": "everysec", - * "Source": "system" + * AllowedValues: "always,everysec,no", + * ChangeType: "immediate", + * DataType: "string", + * Description: "fsync policy for AOF persistence", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "appendfsync", + * ParameterValue: "everysec", + * Source: "system" * }, * { - * "AllowedValues": "yes,no", - * "ChangeType": "immediate", - * "DataType": "string", - * "Description": "Enable Redis persistence.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "appendonly", - * "ParameterValue": "no", - * "Source": "system" + * AllowedValues: "yes,no", + * ChangeType: "immediate", + * DataType: "string", + * Description: "Enable Redis persistence.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "appendonly", + * ParameterValue: "no", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Normal client output buffer hard limit in bytes.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-normal-hard-limit", - * "ParameterValue": "0", - * "Source": "system" + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Normal client output buffer hard limit in bytes.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-normal-hard-limit", + * ParameterValue: "0", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Normal client output buffer soft limit in bytes.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-normal-soft-limit", - * "ParameterValue": "0", - * "Source": "system" + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Normal client output buffer soft limit in bytes.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-normal-soft-limit", + * ParameterValue: "0", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Normal client output buffer soft limit in seconds.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-normal-soft-seconds", - * "ParameterValue": "0", - * "Source": "system" + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Normal client output buffer soft limit in seconds.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-normal-soft-seconds", + * ParameterValue: "0", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Pubsub client output buffer hard limit in bytes.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-pubsub-hard-limit", - * "ParameterValue": "33554432", - * "Source": "system" + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Pubsub client output buffer hard limit in bytes.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-pubsub-hard-limit", + * ParameterValue: "33554432", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Pubsub client output buffer soft limit in bytes.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-pubsub-soft-limit", - * "ParameterValue": "8388608", - * "Source": "system" + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Pubsub client output buffer soft limit in bytes.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-pubsub-soft-limit", + * ParameterValue: "8388608", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Pubsub client output buffer soft limit in seconds.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-pubsub-soft-seconds", - * "ParameterValue": "60", - * "Source": "system" + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Pubsub client output buffer soft limit in seconds.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-pubsub-soft-seconds", + * ParameterValue: "60", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Slave client output buffer soft limit in seconds.", - * "IsModifiable": false, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "client-output-buffer-limit-slave-soft-seconds", - * "ParameterValue": "60", - * "Source": "system" + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Slave client output buffer soft limit in seconds.", + * IsModifiable: false, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "client-output-buffer-limit-slave-soft-seconds", + * ParameterValue: "60", + * Source: "system" * }, * { - * "AllowedValues": "yes,no", - * "ChangeType": "immediate", - * "DataType": "string", - * "Description": "If enabled, clients who attempt to write to a read-only slave will be disconnected. Applicable to 2.8.23 and higher.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.23", - * "ParameterName": "close-on-slave-write", - * "ParameterValue": "yes", - * "Source": "system" + * AllowedValues: "yes,no", + * ChangeType: "immediate", + * DataType: "string", + * Description: "If enabled, clients who attempt to write to a read-only slave will be disconnected. Applicable to 2.8.23 and higher.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.23", + * ParameterName: "close-on-slave-write", + * ParameterValue: "yes", + * Source: "system" * }, * { - * "AllowedValues": "1-1200000", - * "ChangeType": "requires-reboot", - * "DataType": "integer", - * "Description": "Set the number of databases.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "databases", - * "ParameterValue": "16", - * "Source": "system" + * AllowedValues: "1-1200000", + * ChangeType: "requires-reboot", + * DataType: "integer", + * Description: "Set the number of databases.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "databases", + * ParameterValue: "16", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The maximum number of hash entries in order for the dataset to be compressed.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "hash-max-ziplist-entries", - * "ParameterValue": "512", - * "Source": "system" + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The maximum number of hash entries in order for the dataset to be compressed.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "hash-max-ziplist-entries", + * ParameterValue: "512", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The threshold of biggest hash entries in order for the dataset to be compressed.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "hash-max-ziplist-value", - * "ParameterValue": "64", - * "Source": "system" + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The threshold of biggest hash entries in order for the dataset to be compressed.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "hash-max-ziplist-value", + * ParameterValue: "64", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The maximum number of list entries in order for the dataset to be compressed.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "list-max-ziplist-entries", - * "ParameterValue": "512", - * "Source": "system" + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The maximum number of list entries in order for the dataset to be compressed.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "list-max-ziplist-entries", + * ParameterValue: "512", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "The threshold of biggest list entries in order for the dataset to be compressed.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "list-max-ziplist-value", - * "ParameterValue": "64", - * "Source": "system" + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "The threshold of biggest list entries in order for the dataset to be compressed.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "list-max-ziplist-value", + * ParameterValue: "64", + * Source: "system" * }, * { - * "AllowedValues": "5000", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Max execution time of a Lua script in milliseconds. 0 for unlimited execution without warnings.", - * "IsModifiable": false, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "lua-time-limit", - * "ParameterValue": "5000", - * "Source": "system" + * AllowedValues: "5000", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Max execution time of a Lua script in milliseconds. 0 for unlimited execution without warnings.", + * IsModifiable: false, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "lua-time-limit", + * ParameterValue: "5000", + * Source: "system" * }, * { - * "AllowedValues": "1-65000", - * "ChangeType": "requires-reboot", - * "DataType": "integer", - * "Description": "The maximum number of Redis clients.", - * "IsModifiable": false, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "maxclients", - * "ParameterValue": "65000", - * "Source": "system" + * AllowedValues: "1-65000", + * ChangeType: "requires-reboot", + * DataType: "integer", + * Description: "The maximum number of Redis clients.", + * IsModifiable: false, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "maxclients", + * ParameterValue: "65000", + * Source: "system" * }, * { - * "AllowedValues": "volatile-lru,allkeys-lru,volatile-random,allkeys-random,volatile-ttl,noeviction", - * "ChangeType": "immediate", - * "DataType": "string", - * "Description": "Max memory policy.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "maxmemory-policy", - * "ParameterValue": "volatile-lru", - * "Source": "system" + * AllowedValues: "volatile-lru,allkeys-lru,volatile-random,allkeys-random,volatile-ttl,noeviction", + * ChangeType: "immediate", + * DataType: "string", + * Description: "Max memory policy.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "maxmemory-policy", + * ParameterValue: "volatile-lru", + * Source: "system" * }, * { - * "AllowedValues": "1-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Max memory samples.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "maxmemory-samples", - * "ParameterValue": "3", - * "Source": "system" + * AllowedValues: "1-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Max memory samples.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "maxmemory-samples", + * ParameterValue: "3", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Maximum number of seconds within which the master must receive a ping from a slave to take writes. Use this parameter together with min-slaves-to-write to regulate when the master stops accepting writes. Setting this value to 0 means the master always takes writes.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "min-slaves-max-lag", - * "ParameterValue": "10", - * "Source": "system" + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Maximum number of seconds within which the master must receive a ping from a slave to take writes. Use this parameter together with min-slaves-to-write to regulate when the master stops accepting writes. Setting this value to 0 means the master always takes writes.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "min-slaves-max-lag", + * ParameterValue: "10", + * Source: "system" * }, * { - * "AllowedValues": "0-", - * "ChangeType": "immediate", - * "DataType": "integer", - * "Description": "Number of slaves that must be connected in order for master to take writes. Use this parameter together with min-slaves-max-lag to regulate when the master stops accepting writes. Setting this to 0 means the master always takes writes.", - * "IsModifiable": true, - * "MinimumEngineVersion": "2.8.6", - * "ParameterName": "min-slaves-to-write", - * "ParameterValue": "0", - * "Source": "system" + * AllowedValues: "0-", + * ChangeType: "immediate", + * DataType: "integer", + * Description: "Number of slaves that must be connected in order for master to take writes. Use this parameter together with min-slaves-max-lag to regulate when the master stops accepting writes. Setting this to 0 means the master always takes writes.", + * IsModifiable: true, + * MinimumEngineVersion: "2.8.6", + * ParameterName: "min-slaves-to-write", + * ParameterValue: "0", + * Source: "system" * } * ] * } * } * *\/ - * // example id: describeenginedefaultparameters-1481738057686 * ``` * + * @public */ export class DescribeEngineDefaultParametersCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DescribeEventsCommand.ts b/clients/client-elasticache/src/commands/DescribeEventsCommand.ts index 4b9790f6e10ac..be9f306423d88 100644 --- a/clients/client-elasticache/src/commands/DescribeEventsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeEventsCommand.ts @@ -79,56 +79,109 @@ export interface DescribeEventsCommandOutput extends EventsMessage, __MetadataBe * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DescribeEvents * ```javascript * // Describes all the cache-cluster events for the past 120 minutes. * const input = { - * "Duration": 360, - * "SourceType": "cache-cluster" + * Duration: 360, + * SourceType: "cache-cluster" * }; * const command = new DescribeEventsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Events": [ + * Events: [ * { - * "Date": "2016-12-22T16:27:56.088Z", - * "Message": "Added cache node 0001 in availability zone us-east-1e", - * "SourceIdentifier": "redis-cluster", - * "SourceType": "cache-cluster" + * Date: "2016-12-22T16:27:56.088Z", + * Message: "Added cache node 0001 in availability zone us-east-1e", + * SourceIdentifier: "redis-cluster", + * SourceType: "cache-cluster" * }, * { - * "Date": "2016-12-22T16:27:56.078Z", - * "Message": "Cache cluster created", - * "SourceIdentifier": "redis-cluster", - * "SourceType": "cache-cluster" + * Date: "2016-12-22T16:27:56.078Z", + * Message: "Cache cluster created", + * SourceIdentifier: "redis-cluster", + * SourceType: "cache-cluster" * }, * { - * "Date": "2016-12-22T16:05:17.326Z", - * "Message": "Added cache node 0002 in availability zone us-east-1c", - * "SourceIdentifier": "my-memcached2", - * "SourceType": "cache-cluster" + * Date: "2016-12-22T16:05:17.326Z", + * Message: "Added cache node 0002 in availability zone us-east-1c", + * SourceIdentifier: "my-memcached2", + * SourceType: "cache-cluster" * }, * { - * "Date": "2016-12-22T16:05:17.323Z", - * "Message": "Added cache node 0001 in availability zone us-east-1e", - * "SourceIdentifier": "my-memcached2", - * "SourceType": "cache-cluster" + * Date: "2016-12-22T16:05:17.323Z", + * Message: "Added cache node 0001 in availability zone us-east-1e", + * SourceIdentifier: "my-memcached2", + * SourceType: "cache-cluster" * }, * { - * "Date": "2016-12-22T16:05:17.314Z", - * "Message": "Cache cluster created", - * "SourceIdentifier": "my-memcached2", - * "SourceType": "cache-cluster" + * Date: "2016-12-22T16:05:17.314Z", + * Message: "Cache cluster created", + * SourceIdentifier: "my-memcached2", + * SourceType: "cache-cluster" * } * ], - * "Marker": "" + * Marker: "" * } * *\/ - * // example id: describeevents-1481843894757 * ``` * + * @example DescribeEvents + * ```javascript + * // Describes all the replication-group events from 3:00P to 5:00P on November 11, 2016. + * const input = { + * StartTime: "2016-12-22T15:00:00.000Z" + * }; + * const command = new DescribeEventsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * Events: [ + * { + * Date: "2016-12-22T21:35:46.674Z", + * Message: "Snapshot succeeded for snapshot with ID 'cr-bkup' of replication group with ID 'clustered-redis'", + * SourceIdentifier: "clustered-redis-0001-001", + * SourceType: "cache-cluster" + * }, + * { + * Date: "2016-12-22T16:27:56.088Z", + * Message: "Added cache node 0001 in availability zone us-east-1e", + * SourceIdentifier: "redis-cluster", + * SourceType: "cache-cluster" + * }, + * { + * Date: "2016-12-22T16:27:56.078Z", + * Message: "Cache cluster created", + * SourceIdentifier: "redis-cluster", + * SourceType: "cache-cluster" + * }, + * { + * Date: "2016-12-22T16:05:17.326Z", + * Message: "Added cache node 0002 in availability zone us-east-1c", + * SourceIdentifier: "my-memcached2", + * SourceType: "cache-cluster" + * }, + * { + * Date: "2016-12-22T16:05:17.323Z", + * Message: "Added cache node 0001 in availability zone us-east-1e", + * SourceIdentifier: "my-memcached2", + * SourceType: "cache-cluster" + * }, + * { + * Date: "2016-12-22T16:05:17.314Z", + * Message: "Cache cluster created", + * SourceIdentifier: "my-memcached2", + * SourceType: "cache-cluster" + * } + * ], + * Marker: "" + * } + * *\/ + * ``` + * + * @public */ export class DescribeEventsCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DescribeGlobalReplicationGroupsCommand.ts b/clients/client-elasticache/src/commands/DescribeGlobalReplicationGroupsCommand.ts index 16c8caffb53bd..fa470caa61444 100644 --- a/clients/client-elasticache/src/commands/DescribeGlobalReplicationGroupsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeGlobalReplicationGroupsCommand.ts @@ -103,6 +103,7 @@ export interface DescribeGlobalReplicationGroupsCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DescribeGlobalReplicationGroupsCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DescribeReplicationGroupsCommand.ts b/clients/client-elasticache/src/commands/DescribeReplicationGroupsCommand.ts index 9ba131b54d462..6f1dedc898ebb 100644 --- a/clients/client-elasticache/src/commands/DescribeReplicationGroupsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeReplicationGroupsCommand.ts @@ -194,70 +194,70 @@ export interface DescribeReplicationGroupsCommandOutput extends ReplicationGroup * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DescribeReplicationGroups * ```javascript * // Returns information about the replication group myreplgroup. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeReplicationGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "", - * "ReplicationGroups": [ + * Marker: "", + * ReplicationGroups: [ * { - * "AutomaticFailover": "enabled", - * "Description": "Test cluster", - * "MemberClusters": [ + * AutomaticFailover: "enabled", + * Description: "Test cluster", + * MemberClusters: [ * "clustered-redis-0001-001", * "clustered-redis-0001-002", * "clustered-redis-0002-001", * "clustered-redis-0002-002" * ], - * "NodeGroups": [ + * NodeGroups: [ * { - * "NodeGroupId": "0001", - * "NodeGroupMembers": [ + * NodeGroupId: "0001", + * NodeGroupMembers: [ * { - * "CacheClusterId": "clustered-redis-0001-001", - * "CacheNodeId": "0001", - * "PreferredAvailabilityZone": "us-east-1e" + * CacheClusterId: "clustered-redis-0001-001", + * CacheNodeId: "0001", + * PreferredAvailabilityZone: "us-east-1e" * }, * { - * "CacheClusterId": "clustered-redis-0001-002", - * "CacheNodeId": "0001", - * "PreferredAvailabilityZone": "us-east-1c" + * CacheClusterId: "clustered-redis-0001-002", + * CacheNodeId: "0001", + * PreferredAvailabilityZone: "us-east-1c" * } * ], - * "Status": "available" + * Status: "available" * }, * { - * "NodeGroupId": "0002", - * "NodeGroupMembers": [ + * NodeGroupId: "0002", + * NodeGroupMembers: [ * { - * "CacheClusterId": "clustered-redis-0002-001", - * "CacheNodeId": "0001", - * "PreferredAvailabilityZone": "us-east-1c" + * CacheClusterId: "clustered-redis-0002-001", + * CacheNodeId: "0001", + * PreferredAvailabilityZone: "us-east-1c" * }, * { - * "CacheClusterId": "clustered-redis-0002-002", - * "CacheNodeId": "0001", - * "PreferredAvailabilityZone": "us-east-1b" + * CacheClusterId: "clustered-redis-0002-002", + * CacheNodeId: "0001", + * PreferredAvailabilityZone: "us-east-1b" * } * ], - * "Status": "available" + * Status: "available" * } * ], - * "PendingModifiedValues": {}, - * "ReplicationGroupId": "clustered-redis", - * "Status": "available" + * PendingModifiedValues: { /* empty *\/ }, + * ReplicationGroupId: "clustered-redis", + * Status: "available" * } * ] * } * *\/ - * // example id: describereplicationgroups-1481742639427 * ``` * + * @public */ export class DescribeReplicationGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DescribeReservedCacheNodesCommand.ts b/clients/client-elasticache/src/commands/DescribeReservedCacheNodesCommand.ts index 992229df57228..0079b21a564c4 100644 --- a/clients/client-elasticache/src/commands/DescribeReservedCacheNodesCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeReservedCacheNodesCommand.ts @@ -94,18 +94,21 @@ export interface DescribeReservedCacheNodesCommandOutput extends ReservedCacheNo * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DescribeReservedCacheNodes * ```javascript * // Returns information about reserved cache nodes for this account, or about a specified reserved cache node. If the account has no reserved cache nodes, the operation returns an empty list, as shown here. * const input = { - * "MaxRecords": 25 + * MaxRecords: 25 * }; * const command = new DescribeReservedCacheNodesCommand(input); - * await client.send(command); - * // example id: describereservedcachenodes-1481742348045 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DescribeReservedCacheNodesCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DescribeReservedCacheNodesOfferingsCommand.ts b/clients/client-elasticache/src/commands/DescribeReservedCacheNodesOfferingsCommand.ts index 73dd259a69b56..0e37c6ce3ae81 100644 --- a/clients/client-elasticache/src/commands/DescribeReservedCacheNodesOfferingsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeReservedCacheNodesOfferingsCommand.ts @@ -92,280 +92,322 @@ export interface DescribeReservedCacheNodesOfferingsCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * + * @example DescribeReseredCacheNodeOfferings + * ```javascript + * // Lists available reserved cache node offerings for cache.r3.large nodes with a 3 year commitment. + * const input = { + * CacheNodeType: "cache.r3.large", + * Duration: "3", + * MaxRecords: 25, + * OfferingType: "Light Utilization", + * ReservedCacheNodesOfferingId: "" + * }; + * const command = new DescribeReservedCacheNodesOfferingsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * Marker: "", + * ReservedCacheNodesOfferings: [] + * } + * *\/ + * ``` + * * @example DescribeReseredCacheNodeOfferings * ```javascript * // Lists available reserved cache node offerings. * const input = { - * "MaxRecords": 20 + * MaxRecords: 20 * }; * const command = new DescribeReservedCacheNodesOfferingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "1ef01f5b-433f-94ff-a530-61a56bfc8e7a", - * "ReservedCacheNodesOfferings": [ + * Marker: "1ef01f5b-433f-94ff-a530-61a56bfc8e7a", + * ReservedCacheNodesOfferings: [ * { - * "CacheNodeType": "cache.m1.small", - * "Duration": 94608000, - * "FixedPrice": 157, - * "OfferingType": "Medium Utilization", - * "ProductDescription": "memcached", - * "RecurringCharges": [], - * "ReservedCacheNodesOfferingId": "0167633d-37f6-4222-b872-b1f22eb79ba4", - * "UsagePrice": 0.017 + * CacheNodeType: "cache.m1.small", + * Duration: 94608000, + * FixedPrice: 157.0, + * OfferingType: "Medium Utilization", + * ProductDescription: "memcached", + * RecurringCharges: [], + * ReservedCacheNodesOfferingId: "0167633d-37f6-4222-b872-b1f22eb79ba4", + * UsagePrice: 0.017 * }, * { - * "CacheNodeType": "cache.m4.xlarge", - * "Duration": 94608000, - * "FixedPrice": 1248, - * "OfferingType": "Heavy Utilization", - * "ProductDescription": "redis", - * "RecurringCharges": [ + * CacheNodeType: "cache.m4.xlarge", + * Duration: 94608000, + * FixedPrice: 1248.0, + * OfferingType: "Heavy Utilization", + * ProductDescription: "redis", + * RecurringCharges: [ * { - * "RecurringChargeAmount": 0.077, - * "RecurringChargeFrequency": "Hourly" + * RecurringChargeAmount: 0.077, + * RecurringChargeFrequency: "Hourly" * } * ], - * "ReservedCacheNodesOfferingId": "02c04e13-baca-4e71-9ceb-620eed94827d", - * "UsagePrice": 0 + * ReservedCacheNodesOfferingId: "02c04e13-baca-4e71-9ceb-620eed94827d", + * UsagePrice: 0.0 * }, * { - * "CacheNodeType": "cache.m2.4xlarge", - * "Duration": 94608000, - * "FixedPrice": 2381, - * "OfferingType": "Medium Utilization", - * "ProductDescription": "memcached", - * "RecurringCharges": [], - * "ReservedCacheNodesOfferingId": "02e1755e-76e8-48e3-8d82-820a5726a458", - * "UsagePrice": 0.276 + * CacheNodeType: "cache.m2.4xlarge", + * Duration: 94608000, + * FixedPrice: 2381.0, + * OfferingType: "Medium Utilization", + * ProductDescription: "memcached", + * RecurringCharges: [], + * ReservedCacheNodesOfferingId: "02e1755e-76e8-48e3-8d82-820a5726a458", + * UsagePrice: 0.276 * }, * { - * "CacheNodeType": "cache.m1.small", - * "Duration": 94608000, - * "FixedPrice": 188, - * "OfferingType": "Heavy Utilization", - * "ProductDescription": "redis", - * "RecurringCharges": [ + * CacheNodeType: "cache.m1.small", + * Duration: 94608000, + * FixedPrice: 188.0, + * OfferingType: "Heavy Utilization", + * ProductDescription: "redis", + * RecurringCharges: [ * { - * "RecurringChargeAmount": 0.013, - * "RecurringChargeFrequency": "Hourly" + * RecurringChargeAmount: 0.013, + * RecurringChargeFrequency: "Hourly" * } * ], - * "ReservedCacheNodesOfferingId": "03315215-7b87-421a-a3dd-785021e4113f", - * "UsagePrice": 0 + * ReservedCacheNodesOfferingId: "03315215-7b87-421a-a3dd-785021e4113f", + * UsagePrice: 0.0 * }, * { - * "CacheNodeType": "cache.m4.10xlarge", - * "Duration": 31536000, - * "FixedPrice": 6158, - * "OfferingType": "Heavy Utilization", - * "ProductDescription": "redis", - * "RecurringCharges": [ + * CacheNodeType: "cache.m4.10xlarge", + * Duration: 31536000, + * FixedPrice: 6158.0, + * OfferingType: "Heavy Utilization", + * ProductDescription: "redis", + * RecurringCharges: [ * { - * "RecurringChargeAmount": 1.125, - * "RecurringChargeFrequency": "Hourly" + * RecurringChargeAmount: 1.125, + * RecurringChargeFrequency: "Hourly" * } * ], - * "ReservedCacheNodesOfferingId": "05ffbb44-2ace-4476-a2a5-8ec99f866fb3", - * "UsagePrice": 0 + * ReservedCacheNodesOfferingId: "05ffbb44-2ace-4476-a2a5-8ec99f866fb3", + * UsagePrice: 0.0 * }, * { - * "CacheNodeType": "cache.m1.small", - * "Duration": 31536000, - * "FixedPrice": 101, - * "OfferingType": "Medium Utilization", - * "ProductDescription": "redis", - * "RecurringCharges": [], - * "ReservedCacheNodesOfferingId": "065c71ae-4a4e-4f1e-bebf-37525f4c6cb2", - * "UsagePrice": 0.023 + * CacheNodeType: "cache.m1.small", + * Duration: 31536000, + * FixedPrice: 101.0, + * OfferingType: "Medium Utilization", + * ProductDescription: "redis", + * RecurringCharges: [], + * ReservedCacheNodesOfferingId: "065c71ae-4a4e-4f1e-bebf-37525f4c6cb2", + * UsagePrice: 0.023 * }, * { - * "CacheNodeType": "cache.m1.medium", - * "Duration": 94608000, - * "FixedPrice": 314, - * "OfferingType": "Medium Utilization", - * "ProductDescription": "memcached", - * "RecurringCharges": [], - * "ReservedCacheNodesOfferingId": "06774b12-7f5e-48c1-907a-f286c63f327d", - * "UsagePrice": 0.034 + * CacheNodeType: "cache.m1.medium", + * Duration: 94608000, + * FixedPrice: 314.0, + * OfferingType: "Medium Utilization", + * ProductDescription: "memcached", + * RecurringCharges: [], + * ReservedCacheNodesOfferingId: "06774b12-7f5e-48c1-907a-f286c63f327d", + * UsagePrice: 0.034 * }, * { - * "CacheNodeType": "cache.m2.xlarge", - * "Duration": 31536000, - * "FixedPrice": 163, - * "OfferingType": "Light Utilization", - * "ProductDescription": "memcached", - * "RecurringCharges": [], - * "ReservedCacheNodesOfferingId": "0924ac6b-847f-4761-ba6b-4290b2adf719", - * "UsagePrice": 0.137 + * CacheNodeType: "cache.m2.xlarge", + * Duration: 31536000, + * FixedPrice: 163.0, + * OfferingType: "Light Utilization", + * ProductDescription: "memcached", + * RecurringCharges: [], + * ReservedCacheNodesOfferingId: "0924ac6b-847f-4761-ba6b-4290b2adf719", + * UsagePrice: 0.137 * }, * { - * "CacheNodeType": "cache.m2.xlarge", - * "Duration": 94608000, - * "FixedPrice": 719, - * "OfferingType": "Heavy Utilization", - * "ProductDescription": "redis", - * "RecurringCharges": [ + * CacheNodeType: "cache.m2.xlarge", + * Duration: 94608000, + * FixedPrice: 719.0, + * OfferingType: "Heavy Utilization", + * ProductDescription: "redis", + * RecurringCharges: [ * { - * "RecurringChargeAmount": 0.049, - * "RecurringChargeFrequency": "Hourly" + * RecurringChargeAmount: 0.049, + * RecurringChargeFrequency: "Hourly" * } * ], - * "ReservedCacheNodesOfferingId": "09eeb126-69b6-4d3f-8f94-ca3510629f53", - * "UsagePrice": 0 + * ReservedCacheNodesOfferingId: "09eeb126-69b6-4d3f-8f94-ca3510629f53", + * UsagePrice: 0.0 * }, * { - * "CacheNodeType": "cache.r3.2xlarge", - * "Duration": 94608000, - * "FixedPrice": 4132, - * "OfferingType": "Heavy Utilization", - * "ProductDescription": "redis", - * "RecurringCharges": [ + * CacheNodeType: "cache.r3.2xlarge", + * Duration: 94608000, + * FixedPrice: 4132.0, + * OfferingType: "Heavy Utilization", + * ProductDescription: "redis", + * RecurringCharges: [ * { - * "RecurringChargeAmount": 0.182, - * "RecurringChargeFrequency": "Hourly" + * RecurringChargeAmount: 0.182, + * RecurringChargeFrequency: "Hourly" * } * ], - * "ReservedCacheNodesOfferingId": "0a516ad8-557f-4310-9dd0-2448c2ff4d62", - * "UsagePrice": 0 + * ReservedCacheNodesOfferingId: "0a516ad8-557f-4310-9dd0-2448c2ff4d62", + * UsagePrice: 0.0 * }, * { - * "CacheNodeType": "cache.c1.xlarge", - * "Duration": 94608000, - * "FixedPrice": 875, - * "OfferingType": "Light Utilization", - * "ProductDescription": "memcached", - * "RecurringCharges": [], - * "ReservedCacheNodesOfferingId": "0b0c1cc5-2177-4150-95d7-c67ec34dcb19", - * "UsagePrice": 0.363 + * CacheNodeType: "cache.c1.xlarge", + * Duration: 94608000, + * FixedPrice: 875.0, + * OfferingType: "Light Utilization", + * ProductDescription: "memcached", + * RecurringCharges: [], + * ReservedCacheNodesOfferingId: "0b0c1cc5-2177-4150-95d7-c67ec34dcb19", + * UsagePrice: 0.363 * }, * { - * "CacheNodeType": "cache.m4.10xlarge", - * "Duration": 94608000, - * "FixedPrice": 12483, - * "OfferingType": "Heavy Utilization", - * "ProductDescription": "memcached", - * "RecurringCharges": [ + * CacheNodeType: "cache.m4.10xlarge", + * Duration: 94608000, + * FixedPrice: 12483.0, + * OfferingType: "Heavy Utilization", + * ProductDescription: "memcached", + * RecurringCharges: [ * { - * "RecurringChargeAmount": 0.76, - * "RecurringChargeFrequency": "Hourly" + * RecurringChargeAmount: 0.76, + * RecurringChargeFrequency: "Hourly" * } * ], - * "ReservedCacheNodesOfferingId": "0c2b139b-1cff-43d0-8fba-0c753f9b1950", - * "UsagePrice": 0 + * ReservedCacheNodesOfferingId: "0c2b139b-1cff-43d0-8fba-0c753f9b1950", + * UsagePrice: 0.0 * }, * { - * "CacheNodeType": "cache.c1.xlarge", - * "Duration": 31536000, - * "FixedPrice": 1620, - * "OfferingType": "Heavy Utilization", - * "ProductDescription": "memcached", - * "RecurringCharges": [ + * CacheNodeType: "cache.c1.xlarge", + * Duration: 31536000, + * FixedPrice: 1620.0, + * OfferingType: "Heavy Utilization", + * ProductDescription: "memcached", + * RecurringCharges: [ * { - * "RecurringChargeAmount": 0.207, - * "RecurringChargeFrequency": "Hourly" + * RecurringChargeAmount: 0.207, + * RecurringChargeFrequency: "Hourly" * } * ], - * "ReservedCacheNodesOfferingId": "0c52115b-38cb-47a2-8dbc-e02e40b6a13f", - * "UsagePrice": 0 + * ReservedCacheNodesOfferingId: "0c52115b-38cb-47a2-8dbc-e02e40b6a13f", + * UsagePrice: 0.0 * }, * { - * "CacheNodeType": "cache.m2.4xlarge", - * "Duration": 94608000, - * "FixedPrice": 2381, - * "OfferingType": "Medium Utilization", - * "ProductDescription": "redis", - * "RecurringCharges": [], - * "ReservedCacheNodesOfferingId": "12fcb19c-5416-4e1d-934f-28f1e2cb8599", - * "UsagePrice": 0.276 + * CacheNodeType: "cache.m2.4xlarge", + * Duration: 94608000, + * FixedPrice: 2381.0, + * OfferingType: "Medium Utilization", + * ProductDescription: "redis", + * RecurringCharges: [], + * ReservedCacheNodesOfferingId: "12fcb19c-5416-4e1d-934f-28f1e2cb8599", + * UsagePrice: 0.276 * }, * { - * "CacheNodeType": "cache.m4.xlarge", - * "Duration": 31536000, - * "FixedPrice": 616, - * "OfferingType": "Heavy Utilization", - * "ProductDescription": "memcached", - * "RecurringCharges": [ + * CacheNodeType: "cache.m4.xlarge", + * Duration: 31536000, + * FixedPrice: 616.0, + * OfferingType: "Heavy Utilization", + * ProductDescription: "memcached", + * RecurringCharges: [ * { - * "RecurringChargeAmount": 0.112, - * "RecurringChargeFrequency": "Hourly" + * RecurringChargeAmount: 0.112, + * RecurringChargeFrequency: "Hourly" * } * ], - * "ReservedCacheNodesOfferingId": "13af20ad-914d-4d8b-9763-fa2e565f3549", - * "UsagePrice": 0 + * ReservedCacheNodesOfferingId: "13af20ad-914d-4d8b-9763-fa2e565f3549", + * UsagePrice: 0.0 * }, * { - * "CacheNodeType": "cache.r3.8xlarge", - * "Duration": 94608000, - * "FixedPrice": 16528, - * "OfferingType": "Heavy Utilization", - * "ProductDescription": "memcached", - * "RecurringCharges": [ + * CacheNodeType: "cache.r3.8xlarge", + * Duration: 94608000, + * FixedPrice: 16528.0, + * OfferingType: "Heavy Utilization", + * ProductDescription: "memcached", + * RecurringCharges: [ * { - * "RecurringChargeAmount": 0.729, - * "RecurringChargeFrequency": "Hourly" + * RecurringChargeAmount: 0.729, + * RecurringChargeFrequency: "Hourly" * } * ], - * "ReservedCacheNodesOfferingId": "14da3d3f-b526-4dbf-b09b-355578b2a576", - * "UsagePrice": 0 + * ReservedCacheNodesOfferingId: "14da3d3f-b526-4dbf-b09b-355578b2a576", + * UsagePrice: 0.0 * }, * { - * "CacheNodeType": "cache.m1.medium", - * "Duration": 94608000, - * "FixedPrice": 140, - * "OfferingType": "Light Utilization", - * "ProductDescription": "redis", - * "RecurringCharges": [], - * "ReservedCacheNodesOfferingId": "15d7018c-71fb-4717-8409-4bdcdca18da7", - * "UsagePrice": 0.052 + * CacheNodeType: "cache.m1.medium", + * Duration: 94608000, + * FixedPrice: 140.0, + * OfferingType: "Light Utilization", + * ProductDescription: "redis", + * RecurringCharges: [], + * ReservedCacheNodesOfferingId: "15d7018c-71fb-4717-8409-4bdcdca18da7", + * UsagePrice: 0.052 * }, * { - * "CacheNodeType": "cache.m4.4xlarge", - * "Duration": 94608000, - * "FixedPrice": 4993, - * "OfferingType": "Heavy Utilization", - * "ProductDescription": "memcached", - * "RecurringCharges": [ + * CacheNodeType: "cache.m4.4xlarge", + * Duration: 94608000, + * FixedPrice: 4993.0, + * OfferingType: "Heavy Utilization", + * ProductDescription: "memcached", + * RecurringCharges: [ * { - * "RecurringChargeAmount": 0.304, - * "RecurringChargeFrequency": "Hourly" + * RecurringChargeAmount: 0.304, + * RecurringChargeFrequency: "Hourly" * } * ], - * "ReservedCacheNodesOfferingId": "1ae7ec5f-a76e-49b6-822b-629b1768a13a", - * "UsagePrice": 0 + * ReservedCacheNodesOfferingId: "1ae7ec5f-a76e-49b6-822b-629b1768a13a", + * UsagePrice: 0.0 * }, * { - * "CacheNodeType": "cache.m3.2xlarge", - * "Duration": 31536000, - * "FixedPrice": 1772, - * "OfferingType": "Heavy Utilization", - * "ProductDescription": "redis", - * "RecurringCharges": [ + * CacheNodeType: "cache.m3.2xlarge", + * Duration: 31536000, + * FixedPrice: 1772.0, + * OfferingType: "Heavy Utilization", + * ProductDescription: "redis", + * RecurringCharges: [ * { - * "RecurringChargeAmount": 0.25, - * "RecurringChargeFrequency": "Hourly" + * RecurringChargeAmount: 0.25, + * RecurringChargeFrequency: "Hourly" * } * ], - * "ReservedCacheNodesOfferingId": "1d31242b-3925-48d1-b882-ce03204e6013", - * "UsagePrice": 0 + * ReservedCacheNodesOfferingId: "1d31242b-3925-48d1-b882-ce03204e6013", + * UsagePrice: 0.0 * }, * { - * "CacheNodeType": "cache.t1.micro", - * "Duration": 31536000, - * "FixedPrice": 54, - * "OfferingType": "Medium Utilization", - * "ProductDescription": "memcached", - * "RecurringCharges": [], - * "ReservedCacheNodesOfferingId": "1ef01f5b-94ff-433f-a530-61a56bfc8e7a", - * "UsagePrice": 0.008 + * CacheNodeType: "cache.t1.micro", + * Duration: 31536000, + * FixedPrice: 54.0, + * OfferingType: "Medium Utilization", + * ProductDescription: "memcached", + * RecurringCharges: [], + * ReservedCacheNodesOfferingId: "1ef01f5b-94ff-433f-a530-61a56bfc8e7a", + * UsagePrice: 0.008 * } * ] * } * *\/ - * // example id: describereseredcachenodeofferings-1481742869998 * ``` * + * @example DescribeReseredCacheNodeOfferings + * ```javascript + * // Lists available reserved cache node offerings. + * const input = { + * CacheNodeType: "", + * Duration: "", + * Marker: "", + * MaxRecords: 25, + * OfferingType: "", + * ProductDescription: "", + * ReservedCacheNodesOfferingId: "438012d3-4052-4cc7-b2e3-8d3372e0e706" + * }; + * const command = new DescribeReservedCacheNodesOfferingsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * Marker: "", + * ReservedCacheNodesOfferings: [] + * } + * *\/ + * ``` + * + * @public */ export class DescribeReservedCacheNodesOfferingsCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DescribeServerlessCacheSnapshotsCommand.ts b/clients/client-elasticache/src/commands/DescribeServerlessCacheSnapshotsCommand.ts index 5711e5042ebb6..70db4c8654cc0 100644 --- a/clients/client-elasticache/src/commands/DescribeServerlessCacheSnapshotsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeServerlessCacheSnapshotsCommand.ts @@ -96,6 +96,7 @@ export interface DescribeServerlessCacheSnapshotsCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DescribeServerlessCacheSnapshotsCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DescribeServerlessCachesCommand.ts b/clients/client-elasticache/src/commands/DescribeServerlessCachesCommand.ts index e7873fee748b3..7f651e08105b0 100644 --- a/clients/client-elasticache/src/commands/DescribeServerlessCachesCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeServerlessCachesCommand.ts @@ -109,6 +109,7 @@ export interface DescribeServerlessCachesCommandOutput extends DescribeServerles * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DescribeServerlessCachesCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DescribeServiceUpdatesCommand.ts b/clients/client-elasticache/src/commands/DescribeServiceUpdatesCommand.ts index 6bbca1ae34479..11b9cc9a14f6b 100644 --- a/clients/client-elasticache/src/commands/DescribeServiceUpdatesCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeServiceUpdatesCommand.ts @@ -85,6 +85,7 @@ export interface DescribeServiceUpdatesCommandOutput extends ServiceUpdatesMessa * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DescribeServiceUpdatesCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DescribeSnapshotsCommand.ts b/clients/client-elasticache/src/commands/DescribeSnapshotsCommand.ts index 381373571877b..e1bedcf19e30f 100644 --- a/clients/client-elasticache/src/commands/DescribeSnapshotsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeSnapshotsCommand.ts @@ -133,53 +133,53 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsListMes * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DescribeSnapshots * ```javascript * // Returns information about the snapshot mysnapshot. By default. * const input = { - * "SnapshotName": "snapshot-20161212" + * SnapshotName: "snapshot-20161212" * }; * const command = new DescribeSnapshotsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "", - * "Snapshots": [ + * Marker: "", + * Snapshots: [ * { - * "AutoMinorVersionUpgrade": true, - * "CacheClusterCreateTime": "2016-12-21T22:27:12.543Z", - * "CacheClusterId": "my-redis5", - * "CacheNodeType": "cache.m3.large", - * "CacheParameterGroupName": "default.redis3.2", - * "CacheSubnetGroupName": "default", - * "Engine": "redis", - * "EngineVersion": "3.2.4", - * "NodeSnapshots": [ + * AutoMinorVersionUpgrade: true, + * CacheClusterCreateTime: "2016-12-21T22:27:12.543Z", + * CacheClusterId: "my-redis5", + * CacheNodeType: "cache.m3.large", + * CacheParameterGroupName: "default.redis3.2", + * CacheSubnetGroupName: "default", + * Engine: "redis", + * EngineVersion: "3.2.4", + * NodeSnapshots: [ * { - * "CacheNodeCreateTime": "2016-12-21T22:27:12.543Z", - * "CacheNodeId": "0001", - * "CacheSize": "3 MB", - * "SnapshotCreateTime": "2016-12-21T22:30:26Z" + * CacheNodeCreateTime: "2016-12-21T22:27:12.543Z", + * CacheNodeId: "0001", + * CacheSize: "3 MB", + * SnapshotCreateTime: "2016-12-21T22:30:26Z" * } * ], - * "NumCacheNodes": 1, - * "Port": 6379, - * "PreferredAvailabilityZone": "us-east-1c", - * "PreferredMaintenanceWindow": "fri:05:30-fri:06:30", - * "SnapshotName": "snapshot-20161212", - * "SnapshotRetentionLimit": 7, - * "SnapshotSource": "manual", - * "SnapshotStatus": "available", - * "SnapshotWindow": "10:00-11:00", - * "VpcId": "vpc-91280df6" + * NumCacheNodes: 1, + * Port: 6379, + * PreferredAvailabilityZone: "us-east-1c", + * PreferredMaintenanceWindow: "fri:05:30-fri:06:30", + * SnapshotName: "snapshot-20161212", + * SnapshotRetentionLimit: 7, + * SnapshotSource: "manual", + * SnapshotStatus: "available", + * SnapshotWindow: "10:00-11:00", + * VpcId: "vpc-91280df6" * } * ] * } * *\/ - * // example id: describesnapshots-1481743399584 * ``` * + * @public */ export class DescribeSnapshotsCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/DescribeUpdateActionsCommand.ts b/clients/client-elasticache/src/commands/DescribeUpdateActionsCommand.ts index be3a2af4b0282..2c764207370e9 100644 --- a/clients/client-elasticache/src/commands/DescribeUpdateActionsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeUpdateActionsCommand.ts @@ -130,6 +130,7 @@ export interface DescribeUpdateActionsCommandOutput extends UpdateActionsMessage * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DescribeUpdateActionsCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DescribeUserGroupsCommand.ts b/clients/client-elasticache/src/commands/DescribeUserGroupsCommand.ts index 7bb5cc13f81ad..6ffda965413a0 100644 --- a/clients/client-elasticache/src/commands/DescribeUserGroupsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeUserGroupsCommand.ts @@ -92,6 +92,7 @@ export interface DescribeUserGroupsCommandOutput extends DescribeUserGroupsResul * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DescribeUserGroupsCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DescribeUsersCommand.ts b/clients/client-elasticache/src/commands/DescribeUsersCommand.ts index 11783f750a3a2..e8ca1bd8be9cb 100644 --- a/clients/client-elasticache/src/commands/DescribeUsersCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeUsersCommand.ts @@ -93,6 +93,7 @@ export interface DescribeUsersCommandOutput extends DescribeUsersResult, __Metad * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DescribeUsersCommand extends $Command diff --git a/clients/client-elasticache/src/commands/DisassociateGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/DisassociateGlobalReplicationGroupCommand.ts index dad9da7483310..092004360243a 100644 --- a/clients/client-elasticache/src/commands/DisassociateGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DisassociateGlobalReplicationGroupCommand.ts @@ -106,6 +106,7 @@ export interface DisassociateGlobalReplicationGroupCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class DisassociateGlobalReplicationGroupCommand extends $Command diff --git a/clients/client-elasticache/src/commands/ExportServerlessCacheSnapshotCommand.ts b/clients/client-elasticache/src/commands/ExportServerlessCacheSnapshotCommand.ts index 97f33f1fa142f..936ccbe3d781c 100644 --- a/clients/client-elasticache/src/commands/ExportServerlessCacheSnapshotCommand.ts +++ b/clients/client-elasticache/src/commands/ExportServerlessCacheSnapshotCommand.ts @@ -87,6 +87,7 @@ export interface ExportServerlessCacheSnapshotCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class ExportServerlessCacheSnapshotCommand extends $Command diff --git a/clients/client-elasticache/src/commands/FailoverGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/FailoverGlobalReplicationGroupCommand.ts index 353aa2952d87c..70801c5b03985 100644 --- a/clients/client-elasticache/src/commands/FailoverGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/FailoverGlobalReplicationGroupCommand.ts @@ -102,6 +102,7 @@ export interface FailoverGlobalReplicationGroupCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class FailoverGlobalReplicationGroupCommand extends $Command diff --git a/clients/client-elasticache/src/commands/IncreaseNodeGroupsInGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/IncreaseNodeGroupsInGlobalReplicationGroupCommand.ts index 570e313903619..0448e0e487435 100644 --- a/clients/client-elasticache/src/commands/IncreaseNodeGroupsInGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/IncreaseNodeGroupsInGlobalReplicationGroupCommand.ts @@ -116,6 +116,7 @@ export interface IncreaseNodeGroupsInGlobalReplicationGroupCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class IncreaseNodeGroupsInGlobalReplicationGroupCommand extends $Command diff --git a/clients/client-elasticache/src/commands/IncreaseReplicaCountCommand.ts b/clients/client-elasticache/src/commands/IncreaseReplicaCountCommand.ts index 3b05606b73397..86fc36adddd99 100644 --- a/clients/client-elasticache/src/commands/IncreaseReplicaCountCommand.ts +++ b/clients/client-elasticache/src/commands/IncreaseReplicaCountCommand.ts @@ -232,6 +232,7 @@ export interface IncreaseReplicaCountCommandOutput extends IncreaseReplicaCountR * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class IncreaseReplicaCountCommand extends $Command diff --git a/clients/client-elasticache/src/commands/ListAllowedNodeTypeModificationsCommand.ts b/clients/client-elasticache/src/commands/ListAllowedNodeTypeModificationsCommand.ts index e7eb17e46e135..b48a0603878c1 100644 --- a/clients/client-elasticache/src/commands/ListAllowedNodeTypeModificationsCommand.ts +++ b/clients/client-elasticache/src/commands/ListAllowedNodeTypeModificationsCommand.ts @@ -83,18 +83,33 @@ export interface ListAllowedNodeTypeModificationsCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example ListAllowedNodeTypeModifications * ```javascript * // Lists all available node types that you can scale your Redis cluster's or replication group's current node type up to. * const input = { - * "ReplicationGroupId": "myreplgroup" + * CacheClusterId: "mycluster" * }; * const command = new ListAllowedNodeTypeModificationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ScaleUpModifications": [ + * ScaleUpModifications: [] + * } + * *\/ + * ``` + * + * @example ListAllowedNodeTypeModifications + * ```javascript + * // Lists all available node types that you can scale your Redis cluster's or replication group's current node type up to. + * const input = { + * ReplicationGroupId: "myreplgroup" + * }; + * const command = new ListAllowedNodeTypeModificationsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * ScaleUpModifications: [ * "cache.m4.10xlarge", * "cache.m4.2xlarge", * "cache.m4.4xlarge", @@ -106,9 +121,9 @@ export interface ListAllowedNodeTypeModificationsCommandOutput * ] * } * *\/ - * // example id: listallowednodetypemodifications-1481748494872 * ``` * + * @public */ export class ListAllowedNodeTypeModificationsCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/ListTagsForResourceCommand.ts b/clients/client-elasticache/src/commands/ListTagsForResourceCommand.ts index 52199b3f7094a..12e6e9a89e4ca 100644 --- a/clients/client-elasticache/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-elasticache/src/commands/ListTagsForResourceCommand.ts @@ -116,32 +116,32 @@ export interface ListTagsForResourceCommandOutput extends TagListMessage, __Meta * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example ListTagsForResource * ```javascript * // Lists all cost allocation tags currently on the named resource. A cost allocation tag is a key-value pair where the key is case-sensitive and the value is optional. You can use cost allocation tags to categorize and track your AWS costs. * const input = { - * "ResourceName": "arn:aws:elasticache:us-west-2::cluster:mycluster" + * ResourceName: "arn:aws:elasticache:us-west-2::cluster:mycluster" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TagList": [ + * TagList: [ * { - * "Key": "APIVersion", - * "Value": "20150202" + * Key: "APIVersion", + * Value: "20150202" * }, * { - * "Key": "Service", - * "Value": "ElastiCache" + * Key: "Service", + * Value: "ElastiCache" * } * ] * } * *\/ - * // example id: listtagsforresource-1481748784584 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/ModifyCacheClusterCommand.ts b/clients/client-elasticache/src/commands/ModifyCacheClusterCommand.ts index b372874f9ddb0..db5a67ae034ab 100644 --- a/clients/client-elasticache/src/commands/ModifyCacheClusterCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyCacheClusterCommand.ts @@ -249,47 +249,47 @@ export interface ModifyCacheClusterCommandOutput extends ModifyCacheClusterResul * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example ModifyCacheCluster * ```javascript * // Copies a snapshot to a specified name. * const input = { - * "ApplyImmediately": true, - * "CacheClusterId": "redis-cluster", - * "SnapshotRetentionLimit": 14 + * ApplyImmediately: true, + * CacheClusterId: "redis-cluster", + * SnapshotRetentionLimit: 14 * }; * const command = new ModifyCacheClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CacheCluster": { - * "AutoMinorVersionUpgrade": true, - * "CacheClusterCreateTime": "2016-12-22T16:27:56.078Z", - * "CacheClusterId": "redis-cluster", - * "CacheClusterStatus": "available", - * "CacheNodeType": "cache.r3.large", - * "CacheParameterGroup": { - * "CacheNodeIdsToReboot": [], - * "CacheParameterGroupName": "default.redis3.2", - * "ParameterApplyStatus": "in-sync" + * CacheCluster: { + * AutoMinorVersionUpgrade: true, + * CacheClusterCreateTime: "2016-12-22T16:27:56.078Z", + * CacheClusterId: "redis-cluster", + * CacheClusterStatus: "available", + * CacheNodeType: "cache.r3.large", + * CacheParameterGroup: { + * CacheNodeIdsToReboot: [], + * CacheParameterGroupName: "default.redis3.2", + * ParameterApplyStatus: "in-sync" * }, - * "CacheSecurityGroups": [], - * "CacheSubnetGroupName": "default", - * "ClientDownloadLandingPage": "https://console.aws.amazon.com/elasticache/home#client-download:", - * "Engine": "redis", - * "EngineVersion": "3.2.4", - * "NumCacheNodes": 1, - * "PendingModifiedValues": {}, - * "PreferredAvailabilityZone": "us-east-1e", - * "PreferredMaintenanceWindow": "fri:09:00-fri:10:00", - * "SnapshotRetentionLimit": 14, - * "SnapshotWindow": "07:00-08:00" + * CacheSecurityGroups: [], + * CacheSubnetGroupName: "default", + * ClientDownloadLandingPage: "https://console.aws.amazon.com/elasticache/home#client-download:", + * Engine: "redis", + * EngineVersion: "3.2.4", + * NumCacheNodes: 1, + * PendingModifiedValues: { /* empty *\/ }, + * PreferredAvailabilityZone: "us-east-1e", + * PreferredMaintenanceWindow: "fri:09:00-fri:10:00", + * SnapshotRetentionLimit: 14, + * SnapshotWindow: "07:00-08:00" * } * } * *\/ - * // example id: modifycachecluster-1482962725919 * ``` * + * @public */ export class ModifyCacheClusterCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/ModifyCacheParameterGroupCommand.ts b/clients/client-elasticache/src/commands/ModifyCacheParameterGroupCommand.ts index 1a1adbbc0164f..da1abc05ead4c 100644 --- a/clients/client-elasticache/src/commands/ModifyCacheParameterGroupCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyCacheParameterGroupCommand.ts @@ -79,33 +79,33 @@ export interface ModifyCacheParameterGroupCommandOutput extends CacheParameterGr * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example ModifyCacheParameterGroup * ```javascript * // Modifies one or more parameter values in the specified parameter group. You cannot modify any default parameter group. * const input = { - * "CacheParameterGroupName": "custom-mem1-4", - * "ParameterNameValues": [ + * CacheParameterGroupName: "custom-mem1-4", + * ParameterNameValues: [ * { - * "ParameterName": "binding_protocol", - * "ParameterValue": "ascii" + * ParameterName: "binding_protocol", + * ParameterValue: "ascii" * }, * { - * "ParameterName": "chunk_size", - * "ParameterValue": "96" + * ParameterName: "chunk_size", + * ParameterValue: "96" * } * ] * }; * const command = new ModifyCacheParameterGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CacheParameterGroupName": "custom-mem1-4" + * CacheParameterGroupName: "custom-mem1-4" * } * *\/ - * // example id: modifycacheparametergroup-1482966746787 * ``` * + * @public */ export class ModifyCacheParameterGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/ModifyCacheSubnetGroupCommand.ts b/clients/client-elasticache/src/commands/ModifyCacheSubnetGroupCommand.ts index f135e9dea2541..5cb933157239e 100644 --- a/clients/client-elasticache/src/commands/ModifyCacheSubnetGroupCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyCacheSubnetGroupCommand.ts @@ -101,62 +101,62 @@ export interface ModifyCacheSubnetGroupCommandOutput extends ModifyCacheSubnetGr * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example ModifyCacheSubnetGroup * ```javascript * // Modifies an existing ElastiCache subnet group. * const input = { - * "CacheSubnetGroupName": "my-sn-grp", - * "SubnetIds": [ + * CacheSubnetGroupName: "my-sn-grp", + * SubnetIds: [ * "subnet-bcde2345" * ] * }; * const command = new ModifyCacheSubnetGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CacheSubnetGroup": { - * "CacheSubnetGroupDescription": "My subnet group.", - * "CacheSubnetGroupName": "my-sn-grp", - * "Subnets": [ + * CacheSubnetGroup: { + * CacheSubnetGroupDescription: "My subnet group.", + * CacheSubnetGroupName: "my-sn-grp", + * Subnets: [ * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1c" + * SubnetAvailabilityZone: { + * Name: "us-east-1c" * }, - * "SubnetIdentifier": "subnet-a1b2c3d4" + * SubnetIdentifier: "subnet-a1b2c3d4" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1e" + * SubnetAvailabilityZone: { + * Name: "us-east-1e" * }, - * "SubnetIdentifier": "subnet-1a2b3c4d" + * SubnetIdentifier: "subnet-1a2b3c4d" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1e" + * SubnetAvailabilityZone: { + * Name: "us-east-1e" * }, - * "SubnetIdentifier": "subnet-bcde2345" + * SubnetIdentifier: "subnet-bcde2345" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1c" + * SubnetAvailabilityZone: { + * Name: "us-east-1c" * }, - * "SubnetIdentifier": "subnet-1234abcd" + * SubnetIdentifier: "subnet-1234abcd" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1b" + * SubnetAvailabilityZone: { + * Name: "us-east-1b" * }, - * "SubnetIdentifier": "subnet-abcd1234" + * SubnetIdentifier: "subnet-abcd1234" * } * ], - * "VpcId": "vpc-91280df6" + * VpcId: "vpc-91280df6" * } * } * *\/ - * // example id: modifycachesubnetgroup-1483043446226 * ``` * + * @public */ export class ModifyCacheSubnetGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/ModifyGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/ModifyGlobalReplicationGroupCommand.ts index 59215e840f57a..7bfad0d5a4a2b 100644 --- a/clients/client-elasticache/src/commands/ModifyGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyGlobalReplicationGroupCommand.ts @@ -100,6 +100,7 @@ export interface ModifyGlobalReplicationGroupCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class ModifyGlobalReplicationGroupCommand extends $Command diff --git a/clients/client-elasticache/src/commands/ModifyReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/ModifyReplicationGroupCommand.ts index 7d2e9c663d8c7..acddb19f975b3 100644 --- a/clients/client-elasticache/src/commands/ModifyReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyReplicationGroupCommand.ts @@ -295,81 +295,81 @@ export interface ModifyReplicationGroupCommandOutput extends ModifyReplicationGr * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example ModifyReplicationGroup * ```javascript * // * const input = { - * "ApplyImmediately": true, - * "ReplicationGroupDescription": "Modified replication group", - * "ReplicationGroupId": "my-redis-rg", - * "SnapshotRetentionLimit": 30, - * "SnapshottingClusterId": "my-redis-rg-001" + * ApplyImmediately: true, + * ReplicationGroupDescription: "Modified replication group", + * ReplicationGroupId: "my-redis-rg", + * SnapshotRetentionLimit: 30, + * SnapshottingClusterId: "my-redis-rg-001" * }; * const command = new ModifyReplicationGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicationGroup": { - * "AutomaticFailover": "enabled", - * "Description": "Modified replication group", - * "MemberClusters": [ + * ReplicationGroup: { + * AutomaticFailover: "enabled", + * Description: "Modified replication group", + * MemberClusters: [ * "my-redis-rg-001", * "my-redis-rg-002", * "my-redis-rg-003" * ], - * "NodeGroups": [ + * NodeGroups: [ * { - * "NodeGroupId": "0001", - * "NodeGroupMembers": [ + * NodeGroupId: "0001", + * NodeGroupMembers: [ * { - * "CacheClusterId": "my-redis-rg-001", - * "CacheNodeId": "0001", - * "CurrentRole": "primary", - * "PreferredAvailabilityZone": "us-east-1b", - * "ReadEndpoint": { - * "Address": "my-redis-rg-001.abcdef.0001.use1.cache.amazonaws.com", - * "Port": 6379 + * CacheClusterId: "my-redis-rg-001", + * CacheNodeId: "0001", + * CurrentRole: "primary", + * PreferredAvailabilityZone: "us-east-1b", + * ReadEndpoint: { + * Address: "my-redis-rg-001.abcdef.0001.use1.cache.amazonaws.com", + * Port: 6379 * } * }, * { - * "CacheClusterId": "my-redis-rg-002", - * "CacheNodeId": "0001", - * "CurrentRole": "replica", - * "PreferredAvailabilityZone": "us-east-1a", - * "ReadEndpoint": { - * "Address": "my-redis-rg-002.abcdef.0001.use1.cache.amazonaws.com", - * "Port": 6379 + * CacheClusterId: "my-redis-rg-002", + * CacheNodeId: "0001", + * CurrentRole: "replica", + * PreferredAvailabilityZone: "us-east-1a", + * ReadEndpoint: { + * Address: "my-redis-rg-002.abcdef.0001.use1.cache.amazonaws.com", + * Port: 6379 * } * }, * { - * "CacheClusterId": "my-redis-rg-003", - * "CacheNodeId": "0001", - * "CurrentRole": "replica", - * "PreferredAvailabilityZone": "us-east-1c", - * "ReadEndpoint": { - * "Address": "my-redis-rg-003.abcdef.0001.use1.cache.amazonaws.com", - * "Port": 6379 + * CacheClusterId: "my-redis-rg-003", + * CacheNodeId: "0001", + * CurrentRole: "replica", + * PreferredAvailabilityZone: "us-east-1c", + * ReadEndpoint: { + * Address: "my-redis-rg-003.abcdef.0001.use1.cache.amazonaws.com", + * Port: 6379 * } * } * ], - * "PrimaryEndpoint": { - * "Address": "my-redis-rg.abcdef.ng.0001.use1.cache.amazonaws.com", - * "Port": 6379 + * PrimaryEndpoint: { + * Address: "my-redis-rg.abcdef.ng.0001.use1.cache.amazonaws.com", + * Port: 6379 * }, - * "Status": "available" + * Status: "available" * } * ], - * "PendingModifiedValues": {}, - * "ReplicationGroupId": "my-redis-rg", - * "SnapshottingClusterId": "my-redis-rg-002", - * "Status": "available" + * PendingModifiedValues: { /* empty *\/ }, + * ReplicationGroupId: "my-redis-rg", + * SnapshottingClusterId: "my-redis-rg-002", + * Status: "available" * } * } * *\/ - * // example id: modifyreplicationgroup-1483039689581 * ``` * + * @public */ export class ModifyReplicationGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/ModifyReplicationGroupShardConfigurationCommand.ts b/clients/client-elasticache/src/commands/ModifyReplicationGroupShardConfigurationCommand.ts index 0e355ba712516..dc93978484392 100644 --- a/clients/client-elasticache/src/commands/ModifyReplicationGroupShardConfigurationCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyReplicationGroupShardConfigurationCommand.ts @@ -234,6 +234,7 @@ export interface ModifyReplicationGroupShardConfigurationCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class ModifyReplicationGroupShardConfigurationCommand extends $Command diff --git a/clients/client-elasticache/src/commands/ModifyServerlessCacheCommand.ts b/clients/client-elasticache/src/commands/ModifyServerlessCacheCommand.ts index 62a8696691b82..f4306b96255e4 100644 --- a/clients/client-elasticache/src/commands/ModifyServerlessCacheCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyServerlessCacheCommand.ts @@ -138,6 +138,7 @@ export interface ModifyServerlessCacheCommandOutput extends ModifyServerlessCach * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class ModifyServerlessCacheCommand extends $Command diff --git a/clients/client-elasticache/src/commands/ModifyUserCommand.ts b/clients/client-elasticache/src/commands/ModifyUserCommand.ts index 092b569f0b1b1..0f8dc81b96b68 100644 --- a/clients/client-elasticache/src/commands/ModifyUserCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyUserCommand.ts @@ -96,6 +96,7 @@ export interface ModifyUserCommandOutput extends User, __MetadataBearer {} * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class ModifyUserCommand extends $Command diff --git a/clients/client-elasticache/src/commands/ModifyUserGroupCommand.ts b/clients/client-elasticache/src/commands/ModifyUserGroupCommand.ts index 5307a6b614dc6..daa56af5c8c5d 100644 --- a/clients/client-elasticache/src/commands/ModifyUserGroupCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyUserGroupCommand.ts @@ -107,6 +107,7 @@ export interface ModifyUserGroupCommandOutput extends UserGroup, __MetadataBeare * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class ModifyUserGroupCommand extends $Command diff --git a/clients/client-elasticache/src/commands/PurchaseReservedCacheNodesOfferingCommand.ts b/clients/client-elasticache/src/commands/PurchaseReservedCacheNodesOfferingCommand.ts index a1957e0f9f883..c3687cd620542 100644 --- a/clients/client-elasticache/src/commands/PurchaseReservedCacheNodesOfferingCommand.ts +++ b/clients/client-elasticache/src/commands/PurchaseReservedCacheNodesOfferingCommand.ts @@ -112,18 +112,21 @@ export interface PurchaseReservedCacheNodesOfferingCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example PurchaseReservedCacheNodesOfferings * ```javascript * // Allows you to purchase a reserved cache node offering. * const input = { - * "ReservedCacheNodesOfferingId": "1ef01f5b-94ff-433f-a530-61a56bfc8e7a" + * ReservedCacheNodesOfferingId: "1ef01f5b-94ff-433f-a530-61a56bfc8e7a" * }; * const command = new PurchaseReservedCacheNodesOfferingCommand(input); - * await client.send(command); - * // example id: purchasereservedcachenodesofferings-1483040798484 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PurchaseReservedCacheNodesOfferingCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/RebalanceSlotsInGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/RebalanceSlotsInGlobalReplicationGroupCommand.ts index aece7d323e2f9..c34719eee40d6 100644 --- a/clients/client-elasticache/src/commands/RebalanceSlotsInGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/RebalanceSlotsInGlobalReplicationGroupCommand.ts @@ -102,6 +102,7 @@ export interface RebalanceSlotsInGlobalReplicationGroupCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class RebalanceSlotsInGlobalReplicationGroupCommand extends $Command diff --git a/clients/client-elasticache/src/commands/RebootCacheClusterCommand.ts b/clients/client-elasticache/src/commands/RebootCacheClusterCommand.ts index 89eb38c3fcf76..8c4cde04def39 100644 --- a/clients/client-elasticache/src/commands/RebootCacheClusterCommand.ts +++ b/clients/client-elasticache/src/commands/RebootCacheClusterCommand.ts @@ -186,51 +186,51 @@ export interface RebootCacheClusterCommandOutput extends RebootCacheClusterResul * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example RebootCacheCluster * ```javascript * // Reboots the specified nodes in the names cluster. * const input = { - * "CacheClusterId": "custom-mem1-4 ", - * "CacheNodeIdsToReboot": [ + * CacheClusterId: "custom-mem1-4 ", + * CacheNodeIdsToReboot: [ * "0001", * "0002" * ] * }; * const command = new RebootCacheClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CacheCluster": { - * "AutoMinorVersionUpgrade": true, - * "CacheClusterCreateTime": "2016-12-21T21:59:43.794Z", - * "CacheClusterId": "my-mem-cluster", - * "CacheClusterStatus": "rebooting cache cluster nodes", - * "CacheNodeType": "cache.t2.medium", - * "CacheParameterGroup": { - * "CacheNodeIdsToReboot": [], - * "CacheParameterGroupName": "default.memcached1.4", - * "ParameterApplyStatus": "in-sync" + * CacheCluster: { + * AutoMinorVersionUpgrade: true, + * CacheClusterCreateTime: "2016-12-21T21:59:43.794Z", + * CacheClusterId: "my-mem-cluster", + * CacheClusterStatus: "rebooting cache cluster nodes", + * CacheNodeType: "cache.t2.medium", + * CacheParameterGroup: { + * CacheNodeIdsToReboot: [], + * CacheParameterGroupName: "default.memcached1.4", + * ParameterApplyStatus: "in-sync" * }, - * "CacheSecurityGroups": [], - * "CacheSubnetGroupName": "default", - * "ClientDownloadLandingPage": "https://console.aws.amazon.com/elasticache/home#client-download:", - * "ConfigurationEndpoint": { - * "Address": "my-mem-cluster.abcdef.cfg.use1.cache.amazonaws.com", - * "Port": 11211 + * CacheSecurityGroups: [], + * CacheSubnetGroupName: "default", + * ClientDownloadLandingPage: "https://console.aws.amazon.com/elasticache/home#client-download:", + * ConfigurationEndpoint: { + * Address: "my-mem-cluster.abcdef.cfg.use1.cache.amazonaws.com", + * Port: 11211 * }, - * "Engine": "memcached", - * "EngineVersion": "1.4.24", - * "NumCacheNodes": 2, - * "PendingModifiedValues": {}, - * "PreferredAvailabilityZone": "Multiple", - * "PreferredMaintenanceWindow": "wed:06:00-wed:07:00" + * Engine: "memcached", + * EngineVersion: "1.4.24", + * NumCacheNodes: 2, + * PendingModifiedValues: { /* empty *\/ }, + * PreferredAvailabilityZone: "Multiple", + * PreferredMaintenanceWindow: "wed:06:00-wed:07:00" * } * } * *\/ - * // example id: rebootcachecluster-1482969019505 * ``` * + * @public */ export class RebootCacheClusterCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-elasticache/src/commands/RemoveTagsFromResourceCommand.ts index acfccd6de7067..a9dc365b6d645 100644 --- a/clients/client-elasticache/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-elasticache/src/commands/RemoveTagsFromResourceCommand.ts @@ -119,13 +119,13 @@ export interface RemoveTagsFromResourceCommandOutput extends TagListMessage, __M * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example RemoveTagsFromResource * ```javascript * // Removes tags identified by a list of tag keys from the list of tags on the specified resource. * const input = { - * "ResourceName": "arn:aws:elasticache:us-east-1:1234567890:cluster:my-mem-cluster", - * "TagKeys": [ + * ResourceName: "arn:aws:elasticache:us-east-1:1234567890:cluster:my-mem-cluster", + * TagKeys: [ * "A", * "C", * "E" @@ -133,35 +133,35 @@ export interface RemoveTagsFromResourceCommandOutput extends TagListMessage, __M * }; * const command = new RemoveTagsFromResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TagList": [ + * TagList: [ * { - * "Key": "B", - * "Value": "Banana" + * Key: "B", + * Value: "Banana" * }, * { - * "Key": "D", - * "Value": "Dog" + * Key: "D", + * Value: "Dog" * }, * { - * "Key": "F", - * "Value": "Fox" + * Key: "F", + * Value: "Fox" * }, * { - * "Key": "I", - * "Value": "" + * Key: "I", + * Value: "" * }, * { - * "Key": "K", - * "Value": "Kite" + * Key: "K", + * Value: "Kite" * } * ] * } * *\/ - * // example id: removetagsfromresource-1483037920947 * ``` * + * @public */ export class RemoveTagsFromResourceCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/ResetCacheParameterGroupCommand.ts b/clients/client-elasticache/src/commands/ResetCacheParameterGroupCommand.ts index d5ae1cfe5f93a..e2307531ecf09 100644 --- a/clients/client-elasticache/src/commands/ResetCacheParameterGroupCommand.ts +++ b/clients/client-elasticache/src/commands/ResetCacheParameterGroupCommand.ts @@ -82,24 +82,24 @@ export interface ResetCacheParameterGroupCommandOutput extends CacheParameterGro * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example ResetCacheParameterGroup * ```javascript * // Modifies the parameters of a cache parameter group to the engine or system default value. * const input = { - * "CacheParameterGroupName": "custom-mem1-4", - * "ResetAllParameters": true + * CacheParameterGroupName: "custom-mem1-4", + * ResetAllParameters: true * }; * const command = new ResetCacheParameterGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CacheParameterGroupName": "custom-mem1-4" + * CacheParameterGroupName: "custom-mem1-4" * } * *\/ - * // example id: resetcacheparametergroup-1483038334014 * ``` * + * @public */ export class ResetCacheParameterGroupCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/RevokeCacheSecurityGroupIngressCommand.ts b/clients/client-elasticache/src/commands/RevokeCacheSecurityGroupIngressCommand.ts index 6a671e167402f..81a87e8d616ce 100644 --- a/clients/client-elasticache/src/commands/RevokeCacheSecurityGroupIngressCommand.ts +++ b/clients/client-elasticache/src/commands/RevokeCacheSecurityGroupIngressCommand.ts @@ -92,20 +92,23 @@ export interface RevokeCacheSecurityGroupIngressCommandOutput * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* - * @public + * * @example DescribeCacheSecurityGroups * ```javascript * // Returns a list of cache security group descriptions. If a cache security group name is specified, the list contains only the description of that group. * const input = { - * "CacheSecurityGroupName": "my-sec-grp", - * "EC2SecurityGroupName": "my-ec2-sec-grp", - * "EC2SecurityGroupOwnerId": "1234567890" + * CacheSecurityGroupName: "my-sec-grp", + * EC2SecurityGroupName: "my-ec2-sec-grp", + * EC2SecurityGroupOwnerId: "1234567890" * }; * const command = new RevokeCacheSecurityGroupIngressCommand(input); - * await client.send(command); - * // example id: describecachesecuritygroups-1483047200801 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RevokeCacheSecurityGroupIngressCommand extends $Command .classBuilder< diff --git a/clients/client-elasticache/src/commands/StartMigrationCommand.ts b/clients/client-elasticache/src/commands/StartMigrationCommand.ts index b48276c809bdf..cc2be1f6a7c88 100644 --- a/clients/client-elasticache/src/commands/StartMigrationCommand.ts +++ b/clients/client-elasticache/src/commands/StartMigrationCommand.ts @@ -193,6 +193,7 @@ export interface StartMigrationCommandOutput extends StartMigrationResponse, __M * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class StartMigrationCommand extends $Command diff --git a/clients/client-elasticache/src/commands/TestFailoverCommand.ts b/clients/client-elasticache/src/commands/TestFailoverCommand.ts index 647dfd13efab6..7a3f3f085362c 100644 --- a/clients/client-elasticache/src/commands/TestFailoverCommand.ts +++ b/clients/client-elasticache/src/commands/TestFailoverCommand.ts @@ -281,6 +281,7 @@ export interface TestFailoverCommandOutput extends TestFailoverResult, __Metadat * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class TestFailoverCommand extends $Command diff --git a/clients/client-elasticache/src/commands/TestMigrationCommand.ts b/clients/client-elasticache/src/commands/TestMigrationCommand.ts index b98b369b23cd2..f161b7f19b82a 100644 --- a/clients/client-elasticache/src/commands/TestMigrationCommand.ts +++ b/clients/client-elasticache/src/commands/TestMigrationCommand.ts @@ -193,6 +193,7 @@ export interface TestMigrationCommandOutput extends TestMigrationResponse, __Met * @throws {@link ElastiCacheServiceException} *

Base exception class for all service exceptions from ElastiCache service.

* + * * @public */ export class TestMigrationCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/AcceptInboundCrossClusterSearchConnectionCommand.ts b/clients/client-elasticsearch-service/src/commands/AcceptInboundCrossClusterSearchConnectionCommand.ts index d434e3b3817ae..ad837d80ca072 100644 --- a/clients/client-elasticsearch-service/src/commands/AcceptInboundCrossClusterSearchConnectionCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/AcceptInboundCrossClusterSearchConnectionCommand.ts @@ -93,6 +93,7 @@ export interface AcceptInboundCrossClusterSearchConnectionCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class AcceptInboundCrossClusterSearchConnectionCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/AddTagsCommand.ts b/clients/client-elasticsearch-service/src/commands/AddTagsCommand.ts index 8218dc64cb87b..1cb4f9ab8b4df 100644 --- a/clients/client-elasticsearch-service/src/commands/AddTagsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/AddTagsCommand.ts @@ -76,6 +76,7 @@ export interface AddTagsCommandOutput extends __MetadataBearer {} * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class AddTagsCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/AssociatePackageCommand.ts b/clients/client-elasticsearch-service/src/commands/AssociatePackageCommand.ts index 42a467fbb30d9..f97f38be13214 100644 --- a/clients/client-elasticsearch-service/src/commands/AssociatePackageCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/AssociatePackageCommand.ts @@ -91,6 +91,7 @@ export interface AssociatePackageCommandOutput extends AssociatePackageResponse, * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class AssociatePackageCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/AuthorizeVpcEndpointAccessCommand.ts b/clients/client-elasticsearch-service/src/commands/AuthorizeVpcEndpointAccessCommand.ts index eb7925746e577..2e2632232fe8c 100644 --- a/clients/client-elasticsearch-service/src/commands/AuthorizeVpcEndpointAccessCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/AuthorizeVpcEndpointAccessCommand.ts @@ -81,6 +81,7 @@ export interface AuthorizeVpcEndpointAccessCommandOutput extends AuthorizeVpcEnd * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class AuthorizeVpcEndpointAccessCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/CancelDomainConfigChangeCommand.ts b/clients/client-elasticsearch-service/src/commands/CancelDomainConfigChangeCommand.ts index 4253278969855..504f27e36b1a1 100644 --- a/clients/client-elasticsearch-service/src/commands/CancelDomainConfigChangeCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/CancelDomainConfigChangeCommand.ts @@ -85,6 +85,7 @@ export interface CancelDomainConfigChangeCommandOutput extends CancelDomainConfi * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class CancelDomainConfigChangeCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/CancelElasticsearchServiceSoftwareUpdateCommand.ts b/clients/client-elasticsearch-service/src/commands/CancelElasticsearchServiceSoftwareUpdateCommand.ts index 3025149b8fe19..2df1f715b1fb2 100644 --- a/clients/client-elasticsearch-service/src/commands/CancelElasticsearchServiceSoftwareUpdateCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/CancelElasticsearchServiceSoftwareUpdateCommand.ts @@ -89,6 +89,7 @@ export interface CancelElasticsearchServiceSoftwareUpdateCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class CancelElasticsearchServiceSoftwareUpdateCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/CreateElasticsearchDomainCommand.ts b/clients/client-elasticsearch-service/src/commands/CreateElasticsearchDomainCommand.ts index fe9241d993383..1d005358d9858 100644 --- a/clients/client-elasticsearch-service/src/commands/CreateElasticsearchDomainCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/CreateElasticsearchDomainCommand.ts @@ -321,6 +321,7 @@ export interface CreateElasticsearchDomainCommandOutput extends CreateElasticsea * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class CreateElasticsearchDomainCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/CreateOutboundCrossClusterSearchConnectionCommand.ts b/clients/client-elasticsearch-service/src/commands/CreateOutboundCrossClusterSearchConnectionCommand.ts index 0329a02398b21..fec2c9d8ebeb4 100644 --- a/clients/client-elasticsearch-service/src/commands/CreateOutboundCrossClusterSearchConnectionCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/CreateOutboundCrossClusterSearchConnectionCommand.ts @@ -105,6 +105,7 @@ export interface CreateOutboundCrossClusterSearchConnectionCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class CreateOutboundCrossClusterSearchConnectionCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/CreatePackageCommand.ts b/clients/client-elasticsearch-service/src/commands/CreatePackageCommand.ts index 749d472bff0d7..9485e545bdab2 100644 --- a/clients/client-elasticsearch-service/src/commands/CreatePackageCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/CreatePackageCommand.ts @@ -99,6 +99,7 @@ export interface CreatePackageCommandOutput extends CreatePackageResponse, __Met * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class CreatePackageCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/CreateVpcEndpointCommand.ts b/clients/client-elasticsearch-service/src/commands/CreateVpcEndpointCommand.ts index 78a5df5ef956e..501c922ecd9cb 100644 --- a/clients/client-elasticsearch-service/src/commands/CreateVpcEndpointCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/CreateVpcEndpointCommand.ts @@ -104,6 +104,7 @@ export interface CreateVpcEndpointCommandOutput extends CreateVpcEndpointRespons * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class CreateVpcEndpointCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchDomainCommand.ts b/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchDomainCommand.ts index 719b6e862230e..9e768502fa512 100644 --- a/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchDomainCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchDomainCommand.ts @@ -200,6 +200,7 @@ export interface DeleteElasticsearchDomainCommandOutput extends DeleteElasticsea * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DeleteElasticsearchDomainCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchServiceRoleCommand.ts b/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchServiceRoleCommand.ts index 15fe5f60ba8cd..33afeaf2dc010 100644 --- a/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchServiceRoleCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchServiceRoleCommand.ts @@ -66,6 +66,7 @@ export interface DeleteElasticsearchServiceRoleCommandOutput extends __MetadataB * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DeleteElasticsearchServiceRoleCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DeleteInboundCrossClusterSearchConnectionCommand.ts b/clients/client-elasticsearch-service/src/commands/DeleteInboundCrossClusterSearchConnectionCommand.ts index d7b8047a19b18..b1f40350811ea 100644 --- a/clients/client-elasticsearch-service/src/commands/DeleteInboundCrossClusterSearchConnectionCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DeleteInboundCrossClusterSearchConnectionCommand.ts @@ -90,6 +90,7 @@ export interface DeleteInboundCrossClusterSearchConnectionCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DeleteInboundCrossClusterSearchConnectionCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DeleteOutboundCrossClusterSearchConnectionCommand.ts b/clients/client-elasticsearch-service/src/commands/DeleteOutboundCrossClusterSearchConnectionCommand.ts index 05aeb17c61477..40d0a8ebda627 100644 --- a/clients/client-elasticsearch-service/src/commands/DeleteOutboundCrossClusterSearchConnectionCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DeleteOutboundCrossClusterSearchConnectionCommand.ts @@ -91,6 +91,7 @@ export interface DeleteOutboundCrossClusterSearchConnectionCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DeleteOutboundCrossClusterSearchConnectionCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DeletePackageCommand.ts b/clients/client-elasticsearch-service/src/commands/DeletePackageCommand.ts index 1d1ebf231e957..805a715bd7c4f 100644 --- a/clients/client-elasticsearch-service/src/commands/DeletePackageCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DeletePackageCommand.ts @@ -90,6 +90,7 @@ export interface DeletePackageCommandOutput extends DeletePackageResponse, __Met * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DeletePackageCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DeleteVpcEndpointCommand.ts b/clients/client-elasticsearch-service/src/commands/DeleteVpcEndpointCommand.ts index 8f60f9e635a7f..84f68055ccf46 100644 --- a/clients/client-elasticsearch-service/src/commands/DeleteVpcEndpointCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DeleteVpcEndpointCommand.ts @@ -76,6 +76,7 @@ export interface DeleteVpcEndpointCommandOutput extends DeleteVpcEndpointRespons * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DeleteVpcEndpointCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DescribeDomainAutoTunesCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeDomainAutoTunesCommand.ts index beb33f1238ead..128dbe4887a67 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeDomainAutoTunesCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeDomainAutoTunesCommand.ts @@ -86,6 +86,7 @@ export interface DescribeDomainAutoTunesCommandOutput extends DescribeDomainAuto * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DescribeDomainAutoTunesCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DescribeDomainChangeProgressCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeDomainChangeProgressCommand.ts index be44d8651fa08..9ce4ccb99cc24 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeDomainChangeProgressCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeDomainChangeProgressCommand.ts @@ -100,6 +100,7 @@ export interface DescribeDomainChangeProgressCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DescribeDomainChangeProgressCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainCommand.ts index 2fde9fa06fb05..d8817575d72ec 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainCommand.ts @@ -205,6 +205,7 @@ export interface DescribeElasticsearchDomainCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DescribeElasticsearchDomainCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainConfigCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainConfigCommand.ts index 7dd200dad4378..105a3c47343d3 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainConfigCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainConfigCommand.ts @@ -275,6 +275,7 @@ export interface DescribeElasticsearchDomainConfigCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DescribeElasticsearchDomainConfigCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainsCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainsCommand.ts index cd9e0831266f1..6d0b751efe980 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainsCommand.ts @@ -206,6 +206,7 @@ export interface DescribeElasticsearchDomainsCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DescribeElasticsearchDomainsCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchInstanceTypeLimitsCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchInstanceTypeLimitsCommand.ts index aaa88db680e77..e611493fd14dc 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchInstanceTypeLimitsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchInstanceTypeLimitsCommand.ts @@ -126,6 +126,7 @@ export interface DescribeElasticsearchInstanceTypeLimitsCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DescribeElasticsearchInstanceTypeLimitsCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DescribeInboundCrossClusterSearchConnectionsCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeInboundCrossClusterSearchConnectionsCommand.ts index c444849347957..6f1d65c378717 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeInboundCrossClusterSearchConnectionsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeInboundCrossClusterSearchConnectionsCommand.ts @@ -102,6 +102,7 @@ export interface DescribeInboundCrossClusterSearchConnectionsCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DescribeInboundCrossClusterSearchConnectionsCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.ts index c34f1329acc1d..2067b1b976522 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.ts @@ -103,6 +103,7 @@ export interface DescribeOutboundCrossClusterSearchConnectionsCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DescribeOutboundCrossClusterSearchConnectionsCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DescribePackagesCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribePackagesCommand.ts index 1a0f26bbf673e..b2c95b34c277b 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribePackagesCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribePackagesCommand.ts @@ -99,6 +99,7 @@ export interface DescribePackagesCommandOutput extends DescribePackagesResponse, * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DescribePackagesCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.ts index 795d32891ba24..463d8c7573476 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.ts @@ -99,6 +99,7 @@ export interface DescribeReservedElasticsearchInstanceOfferingsCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DescribeReservedElasticsearchInstanceOfferingsCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstancesCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstancesCommand.ts index 4b95f3ee2b478..8fbeef47ca3e2 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstancesCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstancesCommand.ts @@ -104,6 +104,7 @@ export interface DescribeReservedElasticsearchInstancesCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DescribeReservedElasticsearchInstancesCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DescribeVpcEndpointsCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeVpcEndpointsCommand.ts index e8b5c47c0ad9b..3422430b6167d 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeVpcEndpointsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeVpcEndpointsCommand.ts @@ -100,6 +100,7 @@ export interface DescribeVpcEndpointsCommandOutput extends DescribeVpcEndpointsR * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DescribeVpcEndpointsCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/DissociatePackageCommand.ts b/clients/client-elasticsearch-service/src/commands/DissociatePackageCommand.ts index 7f0aec6638079..6bdb024253ca9 100644 --- a/clients/client-elasticsearch-service/src/commands/DissociatePackageCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DissociatePackageCommand.ts @@ -91,6 +91,7 @@ export interface DissociatePackageCommandOutput extends DissociatePackageRespons * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class DissociatePackageCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/GetCompatibleElasticsearchVersionsCommand.ts b/clients/client-elasticsearch-service/src/commands/GetCompatibleElasticsearchVersionsCommand.ts index 2a68311bf095e..4df446a3a1a10 100644 --- a/clients/client-elasticsearch-service/src/commands/GetCompatibleElasticsearchVersionsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/GetCompatibleElasticsearchVersionsCommand.ts @@ -96,6 +96,7 @@ export interface GetCompatibleElasticsearchVersionsCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class GetCompatibleElasticsearchVersionsCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/GetPackageVersionHistoryCommand.ts b/clients/client-elasticsearch-service/src/commands/GetPackageVersionHistoryCommand.ts index dc0180184e5c0..270fbe77317be 100644 --- a/clients/client-elasticsearch-service/src/commands/GetPackageVersionHistoryCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/GetPackageVersionHistoryCommand.ts @@ -84,6 +84,7 @@ export interface GetPackageVersionHistoryCommandOutput extends GetPackageVersion * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class GetPackageVersionHistoryCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/GetUpgradeHistoryCommand.ts b/clients/client-elasticsearch-service/src/commands/GetUpgradeHistoryCommand.ts index 9d71e73b2a511..347b0b7eccbe3 100644 --- a/clients/client-elasticsearch-service/src/commands/GetUpgradeHistoryCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/GetUpgradeHistoryCommand.ts @@ -93,6 +93,7 @@ export interface GetUpgradeHistoryCommandOutput extends GetUpgradeHistoryRespons * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class GetUpgradeHistoryCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/GetUpgradeStatusCommand.ts b/clients/client-elasticsearch-service/src/commands/GetUpgradeStatusCommand.ts index 9e2556cd1fbd8..f669cc17b0c80 100644 --- a/clients/client-elasticsearch-service/src/commands/GetUpgradeStatusCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/GetUpgradeStatusCommand.ts @@ -76,6 +76,7 @@ export interface GetUpgradeStatusCommandOutput extends GetUpgradeStatusResponse, * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class GetUpgradeStatusCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/ListDomainNamesCommand.ts b/clients/client-elasticsearch-service/src/commands/ListDomainNamesCommand.ts index 693fc38a03656..20ab1ff582376 100644 --- a/clients/client-elasticsearch-service/src/commands/ListDomainNamesCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListDomainNamesCommand.ts @@ -70,6 +70,7 @@ export interface ListDomainNamesCommandOutput extends ListDomainNamesResponse, _ * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class ListDomainNamesCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/ListDomainsForPackageCommand.ts b/clients/client-elasticsearch-service/src/commands/ListDomainsForPackageCommand.ts index 65504e4ada9bb..f3cc1743f7209 100644 --- a/clients/client-elasticsearch-service/src/commands/ListDomainsForPackageCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListDomainsForPackageCommand.ts @@ -92,6 +92,7 @@ export interface ListDomainsForPackageCommandOutput extends ListDomainsForPackag * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class ListDomainsForPackageCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/ListElasticsearchInstanceTypesCommand.ts b/clients/client-elasticsearch-service/src/commands/ListElasticsearchInstanceTypesCommand.ts index a81e35b8c75e5..58480d6fd6762 100644 --- a/clients/client-elasticsearch-service/src/commands/ListElasticsearchInstanceTypesCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListElasticsearchInstanceTypesCommand.ts @@ -82,6 +82,7 @@ export interface ListElasticsearchInstanceTypesCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class ListElasticsearchInstanceTypesCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/ListElasticsearchVersionsCommand.ts b/clients/client-elasticsearch-service/src/commands/ListElasticsearchVersionsCommand.ts index 72c9645726d79..d8b5cec825715 100644 --- a/clients/client-elasticsearch-service/src/commands/ListElasticsearchVersionsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListElasticsearchVersionsCommand.ts @@ -75,6 +75,7 @@ export interface ListElasticsearchVersionsCommandOutput extends ListElasticsearc * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class ListElasticsearchVersionsCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/ListPackagesForDomainCommand.ts b/clients/client-elasticsearch-service/src/commands/ListPackagesForDomainCommand.ts index e3f91f19adbe6..07a91c9b9a305 100644 --- a/clients/client-elasticsearch-service/src/commands/ListPackagesForDomainCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListPackagesForDomainCommand.ts @@ -92,6 +92,7 @@ export interface ListPackagesForDomainCommandOutput extends ListPackagesForDomai * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class ListPackagesForDomainCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/ListTagsCommand.ts b/clients/client-elasticsearch-service/src/commands/ListTagsCommand.ts index 92ce93dd53c4d..8be20c437a3a0 100644 --- a/clients/client-elasticsearch-service/src/commands/ListTagsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListTagsCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class ListTagsCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/ListVpcEndpointAccessCommand.ts b/clients/client-elasticsearch-service/src/commands/ListVpcEndpointAccessCommand.ts index 59476269ab4ea..82e3e8ed4ba07 100644 --- a/clients/client-elasticsearch-service/src/commands/ListVpcEndpointAccessCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListVpcEndpointAccessCommand.ts @@ -79,6 +79,7 @@ export interface ListVpcEndpointAccessCommandOutput extends ListVpcEndpointAcces * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class ListVpcEndpointAccessCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsCommand.ts b/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsCommand.ts index 4167d493c5cdc..7fd7a589cbfaf 100644 --- a/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsCommand.ts @@ -76,6 +76,7 @@ export interface ListVpcEndpointsCommandOutput extends ListVpcEndpointsResponse, * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class ListVpcEndpointsCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsForDomainCommand.ts b/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsForDomainCommand.ts index 5ef85ef07947f..391d59ca7fd28 100644 --- a/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsForDomainCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsForDomainCommand.ts @@ -80,6 +80,7 @@ export interface ListVpcEndpointsForDomainCommandOutput extends ListVpcEndpoints * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class ListVpcEndpointsForDomainCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.ts b/clients/client-elasticsearch-service/src/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.ts index 89cc33fc5bcab..1b2c0a557c6d2 100644 --- a/clients/client-elasticsearch-service/src/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.ts @@ -89,6 +89,7 @@ export interface PurchaseReservedElasticsearchInstanceOfferingCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class PurchaseReservedElasticsearchInstanceOfferingCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/RejectInboundCrossClusterSearchConnectionCommand.ts b/clients/client-elasticsearch-service/src/commands/RejectInboundCrossClusterSearchConnectionCommand.ts index 77b00a354165a..4f16e48b32428 100644 --- a/clients/client-elasticsearch-service/src/commands/RejectInboundCrossClusterSearchConnectionCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/RejectInboundCrossClusterSearchConnectionCommand.ts @@ -90,6 +90,7 @@ export interface RejectInboundCrossClusterSearchConnectionCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class RejectInboundCrossClusterSearchConnectionCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/RemoveTagsCommand.ts b/clients/client-elasticsearch-service/src/commands/RemoveTagsCommand.ts index 5fca2a1605c00..4c95c1d607152 100644 --- a/clients/client-elasticsearch-service/src/commands/RemoveTagsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/RemoveTagsCommand.ts @@ -69,6 +69,7 @@ export interface RemoveTagsCommandOutput extends __MetadataBearer {} * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class RemoveTagsCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/RevokeVpcEndpointAccessCommand.ts b/clients/client-elasticsearch-service/src/commands/RevokeVpcEndpointAccessCommand.ts index 1b46825e495c8..87a8c236f967b 100644 --- a/clients/client-elasticsearch-service/src/commands/RevokeVpcEndpointAccessCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/RevokeVpcEndpointAccessCommand.ts @@ -74,6 +74,7 @@ export interface RevokeVpcEndpointAccessCommandOutput extends RevokeVpcEndpointA * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class RevokeVpcEndpointAccessCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/StartElasticsearchServiceSoftwareUpdateCommand.ts b/clients/client-elasticsearch-service/src/commands/StartElasticsearchServiceSoftwareUpdateCommand.ts index 2fe45e633d7fc..cb8bc72fa6957 100644 --- a/clients/client-elasticsearch-service/src/commands/StartElasticsearchServiceSoftwareUpdateCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/StartElasticsearchServiceSoftwareUpdateCommand.ts @@ -89,6 +89,7 @@ export interface StartElasticsearchServiceSoftwareUpdateCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class StartElasticsearchServiceSoftwareUpdateCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/UpdateElasticsearchDomainConfigCommand.ts b/clients/client-elasticsearch-service/src/commands/UpdateElasticsearchDomainConfigCommand.ts index baebd048706d5..9b9579996223d 100644 --- a/clients/client-elasticsearch-service/src/commands/UpdateElasticsearchDomainConfigCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/UpdateElasticsearchDomainConfigCommand.ts @@ -388,6 +388,7 @@ export interface UpdateElasticsearchDomainConfigCommandOutput * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class UpdateElasticsearchDomainConfigCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/UpdatePackageCommand.ts b/clients/client-elasticsearch-service/src/commands/UpdatePackageCommand.ts index 22573eb167e7f..6c727f23e1e1c 100644 --- a/clients/client-elasticsearch-service/src/commands/UpdatePackageCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/UpdatePackageCommand.ts @@ -96,6 +96,7 @@ export interface UpdatePackageCommandOutput extends UpdatePackageResponse, __Met * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class UpdatePackageCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/UpdateVpcEndpointCommand.ts b/clients/client-elasticsearch-service/src/commands/UpdateVpcEndpointCommand.ts index 161646c0cf84c..2d01af942552f 100644 --- a/clients/client-elasticsearch-service/src/commands/UpdateVpcEndpointCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/UpdateVpcEndpointCommand.ts @@ -103,6 +103,7 @@ export interface UpdateVpcEndpointCommandOutput extends UpdateVpcEndpointRespons * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class UpdateVpcEndpointCommand extends $Command diff --git a/clients/client-elasticsearch-service/src/commands/UpgradeElasticsearchDomainCommand.ts b/clients/client-elasticsearch-service/src/commands/UpgradeElasticsearchDomainCommand.ts index 613c7c53f3235..0f45e9b5e0611 100644 --- a/clients/client-elasticsearch-service/src/commands/UpgradeElasticsearchDomainCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/UpgradeElasticsearchDomainCommand.ts @@ -89,6 +89,7 @@ export interface UpgradeElasticsearchDomainCommandOutput extends UpgradeElastics * @throws {@link ElasticsearchServiceServiceException} *

Base exception class for all service exceptions from ElasticsearchService service.

* + * * @public */ export class UpgradeElasticsearchDomainCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/CancelJobRunCommand.ts b/clients/client-emr-containers/src/commands/CancelJobRunCommand.ts index 350f9e70602d7..602b85d44f9d9 100644 --- a/clients/client-emr-containers/src/commands/CancelJobRunCommand.ts +++ b/clients/client-emr-containers/src/commands/CancelJobRunCommand.ts @@ -64,6 +64,7 @@ export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __Metad * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class CancelJobRunCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/CreateJobTemplateCommand.ts b/clients/client-emr-containers/src/commands/CreateJobTemplateCommand.ts index e599437f53274..5c58f397123bf 100644 --- a/clients/client-emr-containers/src/commands/CreateJobTemplateCommand.ts +++ b/clients/client-emr-containers/src/commands/CreateJobTemplateCommand.ts @@ -134,6 +134,7 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class CreateJobTemplateCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/CreateManagedEndpointCommand.ts b/clients/client-emr-containers/src/commands/CreateManagedEndpointCommand.ts index 765d48258a849..71b49390cc121 100644 --- a/clients/client-emr-containers/src/commands/CreateManagedEndpointCommand.ts +++ b/clients/client-emr-containers/src/commands/CreateManagedEndpointCommand.ts @@ -118,6 +118,7 @@ export interface CreateManagedEndpointCommandOutput extends CreateManagedEndpoin * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class CreateManagedEndpointCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/CreateSecurityConfigurationCommand.ts b/clients/client-emr-containers/src/commands/CreateSecurityConfigurationCommand.ts index 68328cbc3441e..e81ec8ecaa4d2 100644 --- a/clients/client-emr-containers/src/commands/CreateSecurityConfigurationCommand.ts +++ b/clients/client-emr-containers/src/commands/CreateSecurityConfigurationCommand.ts @@ -96,6 +96,7 @@ export interface CreateSecurityConfigurationCommandOutput * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class CreateSecurityConfigurationCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/CreateVirtualClusterCommand.ts b/clients/client-emr-containers/src/commands/CreateVirtualClusterCommand.ts index b26d85cd62551..c85b4c2126c78 100644 --- a/clients/client-emr-containers/src/commands/CreateVirtualClusterCommand.ts +++ b/clients/client-emr-containers/src/commands/CreateVirtualClusterCommand.ts @@ -86,6 +86,7 @@ export interface CreateVirtualClusterCommandOutput extends CreateVirtualClusterR * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class CreateVirtualClusterCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/DeleteJobTemplateCommand.ts b/clients/client-emr-containers/src/commands/DeleteJobTemplateCommand.ts index 9a17fd91d5934..d534ea96b61ca 100644 --- a/clients/client-emr-containers/src/commands/DeleteJobTemplateCommand.ts +++ b/clients/client-emr-containers/src/commands/DeleteJobTemplateCommand.ts @@ -64,6 +64,7 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class DeleteJobTemplateCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/DeleteManagedEndpointCommand.ts b/clients/client-emr-containers/src/commands/DeleteManagedEndpointCommand.ts index a8cb339e783aa..c6573e6f76d62 100644 --- a/clients/client-emr-containers/src/commands/DeleteManagedEndpointCommand.ts +++ b/clients/client-emr-containers/src/commands/DeleteManagedEndpointCommand.ts @@ -64,6 +64,7 @@ export interface DeleteManagedEndpointCommandOutput extends DeleteManagedEndpoin * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class DeleteManagedEndpointCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/DeleteVirtualClusterCommand.ts b/clients/client-emr-containers/src/commands/DeleteVirtualClusterCommand.ts index 65a2f74c8f023..613efe337a64b 100644 --- a/clients/client-emr-containers/src/commands/DeleteVirtualClusterCommand.ts +++ b/clients/client-emr-containers/src/commands/DeleteVirtualClusterCommand.ts @@ -64,6 +64,7 @@ export interface DeleteVirtualClusterCommandOutput extends DeleteVirtualClusterR * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class DeleteVirtualClusterCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/DescribeJobRunCommand.ts b/clients/client-emr-containers/src/commands/DescribeJobRunCommand.ts index 17e1622b89b3f..4e5a8eefd9837 100644 --- a/clients/client-emr-containers/src/commands/DescribeJobRunCommand.ts +++ b/clients/client-emr-containers/src/commands/DescribeJobRunCommand.ts @@ -143,6 +143,7 @@ export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __M * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class DescribeJobRunCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/DescribeJobTemplateCommand.ts b/clients/client-emr-containers/src/commands/DescribeJobTemplateCommand.ts index 06b13125f9a3b..54446d643ecff 100644 --- a/clients/client-emr-containers/src/commands/DescribeJobTemplateCommand.ts +++ b/clients/client-emr-containers/src/commands/DescribeJobTemplateCommand.ts @@ -137,6 +137,7 @@ export interface DescribeJobTemplateCommandOutput extends DescribeJobTemplateRes * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class DescribeJobTemplateCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/DescribeManagedEndpointCommand.ts b/clients/client-emr-containers/src/commands/DescribeManagedEndpointCommand.ts index ed6848207ef47..0851d5449547c 100644 --- a/clients/client-emr-containers/src/commands/DescribeManagedEndpointCommand.ts +++ b/clients/client-emr-containers/src/commands/DescribeManagedEndpointCommand.ts @@ -132,6 +132,7 @@ export interface DescribeManagedEndpointCommandOutput extends DescribeManagedEnd * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class DescribeManagedEndpointCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/DescribeSecurityConfigurationCommand.ts b/clients/client-emr-containers/src/commands/DescribeSecurityConfigurationCommand.ts index befc350625903..72d2da0c9ef66 100644 --- a/clients/client-emr-containers/src/commands/DescribeSecurityConfigurationCommand.ts +++ b/clients/client-emr-containers/src/commands/DescribeSecurityConfigurationCommand.ts @@ -103,6 +103,7 @@ export interface DescribeSecurityConfigurationCommandOutput * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class DescribeSecurityConfigurationCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/DescribeVirtualClusterCommand.ts b/clients/client-emr-containers/src/commands/DescribeVirtualClusterCommand.ts index b8ec4445771c2..3302f34978475 100644 --- a/clients/client-emr-containers/src/commands/DescribeVirtualClusterCommand.ts +++ b/clients/client-emr-containers/src/commands/DescribeVirtualClusterCommand.ts @@ -88,6 +88,7 @@ export interface DescribeVirtualClusterCommandOutput extends DescribeVirtualClus * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class DescribeVirtualClusterCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/GetManagedEndpointSessionCredentialsCommand.ts b/clients/client-emr-containers/src/commands/GetManagedEndpointSessionCredentialsCommand.ts index d50a46008719b..2cb691a7f2c15 100644 --- a/clients/client-emr-containers/src/commands/GetManagedEndpointSessionCredentialsCommand.ts +++ b/clients/client-emr-containers/src/commands/GetManagedEndpointSessionCredentialsCommand.ts @@ -86,6 +86,7 @@ export interface GetManagedEndpointSessionCredentialsCommandOutput * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class GetManagedEndpointSessionCredentialsCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/ListJobRunsCommand.ts b/clients/client-emr-containers/src/commands/ListJobRunsCommand.ts index a9b5044fb588f..c28a65c8aee36 100644 --- a/clients/client-emr-containers/src/commands/ListJobRunsCommand.ts +++ b/clients/client-emr-containers/src/commands/ListJobRunsCommand.ts @@ -146,6 +146,7 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class ListJobRunsCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/ListJobTemplatesCommand.ts b/clients/client-emr-containers/src/commands/ListJobTemplatesCommand.ts index 25c5cd47c5d8f..4ca3cc27645cc 100644 --- a/clients/client-emr-containers/src/commands/ListJobTemplatesCommand.ts +++ b/clients/client-emr-containers/src/commands/ListJobTemplatesCommand.ts @@ -140,6 +140,7 @@ export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse, * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class ListJobTemplatesCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/ListManagedEndpointsCommand.ts b/clients/client-emr-containers/src/commands/ListManagedEndpointsCommand.ts index 8e9a15b9866f0..52ef81937a8dc 100644 --- a/clients/client-emr-containers/src/commands/ListManagedEndpointsCommand.ts +++ b/clients/client-emr-containers/src/commands/ListManagedEndpointsCommand.ts @@ -141,6 +141,7 @@ export interface ListManagedEndpointsCommandOutput extends ListManagedEndpointsR * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class ListManagedEndpointsCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/ListSecurityConfigurationsCommand.ts b/clients/client-emr-containers/src/commands/ListSecurityConfigurationsCommand.ts index 75a8386076def..d0194361c7a9a 100644 --- a/clients/client-emr-containers/src/commands/ListSecurityConfigurationsCommand.ts +++ b/clients/client-emr-containers/src/commands/ListSecurityConfigurationsCommand.ts @@ -101,6 +101,7 @@ export interface ListSecurityConfigurationsCommandOutput extends ListSecurityCon * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class ListSecurityConfigurationsCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/ListTagsForResourceCommand.ts b/clients/client-emr-containers/src/commands/ListTagsForResourceCommand.ts index 6240486045d32..1c78973717911 100644 --- a/clients/client-emr-containers/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-emr-containers/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/ListVirtualClustersCommand.ts b/clients/client-emr-containers/src/commands/ListVirtualClustersCommand.ts index 1b8006c81bfd0..9cad0635c773a 100644 --- a/clients/client-emr-containers/src/commands/ListVirtualClustersCommand.ts +++ b/clients/client-emr-containers/src/commands/ListVirtualClustersCommand.ts @@ -97,6 +97,7 @@ export interface ListVirtualClustersCommandOutput extends ListVirtualClustersRes * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class ListVirtualClustersCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/StartJobRunCommand.ts b/clients/client-emr-containers/src/commands/StartJobRunCommand.ts index d0a55f6615965..adaced044102e 100644 --- a/clients/client-emr-containers/src/commands/StartJobRunCommand.ts +++ b/clients/client-emr-containers/src/commands/StartJobRunCommand.ts @@ -132,6 +132,7 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class StartJobRunCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/TagResourceCommand.ts b/clients/client-emr-containers/src/commands/TagResourceCommand.ts index c9a5479b651de..39341f578da99 100644 --- a/clients/client-emr-containers/src/commands/TagResourceCommand.ts +++ b/clients/client-emr-containers/src/commands/TagResourceCommand.ts @@ -73,6 +73,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-emr-containers/src/commands/UntagResourceCommand.ts b/clients/client-emr-containers/src/commands/UntagResourceCommand.ts index 148740d4d5c43..e417a8a34635d 100644 --- a/clients/client-emr-containers/src/commands/UntagResourceCommand.ts +++ b/clients/client-emr-containers/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link EMRContainersServiceException} *

Base exception class for all service exceptions from EMRContainers service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/CancelJobRunCommand.ts b/clients/client-emr-serverless/src/commands/CancelJobRunCommand.ts index 4ea00d7bbf995..71486cb2420ae 100644 --- a/clients/client-emr-serverless/src/commands/CancelJobRunCommand.ts +++ b/clients/client-emr-serverless/src/commands/CancelJobRunCommand.ts @@ -67,6 +67,7 @@ export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __Metad * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class CancelJobRunCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/CreateApplicationCommand.ts b/clients/client-emr-serverless/src/commands/CreateApplicationCommand.ts index 184b102a912e8..4349a2318d711 100644 --- a/clients/client-emr-serverless/src/commands/CreateApplicationCommand.ts +++ b/clients/client-emr-serverless/src/commands/CreateApplicationCommand.ts @@ -172,6 +172,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/DeleteApplicationCommand.ts b/clients/client-emr-serverless/src/commands/DeleteApplicationCommand.ts index 1ac1fe5439f90..683c90dc7f6ee 100644 --- a/clients/client-emr-serverless/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-emr-serverless/src/commands/DeleteApplicationCommand.ts @@ -64,6 +64,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/GetApplicationCommand.ts b/clients/client-emr-serverless/src/commands/GetApplicationCommand.ts index 1f5a6723a9ad6..81243671da67e 100644 --- a/clients/client-emr-serverless/src/commands/GetApplicationCommand.ts +++ b/clients/client-emr-serverless/src/commands/GetApplicationCommand.ts @@ -175,6 +175,7 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class GetApplicationCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/GetDashboardForJobRunCommand.ts b/clients/client-emr-serverless/src/commands/GetDashboardForJobRunCommand.ts index 97cc7b8bea823..be250521a9da1 100644 --- a/clients/client-emr-serverless/src/commands/GetDashboardForJobRunCommand.ts +++ b/clients/client-emr-serverless/src/commands/GetDashboardForJobRunCommand.ts @@ -76,6 +76,7 @@ export interface GetDashboardForJobRunCommandOutput extends GetDashboardForJobRu * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class GetDashboardForJobRunCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/GetJobRunCommand.ts b/clients/client-emr-serverless/src/commands/GetJobRunCommand.ts index 6e08d8cc56fac..b520d70c94228 100644 --- a/clients/client-emr-serverless/src/commands/GetJobRunCommand.ts +++ b/clients/client-emr-serverless/src/commands/GetJobRunCommand.ts @@ -170,6 +170,7 @@ export interface GetJobRunCommandOutput extends GetJobRunResponse, __MetadataBea * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class GetJobRunCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/ListApplicationsCommand.ts b/clients/client-emr-serverless/src/commands/ListApplicationsCommand.ts index 1b72cd2126824..0680a7576ffbd 100644 --- a/clients/client-emr-serverless/src/commands/ListApplicationsCommand.ts +++ b/clients/client-emr-serverless/src/commands/ListApplicationsCommand.ts @@ -80,6 +80,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/ListJobRunAttemptsCommand.ts b/clients/client-emr-serverless/src/commands/ListJobRunAttemptsCommand.ts index 6a085ac3c4372..d67306a3524e6 100644 --- a/clients/client-emr-serverless/src/commands/ListJobRunAttemptsCommand.ts +++ b/clients/client-emr-serverless/src/commands/ListJobRunAttemptsCommand.ts @@ -87,6 +87,7 @@ export interface ListJobRunAttemptsCommandOutput extends ListJobRunAttemptsRespo * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class ListJobRunAttemptsCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/ListJobRunsCommand.ts b/clients/client-emr-serverless/src/commands/ListJobRunsCommand.ts index 94311dcf5b915..bd7872e601512 100644 --- a/clients/client-emr-serverless/src/commands/ListJobRunsCommand.ts +++ b/clients/client-emr-serverless/src/commands/ListJobRunsCommand.ts @@ -90,6 +90,7 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class ListJobRunsCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/ListTagsForResourceCommand.ts b/clients/client-emr-serverless/src/commands/ListTagsForResourceCommand.ts index 44fcd6eb74724..97b625ca23f6d 100644 --- a/clients/client-emr-serverless/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-emr-serverless/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/StartApplicationCommand.ts b/clients/client-emr-serverless/src/commands/StartApplicationCommand.ts index 837744b9a7e47..67a8a21ee7d64 100644 --- a/clients/client-emr-serverless/src/commands/StartApplicationCommand.ts +++ b/clients/client-emr-serverless/src/commands/StartApplicationCommand.ts @@ -66,6 +66,7 @@ export interface StartApplicationCommandOutput extends StartApplicationResponse, * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class StartApplicationCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/StartJobRunCommand.ts b/clients/client-emr-serverless/src/commands/StartJobRunCommand.ts index 876af6591db57..6fca2ef63cbe7 100644 --- a/clients/client-emr-serverless/src/commands/StartJobRunCommand.ts +++ b/clients/client-emr-serverless/src/commands/StartJobRunCommand.ts @@ -140,6 +140,7 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class StartJobRunCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/StopApplicationCommand.ts b/clients/client-emr-serverless/src/commands/StopApplicationCommand.ts index 7b59e767afdfb..9c13ab559afae 100644 --- a/clients/client-emr-serverless/src/commands/StopApplicationCommand.ts +++ b/clients/client-emr-serverless/src/commands/StopApplicationCommand.ts @@ -64,6 +64,7 @@ export interface StopApplicationCommandOutput extends StopApplicationResponse, _ * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class StopApplicationCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/TagResourceCommand.ts b/clients/client-emr-serverless/src/commands/TagResourceCommand.ts index 8fbfb0ee6fdbc..cf1a7278d9a21 100644 --- a/clients/client-emr-serverless/src/commands/TagResourceCommand.ts +++ b/clients/client-emr-serverless/src/commands/TagResourceCommand.ts @@ -70,6 +70,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/UntagResourceCommand.ts b/clients/client-emr-serverless/src/commands/UntagResourceCommand.ts index 3b1203b5ab2b1..cf1ceb1b28273 100644 --- a/clients/client-emr-serverless/src/commands/UntagResourceCommand.ts +++ b/clients/client-emr-serverless/src/commands/UntagResourceCommand.ts @@ -66,6 +66,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-emr-serverless/src/commands/UpdateApplicationCommand.ts b/clients/client-emr-serverless/src/commands/UpdateApplicationCommand.ts index 34b3309b3e104..93218c9cb32b6 100644 --- a/clients/client-emr-serverless/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-emr-serverless/src/commands/UpdateApplicationCommand.ts @@ -270,6 +270,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons * @throws {@link EMRServerlessServiceException} *

Base exception class for all service exceptions from EMRServerless service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-emr/src/commands/AddInstanceFleetCommand.ts b/clients/client-emr/src/commands/AddInstanceFleetCommand.ts index cb9188e46c34e..ef794ba4aa8ca 100644 --- a/clients/client-emr/src/commands/AddInstanceFleetCommand.ts +++ b/clients/client-emr/src/commands/AddInstanceFleetCommand.ts @@ -147,6 +147,7 @@ export interface AddInstanceFleetCommandOutput extends AddInstanceFleetOutput, _ * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class AddInstanceFleetCommand extends $Command diff --git a/clients/client-emr/src/commands/AddInstanceGroupsCommand.ts b/clients/client-emr/src/commands/AddInstanceGroupsCommand.ts index 41b498b6c630e..b8a350ec45c0a 100644 --- a/clients/client-emr/src/commands/AddInstanceGroupsCommand.ts +++ b/clients/client-emr/src/commands/AddInstanceGroupsCommand.ts @@ -143,6 +143,7 @@ export interface AddInstanceGroupsCommandOutput extends AddInstanceGroupsOutput, * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class AddInstanceGroupsCommand extends $Command diff --git a/clients/client-emr/src/commands/AddJobFlowStepsCommand.ts b/clients/client-emr/src/commands/AddJobFlowStepsCommand.ts index aaff10df2db82..eeebbacfa0942 100644 --- a/clients/client-emr/src/commands/AddJobFlowStepsCommand.ts +++ b/clients/client-emr/src/commands/AddJobFlowStepsCommand.ts @@ -99,6 +99,7 @@ export interface AddJobFlowStepsCommandOutput extends AddJobFlowStepsOutput, __M * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class AddJobFlowStepsCommand extends $Command diff --git a/clients/client-emr/src/commands/AddTagsCommand.ts b/clients/client-emr/src/commands/AddTagsCommand.ts index e67af8327f1e4..8139c205d7c82 100644 --- a/clients/client-emr/src/commands/AddTagsCommand.ts +++ b/clients/client-emr/src/commands/AddTagsCommand.ts @@ -70,6 +70,7 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {} * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class AddTagsCommand extends $Command diff --git a/clients/client-emr/src/commands/CancelStepsCommand.ts b/clients/client-emr/src/commands/CancelStepsCommand.ts index c79b411b6f24d..8fa6205a5a40a 100644 --- a/clients/client-emr/src/commands/CancelStepsCommand.ts +++ b/clients/client-emr/src/commands/CancelStepsCommand.ts @@ -76,6 +76,7 @@ export interface CancelStepsCommandOutput extends CancelStepsOutput, __MetadataB * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class CancelStepsCommand extends $Command diff --git a/clients/client-emr/src/commands/CreateSecurityConfigurationCommand.ts b/clients/client-emr/src/commands/CreateSecurityConfigurationCommand.ts index 1b2bff7f1b069..cda96b6a6adb8 100644 --- a/clients/client-emr/src/commands/CreateSecurityConfigurationCommand.ts +++ b/clients/client-emr/src/commands/CreateSecurityConfigurationCommand.ts @@ -65,6 +65,7 @@ export interface CreateSecurityConfigurationCommandOutput extends CreateSecurity * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class CreateSecurityConfigurationCommand extends $Command diff --git a/clients/client-emr/src/commands/CreateStudioCommand.ts b/clients/client-emr/src/commands/CreateStudioCommand.ts index 5be8c2632bea4..1a1fa7e45826d 100644 --- a/clients/client-emr/src/commands/CreateStudioCommand.ts +++ b/clients/client-emr/src/commands/CreateStudioCommand.ts @@ -86,6 +86,7 @@ export interface CreateStudioCommandOutput extends CreateStudioOutput, __Metadat * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class CreateStudioCommand extends $Command diff --git a/clients/client-emr/src/commands/CreateStudioSessionMappingCommand.ts b/clients/client-emr/src/commands/CreateStudioSessionMappingCommand.ts index be99516fd1f39..f1f093e9e61d2 100644 --- a/clients/client-emr/src/commands/CreateStudioSessionMappingCommand.ts +++ b/clients/client-emr/src/commands/CreateStudioSessionMappingCommand.ts @@ -68,6 +68,7 @@ export interface CreateStudioSessionMappingCommandOutput extends __MetadataBeare * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class CreateStudioSessionMappingCommand extends $Command diff --git a/clients/client-emr/src/commands/DeleteSecurityConfigurationCommand.ts b/clients/client-emr/src/commands/DeleteSecurityConfigurationCommand.ts index d066a619d1724..6a63a65a137fd 100644 --- a/clients/client-emr/src/commands/DeleteSecurityConfigurationCommand.ts +++ b/clients/client-emr/src/commands/DeleteSecurityConfigurationCommand.ts @@ -60,6 +60,7 @@ export interface DeleteSecurityConfigurationCommandOutput extends DeleteSecurity * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class DeleteSecurityConfigurationCommand extends $Command diff --git a/clients/client-emr/src/commands/DeleteStudioCommand.ts b/clients/client-emr/src/commands/DeleteStudioCommand.ts index 170944d77ee9d..5d626df5644ae 100644 --- a/clients/client-emr/src/commands/DeleteStudioCommand.ts +++ b/clients/client-emr/src/commands/DeleteStudioCommand.ts @@ -60,6 +60,7 @@ export interface DeleteStudioCommandOutput extends __MetadataBearer {} * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class DeleteStudioCommand extends $Command diff --git a/clients/client-emr/src/commands/DeleteStudioSessionMappingCommand.ts b/clients/client-emr/src/commands/DeleteStudioSessionMappingCommand.ts index 4e45dde6208ae..2c19e680eef6c 100644 --- a/clients/client-emr/src/commands/DeleteStudioSessionMappingCommand.ts +++ b/clients/client-emr/src/commands/DeleteStudioSessionMappingCommand.ts @@ -63,6 +63,7 @@ export interface DeleteStudioSessionMappingCommandOutput extends __MetadataBeare * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class DeleteStudioSessionMappingCommand extends $Command diff --git a/clients/client-emr/src/commands/DescribeClusterCommand.ts b/clients/client-emr/src/commands/DescribeClusterCommand.ts index c61404184e604..f4ef33c068478 100644 --- a/clients/client-emr/src/commands/DescribeClusterCommand.ts +++ b/clients/client-emr/src/commands/DescribeClusterCommand.ts @@ -183,6 +183,7 @@ export interface DescribeClusterCommandOutput extends DescribeClusterOutput, __M * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class DescribeClusterCommand extends $Command diff --git a/clients/client-emr/src/commands/DescribeJobFlowsCommand.ts b/clients/client-emr/src/commands/DescribeJobFlowsCommand.ts index 603266ee85f8c..9e07c2a4295c8 100644 --- a/clients/client-emr/src/commands/DescribeJobFlowsCommand.ts +++ b/clients/client-emr/src/commands/DescribeJobFlowsCommand.ts @@ -192,6 +192,7 @@ export interface DescribeJobFlowsCommandOutput extends DescribeJobFlowsOutput, _ * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class DescribeJobFlowsCommand extends $Command diff --git a/clients/client-emr/src/commands/DescribeNotebookExecutionCommand.ts b/clients/client-emr/src/commands/DescribeNotebookExecutionCommand.ts index 2acf802a1e0aa..168aa42ac1ae4 100644 --- a/clients/client-emr/src/commands/DescribeNotebookExecutionCommand.ts +++ b/clients/client-emr/src/commands/DescribeNotebookExecutionCommand.ts @@ -98,6 +98,7 @@ export interface DescribeNotebookExecutionCommandOutput extends DescribeNotebook * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class DescribeNotebookExecutionCommand extends $Command diff --git a/clients/client-emr/src/commands/DescribeReleaseLabelCommand.ts b/clients/client-emr/src/commands/DescribeReleaseLabelCommand.ts index bc60de9df1082..26092cd44e127 100644 --- a/clients/client-emr/src/commands/DescribeReleaseLabelCommand.ts +++ b/clients/client-emr/src/commands/DescribeReleaseLabelCommand.ts @@ -78,6 +78,7 @@ export interface DescribeReleaseLabelCommandOutput extends DescribeReleaseLabelO * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class DescribeReleaseLabelCommand extends $Command diff --git a/clients/client-emr/src/commands/DescribeSecurityConfigurationCommand.ts b/clients/client-emr/src/commands/DescribeSecurityConfigurationCommand.ts index 53d51606f9e83..2b3cc9010f03f 100644 --- a/clients/client-emr/src/commands/DescribeSecurityConfigurationCommand.ts +++ b/clients/client-emr/src/commands/DescribeSecurityConfigurationCommand.ts @@ -70,6 +70,7 @@ export interface DescribeSecurityConfigurationCommandOutput * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class DescribeSecurityConfigurationCommand extends $Command diff --git a/clients/client-emr/src/commands/DescribeStepCommand.ts b/clients/client-emr/src/commands/DescribeStepCommand.ts index 682fa231ce6a2..bc599b6d94593 100644 --- a/clients/client-emr/src/commands/DescribeStepCommand.ts +++ b/clients/client-emr/src/commands/DescribeStepCommand.ts @@ -95,6 +95,7 @@ export interface DescribeStepCommandOutput extends DescribeStepOutput, __Metadat * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class DescribeStepCommand extends $Command diff --git a/clients/client-emr/src/commands/DescribeStudioCommand.ts b/clients/client-emr/src/commands/DescribeStudioCommand.ts index d444efdd4f4ef..09e463db2275c 100644 --- a/clients/client-emr/src/commands/DescribeStudioCommand.ts +++ b/clients/client-emr/src/commands/DescribeStudioCommand.ts @@ -92,6 +92,7 @@ export interface DescribeStudioCommandOutput extends DescribeStudioOutput, __Met * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class DescribeStudioCommand extends $Command diff --git a/clients/client-emr/src/commands/GetAutoTerminationPolicyCommand.ts b/clients/client-emr/src/commands/GetAutoTerminationPolicyCommand.ts index 7a877c09e3edd..280e72edb5ddd 100644 --- a/clients/client-emr/src/commands/GetAutoTerminationPolicyCommand.ts +++ b/clients/client-emr/src/commands/GetAutoTerminationPolicyCommand.ts @@ -57,6 +57,7 @@ export interface GetAutoTerminationPolicyCommandOutput extends GetAutoTerminatio * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class GetAutoTerminationPolicyCommand extends $Command diff --git a/clients/client-emr/src/commands/GetBlockPublicAccessConfigurationCommand.ts b/clients/client-emr/src/commands/GetBlockPublicAccessConfigurationCommand.ts index 1020224fa45ff..c4a021114403d 100644 --- a/clients/client-emr/src/commands/GetBlockPublicAccessConfigurationCommand.ts +++ b/clients/client-emr/src/commands/GetBlockPublicAccessConfigurationCommand.ts @@ -98,6 +98,7 @@ export interface GetBlockPublicAccessConfigurationCommandOutput * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class GetBlockPublicAccessConfigurationCommand extends $Command diff --git a/clients/client-emr/src/commands/GetClusterSessionCredentialsCommand.ts b/clients/client-emr/src/commands/GetClusterSessionCredentialsCommand.ts index ebe7b057a72da..37a777d2b2c7f 100644 --- a/clients/client-emr/src/commands/GetClusterSessionCredentialsCommand.ts +++ b/clients/client-emr/src/commands/GetClusterSessionCredentialsCommand.ts @@ -81,6 +81,7 @@ export interface GetClusterSessionCredentialsCommandOutput * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class GetClusterSessionCredentialsCommand extends $Command diff --git a/clients/client-emr/src/commands/GetManagedScalingPolicyCommand.ts b/clients/client-emr/src/commands/GetManagedScalingPolicyCommand.ts index 0caea17424c03..fc4d5ec70b782 100644 --- a/clients/client-emr/src/commands/GetManagedScalingPolicyCommand.ts +++ b/clients/client-emr/src/commands/GetManagedScalingPolicyCommand.ts @@ -65,6 +65,7 @@ export interface GetManagedScalingPolicyCommandOutput extends GetManagedScalingP * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class GetManagedScalingPolicyCommand extends $Command diff --git a/clients/client-emr/src/commands/GetStudioSessionMappingCommand.ts b/clients/client-emr/src/commands/GetStudioSessionMappingCommand.ts index ea831604a3985..3253c20125572 100644 --- a/clients/client-emr/src/commands/GetStudioSessionMappingCommand.ts +++ b/clients/client-emr/src/commands/GetStudioSessionMappingCommand.ts @@ -74,6 +74,7 @@ export interface GetStudioSessionMappingCommandOutput extends GetStudioSessionMa * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class GetStudioSessionMappingCommand extends $Command diff --git a/clients/client-emr/src/commands/ListBootstrapActionsCommand.ts b/clients/client-emr/src/commands/ListBootstrapActionsCommand.ts index 4cc294aaadd88..147bf7cf0c702 100644 --- a/clients/client-emr/src/commands/ListBootstrapActionsCommand.ts +++ b/clients/client-emr/src/commands/ListBootstrapActionsCommand.ts @@ -72,6 +72,7 @@ export interface ListBootstrapActionsCommandOutput extends ListBootstrapActionsO * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ListBootstrapActionsCommand extends $Command diff --git a/clients/client-emr/src/commands/ListClustersCommand.ts b/clients/client-emr/src/commands/ListClustersCommand.ts index 53c963bf0515c..c4736b796db38 100644 --- a/clients/client-emr/src/commands/ListClustersCommand.ts +++ b/clients/client-emr/src/commands/ListClustersCommand.ts @@ -103,6 +103,7 @@ export interface ListClustersCommandOutput extends ListClustersOutput, __Metadat * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ListClustersCommand extends $Command diff --git a/clients/client-emr/src/commands/ListInstanceFleetsCommand.ts b/clients/client-emr/src/commands/ListInstanceFleetsCommand.ts index f3eacab50efaf..6e7baa9e5f15e 100644 --- a/clients/client-emr/src/commands/ListInstanceFleetsCommand.ts +++ b/clients/client-emr/src/commands/ListInstanceFleetsCommand.ts @@ -161,6 +161,7 @@ export interface ListInstanceFleetsCommandOutput extends ListInstanceFleetsOutpu * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ListInstanceFleetsCommand extends $Command diff --git a/clients/client-emr/src/commands/ListInstanceGroupsCommand.ts b/clients/client-emr/src/commands/ListInstanceGroupsCommand.ts index f136ea09dd89e..fb8177254d484 100644 --- a/clients/client-emr/src/commands/ListInstanceGroupsCommand.ts +++ b/clients/client-emr/src/commands/ListInstanceGroupsCommand.ts @@ -177,6 +177,7 @@ export interface ListInstanceGroupsCommandOutput extends ListInstanceGroupsOutpu * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ListInstanceGroupsCommand extends $Command diff --git a/clients/client-emr/src/commands/ListInstancesCommand.ts b/clients/client-emr/src/commands/ListInstancesCommand.ts index b465d51a84348..d0f2f1ee0b976 100644 --- a/clients/client-emr/src/commands/ListInstancesCommand.ts +++ b/clients/client-emr/src/commands/ListInstancesCommand.ts @@ -107,6 +107,7 @@ export interface ListInstancesCommandOutput extends ListInstancesOutput, __Metad * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ListInstancesCommand extends $Command diff --git a/clients/client-emr/src/commands/ListNotebookExecutionsCommand.ts b/clients/client-emr/src/commands/ListNotebookExecutionsCommand.ts index 870e4e06628f9..90410a066ba7a 100644 --- a/clients/client-emr/src/commands/ListNotebookExecutionsCommand.ts +++ b/clients/client-emr/src/commands/ListNotebookExecutionsCommand.ts @@ -85,6 +85,7 @@ export interface ListNotebookExecutionsCommandOutput extends ListNotebookExecuti * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ListNotebookExecutionsCommand extends $Command diff --git a/clients/client-emr/src/commands/ListReleaseLabelsCommand.ts b/clients/client-emr/src/commands/ListReleaseLabelsCommand.ts index 58aa1f014e9fd..7d3ca799b0035 100644 --- a/clients/client-emr/src/commands/ListReleaseLabelsCommand.ts +++ b/clients/client-emr/src/commands/ListReleaseLabelsCommand.ts @@ -71,6 +71,7 @@ export interface ListReleaseLabelsCommandOutput extends ListReleaseLabelsOutput, * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ListReleaseLabelsCommand extends $Command diff --git a/clients/client-emr/src/commands/ListSecurityConfigurationsCommand.ts b/clients/client-emr/src/commands/ListSecurityConfigurationsCommand.ts index 002ce0f635b07..568b842e3d3c8 100644 --- a/clients/client-emr/src/commands/ListSecurityConfigurationsCommand.ts +++ b/clients/client-emr/src/commands/ListSecurityConfigurationsCommand.ts @@ -71,6 +71,7 @@ export interface ListSecurityConfigurationsCommandOutput extends ListSecurityCon * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ListSecurityConfigurationsCommand extends $Command diff --git a/clients/client-emr/src/commands/ListStepsCommand.ts b/clients/client-emr/src/commands/ListStepsCommand.ts index 0106328d24501..cf244a32d1f39 100644 --- a/clients/client-emr/src/commands/ListStepsCommand.ts +++ b/clients/client-emr/src/commands/ListStepsCommand.ts @@ -108,6 +108,7 @@ export interface ListStepsCommandOutput extends ListStepsOutput, __MetadataBeare * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ListStepsCommand extends $Command diff --git a/clients/client-emr/src/commands/ListStudioSessionMappingsCommand.ts b/clients/client-emr/src/commands/ListStudioSessionMappingsCommand.ts index 22580efa6e9c2..76c78693a5e79 100644 --- a/clients/client-emr/src/commands/ListStudioSessionMappingsCommand.ts +++ b/clients/client-emr/src/commands/ListStudioSessionMappingsCommand.ts @@ -75,6 +75,7 @@ export interface ListStudioSessionMappingsCommandOutput extends ListStudioSessio * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ListStudioSessionMappingsCommand extends $Command diff --git a/clients/client-emr/src/commands/ListStudiosCommand.ts b/clients/client-emr/src/commands/ListStudiosCommand.ts index a75e79a091e3b..5c388cacc60d1 100644 --- a/clients/client-emr/src/commands/ListStudiosCommand.ts +++ b/clients/client-emr/src/commands/ListStudiosCommand.ts @@ -74,6 +74,7 @@ export interface ListStudiosCommandOutput extends ListStudiosOutput, __MetadataB * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ListStudiosCommand extends $Command diff --git a/clients/client-emr/src/commands/ListSupportedInstanceTypesCommand.ts b/clients/client-emr/src/commands/ListSupportedInstanceTypesCommand.ts index f42b591402a9d..c3d41ebbabfbd 100644 --- a/clients/client-emr/src/commands/ListSupportedInstanceTypesCommand.ts +++ b/clients/client-emr/src/commands/ListSupportedInstanceTypesCommand.ts @@ -79,6 +79,7 @@ export interface ListSupportedInstanceTypesCommandOutput extends ListSupportedIn * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ListSupportedInstanceTypesCommand extends $Command diff --git a/clients/client-emr/src/commands/ModifyClusterCommand.ts b/clients/client-emr/src/commands/ModifyClusterCommand.ts index cee1d7b56a32c..d4eef54fce34a 100644 --- a/clients/client-emr/src/commands/ModifyClusterCommand.ts +++ b/clients/client-emr/src/commands/ModifyClusterCommand.ts @@ -64,6 +64,7 @@ export interface ModifyClusterCommandOutput extends ModifyClusterOutput, __Metad * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ModifyClusterCommand extends $Command diff --git a/clients/client-emr/src/commands/ModifyInstanceFleetCommand.ts b/clients/client-emr/src/commands/ModifyInstanceFleetCommand.ts index 9283c5bff9f65..bbce55edb2482 100644 --- a/clients/client-emr/src/commands/ModifyInstanceFleetCommand.ts +++ b/clients/client-emr/src/commands/ModifyInstanceFleetCommand.ts @@ -128,6 +128,7 @@ export interface ModifyInstanceFleetCommandOutput extends __MetadataBearer {} * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ModifyInstanceFleetCommand extends $Command diff --git a/clients/client-emr/src/commands/ModifyInstanceGroupsCommand.ts b/clients/client-emr/src/commands/ModifyInstanceGroupsCommand.ts index 8c714867890ff..634edc573e5ed 100644 --- a/clients/client-emr/src/commands/ModifyInstanceGroupsCommand.ts +++ b/clients/client-emr/src/commands/ModifyInstanceGroupsCommand.ts @@ -98,6 +98,7 @@ export interface ModifyInstanceGroupsCommandOutput extends __MetadataBearer {} * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class ModifyInstanceGroupsCommand extends $Command diff --git a/clients/client-emr/src/commands/PutAutoScalingPolicyCommand.ts b/clients/client-emr/src/commands/PutAutoScalingPolicyCommand.ts index 813f9ba7d7fa2..29d030c19e0ff 100644 --- a/clients/client-emr/src/commands/PutAutoScalingPolicyCommand.ts +++ b/clients/client-emr/src/commands/PutAutoScalingPolicyCommand.ts @@ -144,6 +144,7 @@ export interface PutAutoScalingPolicyCommandOutput extends PutAutoScalingPolicyO * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class PutAutoScalingPolicyCommand extends $Command diff --git a/clients/client-emr/src/commands/PutAutoTerminationPolicyCommand.ts b/clients/client-emr/src/commands/PutAutoTerminationPolicyCommand.ts index 30df6227df32a..4323376a1968c 100644 --- a/clients/client-emr/src/commands/PutAutoTerminationPolicyCommand.ts +++ b/clients/client-emr/src/commands/PutAutoTerminationPolicyCommand.ts @@ -64,6 +64,7 @@ export interface PutAutoTerminationPolicyCommandOutput extends PutAutoTerminatio * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class PutAutoTerminationPolicyCommand extends $Command diff --git a/clients/client-emr/src/commands/PutBlockPublicAccessConfigurationCommand.ts b/clients/client-emr/src/commands/PutBlockPublicAccessConfigurationCommand.ts index 8b6c02596f67e..f650459620d60 100644 --- a/clients/client-emr/src/commands/PutBlockPublicAccessConfigurationCommand.ts +++ b/clients/client-emr/src/commands/PutBlockPublicAccessConfigurationCommand.ts @@ -95,6 +95,7 @@ export interface PutBlockPublicAccessConfigurationCommandOutput * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class PutBlockPublicAccessConfigurationCommand extends $Command diff --git a/clients/client-emr/src/commands/PutManagedScalingPolicyCommand.ts b/clients/client-emr/src/commands/PutManagedScalingPolicyCommand.ts index 8752b20cac8e0..f0c81f58258f1 100644 --- a/clients/client-emr/src/commands/PutManagedScalingPolicyCommand.ts +++ b/clients/client-emr/src/commands/PutManagedScalingPolicyCommand.ts @@ -67,6 +67,7 @@ export interface PutManagedScalingPolicyCommandOutput extends PutManagedScalingP * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class PutManagedScalingPolicyCommand extends $Command diff --git a/clients/client-emr/src/commands/RemoveAutoScalingPolicyCommand.ts b/clients/client-emr/src/commands/RemoveAutoScalingPolicyCommand.ts index aef04782793ae..5c8e895ee60d1 100644 --- a/clients/client-emr/src/commands/RemoveAutoScalingPolicyCommand.ts +++ b/clients/client-emr/src/commands/RemoveAutoScalingPolicyCommand.ts @@ -54,6 +54,7 @@ export interface RemoveAutoScalingPolicyCommandOutput extends RemoveAutoScalingP * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class RemoveAutoScalingPolicyCommand extends $Command diff --git a/clients/client-emr/src/commands/RemoveAutoTerminationPolicyCommand.ts b/clients/client-emr/src/commands/RemoveAutoTerminationPolicyCommand.ts index 1909cd24bbc1f..700e413499b9a 100644 --- a/clients/client-emr/src/commands/RemoveAutoTerminationPolicyCommand.ts +++ b/clients/client-emr/src/commands/RemoveAutoTerminationPolicyCommand.ts @@ -53,6 +53,7 @@ export interface RemoveAutoTerminationPolicyCommandOutput extends RemoveAutoTerm * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class RemoveAutoTerminationPolicyCommand extends $Command diff --git a/clients/client-emr/src/commands/RemoveManagedScalingPolicyCommand.ts b/clients/client-emr/src/commands/RemoveManagedScalingPolicyCommand.ts index 5e8495d87adec..3eceff560afa6 100644 --- a/clients/client-emr/src/commands/RemoveManagedScalingPolicyCommand.ts +++ b/clients/client-emr/src/commands/RemoveManagedScalingPolicyCommand.ts @@ -53,6 +53,7 @@ export interface RemoveManagedScalingPolicyCommandOutput extends RemoveManagedSc * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class RemoveManagedScalingPolicyCommand extends $Command diff --git a/clients/client-emr/src/commands/RemoveTagsCommand.ts b/clients/client-emr/src/commands/RemoveTagsCommand.ts index 0ffaea662a98e..000ce0ba00236 100644 --- a/clients/client-emr/src/commands/RemoveTagsCommand.ts +++ b/clients/client-emr/src/commands/RemoveTagsCommand.ts @@ -67,6 +67,7 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class RemoveTagsCommand extends $Command diff --git a/clients/client-emr/src/commands/RunJobFlowCommand.ts b/clients/client-emr/src/commands/RunJobFlowCommand.ts index 793174d96686c..87c93d2fd701e 100644 --- a/clients/client-emr/src/commands/RunJobFlowCommand.ts +++ b/clients/client-emr/src/commands/RunJobFlowCommand.ts @@ -358,6 +358,7 @@ export interface RunJobFlowCommandOutput extends RunJobFlowOutput, __MetadataBea * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class RunJobFlowCommand extends $Command diff --git a/clients/client-emr/src/commands/SetKeepJobFlowAliveWhenNoStepsCommand.ts b/clients/client-emr/src/commands/SetKeepJobFlowAliveWhenNoStepsCommand.ts index 71473e8a7b7fd..c4ab5ea49239a 100644 --- a/clients/client-emr/src/commands/SetKeepJobFlowAliveWhenNoStepsCommand.ts +++ b/clients/client-emr/src/commands/SetKeepJobFlowAliveWhenNoStepsCommand.ts @@ -66,6 +66,7 @@ export interface SetKeepJobFlowAliveWhenNoStepsCommandOutput extends __MetadataB * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class SetKeepJobFlowAliveWhenNoStepsCommand extends $Command diff --git a/clients/client-emr/src/commands/SetTerminationProtectionCommand.ts b/clients/client-emr/src/commands/SetTerminationProtectionCommand.ts index fe486c4d26269..927f0ba548042 100644 --- a/clients/client-emr/src/commands/SetTerminationProtectionCommand.ts +++ b/clients/client-emr/src/commands/SetTerminationProtectionCommand.ts @@ -76,6 +76,7 @@ export interface SetTerminationProtectionCommandOutput extends __MetadataBearer * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class SetTerminationProtectionCommand extends $Command diff --git a/clients/client-emr/src/commands/SetUnhealthyNodeReplacementCommand.ts b/clients/client-emr/src/commands/SetUnhealthyNodeReplacementCommand.ts index e1232e67095b0..e307383d6442c 100644 --- a/clients/client-emr/src/commands/SetUnhealthyNodeReplacementCommand.ts +++ b/clients/client-emr/src/commands/SetUnhealthyNodeReplacementCommand.ts @@ -71,6 +71,7 @@ export interface SetUnhealthyNodeReplacementCommandOutput extends __MetadataBear * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class SetUnhealthyNodeReplacementCommand extends $Command diff --git a/clients/client-emr/src/commands/SetVisibleToAllUsersCommand.ts b/clients/client-emr/src/commands/SetVisibleToAllUsersCommand.ts index 9289ea6e44e35..7cc2e3273e968 100644 --- a/clients/client-emr/src/commands/SetVisibleToAllUsersCommand.ts +++ b/clients/client-emr/src/commands/SetVisibleToAllUsersCommand.ts @@ -72,6 +72,7 @@ export interface SetVisibleToAllUsersCommandOutput extends __MetadataBearer {} * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class SetVisibleToAllUsersCommand extends $Command diff --git a/clients/client-emr/src/commands/StartNotebookExecutionCommand.ts b/clients/client-emr/src/commands/StartNotebookExecutionCommand.ts index dcd29ceb130f0..2f28c970032af 100644 --- a/clients/client-emr/src/commands/StartNotebookExecutionCommand.ts +++ b/clients/client-emr/src/commands/StartNotebookExecutionCommand.ts @@ -91,6 +91,7 @@ export interface StartNotebookExecutionCommandOutput extends StartNotebookExecut * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class StartNotebookExecutionCommand extends $Command diff --git a/clients/client-emr/src/commands/StopNotebookExecutionCommand.ts b/clients/client-emr/src/commands/StopNotebookExecutionCommand.ts index 2936be4be13de..9b4b274d6b6e5 100644 --- a/clients/client-emr/src/commands/StopNotebookExecutionCommand.ts +++ b/clients/client-emr/src/commands/StopNotebookExecutionCommand.ts @@ -60,6 +60,7 @@ export interface StopNotebookExecutionCommandOutput extends __MetadataBearer {} * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class StopNotebookExecutionCommand extends $Command diff --git a/clients/client-emr/src/commands/TerminateJobFlowsCommand.ts b/clients/client-emr/src/commands/TerminateJobFlowsCommand.ts index 69e3a9da8f3fb..f4eb5e3c470d5 100644 --- a/clients/client-emr/src/commands/TerminateJobFlowsCommand.ts +++ b/clients/client-emr/src/commands/TerminateJobFlowsCommand.ts @@ -65,6 +65,7 @@ export interface TerminateJobFlowsCommandOutput extends __MetadataBearer {} * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class TerminateJobFlowsCommand extends $Command diff --git a/clients/client-emr/src/commands/UpdateStudioCommand.ts b/clients/client-emr/src/commands/UpdateStudioCommand.ts index fb3ba1cb89308..579eceeeb6646 100644 --- a/clients/client-emr/src/commands/UpdateStudioCommand.ts +++ b/clients/client-emr/src/commands/UpdateStudioCommand.ts @@ -68,6 +68,7 @@ export interface UpdateStudioCommandOutput extends __MetadataBearer {} * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class UpdateStudioCommand extends $Command diff --git a/clients/client-emr/src/commands/UpdateStudioSessionMappingCommand.ts b/clients/client-emr/src/commands/UpdateStudioSessionMappingCommand.ts index f977304e793cf..165a9efb9d12f 100644 --- a/clients/client-emr/src/commands/UpdateStudioSessionMappingCommand.ts +++ b/clients/client-emr/src/commands/UpdateStudioSessionMappingCommand.ts @@ -64,6 +64,7 @@ export interface UpdateStudioSessionMappingCommandOutput extends __MetadataBeare * @throws {@link EMRServiceException} *

Base exception class for all service exceptions from EMR service.

* + * * @public */ export class UpdateStudioSessionMappingCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/AddPolicyStatementCommand.ts b/clients/client-entityresolution/src/commands/AddPolicyStatementCommand.ts index a27059523d3cf..6896750df61ad 100644 --- a/clients/client-entityresolution/src/commands/AddPolicyStatementCommand.ts +++ b/clients/client-entityresolution/src/commands/AddPolicyStatementCommand.ts @@ -88,6 +88,7 @@ export interface AddPolicyStatementCommandOutput extends AddPolicyStatementOutpu * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class AddPolicyStatementCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/BatchDeleteUniqueIdCommand.ts b/clients/client-entityresolution/src/commands/BatchDeleteUniqueIdCommand.ts index 0170aff3d4b45..e52c990eb75bc 100644 --- a/clients/client-entityresolution/src/commands/BatchDeleteUniqueIdCommand.ts +++ b/clients/client-entityresolution/src/commands/BatchDeleteUniqueIdCommand.ts @@ -83,6 +83,7 @@ export interface BatchDeleteUniqueIdCommandOutput extends BatchDeleteUniqueIdOut * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class BatchDeleteUniqueIdCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/CreateIdMappingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/CreateIdMappingWorkflowCommand.ts index 2110d8973ce14..149854ec49364 100644 --- a/clients/client-entityresolution/src/commands/CreateIdMappingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/CreateIdMappingWorkflowCommand.ts @@ -161,6 +161,7 @@ export interface CreateIdMappingWorkflowCommandOutput extends CreateIdMappingWor * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class CreateIdMappingWorkflowCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/CreateIdNamespaceCommand.ts b/clients/client-entityresolution/src/commands/CreateIdNamespaceCommand.ts index 82a0ff85d11b3..56fe05f28c872 100644 --- a/clients/client-entityresolution/src/commands/CreateIdNamespaceCommand.ts +++ b/clients/client-entityresolution/src/commands/CreateIdNamespaceCommand.ts @@ -159,6 +159,7 @@ export interface CreateIdNamespaceCommandOutput extends CreateIdNamespaceOutput, * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class CreateIdNamespaceCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/CreateMatchingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/CreateMatchingWorkflowCommand.ts index 156c3d1257323..13815449ce76e 100644 --- a/clients/client-entityresolution/src/commands/CreateMatchingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/CreateMatchingWorkflowCommand.ts @@ -179,6 +179,7 @@ export interface CreateMatchingWorkflowCommandOutput extends CreateMatchingWorkf * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class CreateMatchingWorkflowCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/CreateSchemaMappingCommand.ts b/clients/client-entityresolution/src/commands/CreateSchemaMappingCommand.ts index 09ff8ef59b216..12ab98da64ce9 100644 --- a/clients/client-entityresolution/src/commands/CreateSchemaMappingCommand.ts +++ b/clients/client-entityresolution/src/commands/CreateSchemaMappingCommand.ts @@ -106,6 +106,7 @@ export interface CreateSchemaMappingCommandOutput extends CreateSchemaMappingOut * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class CreateSchemaMappingCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/DeleteIdMappingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/DeleteIdMappingWorkflowCommand.ts index d898bd7b6658d..b3a143354853d 100644 --- a/clients/client-entityresolution/src/commands/DeleteIdMappingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/DeleteIdMappingWorkflowCommand.ts @@ -74,6 +74,7 @@ export interface DeleteIdMappingWorkflowCommandOutput extends DeleteIdMappingWor * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class DeleteIdMappingWorkflowCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/DeleteIdNamespaceCommand.ts b/clients/client-entityresolution/src/commands/DeleteIdNamespaceCommand.ts index 34c546458acc3..8daacb5aee1e9 100644 --- a/clients/client-entityresolution/src/commands/DeleteIdNamespaceCommand.ts +++ b/clients/client-entityresolution/src/commands/DeleteIdNamespaceCommand.ts @@ -68,6 +68,7 @@ export interface DeleteIdNamespaceCommandOutput extends DeleteIdNamespaceOutput, * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class DeleteIdNamespaceCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/DeleteMatchingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/DeleteMatchingWorkflowCommand.ts index d56a333c9de39..7771f2d6f8f8c 100644 --- a/clients/client-entityresolution/src/commands/DeleteMatchingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/DeleteMatchingWorkflowCommand.ts @@ -74,6 +74,7 @@ export interface DeleteMatchingWorkflowCommandOutput extends DeleteMatchingWorkf * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class DeleteMatchingWorkflowCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/DeletePolicyStatementCommand.ts b/clients/client-entityresolution/src/commands/DeletePolicyStatementCommand.ts index c9c81ca618fb7..25055ea434248 100644 --- a/clients/client-entityresolution/src/commands/DeletePolicyStatementCommand.ts +++ b/clients/client-entityresolution/src/commands/DeletePolicyStatementCommand.ts @@ -79,6 +79,7 @@ export interface DeletePolicyStatementCommandOutput extends DeletePolicyStatemen * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class DeletePolicyStatementCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/DeleteSchemaMappingCommand.ts b/clients/client-entityresolution/src/commands/DeleteSchemaMappingCommand.ts index 1d721ea1160ba..a88712564123c 100644 --- a/clients/client-entityresolution/src/commands/DeleteSchemaMappingCommand.ts +++ b/clients/client-entityresolution/src/commands/DeleteSchemaMappingCommand.ts @@ -76,6 +76,7 @@ export interface DeleteSchemaMappingCommandOutput extends DeleteSchemaMappingOut * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class DeleteSchemaMappingCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/GetIdMappingJobCommand.ts b/clients/client-entityresolution/src/commands/GetIdMappingJobCommand.ts index 674c8b1ef97d4..969efbe8ec755 100644 --- a/clients/client-entityresolution/src/commands/GetIdMappingJobCommand.ts +++ b/clients/client-entityresolution/src/commands/GetIdMappingJobCommand.ts @@ -94,6 +94,7 @@ export interface GetIdMappingJobCommandOutput extends GetIdMappingJobOutput, __M * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class GetIdMappingJobCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/GetIdMappingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/GetIdMappingWorkflowCommand.ts index edabd6fdb0892..976a91bee6e8f 100644 --- a/clients/client-entityresolution/src/commands/GetIdMappingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/GetIdMappingWorkflowCommand.ts @@ -115,6 +115,7 @@ export interface GetIdMappingWorkflowCommandOutput extends GetIdMappingWorkflowO * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class GetIdMappingWorkflowCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/GetIdNamespaceCommand.ts b/clients/client-entityresolution/src/commands/GetIdNamespaceCommand.ts index 05f6ddf821ef2..59c2082f5bca9 100644 --- a/clients/client-entityresolution/src/commands/GetIdNamespaceCommand.ts +++ b/clients/client-entityresolution/src/commands/GetIdNamespaceCommand.ts @@ -112,6 +112,7 @@ export interface GetIdNamespaceCommandOutput extends GetIdNamespaceOutput, __Met * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class GetIdNamespaceCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/GetMatchIdCommand.ts b/clients/client-entityresolution/src/commands/GetMatchIdCommand.ts index e51ec97a62048..3ed1f1cfeb628 100644 --- a/clients/client-entityresolution/src/commands/GetMatchIdCommand.ts +++ b/clients/client-entityresolution/src/commands/GetMatchIdCommand.ts @@ -77,6 +77,7 @@ export interface GetMatchIdCommandOutput extends GetMatchIdOutput, __MetadataBea * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class GetMatchIdCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/GetMatchingJobCommand.ts b/clients/client-entityresolution/src/commands/GetMatchingJobCommand.ts index c6580bc199236..62423e116627f 100644 --- a/clients/client-entityresolution/src/commands/GetMatchingJobCommand.ts +++ b/clients/client-entityresolution/src/commands/GetMatchingJobCommand.ts @@ -92,6 +92,7 @@ export interface GetMatchingJobCommandOutput extends GetMatchingJobOutput, __Met * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class GetMatchingJobCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/GetMatchingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/GetMatchingWorkflowCommand.ts index a17ef0cd50906..65149bccaa705 100644 --- a/clients/client-entityresolution/src/commands/GetMatchingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/GetMatchingWorkflowCommand.ts @@ -124,6 +124,7 @@ export interface GetMatchingWorkflowCommandOutput extends GetMatchingWorkflowOut * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class GetMatchingWorkflowCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/GetPolicyCommand.ts b/clients/client-entityresolution/src/commands/GetPolicyCommand.ts index 626ed112dc9d1..fa31666c5d0a9 100644 --- a/clients/client-entityresolution/src/commands/GetPolicyCommand.ts +++ b/clients/client-entityresolution/src/commands/GetPolicyCommand.ts @@ -73,6 +73,7 @@ export interface GetPolicyCommandOutput extends GetPolicyOutput, __MetadataBeare * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class GetPolicyCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/GetProviderServiceCommand.ts b/clients/client-entityresolution/src/commands/GetProviderServiceCommand.ts index 52cb3eadc1aac..eb07f93efc60f 100644 --- a/clients/client-entityresolution/src/commands/GetProviderServiceCommand.ts +++ b/clients/client-entityresolution/src/commands/GetProviderServiceCommand.ts @@ -116,6 +116,7 @@ export interface GetProviderServiceCommandOutput extends GetProviderServiceOutpu * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class GetProviderServiceCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/GetSchemaMappingCommand.ts b/clients/client-entityresolution/src/commands/GetSchemaMappingCommand.ts index b6ded111a8c5e..2be5bfe462e7e 100644 --- a/clients/client-entityresolution/src/commands/GetSchemaMappingCommand.ts +++ b/clients/client-entityresolution/src/commands/GetSchemaMappingCommand.ts @@ -89,6 +89,7 @@ export interface GetSchemaMappingCommandOutput extends GetSchemaMappingOutput, _ * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class GetSchemaMappingCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/ListIdMappingJobsCommand.ts b/clients/client-entityresolution/src/commands/ListIdMappingJobsCommand.ts index 338d493f130c5..35d106e598372 100644 --- a/clients/client-entityresolution/src/commands/ListIdMappingJobsCommand.ts +++ b/clients/client-entityresolution/src/commands/ListIdMappingJobsCommand.ts @@ -81,6 +81,7 @@ export interface ListIdMappingJobsCommandOutput extends ListIdMappingJobsOutput, * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class ListIdMappingJobsCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/ListIdMappingWorkflowsCommand.ts b/clients/client-entityresolution/src/commands/ListIdMappingWorkflowsCommand.ts index bb2d86400c91a..1d50d75a40bf9 100644 --- a/clients/client-entityresolution/src/commands/ListIdMappingWorkflowsCommand.ts +++ b/clients/client-entityresolution/src/commands/ListIdMappingWorkflowsCommand.ts @@ -78,6 +78,7 @@ export interface ListIdMappingWorkflowsCommandOutput extends ListIdMappingWorkfl * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class ListIdMappingWorkflowsCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/ListIdNamespacesCommand.ts b/clients/client-entityresolution/src/commands/ListIdNamespacesCommand.ts index fc2353992d87e..ec7b34ba91a64 100644 --- a/clients/client-entityresolution/src/commands/ListIdNamespacesCommand.ts +++ b/clients/client-entityresolution/src/commands/ListIdNamespacesCommand.ts @@ -84,6 +84,7 @@ export interface ListIdNamespacesCommandOutput extends ListIdNamespacesOutput, _ * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class ListIdNamespacesCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/ListMatchingJobsCommand.ts b/clients/client-entityresolution/src/commands/ListMatchingJobsCommand.ts index b253e9eb16a10..2305a8111082a 100644 --- a/clients/client-entityresolution/src/commands/ListMatchingJobsCommand.ts +++ b/clients/client-entityresolution/src/commands/ListMatchingJobsCommand.ts @@ -81,6 +81,7 @@ export interface ListMatchingJobsCommandOutput extends ListMatchingJobsOutput, _ * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class ListMatchingJobsCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/ListMatchingWorkflowsCommand.ts b/clients/client-entityresolution/src/commands/ListMatchingWorkflowsCommand.ts index 7797bb5031ccc..d23ae115ce014 100644 --- a/clients/client-entityresolution/src/commands/ListMatchingWorkflowsCommand.ts +++ b/clients/client-entityresolution/src/commands/ListMatchingWorkflowsCommand.ts @@ -79,6 +79,7 @@ export interface ListMatchingWorkflowsCommandOutput extends ListMatchingWorkflow * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class ListMatchingWorkflowsCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/ListProviderServicesCommand.ts b/clients/client-entityresolution/src/commands/ListProviderServicesCommand.ts index 4f5040aae1e07..4b5a313cd8610 100644 --- a/clients/client-entityresolution/src/commands/ListProviderServicesCommand.ts +++ b/clients/client-entityresolution/src/commands/ListProviderServicesCommand.ts @@ -80,6 +80,7 @@ export interface ListProviderServicesCommandOutput extends ListProviderServicesO * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class ListProviderServicesCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/ListSchemaMappingsCommand.ts b/clients/client-entityresolution/src/commands/ListSchemaMappingsCommand.ts index 94090ca9f5566..6dd1d73dc80d1 100644 --- a/clients/client-entityresolution/src/commands/ListSchemaMappingsCommand.ts +++ b/clients/client-entityresolution/src/commands/ListSchemaMappingsCommand.ts @@ -79,6 +79,7 @@ export interface ListSchemaMappingsCommandOutput extends ListSchemaMappingsOutpu * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class ListSchemaMappingsCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/ListTagsForResourceCommand.ts b/clients/client-entityresolution/src/commands/ListTagsForResourceCommand.ts index 1b9cc6cdb4d18..43d2096e07f65 100644 --- a/clients/client-entityresolution/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-entityresolution/src/commands/ListTagsForResourceCommand.ts @@ -68,6 +68,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/PutPolicyCommand.ts b/clients/client-entityresolution/src/commands/PutPolicyCommand.ts index 301b4af711f46..ff747162863b8 100644 --- a/clients/client-entityresolution/src/commands/PutPolicyCommand.ts +++ b/clients/client-entityresolution/src/commands/PutPolicyCommand.ts @@ -80,6 +80,7 @@ export interface PutPolicyCommandOutput extends PutPolicyOutput, __MetadataBeare * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class PutPolicyCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/StartIdMappingJobCommand.ts b/clients/client-entityresolution/src/commands/StartIdMappingJobCommand.ts index acf2360633a2e..2b4a53648eb8b 100644 --- a/clients/client-entityresolution/src/commands/StartIdMappingJobCommand.ts +++ b/clients/client-entityresolution/src/commands/StartIdMappingJobCommand.ts @@ -96,6 +96,7 @@ export interface StartIdMappingJobCommandOutput extends StartIdMappingJobOutput, * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class StartIdMappingJobCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/StartMatchingJobCommand.ts b/clients/client-entityresolution/src/commands/StartMatchingJobCommand.ts index ff8395001b325..bea801ae5f70b 100644 --- a/clients/client-entityresolution/src/commands/StartMatchingJobCommand.ts +++ b/clients/client-entityresolution/src/commands/StartMatchingJobCommand.ts @@ -82,6 +82,7 @@ export interface StartMatchingJobCommandOutput extends StartMatchingJobOutput, _ * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class StartMatchingJobCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/TagResourceCommand.ts b/clients/client-entityresolution/src/commands/TagResourceCommand.ts index e9264dfbb41ce..cc6cf55be6aec 100644 --- a/clients/client-entityresolution/src/commands/TagResourceCommand.ts +++ b/clients/client-entityresolution/src/commands/TagResourceCommand.ts @@ -75,6 +75,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/UntagResourceCommand.ts b/clients/client-entityresolution/src/commands/UntagResourceCommand.ts index 5bc6bf614aae0..b5bba0daa3b9f 100644 --- a/clients/client-entityresolution/src/commands/UntagResourceCommand.ts +++ b/clients/client-entityresolution/src/commands/UntagResourceCommand.ts @@ -64,6 +64,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/UpdateIdMappingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/UpdateIdMappingWorkflowCommand.ts index 147a13ec5ba31..457aeb1774140 100644 --- a/clients/client-entityresolution/src/commands/UpdateIdMappingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/UpdateIdMappingWorkflowCommand.ts @@ -151,6 +151,7 @@ export interface UpdateIdMappingWorkflowCommandOutput extends UpdateIdMappingWor * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class UpdateIdMappingWorkflowCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/UpdateIdNamespaceCommand.ts b/clients/client-entityresolution/src/commands/UpdateIdNamespaceCommand.ts index b65a8a7b06158..65d78b4258f4f 100644 --- a/clients/client-entityresolution/src/commands/UpdateIdNamespaceCommand.ts +++ b/clients/client-entityresolution/src/commands/UpdateIdNamespaceCommand.ts @@ -143,6 +143,7 @@ export interface UpdateIdNamespaceCommandOutput extends UpdateIdNamespaceOutput, * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class UpdateIdNamespaceCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/UpdateMatchingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/UpdateMatchingWorkflowCommand.ts index 1823fd09a5e21..1f06b8b20394d 100644 --- a/clients/client-entityresolution/src/commands/UpdateMatchingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/UpdateMatchingWorkflowCommand.ts @@ -168,6 +168,7 @@ export interface UpdateMatchingWorkflowCommandOutput extends UpdateMatchingWorkf * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class UpdateMatchingWorkflowCommand extends $Command diff --git a/clients/client-entityresolution/src/commands/UpdateSchemaMappingCommand.ts b/clients/client-entityresolution/src/commands/UpdateSchemaMappingCommand.ts index b3b36a6dde7ff..1d3845b760f75 100644 --- a/clients/client-entityresolution/src/commands/UpdateSchemaMappingCommand.ts +++ b/clients/client-entityresolution/src/commands/UpdateSchemaMappingCommand.ts @@ -103,6 +103,7 @@ export interface UpdateSchemaMappingCommandOutput extends UpdateSchemaMappingOut * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* + * * @public */ export class UpdateSchemaMappingCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/ActivateEventSourceCommand.ts b/clients/client-eventbridge/src/commands/ActivateEventSourceCommand.ts index ae1b69f79e466..db080bce43be9 100644 --- a/clients/client-eventbridge/src/commands/ActivateEventSourceCommand.ts +++ b/clients/client-eventbridge/src/commands/ActivateEventSourceCommand.ts @@ -69,6 +69,7 @@ export interface ActivateEventSourceCommandOutput extends __MetadataBearer {} * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class ActivateEventSourceCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/CancelReplayCommand.ts b/clients/client-eventbridge/src/commands/CancelReplayCommand.ts index 537b71b231fbb..41a47afdfacdc 100644 --- a/clients/client-eventbridge/src/commands/CancelReplayCommand.ts +++ b/clients/client-eventbridge/src/commands/CancelReplayCommand.ts @@ -70,6 +70,7 @@ export interface CancelReplayCommandOutput extends CancelReplayResponse, __Metad * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class CancelReplayCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/CreateApiDestinationCommand.ts b/clients/client-eventbridge/src/commands/CreateApiDestinationCommand.ts index c5ed734f1eb7b..d884a1465fcf5 100644 --- a/clients/client-eventbridge/src/commands/CreateApiDestinationCommand.ts +++ b/clients/client-eventbridge/src/commands/CreateApiDestinationCommand.ts @@ -81,6 +81,7 @@ export interface CreateApiDestinationCommandOutput extends CreateApiDestinationR * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class CreateApiDestinationCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/CreateArchiveCommand.ts b/clients/client-eventbridge/src/commands/CreateArchiveCommand.ts index ea3453f73b626..00d32bb31f324 100644 --- a/clients/client-eventbridge/src/commands/CreateArchiveCommand.ts +++ b/clients/client-eventbridge/src/commands/CreateArchiveCommand.ts @@ -108,6 +108,7 @@ export interface CreateArchiveCommandOutput extends CreateArchiveResponse, __Met * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class CreateArchiveCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/CreateConnectionCommand.ts b/clients/client-eventbridge/src/commands/CreateConnectionCommand.ts index 1f5a298767b06..97ab3315ebd99 100644 --- a/clients/client-eventbridge/src/commands/CreateConnectionCommand.ts +++ b/clients/client-eventbridge/src/commands/CreateConnectionCommand.ts @@ -159,6 +159,7 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse, * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class CreateConnectionCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/CreateEndpointCommand.ts b/clients/client-eventbridge/src/commands/CreateEndpointCommand.ts index b43e969fa8c03..e727f72e35cb4 100644 --- a/clients/client-eventbridge/src/commands/CreateEndpointCommand.ts +++ b/clients/client-eventbridge/src/commands/CreateEndpointCommand.ts @@ -111,6 +111,7 @@ export interface CreateEndpointCommandOutput extends CreateEndpointResponse, __M * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class CreateEndpointCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/CreateEventBusCommand.ts b/clients/client-eventbridge/src/commands/CreateEventBusCommand.ts index 79ba757431654..cb6efd5933085 100644 --- a/clients/client-eventbridge/src/commands/CreateEventBusCommand.ts +++ b/clients/client-eventbridge/src/commands/CreateEventBusCommand.ts @@ -96,6 +96,7 @@ export interface CreateEventBusCommandOutput extends CreateEventBusResponse, __M * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class CreateEventBusCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/CreatePartnerEventSourceCommand.ts b/clients/client-eventbridge/src/commands/CreatePartnerEventSourceCommand.ts index 1cde082175f15..8c6bb17574fd5 100644 --- a/clients/client-eventbridge/src/commands/CreatePartnerEventSourceCommand.ts +++ b/clients/client-eventbridge/src/commands/CreatePartnerEventSourceCommand.ts @@ -111,6 +111,7 @@ export interface CreatePartnerEventSourceCommandOutput extends CreatePartnerEven * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class CreatePartnerEventSourceCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DeactivateEventSourceCommand.ts b/clients/client-eventbridge/src/commands/DeactivateEventSourceCommand.ts index ac97f46cb327e..8ac13340d91a5 100644 --- a/clients/client-eventbridge/src/commands/DeactivateEventSourceCommand.ts +++ b/clients/client-eventbridge/src/commands/DeactivateEventSourceCommand.ts @@ -72,6 +72,7 @@ export interface DeactivateEventSourceCommandOutput extends __MetadataBearer {} * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DeactivateEventSourceCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DeauthorizeConnectionCommand.ts b/clients/client-eventbridge/src/commands/DeauthorizeConnectionCommand.ts index 0ae90517d1adb..fa1d53e327f05 100644 --- a/clients/client-eventbridge/src/commands/DeauthorizeConnectionCommand.ts +++ b/clients/client-eventbridge/src/commands/DeauthorizeConnectionCommand.ts @@ -69,6 +69,7 @@ export interface DeauthorizeConnectionCommandOutput extends DeauthorizeConnectio * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DeauthorizeConnectionCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DeleteApiDestinationCommand.ts b/clients/client-eventbridge/src/commands/DeleteApiDestinationCommand.ts index ca6cfb72881d6..95a9971db319c 100644 --- a/clients/client-eventbridge/src/commands/DeleteApiDestinationCommand.ts +++ b/clients/client-eventbridge/src/commands/DeleteApiDestinationCommand.ts @@ -62,6 +62,7 @@ export interface DeleteApiDestinationCommandOutput extends DeleteApiDestinationR * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DeleteApiDestinationCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DeleteArchiveCommand.ts b/clients/client-eventbridge/src/commands/DeleteArchiveCommand.ts index eea117d5a18bb..4d98ad19a1f5c 100644 --- a/clients/client-eventbridge/src/commands/DeleteArchiveCommand.ts +++ b/clients/client-eventbridge/src/commands/DeleteArchiveCommand.ts @@ -62,6 +62,7 @@ export interface DeleteArchiveCommandOutput extends DeleteArchiveResponse, __Met * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DeleteArchiveCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DeleteConnectionCommand.ts b/clients/client-eventbridge/src/commands/DeleteConnectionCommand.ts index 5c6d66104c424..5073c8eb40819 100644 --- a/clients/client-eventbridge/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-eventbridge/src/commands/DeleteConnectionCommand.ts @@ -68,6 +68,7 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse, * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DeleteConnectionCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DeleteEndpointCommand.ts b/clients/client-eventbridge/src/commands/DeleteEndpointCommand.ts index d19a96ad343fa..81ae7a2563936 100644 --- a/clients/client-eventbridge/src/commands/DeleteEndpointCommand.ts +++ b/clients/client-eventbridge/src/commands/DeleteEndpointCommand.ts @@ -66,6 +66,7 @@ export interface DeleteEndpointCommandOutput extends DeleteEndpointResponse, __M * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DeleteEndpointCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DeleteEventBusCommand.ts b/clients/client-eventbridge/src/commands/DeleteEventBusCommand.ts index c45ed273266e8..3527fda75feca 100644 --- a/clients/client-eventbridge/src/commands/DeleteEventBusCommand.ts +++ b/clients/client-eventbridge/src/commands/DeleteEventBusCommand.ts @@ -60,6 +60,7 @@ export interface DeleteEventBusCommandOutput extends __MetadataBearer {} * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DeleteEventBusCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DeletePartnerEventSourceCommand.ts b/clients/client-eventbridge/src/commands/DeletePartnerEventSourceCommand.ts index 839a6cb091108..7044937c3a082 100644 --- a/clients/client-eventbridge/src/commands/DeletePartnerEventSourceCommand.ts +++ b/clients/client-eventbridge/src/commands/DeletePartnerEventSourceCommand.ts @@ -67,6 +67,7 @@ export interface DeletePartnerEventSourceCommandOutput extends __MetadataBearer * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DeletePartnerEventSourceCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DeleteRuleCommand.ts b/clients/client-eventbridge/src/commands/DeleteRuleCommand.ts index ff4f7ef4e58ac..257f2ec5b7b7d 100644 --- a/clients/client-eventbridge/src/commands/DeleteRuleCommand.ts +++ b/clients/client-eventbridge/src/commands/DeleteRuleCommand.ts @@ -83,6 +83,7 @@ export interface DeleteRuleCommandOutput extends __MetadataBearer {} * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DeleteRuleCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DescribeApiDestinationCommand.ts b/clients/client-eventbridge/src/commands/DescribeApiDestinationCommand.ts index 2fd2dfb00c717..ab0a12e2d114f 100644 --- a/clients/client-eventbridge/src/commands/DescribeApiDestinationCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeApiDestinationCommand.ts @@ -70,6 +70,7 @@ export interface DescribeApiDestinationCommandOutput extends DescribeApiDestinat * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DescribeApiDestinationCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DescribeArchiveCommand.ts b/clients/client-eventbridge/src/commands/DescribeArchiveCommand.ts index ccbe4057981ec..6e1a4345aa40e 100644 --- a/clients/client-eventbridge/src/commands/DescribeArchiveCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeArchiveCommand.ts @@ -74,6 +74,7 @@ export interface DescribeArchiveCommandOutput extends DescribeArchiveResponse, _ * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DescribeArchiveCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DescribeConnectionCommand.ts b/clients/client-eventbridge/src/commands/DescribeConnectionCommand.ts index ac956a0c769ca..20021f5ec9122 100644 --- a/clients/client-eventbridge/src/commands/DescribeConnectionCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeConnectionCommand.ts @@ -147,6 +147,7 @@ export interface DescribeConnectionCommandOutput extends DescribeConnectionRespo * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DescribeConnectionCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DescribeEndpointCommand.ts b/clients/client-eventbridge/src/commands/DescribeEndpointCommand.ts index 8917582aa5d53..4a7f044b2bc52 100644 --- a/clients/client-eventbridge/src/commands/DescribeEndpointCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeEndpointCommand.ts @@ -94,6 +94,7 @@ export interface DescribeEndpointCommandOutput extends DescribeEndpointResponse, * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DescribeEndpointCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DescribeEventBusCommand.ts b/clients/client-eventbridge/src/commands/DescribeEventBusCommand.ts index 7b4e6929e26d8..44cb05a3f6cea 100644 --- a/clients/client-eventbridge/src/commands/DescribeEventBusCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeEventBusCommand.ts @@ -75,6 +75,7 @@ export interface DescribeEventBusCommandOutput extends DescribeEventBusResponse, * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DescribeEventBusCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DescribeEventSourceCommand.ts b/clients/client-eventbridge/src/commands/DescribeEventSourceCommand.ts index 6d294a571384a..2685d00707be4 100644 --- a/clients/client-eventbridge/src/commands/DescribeEventSourceCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeEventSourceCommand.ts @@ -70,6 +70,7 @@ export interface DescribeEventSourceCommandOutput extends DescribeEventSourceRes * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DescribeEventSourceCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DescribePartnerEventSourceCommand.ts b/clients/client-eventbridge/src/commands/DescribePartnerEventSourceCommand.ts index 9e92a1ce7c037..e67a05f3e6eb2 100644 --- a/clients/client-eventbridge/src/commands/DescribePartnerEventSourceCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribePartnerEventSourceCommand.ts @@ -67,6 +67,7 @@ export interface DescribePartnerEventSourceCommandOutput extends DescribePartner * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DescribePartnerEventSourceCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DescribeReplayCommand.ts b/clients/client-eventbridge/src/commands/DescribeReplayCommand.ts index 1eb986d9392ce..f987003db1c1f 100644 --- a/clients/client-eventbridge/src/commands/DescribeReplayCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeReplayCommand.ts @@ -85,6 +85,7 @@ export interface DescribeReplayCommandOutput extends DescribeReplayResponse, __M * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DescribeReplayCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DescribeRuleCommand.ts b/clients/client-eventbridge/src/commands/DescribeRuleCommand.ts index d8fc5fbbd0041..68ddf3533e0f6 100644 --- a/clients/client-eventbridge/src/commands/DescribeRuleCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeRuleCommand.ts @@ -73,6 +73,7 @@ export interface DescribeRuleCommandOutput extends DescribeRuleResponse, __Metad * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DescribeRuleCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/DisableRuleCommand.ts b/clients/client-eventbridge/src/commands/DisableRuleCommand.ts index e4fff248ad71b..82e1c5b4f084f 100644 --- a/clients/client-eventbridge/src/commands/DisableRuleCommand.ts +++ b/clients/client-eventbridge/src/commands/DisableRuleCommand.ts @@ -74,6 +74,7 @@ export interface DisableRuleCommandOutput extends __MetadataBearer {} * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class DisableRuleCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/EnableRuleCommand.ts b/clients/client-eventbridge/src/commands/EnableRuleCommand.ts index 2c3ec0c47e39e..8b2454155aa89 100644 --- a/clients/client-eventbridge/src/commands/EnableRuleCommand.ts +++ b/clients/client-eventbridge/src/commands/EnableRuleCommand.ts @@ -73,6 +73,7 @@ export interface EnableRuleCommandOutput extends __MetadataBearer {} * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class EnableRuleCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/ListApiDestinationsCommand.ts b/clients/client-eventbridge/src/commands/ListApiDestinationsCommand.ts index f508dae79442b..82167234532f0 100644 --- a/clients/client-eventbridge/src/commands/ListApiDestinationsCommand.ts +++ b/clients/client-eventbridge/src/commands/ListApiDestinationsCommand.ts @@ -74,6 +74,7 @@ export interface ListApiDestinationsCommandOutput extends ListApiDestinationsRes * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class ListApiDestinationsCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/ListArchivesCommand.ts b/clients/client-eventbridge/src/commands/ListArchivesCommand.ts index 3534df212b85b..c2acde70709a9 100644 --- a/clients/client-eventbridge/src/commands/ListArchivesCommand.ts +++ b/clients/client-eventbridge/src/commands/ListArchivesCommand.ts @@ -78,6 +78,7 @@ export interface ListArchivesCommandOutput extends ListArchivesResponse, __Metad * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class ListArchivesCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/ListConnectionsCommand.ts b/clients/client-eventbridge/src/commands/ListConnectionsCommand.ts index fdecef854e105..240f59ad628fc 100644 --- a/clients/client-eventbridge/src/commands/ListConnectionsCommand.ts +++ b/clients/client-eventbridge/src/commands/ListConnectionsCommand.ts @@ -73,6 +73,7 @@ export interface ListConnectionsCommandOutput extends ListConnectionsResponse, _ * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class ListConnectionsCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/ListEndpointsCommand.ts b/clients/client-eventbridge/src/commands/ListEndpointsCommand.ts index 66bd0a7c3ea7e..c73b5bdee28f7 100644 --- a/clients/client-eventbridge/src/commands/ListEndpointsCommand.ts +++ b/clients/client-eventbridge/src/commands/ListEndpointsCommand.ts @@ -98,6 +98,7 @@ export interface ListEndpointsCommandOutput extends ListEndpointsResponse, __Met * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class ListEndpointsCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/ListEventBusesCommand.ts b/clients/client-eventbridge/src/commands/ListEventBusesCommand.ts index 661f6ae3f1c3e..881975ed74405 100644 --- a/clients/client-eventbridge/src/commands/ListEventBusesCommand.ts +++ b/clients/client-eventbridge/src/commands/ListEventBusesCommand.ts @@ -71,6 +71,7 @@ export interface ListEventBusesCommandOutput extends ListEventBusesResponse, __M * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class ListEventBusesCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/ListEventSourcesCommand.ts b/clients/client-eventbridge/src/commands/ListEventSourcesCommand.ts index 98b9f3729d530..6c40bc5d21940 100644 --- a/clients/client-eventbridge/src/commands/ListEventSourcesCommand.ts +++ b/clients/client-eventbridge/src/commands/ListEventSourcesCommand.ts @@ -74,6 +74,7 @@ export interface ListEventSourcesCommandOutput extends ListEventSourcesResponse, * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class ListEventSourcesCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/ListPartnerEventSourceAccountsCommand.ts b/clients/client-eventbridge/src/commands/ListPartnerEventSourceAccountsCommand.ts index 486b2f114234e..1198870c08d7d 100644 --- a/clients/client-eventbridge/src/commands/ListPartnerEventSourceAccountsCommand.ts +++ b/clients/client-eventbridge/src/commands/ListPartnerEventSourceAccountsCommand.ts @@ -80,6 +80,7 @@ export interface ListPartnerEventSourceAccountsCommandOutput * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class ListPartnerEventSourceAccountsCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/ListPartnerEventSourcesCommand.ts b/clients/client-eventbridge/src/commands/ListPartnerEventSourcesCommand.ts index 7a9bda3303134..dcc63595446f4 100644 --- a/clients/client-eventbridge/src/commands/ListPartnerEventSourcesCommand.ts +++ b/clients/client-eventbridge/src/commands/ListPartnerEventSourcesCommand.ts @@ -70,6 +70,7 @@ export interface ListPartnerEventSourcesCommandOutput extends ListPartnerEventSo * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class ListPartnerEventSourcesCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/ListReplaysCommand.ts b/clients/client-eventbridge/src/commands/ListReplaysCommand.ts index 9a3af71d38688..8f4e2e830620d 100644 --- a/clients/client-eventbridge/src/commands/ListReplaysCommand.ts +++ b/clients/client-eventbridge/src/commands/ListReplaysCommand.ts @@ -76,6 +76,7 @@ export interface ListReplaysCommandOutput extends ListReplaysResponse, __Metadat * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class ListReplaysCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/ListRuleNamesByTargetCommand.ts b/clients/client-eventbridge/src/commands/ListRuleNamesByTargetCommand.ts index 13d1f13bae326..16688a077a218 100644 --- a/clients/client-eventbridge/src/commands/ListRuleNamesByTargetCommand.ts +++ b/clients/client-eventbridge/src/commands/ListRuleNamesByTargetCommand.ts @@ -69,6 +69,7 @@ export interface ListRuleNamesByTargetCommandOutput extends ListRuleNamesByTarge * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class ListRuleNamesByTargetCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/ListRulesCommand.ts b/clients/client-eventbridge/src/commands/ListRulesCommand.ts index 0594afebd7b55..867bd6dc95775 100644 --- a/clients/client-eventbridge/src/commands/ListRulesCommand.ts +++ b/clients/client-eventbridge/src/commands/ListRulesCommand.ts @@ -81,6 +81,7 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class ListRulesCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/ListTagsForResourceCommand.ts b/clients/client-eventbridge/src/commands/ListTagsForResourceCommand.ts index f0235ef872fa6..f2fc57c4c6eb6 100644 --- a/clients/client-eventbridge/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-eventbridge/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/ListTargetsByRuleCommand.ts b/clients/client-eventbridge/src/commands/ListTargetsByRuleCommand.ts index 91973eb4b5194..79e64fdd5ba84 100644 --- a/clients/client-eventbridge/src/commands/ListTargetsByRuleCommand.ts +++ b/clients/client-eventbridge/src/commands/ListTargetsByRuleCommand.ts @@ -197,6 +197,7 @@ export interface ListTargetsByRuleCommandOutput extends ListTargetsByRuleRespons * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class ListTargetsByRuleCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/PutEventsCommand.ts b/clients/client-eventbridge/src/commands/PutEventsCommand.ts index 6f9a6e321a242..ec527a85c8a17 100644 --- a/clients/client-eventbridge/src/commands/PutEventsCommand.ts +++ b/clients/client-eventbridge/src/commands/PutEventsCommand.ts @@ -91,6 +91,7 @@ export interface PutEventsCommandOutput extends PutEventsResponse, __MetadataBea * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class PutEventsCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/PutPartnerEventsCommand.ts b/clients/client-eventbridge/src/commands/PutPartnerEventsCommand.ts index dbd5dc42ca95e..b7e8491558732 100644 --- a/clients/client-eventbridge/src/commands/PutPartnerEventsCommand.ts +++ b/clients/client-eventbridge/src/commands/PutPartnerEventsCommand.ts @@ -80,6 +80,7 @@ export interface PutPartnerEventsCommandOutput extends PutPartnerEventsResponse, * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class PutPartnerEventsCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/PutPermissionCommand.ts b/clients/client-eventbridge/src/commands/PutPermissionCommand.ts index 1b7c4d1cf255c..2adb72371c2d1 100644 --- a/clients/client-eventbridge/src/commands/PutPermissionCommand.ts +++ b/clients/client-eventbridge/src/commands/PutPermissionCommand.ts @@ -92,6 +92,7 @@ export interface PutPermissionCommandOutput extends __MetadataBearer {} * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class PutPermissionCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/PutRuleCommand.ts b/clients/client-eventbridge/src/commands/PutRuleCommand.ts index c8fffbcde2661..ccbc4873014a3 100644 --- a/clients/client-eventbridge/src/commands/PutRuleCommand.ts +++ b/clients/client-eventbridge/src/commands/PutRuleCommand.ts @@ -132,6 +132,7 @@ export interface PutRuleCommandOutput extends PutRuleResponse, __MetadataBearer * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class PutRuleCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/PutTargetsCommand.ts b/clients/client-eventbridge/src/commands/PutTargetsCommand.ts index d48f38a4c4478..ac2f6d809a1ee 100644 --- a/clients/client-eventbridge/src/commands/PutTargetsCommand.ts +++ b/clients/client-eventbridge/src/commands/PutTargetsCommand.ts @@ -324,6 +324,7 @@ export interface PutTargetsCommandOutput extends PutTargetsResponse, __MetadataB * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class PutTargetsCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/RemovePermissionCommand.ts b/clients/client-eventbridge/src/commands/RemovePermissionCommand.ts index e4acee4413b25..62833a3aeac76 100644 --- a/clients/client-eventbridge/src/commands/RemovePermissionCommand.ts +++ b/clients/client-eventbridge/src/commands/RemovePermissionCommand.ts @@ -70,6 +70,7 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {} * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class RemovePermissionCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/RemoveTargetsCommand.ts b/clients/client-eventbridge/src/commands/RemoveTargetsCommand.ts index 38456022dac60..633c2cce68fc3 100644 --- a/clients/client-eventbridge/src/commands/RemoveTargetsCommand.ts +++ b/clients/client-eventbridge/src/commands/RemoveTargetsCommand.ts @@ -95,6 +95,7 @@ export interface RemoveTargetsCommandOutput extends RemoveTargetsResponse, __Met * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class RemoveTargetsCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/StartReplayCommand.ts b/clients/client-eventbridge/src/commands/StartReplayCommand.ts index f9684643f5438..9081e471284a6 100644 --- a/clients/client-eventbridge/src/commands/StartReplayCommand.ts +++ b/clients/client-eventbridge/src/commands/StartReplayCommand.ts @@ -92,6 +92,7 @@ export interface StartReplayCommandOutput extends StartReplayResponse, __Metadat * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class StartReplayCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/TagResourceCommand.ts b/clients/client-eventbridge/src/commands/TagResourceCommand.ts index 96cd0e9ddd512..afe523bd18bd2 100644 --- a/clients/client-eventbridge/src/commands/TagResourceCommand.ts +++ b/clients/client-eventbridge/src/commands/TagResourceCommand.ts @@ -86,6 +86,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/TestEventPatternCommand.ts b/clients/client-eventbridge/src/commands/TestEventPatternCommand.ts index f5d59fd0d9ea5..0b056d2ad82df 100644 --- a/clients/client-eventbridge/src/commands/TestEventPatternCommand.ts +++ b/clients/client-eventbridge/src/commands/TestEventPatternCommand.ts @@ -66,6 +66,7 @@ export interface TestEventPatternCommandOutput extends TestEventPatternResponse, * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class TestEventPatternCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/UntagResourceCommand.ts b/clients/client-eventbridge/src/commands/UntagResourceCommand.ts index cd90691a4b78d..6b0613e45e949 100644 --- a/clients/client-eventbridge/src/commands/UntagResourceCommand.ts +++ b/clients/client-eventbridge/src/commands/UntagResourceCommand.ts @@ -73,6 +73,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/UpdateApiDestinationCommand.ts b/clients/client-eventbridge/src/commands/UpdateApiDestinationCommand.ts index 85eae1f7cc2eb..1f9a2e5a5777b 100644 --- a/clients/client-eventbridge/src/commands/UpdateApiDestinationCommand.ts +++ b/clients/client-eventbridge/src/commands/UpdateApiDestinationCommand.ts @@ -76,6 +76,7 @@ export interface UpdateApiDestinationCommandOutput extends UpdateApiDestinationR * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class UpdateApiDestinationCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/UpdateArchiveCommand.ts b/clients/client-eventbridge/src/commands/UpdateArchiveCommand.ts index 1e8c2cbfb93e6..7923dc033c37c 100644 --- a/clients/client-eventbridge/src/commands/UpdateArchiveCommand.ts +++ b/clients/client-eventbridge/src/commands/UpdateArchiveCommand.ts @@ -77,6 +77,7 @@ export interface UpdateArchiveCommandOutput extends UpdateArchiveResponse, __Met * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class UpdateArchiveCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/UpdateConnectionCommand.ts b/clients/client-eventbridge/src/commands/UpdateConnectionCommand.ts index 49bd1050896e2..5f63ece3b8f94 100644 --- a/clients/client-eventbridge/src/commands/UpdateConnectionCommand.ts +++ b/clients/client-eventbridge/src/commands/UpdateConnectionCommand.ts @@ -158,6 +158,7 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse, * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class UpdateConnectionCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/UpdateEndpointCommand.ts b/clients/client-eventbridge/src/commands/UpdateEndpointCommand.ts index 817c4a33459f3..eb26259967012 100644 --- a/clients/client-eventbridge/src/commands/UpdateEndpointCommand.ts +++ b/clients/client-eventbridge/src/commands/UpdateEndpointCommand.ts @@ -111,6 +111,7 @@ export interface UpdateEndpointCommandOutput extends UpdateEndpointResponse, __M * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class UpdateEndpointCommand extends $Command diff --git a/clients/client-eventbridge/src/commands/UpdateEventBusCommand.ts b/clients/client-eventbridge/src/commands/UpdateEventBusCommand.ts index 9674fdbfc14f1..384d25f56003e 100644 --- a/clients/client-eventbridge/src/commands/UpdateEventBusCommand.ts +++ b/clients/client-eventbridge/src/commands/UpdateEventBusCommand.ts @@ -78,6 +78,7 @@ export interface UpdateEventBusCommandOutput extends UpdateEventBusResponse, __M * @throws {@link EventBridgeServiceException} *

Base exception class for all service exceptions from EventBridge service.

* + * * @public */ export class UpdateEventBusCommand extends $Command diff --git a/clients/client-evidently/src/commands/BatchEvaluateFeatureCommand.ts b/clients/client-evidently/src/commands/BatchEvaluateFeatureCommand.ts index e6483ef226c3d..840e6328ea9e6 100644 --- a/clients/client-evidently/src/commands/BatchEvaluateFeatureCommand.ts +++ b/clients/client-evidently/src/commands/BatchEvaluateFeatureCommand.ts @@ -103,6 +103,7 @@ export interface BatchEvaluateFeatureCommandOutput extends BatchEvaluateFeatureR * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class BatchEvaluateFeatureCommand extends $Command diff --git a/clients/client-evidently/src/commands/CreateExperimentCommand.ts b/clients/client-evidently/src/commands/CreateExperimentCommand.ts index 3fbeba30ea86d..89548a5c0e14e 100644 --- a/clients/client-evidently/src/commands/CreateExperimentCommand.ts +++ b/clients/client-evidently/src/commands/CreateExperimentCommand.ts @@ -163,6 +163,7 @@ export interface CreateExperimentCommandOutput extends CreateExperimentResponse, * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class CreateExperimentCommand extends $Command diff --git a/clients/client-evidently/src/commands/CreateFeatureCommand.ts b/clients/client-evidently/src/commands/CreateFeatureCommand.ts index d7eb870014641..8783b81ef12d3 100644 --- a/clients/client-evidently/src/commands/CreateFeatureCommand.ts +++ b/clients/client-evidently/src/commands/CreateFeatureCommand.ts @@ -129,6 +129,7 @@ export interface CreateFeatureCommandOutput extends CreateFeatureResponse, __Met * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class CreateFeatureCommand extends $Command diff --git a/clients/client-evidently/src/commands/CreateLaunchCommand.ts b/clients/client-evidently/src/commands/CreateLaunchCommand.ts index 2db1cbae6de44..3193491e69dc9 100644 --- a/clients/client-evidently/src/commands/CreateLaunchCommand.ts +++ b/clients/client-evidently/src/commands/CreateLaunchCommand.ts @@ -178,6 +178,7 @@ export interface CreateLaunchCommandOutput extends CreateLaunchResponse, __Metad * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class CreateLaunchCommand extends $Command diff --git a/clients/client-evidently/src/commands/CreateProjectCommand.ts b/clients/client-evidently/src/commands/CreateProjectCommand.ts index 97d0a82d1f628..09969406d8e9b 100644 --- a/clients/client-evidently/src/commands/CreateProjectCommand.ts +++ b/clients/client-evidently/src/commands/CreateProjectCommand.ts @@ -115,6 +115,7 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class CreateProjectCommand extends $Command diff --git a/clients/client-evidently/src/commands/CreateSegmentCommand.ts b/clients/client-evidently/src/commands/CreateSegmentCommand.ts index b38455e7133b6..08a71166b806f 100644 --- a/clients/client-evidently/src/commands/CreateSegmentCommand.ts +++ b/clients/client-evidently/src/commands/CreateSegmentCommand.ts @@ -96,6 +96,7 @@ export interface CreateSegmentCommandOutput extends CreateSegmentResponse, __Met * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class CreateSegmentCommand extends $Command diff --git a/clients/client-evidently/src/commands/DeleteExperimentCommand.ts b/clients/client-evidently/src/commands/DeleteExperimentCommand.ts index 393a7318d3d96..0bb3604a0dc31 100644 --- a/clients/client-evidently/src/commands/DeleteExperimentCommand.ts +++ b/clients/client-evidently/src/commands/DeleteExperimentCommand.ts @@ -73,6 +73,7 @@ export interface DeleteExperimentCommandOutput extends DeleteExperimentResponse, * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class DeleteExperimentCommand extends $Command diff --git a/clients/client-evidently/src/commands/DeleteFeatureCommand.ts b/clients/client-evidently/src/commands/DeleteFeatureCommand.ts index d3f2f195c31a4..9720ba3e0d515 100644 --- a/clients/client-evidently/src/commands/DeleteFeatureCommand.ts +++ b/clients/client-evidently/src/commands/DeleteFeatureCommand.ts @@ -69,6 +69,7 @@ export interface DeleteFeatureCommandOutput extends DeleteFeatureResponse, __Met * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class DeleteFeatureCommand extends $Command diff --git a/clients/client-evidently/src/commands/DeleteLaunchCommand.ts b/clients/client-evidently/src/commands/DeleteLaunchCommand.ts index 1e05a50f47fdd..676117ed59b05 100644 --- a/clients/client-evidently/src/commands/DeleteLaunchCommand.ts +++ b/clients/client-evidently/src/commands/DeleteLaunchCommand.ts @@ -70,6 +70,7 @@ export interface DeleteLaunchCommandOutput extends DeleteLaunchResponse, __Metad * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class DeleteLaunchCommand extends $Command diff --git a/clients/client-evidently/src/commands/DeleteProjectCommand.ts b/clients/client-evidently/src/commands/DeleteProjectCommand.ts index 2f958bde4d31f..22f4d145a388f 100644 --- a/clients/client-evidently/src/commands/DeleteProjectCommand.ts +++ b/clients/client-evidently/src/commands/DeleteProjectCommand.ts @@ -69,6 +69,7 @@ export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __Met * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class DeleteProjectCommand extends $Command diff --git a/clients/client-evidently/src/commands/DeleteSegmentCommand.ts b/clients/client-evidently/src/commands/DeleteSegmentCommand.ts index b04b582967b83..83890cec06d31 100644 --- a/clients/client-evidently/src/commands/DeleteSegmentCommand.ts +++ b/clients/client-evidently/src/commands/DeleteSegmentCommand.ts @@ -69,6 +69,7 @@ export interface DeleteSegmentCommandOutput extends DeleteSegmentResponse, __Met * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class DeleteSegmentCommand extends $Command diff --git a/clients/client-evidently/src/commands/EvaluateFeatureCommand.ts b/clients/client-evidently/src/commands/EvaluateFeatureCommand.ts index 2cca7d9944986..bab03afc529c4 100644 --- a/clients/client-evidently/src/commands/EvaluateFeatureCommand.ts +++ b/clients/client-evidently/src/commands/EvaluateFeatureCommand.ts @@ -102,6 +102,7 @@ export interface EvaluateFeatureCommandOutput extends EvaluateFeatureResponse, _ * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class EvaluateFeatureCommand extends $Command diff --git a/clients/client-evidently/src/commands/GetExperimentCommand.ts b/clients/client-evidently/src/commands/GetExperimentCommand.ts index 11bc4f43aeb12..2bf48749052a5 100644 --- a/clients/client-evidently/src/commands/GetExperimentCommand.ts +++ b/clients/client-evidently/src/commands/GetExperimentCommand.ts @@ -119,6 +119,7 @@ export interface GetExperimentCommandOutput extends GetExperimentResponse, __Met * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class GetExperimentCommand extends $Command diff --git a/clients/client-evidently/src/commands/GetExperimentResultsCommand.ts b/clients/client-evidently/src/commands/GetExperimentResultsCommand.ts index 2fe34e28a82b1..5078137872246 100644 --- a/clients/client-evidently/src/commands/GetExperimentResultsCommand.ts +++ b/clients/client-evidently/src/commands/GetExperimentResultsCommand.ts @@ -115,6 +115,7 @@ export interface GetExperimentResultsCommandOutput extends GetExperimentResultsR * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class GetExperimentResultsCommand extends $Command diff --git a/clients/client-evidently/src/commands/GetFeatureCommand.ts b/clients/client-evidently/src/commands/GetFeatureCommand.ts index 982b352de7272..99c47b9309538 100644 --- a/clients/client-evidently/src/commands/GetFeatureCommand.ts +++ b/clients/client-evidently/src/commands/GetFeatureCommand.ts @@ -103,6 +103,7 @@ export interface GetFeatureCommandOutput extends GetFeatureResponse, __MetadataB * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class GetFeatureCommand extends $Command diff --git a/clients/client-evidently/src/commands/GetLaunchCommand.ts b/clients/client-evidently/src/commands/GetLaunchCommand.ts index 9fa659a0afc72..87204e87a85c5 100644 --- a/clients/client-evidently/src/commands/GetLaunchCommand.ts +++ b/clients/client-evidently/src/commands/GetLaunchCommand.ts @@ -126,6 +126,7 @@ export interface GetLaunchCommandOutput extends GetLaunchResponse, __MetadataBea * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class GetLaunchCommand extends $Command diff --git a/clients/client-evidently/src/commands/GetProjectCommand.ts b/clients/client-evidently/src/commands/GetProjectCommand.ts index b2f65d12b1c2d..3ad7a053929fa 100644 --- a/clients/client-evidently/src/commands/GetProjectCommand.ts +++ b/clients/client-evidently/src/commands/GetProjectCommand.ts @@ -97,6 +97,7 @@ export interface GetProjectCommandOutput extends GetProjectResponse, __MetadataB * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class GetProjectCommand extends $Command diff --git a/clients/client-evidently/src/commands/GetSegmentCommand.ts b/clients/client-evidently/src/commands/GetSegmentCommand.ts index 98e3d167bc8b2..35e4ed875666a 100644 --- a/clients/client-evidently/src/commands/GetSegmentCommand.ts +++ b/clients/client-evidently/src/commands/GetSegmentCommand.ts @@ -80,6 +80,7 @@ export interface GetSegmentCommandOutput extends GetSegmentResponse, __MetadataB * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class GetSegmentCommand extends $Command diff --git a/clients/client-evidently/src/commands/ListExperimentsCommand.ts b/clients/client-evidently/src/commands/ListExperimentsCommand.ts index e475a25da8ec7..93b480e3c39f8 100644 --- a/clients/client-evidently/src/commands/ListExperimentsCommand.ts +++ b/clients/client-evidently/src/commands/ListExperimentsCommand.ts @@ -120,6 +120,7 @@ export interface ListExperimentsCommandOutput extends ListExperimentsResponse, _ * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class ListExperimentsCommand extends $Command diff --git a/clients/client-evidently/src/commands/ListFeaturesCommand.ts b/clients/client-evidently/src/commands/ListFeaturesCommand.ts index 5f413912ed579..90683d2d2f621 100644 --- a/clients/client-evidently/src/commands/ListFeaturesCommand.ts +++ b/clients/client-evidently/src/commands/ListFeaturesCommand.ts @@ -90,6 +90,7 @@ export interface ListFeaturesCommandOutput extends ListFeaturesResponse, __Metad * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class ListFeaturesCommand extends $Command diff --git a/clients/client-evidently/src/commands/ListLaunchesCommand.ts b/clients/client-evidently/src/commands/ListLaunchesCommand.ts index b32a652c8258f..2c643622999e3 100644 --- a/clients/client-evidently/src/commands/ListLaunchesCommand.ts +++ b/clients/client-evidently/src/commands/ListLaunchesCommand.ts @@ -127,6 +127,7 @@ export interface ListLaunchesCommandOutput extends ListLaunchesResponse, __Metad * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class ListLaunchesCommand extends $Command diff --git a/clients/client-evidently/src/commands/ListProjectsCommand.ts b/clients/client-evidently/src/commands/ListProjectsCommand.ts index 3011704b1a417..a6d5c10e3d0b9 100644 --- a/clients/client-evidently/src/commands/ListProjectsCommand.ts +++ b/clients/client-evidently/src/commands/ListProjectsCommand.ts @@ -84,6 +84,7 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class ListProjectsCommand extends $Command diff --git a/clients/client-evidently/src/commands/ListSegmentReferencesCommand.ts b/clients/client-evidently/src/commands/ListSegmentReferencesCommand.ts index 71499362a4a10..52d7bf52456af 100644 --- a/clients/client-evidently/src/commands/ListSegmentReferencesCommand.ts +++ b/clients/client-evidently/src/commands/ListSegmentReferencesCommand.ts @@ -81,6 +81,7 @@ export interface ListSegmentReferencesCommandOutput extends ListSegmentReference * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class ListSegmentReferencesCommand extends $Command diff --git a/clients/client-evidently/src/commands/ListSegmentsCommand.ts b/clients/client-evidently/src/commands/ListSegmentsCommand.ts index 68a5ae3b921ff..21ed0fc8d3d56 100644 --- a/clients/client-evidently/src/commands/ListSegmentsCommand.ts +++ b/clients/client-evidently/src/commands/ListSegmentsCommand.ts @@ -80,6 +80,7 @@ export interface ListSegmentsCommandOutput extends ListSegmentsResponse, __Metad * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class ListSegmentsCommand extends $Command diff --git a/clients/client-evidently/src/commands/ListTagsForResourceCommand.ts b/clients/client-evidently/src/commands/ListTagsForResourceCommand.ts index 828c502b5e4e9..75d1ee37252a7 100644 --- a/clients/client-evidently/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-evidently/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-evidently/src/commands/PutProjectEventsCommand.ts b/clients/client-evidently/src/commands/PutProjectEventsCommand.ts index b80eb96b3411a..24656b9e9852b 100644 --- a/clients/client-evidently/src/commands/PutProjectEventsCommand.ts +++ b/clients/client-evidently/src/commands/PutProjectEventsCommand.ts @@ -82,6 +82,36 @@ export interface PutProjectEventsCommandOutput extends PutProjectEventsResponse, * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * + * @example Post evaluation Event for Project + * ```javascript + * // + * const input = { + * events: [ + * { + * data: `{"feature":"ExampleFeature","entityId":"username@email.com","entityAttributes":{"browser":{"s":"Chrome"}},"variation":"variationA","type":"EXPERIMENT_RULE_MATCH","details":{"experiment":"Jan2020_landing_page_banner","treatment":"control","salt":"ADJNC1237ASDNU"}}`, + * timestamp: 1627580583, + * type: "aws.evidently.evaluation" + * } + * ], + * project: "ExampleProject" + * }; + * const command = new PutProjectEventsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * eventResults: [ + * { + * errorCode: "null", + * errorMessage: "null", + * eventId: "e55c1f5f-309b-440e-b0d8-64506987c20f" + * } + * ], + * failedEventCount: 0 + * } + * *\/ + * ``` + * * @public */ export class PutProjectEventsCommand extends $Command diff --git a/clients/client-evidently/src/commands/StartExperimentCommand.ts b/clients/client-evidently/src/commands/StartExperimentCommand.ts index 3722d04e6394a..6c9d69db75ee1 100644 --- a/clients/client-evidently/src/commands/StartExperimentCommand.ts +++ b/clients/client-evidently/src/commands/StartExperimentCommand.ts @@ -76,6 +76,7 @@ export interface StartExperimentCommandOutput extends StartExperimentResponse, _ * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class StartExperimentCommand extends $Command diff --git a/clients/client-evidently/src/commands/StartLaunchCommand.ts b/clients/client-evidently/src/commands/StartLaunchCommand.ts index d4a0843ed5429..36af4e13611d8 100644 --- a/clients/client-evidently/src/commands/StartLaunchCommand.ts +++ b/clients/client-evidently/src/commands/StartLaunchCommand.ts @@ -132,6 +132,7 @@ export interface StartLaunchCommandOutput extends StartLaunchResponse, __Metadat * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class StartLaunchCommand extends $Command diff --git a/clients/client-evidently/src/commands/StopExperimentCommand.ts b/clients/client-evidently/src/commands/StopExperimentCommand.ts index 372736811729c..f09e60823fe4d 100644 --- a/clients/client-evidently/src/commands/StopExperimentCommand.ts +++ b/clients/client-evidently/src/commands/StopExperimentCommand.ts @@ -77,6 +77,7 @@ export interface StopExperimentCommandOutput extends StopExperimentResponse, __M * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class StopExperimentCommand extends $Command diff --git a/clients/client-evidently/src/commands/StopLaunchCommand.ts b/clients/client-evidently/src/commands/StopLaunchCommand.ts index 373b00d10a013..bad248c21f1bb 100644 --- a/clients/client-evidently/src/commands/StopLaunchCommand.ts +++ b/clients/client-evidently/src/commands/StopLaunchCommand.ts @@ -74,6 +74,7 @@ export interface StopLaunchCommandOutput extends StopLaunchResponse, __MetadataB * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class StopLaunchCommand extends $Command diff --git a/clients/client-evidently/src/commands/TagResourceCommand.ts b/clients/client-evidently/src/commands/TagResourceCommand.ts index d71e0ccad710d..c038403559ed5 100644 --- a/clients/client-evidently/src/commands/TagResourceCommand.ts +++ b/clients/client-evidently/src/commands/TagResourceCommand.ts @@ -77,6 +77,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-evidently/src/commands/TestSegmentPatternCommand.ts b/clients/client-evidently/src/commands/TestSegmentPatternCommand.ts index 232ecaf570213..25b48ef271108 100644 --- a/clients/client-evidently/src/commands/TestSegmentPatternCommand.ts +++ b/clients/client-evidently/src/commands/TestSegmentPatternCommand.ts @@ -66,6 +66,7 @@ export interface TestSegmentPatternCommandOutput extends TestSegmentPatternRespo * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class TestSegmentPatternCommand extends $Command diff --git a/clients/client-evidently/src/commands/UntagResourceCommand.ts b/clients/client-evidently/src/commands/UntagResourceCommand.ts index b07dbfb0a96e9..dd09621c54ea4 100644 --- a/clients/client-evidently/src/commands/UntagResourceCommand.ts +++ b/clients/client-evidently/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-evidently/src/commands/UpdateExperimentCommand.ts b/clients/client-evidently/src/commands/UpdateExperimentCommand.ts index 1e7a433028b86..05556800e03e0 100644 --- a/clients/client-evidently/src/commands/UpdateExperimentCommand.ts +++ b/clients/client-evidently/src/commands/UpdateExperimentCommand.ts @@ -151,6 +151,7 @@ export interface UpdateExperimentCommandOutput extends UpdateExperimentResponse, * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class UpdateExperimentCommand extends $Command diff --git a/clients/client-evidently/src/commands/UpdateFeatureCommand.ts b/clients/client-evidently/src/commands/UpdateFeatureCommand.ts index d2062e3c6b448..392ddcb5c93e0 100644 --- a/clients/client-evidently/src/commands/UpdateFeatureCommand.ts +++ b/clients/client-evidently/src/commands/UpdateFeatureCommand.ts @@ -127,6 +127,7 @@ export interface UpdateFeatureCommandOutput extends UpdateFeatureResponse, __Met * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class UpdateFeatureCommand extends $Command diff --git a/clients/client-evidently/src/commands/UpdateLaunchCommand.ts b/clients/client-evidently/src/commands/UpdateLaunchCommand.ts index d9991b519a6f2..9400ba7f14fae 100644 --- a/clients/client-evidently/src/commands/UpdateLaunchCommand.ts +++ b/clients/client-evidently/src/commands/UpdateLaunchCommand.ts @@ -167,6 +167,7 @@ export interface UpdateLaunchCommandOutput extends UpdateLaunchResponse, __Metad * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class UpdateLaunchCommand extends $Command diff --git a/clients/client-evidently/src/commands/UpdateProjectCommand.ts b/clients/client-evidently/src/commands/UpdateProjectCommand.ts index be29eb7dbbac9..b183964714395 100644 --- a/clients/client-evidently/src/commands/UpdateProjectCommand.ts +++ b/clients/client-evidently/src/commands/UpdateProjectCommand.ts @@ -109,6 +109,7 @@ export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __Met * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class UpdateProjectCommand extends $Command diff --git a/clients/client-evidently/src/commands/UpdateProjectDataDeliveryCommand.ts b/clients/client-evidently/src/commands/UpdateProjectDataDeliveryCommand.ts index b6fe1042a775a..ae3bc6e684c6e 100644 --- a/clients/client-evidently/src/commands/UpdateProjectDataDeliveryCommand.ts +++ b/clients/client-evidently/src/commands/UpdateProjectDataDeliveryCommand.ts @@ -110,6 +110,7 @@ export interface UpdateProjectDataDeliveryCommandOutput extends UpdateProjectDat * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* + * * @public */ export class UpdateProjectDataDeliveryCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/AssociateUserToPermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/AssociateUserToPermissionGroupCommand.ts index 0790b5bd816a7..5ef9829a3d518 100644 --- a/clients/client-finspace-data/src/commands/AssociateUserToPermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/AssociateUserToPermissionGroupCommand.ts @@ -83,6 +83,7 @@ export interface AssociateUserToPermissionGroupCommandOutput * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class AssociateUserToPermissionGroupCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/CreateChangesetCommand.ts b/clients/client-finspace-data/src/commands/CreateChangesetCommand.ts index e6d2eb39932c6..414e8f48ccb73 100644 --- a/clients/client-finspace-data/src/commands/CreateChangesetCommand.ts +++ b/clients/client-finspace-data/src/commands/CreateChangesetCommand.ts @@ -88,6 +88,7 @@ export interface CreateChangesetCommandOutput extends CreateChangesetResponse, _ * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class CreateChangesetCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/CreateDataViewCommand.ts b/clients/client-finspace-data/src/commands/CreateDataViewCommand.ts index 508b64ef70b0d..230e1cd29fd12 100644 --- a/clients/client-finspace-data/src/commands/CreateDataViewCommand.ts +++ b/clients/client-finspace-data/src/commands/CreateDataViewCommand.ts @@ -93,6 +93,7 @@ export interface CreateDataViewCommandOutput extends CreateDataViewResponse, __M * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class CreateDataViewCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/CreateDatasetCommand.ts b/clients/client-finspace-data/src/commands/CreateDatasetCommand.ts index 6150f199cec14..6468fc4a718f3 100644 --- a/clients/client-finspace-data/src/commands/CreateDatasetCommand.ts +++ b/clients/client-finspace-data/src/commands/CreateDatasetCommand.ts @@ -114,6 +114,7 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class CreateDatasetCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/CreatePermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/CreatePermissionGroupCommand.ts index 1bf820640eb8a..53da3324029ac 100644 --- a/clients/client-finspace-data/src/commands/CreatePermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/CreatePermissionGroupCommand.ts @@ -85,6 +85,7 @@ export interface CreatePermissionGroupCommandOutput extends CreatePermissionGrou * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class CreatePermissionGroupCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/CreateUserCommand.ts b/clients/client-finspace-data/src/commands/CreateUserCommand.ts index c61e17c2cee67..5c1aa9a709373 100644 --- a/clients/client-finspace-data/src/commands/CreateUserCommand.ts +++ b/clients/client-finspace-data/src/commands/CreateUserCommand.ts @@ -82,6 +82,7 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class CreateUserCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/DeleteDatasetCommand.ts b/clients/client-finspace-data/src/commands/DeleteDatasetCommand.ts index d33ec945208b6..6bc8b0068d7d6 100644 --- a/clients/client-finspace-data/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-finspace-data/src/commands/DeleteDatasetCommand.ts @@ -80,6 +80,7 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class DeleteDatasetCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/DeletePermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/DeletePermissionGroupCommand.ts index 052efd7943822..80c517e72f9c7 100644 --- a/clients/client-finspace-data/src/commands/DeletePermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/DeletePermissionGroupCommand.ts @@ -80,6 +80,7 @@ export interface DeletePermissionGroupCommandOutput extends DeletePermissionGrou * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class DeletePermissionGroupCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/DisableUserCommand.ts b/clients/client-finspace-data/src/commands/DisableUserCommand.ts index 96257227832ec..e6cbd68cc86aa 100644 --- a/clients/client-finspace-data/src/commands/DisableUserCommand.ts +++ b/clients/client-finspace-data/src/commands/DisableUserCommand.ts @@ -77,6 +77,7 @@ export interface DisableUserCommandOutput extends DisableUserResponse, __Metadat * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class DisableUserCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/DisassociateUserFromPermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/DisassociateUserFromPermissionGroupCommand.ts index cdababdfd8f7e..5c05924786203 100644 --- a/clients/client-finspace-data/src/commands/DisassociateUserFromPermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/DisassociateUserFromPermissionGroupCommand.ts @@ -86,6 +86,7 @@ export interface DisassociateUserFromPermissionGroupCommandOutput * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class DisassociateUserFromPermissionGroupCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/EnableUserCommand.ts b/clients/client-finspace-data/src/commands/EnableUserCommand.ts index 2e697eaa0397e..82fc242bebbc5 100644 --- a/clients/client-finspace-data/src/commands/EnableUserCommand.ts +++ b/clients/client-finspace-data/src/commands/EnableUserCommand.ts @@ -80,6 +80,7 @@ export interface EnableUserCommandOutput extends EnableUserResponse, __MetadataB * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class EnableUserCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/GetChangesetCommand.ts b/clients/client-finspace-data/src/commands/GetChangesetCommand.ts index 5f3c7f19e49f3..2df88ef95fe30 100644 --- a/clients/client-finspace-data/src/commands/GetChangesetCommand.ts +++ b/clients/client-finspace-data/src/commands/GetChangesetCommand.ts @@ -96,6 +96,7 @@ export interface GetChangesetCommandOutput extends GetChangesetResponse, __Metad * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class GetChangesetCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/GetDataViewCommand.ts b/clients/client-finspace-data/src/commands/GetDataViewCommand.ts index f648b8ac57069..d512a6c872d32 100644 --- a/clients/client-finspace-data/src/commands/GetDataViewCommand.ts +++ b/clients/client-finspace-data/src/commands/GetDataViewCommand.ts @@ -98,6 +98,7 @@ export interface GetDataViewCommandOutput extends GetDataViewResponse, __Metadat * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class GetDataViewCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/GetDatasetCommand.ts b/clients/client-finspace-data/src/commands/GetDatasetCommand.ts index f02225e044226..4088f7ac27346 100644 --- a/clients/client-finspace-data/src/commands/GetDatasetCommand.ts +++ b/clients/client-finspace-data/src/commands/GetDatasetCommand.ts @@ -98,6 +98,7 @@ export interface GetDatasetCommandOutput extends GetDatasetResponse, __MetadataB * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class GetDatasetCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/GetExternalDataViewAccessDetailsCommand.ts b/clients/client-finspace-data/src/commands/GetExternalDataViewAccessDetailsCommand.ts index e16743155e37e..668d1f3dc740c 100644 --- a/clients/client-finspace-data/src/commands/GetExternalDataViewAccessDetailsCommand.ts +++ b/clients/client-finspace-data/src/commands/GetExternalDataViewAccessDetailsCommand.ts @@ -100,6 +100,7 @@ export interface GetExternalDataViewAccessDetailsCommandOutput * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class GetExternalDataViewAccessDetailsCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/GetPermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/GetPermissionGroupCommand.ts index b03aa2397224f..480ee4d04a063 100644 --- a/clients/client-finspace-data/src/commands/GetPermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/GetPermissionGroupCommand.ts @@ -87,6 +87,7 @@ export interface GetPermissionGroupCommandOutput extends GetPermissionGroupRespo * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class GetPermissionGroupCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/GetProgrammaticAccessCredentialsCommand.ts b/clients/client-finspace-data/src/commands/GetProgrammaticAccessCredentialsCommand.ts index d6af88afdda15..003ed9bb69cc1 100644 --- a/clients/client-finspace-data/src/commands/GetProgrammaticAccessCredentialsCommand.ts +++ b/clients/client-finspace-data/src/commands/GetProgrammaticAccessCredentialsCommand.ts @@ -85,6 +85,7 @@ export interface GetProgrammaticAccessCredentialsCommandOutput * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class GetProgrammaticAccessCredentialsCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/GetUserCommand.ts b/clients/client-finspace-data/src/commands/GetUserCommand.ts index 78cd08c3078d4..b3b43f382016f 100644 --- a/clients/client-finspace-data/src/commands/GetUserCommand.ts +++ b/clients/client-finspace-data/src/commands/GetUserCommand.ts @@ -85,6 +85,7 @@ export interface GetUserCommandOutput extends GetUserResponse, __MetadataBearer * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class GetUserCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/GetWorkingLocationCommand.ts b/clients/client-finspace-data/src/commands/GetWorkingLocationCommand.ts index 5c36124907461..6f212b0de8bc0 100644 --- a/clients/client-finspace-data/src/commands/GetWorkingLocationCommand.ts +++ b/clients/client-finspace-data/src/commands/GetWorkingLocationCommand.ts @@ -73,6 +73,7 @@ export interface GetWorkingLocationCommandOutput extends GetWorkingLocationRespo * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class GetWorkingLocationCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/ListChangesetsCommand.ts b/clients/client-finspace-data/src/commands/ListChangesetsCommand.ts index fec8783b9959f..1951eebf0302c 100644 --- a/clients/client-finspace-data/src/commands/ListChangesetsCommand.ts +++ b/clients/client-finspace-data/src/commands/ListChangesetsCommand.ts @@ -102,6 +102,7 @@ export interface ListChangesetsCommandOutput extends ListChangesetsResponse, __M * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class ListChangesetsCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/ListDataViewsCommand.ts b/clients/client-finspace-data/src/commands/ListDataViewsCommand.ts index b1546ea3faf44..68f9bdedc26fb 100644 --- a/clients/client-finspace-data/src/commands/ListDataViewsCommand.ts +++ b/clients/client-finspace-data/src/commands/ListDataViewsCommand.ts @@ -104,6 +104,7 @@ export interface ListDataViewsCommandOutput extends ListDataViewsResponse, __Met * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class ListDataViewsCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/ListDatasetsCommand.ts b/clients/client-finspace-data/src/commands/ListDatasetsCommand.ts index 0b991c1c29bd4..77be1bac64bad 100644 --- a/clients/client-finspace-data/src/commands/ListDatasetsCommand.ts +++ b/clients/client-finspace-data/src/commands/ListDatasetsCommand.ts @@ -105,6 +105,7 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class ListDatasetsCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/ListPermissionGroupsByUserCommand.ts b/clients/client-finspace-data/src/commands/ListPermissionGroupsByUserCommand.ts index 7bd1d9f13092d..68e028ad43483 100644 --- a/clients/client-finspace-data/src/commands/ListPermissionGroupsByUserCommand.ts +++ b/clients/client-finspace-data/src/commands/ListPermissionGroupsByUserCommand.ts @@ -86,6 +86,7 @@ export interface ListPermissionGroupsByUserCommandOutput extends ListPermissionG * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class ListPermissionGroupsByUserCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/ListPermissionGroupsCommand.ts b/clients/client-finspace-data/src/commands/ListPermissionGroupsCommand.ts index 942512418c6bc..73f553ca38451 100644 --- a/clients/client-finspace-data/src/commands/ListPermissionGroupsCommand.ts +++ b/clients/client-finspace-data/src/commands/ListPermissionGroupsCommand.ts @@ -88,6 +88,7 @@ export interface ListPermissionGroupsCommandOutput extends ListPermissionGroupsR * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class ListPermissionGroupsCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/ListUsersByPermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/ListUsersByPermissionGroupCommand.ts index 2a3040b1153ab..4b7f3c5e7589f 100644 --- a/clients/client-finspace-data/src/commands/ListUsersByPermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/ListUsersByPermissionGroupCommand.ts @@ -92,6 +92,7 @@ export interface ListUsersByPermissionGroupCommandOutput extends ListUsersByPerm * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class ListUsersByPermissionGroupCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/ListUsersCommand.ts b/clients/client-finspace-data/src/commands/ListUsersCommand.ts index d0423b9bffcc7..131594494297a 100644 --- a/clients/client-finspace-data/src/commands/ListUsersCommand.ts +++ b/clients/client-finspace-data/src/commands/ListUsersCommand.ts @@ -88,6 +88,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class ListUsersCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/ResetUserPasswordCommand.ts b/clients/client-finspace-data/src/commands/ResetUserPasswordCommand.ts index 050b0a0e4a19c..be62ad61113a9 100644 --- a/clients/client-finspace-data/src/commands/ResetUserPasswordCommand.ts +++ b/clients/client-finspace-data/src/commands/ResetUserPasswordCommand.ts @@ -82,6 +82,7 @@ export interface ResetUserPasswordCommandOutput extends ResetUserPasswordRespons * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class ResetUserPasswordCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/UpdateChangesetCommand.ts b/clients/client-finspace-data/src/commands/UpdateChangesetCommand.ts index 2e453e648c5ba..2bde4daa45f24 100644 --- a/clients/client-finspace-data/src/commands/UpdateChangesetCommand.ts +++ b/clients/client-finspace-data/src/commands/UpdateChangesetCommand.ts @@ -85,6 +85,7 @@ export interface UpdateChangesetCommandOutput extends UpdateChangesetResponse, _ * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class UpdateChangesetCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/UpdateDatasetCommand.ts b/clients/client-finspace-data/src/commands/UpdateDatasetCommand.ts index 8a95e1b441556..6e3b35a59f895 100644 --- a/clients/client-finspace-data/src/commands/UpdateDatasetCommand.ts +++ b/clients/client-finspace-data/src/commands/UpdateDatasetCommand.ts @@ -95,6 +95,7 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class UpdateDatasetCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/UpdatePermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/UpdatePermissionGroupCommand.ts index 8303f68a49b16..65a3d0fde2b4d 100644 --- a/clients/client-finspace-data/src/commands/UpdatePermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/UpdatePermissionGroupCommand.ts @@ -86,6 +86,7 @@ export interface UpdatePermissionGroupCommandOutput extends UpdatePermissionGrou * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class UpdatePermissionGroupCommand extends $Command diff --git a/clients/client-finspace-data/src/commands/UpdateUserCommand.ts b/clients/client-finspace-data/src/commands/UpdateUserCommand.ts index 48a7d51cb2ee3..1807c967912da 100644 --- a/clients/client-finspace-data/src/commands/UpdateUserCommand.ts +++ b/clients/client-finspace-data/src/commands/UpdateUserCommand.ts @@ -82,6 +82,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB * @throws {@link FinspaceDataServiceException} *

Base exception class for all service exceptions from FinspaceData service.

* + * * @public */ export class UpdateUserCommand extends $Command diff --git a/clients/client-finspace/src/commands/CreateEnvironmentCommand.ts b/clients/client-finspace/src/commands/CreateEnvironmentCommand.ts index 2c37288c2abd8..faf20f5e99ce5 100644 --- a/clients/client-finspace/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/CreateEnvironmentCommand.ts @@ -107,6 +107,7 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentRespons * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class CreateEnvironmentCommand extends $Command diff --git a/clients/client-finspace/src/commands/CreateKxChangesetCommand.ts b/clients/client-finspace/src/commands/CreateKxChangesetCommand.ts index 9d92d12f9948d..4a1a3f5d17e19 100644 --- a/clients/client-finspace/src/commands/CreateKxChangesetCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxChangesetCommand.ts @@ -104,6 +104,7 @@ export interface CreateKxChangesetCommandOutput extends CreateKxChangesetRespons * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class CreateKxChangesetCommand extends $Command diff --git a/clients/client-finspace/src/commands/CreateKxClusterCommand.ts b/clients/client-finspace/src/commands/CreateKxClusterCommand.ts index ce955f3babd17..4d6ba06e514c7 100644 --- a/clients/client-finspace/src/commands/CreateKxClusterCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxClusterCommand.ts @@ -279,6 +279,7 @@ export interface CreateKxClusterCommandOutput extends CreateKxClusterResponse, _ * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class CreateKxClusterCommand extends $Command diff --git a/clients/client-finspace/src/commands/CreateKxDatabaseCommand.ts b/clients/client-finspace/src/commands/CreateKxDatabaseCommand.ts index 506639120594a..f8eb3b6e9e5da 100644 --- a/clients/client-finspace/src/commands/CreateKxDatabaseCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxDatabaseCommand.ts @@ -91,6 +91,7 @@ export interface CreateKxDatabaseCommandOutput extends CreateKxDatabaseResponse, * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class CreateKxDatabaseCommand extends $Command diff --git a/clients/client-finspace/src/commands/CreateKxDataviewCommand.ts b/clients/client-finspace/src/commands/CreateKxDataviewCommand.ts index 10784ee942308..7b5db8ec261ba 100644 --- a/clients/client-finspace/src/commands/CreateKxDataviewCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxDataviewCommand.ts @@ -122,6 +122,7 @@ export interface CreateKxDataviewCommandOutput extends CreateKxDataviewResponse, * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class CreateKxDataviewCommand extends $Command diff --git a/clients/client-finspace/src/commands/CreateKxEnvironmentCommand.ts b/clients/client-finspace/src/commands/CreateKxEnvironmentCommand.ts index 98a8f0b21b8e3..f1d1b93f72798 100644 --- a/clients/client-finspace/src/commands/CreateKxEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxEnvironmentCommand.ts @@ -90,6 +90,7 @@ export interface CreateKxEnvironmentCommandOutput extends CreateKxEnvironmentRes * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class CreateKxEnvironmentCommand extends $Command diff --git a/clients/client-finspace/src/commands/CreateKxScalingGroupCommand.ts b/clients/client-finspace/src/commands/CreateKxScalingGroupCommand.ts index 3226ab158384f..1ff33a367436a 100644 --- a/clients/client-finspace/src/commands/CreateKxScalingGroupCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxScalingGroupCommand.ts @@ -90,6 +90,7 @@ export interface CreateKxScalingGroupCommandOutput extends CreateKxScalingGroupR * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class CreateKxScalingGroupCommand extends $Command diff --git a/clients/client-finspace/src/commands/CreateKxUserCommand.ts b/clients/client-finspace/src/commands/CreateKxUserCommand.ts index f7015177f88bc..9855e04ba46a2 100644 --- a/clients/client-finspace/src/commands/CreateKxUserCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxUserCommand.ts @@ -89,6 +89,7 @@ export interface CreateKxUserCommandOutput extends CreateKxUserResponse, __Metad * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class CreateKxUserCommand extends $Command diff --git a/clients/client-finspace/src/commands/CreateKxVolumeCommand.ts b/clients/client-finspace/src/commands/CreateKxVolumeCommand.ts index e3dff9ecde7d8..86a8ba997dc0c 100644 --- a/clients/client-finspace/src/commands/CreateKxVolumeCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxVolumeCommand.ts @@ -111,6 +111,7 @@ export interface CreateKxVolumeCommandOutput extends CreateKxVolumeResponse, __M * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class CreateKxVolumeCommand extends $Command diff --git a/clients/client-finspace/src/commands/DeleteEnvironmentCommand.ts b/clients/client-finspace/src/commands/DeleteEnvironmentCommand.ts index 58e759dd2cfc5..b64eccdd47284 100644 --- a/clients/client-finspace/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/DeleteEnvironmentCommand.ts @@ -71,6 +71,7 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentRespons * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class DeleteEnvironmentCommand extends $Command diff --git a/clients/client-finspace/src/commands/DeleteKxClusterCommand.ts b/clients/client-finspace/src/commands/DeleteKxClusterCommand.ts index f75a8d273fdee..3141ac9ad88dc 100644 --- a/clients/client-finspace/src/commands/DeleteKxClusterCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxClusterCommand.ts @@ -77,6 +77,7 @@ export interface DeleteKxClusterCommandOutput extends DeleteKxClusterResponse, _ * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class DeleteKxClusterCommand extends $Command diff --git a/clients/client-finspace/src/commands/DeleteKxClusterNodeCommand.ts b/clients/client-finspace/src/commands/DeleteKxClusterNodeCommand.ts index 9a2de49a623f2..7a3fd6a3da678 100644 --- a/clients/client-finspace/src/commands/DeleteKxClusterNodeCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxClusterNodeCommand.ts @@ -72,6 +72,7 @@ export interface DeleteKxClusterNodeCommandOutput extends DeleteKxClusterNodeRes * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class DeleteKxClusterNodeCommand extends $Command diff --git a/clients/client-finspace/src/commands/DeleteKxDatabaseCommand.ts b/clients/client-finspace/src/commands/DeleteKxDatabaseCommand.ts index 4dc8a156603c5..f6286143214fa 100644 --- a/clients/client-finspace/src/commands/DeleteKxDatabaseCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxDatabaseCommand.ts @@ -74,6 +74,7 @@ export interface DeleteKxDatabaseCommandOutput extends DeleteKxDatabaseResponse, * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class DeleteKxDatabaseCommand extends $Command diff --git a/clients/client-finspace/src/commands/DeleteKxDataviewCommand.ts b/clients/client-finspace/src/commands/DeleteKxDataviewCommand.ts index a6a7a798008a2..a02a8f1cdd8ef 100644 --- a/clients/client-finspace/src/commands/DeleteKxDataviewCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxDataviewCommand.ts @@ -76,6 +76,7 @@ export interface DeleteKxDataviewCommandOutput extends DeleteKxDataviewResponse, * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class DeleteKxDataviewCommand extends $Command diff --git a/clients/client-finspace/src/commands/DeleteKxEnvironmentCommand.ts b/clients/client-finspace/src/commands/DeleteKxEnvironmentCommand.ts index 378e092df87cf..15d1b54e37e37 100644 --- a/clients/client-finspace/src/commands/DeleteKxEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxEnvironmentCommand.ts @@ -73,6 +73,7 @@ export interface DeleteKxEnvironmentCommandOutput extends DeleteKxEnvironmentRes * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class DeleteKxEnvironmentCommand extends $Command diff --git a/clients/client-finspace/src/commands/DeleteKxScalingGroupCommand.ts b/clients/client-finspace/src/commands/DeleteKxScalingGroupCommand.ts index c7a92e9ba00bf..206d3ded613f1 100644 --- a/clients/client-finspace/src/commands/DeleteKxScalingGroupCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxScalingGroupCommand.ts @@ -78,6 +78,7 @@ export interface DeleteKxScalingGroupCommandOutput extends DeleteKxScalingGroupR * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class DeleteKxScalingGroupCommand extends $Command diff --git a/clients/client-finspace/src/commands/DeleteKxUserCommand.ts b/clients/client-finspace/src/commands/DeleteKxUserCommand.ts index e77ee8f780efc..1d877cae493bd 100644 --- a/clients/client-finspace/src/commands/DeleteKxUserCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxUserCommand.ts @@ -74,6 +74,7 @@ export interface DeleteKxUserCommandOutput extends DeleteKxUserResponse, __Metad * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class DeleteKxUserCommand extends $Command diff --git a/clients/client-finspace/src/commands/DeleteKxVolumeCommand.ts b/clients/client-finspace/src/commands/DeleteKxVolumeCommand.ts index 0790909897dae..44e040659ef8f 100644 --- a/clients/client-finspace/src/commands/DeleteKxVolumeCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxVolumeCommand.ts @@ -80,6 +80,7 @@ export interface DeleteKxVolumeCommandOutput extends DeleteKxVolumeResponse, __M * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class DeleteKxVolumeCommand extends $Command diff --git a/clients/client-finspace/src/commands/GetEnvironmentCommand.ts b/clients/client-finspace/src/commands/GetEnvironmentCommand.ts index 5bedf788de610..d7d473a099e58 100644 --- a/clients/client-finspace/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/GetEnvironmentCommand.ts @@ -92,6 +92,7 @@ export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __M * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class GetEnvironmentCommand extends $Command diff --git a/clients/client-finspace/src/commands/GetKxChangesetCommand.ts b/clients/client-finspace/src/commands/GetKxChangesetCommand.ts index 6c0bfa9c70fe1..e6f0eb0b84db8 100644 --- a/clients/client-finspace/src/commands/GetKxChangesetCommand.ts +++ b/clients/client-finspace/src/commands/GetKxChangesetCommand.ts @@ -90,6 +90,7 @@ export interface GetKxChangesetCommandOutput extends GetKxChangesetResponse, __M * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class GetKxChangesetCommand extends $Command diff --git a/clients/client-finspace/src/commands/GetKxClusterCommand.ts b/clients/client-finspace/src/commands/GetKxClusterCommand.ts index 7c71d268a12aa..39e4ababf89ae 100644 --- a/clients/client-finspace/src/commands/GetKxClusterCommand.ts +++ b/clients/client-finspace/src/commands/GetKxClusterCommand.ts @@ -181,6 +181,7 @@ export interface GetKxClusterCommandOutput extends GetKxClusterResponse, __Metad * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class GetKxClusterCommand extends $Command diff --git a/clients/client-finspace/src/commands/GetKxConnectionStringCommand.ts b/clients/client-finspace/src/commands/GetKxConnectionStringCommand.ts index 2431420b46edc..9c8ec5a1145dc 100644 --- a/clients/client-finspace/src/commands/GetKxConnectionStringCommand.ts +++ b/clients/client-finspace/src/commands/GetKxConnectionStringCommand.ts @@ -77,6 +77,7 @@ export interface GetKxConnectionStringCommandOutput extends GetKxConnectionStrin * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class GetKxConnectionStringCommand extends $Command diff --git a/clients/client-finspace/src/commands/GetKxDatabaseCommand.ts b/clients/client-finspace/src/commands/GetKxDatabaseCommand.ts index cd52f71427d35..8c6315907daba 100644 --- a/clients/client-finspace/src/commands/GetKxDatabaseCommand.ts +++ b/clients/client-finspace/src/commands/GetKxDatabaseCommand.ts @@ -81,6 +81,7 @@ export interface GetKxDatabaseCommandOutput extends GetKxDatabaseResponse, __Met * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class GetKxDatabaseCommand extends $Command diff --git a/clients/client-finspace/src/commands/GetKxDataviewCommand.ts b/clients/client-finspace/src/commands/GetKxDataviewCommand.ts index 82b1e15ef0919..080ce5771ffb5 100644 --- a/clients/client-finspace/src/commands/GetKxDataviewCommand.ts +++ b/clients/client-finspace/src/commands/GetKxDataviewCommand.ts @@ -115,6 +115,7 @@ export interface GetKxDataviewCommandOutput extends GetKxDataviewResponse, __Met * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class GetKxDataviewCommand extends $Command diff --git a/clients/client-finspace/src/commands/GetKxEnvironmentCommand.ts b/clients/client-finspace/src/commands/GetKxEnvironmentCommand.ts index 02d679f36133d..e740e7badf4ad 100644 --- a/clients/client-finspace/src/commands/GetKxEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/GetKxEnvironmentCommand.ts @@ -113,6 +113,7 @@ export interface GetKxEnvironmentCommandOutput extends GetKxEnvironmentResponse, * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class GetKxEnvironmentCommand extends $Command diff --git a/clients/client-finspace/src/commands/GetKxScalingGroupCommand.ts b/clients/client-finspace/src/commands/GetKxScalingGroupCommand.ts index 4dbedce570a32..730049faf4222 100644 --- a/clients/client-finspace/src/commands/GetKxScalingGroupCommand.ts +++ b/clients/client-finspace/src/commands/GetKxScalingGroupCommand.ts @@ -89,6 +89,7 @@ export interface GetKxScalingGroupCommandOutput extends GetKxScalingGroupRespons * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class GetKxScalingGroupCommand extends $Command diff --git a/clients/client-finspace/src/commands/GetKxUserCommand.ts b/clients/client-finspace/src/commands/GetKxUserCommand.ts index 813a24c6878f9..4d62f95f55eaf 100644 --- a/clients/client-finspace/src/commands/GetKxUserCommand.ts +++ b/clients/client-finspace/src/commands/GetKxUserCommand.ts @@ -75,6 +75,7 @@ export interface GetKxUserCommandOutput extends GetKxUserResponse, __MetadataBea * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class GetKxUserCommand extends $Command diff --git a/clients/client-finspace/src/commands/GetKxVolumeCommand.ts b/clients/client-finspace/src/commands/GetKxVolumeCommand.ts index 48212ee352c9e..57dff4bd112ab 100644 --- a/clients/client-finspace/src/commands/GetKxVolumeCommand.ts +++ b/clients/client-finspace/src/commands/GetKxVolumeCommand.ts @@ -102,6 +102,7 @@ export interface GetKxVolumeCommandOutput extends GetKxVolumeResponse, __Metadat * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class GetKxVolumeCommand extends $Command diff --git a/clients/client-finspace/src/commands/ListEnvironmentsCommand.ts b/clients/client-finspace/src/commands/ListEnvironmentsCommand.ts index 063947754b611..1d6d96a5b3874 100644 --- a/clients/client-finspace/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-finspace/src/commands/ListEnvironmentsCommand.ts @@ -93,6 +93,7 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResponse, * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class ListEnvironmentsCommand extends $Command diff --git a/clients/client-finspace/src/commands/ListKxChangesetsCommand.ts b/clients/client-finspace/src/commands/ListKxChangesetsCommand.ts index 515e1cd5f362c..a7014df6f48b4 100644 --- a/clients/client-finspace/src/commands/ListKxChangesetsCommand.ts +++ b/clients/client-finspace/src/commands/ListKxChangesetsCommand.ts @@ -83,6 +83,7 @@ export interface ListKxChangesetsCommandOutput extends ListKxChangesetsResponse, * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class ListKxChangesetsCommand extends $Command diff --git a/clients/client-finspace/src/commands/ListKxClusterNodesCommand.ts b/clients/client-finspace/src/commands/ListKxClusterNodesCommand.ts index 556f45cd3a98a..43bf07bae1c53 100644 --- a/clients/client-finspace/src/commands/ListKxClusterNodesCommand.ts +++ b/clients/client-finspace/src/commands/ListKxClusterNodesCommand.ts @@ -85,6 +85,7 @@ export interface ListKxClusterNodesCommandOutput extends ListKxClusterNodesRespo * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class ListKxClusterNodesCommand extends $Command diff --git a/clients/client-finspace/src/commands/ListKxClustersCommand.ts b/clients/client-finspace/src/commands/ListKxClustersCommand.ts index 169a55576fff5..dc1f00d960298 100644 --- a/clients/client-finspace/src/commands/ListKxClustersCommand.ts +++ b/clients/client-finspace/src/commands/ListKxClustersCommand.ts @@ -102,6 +102,7 @@ export interface ListKxClustersCommandOutput extends ListKxClustersResponse, __M * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class ListKxClustersCommand extends $Command diff --git a/clients/client-finspace/src/commands/ListKxDatabasesCommand.ts b/clients/client-finspace/src/commands/ListKxDatabasesCommand.ts index a27699d3d3b87..75ce22cf78a61 100644 --- a/clients/client-finspace/src/commands/ListKxDatabasesCommand.ts +++ b/clients/client-finspace/src/commands/ListKxDatabasesCommand.ts @@ -80,6 +80,7 @@ export interface ListKxDatabasesCommandOutput extends ListKxDatabasesResponse, _ * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class ListKxDatabasesCommand extends $Command diff --git a/clients/client-finspace/src/commands/ListKxDataviewsCommand.ts b/clients/client-finspace/src/commands/ListKxDataviewsCommand.ts index 544aaeb5e072c..fa4c0acd02455 100644 --- a/clients/client-finspace/src/commands/ListKxDataviewsCommand.ts +++ b/clients/client-finspace/src/commands/ListKxDataviewsCommand.ts @@ -120,6 +120,7 @@ export interface ListKxDataviewsCommandOutput extends ListKxDataviewsResponse, _ * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class ListKxDataviewsCommand extends $Command diff --git a/clients/client-finspace/src/commands/ListKxEnvironmentsCommand.ts b/clients/client-finspace/src/commands/ListKxEnvironmentsCommand.ts index 998b43fbcbbb3..cc86c425e03e9 100644 --- a/clients/client-finspace/src/commands/ListKxEnvironmentsCommand.ts +++ b/clients/client-finspace/src/commands/ListKxEnvironmentsCommand.ts @@ -113,6 +113,7 @@ export interface ListKxEnvironmentsCommandOutput extends ListKxEnvironmentsRespo * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class ListKxEnvironmentsCommand extends $Command diff --git a/clients/client-finspace/src/commands/ListKxScalingGroupsCommand.ts b/clients/client-finspace/src/commands/ListKxScalingGroupsCommand.ts index 4ad5ccc8d1120..1fa0aa7f964bb 100644 --- a/clients/client-finspace/src/commands/ListKxScalingGroupsCommand.ts +++ b/clients/client-finspace/src/commands/ListKxScalingGroupsCommand.ts @@ -94,6 +94,7 @@ export interface ListKxScalingGroupsCommandOutput extends ListKxScalingGroupsRes * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class ListKxScalingGroupsCommand extends $Command diff --git a/clients/client-finspace/src/commands/ListKxUsersCommand.ts b/clients/client-finspace/src/commands/ListKxUsersCommand.ts index f00bc62c907a9..d91ea41cae680 100644 --- a/clients/client-finspace/src/commands/ListKxUsersCommand.ts +++ b/clients/client-finspace/src/commands/ListKxUsersCommand.ts @@ -82,6 +82,7 @@ export interface ListKxUsersCommandOutput extends ListKxUsersResponse, __Metadat * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class ListKxUsersCommand extends $Command diff --git a/clients/client-finspace/src/commands/ListKxVolumesCommand.ts b/clients/client-finspace/src/commands/ListKxVolumesCommand.ts index ea2a0bd482754..2bf37526558fa 100644 --- a/clients/client-finspace/src/commands/ListKxVolumesCommand.ts +++ b/clients/client-finspace/src/commands/ListKxVolumesCommand.ts @@ -97,6 +97,7 @@ export interface ListKxVolumesCommandOutput extends ListKxVolumesResponse, __Met * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class ListKxVolumesCommand extends $Command diff --git a/clients/client-finspace/src/commands/ListTagsForResourceCommand.ts b/clients/client-finspace/src/commands/ListTagsForResourceCommand.ts index 90622173e0f71..39af816cd6493 100644 --- a/clients/client-finspace/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-finspace/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-finspace/src/commands/TagResourceCommand.ts b/clients/client-finspace/src/commands/TagResourceCommand.ts index 1c82781d3528f..c37d7b8271741 100644 --- a/clients/client-finspace/src/commands/TagResourceCommand.ts +++ b/clients/client-finspace/src/commands/TagResourceCommand.ts @@ -66,6 +66,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-finspace/src/commands/UntagResourceCommand.ts b/clients/client-finspace/src/commands/UntagResourceCommand.ts index 2d337dbc6b014..19dda2e7d36b6 100644 --- a/clients/client-finspace/src/commands/UntagResourceCommand.ts +++ b/clients/client-finspace/src/commands/UntagResourceCommand.ts @@ -66,6 +66,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-finspace/src/commands/UpdateEnvironmentCommand.ts b/clients/client-finspace/src/commands/UpdateEnvironmentCommand.ts index 981c48ebeafaf..e05bdf0c182ab 100644 --- a/clients/client-finspace/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/UpdateEnvironmentCommand.ts @@ -108,6 +108,7 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentRespons * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class UpdateEnvironmentCommand extends $Command diff --git a/clients/client-finspace/src/commands/UpdateKxClusterCodeConfigurationCommand.ts b/clients/client-finspace/src/commands/UpdateKxClusterCodeConfigurationCommand.ts index 2e75e2803bd36..b821275e568e5 100644 --- a/clients/client-finspace/src/commands/UpdateKxClusterCodeConfigurationCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxClusterCodeConfigurationCommand.ts @@ -100,6 +100,7 @@ export interface UpdateKxClusterCodeConfigurationCommandOutput * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class UpdateKxClusterCodeConfigurationCommand extends $Command diff --git a/clients/client-finspace/src/commands/UpdateKxClusterDatabasesCommand.ts b/clients/client-finspace/src/commands/UpdateKxClusterDatabasesCommand.ts index 1dc83bc2189ce..6930dc3571507 100644 --- a/clients/client-finspace/src/commands/UpdateKxClusterDatabasesCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxClusterDatabasesCommand.ts @@ -111,6 +111,7 @@ export interface UpdateKxClusterDatabasesCommandOutput extends UpdateKxClusterDa * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class UpdateKxClusterDatabasesCommand extends $Command diff --git a/clients/client-finspace/src/commands/UpdateKxDatabaseCommand.ts b/clients/client-finspace/src/commands/UpdateKxDatabaseCommand.ts index 54e5d8c6356a6..a7123e2cefdac 100644 --- a/clients/client-finspace/src/commands/UpdateKxDatabaseCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxDatabaseCommand.ts @@ -80,6 +80,7 @@ export interface UpdateKxDatabaseCommandOutput extends UpdateKxDatabaseResponse, * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class UpdateKxDatabaseCommand extends $Command diff --git a/clients/client-finspace/src/commands/UpdateKxDataviewCommand.ts b/clients/client-finspace/src/commands/UpdateKxDataviewCommand.ts index 3ac7f4069d003..1bbc87d255926 100644 --- a/clients/client-finspace/src/commands/UpdateKxDataviewCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxDataviewCommand.ts @@ -131,6 +131,7 @@ export interface UpdateKxDataviewCommandOutput extends UpdateKxDataviewResponse, * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class UpdateKxDataviewCommand extends $Command diff --git a/clients/client-finspace/src/commands/UpdateKxEnvironmentCommand.ts b/clients/client-finspace/src/commands/UpdateKxEnvironmentCommand.ts index df811a9f6f764..f733854d372b4 100644 --- a/clients/client-finspace/src/commands/UpdateKxEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxEnvironmentCommand.ts @@ -118,6 +118,7 @@ export interface UpdateKxEnvironmentCommandOutput extends UpdateKxEnvironmentRes * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class UpdateKxEnvironmentCommand extends $Command diff --git a/clients/client-finspace/src/commands/UpdateKxEnvironmentNetworkCommand.ts b/clients/client-finspace/src/commands/UpdateKxEnvironmentNetworkCommand.ts index f5430ca12525a..e8016a29011b7 100644 --- a/clients/client-finspace/src/commands/UpdateKxEnvironmentNetworkCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxEnvironmentNetworkCommand.ts @@ -143,6 +143,7 @@ export interface UpdateKxEnvironmentNetworkCommandOutput extends UpdateKxEnviron * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class UpdateKxEnvironmentNetworkCommand extends $Command diff --git a/clients/client-finspace/src/commands/UpdateKxUserCommand.ts b/clients/client-finspace/src/commands/UpdateKxUserCommand.ts index 13ba4a77d7dbf..94f4fcab81fc2 100644 --- a/clients/client-finspace/src/commands/UpdateKxUserCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxUserCommand.ts @@ -83,6 +83,7 @@ export interface UpdateKxUserCommandOutput extends UpdateKxUserResponse, __Metad * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class UpdateKxUserCommand extends $Command diff --git a/clients/client-finspace/src/commands/UpdateKxVolumeCommand.ts b/clients/client-finspace/src/commands/UpdateKxVolumeCommand.ts index 16e1dc14cee2f..8234cebf5edfc 100644 --- a/clients/client-finspace/src/commands/UpdateKxVolumeCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxVolumeCommand.ts @@ -110,6 +110,7 @@ export interface UpdateKxVolumeCommandOutput extends UpdateKxVolumeResponse, __M * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* + * * @public */ export class UpdateKxVolumeCommand extends $Command diff --git a/clients/client-firehose/src/commands/CreateDeliveryStreamCommand.ts b/clients/client-firehose/src/commands/CreateDeliveryStreamCommand.ts index b5e5bdadeab82..220232f7701ee 100644 --- a/clients/client-firehose/src/commands/CreateDeliveryStreamCommand.ts +++ b/clients/client-firehose/src/commands/CreateDeliveryStreamCommand.ts @@ -698,6 +698,7 @@ export interface CreateDeliveryStreamCommandOutput extends CreateDeliveryStreamO * @throws {@link FirehoseServiceException} *

Base exception class for all service exceptions from Firehose service.

* + * * @public */ export class CreateDeliveryStreamCommand extends $Command diff --git a/clients/client-firehose/src/commands/DeleteDeliveryStreamCommand.ts b/clients/client-firehose/src/commands/DeleteDeliveryStreamCommand.ts index 33c1c50f2c13f..7e42e50350ca3 100644 --- a/clients/client-firehose/src/commands/DeleteDeliveryStreamCommand.ts +++ b/clients/client-firehose/src/commands/DeleteDeliveryStreamCommand.ts @@ -72,6 +72,7 @@ export interface DeleteDeliveryStreamCommandOutput extends DeleteDeliveryStreamO * @throws {@link FirehoseServiceException} *

Base exception class for all service exceptions from Firehose service.

* + * * @public */ export class DeleteDeliveryStreamCommand extends $Command diff --git a/clients/client-firehose/src/commands/DescribeDeliveryStreamCommand.ts b/clients/client-firehose/src/commands/DescribeDeliveryStreamCommand.ts index f500eb0e2cbbb..fae5daf7be856 100644 --- a/clients/client-firehose/src/commands/DescribeDeliveryStreamCommand.ts +++ b/clients/client-firehose/src/commands/DescribeDeliveryStreamCommand.ts @@ -656,6 +656,7 @@ export interface DescribeDeliveryStreamCommandOutput extends DescribeDeliveryStr * @throws {@link FirehoseServiceException} *

Base exception class for all service exceptions from Firehose service.

* + * * @public */ export class DescribeDeliveryStreamCommand extends $Command diff --git a/clients/client-firehose/src/commands/ListDeliveryStreamsCommand.ts b/clients/client-firehose/src/commands/ListDeliveryStreamsCommand.ts index 9c9b636c8ef4a..bf8b1126d12ce 100644 --- a/clients/client-firehose/src/commands/ListDeliveryStreamsCommand.ts +++ b/clients/client-firehose/src/commands/ListDeliveryStreamsCommand.ts @@ -67,6 +67,7 @@ export interface ListDeliveryStreamsCommandOutput extends ListDeliveryStreamsOut * @throws {@link FirehoseServiceException} *

Base exception class for all service exceptions from Firehose service.

* + * * @public */ export class ListDeliveryStreamsCommand extends $Command diff --git a/clients/client-firehose/src/commands/ListTagsForDeliveryStreamCommand.ts b/clients/client-firehose/src/commands/ListTagsForDeliveryStreamCommand.ts index 03f4af3877492..8ef0565f07ed2 100644 --- a/clients/client-firehose/src/commands/ListTagsForDeliveryStreamCommand.ts +++ b/clients/client-firehose/src/commands/ListTagsForDeliveryStreamCommand.ts @@ -73,6 +73,7 @@ export interface ListTagsForDeliveryStreamCommandOutput extends ListTagsForDeliv * @throws {@link FirehoseServiceException} *

Base exception class for all service exceptions from Firehose service.

* + * * @public */ export class ListTagsForDeliveryStreamCommand extends $Command diff --git a/clients/client-firehose/src/commands/PutRecordBatchCommand.ts b/clients/client-firehose/src/commands/PutRecordBatchCommand.ts index 0ecf6dbe6267b..39adba26585d4 100644 --- a/clients/client-firehose/src/commands/PutRecordBatchCommand.ts +++ b/clients/client-firehose/src/commands/PutRecordBatchCommand.ts @@ -148,6 +148,7 @@ export interface PutRecordBatchCommandOutput extends PutRecordBatchOutput, __Met * @throws {@link FirehoseServiceException} *

Base exception class for all service exceptions from Firehose service.

* + * * @public */ export class PutRecordBatchCommand extends $Command diff --git a/clients/client-firehose/src/commands/PutRecordCommand.ts b/clients/client-firehose/src/commands/PutRecordCommand.ts index 9304be438039e..14b068f054e3f 100644 --- a/clients/client-firehose/src/commands/PutRecordCommand.ts +++ b/clients/client-firehose/src/commands/PutRecordCommand.ts @@ -121,6 +121,7 @@ export interface PutRecordCommandOutput extends PutRecordOutput, __MetadataBeare * @throws {@link FirehoseServiceException} *

Base exception class for all service exceptions from Firehose service.

* + * * @public */ export class PutRecordCommand extends $Command diff --git a/clients/client-firehose/src/commands/StartDeliveryStreamEncryptionCommand.ts b/clients/client-firehose/src/commands/StartDeliveryStreamEncryptionCommand.ts index ed5d43c6b471f..731ebe1a25455 100644 --- a/clients/client-firehose/src/commands/StartDeliveryStreamEncryptionCommand.ts +++ b/clients/client-firehose/src/commands/StartDeliveryStreamEncryptionCommand.ts @@ -118,6 +118,7 @@ export interface StartDeliveryStreamEncryptionCommandOutput * @throws {@link FirehoseServiceException} *

Base exception class for all service exceptions from Firehose service.

* + * * @public */ export class StartDeliveryStreamEncryptionCommand extends $Command diff --git a/clients/client-firehose/src/commands/StopDeliveryStreamEncryptionCommand.ts b/clients/client-firehose/src/commands/StopDeliveryStreamEncryptionCommand.ts index 16de0b1c09601..919c0ad57d899 100644 --- a/clients/client-firehose/src/commands/StopDeliveryStreamEncryptionCommand.ts +++ b/clients/client-firehose/src/commands/StopDeliveryStreamEncryptionCommand.ts @@ -88,6 +88,7 @@ export interface StopDeliveryStreamEncryptionCommandOutput * @throws {@link FirehoseServiceException} *

Base exception class for all service exceptions from Firehose service.

* + * * @public */ export class StopDeliveryStreamEncryptionCommand extends $Command diff --git a/clients/client-firehose/src/commands/TagDeliveryStreamCommand.ts b/clients/client-firehose/src/commands/TagDeliveryStreamCommand.ts index 8839d5ee15839..929487cd2a9b7 100644 --- a/clients/client-firehose/src/commands/TagDeliveryStreamCommand.ts +++ b/clients/client-firehose/src/commands/TagDeliveryStreamCommand.ts @@ -80,6 +80,7 @@ export interface TagDeliveryStreamCommandOutput extends TagDeliveryStreamOutput, * @throws {@link FirehoseServiceException} *

Base exception class for all service exceptions from Firehose service.

* + * * @public */ export class TagDeliveryStreamCommand extends $Command diff --git a/clients/client-firehose/src/commands/UntagDeliveryStreamCommand.ts b/clients/client-firehose/src/commands/UntagDeliveryStreamCommand.ts index 9bfcd40d738c9..fc5bcbd24cd8f 100644 --- a/clients/client-firehose/src/commands/UntagDeliveryStreamCommand.ts +++ b/clients/client-firehose/src/commands/UntagDeliveryStreamCommand.ts @@ -71,6 +71,7 @@ export interface UntagDeliveryStreamCommandOutput extends UntagDeliveryStreamOut * @throws {@link FirehoseServiceException} *

Base exception class for all service exceptions from Firehose service.

* + * * @public */ export class UntagDeliveryStreamCommand extends $Command diff --git a/clients/client-firehose/src/commands/UpdateDestinationCommand.ts b/clients/client-firehose/src/commands/UpdateDestinationCommand.ts index 02714c237924a..645b97594afc7 100644 --- a/clients/client-firehose/src/commands/UpdateDestinationCommand.ts +++ b/clients/client-firehose/src/commands/UpdateDestinationCommand.ts @@ -556,6 +556,7 @@ export interface UpdateDestinationCommandOutput extends UpdateDestinationOutput, * @throws {@link FirehoseServiceException} *

Base exception class for all service exceptions from Firehose service.

* + * * @public */ export class UpdateDestinationCommand extends $Command diff --git a/clients/client-fis/src/commands/CreateExperimentTemplateCommand.ts b/clients/client-fis/src/commands/CreateExperimentTemplateCommand.ts index 48201ef389879..f295d0e4c89ca 100644 --- a/clients/client-fis/src/commands/CreateExperimentTemplateCommand.ts +++ b/clients/client-fis/src/commands/CreateExperimentTemplateCommand.ts @@ -255,6 +255,7 @@ export interface CreateExperimentTemplateCommandOutput extends CreateExperimentT * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class CreateExperimentTemplateCommand extends $Command diff --git a/clients/client-fis/src/commands/CreateTargetAccountConfigurationCommand.ts b/clients/client-fis/src/commands/CreateTargetAccountConfigurationCommand.ts index 3fce841bfa10c..dcf6a8fe741a7 100644 --- a/clients/client-fis/src/commands/CreateTargetAccountConfigurationCommand.ts +++ b/clients/client-fis/src/commands/CreateTargetAccountConfigurationCommand.ts @@ -84,6 +84,7 @@ export interface CreateTargetAccountConfigurationCommandOutput * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class CreateTargetAccountConfigurationCommand extends $Command diff --git a/clients/client-fis/src/commands/DeleteExperimentTemplateCommand.ts b/clients/client-fis/src/commands/DeleteExperimentTemplateCommand.ts index a9bc1682f9d85..ab62cc99c1d30 100644 --- a/clients/client-fis/src/commands/DeleteExperimentTemplateCommand.ts +++ b/clients/client-fis/src/commands/DeleteExperimentTemplateCommand.ts @@ -147,6 +147,7 @@ export interface DeleteExperimentTemplateCommandOutput extends DeleteExperimentT * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class DeleteExperimentTemplateCommand extends $Command diff --git a/clients/client-fis/src/commands/DeleteTargetAccountConfigurationCommand.ts b/clients/client-fis/src/commands/DeleteTargetAccountConfigurationCommand.ts index 35f22fab8f6bd..47bbcc4a16ec1 100644 --- a/clients/client-fis/src/commands/DeleteTargetAccountConfigurationCommand.ts +++ b/clients/client-fis/src/commands/DeleteTargetAccountConfigurationCommand.ts @@ -71,6 +71,7 @@ export interface DeleteTargetAccountConfigurationCommandOutput * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class DeleteTargetAccountConfigurationCommand extends $Command diff --git a/clients/client-fis/src/commands/GetActionCommand.ts b/clients/client-fis/src/commands/GetActionCommand.ts index 43acf447babd3..506ece4972f39 100644 --- a/clients/client-fis/src/commands/GetActionCommand.ts +++ b/clients/client-fis/src/commands/GetActionCommand.ts @@ -79,6 +79,7 @@ export interface GetActionCommandOutput extends GetActionResponse, __MetadataBea * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class GetActionCommand extends $Command diff --git a/clients/client-fis/src/commands/GetExperimentCommand.ts b/clients/client-fis/src/commands/GetExperimentCommand.ts index a3603bdebc692..e6455f9e7f249 100644 --- a/clients/client-fis/src/commands/GetExperimentCommand.ts +++ b/clients/client-fis/src/commands/GetExperimentCommand.ts @@ -179,6 +179,7 @@ export interface GetExperimentCommandOutput extends GetExperimentResponse, __Met * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class GetExperimentCommand extends $Command diff --git a/clients/client-fis/src/commands/GetExperimentTargetAccountConfigurationCommand.ts b/clients/client-fis/src/commands/GetExperimentTargetAccountConfigurationCommand.ts index f57bc2396e543..5b5fdb04d64e4 100644 --- a/clients/client-fis/src/commands/GetExperimentTargetAccountConfigurationCommand.ts +++ b/clients/client-fis/src/commands/GetExperimentTargetAccountConfigurationCommand.ts @@ -75,6 +75,7 @@ export interface GetExperimentTargetAccountConfigurationCommandOutput * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class GetExperimentTargetAccountConfigurationCommand extends $Command diff --git a/clients/client-fis/src/commands/GetExperimentTemplateCommand.ts b/clients/client-fis/src/commands/GetExperimentTemplateCommand.ts index 766d69d78fbfe..29c42220d9245 100644 --- a/clients/client-fis/src/commands/GetExperimentTemplateCommand.ts +++ b/clients/client-fis/src/commands/GetExperimentTemplateCommand.ts @@ -147,6 +147,7 @@ export interface GetExperimentTemplateCommandOutput extends GetExperimentTemplat * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class GetExperimentTemplateCommand extends $Command diff --git a/clients/client-fis/src/commands/GetSafetyLeverCommand.ts b/clients/client-fis/src/commands/GetSafetyLeverCommand.ts index 13fe1181d5fe4..0f914814f5801 100644 --- a/clients/client-fis/src/commands/GetSafetyLeverCommand.ts +++ b/clients/client-fis/src/commands/GetSafetyLeverCommand.ts @@ -67,6 +67,7 @@ export interface GetSafetyLeverCommandOutput extends GetSafetyLeverResponse, __M * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class GetSafetyLeverCommand extends $Command diff --git a/clients/client-fis/src/commands/GetTargetAccountConfigurationCommand.ts b/clients/client-fis/src/commands/GetTargetAccountConfigurationCommand.ts index f5e7735eb6e1e..b599b739fd578 100644 --- a/clients/client-fis/src/commands/GetTargetAccountConfigurationCommand.ts +++ b/clients/client-fis/src/commands/GetTargetAccountConfigurationCommand.ts @@ -71,6 +71,7 @@ export interface GetTargetAccountConfigurationCommandOutput * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class GetTargetAccountConfigurationCommand extends $Command diff --git a/clients/client-fis/src/commands/GetTargetResourceTypeCommand.ts b/clients/client-fis/src/commands/GetTargetResourceTypeCommand.ts index 145eec7c4cfdd..5353b41f675a1 100644 --- a/clients/client-fis/src/commands/GetTargetResourceTypeCommand.ts +++ b/clients/client-fis/src/commands/GetTargetResourceTypeCommand.ts @@ -70,6 +70,7 @@ export interface GetTargetResourceTypeCommandOutput extends GetTargetResourceTyp * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class GetTargetResourceTypeCommand extends $Command diff --git a/clients/client-fis/src/commands/ListActionsCommand.ts b/clients/client-fis/src/commands/ListActionsCommand.ts index 3f36a372afd74..b7251626310ba 100644 --- a/clients/client-fis/src/commands/ListActionsCommand.ts +++ b/clients/client-fis/src/commands/ListActionsCommand.ts @@ -74,6 +74,7 @@ export interface ListActionsCommandOutput extends ListActionsResponse, __Metadat * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class ListActionsCommand extends $Command diff --git a/clients/client-fis/src/commands/ListExperimentResolvedTargetsCommand.ts b/clients/client-fis/src/commands/ListExperimentResolvedTargetsCommand.ts index 8acf2961414e3..063c1cafe69d5 100644 --- a/clients/client-fis/src/commands/ListExperimentResolvedTargetsCommand.ts +++ b/clients/client-fis/src/commands/ListExperimentResolvedTargetsCommand.ts @@ -78,6 +78,7 @@ export interface ListExperimentResolvedTargetsCommandOutput * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class ListExperimentResolvedTargetsCommand extends $Command diff --git a/clients/client-fis/src/commands/ListExperimentTargetAccountConfigurationsCommand.ts b/clients/client-fis/src/commands/ListExperimentTargetAccountConfigurationsCommand.ts index 15f8456a6ac4c..303cd595ea925 100644 --- a/clients/client-fis/src/commands/ListExperimentTargetAccountConfigurationsCommand.ts +++ b/clients/client-fis/src/commands/ListExperimentTargetAccountConfigurationsCommand.ts @@ -78,6 +78,7 @@ export interface ListExperimentTargetAccountConfigurationsCommandOutput * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class ListExperimentTargetAccountConfigurationsCommand extends $Command diff --git a/clients/client-fis/src/commands/ListExperimentTemplatesCommand.ts b/clients/client-fis/src/commands/ListExperimentTemplatesCommand.ts index dfc3b44bbad3c..fdef4bd28bc6d 100644 --- a/clients/client-fis/src/commands/ListExperimentTemplatesCommand.ts +++ b/clients/client-fis/src/commands/ListExperimentTemplatesCommand.ts @@ -71,6 +71,7 @@ export interface ListExperimentTemplatesCommandOutput extends ListExperimentTemp * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class ListExperimentTemplatesCommand extends $Command diff --git a/clients/client-fis/src/commands/ListExperimentsCommand.ts b/clients/client-fis/src/commands/ListExperimentsCommand.ts index 828c09ecdcf63..1b71b5948274c 100644 --- a/clients/client-fis/src/commands/ListExperimentsCommand.ts +++ b/clients/client-fis/src/commands/ListExperimentsCommand.ts @@ -85,6 +85,7 @@ export interface ListExperimentsCommandOutput extends ListExperimentsResponse, _ * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class ListExperimentsCommand extends $Command diff --git a/clients/client-fis/src/commands/ListTagsForResourceCommand.ts b/clients/client-fis/src/commands/ListTagsForResourceCommand.ts index 26c7f7808e791..3b3b34c388393 100644 --- a/clients/client-fis/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-fis/src/commands/ListTagsForResourceCommand.ts @@ -57,6 +57,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-fis/src/commands/ListTargetAccountConfigurationsCommand.ts b/clients/client-fis/src/commands/ListTargetAccountConfigurationsCommand.ts index ab615f01467b7..acec007dfb3fa 100644 --- a/clients/client-fis/src/commands/ListTargetAccountConfigurationsCommand.ts +++ b/clients/client-fis/src/commands/ListTargetAccountConfigurationsCommand.ts @@ -75,6 +75,7 @@ export interface ListTargetAccountConfigurationsCommandOutput * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class ListTargetAccountConfigurationsCommand extends $Command diff --git a/clients/client-fis/src/commands/ListTargetResourceTypesCommand.ts b/clients/client-fis/src/commands/ListTargetResourceTypesCommand.ts index 2a4e81d4bc12d..60c191e6fedec 100644 --- a/clients/client-fis/src/commands/ListTargetResourceTypesCommand.ts +++ b/clients/client-fis/src/commands/ListTargetResourceTypesCommand.ts @@ -65,6 +65,7 @@ export interface ListTargetResourceTypesCommandOutput extends ListTargetResource * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class ListTargetResourceTypesCommand extends $Command diff --git a/clients/client-fis/src/commands/StartExperimentCommand.ts b/clients/client-fis/src/commands/StartExperimentCommand.ts index 5e30ed7b6435d..5913cb3e43e36 100644 --- a/clients/client-fis/src/commands/StartExperimentCommand.ts +++ b/clients/client-fis/src/commands/StartExperimentCommand.ts @@ -192,6 +192,7 @@ export interface StartExperimentCommandOutput extends StartExperimentResponse, _ * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class StartExperimentCommand extends $Command diff --git a/clients/client-fis/src/commands/StopExperimentCommand.ts b/clients/client-fis/src/commands/StopExperimentCommand.ts index 5b687c60de3d5..a124dbab041a4 100644 --- a/clients/client-fis/src/commands/StopExperimentCommand.ts +++ b/clients/client-fis/src/commands/StopExperimentCommand.ts @@ -179,6 +179,7 @@ export interface StopExperimentCommandOutput extends StopExperimentResponse, __M * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class StopExperimentCommand extends $Command diff --git a/clients/client-fis/src/commands/TagResourceCommand.ts b/clients/client-fis/src/commands/TagResourceCommand.ts index d3ecfdc3c4dae..6a5fc34a378fb 100644 --- a/clients/client-fis/src/commands/TagResourceCommand.ts +++ b/clients/client-fis/src/commands/TagResourceCommand.ts @@ -56,6 +56,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-fis/src/commands/UntagResourceCommand.ts b/clients/client-fis/src/commands/UntagResourceCommand.ts index 167bc8226218d..9df8748bd6901 100644 --- a/clients/client-fis/src/commands/UntagResourceCommand.ts +++ b/clients/client-fis/src/commands/UntagResourceCommand.ts @@ -56,6 +56,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-fis/src/commands/UpdateExperimentTemplateCommand.ts b/clients/client-fis/src/commands/UpdateExperimentTemplateCommand.ts index e3e0d8372815d..b0da72ea0363e 100644 --- a/clients/client-fis/src/commands/UpdateExperimentTemplateCommand.ts +++ b/clients/client-fis/src/commands/UpdateExperimentTemplateCommand.ts @@ -226,6 +226,7 @@ export interface UpdateExperimentTemplateCommandOutput extends UpdateExperimentT * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class UpdateExperimentTemplateCommand extends $Command diff --git a/clients/client-fis/src/commands/UpdateSafetyLeverStateCommand.ts b/clients/client-fis/src/commands/UpdateSafetyLeverStateCommand.ts index b089a672cd8a4..ff924899eea6b 100644 --- a/clients/client-fis/src/commands/UpdateSafetyLeverStateCommand.ts +++ b/clients/client-fis/src/commands/UpdateSafetyLeverStateCommand.ts @@ -77,6 +77,7 @@ export interface UpdateSafetyLeverStateCommandOutput extends UpdateSafetyLeverSt * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class UpdateSafetyLeverStateCommand extends $Command diff --git a/clients/client-fis/src/commands/UpdateTargetAccountConfigurationCommand.ts b/clients/client-fis/src/commands/UpdateTargetAccountConfigurationCommand.ts index 70ccb6e3bd2bf..b81960b94ef45 100644 --- a/clients/client-fis/src/commands/UpdateTargetAccountConfigurationCommand.ts +++ b/clients/client-fis/src/commands/UpdateTargetAccountConfigurationCommand.ts @@ -73,6 +73,7 @@ export interface UpdateTargetAccountConfigurationCommandOutput * @throws {@link FisServiceException} *

Base exception class for all service exceptions from Fis service.

* + * * @public */ export class UpdateTargetAccountConfigurationCommand extends $Command diff --git a/clients/client-fms/src/commands/AssociateAdminAccountCommand.ts b/clients/client-fms/src/commands/AssociateAdminAccountCommand.ts index a7effcdb8fc35..8c66eda187b3c 100644 --- a/clients/client-fms/src/commands/AssociateAdminAccountCommand.ts +++ b/clients/client-fms/src/commands/AssociateAdminAccountCommand.ts @@ -77,6 +77,7 @@ export interface AssociateAdminAccountCommandOutput extends __MetadataBearer {} * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class AssociateAdminAccountCommand extends $Command diff --git a/clients/client-fms/src/commands/AssociateThirdPartyFirewallCommand.ts b/clients/client-fms/src/commands/AssociateThirdPartyFirewallCommand.ts index 682804aa7d741..759289e7b3634 100644 --- a/clients/client-fms/src/commands/AssociateThirdPartyFirewallCommand.ts +++ b/clients/client-fms/src/commands/AssociateThirdPartyFirewallCommand.ts @@ -74,6 +74,7 @@ export interface AssociateThirdPartyFirewallCommandOutput * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class AssociateThirdPartyFirewallCommand extends $Command diff --git a/clients/client-fms/src/commands/BatchAssociateResourceCommand.ts b/clients/client-fms/src/commands/BatchAssociateResourceCommand.ts index 564dbe0cf6a56..6f2611db4f351 100644 --- a/clients/client-fms/src/commands/BatchAssociateResourceCommand.ts +++ b/clients/client-fms/src/commands/BatchAssociateResourceCommand.ts @@ -87,6 +87,7 @@ export interface BatchAssociateResourceCommandOutput extends BatchAssociateResou * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class BatchAssociateResourceCommand extends $Command diff --git a/clients/client-fms/src/commands/BatchDisassociateResourceCommand.ts b/clients/client-fms/src/commands/BatchDisassociateResourceCommand.ts index db7635c668734..dc5488a3b9a4f 100644 --- a/clients/client-fms/src/commands/BatchDisassociateResourceCommand.ts +++ b/clients/client-fms/src/commands/BatchDisassociateResourceCommand.ts @@ -81,6 +81,7 @@ export interface BatchDisassociateResourceCommandOutput extends BatchDisassociat * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class BatchDisassociateResourceCommand extends $Command diff --git a/clients/client-fms/src/commands/DeleteAppsListCommand.ts b/clients/client-fms/src/commands/DeleteAppsListCommand.ts index 78e1fa7d72393..9a855237c461b 100644 --- a/clients/client-fms/src/commands/DeleteAppsListCommand.ts +++ b/clients/client-fms/src/commands/DeleteAppsListCommand.ts @@ -67,6 +67,7 @@ export interface DeleteAppsListCommandOutput extends __MetadataBearer {} * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class DeleteAppsListCommand extends $Command diff --git a/clients/client-fms/src/commands/DeleteNotificationChannelCommand.ts b/clients/client-fms/src/commands/DeleteNotificationChannelCommand.ts index 89e758d11396e..de03dca607133 100644 --- a/clients/client-fms/src/commands/DeleteNotificationChannelCommand.ts +++ b/clients/client-fms/src/commands/DeleteNotificationChannelCommand.ts @@ -66,6 +66,7 @@ export interface DeleteNotificationChannelCommandOutput extends __MetadataBearer * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class DeleteNotificationChannelCommand extends $Command diff --git a/clients/client-fms/src/commands/DeletePolicyCommand.ts b/clients/client-fms/src/commands/DeletePolicyCommand.ts index 9853d22dc04a7..ecf81f93d77a5 100644 --- a/clients/client-fms/src/commands/DeletePolicyCommand.ts +++ b/clients/client-fms/src/commands/DeletePolicyCommand.ts @@ -77,6 +77,7 @@ export interface DeletePolicyCommandOutput extends __MetadataBearer {} * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class DeletePolicyCommand extends $Command diff --git a/clients/client-fms/src/commands/DeleteProtocolsListCommand.ts b/clients/client-fms/src/commands/DeleteProtocolsListCommand.ts index 8b6310b593354..155be4a548280 100644 --- a/clients/client-fms/src/commands/DeleteProtocolsListCommand.ts +++ b/clients/client-fms/src/commands/DeleteProtocolsListCommand.ts @@ -67,6 +67,7 @@ export interface DeleteProtocolsListCommandOutput extends __MetadataBearer {} * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class DeleteProtocolsListCommand extends $Command diff --git a/clients/client-fms/src/commands/DeleteResourceSetCommand.ts b/clients/client-fms/src/commands/DeleteResourceSetCommand.ts index f63bdb0feb4fe..b3f9f8c63aafc 100644 --- a/clients/client-fms/src/commands/DeleteResourceSetCommand.ts +++ b/clients/client-fms/src/commands/DeleteResourceSetCommand.ts @@ -70,6 +70,7 @@ export interface DeleteResourceSetCommandOutput extends __MetadataBearer {} * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class DeleteResourceSetCommand extends $Command diff --git a/clients/client-fms/src/commands/DisassociateAdminAccountCommand.ts b/clients/client-fms/src/commands/DisassociateAdminAccountCommand.ts index 2ca41466a39d5..7332ddbca6acf 100644 --- a/clients/client-fms/src/commands/DisassociateAdminAccountCommand.ts +++ b/clients/client-fms/src/commands/DisassociateAdminAccountCommand.ts @@ -66,6 +66,7 @@ export interface DisassociateAdminAccountCommandOutput extends __MetadataBearer * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class DisassociateAdminAccountCommand extends $Command diff --git a/clients/client-fms/src/commands/DisassociateThirdPartyFirewallCommand.ts b/clients/client-fms/src/commands/DisassociateThirdPartyFirewallCommand.ts index 862027d7d3461..658d4646a0942 100644 --- a/clients/client-fms/src/commands/DisassociateThirdPartyFirewallCommand.ts +++ b/clients/client-fms/src/commands/DisassociateThirdPartyFirewallCommand.ts @@ -77,6 +77,7 @@ export interface DisassociateThirdPartyFirewallCommandOutput * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class DisassociateThirdPartyFirewallCommand extends $Command diff --git a/clients/client-fms/src/commands/GetAdminAccountCommand.ts b/clients/client-fms/src/commands/GetAdminAccountCommand.ts index 978546ab0e3cb..47c236398e313 100644 --- a/clients/client-fms/src/commands/GetAdminAccountCommand.ts +++ b/clients/client-fms/src/commands/GetAdminAccountCommand.ts @@ -69,6 +69,7 @@ export interface GetAdminAccountCommandOutput extends GetAdminAccountResponse, _ * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class GetAdminAccountCommand extends $Command diff --git a/clients/client-fms/src/commands/GetAdminScopeCommand.ts b/clients/client-fms/src/commands/GetAdminScopeCommand.ts index 8c74460bf93c9..8130a82550e1b 100644 --- a/clients/client-fms/src/commands/GetAdminScopeCommand.ts +++ b/clients/client-fms/src/commands/GetAdminScopeCommand.ts @@ -106,6 +106,7 @@ export interface GetAdminScopeCommandOutput extends GetAdminScopeResponse, __Met * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class GetAdminScopeCommand extends $Command diff --git a/clients/client-fms/src/commands/GetAppsListCommand.ts b/clients/client-fms/src/commands/GetAppsListCommand.ts index ba7cd8809d56d..c13cb8d21c51a 100644 --- a/clients/client-fms/src/commands/GetAppsListCommand.ts +++ b/clients/client-fms/src/commands/GetAppsListCommand.ts @@ -93,6 +93,7 @@ export interface GetAppsListCommandOutput extends GetAppsListResponse, __Metadat * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class GetAppsListCommand extends $Command diff --git a/clients/client-fms/src/commands/GetComplianceDetailCommand.ts b/clients/client-fms/src/commands/GetComplianceDetailCommand.ts index 9e1d9a9b2b18f..d2eb4d358426c 100644 --- a/clients/client-fms/src/commands/GetComplianceDetailCommand.ts +++ b/clients/client-fms/src/commands/GetComplianceDetailCommand.ts @@ -94,6 +94,7 @@ export interface GetComplianceDetailCommandOutput extends GetComplianceDetailRes * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class GetComplianceDetailCommand extends $Command diff --git a/clients/client-fms/src/commands/GetNotificationChannelCommand.ts b/clients/client-fms/src/commands/GetNotificationChannelCommand.ts index 2683e6ed9ee9c..66f3bd04ad265 100644 --- a/clients/client-fms/src/commands/GetNotificationChannelCommand.ts +++ b/clients/client-fms/src/commands/GetNotificationChannelCommand.ts @@ -70,6 +70,7 @@ export interface GetNotificationChannelCommandOutput extends GetNotificationChan * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class GetNotificationChannelCommand extends $Command diff --git a/clients/client-fms/src/commands/GetPolicyCommand.ts b/clients/client-fms/src/commands/GetPolicyCommand.ts index 49492d07f9c6e..74e8e254b94a2 100644 --- a/clients/client-fms/src/commands/GetPolicyCommand.ts +++ b/clients/client-fms/src/commands/GetPolicyCommand.ts @@ -158,6 +158,7 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class GetPolicyCommand extends $Command diff --git a/clients/client-fms/src/commands/GetProtectionStatusCommand.ts b/clients/client-fms/src/commands/GetProtectionStatusCommand.ts index 366868bca0333..22e256adcecf2 100644 --- a/clients/client-fms/src/commands/GetProtectionStatusCommand.ts +++ b/clients/client-fms/src/commands/GetProtectionStatusCommand.ts @@ -74,6 +74,7 @@ export interface GetProtectionStatusCommandOutput extends GetProtectionStatusRes * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class GetProtectionStatusCommand extends $Command diff --git a/clients/client-fms/src/commands/GetProtocolsListCommand.ts b/clients/client-fms/src/commands/GetProtocolsListCommand.ts index 8cab57d2abda5..1702429afa20b 100644 --- a/clients/client-fms/src/commands/GetProtocolsListCommand.ts +++ b/clients/client-fms/src/commands/GetProtocolsListCommand.ts @@ -85,6 +85,7 @@ export interface GetProtocolsListCommandOutput extends GetProtocolsListResponse, * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class GetProtocolsListCommand extends $Command diff --git a/clients/client-fms/src/commands/GetResourceSetCommand.ts b/clients/client-fms/src/commands/GetResourceSetCommand.ts index 053027a8835e7..be77d49251285 100644 --- a/clients/client-fms/src/commands/GetResourceSetCommand.ts +++ b/clients/client-fms/src/commands/GetResourceSetCommand.ts @@ -83,6 +83,7 @@ export interface GetResourceSetCommandOutput extends GetResourceSetResponse, __M * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class GetResourceSetCommand extends $Command diff --git a/clients/client-fms/src/commands/GetThirdPartyFirewallAssociationStatusCommand.ts b/clients/client-fms/src/commands/GetThirdPartyFirewallAssociationStatusCommand.ts index abc892c3bd98a..e2f6d0f2d0010 100644 --- a/clients/client-fms/src/commands/GetThirdPartyFirewallAssociationStatusCommand.ts +++ b/clients/client-fms/src/commands/GetThirdPartyFirewallAssociationStatusCommand.ts @@ -82,6 +82,7 @@ export interface GetThirdPartyFirewallAssociationStatusCommandOutput * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class GetThirdPartyFirewallAssociationStatusCommand extends $Command diff --git a/clients/client-fms/src/commands/GetViolationDetailsCommand.ts b/clients/client-fms/src/commands/GetViolationDetailsCommand.ts index 82900b63bc5c8..85b6515848d23 100644 --- a/clients/client-fms/src/commands/GetViolationDetailsCommand.ts +++ b/clients/client-fms/src/commands/GetViolationDetailsCommand.ts @@ -624,6 +624,7 @@ export interface GetViolationDetailsCommandOutput extends GetViolationDetailsRes * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class GetViolationDetailsCommand extends $Command diff --git a/clients/client-fms/src/commands/ListAdminAccountsForOrganizationCommand.ts b/clients/client-fms/src/commands/ListAdminAccountsForOrganizationCommand.ts index 72495d4447aaf..294d52ae3b3e9 100644 --- a/clients/client-fms/src/commands/ListAdminAccountsForOrganizationCommand.ts +++ b/clients/client-fms/src/commands/ListAdminAccountsForOrganizationCommand.ts @@ -89,6 +89,7 @@ export interface ListAdminAccountsForOrganizationCommandOutput * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class ListAdminAccountsForOrganizationCommand extends $Command diff --git a/clients/client-fms/src/commands/ListAdminsManagingAccountCommand.ts b/clients/client-fms/src/commands/ListAdminsManagingAccountCommand.ts index 8abb7a87ae9fe..0546804a55759 100644 --- a/clients/client-fms/src/commands/ListAdminsManagingAccountCommand.ts +++ b/clients/client-fms/src/commands/ListAdminsManagingAccountCommand.ts @@ -69,6 +69,7 @@ export interface ListAdminsManagingAccountCommandOutput extends ListAdminsManagi * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class ListAdminsManagingAccountCommand extends $Command diff --git a/clients/client-fms/src/commands/ListAppsListsCommand.ts b/clients/client-fms/src/commands/ListAppsListsCommand.ts index d23ad51223eac..03d54c40c8e60 100644 --- a/clients/client-fms/src/commands/ListAppsListsCommand.ts +++ b/clients/client-fms/src/commands/ListAppsListsCommand.ts @@ -91,6 +91,7 @@ export interface ListAppsListsCommandOutput extends ListAppsListsResponse, __Met * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class ListAppsListsCommand extends $Command diff --git a/clients/client-fms/src/commands/ListComplianceStatusCommand.ts b/clients/client-fms/src/commands/ListComplianceStatusCommand.ts index 4cf64a044b06b..beebff0674032 100644 --- a/clients/client-fms/src/commands/ListComplianceStatusCommand.ts +++ b/clients/client-fms/src/commands/ListComplianceStatusCommand.ts @@ -85,6 +85,7 @@ export interface ListComplianceStatusCommandOutput extends ListComplianceStatusR * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class ListComplianceStatusCommand extends $Command diff --git a/clients/client-fms/src/commands/ListDiscoveredResourcesCommand.ts b/clients/client-fms/src/commands/ListDiscoveredResourcesCommand.ts index 1eaedf5df0230..b166fae939dd8 100644 --- a/clients/client-fms/src/commands/ListDiscoveredResourcesCommand.ts +++ b/clients/client-fms/src/commands/ListDiscoveredResourcesCommand.ts @@ -82,6 +82,7 @@ export interface ListDiscoveredResourcesCommandOutput extends ListDiscoveredReso * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class ListDiscoveredResourcesCommand extends $Command diff --git a/clients/client-fms/src/commands/ListMemberAccountsCommand.ts b/clients/client-fms/src/commands/ListMemberAccountsCommand.ts index aa6907bcd7e5f..3da7046845192 100644 --- a/clients/client-fms/src/commands/ListMemberAccountsCommand.ts +++ b/clients/client-fms/src/commands/ListMemberAccountsCommand.ts @@ -68,6 +68,7 @@ export interface ListMemberAccountsCommandOutput extends ListMemberAccountsRespo * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class ListMemberAccountsCommand extends $Command diff --git a/clients/client-fms/src/commands/ListPoliciesCommand.ts b/clients/client-fms/src/commands/ListPoliciesCommand.ts index ab365a32a63e2..c328e367f75b5 100644 --- a/clients/client-fms/src/commands/ListPoliciesCommand.ts +++ b/clients/client-fms/src/commands/ListPoliciesCommand.ts @@ -88,6 +88,7 @@ export interface ListPoliciesCommandOutput extends ListPoliciesResponse, __Metad * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class ListPoliciesCommand extends $Command diff --git a/clients/client-fms/src/commands/ListProtocolsListsCommand.ts b/clients/client-fms/src/commands/ListProtocolsListsCommand.ts index 18cac19a69496..3f7cdc6ee4dc4 100644 --- a/clients/client-fms/src/commands/ListProtocolsListsCommand.ts +++ b/clients/client-fms/src/commands/ListProtocolsListsCommand.ts @@ -81,6 +81,7 @@ export interface ListProtocolsListsCommandOutput extends ListProtocolsListsRespo * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class ListProtocolsListsCommand extends $Command diff --git a/clients/client-fms/src/commands/ListResourceSetResourcesCommand.ts b/clients/client-fms/src/commands/ListResourceSetResourcesCommand.ts index 0a346ac3dcfee..10faae63d5a48 100644 --- a/clients/client-fms/src/commands/ListResourceSetResourcesCommand.ts +++ b/clients/client-fms/src/commands/ListResourceSetResourcesCommand.ts @@ -80,6 +80,7 @@ export interface ListResourceSetResourcesCommandOutput extends ListResourceSetRe * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class ListResourceSetResourcesCommand extends $Command diff --git a/clients/client-fms/src/commands/ListResourceSetsCommand.ts b/clients/client-fms/src/commands/ListResourceSetsCommand.ts index 44e1be4f2101c..765c207420e21 100644 --- a/clients/client-fms/src/commands/ListResourceSetsCommand.ts +++ b/clients/client-fms/src/commands/ListResourceSetsCommand.ts @@ -79,6 +79,7 @@ export interface ListResourceSetsCommandOutput extends ListResourceSetsResponse, * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class ListResourceSetsCommand extends $Command diff --git a/clients/client-fms/src/commands/ListTagsForResourceCommand.ts b/clients/client-fms/src/commands/ListTagsForResourceCommand.ts index fa1f24a573597..bf384ee219725 100644 --- a/clients/client-fms/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-fms/src/commands/ListTagsForResourceCommand.ts @@ -77,6 +77,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-fms/src/commands/ListThirdPartyFirewallFirewallPoliciesCommand.ts b/clients/client-fms/src/commands/ListThirdPartyFirewallFirewallPoliciesCommand.ts index 7113d282c9970..07d1cb39d317f 100644 --- a/clients/client-fms/src/commands/ListThirdPartyFirewallFirewallPoliciesCommand.ts +++ b/clients/client-fms/src/commands/ListThirdPartyFirewallFirewallPoliciesCommand.ts @@ -89,6 +89,7 @@ export interface ListThirdPartyFirewallFirewallPoliciesCommandOutput * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class ListThirdPartyFirewallFirewallPoliciesCommand extends $Command diff --git a/clients/client-fms/src/commands/PutAdminAccountCommand.ts b/clients/client-fms/src/commands/PutAdminAccountCommand.ts index 618990fd516a7..450994494591b 100644 --- a/clients/client-fms/src/commands/PutAdminAccountCommand.ts +++ b/clients/client-fms/src/commands/PutAdminAccountCommand.ts @@ -102,6 +102,7 @@ export interface PutAdminAccountCommandOutput extends __MetadataBearer {} * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class PutAdminAccountCommand extends $Command diff --git a/clients/client-fms/src/commands/PutAppsListCommand.ts b/clients/client-fms/src/commands/PutAppsListCommand.ts index ce311490904cf..19600d2036b06 100644 --- a/clients/client-fms/src/commands/PutAppsListCommand.ts +++ b/clients/client-fms/src/commands/PutAppsListCommand.ts @@ -129,6 +129,7 @@ export interface PutAppsListCommandOutput extends PutAppsListResponse, __Metadat * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class PutAppsListCommand extends $Command diff --git a/clients/client-fms/src/commands/PutNotificationChannelCommand.ts b/clients/client-fms/src/commands/PutNotificationChannelCommand.ts index ab0c83468923d..8126b9ffab16c 100644 --- a/clients/client-fms/src/commands/PutNotificationChannelCommand.ts +++ b/clients/client-fms/src/commands/PutNotificationChannelCommand.ts @@ -71,6 +71,7 @@ export interface PutNotificationChannelCommandOutput extends __MetadataBearer {} * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class PutNotificationChannelCommand extends $Command diff --git a/clients/client-fms/src/commands/PutPolicyCommand.ts b/clients/client-fms/src/commands/PutPolicyCommand.ts index 039359539da60..b68de944c5d66 100644 --- a/clients/client-fms/src/commands/PutPolicyCommand.ts +++ b/clients/client-fms/src/commands/PutPolicyCommand.ts @@ -314,6 +314,7 @@ export interface PutPolicyCommandOutput extends PutPolicyResponse, __MetadataBea * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class PutPolicyCommand extends $Command diff --git a/clients/client-fms/src/commands/PutProtocolsListCommand.ts b/clients/client-fms/src/commands/PutProtocolsListCommand.ts index 4a9cfc85fc6da..d6004155b9356 100644 --- a/clients/client-fms/src/commands/PutProtocolsListCommand.ts +++ b/clients/client-fms/src/commands/PutProtocolsListCommand.ts @@ -113,6 +113,7 @@ export interface PutProtocolsListCommandOutput extends PutProtocolsListResponse, * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class PutProtocolsListCommand extends $Command diff --git a/clients/client-fms/src/commands/PutResourceSetCommand.ts b/clients/client-fms/src/commands/PutResourceSetCommand.ts index 269d8c0ad4be4..10da40a67e92e 100644 --- a/clients/client-fms/src/commands/PutResourceSetCommand.ts +++ b/clients/client-fms/src/commands/PutResourceSetCommand.ts @@ -103,6 +103,7 @@ export interface PutResourceSetCommandOutput extends PutResourceSetResponse, __M * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class PutResourceSetCommand extends $Command diff --git a/clients/client-fms/src/commands/TagResourceCommand.ts b/clients/client-fms/src/commands/TagResourceCommand.ts index 103bb9c6ef9fd..c9166c0d22d73 100644 --- a/clients/client-fms/src/commands/TagResourceCommand.ts +++ b/clients/client-fms/src/commands/TagResourceCommand.ts @@ -82,6 +82,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-fms/src/commands/UntagResourceCommand.ts b/clients/client-fms/src/commands/UntagResourceCommand.ts index 081ca5e691aec..659800db07ee0 100644 --- a/clients/client-fms/src/commands/UntagResourceCommand.ts +++ b/clients/client-fms/src/commands/UntagResourceCommand.ts @@ -73,6 +73,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link FMSServiceException} *

Base exception class for all service exceptions from FMS service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-forecast/src/commands/CreateAutoPredictorCommand.ts b/clients/client-forecast/src/commands/CreateAutoPredictorCommand.ts index 22307c0e07207..c6c118bb0d492 100644 --- a/clients/client-forecast/src/commands/CreateAutoPredictorCommand.ts +++ b/clients/client-forecast/src/commands/CreateAutoPredictorCommand.ts @@ -175,6 +175,7 @@ export interface CreateAutoPredictorCommandOutput extends CreateAutoPredictorRes * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class CreateAutoPredictorCommand extends $Command diff --git a/clients/client-forecast/src/commands/CreateDatasetCommand.ts b/clients/client-forecast/src/commands/CreateDatasetCommand.ts index 93b5e84b028bb..c7dc5622bf5e9 100644 --- a/clients/client-forecast/src/commands/CreateDatasetCommand.ts +++ b/clients/client-forecast/src/commands/CreateDatasetCommand.ts @@ -131,6 +131,7 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class CreateDatasetCommand extends $Command diff --git a/clients/client-forecast/src/commands/CreateDatasetGroupCommand.ts b/clients/client-forecast/src/commands/CreateDatasetGroupCommand.ts index ee26e157efffe..03a7a02c1f8a5 100644 --- a/clients/client-forecast/src/commands/CreateDatasetGroupCommand.ts +++ b/clients/client-forecast/src/commands/CreateDatasetGroupCommand.ts @@ -95,6 +95,7 @@ export interface CreateDatasetGroupCommandOutput extends CreateDatasetGroupRespo * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class CreateDatasetGroupCommand extends $Command diff --git a/clients/client-forecast/src/commands/CreateDatasetImportJobCommand.ts b/clients/client-forecast/src/commands/CreateDatasetImportJobCommand.ts index 943bb646e55cb..2f8ef780d8987 100644 --- a/clients/client-forecast/src/commands/CreateDatasetImportJobCommand.ts +++ b/clients/client-forecast/src/commands/CreateDatasetImportJobCommand.ts @@ -112,6 +112,7 @@ export interface CreateDatasetImportJobCommandOutput extends CreateDatasetImport * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class CreateDatasetImportJobCommand extends $Command diff --git a/clients/client-forecast/src/commands/CreateExplainabilityCommand.ts b/clients/client-forecast/src/commands/CreateExplainabilityCommand.ts index 0a5dd722ea4e8..fbf7cbb3ffce0 100644 --- a/clients/client-forecast/src/commands/CreateExplainabilityCommand.ts +++ b/clients/client-forecast/src/commands/CreateExplainabilityCommand.ts @@ -223,6 +223,7 @@ export interface CreateExplainabilityCommandOutput extends CreateExplainabilityR * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class CreateExplainabilityCommand extends $Command diff --git a/clients/client-forecast/src/commands/CreateExplainabilityExportCommand.ts b/clients/client-forecast/src/commands/CreateExplainabilityExportCommand.ts index 173810d45fe6b..437f8eade21e9 100644 --- a/clients/client-forecast/src/commands/CreateExplainabilityExportCommand.ts +++ b/clients/client-forecast/src/commands/CreateExplainabilityExportCommand.ts @@ -99,6 +99,7 @@ export interface CreateExplainabilityExportCommandOutput extends CreateExplainab * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class CreateExplainabilityExportCommand extends $Command diff --git a/clients/client-forecast/src/commands/CreateForecastCommand.ts b/clients/client-forecast/src/commands/CreateForecastCommand.ts index 1d1c77ab908c5..0d59f641baa98 100644 --- a/clients/client-forecast/src/commands/CreateForecastCommand.ts +++ b/clients/client-forecast/src/commands/CreateForecastCommand.ts @@ -126,6 +126,7 @@ export interface CreateForecastCommandOutput extends CreateForecastResponse, __M * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class CreateForecastCommand extends $Command diff --git a/clients/client-forecast/src/commands/CreateForecastExportJobCommand.ts b/clients/client-forecast/src/commands/CreateForecastExportJobCommand.ts index 85c18a1d661f5..a1a2b18ad65c7 100644 --- a/clients/client-forecast/src/commands/CreateForecastExportJobCommand.ts +++ b/clients/client-forecast/src/commands/CreateForecastExportJobCommand.ts @@ -104,6 +104,7 @@ export interface CreateForecastExportJobCommandOutput extends CreateForecastExpo * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class CreateForecastExportJobCommand extends $Command diff --git a/clients/client-forecast/src/commands/CreateMonitorCommand.ts b/clients/client-forecast/src/commands/CreateMonitorCommand.ts index 7b098368b5dc7..8566bcdc105c4 100644 --- a/clients/client-forecast/src/commands/CreateMonitorCommand.ts +++ b/clients/client-forecast/src/commands/CreateMonitorCommand.ts @@ -85,6 +85,7 @@ export interface CreateMonitorCommandOutput extends CreateMonitorResponse, __Met * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class CreateMonitorCommand extends $Command diff --git a/clients/client-forecast/src/commands/CreatePredictorBacktestExportJobCommand.ts b/clients/client-forecast/src/commands/CreatePredictorBacktestExportJobCommand.ts index d1f86991d1c6a..8abab6ff52a3b 100644 --- a/clients/client-forecast/src/commands/CreatePredictorBacktestExportJobCommand.ts +++ b/clients/client-forecast/src/commands/CreatePredictorBacktestExportJobCommand.ts @@ -110,6 +110,7 @@ export interface CreatePredictorBacktestExportJobCommandOutput * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class CreatePredictorBacktestExportJobCommand extends $Command diff --git a/clients/client-forecast/src/commands/CreatePredictorCommand.ts b/clients/client-forecast/src/commands/CreatePredictorCommand.ts index 76ff52feb9725..1a98165a795c7 100644 --- a/clients/client-forecast/src/commands/CreatePredictorCommand.ts +++ b/clients/client-forecast/src/commands/CreatePredictorCommand.ts @@ -217,6 +217,7 @@ export interface CreatePredictorCommandOutput extends CreatePredictorResponse, _ * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class CreatePredictorCommand extends $Command diff --git a/clients/client-forecast/src/commands/CreateWhatIfAnalysisCommand.ts b/clients/client-forecast/src/commands/CreateWhatIfAnalysisCommand.ts index 791f992f75c7f..c8f6d94928fd1 100644 --- a/clients/client-forecast/src/commands/CreateWhatIfAnalysisCommand.ts +++ b/clients/client-forecast/src/commands/CreateWhatIfAnalysisCommand.ts @@ -115,6 +115,7 @@ export interface CreateWhatIfAnalysisCommandOutput extends CreateWhatIfAnalysisR * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class CreateWhatIfAnalysisCommand extends $Command diff --git a/clients/client-forecast/src/commands/CreateWhatIfForecastCommand.ts b/clients/client-forecast/src/commands/CreateWhatIfForecastCommand.ts index 5d0736d53a88b..09d5e0ba399e7 100644 --- a/clients/client-forecast/src/commands/CreateWhatIfForecastCommand.ts +++ b/clients/client-forecast/src/commands/CreateWhatIfForecastCommand.ts @@ -117,6 +117,7 @@ export interface CreateWhatIfForecastCommandOutput extends CreateWhatIfForecastR * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class CreateWhatIfForecastCommand extends $Command diff --git a/clients/client-forecast/src/commands/CreateWhatIfForecastExportCommand.ts b/clients/client-forecast/src/commands/CreateWhatIfForecastExportCommand.ts index f0d6f036abad1..83504faae4737 100644 --- a/clients/client-forecast/src/commands/CreateWhatIfForecastExportCommand.ts +++ b/clients/client-forecast/src/commands/CreateWhatIfForecastExportCommand.ts @@ -109,6 +109,7 @@ export interface CreateWhatIfForecastExportCommandOutput extends CreateWhatIfFor * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class CreateWhatIfForecastExportCommand extends $Command diff --git a/clients/client-forecast/src/commands/DeleteDatasetCommand.ts b/clients/client-forecast/src/commands/DeleteDatasetCommand.ts index 1ee624f620d62..c43ac4e312048 100644 --- a/clients/client-forecast/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-forecast/src/commands/DeleteDatasetCommand.ts @@ -71,6 +71,7 @@ export interface DeleteDatasetCommandOutput extends __MetadataBearer {} * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DeleteDatasetCommand extends $Command diff --git a/clients/client-forecast/src/commands/DeleteDatasetGroupCommand.ts b/clients/client-forecast/src/commands/DeleteDatasetGroupCommand.ts index b5a8b512481fc..89e58e6316e53 100644 --- a/clients/client-forecast/src/commands/DeleteDatasetGroupCommand.ts +++ b/clients/client-forecast/src/commands/DeleteDatasetGroupCommand.ts @@ -67,6 +67,7 @@ export interface DeleteDatasetGroupCommandOutput extends __MetadataBearer {} * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DeleteDatasetGroupCommand extends $Command diff --git a/clients/client-forecast/src/commands/DeleteDatasetImportJobCommand.ts b/clients/client-forecast/src/commands/DeleteDatasetImportJobCommand.ts index 0026042ee2ed1..27c8631691867 100644 --- a/clients/client-forecast/src/commands/DeleteDatasetImportJobCommand.ts +++ b/clients/client-forecast/src/commands/DeleteDatasetImportJobCommand.ts @@ -67,6 +67,7 @@ export interface DeleteDatasetImportJobCommandOutput extends __MetadataBearer {} * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DeleteDatasetImportJobCommand extends $Command diff --git a/clients/client-forecast/src/commands/DeleteExplainabilityCommand.ts b/clients/client-forecast/src/commands/DeleteExplainabilityCommand.ts index 970bf7abd95d2..3bcfff71e6bf8 100644 --- a/clients/client-forecast/src/commands/DeleteExplainabilityCommand.ts +++ b/clients/client-forecast/src/commands/DeleteExplainabilityCommand.ts @@ -66,6 +66,7 @@ export interface DeleteExplainabilityCommandOutput extends __MetadataBearer {} * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DeleteExplainabilityCommand extends $Command diff --git a/clients/client-forecast/src/commands/DeleteExplainabilityExportCommand.ts b/clients/client-forecast/src/commands/DeleteExplainabilityExportCommand.ts index b11c60615dea9..d6e431e8e75cb 100644 --- a/clients/client-forecast/src/commands/DeleteExplainabilityExportCommand.ts +++ b/clients/client-forecast/src/commands/DeleteExplainabilityExportCommand.ts @@ -64,6 +64,7 @@ export interface DeleteExplainabilityExportCommandOutput extends __MetadataBeare * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DeleteExplainabilityExportCommand extends $Command diff --git a/clients/client-forecast/src/commands/DeleteForecastCommand.ts b/clients/client-forecast/src/commands/DeleteForecastCommand.ts index d538fbb9ed5ff..8582a2f05db4b 100644 --- a/clients/client-forecast/src/commands/DeleteForecastCommand.ts +++ b/clients/client-forecast/src/commands/DeleteForecastCommand.ts @@ -68,6 +68,7 @@ export interface DeleteForecastCommandOutput extends __MetadataBearer {} * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DeleteForecastCommand extends $Command diff --git a/clients/client-forecast/src/commands/DeleteForecastExportJobCommand.ts b/clients/client-forecast/src/commands/DeleteForecastExportJobCommand.ts index 1e18a01eeaf97..1db119efbc3f6 100644 --- a/clients/client-forecast/src/commands/DeleteForecastExportJobCommand.ts +++ b/clients/client-forecast/src/commands/DeleteForecastExportJobCommand.ts @@ -66,6 +66,7 @@ export interface DeleteForecastExportJobCommandOutput extends __MetadataBearer { * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DeleteForecastExportJobCommand extends $Command diff --git a/clients/client-forecast/src/commands/DeleteMonitorCommand.ts b/clients/client-forecast/src/commands/DeleteMonitorCommand.ts index 1dd14878c7437..6099880560c74 100644 --- a/clients/client-forecast/src/commands/DeleteMonitorCommand.ts +++ b/clients/client-forecast/src/commands/DeleteMonitorCommand.ts @@ -64,6 +64,7 @@ export interface DeleteMonitorCommandOutput extends __MetadataBearer {} * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DeleteMonitorCommand extends $Command diff --git a/clients/client-forecast/src/commands/DeletePredictorBacktestExportJobCommand.ts b/clients/client-forecast/src/commands/DeletePredictorBacktestExportJobCommand.ts index 321343347ae44..9963aa7fb543c 100644 --- a/clients/client-forecast/src/commands/DeletePredictorBacktestExportJobCommand.ts +++ b/clients/client-forecast/src/commands/DeletePredictorBacktestExportJobCommand.ts @@ -67,6 +67,7 @@ export interface DeletePredictorBacktestExportJobCommandOutput extends __Metadat * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DeletePredictorBacktestExportJobCommand extends $Command diff --git a/clients/client-forecast/src/commands/DeletePredictorCommand.ts b/clients/client-forecast/src/commands/DeletePredictorCommand.ts index 388790ffc7a18..b9c55c1a03c50 100644 --- a/clients/client-forecast/src/commands/DeletePredictorCommand.ts +++ b/clients/client-forecast/src/commands/DeletePredictorCommand.ts @@ -65,6 +65,7 @@ export interface DeletePredictorCommandOutput extends __MetadataBearer {} * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DeletePredictorCommand extends $Command diff --git a/clients/client-forecast/src/commands/DeleteResourceTreeCommand.ts b/clients/client-forecast/src/commands/DeleteResourceTreeCommand.ts index ec882083c2621..f3e449f161fc9 100644 --- a/clients/client-forecast/src/commands/DeleteResourceTreeCommand.ts +++ b/clients/client-forecast/src/commands/DeleteResourceTreeCommand.ts @@ -94,6 +94,7 @@ export interface DeleteResourceTreeCommandOutput extends __MetadataBearer {} * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DeleteResourceTreeCommand extends $Command diff --git a/clients/client-forecast/src/commands/DeleteWhatIfAnalysisCommand.ts b/clients/client-forecast/src/commands/DeleteWhatIfAnalysisCommand.ts index 642caa93b6c40..f2e66d783fc44 100644 --- a/clients/client-forecast/src/commands/DeleteWhatIfAnalysisCommand.ts +++ b/clients/client-forecast/src/commands/DeleteWhatIfAnalysisCommand.ts @@ -66,6 +66,7 @@ export interface DeleteWhatIfAnalysisCommandOutput extends __MetadataBearer {} * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DeleteWhatIfAnalysisCommand extends $Command diff --git a/clients/client-forecast/src/commands/DeleteWhatIfForecastCommand.ts b/clients/client-forecast/src/commands/DeleteWhatIfForecastCommand.ts index eaad167174e49..b6cc8a3043e85 100644 --- a/clients/client-forecast/src/commands/DeleteWhatIfForecastCommand.ts +++ b/clients/client-forecast/src/commands/DeleteWhatIfForecastCommand.ts @@ -66,6 +66,7 @@ export interface DeleteWhatIfForecastCommandOutput extends __MetadataBearer {} * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DeleteWhatIfForecastCommand extends $Command diff --git a/clients/client-forecast/src/commands/DeleteWhatIfForecastExportCommand.ts b/clients/client-forecast/src/commands/DeleteWhatIfForecastExportCommand.ts index 2941c1b974b5f..d938e30d96bf2 100644 --- a/clients/client-forecast/src/commands/DeleteWhatIfForecastExportCommand.ts +++ b/clients/client-forecast/src/commands/DeleteWhatIfForecastExportCommand.ts @@ -65,6 +65,7 @@ export interface DeleteWhatIfForecastExportCommandOutput extends __MetadataBeare * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DeleteWhatIfForecastExportCommand extends $Command diff --git a/clients/client-forecast/src/commands/DescribeAutoPredictorCommand.ts b/clients/client-forecast/src/commands/DescribeAutoPredictorCommand.ts index 2bdffec9eb222..2cdda5a55d9b1 100644 --- a/clients/client-forecast/src/commands/DescribeAutoPredictorCommand.ts +++ b/clients/client-forecast/src/commands/DescribeAutoPredictorCommand.ts @@ -124,6 +124,7 @@ export interface DescribeAutoPredictorCommandOutput extends DescribeAutoPredicto * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DescribeAutoPredictorCommand extends $Command diff --git a/clients/client-forecast/src/commands/DescribeDatasetCommand.ts b/clients/client-forecast/src/commands/DescribeDatasetCommand.ts index 81f629f05f582..fc12e2f770b18 100644 --- a/clients/client-forecast/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-forecast/src/commands/DescribeDatasetCommand.ts @@ -101,6 +101,7 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _ * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DescribeDatasetCommand extends $Command diff --git a/clients/client-forecast/src/commands/DescribeDatasetGroupCommand.ts b/clients/client-forecast/src/commands/DescribeDatasetGroupCommand.ts index 92872095ace9a..1dbcd4a1088ac 100644 --- a/clients/client-forecast/src/commands/DescribeDatasetGroupCommand.ts +++ b/clients/client-forecast/src/commands/DescribeDatasetGroupCommand.ts @@ -95,6 +95,7 @@ export interface DescribeDatasetGroupCommandOutput extends DescribeDatasetGroupR * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DescribeDatasetGroupCommand extends $Command diff --git a/clients/client-forecast/src/commands/DescribeDatasetImportJobCommand.ts b/clients/client-forecast/src/commands/DescribeDatasetImportJobCommand.ts index 98196c5b2fa87..e03dbdb9fa137 100644 --- a/clients/client-forecast/src/commands/DescribeDatasetImportJobCommand.ts +++ b/clients/client-forecast/src/commands/DescribeDatasetImportJobCommand.ts @@ -134,6 +134,7 @@ export interface DescribeDatasetImportJobCommandOutput extends DescribeDatasetIm * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DescribeDatasetImportJobCommand extends $Command diff --git a/clients/client-forecast/src/commands/DescribeExplainabilityCommand.ts b/clients/client-forecast/src/commands/DescribeExplainabilityCommand.ts index 5529d90d57f45..0784f944e1f27 100644 --- a/clients/client-forecast/src/commands/DescribeExplainabilityCommand.ts +++ b/clients/client-forecast/src/commands/DescribeExplainabilityCommand.ts @@ -92,6 +92,7 @@ export interface DescribeExplainabilityCommandOutput extends DescribeExplainabil * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DescribeExplainabilityCommand extends $Command diff --git a/clients/client-forecast/src/commands/DescribeExplainabilityExportCommand.ts b/clients/client-forecast/src/commands/DescribeExplainabilityExportCommand.ts index cd32f6d6494f4..604780999ebb0 100644 --- a/clients/client-forecast/src/commands/DescribeExplainabilityExportCommand.ts +++ b/clients/client-forecast/src/commands/DescribeExplainabilityExportCommand.ts @@ -82,6 +82,7 @@ export interface DescribeExplainabilityExportCommandOutput * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DescribeExplainabilityExportCommand extends $Command diff --git a/clients/client-forecast/src/commands/DescribeForecastCommand.ts b/clients/client-forecast/src/commands/DescribeForecastCommand.ts index d9fdd09c66e1f..7702d08cbfb6d 100644 --- a/clients/client-forecast/src/commands/DescribeForecastCommand.ts +++ b/clients/client-forecast/src/commands/DescribeForecastCommand.ts @@ -122,6 +122,7 @@ export interface DescribeForecastCommandOutput extends DescribeForecastResponse, * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DescribeForecastCommand extends $Command diff --git a/clients/client-forecast/src/commands/DescribeForecastExportJobCommand.ts b/clients/client-forecast/src/commands/DescribeForecastExportJobCommand.ts index 48fcb6281e47f..c6ece8be753a5 100644 --- a/clients/client-forecast/src/commands/DescribeForecastExportJobCommand.ts +++ b/clients/client-forecast/src/commands/DescribeForecastExportJobCommand.ts @@ -101,6 +101,7 @@ export interface DescribeForecastExportJobCommandOutput extends DescribeForecast * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DescribeForecastExportJobCommand extends $Command diff --git a/clients/client-forecast/src/commands/DescribeMonitorCommand.ts b/clients/client-forecast/src/commands/DescribeMonitorCommand.ts index 1cb45ae3f9453..c26e0112147eb 100644 --- a/clients/client-forecast/src/commands/DescribeMonitorCommand.ts +++ b/clients/client-forecast/src/commands/DescribeMonitorCommand.ts @@ -119,6 +119,7 @@ export interface DescribeMonitorCommandOutput extends DescribeMonitorResponse, _ * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DescribeMonitorCommand extends $Command diff --git a/clients/client-forecast/src/commands/DescribePredictorBacktestExportJobCommand.ts b/clients/client-forecast/src/commands/DescribePredictorBacktestExportJobCommand.ts index c22a903d6f078..f66bdaec8d665 100644 --- a/clients/client-forecast/src/commands/DescribePredictorBacktestExportJobCommand.ts +++ b/clients/client-forecast/src/commands/DescribePredictorBacktestExportJobCommand.ts @@ -109,6 +109,7 @@ export interface DescribePredictorBacktestExportJobCommandOutput * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DescribePredictorBacktestExportJobCommand extends $Command diff --git a/clients/client-forecast/src/commands/DescribePredictorCommand.ts b/clients/client-forecast/src/commands/DescribePredictorCommand.ts index 24ab8f489a8a1..17462abec183b 100644 --- a/clients/client-forecast/src/commands/DescribePredictorCommand.ts +++ b/clients/client-forecast/src/commands/DescribePredictorCommand.ts @@ -205,6 +205,7 @@ export interface DescribePredictorCommandOutput extends DescribePredictorRespons * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DescribePredictorCommand extends $Command diff --git a/clients/client-forecast/src/commands/DescribeWhatIfAnalysisCommand.ts b/clients/client-forecast/src/commands/DescribeWhatIfAnalysisCommand.ts index 2151b10b56c43..3b8943b891a4e 100644 --- a/clients/client-forecast/src/commands/DescribeWhatIfAnalysisCommand.ts +++ b/clients/client-forecast/src/commands/DescribeWhatIfAnalysisCommand.ts @@ -112,6 +112,7 @@ export interface DescribeWhatIfAnalysisCommandOutput extends DescribeWhatIfAnaly * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DescribeWhatIfAnalysisCommand extends $Command diff --git a/clients/client-forecast/src/commands/DescribeWhatIfForecastCommand.ts b/clients/client-forecast/src/commands/DescribeWhatIfForecastCommand.ts index 588563fec6e9d..d8cf89bdb2f6d 100644 --- a/clients/client-forecast/src/commands/DescribeWhatIfForecastCommand.ts +++ b/clients/client-forecast/src/commands/DescribeWhatIfForecastCommand.ts @@ -128,6 +128,7 @@ export interface DescribeWhatIfForecastCommandOutput extends DescribeWhatIfForec * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DescribeWhatIfForecastCommand extends $Command diff --git a/clients/client-forecast/src/commands/DescribeWhatIfForecastExportCommand.ts b/clients/client-forecast/src/commands/DescribeWhatIfForecastExportCommand.ts index f6336adec4a6a..83494f5bec38c 100644 --- a/clients/client-forecast/src/commands/DescribeWhatIfForecastExportCommand.ts +++ b/clients/client-forecast/src/commands/DescribeWhatIfForecastExportCommand.ts @@ -107,6 +107,7 @@ export interface DescribeWhatIfForecastExportCommandOutput * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class DescribeWhatIfForecastExportCommand extends $Command diff --git a/clients/client-forecast/src/commands/GetAccuracyMetricsCommand.ts b/clients/client-forecast/src/commands/GetAccuracyMetricsCommand.ts index cc38dd6c49a0a..83db3d66c4903 100644 --- a/clients/client-forecast/src/commands/GetAccuracyMetricsCommand.ts +++ b/clients/client-forecast/src/commands/GetAccuracyMetricsCommand.ts @@ -116,6 +116,7 @@ export interface GetAccuracyMetricsCommandOutput extends GetAccuracyMetricsRespo * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class GetAccuracyMetricsCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListDatasetGroupsCommand.ts b/clients/client-forecast/src/commands/ListDatasetGroupsCommand.ts index bb6f8d1afef21..ba2ad47c9fcc1 100644 --- a/clients/client-forecast/src/commands/ListDatasetGroupsCommand.ts +++ b/clients/client-forecast/src/commands/ListDatasetGroupsCommand.ts @@ -71,6 +71,7 @@ export interface ListDatasetGroupsCommandOutput extends ListDatasetGroupsRespons * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListDatasetGroupsCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListDatasetImportJobsCommand.ts b/clients/client-forecast/src/commands/ListDatasetImportJobsCommand.ts index eafa1f51064a4..263a627db2082 100644 --- a/clients/client-forecast/src/commands/ListDatasetImportJobsCommand.ts +++ b/clients/client-forecast/src/commands/ListDatasetImportJobsCommand.ts @@ -92,6 +92,7 @@ export interface ListDatasetImportJobsCommandOutput extends ListDatasetImportJob * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListDatasetImportJobsCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListDatasetsCommand.ts b/clients/client-forecast/src/commands/ListDatasetsCommand.ts index 850b4e7ae896f..934099528b997 100644 --- a/clients/client-forecast/src/commands/ListDatasetsCommand.ts +++ b/clients/client-forecast/src/commands/ListDatasetsCommand.ts @@ -71,6 +71,7 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListDatasetsCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListExplainabilitiesCommand.ts b/clients/client-forecast/src/commands/ListExplainabilitiesCommand.ts index 2a074147af427..ce180ad6058c6 100644 --- a/clients/client-forecast/src/commands/ListExplainabilitiesCommand.ts +++ b/clients/client-forecast/src/commands/ListExplainabilitiesCommand.ts @@ -89,6 +89,7 @@ export interface ListExplainabilitiesCommandOutput extends ListExplainabilitiesR * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListExplainabilitiesCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListExplainabilityExportsCommand.ts b/clients/client-forecast/src/commands/ListExplainabilityExportsCommand.ts index 831eb566c6a42..a8f113e436a00 100644 --- a/clients/client-forecast/src/commands/ListExplainabilityExportsCommand.ts +++ b/clients/client-forecast/src/commands/ListExplainabilityExportsCommand.ts @@ -90,6 +90,7 @@ export interface ListExplainabilityExportsCommandOutput extends ListExplainabili * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListExplainabilityExportsCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListForecastExportJobsCommand.ts b/clients/client-forecast/src/commands/ListForecastExportJobsCommand.ts index 0cbf48edefc29..a7e418582de1b 100644 --- a/clients/client-forecast/src/commands/ListForecastExportJobsCommand.ts +++ b/clients/client-forecast/src/commands/ListForecastExportJobsCommand.ts @@ -90,6 +90,7 @@ export interface ListForecastExportJobsCommandOutput extends ListForecastExportJ * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListForecastExportJobsCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListForecastsCommand.ts b/clients/client-forecast/src/commands/ListForecastsCommand.ts index 35f072ff2e73d..00b3343d925b5 100644 --- a/clients/client-forecast/src/commands/ListForecastsCommand.ts +++ b/clients/client-forecast/src/commands/ListForecastsCommand.ts @@ -87,6 +87,7 @@ export interface ListForecastsCommandOutput extends ListForecastsResponse, __Met * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListForecastsCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListMonitorEvaluationsCommand.ts b/clients/client-forecast/src/commands/ListMonitorEvaluationsCommand.ts index 8f1635a032029..f70beb6a72a1a 100644 --- a/clients/client-forecast/src/commands/ListMonitorEvaluationsCommand.ts +++ b/clients/client-forecast/src/commands/ListMonitorEvaluationsCommand.ts @@ -105,6 +105,7 @@ export interface ListMonitorEvaluationsCommandOutput extends ListMonitorEvaluati * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListMonitorEvaluationsCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListMonitorsCommand.ts b/clients/client-forecast/src/commands/ListMonitorsCommand.ts index 6835f3b7c6d6a..414ff6332a834 100644 --- a/clients/client-forecast/src/commands/ListMonitorsCommand.ts +++ b/clients/client-forecast/src/commands/ListMonitorsCommand.ts @@ -81,6 +81,7 @@ export interface ListMonitorsCommandOutput extends ListMonitorsResponse, __Metad * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListMonitorsCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListPredictorBacktestExportJobsCommand.ts b/clients/client-forecast/src/commands/ListPredictorBacktestExportJobsCommand.ts index d5ae5600e9d27..60647db13e6f1 100644 --- a/clients/client-forecast/src/commands/ListPredictorBacktestExportJobsCommand.ts +++ b/clients/client-forecast/src/commands/ListPredictorBacktestExportJobsCommand.ts @@ -95,6 +95,7 @@ export interface ListPredictorBacktestExportJobsCommandOutput * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListPredictorBacktestExportJobsCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListPredictorsCommand.ts b/clients/client-forecast/src/commands/ListPredictorsCommand.ts index c8e4134dad999..80007227f612b 100644 --- a/clients/client-forecast/src/commands/ListPredictorsCommand.ts +++ b/clients/client-forecast/src/commands/ListPredictorsCommand.ts @@ -90,6 +90,7 @@ export interface ListPredictorsCommandOutput extends ListPredictorsResponse, __M * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListPredictorsCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListTagsForResourceCommand.ts b/clients/client-forecast/src/commands/ListTagsForResourceCommand.ts index 44b4c5320b083..c4a6c7f9c2913 100644 --- a/clients/client-forecast/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-forecast/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListWhatIfAnalysesCommand.ts b/clients/client-forecast/src/commands/ListWhatIfAnalysesCommand.ts index 124473a4b6622..0b651e85272e3 100644 --- a/clients/client-forecast/src/commands/ListWhatIfAnalysesCommand.ts +++ b/clients/client-forecast/src/commands/ListWhatIfAnalysesCommand.ts @@ -81,6 +81,7 @@ export interface ListWhatIfAnalysesCommandOutput extends ListWhatIfAnalysesRespo * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListWhatIfAnalysesCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListWhatIfForecastExportsCommand.ts b/clients/client-forecast/src/commands/ListWhatIfForecastExportsCommand.ts index 4e3e40194f308..6d1ede36a7f5e 100644 --- a/clients/client-forecast/src/commands/ListWhatIfForecastExportsCommand.ts +++ b/clients/client-forecast/src/commands/ListWhatIfForecastExportsCommand.ts @@ -90,6 +90,7 @@ export interface ListWhatIfForecastExportsCommandOutput extends ListWhatIfForeca * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListWhatIfForecastExportsCommand extends $Command diff --git a/clients/client-forecast/src/commands/ListWhatIfForecastsCommand.ts b/clients/client-forecast/src/commands/ListWhatIfForecastsCommand.ts index 6c6ea55b5d119..75bf6c353aafd 100644 --- a/clients/client-forecast/src/commands/ListWhatIfForecastsCommand.ts +++ b/clients/client-forecast/src/commands/ListWhatIfForecastsCommand.ts @@ -81,6 +81,7 @@ export interface ListWhatIfForecastsCommandOutput extends ListWhatIfForecastsRes * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ListWhatIfForecastsCommand extends $Command diff --git a/clients/client-forecast/src/commands/ResumeResourceCommand.ts b/clients/client-forecast/src/commands/ResumeResourceCommand.ts index f0366344e404a..bca3eead943cf 100644 --- a/clients/client-forecast/src/commands/ResumeResourceCommand.ts +++ b/clients/client-forecast/src/commands/ResumeResourceCommand.ts @@ -67,6 +67,7 @@ export interface ResumeResourceCommandOutput extends __MetadataBearer {} * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class ResumeResourceCommand extends $Command diff --git a/clients/client-forecast/src/commands/StopResourceCommand.ts b/clients/client-forecast/src/commands/StopResourceCommand.ts index bd429d33b31af..56ba4ee7b8af5 100644 --- a/clients/client-forecast/src/commands/StopResourceCommand.ts +++ b/clients/client-forecast/src/commands/StopResourceCommand.ts @@ -92,6 +92,7 @@ export interface StopResourceCommandOutput extends __MetadataBearer {} * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class StopResourceCommand extends $Command diff --git a/clients/client-forecast/src/commands/TagResourceCommand.ts b/clients/client-forecast/src/commands/TagResourceCommand.ts index b8e0e029f152a..1236fc0c1ae36 100644 --- a/clients/client-forecast/src/commands/TagResourceCommand.ts +++ b/clients/client-forecast/src/commands/TagResourceCommand.ts @@ -73,6 +73,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-forecast/src/commands/UntagResourceCommand.ts b/clients/client-forecast/src/commands/UntagResourceCommand.ts index f04f59da4310a..979e56557a8c7 100644 --- a/clients/client-forecast/src/commands/UntagResourceCommand.ts +++ b/clients/client-forecast/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-forecast/src/commands/UpdateDatasetGroupCommand.ts b/clients/client-forecast/src/commands/UpdateDatasetGroupCommand.ts index c7784f28bfb7f..33378da5037ba 100644 --- a/clients/client-forecast/src/commands/UpdateDatasetGroupCommand.ts +++ b/clients/client-forecast/src/commands/UpdateDatasetGroupCommand.ts @@ -72,6 +72,7 @@ export interface UpdateDatasetGroupCommandOutput extends UpdateDatasetGroupRespo * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* + * * @public */ export class UpdateDatasetGroupCommand extends $Command diff --git a/clients/client-forecastquery/src/commands/QueryForecastCommand.ts b/clients/client-forecastquery/src/commands/QueryForecastCommand.ts index 156235eee9845..767bbc52f3b14 100644 --- a/clients/client-forecastquery/src/commands/QueryForecastCommand.ts +++ b/clients/client-forecastquery/src/commands/QueryForecastCommand.ts @@ -97,6 +97,7 @@ export interface QueryForecastCommandOutput extends QueryForecastResponse, __Met * @throws {@link ForecastqueryServiceException} *

Base exception class for all service exceptions from Forecastquery service.

* + * * @public */ export class QueryForecastCommand extends $Command diff --git a/clients/client-forecastquery/src/commands/QueryWhatIfForecastCommand.ts b/clients/client-forecastquery/src/commands/QueryWhatIfForecastCommand.ts index 114d1db0b1e2a..8bff411ba35a9 100644 --- a/clients/client-forecastquery/src/commands/QueryWhatIfForecastCommand.ts +++ b/clients/client-forecastquery/src/commands/QueryWhatIfForecastCommand.ts @@ -86,6 +86,7 @@ export interface QueryWhatIfForecastCommandOutput extends QueryWhatIfForecastRes * @throws {@link ForecastqueryServiceException} *

Base exception class for all service exceptions from Forecastquery service.

* + * * @public */ export class QueryWhatIfForecastCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/BatchCreateVariableCommand.ts b/clients/client-frauddetector/src/commands/BatchCreateVariableCommand.ts index 3a81d053b25fd..7913e0675e2f8 100644 --- a/clients/client-frauddetector/src/commands/BatchCreateVariableCommand.ts +++ b/clients/client-frauddetector/src/commands/BatchCreateVariableCommand.ts @@ -88,6 +88,7 @@ export interface BatchCreateVariableCommandOutput extends BatchCreateVariableRes * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class BatchCreateVariableCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/BatchGetVariableCommand.ts b/clients/client-frauddetector/src/commands/BatchGetVariableCommand.ts index d069952643dc3..b13fbd2bb639c 100644 --- a/clients/client-frauddetector/src/commands/BatchGetVariableCommand.ts +++ b/clients/client-frauddetector/src/commands/BatchGetVariableCommand.ts @@ -88,6 +88,7 @@ export interface BatchGetVariableCommandOutput extends BatchGetVariableResult, _ * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class BatchGetVariableCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/CancelBatchImportJobCommand.ts b/clients/client-frauddetector/src/commands/CancelBatchImportJobCommand.ts index 8131e58a10acd..3e97e7ad77256 100644 --- a/clients/client-frauddetector/src/commands/CancelBatchImportJobCommand.ts +++ b/clients/client-frauddetector/src/commands/CancelBatchImportJobCommand.ts @@ -68,6 +68,7 @@ export interface CancelBatchImportJobCommandOutput extends CancelBatchImportJobR * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class CancelBatchImportJobCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/CancelBatchPredictionJobCommand.ts b/clients/client-frauddetector/src/commands/CancelBatchPredictionJobCommand.ts index a521763c556d5..8957100457880 100644 --- a/clients/client-frauddetector/src/commands/CancelBatchPredictionJobCommand.ts +++ b/clients/client-frauddetector/src/commands/CancelBatchPredictionJobCommand.ts @@ -68,6 +68,7 @@ export interface CancelBatchPredictionJobCommandOutput extends CancelBatchPredic * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class CancelBatchPredictionJobCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/CreateBatchImportJobCommand.ts b/clients/client-frauddetector/src/commands/CreateBatchImportJobCommand.ts index d72a72a12575a..672160e138d02 100644 --- a/clients/client-frauddetector/src/commands/CreateBatchImportJobCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateBatchImportJobCommand.ts @@ -78,6 +78,7 @@ export interface CreateBatchImportJobCommandOutput extends CreateBatchImportJobR * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class CreateBatchImportJobCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/CreateBatchPredictionJobCommand.ts b/clients/client-frauddetector/src/commands/CreateBatchPredictionJobCommand.ts index c081a87419780..e1832b27437dc 100644 --- a/clients/client-frauddetector/src/commands/CreateBatchPredictionJobCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateBatchPredictionJobCommand.ts @@ -80,6 +80,7 @@ export interface CreateBatchPredictionJobCommandOutput extends CreateBatchPredic * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class CreateBatchPredictionJobCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/CreateDetectorVersionCommand.ts b/clients/client-frauddetector/src/commands/CreateDetectorVersionCommand.ts index cb770d74146e7..68c0555ecfe83 100644 --- a/clients/client-frauddetector/src/commands/CreateDetectorVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateDetectorVersionCommand.ts @@ -98,6 +98,7 @@ export interface CreateDetectorVersionCommandOutput extends CreateDetectorVersio * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class CreateDetectorVersionCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/CreateListCommand.ts b/clients/client-frauddetector/src/commands/CreateListCommand.ts index d49d204c0abb9..54872b36b162c 100644 --- a/clients/client-frauddetector/src/commands/CreateListCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateListCommand.ts @@ -80,6 +80,7 @@ export interface CreateListCommandOutput extends CreateListResult, __MetadataBea * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class CreateListCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/CreateModelCommand.ts b/clients/client-frauddetector/src/commands/CreateModelCommand.ts index bf002858b9902..7293bbf111fa2 100644 --- a/clients/client-frauddetector/src/commands/CreateModelCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateModelCommand.ts @@ -74,6 +74,7 @@ export interface CreateModelCommandOutput extends CreateModelResult, __MetadataB * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class CreateModelCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/CreateModelVersionCommand.ts b/clients/client-frauddetector/src/commands/CreateModelVersionCommand.ts index 4a875a37669ab..b9ccb4a27a8f1 100644 --- a/clients/client-frauddetector/src/commands/CreateModelVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateModelVersionCommand.ts @@ -105,6 +105,7 @@ export interface CreateModelVersionCommandOutput extends CreateModelVersionResul * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class CreateModelVersionCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/CreateRuleCommand.ts b/clients/client-frauddetector/src/commands/CreateRuleCommand.ts index bd314fe4150f7..42a896b9b7364 100644 --- a/clients/client-frauddetector/src/commands/CreateRuleCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateRuleCommand.ts @@ -84,6 +84,7 @@ export interface CreateRuleCommandOutput extends CreateRuleResult, __MetadataBea * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class CreateRuleCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/CreateVariableCommand.ts b/clients/client-frauddetector/src/commands/CreateVariableCommand.ts index 073415919cbe9..5cd4544b8b7d0 100644 --- a/clients/client-frauddetector/src/commands/CreateVariableCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateVariableCommand.ts @@ -76,6 +76,7 @@ export interface CreateVariableCommandOutput extends CreateVariableResult, __Met * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class CreateVariableCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteBatchImportJobCommand.ts b/clients/client-frauddetector/src/commands/DeleteBatchImportJobCommand.ts index 6e3a970ef22c8..ba25baa029c14 100644 --- a/clients/client-frauddetector/src/commands/DeleteBatchImportJobCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteBatchImportJobCommand.ts @@ -65,6 +65,7 @@ export interface DeleteBatchImportJobCommandOutput extends DeleteBatchImportJobR * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteBatchImportJobCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteBatchPredictionJobCommand.ts b/clients/client-frauddetector/src/commands/DeleteBatchPredictionJobCommand.ts index 0dceca1cb7713..c1ad949f38ef8 100644 --- a/clients/client-frauddetector/src/commands/DeleteBatchPredictionJobCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteBatchPredictionJobCommand.ts @@ -65,6 +65,7 @@ export interface DeleteBatchPredictionJobCommandOutput extends DeleteBatchPredic * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteBatchPredictionJobCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteDetectorCommand.ts b/clients/client-frauddetector/src/commands/DeleteDetectorCommand.ts index ba223bada0129..fec34f22888e2 100644 --- a/clients/client-frauddetector/src/commands/DeleteDetectorCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteDetectorCommand.ts @@ -69,6 +69,7 @@ export interface DeleteDetectorCommandOutput extends DeleteDetectorResult, __Met * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteDetectorCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteDetectorVersionCommand.ts b/clients/client-frauddetector/src/commands/DeleteDetectorVersionCommand.ts index 77c4824f68ecc..81cd9d4a99e29 100644 --- a/clients/client-frauddetector/src/commands/DeleteDetectorVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteDetectorVersionCommand.ts @@ -73,6 +73,7 @@ export interface DeleteDetectorVersionCommandOutput extends DeleteDetectorVersio * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteDetectorVersionCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteEntityTypeCommand.ts b/clients/client-frauddetector/src/commands/DeleteEntityTypeCommand.ts index c70028cb10006..c99c3f6acc5e1 100644 --- a/clients/client-frauddetector/src/commands/DeleteEntityTypeCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteEntityTypeCommand.ts @@ -70,6 +70,7 @@ export interface DeleteEntityTypeCommandOutput extends DeleteEntityTypeResult, _ * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteEntityTypeCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteEventCommand.ts b/clients/client-frauddetector/src/commands/DeleteEventCommand.ts index 1e9d71ca62157..e26b1f7bd6baf 100644 --- a/clients/client-frauddetector/src/commands/DeleteEventCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteEventCommand.ts @@ -69,6 +69,7 @@ export interface DeleteEventCommandOutput extends DeleteEventResult, __MetadataB * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteEventCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteEventTypeCommand.ts b/clients/client-frauddetector/src/commands/DeleteEventTypeCommand.ts index 594dd253c76cb..a630e654558d4 100644 --- a/clients/client-frauddetector/src/commands/DeleteEventTypeCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteEventTypeCommand.ts @@ -70,6 +70,7 @@ export interface DeleteEventTypeCommandOutput extends DeleteEventTypeResult, __M * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteEventTypeCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteEventsByEventTypeCommand.ts b/clients/client-frauddetector/src/commands/DeleteEventsByEventTypeCommand.ts index 7740f0b9f90f8..a9e9dd82f1d12 100644 --- a/clients/client-frauddetector/src/commands/DeleteEventsByEventTypeCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteEventsByEventTypeCommand.ts @@ -74,6 +74,7 @@ export interface DeleteEventsByEventTypeCommandOutput extends DeleteEventsByEven * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteEventsByEventTypeCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteExternalModelCommand.ts b/clients/client-frauddetector/src/commands/DeleteExternalModelCommand.ts index 45c5b1f57d6d0..9fa0575e99467 100644 --- a/clients/client-frauddetector/src/commands/DeleteExternalModelCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteExternalModelCommand.ts @@ -69,6 +69,7 @@ export interface DeleteExternalModelCommandOutput extends DeleteExternalModelRes * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteExternalModelCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteLabelCommand.ts b/clients/client-frauddetector/src/commands/DeleteLabelCommand.ts index 2ff68e8a89b53..16e14e1031c27 100644 --- a/clients/client-frauddetector/src/commands/DeleteLabelCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteLabelCommand.ts @@ -68,6 +68,7 @@ export interface DeleteLabelCommandOutput extends DeleteLabelResult, __MetadataB * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteLabelCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteListCommand.ts b/clients/client-frauddetector/src/commands/DeleteListCommand.ts index ccf1911ed2b51..d4be424ae7020 100644 --- a/clients/client-frauddetector/src/commands/DeleteListCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteListCommand.ts @@ -71,6 +71,7 @@ export interface DeleteListCommandOutput extends DeleteListResult, __MetadataBea * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteListCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteModelCommand.ts b/clients/client-frauddetector/src/commands/DeleteModelCommand.ts index 73cc7a058d69d..6bfe650c522b5 100644 --- a/clients/client-frauddetector/src/commands/DeleteModelCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteModelCommand.ts @@ -71,6 +71,7 @@ export interface DeleteModelCommandOutput extends DeleteModelResult, __MetadataB * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteModelCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteModelVersionCommand.ts b/clients/client-frauddetector/src/commands/DeleteModelVersionCommand.ts index ba53aadd59df7..92a468a09b4bf 100644 --- a/clients/client-frauddetector/src/commands/DeleteModelVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteModelVersionCommand.ts @@ -72,6 +72,7 @@ export interface DeleteModelVersionCommandOutput extends DeleteModelVersionResul * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteModelVersionCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteOutcomeCommand.ts b/clients/client-frauddetector/src/commands/DeleteOutcomeCommand.ts index 91bcf80d3930f..16f806fead890 100644 --- a/clients/client-frauddetector/src/commands/DeleteOutcomeCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteOutcomeCommand.ts @@ -70,6 +70,7 @@ export interface DeleteOutcomeCommandOutput extends DeleteOutcomeResult, __Metad * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteOutcomeCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteRuleCommand.ts b/clients/client-frauddetector/src/commands/DeleteRuleCommand.ts index e3db098413771..375c4d7e67e08 100644 --- a/clients/client-frauddetector/src/commands/DeleteRuleCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteRuleCommand.ts @@ -73,6 +73,7 @@ export interface DeleteRuleCommandOutput extends DeleteRuleResult, __MetadataBea * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteRuleCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DeleteVariableCommand.ts b/clients/client-frauddetector/src/commands/DeleteVariableCommand.ts index fc7e803056b39..cbd19e508081e 100644 --- a/clients/client-frauddetector/src/commands/DeleteVariableCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteVariableCommand.ts @@ -71,6 +71,7 @@ export interface DeleteVariableCommandOutput extends DeleteVariableResult, __Met * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DeleteVariableCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DescribeDetectorCommand.ts b/clients/client-frauddetector/src/commands/DescribeDetectorCommand.ts index 9e5b8701e3560..cba2885febdf7 100644 --- a/clients/client-frauddetector/src/commands/DescribeDetectorCommand.ts +++ b/clients/client-frauddetector/src/commands/DescribeDetectorCommand.ts @@ -82,6 +82,7 @@ export interface DescribeDetectorCommandOutput extends DescribeDetectorResult, _ * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DescribeDetectorCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/DescribeModelVersionsCommand.ts b/clients/client-frauddetector/src/commands/DescribeModelVersionsCommand.ts index 65b1c44d67b85..3e8ac8f44c8f2 100644 --- a/clients/client-frauddetector/src/commands/DescribeModelVersionsCommand.ts +++ b/clients/client-frauddetector/src/commands/DescribeModelVersionsCommand.ts @@ -235,6 +235,7 @@ export interface DescribeModelVersionsCommandOutput extends DescribeModelVersion * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class DescribeModelVersionsCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetBatchImportJobsCommand.ts b/clients/client-frauddetector/src/commands/GetBatchImportJobsCommand.ts index 5555ef568ce5b..99d2d68da528a 100644 --- a/clients/client-frauddetector/src/commands/GetBatchImportJobsCommand.ts +++ b/clients/client-frauddetector/src/commands/GetBatchImportJobsCommand.ts @@ -92,6 +92,7 @@ export interface GetBatchImportJobsCommandOutput extends GetBatchImportJobsResul * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetBatchImportJobsCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetBatchPredictionJobsCommand.ts b/clients/client-frauddetector/src/commands/GetBatchPredictionJobsCommand.ts index 321ad34470045..8ea388292191d 100644 --- a/clients/client-frauddetector/src/commands/GetBatchPredictionJobsCommand.ts +++ b/clients/client-frauddetector/src/commands/GetBatchPredictionJobsCommand.ts @@ -91,6 +91,7 @@ export interface GetBatchPredictionJobsCommandOutput extends GetBatchPredictionJ * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetBatchPredictionJobsCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetDeleteEventsByEventTypeStatusCommand.ts b/clients/client-frauddetector/src/commands/GetDeleteEventsByEventTypeStatusCommand.ts index 52f43ebf96547..73f50416059d9 100644 --- a/clients/client-frauddetector/src/commands/GetDeleteEventsByEventTypeStatusCommand.ts +++ b/clients/client-frauddetector/src/commands/GetDeleteEventsByEventTypeStatusCommand.ts @@ -76,6 +76,7 @@ export interface GetDeleteEventsByEventTypeStatusCommandOutput * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetDeleteEventsByEventTypeStatusCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetDetectorVersionCommand.ts b/clients/client-frauddetector/src/commands/GetDetectorVersionCommand.ts index 2abcc3fda3033..30030ad7dbd4c 100644 --- a/clients/client-frauddetector/src/commands/GetDetectorVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/GetDetectorVersionCommand.ts @@ -96,6 +96,7 @@ export interface GetDetectorVersionCommandOutput extends GetDetectorVersionResul * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetDetectorVersionCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetDetectorsCommand.ts b/clients/client-frauddetector/src/commands/GetDetectorsCommand.ts index aa6d098d28ad5..e4d379aa7a98e 100644 --- a/clients/client-frauddetector/src/commands/GetDetectorsCommand.ts +++ b/clients/client-frauddetector/src/commands/GetDetectorsCommand.ts @@ -87,6 +87,7 @@ export interface GetDetectorsCommandOutput extends GetDetectorsResult, __Metadat * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetDetectorsCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetEntityTypesCommand.ts b/clients/client-frauddetector/src/commands/GetEntityTypesCommand.ts index 2b17c90544c54..f1babaecf8c11 100644 --- a/clients/client-frauddetector/src/commands/GetEntityTypesCommand.ts +++ b/clients/client-frauddetector/src/commands/GetEntityTypesCommand.ts @@ -86,6 +86,7 @@ export interface GetEntityTypesCommandOutput extends GetEntityTypesResult, __Met * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetEntityTypesCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetEventCommand.ts b/clients/client-frauddetector/src/commands/GetEventCommand.ts index 4d5fa2fa0f0c7..9b7ffd07efaac 100644 --- a/clients/client-frauddetector/src/commands/GetEventCommand.ts +++ b/clients/client-frauddetector/src/commands/GetEventCommand.ts @@ -86,6 +86,7 @@ export interface GetEventCommandOutput extends GetEventResult, __MetadataBearer * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetEventCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetEventPredictionCommand.ts b/clients/client-frauddetector/src/commands/GetEventPredictionCommand.ts index a76e66b7bb0af..32857d1be88dc 100644 --- a/clients/client-frauddetector/src/commands/GetEventPredictionCommand.ts +++ b/clients/client-frauddetector/src/commands/GetEventPredictionCommand.ts @@ -130,6 +130,7 @@ export interface GetEventPredictionCommandOutput extends GetEventPredictionResul * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetEventPredictionCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetEventPredictionMetadataCommand.ts b/clients/client-frauddetector/src/commands/GetEventPredictionMetadataCommand.ts index 5983d38ac95a2..4c35f6c7b7f26 100644 --- a/clients/client-frauddetector/src/commands/GetEventPredictionMetadataCommand.ts +++ b/clients/client-frauddetector/src/commands/GetEventPredictionMetadataCommand.ts @@ -153,6 +153,7 @@ export interface GetEventPredictionMetadataCommandOutput extends GetEventPredict * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetEventPredictionMetadataCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetEventTypesCommand.ts b/clients/client-frauddetector/src/commands/GetEventTypesCommand.ts index 453b21fc125d3..9b6af8318311e 100644 --- a/clients/client-frauddetector/src/commands/GetEventTypesCommand.ts +++ b/clients/client-frauddetector/src/commands/GetEventTypesCommand.ts @@ -106,6 +106,7 @@ export interface GetEventTypesCommandOutput extends GetEventTypesResult, __Metad * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetEventTypesCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetExternalModelsCommand.ts b/clients/client-frauddetector/src/commands/GetExternalModelsCommand.ts index e3fccb21c9c0d..064f22b292991 100644 --- a/clients/client-frauddetector/src/commands/GetExternalModelsCommand.ts +++ b/clients/client-frauddetector/src/commands/GetExternalModelsCommand.ts @@ -104,6 +104,7 @@ export interface GetExternalModelsCommandOutput extends GetExternalModelsResult, * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetExternalModelsCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetKMSEncryptionKeyCommand.ts b/clients/client-frauddetector/src/commands/GetKMSEncryptionKeyCommand.ts index 42be0539aef49..4b6c65cf0db1b 100644 --- a/clients/client-frauddetector/src/commands/GetKMSEncryptionKeyCommand.ts +++ b/clients/client-frauddetector/src/commands/GetKMSEncryptionKeyCommand.ts @@ -67,6 +67,7 @@ export interface GetKMSEncryptionKeyCommandOutput extends GetKMSEncryptionKeyRes * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetKMSEncryptionKeyCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetLabelsCommand.ts b/clients/client-frauddetector/src/commands/GetLabelsCommand.ts index 9ff969ae90960..a77d47f65f651 100644 --- a/clients/client-frauddetector/src/commands/GetLabelsCommand.ts +++ b/clients/client-frauddetector/src/commands/GetLabelsCommand.ts @@ -86,6 +86,7 @@ export interface GetLabelsCommandOutput extends GetLabelsResult, __MetadataBeare * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetLabelsCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetListElementsCommand.ts b/clients/client-frauddetector/src/commands/GetListElementsCommand.ts index 6e14f43757d89..781eb0d029e86 100644 --- a/clients/client-frauddetector/src/commands/GetListElementsCommand.ts +++ b/clients/client-frauddetector/src/commands/GetListElementsCommand.ts @@ -81,6 +81,7 @@ export interface GetListElementsCommandOutput extends GetListElementsResult, __M * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetListElementsCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetListsMetadataCommand.ts b/clients/client-frauddetector/src/commands/GetListsMetadataCommand.ts index 3ab8b8c29a4e7..5fb4e5168a8d8 100644 --- a/clients/client-frauddetector/src/commands/GetListsMetadataCommand.ts +++ b/clients/client-frauddetector/src/commands/GetListsMetadataCommand.ts @@ -84,6 +84,7 @@ export interface GetListsMetadataCommandOutput extends GetListsMetadataResult, _ * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetListsMetadataCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetModelVersionCommand.ts b/clients/client-frauddetector/src/commands/GetModelVersionCommand.ts index f2d81b61afa37..744fd68e5bdd4 100644 --- a/clients/client-frauddetector/src/commands/GetModelVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/GetModelVersionCommand.ts @@ -100,6 +100,7 @@ export interface GetModelVersionCommandOutput extends GetModelVersionResult, __M * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetModelVersionCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetModelsCommand.ts b/clients/client-frauddetector/src/commands/GetModelsCommand.ts index 4fa4706983c8c..a014d65166a6f 100644 --- a/clients/client-frauddetector/src/commands/GetModelsCommand.ts +++ b/clients/client-frauddetector/src/commands/GetModelsCommand.ts @@ -90,6 +90,7 @@ export interface GetModelsCommandOutput extends GetModelsResult, __MetadataBeare * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetModelsCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetOutcomesCommand.ts b/clients/client-frauddetector/src/commands/GetOutcomesCommand.ts index 5745fb5947b4d..1755c01e67e3a 100644 --- a/clients/client-frauddetector/src/commands/GetOutcomesCommand.ts +++ b/clients/client-frauddetector/src/commands/GetOutcomesCommand.ts @@ -86,6 +86,7 @@ export interface GetOutcomesCommandOutput extends GetOutcomesResult, __MetadataB * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetOutcomesCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetRulesCommand.ts b/clients/client-frauddetector/src/commands/GetRulesCommand.ts index f8fa59f5d2a6d..b6748bf73f578 100644 --- a/clients/client-frauddetector/src/commands/GetRulesCommand.ts +++ b/clients/client-frauddetector/src/commands/GetRulesCommand.ts @@ -91,6 +91,7 @@ export interface GetRulesCommandOutput extends GetRulesResult, __MetadataBearer * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetRulesCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/GetVariablesCommand.ts b/clients/client-frauddetector/src/commands/GetVariablesCommand.ts index 801df4f14cc62..5a8b056ffe2ce 100644 --- a/clients/client-frauddetector/src/commands/GetVariablesCommand.ts +++ b/clients/client-frauddetector/src/commands/GetVariablesCommand.ts @@ -90,6 +90,7 @@ export interface GetVariablesCommandOutput extends GetVariablesResult, __Metadat * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class GetVariablesCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/ListEventPredictionsCommand.ts b/clients/client-frauddetector/src/commands/ListEventPredictionsCommand.ts index 41acf209e9eaf..205e847398af7 100644 --- a/clients/client-frauddetector/src/commands/ListEventPredictionsCommand.ts +++ b/clients/client-frauddetector/src/commands/ListEventPredictionsCommand.ts @@ -105,6 +105,7 @@ export interface ListEventPredictionsCommandOutput extends ListEventPredictionsR * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class ListEventPredictionsCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/ListTagsForResourceCommand.ts b/clients/client-frauddetector/src/commands/ListTagsForResourceCommand.ts index bd11ad957e7bb..9e1f51d7514b0 100644 --- a/clients/client-frauddetector/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-frauddetector/src/commands/ListTagsForResourceCommand.ts @@ -77,6 +77,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/PutDetectorCommand.ts b/clients/client-frauddetector/src/commands/PutDetectorCommand.ts index f4f99a47d6eaa..3cdbdc898d6ae 100644 --- a/clients/client-frauddetector/src/commands/PutDetectorCommand.ts +++ b/clients/client-frauddetector/src/commands/PutDetectorCommand.ts @@ -76,6 +76,7 @@ export interface PutDetectorCommandOutput extends PutDetectorResult, __MetadataB * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class PutDetectorCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/PutEntityTypeCommand.ts b/clients/client-frauddetector/src/commands/PutEntityTypeCommand.ts index c0272cdfd8de0..fcf9d75e5991d 100644 --- a/clients/client-frauddetector/src/commands/PutEntityTypeCommand.ts +++ b/clients/client-frauddetector/src/commands/PutEntityTypeCommand.ts @@ -75,6 +75,7 @@ export interface PutEntityTypeCommandOutput extends PutEntityTypeResult, __Metad * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class PutEntityTypeCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/PutEventTypeCommand.ts b/clients/client-frauddetector/src/commands/PutEventTypeCommand.ts index c40e2e566f3da..1004fd6fa8339 100644 --- a/clients/client-frauddetector/src/commands/PutEventTypeCommand.ts +++ b/clients/client-frauddetector/src/commands/PutEventTypeCommand.ts @@ -88,6 +88,7 @@ export interface PutEventTypeCommandOutput extends PutEventTypeResult, __Metadat * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class PutEventTypeCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/PutExternalModelCommand.ts b/clients/client-frauddetector/src/commands/PutExternalModelCommand.ts index b7b25e86ae053..ae33fb075884d 100644 --- a/clients/client-frauddetector/src/commands/PutExternalModelCommand.ts +++ b/clients/client-frauddetector/src/commands/PutExternalModelCommand.ts @@ -93,6 +93,7 @@ export interface PutExternalModelCommandOutput extends PutExternalModelResult, _ * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class PutExternalModelCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/PutKMSEncryptionKeyCommand.ts b/clients/client-frauddetector/src/commands/PutKMSEncryptionKeyCommand.ts index c0a1e5fea2d59..edc7dda36f74e 100644 --- a/clients/client-frauddetector/src/commands/PutKMSEncryptionKeyCommand.ts +++ b/clients/client-frauddetector/src/commands/PutKMSEncryptionKeyCommand.ts @@ -71,6 +71,7 @@ export interface PutKMSEncryptionKeyCommandOutput extends PutKMSEncryptionKeyRes * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class PutKMSEncryptionKeyCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/PutLabelCommand.ts b/clients/client-frauddetector/src/commands/PutLabelCommand.ts index a4b3fe74b4825..e765c0be83dc5 100644 --- a/clients/client-frauddetector/src/commands/PutLabelCommand.ts +++ b/clients/client-frauddetector/src/commands/PutLabelCommand.ts @@ -75,6 +75,7 @@ export interface PutLabelCommandOutput extends PutLabelResult, __MetadataBearer * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class PutLabelCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/PutOutcomeCommand.ts b/clients/client-frauddetector/src/commands/PutOutcomeCommand.ts index 45d116c40749c..41e9498a980dc 100644 --- a/clients/client-frauddetector/src/commands/PutOutcomeCommand.ts +++ b/clients/client-frauddetector/src/commands/PutOutcomeCommand.ts @@ -75,6 +75,7 @@ export interface PutOutcomeCommandOutput extends PutOutcomeResult, __MetadataBea * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class PutOutcomeCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/SendEventCommand.ts b/clients/client-frauddetector/src/commands/SendEventCommand.ts index 5e1d639dc3abc..e40877af7d97f 100644 --- a/clients/client-frauddetector/src/commands/SendEventCommand.ts +++ b/clients/client-frauddetector/src/commands/SendEventCommand.ts @@ -84,6 +84,7 @@ export interface SendEventCommandOutput extends SendEventResult, __MetadataBeare * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class SendEventCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/TagResourceCommand.ts b/clients/client-frauddetector/src/commands/TagResourceCommand.ts index b78c896ae3d67..d2a7eb167a43e 100644 --- a/clients/client-frauddetector/src/commands/TagResourceCommand.ts +++ b/clients/client-frauddetector/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/UntagResourceCommand.ts b/clients/client-frauddetector/src/commands/UntagResourceCommand.ts index 432ad04c91695..1a9342c3484cf 100644 --- a/clients/client-frauddetector/src/commands/UntagResourceCommand.ts +++ b/clients/client-frauddetector/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResult, __Metad * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/UpdateDetectorVersionCommand.ts b/clients/client-frauddetector/src/commands/UpdateDetectorVersionCommand.ts index 75da2a113b220..7d977b498d64e 100644 --- a/clients/client-frauddetector/src/commands/UpdateDetectorVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateDetectorVersionCommand.ts @@ -92,6 +92,7 @@ export interface UpdateDetectorVersionCommandOutput extends UpdateDetectorVersio * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class UpdateDetectorVersionCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/UpdateDetectorVersionMetadataCommand.ts b/clients/client-frauddetector/src/commands/UpdateDetectorVersionMetadataCommand.ts index b691a4f056c09..5acfdb81725ad 100644 --- a/clients/client-frauddetector/src/commands/UpdateDetectorVersionMetadataCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateDetectorVersionMetadataCommand.ts @@ -76,6 +76,7 @@ export interface UpdateDetectorVersionMetadataCommandOutput * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class UpdateDetectorVersionMetadataCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/UpdateDetectorVersionStatusCommand.ts b/clients/client-frauddetector/src/commands/UpdateDetectorVersionStatusCommand.ts index 87a3e64915eca..37ed64293e493 100644 --- a/clients/client-frauddetector/src/commands/UpdateDetectorVersionStatusCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateDetectorVersionStatusCommand.ts @@ -74,6 +74,7 @@ export interface UpdateDetectorVersionStatusCommandOutput extends UpdateDetector * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class UpdateDetectorVersionStatusCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/UpdateEventLabelCommand.ts b/clients/client-frauddetector/src/commands/UpdateEventLabelCommand.ts index f2700e6de3b0b..c4f55f8d2f93d 100644 --- a/clients/client-frauddetector/src/commands/UpdateEventLabelCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateEventLabelCommand.ts @@ -74,6 +74,7 @@ export interface UpdateEventLabelCommandOutput extends UpdateEventLabelResult, _ * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class UpdateEventLabelCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/UpdateListCommand.ts b/clients/client-frauddetector/src/commands/UpdateListCommand.ts index f088f9d16912f..fc64640b1c082 100644 --- a/clients/client-frauddetector/src/commands/UpdateListCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateListCommand.ts @@ -79,6 +79,7 @@ export interface UpdateListCommandOutput extends UpdateListResult, __MetadataBea * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class UpdateListCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/UpdateModelCommand.ts b/clients/client-frauddetector/src/commands/UpdateModelCommand.ts index 1d8b10887e1c5..debff050321c3 100644 --- a/clients/client-frauddetector/src/commands/UpdateModelCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateModelCommand.ts @@ -73,6 +73,7 @@ export interface UpdateModelCommandOutput extends UpdateModelResult, __MetadataB * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class UpdateModelCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/UpdateModelVersionCommand.ts b/clients/client-frauddetector/src/commands/UpdateModelVersionCommand.ts index b1088d4fe5989..b2d74ea8aa1d4 100644 --- a/clients/client-frauddetector/src/commands/UpdateModelVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateModelVersionCommand.ts @@ -94,6 +94,7 @@ export interface UpdateModelVersionCommandOutput extends UpdateModelVersionResul * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class UpdateModelVersionCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/UpdateModelVersionStatusCommand.ts b/clients/client-frauddetector/src/commands/UpdateModelVersionStatusCommand.ts index 09d7fe98921e6..bb03f4e20a910 100644 --- a/clients/client-frauddetector/src/commands/UpdateModelVersionStatusCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateModelVersionStatusCommand.ts @@ -86,6 +86,7 @@ export interface UpdateModelVersionStatusCommandOutput extends UpdateModelVersio * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class UpdateModelVersionStatusCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/UpdateRuleMetadataCommand.ts b/clients/client-frauddetector/src/commands/UpdateRuleMetadataCommand.ts index bd9ecab35499e..aab6f74449e46 100644 --- a/clients/client-frauddetector/src/commands/UpdateRuleMetadataCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateRuleMetadataCommand.ts @@ -76,6 +76,7 @@ export interface UpdateRuleMetadataCommandOutput extends UpdateRuleMetadataResul * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class UpdateRuleMetadataCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/UpdateRuleVersionCommand.ts b/clients/client-frauddetector/src/commands/UpdateRuleVersionCommand.ts index 1a28c27e38fa9..84201254d0e17 100644 --- a/clients/client-frauddetector/src/commands/UpdateRuleVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateRuleVersionCommand.ts @@ -97,6 +97,7 @@ export interface UpdateRuleVersionCommandOutput extends UpdateRuleVersionResult, * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class UpdateRuleVersionCommand extends $Command diff --git a/clients/client-frauddetector/src/commands/UpdateVariableCommand.ts b/clients/client-frauddetector/src/commands/UpdateVariableCommand.ts index 8387c364d20fc..2b12c86a5b26d 100644 --- a/clients/client-frauddetector/src/commands/UpdateVariableCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateVariableCommand.ts @@ -74,6 +74,7 @@ export interface UpdateVariableCommandOutput extends UpdateVariableResult, __Met * @throws {@link FraudDetectorServiceException} *

Base exception class for all service exceptions from FraudDetector service.

* + * * @public */ export class UpdateVariableCommand extends $Command diff --git a/clients/client-freetier/src/commands/GetFreeTierUsageCommand.ts b/clients/client-freetier/src/commands/GetFreeTierUsageCommand.ts index aa494fb4402d0..97d9d6e893e81 100644 --- a/clients/client-freetier/src/commands/GetFreeTierUsageCommand.ts +++ b/clients/client-freetier/src/commands/GetFreeTierUsageCommand.ts @@ -114,6 +114,7 @@ export interface GetFreeTierUsageCommandOutput extends GetFreeTierUsageResponse, * @throws {@link FreeTierServiceException} *

Base exception class for all service exceptions from FreeTier service.

* + * * @public */ export class GetFreeTierUsageCommand extends $Command diff --git a/clients/client-fsx/src/commands/AssociateFileSystemAliasesCommand.ts b/clients/client-fsx/src/commands/AssociateFileSystemAliasesCommand.ts index 70f2ee01b5a76..5f294e9af56ff 100644 --- a/clients/client-fsx/src/commands/AssociateFileSystemAliasesCommand.ts +++ b/clients/client-fsx/src/commands/AssociateFileSystemAliasesCommand.ts @@ -83,6 +83,7 @@ export interface AssociateFileSystemAliasesCommandOutput extends AssociateFileSy * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class AssociateFileSystemAliasesCommand extends $Command diff --git a/clients/client-fsx/src/commands/CancelDataRepositoryTaskCommand.ts b/clients/client-fsx/src/commands/CancelDataRepositoryTaskCommand.ts index f3cd6fe045ccc..ea87c6dde2c3d 100644 --- a/clients/client-fsx/src/commands/CancelDataRepositoryTaskCommand.ts +++ b/clients/client-fsx/src/commands/CancelDataRepositoryTaskCommand.ts @@ -86,6 +86,7 @@ export interface CancelDataRepositoryTaskCommandOutput extends CancelDataReposit * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class CancelDataRepositoryTaskCommand extends $Command diff --git a/clients/client-fsx/src/commands/CopyBackupCommand.ts b/clients/client-fsx/src/commands/CopyBackupCommand.ts index c6e2b854197eb..3b7416f126dfd 100644 --- a/clients/client-fsx/src/commands/CopyBackupCommand.ts +++ b/clients/client-fsx/src/commands/CopyBackupCommand.ts @@ -724,51 +724,51 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* - * @public + * * @example To copy a backup * ```javascript * // This operation copies an Amazon FSx backup. * const input = { - * "SourceBackupId": "backup-03e3c82e0183b7b6b", - * "SourceRegion": "us-east-2" + * SourceBackupId: "backup-03e3c82e0183b7b6b", + * SourceRegion: "us-east-2" * }; * const command = new CopyBackupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Backup": { - * "BackupId": "backup-0a3364eded1014b28", - * "CreationTime": 1617954808.068, - * "FileSystem": { - * "FileSystemId": "fs-0498eed5fe91001ec", - * "FileSystemType": "LUSTRE", - * "LustreConfiguration": { - * "AutomaticBackupRetentionDays": 0, - * "DeploymentType": "PERSISTENT_1", - * "PerUnitStorageThroughput": 50, - * "WeeklyMaintenanceStartTime": "1:05:00" + * Backup: { + * BackupId: "backup-0a3364eded1014b28", + * CreationTime: 1.617954808068E9, + * FileSystem: { + * FileSystemId: "fs-0498eed5fe91001ec", + * FileSystemType: "LUSTRE", + * LustreConfiguration: { + * AutomaticBackupRetentionDays: 0, + * DeploymentType: "PERSISTENT_1", + * PerUnitStorageThroughput: 50, + * WeeklyMaintenanceStartTime: "1:05:00" * }, - * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0f5179e395f597e66", - * "StorageCapacity": 2400, - * "StorageType": "SSD" + * ResourceARN: "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0f5179e395f597e66", + * StorageCapacity: 2400, + * StorageType: "SSD" * }, - * "KmsKeyId": "arn:aws:fsx:us-east-1:012345678912:key/d1234e22-543a-12b7-a98f-e12c2b54001a", - * "Lifecycle": "COPYING", - * "OwnerId": "123456789012", - * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:backup/backup-0a3364eded1014b28", - * "Tags": [ + * KmsKeyId: "arn:aws:fsx:us-east-1:012345678912:key/d1234e22-543a-12b7-a98f-e12c2b54001a", + * Lifecycle: "COPYING", + * OwnerId: "123456789012", + * ResourceARN: "arn:aws:fsx:us-east-1:012345678912:backup/backup-0a3364eded1014b28", + * Tags: [ * { - * "Key": "Name", - * "Value": "MyBackup" + * Key: "Name", + * Value: "MyBackup" * } * ], - * "Type": "USER_INITIATED" + * Type: "USER_INITIATED" * } * } * *\/ - * // example id: to-copy-a-backup-1481847318640 * ``` * + * @public */ export class CopyBackupCommand extends $Command .classBuilder< diff --git a/clients/client-fsx/src/commands/CopySnapshotAndUpdateVolumeCommand.ts b/clients/client-fsx/src/commands/CopySnapshotAndUpdateVolumeCommand.ts index 79fd617a0cc5e..85a2c31bca439 100644 --- a/clients/client-fsx/src/commands/CopySnapshotAndUpdateVolumeCommand.ts +++ b/clients/client-fsx/src/commands/CopySnapshotAndUpdateVolumeCommand.ts @@ -674,6 +674,7 @@ export interface CopySnapshotAndUpdateVolumeCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class CopySnapshotAndUpdateVolumeCommand extends $Command diff --git a/clients/client-fsx/src/commands/CreateBackupCommand.ts b/clients/client-fsx/src/commands/CreateBackupCommand.ts index f47f5df773940..98f5f1588f416 100644 --- a/clients/client-fsx/src/commands/CreateBackupCommand.ts +++ b/clients/client-fsx/src/commands/CreateBackupCommand.ts @@ -744,53 +744,8 @@ export interface CreateBackupCommandOutput extends CreateBackupResponse, __Metad * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* - * @public - * @example To create a new backup - * ```javascript - * // This operation creates a new backup. - * const input = { - * "FileSystemId": "fs-0498eed5fe91001ec", - * "Tags": [ - * { - * "Key": "Name", - * "Value": "MyBackup" - * } - * ] - * }; - * const command = new CreateBackupCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Backup": { - * "BackupId": "backup-03e3c82e0183b7b6b", - * "CreationTime": "1481841524.0", - * "FileSystem": { - * "FileSystemId": "fs-0498eed5fe91001ec", - * "OwnerId": "012345678912", - * "StorageCapacity": 300, - * "WindowsConfiguration": { - * "ActiveDirectoryId": "d-1234abcd12", - * "AutomaticBackupRetentionDays": 30, - * "DailyAutomaticBackupStartTime": "05:00", - * "WeeklyMaintenanceStartTime": "1:05:00" - * } - * }, - * "Lifecycle": "CREATING", - * "ProgressPercent": 0, - * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:backup/backup-03e3c82e0183b7b6b", - * "Tags": [ - * { - * "Key": "Name", - * "Value": "MyBackup" - * } - * ], - * "Type": "USER_INITIATED" - * } - * } - * *\/ - * // example id: to-create-a-new-backup-1481840798597 - * ``` * + * @public */ export class CreateBackupCommand extends $Command .classBuilder< diff --git a/clients/client-fsx/src/commands/CreateDataRepositoryAssociationCommand.ts b/clients/client-fsx/src/commands/CreateDataRepositoryAssociationCommand.ts index 8b4c969bc4a3e..f0f39859f1daf 100644 --- a/clients/client-fsx/src/commands/CreateDataRepositoryAssociationCommand.ts +++ b/clients/client-fsx/src/commands/CreateDataRepositoryAssociationCommand.ts @@ -168,6 +168,7 @@ export interface CreateDataRepositoryAssociationCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class CreateDataRepositoryAssociationCommand extends $Command diff --git a/clients/client-fsx/src/commands/CreateDataRepositoryTaskCommand.ts b/clients/client-fsx/src/commands/CreateDataRepositoryTaskCommand.ts index 96764f57a3d48..97404b3fd41e4 100644 --- a/clients/client-fsx/src/commands/CreateDataRepositoryTaskCommand.ts +++ b/clients/client-fsx/src/commands/CreateDataRepositoryTaskCommand.ts @@ -160,6 +160,7 @@ export interface CreateDataRepositoryTaskCommandOutput extends CreateDataReposit * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class CreateDataRepositoryTaskCommand extends $Command diff --git a/clients/client-fsx/src/commands/CreateFileCacheCommand.ts b/clients/client-fsx/src/commands/CreateFileCacheCommand.ts index d163290bc5f2c..4da35c5132da5 100644 --- a/clients/client-fsx/src/commands/CreateFileCacheCommand.ts +++ b/clients/client-fsx/src/commands/CreateFileCacheCommand.ts @@ -186,6 +186,7 @@ export interface CreateFileCacheCommandOutput extends CreateFileCacheResponse, _ * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class CreateFileCacheCommand extends $Command diff --git a/clients/client-fsx/src/commands/CreateFileSystemCommand.ts b/clients/client-fsx/src/commands/CreateFileSystemCommand.ts index ccd96ea9d1084..75cd2d226a547 100644 --- a/clients/client-fsx/src/commands/CreateFileSystemCommand.ts +++ b/clients/client-fsx/src/commands/CreateFileSystemCommand.ts @@ -856,82 +856,8 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse, * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* - * @public - * @example To create a new file system - * ```javascript - * // This operation creates a new Amazon FSx for Windows File Server file system. - * const input = { - * "ClientRequestToken": "a8ca07e4-61ec-4399-99f4-19853801bcd5", - * "FileSystemType": "WINDOWS", - * "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/1111abcd-2222-3333-4444-55556666eeff", - * "SecurityGroupIds": [ - * "sg-edcd9784" - * ], - * "StorageCapacity": 3200, - * "StorageType": "HDD", - * "SubnetIds": [ - * "subnet-1234abcd" - * ], - * "Tags": [ - * { - * "Key": "Name", - * "Value": "MyFileSystem" - * } - * ], - * "WindowsConfiguration": { - * "ActiveDirectoryId": "d-1234abcd12", - * "Aliases": [ - * "accounting.corp.example.com" - * ], - * "AutomaticBackupRetentionDays": 30, - * "DailyAutomaticBackupStartTime": "05:00", - * "ThroughputCapacity": 32, - * "WeeklyMaintenanceStartTime": "1:05:00" - * } - * }; - * const command = new CreateFileSystemCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "FileSystem": { - * "CreationTime": "1481841524.0", - * "DNSName": "fs-0123456789abcdef0.fsx.com", - * "FileSystemId": "fs-0123456789abcdef0", - * "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/1111abcd-2222-3333-4444-55556666eeff", - * "Lifecycle": "CREATING", - * "OwnerId": "012345678912", - * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0123456789abcdef0", - * "StorageCapacity": 3200, - * "StorageType": "HDD", - * "SubnetIds": [ - * "subnet-1234abcd" - * ], - * "Tags": [ - * { - * "Key": "Name", - * "Value": "MyFileSystem" - * } - * ], - * "VpcId": "vpc-ab1234cd", - * "WindowsConfiguration": { - * "ActiveDirectoryId": "d-1234abcd12", - * "Aliases": [ - * { - * "Lifecycle": "CREATING", - * "Name": "accounting.corp.example.com" - * } - * ], - * "AutomaticBackupRetentionDays": 30, - * "DailyAutomaticBackupStartTime": "05:00", - * "ThroughputCapacity": 32, - * "WeeklyMaintenanceStartTime": "1:05:00" - * } - * } - * } - * *\/ - * // example id: to-create-a-new-file-system-1481840798547 - * ``` * + * @public */ export class CreateFileSystemCommand extends $Command .classBuilder< diff --git a/clients/client-fsx/src/commands/CreateFileSystemFromBackupCommand.ts b/clients/client-fsx/src/commands/CreateFileSystemFromBackupCommand.ts index 95b6492ca10e2..33b13faa34d51 100644 --- a/clients/client-fsx/src/commands/CreateFileSystemFromBackupCommand.ts +++ b/clients/client-fsx/src/commands/CreateFileSystemFromBackupCommand.ts @@ -821,65 +821,8 @@ export interface CreateFileSystemFromBackupCommandOutput extends CreateFileSyste * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* - * @public - * @example To create a new file system from backup - * ```javascript - * // This operation creates a new file system from backup. - * const input = { - * "BackupId": "backup-03e3c82e0183b7b6b", - * "ClientRequestToken": "f4c94ed7-238d-4c46-93db-48cd62ec33b7", - * "SecurityGroupIds": [ - * "sg-edcd9784" - * ], - * "SubnetIds": [ - * "subnet-1234abcd" - * ], - * "Tags": [ - * { - * "Key": "Name", - * "Value": "MyFileSystem" - * } - * ], - * "WindowsConfiguration": { - * "ThroughputCapacity": 8 - * } - * }; - * const command = new CreateFileSystemFromBackupCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "FileSystem": { - * "CreationTime": "1481841524.0", - * "DNSName": "fs-0498eed5fe91001ec.fsx.com", - * "FileSystemId": "fs-0498eed5fe91001ec", - * "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/0ff3ea8d-130e-4133-877f-93908b6fdbd6", - * "Lifecycle": "CREATING", - * "OwnerId": "012345678912", - * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec", - * "StorageCapacity": 300, - * "SubnetIds": [ - * "subnet-1234abcd" - * ], - * "Tags": [ - * { - * "Key": "Name", - * "Value": "MyFileSystem" - * } - * ], - * "VpcId": "vpc-ab1234cd", - * "WindowsConfiguration": { - * "ActiveDirectoryId": "d-1234abcd12", - * "AutomaticBackupRetentionDays": 30, - * "DailyAutomaticBackupStartTime": "05:00", - * "ThroughputCapacity": 8, - * "WeeklyMaintenanceStartTime": "1:05:00" - * } - * } - * } - * *\/ - * // example id: to-create-a-new-file-system-from-backup-1481840798598 - * ``` * + * @public */ export class CreateFileSystemFromBackupCommand extends $Command .classBuilder< diff --git a/clients/client-fsx/src/commands/CreateSnapshotCommand.ts b/clients/client-fsx/src/commands/CreateSnapshotCommand.ts index b744f30c3049c..9db1e07e1c23e 100644 --- a/clients/client-fsx/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-fsx/src/commands/CreateSnapshotCommand.ts @@ -679,6 +679,7 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class CreateSnapshotCommand extends $Command diff --git a/clients/client-fsx/src/commands/CreateStorageVirtualMachineCommand.ts b/clients/client-fsx/src/commands/CreateStorageVirtualMachineCommand.ts index 5e0f2c288d770..4648499861066 100644 --- a/clients/client-fsx/src/commands/CreateStorageVirtualMachineCommand.ts +++ b/clients/client-fsx/src/commands/CreateStorageVirtualMachineCommand.ts @@ -165,6 +165,7 @@ export interface CreateStorageVirtualMachineCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class CreateStorageVirtualMachineCommand extends $Command diff --git a/clients/client-fsx/src/commands/CreateVolumeCommand.ts b/clients/client-fsx/src/commands/CreateVolumeCommand.ts index 8b8d19a82f3f6..dec816b5faf2a 100644 --- a/clients/client-fsx/src/commands/CreateVolumeCommand.ts +++ b/clients/client-fsx/src/commands/CreateVolumeCommand.ts @@ -740,6 +740,7 @@ export interface CreateVolumeCommandOutput extends CreateVolumeResponse, __Metad * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class CreateVolumeCommand extends $Command diff --git a/clients/client-fsx/src/commands/CreateVolumeFromBackupCommand.ts b/clients/client-fsx/src/commands/CreateVolumeFromBackupCommand.ts index 7e5082b0bb410..ed2d4deaed85e 100644 --- a/clients/client-fsx/src/commands/CreateVolumeFromBackupCommand.ts +++ b/clients/client-fsx/src/commands/CreateVolumeFromBackupCommand.ts @@ -713,6 +713,7 @@ export interface CreateVolumeFromBackupCommandOutput extends CreateVolumeFromBac * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class CreateVolumeFromBackupCommand extends $Command diff --git a/clients/client-fsx/src/commands/DeleteBackupCommand.ts b/clients/client-fsx/src/commands/DeleteBackupCommand.ts index 9662fe82abec1..58c9dae899a16 100644 --- a/clients/client-fsx/src/commands/DeleteBackupCommand.ts +++ b/clients/client-fsx/src/commands/DeleteBackupCommand.ts @@ -89,24 +89,24 @@ export interface DeleteBackupCommandOutput extends DeleteBackupResponse, __Metad * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* - * @public + * * @example To delete a backup * ```javascript * // This operation deletes an Amazon FSx file system backup. * const input = { - * "BackupId": "backup-03e3c82e0183b7b6b" + * BackupId: "backup-03e3c82e0183b7b6b" * }; * const command = new DeleteBackupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "BackupId": "backup-03e3c82e0183b7b6b", - * "Lifecycle": "DELETED" + * BackupId: "backup-03e3c82e0183b7b6b", + * Lifecycle: "DELETED" * } * *\/ - * // example id: to-delete-a-file-system-1481847318399 * ``` * + * @public */ export class DeleteBackupCommand extends $Command .classBuilder< diff --git a/clients/client-fsx/src/commands/DeleteDataRepositoryAssociationCommand.ts b/clients/client-fsx/src/commands/DeleteDataRepositoryAssociationCommand.ts index 40f56a9e3d670..23347fea4c6cd 100644 --- a/clients/client-fsx/src/commands/DeleteDataRepositoryAssociationCommand.ts +++ b/clients/client-fsx/src/commands/DeleteDataRepositoryAssociationCommand.ts @@ -88,6 +88,7 @@ export interface DeleteDataRepositoryAssociationCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class DeleteDataRepositoryAssociationCommand extends $Command diff --git a/clients/client-fsx/src/commands/DeleteFileCacheCommand.ts b/clients/client-fsx/src/commands/DeleteFileCacheCommand.ts index 05fc7992a6f63..003154a87328c 100644 --- a/clients/client-fsx/src/commands/DeleteFileCacheCommand.ts +++ b/clients/client-fsx/src/commands/DeleteFileCacheCommand.ts @@ -86,6 +86,7 @@ export interface DeleteFileCacheCommandOutput extends DeleteFileCacheResponse, _ * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class DeleteFileCacheCommand extends $Command diff --git a/clients/client-fsx/src/commands/DeleteFileSystemCommand.ts b/clients/client-fsx/src/commands/DeleteFileSystemCommand.ts index 5af8abba6e250..f51d73916ec4c 100644 --- a/clients/client-fsx/src/commands/DeleteFileSystemCommand.ts +++ b/clients/client-fsx/src/commands/DeleteFileSystemCommand.ts @@ -168,24 +168,24 @@ export interface DeleteFileSystemCommandOutput extends DeleteFileSystemResponse, * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* - * @public + * * @example To delete a file system * ```javascript * // This operation deletes an Amazon FSx file system. * const input = { - * "FileSystemId": "fs-0498eed5fe91001ec" + * FileSystemId: "fs-0498eed5fe91001ec" * }; * const command = new DeleteFileSystemCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FileSystemId": "fs-0498eed5fe91001ec", - * "Lifecycle": "DELETING" + * FileSystemId: "fs-0498eed5fe91001ec", + * Lifecycle: "DELETING" * } * *\/ - * // example id: to-delete-a-file-system-1481847318348 * ``` * + * @public */ export class DeleteFileSystemCommand extends $Command .classBuilder< diff --git a/clients/client-fsx/src/commands/DeleteSnapshotCommand.ts b/clients/client-fsx/src/commands/DeleteSnapshotCommand.ts index 51e7be4118597..0f63e3390a994 100644 --- a/clients/client-fsx/src/commands/DeleteSnapshotCommand.ts +++ b/clients/client-fsx/src/commands/DeleteSnapshotCommand.ts @@ -70,6 +70,7 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __M * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class DeleteSnapshotCommand extends $Command diff --git a/clients/client-fsx/src/commands/DeleteStorageVirtualMachineCommand.ts b/clients/client-fsx/src/commands/DeleteStorageVirtualMachineCommand.ts index 3e418776d4861..14ffc912b521b 100644 --- a/clients/client-fsx/src/commands/DeleteStorageVirtualMachineCommand.ts +++ b/clients/client-fsx/src/commands/DeleteStorageVirtualMachineCommand.ts @@ -74,6 +74,7 @@ export interface DeleteStorageVirtualMachineCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class DeleteStorageVirtualMachineCommand extends $Command diff --git a/clients/client-fsx/src/commands/DeleteVolumeCommand.ts b/clients/client-fsx/src/commands/DeleteVolumeCommand.ts index 4f28b3b4bea37..aaed977cdee02 100644 --- a/clients/client-fsx/src/commands/DeleteVolumeCommand.ts +++ b/clients/client-fsx/src/commands/DeleteVolumeCommand.ts @@ -100,6 +100,7 @@ export interface DeleteVolumeCommandOutput extends DeleteVolumeResponse, __Metad * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class DeleteVolumeCommand extends $Command diff --git a/clients/client-fsx/src/commands/DescribeBackupsCommand.ts b/clients/client-fsx/src/commands/DescribeBackupsCommand.ts index e004604082e4c..af74936610e48 100644 --- a/clients/client-fsx/src/commands/DescribeBackupsCommand.ts +++ b/clients/client-fsx/src/commands/DescribeBackupsCommand.ts @@ -712,46 +712,8 @@ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, _ * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* - * @public - * @example To describe Amazon FSx backups - * ```javascript - * // This operation describes all of the Amazon FSx backups in an account. - * const input = {}; - * const command = new DescribeBackupsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Backups": [ - * { - * "BackupId": "backup-03e3c82e0183b7b6b", - * "CreationTime": "1481841524.0", - * "FileSystem": { - * "FileSystemId": "fs-0498eed5fe91001ec", - * "OwnerId": "012345678912", - * "StorageCapacity": 300, - * "WindowsConfiguration": { - * "ActiveDirectoryId": "d-1234abcd12", - * "AutomaticBackupRetentionDays": 30, - * "DailyAutomaticBackupStartTime": "05:00", - * "WeeklyMaintenanceStartTime": "1:05:00" - * } - * }, - * "Lifecycle": "AVAILABLE", - * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:backup/backup-03e3c82e0183b7b6b", - * "Tags": [ - * { - * "Key": "Name", - * "Value": "MyBackup" - * } - * ], - * "Type": "USER_INITIATED" - * } - * ] - * } - * *\/ - * // example id: to-describe-backups-1481848448499 - * ``` * + * @public */ export class DescribeBackupsCommand extends $Command .classBuilder< diff --git a/clients/client-fsx/src/commands/DescribeDataRepositoryAssociationsCommand.ts b/clients/client-fsx/src/commands/DescribeDataRepositoryAssociationsCommand.ts index 449a0e22f470f..5874e137213d0 100644 --- a/clients/client-fsx/src/commands/DescribeDataRepositoryAssociationsCommand.ts +++ b/clients/client-fsx/src/commands/DescribeDataRepositoryAssociationsCommand.ts @@ -158,6 +158,7 @@ export interface DescribeDataRepositoryAssociationsCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class DescribeDataRepositoryAssociationsCommand extends $Command diff --git a/clients/client-fsx/src/commands/DescribeDataRepositoryTasksCommand.ts b/clients/client-fsx/src/commands/DescribeDataRepositoryTasksCommand.ts index 2d43ec6ef7f57..3b77805cff5be 100644 --- a/clients/client-fsx/src/commands/DescribeDataRepositoryTasksCommand.ts +++ b/clients/client-fsx/src/commands/DescribeDataRepositoryTasksCommand.ts @@ -135,6 +135,7 @@ export interface DescribeDataRepositoryTasksCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class DescribeDataRepositoryTasksCommand extends $Command diff --git a/clients/client-fsx/src/commands/DescribeFileCachesCommand.ts b/clients/client-fsx/src/commands/DescribeFileCachesCommand.ts index 2274d3b6b7f85..32952cfad3932 100644 --- a/clients/client-fsx/src/commands/DescribeFileCachesCommand.ts +++ b/clients/client-fsx/src/commands/DescribeFileCachesCommand.ts @@ -135,6 +135,7 @@ export interface DescribeFileCachesCommandOutput extends DescribeFileCachesRespo * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class DescribeFileCachesCommand extends $Command diff --git a/clients/client-fsx/src/commands/DescribeFileSystemAliasesCommand.ts b/clients/client-fsx/src/commands/DescribeFileSystemAliasesCommand.ts index 7771ae4696677..e1aa25b3072fa 100644 --- a/clients/client-fsx/src/commands/DescribeFileSystemAliasesCommand.ts +++ b/clients/client-fsx/src/commands/DescribeFileSystemAliasesCommand.ts @@ -75,6 +75,7 @@ export interface DescribeFileSystemAliasesCommandOutput extends DescribeFileSyst * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class DescribeFileSystemAliasesCommand extends $Command diff --git a/clients/client-fsx/src/commands/DescribeFileSystemsCommand.ts b/clients/client-fsx/src/commands/DescribeFileSystemsCommand.ts index 73f411f28c533..641ecdb9bf4c3 100644 --- a/clients/client-fsx/src/commands/DescribeFileSystemsCommand.ts +++ b/clients/client-fsx/src/commands/DescribeFileSystemsCommand.ts @@ -676,52 +676,8 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* - * @public - * @example To describe an Amazon FSx file system - * ```javascript - * // This operation describes all of the Amazon FSx file systems in an account. - * const input = {}; - * const command = new DescribeFileSystemsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "FileSystems": [ - * { - * "CreationTime": "1481841524.0", - * "DNSName": "fs-0498eed5fe91001ec.fsx.com", - * "FileSystemId": "fs-0498eed5fe91001ec", - * "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/0ff3ea8d-130e-4133-877f-93908b6fdbd6", - * "Lifecycle": "AVAILABLE", - * "NetworkInterfaceIds": [ - * "eni-abcd1234" - * ], - * "OwnerId": "012345678912", - * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec", - * "StorageCapacity": 300, - * "SubnetIds": [ - * "subnet-1234abcd" - * ], - * "Tags": [ - * { - * "Key": "Name", - * "Value": "MyFileSystem" - * } - * ], - * "VpcId": "vpc-ab1234cd", - * "WindowsConfiguration": { - * "ActiveDirectoryId": "d-1234abcd12", - * "AutomaticBackupRetentionDays": 30, - * "DailyAutomaticBackupStartTime": "05:00", - * "ThroughputCapacity": 8, - * "WeeklyMaintenanceStartTime": "1:05:00" - * } - * } - * ] - * } - * *\/ - * // example id: to-describe-a-file-systems-1481848448460 - * ``` * + * @public */ export class DescribeFileSystemsCommand extends $Command .classBuilder< diff --git a/clients/client-fsx/src/commands/DescribeSharedVpcConfigurationCommand.ts b/clients/client-fsx/src/commands/DescribeSharedVpcConfigurationCommand.ts index f2c9258351112..dead150f209a7 100644 --- a/clients/client-fsx/src/commands/DescribeSharedVpcConfigurationCommand.ts +++ b/clients/client-fsx/src/commands/DescribeSharedVpcConfigurationCommand.ts @@ -65,6 +65,7 @@ export interface DescribeSharedVpcConfigurationCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class DescribeSharedVpcConfigurationCommand extends $Command diff --git a/clients/client-fsx/src/commands/DescribeSnapshotsCommand.ts b/clients/client-fsx/src/commands/DescribeSnapshotsCommand.ts index 2bbdf028983c2..7d243fc807d17 100644 --- a/clients/client-fsx/src/commands/DescribeSnapshotsCommand.ts +++ b/clients/client-fsx/src/commands/DescribeSnapshotsCommand.ts @@ -682,6 +682,7 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsRespons * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class DescribeSnapshotsCommand extends $Command diff --git a/clients/client-fsx/src/commands/DescribeStorageVirtualMachinesCommand.ts b/clients/client-fsx/src/commands/DescribeStorageVirtualMachinesCommand.ts index eab9af1dcb4fd..5fc11acf92add 100644 --- a/clients/client-fsx/src/commands/DescribeStorageVirtualMachinesCommand.ts +++ b/clients/client-fsx/src/commands/DescribeStorageVirtualMachinesCommand.ts @@ -141,6 +141,7 @@ export interface DescribeStorageVirtualMachinesCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class DescribeStorageVirtualMachinesCommand extends $Command diff --git a/clients/client-fsx/src/commands/DescribeVolumesCommand.ts b/clients/client-fsx/src/commands/DescribeVolumesCommand.ts index 948b91446148c..30c5bd615ffde 100644 --- a/clients/client-fsx/src/commands/DescribeVolumesCommand.ts +++ b/clients/client-fsx/src/commands/DescribeVolumesCommand.ts @@ -656,6 +656,7 @@ export interface DescribeVolumesCommandOutput extends DescribeVolumesResponse, _ * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class DescribeVolumesCommand extends $Command diff --git a/clients/client-fsx/src/commands/DisassociateFileSystemAliasesCommand.ts b/clients/client-fsx/src/commands/DisassociateFileSystemAliasesCommand.ts index 61d09b674ced0..135c03d2a2c3b 100644 --- a/clients/client-fsx/src/commands/DisassociateFileSystemAliasesCommand.ts +++ b/clients/client-fsx/src/commands/DisassociateFileSystemAliasesCommand.ts @@ -86,6 +86,7 @@ export interface DisassociateFileSystemAliasesCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class DisassociateFileSystemAliasesCommand extends $Command diff --git a/clients/client-fsx/src/commands/ListTagsForResourceCommand.ts b/clients/client-fsx/src/commands/ListTagsForResourceCommand.ts index 7d8dfc4c90eda..ea8a1c014a378 100644 --- a/clients/client-fsx/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-fsx/src/commands/ListTagsForResourceCommand.ts @@ -102,28 +102,28 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* - * @public + * * @example To list tags for a resource * ```javascript * // This operation lists tags for an Amazon FSx resource. * const input = { - * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec" + * ResourceARN: "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Tags": [ + * Tags: [ * { - * "Key": "Name", - * "Value": "MyFileSystem" + * Key: "Name", + * Value: "MyFileSystem" * } * ] * } * *\/ - * // example id: to-list-tags-for-a-fsx-resource-1481847318372 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-fsx/src/commands/ReleaseFileSystemNfsV3LocksCommand.ts b/clients/client-fsx/src/commands/ReleaseFileSystemNfsV3LocksCommand.ts index e3a3b26c8b1c5..15186a81ab719 100644 --- a/clients/client-fsx/src/commands/ReleaseFileSystemNfsV3LocksCommand.ts +++ b/clients/client-fsx/src/commands/ReleaseFileSystemNfsV3LocksCommand.ts @@ -655,6 +655,7 @@ export interface ReleaseFileSystemNfsV3LocksCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class ReleaseFileSystemNfsV3LocksCommand extends $Command diff --git a/clients/client-fsx/src/commands/RestoreVolumeFromSnapshotCommand.ts b/clients/client-fsx/src/commands/RestoreVolumeFromSnapshotCommand.ts index c5bcb49c1f54e..8646ed96cbd0b 100644 --- a/clients/client-fsx/src/commands/RestoreVolumeFromSnapshotCommand.ts +++ b/clients/client-fsx/src/commands/RestoreVolumeFromSnapshotCommand.ts @@ -665,6 +665,7 @@ export interface RestoreVolumeFromSnapshotCommandOutput extends RestoreVolumeFro * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class RestoreVolumeFromSnapshotCommand extends $Command diff --git a/clients/client-fsx/src/commands/StartMisconfiguredStateRecoveryCommand.ts b/clients/client-fsx/src/commands/StartMisconfiguredStateRecoveryCommand.ts index cb8f4aaec6bc4..55474c4ef12f7 100644 --- a/clients/client-fsx/src/commands/StartMisconfiguredStateRecoveryCommand.ts +++ b/clients/client-fsx/src/commands/StartMisconfiguredStateRecoveryCommand.ts @@ -649,6 +649,7 @@ export interface StartMisconfiguredStateRecoveryCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class StartMisconfiguredStateRecoveryCommand extends $Command diff --git a/clients/client-fsx/src/commands/TagResourceCommand.ts b/clients/client-fsx/src/commands/TagResourceCommand.ts index 6abeb27a0bfd4..d8d66f035d45b 100644 --- a/clients/client-fsx/src/commands/TagResourceCommand.ts +++ b/clients/client-fsx/src/commands/TagResourceCommand.ts @@ -75,24 +75,27 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* - * @public + * * @example To tag a resource * ```javascript * // This operation tags an Amazon FSx resource. * const input = { - * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec", - * "Tags": [ + * ResourceARN: "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec", + * Tags: [ * { - * "Key": "Name", - * "Value": "MyFileSystem" + * Key: "Name", + * Value: "MyFileSystem" * } * ] * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: to-tag-a-fsx-resource-1481847318371 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-fsx/src/commands/UntagResourceCommand.ts b/clients/client-fsx/src/commands/UntagResourceCommand.ts index 51832be7b96ef..557cebca0ac40 100644 --- a/clients/client-fsx/src/commands/UntagResourceCommand.ts +++ b/clients/client-fsx/src/commands/UntagResourceCommand.ts @@ -72,21 +72,24 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* - * @public + * * @example To untag a resource * ```javascript * // This operation untags an Amazon FSx resource. * const input = { - * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec", - * "TagKeys": [ + * ResourceARN: "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec", + * TagKeys: [ * "Name" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: to-untag-a-fsx-resource-1481847318373 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-fsx/src/commands/UpdateDataRepositoryAssociationCommand.ts b/clients/client-fsx/src/commands/UpdateDataRepositoryAssociationCommand.ts index c7bd911638102..acfe30cc3b439 100644 --- a/clients/client-fsx/src/commands/UpdateDataRepositoryAssociationCommand.ts +++ b/clients/client-fsx/src/commands/UpdateDataRepositoryAssociationCommand.ts @@ -142,6 +142,7 @@ export interface UpdateDataRepositoryAssociationCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class UpdateDataRepositoryAssociationCommand extends $Command diff --git a/clients/client-fsx/src/commands/UpdateFileCacheCommand.ts b/clients/client-fsx/src/commands/UpdateFileCacheCommand.ts index 839dbcda003ee..ae1b58ba5b5c7 100644 --- a/clients/client-fsx/src/commands/UpdateFileCacheCommand.ts +++ b/clients/client-fsx/src/commands/UpdateFileCacheCommand.ts @@ -121,6 +121,7 @@ export interface UpdateFileCacheCommandOutput extends UpdateFileCacheResponse, _ * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class UpdateFileCacheCommand extends $Command diff --git a/clients/client-fsx/src/commands/UpdateFileSystemCommand.ts b/clients/client-fsx/src/commands/UpdateFileSystemCommand.ts index 1ae5c3205ab8d..e663204479c79 100644 --- a/clients/client-fsx/src/commands/UpdateFileSystemCommand.ts +++ b/clients/client-fsx/src/commands/UpdateFileSystemCommand.ts @@ -980,53 +980,8 @@ export interface UpdateFileSystemCommandOutput extends UpdateFileSystemResponse, * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* - * @public - * @example To update an existing file system - * ```javascript - * // This operation updates an existing file system. - * const input = { - * "FileSystemId": "fs-0498eed5fe91001ec", - * "WindowsConfiguration": { - * "AutomaticBackupRetentionDays": 10, - * "DailyAutomaticBackupStartTime": "06:00", - * "WeeklyMaintenanceStartTime": "3:06:00" - * } - * }; - * const command = new UpdateFileSystemCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "FileSystem": { - * "CreationTime": "1481841524.0", - * "DNSName": "fs-0498eed5fe91001ec.fsx.com", - * "FileSystemId": "fs-0498eed5fe91001ec", - * "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/0ff3ea8d-130e-4133-877f-93908b6fdbd6", - * "Lifecycle": "AVAILABLE", - * "OwnerId": "012345678912", - * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec", - * "StorageCapacity": 300, - * "SubnetIds": [ - * "subnet-1234abcd" - * ], - * "Tags": [ - * { - * "Key": "Name", - * "Value": "MyFileSystem" - * } - * ], - * "VpcId": "vpc-ab1234cd", - * "WindowsConfiguration": { - * "AutomaticBackupRetentionDays": 10, - * "DailyAutomaticBackupStartTime": "06:00", - * "ThroughputCapacity": 8, - * "WeeklyMaintenanceStartTime": "3:06:00" - * } - * } - * } - * *\/ - * // example id: to-update-a-file-system-1481840798595 - * ``` * + * @public */ export class UpdateFileSystemCommand extends $Command .classBuilder< diff --git a/clients/client-fsx/src/commands/UpdateSharedVpcConfigurationCommand.ts b/clients/client-fsx/src/commands/UpdateSharedVpcConfigurationCommand.ts index db6be31c428de..02bb85bad8110 100644 --- a/clients/client-fsx/src/commands/UpdateSharedVpcConfigurationCommand.ts +++ b/clients/client-fsx/src/commands/UpdateSharedVpcConfigurationCommand.ts @@ -81,6 +81,7 @@ export interface UpdateSharedVpcConfigurationCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class UpdateSharedVpcConfigurationCommand extends $Command diff --git a/clients/client-fsx/src/commands/UpdateSnapshotCommand.ts b/clients/client-fsx/src/commands/UpdateSnapshotCommand.ts index b0e717a827c9b..c2a695f41b531 100644 --- a/clients/client-fsx/src/commands/UpdateSnapshotCommand.ts +++ b/clients/client-fsx/src/commands/UpdateSnapshotCommand.ts @@ -642,6 +642,7 @@ export interface UpdateSnapshotCommandOutput extends UpdateSnapshotResponse, __M * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class UpdateSnapshotCommand extends $Command diff --git a/clients/client-fsx/src/commands/UpdateStorageVirtualMachineCommand.ts b/clients/client-fsx/src/commands/UpdateStorageVirtualMachineCommand.ts index 6ab4f2fdc3027..0333de6e3deb5 100644 --- a/clients/client-fsx/src/commands/UpdateStorageVirtualMachineCommand.ts +++ b/clients/client-fsx/src/commands/UpdateStorageVirtualMachineCommand.ts @@ -150,6 +150,7 @@ export interface UpdateStorageVirtualMachineCommandOutput * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class UpdateStorageVirtualMachineCommand extends $Command diff --git a/clients/client-fsx/src/commands/UpdateVolumeCommand.ts b/clients/client-fsx/src/commands/UpdateVolumeCommand.ts index f4bef2ef35a52..9ebcc6e87234f 100644 --- a/clients/client-fsx/src/commands/UpdateVolumeCommand.ts +++ b/clients/client-fsx/src/commands/UpdateVolumeCommand.ts @@ -708,6 +708,7 @@ export interface UpdateVolumeCommandOutput extends UpdateVolumeResponse, __Metad * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* + * * @public */ export class UpdateVolumeCommand extends $Command diff --git a/clients/client-gamelift/src/commands/AcceptMatchCommand.ts b/clients/client-gamelift/src/commands/AcceptMatchCommand.ts index 7f29ffb18a5cf..2a32a0c2d6031 100644 --- a/clients/client-gamelift/src/commands/AcceptMatchCommand.ts +++ b/clients/client-gamelift/src/commands/AcceptMatchCommand.ts @@ -105,6 +105,7 @@ export interface AcceptMatchCommandOutput extends AcceptMatchOutput, __MetadataB * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class AcceptMatchCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ClaimGameServerCommand.ts b/clients/client-gamelift/src/commands/ClaimGameServerCommand.ts index 0624fd80c84ba..b210a36da4e03 100644 --- a/clients/client-gamelift/src/commands/ClaimGameServerCommand.ts +++ b/clients/client-gamelift/src/commands/ClaimGameServerCommand.ts @@ -141,6 +141,7 @@ export interface ClaimGameServerCommandOutput extends ClaimGameServerOutput, __M * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ClaimGameServerCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateAliasCommand.ts b/clients/client-gamelift/src/commands/CreateAliasCommand.ts index 2072fa399bdfb..6f97fd8435424 100644 --- a/clients/client-gamelift/src/commands/CreateAliasCommand.ts +++ b/clients/client-gamelift/src/commands/CreateAliasCommand.ts @@ -124,6 +124,7 @@ export interface CreateAliasCommandOutput extends CreateAliasOutput, __MetadataB * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateAliasCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateBuildCommand.ts b/clients/client-gamelift/src/commands/CreateBuildCommand.ts index d80438194a68d..2bd2019367ca1 100644 --- a/clients/client-gamelift/src/commands/CreateBuildCommand.ts +++ b/clients/client-gamelift/src/commands/CreateBuildCommand.ts @@ -155,6 +155,7 @@ export interface CreateBuildCommandOutput extends CreateBuildOutput, __MetadataB * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateBuildCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateContainerFleetCommand.ts b/clients/client-gamelift/src/commands/CreateContainerFleetCommand.ts index 5a3e565443eef..00597c7cf7c57 100644 --- a/clients/client-gamelift/src/commands/CreateContainerFleetCommand.ts +++ b/clients/client-gamelift/src/commands/CreateContainerFleetCommand.ts @@ -272,6 +272,7 @@ export interface CreateContainerFleetCommandOutput extends CreateContainerFleetO * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateContainerFleetCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateContainerGroupDefinitionCommand.ts b/clients/client-gamelift/src/commands/CreateContainerGroupDefinitionCommand.ts index d8c6570c0be4b..9c8a8ac23fc36 100644 --- a/clients/client-gamelift/src/commands/CreateContainerGroupDefinitionCommand.ts +++ b/clients/client-gamelift/src/commands/CreateContainerGroupDefinitionCommand.ts @@ -427,6 +427,7 @@ export interface CreateContainerGroupDefinitionCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateContainerGroupDefinitionCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateFleetCommand.ts b/clients/client-gamelift/src/commands/CreateFleetCommand.ts index 766c3fb0f225e..272fe86a23321 100644 --- a/clients/client-gamelift/src/commands/CreateFleetCommand.ts +++ b/clients/client-gamelift/src/commands/CreateFleetCommand.ts @@ -288,6 +288,7 @@ export interface CreateFleetCommandOutput extends CreateFleetOutput, __MetadataB * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateFleetCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateFleetLocationsCommand.ts b/clients/client-gamelift/src/commands/CreateFleetLocationsCommand.ts index 413eb51a03812..64b33b5922485 100644 --- a/clients/client-gamelift/src/commands/CreateFleetLocationsCommand.ts +++ b/clients/client-gamelift/src/commands/CreateFleetLocationsCommand.ts @@ -130,6 +130,7 @@ export interface CreateFleetLocationsCommandOutput extends CreateFleetLocationsO * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateFleetLocationsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateGameServerGroupCommand.ts b/clients/client-gamelift/src/commands/CreateGameServerGroupCommand.ts index ddb1a2383d912..2fb1b6506d71c 100644 --- a/clients/client-gamelift/src/commands/CreateGameServerGroupCommand.ts +++ b/clients/client-gamelift/src/commands/CreateGameServerGroupCommand.ts @@ -168,6 +168,7 @@ export interface CreateGameServerGroupCommandOutput extends CreateGameServerGrou * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateGameServerGroupCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateGameSessionCommand.ts b/clients/client-gamelift/src/commands/CreateGameSessionCommand.ts index cb37dccdf25c8..0af4d8684db66 100644 --- a/clients/client-gamelift/src/commands/CreateGameSessionCommand.ts +++ b/clients/client-gamelift/src/commands/CreateGameSessionCommand.ts @@ -188,6 +188,7 @@ export interface CreateGameSessionCommandOutput extends CreateGameSessionOutput, * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateGameSessionCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateGameSessionQueueCommand.ts b/clients/client-gamelift/src/commands/CreateGameSessionQueueCommand.ts index 828bd05821ba5..b138b1f35aaaf 100644 --- a/clients/client-gamelift/src/commands/CreateGameSessionQueueCommand.ts +++ b/clients/client-gamelift/src/commands/CreateGameSessionQueueCommand.ts @@ -186,6 +186,7 @@ export interface CreateGameSessionQueueCommandOutput extends CreateGameSessionQu * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateGameSessionQueueCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateLocationCommand.ts b/clients/client-gamelift/src/commands/CreateLocationCommand.ts index 272bb4894c3b9..6faf41f8fec94 100644 --- a/clients/client-gamelift/src/commands/CreateLocationCommand.ts +++ b/clients/client-gamelift/src/commands/CreateLocationCommand.ts @@ -90,6 +90,7 @@ export interface CreateLocationCommandOutput extends CreateLocationOutput, __Met * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateLocationCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateMatchmakingConfigurationCommand.ts b/clients/client-gamelift/src/commands/CreateMatchmakingConfigurationCommand.ts index 2cc75cbc3c838..f1cd6fbf54ca8 100644 --- a/clients/client-gamelift/src/commands/CreateMatchmakingConfigurationCommand.ts +++ b/clients/client-gamelift/src/commands/CreateMatchmakingConfigurationCommand.ts @@ -159,6 +159,7 @@ export interface CreateMatchmakingConfigurationCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateMatchmakingConfigurationCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateMatchmakingRuleSetCommand.ts b/clients/client-gamelift/src/commands/CreateMatchmakingRuleSetCommand.ts index b4639671f6c80..64da6531d784f 100644 --- a/clients/client-gamelift/src/commands/CreateMatchmakingRuleSetCommand.ts +++ b/clients/client-gamelift/src/commands/CreateMatchmakingRuleSetCommand.ts @@ -117,6 +117,7 @@ export interface CreateMatchmakingRuleSetCommandOutput extends CreateMatchmaking * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateMatchmakingRuleSetCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreatePlayerSessionCommand.ts b/clients/client-gamelift/src/commands/CreatePlayerSessionCommand.ts index af2996c183c66..a596c39283fb4 100644 --- a/clients/client-gamelift/src/commands/CreatePlayerSessionCommand.ts +++ b/clients/client-gamelift/src/commands/CreatePlayerSessionCommand.ts @@ -121,6 +121,7 @@ export interface CreatePlayerSessionCommandOutput extends CreatePlayerSessionOut * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreatePlayerSessionCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreatePlayerSessionsCommand.ts b/clients/client-gamelift/src/commands/CreatePlayerSessionsCommand.ts index edad3eb4d7648..3bd5530368a89 100644 --- a/clients/client-gamelift/src/commands/CreatePlayerSessionsCommand.ts +++ b/clients/client-gamelift/src/commands/CreatePlayerSessionsCommand.ts @@ -128,6 +128,7 @@ export interface CreatePlayerSessionsCommandOutput extends CreatePlayerSessionsO * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreatePlayerSessionsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateScriptCommand.ts b/clients/client-gamelift/src/commands/CreateScriptCommand.ts index 815acd20563e9..dede037547bfc 100644 --- a/clients/client-gamelift/src/commands/CreateScriptCommand.ts +++ b/clients/client-gamelift/src/commands/CreateScriptCommand.ts @@ -142,6 +142,7 @@ export interface CreateScriptCommandOutput extends CreateScriptOutput, __Metadat * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateScriptCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateVpcPeeringAuthorizationCommand.ts b/clients/client-gamelift/src/commands/CreateVpcPeeringAuthorizationCommand.ts index 0dd74e831589d..f584fbaf0e53b 100644 --- a/clients/client-gamelift/src/commands/CreateVpcPeeringAuthorizationCommand.ts +++ b/clients/client-gamelift/src/commands/CreateVpcPeeringAuthorizationCommand.ts @@ -107,6 +107,7 @@ export interface CreateVpcPeeringAuthorizationCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateVpcPeeringAuthorizationCommand extends $Command diff --git a/clients/client-gamelift/src/commands/CreateVpcPeeringConnectionCommand.ts b/clients/client-gamelift/src/commands/CreateVpcPeeringConnectionCommand.ts index fde4e9411318e..75b1651afe3f2 100644 --- a/clients/client-gamelift/src/commands/CreateVpcPeeringConnectionCommand.ts +++ b/clients/client-gamelift/src/commands/CreateVpcPeeringConnectionCommand.ts @@ -92,6 +92,7 @@ export interface CreateVpcPeeringConnectionCommandOutput extends CreateVpcPeerin * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class CreateVpcPeeringConnectionCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteAliasCommand.ts b/clients/client-gamelift/src/commands/DeleteAliasCommand.ts index a5dbb999afc3d..3f242bc46bbdf 100644 --- a/clients/client-gamelift/src/commands/DeleteAliasCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteAliasCommand.ts @@ -80,6 +80,7 @@ export interface DeleteAliasCommandOutput extends __MetadataBearer {} * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteAliasCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteBuildCommand.ts b/clients/client-gamelift/src/commands/DeleteBuildCommand.ts index f200e3e144742..339bded770c1b 100644 --- a/clients/client-gamelift/src/commands/DeleteBuildCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteBuildCommand.ts @@ -85,6 +85,7 @@ export interface DeleteBuildCommandOutput extends __MetadataBearer {} * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteBuildCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteContainerFleetCommand.ts b/clients/client-gamelift/src/commands/DeleteContainerFleetCommand.ts index 22fe1ad9acd99..f52e22244164b 100644 --- a/clients/client-gamelift/src/commands/DeleteContainerFleetCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteContainerFleetCommand.ts @@ -86,6 +86,7 @@ export interface DeleteContainerFleetCommandOutput extends DeleteContainerFleetO * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteContainerFleetCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteContainerGroupDefinitionCommand.ts b/clients/client-gamelift/src/commands/DeleteContainerGroupDefinitionCommand.ts index ed55bbfdf0872..411e85eeab019 100644 --- a/clients/client-gamelift/src/commands/DeleteContainerGroupDefinitionCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteContainerGroupDefinitionCommand.ts @@ -127,6 +127,7 @@ export interface DeleteContainerGroupDefinitionCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteContainerGroupDefinitionCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteFleetCommand.ts b/clients/client-gamelift/src/commands/DeleteFleetCommand.ts index 78feb10656491..68ca663e93bad 100644 --- a/clients/client-gamelift/src/commands/DeleteFleetCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteFleetCommand.ts @@ -94,6 +94,7 @@ export interface DeleteFleetCommandOutput extends __MetadataBearer {} * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteFleetCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteFleetLocationsCommand.ts b/clients/client-gamelift/src/commands/DeleteFleetLocationsCommand.ts index 6f7487009ccf0..c1d25de9a5bf5 100644 --- a/clients/client-gamelift/src/commands/DeleteFleetLocationsCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteFleetLocationsCommand.ts @@ -95,6 +95,7 @@ export interface DeleteFleetLocationsCommandOutput extends DeleteFleetLocationsO * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteFleetLocationsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteGameServerGroupCommand.ts b/clients/client-gamelift/src/commands/DeleteGameServerGroupCommand.ts index 26ecf56a94a9b..541dbabf89743 100644 --- a/clients/client-gamelift/src/commands/DeleteGameServerGroupCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteGameServerGroupCommand.ts @@ -124,6 +124,7 @@ export interface DeleteGameServerGroupCommandOutput extends DeleteGameServerGrou * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteGameServerGroupCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteGameSessionQueueCommand.ts b/clients/client-gamelift/src/commands/DeleteGameSessionQueueCommand.ts index 66e04efb7b7c9..858d1af454531 100644 --- a/clients/client-gamelift/src/commands/DeleteGameSessionQueueCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteGameSessionQueueCommand.ts @@ -73,6 +73,7 @@ export interface DeleteGameSessionQueueCommandOutput extends DeleteGameSessionQu * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteGameSessionQueueCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteLocationCommand.ts b/clients/client-gamelift/src/commands/DeleteLocationCommand.ts index ddf17244d1872..9fa166cc841ed 100644 --- a/clients/client-gamelift/src/commands/DeleteLocationCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteLocationCommand.ts @@ -69,6 +69,7 @@ export interface DeleteLocationCommandOutput extends DeleteLocationOutput, __Met * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteLocationCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteMatchmakingConfigurationCommand.ts b/clients/client-gamelift/src/commands/DeleteMatchmakingConfigurationCommand.ts index 74e03e31a0071..8ff1fd4c658b6 100644 --- a/clients/client-gamelift/src/commands/DeleteMatchmakingConfigurationCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteMatchmakingConfigurationCommand.ts @@ -79,6 +79,7 @@ export interface DeleteMatchmakingConfigurationCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteMatchmakingConfigurationCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteMatchmakingRuleSetCommand.ts b/clients/client-gamelift/src/commands/DeleteMatchmakingRuleSetCommand.ts index 23be0c6243098..208449c5eb1e0 100644 --- a/clients/client-gamelift/src/commands/DeleteMatchmakingRuleSetCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteMatchmakingRuleSetCommand.ts @@ -85,6 +85,7 @@ export interface DeleteMatchmakingRuleSetCommandOutput extends DeleteMatchmaking * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteMatchmakingRuleSetCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteScalingPolicyCommand.ts b/clients/client-gamelift/src/commands/DeleteScalingPolicyCommand.ts index 0b76174a30406..b78e1fbad61f5 100644 --- a/clients/client-gamelift/src/commands/DeleteScalingPolicyCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteScalingPolicyCommand.ts @@ -75,6 +75,7 @@ export interface DeleteScalingPolicyCommandOutput extends __MetadataBearer {} * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteScalingPolicyCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteScriptCommand.ts b/clients/client-gamelift/src/commands/DeleteScriptCommand.ts index 27e6ec952f2c5..036e8af0340c2 100644 --- a/clients/client-gamelift/src/commands/DeleteScriptCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteScriptCommand.ts @@ -90,6 +90,7 @@ export interface DeleteScriptCommandOutput extends __MetadataBearer {} * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteScriptCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteVpcPeeringAuthorizationCommand.ts b/clients/client-gamelift/src/commands/DeleteVpcPeeringAuthorizationCommand.ts index e4fdda24f9991..d3166fa595206 100644 --- a/clients/client-gamelift/src/commands/DeleteVpcPeeringAuthorizationCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteVpcPeeringAuthorizationCommand.ts @@ -80,6 +80,7 @@ export interface DeleteVpcPeeringAuthorizationCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteVpcPeeringAuthorizationCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeleteVpcPeeringConnectionCommand.ts b/clients/client-gamelift/src/commands/DeleteVpcPeeringConnectionCommand.ts index 8d3e63463fd73..3664a7923773b 100644 --- a/clients/client-gamelift/src/commands/DeleteVpcPeeringConnectionCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteVpcPeeringConnectionCommand.ts @@ -78,6 +78,7 @@ export interface DeleteVpcPeeringConnectionCommandOutput extends DeleteVpcPeerin * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeleteVpcPeeringConnectionCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeregisterComputeCommand.ts b/clients/client-gamelift/src/commands/DeregisterComputeCommand.ts index b9ea468bdd2dd..111e66effabf9 100644 --- a/clients/client-gamelift/src/commands/DeregisterComputeCommand.ts +++ b/clients/client-gamelift/src/commands/DeregisterComputeCommand.ts @@ -74,6 +74,7 @@ export interface DeregisterComputeCommandOutput extends DeregisterComputeOutput, * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeregisterComputeCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DeregisterGameServerCommand.ts b/clients/client-gamelift/src/commands/DeregisterGameServerCommand.ts index 8033209df9d4b..dbfd9e159e7df 100644 --- a/clients/client-gamelift/src/commands/DeregisterGameServerCommand.ts +++ b/clients/client-gamelift/src/commands/DeregisterGameServerCommand.ts @@ -83,6 +83,7 @@ export interface DeregisterGameServerCommandOutput extends __MetadataBearer {} * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DeregisterGameServerCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeAliasCommand.ts b/clients/client-gamelift/src/commands/DescribeAliasCommand.ts index 1bbec477184b9..436264625bf6d 100644 --- a/clients/client-gamelift/src/commands/DescribeAliasCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeAliasCommand.ts @@ -90,6 +90,7 @@ export interface DescribeAliasCommandOutput extends DescribeAliasOutput, __Metad * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeAliasCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeBuildCommand.ts b/clients/client-gamelift/src/commands/DescribeBuildCommand.ts index 3b80df9a96e6c..6844d0834d6b2 100644 --- a/clients/client-gamelift/src/commands/DescribeBuildCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeBuildCommand.ts @@ -90,6 +90,7 @@ export interface DescribeBuildCommandOutput extends DescribeBuildOutput, __Metad * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeBuildCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeComputeCommand.ts b/clients/client-gamelift/src/commands/DescribeComputeCommand.ts index 6584814451344..63c52ef3b629d 100644 --- a/clients/client-gamelift/src/commands/DescribeComputeCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeComputeCommand.ts @@ -114,6 +114,7 @@ export interface DescribeComputeCommandOutput extends DescribeComputeOutput, __M * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeComputeCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeContainerFleetCommand.ts b/clients/client-gamelift/src/commands/DescribeContainerFleetCommand.ts index 10e7115b799bd..480a961771aeb 100644 --- a/clients/client-gamelift/src/commands/DescribeContainerFleetCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeContainerFleetCommand.ts @@ -145,6 +145,7 @@ export interface DescribeContainerFleetCommandOutput extends DescribeContainerFl * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeContainerFleetCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeContainerGroupDefinitionCommand.ts b/clients/client-gamelift/src/commands/DescribeContainerGroupDefinitionCommand.ts index e9bda1bf9c923..14e82b935436b 100644 --- a/clients/client-gamelift/src/commands/DescribeContainerGroupDefinitionCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeContainerGroupDefinitionCommand.ts @@ -204,6 +204,7 @@ export interface DescribeContainerGroupDefinitionCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeContainerGroupDefinitionCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeEC2InstanceLimitsCommand.ts b/clients/client-gamelift/src/commands/DescribeEC2InstanceLimitsCommand.ts index 6628214802b3e..e7a118e541cad 100644 --- a/clients/client-gamelift/src/commands/DescribeEC2InstanceLimitsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeEC2InstanceLimitsCommand.ts @@ -131,6 +131,7 @@ export interface DescribeEC2InstanceLimitsCommandOutput extends DescribeEC2Insta * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeEC2InstanceLimitsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeFleetAttributesCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetAttributesCommand.ts index d1b402013e1a4..cefae8732b11f 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetAttributesCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetAttributesCommand.ts @@ -142,6 +142,7 @@ export interface DescribeFleetAttributesCommandOutput extends DescribeFleetAttri * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeFleetAttributesCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeFleetCapacityCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetCapacityCommand.ts index b49fc7d480ea9..ed670d137e919 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetCapacityCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetCapacityCommand.ts @@ -135,6 +135,7 @@ export interface DescribeFleetCapacityCommandOutput extends DescribeFleetCapacit * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeFleetCapacityCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeFleetDeploymentCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetDeploymentCommand.ts index ef81ab4f5c2b0..4155a690d2dae 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetDeploymentCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetDeploymentCommand.ts @@ -109,6 +109,7 @@ export interface DescribeFleetDeploymentCommandOutput extends DescribeFleetDeplo * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeFleetDeploymentCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeFleetEventsCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetEventsCommand.ts index 44f72aa4cc874..4dcd2d93e4d81 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetEventsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetEventsCommand.ts @@ -101,6 +101,7 @@ export interface DescribeFleetEventsCommandOutput extends DescribeFleetEventsOut * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeFleetEventsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeFleetLocationAttributesCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetLocationAttributesCommand.ts index 1bd66a036e8c7..764707158d2f1 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetLocationAttributesCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetLocationAttributesCommand.ts @@ -124,6 +124,7 @@ export interface DescribeFleetLocationAttributesCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeFleetLocationAttributesCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeFleetLocationCapacityCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetLocationCapacityCommand.ts index 88d200e198fb3..c5b6942bdfb09 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetLocationCapacityCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetLocationCapacityCommand.ts @@ -119,6 +119,7 @@ export interface DescribeFleetLocationCapacityCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeFleetLocationCapacityCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeFleetLocationUtilizationCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetLocationUtilizationCommand.ts index 23638c6f92e8b..3aa8d9238f905 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetLocationUtilizationCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetLocationUtilizationCommand.ts @@ -105,6 +105,7 @@ export interface DescribeFleetLocationUtilizationCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeFleetLocationUtilizationCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeFleetPortSettingsCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetPortSettingsCommand.ts index 541036b2421d4..50cb510bcc540 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetPortSettingsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetPortSettingsCommand.ts @@ -113,6 +113,7 @@ export interface DescribeFleetPortSettingsCommandOutput extends DescribeFleetPor * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeFleetPortSettingsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeFleetUtilizationCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetUtilizationCommand.ts index 94cd97a9f19a0..dff2628cbce86 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetUtilizationCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetUtilizationCommand.ts @@ -119,6 +119,7 @@ export interface DescribeFleetUtilizationCommandOutput extends DescribeFleetUtil * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeFleetUtilizationCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeGameServerCommand.ts b/clients/client-gamelift/src/commands/DescribeGameServerCommand.ts index c4773cf4c6833..ba687a8710af2 100644 --- a/clients/client-gamelift/src/commands/DescribeGameServerCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeGameServerCommand.ts @@ -96,6 +96,7 @@ export interface DescribeGameServerCommandOutput extends DescribeGameServerOutpu * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeGameServerCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeGameServerGroupCommand.ts b/clients/client-gamelift/src/commands/DescribeGameServerGroupCommand.ts index 5abd2a2b17520..0ac75d9d1c206 100644 --- a/clients/client-gamelift/src/commands/DescribeGameServerGroupCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeGameServerGroupCommand.ts @@ -105,6 +105,7 @@ export interface DescribeGameServerGroupCommandOutput extends DescribeGameServer * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeGameServerGroupCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeGameServerInstancesCommand.ts b/clients/client-gamelift/src/commands/DescribeGameServerInstancesCommand.ts index 77d267b4f0716..ef39006dcd117 100644 --- a/clients/client-gamelift/src/commands/DescribeGameServerInstancesCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeGameServerInstancesCommand.ts @@ -104,6 +104,7 @@ export interface DescribeGameServerInstancesCommandOutput extends DescribeGameSe * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeGameServerInstancesCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeGameSessionDetailsCommand.ts b/clients/client-gamelift/src/commands/DescribeGameSessionDetailsCommand.ts index 5b0babf46b8df..58317bf274009 100644 --- a/clients/client-gamelift/src/commands/DescribeGameSessionDetailsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeGameSessionDetailsCommand.ts @@ -153,6 +153,7 @@ export interface DescribeGameSessionDetailsCommandOutput extends DescribeGameSes * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeGameSessionDetailsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeGameSessionPlacementCommand.ts b/clients/client-gamelift/src/commands/DescribeGameSessionPlacementCommand.ts index 57321d65b3408..48a436fd840bb 100644 --- a/clients/client-gamelift/src/commands/DescribeGameSessionPlacementCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeGameSessionPlacementCommand.ts @@ -126,6 +126,7 @@ export interface DescribeGameSessionPlacementCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeGameSessionPlacementCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeGameSessionQueuesCommand.ts b/clients/client-gamelift/src/commands/DescribeGameSessionQueuesCommand.ts index c126ceb128821..234406d8d2ff8 100644 --- a/clients/client-gamelift/src/commands/DescribeGameSessionQueuesCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeGameSessionQueuesCommand.ts @@ -116,6 +116,7 @@ export interface DescribeGameSessionQueuesCommandOutput extends DescribeGameSess * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeGameSessionQueuesCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeGameSessionsCommand.ts b/clients/client-gamelift/src/commands/DescribeGameSessionsCommand.ts index f25273401ea11..16fe0f98b8667 100644 --- a/clients/client-gamelift/src/commands/DescribeGameSessionsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeGameSessionsCommand.ts @@ -157,6 +157,7 @@ export interface DescribeGameSessionsCommandOutput extends DescribeGameSessionsO * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeGameSessionsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeInstancesCommand.ts b/clients/client-gamelift/src/commands/DescribeInstancesCommand.ts index a4ab4fe2b0c03..9cea4f7d5927d 100644 --- a/clients/client-gamelift/src/commands/DescribeInstancesCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeInstancesCommand.ts @@ -134,6 +134,7 @@ export interface DescribeInstancesCommandOutput extends DescribeInstancesOutput, * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeInstancesCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeMatchmakingCommand.ts b/clients/client-gamelift/src/commands/DescribeMatchmakingCommand.ts index 488b11ac5eed4..6ab258363e60b 100644 --- a/clients/client-gamelift/src/commands/DescribeMatchmakingCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeMatchmakingCommand.ts @@ -138,6 +138,7 @@ export interface DescribeMatchmakingCommandOutput extends DescribeMatchmakingOut * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeMatchmakingCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeMatchmakingConfigurationsCommand.ts b/clients/client-gamelift/src/commands/DescribeMatchmakingConfigurationsCommand.ts index 8251d96e25037..e2d9d06217345 100644 --- a/clients/client-gamelift/src/commands/DescribeMatchmakingConfigurationsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeMatchmakingConfigurationsCommand.ts @@ -116,6 +116,7 @@ export interface DescribeMatchmakingConfigurationsCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeMatchmakingConfigurationsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeMatchmakingRuleSetsCommand.ts b/clients/client-gamelift/src/commands/DescribeMatchmakingRuleSetsCommand.ts index da35f07970450..4b1cb16912cd5 100644 --- a/clients/client-gamelift/src/commands/DescribeMatchmakingRuleSetsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeMatchmakingRuleSetsCommand.ts @@ -95,6 +95,7 @@ export interface DescribeMatchmakingRuleSetsCommandOutput extends DescribeMatchm * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeMatchmakingRuleSetsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribePlayerSessionsCommand.ts b/clients/client-gamelift/src/commands/DescribePlayerSessionsCommand.ts index fdc752275eac9..539ddbc0a8de8 100644 --- a/clients/client-gamelift/src/commands/DescribePlayerSessionsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribePlayerSessionsCommand.ts @@ -122,6 +122,7 @@ export interface DescribePlayerSessionsCommandOutput extends DescribePlayerSessi * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribePlayerSessionsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeRuntimeConfigurationCommand.ts b/clients/client-gamelift/src/commands/DescribeRuntimeConfigurationCommand.ts index e92233841a46e..43f4fd78dfa99 100644 --- a/clients/client-gamelift/src/commands/DescribeRuntimeConfigurationCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeRuntimeConfigurationCommand.ts @@ -104,6 +104,7 @@ export interface DescribeRuntimeConfigurationCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeRuntimeConfigurationCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeScalingPoliciesCommand.ts b/clients/client-gamelift/src/commands/DescribeScalingPoliciesCommand.ts index 6c1278f03ea05..9112d4313640d 100644 --- a/clients/client-gamelift/src/commands/DescribeScalingPoliciesCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeScalingPoliciesCommand.ts @@ -102,6 +102,7 @@ export interface DescribeScalingPoliciesCommandOutput extends DescribeScalingPol * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeScalingPoliciesCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeScriptCommand.ts b/clients/client-gamelift/src/commands/DescribeScriptCommand.ts index e9104c36f328f..ea79f485306fb 100644 --- a/clients/client-gamelift/src/commands/DescribeScriptCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeScriptCommand.ts @@ -96,6 +96,7 @@ export interface DescribeScriptCommandOutput extends DescribeScriptOutput, __Met * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeScriptCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeVpcPeeringAuthorizationsCommand.ts b/clients/client-gamelift/src/commands/DescribeVpcPeeringAuthorizationsCommand.ts index 87e7b2d61322f..0c3448856e7d1 100644 --- a/clients/client-gamelift/src/commands/DescribeVpcPeeringAuthorizationsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeVpcPeeringAuthorizationsCommand.ts @@ -85,6 +85,7 @@ export interface DescribeVpcPeeringAuthorizationsCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeVpcPeeringAuthorizationsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/DescribeVpcPeeringConnectionsCommand.ts b/clients/client-gamelift/src/commands/DescribeVpcPeeringConnectionsCommand.ts index 5aa363b2cfb75..b8320315cf9a7 100644 --- a/clients/client-gamelift/src/commands/DescribeVpcPeeringConnectionsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeVpcPeeringConnectionsCommand.ts @@ -99,6 +99,7 @@ export interface DescribeVpcPeeringConnectionsCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class DescribeVpcPeeringConnectionsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/GetComputeAccessCommand.ts b/clients/client-gamelift/src/commands/GetComputeAccessCommand.ts index f36bd7d27a96b..d855c57aa12af 100644 --- a/clients/client-gamelift/src/commands/GetComputeAccessCommand.ts +++ b/clients/client-gamelift/src/commands/GetComputeAccessCommand.ts @@ -110,6 +110,7 @@ export interface GetComputeAccessCommandOutput extends GetComputeAccessOutput, _ * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class GetComputeAccessCommand extends $Command diff --git a/clients/client-gamelift/src/commands/GetComputeAuthTokenCommand.ts b/clients/client-gamelift/src/commands/GetComputeAuthTokenCommand.ts index 08adac2c6b401..29c54aa0957e6 100644 --- a/clients/client-gamelift/src/commands/GetComputeAuthTokenCommand.ts +++ b/clients/client-gamelift/src/commands/GetComputeAuthTokenCommand.ts @@ -121,6 +121,7 @@ export interface GetComputeAuthTokenCommandOutput extends GetComputeAuthTokenOut * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class GetComputeAuthTokenCommand extends $Command diff --git a/clients/client-gamelift/src/commands/GetGameSessionLogUrlCommand.ts b/clients/client-gamelift/src/commands/GetGameSessionLogUrlCommand.ts index f8479b16a5428..cf521f6913d63 100644 --- a/clients/client-gamelift/src/commands/GetGameSessionLogUrlCommand.ts +++ b/clients/client-gamelift/src/commands/GetGameSessionLogUrlCommand.ts @@ -79,6 +79,7 @@ export interface GetGameSessionLogUrlCommandOutput extends GetGameSessionLogUrlO * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class GetGameSessionLogUrlCommand extends $Command diff --git a/clients/client-gamelift/src/commands/GetInstanceAccessCommand.ts b/clients/client-gamelift/src/commands/GetInstanceAccessCommand.ts index 32854896c46aa..2baeee8e2ccb1 100644 --- a/clients/client-gamelift/src/commands/GetInstanceAccessCommand.ts +++ b/clients/client-gamelift/src/commands/GetInstanceAccessCommand.ts @@ -119,6 +119,7 @@ export interface GetInstanceAccessCommandOutput extends GetInstanceAccessOutput, * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class GetInstanceAccessCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ListAliasesCommand.ts b/clients/client-gamelift/src/commands/ListAliasesCommand.ts index 22642c04565e3..2b590b67b08ff 100644 --- a/clients/client-gamelift/src/commands/ListAliasesCommand.ts +++ b/clients/client-gamelift/src/commands/ListAliasesCommand.ts @@ -95,6 +95,7 @@ export interface ListAliasesCommandOutput extends ListAliasesOutput, __MetadataB * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ListAliasesCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ListBuildsCommand.ts b/clients/client-gamelift/src/commands/ListBuildsCommand.ts index 58e8da850ba46..f881166d41575 100644 --- a/clients/client-gamelift/src/commands/ListBuildsCommand.ts +++ b/clients/client-gamelift/src/commands/ListBuildsCommand.ts @@ -97,6 +97,7 @@ export interface ListBuildsCommandOutput extends ListBuildsOutput, __MetadataBea * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ListBuildsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ListComputeCommand.ts b/clients/client-gamelift/src/commands/ListComputeCommand.ts index c1193d7478fd9..4d7daa22e0811 100644 --- a/clients/client-gamelift/src/commands/ListComputeCommand.ts +++ b/clients/client-gamelift/src/commands/ListComputeCommand.ts @@ -130,6 +130,7 @@ export interface ListComputeCommandOutput extends ListComputeOutput, __MetadataB * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ListComputeCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ListContainerFleetsCommand.ts b/clients/client-gamelift/src/commands/ListContainerFleetsCommand.ts index 7c9b77c93bf61..099d78a2e8cb8 100644 --- a/clients/client-gamelift/src/commands/ListContainerFleetsCommand.ts +++ b/clients/client-gamelift/src/commands/ListContainerFleetsCommand.ts @@ -153,6 +153,7 @@ export interface ListContainerFleetsCommandOutput extends ListContainerFleetsOut * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ListContainerFleetsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ListContainerGroupDefinitionVersionsCommand.ts b/clients/client-gamelift/src/commands/ListContainerGroupDefinitionVersionsCommand.ts index 171c38ac97f23..d89f7ddb9934a 100644 --- a/clients/client-gamelift/src/commands/ListContainerGroupDefinitionVersionsCommand.ts +++ b/clients/client-gamelift/src/commands/ListContainerGroupDefinitionVersionsCommand.ts @@ -209,6 +209,7 @@ export interface ListContainerGroupDefinitionVersionsCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ListContainerGroupDefinitionVersionsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ListContainerGroupDefinitionsCommand.ts b/clients/client-gamelift/src/commands/ListContainerGroupDefinitionsCommand.ts index 70880cb5b4ac0..2fcd48b241ebc 100644 --- a/clients/client-gamelift/src/commands/ListContainerGroupDefinitionsCommand.ts +++ b/clients/client-gamelift/src/commands/ListContainerGroupDefinitionsCommand.ts @@ -199,6 +199,7 @@ export interface ListContainerGroupDefinitionsCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ListContainerGroupDefinitionsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ListFleetDeploymentsCommand.ts b/clients/client-gamelift/src/commands/ListFleetDeploymentsCommand.ts index 8bc8e6744a483..19f40d53f5efa 100644 --- a/clients/client-gamelift/src/commands/ListFleetDeploymentsCommand.ts +++ b/clients/client-gamelift/src/commands/ListFleetDeploymentsCommand.ts @@ -112,6 +112,7 @@ export interface ListFleetDeploymentsCommandOutput extends ListFleetDeploymentsO * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ListFleetDeploymentsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ListFleetsCommand.ts b/clients/client-gamelift/src/commands/ListFleetsCommand.ts index c2ce1a9facb83..c8a1066111fa4 100644 --- a/clients/client-gamelift/src/commands/ListFleetsCommand.ts +++ b/clients/client-gamelift/src/commands/ListFleetsCommand.ts @@ -100,6 +100,7 @@ export interface ListFleetsCommandOutput extends ListFleetsOutput, __MetadataBea * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ListFleetsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ListGameServerGroupsCommand.ts b/clients/client-gamelift/src/commands/ListGameServerGroupsCommand.ts index 1cad46354d251..3b854a12513ec 100644 --- a/clients/client-gamelift/src/commands/ListGameServerGroupsCommand.ts +++ b/clients/client-gamelift/src/commands/ListGameServerGroupsCommand.ts @@ -90,6 +90,7 @@ export interface ListGameServerGroupsCommandOutput extends ListGameServerGroupsO * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ListGameServerGroupsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ListGameServersCommand.ts b/clients/client-gamelift/src/commands/ListGameServersCommand.ts index 7b1d59bb70fde..e8051c93f5555 100644 --- a/clients/client-gamelift/src/commands/ListGameServersCommand.ts +++ b/clients/client-gamelift/src/commands/ListGameServersCommand.ts @@ -97,6 +97,7 @@ export interface ListGameServersCommandOutput extends ListGameServersOutput, __M * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ListGameServersCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ListLocationsCommand.ts b/clients/client-gamelift/src/commands/ListLocationsCommand.ts index 741a3564b881b..0ee369df73d5d 100644 --- a/clients/client-gamelift/src/commands/ListLocationsCommand.ts +++ b/clients/client-gamelift/src/commands/ListLocationsCommand.ts @@ -76,6 +76,7 @@ export interface ListLocationsCommandOutput extends ListLocationsOutput, __Metad * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ListLocationsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ListScriptsCommand.ts b/clients/client-gamelift/src/commands/ListScriptsCommand.ts index a6d253f29e50c..00021282c8d26 100644 --- a/clients/client-gamelift/src/commands/ListScriptsCommand.ts +++ b/clients/client-gamelift/src/commands/ListScriptsCommand.ts @@ -96,6 +96,7 @@ export interface ListScriptsCommandOutput extends ListScriptsOutput, __MetadataB * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ListScriptsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ListTagsForResourceCommand.ts b/clients/client-gamelift/src/commands/ListTagsForResourceCommand.ts index 12f8085e95a89..701281225323b 100644 --- a/clients/client-gamelift/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-gamelift/src/commands/ListTagsForResourceCommand.ts @@ -99,6 +99,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-gamelift/src/commands/PutScalingPolicyCommand.ts b/clients/client-gamelift/src/commands/PutScalingPolicyCommand.ts index c82c88ecc1697..2c66318964353 100644 --- a/clients/client-gamelift/src/commands/PutScalingPolicyCommand.ts +++ b/clients/client-gamelift/src/commands/PutScalingPolicyCommand.ts @@ -140,6 +140,7 @@ export interface PutScalingPolicyCommandOutput extends PutScalingPolicyOutput, _ * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class PutScalingPolicyCommand extends $Command diff --git a/clients/client-gamelift/src/commands/RegisterComputeCommand.ts b/clients/client-gamelift/src/commands/RegisterComputeCommand.ts index de9963a63932f..068d2554df3ba 100644 --- a/clients/client-gamelift/src/commands/RegisterComputeCommand.ts +++ b/clients/client-gamelift/src/commands/RegisterComputeCommand.ts @@ -147,6 +147,7 @@ export interface RegisterComputeCommandOutput extends RegisterComputeOutput, __M * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class RegisterComputeCommand extends $Command diff --git a/clients/client-gamelift/src/commands/RegisterGameServerCommand.ts b/clients/client-gamelift/src/commands/RegisterGameServerCommand.ts index d81ba512cccc9..888c97e9f149d 100644 --- a/clients/client-gamelift/src/commands/RegisterGameServerCommand.ts +++ b/clients/client-gamelift/src/commands/RegisterGameServerCommand.ts @@ -114,6 +114,7 @@ export interface RegisterGameServerCommandOutput extends RegisterGameServerOutpu * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class RegisterGameServerCommand extends $Command diff --git a/clients/client-gamelift/src/commands/RequestUploadCredentialsCommand.ts b/clients/client-gamelift/src/commands/RequestUploadCredentialsCommand.ts index a5d4cae587e98..4f9c161bbc9d0 100644 --- a/clients/client-gamelift/src/commands/RequestUploadCredentialsCommand.ts +++ b/clients/client-gamelift/src/commands/RequestUploadCredentialsCommand.ts @@ -97,6 +97,7 @@ export interface RequestUploadCredentialsCommandOutput extends RequestUploadCred * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class RequestUploadCredentialsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ResolveAliasCommand.ts b/clients/client-gamelift/src/commands/ResolveAliasCommand.ts index d40ad037a7df2..568670fddeed1 100644 --- a/clients/client-gamelift/src/commands/ResolveAliasCommand.ts +++ b/clients/client-gamelift/src/commands/ResolveAliasCommand.ts @@ -86,6 +86,7 @@ export interface ResolveAliasCommandOutput extends ResolveAliasOutput, __Metadat * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ResolveAliasCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ResumeGameServerGroupCommand.ts b/clients/client-gamelift/src/commands/ResumeGameServerGroupCommand.ts index 37ffb89a614f9..73b6a9a91bcdb 100644 --- a/clients/client-gamelift/src/commands/ResumeGameServerGroupCommand.ts +++ b/clients/client-gamelift/src/commands/ResumeGameServerGroupCommand.ts @@ -111,6 +111,7 @@ export interface ResumeGameServerGroupCommandOutput extends ResumeGameServerGrou * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ResumeGameServerGroupCommand extends $Command diff --git a/clients/client-gamelift/src/commands/SearchGameSessionsCommand.ts b/clients/client-gamelift/src/commands/SearchGameSessionsCommand.ts index b2c35443e278c..102932eeab5eb 100644 --- a/clients/client-gamelift/src/commands/SearchGameSessionsCommand.ts +++ b/clients/client-gamelift/src/commands/SearchGameSessionsCommand.ts @@ -197,6 +197,7 @@ export interface SearchGameSessionsCommandOutput extends SearchGameSessionsOutpu * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class SearchGameSessionsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/StartFleetActionsCommand.ts b/clients/client-gamelift/src/commands/StartFleetActionsCommand.ts index a6cc044569d3f..5d47ba2012681 100644 --- a/clients/client-gamelift/src/commands/StartFleetActionsCommand.ts +++ b/clients/client-gamelift/src/commands/StartFleetActionsCommand.ts @@ -100,6 +100,7 @@ export interface StartFleetActionsCommandOutput extends StartFleetActionsOutput, * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class StartFleetActionsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/StartGameSessionPlacementCommand.ts b/clients/client-gamelift/src/commands/StartGameSessionPlacementCommand.ts index b2804f39cdd35..1991661ec8a2f 100644 --- a/clients/client-gamelift/src/commands/StartGameSessionPlacementCommand.ts +++ b/clients/client-gamelift/src/commands/StartGameSessionPlacementCommand.ts @@ -224,6 +224,7 @@ export interface StartGameSessionPlacementCommandOutput extends StartGameSession * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class StartGameSessionPlacementCommand extends $Command diff --git a/clients/client-gamelift/src/commands/StartMatchBackfillCommand.ts b/clients/client-gamelift/src/commands/StartMatchBackfillCommand.ts index 7f5cf5cd8c9b8..f07a6b31ee8a6 100644 --- a/clients/client-gamelift/src/commands/StartMatchBackfillCommand.ts +++ b/clients/client-gamelift/src/commands/StartMatchBackfillCommand.ts @@ -177,6 +177,7 @@ export interface StartMatchBackfillCommandOutput extends StartMatchBackfillOutpu * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class StartMatchBackfillCommand extends $Command diff --git a/clients/client-gamelift/src/commands/StartMatchmakingCommand.ts b/clients/client-gamelift/src/commands/StartMatchmakingCommand.ts index 3cccb4b52a774..e9c3441ca3276 100644 --- a/clients/client-gamelift/src/commands/StartMatchmakingCommand.ts +++ b/clients/client-gamelift/src/commands/StartMatchmakingCommand.ts @@ -168,6 +168,7 @@ export interface StartMatchmakingCommandOutput extends StartMatchmakingOutput, _ * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class StartMatchmakingCommand extends $Command diff --git a/clients/client-gamelift/src/commands/StopFleetActionsCommand.ts b/clients/client-gamelift/src/commands/StopFleetActionsCommand.ts index b403052df0550..1c3b159b6e282 100644 --- a/clients/client-gamelift/src/commands/StopFleetActionsCommand.ts +++ b/clients/client-gamelift/src/commands/StopFleetActionsCommand.ts @@ -104,6 +104,7 @@ export interface StopFleetActionsCommandOutput extends StopFleetActionsOutput, _ * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class StopFleetActionsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/StopGameSessionPlacementCommand.ts b/clients/client-gamelift/src/commands/StopGameSessionPlacementCommand.ts index 4589fd8a7a122..79cf8eaf2e872 100644 --- a/clients/client-gamelift/src/commands/StopGameSessionPlacementCommand.ts +++ b/clients/client-gamelift/src/commands/StopGameSessionPlacementCommand.ts @@ -116,6 +116,7 @@ export interface StopGameSessionPlacementCommandOutput extends StopGameSessionPl * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class StopGameSessionPlacementCommand extends $Command diff --git a/clients/client-gamelift/src/commands/StopMatchmakingCommand.ts b/clients/client-gamelift/src/commands/StopMatchmakingCommand.ts index fefe4ec86430a..c00b75cfa5047 100644 --- a/clients/client-gamelift/src/commands/StopMatchmakingCommand.ts +++ b/clients/client-gamelift/src/commands/StopMatchmakingCommand.ts @@ -85,6 +85,7 @@ export interface StopMatchmakingCommandOutput extends StopMatchmakingOutput, __M * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class StopMatchmakingCommand extends $Command diff --git a/clients/client-gamelift/src/commands/SuspendGameServerGroupCommand.ts b/clients/client-gamelift/src/commands/SuspendGameServerGroupCommand.ts index adc32e7594cff..93935557512c6 100644 --- a/clients/client-gamelift/src/commands/SuspendGameServerGroupCommand.ts +++ b/clients/client-gamelift/src/commands/SuspendGameServerGroupCommand.ts @@ -121,6 +121,7 @@ export interface SuspendGameServerGroupCommandOutput extends SuspendGameServerGr * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class SuspendGameServerGroupCommand extends $Command diff --git a/clients/client-gamelift/src/commands/TagResourceCommand.ts b/clients/client-gamelift/src/commands/TagResourceCommand.ts index 4aafa0d6c5e81..0d6388d314d57 100644 --- a/clients/client-gamelift/src/commands/TagResourceCommand.ts +++ b/clients/client-gamelift/src/commands/TagResourceCommand.ts @@ -101,6 +101,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-gamelift/src/commands/TerminateGameSessionCommand.ts b/clients/client-gamelift/src/commands/TerminateGameSessionCommand.ts index c0515c40d8288..f476073094827 100644 --- a/clients/client-gamelift/src/commands/TerminateGameSessionCommand.ts +++ b/clients/client-gamelift/src/commands/TerminateGameSessionCommand.ts @@ -157,6 +157,7 @@ export interface TerminateGameSessionCommandOutput extends TerminateGameSessionO * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class TerminateGameSessionCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UntagResourceCommand.ts b/clients/client-gamelift/src/commands/UntagResourceCommand.ts index 34f8ad383e14e..0f9d5bf8e192b 100644 --- a/clients/client-gamelift/src/commands/UntagResourceCommand.ts +++ b/clients/client-gamelift/src/commands/UntagResourceCommand.ts @@ -97,6 +97,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UpdateAliasCommand.ts b/clients/client-gamelift/src/commands/UpdateAliasCommand.ts index 801de4d4c44a0..329950cd13a52 100644 --- a/clients/client-gamelift/src/commands/UpdateAliasCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateAliasCommand.ts @@ -96,6 +96,7 @@ export interface UpdateAliasCommandOutput extends UpdateAliasOutput, __MetadataB * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UpdateAliasCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UpdateBuildCommand.ts b/clients/client-gamelift/src/commands/UpdateBuildCommand.ts index 70dac483a48a1..985ffa58f4e43 100644 --- a/clients/client-gamelift/src/commands/UpdateBuildCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateBuildCommand.ts @@ -93,6 +93,7 @@ export interface UpdateBuildCommandOutput extends UpdateBuildOutput, __MetadataB * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UpdateBuildCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UpdateContainerFleetCommand.ts b/clients/client-gamelift/src/commands/UpdateContainerFleetCommand.ts index 51044e12f4b70..0992becebf9bf 100644 --- a/clients/client-gamelift/src/commands/UpdateContainerFleetCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateContainerFleetCommand.ts @@ -242,6 +242,7 @@ export interface UpdateContainerFleetCommandOutput extends UpdateContainerFleetO * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UpdateContainerFleetCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UpdateContainerGroupDefinitionCommand.ts b/clients/client-gamelift/src/commands/UpdateContainerGroupDefinitionCommand.ts index af45a34c810fb..8b10da9dcf1d3 100644 --- a/clients/client-gamelift/src/commands/UpdateContainerGroupDefinitionCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateContainerGroupDefinitionCommand.ts @@ -304,6 +304,7 @@ export interface UpdateContainerGroupDefinitionCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UpdateContainerGroupDefinitionCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UpdateFleetAttributesCommand.ts b/clients/client-gamelift/src/commands/UpdateFleetAttributesCommand.ts index fabdf6c468cff..c1c6cdb34a5f8 100644 --- a/clients/client-gamelift/src/commands/UpdateFleetAttributesCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateFleetAttributesCommand.ts @@ -108,6 +108,7 @@ export interface UpdateFleetAttributesCommandOutput extends UpdateFleetAttribute * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UpdateFleetAttributesCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UpdateFleetCapacityCommand.ts b/clients/client-gamelift/src/commands/UpdateFleetCapacityCommand.ts index ff821721e9cf0..37d20288fd7b4 100644 --- a/clients/client-gamelift/src/commands/UpdateFleetCapacityCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateFleetCapacityCommand.ts @@ -131,6 +131,7 @@ export interface UpdateFleetCapacityCommandOutput extends UpdateFleetCapacityOut * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UpdateFleetCapacityCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UpdateFleetPortSettingsCommand.ts b/clients/client-gamelift/src/commands/UpdateFleetPortSettingsCommand.ts index cdfcfac91b384..6278683b9fafc 100644 --- a/clients/client-gamelift/src/commands/UpdateFleetPortSettingsCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateFleetPortSettingsCommand.ts @@ -122,6 +122,7 @@ export interface UpdateFleetPortSettingsCommandOutput extends UpdateFleetPortSet * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UpdateFleetPortSettingsCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UpdateGameServerCommand.ts b/clients/client-gamelift/src/commands/UpdateGameServerCommand.ts index e33522588446e..7e6e4cd56152d 100644 --- a/clients/client-gamelift/src/commands/UpdateGameServerCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateGameServerCommand.ts @@ -121,6 +121,7 @@ export interface UpdateGameServerCommandOutput extends UpdateGameServerOutput, _ * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UpdateGameServerCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UpdateGameServerGroupCommand.ts b/clients/client-gamelift/src/commands/UpdateGameServerGroupCommand.ts index 273f1b861a414..0861767a9e27d 100644 --- a/clients/client-gamelift/src/commands/UpdateGameServerGroupCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateGameServerGroupCommand.ts @@ -115,6 +115,7 @@ export interface UpdateGameServerGroupCommandOutput extends UpdateGameServerGrou * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UpdateGameServerGroupCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UpdateGameSessionCommand.ts b/clients/client-gamelift/src/commands/UpdateGameSessionCommand.ts index 71ebbdff25076..4a2fb0efe2664 100644 --- a/clients/client-gamelift/src/commands/UpdateGameSessionCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateGameSessionCommand.ts @@ -125,6 +125,7 @@ export interface UpdateGameSessionCommandOutput extends UpdateGameSessionOutput, * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UpdateGameSessionCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UpdateGameSessionQueueCommand.ts b/clients/client-gamelift/src/commands/UpdateGameSessionQueueCommand.ts index 506991719818c..9f3e809c4204f 100644 --- a/clients/client-gamelift/src/commands/UpdateGameSessionQueueCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateGameSessionQueueCommand.ts @@ -136,6 +136,7 @@ export interface UpdateGameSessionQueueCommandOutput extends UpdateGameSessionQu * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UpdateGameSessionQueueCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UpdateMatchmakingConfigurationCommand.ts b/clients/client-gamelift/src/commands/UpdateMatchmakingConfigurationCommand.ts index b3fbeb16ad1b1..d28fd77297d43 100644 --- a/clients/client-gamelift/src/commands/UpdateMatchmakingConfigurationCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateMatchmakingConfigurationCommand.ts @@ -128,6 +128,7 @@ export interface UpdateMatchmakingConfigurationCommandOutput * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UpdateMatchmakingConfigurationCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UpdateRuntimeConfigurationCommand.ts b/clients/client-gamelift/src/commands/UpdateRuntimeConfigurationCommand.ts index c67eb1aae3c72..f5817c4710a7b 100644 --- a/clients/client-gamelift/src/commands/UpdateRuntimeConfigurationCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateRuntimeConfigurationCommand.ts @@ -118,6 +118,7 @@ export interface UpdateRuntimeConfigurationCommandOutput extends UpdateRuntimeCo * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UpdateRuntimeConfigurationCommand extends $Command diff --git a/clients/client-gamelift/src/commands/UpdateScriptCommand.ts b/clients/client-gamelift/src/commands/UpdateScriptCommand.ts index 0770751fb9271..9343e4767670e 100644 --- a/clients/client-gamelift/src/commands/UpdateScriptCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateScriptCommand.ts @@ -112,6 +112,7 @@ export interface UpdateScriptCommandOutput extends UpdateScriptOutput, __Metadat * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class UpdateScriptCommand extends $Command diff --git a/clients/client-gamelift/src/commands/ValidateMatchmakingRuleSetCommand.ts b/clients/client-gamelift/src/commands/ValidateMatchmakingRuleSetCommand.ts index 7fe6cd2c8d329..5e8ba55d1ae9d 100644 --- a/clients/client-gamelift/src/commands/ValidateMatchmakingRuleSetCommand.ts +++ b/clients/client-gamelift/src/commands/ValidateMatchmakingRuleSetCommand.ts @@ -79,6 +79,7 @@ export interface ValidateMatchmakingRuleSetCommandOutput extends ValidateMatchma * @throws {@link GameLiftServiceException} *

Base exception class for all service exceptions from GameLift service.

* + * * @public */ export class ValidateMatchmakingRuleSetCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/AddStreamGroupLocationsCommand.ts b/clients/client-gameliftstreams/src/commands/AddStreamGroupLocationsCommand.ts index c1b3f47eead8d..de749e375141e 100644 --- a/clients/client-gameliftstreams/src/commands/AddStreamGroupLocationsCommand.ts +++ b/clients/client-gameliftstreams/src/commands/AddStreamGroupLocationsCommand.ts @@ -96,6 +96,7 @@ export interface AddStreamGroupLocationsCommandOutput extends AddStreamGroupLoca * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class AddStreamGroupLocationsCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/AssociateApplicationsCommand.ts b/clients/client-gameliftstreams/src/commands/AssociateApplicationsCommand.ts index 733f54484a915..20df1074242e2 100644 --- a/clients/client-gameliftstreams/src/commands/AssociateApplicationsCommand.ts +++ b/clients/client-gameliftstreams/src/commands/AssociateApplicationsCommand.ts @@ -81,6 +81,7 @@ export interface AssociateApplicationsCommandOutput extends AssociateApplication * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class AssociateApplicationsCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/CreateApplicationCommand.ts b/clients/client-gameliftstreams/src/commands/CreateApplicationCommand.ts index 71c75ef1a00e0..8f03e4758af3c 100644 --- a/clients/client-gameliftstreams/src/commands/CreateApplicationCommand.ts +++ b/clients/client-gameliftstreams/src/commands/CreateApplicationCommand.ts @@ -124,6 +124,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationOutput, * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/CreateStreamGroupCommand.ts b/clients/client-gameliftstreams/src/commands/CreateStreamGroupCommand.ts index 7961a1bfe3d4f..e22a212d79382 100644 --- a/clients/client-gameliftstreams/src/commands/CreateStreamGroupCommand.ts +++ b/clients/client-gameliftstreams/src/commands/CreateStreamGroupCommand.ts @@ -144,6 +144,7 @@ export interface CreateStreamGroupCommandOutput extends CreateStreamGroupOutput, * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class CreateStreamGroupCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/CreateStreamSessionConnectionCommand.ts b/clients/client-gameliftstreams/src/commands/CreateStreamSessionConnectionCommand.ts index 66d8a38419a08..23d178b0890de 100644 --- a/clients/client-gameliftstreams/src/commands/CreateStreamSessionConnectionCommand.ts +++ b/clients/client-gameliftstreams/src/commands/CreateStreamSessionConnectionCommand.ts @@ -99,6 +99,7 @@ export interface CreateStreamSessionConnectionCommandOutput * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class CreateStreamSessionConnectionCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/DeleteApplicationCommand.ts b/clients/client-gameliftstreams/src/commands/DeleteApplicationCommand.ts index 8fce0a2d393a5..2aa3695c6bc69 100644 --- a/clients/client-gameliftstreams/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-gameliftstreams/src/commands/DeleteApplicationCommand.ts @@ -94,6 +94,7 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {} * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/DeleteStreamGroupCommand.ts b/clients/client-gameliftstreams/src/commands/DeleteStreamGroupCommand.ts index 3128f91957650..419a55afc4988 100644 --- a/clients/client-gameliftstreams/src/commands/DeleteStreamGroupCommand.ts +++ b/clients/client-gameliftstreams/src/commands/DeleteStreamGroupCommand.ts @@ -76,6 +76,7 @@ export interface DeleteStreamGroupCommandOutput extends __MetadataBearer {} * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class DeleteStreamGroupCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/DisassociateApplicationsCommand.ts b/clients/client-gameliftstreams/src/commands/DisassociateApplicationsCommand.ts index 9562e10182f5f..0d51aa8da85bf 100644 --- a/clients/client-gameliftstreams/src/commands/DisassociateApplicationsCommand.ts +++ b/clients/client-gameliftstreams/src/commands/DisassociateApplicationsCommand.ts @@ -82,6 +82,7 @@ export interface DisassociateApplicationsCommandOutput extends DisassociateAppli * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class DisassociateApplicationsCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/ExportStreamSessionFilesCommand.ts b/clients/client-gameliftstreams/src/commands/ExportStreamSessionFilesCommand.ts index bd873bad328d9..732046a429e8a 100644 --- a/clients/client-gameliftstreams/src/commands/ExportStreamSessionFilesCommand.ts +++ b/clients/client-gameliftstreams/src/commands/ExportStreamSessionFilesCommand.ts @@ -100,6 +100,7 @@ export interface ExportStreamSessionFilesCommandOutput extends ExportStreamSessi * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class ExportStreamSessionFilesCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/GetApplicationCommand.ts b/clients/client-gameliftstreams/src/commands/GetApplicationCommand.ts index 2590459319675..362605c57f58c 100644 --- a/clients/client-gameliftstreams/src/commands/GetApplicationCommand.ts +++ b/clients/client-gameliftstreams/src/commands/GetApplicationCommand.ts @@ -97,6 +97,7 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class GetApplicationCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/GetStreamGroupCommand.ts b/clients/client-gameliftstreams/src/commands/GetStreamGroupCommand.ts index 0b3fcce7b08db..ecad509c9d620 100644 --- a/clients/client-gameliftstreams/src/commands/GetStreamGroupCommand.ts +++ b/clients/client-gameliftstreams/src/commands/GetStreamGroupCommand.ts @@ -97,6 +97,7 @@ export interface GetStreamGroupCommandOutput extends GetStreamGroupOutput, __Met * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class GetStreamGroupCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/GetStreamSessionCommand.ts b/clients/client-gameliftstreams/src/commands/GetStreamSessionCommand.ts index 6420cc53c1946..41a102b65e4ea 100644 --- a/clients/client-gameliftstreams/src/commands/GetStreamSessionCommand.ts +++ b/clients/client-gameliftstreams/src/commands/GetStreamSessionCommand.ts @@ -104,6 +104,7 @@ export interface GetStreamSessionCommandOutput extends GetStreamSessionOutput, _ * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class GetStreamSessionCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/ListApplicationsCommand.ts b/clients/client-gameliftstreams/src/commands/ListApplicationsCommand.ts index de0d5fcb29c28..deb9294f67457 100644 --- a/clients/client-gameliftstreams/src/commands/ListApplicationsCommand.ts +++ b/clients/client-gameliftstreams/src/commands/ListApplicationsCommand.ts @@ -84,6 +84,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _ * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/ListStreamGroupsCommand.ts b/clients/client-gameliftstreams/src/commands/ListStreamGroupsCommand.ts index a3ca045b5b455..74ad9c45cc448 100644 --- a/clients/client-gameliftstreams/src/commands/ListStreamGroupsCommand.ts +++ b/clients/client-gameliftstreams/src/commands/ListStreamGroupsCommand.ts @@ -85,6 +85,7 @@ export interface ListStreamGroupsCommandOutput extends ListStreamGroupsOutput, _ * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class ListStreamGroupsCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/ListStreamSessionsByAccountCommand.ts b/clients/client-gameliftstreams/src/commands/ListStreamSessionsByAccountCommand.ts index df8e1a77f1fac..45e0b26783a0b 100644 --- a/clients/client-gameliftstreams/src/commands/ListStreamSessionsByAccountCommand.ts +++ b/clients/client-gameliftstreams/src/commands/ListStreamSessionsByAccountCommand.ts @@ -95,6 +95,7 @@ export interface ListStreamSessionsByAccountCommandOutput extends ListStreamSess * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class ListStreamSessionsByAccountCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/ListStreamSessionsCommand.ts b/clients/client-gameliftstreams/src/commands/ListStreamSessionsCommand.ts index fedb4ce57439f..dcef61962a127 100644 --- a/clients/client-gameliftstreams/src/commands/ListStreamSessionsCommand.ts +++ b/clients/client-gameliftstreams/src/commands/ListStreamSessionsCommand.ts @@ -95,6 +95,7 @@ export interface ListStreamSessionsCommandOutput extends ListStreamSessionsOutpu * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class ListStreamSessionsCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/ListTagsForResourceCommand.ts b/clients/client-gameliftstreams/src/commands/ListTagsForResourceCommand.ts index 7b409a6409bb7..f275a701480ff 100644 --- a/clients/client-gameliftstreams/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-gameliftstreams/src/commands/ListTagsForResourceCommand.ts @@ -80,6 +80,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/RemoveStreamGroupLocationsCommand.ts b/clients/client-gameliftstreams/src/commands/RemoveStreamGroupLocationsCommand.ts index 7ed648a2dda68..e7dcc59f69ba3 100644 --- a/clients/client-gameliftstreams/src/commands/RemoveStreamGroupLocationsCommand.ts +++ b/clients/client-gameliftstreams/src/commands/RemoveStreamGroupLocationsCommand.ts @@ -76,6 +76,7 @@ export interface RemoveStreamGroupLocationsCommandOutput extends __MetadataBeare * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class RemoveStreamGroupLocationsCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/StartStreamSessionCommand.ts b/clients/client-gameliftstreams/src/commands/StartStreamSessionCommand.ts index f360c209bdf63..69b365842ff17 100644 --- a/clients/client-gameliftstreams/src/commands/StartStreamSessionCommand.ts +++ b/clients/client-gameliftstreams/src/commands/StartStreamSessionCommand.ts @@ -147,6 +147,7 @@ export interface StartStreamSessionCommandOutput extends StartStreamSessionOutpu * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class StartStreamSessionCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/TagResourceCommand.ts b/clients/client-gameliftstreams/src/commands/TagResourceCommand.ts index 1a0b000dd6880..994fca29f14c0 100644 --- a/clients/client-gameliftstreams/src/commands/TagResourceCommand.ts +++ b/clients/client-gameliftstreams/src/commands/TagResourceCommand.ts @@ -88,6 +88,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/TerminateStreamSessionCommand.ts b/clients/client-gameliftstreams/src/commands/TerminateStreamSessionCommand.ts index fdc19fbefd428..08459c0aae7d0 100644 --- a/clients/client-gameliftstreams/src/commands/TerminateStreamSessionCommand.ts +++ b/clients/client-gameliftstreams/src/commands/TerminateStreamSessionCommand.ts @@ -72,6 +72,7 @@ export interface TerminateStreamSessionCommandOutput extends __MetadataBearer {} * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class TerminateStreamSessionCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/UntagResourceCommand.ts b/clients/client-gameliftstreams/src/commands/UntagResourceCommand.ts index 8323451c65c92..714f1d6461516 100644 --- a/clients/client-gameliftstreams/src/commands/UntagResourceCommand.ts +++ b/clients/client-gameliftstreams/src/commands/UntagResourceCommand.ts @@ -70,6 +70,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/UpdateApplicationCommand.ts b/clients/client-gameliftstreams/src/commands/UpdateApplicationCommand.ts index 3b7623419af13..409556b9613cc 100644 --- a/clients/client-gameliftstreams/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-gameliftstreams/src/commands/UpdateApplicationCommand.ts @@ -104,6 +104,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationOutput, * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-gameliftstreams/src/commands/UpdateStreamGroupCommand.ts b/clients/client-gameliftstreams/src/commands/UpdateStreamGroupCommand.ts index 91e115c461abb..96e103e04ab6f 100644 --- a/clients/client-gameliftstreams/src/commands/UpdateStreamGroupCommand.ts +++ b/clients/client-gameliftstreams/src/commands/UpdateStreamGroupCommand.ts @@ -133,6 +133,7 @@ export interface UpdateStreamGroupCommandOutput extends UpdateStreamGroupOutput, * @throws {@link GameLiftStreamsServiceException} *

Base exception class for all service exceptions from GameLiftStreams service.

* + * * @public */ export class UpdateStreamGroupCommand extends $Command diff --git a/clients/client-geo-maps/src/commands/GetGlyphsCommand.ts b/clients/client-geo-maps/src/commands/GetGlyphsCommand.ts index 79a7950bcd9a6..70c7fadd26d5b 100644 --- a/clients/client-geo-maps/src/commands/GetGlyphsCommand.ts +++ b/clients/client-geo-maps/src/commands/GetGlyphsCommand.ts @@ -68,6 +68,7 @@ export interface GetGlyphsCommandOutput extends GetGlyphsCommandOutputType, __Me * @throws {@link GeoMapsServiceException} *

Base exception class for all service exceptions from GeoMaps service.

* + * * @public */ export class GetGlyphsCommand extends $Command diff --git a/clients/client-geo-maps/src/commands/GetSpritesCommand.ts b/clients/client-geo-maps/src/commands/GetSpritesCommand.ts index 6c5fb238ac4a7..801bc1510c970 100644 --- a/clients/client-geo-maps/src/commands/GetSpritesCommand.ts +++ b/clients/client-geo-maps/src/commands/GetSpritesCommand.ts @@ -70,6 +70,7 @@ export interface GetSpritesCommandOutput extends GetSpritesCommandOutputType, __ * @throws {@link GeoMapsServiceException} *

Base exception class for all service exceptions from GeoMaps service.

* + * * @public */ export class GetSpritesCommand extends $Command diff --git a/clients/client-geo-maps/src/commands/GetStaticMapCommand.ts b/clients/client-geo-maps/src/commands/GetStaticMapCommand.ts index 1ae0c536c5087..b3c31dc545d17 100644 --- a/clients/client-geo-maps/src/commands/GetStaticMapCommand.ts +++ b/clients/client-geo-maps/src/commands/GetStaticMapCommand.ts @@ -103,6 +103,7 @@ export interface GetStaticMapCommandOutput extends GetStaticMapCommandOutputType * @throws {@link GeoMapsServiceException} *

Base exception class for all service exceptions from GeoMaps service.

* + * * @public */ export class GetStaticMapCommand extends $Command diff --git a/clients/client-geo-maps/src/commands/GetStyleDescriptorCommand.ts b/clients/client-geo-maps/src/commands/GetStyleDescriptorCommand.ts index 62bbc22706c46..55627b56d5cfa 100644 --- a/clients/client-geo-maps/src/commands/GetStyleDescriptorCommand.ts +++ b/clients/client-geo-maps/src/commands/GetStyleDescriptorCommand.ts @@ -74,6 +74,7 @@ export interface GetStyleDescriptorCommandOutput extends GetStyleDescriptorComma * @throws {@link GeoMapsServiceException} *

Base exception class for all service exceptions from GeoMaps service.

* + * * @public */ export class GetStyleDescriptorCommand extends $Command diff --git a/clients/client-geo-maps/src/commands/GetTileCommand.ts b/clients/client-geo-maps/src/commands/GetTileCommand.ts index ef345837e7d2c..0ceb0a8be99da 100644 --- a/clients/client-geo-maps/src/commands/GetTileCommand.ts +++ b/clients/client-geo-maps/src/commands/GetTileCommand.ts @@ -88,6 +88,7 @@ export interface GetTileCommandOutput extends GetTileCommandOutputType, __Metada * @throws {@link GeoMapsServiceException} *

Base exception class for all service exceptions from GeoMaps service.

* + * * @public */ export class GetTileCommand extends $Command diff --git a/clients/client-geo-places/src/commands/AutocompleteCommand.ts b/clients/client-geo-places/src/commands/AutocompleteCommand.ts index 52e13c6006bf2..ccf57026296bd 100644 --- a/clients/client-geo-places/src/commands/AutocompleteCommand.ts +++ b/clients/client-geo-places/src/commands/AutocompleteCommand.ts @@ -188,6 +188,7 @@ export interface AutocompleteCommandOutput extends AutocompleteResponse, __Metad * @throws {@link GeoPlacesServiceException} *

Base exception class for all service exceptions from GeoPlaces service.

* + * * @public */ export class AutocompleteCommand extends $Command diff --git a/clients/client-geo-places/src/commands/GeocodeCommand.ts b/clients/client-geo-places/src/commands/GeocodeCommand.ts index a669fe92d3d0d..baf6d0fcdfe7b 100644 --- a/clients/client-geo-places/src/commands/GeocodeCommand.ts +++ b/clients/client-geo-places/src/commands/GeocodeCommand.ts @@ -220,6 +220,7 @@ export interface GeocodeCommandOutput extends GeocodeResponse, __MetadataBearer * @throws {@link GeoPlacesServiceException} *

Base exception class for all service exceptions from GeoPlaces service.

* + * * @public */ export class GeocodeCommand extends $Command diff --git a/clients/client-geo-places/src/commands/GetPlaceCommand.ts b/clients/client-geo-places/src/commands/GetPlaceCommand.ts index 0fe69098d0a07..8d93ec37b2534 100644 --- a/clients/client-geo-places/src/commands/GetPlaceCommand.ts +++ b/clients/client-geo-places/src/commands/GetPlaceCommand.ts @@ -301,6 +301,7 @@ export interface GetPlaceCommandOutput extends GetPlaceResponse, __MetadataBeare * @throws {@link GeoPlacesServiceException} *

Base exception class for all service exceptions from GeoPlaces service.

* + * * @public */ export class GetPlaceCommand extends $Command diff --git a/clients/client-geo-places/src/commands/ReverseGeocodeCommand.ts b/clients/client-geo-places/src/commands/ReverseGeocodeCommand.ts index 44bee49805149..08c77d08ab53b 100644 --- a/clients/client-geo-places/src/commands/ReverseGeocodeCommand.ts +++ b/clients/client-geo-places/src/commands/ReverseGeocodeCommand.ts @@ -185,6 +185,7 @@ export interface ReverseGeocodeCommandOutput extends ReverseGeocodeResponse, __M * @throws {@link GeoPlacesServiceException} *

Base exception class for all service exceptions from GeoPlaces service.

* + * * @public */ export class ReverseGeocodeCommand extends $Command diff --git a/clients/client-geo-places/src/commands/SearchNearbyCommand.ts b/clients/client-geo-places/src/commands/SearchNearbyCommand.ts index 9fb4d5398bc40..d59acc4d49d59 100644 --- a/clients/client-geo-places/src/commands/SearchNearbyCommand.ts +++ b/clients/client-geo-places/src/commands/SearchNearbyCommand.ts @@ -324,6 +324,7 @@ export interface SearchNearbyCommandOutput extends SearchNearbyResponse, __Metad * @throws {@link GeoPlacesServiceException} *

Base exception class for all service exceptions from GeoPlaces service.

* + * * @public */ export class SearchNearbyCommand extends $Command diff --git a/clients/client-geo-places/src/commands/SearchTextCommand.ts b/clients/client-geo-places/src/commands/SearchTextCommand.ts index 5c445df34ee59..f7c1ce2bf632e 100644 --- a/clients/client-geo-places/src/commands/SearchTextCommand.ts +++ b/clients/client-geo-places/src/commands/SearchTextCommand.ts @@ -315,6 +315,7 @@ export interface SearchTextCommandOutput extends SearchTextResponse, __MetadataB * @throws {@link GeoPlacesServiceException} *

Base exception class for all service exceptions from GeoPlaces service.

* + * * @public */ export class SearchTextCommand extends $Command diff --git a/clients/client-geo-places/src/commands/SuggestCommand.ts b/clients/client-geo-places/src/commands/SuggestCommand.ts index 8d48757fdacaa..01e3a8fb8808e 100644 --- a/clients/client-geo-places/src/commands/SuggestCommand.ts +++ b/clients/client-geo-places/src/commands/SuggestCommand.ts @@ -278,6 +278,7 @@ export interface SuggestCommandOutput extends SuggestResponse, __MetadataBearer * @throws {@link GeoPlacesServiceException} *

Base exception class for all service exceptions from GeoPlaces service.

* + * * @public */ export class SuggestCommand extends $Command diff --git a/clients/client-geo-routes/src/commands/CalculateIsolinesCommand.ts b/clients/client-geo-routes/src/commands/CalculateIsolinesCommand.ts index 31207f1a5a948..33fbae20d67a7 100644 --- a/clients/client-geo-routes/src/commands/CalculateIsolinesCommand.ts +++ b/clients/client-geo-routes/src/commands/CalculateIsolinesCommand.ts @@ -305,6 +305,7 @@ export interface CalculateIsolinesCommandOutput extends CalculateIsolinesRespons * @throws {@link GeoRoutesServiceException} *

Base exception class for all service exceptions from GeoRoutes service.

* + * * @public */ export class CalculateIsolinesCommand extends $Command diff --git a/clients/client-geo-routes/src/commands/CalculateRouteMatrixCommand.ts b/clients/client-geo-routes/src/commands/CalculateRouteMatrixCommand.ts index a2b08dcaabfd2..8333ea72aebe2 100644 --- a/clients/client-geo-routes/src/commands/CalculateRouteMatrixCommand.ts +++ b/clients/client-geo-routes/src/commands/CalculateRouteMatrixCommand.ts @@ -272,6 +272,7 @@ export interface CalculateRouteMatrixCommandOutput extends CalculateRouteMatrixR * @throws {@link GeoRoutesServiceException} *

Base exception class for all service exceptions from GeoRoutes service.

* + * * @public */ export class CalculateRouteMatrixCommand extends $Command diff --git a/clients/client-geo-routes/src/commands/CalculateRoutesCommand.ts b/clients/client-geo-routes/src/commands/CalculateRoutesCommand.ts index 81117ea4869bc..255082a4e76bc 100644 --- a/clients/client-geo-routes/src/commands/CalculateRoutesCommand.ts +++ b/clients/client-geo-routes/src/commands/CalculateRoutesCommand.ts @@ -960,6 +960,7 @@ export interface CalculateRoutesCommandOutput extends CalculateRoutesResponse, _ * @throws {@link GeoRoutesServiceException} *

Base exception class for all service exceptions from GeoRoutes service.

* + * * @public */ export class CalculateRoutesCommand extends $Command diff --git a/clients/client-geo-routes/src/commands/OptimizeWaypointsCommand.ts b/clients/client-geo-routes/src/commands/OptimizeWaypointsCommand.ts index 42113623bdbb9..dc760908d29e6 100644 --- a/clients/client-geo-routes/src/commands/OptimizeWaypointsCommand.ts +++ b/clients/client-geo-routes/src/commands/OptimizeWaypointsCommand.ts @@ -249,6 +249,7 @@ export interface OptimizeWaypointsCommandOutput extends OptimizeWaypointsRespons * @throws {@link GeoRoutesServiceException} *

Base exception class for all service exceptions from GeoRoutes service.

* + * * @public */ export class OptimizeWaypointsCommand extends $Command diff --git a/clients/client-geo-routes/src/commands/SnapToRoadsCommand.ts b/clients/client-geo-routes/src/commands/SnapToRoadsCommand.ts index 4e82c533a33d2..29a0694649cb5 100644 --- a/clients/client-geo-routes/src/commands/SnapToRoadsCommand.ts +++ b/clients/client-geo-routes/src/commands/SnapToRoadsCommand.ts @@ -131,6 +131,7 @@ export interface SnapToRoadsCommandOutput extends SnapToRoadsResponse, __Metadat * @throws {@link GeoRoutesServiceException} *

Base exception class for all service exceptions from GeoRoutes service.

* + * * @public */ export class SnapToRoadsCommand extends $Command diff --git a/clients/client-glacier/src/commands/AbortMultipartUploadCommand.ts b/clients/client-glacier/src/commands/AbortMultipartUploadCommand.ts index a9aca879bd828..34a9c6c32e4ad 100644 --- a/clients/client-glacier/src/commands/AbortMultipartUploadCommand.ts +++ b/clients/client-glacier/src/commands/AbortMultipartUploadCommand.ts @@ -85,20 +85,23 @@ export interface AbortMultipartUploadCommandOutput extends __MetadataBearer {} * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To abort a multipart upload identified by the upload ID * ```javascript * // The example deletes an in-progress multipart upload to a vault named my-vault: * const input = { - * "accountId": "-", - * "uploadId": "19gaRezEXAMPLES6Ry5YYdqthHOC_kGRCT03L9yetr220UmPtBYKk-OssZtLqyFu7sY1_lR7vgFuJV6NtcV5zpsJ", - * "vaultName": "my-vault" + * accountId: "-", + * uploadId: "19gaRezEXAMPLES6Ry5YYdqthHOC_kGRCT03L9yetr220UmPtBYKk-OssZtLqyFu7sY1_lR7vgFuJV6NtcV5zpsJ", + * vaultName: "my-vault" * }; * const command = new AbortMultipartUploadCommand(input); - * await client.send(command); - * // example id: f3d907f6-e71c-420c-8f71-502346a2c48a + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AbortMultipartUploadCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/AbortVaultLockCommand.ts b/clients/client-glacier/src/commands/AbortVaultLockCommand.ts index 86dcf94035fd8..38afdd2568ab7 100644 --- a/clients/client-glacier/src/commands/AbortVaultLockCommand.ts +++ b/clients/client-glacier/src/commands/AbortVaultLockCommand.ts @@ -80,19 +80,22 @@ export interface AbortVaultLockCommandOutput extends __MetadataBearer {} * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To abort a vault lock * ```javascript * // The example aborts the vault locking process if the vault lock is not in the Locked state for the vault named examplevault. * const input = { - * "accountId": "-", - * "vaultName": "examplevault" + * accountId: "-", + * vaultName: "examplevault" * }; * const command = new AbortVaultLockCommand(input); - * await client.send(command); - * // example id: to-abort-a-vault-lock-1481839357947 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AbortVaultLockCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/AddTagsToVaultCommand.ts b/clients/client-glacier/src/commands/AddTagsToVaultCommand.ts index 9ebcd1559291c..33299264e90f5 100644 --- a/clients/client-glacier/src/commands/AddTagsToVaultCommand.ts +++ b/clients/client-glacier/src/commands/AddTagsToVaultCommand.ts @@ -78,23 +78,26 @@ export interface AddTagsToVaultCommandOutput extends __MetadataBearer {} * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To add tags to a vault * ```javascript * // The example adds two tags to a my-vault. * const input = { - * "Tags": { - * "examplekey1": "examplevalue1", - * "examplekey2": "examplevalue2" + * Tags: { + * examplekey1: "examplevalue1", + * examplekey2: "examplevalue2" * }, - * "accountId": "-", - * "vaultName": "my-vault" + * accountId: "-", + * vaultName: "my-vault" * }; * const command = new AddTagsToVaultCommand(input); - * await client.send(command); - * // example id: add-tags-to-vault-post-tags-add-1481663457694 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AddTagsToVaultCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/CompleteMultipartUploadCommand.ts b/clients/client-glacier/src/commands/CompleteMultipartUploadCommand.ts index c50dae2de5628..17eb6933acd61 100644 --- a/clients/client-glacier/src/commands/CompleteMultipartUploadCommand.ts +++ b/clients/client-glacier/src/commands/CompleteMultipartUploadCommand.ts @@ -111,29 +111,29 @@ export interface CompleteMultipartUploadCommandOutput extends ArchiveCreationOut * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To complete a multipart upload * ```javascript * // The example completes a multipart upload for a 3 MiB archive. * const input = { - * "accountId": "-", - * "archiveSize": "3145728", - * "checksum": "9628195fcdbcbbe76cdde456d4646fa7de5f219fb39823836d81f0cc0e18aa67", - * "uploadId": "19gaRezEXAMPLES6Ry5YYdqthHOC_kGRCT03L9yetr220UmPtBYKk-OssZtLqyFu7sY1_lR7vgFuJV6NtcV5zpsJ", - * "vaultName": "my-vault" + * accountId: "-", + * archiveSize: "3145728", + * checksum: "9628195fcdbcbbe76cdde456d4646fa7de5f219fb39823836d81f0cc0e18aa67", + * uploadId: "19gaRezEXAMPLES6Ry5YYdqthHOC_kGRCT03L9yetr220UmPtBYKk-OssZtLqyFu7sY1_lR7vgFuJV6NtcV5zpsJ", + * vaultName: "my-vault" * }; * const command = new CompleteMultipartUploadCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "archiveId": "NkbByEejwEggmBz2fTHgJrg0XBoDfjP4q6iu87-TjhqG6eGoOY9Z8i1_AUyUsuhPAdTqLHy8pTl5nfCFJmDl2yEZONi5L26Omw12vcs01MNGntHEQL8MBfGlqrEXAMPLEArchiveId", - * "checksum": "9628195fcdbcbbe76cdde456d4646fa7de5f219fb39823836d81f0cc0e18aa67", - * "location": "/111122223333/vaults/my-vault/archives/NkbByEejwEggmBz2fTHgJrg0XBoDfjP4q6iu87-TjhqG6eGoOY9Z8i1_AUyUsuhPAdTqLHy8pTl5nfCFJmDl2yEZONi5L26Omw12vcs01MNGntHEQL8MBfGlqrEXAMPLEArchiveId" + * archiveId: "NkbByEejwEggmBz2fTHgJrg0XBoDfjP4q6iu87-TjhqG6eGoOY9Z8i1_AUyUsuhPAdTqLHy8pTl5nfCFJmDl2yEZONi5L26Omw12vcs01MNGntHEQL8MBfGlqrEXAMPLEArchiveId", + * checksum: "9628195fcdbcbbe76cdde456d4646fa7de5f219fb39823836d81f0cc0e18aa67", + * location: "/111122223333/vaults/my-vault/archives/NkbByEejwEggmBz2fTHgJrg0XBoDfjP4q6iu87-TjhqG6eGoOY9Z8i1_AUyUsuhPAdTqLHy8pTl5nfCFJmDl2yEZONi5L26Omw12vcs01MNGntHEQL8MBfGlqrEXAMPLEArchiveId" * } * *\/ - * // example id: 272aa0b8-e44c-4a64-add2-ad905a37984d * ``` * + * @public */ export class CompleteMultipartUploadCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/CompleteVaultLockCommand.ts b/clients/client-glacier/src/commands/CompleteVaultLockCommand.ts index 516e5b13573c7..ed2f3436dea83 100644 --- a/clients/client-glacier/src/commands/CompleteVaultLockCommand.ts +++ b/clients/client-glacier/src/commands/CompleteVaultLockCommand.ts @@ -81,20 +81,23 @@ export interface CompleteVaultLockCommandOutput extends __MetadataBearer {} * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To complete a vault lock * ```javascript * // The example completes the vault locking process by transitioning the vault lock from the InProgress state to the Locked state. * const input = { - * "accountId": "-", - * "lockId": "AE863rKkWZU53SLW5be4DUcW", - * "vaultName": "example-vault" + * accountId: "-", + * lockId: "AE863rKkWZU53SLW5be4DUcW", + * vaultName: "example-vault" * }; * const command = new CompleteVaultLockCommand(input); - * await client.send(command); - * // example id: to-complete-a-vault-lock-1481839721312 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CompleteVaultLockCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/CreateVaultCommand.ts b/clients/client-glacier/src/commands/CreateVaultCommand.ts index db8ed47b2f5bb..030cbffe32e3e 100644 --- a/clients/client-glacier/src/commands/CreateVaultCommand.ts +++ b/clients/client-glacier/src/commands/CreateVaultCommand.ts @@ -91,24 +91,24 @@ export interface CreateVaultCommandOutput extends CreateVaultOutput, __MetadataB * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To create a new vault * ```javascript * // The following example creates a new vault named my-vault. * const input = { - * "accountId": "-", - * "vaultName": "my-vault" + * accountId: "-", + * vaultName: "my-vault" * }; * const command = new CreateVaultCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "location": "/111122223333/vaults/my-vault" + * location: "/111122223333/vaults/my-vault" * } * *\/ - * // example id: 1dc0313d-ace1-4e6c-9d13-1ec7813b14b7 * ``` * + * @public */ export class CreateVaultCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/DeleteArchiveCommand.ts b/clients/client-glacier/src/commands/DeleteArchiveCommand.ts index c8221669079b9..db2e8f62669b9 100644 --- a/clients/client-glacier/src/commands/DeleteArchiveCommand.ts +++ b/clients/client-glacier/src/commands/DeleteArchiveCommand.ts @@ -94,20 +94,23 @@ export interface DeleteArchiveCommandOutput extends __MetadataBearer {} * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To delete an archive * ```javascript * // The example deletes the archive specified by the archive ID. * const input = { - * "accountId": "-", - * "archiveId": "NkbByEejwEggmBz2fTHgJrg0XBoDfjP4q6iu87-TjhqG6eGoOY9Z8i1_AUyUsuhPAdTqLHy8pTl5nfCFJmDl2yEZONi5L26Omw12vcs01MNGntHEQL8MBfGlqrEXAMPLEArchiveId", - * "vaultName": "examplevault" + * accountId: "-", + * archiveId: "NkbByEejwEggmBz2fTHgJrg0XBoDfjP4q6iu87-TjhqG6eGoOY9Z8i1_AUyUsuhPAdTqLHy8pTl5nfCFJmDl2yEZONi5L26Omw12vcs01MNGntHEQL8MBfGlqrEXAMPLEArchiveId", + * vaultName: "examplevault" * }; * const command = new DeleteArchiveCommand(input); - * await client.send(command); - * // example id: delete-archive-1481667809463 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteArchiveCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/DeleteVaultAccessPolicyCommand.ts b/clients/client-glacier/src/commands/DeleteVaultAccessPolicyCommand.ts index 83dd6871bf405..757631d2089cc 100644 --- a/clients/client-glacier/src/commands/DeleteVaultAccessPolicyCommand.ts +++ b/clients/client-glacier/src/commands/DeleteVaultAccessPolicyCommand.ts @@ -73,19 +73,22 @@ export interface DeleteVaultAccessPolicyCommandOutput extends __MetadataBearer { * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To delete the vault access policy * ```javascript * // The example deletes the access policy associated with the vault named examplevault. * const input = { - * "accountId": "-", - * "vaultName": "examplevault" + * accountId: "-", + * vaultName: "examplevault" * }; * const command = new DeleteVaultAccessPolicyCommand(input); - * await client.send(command); - * // example id: to-delete-the-vault-access-policy-1481840424677 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteVaultAccessPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/DeleteVaultCommand.ts b/clients/client-glacier/src/commands/DeleteVaultCommand.ts index e0c2f40124450..5f73024d54480 100644 --- a/clients/client-glacier/src/commands/DeleteVaultCommand.ts +++ b/clients/client-glacier/src/commands/DeleteVaultCommand.ts @@ -86,19 +86,22 @@ export interface DeleteVaultCommandOutput extends __MetadataBearer {} * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To delete a vault * ```javascript * // The example deletes a vault named my-vault: * const input = { - * "accountId": "-", - * "vaultName": "my-vault" + * accountId: "-", + * vaultName: "my-vault" * }; * const command = new DeleteVaultCommand(input); - * await client.send(command); - * // example id: 7f7f000b-4bdb-40d2-91e6-7c902f60f60f + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteVaultCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/DeleteVaultNotificationsCommand.ts b/clients/client-glacier/src/commands/DeleteVaultNotificationsCommand.ts index 43f2acf81aa43..dec8e10cdba12 100644 --- a/clients/client-glacier/src/commands/DeleteVaultNotificationsCommand.ts +++ b/clients/client-glacier/src/commands/DeleteVaultNotificationsCommand.ts @@ -79,19 +79,22 @@ export interface DeleteVaultNotificationsCommandOutput extends __MetadataBearer * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To delete the notification configuration set for a vault * ```javascript * // The example deletes the notification configuration set for the vault named examplevault. * const input = { - * "accountId": "-", - * "vaultName": "examplevault" + * accountId: "-", + * vaultName: "examplevault" * }; * const command = new DeleteVaultNotificationsCommand(input); - * await client.send(command); - * // example id: to-delete-the-notification-configuration-set-for-a-vault-1481840646090 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteVaultNotificationsCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/DescribeJobCommand.ts b/clients/client-glacier/src/commands/DescribeJobCommand.ts index 2e1bf188cf81e..a37097163a198 100644 --- a/clients/client-glacier/src/commands/DescribeJobCommand.ts +++ b/clients/client-glacier/src/commands/DescribeJobCommand.ts @@ -171,33 +171,33 @@ export interface DescribeJobCommandOutput extends GlacierJobDescription, __Metad * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To get information about a previously initiated job * ```javascript * // The example returns information about the previously initiated job specified by the job ID. * const input = { - * "accountId": "-", - * "jobId": "zbxcm3Z_3z5UkoroF7SuZKrxgGoDc3RloGduS7Eg-RO47Yc6FxsdGBgf_Q2DK5Ejh18CnTS5XW4_XqlNHS61dsO4Cn", - * "vaultName": "my-vault" + * accountId: "-", + * jobId: "zbxcm3Z_3z5UkoroF7SuZKrxgGoDc3RloGduS7Eg-RO47Yc6FxsdGBgf_Q2DK5Ejh18CnTS5XW4_XqlNHS61dsO4Cn", + * vaultName: "my-vault" * }; * const command = new DescribeJobCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Action": "InventoryRetrieval", - * "Completed": false, - * "CreationDate": "2015-07-17T20:23:41.616Z", - * "InventoryRetrievalParameters": { - * "Format": "JSON" + * Action: "InventoryRetrieval", + * Completed: false, + * CreationDate: "2015-07-17T20:23:41.616Z", + * InventoryRetrievalParameters: { + * Format: "JSON" * }, - * "JobId": "zbxcm3Z_3z5UkoroF7SuZKrxgGoDc3RloGduS7Eg-RO47Yc6FxsdGBgf_Q2DK5Ejh18CnTS5XW4_XqlNHS61dsO4CnMW", - * "StatusCode": "InProgress", - * "VaultARN": "arn:aws:glacier:us-west-2:0123456789012:vaults/my-vault" + * JobId: "zbxcm3Z_3z5UkoroF7SuZKrxgGoDc3RloGduS7Eg-RO47Yc6FxsdGBgf_Q2DK5Ejh18CnTS5XW4_XqlNHS61dsO4CnMW", + * StatusCode: "InProgress", + * VaultARN: "arn:aws:glacier:us-west-2:0123456789012:vaults/my-vault" * } * *\/ - * // example id: to-get-information-about-a-job-you-previously-initiated-1481840928592 * ``` * + * @public */ export class DescribeJobCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/DescribeVaultCommand.ts b/clients/client-glacier/src/commands/DescribeVaultCommand.ts index 515ba8f804a5a..e0764f979c42a 100644 --- a/clients/client-glacier/src/commands/DescribeVaultCommand.ts +++ b/clients/client-glacier/src/commands/DescribeVaultCommand.ts @@ -91,28 +91,28 @@ export interface DescribeVaultCommandOutput extends DescribeVaultOutput, __Metad * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To retrieve information about a vault * ```javascript * // The example retrieves data about a vault named my-vault. * const input = { - * "accountId": "-", - * "vaultName": "my-vault" + * accountId: "-", + * vaultName: "my-vault" * }; * const command = new DescribeVaultCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CreationDate": "2016-09-23T19:27:18.665Z", - * "NumberOfArchives": 0, - * "SizeInBytes": 0, - * "VaultARN": "arn:aws:glacier:us-west-2:111122223333:vaults/my-vault", - * "VaultName": "my-vault" + * CreationDate: "2016-09-23T19:27:18.665Z", + * NumberOfArchives: 0, + * SizeInBytes: 0, + * VaultARN: "arn:aws:glacier:us-west-2:111122223333:vaults/my-vault", + * VaultName: "my-vault" * } * *\/ - * // example id: 3c1c6e9d-f5a2-427a-aa6a-f439eacfc05f * ``` * + * @public */ export class DescribeVaultCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/GetDataRetrievalPolicyCommand.ts b/clients/client-glacier/src/commands/GetDataRetrievalPolicyCommand.ts index dd88812f75d02..b30c695971203 100644 --- a/clients/client-glacier/src/commands/GetDataRetrievalPolicyCommand.ts +++ b/clients/client-glacier/src/commands/GetDataRetrievalPolicyCommand.ts @@ -73,30 +73,30 @@ export interface GetDataRetrievalPolicyCommandOutput extends GetDataRetrievalPol * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To get the current data retrieval policy for an account * ```javascript * // The example returns the current data retrieval policy for the account. * const input = { - * "accountId": "-" + * accountId: "-" * }; * const command = new GetDataRetrievalPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Policy": { - * "Rules": [ + * Policy: { + * Rules: [ * { - * "BytesPerHour": 10737418240, - * "Strategy": "BytesPerHour" + * BytesPerHour: 10737418240, + * Strategy: "BytesPerHour" * } * ] * } * } * *\/ - * // example id: to-get-the-current-data-retrieval-policy-for-the-account-1481851580439 * ``` * + * @public */ export class GetDataRetrievalPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/GetJobOutputCommand.ts b/clients/client-glacier/src/commands/GetJobOutputCommand.ts index c6f95359f619b..467879ef42b27 100644 --- a/clients/client-glacier/src/commands/GetJobOutputCommand.ts +++ b/clients/client-glacier/src/commands/GetJobOutputCommand.ts @@ -81,6 +81,11 @@ export interface GetJobOutputCommandOutput extends Omit", // see \@smithy/types -> StreamingBlobPayloadOutputTypes * // checksum: "STRING_VALUE", @@ -115,29 +120,34 @@ export interface GetJobOutputCommandOutput extends OmitBase exception class for all service exceptions from Glacier service.

* - * @public + * * @example To get the output of a previously initiated job * ```javascript * // The example downloads the output of a previously initiated inventory retrieval job that is identified by the job ID. * const input = { - * "accountId": "-", - * "jobId": "zbxcm3Z_3z5UkoroF7SuZKrxgGoDc3RloGduS7Eg-RO47Yc6FxsdGBgf_Q2DK5Ejh18CnTS5XW4_XqlNHS61dsO4CnMW", - * "range": "", - * "vaultName": "my-vaul" + * accountId: "-", + * jobId: "zbxcm3Z_3z5UkoroF7SuZKrxgGoDc3RloGduS7Eg-RO47Yc6FxsdGBgf_Q2DK5Ejh18CnTS5XW4_XqlNHS61dsO4CnMW", + * range: "", + * vaultName: "my-vaul" * }; * const command = new GetJobOutputCommand(input); * const response = await client.send(command); - * /* response == + * // consume or destroy the stream to free the socket. + * const bytes = await response.body.transformToByteArray(); + * // const str = await response.body.transformToString(); + * // response.body.destroy(); // only applicable to Node.js Readable streams. + * + * /* response is * { - * "acceptRanges": "bytes", - * "body": "inventory-data", - * "contentType": "application/json", - * "status": 200 + * acceptRanges: "bytes", + * body: "inventory-data", + * contentType: "application/json", + * status: 200 * } * *\/ - * // example id: to-get-the-output-of-a-previously-initiated-job-1481848550859 * ``` * + * @public */ export class GetJobOutputCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/GetVaultAccessPolicyCommand.ts b/clients/client-glacier/src/commands/GetVaultAccessPolicyCommand.ts index b2773c65a4104..b606fc0b47e56 100644 --- a/clients/client-glacier/src/commands/GetVaultAccessPolicyCommand.ts +++ b/clients/client-glacier/src/commands/GetVaultAccessPolicyCommand.ts @@ -76,26 +76,26 @@ export interface GetVaultAccessPolicyCommandOutput extends GetVaultAccessPolicyO * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To get the access-policy set on the vault * ```javascript * // The example retrieves the access-policy set on the vault named example-vault. * const input = { - * "accountId": "-", - * "vaultName": "example-vault" + * accountId: "-", + * vaultName: "example-vault" * }; * const command = new GetVaultAccessPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "policy": { - * "Policy": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"Define-owner-access-rights\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::999999999999:root\"},\"Action\":\"glacier:DeleteArchive\",\"Resource\":\"arn:aws:glacier:us-west-2:999999999999:vaults/examplevault\"}]}" + * policy: { + * Policy: `{"Version":"2012-10-17","Statement":[{"Sid":"Define-owner-access-rights","Effect":"Allow","Principal":{"AWS":"arn:aws:iam::999999999999:root"},"Action":"glacier:DeleteArchive","Resource":"arn:aws:glacier:us-west-2:999999999999:vaults/examplevault"}]}` * } * } * *\/ - * // example id: to--get-the-access-policy-set-on-the-vault-1481936004590 * ``` * + * @public */ export class GetVaultAccessPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/GetVaultLockCommand.ts b/clients/client-glacier/src/commands/GetVaultLockCommand.ts index 18c422a6fbafe..7ed8bb5b3ab92 100644 --- a/clients/client-glacier/src/commands/GetVaultLockCommand.ts +++ b/clients/client-glacier/src/commands/GetVaultLockCommand.ts @@ -99,27 +99,27 @@ export interface GetVaultLockCommandOutput extends GetVaultLockOutput, __Metadat * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To retrieve vault lock-policy related attributes that are set on a vault * ```javascript * // The example retrieves the attributes from the lock-policy subresource set on the vault named examplevault. * const input = { - * "accountId": "-", - * "vaultName": "examplevault" + * accountId: "-", + * vaultName: "examplevault" * }; * const command = new GetVaultLockCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CreationDate": "exampledate", - * "ExpirationDate": "exampledate", - * "Policy": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"Define-vault-lock\",\"Effect\":\"Deny\",\"Principal\":{\"AWS\":\"arn:aws:iam::999999999999:root\"},\"Action\":\"glacier:DeleteArchive\",\"Resource\":\"arn:aws:glacier:us-west-2:999999999999:vaults/examplevault\",\"Condition\":{\"NumericLessThanEquals\":{\"glacier:ArchiveAgeinDays\":\"365\"}}}]}", - * "State": "InProgress" + * CreationDate: "exampledate", + * ExpirationDate: "exampledate", + * Policy: `{"Version":"2012-10-17","Statement":[{"Sid":"Define-vault-lock","Effect":"Deny","Principal":{"AWS":"arn:aws:iam::999999999999:root"},"Action":"glacier:DeleteArchive","Resource":"arn:aws:glacier:us-west-2:999999999999:vaults/examplevault","Condition":{"NumericLessThanEquals":{"glacier:ArchiveAgeinDays":"365"}}}]}`, + * State: "InProgress" * } * *\/ - * // example id: to-retrieve-vault-lock-policy-related-attributes-that-are-set-on-a-vault-1481851363097 * ``` * + * @public */ export class GetVaultLockCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/GetVaultNotificationsCommand.ts b/clients/client-glacier/src/commands/GetVaultNotificationsCommand.ts index 5e381d1cc99b4..7651a4c84e3d8 100644 --- a/clients/client-glacier/src/commands/GetVaultNotificationsCommand.ts +++ b/clients/client-glacier/src/commands/GetVaultNotificationsCommand.ts @@ -89,30 +89,30 @@ export interface GetVaultNotificationsCommandOutput extends GetVaultNotification * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To get the notification-configuration for the specified vault * ```javascript * // The example retrieves the notification-configuration for the vault named my-vault. * const input = { - * "accountId": "-", - * "vaultName": "my-vault" + * accountId: "-", + * vaultName: "my-vault" * }; * const command = new GetVaultNotificationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "vaultNotificationConfig": { - * "Events": [ + * vaultNotificationConfig: { + * Events: [ * "InventoryRetrievalCompleted", * "ArchiveRetrievalCompleted" * ], - * "SNSTopic": "arn:aws:sns:us-west-2:0123456789012:my-vault" + * SNSTopic: "arn:aws:sns:us-west-2:0123456789012:my-vault" * } * } * *\/ - * // example id: to-get-the-notification-configuration-for-the-specified-vault-1481918746677 * ``` * + * @public */ export class GetVaultNotificationsCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/InitiateJobCommand.ts b/clients/client-glacier/src/commands/InitiateJobCommand.ts index 8dd5f55171753..58d6d16b93488 100644 --- a/clients/client-glacier/src/commands/InitiateJobCommand.ts +++ b/clients/client-glacier/src/commands/InitiateJobCommand.ts @@ -153,31 +153,31 @@ export interface InitiateJobCommandOutput extends InitiateJobOutput, __MetadataB * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To initiate an inventory-retrieval job * ```javascript * // The example initiates an inventory-retrieval job for the vault named examplevault. * const input = { - * "accountId": "-", - * "jobParameters": { - * "Description": "My inventory job", - * "Format": "CSV", - * "SNSTopic": "arn:aws:sns:us-west-2:111111111111:Glacier-InventoryRetrieval-topic-Example", - * "Type": "inventory-retrieval" + * accountId: "-", + * jobParameters: { + * Description: "My inventory job", + * Format: "CSV", + * SNSTopic: "arn:aws:sns:us-west-2:111111111111:Glacier-InventoryRetrieval-topic-Example", + * Type: "inventory-retrieval" * }, - * "vaultName": "examplevault" + * vaultName: "examplevault" * }; * const command = new InitiateJobCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "jobId": " HkF9p6o7yjhFx-K3CGl6fuSm6VzW9T7esGQfco8nUXVYwS0jlb5gq1JZ55yHgt5vP54ZShjoQzQVVh7vEXAMPLEjobID", - * "location": "/111122223333/vaults/examplevault/jobs/HkF9p6o7yjhFx-K3CGl6fuSm6VzW9T7esGQfco8nUXVYwS0jlb5gq1JZ55yHgt5vP54ZShjoQzQVVh7vEXAMPLEjobID" + * jobId: " HkF9p6o7yjhFx-K3CGl6fuSm6VzW9T7esGQfco8nUXVYwS0jlb5gq1JZ55yHgt5vP54ZShjoQzQVVh7vEXAMPLEjobID", + * location: "/111122223333/vaults/examplevault/jobs/HkF9p6o7yjhFx-K3CGl6fuSm6VzW9T7esGQfco8nUXVYwS0jlb5gq1JZ55yHgt5vP54ZShjoQzQVVh7vEXAMPLEjobID" * } * *\/ - * // example id: to-initiate-an-inventory-retrieval-job-1482186883826 * ``` * + * @public */ export class InitiateJobCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/InitiateMultipartUploadCommand.ts b/clients/client-glacier/src/commands/InitiateMultipartUploadCommand.ts index d59fc83437776..5ef27bc6db6c5 100644 --- a/clients/client-glacier/src/commands/InitiateMultipartUploadCommand.ts +++ b/clients/client-glacier/src/commands/InitiateMultipartUploadCommand.ts @@ -105,26 +105,26 @@ export interface InitiateMultipartUploadCommandOutput extends InitiateMultipartU * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To initiate a multipart upload * ```javascript * // The example initiates a multipart upload to a vault named my-vault with a part size of 1 MiB (1024 x 1024 bytes) per file. * const input = { - * "accountId": "-", - * "partSize": "1048576", - * "vaultName": "my-vault" + * accountId: "-", + * partSize: "1048576", + * vaultName: "my-vault" * }; * const command = new InitiateMultipartUploadCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "location": "/111122223333/vaults/my-vault/multipart-uploads/19gaRezEXAMPLES6Ry5YYdqthHOC_kGRCT03L9yetr220UmPtBYKk-OssZtLqyFu7sY1_lR7vgFuJV6NtcV5zpsJ", - * "uploadId": "19gaRezEXAMPLES6Ry5YYdqthHOC_kGRCT03L9yetr220UmPtBYKk-OssZtLqyFu7sY1_lR7vgFuJV6NtcV5zpsJ" + * location: "/111122223333/vaults/my-vault/multipart-uploads/19gaRezEXAMPLES6Ry5YYdqthHOC_kGRCT03L9yetr220UmPtBYKk-OssZtLqyFu7sY1_lR7vgFuJV6NtcV5zpsJ", + * uploadId: "19gaRezEXAMPLES6Ry5YYdqthHOC_kGRCT03L9yetr220UmPtBYKk-OssZtLqyFu7sY1_lR7vgFuJV6NtcV5zpsJ" * } * *\/ - * // example id: 72f2db19-3d93-4c74-b2ed-38703baacf49 * ``` * + * @public */ export class InitiateMultipartUploadCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/InitiateVaultLockCommand.ts b/clients/client-glacier/src/commands/InitiateVaultLockCommand.ts index fae70897a5c28..658bcae2afa7c 100644 --- a/clients/client-glacier/src/commands/InitiateVaultLockCommand.ts +++ b/clients/client-glacier/src/commands/InitiateVaultLockCommand.ts @@ -106,27 +106,27 @@ export interface InitiateVaultLockCommandOutput extends InitiateVaultLockOutput, * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To initiate the vault locking process * ```javascript * // The example initiates the vault locking process for the vault named my-vault. * const input = { - * "accountId": "-", - * "policy": { - * "Policy": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"Define-vault-lock\",\"Effect\":\"Deny\",\"Principal\":{\"AWS\":\"arn:aws:iam::999999999999:root\"},\"Action\":\"glacier:DeleteArchive\",\"Resource\":\"arn:aws:glacier:us-west-2:999999999999:vaults/examplevault\",\"Condition\":{\"NumericLessThanEquals\":{\"glacier:ArchiveAgeinDays\":\"365\"}}}]}" + * accountId: "-", + * policy: { + * Policy: `{"Version":"2012-10-17","Statement":[{"Sid":"Define-vault-lock","Effect":"Deny","Principal":{"AWS":"arn:aws:iam::999999999999:root"},"Action":"glacier:DeleteArchive","Resource":"arn:aws:glacier:us-west-2:999999999999:vaults/examplevault","Condition":{"NumericLessThanEquals":{"glacier:ArchiveAgeinDays":"365"}}}]}` * }, - * "vaultName": "my-vault" + * vaultName: "my-vault" * }; * const command = new InitiateVaultLockCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "lockId": "AE863rKkWZU53SLW5be4DUcW" + * lockId: "AE863rKkWZU53SLW5be4DUcW" * } * *\/ - * // example id: to-initiate-the-vault-locking-process-1481919693394 * ``` * + * @public */ export class InitiateVaultLockCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/ListJobsCommand.ts b/clients/client-glacier/src/commands/ListJobsCommand.ts index 73cfab7da9275..05e9fb5bddd01 100644 --- a/clients/client-glacier/src/commands/ListJobsCommand.ts +++ b/clients/client-glacier/src/commands/ListJobsCommand.ts @@ -191,51 +191,51 @@ export interface ListJobsCommandOutput extends ListJobsOutput, __MetadataBearer * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To list jobs for a vault * ```javascript * // The example lists jobs for the vault named my-vault. * const input = { - * "accountId": "-", - * "vaultName": "my-vault" + * accountId: "-", + * vaultName: "my-vault" * }; * const command = new ListJobsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "JobList": [ + * JobList: [ * { - * "Action": "ArchiveRetrieval", - * "ArchiveId": "kKB7ymWJVpPSwhGP6ycSOAekp9ZYe_--zM_mw6k76ZFGEIWQX-ybtRDvc2VkPSDtfKmQrj0IRQLSGsNuDp-AJVlu2ccmDSyDUmZwKbwbpAdGATGDiB3hHO0bjbGehXTcApVud_wyDw", - * "ArchiveSHA256TreeHash": "9628195fcdbcbbe76cdde932d4646fa7de5f219fb39823836d81f0cc0e18aa67", - * "ArchiveSizeInBytes": 3145728, - * "Completed": false, - * "CreationDate": "2015-07-17T21:16:13.840Z", - * "JobDescription": "Retrieve archive on 2015-07-17", - * "JobId": "l7IL5-EkXyEY9Ws95fClzIbk2O5uLYaFdAYOi-azsX_Z8V6NH4yERHzars8wTKYQMX6nBDI9cMNHzyZJO59-8N9aHWav", - * "RetrievalByteRange": "0-3145727", - * "SHA256TreeHash": "9628195fcdbcbbe76cdde932d4646fa7de5f219fb39823836d81f0cc0e18aa67", - * "SNSTopic": "arn:aws:sns:us-west-2:0123456789012:my-vault", - * "StatusCode": "InProgress", - * "VaultARN": "arn:aws:glacier:us-west-2:0123456789012:vaults/my-vault" + * Action: "ArchiveRetrieval", + * ArchiveId: "kKB7ymWJVpPSwhGP6ycSOAekp9ZYe_--zM_mw6k76ZFGEIWQX-ybtRDvc2VkPSDtfKmQrj0IRQLSGsNuDp-AJVlu2ccmDSyDUmZwKbwbpAdGATGDiB3hHO0bjbGehXTcApVud_wyDw", + * ArchiveSHA256TreeHash: "9628195fcdbcbbe76cdde932d4646fa7de5f219fb39823836d81f0cc0e18aa67", + * ArchiveSizeInBytes: 3145728, + * Completed: false, + * CreationDate: "2015-07-17T21:16:13.840Z", + * JobDescription: "Retrieve archive on 2015-07-17", + * JobId: "l7IL5-EkXyEY9Ws95fClzIbk2O5uLYaFdAYOi-azsX_Z8V6NH4yERHzars8wTKYQMX6nBDI9cMNHzyZJO59-8N9aHWav", + * RetrievalByteRange: "0-3145727", + * SHA256TreeHash: "9628195fcdbcbbe76cdde932d4646fa7de5f219fb39823836d81f0cc0e18aa67", + * SNSTopic: "arn:aws:sns:us-west-2:0123456789012:my-vault", + * StatusCode: "InProgress", + * VaultARN: "arn:aws:glacier:us-west-2:0123456789012:vaults/my-vault" * }, * { - * "Action": "InventoryRetrieval", - * "Completed": false, - * "CreationDate": "2015-07-17T20:23:41.616Z", - * "InventoryRetrievalParameters": { - * "Format": "JSON" + * Action: "InventoryRetrieval", + * Completed: false, + * CreationDate: "2015-07-17T20:23:41.616Z", + * InventoryRetrievalParameters: { + * Format: "JSON" * }, - * "JobId": "zbxcm3Z_3z5UkoroF7SuZKrxgGoDc3RloGduS7Eg-RO47Yc6FxsdGBgf_Q2DK5Ejh18CnTS5XW4_XqlNHS61dsO4CnMW", - * "StatusCode": "InProgress", - * "VaultARN": "arn:aws:glacier:us-west-2:0123456789012:vaults/my-vault" + * JobId: "zbxcm3Z_3z5UkoroF7SuZKrxgGoDc3RloGduS7Eg-RO47Yc6FxsdGBgf_Q2DK5Ejh18CnTS5XW4_XqlNHS61dsO4CnMW", + * StatusCode: "InProgress", + * VaultARN: "arn:aws:glacier:us-west-2:0123456789012:vaults/my-vault" * } * ] * } * *\/ - * // example id: to-list-jobs-for-a-vault-1481920530537 * ``` * + * @public */ export class ListJobsCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/ListMultipartUploadsCommand.ts b/clients/client-glacier/src/commands/ListMultipartUploadsCommand.ts index 76580d4a6131a..bb43a88338524 100644 --- a/clients/client-glacier/src/commands/ListMultipartUploadsCommand.ts +++ b/clients/client-glacier/src/commands/ListMultipartUploadsCommand.ts @@ -105,47 +105,47 @@ export interface ListMultipartUploadsCommandOutput extends ListMultipartUploadsO * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To list all the in-progress multipart uploads for a vault * ```javascript * // The example lists all the in-progress multipart uploads for the vault named examplevault. * const input = { - * "accountId": "-", - * "vaultName": "examplevault" + * accountId: "-", + * vaultName: "examplevault" * }; * const command = new ListMultipartUploadsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "null", - * "UploadsList": [ + * Marker: "null", + * UploadsList: [ * { - * "ArchiveDescription": "archive 1", - * "CreationDate": "2012-03-19T23:20:59.130Z", - * "MultipartUploadId": "xsQdFIRsfJr20CW2AbZBKpRZAFTZSJIMtL2hYf8mvp8dM0m4RUzlaqoEye6g3h3ecqB_zqwB7zLDMeSWhwo65re4C4Ev", - * "PartSizeInBytes": 4194304, - * "VaultARN": "arn:aws:glacier:us-west-2:012345678901:vaults/examplevault" + * ArchiveDescription: "archive 1", + * CreationDate: "2012-03-19T23:20:59.130Z", + * MultipartUploadId: "xsQdFIRsfJr20CW2AbZBKpRZAFTZSJIMtL2hYf8mvp8dM0m4RUzlaqoEye6g3h3ecqB_zqwB7zLDMeSWhwo65re4C4Ev", + * PartSizeInBytes: 4194304, + * VaultARN: "arn:aws:glacier:us-west-2:012345678901:vaults/examplevault" * }, * { - * "ArchiveDescription": "archive 2", - * "CreationDate": "2012-04-01T15:00:00.000Z", - * "MultipartUploadId": "nPyGOnyFcx67qqX7E-0tSGiRi88hHMOwOxR-_jNyM6RjVMFfV29lFqZ3rNsSaWBugg6OP92pRtufeHdQH7ClIpSF6uJc", - * "PartSizeInBytes": 4194304, - * "VaultARN": "arn:aws:glacier:us-west-2:012345678901:vaults/examplevault" + * ArchiveDescription: "archive 2", + * CreationDate: "2012-04-01T15:00:00.000Z", + * MultipartUploadId: "nPyGOnyFcx67qqX7E-0tSGiRi88hHMOwOxR-_jNyM6RjVMFfV29lFqZ3rNsSaWBugg6OP92pRtufeHdQH7ClIpSF6uJc", + * PartSizeInBytes: 4194304, + * VaultARN: "arn:aws:glacier:us-west-2:012345678901:vaults/examplevault" * }, * { - * "ArchiveDescription": "archive 3", - * "CreationDate": "2012-03-20T17:03:43.221Z", - * "MultipartUploadId": "qt-RBst_7yO8gVIonIBsAxr2t-db0pE4s8MNeGjKjGdNpuU-cdSAcqG62guwV9r5jh5mLyFPzFEitTpNE7iQfHiu1XoV", - * "PartSizeInBytes": 4194304, - * "VaultARN": "arn:aws:glacier:us-west-2:012345678901:vaults/examplevault" + * ArchiveDescription: "archive 3", + * CreationDate: "2012-03-20T17:03:43.221Z", + * MultipartUploadId: "qt-RBst_7yO8gVIonIBsAxr2t-db0pE4s8MNeGjKjGdNpuU-cdSAcqG62guwV9r5jh5mLyFPzFEitTpNE7iQfHiu1XoV", + * PartSizeInBytes: 4194304, + * VaultARN: "arn:aws:glacier:us-west-2:012345678901:vaults/examplevault" * } * ] * } * *\/ - * // example id: to-list-all-the-in-progress-multipart-uploads-for-a-vault-1481935250590 * ``` * + * @public */ export class ListMultipartUploadsCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/ListPartsCommand.ts b/clients/client-glacier/src/commands/ListPartsCommand.ts index bce9ef0f2c977..0c38b5c58b17a 100644 --- a/clients/client-glacier/src/commands/ListPartsCommand.ts +++ b/clients/client-glacier/src/commands/ListPartsCommand.ts @@ -104,40 +104,40 @@ export interface ListPartsCommandOutput extends ListPartsOutput, __MetadataBeare * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To list the parts of an archive that have been uploaded in a multipart upload * ```javascript * // The example lists all the parts of a multipart upload. * const input = { - * "accountId": "-", - * "uploadId": "OW2fM5iVylEpFEMM9_HpKowRapC3vn5sSL39_396UW9zLFUWVrnRHaPjUJddQ5OxSHVXjYtrN47NBZ-khxOjyEXAMPLE", - * "vaultName": "examplevault" + * accountId: "-", + * uploadId: "OW2fM5iVylEpFEMM9_HpKowRapC3vn5sSL39_396UW9zLFUWVrnRHaPjUJddQ5OxSHVXjYtrN47NBZ-khxOjyEXAMPLE", + * vaultName: "examplevault" * }; * const command = new ListPartsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ArchiveDescription": "archive description", - * "CreationDate": "2012-03-20T17:03:43.221Z", - * "Marker": "null", - * "MultipartUploadId": "OW2fM5iVylEpFEMM9_HpKowRapC3vn5sSL39_396UW9zLFUWVrnRHaPjUJddQ5OxSHVXjYtrN47NBZ-khxOjyEXAMPLE", - * "PartSizeInBytes": 4194304, - * "Parts": [ + * ArchiveDescription: "archive description", + * CreationDate: "2012-03-20T17:03:43.221Z", + * Marker: "null", + * MultipartUploadId: "OW2fM5iVylEpFEMM9_HpKowRapC3vn5sSL39_396UW9zLFUWVrnRHaPjUJddQ5OxSHVXjYtrN47NBZ-khxOjyEXAMPLE", + * PartSizeInBytes: 4194304, + * Parts: [ * { - * "RangeInBytes": "0-4194303", - * "SHA256TreeHash": "01d34dabf7be316472c93b1ef80721f5d4" + * RangeInBytes: "0-4194303", + * SHA256TreeHash: "01d34dabf7be316472c93b1ef80721f5d4" * }, * { - * "RangeInBytes": "4194304-8388607", - * "SHA256TreeHash": "0195875365afda349fc21c84c099987164" + * RangeInBytes: "4194304-8388607", + * SHA256TreeHash: "0195875365afda349fc21c84c099987164" * } * ], - * "VaultARN": "arn:aws:glacier:us-west-2:012345678901:vaults/demo1-vault" + * VaultARN: "arn:aws:glacier:us-west-2:012345678901:vaults/demo1-vault" * } * *\/ - * // example id: to-list-the-parts-of-an-archive-that-have-been-uploaded-in-a-multipart-upload-1481921767590 * ``` * + * @public */ export class ListPartsCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/ListProvisionedCapacityCommand.ts b/clients/client-glacier/src/commands/ListProvisionedCapacityCommand.ts index 380c8b482ff92..6df7fc818144e 100644 --- a/clients/client-glacier/src/commands/ListProvisionedCapacityCommand.ts +++ b/clients/client-glacier/src/commands/ListProvisionedCapacityCommand.ts @@ -71,34 +71,34 @@ export interface ListProvisionedCapacityCommandOutput extends ListProvisionedCap * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To list the provisioned capacity units for an account * ```javascript * // The example lists the provisioned capacity units for an account. * const input = { - * "accountId": "-" + * accountId: "-" * }; * const command = new ListProvisionedCapacityCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ProvisionedCapacityList": [ + * ProvisionedCapacityList: [ * { - * "CapacityId": "zSaq7NzHFQDANTfQkDen4V7z", - * "ExpirationDate": "2016-12-12T00:00:00.000Z", - * "StartDate": "2016-11-11T20:11:51.095Z" + * CapacityId: "zSaq7NzHFQDANTfQkDen4V7z", + * ExpirationDate: "2016-12-12T00:00:00.000Z", + * StartDate: "2016-11-11T20:11:51.095Z" * }, * { - * "CapacityId": "yXaq7NzHFQNADTfQkDen4V7z", - * "ExpirationDate": "2017-01-15T00:00:00.000Z", - * "StartDate": "2016-12-13T20:11:51.095Z" + * CapacityId: "yXaq7NzHFQNADTfQkDen4V7z", + * ExpirationDate: "2017-01-15T00:00:00.000Z", + * StartDate: "2016-12-13T20:11:51.095Z" * } * ] * } * *\/ - * // example id: to-list-the-provisioned-capacity-units-for-an-account-1481923656130 * ``` * + * @public */ export class ListProvisionedCapacityCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/ListTagsForVaultCommand.ts b/clients/client-glacier/src/commands/ListTagsForVaultCommand.ts index acafd96c4403b..1023267e0df30 100644 --- a/clients/client-glacier/src/commands/ListTagsForVaultCommand.ts +++ b/clients/client-glacier/src/commands/ListTagsForVaultCommand.ts @@ -73,27 +73,27 @@ export interface ListTagsForVaultCommandOutput extends ListTagsForVaultOutput, _ * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To list the tags for a vault * ```javascript * // The example lists all the tags attached to the vault examplevault. * const input = { - * "accountId": "-", - * "vaultName": "examplevault" + * accountId: "-", + * vaultName: "examplevault" * }; * const command = new ListTagsForVaultCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Tags": { - * "date": "july2015", - * "id": "1234" + * Tags: { + * date: "july2015", + * id: "1234" * } * } * *\/ - * // example id: list-tags-for-vault-1481755839720 * ``` * + * @public */ export class ListTagsForVaultCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/ListVaultsCommand.ts b/clients/client-glacier/src/commands/ListVaultsCommand.ts index 75d8bc7cd1b94..150d0e5797c15 100644 --- a/clients/client-glacier/src/commands/ListVaultsCommand.ts +++ b/clients/client-glacier/src/commands/ListVaultsCommand.ts @@ -98,34 +98,8 @@ export interface ListVaultsCommandOutput extends ListVaultsOutput, __MetadataBea * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public - * @example To list all vaults owned by the calling user's account - * ```javascript - * // The example lists all vaults owned by the specified AWS account. - * const input = { - * "accountId": "-", - * "limit": "", - * "marker": "" - * }; - * const command = new ListVaultsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "VaultList": [ - * { - * "CreationDate": "2015-04-06T21:23:45.708Z", - * "LastInventoryDate": "2015-04-07T00:26:19.028Z", - * "NumberOfArchives": 1, - * "SizeInBytes": 3178496, - * "VaultARN": "arn:aws:glacier:us-west-2:0123456789012:vaults/my-vault", - * "VaultName": "my-vault" - * } - * ] - * } - * *\/ - * // example id: list-vaults-1481753006990 - * ``` * + * @public */ export class ListVaultsCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/PurchaseProvisionedCapacityCommand.ts b/clients/client-glacier/src/commands/PurchaseProvisionedCapacityCommand.ts index 8481c31fbe93c..9da9f08977e58 100644 --- a/clients/client-glacier/src/commands/PurchaseProvisionedCapacityCommand.ts +++ b/clients/client-glacier/src/commands/PurchaseProvisionedCapacityCommand.ts @@ -70,23 +70,23 @@ export interface PurchaseProvisionedCapacityCommandOutput extends PurchaseProvis * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To purchases a provisioned capacity unit for an AWS account * ```javascript * // The example purchases provisioned capacity unit for an AWS account. * const input = { - * "accountId": "-" + * accountId: "-" * }; * const command = new PurchaseProvisionedCapacityCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "capacityId": "zSaq7NzHFQDANTfQkDen4V7z" + * capacityId: "zSaq7NzHFQDANTfQkDen4V7z" * } * *\/ - * // example id: to-purchases-a-provisioned-capacity-unit-for-an-aws-account-1481927446662 * ``` * + * @public */ export class PurchaseProvisionedCapacityCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/RemoveTagsFromVaultCommand.ts b/clients/client-glacier/src/commands/RemoveTagsFromVaultCommand.ts index abb32babd6d09..e80f63248bd09 100644 --- a/clients/client-glacier/src/commands/RemoveTagsFromVaultCommand.ts +++ b/clients/client-glacier/src/commands/RemoveTagsFromVaultCommand.ts @@ -73,23 +73,26 @@ export interface RemoveTagsFromVaultCommandOutput extends __MetadataBearer {} * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To remove tags from a vault * ```javascript * // The example removes two tags from the vault named examplevault. * const input = { - * "TagKeys": [ + * TagKeys: [ * "examplekey1", * "examplekey2" * ], - * "accountId": "-", - * "vaultName": "examplevault" + * accountId: "-", + * vaultName: "examplevault" * }; * const command = new RemoveTagsFromVaultCommand(input); - * await client.send(command); - * // example id: remove-tags-from-vault-1481754998801 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RemoveTagsFromVaultCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/SetDataRetrievalPolicyCommand.ts b/clients/client-glacier/src/commands/SetDataRetrievalPolicyCommand.ts index 1c85c4586e00b..fb749d9fd28b5 100644 --- a/clients/client-glacier/src/commands/SetDataRetrievalPolicyCommand.ts +++ b/clients/client-glacier/src/commands/SetDataRetrievalPolicyCommand.ts @@ -75,26 +75,29 @@ export interface SetDataRetrievalPolicyCommandOutput extends __MetadataBearer {} * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To set and then enact a data retrieval policy * ```javascript * // The example sets and then enacts a data retrieval policy. * const input = { - * "Policy": { - * "Rules": [ + * Policy: { + * Rules: [ * { - * "BytesPerHour": 10737418240, - * "Strategy": "BytesPerHour" + * BytesPerHour: 10737418240, + * Strategy: "BytesPerHour" * } * ] * }, - * "accountId": "-" + * accountId: "-" * }; * const command = new SetDataRetrievalPolicyCommand(input); - * await client.send(command); - * // example id: to-set-and-then-enact-a-data-retrieval-policy--1481928352408 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetDataRetrievalPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/SetVaultAccessPolicyCommand.ts b/clients/client-glacier/src/commands/SetVaultAccessPolicyCommand.ts index abd72741fb739..3abd872626edd 100644 --- a/clients/client-glacier/src/commands/SetVaultAccessPolicyCommand.ts +++ b/clients/client-glacier/src/commands/SetVaultAccessPolicyCommand.ts @@ -75,22 +75,25 @@ export interface SetVaultAccessPolicyCommandOutput extends __MetadataBearer {} * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To set the access-policy on a vault * ```javascript * // The example configures an access policy for the vault named examplevault. * const input = { - * "accountId": "-", - * "policy": { - * "Policy": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"Define-owner-access-rights\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::999999999999:root\"},\"Action\":\"glacier:DeleteArchive\",\"Resource\":\"arn:aws:glacier:us-west-2:999999999999:vaults/examplevault\"}]}" + * accountId: "-", + * policy: { + * Policy: `{"Version":"2012-10-17","Statement":[{"Sid":"Define-owner-access-rights","Effect":"Allow","Principal":{"AWS":"arn:aws:iam::999999999999:root"},"Action":"glacier:DeleteArchive","Resource":"arn:aws:glacier:us-west-2:999999999999:vaults/examplevault"}]}` * }, - * "vaultName": "examplevault" + * vaultName: "examplevault" * }; * const command = new SetVaultAccessPolicyCommand(input); - * await client.send(command); - * // example id: to--set-the-access-policy-on-a-vault-1482185872517 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetVaultAccessPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/SetVaultNotificationsCommand.ts b/clients/client-glacier/src/commands/SetVaultNotificationsCommand.ts index ee58a9d6b5245..630f6578909a9 100644 --- a/clients/client-glacier/src/commands/SetVaultNotificationsCommand.ts +++ b/clients/client-glacier/src/commands/SetVaultNotificationsCommand.ts @@ -110,26 +110,29 @@ export interface SetVaultNotificationsCommandOutput extends __MetadataBearer {} * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To configure a vault to post a message to an Amazon SNS topic when jobs complete * ```javascript * // The example sets the examplevault notification configuration. * const input = { - * "accountId": "-", - * "vaultName": "examplevault", - * "vaultNotificationConfig": { - * "Events": [ + * accountId: "-", + * vaultName: "examplevault", + * vaultNotificationConfig: { + * Events: [ * "ArchiveRetrievalCompleted", * "InventoryRetrievalCompleted" * ], - * "SNSTopic": "arn:aws:sns:us-west-2:012345678901:mytopic" + * SNSTopic: "arn:aws:sns:us-west-2:012345678901:mytopic" * } * }; * const command = new SetVaultNotificationsCommand(input); - * await client.send(command); - * // example id: to-configure-a-vault-to-post-a-message-to-an-amazon-simple-notification-service-amazon-sns-topic-when-jobs-complete-1482186397475 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetVaultNotificationsCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/UploadArchiveCommand.ts b/clients/client-glacier/src/commands/UploadArchiveCommand.ts index b75562cd08878..41fb0893382fa 100644 --- a/clients/client-glacier/src/commands/UploadArchiveCommand.ts +++ b/clients/client-glacier/src/commands/UploadArchiveCommand.ts @@ -112,29 +112,29 @@ export interface UploadArchiveCommandOutput extends ArchiveCreationOutput, __Met * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To upload an archive * ```javascript * // The example adds an archive to a vault. * const input = { - * "accountId": "-", - * "archiveDescription": "", - * "body": "example-data-to-upload", - * "checksum": "", - * "vaultName": "my-vault" + * accountId: "-", + * archiveDescription: "", + * body: "example-data-to-upload", + * checksum: "", + * vaultName: "my-vault" * }; * const command = new UploadArchiveCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "archiveId": "kKB7ymWJVpPSwhGP6ycSOAekp9ZYe_--zM_mw6k76ZFGEIWQX-ybtRDvc2VkPSDtfKmQrj0IRQLSGsNuDp-AJVlu2ccmDSyDUmZwKbwbpAdGATGDiB3hHO0bjbGehXTcApVud_wyDw", - * "checksum": "969fb39823836d81f0cc028195fcdbcbbe76cdde932d4646fa7de5f21e18aa67", - * "location": "/0123456789012/vaults/my-vault/archives/kKB7ymWJVpPSwhGP6ycSOAekp9ZYe_--zM_mw6k76ZFGEIWQX-ybtRDvc2VkPSDtfKmQrj0IRQLSGsNuDp-AJVlu2ccmDSyDUmZwKbwbpAdGATGDiB3hHO0bjbGehXTcApVud_wyDw" + * archiveId: "kKB7ymWJVpPSwhGP6ycSOAekp9ZYe_--zM_mw6k76ZFGEIWQX-ybtRDvc2VkPSDtfKmQrj0IRQLSGsNuDp-AJVlu2ccmDSyDUmZwKbwbpAdGATGDiB3hHO0bjbGehXTcApVud_wyDw", + * checksum: "969fb39823836d81f0cc028195fcdbcbbe76cdde932d4646fa7de5f21e18aa67", + * location: "/0123456789012/vaults/my-vault/archives/kKB7ymWJVpPSwhGP6ycSOAekp9ZYe_--zM_mw6k76ZFGEIWQX-ybtRDvc2VkPSDtfKmQrj0IRQLSGsNuDp-AJVlu2ccmDSyDUmZwKbwbpAdGATGDiB3hHO0bjbGehXTcApVud_wyDw" * } * *\/ - * // example id: upload-archive-1481668510494 * ``` * + * @public */ export class UploadArchiveCommand extends $Command .classBuilder< diff --git a/clients/client-glacier/src/commands/UploadMultipartPartCommand.ts b/clients/client-glacier/src/commands/UploadMultipartPartCommand.ts index 99a874a302e30..b57e93a2c21b2 100644 --- a/clients/client-glacier/src/commands/UploadMultipartPartCommand.ts +++ b/clients/client-glacier/src/commands/UploadMultipartPartCommand.ts @@ -134,28 +134,28 @@ export interface UploadMultipartPartCommandOutput extends UploadMultipartPartOut * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* - * @public + * * @example To upload the first part of an archive * ```javascript * // The example uploads the first 1 MiB (1024 x 1024 bytes) part of an archive. * const input = { - * "accountId": "-", - * "body": "part1", - * "checksum": "c06f7cd4baacb087002a99a5f48bf953", - * "range": "bytes 0-1048575/*", - * "uploadId": "19gaRezEXAMPLES6Ry5YYdqthHOC_kGRCT03L9yetr220UmPtBYKk-OssZtLqyFu7sY1_lR7vgFuJV6NtcV5zpsJ", - * "vaultName": "examplevault" + * accountId: "-", + * body: "part1", + * checksum: "c06f7cd4baacb087002a99a5f48bf953", + * range: "bytes 0-1048575/*", + * uploadId: "19gaRezEXAMPLES6Ry5YYdqthHOC_kGRCT03L9yetr220UmPtBYKk-OssZtLqyFu7sY1_lR7vgFuJV6NtcV5zpsJ", + * vaultName: "examplevault" * }; * const command = new UploadMultipartPartCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "checksum": "c06f7cd4baacb087002a99a5f48bf953" + * checksum: "c06f7cd4baacb087002a99a5f48bf953" * } * *\/ - * // example id: to-upload-the-first-part-of-an-archive-1481835899519 * ``` * + * @public */ export class UploadMultipartPartCommand extends $Command .classBuilder< diff --git a/clients/client-global-accelerator/src/commands/AddCustomRoutingEndpointsCommand.ts b/clients/client-global-accelerator/src/commands/AddCustomRoutingEndpointsCommand.ts index bebd75b7e7635..e3c65fe59189a 100644 --- a/clients/client-global-accelerator/src/commands/AddCustomRoutingEndpointsCommand.ts +++ b/clients/client-global-accelerator/src/commands/AddCustomRoutingEndpointsCommand.ts @@ -101,6 +101,7 @@ export interface AddCustomRoutingEndpointsCommandOutput extends AddCustomRouting * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class AddCustomRoutingEndpointsCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/AddEndpointsCommand.ts b/clients/client-global-accelerator/src/commands/AddEndpointsCommand.ts index 08c5b04085ea9..207e0be521030 100644 --- a/clients/client-global-accelerator/src/commands/AddEndpointsCommand.ts +++ b/clients/client-global-accelerator/src/commands/AddEndpointsCommand.ts @@ -113,6 +113,7 @@ export interface AddEndpointsCommandOutput extends AddEndpointsResponse, __Metad * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class AddEndpointsCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/AdvertiseByoipCidrCommand.ts b/clients/client-global-accelerator/src/commands/AdvertiseByoipCidrCommand.ts index 82d32033ce2bf..78f8545ecb691 100644 --- a/clients/client-global-accelerator/src/commands/AdvertiseByoipCidrCommand.ts +++ b/clients/client-global-accelerator/src/commands/AdvertiseByoipCidrCommand.ts @@ -90,6 +90,7 @@ export interface AdvertiseByoipCidrCommandOutput extends AdvertiseByoipCidrRespo * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class AdvertiseByoipCidrCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/AllowCustomRoutingTrafficCommand.ts b/clients/client-global-accelerator/src/commands/AllowCustomRoutingTrafficCommand.ts index 295b42c8a4ca8..0a3123c3612a7 100644 --- a/clients/client-global-accelerator/src/commands/AllowCustomRoutingTrafficCommand.ts +++ b/clients/client-global-accelerator/src/commands/AllowCustomRoutingTrafficCommand.ts @@ -79,6 +79,7 @@ export interface AllowCustomRoutingTrafficCommandOutput extends __MetadataBearer * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class AllowCustomRoutingTrafficCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/CreateAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/CreateAcceleratorCommand.ts index 50b5736e8fda5..cf0df9ea88741 100644 --- a/clients/client-global-accelerator/src/commands/CreateAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/CreateAcceleratorCommand.ts @@ -117,6 +117,7 @@ export interface CreateAcceleratorCommandOutput extends CreateAcceleratorRespons * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class CreateAcceleratorCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/CreateCrossAccountAttachmentCommand.ts b/clients/client-global-accelerator/src/commands/CreateCrossAccountAttachmentCommand.ts index 8fa63efe0de97..ff580fb848bfc 100644 --- a/clients/client-global-accelerator/src/commands/CreateCrossAccountAttachmentCommand.ts +++ b/clients/client-global-accelerator/src/commands/CreateCrossAccountAttachmentCommand.ts @@ -128,6 +128,7 @@ export interface CreateCrossAccountAttachmentCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class CreateCrossAccountAttachmentCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/CreateCustomRoutingAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/CreateCustomRoutingAcceleratorCommand.ts index 1bcf36cc80c5e..84d70dd404b98 100644 --- a/clients/client-global-accelerator/src/commands/CreateCustomRoutingAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/CreateCustomRoutingAcceleratorCommand.ts @@ -119,6 +119,7 @@ export interface CreateCustomRoutingAcceleratorCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class CreateCustomRoutingAcceleratorCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/CreateCustomRoutingEndpointGroupCommand.ts b/clients/client-global-accelerator/src/commands/CreateCustomRoutingEndpointGroupCommand.ts index b71e495b423cf..3cb6b93ac21a3 100644 --- a/clients/client-global-accelerator/src/commands/CreateCustomRoutingEndpointGroupCommand.ts +++ b/clients/client-global-accelerator/src/commands/CreateCustomRoutingEndpointGroupCommand.ts @@ -118,6 +118,7 @@ export interface CreateCustomRoutingEndpointGroupCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class CreateCustomRoutingEndpointGroupCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/CreateCustomRoutingListenerCommand.ts b/clients/client-global-accelerator/src/commands/CreateCustomRoutingListenerCommand.ts index 0bec04c3c017a..3226cb8539428 100644 --- a/clients/client-global-accelerator/src/commands/CreateCustomRoutingListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/CreateCustomRoutingListenerCommand.ts @@ -92,6 +92,7 @@ export interface CreateCustomRoutingListenerCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class CreateCustomRoutingListenerCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/CreateEndpointGroupCommand.ts b/clients/client-global-accelerator/src/commands/CreateEndpointGroupCommand.ts index 02f5c049692ab..8027a5b122e64 100644 --- a/clients/client-global-accelerator/src/commands/CreateEndpointGroupCommand.ts +++ b/clients/client-global-accelerator/src/commands/CreateEndpointGroupCommand.ts @@ -130,6 +130,7 @@ export interface CreateEndpointGroupCommandOutput extends CreateEndpointGroupRes * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class CreateEndpointGroupCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/CreateListenerCommand.ts b/clients/client-global-accelerator/src/commands/CreateListenerCommand.ts index 8b37a08e4b38b..57cb2d9911720 100644 --- a/clients/client-global-accelerator/src/commands/CreateListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/CreateListenerCommand.ts @@ -94,6 +94,7 @@ export interface CreateListenerCommandOutput extends CreateListenerResponse, __M * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class CreateListenerCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DeleteAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/DeleteAcceleratorCommand.ts index 625042f5ea8a5..ed222320ca270 100644 --- a/clients/client-global-accelerator/src/commands/DeleteAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeleteAcceleratorCommand.ts @@ -89,6 +89,7 @@ export interface DeleteAcceleratorCommandOutput extends __MetadataBearer {} * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DeleteAcceleratorCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DeleteCrossAccountAttachmentCommand.ts b/clients/client-global-accelerator/src/commands/DeleteCrossAccountAttachmentCommand.ts index f8402bcd36caa..ce94acbafe69a 100644 --- a/clients/client-global-accelerator/src/commands/DeleteCrossAccountAttachmentCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeleteCrossAccountAttachmentCommand.ts @@ -80,6 +80,7 @@ export interface DeleteCrossAccountAttachmentCommandOutput extends __MetadataBea * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DeleteCrossAccountAttachmentCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DeleteCustomRoutingAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/DeleteCustomRoutingAcceleratorCommand.ts index c4a74150825b1..1ecb7798cb306 100644 --- a/clients/client-global-accelerator/src/commands/DeleteCustomRoutingAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeleteCustomRoutingAcceleratorCommand.ts @@ -92,6 +92,7 @@ export interface DeleteCustomRoutingAcceleratorCommandOutput extends __MetadataB * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DeleteCustomRoutingAcceleratorCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DeleteCustomRoutingEndpointGroupCommand.ts b/clients/client-global-accelerator/src/commands/DeleteCustomRoutingEndpointGroupCommand.ts index 93f6eb6a58021..467918af32895 100644 --- a/clients/client-global-accelerator/src/commands/DeleteCustomRoutingEndpointGroupCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeleteCustomRoutingEndpointGroupCommand.ts @@ -69,6 +69,7 @@ export interface DeleteCustomRoutingEndpointGroupCommandOutput extends __Metadat * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DeleteCustomRoutingEndpointGroupCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DeleteCustomRoutingListenerCommand.ts b/clients/client-global-accelerator/src/commands/DeleteCustomRoutingListenerCommand.ts index d357321d6352a..d0c8a36a9c2ed 100644 --- a/clients/client-global-accelerator/src/commands/DeleteCustomRoutingListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeleteCustomRoutingListenerCommand.ts @@ -70,6 +70,7 @@ export interface DeleteCustomRoutingListenerCommandOutput extends __MetadataBear * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DeleteCustomRoutingListenerCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DeleteEndpointGroupCommand.ts b/clients/client-global-accelerator/src/commands/DeleteEndpointGroupCommand.ts index dd214ca4ec81b..bdc98b0ac1579 100644 --- a/clients/client-global-accelerator/src/commands/DeleteEndpointGroupCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeleteEndpointGroupCommand.ts @@ -66,6 +66,7 @@ export interface DeleteEndpointGroupCommandOutput extends __MetadataBearer {} * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DeleteEndpointGroupCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DeleteListenerCommand.ts b/clients/client-global-accelerator/src/commands/DeleteListenerCommand.ts index 693dffed254ab..d2badce48cc67 100644 --- a/clients/client-global-accelerator/src/commands/DeleteListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeleteListenerCommand.ts @@ -70,6 +70,7 @@ export interface DeleteListenerCommandOutput extends __MetadataBearer {} * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DeleteListenerCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DenyCustomRoutingTrafficCommand.ts b/clients/client-global-accelerator/src/commands/DenyCustomRoutingTrafficCommand.ts index a8ce1d8df6be4..b487be1f86a0d 100644 --- a/clients/client-global-accelerator/src/commands/DenyCustomRoutingTrafficCommand.ts +++ b/clients/client-global-accelerator/src/commands/DenyCustomRoutingTrafficCommand.ts @@ -79,6 +79,7 @@ export interface DenyCustomRoutingTrafficCommandOutput extends __MetadataBearer * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DenyCustomRoutingTrafficCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DeprovisionByoipCidrCommand.ts b/clients/client-global-accelerator/src/commands/DeprovisionByoipCidrCommand.ts index 0afdc81d38cef..5b86afb7b0e8b 100644 --- a/clients/client-global-accelerator/src/commands/DeprovisionByoipCidrCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeprovisionByoipCidrCommand.ts @@ -90,6 +90,7 @@ export interface DeprovisionByoipCidrCommandOutput extends DeprovisionByoipCidrR * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DeprovisionByoipCidrCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DescribeAcceleratorAttributesCommand.ts b/clients/client-global-accelerator/src/commands/DescribeAcceleratorAttributesCommand.ts index 0720e7264e82d..442b8d093a3ba 100644 --- a/clients/client-global-accelerator/src/commands/DescribeAcceleratorAttributesCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeAcceleratorAttributesCommand.ts @@ -78,6 +78,7 @@ export interface DescribeAcceleratorAttributesCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DescribeAcceleratorAttributesCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DescribeAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/DescribeAcceleratorCommand.ts index 04c886aeeb26c..8037661ed82ad 100644 --- a/clients/client-global-accelerator/src/commands/DescribeAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeAcceleratorCommand.ts @@ -93,6 +93,7 @@ export interface DescribeAcceleratorCommandOutput extends DescribeAcceleratorRes * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DescribeAcceleratorCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DescribeCrossAccountAttachmentCommand.ts b/clients/client-global-accelerator/src/commands/DescribeCrossAccountAttachmentCommand.ts index d891e5c621571..3f947f36a3f54 100644 --- a/clients/client-global-accelerator/src/commands/DescribeCrossAccountAttachmentCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeCrossAccountAttachmentCommand.ts @@ -91,6 +91,7 @@ export interface DescribeCrossAccountAttachmentCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DescribeCrossAccountAttachmentCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorAttributesCommand.ts b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorAttributesCommand.ts index bce12ef85caa9..a48b8f9b1acf3 100644 --- a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorAttributesCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorAttributesCommand.ts @@ -81,6 +81,7 @@ export interface DescribeCustomRoutingAcceleratorAttributesCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DescribeCustomRoutingAcceleratorAttributesCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorCommand.ts index fc140bd59d3f2..432e2500c3326 100644 --- a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorCommand.ts @@ -91,6 +91,7 @@ export interface DescribeCustomRoutingAcceleratorCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DescribeCustomRoutingAcceleratorCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingEndpointGroupCommand.ts b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingEndpointGroupCommand.ts index 8abbe3b64b013..604515d9a5fc1 100644 --- a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingEndpointGroupCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingEndpointGroupCommand.ts @@ -93,6 +93,7 @@ export interface DescribeCustomRoutingEndpointGroupCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DescribeCustomRoutingEndpointGroupCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingListenerCommand.ts b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingListenerCommand.ts index f727840ed7123..2ea91d24f81d8 100644 --- a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingListenerCommand.ts @@ -81,6 +81,7 @@ export interface DescribeCustomRoutingListenerCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DescribeCustomRoutingListenerCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DescribeEndpointGroupCommand.ts b/clients/client-global-accelerator/src/commands/DescribeEndpointGroupCommand.ts index faae6e3f3a1d1..128249a12a8cc 100644 --- a/clients/client-global-accelerator/src/commands/DescribeEndpointGroupCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeEndpointGroupCommand.ts @@ -92,6 +92,7 @@ export interface DescribeEndpointGroupCommandOutput extends DescribeEndpointGrou * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DescribeEndpointGroupCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/DescribeListenerCommand.ts b/clients/client-global-accelerator/src/commands/DescribeListenerCommand.ts index 07cdd26f40fe4..c5ca5461ad2fa 100644 --- a/clients/client-global-accelerator/src/commands/DescribeListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeListenerCommand.ts @@ -78,6 +78,7 @@ export interface DescribeListenerCommandOutput extends DescribeListenerResponse, * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class DescribeListenerCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/ListAcceleratorsCommand.ts b/clients/client-global-accelerator/src/commands/ListAcceleratorsCommand.ts index 470c914e385a0..813e35b3f40cb 100644 --- a/clients/client-global-accelerator/src/commands/ListAcceleratorsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListAcceleratorsCommand.ts @@ -97,6 +97,7 @@ export interface ListAcceleratorsCommandOutput extends ListAcceleratorsResponse, * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class ListAcceleratorsCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/ListByoipCidrsCommand.ts b/clients/client-global-accelerator/src/commands/ListByoipCidrsCommand.ts index 8feef811e6291..fd9c24f92a866 100644 --- a/clients/client-global-accelerator/src/commands/ListByoipCidrsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListByoipCidrsCommand.ts @@ -85,6 +85,7 @@ export interface ListByoipCidrsCommandOutput extends ListByoipCidrsResponse, __M * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class ListByoipCidrsCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/ListCrossAccountAttachmentsCommand.ts b/clients/client-global-accelerator/src/commands/ListCrossAccountAttachmentsCommand.ts index 2ccbb6beb8dd8..0a9984dcc0695 100644 --- a/clients/client-global-accelerator/src/commands/ListCrossAccountAttachmentsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCrossAccountAttachmentsCommand.ts @@ -92,6 +92,7 @@ export interface ListCrossAccountAttachmentsCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class ListCrossAccountAttachmentsCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/ListCrossAccountResourceAccountsCommand.ts b/clients/client-global-accelerator/src/commands/ListCrossAccountResourceAccountsCommand.ts index 11e166b7502fb..bcfd9d4755016 100644 --- a/clients/client-global-accelerator/src/commands/ListCrossAccountResourceAccountsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCrossAccountResourceAccountsCommand.ts @@ -73,6 +73,7 @@ export interface ListCrossAccountResourceAccountsCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class ListCrossAccountResourceAccountsCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/ListCrossAccountResourcesCommand.ts b/clients/client-global-accelerator/src/commands/ListCrossAccountResourcesCommand.ts index 016b3f72d6a71..771332b513800 100644 --- a/clients/client-global-accelerator/src/commands/ListCrossAccountResourcesCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCrossAccountResourcesCommand.ts @@ -84,6 +84,7 @@ export interface ListCrossAccountResourcesCommandOutput extends ListCrossAccount * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class ListCrossAccountResourcesCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/ListCustomRoutingAcceleratorsCommand.ts b/clients/client-global-accelerator/src/commands/ListCustomRoutingAcceleratorsCommand.ts index 3bbadd29106c6..76ce26e18e61b 100644 --- a/clients/client-global-accelerator/src/commands/ListCustomRoutingAcceleratorsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCustomRoutingAcceleratorsCommand.ts @@ -95,6 +95,7 @@ export interface ListCustomRoutingAcceleratorsCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class ListCustomRoutingAcceleratorsCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/ListCustomRoutingEndpointGroupsCommand.ts b/clients/client-global-accelerator/src/commands/ListCustomRoutingEndpointGroupsCommand.ts index eb2b96b0c86df..dec1186cff60b 100644 --- a/clients/client-global-accelerator/src/commands/ListCustomRoutingEndpointGroupsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCustomRoutingEndpointGroupsCommand.ts @@ -98,6 +98,7 @@ export interface ListCustomRoutingEndpointGroupsCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class ListCustomRoutingEndpointGroupsCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/ListCustomRoutingListenersCommand.ts b/clients/client-global-accelerator/src/commands/ListCustomRoutingListenersCommand.ts index 858d8dfc2ee50..6036410cff826 100644 --- a/clients/client-global-accelerator/src/commands/ListCustomRoutingListenersCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCustomRoutingListenersCommand.ts @@ -84,6 +84,7 @@ export interface ListCustomRoutingListenersCommandOutput extends ListCustomRouti * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class ListCustomRoutingListenersCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsByDestinationCommand.ts b/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsByDestinationCommand.ts index cbcfa62784e89..7a41468280f61 100644 --- a/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsByDestinationCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsByDestinationCommand.ts @@ -106,6 +106,7 @@ export interface ListCustomRoutingPortMappingsByDestinationCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class ListCustomRoutingPortMappingsByDestinationCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsCommand.ts b/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsCommand.ts index d33a3f9701974..b7f1657e5dd39 100644 --- a/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsCommand.ts @@ -105,6 +105,7 @@ export interface ListCustomRoutingPortMappingsCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class ListCustomRoutingPortMappingsCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/ListEndpointGroupsCommand.ts b/clients/client-global-accelerator/src/commands/ListEndpointGroupsCommand.ts index 8e39aa97ade86..799fee9176429 100644 --- a/clients/client-global-accelerator/src/commands/ListEndpointGroupsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListEndpointGroupsCommand.ts @@ -100,6 +100,7 @@ export interface ListEndpointGroupsCommandOutput extends ListEndpointGroupsRespo * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class ListEndpointGroupsCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/ListListenersCommand.ts b/clients/client-global-accelerator/src/commands/ListListenersCommand.ts index 2191d6634956f..c50ff6669ac4c 100644 --- a/clients/client-global-accelerator/src/commands/ListListenersCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListListenersCommand.ts @@ -86,6 +86,7 @@ export interface ListListenersCommandOutput extends ListListenersResponse, __Met * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class ListListenersCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/ListTagsForResourceCommand.ts b/clients/client-global-accelerator/src/commands/ListTagsForResourceCommand.ts index 32ac9b56996ce..c7e93ddef2bc2 100644 --- a/clients/client-global-accelerator/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListTagsForResourceCommand.ts @@ -84,6 +84,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/ProvisionByoipCidrCommand.ts b/clients/client-global-accelerator/src/commands/ProvisionByoipCidrCommand.ts index 1fb26763a6203..486a85decc0a3 100644 --- a/clients/client-global-accelerator/src/commands/ProvisionByoipCidrCommand.ts +++ b/clients/client-global-accelerator/src/commands/ProvisionByoipCidrCommand.ts @@ -93,6 +93,7 @@ export interface ProvisionByoipCidrCommandOutput extends ProvisionByoipCidrRespo * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class ProvisionByoipCidrCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/RemoveCustomRoutingEndpointsCommand.ts b/clients/client-global-accelerator/src/commands/RemoveCustomRoutingEndpointsCommand.ts index 60fedcf706690..cf89a423f48f5 100644 --- a/clients/client-global-accelerator/src/commands/RemoveCustomRoutingEndpointsCommand.ts +++ b/clients/client-global-accelerator/src/commands/RemoveCustomRoutingEndpointsCommand.ts @@ -81,6 +81,7 @@ export interface RemoveCustomRoutingEndpointsCommandOutput extends __MetadataBea * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class RemoveCustomRoutingEndpointsCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/RemoveEndpointsCommand.ts b/clients/client-global-accelerator/src/commands/RemoveEndpointsCommand.ts index 12a4b1dcc1326..216fadae37daf 100644 --- a/clients/client-global-accelerator/src/commands/RemoveEndpointsCommand.ts +++ b/clients/client-global-accelerator/src/commands/RemoveEndpointsCommand.ts @@ -94,6 +94,7 @@ export interface RemoveEndpointsCommandOutput extends __MetadataBearer {} * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class RemoveEndpointsCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/TagResourceCommand.ts b/clients/client-global-accelerator/src/commands/TagResourceCommand.ts index 2020bf7ecd7b3..ce7a39c6b4052 100644 --- a/clients/client-global-accelerator/src/commands/TagResourceCommand.ts +++ b/clients/client-global-accelerator/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/UntagResourceCommand.ts b/clients/client-global-accelerator/src/commands/UntagResourceCommand.ts index 33c4d426f2f85..03a375efaa354 100644 --- a/clients/client-global-accelerator/src/commands/UntagResourceCommand.ts +++ b/clients/client-global-accelerator/src/commands/UntagResourceCommand.ts @@ -72,6 +72,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/UpdateAcceleratorAttributesCommand.ts b/clients/client-global-accelerator/src/commands/UpdateAcceleratorAttributesCommand.ts index 0a587448ac41b..f47fdb073bc0f 100644 --- a/clients/client-global-accelerator/src/commands/UpdateAcceleratorAttributesCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateAcceleratorAttributesCommand.ts @@ -83,6 +83,7 @@ export interface UpdateAcceleratorAttributesCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class UpdateAcceleratorAttributesCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/UpdateAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/UpdateAcceleratorCommand.ts index 4c3ec6cca8b3b..9e337b98f149d 100644 --- a/clients/client-global-accelerator/src/commands/UpdateAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateAcceleratorCommand.ts @@ -130,6 +130,7 @@ export interface UpdateAcceleratorCommandOutput extends UpdateAcceleratorRespons * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class UpdateAcceleratorCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/UpdateCrossAccountAttachmentCommand.ts b/clients/client-global-accelerator/src/commands/UpdateCrossAccountAttachmentCommand.ts index bf27e7ddb4a79..02e1b560861a8 100644 --- a/clients/client-global-accelerator/src/commands/UpdateCrossAccountAttachmentCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateCrossAccountAttachmentCommand.ts @@ -123,6 +123,7 @@ export interface UpdateCrossAccountAttachmentCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class UpdateCrossAccountAttachmentCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorAttributesCommand.ts b/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorAttributesCommand.ts index 9e6ad15ca1d43..f29bee42864e8 100644 --- a/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorAttributesCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorAttributesCommand.ts @@ -90,6 +90,7 @@ export interface UpdateCustomRoutingAcceleratorAttributesCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class UpdateCustomRoutingAcceleratorAttributesCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorCommand.ts index 30eef6efe6ae7..2c8b38ad34d2d 100644 --- a/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorCommand.ts @@ -103,6 +103,7 @@ export interface UpdateCustomRoutingAcceleratorCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class UpdateCustomRoutingAcceleratorCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/UpdateCustomRoutingListenerCommand.ts b/clients/client-global-accelerator/src/commands/UpdateCustomRoutingListenerCommand.ts index a4306515eb490..2d41ea622c381 100644 --- a/clients/client-global-accelerator/src/commands/UpdateCustomRoutingListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateCustomRoutingListenerCommand.ts @@ -90,6 +90,7 @@ export interface UpdateCustomRoutingListenerCommandOutput * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class UpdateCustomRoutingListenerCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/UpdateEndpointGroupCommand.ts b/clients/client-global-accelerator/src/commands/UpdateEndpointGroupCommand.ts index 63ca54b97250d..1054cda9cc187 100644 --- a/clients/client-global-accelerator/src/commands/UpdateEndpointGroupCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateEndpointGroupCommand.ts @@ -118,6 +118,7 @@ export interface UpdateEndpointGroupCommandOutput extends UpdateEndpointGroupRes * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class UpdateEndpointGroupCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/UpdateListenerCommand.ts b/clients/client-global-accelerator/src/commands/UpdateListenerCommand.ts index a9fd4878ad1e1..9ed4b29e8a771 100644 --- a/clients/client-global-accelerator/src/commands/UpdateListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateListenerCommand.ts @@ -92,6 +92,7 @@ export interface UpdateListenerCommandOutput extends UpdateListenerResponse, __M * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class UpdateListenerCommand extends $Command diff --git a/clients/client-global-accelerator/src/commands/WithdrawByoipCidrCommand.ts b/clients/client-global-accelerator/src/commands/WithdrawByoipCidrCommand.ts index b6d18241e97fb..55c60ae29473d 100644 --- a/clients/client-global-accelerator/src/commands/WithdrawByoipCidrCommand.ts +++ b/clients/client-global-accelerator/src/commands/WithdrawByoipCidrCommand.ts @@ -90,6 +90,7 @@ export interface WithdrawByoipCidrCommandOutput extends WithdrawByoipCidrRespons * @throws {@link GlobalAcceleratorServiceException} *

Base exception class for all service exceptions from GlobalAccelerator service.

* + * * @public */ export class WithdrawByoipCidrCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchCreatePartitionCommand.ts b/clients/client-glue/src/commands/BatchCreatePartitionCommand.ts index 99ce3c4d2a5f7..972559a1c7718 100644 --- a/clients/client-glue/src/commands/BatchCreatePartitionCommand.ts +++ b/clients/client-glue/src/commands/BatchCreatePartitionCommand.ts @@ -156,6 +156,7 @@ export interface BatchCreatePartitionCommandOutput extends BatchCreatePartitionR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchCreatePartitionCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchDeleteConnectionCommand.ts b/clients/client-glue/src/commands/BatchDeleteConnectionCommand.ts index 0858b4754d9c3..345fff229cffe 100644 --- a/clients/client-glue/src/commands/BatchDeleteConnectionCommand.ts +++ b/clients/client-glue/src/commands/BatchDeleteConnectionCommand.ts @@ -72,6 +72,7 @@ export interface BatchDeleteConnectionCommandOutput extends BatchDeleteConnectio * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchDeleteConnectionCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchDeletePartitionCommand.ts b/clients/client-glue/src/commands/BatchDeletePartitionCommand.ts index 8ca692f9d5463..bb0437c5aa32f 100644 --- a/clients/client-glue/src/commands/BatchDeletePartitionCommand.ts +++ b/clients/client-glue/src/commands/BatchDeletePartitionCommand.ts @@ -86,6 +86,7 @@ export interface BatchDeletePartitionCommandOutput extends BatchDeletePartitionR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchDeletePartitionCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchDeleteTableCommand.ts b/clients/client-glue/src/commands/BatchDeleteTableCommand.ts index 9d8e8637d5b9c..6b3792b828189 100644 --- a/clients/client-glue/src/commands/BatchDeleteTableCommand.ts +++ b/clients/client-glue/src/commands/BatchDeleteTableCommand.ts @@ -96,6 +96,7 @@ export interface BatchDeleteTableCommandOutput extends BatchDeleteTableResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchDeleteTableCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchDeleteTableVersionCommand.ts b/clients/client-glue/src/commands/BatchDeleteTableVersionCommand.ts index 23fc171a8b8a5..20476461eec32 100644 --- a/clients/client-glue/src/commands/BatchDeleteTableVersionCommand.ts +++ b/clients/client-glue/src/commands/BatchDeleteTableVersionCommand.ts @@ -81,6 +81,7 @@ export interface BatchDeleteTableVersionCommandOutput extends BatchDeleteTableVe * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchDeleteTableVersionCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchGetBlueprintsCommand.ts b/clients/client-glue/src/commands/BatchGetBlueprintsCommand.ts index 38d26c843e2ed..67ce2c5b34186 100644 --- a/clients/client-glue/src/commands/BatchGetBlueprintsCommand.ts +++ b/clients/client-glue/src/commands/BatchGetBlueprintsCommand.ts @@ -90,6 +90,7 @@ export interface BatchGetBlueprintsCommandOutput extends BatchGetBlueprintsRespo * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchGetBlueprintsCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchGetCrawlersCommand.ts b/clients/client-glue/src/commands/BatchGetCrawlersCommand.ts index a54c81e7a01bd..d55537b427fb5 100644 --- a/clients/client-glue/src/commands/BatchGetCrawlersCommand.ts +++ b/clients/client-glue/src/commands/BatchGetCrawlersCommand.ts @@ -191,6 +191,7 @@ export interface BatchGetCrawlersCommandOutput extends BatchGetCrawlersResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchGetCrawlersCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchGetCustomEntityTypesCommand.ts b/clients/client-glue/src/commands/BatchGetCustomEntityTypesCommand.ts index 5954fd515ffe5..519f22c6f44ad 100644 --- a/clients/client-glue/src/commands/BatchGetCustomEntityTypesCommand.ts +++ b/clients/client-glue/src/commands/BatchGetCustomEntityTypesCommand.ts @@ -77,6 +77,7 @@ export interface BatchGetCustomEntityTypesCommandOutput extends BatchGetCustomEn * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchGetCustomEntityTypesCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchGetDataQualityResultCommand.ts b/clients/client-glue/src/commands/BatchGetDataQualityResultCommand.ts index 58e7d60077826..fc3436905d6f8 100644 --- a/clients/client-glue/src/commands/BatchGetDataQualityResultCommand.ts +++ b/clients/client-glue/src/commands/BatchGetDataQualityResultCommand.ts @@ -137,6 +137,7 @@ export interface BatchGetDataQualityResultCommandOutput extends BatchGetDataQual * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchGetDataQualityResultCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchGetDevEndpointsCommand.ts b/clients/client-glue/src/commands/BatchGetDevEndpointsCommand.ts index 6af3f5835dc3b..460e130e8e4ee 100644 --- a/clients/client-glue/src/commands/BatchGetDevEndpointsCommand.ts +++ b/clients/client-glue/src/commands/BatchGetDevEndpointsCommand.ts @@ -109,6 +109,7 @@ export interface BatchGetDevEndpointsCommandOutput extends BatchGetDevEndpointsR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchGetDevEndpointsCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchGetJobsCommand.ts b/clients/client-glue/src/commands/BatchGetJobsCommand.ts index a2301c56d9c61..dc2ae76d0d106 100644 --- a/clients/client-glue/src/commands/BatchGetJobsCommand.ts +++ b/clients/client-glue/src/commands/BatchGetJobsCommand.ts @@ -1168,6 +1168,7 @@ export interface BatchGetJobsCommandOutput extends BatchGetJobsResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchGetJobsCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchGetPartitionCommand.ts b/clients/client-glue/src/commands/BatchGetPartitionCommand.ts index c2d001e9a4fe7..8f6b08924bd69 100644 --- a/clients/client-glue/src/commands/BatchGetPartitionCommand.ts +++ b/clients/client-glue/src/commands/BatchGetPartitionCommand.ts @@ -166,6 +166,7 @@ export interface BatchGetPartitionCommandOutput extends BatchGetPartitionRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchGetPartitionCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchGetTableOptimizerCommand.ts b/clients/client-glue/src/commands/BatchGetTableOptimizerCommand.ts index 4665fc0adfac8..57e87c49af2ca 100644 --- a/clients/client-glue/src/commands/BatchGetTableOptimizerCommand.ts +++ b/clients/client-glue/src/commands/BatchGetTableOptimizerCommand.ts @@ -154,6 +154,7 @@ export interface BatchGetTableOptimizerCommandOutput extends BatchGetTableOptimi * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchGetTableOptimizerCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchGetTriggersCommand.ts b/clients/client-glue/src/commands/BatchGetTriggersCommand.ts index 718311944defe..5f0ef668bc448 100644 --- a/clients/client-glue/src/commands/BatchGetTriggersCommand.ts +++ b/clients/client-glue/src/commands/BatchGetTriggersCommand.ts @@ -109,6 +109,7 @@ export interface BatchGetTriggersCommandOutput extends BatchGetTriggersResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchGetTriggersCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchGetWorkflowsCommand.ts b/clients/client-glue/src/commands/BatchGetWorkflowsCommand.ts index 589eb459e7e54..6bcde866d2043 100644 --- a/clients/client-glue/src/commands/BatchGetWorkflowsCommand.ts +++ b/clients/client-glue/src/commands/BatchGetWorkflowsCommand.ts @@ -331,6 +331,7 @@ export interface BatchGetWorkflowsCommandOutput extends BatchGetWorkflowsRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchGetWorkflowsCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchPutDataQualityStatisticAnnotationCommand.ts b/clients/client-glue/src/commands/BatchPutDataQualityStatisticAnnotationCommand.ts index 89e3929b45d09..d9a3f0b92303a 100644 --- a/clients/client-glue/src/commands/BatchPutDataQualityStatisticAnnotationCommand.ts +++ b/clients/client-glue/src/commands/BatchPutDataQualityStatisticAnnotationCommand.ts @@ -89,6 +89,7 @@ export interface BatchPutDataQualityStatisticAnnotationCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchPutDataQualityStatisticAnnotationCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchStopJobRunCommand.ts b/clients/client-glue/src/commands/BatchStopJobRunCommand.ts index d4e5ec353acc9..d359418024d6c 100644 --- a/clients/client-glue/src/commands/BatchStopJobRunCommand.ts +++ b/clients/client-glue/src/commands/BatchStopJobRunCommand.ts @@ -83,6 +83,7 @@ export interface BatchStopJobRunCommandOutput extends BatchStopJobRunResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchStopJobRunCommand extends $Command diff --git a/clients/client-glue/src/commands/BatchUpdatePartitionCommand.ts b/clients/client-glue/src/commands/BatchUpdatePartitionCommand.ts index edfc93fafc7fd..7e303d35b42f4 100644 --- a/clients/client-glue/src/commands/BatchUpdatePartitionCommand.ts +++ b/clients/client-glue/src/commands/BatchUpdatePartitionCommand.ts @@ -155,6 +155,7 @@ export interface BatchUpdatePartitionCommandOutput extends BatchUpdatePartitionR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class BatchUpdatePartitionCommand extends $Command diff --git a/clients/client-glue/src/commands/CancelDataQualityRuleRecommendationRunCommand.ts b/clients/client-glue/src/commands/CancelDataQualityRuleRecommendationRunCommand.ts index d0922fcfb62c9..ce603cdb21cdb 100644 --- a/clients/client-glue/src/commands/CancelDataQualityRuleRecommendationRunCommand.ts +++ b/clients/client-glue/src/commands/CancelDataQualityRuleRecommendationRunCommand.ts @@ -74,6 +74,7 @@ export interface CancelDataQualityRuleRecommendationRunCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CancelDataQualityRuleRecommendationRunCommand extends $Command diff --git a/clients/client-glue/src/commands/CancelDataQualityRulesetEvaluationRunCommand.ts b/clients/client-glue/src/commands/CancelDataQualityRulesetEvaluationRunCommand.ts index afbd34e67a854..318e815601866 100644 --- a/clients/client-glue/src/commands/CancelDataQualityRulesetEvaluationRunCommand.ts +++ b/clients/client-glue/src/commands/CancelDataQualityRulesetEvaluationRunCommand.ts @@ -74,6 +74,7 @@ export interface CancelDataQualityRulesetEvaluationRunCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CancelDataQualityRulesetEvaluationRunCommand extends $Command diff --git a/clients/client-glue/src/commands/CancelMLTaskRunCommand.ts b/clients/client-glue/src/commands/CancelMLTaskRunCommand.ts index 61926475529b6..f4b7df3b5def7 100644 --- a/clients/client-glue/src/commands/CancelMLTaskRunCommand.ts +++ b/clients/client-glue/src/commands/CancelMLTaskRunCommand.ts @@ -72,6 +72,7 @@ export interface CancelMLTaskRunCommandOutput extends CancelMLTaskRunResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CancelMLTaskRunCommand extends $Command diff --git a/clients/client-glue/src/commands/CancelStatementCommand.ts b/clients/client-glue/src/commands/CancelStatementCommand.ts index 69e85b23b19c8..fe16df437ffff 100644 --- a/clients/client-glue/src/commands/CancelStatementCommand.ts +++ b/clients/client-glue/src/commands/CancelStatementCommand.ts @@ -73,6 +73,7 @@ export interface CancelStatementCommandOutput extends CancelStatementResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CancelStatementCommand extends $Command diff --git a/clients/client-glue/src/commands/CheckSchemaVersionValidityCommand.ts b/clients/client-glue/src/commands/CheckSchemaVersionValidityCommand.ts index efae6f3f42fab..023b81278acf4 100644 --- a/clients/client-glue/src/commands/CheckSchemaVersionValidityCommand.ts +++ b/clients/client-glue/src/commands/CheckSchemaVersionValidityCommand.ts @@ -66,6 +66,7 @@ export interface CheckSchemaVersionValidityCommandOutput extends CheckSchemaVers * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CheckSchemaVersionValidityCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateBlueprintCommand.ts b/clients/client-glue/src/commands/CreateBlueprintCommand.ts index d783dc6cd8103..008a64876ecce 100644 --- a/clients/client-glue/src/commands/CreateBlueprintCommand.ts +++ b/clients/client-glue/src/commands/CreateBlueprintCommand.ts @@ -75,6 +75,7 @@ export interface CreateBlueprintCommandOutput extends CreateBlueprintResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateBlueprintCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateCatalogCommand.ts b/clients/client-glue/src/commands/CreateCatalogCommand.ts index 86aee463baa12..ed63ac4af1e3c 100644 --- a/clients/client-glue/src/commands/CreateCatalogCommand.ts +++ b/clients/client-glue/src/commands/CreateCatalogCommand.ts @@ -134,6 +134,7 @@ export interface CreateCatalogCommandOutput extends CreateCatalogResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateCatalogCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateClassifierCommand.ts b/clients/client-glue/src/commands/CreateClassifierCommand.ts index 99e395455585f..ff99acc069c2c 100644 --- a/clients/client-glue/src/commands/CreateClassifierCommand.ts +++ b/clients/client-glue/src/commands/CreateClassifierCommand.ts @@ -94,6 +94,7 @@ export interface CreateClassifierCommandOutput extends CreateClassifierResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateClassifierCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateColumnStatisticsTaskSettingsCommand.ts b/clients/client-glue/src/commands/CreateColumnStatisticsTaskSettingsCommand.ts index 2c40078fced5a..aab129e582d4d 100644 --- a/clients/client-glue/src/commands/CreateColumnStatisticsTaskSettingsCommand.ts +++ b/clients/client-glue/src/commands/CreateColumnStatisticsTaskSettingsCommand.ts @@ -94,6 +94,7 @@ export interface CreateColumnStatisticsTaskSettingsCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateColumnStatisticsTaskSettingsCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateConnectionCommand.ts b/clients/client-glue/src/commands/CreateConnectionCommand.ts index 183c2d37ff6b9..556ed7f3e240d 100644 --- a/clients/client-glue/src/commands/CreateConnectionCommand.ts +++ b/clients/client-glue/src/commands/CreateConnectionCommand.ts @@ -142,6 +142,7 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateConnectionCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateCrawlerCommand.ts b/clients/client-glue/src/commands/CreateCrawlerCommand.ts index edfff312e4cad..534c6bae642e1 100644 --- a/clients/client-glue/src/commands/CreateCrawlerCommand.ts +++ b/clients/client-glue/src/commands/CreateCrawlerCommand.ts @@ -175,6 +175,7 @@ export interface CreateCrawlerCommandOutput extends CreateCrawlerResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateCrawlerCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateCustomEntityTypeCommand.ts b/clients/client-glue/src/commands/CreateCustomEntityTypeCommand.ts index 76a5506c7d501..53d32e4f25da1 100644 --- a/clients/client-glue/src/commands/CreateCustomEntityTypeCommand.ts +++ b/clients/client-glue/src/commands/CreateCustomEntityTypeCommand.ts @@ -84,6 +84,7 @@ export interface CreateCustomEntityTypeCommandOutput extends CreateCustomEntityT * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateCustomEntityTypeCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateDataQualityRulesetCommand.ts b/clients/client-glue/src/commands/CreateDataQualityRulesetCommand.ts index d6b1d30d42f3b..e6ae199609a0f 100644 --- a/clients/client-glue/src/commands/CreateDataQualityRulesetCommand.ts +++ b/clients/client-glue/src/commands/CreateDataQualityRulesetCommand.ts @@ -83,6 +83,7 @@ export interface CreateDataQualityRulesetCommandOutput extends CreateDataQuality * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateDataQualityRulesetCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateDatabaseCommand.ts b/clients/client-glue/src/commands/CreateDatabaseCommand.ts index 3532b3e4d92e7..7cc5694f7f22b 100644 --- a/clients/client-glue/src/commands/CreateDatabaseCommand.ts +++ b/clients/client-glue/src/commands/CreateDatabaseCommand.ts @@ -113,6 +113,7 @@ export interface CreateDatabaseCommandOutput extends CreateDatabaseResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateDatabaseCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateDevEndpointCommand.ts b/clients/client-glue/src/commands/CreateDevEndpointCommand.ts index d85de0190727d..f7e53db83e53c 100644 --- a/clients/client-glue/src/commands/CreateDevEndpointCommand.ts +++ b/clients/client-glue/src/commands/CreateDevEndpointCommand.ts @@ -123,6 +123,7 @@ export interface CreateDevEndpointCommandOutput extends CreateDevEndpointRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateDevEndpointCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateIntegrationCommand.ts b/clients/client-glue/src/commands/CreateIntegrationCommand.ts index 2e529b14f001e..09c1ceb4e55e0 100644 --- a/clients/client-glue/src/commands/CreateIntegrationCommand.ts +++ b/clients/client-glue/src/commands/CreateIntegrationCommand.ts @@ -128,6 +128,7 @@ export interface CreateIntegrationCommandOutput extends CreateIntegrationRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateIntegrationCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateIntegrationResourcePropertyCommand.ts b/clients/client-glue/src/commands/CreateIntegrationResourcePropertyCommand.ts index 6d045c75d803d..427c5bac358f7 100644 --- a/clients/client-glue/src/commands/CreateIntegrationResourcePropertyCommand.ts +++ b/clients/client-glue/src/commands/CreateIntegrationResourcePropertyCommand.ts @@ -105,6 +105,7 @@ export interface CreateIntegrationResourcePropertyCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateIntegrationResourcePropertyCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateIntegrationTablePropertiesCommand.ts b/clients/client-glue/src/commands/CreateIntegrationTablePropertiesCommand.ts index 1f711c583aab2..b7f7e4ddb333c 100644 --- a/clients/client-glue/src/commands/CreateIntegrationTablePropertiesCommand.ts +++ b/clients/client-glue/src/commands/CreateIntegrationTablePropertiesCommand.ts @@ -100,6 +100,7 @@ export interface CreateIntegrationTablePropertiesCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateIntegrationTablePropertiesCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateJobCommand.ts b/clients/client-glue/src/commands/CreateJobCommand.ts index 8e9533961f583..5983221c5ec10 100644 --- a/clients/client-glue/src/commands/CreateJobCommand.ts +++ b/clients/client-glue/src/commands/CreateJobCommand.ts @@ -1170,6 +1170,7 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateJobCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateMLTransformCommand.ts b/clients/client-glue/src/commands/CreateMLTransformCommand.ts index 36e2b30908c29..d502ab59e1c78 100644 --- a/clients/client-glue/src/commands/CreateMLTransformCommand.ts +++ b/clients/client-glue/src/commands/CreateMLTransformCommand.ts @@ -124,6 +124,7 @@ export interface CreateMLTransformCommandOutput extends CreateMLTransformRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateMLTransformCommand extends $Command diff --git a/clients/client-glue/src/commands/CreatePartitionCommand.ts b/clients/client-glue/src/commands/CreatePartitionCommand.ts index a596032c72460..59f9010b5f47a 100644 --- a/clients/client-glue/src/commands/CreatePartitionCommand.ts +++ b/clients/client-glue/src/commands/CreatePartitionCommand.ts @@ -142,6 +142,7 @@ export interface CreatePartitionCommandOutput extends CreatePartitionResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreatePartitionCommand extends $Command diff --git a/clients/client-glue/src/commands/CreatePartitionIndexCommand.ts b/clients/client-glue/src/commands/CreatePartitionIndexCommand.ts index a7345999b427f..8656284f6f7b0 100644 --- a/clients/client-glue/src/commands/CreatePartitionIndexCommand.ts +++ b/clients/client-glue/src/commands/CreatePartitionIndexCommand.ts @@ -82,6 +82,7 @@ export interface CreatePartitionIndexCommandOutput extends CreatePartitionIndexR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreatePartitionIndexCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateRegistryCommand.ts b/clients/client-glue/src/commands/CreateRegistryCommand.ts index e602b90cc1397..ce50ebacc5cd0 100644 --- a/clients/client-glue/src/commands/CreateRegistryCommand.ts +++ b/clients/client-glue/src/commands/CreateRegistryCommand.ts @@ -82,6 +82,7 @@ export interface CreateRegistryCommandOutput extends CreateRegistryResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateRegistryCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateSchemaCommand.ts b/clients/client-glue/src/commands/CreateSchemaCommand.ts index f314f7233fc2d..69a0fa272d370 100644 --- a/clients/client-glue/src/commands/CreateSchemaCommand.ts +++ b/clients/client-glue/src/commands/CreateSchemaCommand.ts @@ -104,6 +104,7 @@ export interface CreateSchemaCommandOutput extends CreateSchemaResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateSchemaCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateScriptCommand.ts b/clients/client-glue/src/commands/CreateScriptCommand.ts index 0792dbaff7feb..24bf400d713a6 100644 --- a/clients/client-glue/src/commands/CreateScriptCommand.ts +++ b/clients/client-glue/src/commands/CreateScriptCommand.ts @@ -86,6 +86,7 @@ export interface CreateScriptCommandOutput extends CreateScriptResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateScriptCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateSecurityConfigurationCommand.ts b/clients/client-glue/src/commands/CreateSecurityConfigurationCommand.ts index 0f087c5476f3a..5f786c9bcd1dc 100644 --- a/clients/client-glue/src/commands/CreateSecurityConfigurationCommand.ts +++ b/clients/client-glue/src/commands/CreateSecurityConfigurationCommand.ts @@ -93,6 +93,7 @@ export interface CreateSecurityConfigurationCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateSecurityConfigurationCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateSessionCommand.ts b/clients/client-glue/src/commands/CreateSessionCommand.ts index 33b2dda99e694..13e532bc9a2fa 100644 --- a/clients/client-glue/src/commands/CreateSessionCommand.ts +++ b/clients/client-glue/src/commands/CreateSessionCommand.ts @@ -134,6 +134,7 @@ export interface CreateSessionCommandOutput extends CreateSessionResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateSessionCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateTableCommand.ts b/clients/client-glue/src/commands/CreateTableCommand.ts index ae2aa0c5b938f..84b0d51b5334e 100644 --- a/clients/client-glue/src/commands/CreateTableCommand.ts +++ b/clients/client-glue/src/commands/CreateTableCommand.ts @@ -202,6 +202,7 @@ export interface CreateTableCommandOutput extends CreateTableResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateTableCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateTableOptimizerCommand.ts b/clients/client-glue/src/commands/CreateTableOptimizerCommand.ts index 90bb284d387fc..84c95cef84381 100644 --- a/clients/client-glue/src/commands/CreateTableOptimizerCommand.ts +++ b/clients/client-glue/src/commands/CreateTableOptimizerCommand.ts @@ -97,6 +97,7 @@ export interface CreateTableOptimizerCommandOutput extends CreateTableOptimizerR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateTableOptimizerCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateTriggerCommand.ts b/clients/client-glue/src/commands/CreateTriggerCommand.ts index 780f2200246ba..944d5cc3c54de 100644 --- a/clients/client-glue/src/commands/CreateTriggerCommand.ts +++ b/clients/client-glue/src/commands/CreateTriggerCommand.ts @@ -118,6 +118,7 @@ export interface CreateTriggerCommandOutput extends CreateTriggerResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateTriggerCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateUsageProfileCommand.ts b/clients/client-glue/src/commands/CreateUsageProfileCommand.ts index 245c9eca4a57a..87cf6994e3d49 100644 --- a/clients/client-glue/src/commands/CreateUsageProfileCommand.ts +++ b/clients/client-glue/src/commands/CreateUsageProfileCommand.ts @@ -99,6 +99,7 @@ export interface CreateUsageProfileCommandOutput extends CreateUsageProfileRespo * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateUsageProfileCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateUserDefinedFunctionCommand.ts b/clients/client-glue/src/commands/CreateUserDefinedFunctionCommand.ts index 4bf0e78e0bdcf..eeecf3c88da03 100644 --- a/clients/client-glue/src/commands/CreateUserDefinedFunctionCommand.ts +++ b/clients/client-glue/src/commands/CreateUserDefinedFunctionCommand.ts @@ -87,6 +87,7 @@ export interface CreateUserDefinedFunctionCommandOutput extends CreateUserDefine * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateUserDefinedFunctionCommand extends $Command diff --git a/clients/client-glue/src/commands/CreateWorkflowCommand.ts b/clients/client-glue/src/commands/CreateWorkflowCommand.ts index 50cbacb9faf15..044ebc5f85195 100644 --- a/clients/client-glue/src/commands/CreateWorkflowCommand.ts +++ b/clients/client-glue/src/commands/CreateWorkflowCommand.ts @@ -81,6 +81,7 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class CreateWorkflowCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteBlueprintCommand.ts b/clients/client-glue/src/commands/DeleteBlueprintCommand.ts index 6708ab5f43fd9..21d1f410e3e7c 100644 --- a/clients/client-glue/src/commands/DeleteBlueprintCommand.ts +++ b/clients/client-glue/src/commands/DeleteBlueprintCommand.ts @@ -64,6 +64,7 @@ export interface DeleteBlueprintCommandOutput extends DeleteBlueprintResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteBlueprintCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteCatalogCommand.ts b/clients/client-glue/src/commands/DeleteCatalogCommand.ts index 7763d15fb915b..2d230911cab3d 100644 --- a/clients/client-glue/src/commands/DeleteCatalogCommand.ts +++ b/clients/client-glue/src/commands/DeleteCatalogCommand.ts @@ -79,6 +79,7 @@ export interface DeleteCatalogCommandOutput extends DeleteCatalogResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteCatalogCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteClassifierCommand.ts b/clients/client-glue/src/commands/DeleteClassifierCommand.ts index fbbd1396b6a5c..5ca8c436b2d30 100644 --- a/clients/client-glue/src/commands/DeleteClassifierCommand.ts +++ b/clients/client-glue/src/commands/DeleteClassifierCommand.ts @@ -59,6 +59,7 @@ export interface DeleteClassifierCommandOutput extends DeleteClassifierResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteClassifierCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteColumnStatisticsForPartitionCommand.ts b/clients/client-glue/src/commands/DeleteColumnStatisticsForPartitionCommand.ts index 62cda3cf12296..ac849cdb9e31a 100644 --- a/clients/client-glue/src/commands/DeleteColumnStatisticsForPartitionCommand.ts +++ b/clients/client-glue/src/commands/DeleteColumnStatisticsForPartitionCommand.ts @@ -83,6 +83,7 @@ export interface DeleteColumnStatisticsForPartitionCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteColumnStatisticsForPartitionCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteColumnStatisticsForTableCommand.ts b/clients/client-glue/src/commands/DeleteColumnStatisticsForTableCommand.ts index cc61aa0a8113a..c68efcf189691 100644 --- a/clients/client-glue/src/commands/DeleteColumnStatisticsForTableCommand.ts +++ b/clients/client-glue/src/commands/DeleteColumnStatisticsForTableCommand.ts @@ -77,6 +77,7 @@ export interface DeleteColumnStatisticsForTableCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteColumnStatisticsForTableCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteColumnStatisticsTaskSettingsCommand.ts b/clients/client-glue/src/commands/DeleteColumnStatisticsTaskSettingsCommand.ts index d59ca4bcdb2aa..5aed699815ef3 100644 --- a/clients/client-glue/src/commands/DeleteColumnStatisticsTaskSettingsCommand.ts +++ b/clients/client-glue/src/commands/DeleteColumnStatisticsTaskSettingsCommand.ts @@ -71,6 +71,7 @@ export interface DeleteColumnStatisticsTaskSettingsCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteColumnStatisticsTaskSettingsCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteConnectionCommand.ts b/clients/client-glue/src/commands/DeleteConnectionCommand.ts index e000f74da45dc..367cfb3215e67 100644 --- a/clients/client-glue/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-glue/src/commands/DeleteConnectionCommand.ts @@ -60,6 +60,7 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteConnectionCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteCrawlerCommand.ts b/clients/client-glue/src/commands/DeleteCrawlerCommand.ts index 54ce9e1a2e549..7364e69559736 100644 --- a/clients/client-glue/src/commands/DeleteCrawlerCommand.ts +++ b/clients/client-glue/src/commands/DeleteCrawlerCommand.ts @@ -66,6 +66,7 @@ export interface DeleteCrawlerCommandOutput extends DeleteCrawlerResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteCrawlerCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteCustomEntityTypeCommand.ts b/clients/client-glue/src/commands/DeleteCustomEntityTypeCommand.ts index 4816563190d49..58cc6e4099f97 100644 --- a/clients/client-glue/src/commands/DeleteCustomEntityTypeCommand.ts +++ b/clients/client-glue/src/commands/DeleteCustomEntityTypeCommand.ts @@ -70,6 +70,7 @@ export interface DeleteCustomEntityTypeCommandOutput extends DeleteCustomEntityT * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteCustomEntityTypeCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteDataQualityRulesetCommand.ts b/clients/client-glue/src/commands/DeleteDataQualityRulesetCommand.ts index 4c860c1a7eeea..5f0e377c15cb9 100644 --- a/clients/client-glue/src/commands/DeleteDataQualityRulesetCommand.ts +++ b/clients/client-glue/src/commands/DeleteDataQualityRulesetCommand.ts @@ -65,6 +65,7 @@ export interface DeleteDataQualityRulesetCommandOutput extends DeleteDataQuality * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteDataQualityRulesetCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteDatabaseCommand.ts b/clients/client-glue/src/commands/DeleteDatabaseCommand.ts index 1ec467bba7771..8b13193177e6e 100644 --- a/clients/client-glue/src/commands/DeleteDatabaseCommand.ts +++ b/clients/client-glue/src/commands/DeleteDatabaseCommand.ts @@ -87,6 +87,7 @@ export interface DeleteDatabaseCommandOutput extends DeleteDatabaseResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteDatabaseCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteDevEndpointCommand.ts b/clients/client-glue/src/commands/DeleteDevEndpointCommand.ts index 61dbfe5aef1b1..91e4c1b14afe5 100644 --- a/clients/client-glue/src/commands/DeleteDevEndpointCommand.ts +++ b/clients/client-glue/src/commands/DeleteDevEndpointCommand.ts @@ -65,6 +65,7 @@ export interface DeleteDevEndpointCommandOutput extends DeleteDevEndpointRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteDevEndpointCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteIntegrationCommand.ts b/clients/client-glue/src/commands/DeleteIntegrationCommand.ts index defae58aca87b..adba8e943cb07 100644 --- a/clients/client-glue/src/commands/DeleteIntegrationCommand.ts +++ b/clients/client-glue/src/commands/DeleteIntegrationCommand.ts @@ -111,6 +111,7 @@ export interface DeleteIntegrationCommandOutput extends DeleteIntegrationRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteIntegrationCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteIntegrationTablePropertiesCommand.ts b/clients/client-glue/src/commands/DeleteIntegrationTablePropertiesCommand.ts index bb4b4e12b7de3..05fbe0870821f 100644 --- a/clients/client-glue/src/commands/DeleteIntegrationTablePropertiesCommand.ts +++ b/clients/client-glue/src/commands/DeleteIntegrationTablePropertiesCommand.ts @@ -80,6 +80,7 @@ export interface DeleteIntegrationTablePropertiesCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteIntegrationTablePropertiesCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteJobCommand.ts b/clients/client-glue/src/commands/DeleteJobCommand.ts index dd23eb9de27dd..4205f3ff25b15 100644 --- a/clients/client-glue/src/commands/DeleteJobCommand.ts +++ b/clients/client-glue/src/commands/DeleteJobCommand.ts @@ -65,6 +65,7 @@ export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBea * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteJobCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteMLTransformCommand.ts b/clients/client-glue/src/commands/DeleteMLTransformCommand.ts index 3c30495991961..3d7b333aa8181 100644 --- a/clients/client-glue/src/commands/DeleteMLTransformCommand.ts +++ b/clients/client-glue/src/commands/DeleteMLTransformCommand.ts @@ -72,6 +72,7 @@ export interface DeleteMLTransformCommandOutput extends DeleteMLTransformRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteMLTransformCommand extends $Command diff --git a/clients/client-glue/src/commands/DeletePartitionCommand.ts b/clients/client-glue/src/commands/DeletePartitionCommand.ts index 73ce658351679..0af34aef37d43 100644 --- a/clients/client-glue/src/commands/DeletePartitionCommand.ts +++ b/clients/client-glue/src/commands/DeletePartitionCommand.ts @@ -70,6 +70,7 @@ export interface DeletePartitionCommandOutput extends DeletePartitionResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeletePartitionCommand extends $Command diff --git a/clients/client-glue/src/commands/DeletePartitionIndexCommand.ts b/clients/client-glue/src/commands/DeletePartitionIndexCommand.ts index 9df1bc4b7b195..0667745f2ea9e 100644 --- a/clients/client-glue/src/commands/DeletePartitionIndexCommand.ts +++ b/clients/client-glue/src/commands/DeletePartitionIndexCommand.ts @@ -74,6 +74,7 @@ export interface DeletePartitionIndexCommandOutput extends DeletePartitionIndexR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeletePartitionIndexCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteRegistryCommand.ts b/clients/client-glue/src/commands/DeleteRegistryCommand.ts index f158b0b9631b8..a09eb7f813e22 100644 --- a/clients/client-glue/src/commands/DeleteRegistryCommand.ts +++ b/clients/client-glue/src/commands/DeleteRegistryCommand.ts @@ -72,6 +72,7 @@ export interface DeleteRegistryCommandOutput extends DeleteRegistryResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteRegistryCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-glue/src/commands/DeleteResourcePolicyCommand.ts index 7c3e7c3f34618..e00dac41ce351 100644 --- a/clients/client-glue/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-glue/src/commands/DeleteResourcePolicyCommand.ts @@ -69,6 +69,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteSchemaCommand.ts b/clients/client-glue/src/commands/DeleteSchemaCommand.ts index 1a1443b8cc33d..cce3f070b60f1 100644 --- a/clients/client-glue/src/commands/DeleteSchemaCommand.ts +++ b/clients/client-glue/src/commands/DeleteSchemaCommand.ts @@ -73,6 +73,7 @@ export interface DeleteSchemaCommandOutput extends DeleteSchemaResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteSchemaCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteSchemaVersionsCommand.ts b/clients/client-glue/src/commands/DeleteSchemaVersionsCommand.ts index 325f998bdac02..461191285d73b 100644 --- a/clients/client-glue/src/commands/DeleteSchemaVersionsCommand.ts +++ b/clients/client-glue/src/commands/DeleteSchemaVersionsCommand.ts @@ -83,6 +83,7 @@ export interface DeleteSchemaVersionsCommandOutput extends DeleteSchemaVersionsR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteSchemaVersionsCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteSecurityConfigurationCommand.ts b/clients/client-glue/src/commands/DeleteSecurityConfigurationCommand.ts index 003803c11d6d6..f9b2c07b56749 100644 --- a/clients/client-glue/src/commands/DeleteSecurityConfigurationCommand.ts +++ b/clients/client-glue/src/commands/DeleteSecurityConfigurationCommand.ts @@ -67,6 +67,7 @@ export interface DeleteSecurityConfigurationCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteSecurityConfigurationCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteSessionCommand.ts b/clients/client-glue/src/commands/DeleteSessionCommand.ts index bf1910f9a0ea8..f3b44e022bd48 100644 --- a/clients/client-glue/src/commands/DeleteSessionCommand.ts +++ b/clients/client-glue/src/commands/DeleteSessionCommand.ts @@ -74,6 +74,7 @@ export interface DeleteSessionCommandOutput extends DeleteSessionResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteSessionCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteTableCommand.ts b/clients/client-glue/src/commands/DeleteTableCommand.ts index ec6e271dcc6ca..c0db09139b94d 100644 --- a/clients/client-glue/src/commands/DeleteTableCommand.ts +++ b/clients/client-glue/src/commands/DeleteTableCommand.ts @@ -90,6 +90,7 @@ export interface DeleteTableCommandOutput extends DeleteTableResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteTableCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteTableOptimizerCommand.ts b/clients/client-glue/src/commands/DeleteTableOptimizerCommand.ts index 1f2527c4fc6cc..9ddd147106b9e 100644 --- a/clients/client-glue/src/commands/DeleteTableOptimizerCommand.ts +++ b/clients/client-glue/src/commands/DeleteTableOptimizerCommand.ts @@ -71,6 +71,7 @@ export interface DeleteTableOptimizerCommandOutput extends DeleteTableOptimizerR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteTableOptimizerCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteTableVersionCommand.ts b/clients/client-glue/src/commands/DeleteTableVersionCommand.ts index 1d5b7be2b1e85..e4266e24f453f 100644 --- a/clients/client-glue/src/commands/DeleteTableVersionCommand.ts +++ b/clients/client-glue/src/commands/DeleteTableVersionCommand.ts @@ -68,6 +68,7 @@ export interface DeleteTableVersionCommandOutput extends DeleteTableVersionRespo * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteTableVersionCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteTriggerCommand.ts b/clients/client-glue/src/commands/DeleteTriggerCommand.ts index b08d93a5fac9c..914f5aace931a 100644 --- a/clients/client-glue/src/commands/DeleteTriggerCommand.ts +++ b/clients/client-glue/src/commands/DeleteTriggerCommand.ts @@ -68,6 +68,7 @@ export interface DeleteTriggerCommandOutput extends DeleteTriggerResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteTriggerCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteUsageProfileCommand.ts b/clients/client-glue/src/commands/DeleteUsageProfileCommand.ts index 1324df3c85b82..c927ae44b2286 100644 --- a/clients/client-glue/src/commands/DeleteUsageProfileCommand.ts +++ b/clients/client-glue/src/commands/DeleteUsageProfileCommand.ts @@ -65,6 +65,7 @@ export interface DeleteUsageProfileCommandOutput extends DeleteUsageProfileRespo * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteUsageProfileCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteUserDefinedFunctionCommand.ts b/clients/client-glue/src/commands/DeleteUserDefinedFunctionCommand.ts index 5cb702ab0eadd..4a303722e263b 100644 --- a/clients/client-glue/src/commands/DeleteUserDefinedFunctionCommand.ts +++ b/clients/client-glue/src/commands/DeleteUserDefinedFunctionCommand.ts @@ -67,6 +67,7 @@ export interface DeleteUserDefinedFunctionCommandOutput extends DeleteUserDefine * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteUserDefinedFunctionCommand extends $Command diff --git a/clients/client-glue/src/commands/DeleteWorkflowCommand.ts b/clients/client-glue/src/commands/DeleteWorkflowCommand.ts index 60ef327f51e8c..44fefa0d43723 100644 --- a/clients/client-glue/src/commands/DeleteWorkflowCommand.ts +++ b/clients/client-glue/src/commands/DeleteWorkflowCommand.ts @@ -67,6 +67,7 @@ export interface DeleteWorkflowCommandOutput extends DeleteWorkflowResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DeleteWorkflowCommand extends $Command diff --git a/clients/client-glue/src/commands/DescribeConnectionTypeCommand.ts b/clients/client-glue/src/commands/DescribeConnectionTypeCommand.ts index 1ec222fbcc68c..ad3335f3d56f6 100644 --- a/clients/client-glue/src/commands/DescribeConnectionTypeCommand.ts +++ b/clients/client-glue/src/commands/DescribeConnectionTypeCommand.ts @@ -206,6 +206,7 @@ export interface DescribeConnectionTypeCommandOutput extends DescribeConnectionT * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DescribeConnectionTypeCommand extends $Command diff --git a/clients/client-glue/src/commands/DescribeEntityCommand.ts b/clients/client-glue/src/commands/DescribeEntityCommand.ts index 798943b4f3291..26f6cac90c89e 100644 --- a/clients/client-glue/src/commands/DescribeEntityCommand.ts +++ b/clients/client-glue/src/commands/DescribeEntityCommand.ts @@ -109,6 +109,7 @@ export interface DescribeEntityCommandOutput extends DescribeEntityResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DescribeEntityCommand extends $Command diff --git a/clients/client-glue/src/commands/DescribeInboundIntegrationsCommand.ts b/clients/client-glue/src/commands/DescribeInboundIntegrationsCommand.ts index 6e81891175887..49a83ca724431 100644 --- a/clients/client-glue/src/commands/DescribeInboundIntegrationsCommand.ts +++ b/clients/client-glue/src/commands/DescribeInboundIntegrationsCommand.ts @@ -102,6 +102,7 @@ export interface DescribeInboundIntegrationsCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DescribeInboundIntegrationsCommand extends $Command diff --git a/clients/client-glue/src/commands/DescribeIntegrationsCommand.ts b/clients/client-glue/src/commands/DescribeIntegrationsCommand.ts index a481ebd56b075..4548f45883d32 100644 --- a/clients/client-glue/src/commands/DescribeIntegrationsCommand.ts +++ b/clients/client-glue/src/commands/DescribeIntegrationsCommand.ts @@ -114,6 +114,7 @@ export interface DescribeIntegrationsCommandOutput extends DescribeIntegrationsR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class DescribeIntegrationsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetBlueprintCommand.ts b/clients/client-glue/src/commands/GetBlueprintCommand.ts index 8f2ee203c2af8..9faac5a713233 100644 --- a/clients/client-glue/src/commands/GetBlueprintCommand.ts +++ b/clients/client-glue/src/commands/GetBlueprintCommand.ts @@ -86,6 +86,7 @@ export interface GetBlueprintCommandOutput extends GetBlueprintResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetBlueprintCommand extends $Command diff --git a/clients/client-glue/src/commands/GetBlueprintRunCommand.ts b/clients/client-glue/src/commands/GetBlueprintRunCommand.ts index a300423f7ed55..9dd86d0608686 100644 --- a/clients/client-glue/src/commands/GetBlueprintRunCommand.ts +++ b/clients/client-glue/src/commands/GetBlueprintRunCommand.ts @@ -76,6 +76,7 @@ export interface GetBlueprintRunCommandOutput extends GetBlueprintRunResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetBlueprintRunCommand extends $Command diff --git a/clients/client-glue/src/commands/GetBlueprintRunsCommand.ts b/clients/client-glue/src/commands/GetBlueprintRunsCommand.ts index 19e70e4f65ea8..9f377c5128581 100644 --- a/clients/client-glue/src/commands/GetBlueprintRunsCommand.ts +++ b/clients/client-glue/src/commands/GetBlueprintRunsCommand.ts @@ -83,6 +83,7 @@ export interface GetBlueprintRunsCommandOutput extends GetBlueprintRunsResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetBlueprintRunsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetCatalogCommand.ts b/clients/client-glue/src/commands/GetCatalogCommand.ts index b99be093b12e5..2077dd5324d46 100644 --- a/clients/client-glue/src/commands/GetCatalogCommand.ts +++ b/clients/client-glue/src/commands/GetCatalogCommand.ts @@ -132,6 +132,7 @@ export interface GetCatalogCommandOutput extends GetCatalogResponse, __MetadataB * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetCatalogCommand extends $Command diff --git a/clients/client-glue/src/commands/GetCatalogImportStatusCommand.ts b/clients/client-glue/src/commands/GetCatalogImportStatusCommand.ts index 94c34571c7add..1c479d7054986 100644 --- a/clients/client-glue/src/commands/GetCatalogImportStatusCommand.ts +++ b/clients/client-glue/src/commands/GetCatalogImportStatusCommand.ts @@ -65,6 +65,7 @@ export interface GetCatalogImportStatusCommandOutput extends GetCatalogImportSta * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetCatalogImportStatusCommand extends $Command diff --git a/clients/client-glue/src/commands/GetCatalogsCommand.ts b/clients/client-glue/src/commands/GetCatalogsCommand.ts index fcc9f3d6b416a..ddd5d1227cfe3 100644 --- a/clients/client-glue/src/commands/GetCatalogsCommand.ts +++ b/clients/client-glue/src/commands/GetCatalogsCommand.ts @@ -139,6 +139,7 @@ export interface GetCatalogsCommandOutput extends GetCatalogsResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetCatalogsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetClassifierCommand.ts b/clients/client-glue/src/commands/GetClassifierCommand.ts index ce0c3455e57fb..15e84ff42e323 100644 --- a/clients/client-glue/src/commands/GetClassifierCommand.ts +++ b/clients/client-glue/src/commands/GetClassifierCommand.ts @@ -105,6 +105,7 @@ export interface GetClassifierCommandOutput extends GetClassifierResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetClassifierCommand extends $Command diff --git a/clients/client-glue/src/commands/GetClassifiersCommand.ts b/clients/client-glue/src/commands/GetClassifiersCommand.ts index 01bbb059ab55a..cb3eabbc203ed 100644 --- a/clients/client-glue/src/commands/GetClassifiersCommand.ts +++ b/clients/client-glue/src/commands/GetClassifiersCommand.ts @@ -106,6 +106,7 @@ export interface GetClassifiersCommandOutput extends GetClassifiersResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetClassifiersCommand extends $Command diff --git a/clients/client-glue/src/commands/GetColumnStatisticsForPartitionCommand.ts b/clients/client-glue/src/commands/GetColumnStatisticsForPartitionCommand.ts index 3ce67561441ee..d2e7e1c1e3209 100644 --- a/clients/client-glue/src/commands/GetColumnStatisticsForPartitionCommand.ts +++ b/clients/client-glue/src/commands/GetColumnStatisticsForPartitionCommand.ts @@ -148,6 +148,7 @@ export interface GetColumnStatisticsForPartitionCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetColumnStatisticsForPartitionCommand extends $Command diff --git a/clients/client-glue/src/commands/GetColumnStatisticsForTableCommand.ts b/clients/client-glue/src/commands/GetColumnStatisticsForTableCommand.ts index 2c4c7df92acd1..2966619a32e2d 100644 --- a/clients/client-glue/src/commands/GetColumnStatisticsForTableCommand.ts +++ b/clients/client-glue/src/commands/GetColumnStatisticsForTableCommand.ts @@ -142,6 +142,7 @@ export interface GetColumnStatisticsForTableCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetColumnStatisticsForTableCommand extends $Command diff --git a/clients/client-glue/src/commands/GetColumnStatisticsTaskRunCommand.ts b/clients/client-glue/src/commands/GetColumnStatisticsTaskRunCommand.ts index 4d61f25ab5984..f0e791ce8b3d6 100644 --- a/clients/client-glue/src/commands/GetColumnStatisticsTaskRunCommand.ts +++ b/clients/client-glue/src/commands/GetColumnStatisticsTaskRunCommand.ts @@ -86,6 +86,7 @@ export interface GetColumnStatisticsTaskRunCommandOutput extends GetColumnStatis * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetColumnStatisticsTaskRunCommand extends $Command diff --git a/clients/client-glue/src/commands/GetColumnStatisticsTaskRunsCommand.ts b/clients/client-glue/src/commands/GetColumnStatisticsTaskRunsCommand.ts index 4d9ed28563eec..512445b7bde5b 100644 --- a/clients/client-glue/src/commands/GetColumnStatisticsTaskRunsCommand.ts +++ b/clients/client-glue/src/commands/GetColumnStatisticsTaskRunsCommand.ts @@ -88,6 +88,7 @@ export interface GetColumnStatisticsTaskRunsCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetColumnStatisticsTaskRunsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetColumnStatisticsTaskSettingsCommand.ts b/clients/client-glue/src/commands/GetColumnStatisticsTaskSettingsCommand.ts index 9c53c69c772c5..653e4c6b5a5b9 100644 --- a/clients/client-glue/src/commands/GetColumnStatisticsTaskSettingsCommand.ts +++ b/clients/client-glue/src/commands/GetColumnStatisticsTaskSettingsCommand.ts @@ -93,6 +93,7 @@ export interface GetColumnStatisticsTaskSettingsCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetColumnStatisticsTaskSettingsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetConnectionCommand.ts b/clients/client-glue/src/commands/GetConnectionCommand.ts index 0ea6294857c14..3076b33ccd54b 100644 --- a/clients/client-glue/src/commands/GetConnectionCommand.ts +++ b/clients/client-glue/src/commands/GetConnectionCommand.ts @@ -121,6 +121,7 @@ export interface GetConnectionCommandOutput extends GetConnectionResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetConnectionCommand extends $Command diff --git a/clients/client-glue/src/commands/GetConnectionsCommand.ts b/clients/client-glue/src/commands/GetConnectionsCommand.ts index f3ed18296bc07..f8eefd415068f 100644 --- a/clients/client-glue/src/commands/GetConnectionsCommand.ts +++ b/clients/client-glue/src/commands/GetConnectionsCommand.ts @@ -131,6 +131,7 @@ export interface GetConnectionsCommandOutput extends GetConnectionsResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetConnectionsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetCrawlerCommand.ts b/clients/client-glue/src/commands/GetCrawlerCommand.ts index 673bc95aab85c..32dfed3b71288 100644 --- a/clients/client-glue/src/commands/GetCrawlerCommand.ts +++ b/clients/client-glue/src/commands/GetCrawlerCommand.ts @@ -184,6 +184,7 @@ export interface GetCrawlerCommandOutput extends GetCrawlerResponse, __MetadataB * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetCrawlerCommand extends $Command diff --git a/clients/client-glue/src/commands/GetCrawlerMetricsCommand.ts b/clients/client-glue/src/commands/GetCrawlerMetricsCommand.ts index 3ea8c5ae3238c..2015604bedc22 100644 --- a/clients/client-glue/src/commands/GetCrawlerMetricsCommand.ts +++ b/clients/client-glue/src/commands/GetCrawlerMetricsCommand.ts @@ -74,6 +74,7 @@ export interface GetCrawlerMetricsCommandOutput extends GetCrawlerMetricsRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetCrawlerMetricsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetCrawlersCommand.ts b/clients/client-glue/src/commands/GetCrawlersCommand.ts index 388aacabc1a97..a95b256d68df4 100644 --- a/clients/client-glue/src/commands/GetCrawlersCommand.ts +++ b/clients/client-glue/src/commands/GetCrawlersCommand.ts @@ -186,6 +186,7 @@ export interface GetCrawlersCommandOutput extends GetCrawlersResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetCrawlersCommand extends $Command diff --git a/clients/client-glue/src/commands/GetCustomEntityTypeCommand.ts b/clients/client-glue/src/commands/GetCustomEntityTypeCommand.ts index cf3f277dd66d2..ed225e57d1fb3 100644 --- a/clients/client-glue/src/commands/GetCustomEntityTypeCommand.ts +++ b/clients/client-glue/src/commands/GetCustomEntityTypeCommand.ts @@ -74,6 +74,7 @@ export interface GetCustomEntityTypeCommandOutput extends GetCustomEntityTypeRes * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetCustomEntityTypeCommand extends $Command diff --git a/clients/client-glue/src/commands/GetDataCatalogEncryptionSettingsCommand.ts b/clients/client-glue/src/commands/GetDataCatalogEncryptionSettingsCommand.ts index 6e577bcd4ba45..56acbe8200f70 100644 --- a/clients/client-glue/src/commands/GetDataCatalogEncryptionSettingsCommand.ts +++ b/clients/client-glue/src/commands/GetDataCatalogEncryptionSettingsCommand.ts @@ -79,6 +79,7 @@ export interface GetDataCatalogEncryptionSettingsCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetDataCatalogEncryptionSettingsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetDataQualityModelCommand.ts b/clients/client-glue/src/commands/GetDataQualityModelCommand.ts index df6ca0600ff62..1da113d52259c 100644 --- a/clients/client-glue/src/commands/GetDataQualityModelCommand.ts +++ b/clients/client-glue/src/commands/GetDataQualityModelCommand.ts @@ -71,6 +71,7 @@ export interface GetDataQualityModelCommandOutput extends GetDataQualityModelRes * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetDataQualityModelCommand extends $Command diff --git a/clients/client-glue/src/commands/GetDataQualityModelResultCommand.ts b/clients/client-glue/src/commands/GetDataQualityModelResultCommand.ts index 9d3bf56d01e2e..04ab8c1d78085 100644 --- a/clients/client-glue/src/commands/GetDataQualityModelResultCommand.ts +++ b/clients/client-glue/src/commands/GetDataQualityModelResultCommand.ts @@ -78,6 +78,7 @@ export interface GetDataQualityModelResultCommandOutput extends GetDataQualityMo * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetDataQualityModelResultCommand extends $Command diff --git a/clients/client-glue/src/commands/GetDataQualityResultCommand.ts b/clients/client-glue/src/commands/GetDataQualityResultCommand.ts index e21e5682b8ac4..17fcc24a3cd42 100644 --- a/clients/client-glue/src/commands/GetDataQualityResultCommand.ts +++ b/clients/client-glue/src/commands/GetDataQualityResultCommand.ts @@ -131,6 +131,7 @@ export interface GetDataQualityResultCommandOutput extends GetDataQualityResultR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetDataQualityResultCommand extends $Command diff --git a/clients/client-glue/src/commands/GetDataQualityRuleRecommendationRunCommand.ts b/clients/client-glue/src/commands/GetDataQualityRuleRecommendationRunCommand.ts index 0098f26d70680..4eb68e6028a4d 100644 --- a/clients/client-glue/src/commands/GetDataQualityRuleRecommendationRunCommand.ts +++ b/clients/client-glue/src/commands/GetDataQualityRuleRecommendationRunCommand.ts @@ -98,6 +98,7 @@ export interface GetDataQualityRuleRecommendationRunCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetDataQualityRuleRecommendationRunCommand extends $Command diff --git a/clients/client-glue/src/commands/GetDataQualityRulesetCommand.ts b/clients/client-glue/src/commands/GetDataQualityRulesetCommand.ts index 36671697f3db9..be359173c9587 100644 --- a/clients/client-glue/src/commands/GetDataQualityRulesetCommand.ts +++ b/clients/client-glue/src/commands/GetDataQualityRulesetCommand.ts @@ -78,6 +78,7 @@ export interface GetDataQualityRulesetCommandOutput extends GetDataQualityRulese * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetDataQualityRulesetCommand extends $Command diff --git a/clients/client-glue/src/commands/GetDataQualityRulesetEvaluationRunCommand.ts b/clients/client-glue/src/commands/GetDataQualityRulesetEvaluationRunCommand.ts index 93e92d5116bb4..9037c602b3017 100644 --- a/clients/client-glue/src/commands/GetDataQualityRulesetEvaluationRunCommand.ts +++ b/clients/client-glue/src/commands/GetDataQualityRulesetEvaluationRunCommand.ts @@ -119,6 +119,7 @@ export interface GetDataQualityRulesetEvaluationRunCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetDataQualityRulesetEvaluationRunCommand extends $Command diff --git a/clients/client-glue/src/commands/GetDatabaseCommand.ts b/clients/client-glue/src/commands/GetDatabaseCommand.ts index c04c4502b5804..3686e8d456fe2 100644 --- a/clients/client-glue/src/commands/GetDatabaseCommand.ts +++ b/clients/client-glue/src/commands/GetDatabaseCommand.ts @@ -105,6 +105,7 @@ export interface GetDatabaseCommandOutput extends GetDatabaseResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetDatabaseCommand extends $Command diff --git a/clients/client-glue/src/commands/GetDatabasesCommand.ts b/clients/client-glue/src/commands/GetDatabasesCommand.ts index 561b09ca60c5a..2d2659a93a54b 100644 --- a/clients/client-glue/src/commands/GetDatabasesCommand.ts +++ b/clients/client-glue/src/commands/GetDatabasesCommand.ts @@ -113,6 +113,7 @@ export interface GetDatabasesCommandOutput extends GetDatabasesResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetDatabasesCommand extends $Command diff --git a/clients/client-glue/src/commands/GetDataflowGraphCommand.ts b/clients/client-glue/src/commands/GetDataflowGraphCommand.ts index bd5fd176411f8..2660d38a3625c 100644 --- a/clients/client-glue/src/commands/GetDataflowGraphCommand.ts +++ b/clients/client-glue/src/commands/GetDataflowGraphCommand.ts @@ -84,6 +84,7 @@ export interface GetDataflowGraphCommandOutput extends GetDataflowGraphResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetDataflowGraphCommand extends $Command diff --git a/clients/client-glue/src/commands/GetDevEndpointCommand.ts b/clients/client-glue/src/commands/GetDevEndpointCommand.ts index 8f1da6e4b8c71..b68719a4dde71 100644 --- a/clients/client-glue/src/commands/GetDevEndpointCommand.ts +++ b/clients/client-glue/src/commands/GetDevEndpointCommand.ts @@ -104,6 +104,7 @@ export interface GetDevEndpointCommandOutput extends GetDevEndpointResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetDevEndpointCommand extends $Command diff --git a/clients/client-glue/src/commands/GetDevEndpointsCommand.ts b/clients/client-glue/src/commands/GetDevEndpointsCommand.ts index ed0c651d3ea0d..95bc5151f737d 100644 --- a/clients/client-glue/src/commands/GetDevEndpointsCommand.ts +++ b/clients/client-glue/src/commands/GetDevEndpointsCommand.ts @@ -108,6 +108,7 @@ export interface GetDevEndpointsCommandOutput extends GetDevEndpointsResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetDevEndpointsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetEntityRecordsCommand.ts b/clients/client-glue/src/commands/GetEntityRecordsCommand.ts index 6616e5991de43..911eb8d1ca17a 100644 --- a/clients/client-glue/src/commands/GetEntityRecordsCommand.ts +++ b/clients/client-glue/src/commands/GetEntityRecordsCommand.ts @@ -98,6 +98,7 @@ export interface GetEntityRecordsCommandOutput extends GetEntityRecordsResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetEntityRecordsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetIntegrationResourcePropertyCommand.ts b/clients/client-glue/src/commands/GetIntegrationResourcePropertyCommand.ts index 58ac6747d18d4..b4df8ef088ede 100644 --- a/clients/client-glue/src/commands/GetIntegrationResourcePropertyCommand.ts +++ b/clients/client-glue/src/commands/GetIntegrationResourcePropertyCommand.ts @@ -90,6 +90,7 @@ export interface GetIntegrationResourcePropertyCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetIntegrationResourcePropertyCommand extends $Command diff --git a/clients/client-glue/src/commands/GetIntegrationTablePropertiesCommand.ts b/clients/client-glue/src/commands/GetIntegrationTablePropertiesCommand.ts index 1616cbff97229..fcf4907be9593 100644 --- a/clients/client-glue/src/commands/GetIntegrationTablePropertiesCommand.ts +++ b/clients/client-glue/src/commands/GetIntegrationTablePropertiesCommand.ts @@ -103,6 +103,7 @@ export interface GetIntegrationTablePropertiesCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetIntegrationTablePropertiesCommand extends $Command diff --git a/clients/client-glue/src/commands/GetJobBookmarkCommand.ts b/clients/client-glue/src/commands/GetJobBookmarkCommand.ts index b71a734a568cd..5cbc5b3108742 100644 --- a/clients/client-glue/src/commands/GetJobBookmarkCommand.ts +++ b/clients/client-glue/src/commands/GetJobBookmarkCommand.ts @@ -97,6 +97,7 @@ export interface GetJobBookmarkCommandOutput extends GetJobBookmarkResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetJobBookmarkCommand extends $Command diff --git a/clients/client-glue/src/commands/GetJobCommand.ts b/clients/client-glue/src/commands/GetJobCommand.ts index aff57f93463ef..8bc6152dfa30d 100644 --- a/clients/client-glue/src/commands/GetJobCommand.ts +++ b/clients/client-glue/src/commands/GetJobCommand.ts @@ -1163,6 +1163,7 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {} * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetJobCommand extends $Command diff --git a/clients/client-glue/src/commands/GetJobRunCommand.ts b/clients/client-glue/src/commands/GetJobRunCommand.ts index ba86e1f8b2cf0..d0bee67073a10 100644 --- a/clients/client-glue/src/commands/GetJobRunCommand.ts +++ b/clients/client-glue/src/commands/GetJobRunCommand.ts @@ -108,6 +108,7 @@ export interface GetJobRunCommandOutput extends GetJobRunResponse, __MetadataBea * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetJobRunCommand extends $Command diff --git a/clients/client-glue/src/commands/GetJobRunsCommand.ts b/clients/client-glue/src/commands/GetJobRunsCommand.ts index 1a22a4439e489..2d208f6e9f23b 100644 --- a/clients/client-glue/src/commands/GetJobRunsCommand.ts +++ b/clients/client-glue/src/commands/GetJobRunsCommand.ts @@ -113,6 +113,7 @@ export interface GetJobRunsCommandOutput extends GetJobRunsResponse, __MetadataB * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetJobRunsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetJobsCommand.ts b/clients/client-glue/src/commands/GetJobsCommand.ts index b11c924e91bd1..266d8f31a937a 100644 --- a/clients/client-glue/src/commands/GetJobsCommand.ts +++ b/clients/client-glue/src/commands/GetJobsCommand.ts @@ -1167,6 +1167,7 @@ export interface GetJobsCommandOutput extends GetJobsResponse, __MetadataBearer * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetJobsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetMLTaskRunCommand.ts b/clients/client-glue/src/commands/GetMLTaskRunCommand.ts index 34d1721092d7a..b18a34ce13b27 100644 --- a/clients/client-glue/src/commands/GetMLTaskRunCommand.ts +++ b/clients/client-glue/src/commands/GetMLTaskRunCommand.ts @@ -98,6 +98,7 @@ export interface GetMLTaskRunCommandOutput extends GetMLTaskRunResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetMLTaskRunCommand extends $Command diff --git a/clients/client-glue/src/commands/GetMLTaskRunsCommand.ts b/clients/client-glue/src/commands/GetMLTaskRunsCommand.ts index 1385a9917ffba..76b881c486c06 100644 --- a/clients/client-glue/src/commands/GetMLTaskRunsCommand.ts +++ b/clients/client-glue/src/commands/GetMLTaskRunsCommand.ts @@ -115,6 +115,7 @@ export interface GetMLTaskRunsCommandOutput extends GetMLTaskRunsResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetMLTaskRunsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetMLTransformCommand.ts b/clients/client-glue/src/commands/GetMLTransformCommand.ts index 6434d4c5096a6..65a033558237b 100644 --- a/clients/client-glue/src/commands/GetMLTransformCommand.ts +++ b/clients/client-glue/src/commands/GetMLTransformCommand.ts @@ -138,6 +138,7 @@ export interface GetMLTransformCommandOutput extends GetMLTransformResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetMLTransformCommand extends $Command diff --git a/clients/client-glue/src/commands/GetMLTransformsCommand.ts b/clients/client-glue/src/commands/GetMLTransformsCommand.ts index fdb1f59e7ec15..e320e51577ee8 100644 --- a/clients/client-glue/src/commands/GetMLTransformsCommand.ts +++ b/clients/client-glue/src/commands/GetMLTransformsCommand.ts @@ -164,6 +164,7 @@ export interface GetMLTransformsCommandOutput extends GetMLTransformsResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetMLTransformsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetMappingCommand.ts b/clients/client-glue/src/commands/GetMappingCommand.ts index e8acf2e541cc6..81aab7c142dd5 100644 --- a/clients/client-glue/src/commands/GetMappingCommand.ts +++ b/clients/client-glue/src/commands/GetMappingCommand.ts @@ -108,6 +108,7 @@ export interface GetMappingCommandOutput extends GetMappingResponse, __MetadataB * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetMappingCommand extends $Command diff --git a/clients/client-glue/src/commands/GetPartitionCommand.ts b/clients/client-glue/src/commands/GetPartitionCommand.ts index 5d8148ea26a42..44a7c9e8b18b2 100644 --- a/clients/client-glue/src/commands/GetPartitionCommand.ts +++ b/clients/client-glue/src/commands/GetPartitionCommand.ts @@ -150,6 +150,7 @@ export interface GetPartitionCommandOutput extends GetPartitionResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetPartitionCommand extends $Command diff --git a/clients/client-glue/src/commands/GetPartitionIndexesCommand.ts b/clients/client-glue/src/commands/GetPartitionIndexesCommand.ts index 582168c9dc8b0..1408a2ea379ab 100644 --- a/clients/client-glue/src/commands/GetPartitionIndexesCommand.ts +++ b/clients/client-glue/src/commands/GetPartitionIndexesCommand.ts @@ -97,6 +97,7 @@ export interface GetPartitionIndexesCommandOutput extends GetPartitionIndexesRes * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetPartitionIndexesCommand extends $Command diff --git a/clients/client-glue/src/commands/GetPartitionsCommand.ts b/clients/client-glue/src/commands/GetPartitionsCommand.ts index e16b891e5593a..f740e075964ef 100644 --- a/clients/client-glue/src/commands/GetPartitionsCommand.ts +++ b/clients/client-glue/src/commands/GetPartitionsCommand.ts @@ -166,6 +166,7 @@ export interface GetPartitionsCommandOutput extends GetPartitionsResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetPartitionsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetPlanCommand.ts b/clients/client-glue/src/commands/GetPlanCommand.ts index e3b4119120a27..1b4698a67e4fb 100644 --- a/clients/client-glue/src/commands/GetPlanCommand.ts +++ b/clients/client-glue/src/commands/GetPlanCommand.ts @@ -111,6 +111,7 @@ export interface GetPlanCommandOutput extends GetPlanResponse, __MetadataBearer * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetPlanCommand extends $Command diff --git a/clients/client-glue/src/commands/GetRegistryCommand.ts b/clients/client-glue/src/commands/GetRegistryCommand.ts index 603dcd222b5e5..00810a92e0b82 100644 --- a/clients/client-glue/src/commands/GetRegistryCommand.ts +++ b/clients/client-glue/src/commands/GetRegistryCommand.ts @@ -75,6 +75,7 @@ export interface GetRegistryCommandOutput extends GetRegistryResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetRegistryCommand extends $Command diff --git a/clients/client-glue/src/commands/GetResourcePoliciesCommand.ts b/clients/client-glue/src/commands/GetResourcePoliciesCommand.ts index 764427e924e66..addf119e44516 100644 --- a/clients/client-glue/src/commands/GetResourcePoliciesCommand.ts +++ b/clients/client-glue/src/commands/GetResourcePoliciesCommand.ts @@ -81,6 +81,7 @@ export interface GetResourcePoliciesCommandOutput extends GetResourcePoliciesRes * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetResourcePoliciesCommand extends $Command diff --git a/clients/client-glue/src/commands/GetResourcePolicyCommand.ts b/clients/client-glue/src/commands/GetResourcePolicyCommand.ts index f10d434ff952c..47f673effbb8b 100644 --- a/clients/client-glue/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-glue/src/commands/GetResourcePolicyCommand.ts @@ -70,6 +70,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-glue/src/commands/GetSchemaByDefinitionCommand.ts b/clients/client-glue/src/commands/GetSchemaByDefinitionCommand.ts index 0654f50e7bc13..bb513df9ed2a3 100644 --- a/clients/client-glue/src/commands/GetSchemaByDefinitionCommand.ts +++ b/clients/client-glue/src/commands/GetSchemaByDefinitionCommand.ts @@ -76,6 +76,7 @@ export interface GetSchemaByDefinitionCommandOutput extends GetSchemaByDefinitio * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetSchemaByDefinitionCommand extends $Command diff --git a/clients/client-glue/src/commands/GetSchemaCommand.ts b/clients/client-glue/src/commands/GetSchemaCommand.ts index 3a606060a7eab..f085d0d62599a 100644 --- a/clients/client-glue/src/commands/GetSchemaCommand.ts +++ b/clients/client-glue/src/commands/GetSchemaCommand.ts @@ -83,6 +83,7 @@ export interface GetSchemaCommandOutput extends GetSchemaResponse, __MetadataBea * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetSchemaCommand extends $Command diff --git a/clients/client-glue/src/commands/GetSchemaVersionCommand.ts b/clients/client-glue/src/commands/GetSchemaVersionCommand.ts index 9b857d904667f..8c90374e3e690 100644 --- a/clients/client-glue/src/commands/GetSchemaVersionCommand.ts +++ b/clients/client-glue/src/commands/GetSchemaVersionCommand.ts @@ -82,6 +82,7 @@ export interface GetSchemaVersionCommandOutput extends GetSchemaVersionResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetSchemaVersionCommand extends $Command diff --git a/clients/client-glue/src/commands/GetSchemaVersionsDiffCommand.ts b/clients/client-glue/src/commands/GetSchemaVersionsDiffCommand.ts index b5b54a201c998..454c1450af4b8 100644 --- a/clients/client-glue/src/commands/GetSchemaVersionsDiffCommand.ts +++ b/clients/client-glue/src/commands/GetSchemaVersionsDiffCommand.ts @@ -81,6 +81,7 @@ export interface GetSchemaVersionsDiffCommandOutput extends GetSchemaVersionsDif * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetSchemaVersionsDiffCommand extends $Command diff --git a/clients/client-glue/src/commands/GetSecurityConfigurationCommand.ts b/clients/client-glue/src/commands/GetSecurityConfigurationCommand.ts index 8573f350420c0..912915c7b7629 100644 --- a/clients/client-glue/src/commands/GetSecurityConfigurationCommand.ts +++ b/clients/client-glue/src/commands/GetSecurityConfigurationCommand.ts @@ -90,6 +90,7 @@ export interface GetSecurityConfigurationCommandOutput extends GetSecurityConfig * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetSecurityConfigurationCommand extends $Command diff --git a/clients/client-glue/src/commands/GetSecurityConfigurationsCommand.ts b/clients/client-glue/src/commands/GetSecurityConfigurationsCommand.ts index b62b83eeff762..536b761365a85 100644 --- a/clients/client-glue/src/commands/GetSecurityConfigurationsCommand.ts +++ b/clients/client-glue/src/commands/GetSecurityConfigurationsCommand.ts @@ -94,6 +94,7 @@ export interface GetSecurityConfigurationsCommandOutput extends GetSecurityConfi * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetSecurityConfigurationsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetSessionCommand.ts b/clients/client-glue/src/commands/GetSessionCommand.ts index 3b4f89b183fbe..53c0fcc65abef 100644 --- a/clients/client-glue/src/commands/GetSessionCommand.ts +++ b/clients/client-glue/src/commands/GetSessionCommand.ts @@ -101,6 +101,7 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetSessionCommand extends $Command diff --git a/clients/client-glue/src/commands/GetStatementCommand.ts b/clients/client-glue/src/commands/GetStatementCommand.ts index b8ecd5463ce30..fef394c04989a 100644 --- a/clients/client-glue/src/commands/GetStatementCommand.ts +++ b/clients/client-glue/src/commands/GetStatementCommand.ts @@ -94,6 +94,7 @@ export interface GetStatementCommandOutput extends GetStatementResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetStatementCommand extends $Command diff --git a/clients/client-glue/src/commands/GetTableCommand.ts b/clients/client-glue/src/commands/GetTableCommand.ts index 5f4234fcb5b1b..6f0d93022cd56 100644 --- a/clients/client-glue/src/commands/GetTableCommand.ts +++ b/clients/client-glue/src/commands/GetTableCommand.ts @@ -340,6 +340,7 @@ export interface GetTableCommandOutput extends GetTableResponse, __MetadataBeare * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetTableCommand extends $Command diff --git a/clients/client-glue/src/commands/GetTableOptimizerCommand.ts b/clients/client-glue/src/commands/GetTableOptimizerCommand.ts index 3ff34ba2d197f..63b516bd83296 100644 --- a/clients/client-glue/src/commands/GetTableOptimizerCommand.ts +++ b/clients/client-glue/src/commands/GetTableOptimizerCommand.ts @@ -134,6 +134,7 @@ export interface GetTableOptimizerCommandOutput extends GetTableOptimizerRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetTableOptimizerCommand extends $Command diff --git a/clients/client-glue/src/commands/GetTableVersionCommand.ts b/clients/client-glue/src/commands/GetTableVersionCommand.ts index 8ae48a13ed8c2..7b63fb2a7428e 100644 --- a/clients/client-glue/src/commands/GetTableVersionCommand.ts +++ b/clients/client-glue/src/commands/GetTableVersionCommand.ts @@ -331,6 +331,7 @@ export interface GetTableVersionCommandOutput extends GetTableVersionResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetTableVersionCommand extends $Command diff --git a/clients/client-glue/src/commands/GetTableVersionsCommand.ts b/clients/client-glue/src/commands/GetTableVersionsCommand.ts index 61a749b89577a..93fae56d4e6b9 100644 --- a/clients/client-glue/src/commands/GetTableVersionsCommand.ts +++ b/clients/client-glue/src/commands/GetTableVersionsCommand.ts @@ -336,6 +336,7 @@ export interface GetTableVersionsCommandOutput extends GetTableVersionsResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetTableVersionsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetTablesCommand.ts b/clients/client-glue/src/commands/GetTablesCommand.ts index 5a9cf38b22dea..39c45b823584d 100644 --- a/clients/client-glue/src/commands/GetTablesCommand.ts +++ b/clients/client-glue/src/commands/GetTablesCommand.ts @@ -345,6 +345,7 @@ export interface GetTablesCommandOutput extends GetTablesResponse, __MetadataBea * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetTablesCommand extends $Command diff --git a/clients/client-glue/src/commands/GetTagsCommand.ts b/clients/client-glue/src/commands/GetTagsCommand.ts index c59765f7c1618..f0b4b3ba000b3 100644 --- a/clients/client-glue/src/commands/GetTagsCommand.ts +++ b/clients/client-glue/src/commands/GetTagsCommand.ts @@ -69,6 +69,7 @@ export interface GetTagsCommandOutput extends GetTagsResponse, __MetadataBearer * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetTagsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetTriggerCommand.ts b/clients/client-glue/src/commands/GetTriggerCommand.ts index f50c8a4586338..9038b88287e1b 100644 --- a/clients/client-glue/src/commands/GetTriggerCommand.ts +++ b/clients/client-glue/src/commands/GetTriggerCommand.ts @@ -105,6 +105,7 @@ export interface GetTriggerCommandOutput extends GetTriggerResponse, __MetadataB * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetTriggerCommand extends $Command diff --git a/clients/client-glue/src/commands/GetTriggersCommand.ts b/clients/client-glue/src/commands/GetTriggersCommand.ts index fff9b4663d53b..d61d60281ce1c 100644 --- a/clients/client-glue/src/commands/GetTriggersCommand.ts +++ b/clients/client-glue/src/commands/GetTriggersCommand.ts @@ -110,6 +110,7 @@ export interface GetTriggersCommandOutput extends GetTriggersResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetTriggersCommand extends $Command diff --git a/clients/client-glue/src/commands/GetUnfilteredPartitionMetadataCommand.ts b/clients/client-glue/src/commands/GetUnfilteredPartitionMetadataCommand.ts index 55a302cdfb732..a08e9297a4a53 100644 --- a/clients/client-glue/src/commands/GetUnfilteredPartitionMetadataCommand.ts +++ b/clients/client-glue/src/commands/GetUnfilteredPartitionMetadataCommand.ts @@ -182,6 +182,7 @@ export interface GetUnfilteredPartitionMetadataCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetUnfilteredPartitionMetadataCommand extends $Command diff --git a/clients/client-glue/src/commands/GetUnfilteredPartitionsMetadataCommand.ts b/clients/client-glue/src/commands/GetUnfilteredPartitionsMetadataCommand.ts index 07444b8a4109c..1d6218a5e682b 100644 --- a/clients/client-glue/src/commands/GetUnfilteredPartitionsMetadataCommand.ts +++ b/clients/client-glue/src/commands/GetUnfilteredPartitionsMetadataCommand.ts @@ -191,6 +191,7 @@ export interface GetUnfilteredPartitionsMetadataCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetUnfilteredPartitionsMetadataCommand extends $Command diff --git a/clients/client-glue/src/commands/GetUnfilteredTableMetadataCommand.ts b/clients/client-glue/src/commands/GetUnfilteredTableMetadataCommand.ts index 4fddcc77785c3..eb30fbd66df42 100644 --- a/clients/client-glue/src/commands/GetUnfilteredTableMetadataCommand.ts +++ b/clients/client-glue/src/commands/GetUnfilteredTableMetadataCommand.ts @@ -382,6 +382,7 @@ export interface GetUnfilteredTableMetadataCommandOutput extends GetUnfilteredTa * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetUnfilteredTableMetadataCommand extends $Command diff --git a/clients/client-glue/src/commands/GetUsageProfileCommand.ts b/clients/client-glue/src/commands/GetUsageProfileCommand.ts index 76029d43ee891..a072aa2025ee0 100644 --- a/clients/client-glue/src/commands/GetUsageProfileCommand.ts +++ b/clients/client-glue/src/commands/GetUsageProfileCommand.ts @@ -95,6 +95,7 @@ export interface GetUsageProfileCommandOutput extends GetUsageProfileResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetUsageProfileCommand extends $Command diff --git a/clients/client-glue/src/commands/GetUserDefinedFunctionCommand.ts b/clients/client-glue/src/commands/GetUserDefinedFunctionCommand.ts index 1977032db840f..99246572e8cc3 100644 --- a/clients/client-glue/src/commands/GetUserDefinedFunctionCommand.ts +++ b/clients/client-glue/src/commands/GetUserDefinedFunctionCommand.ts @@ -86,6 +86,7 @@ export interface GetUserDefinedFunctionCommandOutput extends GetUserDefinedFunct * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetUserDefinedFunctionCommand extends $Command diff --git a/clients/client-glue/src/commands/GetUserDefinedFunctionsCommand.ts b/clients/client-glue/src/commands/GetUserDefinedFunctionsCommand.ts index c485e627ce5eb..9b40b0da06c3d 100644 --- a/clients/client-glue/src/commands/GetUserDefinedFunctionsCommand.ts +++ b/clients/client-glue/src/commands/GetUserDefinedFunctionsCommand.ts @@ -91,6 +91,7 @@ export interface GetUserDefinedFunctionsCommandOutput extends GetUserDefinedFunc * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetUserDefinedFunctionsCommand extends $Command diff --git a/clients/client-glue/src/commands/GetWorkflowCommand.ts b/clients/client-glue/src/commands/GetWorkflowCommand.ts index 9e883f19caeda..5681847fc4863 100644 --- a/clients/client-glue/src/commands/GetWorkflowCommand.ts +++ b/clients/client-glue/src/commands/GetWorkflowCommand.ts @@ -327,6 +327,7 @@ export interface GetWorkflowCommandOutput extends GetWorkflowResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetWorkflowCommand extends $Command diff --git a/clients/client-glue/src/commands/GetWorkflowRunCommand.ts b/clients/client-glue/src/commands/GetWorkflowRunCommand.ts index 00c001a2a35d6..7fa3ac5271b7a 100644 --- a/clients/client-glue/src/commands/GetWorkflowRunCommand.ts +++ b/clients/client-glue/src/commands/GetWorkflowRunCommand.ts @@ -206,6 +206,7 @@ export interface GetWorkflowRunCommandOutput extends GetWorkflowRunResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetWorkflowRunCommand extends $Command diff --git a/clients/client-glue/src/commands/GetWorkflowRunPropertiesCommand.ts b/clients/client-glue/src/commands/GetWorkflowRunPropertiesCommand.ts index 6337b8883795c..cdd3956fc43a1 100644 --- a/clients/client-glue/src/commands/GetWorkflowRunPropertiesCommand.ts +++ b/clients/client-glue/src/commands/GetWorkflowRunPropertiesCommand.ts @@ -70,6 +70,7 @@ export interface GetWorkflowRunPropertiesCommandOutput extends GetWorkflowRunPro * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetWorkflowRunPropertiesCommand extends $Command diff --git a/clients/client-glue/src/commands/GetWorkflowRunsCommand.ts b/clients/client-glue/src/commands/GetWorkflowRunsCommand.ts index b20b4ce0465cd..6f96541e4a613 100644 --- a/clients/client-glue/src/commands/GetWorkflowRunsCommand.ts +++ b/clients/client-glue/src/commands/GetWorkflowRunsCommand.ts @@ -210,6 +210,7 @@ export interface GetWorkflowRunsCommandOutput extends GetWorkflowRunsResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class GetWorkflowRunsCommand extends $Command diff --git a/clients/client-glue/src/commands/ImportCatalogToGlueCommand.ts b/clients/client-glue/src/commands/ImportCatalogToGlueCommand.ts index 244fe2e7f8254..a5c66fb32236a 100644 --- a/clients/client-glue/src/commands/ImportCatalogToGlueCommand.ts +++ b/clients/client-glue/src/commands/ImportCatalogToGlueCommand.ts @@ -59,6 +59,7 @@ export interface ImportCatalogToGlueCommandOutput extends ImportCatalogToGlueRes * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ImportCatalogToGlueCommand extends $Command diff --git a/clients/client-glue/src/commands/ListBlueprintsCommand.ts b/clients/client-glue/src/commands/ListBlueprintsCommand.ts index 5934c1bb41864..a44260d7a08d4 100644 --- a/clients/client-glue/src/commands/ListBlueprintsCommand.ts +++ b/clients/client-glue/src/commands/ListBlueprintsCommand.ts @@ -71,6 +71,7 @@ export interface ListBlueprintsCommandOutput extends ListBlueprintsResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListBlueprintsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListColumnStatisticsTaskRunsCommand.ts b/clients/client-glue/src/commands/ListColumnStatisticsTaskRunsCommand.ts index f1057781cc205..45eea66aa02a4 100644 --- a/clients/client-glue/src/commands/ListColumnStatisticsTaskRunsCommand.ts +++ b/clients/client-glue/src/commands/ListColumnStatisticsTaskRunsCommand.ts @@ -67,6 +67,7 @@ export interface ListColumnStatisticsTaskRunsCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListColumnStatisticsTaskRunsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListConnectionTypesCommand.ts b/clients/client-glue/src/commands/ListConnectionTypesCommand.ts index ffdb205c87652..380e03218c2ab 100644 --- a/clients/client-glue/src/commands/ListConnectionTypesCommand.ts +++ b/clients/client-glue/src/commands/ListConnectionTypesCommand.ts @@ -79,6 +79,7 @@ export interface ListConnectionTypesCommandOutput extends ListConnectionTypesRes * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListConnectionTypesCommand extends $Command diff --git a/clients/client-glue/src/commands/ListCrawlersCommand.ts b/clients/client-glue/src/commands/ListCrawlersCommand.ts index bf3960eb0ec14..4c721e414e68d 100644 --- a/clients/client-glue/src/commands/ListCrawlersCommand.ts +++ b/clients/client-glue/src/commands/ListCrawlersCommand.ts @@ -70,6 +70,7 @@ export interface ListCrawlersCommandOutput extends ListCrawlersResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListCrawlersCommand extends $Command diff --git a/clients/client-glue/src/commands/ListCrawlsCommand.ts b/clients/client-glue/src/commands/ListCrawlsCommand.ts index c6711b4b0c3cd..3caa46f364de1 100644 --- a/clients/client-glue/src/commands/ListCrawlsCommand.ts +++ b/clients/client-glue/src/commands/ListCrawlsCommand.ts @@ -102,6 +102,7 @@ export interface ListCrawlsCommandOutput extends ListCrawlsResponse, __MetadataB * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListCrawlsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListCustomEntityTypesCommand.ts b/clients/client-glue/src/commands/ListCustomEntityTypesCommand.ts index cd52ae5318eb6..c8977828c7a60 100644 --- a/clients/client-glue/src/commands/ListCustomEntityTypesCommand.ts +++ b/clients/client-glue/src/commands/ListCustomEntityTypesCommand.ts @@ -77,6 +77,7 @@ export interface ListCustomEntityTypesCommandOutput extends ListCustomEntityType * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListCustomEntityTypesCommand extends $Command diff --git a/clients/client-glue/src/commands/ListDataQualityResultsCommand.ts b/clients/client-glue/src/commands/ListDataQualityResultsCommand.ts index 9068f745f44cc..c329a0fb84977 100644 --- a/clients/client-glue/src/commands/ListDataQualityResultsCommand.ts +++ b/clients/client-glue/src/commands/ListDataQualityResultsCommand.ts @@ -101,6 +101,7 @@ export interface ListDataQualityResultsCommandOutput extends ListDataQualityResu * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListDataQualityResultsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListDataQualityRuleRecommendationRunsCommand.ts b/clients/client-glue/src/commands/ListDataQualityRuleRecommendationRunsCommand.ts index 324adacbec3c3..73a17edcbfbe6 100644 --- a/clients/client-glue/src/commands/ListDataQualityRuleRecommendationRunsCommand.ts +++ b/clients/client-glue/src/commands/ListDataQualityRuleRecommendationRunsCommand.ts @@ -107,6 +107,7 @@ export interface ListDataQualityRuleRecommendationRunsCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListDataQualityRuleRecommendationRunsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListDataQualityRulesetEvaluationRunsCommand.ts b/clients/client-glue/src/commands/ListDataQualityRulesetEvaluationRunsCommand.ts index bd7927cb27582..a943a439092cf 100644 --- a/clients/client-glue/src/commands/ListDataQualityRulesetEvaluationRunsCommand.ts +++ b/clients/client-glue/src/commands/ListDataQualityRulesetEvaluationRunsCommand.ts @@ -106,6 +106,7 @@ export interface ListDataQualityRulesetEvaluationRunsCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListDataQualityRulesetEvaluationRunsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListDataQualityRulesetsCommand.ts b/clients/client-glue/src/commands/ListDataQualityRulesetsCommand.ts index c281ef8bbad96..f44c9b57d598c 100644 --- a/clients/client-glue/src/commands/ListDataQualityRulesetsCommand.ts +++ b/clients/client-glue/src/commands/ListDataQualityRulesetsCommand.ts @@ -99,6 +99,7 @@ export interface ListDataQualityRulesetsCommandOutput extends ListDataQualityRul * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListDataQualityRulesetsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListDataQualityStatisticAnnotationsCommand.ts b/clients/client-glue/src/commands/ListDataQualityStatisticAnnotationsCommand.ts index 52c3e9ec05845..a691dd2184374 100644 --- a/clients/client-glue/src/commands/ListDataQualityStatisticAnnotationsCommand.ts +++ b/clients/client-glue/src/commands/ListDataQualityStatisticAnnotationsCommand.ts @@ -87,6 +87,7 @@ export interface ListDataQualityStatisticAnnotationsCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListDataQualityStatisticAnnotationsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListDataQualityStatisticsCommand.ts b/clients/client-glue/src/commands/ListDataQualityStatisticsCommand.ts index 166372e3aefa4..0b83b5ee90cb2 100644 --- a/clients/client-glue/src/commands/ListDataQualityStatisticsCommand.ts +++ b/clients/client-glue/src/commands/ListDataQualityStatisticsCommand.ts @@ -102,6 +102,7 @@ export interface ListDataQualityStatisticsCommandOutput extends ListDataQualityS * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListDataQualityStatisticsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListDevEndpointsCommand.ts b/clients/client-glue/src/commands/ListDevEndpointsCommand.ts index f00f368fe88f0..c462a7c2e255b 100644 --- a/clients/client-glue/src/commands/ListDevEndpointsCommand.ts +++ b/clients/client-glue/src/commands/ListDevEndpointsCommand.ts @@ -79,6 +79,7 @@ export interface ListDevEndpointsCommandOutput extends ListDevEndpointsResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListDevEndpointsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListEntitiesCommand.ts b/clients/client-glue/src/commands/ListEntitiesCommand.ts index 876c5b32e517d..bd23f899c442b 100644 --- a/clients/client-glue/src/commands/ListEntitiesCommand.ts +++ b/clients/client-glue/src/commands/ListEntitiesCommand.ts @@ -92,6 +92,7 @@ export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListEntitiesCommand extends $Command diff --git a/clients/client-glue/src/commands/ListJobsCommand.ts b/clients/client-glue/src/commands/ListJobsCommand.ts index 40692c51f6bee..3cbf6ade0cad6 100644 --- a/clients/client-glue/src/commands/ListJobsCommand.ts +++ b/clients/client-glue/src/commands/ListJobsCommand.ts @@ -77,6 +77,7 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListJobsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListMLTransformsCommand.ts b/clients/client-glue/src/commands/ListMLTransformsCommand.ts index 880925e3c2461..b336ee5c84bfa 100644 --- a/clients/client-glue/src/commands/ListMLTransformsCommand.ts +++ b/clients/client-glue/src/commands/ListMLTransformsCommand.ts @@ -98,6 +98,7 @@ export interface ListMLTransformsCommandOutput extends ListMLTransformsResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListMLTransformsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListRegistriesCommand.ts b/clients/client-glue/src/commands/ListRegistriesCommand.ts index 454f495025247..3913785aacd6c 100644 --- a/clients/client-glue/src/commands/ListRegistriesCommand.ts +++ b/clients/client-glue/src/commands/ListRegistriesCommand.ts @@ -75,6 +75,7 @@ export interface ListRegistriesCommandOutput extends ListRegistriesResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListRegistriesCommand extends $Command diff --git a/clients/client-glue/src/commands/ListSchemaVersionsCommand.ts b/clients/client-glue/src/commands/ListSchemaVersionsCommand.ts index aa2aa61cbcca1..d3ef6a592e216 100644 --- a/clients/client-glue/src/commands/ListSchemaVersionsCommand.ts +++ b/clients/client-glue/src/commands/ListSchemaVersionsCommand.ts @@ -82,6 +82,7 @@ export interface ListSchemaVersionsCommandOutput extends ListSchemaVersionsRespo * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListSchemaVersionsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListSchemasCommand.ts b/clients/client-glue/src/commands/ListSchemasCommand.ts index e50a2ccd987b3..d6bac4b1ee1c6 100644 --- a/clients/client-glue/src/commands/ListSchemasCommand.ts +++ b/clients/client-glue/src/commands/ListSchemasCommand.ts @@ -84,6 +84,7 @@ export interface ListSchemasCommandOutput extends ListSchemasResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListSchemasCommand extends $Command diff --git a/clients/client-glue/src/commands/ListSessionsCommand.ts b/clients/client-glue/src/commands/ListSessionsCommand.ts index 3791ee73aa071..93726732a0dfc 100644 --- a/clients/client-glue/src/commands/ListSessionsCommand.ts +++ b/clients/client-glue/src/commands/ListSessionsCommand.ts @@ -108,6 +108,7 @@ export interface ListSessionsCommandOutput extends ListSessionsResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListSessionsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListStatementsCommand.ts b/clients/client-glue/src/commands/ListStatementsCommand.ts index ef6563fa10042..6d670e0e21069 100644 --- a/clients/client-glue/src/commands/ListStatementsCommand.ts +++ b/clients/client-glue/src/commands/ListStatementsCommand.ts @@ -97,6 +97,7 @@ export interface ListStatementsCommandOutput extends ListStatementsResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListStatementsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListTableOptimizerRunsCommand.ts b/clients/client-glue/src/commands/ListTableOptimizerRunsCommand.ts index c4dc3768035e3..4bf100e7c459a 100644 --- a/clients/client-glue/src/commands/ListTableOptimizerRunsCommand.ts +++ b/clients/client-glue/src/commands/ListTableOptimizerRunsCommand.ts @@ -119,6 +119,7 @@ export interface ListTableOptimizerRunsCommandOutput extends ListTableOptimizerR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListTableOptimizerRunsCommand extends $Command diff --git a/clients/client-glue/src/commands/ListTriggersCommand.ts b/clients/client-glue/src/commands/ListTriggersCommand.ts index 4d7eb81e80de2..e3d3aabaa5ff7 100644 --- a/clients/client-glue/src/commands/ListTriggersCommand.ts +++ b/clients/client-glue/src/commands/ListTriggersCommand.ts @@ -78,6 +78,7 @@ export interface ListTriggersCommandOutput extends ListTriggersResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListTriggersCommand extends $Command diff --git a/clients/client-glue/src/commands/ListUsageProfilesCommand.ts b/clients/client-glue/src/commands/ListUsageProfilesCommand.ts index 5965928583e55..aba148ef18187 100644 --- a/clients/client-glue/src/commands/ListUsageProfilesCommand.ts +++ b/clients/client-glue/src/commands/ListUsageProfilesCommand.ts @@ -76,6 +76,7 @@ export interface ListUsageProfilesCommandOutput extends ListUsageProfilesRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListUsageProfilesCommand extends $Command diff --git a/clients/client-glue/src/commands/ListWorkflowsCommand.ts b/clients/client-glue/src/commands/ListWorkflowsCommand.ts index 757c762faea73..4d4633ed2245c 100644 --- a/clients/client-glue/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-glue/src/commands/ListWorkflowsCommand.ts @@ -68,6 +68,7 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ListWorkflowsCommand extends $Command diff --git a/clients/client-glue/src/commands/ModifyIntegrationCommand.ts b/clients/client-glue/src/commands/ModifyIntegrationCommand.ts index 7ca8adfd684bc..821824f9bcc2b 100644 --- a/clients/client-glue/src/commands/ModifyIntegrationCommand.ts +++ b/clients/client-glue/src/commands/ModifyIntegrationCommand.ts @@ -114,6 +114,7 @@ export interface ModifyIntegrationCommandOutput extends ModifyIntegrationRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ModifyIntegrationCommand extends $Command diff --git a/clients/client-glue/src/commands/PutDataCatalogEncryptionSettingsCommand.ts b/clients/client-glue/src/commands/PutDataCatalogEncryptionSettingsCommand.ts index 74a3348fb2ae0..4d180b5219ae8 100644 --- a/clients/client-glue/src/commands/PutDataCatalogEncryptionSettingsCommand.ts +++ b/clients/client-glue/src/commands/PutDataCatalogEncryptionSettingsCommand.ts @@ -79,6 +79,7 @@ export interface PutDataCatalogEncryptionSettingsCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class PutDataCatalogEncryptionSettingsCommand extends $Command diff --git a/clients/client-glue/src/commands/PutDataQualityProfileAnnotationCommand.ts b/clients/client-glue/src/commands/PutDataQualityProfileAnnotationCommand.ts index dc45e7439190d..47e41a0d92f65 100644 --- a/clients/client-glue/src/commands/PutDataQualityProfileAnnotationCommand.ts +++ b/clients/client-glue/src/commands/PutDataQualityProfileAnnotationCommand.ts @@ -68,6 +68,7 @@ export interface PutDataQualityProfileAnnotationCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class PutDataQualityProfileAnnotationCommand extends $Command diff --git a/clients/client-glue/src/commands/PutResourcePolicyCommand.ts b/clients/client-glue/src/commands/PutResourcePolicyCommand.ts index ba31a6dcf3be0..18c261412a89f 100644 --- a/clients/client-glue/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-glue/src/commands/PutResourcePolicyCommand.ts @@ -74,6 +74,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-glue/src/commands/PutSchemaVersionMetadataCommand.ts b/clients/client-glue/src/commands/PutSchemaVersionMetadataCommand.ts index 668c94bd1bad7..b141b9d1a095c 100644 --- a/clients/client-glue/src/commands/PutSchemaVersionMetadataCommand.ts +++ b/clients/client-glue/src/commands/PutSchemaVersionMetadataCommand.ts @@ -90,6 +90,7 @@ export interface PutSchemaVersionMetadataCommandOutput extends PutSchemaVersionM * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class PutSchemaVersionMetadataCommand extends $Command diff --git a/clients/client-glue/src/commands/PutWorkflowRunPropertiesCommand.ts b/clients/client-glue/src/commands/PutWorkflowRunPropertiesCommand.ts index 85e73ba3f9e34..deaf310049ec7 100644 --- a/clients/client-glue/src/commands/PutWorkflowRunPropertiesCommand.ts +++ b/clients/client-glue/src/commands/PutWorkflowRunPropertiesCommand.ts @@ -78,6 +78,7 @@ export interface PutWorkflowRunPropertiesCommandOutput extends PutWorkflowRunPro * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class PutWorkflowRunPropertiesCommand extends $Command diff --git a/clients/client-glue/src/commands/QuerySchemaVersionMetadataCommand.ts b/clients/client-glue/src/commands/QuerySchemaVersionMetadataCommand.ts index ae1aeda8c8451..198731928072a 100644 --- a/clients/client-glue/src/commands/QuerySchemaVersionMetadataCommand.ts +++ b/clients/client-glue/src/commands/QuerySchemaVersionMetadataCommand.ts @@ -94,6 +94,7 @@ export interface QuerySchemaVersionMetadataCommandOutput extends QuerySchemaVers * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class QuerySchemaVersionMetadataCommand extends $Command diff --git a/clients/client-glue/src/commands/RegisterSchemaVersionCommand.ts b/clients/client-glue/src/commands/RegisterSchemaVersionCommand.ts index 3401824a1cf3a..052b412a48cc6 100644 --- a/clients/client-glue/src/commands/RegisterSchemaVersionCommand.ts +++ b/clients/client-glue/src/commands/RegisterSchemaVersionCommand.ts @@ -82,6 +82,7 @@ export interface RegisterSchemaVersionCommandOutput extends RegisterSchemaVersio * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class RegisterSchemaVersionCommand extends $Command diff --git a/clients/client-glue/src/commands/RemoveSchemaVersionMetadataCommand.ts b/clients/client-glue/src/commands/RemoveSchemaVersionMetadataCommand.ts index 4af535b2c6d33..c36ab06b73c32 100644 --- a/clients/client-glue/src/commands/RemoveSchemaVersionMetadataCommand.ts +++ b/clients/client-glue/src/commands/RemoveSchemaVersionMetadataCommand.ts @@ -86,6 +86,7 @@ export interface RemoveSchemaVersionMetadataCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class RemoveSchemaVersionMetadataCommand extends $Command diff --git a/clients/client-glue/src/commands/ResetJobBookmarkCommand.ts b/clients/client-glue/src/commands/ResetJobBookmarkCommand.ts index 5809c4dea8734..f18510e04ce95 100644 --- a/clients/client-glue/src/commands/ResetJobBookmarkCommand.ts +++ b/clients/client-glue/src/commands/ResetJobBookmarkCommand.ts @@ -94,6 +94,7 @@ export interface ResetJobBookmarkCommandOutput extends ResetJobBookmarkResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ResetJobBookmarkCommand extends $Command diff --git a/clients/client-glue/src/commands/ResumeWorkflowRunCommand.ts b/clients/client-glue/src/commands/ResumeWorkflowRunCommand.ts index 73f379da55135..d73b2fcc561e2 100644 --- a/clients/client-glue/src/commands/ResumeWorkflowRunCommand.ts +++ b/clients/client-glue/src/commands/ResumeWorkflowRunCommand.ts @@ -80,6 +80,7 @@ export interface ResumeWorkflowRunCommandOutput extends ResumeWorkflowRunRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class ResumeWorkflowRunCommand extends $Command diff --git a/clients/client-glue/src/commands/RunStatementCommand.ts b/clients/client-glue/src/commands/RunStatementCommand.ts index 85968711d2497..7cb1afd494be1 100644 --- a/clients/client-glue/src/commands/RunStatementCommand.ts +++ b/clients/client-glue/src/commands/RunStatementCommand.ts @@ -81,6 +81,7 @@ export interface RunStatementCommandOutput extends RunStatementResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class RunStatementCommand extends $Command diff --git a/clients/client-glue/src/commands/SearchTablesCommand.ts b/clients/client-glue/src/commands/SearchTablesCommand.ts index 5840202768bef..aadaedff85d93 100644 --- a/clients/client-glue/src/commands/SearchTablesCommand.ts +++ b/clients/client-glue/src/commands/SearchTablesCommand.ts @@ -340,6 +340,7 @@ export interface SearchTablesCommandOutput extends SearchTablesResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class SearchTablesCommand extends $Command diff --git a/clients/client-glue/src/commands/StartBlueprintRunCommand.ts b/clients/client-glue/src/commands/StartBlueprintRunCommand.ts index e1507a6d28cff..9c9f70a2b05e2 100644 --- a/clients/client-glue/src/commands/StartBlueprintRunCommand.ts +++ b/clients/client-glue/src/commands/StartBlueprintRunCommand.ts @@ -75,6 +75,7 @@ export interface StartBlueprintRunCommandOutput extends StartBlueprintRunRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StartBlueprintRunCommand extends $Command diff --git a/clients/client-glue/src/commands/StartColumnStatisticsTaskRunCommand.ts b/clients/client-glue/src/commands/StartColumnStatisticsTaskRunCommand.ts index 1ccda270f0336..ac096af976a83 100644 --- a/clients/client-glue/src/commands/StartColumnStatisticsTaskRunCommand.ts +++ b/clients/client-glue/src/commands/StartColumnStatisticsTaskRunCommand.ts @@ -86,6 +86,7 @@ export interface StartColumnStatisticsTaskRunCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StartColumnStatisticsTaskRunCommand extends $Command diff --git a/clients/client-glue/src/commands/StartColumnStatisticsTaskRunScheduleCommand.ts b/clients/client-glue/src/commands/StartColumnStatisticsTaskRunScheduleCommand.ts index 9c2ccbb97c100..2ed2b3660e802 100644 --- a/clients/client-glue/src/commands/StartColumnStatisticsTaskRunScheduleCommand.ts +++ b/clients/client-glue/src/commands/StartColumnStatisticsTaskRunScheduleCommand.ts @@ -74,6 +74,7 @@ export interface StartColumnStatisticsTaskRunScheduleCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StartColumnStatisticsTaskRunScheduleCommand extends $Command diff --git a/clients/client-glue/src/commands/StartCrawlerCommand.ts b/clients/client-glue/src/commands/StartCrawlerCommand.ts index 2db8c665fa9e5..39f68dab91e57 100644 --- a/clients/client-glue/src/commands/StartCrawlerCommand.ts +++ b/clients/client-glue/src/commands/StartCrawlerCommand.ts @@ -64,6 +64,7 @@ export interface StartCrawlerCommandOutput extends StartCrawlerResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StartCrawlerCommand extends $Command diff --git a/clients/client-glue/src/commands/StartCrawlerScheduleCommand.ts b/clients/client-glue/src/commands/StartCrawlerScheduleCommand.ts index 2c695c5b4ca9d..36da30aebde64 100644 --- a/clients/client-glue/src/commands/StartCrawlerScheduleCommand.ts +++ b/clients/client-glue/src/commands/StartCrawlerScheduleCommand.ts @@ -70,6 +70,7 @@ export interface StartCrawlerScheduleCommandOutput extends StartCrawlerScheduleR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StartCrawlerScheduleCommand extends $Command diff --git a/clients/client-glue/src/commands/StartDataQualityRuleRecommendationRunCommand.ts b/clients/client-glue/src/commands/StartDataQualityRuleRecommendationRunCommand.ts index b7ef4bd77c9a2..077e86bbffbca 100644 --- a/clients/client-glue/src/commands/StartDataQualityRuleRecommendationRunCommand.ts +++ b/clients/client-glue/src/commands/StartDataQualityRuleRecommendationRunCommand.ts @@ -93,6 +93,7 @@ export interface StartDataQualityRuleRecommendationRunCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StartDataQualityRuleRecommendationRunCommand extends $Command diff --git a/clients/client-glue/src/commands/StartDataQualityRulesetEvaluationRunCommand.ts b/clients/client-glue/src/commands/StartDataQualityRulesetEvaluationRunCommand.ts index 3097d6413cdd8..1833207e56329 100644 --- a/clients/client-glue/src/commands/StartDataQualityRulesetEvaluationRunCommand.ts +++ b/clients/client-glue/src/commands/StartDataQualityRulesetEvaluationRunCommand.ts @@ -113,6 +113,7 @@ export interface StartDataQualityRulesetEvaluationRunCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StartDataQualityRulesetEvaluationRunCommand extends $Command diff --git a/clients/client-glue/src/commands/StartExportLabelsTaskRunCommand.ts b/clients/client-glue/src/commands/StartExportLabelsTaskRunCommand.ts index 09aa43f72f466..d4fa1400ec316 100644 --- a/clients/client-glue/src/commands/StartExportLabelsTaskRunCommand.ts +++ b/clients/client-glue/src/commands/StartExportLabelsTaskRunCommand.ts @@ -76,6 +76,7 @@ export interface StartExportLabelsTaskRunCommandOutput extends StartExportLabels * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StartExportLabelsTaskRunCommand extends $Command diff --git a/clients/client-glue/src/commands/StartImportLabelsTaskRunCommand.ts b/clients/client-glue/src/commands/StartImportLabelsTaskRunCommand.ts index 0c3f30292e891..311d74c952c44 100644 --- a/clients/client-glue/src/commands/StartImportLabelsTaskRunCommand.ts +++ b/clients/client-glue/src/commands/StartImportLabelsTaskRunCommand.ts @@ -93,6 +93,7 @@ export interface StartImportLabelsTaskRunCommandOutput extends StartImportLabels * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StartImportLabelsTaskRunCommand extends $Command diff --git a/clients/client-glue/src/commands/StartJobRunCommand.ts b/clients/client-glue/src/commands/StartJobRunCommand.ts index e62285b9c8a43..9dad83dd89ccc 100644 --- a/clients/client-glue/src/commands/StartJobRunCommand.ts +++ b/clients/client-glue/src/commands/StartJobRunCommand.ts @@ -88,6 +88,7 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StartJobRunCommand extends $Command diff --git a/clients/client-glue/src/commands/StartMLEvaluationTaskRunCommand.ts b/clients/client-glue/src/commands/StartMLEvaluationTaskRunCommand.ts index 23235c30e35ca..c337530a63377 100644 --- a/clients/client-glue/src/commands/StartMLEvaluationTaskRunCommand.ts +++ b/clients/client-glue/src/commands/StartMLEvaluationTaskRunCommand.ts @@ -78,6 +78,7 @@ export interface StartMLEvaluationTaskRunCommandOutput extends StartMLEvaluation * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StartMLEvaluationTaskRunCommand extends $Command diff --git a/clients/client-glue/src/commands/StartMLLabelingSetGenerationTaskRunCommand.ts b/clients/client-glue/src/commands/StartMLLabelingSetGenerationTaskRunCommand.ts index 669a9e60111f4..7518480f3f876 100644 --- a/clients/client-glue/src/commands/StartMLLabelingSetGenerationTaskRunCommand.ts +++ b/clients/client-glue/src/commands/StartMLLabelingSetGenerationTaskRunCommand.ts @@ -89,6 +89,7 @@ export interface StartMLLabelingSetGenerationTaskRunCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StartMLLabelingSetGenerationTaskRunCommand extends $Command diff --git a/clients/client-glue/src/commands/StartTriggerCommand.ts b/clients/client-glue/src/commands/StartTriggerCommand.ts index 1e1256c89f3ef..367b98326e26a 100644 --- a/clients/client-glue/src/commands/StartTriggerCommand.ts +++ b/clients/client-glue/src/commands/StartTriggerCommand.ts @@ -75,6 +75,7 @@ export interface StartTriggerCommandOutput extends StartTriggerResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StartTriggerCommand extends $Command diff --git a/clients/client-glue/src/commands/StartWorkflowRunCommand.ts b/clients/client-glue/src/commands/StartWorkflowRunCommand.ts index c32b856f7a351..51ca594685ed0 100644 --- a/clients/client-glue/src/commands/StartWorkflowRunCommand.ts +++ b/clients/client-glue/src/commands/StartWorkflowRunCommand.ts @@ -76,6 +76,7 @@ export interface StartWorkflowRunCommandOutput extends StartWorkflowRunResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StartWorkflowRunCommand extends $Command diff --git a/clients/client-glue/src/commands/StopColumnStatisticsTaskRunCommand.ts b/clients/client-glue/src/commands/StopColumnStatisticsTaskRunCommand.ts index 24c159c3248c2..9f59c427f9879 100644 --- a/clients/client-glue/src/commands/StopColumnStatisticsTaskRunCommand.ts +++ b/clients/client-glue/src/commands/StopColumnStatisticsTaskRunCommand.ts @@ -68,6 +68,7 @@ export interface StopColumnStatisticsTaskRunCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StopColumnStatisticsTaskRunCommand extends $Command diff --git a/clients/client-glue/src/commands/StopColumnStatisticsTaskRunScheduleCommand.ts b/clients/client-glue/src/commands/StopColumnStatisticsTaskRunScheduleCommand.ts index 3f5eff4088271..1d6b915175d1f 100644 --- a/clients/client-glue/src/commands/StopColumnStatisticsTaskRunScheduleCommand.ts +++ b/clients/client-glue/src/commands/StopColumnStatisticsTaskRunScheduleCommand.ts @@ -71,6 +71,7 @@ export interface StopColumnStatisticsTaskRunScheduleCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StopColumnStatisticsTaskRunScheduleCommand extends $Command diff --git a/clients/client-glue/src/commands/StopCrawlerCommand.ts b/clients/client-glue/src/commands/StopCrawlerCommand.ts index c78aa9a4455dc..a01fb7fd4dcab 100644 --- a/clients/client-glue/src/commands/StopCrawlerCommand.ts +++ b/clients/client-glue/src/commands/StopCrawlerCommand.ts @@ -65,6 +65,7 @@ export interface StopCrawlerCommandOutput extends StopCrawlerResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StopCrawlerCommand extends $Command diff --git a/clients/client-glue/src/commands/StopCrawlerScheduleCommand.ts b/clients/client-glue/src/commands/StopCrawlerScheduleCommand.ts index 578741e7cce68..616749a2b42aa 100644 --- a/clients/client-glue/src/commands/StopCrawlerScheduleCommand.ts +++ b/clients/client-glue/src/commands/StopCrawlerScheduleCommand.ts @@ -67,6 +67,7 @@ export interface StopCrawlerScheduleCommandOutput extends StopCrawlerScheduleRes * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StopCrawlerScheduleCommand extends $Command diff --git a/clients/client-glue/src/commands/StopSessionCommand.ts b/clients/client-glue/src/commands/StopSessionCommand.ts index bb3d7382bcc6e..5ab8879f42a60 100644 --- a/clients/client-glue/src/commands/StopSessionCommand.ts +++ b/clients/client-glue/src/commands/StopSessionCommand.ts @@ -74,6 +74,7 @@ export interface StopSessionCommandOutput extends StopSessionResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StopSessionCommand extends $Command diff --git a/clients/client-glue/src/commands/StopTriggerCommand.ts b/clients/client-glue/src/commands/StopTriggerCommand.ts index ee8dd501d071e..5698eef1952a9 100644 --- a/clients/client-glue/src/commands/StopTriggerCommand.ts +++ b/clients/client-glue/src/commands/StopTriggerCommand.ts @@ -70,6 +70,7 @@ export interface StopTriggerCommandOutput extends StopTriggerResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StopTriggerCommand extends $Command diff --git a/clients/client-glue/src/commands/StopWorkflowRunCommand.ts b/clients/client-glue/src/commands/StopWorkflowRunCommand.ts index 5cf47148a8dba..c78c12a4cddcc 100644 --- a/clients/client-glue/src/commands/StopWorkflowRunCommand.ts +++ b/clients/client-glue/src/commands/StopWorkflowRunCommand.ts @@ -69,6 +69,7 @@ export interface StopWorkflowRunCommandOutput extends StopWorkflowRunResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class StopWorkflowRunCommand extends $Command diff --git a/clients/client-glue/src/commands/TagResourceCommand.ts b/clients/client-glue/src/commands/TagResourceCommand.ts index dfdeac5c35ae3..7158d275ff487 100644 --- a/clients/client-glue/src/commands/TagResourceCommand.ts +++ b/clients/client-glue/src/commands/TagResourceCommand.ts @@ -70,6 +70,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-glue/src/commands/TestConnectionCommand.ts b/clients/client-glue/src/commands/TestConnectionCommand.ts index 5dc3d5609b727..f05bb49c6a8c9 100644 --- a/clients/client-glue/src/commands/TestConnectionCommand.ts +++ b/clients/client-glue/src/commands/TestConnectionCommand.ts @@ -126,6 +126,7 @@ export interface TestConnectionCommandOutput extends TestConnectionResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class TestConnectionCommand extends $Command diff --git a/clients/client-glue/src/commands/UntagResourceCommand.ts b/clients/client-glue/src/commands/UntagResourceCommand.ts index 25ed68a294230..7ca9f88c3bea7 100644 --- a/clients/client-glue/src/commands/UntagResourceCommand.ts +++ b/clients/client-glue/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateBlueprintCommand.ts b/clients/client-glue/src/commands/UpdateBlueprintCommand.ts index 9a918d0251528..1c917aac251c4 100644 --- a/clients/client-glue/src/commands/UpdateBlueprintCommand.ts +++ b/clients/client-glue/src/commands/UpdateBlueprintCommand.ts @@ -75,6 +75,7 @@ export interface UpdateBlueprintCommandOutput extends UpdateBlueprintResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateBlueprintCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateCatalogCommand.ts b/clients/client-glue/src/commands/UpdateCatalogCommand.ts index c5538b121d914..615dc2330fe98 100644 --- a/clients/client-glue/src/commands/UpdateCatalogCommand.ts +++ b/clients/client-glue/src/commands/UpdateCatalogCommand.ts @@ -122,6 +122,7 @@ export interface UpdateCatalogCommandOutput extends UpdateCatalogResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateCatalogCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateClassifierCommand.ts b/clients/client-glue/src/commands/UpdateClassifierCommand.ts index 19baf7ccb14e2..7d0933d3f703e 100644 --- a/clients/client-glue/src/commands/UpdateClassifierCommand.ts +++ b/clients/client-glue/src/commands/UpdateClassifierCommand.ts @@ -97,6 +97,7 @@ export interface UpdateClassifierCommandOutput extends UpdateClassifierResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateClassifierCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateColumnStatisticsForPartitionCommand.ts b/clients/client-glue/src/commands/UpdateColumnStatisticsForPartitionCommand.ts index 9f36a4a6cbf59..17d92d8132bae 100644 --- a/clients/client-glue/src/commands/UpdateColumnStatisticsForPartitionCommand.ts +++ b/clients/client-glue/src/commands/UpdateColumnStatisticsForPartitionCommand.ts @@ -201,6 +201,7 @@ export interface UpdateColumnStatisticsForPartitionCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateColumnStatisticsForPartitionCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateColumnStatisticsForTableCommand.ts b/clients/client-glue/src/commands/UpdateColumnStatisticsForTableCommand.ts index c2fb527498446..a9059a0a66769 100644 --- a/clients/client-glue/src/commands/UpdateColumnStatisticsForTableCommand.ts +++ b/clients/client-glue/src/commands/UpdateColumnStatisticsForTableCommand.ts @@ -195,6 +195,7 @@ export interface UpdateColumnStatisticsForTableCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateColumnStatisticsForTableCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateColumnStatisticsTaskSettingsCommand.ts b/clients/client-glue/src/commands/UpdateColumnStatisticsTaskSettingsCommand.ts index d36a82d1edc26..a3f566c46e023 100644 --- a/clients/client-glue/src/commands/UpdateColumnStatisticsTaskSettingsCommand.ts +++ b/clients/client-glue/src/commands/UpdateColumnStatisticsTaskSettingsCommand.ts @@ -85,6 +85,7 @@ export interface UpdateColumnStatisticsTaskSettingsCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateColumnStatisticsTaskSettingsCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateConnectionCommand.ts b/clients/client-glue/src/commands/UpdateConnectionCommand.ts index 7b6c219a55639..7b1c827939ece 100644 --- a/clients/client-glue/src/commands/UpdateConnectionCommand.ts +++ b/clients/client-glue/src/commands/UpdateConnectionCommand.ts @@ -134,6 +134,7 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse, * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateConnectionCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateCrawlerCommand.ts b/clients/client-glue/src/commands/UpdateCrawlerCommand.ts index 01ba4329498b9..b9b9eb45d4350 100644 --- a/clients/client-glue/src/commands/UpdateCrawlerCommand.ts +++ b/clients/client-glue/src/commands/UpdateCrawlerCommand.ts @@ -175,6 +175,7 @@ export interface UpdateCrawlerCommandOutput extends UpdateCrawlerResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateCrawlerCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateCrawlerScheduleCommand.ts b/clients/client-glue/src/commands/UpdateCrawlerScheduleCommand.ts index bcaff63338be8..551529d96c00d 100644 --- a/clients/client-glue/src/commands/UpdateCrawlerScheduleCommand.ts +++ b/clients/client-glue/src/commands/UpdateCrawlerScheduleCommand.ts @@ -69,6 +69,7 @@ export interface UpdateCrawlerScheduleCommandOutput extends UpdateCrawlerSchedul * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateCrawlerScheduleCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateDataQualityRulesetCommand.ts b/clients/client-glue/src/commands/UpdateDataQualityRulesetCommand.ts index 9c08d4aabf14a..c2122ed231b80 100644 --- a/clients/client-glue/src/commands/UpdateDataQualityRulesetCommand.ts +++ b/clients/client-glue/src/commands/UpdateDataQualityRulesetCommand.ts @@ -80,6 +80,7 @@ export interface UpdateDataQualityRulesetCommandOutput extends UpdateDataQuality * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateDataQualityRulesetCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateDatabaseCommand.ts b/clients/client-glue/src/commands/UpdateDatabaseCommand.ts index 29b1206e7bd49..7904a26a5981f 100644 --- a/clients/client-glue/src/commands/UpdateDatabaseCommand.ts +++ b/clients/client-glue/src/commands/UpdateDatabaseCommand.ts @@ -108,6 +108,7 @@ export interface UpdateDatabaseCommandOutput extends UpdateDatabaseResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateDatabaseCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateDevEndpointCommand.ts b/clients/client-glue/src/commands/UpdateDevEndpointCommand.ts index 3ee502515bdff..4647f8c1d1447 100644 --- a/clients/client-glue/src/commands/UpdateDevEndpointCommand.ts +++ b/clients/client-glue/src/commands/UpdateDevEndpointCommand.ts @@ -86,6 +86,7 @@ export interface UpdateDevEndpointCommandOutput extends UpdateDevEndpointRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateDevEndpointCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateIntegrationResourcePropertyCommand.ts b/clients/client-glue/src/commands/UpdateIntegrationResourcePropertyCommand.ts index 99545eafb13d9..44074388e79ac 100644 --- a/clients/client-glue/src/commands/UpdateIntegrationResourcePropertyCommand.ts +++ b/clients/client-glue/src/commands/UpdateIntegrationResourcePropertyCommand.ts @@ -102,6 +102,7 @@ export interface UpdateIntegrationResourcePropertyCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateIntegrationResourcePropertyCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateIntegrationTablePropertiesCommand.ts b/clients/client-glue/src/commands/UpdateIntegrationTablePropertiesCommand.ts index 4ba9ea09aba03..ac5e1ce362a0e 100644 --- a/clients/client-glue/src/commands/UpdateIntegrationTablePropertiesCommand.ts +++ b/clients/client-glue/src/commands/UpdateIntegrationTablePropertiesCommand.ts @@ -101,6 +101,7 @@ export interface UpdateIntegrationTablePropertiesCommandOutput * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateIntegrationTablePropertiesCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateJobCommand.ts b/clients/client-glue/src/commands/UpdateJobCommand.ts index e8d9f1c84dd8a..be741cbf24e90 100644 --- a/clients/client-glue/src/commands/UpdateJobCommand.ts +++ b/clients/client-glue/src/commands/UpdateJobCommand.ts @@ -1162,6 +1162,7 @@ export interface UpdateJobCommandOutput extends UpdateJobResponse, __MetadataBea * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateJobCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateJobFromSourceControlCommand.ts b/clients/client-glue/src/commands/UpdateJobFromSourceControlCommand.ts index bb457ec892235..536d74b8c4754 100644 --- a/clients/client-glue/src/commands/UpdateJobFromSourceControlCommand.ts +++ b/clients/client-glue/src/commands/UpdateJobFromSourceControlCommand.ts @@ -85,6 +85,7 @@ export interface UpdateJobFromSourceControlCommandOutput extends UpdateJobFromSo * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateJobFromSourceControlCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateMLTransformCommand.ts b/clients/client-glue/src/commands/UpdateMLTransformCommand.ts index cf38069b79898..46de49149487c 100644 --- a/clients/client-glue/src/commands/UpdateMLTransformCommand.ts +++ b/clients/client-glue/src/commands/UpdateMLTransformCommand.ts @@ -91,6 +91,7 @@ export interface UpdateMLTransformCommandOutput extends UpdateMLTransformRespons * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateMLTransformCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdatePartitionCommand.ts b/clients/client-glue/src/commands/UpdatePartitionCommand.ts index 3b80c4329a153..eb6f6b7e5dba3 100644 --- a/clients/client-glue/src/commands/UpdatePartitionCommand.ts +++ b/clients/client-glue/src/commands/UpdatePartitionCommand.ts @@ -139,6 +139,7 @@ export interface UpdatePartitionCommandOutput extends UpdatePartitionResponse, _ * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdatePartitionCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateRegistryCommand.ts b/clients/client-glue/src/commands/UpdateRegistryCommand.ts index 8cec1acfc9211..fb7127bfe859f 100644 --- a/clients/client-glue/src/commands/UpdateRegistryCommand.ts +++ b/clients/client-glue/src/commands/UpdateRegistryCommand.ts @@ -75,6 +75,7 @@ export interface UpdateRegistryCommandOutput extends UpdateRegistryResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateRegistryCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateSchemaCommand.ts b/clients/client-glue/src/commands/UpdateSchemaCommand.ts index 05aa724af6c6d..7556e0a6876d2 100644 --- a/clients/client-glue/src/commands/UpdateSchemaCommand.ts +++ b/clients/client-glue/src/commands/UpdateSchemaCommand.ts @@ -85,6 +85,7 @@ export interface UpdateSchemaCommandOutput extends UpdateSchemaResponse, __Metad * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateSchemaCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateSourceControlFromJobCommand.ts b/clients/client-glue/src/commands/UpdateSourceControlFromJobCommand.ts index 6f070f868ad6f..81c236158dcb9 100644 --- a/clients/client-glue/src/commands/UpdateSourceControlFromJobCommand.ts +++ b/clients/client-glue/src/commands/UpdateSourceControlFromJobCommand.ts @@ -85,6 +85,7 @@ export interface UpdateSourceControlFromJobCommandOutput extends UpdateSourceCon * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateSourceControlFromJobCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateTableCommand.ts b/clients/client-glue/src/commands/UpdateTableCommand.ts index a1978f14df9ca..2f40081ec6619 100644 --- a/clients/client-glue/src/commands/UpdateTableCommand.ts +++ b/clients/client-glue/src/commands/UpdateTableCommand.ts @@ -192,6 +192,7 @@ export interface UpdateTableCommandOutput extends UpdateTableResponse, __Metadat * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateTableCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateTableOptimizerCommand.ts b/clients/client-glue/src/commands/UpdateTableOptimizerCommand.ts index a425d7e54888d..5ea4445e7455c 100644 --- a/clients/client-glue/src/commands/UpdateTableOptimizerCommand.ts +++ b/clients/client-glue/src/commands/UpdateTableOptimizerCommand.ts @@ -97,6 +97,7 @@ export interface UpdateTableOptimizerCommandOutput extends UpdateTableOptimizerR * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateTableOptimizerCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateTriggerCommand.ts b/clients/client-glue/src/commands/UpdateTriggerCommand.ts index b554f7f4fdad4..783aed6030dd1 100644 --- a/clients/client-glue/src/commands/UpdateTriggerCommand.ts +++ b/clients/client-glue/src/commands/UpdateTriggerCommand.ts @@ -144,6 +144,7 @@ export interface UpdateTriggerCommandOutput extends UpdateTriggerResponse, __Met * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateTriggerCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateUsageProfileCommand.ts b/clients/client-glue/src/commands/UpdateUsageProfileCommand.ts index 1dff55c0424ee..602738dc233bb 100644 --- a/clients/client-glue/src/commands/UpdateUsageProfileCommand.ts +++ b/clients/client-glue/src/commands/UpdateUsageProfileCommand.ts @@ -96,6 +96,7 @@ export interface UpdateUsageProfileCommandOutput extends UpdateUsageProfileRespo * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateUsageProfileCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateUserDefinedFunctionCommand.ts b/clients/client-glue/src/commands/UpdateUserDefinedFunctionCommand.ts index 1851c78ecbca3..7d8a68757f7d6 100644 --- a/clients/client-glue/src/commands/UpdateUserDefinedFunctionCommand.ts +++ b/clients/client-glue/src/commands/UpdateUserDefinedFunctionCommand.ts @@ -82,6 +82,7 @@ export interface UpdateUserDefinedFunctionCommandOutput extends UpdateUserDefine * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateUserDefinedFunctionCommand extends $Command diff --git a/clients/client-glue/src/commands/UpdateWorkflowCommand.ts b/clients/client-glue/src/commands/UpdateWorkflowCommand.ts index 87100690cc530..31dc5f5921c33 100644 --- a/clients/client-glue/src/commands/UpdateWorkflowCommand.ts +++ b/clients/client-glue/src/commands/UpdateWorkflowCommand.ts @@ -75,6 +75,7 @@ export interface UpdateWorkflowCommandOutput extends UpdateWorkflowResponse, __M * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* + * * @public */ export class UpdateWorkflowCommand extends $Command diff --git a/clients/client-grafana/src/commands/AssociateLicenseCommand.ts b/clients/client-grafana/src/commands/AssociateLicenseCommand.ts index e08e0f284b2d0..503fc248c24c0 100644 --- a/clients/client-grafana/src/commands/AssociateLicenseCommand.ts +++ b/clients/client-grafana/src/commands/AssociateLicenseCommand.ts @@ -133,6 +133,7 @@ export interface AssociateLicenseCommandOutput extends AssociateLicenseResponse, * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class AssociateLicenseCommand extends $Command diff --git a/clients/client-grafana/src/commands/CreateWorkspaceApiKeyCommand.ts b/clients/client-grafana/src/commands/CreateWorkspaceApiKeyCommand.ts index fe7e9c9aba5ac..6aa280ce1346a 100644 --- a/clients/client-grafana/src/commands/CreateWorkspaceApiKeyCommand.ts +++ b/clients/client-grafana/src/commands/CreateWorkspaceApiKeyCommand.ts @@ -91,6 +91,7 @@ export interface CreateWorkspaceApiKeyCommandOutput extends CreateWorkspaceApiKe * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class CreateWorkspaceApiKeyCommand extends $Command diff --git a/clients/client-grafana/src/commands/CreateWorkspaceCommand.ts b/clients/client-grafana/src/commands/CreateWorkspaceCommand.ts index aa89853ecf4d9..929bd0ad00cad 100644 --- a/clients/client-grafana/src/commands/CreateWorkspaceCommand.ts +++ b/clients/client-grafana/src/commands/CreateWorkspaceCommand.ts @@ -175,6 +175,7 @@ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _ * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class CreateWorkspaceCommand extends $Command diff --git a/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountCommand.ts b/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountCommand.ts index 626373af92900..a45bd580c4884 100644 --- a/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountCommand.ts +++ b/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountCommand.ts @@ -98,6 +98,7 @@ export interface CreateWorkspaceServiceAccountCommandOutput * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class CreateWorkspaceServiceAccountCommand extends $Command diff --git a/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountTokenCommand.ts b/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountTokenCommand.ts index 7ba13ca7e139a..61d8cb5ee4124 100644 --- a/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountTokenCommand.ts +++ b/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountTokenCommand.ts @@ -106,6 +106,7 @@ export interface CreateWorkspaceServiceAccountTokenCommandOutput * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class CreateWorkspaceServiceAccountTokenCommand extends $Command diff --git a/clients/client-grafana/src/commands/DeleteWorkspaceApiKeyCommand.ts b/clients/client-grafana/src/commands/DeleteWorkspaceApiKeyCommand.ts index fca56c36533df..936d6c6a96d58 100644 --- a/clients/client-grafana/src/commands/DeleteWorkspaceApiKeyCommand.ts +++ b/clients/client-grafana/src/commands/DeleteWorkspaceApiKeyCommand.ts @@ -79,6 +79,7 @@ export interface DeleteWorkspaceApiKeyCommandOutput extends DeleteWorkspaceApiKe * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class DeleteWorkspaceApiKeyCommand extends $Command diff --git a/clients/client-grafana/src/commands/DeleteWorkspaceCommand.ts b/clients/client-grafana/src/commands/DeleteWorkspaceCommand.ts index c55b3cac2861f..4183323bfaf09 100644 --- a/clients/client-grafana/src/commands/DeleteWorkspaceCommand.ts +++ b/clients/client-grafana/src/commands/DeleteWorkspaceCommand.ts @@ -130,6 +130,7 @@ export interface DeleteWorkspaceCommandOutput extends DeleteWorkspaceResponse, _ * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class DeleteWorkspaceCommand extends $Command diff --git a/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountCommand.ts b/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountCommand.ts index c097ca8eab3ed..a7cf7967922a2 100644 --- a/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountCommand.ts +++ b/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountCommand.ts @@ -85,6 +85,7 @@ export interface DeleteWorkspaceServiceAccountCommandOutput * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class DeleteWorkspaceServiceAccountCommand extends $Command diff --git a/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountTokenCommand.ts b/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountTokenCommand.ts index 0de1e8ec1a733..56de811444d25 100644 --- a/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountTokenCommand.ts +++ b/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountTokenCommand.ts @@ -90,6 +90,7 @@ export interface DeleteWorkspaceServiceAccountTokenCommandOutput * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class DeleteWorkspaceServiceAccountTokenCommand extends $Command diff --git a/clients/client-grafana/src/commands/DescribeWorkspaceAuthenticationCommand.ts b/clients/client-grafana/src/commands/DescribeWorkspaceAuthenticationCommand.ts index dea482f55e4e3..cd09c247c51ed 100644 --- a/clients/client-grafana/src/commands/DescribeWorkspaceAuthenticationCommand.ts +++ b/clients/client-grafana/src/commands/DescribeWorkspaceAuthenticationCommand.ts @@ -119,6 +119,7 @@ export interface DescribeWorkspaceAuthenticationCommandOutput * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class DescribeWorkspaceAuthenticationCommand extends $Command diff --git a/clients/client-grafana/src/commands/DescribeWorkspaceCommand.ts b/clients/client-grafana/src/commands/DescribeWorkspaceCommand.ts index 2a119d2a7b27b..c8a64f777b178 100644 --- a/clients/client-grafana/src/commands/DescribeWorkspaceCommand.ts +++ b/clients/client-grafana/src/commands/DescribeWorkspaceCommand.ts @@ -127,6 +127,7 @@ export interface DescribeWorkspaceCommandOutput extends DescribeWorkspaceRespons * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class DescribeWorkspaceCommand extends $Command diff --git a/clients/client-grafana/src/commands/DescribeWorkspaceConfigurationCommand.ts b/clients/client-grafana/src/commands/DescribeWorkspaceConfigurationCommand.ts index 66e751085b242..f492b686813dd 100644 --- a/clients/client-grafana/src/commands/DescribeWorkspaceConfigurationCommand.ts +++ b/clients/client-grafana/src/commands/DescribeWorkspaceConfigurationCommand.ts @@ -73,6 +73,7 @@ export interface DescribeWorkspaceConfigurationCommandOutput * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class DescribeWorkspaceConfigurationCommand extends $Command diff --git a/clients/client-grafana/src/commands/DisassociateLicenseCommand.ts b/clients/client-grafana/src/commands/DisassociateLicenseCommand.ts index d41554841e0b2..74f2c767d6529 100644 --- a/clients/client-grafana/src/commands/DisassociateLicenseCommand.ts +++ b/clients/client-grafana/src/commands/DisassociateLicenseCommand.ts @@ -128,6 +128,7 @@ export interface DisassociateLicenseCommandOutput extends DisassociateLicenseRes * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class DisassociateLicenseCommand extends $Command diff --git a/clients/client-grafana/src/commands/ListPermissionsCommand.ts b/clients/client-grafana/src/commands/ListPermissionsCommand.ts index 58124d2f46a86..2d59eb9ce19b9 100644 --- a/clients/client-grafana/src/commands/ListPermissionsCommand.ts +++ b/clients/client-grafana/src/commands/ListPermissionsCommand.ts @@ -89,6 +89,7 @@ export interface ListPermissionsCommandOutput extends ListPermissionsResponse, _ * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class ListPermissionsCommand extends $Command diff --git a/clients/client-grafana/src/commands/ListTagsForResourceCommand.ts b/clients/client-grafana/src/commands/ListTagsForResourceCommand.ts index 68bd4452baa62..c133845e77a9e 100644 --- a/clients/client-grafana/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-grafana/src/commands/ListTagsForResourceCommand.ts @@ -75,6 +75,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-grafana/src/commands/ListVersionsCommand.ts b/clients/client-grafana/src/commands/ListVersionsCommand.ts index 8242e8fc85d66..57971555cb331 100644 --- a/clients/client-grafana/src/commands/ListVersionsCommand.ts +++ b/clients/client-grafana/src/commands/ListVersionsCommand.ts @@ -77,6 +77,7 @@ export interface ListVersionsCommandOutput extends ListVersionsResponse, __Metad * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class ListVersionsCommand extends $Command diff --git a/clients/client-grafana/src/commands/ListWorkspaceServiceAccountTokensCommand.ts b/clients/client-grafana/src/commands/ListWorkspaceServiceAccountTokensCommand.ts index 006d60025836b..4543fe7ca07f4 100644 --- a/clients/client-grafana/src/commands/ListWorkspaceServiceAccountTokensCommand.ts +++ b/clients/client-grafana/src/commands/ListWorkspaceServiceAccountTokensCommand.ts @@ -101,6 +101,7 @@ export interface ListWorkspaceServiceAccountTokensCommandOutput * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class ListWorkspaceServiceAccountTokensCommand extends $Command diff --git a/clients/client-grafana/src/commands/ListWorkspaceServiceAccountsCommand.ts b/clients/client-grafana/src/commands/ListWorkspaceServiceAccountsCommand.ts index 402a919d0fd6b..6334706763279 100644 --- a/clients/client-grafana/src/commands/ListWorkspaceServiceAccountsCommand.ts +++ b/clients/client-grafana/src/commands/ListWorkspaceServiceAccountsCommand.ts @@ -91,6 +91,7 @@ export interface ListWorkspaceServiceAccountsCommandOutput * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class ListWorkspaceServiceAccountsCommand extends $Command diff --git a/clients/client-grafana/src/commands/ListWorkspacesCommand.ts b/clients/client-grafana/src/commands/ListWorkspacesCommand.ts index 3285bad79efec..2f80503754add 100644 --- a/clients/client-grafana/src/commands/ListWorkspacesCommand.ts +++ b/clients/client-grafana/src/commands/ListWorkspacesCommand.ts @@ -96,6 +96,7 @@ export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __M * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class ListWorkspacesCommand extends $Command diff --git a/clients/client-grafana/src/commands/TagResourceCommand.ts b/clients/client-grafana/src/commands/TagResourceCommand.ts index 54e3a7899d31c..b5a77bc2ca927 100644 --- a/clients/client-grafana/src/commands/TagResourceCommand.ts +++ b/clients/client-grafana/src/commands/TagResourceCommand.ts @@ -76,6 +76,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-grafana/src/commands/UntagResourceCommand.ts b/clients/client-grafana/src/commands/UntagResourceCommand.ts index 1a7b5e3734876..aea5bb9225633 100644 --- a/clients/client-grafana/src/commands/UntagResourceCommand.ts +++ b/clients/client-grafana/src/commands/UntagResourceCommand.ts @@ -72,6 +72,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-grafana/src/commands/UpdatePermissionsCommand.ts b/clients/client-grafana/src/commands/UpdatePermissionsCommand.ts index 6615dacbae091..23481d7f73ecb 100644 --- a/clients/client-grafana/src/commands/UpdatePermissionsCommand.ts +++ b/clients/client-grafana/src/commands/UpdatePermissionsCommand.ts @@ -98,6 +98,7 @@ export interface UpdatePermissionsCommandOutput extends UpdatePermissionsRespons * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class UpdatePermissionsCommand extends $Command diff --git a/clients/client-grafana/src/commands/UpdateWorkspaceAuthenticationCommand.ts b/clients/client-grafana/src/commands/UpdateWorkspaceAuthenticationCommand.ts index 42c9aec386d9f..11132ff0da2ba 100644 --- a/clients/client-grafana/src/commands/UpdateWorkspaceAuthenticationCommand.ts +++ b/clients/client-grafana/src/commands/UpdateWorkspaceAuthenticationCommand.ts @@ -155,6 +155,7 @@ export interface UpdateWorkspaceAuthenticationCommandOutput * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class UpdateWorkspaceAuthenticationCommand extends $Command diff --git a/clients/client-grafana/src/commands/UpdateWorkspaceCommand.ts b/clients/client-grafana/src/commands/UpdateWorkspaceCommand.ts index d3b86b7ee49f8..c3d46368052ec 100644 --- a/clients/client-grafana/src/commands/UpdateWorkspaceCommand.ts +++ b/clients/client-grafana/src/commands/UpdateWorkspaceCommand.ts @@ -170,6 +170,7 @@ export interface UpdateWorkspaceCommandOutput extends UpdateWorkspaceResponse, _ * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class UpdateWorkspaceCommand extends $Command diff --git a/clients/client-grafana/src/commands/UpdateWorkspaceConfigurationCommand.ts b/clients/client-grafana/src/commands/UpdateWorkspaceConfigurationCommand.ts index 8e12a7fb3d327..486770bcbaf60 100644 --- a/clients/client-grafana/src/commands/UpdateWorkspaceConfigurationCommand.ts +++ b/clients/client-grafana/src/commands/UpdateWorkspaceConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface UpdateWorkspaceConfigurationCommandOutput * @throws {@link GrafanaServiceException} *

Base exception class for all service exceptions from Grafana service.

* + * * @public */ export class UpdateWorkspaceConfigurationCommand extends $Command diff --git a/clients/client-greengrass/src/commands/AssociateRoleToGroupCommand.ts b/clients/client-greengrass/src/commands/AssociateRoleToGroupCommand.ts index aa1b19d6effec..e23b85f6967eb 100644 --- a/clients/client-greengrass/src/commands/AssociateRoleToGroupCommand.ts +++ b/clients/client-greengrass/src/commands/AssociateRoleToGroupCommand.ts @@ -62,6 +62,7 @@ export interface AssociateRoleToGroupCommandOutput extends AssociateRoleToGroupR * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class AssociateRoleToGroupCommand extends $Command diff --git a/clients/client-greengrass/src/commands/AssociateServiceRoleToAccountCommand.ts b/clients/client-greengrass/src/commands/AssociateServiceRoleToAccountCommand.ts index ff6808e02c04e..918c3f7fec5a2 100644 --- a/clients/client-greengrass/src/commands/AssociateServiceRoleToAccountCommand.ts +++ b/clients/client-greengrass/src/commands/AssociateServiceRoleToAccountCommand.ts @@ -66,6 +66,7 @@ export interface AssociateServiceRoleToAccountCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class AssociateServiceRoleToAccountCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateConnectorDefinitionCommand.ts b/clients/client-greengrass/src/commands/CreateConnectorDefinitionCommand.ts index 6188c0778cbfa..568d7c0a4222f 100644 --- a/clients/client-greengrass/src/commands/CreateConnectorDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateConnectorDefinitionCommand.ts @@ -79,6 +79,7 @@ export interface CreateConnectorDefinitionCommandOutput extends CreateConnectorD * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateConnectorDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateConnectorDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/CreateConnectorDefinitionVersionCommand.ts index 94c930afbc06b..729597e352c66 100644 --- a/clients/client-greengrass/src/commands/CreateConnectorDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateConnectorDefinitionVersionCommand.ts @@ -76,6 +76,7 @@ export interface CreateConnectorDefinitionVersionCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateConnectorDefinitionVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateCoreDefinitionCommand.ts b/clients/client-greengrass/src/commands/CreateCoreDefinitionCommand.ts index 9c32ec1c06dea..500ea1196071c 100644 --- a/clients/client-greengrass/src/commands/CreateCoreDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateCoreDefinitionCommand.ts @@ -78,6 +78,7 @@ export interface CreateCoreDefinitionCommandOutput extends CreateCoreDefinitionR * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateCoreDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateCoreDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/CreateCoreDefinitionVersionCommand.ts index dcccdb4e6e248..89d455f87ef7f 100644 --- a/clients/client-greengrass/src/commands/CreateCoreDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateCoreDefinitionVersionCommand.ts @@ -75,6 +75,7 @@ export interface CreateCoreDefinitionVersionCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateCoreDefinitionVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateDeploymentCommand.ts b/clients/client-greengrass/src/commands/CreateDeploymentCommand.ts index 822561f0bce5e..83866081be0d4 100644 --- a/clients/client-greengrass/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-greengrass/src/commands/CreateDeploymentCommand.ts @@ -63,6 +63,7 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse, * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateDeploymentCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateDeviceDefinitionCommand.ts b/clients/client-greengrass/src/commands/CreateDeviceDefinitionCommand.ts index 1e267201ec601..0592691197b85 100644 --- a/clients/client-greengrass/src/commands/CreateDeviceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateDeviceDefinitionCommand.ts @@ -78,6 +78,7 @@ export interface CreateDeviceDefinitionCommandOutput extends CreateDeviceDefinit * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateDeviceDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateDeviceDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/CreateDeviceDefinitionVersionCommand.ts index cbb84a1fb7368..ecbe87c5b7e2a 100644 --- a/clients/client-greengrass/src/commands/CreateDeviceDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateDeviceDefinitionVersionCommand.ts @@ -75,6 +75,7 @@ export interface CreateDeviceDefinitionVersionCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateDeviceDefinitionVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateFunctionDefinitionCommand.ts b/clients/client-greengrass/src/commands/CreateFunctionDefinitionCommand.ts index d8302a96e8f19..a238754e242e2 100644 --- a/clients/client-greengrass/src/commands/CreateFunctionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateFunctionDefinitionCommand.ts @@ -113,6 +113,7 @@ export interface CreateFunctionDefinitionCommandOutput extends CreateFunctionDef * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateFunctionDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateFunctionDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/CreateFunctionDefinitionVersionCommand.ts index f9bd3831f922c..08422fe543796 100644 --- a/clients/client-greengrass/src/commands/CreateFunctionDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateFunctionDefinitionVersionCommand.ts @@ -110,6 +110,7 @@ export interface CreateFunctionDefinitionVersionCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateFunctionDefinitionVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateGroupCertificateAuthorityCommand.ts b/clients/client-greengrass/src/commands/CreateGroupCertificateAuthorityCommand.ts index 6733c9864aaa1..5f53802b50169 100644 --- a/clients/client-greengrass/src/commands/CreateGroupCertificateAuthorityCommand.ts +++ b/clients/client-greengrass/src/commands/CreateGroupCertificateAuthorityCommand.ts @@ -67,6 +67,7 @@ export interface CreateGroupCertificateAuthorityCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateGroupCertificateAuthorityCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateGroupCommand.ts b/clients/client-greengrass/src/commands/CreateGroupCommand.ts index 47cb7deea2707..68ab2a735edf7 100644 --- a/clients/client-greengrass/src/commands/CreateGroupCommand.ts +++ b/clients/client-greengrass/src/commands/CreateGroupCommand.ts @@ -77,6 +77,7 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateGroupCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateGroupVersionCommand.ts b/clients/client-greengrass/src/commands/CreateGroupVersionCommand.ts index b73dbbdf49cd2..1e0457249826d 100644 --- a/clients/client-greengrass/src/commands/CreateGroupVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateGroupVersionCommand.ts @@ -69,6 +69,7 @@ export interface CreateGroupVersionCommandOutput extends CreateGroupVersionRespo * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateGroupVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateLoggerDefinitionCommand.ts b/clients/client-greengrass/src/commands/CreateLoggerDefinitionCommand.ts index 4eefe338555fa..c33f006547307 100644 --- a/clients/client-greengrass/src/commands/CreateLoggerDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateLoggerDefinitionCommand.ts @@ -79,6 +79,7 @@ export interface CreateLoggerDefinitionCommandOutput extends CreateLoggerDefinit * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateLoggerDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateLoggerDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/CreateLoggerDefinitionVersionCommand.ts index 791216b04b69c..4aa511a2ed4e2 100644 --- a/clients/client-greengrass/src/commands/CreateLoggerDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateLoggerDefinitionVersionCommand.ts @@ -76,6 +76,7 @@ export interface CreateLoggerDefinitionVersionCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateLoggerDefinitionVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateResourceDefinitionCommand.ts b/clients/client-greengrass/src/commands/CreateResourceDefinitionCommand.ts index 232dfaed00df0..5b483ecddfd6b 100644 --- a/clients/client-greengrass/src/commands/CreateResourceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateResourceDefinitionCommand.ts @@ -115,6 +115,7 @@ export interface CreateResourceDefinitionCommandOutput extends CreateResourceDef * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateResourceDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateResourceDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/CreateResourceDefinitionVersionCommand.ts index 3fd5d82918800..2cdcc4eb7f7dc 100644 --- a/clients/client-greengrass/src/commands/CreateResourceDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateResourceDefinitionVersionCommand.ts @@ -112,6 +112,7 @@ export interface CreateResourceDefinitionVersionCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateResourceDefinitionVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateSoftwareUpdateJobCommand.ts b/clients/client-greengrass/src/commands/CreateSoftwareUpdateJobCommand.ts index 34916be24b9d5..2938d6130129c 100644 --- a/clients/client-greengrass/src/commands/CreateSoftwareUpdateJobCommand.ts +++ b/clients/client-greengrass/src/commands/CreateSoftwareUpdateJobCommand.ts @@ -71,6 +71,7 @@ export interface CreateSoftwareUpdateJobCommandOutput extends CreateSoftwareUpda * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateSoftwareUpdateJobCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionCommand.ts b/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionCommand.ts index 3831f90f31f4c..56b032af0a99a 100644 --- a/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionCommand.ts @@ -83,6 +83,7 @@ export interface CreateSubscriptionDefinitionCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateSubscriptionDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionVersionCommand.ts index b3e1006d9ab79..d9acd49f9cae9 100644 --- a/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionVersionCommand.ts @@ -78,6 +78,7 @@ export interface CreateSubscriptionDefinitionVersionCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class CreateSubscriptionDefinitionVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/DeleteConnectorDefinitionCommand.ts b/clients/client-greengrass/src/commands/DeleteConnectorDefinitionCommand.ts index 877934720bcca..d6b8ce6ffb8cd 100644 --- a/clients/client-greengrass/src/commands/DeleteConnectorDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteConnectorDefinitionCommand.ts @@ -56,6 +56,7 @@ export interface DeleteConnectorDefinitionCommandOutput extends DeleteConnectorD * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class DeleteConnectorDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/DeleteCoreDefinitionCommand.ts b/clients/client-greengrass/src/commands/DeleteCoreDefinitionCommand.ts index 025f6bbc3fcd1..165af06044191 100644 --- a/clients/client-greengrass/src/commands/DeleteCoreDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteCoreDefinitionCommand.ts @@ -56,6 +56,7 @@ export interface DeleteCoreDefinitionCommandOutput extends DeleteCoreDefinitionR * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class DeleteCoreDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/DeleteDeviceDefinitionCommand.ts b/clients/client-greengrass/src/commands/DeleteDeviceDefinitionCommand.ts index 36c88dd73fa48..def5a5b338968 100644 --- a/clients/client-greengrass/src/commands/DeleteDeviceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteDeviceDefinitionCommand.ts @@ -56,6 +56,7 @@ export interface DeleteDeviceDefinitionCommandOutput extends DeleteDeviceDefinit * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class DeleteDeviceDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/DeleteFunctionDefinitionCommand.ts b/clients/client-greengrass/src/commands/DeleteFunctionDefinitionCommand.ts index 2faae39d89314..da5df08446d5a 100644 --- a/clients/client-greengrass/src/commands/DeleteFunctionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteFunctionDefinitionCommand.ts @@ -56,6 +56,7 @@ export interface DeleteFunctionDefinitionCommandOutput extends DeleteFunctionDef * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class DeleteFunctionDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/DeleteGroupCommand.ts b/clients/client-greengrass/src/commands/DeleteGroupCommand.ts index 4e95527b08905..7b6b3f35e3f60 100644 --- a/clients/client-greengrass/src/commands/DeleteGroupCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteGroupCommand.ts @@ -56,6 +56,7 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __Metadat * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class DeleteGroupCommand extends $Command diff --git a/clients/client-greengrass/src/commands/DeleteLoggerDefinitionCommand.ts b/clients/client-greengrass/src/commands/DeleteLoggerDefinitionCommand.ts index 95cfcbe5e1352..217a3ed0c9386 100644 --- a/clients/client-greengrass/src/commands/DeleteLoggerDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteLoggerDefinitionCommand.ts @@ -56,6 +56,7 @@ export interface DeleteLoggerDefinitionCommandOutput extends DeleteLoggerDefinit * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class DeleteLoggerDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/DeleteResourceDefinitionCommand.ts b/clients/client-greengrass/src/commands/DeleteResourceDefinitionCommand.ts index e5c33a9306e5c..2cd47c00bee8e 100644 --- a/clients/client-greengrass/src/commands/DeleteResourceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteResourceDefinitionCommand.ts @@ -56,6 +56,7 @@ export interface DeleteResourceDefinitionCommandOutput extends DeleteResourceDef * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class DeleteResourceDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/DeleteSubscriptionDefinitionCommand.ts b/clients/client-greengrass/src/commands/DeleteSubscriptionDefinitionCommand.ts index a09bce3800522..37f78aafb95a2 100644 --- a/clients/client-greengrass/src/commands/DeleteSubscriptionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteSubscriptionDefinitionCommand.ts @@ -61,6 +61,7 @@ export interface DeleteSubscriptionDefinitionCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class DeleteSubscriptionDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/DisassociateRoleFromGroupCommand.ts b/clients/client-greengrass/src/commands/DisassociateRoleFromGroupCommand.ts index cca8ff56362a9..84ead4df4135b 100644 --- a/clients/client-greengrass/src/commands/DisassociateRoleFromGroupCommand.ts +++ b/clients/client-greengrass/src/commands/DisassociateRoleFromGroupCommand.ts @@ -61,6 +61,7 @@ export interface DisassociateRoleFromGroupCommandOutput extends DisassociateRole * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class DisassociateRoleFromGroupCommand extends $Command diff --git a/clients/client-greengrass/src/commands/DisassociateServiceRoleFromAccountCommand.ts b/clients/client-greengrass/src/commands/DisassociateServiceRoleFromAccountCommand.ts index 654c979ce9fdf..d5742c5e19e7b 100644 --- a/clients/client-greengrass/src/commands/DisassociateServiceRoleFromAccountCommand.ts +++ b/clients/client-greengrass/src/commands/DisassociateServiceRoleFromAccountCommand.ts @@ -64,6 +64,7 @@ export interface DisassociateServiceRoleFromAccountCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class DisassociateServiceRoleFromAccountCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetAssociatedRoleCommand.ts b/clients/client-greengrass/src/commands/GetAssociatedRoleCommand.ts index 021da01de6699..380ee46b07a4f 100644 --- a/clients/client-greengrass/src/commands/GetAssociatedRoleCommand.ts +++ b/clients/client-greengrass/src/commands/GetAssociatedRoleCommand.ts @@ -62,6 +62,7 @@ export interface GetAssociatedRoleCommandOutput extends GetAssociatedRoleRespons * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetAssociatedRoleCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetBulkDeploymentStatusCommand.ts b/clients/client-greengrass/src/commands/GetBulkDeploymentStatusCommand.ts index fae45e2a1744b..865a4250cf0d3 100644 --- a/clients/client-greengrass/src/commands/GetBulkDeploymentStatusCommand.ts +++ b/clients/client-greengrass/src/commands/GetBulkDeploymentStatusCommand.ts @@ -74,6 +74,7 @@ export interface GetBulkDeploymentStatusCommandOutput extends GetBulkDeploymentS * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetBulkDeploymentStatusCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetConnectivityInfoCommand.ts b/clients/client-greengrass/src/commands/GetConnectivityInfoCommand.ts index 7e3b26f858af9..02dc8bbaeb818 100644 --- a/clients/client-greengrass/src/commands/GetConnectivityInfoCommand.ts +++ b/clients/client-greengrass/src/commands/GetConnectivityInfoCommand.ts @@ -69,6 +69,7 @@ export interface GetConnectivityInfoCommandOutput extends GetConnectivityInfoRes * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetConnectivityInfoCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetConnectorDefinitionCommand.ts b/clients/client-greengrass/src/commands/GetConnectorDefinitionCommand.ts index 621faca7bce56..13040b4e5a3c2 100644 --- a/clients/client-greengrass/src/commands/GetConnectorDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/GetConnectorDefinitionCommand.ts @@ -67,6 +67,7 @@ export interface GetConnectorDefinitionCommandOutput extends GetConnectorDefinit * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetConnectorDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetConnectorDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/GetConnectorDefinitionVersionCommand.ts index bb61a05291593..0c2f209eee44b 100644 --- a/clients/client-greengrass/src/commands/GetConnectorDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetConnectorDefinitionVersionCommand.ts @@ -80,6 +80,7 @@ export interface GetConnectorDefinitionVersionCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetConnectorDefinitionVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetCoreDefinitionCommand.ts b/clients/client-greengrass/src/commands/GetCoreDefinitionCommand.ts index 82981b5f83e17..8a1dd028e051a 100644 --- a/clients/client-greengrass/src/commands/GetCoreDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/GetCoreDefinitionCommand.ts @@ -67,6 +67,7 @@ export interface GetCoreDefinitionCommandOutput extends GetCoreDefinitionRespons * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetCoreDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetCoreDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/GetCoreDefinitionVersionCommand.ts index 1dc7e1e82b9a0..e1830236e5be5 100644 --- a/clients/client-greengrass/src/commands/GetCoreDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetCoreDefinitionVersionCommand.ts @@ -73,6 +73,7 @@ export interface GetCoreDefinitionVersionCommandOutput extends GetCoreDefinition * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetCoreDefinitionVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetDeploymentStatusCommand.ts b/clients/client-greengrass/src/commands/GetDeploymentStatusCommand.ts index a5ad24e5edbc2..691c453b30348 100644 --- a/clients/client-greengrass/src/commands/GetDeploymentStatusCommand.ts +++ b/clients/client-greengrass/src/commands/GetDeploymentStatusCommand.ts @@ -68,6 +68,7 @@ export interface GetDeploymentStatusCommandOutput extends GetDeploymentStatusRes * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetDeploymentStatusCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetDeviceDefinitionCommand.ts b/clients/client-greengrass/src/commands/GetDeviceDefinitionCommand.ts index f37d5749411a3..c45d314e0d706 100644 --- a/clients/client-greengrass/src/commands/GetDeviceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/GetDeviceDefinitionCommand.ts @@ -67,6 +67,7 @@ export interface GetDeviceDefinitionCommandOutput extends GetDeviceDefinitionRes * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetDeviceDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetDeviceDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/GetDeviceDefinitionVersionCommand.ts index 82f1ef34323dc..db2a42e00c49c 100644 --- a/clients/client-greengrass/src/commands/GetDeviceDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetDeviceDefinitionVersionCommand.ts @@ -74,6 +74,7 @@ export interface GetDeviceDefinitionVersionCommandOutput extends GetDeviceDefini * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetDeviceDefinitionVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetFunctionDefinitionCommand.ts b/clients/client-greengrass/src/commands/GetFunctionDefinitionCommand.ts index 1583f3aec5be4..709e34991fd5e 100644 --- a/clients/client-greengrass/src/commands/GetFunctionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/GetFunctionDefinitionCommand.ts @@ -67,6 +67,7 @@ export interface GetFunctionDefinitionCommandOutput extends GetFunctionDefinitio * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetFunctionDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetFunctionDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/GetFunctionDefinitionVersionCommand.ts index a3d578f9b7255..8c77297f3c223 100644 --- a/clients/client-greengrass/src/commands/GetFunctionDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetFunctionDefinitionVersionCommand.ts @@ -114,6 +114,7 @@ export interface GetFunctionDefinitionVersionCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetFunctionDefinitionVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetGroupCertificateAuthorityCommand.ts b/clients/client-greengrass/src/commands/GetGroupCertificateAuthorityCommand.ts index 1f13714c68af5..a5e9e2e35a559 100644 --- a/clients/client-greengrass/src/commands/GetGroupCertificateAuthorityCommand.ts +++ b/clients/client-greengrass/src/commands/GetGroupCertificateAuthorityCommand.ts @@ -69,6 +69,7 @@ export interface GetGroupCertificateAuthorityCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetGroupCertificateAuthorityCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetGroupCertificateConfigurationCommand.ts b/clients/client-greengrass/src/commands/GetGroupCertificateConfigurationCommand.ts index db887644b265f..ad9b2bed5d520 100644 --- a/clients/client-greengrass/src/commands/GetGroupCertificateConfigurationCommand.ts +++ b/clients/client-greengrass/src/commands/GetGroupCertificateConfigurationCommand.ts @@ -68,6 +68,7 @@ export interface GetGroupCertificateConfigurationCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetGroupCertificateConfigurationCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetGroupCommand.ts b/clients/client-greengrass/src/commands/GetGroupCommand.ts index 98277da243d24..d66dfd45b2b7c 100644 --- a/clients/client-greengrass/src/commands/GetGroupCommand.ts +++ b/clients/client-greengrass/src/commands/GetGroupCommand.ts @@ -67,6 +67,7 @@ export interface GetGroupCommandOutput extends GetGroupResponse, __MetadataBeare * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetGroupCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetGroupVersionCommand.ts b/clients/client-greengrass/src/commands/GetGroupVersionCommand.ts index 8f7c1801354be..7731dd268fba0 100644 --- a/clients/client-greengrass/src/commands/GetGroupVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetGroupVersionCommand.ts @@ -71,6 +71,7 @@ export interface GetGroupVersionCommandOutput extends GetGroupVersionResponse, _ * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetGroupVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetLoggerDefinitionCommand.ts b/clients/client-greengrass/src/commands/GetLoggerDefinitionCommand.ts index 4f3fb43bf1202..cdfcb98563d08 100644 --- a/clients/client-greengrass/src/commands/GetLoggerDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/GetLoggerDefinitionCommand.ts @@ -67,6 +67,7 @@ export interface GetLoggerDefinitionCommandOutput extends GetLoggerDefinitionRes * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetLoggerDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetLoggerDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/GetLoggerDefinitionVersionCommand.ts index 6acb3f337449a..44c1b97b29929 100644 --- a/clients/client-greengrass/src/commands/GetLoggerDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetLoggerDefinitionVersionCommand.ts @@ -74,6 +74,7 @@ export interface GetLoggerDefinitionVersionCommandOutput extends GetLoggerDefini * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetLoggerDefinitionVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetResourceDefinitionCommand.ts b/clients/client-greengrass/src/commands/GetResourceDefinitionCommand.ts index dc8146c484e1b..e5d3b320933da 100644 --- a/clients/client-greengrass/src/commands/GetResourceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/GetResourceDefinitionCommand.ts @@ -67,6 +67,7 @@ export interface GetResourceDefinitionCommandOutput extends GetResourceDefinitio * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetResourceDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetResourceDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/GetResourceDefinitionVersionCommand.ts index dbb3f027d36b4..48fbb99910960 100644 --- a/clients/client-greengrass/src/commands/GetResourceDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetResourceDefinitionVersionCommand.ts @@ -114,6 +114,7 @@ export interface GetResourceDefinitionVersionCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetResourceDefinitionVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetServiceRoleForAccountCommand.ts b/clients/client-greengrass/src/commands/GetServiceRoleForAccountCommand.ts index 64498364af70e..d9d6ec17a9d50 100644 --- a/clients/client-greengrass/src/commands/GetServiceRoleForAccountCommand.ts +++ b/clients/client-greengrass/src/commands/GetServiceRoleForAccountCommand.ts @@ -57,6 +57,7 @@ export interface GetServiceRoleForAccountCommandOutput extends GetServiceRoleFor * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetServiceRoleForAccountCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetSubscriptionDefinitionCommand.ts b/clients/client-greengrass/src/commands/GetSubscriptionDefinitionCommand.ts index c31c91855a6a8..853a60c9b2bb4 100644 --- a/clients/client-greengrass/src/commands/GetSubscriptionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/GetSubscriptionDefinitionCommand.ts @@ -67,6 +67,7 @@ export interface GetSubscriptionDefinitionCommandOutput extends GetSubscriptionD * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetSubscriptionDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetSubscriptionDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/GetSubscriptionDefinitionVersionCommand.ts index e57d4255acccd..3bf65bbbebe21 100644 --- a/clients/client-greengrass/src/commands/GetSubscriptionDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetSubscriptionDefinitionVersionCommand.ts @@ -79,6 +79,7 @@ export interface GetSubscriptionDefinitionVersionCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetSubscriptionDefinitionVersionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/GetThingRuntimeConfigurationCommand.ts b/clients/client-greengrass/src/commands/GetThingRuntimeConfigurationCommand.ts index 24ffbf0d4abde..bf5371bb48a80 100644 --- a/clients/client-greengrass/src/commands/GetThingRuntimeConfigurationCommand.ts +++ b/clients/client-greengrass/src/commands/GetThingRuntimeConfigurationCommand.ts @@ -71,6 +71,7 @@ export interface GetThingRuntimeConfigurationCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class GetThingRuntimeConfigurationCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListBulkDeploymentDetailedReportsCommand.ts b/clients/client-greengrass/src/commands/ListBulkDeploymentDetailedReportsCommand.ts index e162619039be6..4733fb9dc8141 100644 --- a/clients/client-greengrass/src/commands/ListBulkDeploymentDetailedReportsCommand.ts +++ b/clients/client-greengrass/src/commands/ListBulkDeploymentDetailedReportsCommand.ts @@ -85,6 +85,7 @@ export interface ListBulkDeploymentDetailedReportsCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListBulkDeploymentDetailedReportsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListBulkDeploymentsCommand.ts b/clients/client-greengrass/src/commands/ListBulkDeploymentsCommand.ts index 6791e3c4b8f94..c6b94e8f12f75 100644 --- a/clients/client-greengrass/src/commands/ListBulkDeploymentsCommand.ts +++ b/clients/client-greengrass/src/commands/ListBulkDeploymentsCommand.ts @@ -66,6 +66,7 @@ export interface ListBulkDeploymentsCommandOutput extends ListBulkDeploymentsRes * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListBulkDeploymentsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListConnectorDefinitionVersionsCommand.ts b/clients/client-greengrass/src/commands/ListConnectorDefinitionVersionsCommand.ts index 107020f6e4452..6185b503be2f0 100644 --- a/clients/client-greengrass/src/commands/ListConnectorDefinitionVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListConnectorDefinitionVersionsCommand.ts @@ -73,6 +73,7 @@ export interface ListConnectorDefinitionVersionsCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListConnectorDefinitionVersionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListConnectorDefinitionsCommand.ts b/clients/client-greengrass/src/commands/ListConnectorDefinitionsCommand.ts index 0e5f7761aa2b6..3db46cf98ad4a 100644 --- a/clients/client-greengrass/src/commands/ListConnectorDefinitionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListConnectorDefinitionsCommand.ts @@ -70,6 +70,7 @@ export interface ListConnectorDefinitionsCommandOutput extends ListConnectorDefi * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListConnectorDefinitionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListCoreDefinitionVersionsCommand.ts b/clients/client-greengrass/src/commands/ListCoreDefinitionVersionsCommand.ts index ce77ce4194816..d05f6f710a54b 100644 --- a/clients/client-greengrass/src/commands/ListCoreDefinitionVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListCoreDefinitionVersionsCommand.ts @@ -68,6 +68,7 @@ export interface ListCoreDefinitionVersionsCommandOutput extends ListCoreDefinit * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListCoreDefinitionVersionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListCoreDefinitionsCommand.ts b/clients/client-greengrass/src/commands/ListCoreDefinitionsCommand.ts index 83d405fadb5f0..405a55fc853d9 100644 --- a/clients/client-greengrass/src/commands/ListCoreDefinitionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListCoreDefinitionsCommand.ts @@ -70,6 +70,7 @@ export interface ListCoreDefinitionsCommandOutput extends ListCoreDefinitionsRes * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListCoreDefinitionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListDeploymentsCommand.ts b/clients/client-greengrass/src/commands/ListDeploymentsCommand.ts index f40ff2ca03a1e..046d79ce4971d 100644 --- a/clients/client-greengrass/src/commands/ListDeploymentsCommand.ts +++ b/clients/client-greengrass/src/commands/ListDeploymentsCommand.ts @@ -69,6 +69,7 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsResponse, _ * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListDeploymentsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListDeviceDefinitionVersionsCommand.ts b/clients/client-greengrass/src/commands/ListDeviceDefinitionVersionsCommand.ts index 4afbbb913a927..7e2fc3a708141 100644 --- a/clients/client-greengrass/src/commands/ListDeviceDefinitionVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListDeviceDefinitionVersionsCommand.ts @@ -73,6 +73,7 @@ export interface ListDeviceDefinitionVersionsCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListDeviceDefinitionVersionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListDeviceDefinitionsCommand.ts b/clients/client-greengrass/src/commands/ListDeviceDefinitionsCommand.ts index 5e88ab1f2982f..354881d931b24 100644 --- a/clients/client-greengrass/src/commands/ListDeviceDefinitionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListDeviceDefinitionsCommand.ts @@ -70,6 +70,7 @@ export interface ListDeviceDefinitionsCommandOutput extends ListDeviceDefinition * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListDeviceDefinitionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListFunctionDefinitionVersionsCommand.ts b/clients/client-greengrass/src/commands/ListFunctionDefinitionVersionsCommand.ts index b7cbf344d3f81..5284c7574a52f 100644 --- a/clients/client-greengrass/src/commands/ListFunctionDefinitionVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListFunctionDefinitionVersionsCommand.ts @@ -73,6 +73,7 @@ export interface ListFunctionDefinitionVersionsCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListFunctionDefinitionVersionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListFunctionDefinitionsCommand.ts b/clients/client-greengrass/src/commands/ListFunctionDefinitionsCommand.ts index e7fd3d091f378..436b4cd144dab 100644 --- a/clients/client-greengrass/src/commands/ListFunctionDefinitionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListFunctionDefinitionsCommand.ts @@ -70,6 +70,7 @@ export interface ListFunctionDefinitionsCommandOutput extends ListFunctionDefini * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListFunctionDefinitionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListGroupCertificateAuthoritiesCommand.ts b/clients/client-greengrass/src/commands/ListGroupCertificateAuthoritiesCommand.ts index 27d413c9a065a..430fb9741d57e 100644 --- a/clients/client-greengrass/src/commands/ListGroupCertificateAuthoritiesCommand.ts +++ b/clients/client-greengrass/src/commands/ListGroupCertificateAuthoritiesCommand.ts @@ -71,6 +71,7 @@ export interface ListGroupCertificateAuthoritiesCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListGroupCertificateAuthoritiesCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListGroupVersionsCommand.ts b/clients/client-greengrass/src/commands/ListGroupVersionsCommand.ts index 48bccb35dc8e2..9f4a0603550ff 100644 --- a/clients/client-greengrass/src/commands/ListGroupVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListGroupVersionsCommand.ts @@ -68,6 +68,7 @@ export interface ListGroupVersionsCommandOutput extends ListGroupVersionsRespons * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListGroupVersionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListGroupsCommand.ts b/clients/client-greengrass/src/commands/ListGroupsCommand.ts index d59edf9379e0b..da4977e3a635b 100644 --- a/clients/client-greengrass/src/commands/ListGroupsCommand.ts +++ b/clients/client-greengrass/src/commands/ListGroupsCommand.ts @@ -67,6 +67,7 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListGroupsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListLoggerDefinitionVersionsCommand.ts b/clients/client-greengrass/src/commands/ListLoggerDefinitionVersionsCommand.ts index e043a29b373b1..34a57f1d63b00 100644 --- a/clients/client-greengrass/src/commands/ListLoggerDefinitionVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListLoggerDefinitionVersionsCommand.ts @@ -73,6 +73,7 @@ export interface ListLoggerDefinitionVersionsCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListLoggerDefinitionVersionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListLoggerDefinitionsCommand.ts b/clients/client-greengrass/src/commands/ListLoggerDefinitionsCommand.ts index daef790800580..17464975c00a6 100644 --- a/clients/client-greengrass/src/commands/ListLoggerDefinitionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListLoggerDefinitionsCommand.ts @@ -70,6 +70,7 @@ export interface ListLoggerDefinitionsCommandOutput extends ListLoggerDefinition * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListLoggerDefinitionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListResourceDefinitionVersionsCommand.ts b/clients/client-greengrass/src/commands/ListResourceDefinitionVersionsCommand.ts index 8d512d3064ffe..b8ad09c7deb3f 100644 --- a/clients/client-greengrass/src/commands/ListResourceDefinitionVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListResourceDefinitionVersionsCommand.ts @@ -73,6 +73,7 @@ export interface ListResourceDefinitionVersionsCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListResourceDefinitionVersionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListResourceDefinitionsCommand.ts b/clients/client-greengrass/src/commands/ListResourceDefinitionsCommand.ts index 0ece31224d844..1db222ca6c8f0 100644 --- a/clients/client-greengrass/src/commands/ListResourceDefinitionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListResourceDefinitionsCommand.ts @@ -70,6 +70,7 @@ export interface ListResourceDefinitionsCommandOutput extends ListResourceDefini * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListResourceDefinitionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListSubscriptionDefinitionVersionsCommand.ts b/clients/client-greengrass/src/commands/ListSubscriptionDefinitionVersionsCommand.ts index 71c46ea85acac..b3c8983f6bdcd 100644 --- a/clients/client-greengrass/src/commands/ListSubscriptionDefinitionVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListSubscriptionDefinitionVersionsCommand.ts @@ -76,6 +76,7 @@ export interface ListSubscriptionDefinitionVersionsCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListSubscriptionDefinitionVersionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListSubscriptionDefinitionsCommand.ts b/clients/client-greengrass/src/commands/ListSubscriptionDefinitionsCommand.ts index fb09aed60027b..30a08f455aac7 100644 --- a/clients/client-greengrass/src/commands/ListSubscriptionDefinitionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListSubscriptionDefinitionsCommand.ts @@ -75,6 +75,7 @@ export interface ListSubscriptionDefinitionsCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListSubscriptionDefinitionsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ListTagsForResourceCommand.ts b/clients/client-greengrass/src/commands/ListTagsForResourceCommand.ts index 9104ca4376029..d4d43c00c6a10 100644 --- a/clients/client-greengrass/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-greengrass/src/commands/ListTagsForResourceCommand.ts @@ -60,6 +60,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-greengrass/src/commands/ResetDeploymentsCommand.ts b/clients/client-greengrass/src/commands/ResetDeploymentsCommand.ts index 6418c0375deb9..5c763e42aa909 100644 --- a/clients/client-greengrass/src/commands/ResetDeploymentsCommand.ts +++ b/clients/client-greengrass/src/commands/ResetDeploymentsCommand.ts @@ -61,6 +61,7 @@ export interface ResetDeploymentsCommandOutput extends ResetDeploymentsResponse, * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class ResetDeploymentsCommand extends $Command diff --git a/clients/client-greengrass/src/commands/StartBulkDeploymentCommand.ts b/clients/client-greengrass/src/commands/StartBulkDeploymentCommand.ts index 2241c28123d0f..bea5b00fcad73 100644 --- a/clients/client-greengrass/src/commands/StartBulkDeploymentCommand.ts +++ b/clients/client-greengrass/src/commands/StartBulkDeploymentCommand.ts @@ -64,6 +64,7 @@ export interface StartBulkDeploymentCommandOutput extends StartBulkDeploymentRes * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class StartBulkDeploymentCommand extends $Command diff --git a/clients/client-greengrass/src/commands/StopBulkDeploymentCommand.ts b/clients/client-greengrass/src/commands/StopBulkDeploymentCommand.ts index fa6f682ab6996..2081dceb4dda9 100644 --- a/clients/client-greengrass/src/commands/StopBulkDeploymentCommand.ts +++ b/clients/client-greengrass/src/commands/StopBulkDeploymentCommand.ts @@ -56,6 +56,7 @@ export interface StopBulkDeploymentCommandOutput extends StopBulkDeploymentRespo * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class StopBulkDeploymentCommand extends $Command diff --git a/clients/client-greengrass/src/commands/TagResourceCommand.ts b/clients/client-greengrass/src/commands/TagResourceCommand.ts index c0d6c48421fc7..8f5f88b88e236 100644 --- a/clients/client-greengrass/src/commands/TagResourceCommand.ts +++ b/clients/client-greengrass/src/commands/TagResourceCommand.ts @@ -59,6 +59,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-greengrass/src/commands/UntagResourceCommand.ts b/clients/client-greengrass/src/commands/UntagResourceCommand.ts index 2f91fcbaa1e82..52168800fe4f8 100644 --- a/clients/client-greengrass/src/commands/UntagResourceCommand.ts +++ b/clients/client-greengrass/src/commands/UntagResourceCommand.ts @@ -59,6 +59,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-greengrass/src/commands/UpdateConnectivityInfoCommand.ts b/clients/client-greengrass/src/commands/UpdateConnectivityInfoCommand.ts index 4bc8fc28c9f82..02af5aa1ea092 100644 --- a/clients/client-greengrass/src/commands/UpdateConnectivityInfoCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateConnectivityInfoCommand.ts @@ -70,6 +70,7 @@ export interface UpdateConnectivityInfoCommandOutput extends UpdateConnectivityI * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class UpdateConnectivityInfoCommand extends $Command diff --git a/clients/client-greengrass/src/commands/UpdateConnectorDefinitionCommand.ts b/clients/client-greengrass/src/commands/UpdateConnectorDefinitionCommand.ts index 84e96a69336aa..77f748185897e 100644 --- a/clients/client-greengrass/src/commands/UpdateConnectorDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateConnectorDefinitionCommand.ts @@ -57,6 +57,7 @@ export interface UpdateConnectorDefinitionCommandOutput extends UpdateConnectorD * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class UpdateConnectorDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/UpdateCoreDefinitionCommand.ts b/clients/client-greengrass/src/commands/UpdateCoreDefinitionCommand.ts index 1c34adc10cae2..a57e1576a796a 100644 --- a/clients/client-greengrass/src/commands/UpdateCoreDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateCoreDefinitionCommand.ts @@ -57,6 +57,7 @@ export interface UpdateCoreDefinitionCommandOutput extends UpdateCoreDefinitionR * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class UpdateCoreDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/UpdateDeviceDefinitionCommand.ts b/clients/client-greengrass/src/commands/UpdateDeviceDefinitionCommand.ts index 37f715398808d..d84478e0bd5e9 100644 --- a/clients/client-greengrass/src/commands/UpdateDeviceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateDeviceDefinitionCommand.ts @@ -57,6 +57,7 @@ export interface UpdateDeviceDefinitionCommandOutput extends UpdateDeviceDefinit * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class UpdateDeviceDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/UpdateFunctionDefinitionCommand.ts b/clients/client-greengrass/src/commands/UpdateFunctionDefinitionCommand.ts index 46a2d9dd4b7b9..2b9c2b74c189f 100644 --- a/clients/client-greengrass/src/commands/UpdateFunctionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateFunctionDefinitionCommand.ts @@ -57,6 +57,7 @@ export interface UpdateFunctionDefinitionCommandOutput extends UpdateFunctionDef * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class UpdateFunctionDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/UpdateGroupCertificateConfigurationCommand.ts b/clients/client-greengrass/src/commands/UpdateGroupCertificateConfigurationCommand.ts index 181a2aa04fba6..0bc41ebb7e5d2 100644 --- a/clients/client-greengrass/src/commands/UpdateGroupCertificateConfigurationCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateGroupCertificateConfigurationCommand.ts @@ -72,6 +72,7 @@ export interface UpdateGroupCertificateConfigurationCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class UpdateGroupCertificateConfigurationCommand extends $Command diff --git a/clients/client-greengrass/src/commands/UpdateGroupCommand.ts b/clients/client-greengrass/src/commands/UpdateGroupCommand.ts index f5b0c7fba8160..046b187be3fcf 100644 --- a/clients/client-greengrass/src/commands/UpdateGroupCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateGroupCommand.ts @@ -57,6 +57,7 @@ export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __Metadat * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class UpdateGroupCommand extends $Command diff --git a/clients/client-greengrass/src/commands/UpdateLoggerDefinitionCommand.ts b/clients/client-greengrass/src/commands/UpdateLoggerDefinitionCommand.ts index f8cbc84e10ae9..ad4c13407a160 100644 --- a/clients/client-greengrass/src/commands/UpdateLoggerDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateLoggerDefinitionCommand.ts @@ -57,6 +57,7 @@ export interface UpdateLoggerDefinitionCommandOutput extends UpdateLoggerDefinit * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class UpdateLoggerDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/UpdateResourceDefinitionCommand.ts b/clients/client-greengrass/src/commands/UpdateResourceDefinitionCommand.ts index 1f56264acf456..a270b2045df96 100644 --- a/clients/client-greengrass/src/commands/UpdateResourceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateResourceDefinitionCommand.ts @@ -57,6 +57,7 @@ export interface UpdateResourceDefinitionCommandOutput extends UpdateResourceDef * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class UpdateResourceDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/UpdateSubscriptionDefinitionCommand.ts b/clients/client-greengrass/src/commands/UpdateSubscriptionDefinitionCommand.ts index c874af876c12a..e4a4b0930898a 100644 --- a/clients/client-greengrass/src/commands/UpdateSubscriptionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateSubscriptionDefinitionCommand.ts @@ -62,6 +62,7 @@ export interface UpdateSubscriptionDefinitionCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class UpdateSubscriptionDefinitionCommand extends $Command diff --git a/clients/client-greengrass/src/commands/UpdateThingRuntimeConfigurationCommand.ts b/clients/client-greengrass/src/commands/UpdateThingRuntimeConfigurationCommand.ts index 02810a8dff9ed..037c5a0682e7c 100644 --- a/clients/client-greengrass/src/commands/UpdateThingRuntimeConfigurationCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateThingRuntimeConfigurationCommand.ts @@ -67,6 +67,7 @@ export interface UpdateThingRuntimeConfigurationCommandOutput * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* + * * @public */ export class UpdateThingRuntimeConfigurationCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/AssociateServiceRoleToAccountCommand.ts b/clients/client-greengrassv2/src/commands/AssociateServiceRoleToAccountCommand.ts index f0c8bbfc822ab..6d6091687a31a 100644 --- a/clients/client-greengrassv2/src/commands/AssociateServiceRoleToAccountCommand.ts +++ b/clients/client-greengrassv2/src/commands/AssociateServiceRoleToAccountCommand.ts @@ -71,6 +71,7 @@ export interface AssociateServiceRoleToAccountCommandOutput * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class AssociateServiceRoleToAccountCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.ts b/clients/client-greengrassv2/src/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.ts index 8631c05039918..b080e95835140 100644 --- a/clients/client-greengrassv2/src/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.ts +++ b/clients/client-greengrassv2/src/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.ts @@ -103,6 +103,7 @@ export interface BatchAssociateClientDeviceWithCoreDeviceCommandOutput * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class BatchAssociateClientDeviceWithCoreDeviceCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.ts b/clients/client-greengrassv2/src/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.ts index f2dbbd6a59793..5a2a7faa07f6b 100644 --- a/clients/client-greengrassv2/src/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.ts +++ b/clients/client-greengrassv2/src/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.ts @@ -94,6 +94,7 @@ export interface BatchDisassociateClientDeviceFromCoreDeviceCommandOutput * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class BatchDisassociateClientDeviceFromCoreDeviceCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/CancelDeploymentCommand.ts b/clients/client-greengrassv2/src/commands/CancelDeploymentCommand.ts index 710b3024adb9e..f26a61fb34e8a 100644 --- a/clients/client-greengrassv2/src/commands/CancelDeploymentCommand.ts +++ b/clients/client-greengrassv2/src/commands/CancelDeploymentCommand.ts @@ -78,6 +78,7 @@ export interface CancelDeploymentCommandOutput extends CancelDeploymentResponse, * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class CancelDeploymentCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/CreateComponentVersionCommand.ts b/clients/client-greengrassv2/src/commands/CreateComponentVersionCommand.ts index e7e4cae8c34a8..2256dd3cefc30 100644 --- a/clients/client-greengrassv2/src/commands/CreateComponentVersionCommand.ts +++ b/clients/client-greengrassv2/src/commands/CreateComponentVersionCommand.ts @@ -192,6 +192,7 @@ export interface CreateComponentVersionCommandOutput extends CreateComponentVers * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class CreateComponentVersionCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/CreateDeploymentCommand.ts b/clients/client-greengrassv2/src/commands/CreateDeploymentCommand.ts index be498cda7145b..6a7e1dc80029f 100644 --- a/clients/client-greengrassv2/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-greengrassv2/src/commands/CreateDeploymentCommand.ts @@ -154,6 +154,7 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse, * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class CreateDeploymentCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/DeleteComponentCommand.ts b/clients/client-greengrassv2/src/commands/DeleteComponentCommand.ts index 5620f5f941e7b..25c4a374191bb 100644 --- a/clients/client-greengrassv2/src/commands/DeleteComponentCommand.ts +++ b/clients/client-greengrassv2/src/commands/DeleteComponentCommand.ts @@ -80,6 +80,7 @@ export interface DeleteComponentCommandOutput extends __MetadataBearer {} * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class DeleteComponentCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/DeleteCoreDeviceCommand.ts b/clients/client-greengrassv2/src/commands/DeleteCoreDeviceCommand.ts index cca156d90bbef..5d8f3ae9c2764 100644 --- a/clients/client-greengrassv2/src/commands/DeleteCoreDeviceCommand.ts +++ b/clients/client-greengrassv2/src/commands/DeleteCoreDeviceCommand.ts @@ -77,6 +77,7 @@ export interface DeleteCoreDeviceCommandOutput extends __MetadataBearer {} * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class DeleteCoreDeviceCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/DeleteDeploymentCommand.ts b/clients/client-greengrassv2/src/commands/DeleteDeploymentCommand.ts index 5a927e5153718..a62988f3cdb02 100644 --- a/clients/client-greengrassv2/src/commands/DeleteDeploymentCommand.ts +++ b/clients/client-greengrassv2/src/commands/DeleteDeploymentCommand.ts @@ -78,6 +78,7 @@ export interface DeleteDeploymentCommandOutput extends __MetadataBearer {} * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class DeleteDeploymentCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/DescribeComponentCommand.ts b/clients/client-greengrassv2/src/commands/DescribeComponentCommand.ts index 51c9b4672068e..0391baaeb1a46 100644 --- a/clients/client-greengrassv2/src/commands/DescribeComponentCommand.ts +++ b/clients/client-greengrassv2/src/commands/DescribeComponentCommand.ts @@ -97,6 +97,7 @@ export interface DescribeComponentCommandOutput extends DescribeComponentRespons * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class DescribeComponentCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/DisassociateServiceRoleFromAccountCommand.ts b/clients/client-greengrassv2/src/commands/DisassociateServiceRoleFromAccountCommand.ts index ce787bee2db1b..c80633d620461 100644 --- a/clients/client-greengrassv2/src/commands/DisassociateServiceRoleFromAccountCommand.ts +++ b/clients/client-greengrassv2/src/commands/DisassociateServiceRoleFromAccountCommand.ts @@ -67,6 +67,7 @@ export interface DisassociateServiceRoleFromAccountCommandOutput * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class DisassociateServiceRoleFromAccountCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/GetComponentCommand.ts b/clients/client-greengrassv2/src/commands/GetComponentCommand.ts index a5995f9872ed0..383a0f54d3199 100644 --- a/clients/client-greengrassv2/src/commands/GetComponentCommand.ts +++ b/clients/client-greengrassv2/src/commands/GetComponentCommand.ts @@ -77,6 +77,7 @@ export interface GetComponentCommandOutput extends GetComponentResponse, __Metad * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class GetComponentCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/GetComponentVersionArtifactCommand.ts b/clients/client-greengrassv2/src/commands/GetComponentVersionArtifactCommand.ts index 384384d6ecc96..aa312cd0a599d 100644 --- a/clients/client-greengrassv2/src/commands/GetComponentVersionArtifactCommand.ts +++ b/clients/client-greengrassv2/src/commands/GetComponentVersionArtifactCommand.ts @@ -82,6 +82,7 @@ export interface GetComponentVersionArtifactCommandOutput * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class GetComponentVersionArtifactCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/GetConnectivityInfoCommand.ts b/clients/client-greengrassv2/src/commands/GetConnectivityInfoCommand.ts index 6153ef046e931..fbdc24551fc2c 100644 --- a/clients/client-greengrassv2/src/commands/GetConnectivityInfoCommand.ts +++ b/clients/client-greengrassv2/src/commands/GetConnectivityInfoCommand.ts @@ -76,6 +76,7 @@ export interface GetConnectivityInfoCommandOutput extends GetConnectivityInfoRes * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class GetConnectivityInfoCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/GetCoreDeviceCommand.ts b/clients/client-greengrassv2/src/commands/GetCoreDeviceCommand.ts index 4758e22448bc3..d886b28a7f507 100644 --- a/clients/client-greengrassv2/src/commands/GetCoreDeviceCommand.ts +++ b/clients/client-greengrassv2/src/commands/GetCoreDeviceCommand.ts @@ -108,6 +108,7 @@ export interface GetCoreDeviceCommandOutput extends GetCoreDeviceResponse, __Met * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class GetCoreDeviceCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/GetDeploymentCommand.ts b/clients/client-greengrassv2/src/commands/GetDeploymentCommand.ts index aed6bee92c40c..e2a64f5740c75 100644 --- a/clients/client-greengrassv2/src/commands/GetDeploymentCommand.ts +++ b/clients/client-greengrassv2/src/commands/GetDeploymentCommand.ts @@ -139,6 +139,7 @@ export interface GetDeploymentCommandOutput extends GetDeploymentResponse, __Met * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class GetDeploymentCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/GetServiceRoleForAccountCommand.ts b/clients/client-greengrassv2/src/commands/GetServiceRoleForAccountCommand.ts index 4f5a51ceaed39..ded90a753c8f4 100644 --- a/clients/client-greengrassv2/src/commands/GetServiceRoleForAccountCommand.ts +++ b/clients/client-greengrassv2/src/commands/GetServiceRoleForAccountCommand.ts @@ -60,6 +60,7 @@ export interface GetServiceRoleForAccountCommandOutput extends GetServiceRoleFor * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class GetServiceRoleForAccountCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.ts b/clients/client-greengrassv2/src/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.ts index b7716de05b1ed..e2d5e96355260 100644 --- a/clients/client-greengrassv2/src/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.ts @@ -90,6 +90,7 @@ export interface ListClientDevicesAssociatedWithCoreDeviceCommandOutput * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class ListClientDevicesAssociatedWithCoreDeviceCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/ListComponentVersionsCommand.ts b/clients/client-greengrassv2/src/commands/ListComponentVersionsCommand.ts index cf164e0c4692e..b27e74091a3c0 100644 --- a/clients/client-greengrassv2/src/commands/ListComponentVersionsCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListComponentVersionsCommand.ts @@ -82,6 +82,7 @@ export interface ListComponentVersionsCommandOutput extends ListComponentVersion * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class ListComponentVersionsCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/ListComponentsCommand.ts b/clients/client-greengrassv2/src/commands/ListComponentsCommand.ts index 692eae4b40549..608e120fec756 100644 --- a/clients/client-greengrassv2/src/commands/ListComponentsCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListComponentsCommand.ts @@ -96,6 +96,7 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class ListComponentsCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/ListCoreDevicesCommand.ts b/clients/client-greengrassv2/src/commands/ListCoreDevicesCommand.ts index 07d0471a6322e..9f4826cc71d0f 100644 --- a/clients/client-greengrassv2/src/commands/ListCoreDevicesCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListCoreDevicesCommand.ts @@ -115,6 +115,7 @@ export interface ListCoreDevicesCommandOutput extends ListCoreDevicesResponse, _ * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class ListCoreDevicesCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/ListDeploymentsCommand.ts b/clients/client-greengrassv2/src/commands/ListDeploymentsCommand.ts index 7b96f797c7517..95b9a3335e20a 100644 --- a/clients/client-greengrassv2/src/commands/ListDeploymentsCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListDeploymentsCommand.ts @@ -85,6 +85,7 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsResponse, _ * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class ListDeploymentsCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/ListEffectiveDeploymentsCommand.ts b/clients/client-greengrassv2/src/commands/ListEffectiveDeploymentsCommand.ts index 5d9ad8eed3fd5..416a35ae1d9f1 100644 --- a/clients/client-greengrassv2/src/commands/ListEffectiveDeploymentsCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListEffectiveDeploymentsCommand.ts @@ -96,6 +96,7 @@ export interface ListEffectiveDeploymentsCommandOutput extends ListEffectiveDepl * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class ListEffectiveDeploymentsCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/ListInstalledComponentsCommand.ts b/clients/client-greengrassv2/src/commands/ListInstalledComponentsCommand.ts index 1231747051073..7d555168b32a4 100644 --- a/clients/client-greengrassv2/src/commands/ListInstalledComponentsCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListInstalledComponentsCommand.ts @@ -120,6 +120,7 @@ export interface ListInstalledComponentsCommandOutput extends ListInstalledCompo * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class ListInstalledComponentsCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/ListTagsForResourceCommand.ts b/clients/client-greengrassv2/src/commands/ListTagsForResourceCommand.ts index 5778dc91c1df3..b8d90b1f1ab51 100644 --- a/clients/client-greengrassv2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/ResolveComponentCandidatesCommand.ts b/clients/client-greengrassv2/src/commands/ResolveComponentCandidatesCommand.ts index ccb5d800bfdd6..b2740006973fa 100644 --- a/clients/client-greengrassv2/src/commands/ResolveComponentCandidatesCommand.ts +++ b/clients/client-greengrassv2/src/commands/ResolveComponentCandidatesCommand.ts @@ -113,6 +113,7 @@ export interface ResolveComponentCandidatesCommandOutput extends ResolveComponen * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class ResolveComponentCandidatesCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/TagResourceCommand.ts b/clients/client-greengrassv2/src/commands/TagResourceCommand.ts index c4814d83acf44..0aa832a8a1fc5 100644 --- a/clients/client-greengrassv2/src/commands/TagResourceCommand.ts +++ b/clients/client-greengrassv2/src/commands/TagResourceCommand.ts @@ -67,6 +67,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/UntagResourceCommand.ts b/clients/client-greengrassv2/src/commands/UntagResourceCommand.ts index 7fa29180bbcfa..60f63d016c261 100644 --- a/clients/client-greengrassv2/src/commands/UntagResourceCommand.ts +++ b/clients/client-greengrassv2/src/commands/UntagResourceCommand.ts @@ -66,6 +66,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-greengrassv2/src/commands/UpdateConnectivityInfoCommand.ts b/clients/client-greengrassv2/src/commands/UpdateConnectivityInfoCommand.ts index d69cb196e8b28..20dd95ac58e8e 100644 --- a/clients/client-greengrassv2/src/commands/UpdateConnectivityInfoCommand.ts +++ b/clients/client-greengrassv2/src/commands/UpdateConnectivityInfoCommand.ts @@ -77,6 +77,7 @@ export interface UpdateConnectivityInfoCommandOutput extends UpdateConnectivityI * @throws {@link GreengrassV2ServiceException} *

Base exception class for all service exceptions from GreengrassV2 service.

* + * * @public */ export class UpdateConnectivityInfoCommand extends $Command diff --git a/clients/client-groundstation/src/commands/CancelContactCommand.ts b/clients/client-groundstation/src/commands/CancelContactCommand.ts index f81e955ea73e3..53a473cdfff30 100644 --- a/clients/client-groundstation/src/commands/CancelContactCommand.ts +++ b/clients/client-groundstation/src/commands/CancelContactCommand.ts @@ -64,6 +64,7 @@ export interface CancelContactCommandOutput extends ContactIdResponse, __Metadat * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class CancelContactCommand extends $Command diff --git a/clients/client-groundstation/src/commands/CreateConfigCommand.ts b/clients/client-groundstation/src/commands/CreateConfigCommand.ts index e36a85a7e8005..4fe743d99fe2d 100644 --- a/clients/client-groundstation/src/commands/CreateConfigCommand.ts +++ b/clients/client-groundstation/src/commands/CreateConfigCommand.ts @@ -137,6 +137,7 @@ export interface CreateConfigCommandOutput extends ConfigIdResponse, __MetadataB * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class CreateConfigCommand extends $Command diff --git a/clients/client-groundstation/src/commands/CreateDataflowEndpointGroupCommand.ts b/clients/client-groundstation/src/commands/CreateDataflowEndpointGroupCommand.ts index bb5d3b4a3b090..151db4a7b484c 100644 --- a/clients/client-groundstation/src/commands/CreateDataflowEndpointGroupCommand.ts +++ b/clients/client-groundstation/src/commands/CreateDataflowEndpointGroupCommand.ts @@ -123,6 +123,7 @@ export interface CreateDataflowEndpointGroupCommandOutput extends DataflowEndpoi * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class CreateDataflowEndpointGroupCommand extends $Command diff --git a/clients/client-groundstation/src/commands/CreateEphemerisCommand.ts b/clients/client-groundstation/src/commands/CreateEphemerisCommand.ts index c0f458bff7b7a..f36c82dc10902 100644 --- a/clients/client-groundstation/src/commands/CreateEphemerisCommand.ts +++ b/clients/client-groundstation/src/commands/CreateEphemerisCommand.ts @@ -99,6 +99,7 @@ export interface CreateEphemerisCommandOutput extends EphemerisIdResponse, __Met * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class CreateEphemerisCommand extends $Command diff --git a/clients/client-groundstation/src/commands/CreateMissionProfileCommand.ts b/clients/client-groundstation/src/commands/CreateMissionProfileCommand.ts index 45ca5ccd3ec19..4003ce73e25db 100644 --- a/clients/client-groundstation/src/commands/CreateMissionProfileCommand.ts +++ b/clients/client-groundstation/src/commands/CreateMissionProfileCommand.ts @@ -85,6 +85,7 @@ export interface CreateMissionProfileCommandOutput extends MissionProfileIdRespo * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class CreateMissionProfileCommand extends $Command diff --git a/clients/client-groundstation/src/commands/DeleteConfigCommand.ts b/clients/client-groundstation/src/commands/DeleteConfigCommand.ts index 2dbea9fdefca4..4ff2066e08950 100644 --- a/clients/client-groundstation/src/commands/DeleteConfigCommand.ts +++ b/clients/client-groundstation/src/commands/DeleteConfigCommand.ts @@ -67,6 +67,7 @@ export interface DeleteConfigCommandOutput extends ConfigIdResponse, __MetadataB * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class DeleteConfigCommand extends $Command diff --git a/clients/client-groundstation/src/commands/DeleteDataflowEndpointGroupCommand.ts b/clients/client-groundstation/src/commands/DeleteDataflowEndpointGroupCommand.ts index 35e330566dda4..3fed944b09e08 100644 --- a/clients/client-groundstation/src/commands/DeleteDataflowEndpointGroupCommand.ts +++ b/clients/client-groundstation/src/commands/DeleteDataflowEndpointGroupCommand.ts @@ -67,6 +67,7 @@ export interface DeleteDataflowEndpointGroupCommandOutput extends DataflowEndpoi * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class DeleteDataflowEndpointGroupCommand extends $Command diff --git a/clients/client-groundstation/src/commands/DeleteEphemerisCommand.ts b/clients/client-groundstation/src/commands/DeleteEphemerisCommand.ts index 43846b3f30ec5..da47d9e1f3d1d 100644 --- a/clients/client-groundstation/src/commands/DeleteEphemerisCommand.ts +++ b/clients/client-groundstation/src/commands/DeleteEphemerisCommand.ts @@ -64,6 +64,7 @@ export interface DeleteEphemerisCommandOutput extends EphemerisIdResponse, __Met * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class DeleteEphemerisCommand extends $Command diff --git a/clients/client-groundstation/src/commands/DeleteMissionProfileCommand.ts b/clients/client-groundstation/src/commands/DeleteMissionProfileCommand.ts index 85f1ac5fbfa57..7dd222613a171 100644 --- a/clients/client-groundstation/src/commands/DeleteMissionProfileCommand.ts +++ b/clients/client-groundstation/src/commands/DeleteMissionProfileCommand.ts @@ -64,6 +64,7 @@ export interface DeleteMissionProfileCommandOutput extends MissionProfileIdRespo * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class DeleteMissionProfileCommand extends $Command diff --git a/clients/client-groundstation/src/commands/DescribeContactCommand.ts b/clients/client-groundstation/src/commands/DescribeContactCommand.ts index a4e91a7071ace..5f4df807000e3 100644 --- a/clients/client-groundstation/src/commands/DescribeContactCommand.ts +++ b/clients/client-groundstation/src/commands/DescribeContactCommand.ts @@ -208,6 +208,7 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _ * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class DescribeContactCommand extends $Command diff --git a/clients/client-groundstation/src/commands/DescribeEphemerisCommand.ts b/clients/client-groundstation/src/commands/DescribeEphemerisCommand.ts index 07c65db264cef..954d8599f32a4 100644 --- a/clients/client-groundstation/src/commands/DescribeEphemerisCommand.ts +++ b/clients/client-groundstation/src/commands/DescribeEphemerisCommand.ts @@ -92,6 +92,7 @@ export interface DescribeEphemerisCommandOutput extends DescribeEphemerisRespons * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class DescribeEphemerisCommand extends $Command diff --git a/clients/client-groundstation/src/commands/GetAgentConfigurationCommand.ts b/clients/client-groundstation/src/commands/GetAgentConfigurationCommand.ts index 5b83a56a215c5..4c82080bd8a67 100644 --- a/clients/client-groundstation/src/commands/GetAgentConfigurationCommand.ts +++ b/clients/client-groundstation/src/commands/GetAgentConfigurationCommand.ts @@ -68,6 +68,7 @@ export interface GetAgentConfigurationCommandOutput extends GetAgentConfiguratio * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class GetAgentConfigurationCommand extends $Command diff --git a/clients/client-groundstation/src/commands/GetConfigCommand.ts b/clients/client-groundstation/src/commands/GetConfigCommand.ts index 8c416f8d1d4b3..23ebaec9b1c52 100644 --- a/clients/client-groundstation/src/commands/GetConfigCommand.ts +++ b/clients/client-groundstation/src/commands/GetConfigCommand.ts @@ -136,6 +136,7 @@ export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBea * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class GetConfigCommand extends $Command diff --git a/clients/client-groundstation/src/commands/GetDataflowEndpointGroupCommand.ts b/clients/client-groundstation/src/commands/GetDataflowEndpointGroupCommand.ts index 850c15236ddae..2067be1fcd1d6 100644 --- a/clients/client-groundstation/src/commands/GetDataflowEndpointGroupCommand.ts +++ b/clients/client-groundstation/src/commands/GetDataflowEndpointGroupCommand.ts @@ -118,6 +118,7 @@ export interface GetDataflowEndpointGroupCommandOutput extends GetDataflowEndpoi * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class GetDataflowEndpointGroupCommand extends $Command diff --git a/clients/client-groundstation/src/commands/GetMinuteUsageCommand.ts b/clients/client-groundstation/src/commands/GetMinuteUsageCommand.ts index 780a752ddcff8..96ec47ce97bc5 100644 --- a/clients/client-groundstation/src/commands/GetMinuteUsageCommand.ts +++ b/clients/client-groundstation/src/commands/GetMinuteUsageCommand.ts @@ -69,6 +69,7 @@ export interface GetMinuteUsageCommandOutput extends GetMinuteUsageResponse, __M * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class GetMinuteUsageCommand extends $Command diff --git a/clients/client-groundstation/src/commands/GetMissionProfileCommand.ts b/clients/client-groundstation/src/commands/GetMissionProfileCommand.ts index 2b043d22f1ebf..0f43809dc6e4e 100644 --- a/clients/client-groundstation/src/commands/GetMissionProfileCommand.ts +++ b/clients/client-groundstation/src/commands/GetMissionProfileCommand.ts @@ -85,6 +85,7 @@ export interface GetMissionProfileCommandOutput extends GetMissionProfileRespons * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class GetMissionProfileCommand extends $Command diff --git a/clients/client-groundstation/src/commands/GetSatelliteCommand.ts b/clients/client-groundstation/src/commands/GetSatelliteCommand.ts index c61f6a3fb5fb5..6205a8000f0a5 100644 --- a/clients/client-groundstation/src/commands/GetSatelliteCommand.ts +++ b/clients/client-groundstation/src/commands/GetSatelliteCommand.ts @@ -75,6 +75,7 @@ export interface GetSatelliteCommandOutput extends GetSatelliteResponse, __Metad * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class GetSatelliteCommand extends $Command diff --git a/clients/client-groundstation/src/commands/ListConfigsCommand.ts b/clients/client-groundstation/src/commands/ListConfigsCommand.ts index 261760d2a8657..6358b217fba1a 100644 --- a/clients/client-groundstation/src/commands/ListConfigsCommand.ts +++ b/clients/client-groundstation/src/commands/ListConfigsCommand.ts @@ -73,6 +73,7 @@ export interface ListConfigsCommandOutput extends ListConfigsResponse, __Metadat * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class ListConfigsCommand extends $Command diff --git a/clients/client-groundstation/src/commands/ListContactsCommand.ts b/clients/client-groundstation/src/commands/ListContactsCommand.ts index c99c7d0599d5e..cb0fccba28597 100644 --- a/clients/client-groundstation/src/commands/ListContactsCommand.ts +++ b/clients/client-groundstation/src/commands/ListContactsCommand.ts @@ -100,6 +100,7 @@ export interface ListContactsCommandOutput extends ListContactsResponse, __Metad * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class ListContactsCommand extends $Command diff --git a/clients/client-groundstation/src/commands/ListDataflowEndpointGroupsCommand.ts b/clients/client-groundstation/src/commands/ListDataflowEndpointGroupsCommand.ts index 535c869739d5c..22e085e7d11fa 100644 --- a/clients/client-groundstation/src/commands/ListDataflowEndpointGroupsCommand.ts +++ b/clients/client-groundstation/src/commands/ListDataflowEndpointGroupsCommand.ts @@ -71,6 +71,7 @@ export interface ListDataflowEndpointGroupsCommandOutput extends ListDataflowEnd * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class ListDataflowEndpointGroupsCommand extends $Command diff --git a/clients/client-groundstation/src/commands/ListEphemeridesCommand.ts b/clients/client-groundstation/src/commands/ListEphemeridesCommand.ts index be60342096538..16a7578271dbf 100644 --- a/clients/client-groundstation/src/commands/ListEphemeridesCommand.ts +++ b/clients/client-groundstation/src/commands/ListEphemeridesCommand.ts @@ -86,6 +86,7 @@ export interface ListEphemeridesCommandOutput extends ListEphemeridesResponse, _ * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class ListEphemeridesCommand extends $Command diff --git a/clients/client-groundstation/src/commands/ListGroundStationsCommand.ts b/clients/client-groundstation/src/commands/ListGroundStationsCommand.ts index 3ee7fc3a3b3cc..e05216e73ac79 100644 --- a/clients/client-groundstation/src/commands/ListGroundStationsCommand.ts +++ b/clients/client-groundstation/src/commands/ListGroundStationsCommand.ts @@ -73,6 +73,7 @@ export interface ListGroundStationsCommandOutput extends ListGroundStationsRespo * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class ListGroundStationsCommand extends $Command diff --git a/clients/client-groundstation/src/commands/ListMissionProfilesCommand.ts b/clients/client-groundstation/src/commands/ListMissionProfilesCommand.ts index c22761d95f7b9..36e3c2a73430d 100644 --- a/clients/client-groundstation/src/commands/ListMissionProfilesCommand.ts +++ b/clients/client-groundstation/src/commands/ListMissionProfilesCommand.ts @@ -73,6 +73,7 @@ export interface ListMissionProfilesCommandOutput extends ListMissionProfilesRes * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class ListMissionProfilesCommand extends $Command diff --git a/clients/client-groundstation/src/commands/ListSatellitesCommand.ts b/clients/client-groundstation/src/commands/ListSatellitesCommand.ts index 28e6bd31d8305..70753046c7569 100644 --- a/clients/client-groundstation/src/commands/ListSatellitesCommand.ts +++ b/clients/client-groundstation/src/commands/ListSatellitesCommand.ts @@ -81,6 +81,7 @@ export interface ListSatellitesCommandOutput extends ListSatellitesResponse, __M * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class ListSatellitesCommand extends $Command diff --git a/clients/client-groundstation/src/commands/ListTagsForResourceCommand.ts b/clients/client-groundstation/src/commands/ListTagsForResourceCommand.ts index 990f892774c82..888516873abe1 100644 --- a/clients/client-groundstation/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-groundstation/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-groundstation/src/commands/RegisterAgentCommand.ts b/clients/client-groundstation/src/commands/RegisterAgentCommand.ts index 10d5a0ecdbccd..f64233fe005e6 100644 --- a/clients/client-groundstation/src/commands/RegisterAgentCommand.ts +++ b/clients/client-groundstation/src/commands/RegisterAgentCommand.ts @@ -96,6 +96,7 @@ export interface RegisterAgentCommandOutput extends RegisterAgentResponse, __Met * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class RegisterAgentCommand extends $Command diff --git a/clients/client-groundstation/src/commands/ReserveContactCommand.ts b/clients/client-groundstation/src/commands/ReserveContactCommand.ts index 084fc07dedc6a..0925663edfaaf 100644 --- a/clients/client-groundstation/src/commands/ReserveContactCommand.ts +++ b/clients/client-groundstation/src/commands/ReserveContactCommand.ts @@ -71,6 +71,7 @@ export interface ReserveContactCommandOutput extends ContactIdResponse, __Metada * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class ReserveContactCommand extends $Command diff --git a/clients/client-groundstation/src/commands/TagResourceCommand.ts b/clients/client-groundstation/src/commands/TagResourceCommand.ts index 4b466b323ec18..9f7b53b9dc0fa 100644 --- a/clients/client-groundstation/src/commands/TagResourceCommand.ts +++ b/clients/client-groundstation/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-groundstation/src/commands/UntagResourceCommand.ts b/clients/client-groundstation/src/commands/UntagResourceCommand.ts index d428aad467a3a..e9c1e32ec32e0 100644 --- a/clients/client-groundstation/src/commands/UntagResourceCommand.ts +++ b/clients/client-groundstation/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-groundstation/src/commands/UpdateAgentStatusCommand.ts b/clients/client-groundstation/src/commands/UpdateAgentStatusCommand.ts index 22a3c49371fcc..061a57a3c0748 100644 --- a/clients/client-groundstation/src/commands/UpdateAgentStatusCommand.ts +++ b/clients/client-groundstation/src/commands/UpdateAgentStatusCommand.ts @@ -85,6 +85,7 @@ export interface UpdateAgentStatusCommandOutput extends UpdateAgentStatusRespons * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class UpdateAgentStatusCommand extends $Command diff --git a/clients/client-groundstation/src/commands/UpdateConfigCommand.ts b/clients/client-groundstation/src/commands/UpdateConfigCommand.ts index 73b509b5db236..9f86f3825add6 100644 --- a/clients/client-groundstation/src/commands/UpdateConfigCommand.ts +++ b/clients/client-groundstation/src/commands/UpdateConfigCommand.ts @@ -134,6 +134,7 @@ export interface UpdateConfigCommandOutput extends ConfigIdResponse, __MetadataB * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class UpdateConfigCommand extends $Command diff --git a/clients/client-groundstation/src/commands/UpdateEphemerisCommand.ts b/clients/client-groundstation/src/commands/UpdateEphemerisCommand.ts index 40a9165b68aea..b8928bc7647a0 100644 --- a/clients/client-groundstation/src/commands/UpdateEphemerisCommand.ts +++ b/clients/client-groundstation/src/commands/UpdateEphemerisCommand.ts @@ -67,6 +67,7 @@ export interface UpdateEphemerisCommandOutput extends EphemerisIdResponse, __Met * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class UpdateEphemerisCommand extends $Command diff --git a/clients/client-groundstation/src/commands/UpdateMissionProfileCommand.ts b/clients/client-groundstation/src/commands/UpdateMissionProfileCommand.ts index 5c927f04ae023..e3eba12443e77 100644 --- a/clients/client-groundstation/src/commands/UpdateMissionProfileCommand.ts +++ b/clients/client-groundstation/src/commands/UpdateMissionProfileCommand.ts @@ -82,6 +82,7 @@ export interface UpdateMissionProfileCommandOutput extends MissionProfileIdRespo * @throws {@link GroundStationServiceException} *

Base exception class for all service exceptions from GroundStation service.

* + * * @public */ export class UpdateMissionProfileCommand extends $Command diff --git a/clients/client-guardduty/src/commands/AcceptAdministratorInvitationCommand.ts b/clients/client-guardduty/src/commands/AcceptAdministratorInvitationCommand.ts index f61cf44b0b9a7..eb3dd3e62dd14 100644 --- a/clients/client-guardduty/src/commands/AcceptAdministratorInvitationCommand.ts +++ b/clients/client-guardduty/src/commands/AcceptAdministratorInvitationCommand.ts @@ -67,6 +67,7 @@ export interface AcceptAdministratorInvitationCommandOutput * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class AcceptAdministratorInvitationCommand extends $Command diff --git a/clients/client-guardduty/src/commands/AcceptInvitationCommand.ts b/clients/client-guardduty/src/commands/AcceptInvitationCommand.ts index ae23aa699a7bc..2149979efb887 100644 --- a/clients/client-guardduty/src/commands/AcceptInvitationCommand.ts +++ b/clients/client-guardduty/src/commands/AcceptInvitationCommand.ts @@ -63,6 +63,7 @@ export interface AcceptInvitationCommandOutput extends AcceptInvitationResponse, * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class AcceptInvitationCommand extends $Command diff --git a/clients/client-guardduty/src/commands/ArchiveFindingsCommand.ts b/clients/client-guardduty/src/commands/ArchiveFindingsCommand.ts index 4edc724e58f47..26bb7b30139fe 100644 --- a/clients/client-guardduty/src/commands/ArchiveFindingsCommand.ts +++ b/clients/client-guardduty/src/commands/ArchiveFindingsCommand.ts @@ -66,6 +66,7 @@ export interface ArchiveFindingsCommandOutput extends ArchiveFindingsResponse, _ * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class ArchiveFindingsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/CreateDetectorCommand.ts b/clients/client-guardduty/src/commands/CreateDetectorCommand.ts index 8bdf1d4b3e2ba..46984b010ca23 100644 --- a/clients/client-guardduty/src/commands/CreateDetectorCommand.ts +++ b/clients/client-guardduty/src/commands/CreateDetectorCommand.ts @@ -126,6 +126,7 @@ export interface CreateDetectorCommandOutput extends CreateDetectorResponse, __M * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class CreateDetectorCommand extends $Command diff --git a/clients/client-guardduty/src/commands/CreateFilterCommand.ts b/clients/client-guardduty/src/commands/CreateFilterCommand.ts index 234361261f2f6..115ca808b26da 100644 --- a/clients/client-guardduty/src/commands/CreateFilterCommand.ts +++ b/clients/client-guardduty/src/commands/CreateFilterCommand.ts @@ -96,6 +96,7 @@ export interface CreateFilterCommandOutput extends CreateFilterResponse, __Metad * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class CreateFilterCommand extends $Command diff --git a/clients/client-guardduty/src/commands/CreateIPSetCommand.ts b/clients/client-guardduty/src/commands/CreateIPSetCommand.ts index 2544a0d0993d6..dd88899bbf02e 100644 --- a/clients/client-guardduty/src/commands/CreateIPSetCommand.ts +++ b/clients/client-guardduty/src/commands/CreateIPSetCommand.ts @@ -72,6 +72,7 @@ export interface CreateIPSetCommandOutput extends CreateIPSetResponse, __Metadat * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class CreateIPSetCommand extends $Command diff --git a/clients/client-guardduty/src/commands/CreateMalwareProtectionPlanCommand.ts b/clients/client-guardduty/src/commands/CreateMalwareProtectionPlanCommand.ts index dc778f4ad7309..eebccb4e8f5f8 100644 --- a/clients/client-guardduty/src/commands/CreateMalwareProtectionPlanCommand.ts +++ b/clients/client-guardduty/src/commands/CreateMalwareProtectionPlanCommand.ts @@ -91,6 +91,7 @@ export interface CreateMalwareProtectionPlanCommandOutput * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class CreateMalwareProtectionPlanCommand extends $Command diff --git a/clients/client-guardduty/src/commands/CreateMembersCommand.ts b/clients/client-guardduty/src/commands/CreateMembersCommand.ts index 710ee6fbf704a..b10ad51529f59 100644 --- a/clients/client-guardduty/src/commands/CreateMembersCommand.ts +++ b/clients/client-guardduty/src/commands/CreateMembersCommand.ts @@ -95,6 +95,7 @@ export interface CreateMembersCommandOutput extends CreateMembersResponse, __Met * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class CreateMembersCommand extends $Command diff --git a/clients/client-guardduty/src/commands/CreatePublishingDestinationCommand.ts b/clients/client-guardduty/src/commands/CreatePublishingDestinationCommand.ts index 5fe1f106513c9..69f68f8a84904 100644 --- a/clients/client-guardduty/src/commands/CreatePublishingDestinationCommand.ts +++ b/clients/client-guardduty/src/commands/CreatePublishingDestinationCommand.ts @@ -73,6 +73,7 @@ export interface CreatePublishingDestinationCommandOutput * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class CreatePublishingDestinationCommand extends $Command diff --git a/clients/client-guardduty/src/commands/CreateSampleFindingsCommand.ts b/clients/client-guardduty/src/commands/CreateSampleFindingsCommand.ts index f6ee427c6d141..cf91aa23e518d 100644 --- a/clients/client-guardduty/src/commands/CreateSampleFindingsCommand.ts +++ b/clients/client-guardduty/src/commands/CreateSampleFindingsCommand.ts @@ -64,6 +64,7 @@ export interface CreateSampleFindingsCommandOutput extends CreateSampleFindingsR * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class CreateSampleFindingsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/CreateThreatIntelSetCommand.ts b/clients/client-guardduty/src/commands/CreateThreatIntelSetCommand.ts index 1c32dece43c07..6a6ea68d94800 100644 --- a/clients/client-guardduty/src/commands/CreateThreatIntelSetCommand.ts +++ b/clients/client-guardduty/src/commands/CreateThreatIntelSetCommand.ts @@ -71,6 +71,7 @@ export interface CreateThreatIntelSetCommandOutput extends CreateThreatIntelSetR * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class CreateThreatIntelSetCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DeclineInvitationsCommand.ts b/clients/client-guardduty/src/commands/DeclineInvitationsCommand.ts index c8a9216b0bfaa..5daee6d36ee1c 100644 --- a/clients/client-guardduty/src/commands/DeclineInvitationsCommand.ts +++ b/clients/client-guardduty/src/commands/DeclineInvitationsCommand.ts @@ -69,6 +69,7 @@ export interface DeclineInvitationsCommandOutput extends DeclineInvitationsRespo * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DeclineInvitationsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DeleteDetectorCommand.ts b/clients/client-guardduty/src/commands/DeleteDetectorCommand.ts index 1cc4108cd54ae..a82bd41315623 100644 --- a/clients/client-guardduty/src/commands/DeleteDetectorCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteDetectorCommand.ts @@ -59,6 +59,7 @@ export interface DeleteDetectorCommandOutput extends DeleteDetectorResponse, __M * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DeleteDetectorCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DeleteFilterCommand.ts b/clients/client-guardduty/src/commands/DeleteFilterCommand.ts index bffc560e8d93f..8d6a9f629b39d 100644 --- a/clients/client-guardduty/src/commands/DeleteFilterCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteFilterCommand.ts @@ -60,6 +60,7 @@ export interface DeleteFilterCommandOutput extends DeleteFilterResponse, __Metad * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DeleteFilterCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DeleteIPSetCommand.ts b/clients/client-guardduty/src/commands/DeleteIPSetCommand.ts index 1e374f39277a6..499ca3cb56301 100644 --- a/clients/client-guardduty/src/commands/DeleteIPSetCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteIPSetCommand.ts @@ -61,6 +61,7 @@ export interface DeleteIPSetCommandOutput extends DeleteIPSetResponse, __Metadat * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DeleteIPSetCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DeleteInvitationsCommand.ts b/clients/client-guardduty/src/commands/DeleteInvitationsCommand.ts index 39f9ecb59f507..53b4710530409 100644 --- a/clients/client-guardduty/src/commands/DeleteInvitationsCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteInvitationsCommand.ts @@ -69,6 +69,7 @@ export interface DeleteInvitationsCommandOutput extends DeleteInvitationsRespons * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DeleteInvitationsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DeleteMalwareProtectionPlanCommand.ts b/clients/client-guardduty/src/commands/DeleteMalwareProtectionPlanCommand.ts index 730e922f82ed4..da195e15fbe18 100644 --- a/clients/client-guardduty/src/commands/DeleteMalwareProtectionPlanCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteMalwareProtectionPlanCommand.ts @@ -70,6 +70,7 @@ export interface DeleteMalwareProtectionPlanCommandOutput extends __MetadataBear * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DeleteMalwareProtectionPlanCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DeleteMembersCommand.ts b/clients/client-guardduty/src/commands/DeleteMembersCommand.ts index 515bf75f146c5..990d9735a4f4e 100644 --- a/clients/client-guardduty/src/commands/DeleteMembersCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteMembersCommand.ts @@ -73,6 +73,7 @@ export interface DeleteMembersCommandOutput extends DeleteMembersResponse, __Met * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DeleteMembersCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DeletePublishingDestinationCommand.ts b/clients/client-guardduty/src/commands/DeletePublishingDestinationCommand.ts index a4a2e7e08a780..3e61aa92446cf 100644 --- a/clients/client-guardduty/src/commands/DeletePublishingDestinationCommand.ts +++ b/clients/client-guardduty/src/commands/DeletePublishingDestinationCommand.ts @@ -65,6 +65,7 @@ export interface DeletePublishingDestinationCommandOutput * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DeletePublishingDestinationCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DeleteThreatIntelSetCommand.ts b/clients/client-guardduty/src/commands/DeleteThreatIntelSetCommand.ts index a420a79d390b3..7def370515b48 100644 --- a/clients/client-guardduty/src/commands/DeleteThreatIntelSetCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteThreatIntelSetCommand.ts @@ -60,6 +60,7 @@ export interface DeleteThreatIntelSetCommandOutput extends DeleteThreatIntelSetR * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DeleteThreatIntelSetCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DescribeMalwareScansCommand.ts b/clients/client-guardduty/src/commands/DescribeMalwareScansCommand.ts index 3af63ee3cf4b3..1f18c5b59b46a 100644 --- a/clients/client-guardduty/src/commands/DescribeMalwareScansCommand.ts +++ b/clients/client-guardduty/src/commands/DescribeMalwareScansCommand.ts @@ -119,6 +119,7 @@ export interface DescribeMalwareScansCommandOutput extends DescribeMalwareScansR * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DescribeMalwareScansCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DescribeOrganizationConfigurationCommand.ts b/clients/client-guardduty/src/commands/DescribeOrganizationConfigurationCommand.ts index 99eed03b4f2f6..14e701e15e1df 100644 --- a/clients/client-guardduty/src/commands/DescribeOrganizationConfigurationCommand.ts +++ b/clients/client-guardduty/src/commands/DescribeOrganizationConfigurationCommand.ts @@ -107,6 +107,7 @@ export interface DescribeOrganizationConfigurationCommandOutput * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DescribeOrganizationConfigurationCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DescribePublishingDestinationCommand.ts b/clients/client-guardduty/src/commands/DescribePublishingDestinationCommand.ts index 0e6a7cfe7841d..81b3cc856ce18 100644 --- a/clients/client-guardduty/src/commands/DescribePublishingDestinationCommand.ts +++ b/clients/client-guardduty/src/commands/DescribePublishingDestinationCommand.ts @@ -75,6 +75,7 @@ export interface DescribePublishingDestinationCommandOutput * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DescribePublishingDestinationCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DisableOrganizationAdminAccountCommand.ts b/clients/client-guardduty/src/commands/DisableOrganizationAdminAccountCommand.ts index 8029dd3919fa4..f351c01883756 100644 --- a/clients/client-guardduty/src/commands/DisableOrganizationAdminAccountCommand.ts +++ b/clients/client-guardduty/src/commands/DisableOrganizationAdminAccountCommand.ts @@ -66,6 +66,7 @@ export interface DisableOrganizationAdminAccountCommandOutput * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DisableOrganizationAdminAccountCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DisassociateFromAdministratorAccountCommand.ts b/clients/client-guardduty/src/commands/DisassociateFromAdministratorAccountCommand.ts index d86ecd35e9ae0..95d740db0394d 100644 --- a/clients/client-guardduty/src/commands/DisassociateFromAdministratorAccountCommand.ts +++ b/clients/client-guardduty/src/commands/DisassociateFromAdministratorAccountCommand.ts @@ -76,6 +76,7 @@ export interface DisassociateFromAdministratorAccountCommandOutput * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DisassociateFromAdministratorAccountCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DisassociateFromMasterAccountCommand.ts b/clients/client-guardduty/src/commands/DisassociateFromMasterAccountCommand.ts index 6c2e9a87b7ab5..9b2e9e738087f 100644 --- a/clients/client-guardduty/src/commands/DisassociateFromMasterAccountCommand.ts +++ b/clients/client-guardduty/src/commands/DisassociateFromMasterAccountCommand.ts @@ -72,6 +72,7 @@ export interface DisassociateFromMasterAccountCommandOutput * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DisassociateFromMasterAccountCommand extends $Command diff --git a/clients/client-guardduty/src/commands/DisassociateMembersCommand.ts b/clients/client-guardduty/src/commands/DisassociateMembersCommand.ts index 384a17be89fe1..0a6f1efcc684c 100644 --- a/clients/client-guardduty/src/commands/DisassociateMembersCommand.ts +++ b/clients/client-guardduty/src/commands/DisassociateMembersCommand.ts @@ -87,6 +87,7 @@ export interface DisassociateMembersCommandOutput extends DisassociateMembersRes * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class DisassociateMembersCommand extends $Command diff --git a/clients/client-guardduty/src/commands/EnableOrganizationAdminAccountCommand.ts b/clients/client-guardduty/src/commands/EnableOrganizationAdminAccountCommand.ts index dbaf6d5d8f958..2f5db33ebb421 100644 --- a/clients/client-guardduty/src/commands/EnableOrganizationAdminAccountCommand.ts +++ b/clients/client-guardduty/src/commands/EnableOrganizationAdminAccountCommand.ts @@ -66,6 +66,7 @@ export interface EnableOrganizationAdminAccountCommandOutput * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class EnableOrganizationAdminAccountCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetAdministratorAccountCommand.ts b/clients/client-guardduty/src/commands/GetAdministratorAccountCommand.ts index db0916cfdd35b..cc741ac15153c 100644 --- a/clients/client-guardduty/src/commands/GetAdministratorAccountCommand.ts +++ b/clients/client-guardduty/src/commands/GetAdministratorAccountCommand.ts @@ -71,6 +71,7 @@ export interface GetAdministratorAccountCommandOutput extends GetAdministratorAc * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetAdministratorAccountCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetCoverageStatisticsCommand.ts b/clients/client-guardduty/src/commands/GetCoverageStatisticsCommand.ts index 3d62a5b88b788..ff287b13629b2 100644 --- a/clients/client-guardduty/src/commands/GetCoverageStatisticsCommand.ts +++ b/clients/client-guardduty/src/commands/GetCoverageStatisticsCommand.ts @@ -89,6 +89,7 @@ export interface GetCoverageStatisticsCommandOutput extends GetCoverageStatistic * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetCoverageStatisticsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetDetectorCommand.ts b/clients/client-guardduty/src/commands/GetDetectorCommand.ts index aceacfb0a06c9..8163094b54f97 100644 --- a/clients/client-guardduty/src/commands/GetDetectorCommand.ts +++ b/clients/client-guardduty/src/commands/GetDetectorCommand.ts @@ -113,6 +113,7 @@ export interface GetDetectorCommandOutput extends GetDetectorResponse, __Metadat * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetDetectorCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetFilterCommand.ts b/clients/client-guardduty/src/commands/GetFilterCommand.ts index 4739588f9aee8..031ae32671cf6 100644 --- a/clients/client-guardduty/src/commands/GetFilterCommand.ts +++ b/clients/client-guardduty/src/commands/GetFilterCommand.ts @@ -94,6 +94,7 @@ export interface GetFilterCommandOutput extends GetFilterResponse, __MetadataBea * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetFilterCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetFindingsCommand.ts b/clients/client-guardduty/src/commands/GetFindingsCommand.ts index 20ab4b6e5a202..8d0d19bc2efc7 100644 --- a/clients/client-guardduty/src/commands/GetFindingsCommand.ts +++ b/clients/client-guardduty/src/commands/GetFindingsCommand.ts @@ -1026,6 +1026,7 @@ export interface GetFindingsCommandOutput extends GetFindingsResponse, __Metadat * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetFindingsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetFindingsStatisticsCommand.ts b/clients/client-guardduty/src/commands/GetFindingsStatisticsCommand.ts index 4484d83430818..d3d74e9855663 100644 --- a/clients/client-guardduty/src/commands/GetFindingsStatisticsCommand.ts +++ b/clients/client-guardduty/src/commands/GetFindingsStatisticsCommand.ts @@ -141,6 +141,7 @@ export interface GetFindingsStatisticsCommandOutput extends GetFindingsStatistic * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetFindingsStatisticsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetIPSetCommand.ts b/clients/client-guardduty/src/commands/GetIPSetCommand.ts index ff8439b16d3f0..59e99fb47876b 100644 --- a/clients/client-guardduty/src/commands/GetIPSetCommand.ts +++ b/clients/client-guardduty/src/commands/GetIPSetCommand.ts @@ -68,6 +68,7 @@ export interface GetIPSetCommandOutput extends GetIPSetResponse, __MetadataBeare * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetIPSetCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetInvitationsCountCommand.ts b/clients/client-guardduty/src/commands/GetInvitationsCountCommand.ts index 7f43d29125369..0dbe7a8388ecd 100644 --- a/clients/client-guardduty/src/commands/GetInvitationsCountCommand.ts +++ b/clients/client-guardduty/src/commands/GetInvitationsCountCommand.ts @@ -60,6 +60,7 @@ export interface GetInvitationsCountCommandOutput extends GetInvitationsCountRes * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetInvitationsCountCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetMalwareProtectionPlanCommand.ts b/clients/client-guardduty/src/commands/GetMalwareProtectionPlanCommand.ts index 4df5db0238a87..05e8b9634cb80 100644 --- a/clients/client-guardduty/src/commands/GetMalwareProtectionPlanCommand.ts +++ b/clients/client-guardduty/src/commands/GetMalwareProtectionPlanCommand.ts @@ -93,6 +93,7 @@ export interface GetMalwareProtectionPlanCommandOutput extends GetMalwareProtect * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetMalwareProtectionPlanCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetMalwareScanSettingsCommand.ts b/clients/client-guardduty/src/commands/GetMalwareScanSettingsCommand.ts index df76591095588..e15fd848142e6 100644 --- a/clients/client-guardduty/src/commands/GetMalwareScanSettingsCommand.ts +++ b/clients/client-guardduty/src/commands/GetMalwareScanSettingsCommand.ts @@ -86,6 +86,7 @@ export interface GetMalwareScanSettingsCommandOutput extends GetMalwareScanSetti * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetMalwareScanSettingsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetMasterAccountCommand.ts b/clients/client-guardduty/src/commands/GetMasterAccountCommand.ts index ccee51acadc94..c0b06539d761f 100644 --- a/clients/client-guardduty/src/commands/GetMasterAccountCommand.ts +++ b/clients/client-guardduty/src/commands/GetMasterAccountCommand.ts @@ -69,6 +69,7 @@ export interface GetMasterAccountCommandOutput extends GetMasterAccountResponse, * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetMasterAccountCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetMemberDetectorsCommand.ts b/clients/client-guardduty/src/commands/GetMemberDetectorsCommand.ts index 7aed214c94d66..4a8c8cf38db97 100644 --- a/clients/client-guardduty/src/commands/GetMemberDetectorsCommand.ts +++ b/clients/client-guardduty/src/commands/GetMemberDetectorsCommand.ts @@ -119,6 +119,7 @@ export interface GetMemberDetectorsCommandOutput extends GetMemberDetectorsRespo * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetMemberDetectorsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetMembersCommand.ts b/clients/client-guardduty/src/commands/GetMembersCommand.ts index efae44f0267a0..6d76e261ab8cc 100644 --- a/clients/client-guardduty/src/commands/GetMembersCommand.ts +++ b/clients/client-guardduty/src/commands/GetMembersCommand.ts @@ -82,6 +82,7 @@ export interface GetMembersCommandOutput extends GetMembersResponse, __MetadataB * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetMembersCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetOrganizationStatisticsCommand.ts b/clients/client-guardduty/src/commands/GetOrganizationStatisticsCommand.ts index fe72c7576fcc4..8a7a5659340f3 100644 --- a/clients/client-guardduty/src/commands/GetOrganizationStatisticsCommand.ts +++ b/clients/client-guardduty/src/commands/GetOrganizationStatisticsCommand.ts @@ -82,6 +82,7 @@ export interface GetOrganizationStatisticsCommandOutput extends GetOrganizationS * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetOrganizationStatisticsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetRemainingFreeTrialDaysCommand.ts b/clients/client-guardduty/src/commands/GetRemainingFreeTrialDaysCommand.ts index b923bb2d353ae..37ad8ec2ff98b 100644 --- a/clients/client-guardduty/src/commands/GetRemainingFreeTrialDaysCommand.ts +++ b/clients/client-guardduty/src/commands/GetRemainingFreeTrialDaysCommand.ts @@ -103,6 +103,7 @@ export interface GetRemainingFreeTrialDaysCommandOutput extends GetRemainingFree * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetRemainingFreeTrialDaysCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetThreatIntelSetCommand.ts b/clients/client-guardduty/src/commands/GetThreatIntelSetCommand.ts index 2739627af587e..dfa220e7ccc28 100644 --- a/clients/client-guardduty/src/commands/GetThreatIntelSetCommand.ts +++ b/clients/client-guardduty/src/commands/GetThreatIntelSetCommand.ts @@ -68,6 +68,7 @@ export interface GetThreatIntelSetCommandOutput extends GetThreatIntelSetRespons * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetThreatIntelSetCommand extends $Command diff --git a/clients/client-guardduty/src/commands/GetUsageStatisticsCommand.ts b/clients/client-guardduty/src/commands/GetUsageStatisticsCommand.ts index ce8df464d0fd7..bd80ff803dd61 100644 --- a/clients/client-guardduty/src/commands/GetUsageStatisticsCommand.ts +++ b/clients/client-guardduty/src/commands/GetUsageStatisticsCommand.ts @@ -140,6 +140,7 @@ export interface GetUsageStatisticsCommandOutput extends GetUsageStatisticsRespo * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class GetUsageStatisticsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/InviteMembersCommand.ts b/clients/client-guardduty/src/commands/InviteMembersCommand.ts index fe92fa68e0e71..5dfa62daa3edc 100644 --- a/clients/client-guardduty/src/commands/InviteMembersCommand.ts +++ b/clients/client-guardduty/src/commands/InviteMembersCommand.ts @@ -96,6 +96,7 @@ export interface InviteMembersCommandOutput extends InviteMembersResponse, __Met * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class InviteMembersCommand extends $Command diff --git a/clients/client-guardduty/src/commands/ListCoverageCommand.ts b/clients/client-guardduty/src/commands/ListCoverageCommand.ts index 1d935be30fc26..22c016f878b3b 100644 --- a/clients/client-guardduty/src/commands/ListCoverageCommand.ts +++ b/clients/client-guardduty/src/commands/ListCoverageCommand.ts @@ -130,6 +130,7 @@ export interface ListCoverageCommandOutput extends ListCoverageResponse, __Metad * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class ListCoverageCommand extends $Command diff --git a/clients/client-guardduty/src/commands/ListDetectorsCommand.ts b/clients/client-guardduty/src/commands/ListDetectorsCommand.ts index 8211e2e63542c..1af684268a8ad 100644 --- a/clients/client-guardduty/src/commands/ListDetectorsCommand.ts +++ b/clients/client-guardduty/src/commands/ListDetectorsCommand.ts @@ -65,6 +65,7 @@ export interface ListDetectorsCommandOutput extends ListDetectorsResponse, __Met * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class ListDetectorsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/ListFiltersCommand.ts b/clients/client-guardduty/src/commands/ListFiltersCommand.ts index 3c059ece8fd0f..e967175a5d0bf 100644 --- a/clients/client-guardduty/src/commands/ListFiltersCommand.ts +++ b/clients/client-guardduty/src/commands/ListFiltersCommand.ts @@ -66,6 +66,7 @@ export interface ListFiltersCommandOutput extends ListFiltersResponse, __Metadat * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class ListFiltersCommand extends $Command diff --git a/clients/client-guardduty/src/commands/ListFindingsCommand.ts b/clients/client-guardduty/src/commands/ListFindingsCommand.ts index e4ff213692f9f..e28aec3976b55 100644 --- a/clients/client-guardduty/src/commands/ListFindingsCommand.ts +++ b/clients/client-guardduty/src/commands/ListFindingsCommand.ts @@ -98,6 +98,7 @@ export interface ListFindingsCommandOutput extends ListFindingsResponse, __Metad * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class ListFindingsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/ListIPSetsCommand.ts b/clients/client-guardduty/src/commands/ListIPSetsCommand.ts index 8f2562334e9f0..b981eaa547c1a 100644 --- a/clients/client-guardduty/src/commands/ListIPSetsCommand.ts +++ b/clients/client-guardduty/src/commands/ListIPSetsCommand.ts @@ -68,6 +68,7 @@ export interface ListIPSetsCommandOutput extends ListIPSetsResponse, __MetadataB * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class ListIPSetsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/ListInvitationsCommand.ts b/clients/client-guardduty/src/commands/ListInvitationsCommand.ts index f9c8f5152f862..316c418ef314d 100644 --- a/clients/client-guardduty/src/commands/ListInvitationsCommand.ts +++ b/clients/client-guardduty/src/commands/ListInvitationsCommand.ts @@ -71,6 +71,7 @@ export interface ListInvitationsCommandOutput extends ListInvitationsResponse, _ * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class ListInvitationsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/ListMalwareProtectionPlansCommand.ts b/clients/client-guardduty/src/commands/ListMalwareProtectionPlansCommand.ts index c2050d7803c13..7991ebbb6d0e9 100644 --- a/clients/client-guardduty/src/commands/ListMalwareProtectionPlansCommand.ts +++ b/clients/client-guardduty/src/commands/ListMalwareProtectionPlansCommand.ts @@ -70,6 +70,7 @@ export interface ListMalwareProtectionPlansCommandOutput extends ListMalwareProt * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class ListMalwareProtectionPlansCommand extends $Command diff --git a/clients/client-guardduty/src/commands/ListMembersCommand.ts b/clients/client-guardduty/src/commands/ListMembersCommand.ts index 923c6076e9d7f..e5bd70f8634f8 100644 --- a/clients/client-guardduty/src/commands/ListMembersCommand.ts +++ b/clients/client-guardduty/src/commands/ListMembersCommand.ts @@ -77,6 +77,7 @@ export interface ListMembersCommandOutput extends ListMembersResponse, __Metadat * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class ListMembersCommand extends $Command diff --git a/clients/client-guardduty/src/commands/ListOrganizationAdminAccountsCommand.ts b/clients/client-guardduty/src/commands/ListOrganizationAdminAccountsCommand.ts index 9ae18fde86398..bef1dd2225401 100644 --- a/clients/client-guardduty/src/commands/ListOrganizationAdminAccountsCommand.ts +++ b/clients/client-guardduty/src/commands/ListOrganizationAdminAccountsCommand.ts @@ -75,6 +75,7 @@ export interface ListOrganizationAdminAccountsCommandOutput * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class ListOrganizationAdminAccountsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/ListPublishingDestinationsCommand.ts b/clients/client-guardduty/src/commands/ListPublishingDestinationsCommand.ts index 4248971ef766b..cd3a4fda8c0c9 100644 --- a/clients/client-guardduty/src/commands/ListPublishingDestinationsCommand.ts +++ b/clients/client-guardduty/src/commands/ListPublishingDestinationsCommand.ts @@ -71,6 +71,7 @@ export interface ListPublishingDestinationsCommandOutput extends ListPublishingD * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class ListPublishingDestinationsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/ListTagsForResourceCommand.ts b/clients/client-guardduty/src/commands/ListTagsForResourceCommand.ts index 394584a47cc99..2de8b5bc103f3 100644 --- a/clients/client-guardduty/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-guardduty/src/commands/ListTagsForResourceCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-guardduty/src/commands/ListThreatIntelSetsCommand.ts b/clients/client-guardduty/src/commands/ListThreatIntelSetsCommand.ts index e42d96d5336a0..e7f054fc683ee 100644 --- a/clients/client-guardduty/src/commands/ListThreatIntelSetsCommand.ts +++ b/clients/client-guardduty/src/commands/ListThreatIntelSetsCommand.ts @@ -68,6 +68,7 @@ export interface ListThreatIntelSetsCommandOutput extends ListThreatIntelSetsRes * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class ListThreatIntelSetsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/StartMalwareScanCommand.ts b/clients/client-guardduty/src/commands/StartMalwareScanCommand.ts index 16f9a53d5e996..79a5368fd5c09 100644 --- a/clients/client-guardduty/src/commands/StartMalwareScanCommand.ts +++ b/clients/client-guardduty/src/commands/StartMalwareScanCommand.ts @@ -67,6 +67,7 @@ export interface StartMalwareScanCommandOutput extends StartMalwareScanResponse, * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class StartMalwareScanCommand extends $Command diff --git a/clients/client-guardduty/src/commands/StartMonitoringMembersCommand.ts b/clients/client-guardduty/src/commands/StartMonitoringMembersCommand.ts index 6fba6c9624d6a..600aec86f9155 100644 --- a/clients/client-guardduty/src/commands/StartMonitoringMembersCommand.ts +++ b/clients/client-guardduty/src/commands/StartMonitoringMembersCommand.ts @@ -70,6 +70,7 @@ export interface StartMonitoringMembersCommandOutput extends StartMonitoringMemb * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class StartMonitoringMembersCommand extends $Command diff --git a/clients/client-guardduty/src/commands/StopMonitoringMembersCommand.ts b/clients/client-guardduty/src/commands/StopMonitoringMembersCommand.ts index aab8f691b496d..07cf651749fac 100644 --- a/clients/client-guardduty/src/commands/StopMonitoringMembersCommand.ts +++ b/clients/client-guardduty/src/commands/StopMonitoringMembersCommand.ts @@ -74,6 +74,7 @@ export interface StopMonitoringMembersCommandOutput extends StopMonitoringMember * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class StopMonitoringMembersCommand extends $Command diff --git a/clients/client-guardduty/src/commands/TagResourceCommand.ts b/clients/client-guardduty/src/commands/TagResourceCommand.ts index 9c98c97959048..ba2046de95879 100644 --- a/clients/client-guardduty/src/commands/TagResourceCommand.ts +++ b/clients/client-guardduty/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-guardduty/src/commands/UnarchiveFindingsCommand.ts b/clients/client-guardduty/src/commands/UnarchiveFindingsCommand.ts index f4555c12e74bd..bda0ddc095f7f 100644 --- a/clients/client-guardduty/src/commands/UnarchiveFindingsCommand.ts +++ b/clients/client-guardduty/src/commands/UnarchiveFindingsCommand.ts @@ -62,6 +62,7 @@ export interface UnarchiveFindingsCommandOutput extends UnarchiveFindingsRespons * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class UnarchiveFindingsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/UntagResourceCommand.ts b/clients/client-guardduty/src/commands/UntagResourceCommand.ts index d8ff739e68778..18cc5d13f0d17 100644 --- a/clients/client-guardduty/src/commands/UntagResourceCommand.ts +++ b/clients/client-guardduty/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-guardduty/src/commands/UpdateDetectorCommand.ts b/clients/client-guardduty/src/commands/UpdateDetectorCommand.ts index a2ad4627787be..099f7650ac3fc 100644 --- a/clients/client-guardduty/src/commands/UpdateDetectorCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateDetectorCommand.ts @@ -96,6 +96,7 @@ export interface UpdateDetectorCommandOutput extends UpdateDetectorResponse, __M * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class UpdateDetectorCommand extends $Command diff --git a/clients/client-guardduty/src/commands/UpdateFilterCommand.ts b/clients/client-guardduty/src/commands/UpdateFilterCommand.ts index e9b492adb5d9f..43ea22b6e781d 100644 --- a/clients/client-guardduty/src/commands/UpdateFilterCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateFilterCommand.ts @@ -91,6 +91,7 @@ export interface UpdateFilterCommandOutput extends UpdateFilterResponse, __Metad * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class UpdateFilterCommand extends $Command diff --git a/clients/client-guardduty/src/commands/UpdateFindingsFeedbackCommand.ts b/clients/client-guardduty/src/commands/UpdateFindingsFeedbackCommand.ts index 9f62a2e1361a9..72b0ec345165c 100644 --- a/clients/client-guardduty/src/commands/UpdateFindingsFeedbackCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateFindingsFeedbackCommand.ts @@ -64,6 +64,7 @@ export interface UpdateFindingsFeedbackCommandOutput extends UpdateFindingsFeedb * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class UpdateFindingsFeedbackCommand extends $Command diff --git a/clients/client-guardduty/src/commands/UpdateIPSetCommand.ts b/clients/client-guardduty/src/commands/UpdateIPSetCommand.ts index f5a4551bb6d91..81f84e6e1d55a 100644 --- a/clients/client-guardduty/src/commands/UpdateIPSetCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateIPSetCommand.ts @@ -63,6 +63,7 @@ export interface UpdateIPSetCommandOutput extends UpdateIPSetResponse, __Metadat * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class UpdateIPSetCommand extends $Command diff --git a/clients/client-guardduty/src/commands/UpdateMalwareProtectionPlanCommand.ts b/clients/client-guardduty/src/commands/UpdateMalwareProtectionPlanCommand.ts index d47f142acf7cb..0cf57f5f737b0 100644 --- a/clients/client-guardduty/src/commands/UpdateMalwareProtectionPlanCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateMalwareProtectionPlanCommand.ts @@ -81,6 +81,7 @@ export interface UpdateMalwareProtectionPlanCommandOutput extends __MetadataBear * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class UpdateMalwareProtectionPlanCommand extends $Command diff --git a/clients/client-guardduty/src/commands/UpdateMalwareScanSettingsCommand.ts b/clients/client-guardduty/src/commands/UpdateMalwareScanSettingsCommand.ts index 456f0c832b6b4..8edfc1b23fb63 100644 --- a/clients/client-guardduty/src/commands/UpdateMalwareScanSettingsCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateMalwareScanSettingsCommand.ts @@ -85,6 +85,7 @@ export interface UpdateMalwareScanSettingsCommandOutput extends UpdateMalwareSca * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class UpdateMalwareScanSettingsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/UpdateMemberDetectorsCommand.ts b/clients/client-guardduty/src/commands/UpdateMemberDetectorsCommand.ts index 4f40c1afb9ff4..8b35b18e03487 100644 --- a/clients/client-guardduty/src/commands/UpdateMemberDetectorsCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateMemberDetectorsCommand.ts @@ -104,6 +104,7 @@ export interface UpdateMemberDetectorsCommandOutput extends UpdateMemberDetector * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class UpdateMemberDetectorsCommand extends $Command diff --git a/clients/client-guardduty/src/commands/UpdateOrganizationConfigurationCommand.ts b/clients/client-guardduty/src/commands/UpdateOrganizationConfigurationCommand.ts index 26a5c7949c91b..d0c8a8e7efbf7 100644 --- a/clients/client-guardduty/src/commands/UpdateOrganizationConfigurationCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateOrganizationConfigurationCommand.ts @@ -104,6 +104,7 @@ export interface UpdateOrganizationConfigurationCommandOutput * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class UpdateOrganizationConfigurationCommand extends $Command diff --git a/clients/client-guardduty/src/commands/UpdatePublishingDestinationCommand.ts b/clients/client-guardduty/src/commands/UpdatePublishingDestinationCommand.ts index 3603750694704..2858098206d37 100644 --- a/clients/client-guardduty/src/commands/UpdatePublishingDestinationCommand.ts +++ b/clients/client-guardduty/src/commands/UpdatePublishingDestinationCommand.ts @@ -70,6 +70,7 @@ export interface UpdatePublishingDestinationCommandOutput * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class UpdatePublishingDestinationCommand extends $Command diff --git a/clients/client-guardduty/src/commands/UpdateThreatIntelSetCommand.ts b/clients/client-guardduty/src/commands/UpdateThreatIntelSetCommand.ts index 33285edf1740d..80d8a6c8993ef 100644 --- a/clients/client-guardduty/src/commands/UpdateThreatIntelSetCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateThreatIntelSetCommand.ts @@ -63,6 +63,7 @@ export interface UpdateThreatIntelSetCommandOutput extends UpdateThreatIntelSetR * @throws {@link GuardDutyServiceException} *

Base exception class for all service exceptions from GuardDuty service.

* + * * @public */ export class UpdateThreatIntelSetCommand extends $Command diff --git a/clients/client-health/src/commands/DescribeAffectedAccountsForOrganizationCommand.ts b/clients/client-health/src/commands/DescribeAffectedAccountsForOrganizationCommand.ts index 8055196c21217..adcabf6c2df66 100644 --- a/clients/client-health/src/commands/DescribeAffectedAccountsForOrganizationCommand.ts +++ b/clients/client-health/src/commands/DescribeAffectedAccountsForOrganizationCommand.ts @@ -81,6 +81,7 @@ export interface DescribeAffectedAccountsForOrganizationCommandOutput * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* + * * @public */ export class DescribeAffectedAccountsForOrganizationCommand extends $Command diff --git a/clients/client-health/src/commands/DescribeAffectedEntitiesCommand.ts b/clients/client-health/src/commands/DescribeAffectedEntitiesCommand.ts index 5407959311607..2725bb7dec4db 100644 --- a/clients/client-health/src/commands/DescribeAffectedEntitiesCommand.ts +++ b/clients/client-health/src/commands/DescribeAffectedEntitiesCommand.ts @@ -121,6 +121,7 @@ export interface DescribeAffectedEntitiesCommandOutput extends DescribeAffectedE * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* + * * @public */ export class DescribeAffectedEntitiesCommand extends $Command diff --git a/clients/client-health/src/commands/DescribeAffectedEntitiesForOrganizationCommand.ts b/clients/client-health/src/commands/DescribeAffectedEntitiesForOrganizationCommand.ts index 766e13921d2dc..ee87c64ccef57 100644 --- a/clients/client-health/src/commands/DescribeAffectedEntitiesForOrganizationCommand.ts +++ b/clients/client-health/src/commands/DescribeAffectedEntitiesForOrganizationCommand.ts @@ -130,6 +130,7 @@ export interface DescribeAffectedEntitiesForOrganizationCommandOutput * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* + * * @public */ export class DescribeAffectedEntitiesForOrganizationCommand extends $Command diff --git a/clients/client-health/src/commands/DescribeEntityAggregatesCommand.ts b/clients/client-health/src/commands/DescribeEntityAggregatesCommand.ts index 09e5ad5998c87..1725fbcc5d67c 100644 --- a/clients/client-health/src/commands/DescribeEntityAggregatesCommand.ts +++ b/clients/client-health/src/commands/DescribeEntityAggregatesCommand.ts @@ -65,6 +65,7 @@ export interface DescribeEntityAggregatesCommandOutput extends DescribeEntityAgg * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* + * * @public */ export class DescribeEntityAggregatesCommand extends $Command diff --git a/clients/client-health/src/commands/DescribeEntityAggregatesForOrganizationCommand.ts b/clients/client-health/src/commands/DescribeEntityAggregatesForOrganizationCommand.ts index fd10ef0179fe9..68cf3aaa3bbac 100644 --- a/clients/client-health/src/commands/DescribeEntityAggregatesForOrganizationCommand.ts +++ b/clients/client-health/src/commands/DescribeEntityAggregatesForOrganizationCommand.ts @@ -86,6 +86,7 @@ export interface DescribeEntityAggregatesForOrganizationCommandOutput * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* + * * @public */ export class DescribeEntityAggregatesForOrganizationCommand extends $Command diff --git a/clients/client-health/src/commands/DescribeEventAggregatesCommand.ts b/clients/client-health/src/commands/DescribeEventAggregatesCommand.ts index a2487afd5f74c..b5de2374edafb 100644 --- a/clients/client-health/src/commands/DescribeEventAggregatesCommand.ts +++ b/clients/client-health/src/commands/DescribeEventAggregatesCommand.ts @@ -123,6 +123,7 @@ export interface DescribeEventAggregatesCommandOutput extends DescribeEventAggre * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* + * * @public */ export class DescribeEventAggregatesCommand extends $Command diff --git a/clients/client-health/src/commands/DescribeEventDetailsCommand.ts b/clients/client-health/src/commands/DescribeEventDetailsCommand.ts index b088c034b0934..cafc4489e7ea9 100644 --- a/clients/client-health/src/commands/DescribeEventDetailsCommand.ts +++ b/clients/client-health/src/commands/DescribeEventDetailsCommand.ts @@ -99,6 +99,7 @@ export interface DescribeEventDetailsCommandOutput extends DescribeEventDetailsR * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* + * * @public */ export class DescribeEventDetailsCommand extends $Command diff --git a/clients/client-health/src/commands/DescribeEventDetailsForOrganizationCommand.ts b/clients/client-health/src/commands/DescribeEventDetailsForOrganizationCommand.ts index 7facfe2c9483a..3bed23cb89a92 100644 --- a/clients/client-health/src/commands/DescribeEventDetailsForOrganizationCommand.ts +++ b/clients/client-health/src/commands/DescribeEventDetailsForOrganizationCommand.ts @@ -134,6 +134,7 @@ export interface DescribeEventDetailsForOrganizationCommandOutput * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* + * * @public */ export class DescribeEventDetailsForOrganizationCommand extends $Command diff --git a/clients/client-health/src/commands/DescribeEventTypesCommand.ts b/clients/client-health/src/commands/DescribeEventTypesCommand.ts index e708809492390..964f2040e9639 100644 --- a/clients/client-health/src/commands/DescribeEventTypesCommand.ts +++ b/clients/client-health/src/commands/DescribeEventTypesCommand.ts @@ -87,6 +87,7 @@ export interface DescribeEventTypesCommandOutput extends DescribeEventTypesRespo * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* + * * @public */ export class DescribeEventTypesCommand extends $Command diff --git a/clients/client-health/src/commands/DescribeEventsCommand.ts b/clients/client-health/src/commands/DescribeEventsCommand.ts index f046a9992fbeb..2cfda9f8e1adc 100644 --- a/clients/client-health/src/commands/DescribeEventsCommand.ts +++ b/clients/client-health/src/commands/DescribeEventsCommand.ts @@ -152,6 +152,7 @@ export interface DescribeEventsCommandOutput extends DescribeEventsResponse, __M * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* + * * @public */ export class DescribeEventsCommand extends $Command diff --git a/clients/client-health/src/commands/DescribeEventsForOrganizationCommand.ts b/clients/client-health/src/commands/DescribeEventsForOrganizationCommand.ts index 814440b08799f..849689a537981 100644 --- a/clients/client-health/src/commands/DescribeEventsForOrganizationCommand.ts +++ b/clients/client-health/src/commands/DescribeEventsForOrganizationCommand.ts @@ -151,6 +151,7 @@ export interface DescribeEventsForOrganizationCommandOutput * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* + * * @public */ export class DescribeEventsForOrganizationCommand extends $Command diff --git a/clients/client-health/src/commands/DescribeHealthServiceStatusForOrganizationCommand.ts b/clients/client-health/src/commands/DescribeHealthServiceStatusForOrganizationCommand.ts index ffc4beb23ccce..7894e7855cf37 100644 --- a/clients/client-health/src/commands/DescribeHealthServiceStatusForOrganizationCommand.ts +++ b/clients/client-health/src/commands/DescribeHealthServiceStatusForOrganizationCommand.ts @@ -60,6 +60,7 @@ export interface DescribeHealthServiceStatusForOrganizationCommandOutput * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* + * * @public */ export class DescribeHealthServiceStatusForOrganizationCommand extends $Command diff --git a/clients/client-health/src/commands/DisableHealthServiceAccessForOrganizationCommand.ts b/clients/client-health/src/commands/DisableHealthServiceAccessForOrganizationCommand.ts index 8fe9111fe794e..76e47758d9189 100644 --- a/clients/client-health/src/commands/DisableHealthServiceAccessForOrganizationCommand.ts +++ b/clients/client-health/src/commands/DisableHealthServiceAccessForOrganizationCommand.ts @@ -71,6 +71,7 @@ export interface DisableHealthServiceAccessForOrganizationCommandOutput extends * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* + * * @public */ export class DisableHealthServiceAccessForOrganizationCommand extends $Command diff --git a/clients/client-health/src/commands/EnableHealthServiceAccessForOrganizationCommand.ts b/clients/client-health/src/commands/EnableHealthServiceAccessForOrganizationCommand.ts index d9a8801c85aff..07f30bc28f15f 100644 --- a/clients/client-health/src/commands/EnableHealthServiceAccessForOrganizationCommand.ts +++ b/clients/client-health/src/commands/EnableHealthServiceAccessForOrganizationCommand.ts @@ -80,6 +80,7 @@ export interface EnableHealthServiceAccessForOrganizationCommandOutput extends _ * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* + * * @public */ export class EnableHealthServiceAccessForOrganizationCommand extends $Command diff --git a/clients/client-healthlake/src/commands/CreateFHIRDatastoreCommand.ts b/clients/client-healthlake/src/commands/CreateFHIRDatastoreCommand.ts index 24c1f09c70d0e..73bdcb9050aff 100644 --- a/clients/client-healthlake/src/commands/CreateFHIRDatastoreCommand.ts +++ b/clients/client-healthlake/src/commands/CreateFHIRDatastoreCommand.ts @@ -93,6 +93,7 @@ export interface CreateFHIRDatastoreCommandOutput extends CreateFHIRDatastoreRes * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* + * * @public */ export class CreateFHIRDatastoreCommand extends $Command diff --git a/clients/client-healthlake/src/commands/DeleteFHIRDatastoreCommand.ts b/clients/client-healthlake/src/commands/DeleteFHIRDatastoreCommand.ts index 08c3f87b0a0ad..0db925e715a25 100644 --- a/clients/client-healthlake/src/commands/DeleteFHIRDatastoreCommand.ts +++ b/clients/client-healthlake/src/commands/DeleteFHIRDatastoreCommand.ts @@ -76,6 +76,7 @@ export interface DeleteFHIRDatastoreCommandOutput extends DeleteFHIRDatastoreRes * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* + * * @public */ export class DeleteFHIRDatastoreCommand extends $Command diff --git a/clients/client-healthlake/src/commands/DescribeFHIRDatastoreCommand.ts b/clients/client-healthlake/src/commands/DescribeFHIRDatastoreCommand.ts index 7134f950ee3a9..0209501068230 100644 --- a/clients/client-healthlake/src/commands/DescribeFHIRDatastoreCommand.ts +++ b/clients/client-healthlake/src/commands/DescribeFHIRDatastoreCommand.ts @@ -95,6 +95,7 @@ export interface DescribeFHIRDatastoreCommandOutput extends DescribeFHIRDatastor * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* + * * @public */ export class DescribeFHIRDatastoreCommand extends $Command diff --git a/clients/client-healthlake/src/commands/DescribeFHIRExportJobCommand.ts b/clients/client-healthlake/src/commands/DescribeFHIRExportJobCommand.ts index 19ca3aac722d2..7e0d1672e314b 100644 --- a/clients/client-healthlake/src/commands/DescribeFHIRExportJobCommand.ts +++ b/clients/client-healthlake/src/commands/DescribeFHIRExportJobCommand.ts @@ -83,6 +83,7 @@ export interface DescribeFHIRExportJobCommandOutput extends DescribeFHIRExportJo * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* + * * @public */ export class DescribeFHIRExportJobCommand extends $Command diff --git a/clients/client-healthlake/src/commands/DescribeFHIRImportJobCommand.ts b/clients/client-healthlake/src/commands/DescribeFHIRImportJobCommand.ts index cbe2cecb2ff58..ace8814386ba4 100644 --- a/clients/client-healthlake/src/commands/DescribeFHIRImportJobCommand.ts +++ b/clients/client-healthlake/src/commands/DescribeFHIRImportJobCommand.ts @@ -96,6 +96,7 @@ export interface DescribeFHIRImportJobCommandOutput extends DescribeFHIRImportJo * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* + * * @public */ export class DescribeFHIRImportJobCommand extends $Command diff --git a/clients/client-healthlake/src/commands/ListFHIRDatastoresCommand.ts b/clients/client-healthlake/src/commands/ListFHIRDatastoresCommand.ts index 685674c196bed..765490ef17e3f 100644 --- a/clients/client-healthlake/src/commands/ListFHIRDatastoresCommand.ts +++ b/clients/client-healthlake/src/commands/ListFHIRDatastoresCommand.ts @@ -101,6 +101,7 @@ export interface ListFHIRDatastoresCommandOutput extends ListFHIRDatastoresRespo * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* + * * @public */ export class ListFHIRDatastoresCommand extends $Command diff --git a/clients/client-healthlake/src/commands/ListFHIRExportJobsCommand.ts b/clients/client-healthlake/src/commands/ListFHIRExportJobsCommand.ts index 1d620214d3a4a..a92052b986ae3 100644 --- a/clients/client-healthlake/src/commands/ListFHIRExportJobsCommand.ts +++ b/clients/client-healthlake/src/commands/ListFHIRExportJobsCommand.ts @@ -96,6 +96,7 @@ export interface ListFHIRExportJobsCommandOutput extends ListFHIRExportJobsRespo * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* + * * @public */ export class ListFHIRExportJobsCommand extends $Command diff --git a/clients/client-healthlake/src/commands/ListFHIRImportJobsCommand.ts b/clients/client-healthlake/src/commands/ListFHIRImportJobsCommand.ts index aefbe0388d581..176058a0163e0 100644 --- a/clients/client-healthlake/src/commands/ListFHIRImportJobsCommand.ts +++ b/clients/client-healthlake/src/commands/ListFHIRImportJobsCommand.ts @@ -109,6 +109,7 @@ export interface ListFHIRImportJobsCommandOutput extends ListFHIRImportJobsRespo * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* + * * @public */ export class ListFHIRImportJobsCommand extends $Command diff --git a/clients/client-healthlake/src/commands/ListTagsForResourceCommand.ts b/clients/client-healthlake/src/commands/ListTagsForResourceCommand.ts index f0ebb0025f021..503a21570beae 100644 --- a/clients/client-healthlake/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-healthlake/src/commands/ListTagsForResourceCommand.ts @@ -68,6 +68,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-healthlake/src/commands/StartFHIRExportJobCommand.ts b/clients/client-healthlake/src/commands/StartFHIRExportJobCommand.ts index 5178338511c58..56dc61add9390 100644 --- a/clients/client-healthlake/src/commands/StartFHIRExportJobCommand.ts +++ b/clients/client-healthlake/src/commands/StartFHIRExportJobCommand.ts @@ -81,6 +81,7 @@ export interface StartFHIRExportJobCommandOutput extends StartFHIRExportJobRespo * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* + * * @public */ export class StartFHIRExportJobCommand extends $Command diff --git a/clients/client-healthlake/src/commands/StartFHIRImportJobCommand.ts b/clients/client-healthlake/src/commands/StartFHIRImportJobCommand.ts index 696137348a790..6b432fde2824c 100644 --- a/clients/client-healthlake/src/commands/StartFHIRImportJobCommand.ts +++ b/clients/client-healthlake/src/commands/StartFHIRImportJobCommand.ts @@ -84,6 +84,7 @@ export interface StartFHIRImportJobCommandOutput extends StartFHIRImportJobRespo * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* + * * @public */ export class StartFHIRImportJobCommand extends $Command diff --git a/clients/client-healthlake/src/commands/TagResourceCommand.ts b/clients/client-healthlake/src/commands/TagResourceCommand.ts index 0cdcc355f1d1f..1169ba6caf344 100644 --- a/clients/client-healthlake/src/commands/TagResourceCommand.ts +++ b/clients/client-healthlake/src/commands/TagResourceCommand.ts @@ -67,6 +67,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-healthlake/src/commands/UntagResourceCommand.ts b/clients/client-healthlake/src/commands/UntagResourceCommand.ts index 69601a69b23a4..c079e79335816 100644 --- a/clients/client-healthlake/src/commands/UntagResourceCommand.ts +++ b/clients/client-healthlake/src/commands/UntagResourceCommand.ts @@ -64,6 +64,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-iam/src/commands/AddClientIDToOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/AddClientIDToOpenIDConnectProviderCommand.ts index e979cc0ebca9f..31f00aa4f567b 100644 --- a/clients/client-iam/src/commands/AddClientIDToOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/AddClientIDToOpenIDConnectProviderCommand.ts @@ -76,19 +76,22 @@ export interface AddClientIDToOpenIDConnectProviderCommandOutput extends __Metad * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To add a client ID (audience) to an Open-ID Connect (OIDC) provider * ```javascript * // The following add-client-id-to-open-id-connect-provider command adds the client ID my-application-ID to the OIDC provider named server.example.com: * const input = { - * "ClientID": "my-application-ID", - * "OpenIDConnectProviderArn": "arn:aws:iam::123456789012:oidc-provider/server.example.com" + * ClientID: "my-application-ID", + * OpenIDConnectProviderArn: "arn:aws:iam::123456789012:oidc-provider/server.example.com" * }; * const command = new AddClientIDToOpenIDConnectProviderCommand(input); - * await client.send(command); - * // example id: 028e91f4-e2a6-4d59-9e3b-4965a3fb19be + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AddClientIDToOpenIDConnectProviderCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/AddRoleToInstanceProfileCommand.ts b/clients/client-iam/src/commands/AddRoleToInstanceProfileCommand.ts index 58f5baf9b6746..00af2490d5a26 100644 --- a/clients/client-iam/src/commands/AddRoleToInstanceProfileCommand.ts +++ b/clients/client-iam/src/commands/AddRoleToInstanceProfileCommand.ts @@ -96,19 +96,22 @@ export interface AddRoleToInstanceProfileCommandOutput extends __MetadataBearer * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To add a role to an instance profile * ```javascript * // The following command adds the role named S3Access to the instance profile named Webserver: * const input = { - * "InstanceProfileName": "Webserver", - * "RoleName": "S3Access" + * InstanceProfileName: "Webserver", + * RoleName: "S3Access" * }; * const command = new AddRoleToInstanceProfileCommand(input); - * await client.send(command); - * // example id: c107fac3-edb6-4827-8a71-8863ec91c81f + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AddRoleToInstanceProfileCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/AddUserToGroupCommand.ts b/clients/client-iam/src/commands/AddUserToGroupCommand.ts index 6018154e0d1db..c81ac96a8b1bb 100644 --- a/clients/client-iam/src/commands/AddUserToGroupCommand.ts +++ b/clients/client-iam/src/commands/AddUserToGroupCommand.ts @@ -66,19 +66,22 @@ export interface AddUserToGroupCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To add a user to an IAM group * ```javascript * // The following command adds an IAM user named Bob to the IAM group named Admins: * const input = { - * "GroupName": "Admins", - * "UserName": "Bob" + * GroupName: "Admins", + * UserName: "Bob" * }; * const command = new AddUserToGroupCommand(input); - * await client.send(command); - * // example id: 619c7e6b-09f8-4036-857b-51a6ea5027ca + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AddUserToGroupCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/AttachGroupPolicyCommand.ts b/clients/client-iam/src/commands/AttachGroupPolicyCommand.ts index 081652e592cbe..7172dbdd8c98e 100644 --- a/clients/client-iam/src/commands/AttachGroupPolicyCommand.ts +++ b/clients/client-iam/src/commands/AttachGroupPolicyCommand.ts @@ -83,19 +83,22 @@ export interface AttachGroupPolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To attach a managed policy to an IAM group * ```javascript * // The following command attaches the AWS managed policy named ReadOnlyAccess to the IAM group named Finance. * const input = { - * "GroupName": "Finance", - * "PolicyArn": "arn:aws:iam::aws:policy/ReadOnlyAccess" + * GroupName: "Finance", + * PolicyArn: "arn:aws:iam::aws:policy/ReadOnlyAccess" * }; * const command = new AttachGroupPolicyCommand(input); - * await client.send(command); - * // example id: 87551489-86f0-45db-9889-759936778f2b + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AttachGroupPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/AttachRolePolicyCommand.ts b/clients/client-iam/src/commands/AttachRolePolicyCommand.ts index 04acf299a967b..21cb1b6bd1d8f 100644 --- a/clients/client-iam/src/commands/AttachRolePolicyCommand.ts +++ b/clients/client-iam/src/commands/AttachRolePolicyCommand.ts @@ -100,19 +100,22 @@ export interface AttachRolePolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To attach a managed policy to an IAM role * ```javascript * // The following command attaches the AWS managed policy named ReadOnlyAccess to the IAM role named ReadOnlyRole. * const input = { - * "PolicyArn": "arn:aws:iam::aws:policy/ReadOnlyAccess", - * "RoleName": "ReadOnlyRole" + * PolicyArn: "arn:aws:iam::aws:policy/ReadOnlyAccess", + * RoleName: "ReadOnlyRole" * }; * const command = new AttachRolePolicyCommand(input); - * await client.send(command); - * // example id: 3e1b8c7c-99c8-4fc4-a20c-131fe3f22c7e + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AttachRolePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/AttachUserPolicyCommand.ts b/clients/client-iam/src/commands/AttachUserPolicyCommand.ts index 60a2ec3e7493f..e38d275074d5d 100644 --- a/clients/client-iam/src/commands/AttachUserPolicyCommand.ts +++ b/clients/client-iam/src/commands/AttachUserPolicyCommand.ts @@ -83,19 +83,22 @@ export interface AttachUserPolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To attach a managed policy to an IAM user * ```javascript * // The following command attaches the AWS managed policy named AdministratorAccess to the IAM user named Alice. * const input = { - * "PolicyArn": "arn:aws:iam::aws:policy/AdministratorAccess", - * "UserName": "Alice" + * PolicyArn: "arn:aws:iam::aws:policy/AdministratorAccess", + * UserName: "Alice" * }; * const command = new AttachUserPolicyCommand(input); - * await client.send(command); - * // example id: 1372ebd8-9475-4b1a-a479-23b6fd4b8b3e + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AttachUserPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/ChangePasswordCommand.ts b/clients/client-iam/src/commands/ChangePasswordCommand.ts index 1c50564addbdf..71d03efe35f97 100644 --- a/clients/client-iam/src/commands/ChangePasswordCommand.ts +++ b/clients/client-iam/src/commands/ChangePasswordCommand.ts @@ -87,19 +87,22 @@ export interface ChangePasswordCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To change the password for your IAM user * ```javascript * // The following command changes the password for the current IAM user. * const input = { - * "NewPassword": "]35d/{pB9Fo9wJ", - * "OldPassword": "3s0K_;xh4~8XXI" + * NewPassword: "]35d/{pB9Fo9wJ", + * OldPassword: "3s0K_;xh4~8XXI" * }; * const command = new ChangePasswordCommand(input); - * await client.send(command); - * // example id: 3a80c66f-bffb-46df-947c-1e8fa583b470 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ChangePasswordCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/CreateAccessKeyCommand.ts b/clients/client-iam/src/commands/CreateAccessKeyCommand.ts index 9a733d9da03f7..16f84b0aec7bf 100644 --- a/clients/client-iam/src/commands/CreateAccessKeyCommand.ts +++ b/clients/client-iam/src/commands/CreateAccessKeyCommand.ts @@ -90,29 +90,29 @@ export interface CreateAccessKeyCommandOutput extends CreateAccessKeyResponse, _ * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To create an access key for an IAM user * ```javascript * // The following command creates an access key (access key ID and secret access key) for the IAM user named Bob. * const input = { - * "UserName": "Bob" + * UserName: "Bob" * }; * const command = new CreateAccessKeyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AccessKey": { - * "AccessKeyId": "AKIAIOSFODNN7EXAMPLE", - * "CreateDate": "2015-03-09T18:39:23.411Z", - * "SecretAccessKey": "wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY", - * "Status": "Active", - * "UserName": "Bob" + * AccessKey: { + * AccessKeyId: "AKIAIOSFODNN7EXAMPLE", + * CreateDate: "2015-03-09T18:39:23.411Z", + * SecretAccessKey: "wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY", + * Status: "Active", + * UserName: "Bob" * } * } * *\/ - * // example id: 1fbb3211-4cf2-41db-8c20-ba58d9f5802d * ``` * + * @public */ export class CreateAccessKeyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/CreateAccountAliasCommand.ts b/clients/client-iam/src/commands/CreateAccountAliasCommand.ts index 166d3ae823d2b..4bc3fe79badc9 100644 --- a/clients/client-iam/src/commands/CreateAccountAliasCommand.ts +++ b/clients/client-iam/src/commands/CreateAccountAliasCommand.ts @@ -72,18 +72,21 @@ export interface CreateAccountAliasCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To create an account alias * ```javascript * // The following command associates the alias examplecorp to your AWS account. * const input = { - * "AccountAlias": "examplecorp" + * AccountAlias: "examplecorp" * }; * const command = new CreateAccountAliasCommand(input); - * await client.send(command); - * // example id: 5adaf6fb-94fc-4ca2-b825-2fbc2062add1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateAccountAliasCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/CreateGroupCommand.ts b/clients/client-iam/src/commands/CreateGroupCommand.ts index b7a78d2446efd..481a5d4a42979 100644 --- a/clients/client-iam/src/commands/CreateGroupCommand.ts +++ b/clients/client-iam/src/commands/CreateGroupCommand.ts @@ -80,29 +80,29 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To create an IAM group * ```javascript * // The following command creates an IAM group named Admins. * const input = { - * "GroupName": "Admins" + * GroupName: "Admins" * }; * const command = new CreateGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Group": { - * "Arn": "arn:aws:iam::123456789012:group/Admins", - * "CreateDate": "2015-03-09T20:30:24.940Z", - * "GroupId": "AIDGPMS9RO4H3FEXAMPLE", - * "GroupName": "Admins", - * "Path": "/" + * Group: { + * Arn: "arn:aws:iam::123456789012:group/Admins", + * CreateDate: "2015-03-09T20:30:24.940Z", + * GroupId: "AIDGPMS9RO4H3FEXAMPLE", + * GroupName: "Admins", + * Path: "/" * } * } * *\/ - * // example id: d5da2a90-5e69-4ef7-8ae8-4c33dc21fd21 * ``` * + * @public */ export class CreateGroupCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/CreateInstanceProfileCommand.ts b/clients/client-iam/src/commands/CreateInstanceProfileCommand.ts index ba928314d9e58..7a5a609425b64 100644 --- a/clients/client-iam/src/commands/CreateInstanceProfileCommand.ts +++ b/clients/client-iam/src/commands/CreateInstanceProfileCommand.ts @@ -124,30 +124,30 @@ export interface CreateInstanceProfileCommandOutput extends CreateInstanceProfil * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To create an instance profile * ```javascript * // The following command creates an instance profile named Webserver that is ready to have a role attached and then be associated with an EC2 instance. * const input = { - * "InstanceProfileName": "Webserver" + * InstanceProfileName: "Webserver" * }; * const command = new CreateInstanceProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InstanceProfile": { - * "Arn": "arn:aws:iam::123456789012:instance-profile/Webserver", - * "CreateDate": "2015-03-09T20:33:19.626Z", - * "InstanceProfileId": "AIPAJMBYC7DLSPEXAMPLE", - * "InstanceProfileName": "Webserver", - * "Path": "/", - * "Roles": [] + * InstanceProfile: { + * Arn: "arn:aws:iam::123456789012:instance-profile/Webserver", + * CreateDate: "2015-03-09T20:33:19.626Z", + * InstanceProfileId: "AIPAJMBYC7DLSPEXAMPLE", + * InstanceProfileName: "Webserver", + * Path: "/", + * Roles: [] * } * } * *\/ - * // example id: 5d84e6ae-5921-4e39-8454-10232cd9ff9a * ``` * + * @public */ export class CreateInstanceProfileCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/CreateLoginProfileCommand.ts b/clients/client-iam/src/commands/CreateLoginProfileCommand.ts index 98e072d5edf41..a48092d7fa847 100644 --- a/clients/client-iam/src/commands/CreateLoginProfileCommand.ts +++ b/clients/client-iam/src/commands/CreateLoginProfileCommand.ts @@ -90,29 +90,29 @@ export interface CreateLoginProfileCommandOutput extends CreateLoginProfileRespo * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To create an instance profile * ```javascript * // The following command changes IAM user Bob's password and sets the flag that required Bob to change the password the next time he signs in. * const input = { - * "Password": "h]6EszR}vJ*m", - * "PasswordResetRequired": true, - * "UserName": "Bob" + * Password: "h]6EszR}vJ*m", + * PasswordResetRequired: true, + * UserName: "Bob" * }; * const command = new CreateLoginProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LoginProfile": { - * "CreateDate": "2015-03-10T20:55:40.274Z", - * "PasswordResetRequired": true, - * "UserName": "Bob" + * LoginProfile: { + * CreateDate: "2015-03-10T20:55:40.274Z", + * PasswordResetRequired: true, + * UserName: "Bob" * } * } * *\/ - * // example id: c63795bc-3444-40b3-89df-83c474ef88be * ``` * + * @public */ export class CreateLoginProfileCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/CreateOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/CreateOpenIDConnectProviderCommand.ts index e2dd53ef5fb0c..9985ae3250a98 100644 --- a/clients/client-iam/src/commands/CreateOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/CreateOpenIDConnectProviderCommand.ts @@ -139,29 +139,29 @@ export interface CreateOpenIDConnectProviderCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To create an instance profile * ```javascript * // The following example defines a new OIDC provider in IAM with a client ID of my-application-id and pointing at the server with a URL of https://server.example.com. * const input = { - * "ClientIDList": [ + * ClientIDList: [ * "my-application-id" * ], - * "ThumbprintList": [ + * ThumbprintList: [ * "3768084dfb3d2b68b7897bf5f565da8efEXAMPLE" * ], - * "Url": "https://server.example.com" + * Url: "https://server.example.com" * }; * const command = new CreateOpenIDConnectProviderCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OpenIDConnectProviderArn": "arn:aws:iam::123456789012:oidc-provider/server.example.com" + * OpenIDConnectProviderArn: "arn:aws:iam::123456789012:oidc-provider/server.example.com" * } * *\/ - * // example id: 4e4a6bff-cc97-4406-922e-0ab4a82cdb63 * ``` * + * @public */ export class CreateOpenIDConnectProviderCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/CreatePolicyCommand.ts b/clients/client-iam/src/commands/CreatePolicyCommand.ts index 5279812d2fa30..34618c7a8d721 100644 --- a/clients/client-iam/src/commands/CreatePolicyCommand.ts +++ b/clients/client-iam/src/commands/CreatePolicyCommand.ts @@ -116,6 +116,7 @@ export interface CreatePolicyCommandOutput extends CreatePolicyResponse, __Metad * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class CreatePolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/CreatePolicyVersionCommand.ts b/clients/client-iam/src/commands/CreatePolicyVersionCommand.ts index 0555fec0755c2..000a686c628e6 100644 --- a/clients/client-iam/src/commands/CreatePolicyVersionCommand.ts +++ b/clients/client-iam/src/commands/CreatePolicyVersionCommand.ts @@ -89,6 +89,7 @@ export interface CreatePolicyVersionCommandOutput extends CreatePolicyVersionRes * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class CreatePolicyVersionCommand extends $Command diff --git a/clients/client-iam/src/commands/CreateRoleCommand.ts b/clients/client-iam/src/commands/CreateRoleCommand.ts index b8380d37442ca..bbbf4a55da832 100644 --- a/clients/client-iam/src/commands/CreateRoleCommand.ts +++ b/clients/client-iam/src/commands/CreateRoleCommand.ts @@ -117,32 +117,32 @@ export interface CreateRoleCommandOutput extends CreateRoleResponse, __MetadataB * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To create an IAM role * ```javascript * // The following command creates a role named Test-Role and attaches a trust policy that you must convert from JSON to a string. Upon success, the response includes the same policy as a URL-encoded JSON string. * const input = { - * "AssumeRolePolicyDocument": "", - * "Path": "/", - * "RoleName": "Test-Role" + * AssumeRolePolicyDocument: "", + * Path: "/", + * RoleName: "Test-Role" * }; * const command = new CreateRoleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Role": { - * "Arn": "arn:aws:iam::123456789012:role/Test-Role", - * "AssumeRolePolicyDocument": "", - * "CreateDate": "2013-06-07T20:43:32.821Z", - * "Path": "/", - * "RoleId": "AKIAIOSFODNN7EXAMPLE", - * "RoleName": "Test-Role" + * Role: { + * Arn: "arn:aws:iam::123456789012:role/Test-Role", + * AssumeRolePolicyDocument: "", + * CreateDate: "2013-06-07T20:43:32.821Z", + * Path: "/", + * RoleId: "AKIAIOSFODNN7EXAMPLE", + * RoleName: "Test-Role" * } * } * *\/ - * // example id: eaaa4b5f-51f1-4f73-b0d3-30127040eff8 * ``` * + * @public */ export class CreateRoleCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/CreateSAMLProviderCommand.ts b/clients/client-iam/src/commands/CreateSAMLProviderCommand.ts index 1263fdf8db051..a0441e3a4ad4a 100644 --- a/clients/client-iam/src/commands/CreateSAMLProviderCommand.ts +++ b/clients/client-iam/src/commands/CreateSAMLProviderCommand.ts @@ -111,6 +111,7 @@ export interface CreateSAMLProviderCommandOutput extends CreateSAMLProviderRespo * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class CreateSAMLProviderCommand extends $Command diff --git a/clients/client-iam/src/commands/CreateServiceLinkedRoleCommand.ts b/clients/client-iam/src/commands/CreateServiceLinkedRoleCommand.ts index c8a40af5daf0c..fb61d33fa5b8e 100644 --- a/clients/client-iam/src/commands/CreateServiceLinkedRoleCommand.ts +++ b/clients/client-iam/src/commands/CreateServiceLinkedRoleCommand.ts @@ -104,6 +104,7 @@ export interface CreateServiceLinkedRoleCommandOutput extends CreateServiceLinke * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class CreateServiceLinkedRoleCommand extends $Command diff --git a/clients/client-iam/src/commands/CreateServiceSpecificCredentialCommand.ts b/clients/client-iam/src/commands/CreateServiceSpecificCredentialCommand.ts index 24bda9652a35d..f8c5aedd53649 100644 --- a/clients/client-iam/src/commands/CreateServiceSpecificCredentialCommand.ts +++ b/clients/client-iam/src/commands/CreateServiceSpecificCredentialCommand.ts @@ -94,6 +94,7 @@ export interface CreateServiceSpecificCredentialCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class CreateServiceSpecificCredentialCommand extends $Command diff --git a/clients/client-iam/src/commands/CreateUserCommand.ts b/clients/client-iam/src/commands/CreateUserCommand.ts index 04a02e70daee5..8958a6126c575 100644 --- a/clients/client-iam/src/commands/CreateUserCommand.ts +++ b/clients/client-iam/src/commands/CreateUserCommand.ts @@ -106,29 +106,29 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To create an IAM user * ```javascript * // The following create-user command creates an IAM user named Bob in the current account. * const input = { - * "UserName": "Bob" + * UserName: "Bob" * }; * const command = new CreateUserCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "User": { - * "Arn": "arn:aws:iam::123456789012:user/Bob", - * "CreateDate": "2013-06-08T03:20:41.270Z", - * "Path": "/", - * "UserId": "AKIAIOSFODNN7EXAMPLE", - * "UserName": "Bob" + * User: { + * Arn: "arn:aws:iam::123456789012:user/Bob", + * CreateDate: "2013-06-08T03:20:41.270Z", + * Path: "/", + * UserId: "AKIAIOSFODNN7EXAMPLE", + * UserName: "Bob" * } * } * *\/ - * // example id: eb15f90b-e5f5-4af8-a594-e4e82b181a62 * ``` * + * @public */ export class CreateUserCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/CreateVirtualMFADeviceCommand.ts b/clients/client-iam/src/commands/CreateVirtualMFADeviceCommand.ts index deb6ea2462e65..d4cd1e954cfec 100644 --- a/clients/client-iam/src/commands/CreateVirtualMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/CreateVirtualMFADeviceCommand.ts @@ -127,6 +127,7 @@ export interface CreateVirtualMFADeviceCommandOutput extends CreateVirtualMFADev * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class CreateVirtualMFADeviceCommand extends $Command diff --git a/clients/client-iam/src/commands/DeactivateMFADeviceCommand.ts b/clients/client-iam/src/commands/DeactivateMFADeviceCommand.ts index 312e8c0b2f107..c167d0e238a2a 100644 --- a/clients/client-iam/src/commands/DeactivateMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/DeactivateMFADeviceCommand.ts @@ -80,6 +80,7 @@ export interface DeactivateMFADeviceCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DeactivateMFADeviceCommand extends $Command diff --git a/clients/client-iam/src/commands/DeleteAccessKeyCommand.ts b/clients/client-iam/src/commands/DeleteAccessKeyCommand.ts index 15b8fb034658b..287fad859c955 100644 --- a/clients/client-iam/src/commands/DeleteAccessKeyCommand.ts +++ b/clients/client-iam/src/commands/DeleteAccessKeyCommand.ts @@ -70,19 +70,22 @@ export interface DeleteAccessKeyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To delete an access key for an IAM user * ```javascript * // The following command deletes one access key (access key ID and secret access key) assigned to the IAM user named Bob. * const input = { - * "AccessKeyId": "AKIDPMS9RO4H3FEXAMPLE", - * "UserName": "Bob" + * AccessKeyId: "AKIDPMS9RO4H3FEXAMPLE", + * UserName: "Bob" * }; * const command = new DeleteAccessKeyCommand(input); - * await client.send(command); - * // example id: 61a785a7-d30a-415a-ae18-ab9236e56871 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteAccessKeyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/DeleteAccountAliasCommand.ts b/clients/client-iam/src/commands/DeleteAccountAliasCommand.ts index 25dcca99c850b..325dffb1e053e 100644 --- a/clients/client-iam/src/commands/DeleteAccountAliasCommand.ts +++ b/clients/client-iam/src/commands/DeleteAccountAliasCommand.ts @@ -72,18 +72,21 @@ export interface DeleteAccountAliasCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To delete an account alias * ```javascript * // The following command removes the alias mycompany from the current AWS account: * const input = { - * "AccountAlias": "mycompany" + * AccountAlias: "mycompany" * }; * const command = new DeleteAccountAliasCommand(input); - * await client.send(command); - * // example id: 7abeca65-04a8-4500-a890-47f1092bf766 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteAccountAliasCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/DeleteAccountPasswordPolicyCommand.ts b/clients/client-iam/src/commands/DeleteAccountPasswordPolicyCommand.ts index 8c9f057cc7e33..3368fe368ecf7 100644 --- a/clients/client-iam/src/commands/DeleteAccountPasswordPolicyCommand.ts +++ b/clients/client-iam/src/commands/DeleteAccountPasswordPolicyCommand.ts @@ -62,16 +62,19 @@ export interface DeleteAccountPasswordPolicyCommandOutput extends __MetadataBear * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To delete the current account password policy * ```javascript * // The following command removes the password policy from the current AWS account: - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DeleteAccountPasswordPolicyCommand(input); - * await client.send(command); - * // example id: 9ddf755e-495c-49bc-ae3b-ea6cc9b8ebcf + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteAccountPasswordPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/DeleteGroupCommand.ts b/clients/client-iam/src/commands/DeleteGroupCommand.ts index 70bf517d3011c..79b84bda27a27 100644 --- a/clients/client-iam/src/commands/DeleteGroupCommand.ts +++ b/clients/client-iam/src/commands/DeleteGroupCommand.ts @@ -70,6 +70,7 @@ export interface DeleteGroupCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DeleteGroupCommand extends $Command diff --git a/clients/client-iam/src/commands/DeleteGroupPolicyCommand.ts b/clients/client-iam/src/commands/DeleteGroupPolicyCommand.ts index c7fbf89d619e2..abd76cc1dced6 100644 --- a/clients/client-iam/src/commands/DeleteGroupPolicyCommand.ts +++ b/clients/client-iam/src/commands/DeleteGroupPolicyCommand.ts @@ -71,19 +71,22 @@ export interface DeleteGroupPolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To delete a policy from an IAM group * ```javascript * // The following command deletes the policy named ExamplePolicy from the group named Admins: * const input = { - * "GroupName": "Admins", - * "PolicyName": "ExamplePolicy" + * GroupName: "Admins", + * PolicyName: "ExamplePolicy" * }; * const command = new DeleteGroupPolicyCommand(input); - * await client.send(command); - * // example id: e683f2bd-98a4-4fe0-bb66-33169c692d4a + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteGroupPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/DeleteInstanceProfileCommand.ts b/clients/client-iam/src/commands/DeleteInstanceProfileCommand.ts index 4ddb5457161dc..d5f4ed0800aa8 100644 --- a/clients/client-iam/src/commands/DeleteInstanceProfileCommand.ts +++ b/clients/client-iam/src/commands/DeleteInstanceProfileCommand.ts @@ -78,18 +78,21 @@ export interface DeleteInstanceProfileCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To delete an instance profile * ```javascript * // The following command deletes the instance profile named ExampleInstanceProfile * const input = { - * "InstanceProfileName": "ExampleInstanceProfile" + * InstanceProfileName: "ExampleInstanceProfile" * }; * const command = new DeleteInstanceProfileCommand(input); - * await client.send(command); - * // example id: 12d74fb8-3433-49db-8171-a1fc764e354d + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteInstanceProfileCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/DeleteLoginProfileCommand.ts b/clients/client-iam/src/commands/DeleteLoginProfileCommand.ts index 22ee75554f366..4e38988fe1bcb 100644 --- a/clients/client-iam/src/commands/DeleteLoginProfileCommand.ts +++ b/clients/client-iam/src/commands/DeleteLoginProfileCommand.ts @@ -83,18 +83,21 @@ export interface DeleteLoginProfileCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To delete a password for an IAM user * ```javascript * // The following command deletes the password for the IAM user named Bob. * const input = { - * "UserName": "Bob" + * UserName: "Bob" * }; * const command = new DeleteLoginProfileCommand(input); - * await client.send(command); - * // example id: 1fe57059-fc73-42e2-b992-517b7d573b5c + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteLoginProfileCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/DeleteOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/DeleteOpenIDConnectProviderCommand.ts index a8388f4cf1b29..190929d353420 100644 --- a/clients/client-iam/src/commands/DeleteOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/DeleteOpenIDConnectProviderCommand.ts @@ -70,6 +70,7 @@ export interface DeleteOpenIDConnectProviderCommandOutput extends __MetadataBear * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DeleteOpenIDConnectProviderCommand extends $Command diff --git a/clients/client-iam/src/commands/DeletePolicyCommand.ts b/clients/client-iam/src/commands/DeletePolicyCommand.ts index 2782648c62a30..59d82199aafb1 100644 --- a/clients/client-iam/src/commands/DeletePolicyCommand.ts +++ b/clients/client-iam/src/commands/DeletePolicyCommand.ts @@ -97,6 +97,7 @@ export interface DeletePolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DeletePolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/DeletePolicyVersionCommand.ts b/clients/client-iam/src/commands/DeletePolicyVersionCommand.ts index 0733efbcdfd3e..ba5636fc92cd4 100644 --- a/clients/client-iam/src/commands/DeletePolicyVersionCommand.ts +++ b/clients/client-iam/src/commands/DeletePolicyVersionCommand.ts @@ -79,6 +79,7 @@ export interface DeletePolicyVersionCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DeletePolicyVersionCommand extends $Command diff --git a/clients/client-iam/src/commands/DeleteRoleCommand.ts b/clients/client-iam/src/commands/DeleteRoleCommand.ts index 50c6e213cac2c..bc2090c9cffc8 100644 --- a/clients/client-iam/src/commands/DeleteRoleCommand.ts +++ b/clients/client-iam/src/commands/DeleteRoleCommand.ts @@ -102,18 +102,21 @@ export interface DeleteRoleCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To delete an IAM role * ```javascript * // The following command removes the role named Test-Role. * const input = { - * "RoleName": "Test-Role" + * RoleName: "Test-Role" * }; * const command = new DeleteRoleCommand(input); - * await client.send(command); - * // example id: 053cdf74-9bda-44b8-bdbb-140fd5a32603 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteRoleCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/DeleteRolePermissionsBoundaryCommand.ts b/clients/client-iam/src/commands/DeleteRolePermissionsBoundaryCommand.ts index 9d63bf786cb55..11d9e421019c2 100644 --- a/clients/client-iam/src/commands/DeleteRolePermissionsBoundaryCommand.ts +++ b/clients/client-iam/src/commands/DeleteRolePermissionsBoundaryCommand.ts @@ -76,6 +76,7 @@ export interface DeleteRolePermissionsBoundaryCommandOutput extends __MetadataBe * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DeleteRolePermissionsBoundaryCommand extends $Command diff --git a/clients/client-iam/src/commands/DeleteRolePolicyCommand.ts b/clients/client-iam/src/commands/DeleteRolePolicyCommand.ts index 816363bdea0da..a40f584ae5e82 100644 --- a/clients/client-iam/src/commands/DeleteRolePolicyCommand.ts +++ b/clients/client-iam/src/commands/DeleteRolePolicyCommand.ts @@ -77,19 +77,22 @@ export interface DeleteRolePolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To remove a policy from an IAM role * ```javascript * // The following command removes the policy named ExamplePolicy from the role named Test-Role. * const input = { - * "PolicyName": "ExamplePolicy", - * "RoleName": "Test-Role" + * PolicyName: "ExamplePolicy", + * RoleName: "Test-Role" * }; * const command = new DeleteRolePolicyCommand(input); - * await client.send(command); - * // example id: 9c667336-fde3-462c-b8f3-950800821e27 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteRolePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/DeleteSAMLProviderCommand.ts b/clients/client-iam/src/commands/DeleteSAMLProviderCommand.ts index 9f58c2313770a..a30edb1538cea 100644 --- a/clients/client-iam/src/commands/DeleteSAMLProviderCommand.ts +++ b/clients/client-iam/src/commands/DeleteSAMLProviderCommand.ts @@ -75,6 +75,7 @@ export interface DeleteSAMLProviderCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DeleteSAMLProviderCommand extends $Command diff --git a/clients/client-iam/src/commands/DeleteSSHPublicKeyCommand.ts b/clients/client-iam/src/commands/DeleteSSHPublicKeyCommand.ts index 3081f0f774cc5..4120d87296887 100644 --- a/clients/client-iam/src/commands/DeleteSSHPublicKeyCommand.ts +++ b/clients/client-iam/src/commands/DeleteSSHPublicKeyCommand.ts @@ -62,6 +62,7 @@ export interface DeleteSSHPublicKeyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DeleteSSHPublicKeyCommand extends $Command diff --git a/clients/client-iam/src/commands/DeleteServerCertificateCommand.ts b/clients/client-iam/src/commands/DeleteServerCertificateCommand.ts index c0a82f02b2fb0..51ea6baea7645 100644 --- a/clients/client-iam/src/commands/DeleteServerCertificateCommand.ts +++ b/clients/client-iam/src/commands/DeleteServerCertificateCommand.ts @@ -83,6 +83,7 @@ export interface DeleteServerCertificateCommandOutput extends __MetadataBearer { * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DeleteServerCertificateCommand extends $Command diff --git a/clients/client-iam/src/commands/DeleteServiceLinkedRoleCommand.ts b/clients/client-iam/src/commands/DeleteServiceLinkedRoleCommand.ts index 8dab6c62b169e..1e0f76a61490c 100644 --- a/clients/client-iam/src/commands/DeleteServiceLinkedRoleCommand.ts +++ b/clients/client-iam/src/commands/DeleteServiceLinkedRoleCommand.ts @@ -83,6 +83,7 @@ export interface DeleteServiceLinkedRoleCommandOutput extends DeleteServiceLinke * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DeleteServiceLinkedRoleCommand extends $Command diff --git a/clients/client-iam/src/commands/DeleteServiceSpecificCredentialCommand.ts b/clients/client-iam/src/commands/DeleteServiceSpecificCredentialCommand.ts index 3e434730e7eaf..e738e491a0f09 100644 --- a/clients/client-iam/src/commands/DeleteServiceSpecificCredentialCommand.ts +++ b/clients/client-iam/src/commands/DeleteServiceSpecificCredentialCommand.ts @@ -61,6 +61,7 @@ export interface DeleteServiceSpecificCredentialCommandOutput extends __Metadata * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DeleteServiceSpecificCredentialCommand extends $Command diff --git a/clients/client-iam/src/commands/DeleteSigningCertificateCommand.ts b/clients/client-iam/src/commands/DeleteSigningCertificateCommand.ts index 9f7cc04531edb..c329b7e36302e 100644 --- a/clients/client-iam/src/commands/DeleteSigningCertificateCommand.ts +++ b/clients/client-iam/src/commands/DeleteSigningCertificateCommand.ts @@ -74,19 +74,22 @@ export interface DeleteSigningCertificateCommandOutput extends __MetadataBearer * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To delete a signing certificate for an IAM user * ```javascript * // The following command deletes the specified signing certificate for the IAM user named Anika. * const input = { - * "CertificateId": "TA7SMP42TDN5Z26OBPJE7EXAMPLE", - * "UserName": "Anika" + * CertificateId: "TA7SMP42TDN5Z26OBPJE7EXAMPLE", + * UserName: "Anika" * }; * const command = new DeleteSigningCertificateCommand(input); - * await client.send(command); - * // example id: e3357586-ba9c-4070-b35b-d1a899b71987 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteSigningCertificateCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/DeleteUserCommand.ts b/clients/client-iam/src/commands/DeleteUserCommand.ts index 04d1ffd3fdaea..7a53469167af6 100644 --- a/clients/client-iam/src/commands/DeleteUserCommand.ts +++ b/clients/client-iam/src/commands/DeleteUserCommand.ts @@ -105,18 +105,21 @@ export interface DeleteUserCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To delete an IAM user * ```javascript * // The following command removes the IAM user named Bob from the current account. * const input = { - * "UserName": "Bob" + * UserName: "Bob" * }; * const command = new DeleteUserCommand(input); - * await client.send(command); - * // example id: a13dc3f9-59fe-42d9-abbb-fb98b204fdf0 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteUserCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/DeleteUserPermissionsBoundaryCommand.ts b/clients/client-iam/src/commands/DeleteUserPermissionsBoundaryCommand.ts index 41b0ca9d83cd7..5f7acb21a9424 100644 --- a/clients/client-iam/src/commands/DeleteUserPermissionsBoundaryCommand.ts +++ b/clients/client-iam/src/commands/DeleteUserPermissionsBoundaryCommand.ts @@ -69,6 +69,7 @@ export interface DeleteUserPermissionsBoundaryCommandOutput extends __MetadataBe * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DeleteUserPermissionsBoundaryCommand extends $Command diff --git a/clients/client-iam/src/commands/DeleteUserPolicyCommand.ts b/clients/client-iam/src/commands/DeleteUserPolicyCommand.ts index 239a7f570352b..7dd04616335e5 100644 --- a/clients/client-iam/src/commands/DeleteUserPolicyCommand.ts +++ b/clients/client-iam/src/commands/DeleteUserPolicyCommand.ts @@ -71,19 +71,22 @@ export interface DeleteUserPolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To remove a policy from an IAM user * ```javascript * // The following delete-user-policy command removes the specified policy from the IAM user named Juan: * const input = { - * "PolicyName": "ExamplePolicy", - * "UserName": "Juan" + * PolicyName: "ExamplePolicy", + * UserName: "Juan" * }; * const command = new DeleteUserPolicyCommand(input); - * await client.send(command); - * // example id: 34f07ddc-9bc1-4f52-bc59-cd0a3ccd06c8 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteUserPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/DeleteVirtualMFADeviceCommand.ts b/clients/client-iam/src/commands/DeleteVirtualMFADeviceCommand.ts index eb9b18e8f286e..0786ce1a222aa 100644 --- a/clients/client-iam/src/commands/DeleteVirtualMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/DeleteVirtualMFADeviceCommand.ts @@ -77,18 +77,21 @@ export interface DeleteVirtualMFADeviceCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To remove a virtual MFA device * ```javascript * // The following delete-virtual-mfa-device command removes the specified MFA device from the current AWS account. * const input = { - * "SerialNumber": "arn:aws:iam::123456789012:mfa/ExampleName" + * SerialNumber: "arn:aws:iam::123456789012:mfa/ExampleName" * }; * const command = new DeleteVirtualMFADeviceCommand(input); - * await client.send(command); - * // example id: 2933b08b-dbe7-4b89-b8c1-fdf75feea1ee + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteVirtualMFADeviceCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/DetachGroupPolicyCommand.ts b/clients/client-iam/src/commands/DetachGroupPolicyCommand.ts index e3de982cc2d20..4b190f8ac4e70 100644 --- a/clients/client-iam/src/commands/DetachGroupPolicyCommand.ts +++ b/clients/client-iam/src/commands/DetachGroupPolicyCommand.ts @@ -74,6 +74,7 @@ export interface DetachGroupPolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DetachGroupPolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/DetachRolePolicyCommand.ts b/clients/client-iam/src/commands/DetachRolePolicyCommand.ts index b2f8b008a0379..980095d75b3c6 100644 --- a/clients/client-iam/src/commands/DetachRolePolicyCommand.ts +++ b/clients/client-iam/src/commands/DetachRolePolicyCommand.ts @@ -80,6 +80,7 @@ export interface DetachRolePolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DetachRolePolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/DetachUserPolicyCommand.ts b/clients/client-iam/src/commands/DetachUserPolicyCommand.ts index 469ff2e2db0bd..4b82f2c3a7074 100644 --- a/clients/client-iam/src/commands/DetachUserPolicyCommand.ts +++ b/clients/client-iam/src/commands/DetachUserPolicyCommand.ts @@ -74,6 +74,7 @@ export interface DetachUserPolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class DetachUserPolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/DisableOrganizationsRootCredentialsManagementCommand.ts b/clients/client-iam/src/commands/DisableOrganizationsRootCredentialsManagementCommand.ts index 4608fb38da6b3..01e42be27d450 100644 --- a/clients/client-iam/src/commands/DisableOrganizationsRootCredentialsManagementCommand.ts +++ b/clients/client-iam/src/commands/DisableOrganizationsRootCredentialsManagementCommand.ts @@ -84,24 +84,24 @@ export interface DisableOrganizationsRootCredentialsManagementCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To disable the RootCredentialsManagement feature in your organization * ```javascript * // The following command disables the management of privileged root user credentials across member accounts in your organization. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DisableOrganizationsRootCredentialsManagementCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EnabledFeatures": [ + * EnabledFeatures: [ * "RootSessions" * ], - * "OrganizationId": "o-aa111bb222" + * OrganizationId: "o-aa111bb222" * } * *\/ - * // example id: to-disable-the-rootcredentialsmanagement-feature-in-your-organization-1730908292211 * ``` * + * @public */ export class DisableOrganizationsRootCredentialsManagementCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/DisableOrganizationsRootSessionsCommand.ts b/clients/client-iam/src/commands/DisableOrganizationsRootSessionsCommand.ts index f4ba4adfdb1aa..8b7b40072e7da 100644 --- a/clients/client-iam/src/commands/DisableOrganizationsRootSessionsCommand.ts +++ b/clients/client-iam/src/commands/DisableOrganizationsRootSessionsCommand.ts @@ -80,24 +80,24 @@ export interface DisableOrganizationsRootSessionsCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To disable the RootSessions feature in your organization * ```javascript * // The following command disables root user sessions for privileged tasks across member accounts in your organization. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DisableOrganizationsRootSessionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EnabledFeatures": [ + * EnabledFeatures: [ * "RootCredentialsManagement" * ], - * "OrganizationId": "o-aa111bb222" + * OrganizationId: "o-aa111bb222" * } * *\/ - * // example id: to-disable-the-rootsessions-feature-in-your-organization-1730908495962 * ``` * + * @public */ export class DisableOrganizationsRootSessionsCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/EnableMFADeviceCommand.ts b/clients/client-iam/src/commands/EnableMFADeviceCommand.ts index 64dd1eecd6163..5892eef8938e5 100644 --- a/clients/client-iam/src/commands/EnableMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/EnableMFADeviceCommand.ts @@ -88,6 +88,7 @@ export interface EnableMFADeviceCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class EnableMFADeviceCommand extends $Command diff --git a/clients/client-iam/src/commands/EnableOrganizationsRootCredentialsManagementCommand.ts b/clients/client-iam/src/commands/EnableOrganizationsRootCredentialsManagementCommand.ts index 6a88ffe5dc083..bed72f04e54c3 100644 --- a/clients/client-iam/src/commands/EnableOrganizationsRootCredentialsManagementCommand.ts +++ b/clients/client-iam/src/commands/EnableOrganizationsRootCredentialsManagementCommand.ts @@ -100,24 +100,24 @@ export interface EnableOrganizationsRootCredentialsManagementCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To enable the RootCredentialsManagement feature in your organization * ```javascript * // The following command enables the management of privileged root user credentials across member accounts in your organization. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new EnableOrganizationsRootCredentialsManagementCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EnabledFeatures": [ + * EnabledFeatures: [ * "RootCredentialsManagement" * ], - * "OrganizationId": "o-aa111bb222" + * OrganizationId: "o-aa111bb222" * } * *\/ - * // example id: to-enable-the-rootcredentialsmanagement-feature-in-your-organization-1730908602395 * ``` * + * @public */ export class EnableOrganizationsRootCredentialsManagementCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/EnableOrganizationsRootSessionsCommand.ts b/clients/client-iam/src/commands/EnableOrganizationsRootSessionsCommand.ts index ba80675591f43..da57cf3fa3dad 100644 --- a/clients/client-iam/src/commands/EnableOrganizationsRootSessionsCommand.ts +++ b/clients/client-iam/src/commands/EnableOrganizationsRootSessionsCommand.ts @@ -95,25 +95,25 @@ export interface EnableOrganizationsRootSessionsCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To enable the RootSessions feature in your organization * ```javascript * // The following command allows the management account or delegated administrator to perform privileged tasks on member accounts in your organization. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new EnableOrganizationsRootSessionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EnabledFeatures": [ + * EnabledFeatures: [ * "RootCredentialsManagement", * "RootSessions" * ], - * "OrganizationId": "o-aa111bb222" + * OrganizationId: "o-aa111bb222" * } * *\/ - * // example id: to-enable-the-rootsessions-feature-in-your-organization-1730908736611 * ``` * + * @public */ export class EnableOrganizationsRootSessionsCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/GenerateCredentialReportCommand.ts b/clients/client-iam/src/commands/GenerateCredentialReportCommand.ts index 2b6dec31f312a..d534273fcf092 100644 --- a/clients/client-iam/src/commands/GenerateCredentialReportCommand.ts +++ b/clients/client-iam/src/commands/GenerateCredentialReportCommand.ts @@ -64,6 +64,7 @@ export interface GenerateCredentialReportCommandOutput extends GenerateCredentia * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GenerateCredentialReportCommand extends $Command diff --git a/clients/client-iam/src/commands/GenerateOrganizationsAccessReportCommand.ts b/clients/client-iam/src/commands/GenerateOrganizationsAccessReportCommand.ts index 428442c8f3988..e61e2a0dd7f6d 100644 --- a/clients/client-iam/src/commands/GenerateOrganizationsAccessReportCommand.ts +++ b/clients/client-iam/src/commands/GenerateOrganizationsAccessReportCommand.ts @@ -198,23 +198,23 @@ export interface GenerateOrganizationsAccessReportCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To generate a service last accessed data report for an organizational unit * ```javascript * // The following operation generates a report for the organizational unit ou-rge0-awexample * const input = { - * "EntityPath": "o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-1a2b3c-k9l8m7n6o5example" + * EntityPath: "o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-1a2b3c-k9l8m7n6o5example" * }; * const command = new GenerateOrganizationsAccessReportCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "JobId": "examplea-1234-b567-cde8-90fg123abcd4" + * JobId: "examplea-1234-b567-cde8-90fg123abcd4" * } * *\/ - * // example id: generateorganizationsaccessreport-ou * ``` * + * @public */ export class GenerateOrganizationsAccessReportCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/GenerateServiceLastAccessedDetailsCommand.ts b/clients/client-iam/src/commands/GenerateServiceLastAccessedDetailsCommand.ts index 7f8e293b9f18d..2a48dae860de4 100644 --- a/clients/client-iam/src/commands/GenerateServiceLastAccessedDetailsCommand.ts +++ b/clients/client-iam/src/commands/GenerateServiceLastAccessedDetailsCommand.ts @@ -127,23 +127,23 @@ export interface GenerateServiceLastAccessedDetailsCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To generate a service last accessed data report for a policy * ```javascript * // The following operation generates a report for the policy: ExamplePolicy1 * const input = { - * "Arn": "arn:aws:iam::123456789012:policy/ExamplePolicy1" + * Arn: "arn:aws:iam::123456789012:policy/ExamplePolicy1" * }; * const command = new GenerateServiceLastAccessedDetailsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "JobId": "examplef-1305-c245-eba4-71fe298bcda7" + * JobId: "examplef-1305-c245-eba4-71fe298bcda7" * } * *\/ - * // example id: generateaccessdata-policy-1541695178514 * ``` * + * @public */ export class GenerateServiceLastAccessedDetailsCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/GetAccessKeyLastUsedCommand.ts b/clients/client-iam/src/commands/GetAccessKeyLastUsedCommand.ts index 81408962962c5..3ff91a646b0bf 100644 --- a/clients/client-iam/src/commands/GetAccessKeyLastUsedCommand.ts +++ b/clients/client-iam/src/commands/GetAccessKeyLastUsedCommand.ts @@ -62,6 +62,7 @@ export interface GetAccessKeyLastUsedCommandOutput extends GetAccessKeyLastUsedR * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetAccessKeyLastUsedCommand extends $Command diff --git a/clients/client-iam/src/commands/GetAccountAuthorizationDetailsCommand.ts b/clients/client-iam/src/commands/GetAccountAuthorizationDetailsCommand.ts index 943cd1559f3a8..56a2221f53b67 100644 --- a/clients/client-iam/src/commands/GetAccountAuthorizationDetailsCommand.ts +++ b/clients/client-iam/src/commands/GetAccountAuthorizationDetailsCommand.ts @@ -227,6 +227,7 @@ export interface GetAccountAuthorizationDetailsCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetAccountAuthorizationDetailsCommand extends $Command diff --git a/clients/client-iam/src/commands/GetAccountPasswordPolicyCommand.ts b/clients/client-iam/src/commands/GetAccountPasswordPolicyCommand.ts index cc4d94185958e..0c2debdd6fb84 100644 --- a/clients/client-iam/src/commands/GetAccountPasswordPolicyCommand.ts +++ b/clients/client-iam/src/commands/GetAccountPasswordPolicyCommand.ts @@ -75,32 +75,32 @@ export interface GetAccountPasswordPolicyCommandOutput extends GetAccountPasswor * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To see the current account password policy * ```javascript * // The following command displays details about the password policy for the current AWS account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new GetAccountPasswordPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "PasswordPolicy": { - * "AllowUsersToChangePassword": false, - * "ExpirePasswords": false, - * "HardExpiry": false, - * "MaxPasswordAge": 90, - * "MinimumPasswordLength": 8, - * "PasswordReusePrevention": 12, - * "RequireLowercaseCharacters": false, - * "RequireNumbers": true, - * "RequireSymbols": true, - * "RequireUppercaseCharacters": false + * PasswordPolicy: { + * AllowUsersToChangePassword: false, + * ExpirePasswords: false, + * HardExpiry: false, + * MaxPasswordAge: 90, + * MinimumPasswordLength: 8, + * PasswordReusePrevention: 12, + * RequireLowercaseCharacters: false, + * RequireNumbers: true, + * RequireSymbols: true, + * RequireUppercaseCharacters: false * } * } * *\/ - * // example id: 5e4598c7-c425-431f-8af1-19073b3c4a5f * ``` * + * @public */ export class GetAccountPasswordPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/GetAccountSummaryCommand.ts b/clients/client-iam/src/commands/GetAccountSummaryCommand.ts index 1fde1281b413f..2070e330ad52a 100644 --- a/clients/client-iam/src/commands/GetAccountSummaryCommand.ts +++ b/clients/client-iam/src/commands/GetAccountSummaryCommand.ts @@ -62,48 +62,48 @@ export interface GetAccountSummaryCommandOutput extends GetAccountSummaryRespons * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To get information about IAM entity quotas and usage in the current account * ```javascript * // The following command returns information about the IAM entity quotas and usage in the current AWS account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new GetAccountSummaryCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SummaryMap": { - * "AccessKeysPerUserQuota": 2, - * "AccountAccessKeysPresent": 1, - * "AccountMFAEnabled": 0, - * "AccountSigningCertificatesPresent": 0, - * "AttachedPoliciesPerGroupQuota": 10, - * "AttachedPoliciesPerRoleQuota": 10, - * "AttachedPoliciesPerUserQuota": 10, - * "GlobalEndpointTokenVersion": 2, - * "GroupPolicySizeQuota": 5120, - * "Groups": 15, - * "GroupsPerUserQuota": 10, - * "GroupsQuota": 100, - * "MFADevices": 6, - * "MFADevicesInUse": 3, - * "Policies": 8, - * "PoliciesQuota": 1000, - * "PolicySizeQuota": 5120, - * "PolicyVersionsInUse": 22, - * "PolicyVersionsInUseQuota": 10000, - * "ServerCertificates": 1, - * "ServerCertificatesQuota": 20, - * "SigningCertificatesPerUserQuota": 2, - * "UserPolicySizeQuota": 2048, - * "Users": 27, - * "UsersQuota": 5000, - * "VersionsPerPolicyQuota": 5 + * SummaryMap: { + * AccessKeysPerUserQuota: 2, + * AccountAccessKeysPresent: 1, + * AccountMFAEnabled: 0, + * AccountSigningCertificatesPresent: 0, + * AttachedPoliciesPerGroupQuota: 10, + * AttachedPoliciesPerRoleQuota: 10, + * AttachedPoliciesPerUserQuota: 10, + * GlobalEndpointTokenVersion: 2, + * GroupPolicySizeQuota: 5120, + * Groups: 15, + * GroupsPerUserQuota: 10, + * GroupsQuota: 100, + * MFADevices: 6, + * MFADevicesInUse: 3, + * Policies: 8, + * PoliciesQuota: 1000, + * PolicySizeQuota: 5120, + * PolicyVersionsInUse: 22, + * PolicyVersionsInUseQuota: 10000, + * ServerCertificates: 1, + * ServerCertificatesQuota: 20, + * SigningCertificatesPerUserQuota: 2, + * UserPolicySizeQuota: 2048, + * Users: 27, + * UsersQuota: 5000, + * VersionsPerPolicyQuota: 5 * } * } * *\/ - * // example id: 9d8447af-f344-45de-8219-2cebc3cce7f2 * ``` * + * @public */ export class GetAccountSummaryCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/GetContextKeysForCustomPolicyCommand.ts b/clients/client-iam/src/commands/GetContextKeysForCustomPolicyCommand.ts index abdb1896c7e95..54197a38568ca 100644 --- a/clients/client-iam/src/commands/GetContextKeysForCustomPolicyCommand.ts +++ b/clients/client-iam/src/commands/GetContextKeysForCustomPolicyCommand.ts @@ -75,6 +75,7 @@ export interface GetContextKeysForCustomPolicyCommandOutput extends GetContextKe * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetContextKeysForCustomPolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/GetContextKeysForPrincipalPolicyCommand.ts b/clients/client-iam/src/commands/GetContextKeysForPrincipalPolicyCommand.ts index 186fbbd4cb2cc..4170b4c80f26a 100644 --- a/clients/client-iam/src/commands/GetContextKeysForPrincipalPolicyCommand.ts +++ b/clients/client-iam/src/commands/GetContextKeysForPrincipalPolicyCommand.ts @@ -86,6 +86,7 @@ export interface GetContextKeysForPrincipalPolicyCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetContextKeysForPrincipalPolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/GetCredentialReportCommand.ts b/clients/client-iam/src/commands/GetCredentialReportCommand.ts index c017a1d315cd0..5a74341f84a07 100644 --- a/clients/client-iam/src/commands/GetCredentialReportCommand.ts +++ b/clients/client-iam/src/commands/GetCredentialReportCommand.ts @@ -74,6 +74,7 @@ export interface GetCredentialReportCommandOutput extends GetCredentialReportRes * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetCredentialReportCommand extends $Command diff --git a/clients/client-iam/src/commands/GetGroupCommand.ts b/clients/client-iam/src/commands/GetGroupCommand.ts index d5d6be114ae81..c17144fd797d7 100644 --- a/clients/client-iam/src/commands/GetGroupCommand.ts +++ b/clients/client-iam/src/commands/GetGroupCommand.ts @@ -94,6 +94,7 @@ export interface GetGroupCommandOutput extends GetGroupResponse, __MetadataBeare * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetGroupCommand extends $Command diff --git a/clients/client-iam/src/commands/GetGroupPolicyCommand.ts b/clients/client-iam/src/commands/GetGroupPolicyCommand.ts index b4123e8755c2b..2f8685df53f7b 100644 --- a/clients/client-iam/src/commands/GetGroupPolicyCommand.ts +++ b/clients/client-iam/src/commands/GetGroupPolicyCommand.ts @@ -80,6 +80,7 @@ export interface GetGroupPolicyCommandOutput extends GetGroupPolicyResponse, __M * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetGroupPolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/GetInstanceProfileCommand.ts b/clients/client-iam/src/commands/GetInstanceProfileCommand.ts index e58f4516d2fde..4a854a9fc3894 100644 --- a/clients/client-iam/src/commands/GetInstanceProfileCommand.ts +++ b/clients/client-iam/src/commands/GetInstanceProfileCommand.ts @@ -104,39 +104,39 @@ export interface GetInstanceProfileCommandOutput extends GetInstanceProfileRespo * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To get information about an instance profile * ```javascript * // The following command gets information about the instance profile named ExampleInstanceProfile. * const input = { - * "InstanceProfileName": "ExampleInstanceProfile" + * InstanceProfileName: "ExampleInstanceProfile" * }; * const command = new GetInstanceProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InstanceProfile": { - * "Arn": "arn:aws:iam::336924118301:instance-profile/ExampleInstanceProfile", - * "CreateDate": "2013-06-12T23:52:02Z", - * "InstanceProfileId": "AID2MAB8DPLSRHEXAMPLE", - * "InstanceProfileName": "ExampleInstanceProfile", - * "Path": "/", - * "Roles": [ + * InstanceProfile: { + * Arn: "arn:aws:iam::336924118301:instance-profile/ExampleInstanceProfile", + * CreateDate: "2013-06-12T23:52:02Z", + * InstanceProfileId: "AID2MAB8DPLSRHEXAMPLE", + * InstanceProfileName: "ExampleInstanceProfile", + * Path: "/", + * Roles: [ * { - * "Arn": "arn:aws:iam::336924118301:role/Test-Role", - * "AssumeRolePolicyDocument": "", - * "CreateDate": "2013-01-09T06:33:26Z", - * "Path": "/", - * "RoleId": "AIDGPMS9RO4H3FEXAMPLE", - * "RoleName": "Test-Role" + * Arn: "arn:aws:iam::336924118301:role/Test-Role", + * AssumeRolePolicyDocument: "", + * CreateDate: "2013-01-09T06:33:26Z", + * Path: "/", + * RoleId: "AIDGPMS9RO4H3FEXAMPLE", + * RoleName: "Test-Role" * } * ] * } * } * *\/ - * // example id: 463b9ba5-18cc-4608-9ccb-5a7c6b6e5fe7 * ``` * + * @public */ export class GetInstanceProfileCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/GetLoginProfileCommand.ts b/clients/client-iam/src/commands/GetLoginProfileCommand.ts index 3eedab564f02c..49f1a068e732f 100644 --- a/clients/client-iam/src/commands/GetLoginProfileCommand.ts +++ b/clients/client-iam/src/commands/GetLoginProfileCommand.ts @@ -76,26 +76,26 @@ export interface GetLoginProfileCommandOutput extends GetLoginProfileResponse, _ * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To get password information for an IAM user * ```javascript * // The following command gets information about the password for the IAM user named Anika. * const input = { - * "UserName": "Anika" + * UserName: "Anika" * }; * const command = new GetLoginProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LoginProfile": { - * "CreateDate": "2012-09-21T23:03:39Z", - * "UserName": "Anika" + * LoginProfile: { + * CreateDate: "2012-09-21T23:03:39Z", + * UserName: "Anika" * } * } * *\/ - * // example id: d6b580cc-909f-4925-9caa-d425cbc1ad47 * ``` * + * @public */ export class GetLoginProfileCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/GetMFADeviceCommand.ts b/clients/client-iam/src/commands/GetMFADeviceCommand.ts index b9603a581f35f..f752dc35b9b20 100644 --- a/clients/client-iam/src/commands/GetMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/GetMFADeviceCommand.ts @@ -69,6 +69,7 @@ export interface GetMFADeviceCommandOutput extends GetMFADeviceResponse, __Metad * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetMFADeviceCommand extends $Command diff --git a/clients/client-iam/src/commands/GetOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/GetOpenIDConnectProviderCommand.ts index d71e695df40bc..0641a9a8548ae 100644 --- a/clients/client-iam/src/commands/GetOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/GetOpenIDConnectProviderCommand.ts @@ -81,6 +81,7 @@ export interface GetOpenIDConnectProviderCommandOutput extends GetOpenIDConnectP * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetOpenIDConnectProviderCommand extends $Command diff --git a/clients/client-iam/src/commands/GetOrganizationsAccessReportCommand.ts b/clients/client-iam/src/commands/GetOrganizationsAccessReportCommand.ts index 5e204565c9648..31f0931e7d859 100644 --- a/clients/client-iam/src/commands/GetOrganizationsAccessReportCommand.ts +++ b/clients/client-iam/src/commands/GetOrganizationsAccessReportCommand.ts @@ -102,51 +102,51 @@ export interface GetOrganizationsAccessReportCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To get details from a previously generated organizational unit report * ```javascript * // The following operation gets details about the report with the job ID: examplea-1234-b567-cde8-90fg123abcd4 * const input = { - * "JobId": "examplea-1234-b567-cde8-90fg123abcd4" + * JobId: "examplea-1234-b567-cde8-90fg123abcd4" * }; * const command = new GetOrganizationsAccessReportCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AccessDetails": [ + * AccessDetails: [ * { - * "EntityPath": "o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-1a2b3c-k9l8m7n6o5example/111122223333", - * "LastAuthenticatedTime": "2019-05-25T16:29:52Z", - * "Region": "us-east-1", - * "ServiceName": "Amazon DynamoDB", - * "ServiceNamespace": "dynamodb", - * "TotalAuthenticatedEntities": 2 + * EntityPath: "o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-1a2b3c-k9l8m7n6o5example/111122223333", + * LastAuthenticatedTime: "2019-05-25T16:29:52Z", + * Region: "us-east-1", + * ServiceName: "Amazon DynamoDB", + * ServiceNamespace: "dynamodb", + * TotalAuthenticatedEntities: 2 * }, * { - * "EntityPath": "o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-1a2b3c-k9l8m7n6o5example/123456789012", - * "LastAuthenticatedTime": "2019-06-15T13:12:06Z", - * "Region": "us-east-1", - * "ServiceName": "AWS Identity and Access Management", - * "ServiceNamespace": "iam", - * "TotalAuthenticatedEntities": 4 + * EntityPath: "o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-1a2b3c-k9l8m7n6o5example/123456789012", + * LastAuthenticatedTime: "2019-06-15T13:12:06Z", + * Region: "us-east-1", + * ServiceName: "AWS Identity and Access Management", + * ServiceNamespace: "iam", + * TotalAuthenticatedEntities: 4 * }, * { - * "ServiceName": "Amazon Simple Storage Service", - * "ServiceNamespace": "s3", - * "TotalAuthenticatedEntities": 0 + * ServiceName: "Amazon Simple Storage Service", + * ServiceNamespace: "s3", + * TotalAuthenticatedEntities: 0 * } * ], - * "IsTruncated": false, - * "JobCompletionDate": "2019-06-18T19:47:35.241Z", - * "JobCreationDate": "2019-06-18T19:47:31.466Z", - * "JobStatus": "COMPLETED", - * "NumberOfServicesAccessible": 3, - * "NumberOfServicesNotAccessed": 1 + * IsTruncated: false, + * JobCompletionDate: "2019-06-18T19:47:35.241Z", + * JobCreationDate: "2019-06-18T19:47:31.466Z", + * JobStatus: "COMPLETED", + * NumberOfServicesAccessible: 3, + * NumberOfServicesNotAccessed: 1 * } * *\/ - * // example id: getorganizationsaccessreport-ou * ``` * + * @public */ export class GetOrganizationsAccessReportCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/GetPolicyCommand.ts b/clients/client-iam/src/commands/GetPolicyCommand.ts index a7f3349a57def..6092783c945ec 100644 --- a/clients/client-iam/src/commands/GetPolicyCommand.ts +++ b/clients/client-iam/src/commands/GetPolicyCommand.ts @@ -94,6 +94,7 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetPolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/GetPolicyVersionCommand.ts b/clients/client-iam/src/commands/GetPolicyVersionCommand.ts index f404e8e463b47..68224bb45f2f8 100644 --- a/clients/client-iam/src/commands/GetPolicyVersionCommand.ts +++ b/clients/client-iam/src/commands/GetPolicyVersionCommand.ts @@ -88,6 +88,7 @@ export interface GetPolicyVersionCommandOutput extends GetPolicyVersionResponse, * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetPolicyVersionCommand extends $Command diff --git a/clients/client-iam/src/commands/GetRoleCommand.ts b/clients/client-iam/src/commands/GetRoleCommand.ts index 60530cf1d389a..fe9011f56e433 100644 --- a/clients/client-iam/src/commands/GetRoleCommand.ts +++ b/clients/client-iam/src/commands/GetRoleCommand.ts @@ -96,35 +96,35 @@ export interface GetRoleCommandOutput extends GetRoleResponse, __MetadataBearer * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To get information about an IAM role * ```javascript * // The following command gets information about the role named Test-Role. * const input = { - * "RoleName": "Test-Role" + * RoleName: "Test-Role" * }; * const command = new GetRoleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Role": { - * "Arn": "arn:aws:iam::123456789012:role/Test-Role", - * "AssumeRolePolicyDocument": "", - * "CreateDate": "2013-04-18T05:01:58Z", - * "MaxSessionDuration": 3600, - * "Path": "/", - * "RoleId": "AROADBQP57FF2AEXAMPLE", - * "RoleLastUsed": { - * "LastUsedDate": "2019-11-18T05:01:58Z", - * "Region": "us-east-1" + * Role: { + * Arn: "arn:aws:iam::123456789012:role/Test-Role", + * AssumeRolePolicyDocument: "", + * CreateDate: "2013-04-18T05:01:58Z", + * MaxSessionDuration: 3600, + * Path: "/", + * RoleId: "AROADBQP57FF2AEXAMPLE", + * RoleLastUsed: { + * LastUsedDate: "2019-11-18T05:01:58Z", + * Region: "us-east-1" * }, - * "RoleName": "Test-Role" + * RoleName: "Test-Role" * } * } * *\/ - * // example id: 5b7d03a6-340c-472d-aa77-56425950d8b0 * ``` * + * @public */ export class GetRoleCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/GetRolePolicyCommand.ts b/clients/client-iam/src/commands/GetRolePolicyCommand.ts index 265a907d1d575..fce0a3ddbe0be 100644 --- a/clients/client-iam/src/commands/GetRolePolicyCommand.ts +++ b/clients/client-iam/src/commands/GetRolePolicyCommand.ts @@ -82,6 +82,7 @@ export interface GetRolePolicyCommandOutput extends GetRolePolicyResponse, __Met * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetRolePolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/GetSAMLProviderCommand.ts b/clients/client-iam/src/commands/GetSAMLProviderCommand.ts index b1e29b7a398d0..051e95e454166 100644 --- a/clients/client-iam/src/commands/GetSAMLProviderCommand.ts +++ b/clients/client-iam/src/commands/GetSAMLProviderCommand.ts @@ -87,6 +87,7 @@ export interface GetSAMLProviderCommandOutput extends GetSAMLProviderResponse, _ * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetSAMLProviderCommand extends $Command diff --git a/clients/client-iam/src/commands/GetSSHPublicKeyCommand.ts b/clients/client-iam/src/commands/GetSSHPublicKeyCommand.ts index 292776dce6ba9..a37cffcc31dd1 100644 --- a/clients/client-iam/src/commands/GetSSHPublicKeyCommand.ts +++ b/clients/client-iam/src/commands/GetSSHPublicKeyCommand.ts @@ -76,6 +76,7 @@ export interface GetSSHPublicKeyCommandOutput extends GetSSHPublicKeyResponse, _ * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetSSHPublicKeyCommand extends $Command diff --git a/clients/client-iam/src/commands/GetServerCertificateCommand.ts b/clients/client-iam/src/commands/GetServerCertificateCommand.ts index ffc3d0b8c6ae2..f0711d86a6d9a 100644 --- a/clients/client-iam/src/commands/GetServerCertificateCommand.ts +++ b/clients/client-iam/src/commands/GetServerCertificateCommand.ts @@ -84,6 +84,7 @@ export interface GetServerCertificateCommandOutput extends GetServerCertificateR * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetServerCertificateCommand extends $Command diff --git a/clients/client-iam/src/commands/GetServiceLastAccessedDetailsCommand.ts b/clients/client-iam/src/commands/GetServiceLastAccessedDetailsCommand.ts index e300a39c79ee2..7de8943faf020 100644 --- a/clients/client-iam/src/commands/GetServiceLastAccessedDetailsCommand.ts +++ b/clients/client-iam/src/commands/GetServiceLastAccessedDetailsCommand.ts @@ -148,40 +148,40 @@ export interface GetServiceLastAccessedDetailsCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To get details from a previously-generated report * ```javascript * // The following operation gets details about the report with the job ID: examplef-1305-c245-eba4-71fe298bcda7 * const input = { - * "JobId": "examplef-1305-c245-eba4-71fe298bcda7" + * JobId: "examplef-1305-c245-eba4-71fe298bcda7" * }; * const command = new GetServiceLastAccessedDetailsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "IsTruncated": false, - * "JobCompletionDate": "2018-10-24T19:47:35.241Z", - * "JobCreationDate": "2018-10-24T19:47:31.466Z", - * "JobStatus": "COMPLETED", - * "ServicesLastAccessed": [ + * IsTruncated: false, + * JobCompletionDate: "2018-10-24T19:47:35.241Z", + * JobCreationDate: "2018-10-24T19:47:31.466Z", + * JobStatus: "COMPLETED", + * ServicesLastAccessed: [ * { - * "LastAuthenticated": "2018-10-24T19:11:00Z", - * "LastAuthenticatedEntity": "arn:aws:iam::123456789012:user/AWSExampleUser01", - * "ServiceName": "AWS Identity and Access Management", - * "ServiceNamespace": "iam", - * "TotalAuthenticatedEntities": 2 + * LastAuthenticated: "2018-10-24T19:11:00Z", + * LastAuthenticatedEntity: "arn:aws:iam::123456789012:user/AWSExampleUser01", + * ServiceName: "AWS Identity and Access Management", + * ServiceNamespace: "iam", + * TotalAuthenticatedEntities: 2 * }, * { - * "ServiceName": "Amazon Simple Storage Service", - * "ServiceNamespace": "s3", - * "TotalAuthenticatedEntities": 0 + * ServiceName: "Amazon Simple Storage Service", + * ServiceNamespace: "s3", + * TotalAuthenticatedEntities: 0 * } * ] * } * *\/ - * // example id: getserviceaccessdetails-policy-1541696298085 * ``` * + * @public */ export class GetServiceLastAccessedDetailsCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.ts b/clients/client-iam/src/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.ts index 31a26d44e12fb..fbb5fbb1c7b0a 100644 --- a/clients/client-iam/src/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.ts +++ b/clients/client-iam/src/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.ts @@ -120,48 +120,48 @@ export interface GetServiceLastAccessedDetailsWithEntitiesCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To get sntity details from a previously-generated report * ```javascript * // The following operation returns details about the entities that attempted to access the IAM service. * const input = { - * "JobId": "examplef-1305-c245-eba4-71fe298bcda7", - * "ServiceNamespace": "iam" + * JobId: "examplef-1305-c245-eba4-71fe298bcda7", + * ServiceNamespace: "iam" * }; * const command = new GetServiceLastAccessedDetailsWithEntitiesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EntityDetailsList": [ + * EntityDetailsList: [ * { - * "EntityInfo": { - * "Arn": "arn:aws:iam::123456789012:user/AWSExampleUser01", - * "Id": "AIDAEX2EXAMPLEB6IGCDC", - * "Name": "AWSExampleUser01", - * "Path": "/", - * "Type": "USER" + * EntityInfo: { + * Arn: "arn:aws:iam::123456789012:user/AWSExampleUser01", + * Id: "AIDAEX2EXAMPLEB6IGCDC", + * Name: "AWSExampleUser01", + * Path: "/", + * Type: "USER" * }, - * "LastAuthenticated": "2018-10-24T19:10:00Z" + * LastAuthenticated: "2018-10-24T19:10:00Z" * }, * { - * "EntityInfo": { - * "Arn": "arn:aws:iam::123456789012:role/AWSExampleRole01", - * "Id": "AROAEAEXAMPLEIANXSIU4", - * "Name": "AWSExampleRole01", - * "Path": "/", - * "Type": "ROLE" + * EntityInfo: { + * Arn: "arn:aws:iam::123456789012:role/AWSExampleRole01", + * Id: "AROAEAEXAMPLEIANXSIU4", + * Name: "AWSExampleRole01", + * Path: "/", + * Type: "ROLE" * } * } * ], - * "IsTruncated": false, - * "JobCompletionDate": "2018-10-24T19:47:35.241Z", - * "JobCreationDate": "2018-10-24T19:47:31.466Z", - * "JobStatus": "COMPLETED" + * IsTruncated: false, + * JobCompletionDate: "2018-10-24T19:47:35.241Z", + * JobCreationDate: "2018-10-24T19:47:31.466Z", + * JobStatus: "COMPLETED" * } * *\/ - * // example id: getserviceaccessdetailsentity-policy-1541697621384 * ``` * + * @public */ export class GetServiceLastAccessedDetailsWithEntitiesCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/GetServiceLinkedRoleDeletionStatusCommand.ts b/clients/client-iam/src/commands/GetServiceLinkedRoleDeletionStatusCommand.ts index 87be3232921d5..f22148c6fbe78 100644 --- a/clients/client-iam/src/commands/GetServiceLinkedRoleDeletionStatusCommand.ts +++ b/clients/client-iam/src/commands/GetServiceLinkedRoleDeletionStatusCommand.ts @@ -90,6 +90,7 @@ export interface GetServiceLinkedRoleDeletionStatusCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetServiceLinkedRoleDeletionStatusCommand extends $Command diff --git a/clients/client-iam/src/commands/GetUserCommand.ts b/clients/client-iam/src/commands/GetUserCommand.ts index 4033ca274e071..7f4d62af922b7 100644 --- a/clients/client-iam/src/commands/GetUserCommand.ts +++ b/clients/client-iam/src/commands/GetUserCommand.ts @@ -83,29 +83,29 @@ export interface GetUserCommandOutput extends GetUserResponse, __MetadataBearer * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To get information about an IAM user * ```javascript * // The following command gets information about the IAM user named Bob. * const input = { - * "UserName": "Bob" + * UserName: "Bob" * }; * const command = new GetUserCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "User": { - * "Arn": "arn:aws:iam::123456789012:user/Bob", - * "CreateDate": "2012-09-21T23:03:13Z", - * "Path": "/", - * "UserId": "AKIAIOSFODNN7EXAMPLE", - * "UserName": "Bob" + * User: { + * Arn: "arn:aws:iam::123456789012:user/Bob", + * CreateDate: "2012-09-21T23:03:13Z", + * Path: "/", + * UserId: "AKIAIOSFODNN7EXAMPLE", + * UserName: "Bob" * } * } * *\/ - * // example id: ede000a1-9e4c-40db-bd0a-d4f95e41a6ab * ``` * + * @public */ export class GetUserCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/GetUserPolicyCommand.ts b/clients/client-iam/src/commands/GetUserPolicyCommand.ts index 2cd1426298e0a..431a88f8e0fe7 100644 --- a/clients/client-iam/src/commands/GetUserPolicyCommand.ts +++ b/clients/client-iam/src/commands/GetUserPolicyCommand.ts @@ -80,6 +80,7 @@ export interface GetUserPolicyCommandOutput extends GetUserPolicyResponse, __Met * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class GetUserPolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/ListAccessKeysCommand.ts b/clients/client-iam/src/commands/ListAccessKeysCommand.ts index 6472e520e19bd..4b20bae3fa5cc 100644 --- a/clients/client-iam/src/commands/ListAccessKeysCommand.ts +++ b/clients/client-iam/src/commands/ListAccessKeysCommand.ts @@ -88,36 +88,36 @@ export interface ListAccessKeysCommandOutput extends ListAccessKeysResponse, __M * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To list the access key IDs for an IAM user * ```javascript * // The following command lists the access keys IDs for the IAM user named Alice. * const input = { - * "UserName": "Alice" + * UserName: "Alice" * }; * const command = new ListAccessKeysCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AccessKeyMetadata": [ + * AccessKeyMetadata: [ * { - * "AccessKeyId": "AKIA111111111EXAMPLE", - * "CreateDate": "2016-12-01T22:19:58Z", - * "Status": "Active", - * "UserName": "Alice" + * AccessKeyId: "AKIA111111111EXAMPLE", + * CreateDate: "2016-12-01T22:19:58Z", + * Status: "Active", + * UserName: "Alice" * }, * { - * "AccessKeyId": "AKIA222222222EXAMPLE", - * "CreateDate": "2016-12-01T22:20:01Z", - * "Status": "Active", - * "UserName": "Alice" + * AccessKeyId: "AKIA222222222EXAMPLE", + * CreateDate: "2016-12-01T22:20:01Z", + * Status: "Active", + * UserName: "Alice" * } * ] * } * *\/ - * // example id: 15571463-ebea-411a-a021-1c76bd2a3625 * ``` * + * @public */ export class ListAccessKeysCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/ListAccountAliasesCommand.ts b/clients/client-iam/src/commands/ListAccountAliasesCommand.ts index b2acaf4249aad..fb51288cb5371 100644 --- a/clients/client-iam/src/commands/ListAccountAliasesCommand.ts +++ b/clients/client-iam/src/commands/ListAccountAliasesCommand.ts @@ -67,23 +67,23 @@ export interface ListAccountAliasesCommandOutput extends ListAccountAliasesRespo * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To list account aliases * ```javascript * // The following command lists the aliases for the current account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListAccountAliasesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AccountAliases": [ + * AccountAliases: [ * "exmaple-corporation" * ] * } * *\/ - * // example id: e27b457a-16f9-4e05-a006-3df7b3472741 * ``` * + * @public */ export class ListAccountAliasesCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/ListAttachedGroupPoliciesCommand.ts b/clients/client-iam/src/commands/ListAttachedGroupPoliciesCommand.ts index 514ac14659e62..fd43a187a540d 100644 --- a/clients/client-iam/src/commands/ListAttachedGroupPoliciesCommand.ts +++ b/clients/client-iam/src/commands/ListAttachedGroupPoliciesCommand.ts @@ -86,6 +86,7 @@ export interface ListAttachedGroupPoliciesCommandOutput extends ListAttachedGrou * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListAttachedGroupPoliciesCommand extends $Command diff --git a/clients/client-iam/src/commands/ListAttachedRolePoliciesCommand.ts b/clients/client-iam/src/commands/ListAttachedRolePoliciesCommand.ts index d673b6fc45121..5d28edd99203a 100644 --- a/clients/client-iam/src/commands/ListAttachedRolePoliciesCommand.ts +++ b/clients/client-iam/src/commands/ListAttachedRolePoliciesCommand.ts @@ -86,6 +86,7 @@ export interface ListAttachedRolePoliciesCommandOutput extends ListAttachedRoleP * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListAttachedRolePoliciesCommand extends $Command diff --git a/clients/client-iam/src/commands/ListAttachedUserPoliciesCommand.ts b/clients/client-iam/src/commands/ListAttachedUserPoliciesCommand.ts index 903ed67698ab3..c06e98283804a 100644 --- a/clients/client-iam/src/commands/ListAttachedUserPoliciesCommand.ts +++ b/clients/client-iam/src/commands/ListAttachedUserPoliciesCommand.ts @@ -86,6 +86,7 @@ export interface ListAttachedUserPoliciesCommandOutput extends ListAttachedUserP * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListAttachedUserPoliciesCommand extends $Command diff --git a/clients/client-iam/src/commands/ListEntitiesForPolicyCommand.ts b/clients/client-iam/src/commands/ListEntitiesForPolicyCommand.ts index d63442eafdffa..0fa5619c0a236 100644 --- a/clients/client-iam/src/commands/ListEntitiesForPolicyCommand.ts +++ b/clients/client-iam/src/commands/ListEntitiesForPolicyCommand.ts @@ -98,6 +98,7 @@ export interface ListEntitiesForPolicyCommandOutput extends ListEntitiesForPolic * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListEntitiesForPolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/ListGroupPoliciesCommand.ts b/clients/client-iam/src/commands/ListGroupPoliciesCommand.ts index 6016ff5981fa2..0ca2c34fefa58 100644 --- a/clients/client-iam/src/commands/ListGroupPoliciesCommand.ts +++ b/clients/client-iam/src/commands/ListGroupPoliciesCommand.ts @@ -77,26 +77,26 @@ export interface ListGroupPoliciesCommandOutput extends ListGroupPoliciesRespons * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To list the in-line policies for an IAM group * ```javascript * // The following command lists the names of in-line policies that are embedded in the IAM group named Admins. * const input = { - * "GroupName": "Admins" + * GroupName: "Admins" * }; * const command = new ListGroupPoliciesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "PolicyNames": [ + * PolicyNames: [ * "AdminRoot", * "KeyPolicy" * ] * } * *\/ - * // example id: 02de5095-2410-4d3a-ac1b-cc40234af68f * ``` * + * @public */ export class ListGroupPoliciesCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/ListGroupsCommand.ts b/clients/client-iam/src/commands/ListGroupsCommand.ts index 9d3171729198f..64ec696a970ed 100644 --- a/clients/client-iam/src/commands/ListGroupsCommand.ts +++ b/clients/client-iam/src/commands/ListGroupsCommand.ts @@ -73,43 +73,43 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To list the IAM groups for the current account * ```javascript * // The following command lists the IAM groups in the current account: - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Groups": [ + * Groups: [ * { - * "Arn": "arn:aws:iam::123456789012:group/Admins", - * "CreateDate": "2016-12-15T21:40:08.121Z", - * "GroupId": "AGPA1111111111EXAMPLE", - * "GroupName": "Admins", - * "Path": "/division_abc/subdivision_xyz/" + * Arn: "arn:aws:iam::123456789012:group/Admins", + * CreateDate: "2016-12-15T21:40:08.121Z", + * GroupId: "AGPA1111111111EXAMPLE", + * GroupName: "Admins", + * Path: "/division_abc/subdivision_xyz/" * }, * { - * "Arn": "arn:aws:iam::123456789012:group/division_abc/subdivision_xyz/product_1234/engineering/Test", - * "CreateDate": "2016-11-30T14:10:01.156Z", - * "GroupId": "AGP22222222222EXAMPLE", - * "GroupName": "Test", - * "Path": "/division_abc/subdivision_xyz/product_1234/engineering/" + * Arn: "arn:aws:iam::123456789012:group/division_abc/subdivision_xyz/product_1234/engineering/Test", + * CreateDate: "2016-11-30T14:10:01.156Z", + * GroupId: "AGP22222222222EXAMPLE", + * GroupName: "Test", + * Path: "/division_abc/subdivision_xyz/product_1234/engineering/" * }, * { - * "Arn": "arn:aws:iam::123456789012:group/division_abc/subdivision_xyz/product_1234/Managers", - * "CreateDate": "2016-06-12T20:14:52.032Z", - * "GroupId": "AGPI3333333333EXAMPLE", - * "GroupName": "Managers", - * "Path": "/division_abc/subdivision_xyz/product_1234/" + * Arn: "arn:aws:iam::123456789012:group/division_abc/subdivision_xyz/product_1234/Managers", + * CreateDate: "2016-06-12T20:14:52.032Z", + * GroupId: "AGPI3333333333EXAMPLE", + * GroupName: "Managers", + * Path: "/division_abc/subdivision_xyz/product_1234/" * } * ] * } * *\/ - * // example id: b3ab1380-2a21-42fb-8e85-503f65512c66 * ``` * + * @public */ export class ListGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/ListGroupsForUserCommand.ts b/clients/client-iam/src/commands/ListGroupsForUserCommand.ts index c2be4022dabd5..abe6d12ba2652 100644 --- a/clients/client-iam/src/commands/ListGroupsForUserCommand.ts +++ b/clients/client-iam/src/commands/ListGroupsForUserCommand.ts @@ -77,38 +77,38 @@ export interface ListGroupsForUserCommandOutput extends ListGroupsForUserRespons * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To list the groups that an IAM user belongs to * ```javascript * // The following command displays the groups that the IAM user named Bob belongs to. * const input = { - * "UserName": "Bob" + * UserName: "Bob" * }; * const command = new ListGroupsForUserCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Groups": [ + * Groups: [ * { - * "Arn": "arn:aws:iam::123456789012:group/division_abc/subdivision_xyz/product_1234/engineering/Test", - * "CreateDate": "2016-11-30T14:10:01.156Z", - * "GroupId": "AGP2111111111EXAMPLE", - * "GroupName": "Test", - * "Path": "/division_abc/subdivision_xyz/product_1234/engineering/" + * Arn: "arn:aws:iam::123456789012:group/division_abc/subdivision_xyz/product_1234/engineering/Test", + * CreateDate: "2016-11-30T14:10:01.156Z", + * GroupId: "AGP2111111111EXAMPLE", + * GroupName: "Test", + * Path: "/division_abc/subdivision_xyz/product_1234/engineering/" * }, * { - * "Arn": "arn:aws:iam::123456789012:group/division_abc/subdivision_xyz/product_1234/Managers", - * "CreateDate": "2016-06-12T20:14:52.032Z", - * "GroupId": "AGPI222222222SEXAMPLE", - * "GroupName": "Managers", - * "Path": "/division_abc/subdivision_xyz/product_1234/" + * Arn: "arn:aws:iam::123456789012:group/division_abc/subdivision_xyz/product_1234/Managers", + * CreateDate: "2016-06-12T20:14:52.032Z", + * GroupId: "AGPI222222222SEXAMPLE", + * GroupName: "Managers", + * Path: "/division_abc/subdivision_xyz/product_1234/" * } * ] * } * *\/ - * // example id: 278ec2ee-fc28-4136-83fb-433af0ae46a2 * ``` * + * @public */ export class ListGroupsForUserCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/ListInstanceProfileTagsCommand.ts b/clients/client-iam/src/commands/ListInstanceProfileTagsCommand.ts index ee18a4396e104..920a15872ead8 100644 --- a/clients/client-iam/src/commands/ListInstanceProfileTagsCommand.ts +++ b/clients/client-iam/src/commands/ListInstanceProfileTagsCommand.ts @@ -74,6 +74,7 @@ export interface ListInstanceProfileTagsCommandOutput extends ListInstanceProfil * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListInstanceProfileTagsCommand extends $Command diff --git a/clients/client-iam/src/commands/ListInstanceProfilesCommand.ts b/clients/client-iam/src/commands/ListInstanceProfilesCommand.ts index b3147920b3f7e..2916c76b2ba6f 100644 --- a/clients/client-iam/src/commands/ListInstanceProfilesCommand.ts +++ b/clients/client-iam/src/commands/ListInstanceProfilesCommand.ts @@ -112,6 +112,7 @@ export interface ListInstanceProfilesCommandOutput extends ListInstanceProfilesR * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListInstanceProfilesCommand extends $Command diff --git a/clients/client-iam/src/commands/ListInstanceProfilesForRoleCommand.ts b/clients/client-iam/src/commands/ListInstanceProfilesForRoleCommand.ts index d309f85ddc5ea..99f86ab3ae1c1 100644 --- a/clients/client-iam/src/commands/ListInstanceProfilesForRoleCommand.ts +++ b/clients/client-iam/src/commands/ListInstanceProfilesForRoleCommand.ts @@ -114,6 +114,7 @@ export interface ListInstanceProfilesForRoleCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListInstanceProfilesForRoleCommand extends $Command diff --git a/clients/client-iam/src/commands/ListMFADeviceTagsCommand.ts b/clients/client-iam/src/commands/ListMFADeviceTagsCommand.ts index 8705b3da5c22e..ab09111f32692 100644 --- a/clients/client-iam/src/commands/ListMFADeviceTagsCommand.ts +++ b/clients/client-iam/src/commands/ListMFADeviceTagsCommand.ts @@ -78,6 +78,7 @@ export interface ListMFADeviceTagsCommandOutput extends ListMFADeviceTagsRespons * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListMFADeviceTagsCommand extends $Command diff --git a/clients/client-iam/src/commands/ListMFADevicesCommand.ts b/clients/client-iam/src/commands/ListMFADevicesCommand.ts index c7da46c512561..d70d2a1f03810 100644 --- a/clients/client-iam/src/commands/ListMFADevicesCommand.ts +++ b/clients/client-iam/src/commands/ListMFADevicesCommand.ts @@ -78,6 +78,7 @@ export interface ListMFADevicesCommandOutput extends ListMFADevicesResponse, __M * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListMFADevicesCommand extends $Command diff --git a/clients/client-iam/src/commands/ListOpenIDConnectProviderTagsCommand.ts b/clients/client-iam/src/commands/ListOpenIDConnectProviderTagsCommand.ts index 1e90de103da9a..f2f5f0fd59a56 100644 --- a/clients/client-iam/src/commands/ListOpenIDConnectProviderTagsCommand.ts +++ b/clients/client-iam/src/commands/ListOpenIDConnectProviderTagsCommand.ts @@ -85,6 +85,7 @@ export interface ListOpenIDConnectProviderTagsCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListOpenIDConnectProviderTagsCommand extends $Command diff --git a/clients/client-iam/src/commands/ListOpenIDConnectProvidersCommand.ts b/clients/client-iam/src/commands/ListOpenIDConnectProvidersCommand.ts index b6e661ad141b5..a9bd61ab7ebc1 100644 --- a/clients/client-iam/src/commands/ListOpenIDConnectProvidersCommand.ts +++ b/clients/client-iam/src/commands/ListOpenIDConnectProvidersCommand.ts @@ -66,6 +66,7 @@ export interface ListOpenIDConnectProvidersCommandOutput extends ListOpenIDConne * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListOpenIDConnectProvidersCommand extends $Command diff --git a/clients/client-iam/src/commands/ListOrganizationsFeaturesCommand.ts b/clients/client-iam/src/commands/ListOrganizationsFeaturesCommand.ts index 9349dd0f15be1..2896436279fca 100644 --- a/clients/client-iam/src/commands/ListOrganizationsFeaturesCommand.ts +++ b/clients/client-iam/src/commands/ListOrganizationsFeaturesCommand.ts @@ -73,24 +73,24 @@ export interface ListOrganizationsFeaturesCommandOutput extends ListOrganization * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To list the centralized root access features enabled for your organization * ```javascript * // he following command lists the centralized root access features enabled for your organization. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListOrganizationsFeaturesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EnabledFeatures": [ + * EnabledFeatures: [ * "RootCredentialsManagement" * ], - * "OrganizationId": "o-aa111bb222" + * OrganizationId: "o-aa111bb222" * } * *\/ - * // example id: to-list-the-centralized-root-access-features-enabled-for-your-organization-1730908832557 * ``` * + * @public */ export class ListOrganizationsFeaturesCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/ListPoliciesCommand.ts b/clients/client-iam/src/commands/ListPoliciesCommand.ts index 6aefccb1d99cb..d4f958b64dc52 100644 --- a/clients/client-iam/src/commands/ListPoliciesCommand.ts +++ b/clients/client-iam/src/commands/ListPoliciesCommand.ts @@ -101,6 +101,7 @@ export interface ListPoliciesCommandOutput extends ListPoliciesResponse, __Metad * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListPoliciesCommand extends $Command diff --git a/clients/client-iam/src/commands/ListPoliciesGrantingServiceAccessCommand.ts b/clients/client-iam/src/commands/ListPoliciesGrantingServiceAccessCommand.ts index 80edd3b480119..a5fa05dd14411 100644 --- a/clients/client-iam/src/commands/ListPoliciesGrantingServiceAccessCommand.ts +++ b/clients/client-iam/src/commands/ListPoliciesGrantingServiceAccessCommand.ts @@ -129,55 +129,55 @@ export interface ListPoliciesGrantingServiceAccessCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To list policies that allow access to a service * ```javascript * // The following operation lists policies that allow ExampleUser01 to access IAM or EC2. * const input = { - * "Arn": "arn:aws:iam::123456789012:user/ExampleUser01", - * "ServiceNamespaces": [ + * Arn: "arn:aws:iam::123456789012:user/ExampleUser01", + * ServiceNamespaces: [ * "iam", * "ec2" * ] * }; * const command = new ListPoliciesGrantingServiceAccessCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "IsTruncated": false, - * "PoliciesGrantingServiceAccess": [ + * IsTruncated: false, + * PoliciesGrantingServiceAccess: [ * { - * "Policies": [ + * Policies: [ * { - * "PolicyArn": "arn:aws:iam::123456789012:policy/ExampleIamPolicy", - * "PolicyName": "ExampleIamPolicy", - * "PolicyType": "MANAGED" + * PolicyArn: "arn:aws:iam::123456789012:policy/ExampleIamPolicy", + * PolicyName: "ExampleIamPolicy", + * PolicyType: "MANAGED" * }, * { - * "EntityName": "AWSExampleGroup1", - * "EntityType": "GROUP", - * "PolicyName": "ExampleGroup1Policy", - * "PolicyType": "INLINE" + * EntityName: "AWSExampleGroup1", + * EntityType: "GROUP", + * PolicyName: "ExampleGroup1Policy", + * PolicyType: "INLINE" * } * ], - * "ServiceNamespace": "iam" + * ServiceNamespace: "iam" * }, * { - * "Policies": [ + * Policies: [ * { - * "PolicyArn": "arn:aws:iam::123456789012:policy/ExampleEc2Policy", - * "PolicyName": "ExampleEc2Policy", - * "PolicyType": "MANAGED" + * PolicyArn: "arn:aws:iam::123456789012:policy/ExampleEc2Policy", + * PolicyName: "ExampleEc2Policy", + * PolicyType: "MANAGED" * } * ], - * "ServiceNamespace": "ec2" + * ServiceNamespace: "ec2" * } * ] * } * *\/ - * // example id: listpoliciesaccess-user-1541698749508 * ``` * + * @public */ export class ListPoliciesGrantingServiceAccessCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/ListPolicyTagsCommand.ts b/clients/client-iam/src/commands/ListPolicyTagsCommand.ts index 102efa64e053a..38c42d8da3342 100644 --- a/clients/client-iam/src/commands/ListPolicyTagsCommand.ts +++ b/clients/client-iam/src/commands/ListPolicyTagsCommand.ts @@ -78,6 +78,7 @@ export interface ListPolicyTagsCommandOutput extends ListPolicyTagsResponse, __M * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListPolicyTagsCommand extends $Command diff --git a/clients/client-iam/src/commands/ListPolicyVersionsCommand.ts b/clients/client-iam/src/commands/ListPolicyVersionsCommand.ts index 67ef1340196c9..0765a36212266 100644 --- a/clients/client-iam/src/commands/ListPolicyVersionsCommand.ts +++ b/clients/client-iam/src/commands/ListPolicyVersionsCommand.ts @@ -81,6 +81,7 @@ export interface ListPolicyVersionsCommandOutput extends ListPolicyVersionsRespo * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListPolicyVersionsCommand extends $Command diff --git a/clients/client-iam/src/commands/ListRolePoliciesCommand.ts b/clients/client-iam/src/commands/ListRolePoliciesCommand.ts index 224d38eb2ea94..53b872db37a80 100644 --- a/clients/client-iam/src/commands/ListRolePoliciesCommand.ts +++ b/clients/client-iam/src/commands/ListRolePoliciesCommand.ts @@ -77,6 +77,7 @@ export interface ListRolePoliciesCommandOutput extends ListRolePoliciesResponse, * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListRolePoliciesCommand extends $Command diff --git a/clients/client-iam/src/commands/ListRoleTagsCommand.ts b/clients/client-iam/src/commands/ListRoleTagsCommand.ts index 82bce6e910e00..a559e360a952a 100644 --- a/clients/client-iam/src/commands/ListRoleTagsCommand.ts +++ b/clients/client-iam/src/commands/ListRoleTagsCommand.ts @@ -74,33 +74,33 @@ export interface ListRoleTagsCommandOutput extends ListRoleTagsResponse, __Metad * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To list the tags attached to an IAM role * ```javascript * // The following example shows how to list the tags attached to a role. * const input = { - * "RoleName": "taggedrole1" + * RoleName: "taggedrole1" * }; * const command = new ListRoleTagsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "IsTruncated": false, - * "Tags": [ + * IsTruncated: false, + * Tags: [ * { - * "Key": "Dept", - * "Value": "12345" + * Key: "Dept", + * Value: "12345" * }, * { - * "Key": "Team", - * "Value": "Accounting" + * Key: "Team", + * Value: "Accounting" * } * ] * } * *\/ - * // example id: to-list-the-tags-attached-to-an-iam-role-1506719238376 * ``` * + * @public */ export class ListRoleTagsCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/ListRolesCommand.ts b/clients/client-iam/src/commands/ListRolesCommand.ts index b8788099c7c40..cc8f945022d91 100644 --- a/clients/client-iam/src/commands/ListRolesCommand.ts +++ b/clients/client-iam/src/commands/ListRolesCommand.ts @@ -108,6 +108,7 @@ export interface ListRolesCommandOutput extends ListRolesResponse, __MetadataBea * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListRolesCommand extends $Command diff --git a/clients/client-iam/src/commands/ListSAMLProviderTagsCommand.ts b/clients/client-iam/src/commands/ListSAMLProviderTagsCommand.ts index 5b7ba1561c495..a42f5bc039361 100644 --- a/clients/client-iam/src/commands/ListSAMLProviderTagsCommand.ts +++ b/clients/client-iam/src/commands/ListSAMLProviderTagsCommand.ts @@ -80,6 +80,7 @@ export interface ListSAMLProviderTagsCommandOutput extends ListSAMLProviderTagsR * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListSAMLProviderTagsCommand extends $Command diff --git a/clients/client-iam/src/commands/ListSAMLProvidersCommand.ts b/clients/client-iam/src/commands/ListSAMLProvidersCommand.ts index d07e92f288639..581964fabea2a 100644 --- a/clients/client-iam/src/commands/ListSAMLProvidersCommand.ts +++ b/clients/client-iam/src/commands/ListSAMLProvidersCommand.ts @@ -68,6 +68,7 @@ export interface ListSAMLProvidersCommandOutput extends ListSAMLProvidersRespons * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListSAMLProvidersCommand extends $Command diff --git a/clients/client-iam/src/commands/ListSSHPublicKeysCommand.ts b/clients/client-iam/src/commands/ListSSHPublicKeysCommand.ts index 94fd8e25f3099..42bff10515f2f 100644 --- a/clients/client-iam/src/commands/ListSSHPublicKeysCommand.ts +++ b/clients/client-iam/src/commands/ListSSHPublicKeysCommand.ts @@ -77,6 +77,7 @@ export interface ListSSHPublicKeysCommandOutput extends ListSSHPublicKeysRespons * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListSSHPublicKeysCommand extends $Command diff --git a/clients/client-iam/src/commands/ListServerCertificateTagsCommand.ts b/clients/client-iam/src/commands/ListServerCertificateTagsCommand.ts index b30d1a9c1d9fb..e66dff076845a 100644 --- a/clients/client-iam/src/commands/ListServerCertificateTagsCommand.ts +++ b/clients/client-iam/src/commands/ListServerCertificateTagsCommand.ts @@ -81,6 +81,7 @@ export interface ListServerCertificateTagsCommandOutput extends ListServerCertif * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListServerCertificateTagsCommand extends $Command diff --git a/clients/client-iam/src/commands/ListServerCertificatesCommand.ts b/clients/client-iam/src/commands/ListServerCertificatesCommand.ts index 4c60348905f0d..f728f552f4df8 100644 --- a/clients/client-iam/src/commands/ListServerCertificatesCommand.ts +++ b/clients/client-iam/src/commands/ListServerCertificatesCommand.ts @@ -83,6 +83,7 @@ export interface ListServerCertificatesCommandOutput extends ListServerCertifica * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListServerCertificatesCommand extends $Command diff --git a/clients/client-iam/src/commands/ListServiceSpecificCredentialsCommand.ts b/clients/client-iam/src/commands/ListServiceSpecificCredentialsCommand.ts index 93f25482e3024..810eadcb051c2 100644 --- a/clients/client-iam/src/commands/ListServiceSpecificCredentialsCommand.ts +++ b/clients/client-iam/src/commands/ListServiceSpecificCredentialsCommand.ts @@ -82,6 +82,7 @@ export interface ListServiceSpecificCredentialsCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListServiceSpecificCredentialsCommand extends $Command diff --git a/clients/client-iam/src/commands/ListSigningCertificatesCommand.ts b/clients/client-iam/src/commands/ListSigningCertificatesCommand.ts index d9e4405cc8387..5752a633870ea 100644 --- a/clients/client-iam/src/commands/ListSigningCertificatesCommand.ts +++ b/clients/client-iam/src/commands/ListSigningCertificatesCommand.ts @@ -84,31 +84,31 @@ export interface ListSigningCertificatesCommandOutput extends ListSigningCertifi * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To list the signing certificates for an IAM user * ```javascript * // The following command lists the signing certificates for the IAM user named Bob. * const input = { - * "UserName": "Bob" + * UserName: "Bob" * }; * const command = new ListSigningCertificatesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Certificates": [ + * Certificates: [ * { - * "CertificateBody": "-----BEGIN CERTIFICATE----------END CERTIFICATE-----", - * "CertificateId": "TA7SMP42TDN5Z26OBPJE7EXAMPLE", - * "Status": "Active", - * "UploadDate": "2013-06-06T21:40:08Z", - * "UserName": "Bob" + * CertificateBody: "-----BEGIN CERTIFICATE----------END CERTIFICATE-----", + * CertificateId: "TA7SMP42TDN5Z26OBPJE7EXAMPLE", + * Status: "Active", + * UploadDate: "2013-06-06T21:40:08Z", + * UserName: "Bob" * } * ] * } * *\/ - * // example id: b4c10256-4fc9-457e-b3fd-4a110d4d73dc * ``` * + * @public */ export class ListSigningCertificatesCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/ListUserPoliciesCommand.ts b/clients/client-iam/src/commands/ListUserPoliciesCommand.ts index 9b0e7a1e732d9..b65d4e95721fa 100644 --- a/clients/client-iam/src/commands/ListUserPoliciesCommand.ts +++ b/clients/client-iam/src/commands/ListUserPoliciesCommand.ts @@ -76,6 +76,7 @@ export interface ListUserPoliciesCommandOutput extends ListUserPoliciesResponse, * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ListUserPoliciesCommand extends $Command diff --git a/clients/client-iam/src/commands/ListUserTagsCommand.ts b/clients/client-iam/src/commands/ListUserTagsCommand.ts index 0a4f30f3536c9..adefcee281009 100644 --- a/clients/client-iam/src/commands/ListUserTagsCommand.ts +++ b/clients/client-iam/src/commands/ListUserTagsCommand.ts @@ -73,33 +73,33 @@ export interface ListUserTagsCommandOutput extends ListUserTagsResponse, __Metad * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To list the tags attached to an IAM user * ```javascript * // The following example shows how to list the tags attached to a user. * const input = { - * "UserName": "anika" + * UserName: "anika" * }; * const command = new ListUserTagsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "IsTruncated": false, - * "Tags": [ + * IsTruncated: false, + * Tags: [ * { - * "Key": "Dept", - * "Value": "12345" + * Key: "Dept", + * Value: "12345" * }, * { - * "Key": "Team", - * "Value": "Accounting" + * Key: "Team", + * Value: "Accounting" * } * ] * } * *\/ - * // example id: to-list-the-tags-attached-to-an-iam-user-1506719473186 * ``` * + * @public */ export class ListUserTagsCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/ListUsersCommand.ts b/clients/client-iam/src/commands/ListUsersCommand.ts index 62d4a58ba16c0..9c887754ba09d 100644 --- a/clients/client-iam/src/commands/ListUsersCommand.ts +++ b/clients/client-iam/src/commands/ListUsersCommand.ts @@ -99,38 +99,38 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To list IAM users * ```javascript * // The following command lists the IAM users in the current account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListUsersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Users": [ + * Users: [ * { - * "Arn": "arn:aws:iam::123456789012:user/division_abc/subdivision_xyz/engineering/Juan", - * "CreateDate": "2012-09-05T19:38:48Z", - * "PasswordLastUsed": "2016-09-08T21:47:36Z", - * "Path": "/division_abc/subdivision_xyz/engineering/", - * "UserId": "AID2MAB8DPLSRHEXAMPLE", - * "UserName": "Juan" + * Arn: "arn:aws:iam::123456789012:user/division_abc/subdivision_xyz/engineering/Juan", + * CreateDate: "2012-09-05T19:38:48Z", + * PasswordLastUsed: "2016-09-08T21:47:36Z", + * Path: "/division_abc/subdivision_xyz/engineering/", + * UserId: "AID2MAB8DPLSRHEXAMPLE", + * UserName: "Juan" * }, * { - * "Arn": "arn:aws:iam::123456789012:user/division_abc/subdivision_xyz/engineering/Anika", - * "CreateDate": "2014-04-09T15:43:45Z", - * "PasswordLastUsed": "2016-09-24T16:18:07Z", - * "Path": "/division_abc/subdivision_xyz/engineering/", - * "UserId": "AIDIODR4TAW7CSEXAMPLE", - * "UserName": "Anika" + * Arn: "arn:aws:iam::123456789012:user/division_abc/subdivision_xyz/engineering/Anika", + * CreateDate: "2014-04-09T15:43:45Z", + * PasswordLastUsed: "2016-09-24T16:18:07Z", + * Path: "/division_abc/subdivision_xyz/engineering/", + * UserId: "AIDIODR4TAW7CSEXAMPLE", + * UserName: "Anika" * } * ] * } * *\/ - * // example id: 9edfbd73-03d8-4d8a-9a79-76c85e8c8298 * ``` * + * @public */ export class ListUsersCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/ListVirtualMFADevicesCommand.ts b/clients/client-iam/src/commands/ListVirtualMFADevicesCommand.ts index df752f629a46a..08b8c77e2707a 100644 --- a/clients/client-iam/src/commands/ListVirtualMFADevicesCommand.ts +++ b/clients/client-iam/src/commands/ListVirtualMFADevicesCommand.ts @@ -103,28 +103,28 @@ export interface ListVirtualMFADevicesCommandOutput extends ListVirtualMFADevice * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To list virtual MFA devices * ```javascript * // The following command lists the virtual MFA devices that have been configured for the current account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListVirtualMFADevicesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "VirtualMFADevices": [ + * VirtualMFADevices: [ * { - * "SerialNumber": "arn:aws:iam::123456789012:mfa/ExampleMFADevice" + * SerialNumber: "arn:aws:iam::123456789012:mfa/ExampleMFADevice" * }, * { - * "SerialNumber": "arn:aws:iam::123456789012:mfa/Juan" + * SerialNumber: "arn:aws:iam::123456789012:mfa/Juan" * } * ] * } * *\/ - * // example id: 54f9ac18-5100-4070-bec4-fe5f612710d5 * ``` * + * @public */ export class ListVirtualMFADevicesCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/PutGroupPolicyCommand.ts b/clients/client-iam/src/commands/PutGroupPolicyCommand.ts index 32db9c9fe13ba..c9c13443bc024 100644 --- a/clients/client-iam/src/commands/PutGroupPolicyCommand.ts +++ b/clients/client-iam/src/commands/PutGroupPolicyCommand.ts @@ -89,20 +89,23 @@ export interface PutGroupPolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To add a policy to a group * ```javascript * // The following command adds a policy named AllPerms to the IAM group named Admins. * const input = { - * "GroupName": "Admins", - * "PolicyDocument": "{\"Version\":\"2012-10-17\",\"Statement\":{\"Effect\":\"Allow\",\"Action\":\"*\",\"Resource\":\"*\"}}", - * "PolicyName": "AllPerms" + * GroupName: "Admins", + * PolicyDocument: `{"Version":"2012-10-17","Statement":{"Effect":"Allow","Action":"*","Resource":"*"}}`, + * PolicyName: "AllPerms" * }; * const command = new PutGroupPolicyCommand(input); - * await client.send(command); - * // example id: 4bc17418-758f-4d0f-ab0c-4d00265fec2e + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutGroupPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/PutRolePermissionsBoundaryCommand.ts b/clients/client-iam/src/commands/PutRolePermissionsBoundaryCommand.ts index b1b817bbf34aa..5a04918f06ef4 100644 --- a/clients/client-iam/src/commands/PutRolePermissionsBoundaryCommand.ts +++ b/clients/client-iam/src/commands/PutRolePermissionsBoundaryCommand.ts @@ -87,6 +87,7 @@ export interface PutRolePermissionsBoundaryCommandOutput extends __MetadataBeare * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class PutRolePermissionsBoundaryCommand extends $Command diff --git a/clients/client-iam/src/commands/PutRolePolicyCommand.ts b/clients/client-iam/src/commands/PutRolePolicyCommand.ts index e178d48f74799..5720b2c6fd8b9 100644 --- a/clients/client-iam/src/commands/PutRolePolicyCommand.ts +++ b/clients/client-iam/src/commands/PutRolePolicyCommand.ts @@ -105,20 +105,23 @@ export interface PutRolePolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To attach a permissions policy to an IAM role * ```javascript * // The following command adds a permissions policy to the role named Test-Role. * const input = { - * "PolicyDocument": "{\"Version\":\"2012-10-17\",\"Statement\":{\"Effect\":\"Allow\",\"Action\":\"s3:*\",\"Resource\":\"*\"}}", - * "PolicyName": "S3AccessPolicy", - * "RoleName": "S3Access" + * PolicyDocument: `{"Version":"2012-10-17","Statement":{"Effect":"Allow","Action":"s3:*","Resource":"*"}}`, + * PolicyName: "S3AccessPolicy", + * RoleName: "S3Access" * }; * const command = new PutRolePolicyCommand(input); - * await client.send(command); - * // example id: de62fd00-46c7-4601-9e0d-71d5fbb11ecb + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutRolePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/PutUserPermissionsBoundaryCommand.ts b/clients/client-iam/src/commands/PutUserPermissionsBoundaryCommand.ts index 800dff0232731..d3354bd4ee60b 100644 --- a/clients/client-iam/src/commands/PutUserPermissionsBoundaryCommand.ts +++ b/clients/client-iam/src/commands/PutUserPermissionsBoundaryCommand.ts @@ -80,6 +80,7 @@ export interface PutUserPermissionsBoundaryCommandOutput extends __MetadataBeare * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class PutUserPermissionsBoundaryCommand extends $Command diff --git a/clients/client-iam/src/commands/PutUserPolicyCommand.ts b/clients/client-iam/src/commands/PutUserPolicyCommand.ts index 9d02144e231e6..cab678520f0db 100644 --- a/clients/client-iam/src/commands/PutUserPolicyCommand.ts +++ b/clients/client-iam/src/commands/PutUserPolicyCommand.ts @@ -89,20 +89,23 @@ export interface PutUserPolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To attach a policy to an IAM user * ```javascript * // The following command attaches a policy to the IAM user named Bob. * const input = { - * "PolicyDocument": "{\"Version\":\"2012-10-17\",\"Statement\":{\"Effect\":\"Allow\",\"Action\":\"*\",\"Resource\":\"*\"}}", - * "PolicyName": "AllAccessPolicy", - * "UserName": "Bob" + * PolicyDocument: `{"Version":"2012-10-17","Statement":{"Effect":"Allow","Action":"*","Resource":"*"}}`, + * PolicyName: "AllAccessPolicy", + * UserName: "Bob" * }; * const command = new PutUserPolicyCommand(input); - * await client.send(command); - * // example id: 2551ffc6-3576-4d39-823f-30b60bffc2c7 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutUserPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/RemoveClientIDFromOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/RemoveClientIDFromOpenIDConnectProviderCommand.ts index a240a892f72ac..5c69130983d3d 100644 --- a/clients/client-iam/src/commands/RemoveClientIDFromOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/RemoveClientIDFromOpenIDConnectProviderCommand.ts @@ -74,6 +74,7 @@ export interface RemoveClientIDFromOpenIDConnectProviderCommandOutput extends __ * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class RemoveClientIDFromOpenIDConnectProviderCommand extends $Command diff --git a/clients/client-iam/src/commands/RemoveRoleFromInstanceProfileCommand.ts b/clients/client-iam/src/commands/RemoveRoleFromInstanceProfileCommand.ts index fab2285908575..d807615e84006 100644 --- a/clients/client-iam/src/commands/RemoveRoleFromInstanceProfileCommand.ts +++ b/clients/client-iam/src/commands/RemoveRoleFromInstanceProfileCommand.ts @@ -85,19 +85,22 @@ export interface RemoveRoleFromInstanceProfileCommandOutput extends __MetadataBe * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To remove a role from an instance profile * ```javascript * // The following command removes the role named Test-Role from the instance profile named ExampleInstanceProfile. * const input = { - * "InstanceProfileName": "ExampleInstanceProfile", - * "RoleName": "Test-Role" + * InstanceProfileName: "ExampleInstanceProfile", + * RoleName: "Test-Role" * }; * const command = new RemoveRoleFromInstanceProfileCommand(input); - * await client.send(command); - * // example id: 6d9f46f1-9f4a-4873-b403-51a85c5c627c + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RemoveRoleFromInstanceProfileCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/RemoveUserFromGroupCommand.ts b/clients/client-iam/src/commands/RemoveUserFromGroupCommand.ts index 43ac34c5a3620..624a6524d6e59 100644 --- a/clients/client-iam/src/commands/RemoveUserFromGroupCommand.ts +++ b/clients/client-iam/src/commands/RemoveUserFromGroupCommand.ts @@ -66,19 +66,22 @@ export interface RemoveUserFromGroupCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To remove a user from an IAM group * ```javascript * // The following command removes the user named Bob from the IAM group named Admins. * const input = { - * "GroupName": "Admins", - * "UserName": "Bob" + * GroupName: "Admins", + * UserName: "Bob" * }; * const command = new RemoveUserFromGroupCommand(input); - * await client.send(command); - * // example id: fb54d5b4-0caf-41d8-af0e-10a84413f174 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RemoveUserFromGroupCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/ResetServiceSpecificCredentialCommand.ts b/clients/client-iam/src/commands/ResetServiceSpecificCredentialCommand.ts index a4c0d46c5a083..5840b01628e14 100644 --- a/clients/client-iam/src/commands/ResetServiceSpecificCredentialCommand.ts +++ b/clients/client-iam/src/commands/ResetServiceSpecificCredentialCommand.ts @@ -80,6 +80,7 @@ export interface ResetServiceSpecificCredentialCommandOutput * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ResetServiceSpecificCredentialCommand extends $Command diff --git a/clients/client-iam/src/commands/ResyncMFADeviceCommand.ts b/clients/client-iam/src/commands/ResyncMFADeviceCommand.ts index 191b546f7a086..7482bc5809e50 100644 --- a/clients/client-iam/src/commands/ResyncMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/ResyncMFADeviceCommand.ts @@ -79,6 +79,7 @@ export interface ResyncMFADeviceCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class ResyncMFADeviceCommand extends $Command diff --git a/clients/client-iam/src/commands/SetDefaultPolicyVersionCommand.ts b/clients/client-iam/src/commands/SetDefaultPolicyVersionCommand.ts index 33e729968df45..1fd3b491b135b 100644 --- a/clients/client-iam/src/commands/SetDefaultPolicyVersionCommand.ts +++ b/clients/client-iam/src/commands/SetDefaultPolicyVersionCommand.ts @@ -75,6 +75,7 @@ export interface SetDefaultPolicyVersionCommandOutput extends __MetadataBearer { * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class SetDefaultPolicyVersionCommand extends $Command diff --git a/clients/client-iam/src/commands/SetSecurityTokenServicePreferencesCommand.ts b/clients/client-iam/src/commands/SetSecurityTokenServicePreferencesCommand.ts index cb257c312210c..36b965c16a1aa 100644 --- a/clients/client-iam/src/commands/SetSecurityTokenServicePreferencesCommand.ts +++ b/clients/client-iam/src/commands/SetSecurityTokenServicePreferencesCommand.ts @@ -78,18 +78,21 @@ export interface SetSecurityTokenServicePreferencesCommandOutput extends __Metad * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To delete an access key for an IAM user * ```javascript * // The following command sets the STS global endpoint token to version 2. Version 2 tokens are valid in all Regions. * const input = { - * "GlobalEndpointTokenVersion": "v2Token" + * GlobalEndpointTokenVersion: "v2Token" * }; * const command = new SetSecurityTokenServicePreferencesCommand(input); - * await client.send(command); - * // example id: 61a785a7-d30a-415a-ae18-ab9236e56871 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetSecurityTokenServicePreferencesCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/SimulateCustomPolicyCommand.ts b/clients/client-iam/src/commands/SimulateCustomPolicyCommand.ts index cddfa708cb9f7..9a3473c9b2437 100644 --- a/clients/client-iam/src/commands/SimulateCustomPolicyCommand.ts +++ b/clients/client-iam/src/commands/SimulateCustomPolicyCommand.ts @@ -176,6 +176,7 @@ export interface SimulateCustomPolicyCommandOutput extends SimulatePolicyRespons * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class SimulateCustomPolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/SimulatePrincipalPolicyCommand.ts b/clients/client-iam/src/commands/SimulatePrincipalPolicyCommand.ts index 1a7bc0455083e..e400ce849aed9 100644 --- a/clients/client-iam/src/commands/SimulatePrincipalPolicyCommand.ts +++ b/clients/client-iam/src/commands/SimulatePrincipalPolicyCommand.ts @@ -189,6 +189,7 @@ export interface SimulatePrincipalPolicyCommandOutput extends SimulatePolicyResp * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class SimulatePrincipalPolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/TagInstanceProfileCommand.ts b/clients/client-iam/src/commands/TagInstanceProfileCommand.ts index bc1ab9f2d295f..a325697dfff94 100644 --- a/clients/client-iam/src/commands/TagInstanceProfileCommand.ts +++ b/clients/client-iam/src/commands/TagInstanceProfileCommand.ts @@ -114,6 +114,7 @@ export interface TagInstanceProfileCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class TagInstanceProfileCommand extends $Command diff --git a/clients/client-iam/src/commands/TagMFADeviceCommand.ts b/clients/client-iam/src/commands/TagMFADeviceCommand.ts index 4cc2fa16c7677..16a46d9b81b5b 100644 --- a/clients/client-iam/src/commands/TagMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/TagMFADeviceCommand.ts @@ -115,6 +115,7 @@ export interface TagMFADeviceCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class TagMFADeviceCommand extends $Command diff --git a/clients/client-iam/src/commands/TagOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/TagOpenIDConnectProviderCommand.ts index c2fcea3de11dc..89fe7e22bc66c 100644 --- a/clients/client-iam/src/commands/TagOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/TagOpenIDConnectProviderCommand.ts @@ -116,6 +116,7 @@ export interface TagOpenIDConnectProviderCommandOutput extends __MetadataBearer * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class TagOpenIDConnectProviderCommand extends $Command diff --git a/clients/client-iam/src/commands/TagPolicyCommand.ts b/clients/client-iam/src/commands/TagPolicyCommand.ts index 1fcacb0613d15..c0251f7c2c5a7 100644 --- a/clients/client-iam/src/commands/TagPolicyCommand.ts +++ b/clients/client-iam/src/commands/TagPolicyCommand.ts @@ -114,6 +114,7 @@ export interface TagPolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class TagPolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/TagRoleCommand.ts b/clients/client-iam/src/commands/TagRoleCommand.ts index df53d906a7fde..f9898f2d51355 100644 --- a/clients/client-iam/src/commands/TagRoleCommand.ts +++ b/clients/client-iam/src/commands/TagRoleCommand.ts @@ -123,28 +123,31 @@ export interface TagRoleCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To add a tag key and value to an IAM role * ```javascript * // The following example shows how to add tags to an existing role. * const input = { - * "RoleName": "taggedrole", - * "Tags": [ + * RoleName: "taggedrole", + * Tags: [ * { - * "Key": "Dept", - * "Value": "Accounting" + * Key: "Dept", + * Value: "Accounting" * }, * { - * "Key": "CostCenter", - * "Value": "12345" + * Key: "CostCenter", + * Value: "12345" * } * ] * }; * const command = new TagRoleCommand(input); - * await client.send(command); - * // example id: to-add-a-tag-key-and-value-to-an-iam-role-1506718791513 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class TagRoleCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/TagSAMLProviderCommand.ts b/clients/client-iam/src/commands/TagSAMLProviderCommand.ts index 631ae1142c7e7..2533a8b42f4d6 100644 --- a/clients/client-iam/src/commands/TagSAMLProviderCommand.ts +++ b/clients/client-iam/src/commands/TagSAMLProviderCommand.ts @@ -116,6 +116,7 @@ export interface TagSAMLProviderCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class TagSAMLProviderCommand extends $Command diff --git a/clients/client-iam/src/commands/TagServerCertificateCommand.ts b/clients/client-iam/src/commands/TagServerCertificateCommand.ts index 4daa16573f6c2..0b98e39a78a4a 100644 --- a/clients/client-iam/src/commands/TagServerCertificateCommand.ts +++ b/clients/client-iam/src/commands/TagServerCertificateCommand.ts @@ -126,6 +126,7 @@ export interface TagServerCertificateCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class TagServerCertificateCommand extends $Command diff --git a/clients/client-iam/src/commands/TagUserCommand.ts b/clients/client-iam/src/commands/TagUserCommand.ts index bae9904611ac5..f6f7c263d0b47 100644 --- a/clients/client-iam/src/commands/TagUserCommand.ts +++ b/clients/client-iam/src/commands/TagUserCommand.ts @@ -122,28 +122,31 @@ export interface TagUserCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To add a tag key and value to an IAM user * ```javascript * // The following example shows how to add tags to an existing user. * const input = { - * "Tags": [ + * Tags: [ * { - * "Key": "Dept", - * "Value": "Accounting" + * Key: "Dept", + * Value: "Accounting" * }, * { - * "Key": "CostCenter", - * "Value": "12345" + * Key: "CostCenter", + * Value: "12345" * } * ], - * "UserName": "anika" + * UserName: "anika" * }; * const command = new TagUserCommand(input); - * await client.send(command); - * // example id: to-add-a-tag-key-and-value-to-an-iam-user-1506719044227 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class TagUserCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/UntagInstanceProfileCommand.ts b/clients/client-iam/src/commands/UntagInstanceProfileCommand.ts index b3229a911ccbf..9daee410cb3ef 100644 --- a/clients/client-iam/src/commands/UntagInstanceProfileCommand.ts +++ b/clients/client-iam/src/commands/UntagInstanceProfileCommand.ts @@ -73,6 +73,7 @@ export interface UntagInstanceProfileCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class UntagInstanceProfileCommand extends $Command diff --git a/clients/client-iam/src/commands/UntagMFADeviceCommand.ts b/clients/client-iam/src/commands/UntagMFADeviceCommand.ts index 0987173412c20..e4d49f01eba6c 100644 --- a/clients/client-iam/src/commands/UntagMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/UntagMFADeviceCommand.ts @@ -74,6 +74,7 @@ export interface UntagMFADeviceCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class UntagMFADeviceCommand extends $Command diff --git a/clients/client-iam/src/commands/UntagOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/UntagOpenIDConnectProviderCommand.ts index 036f3aaeb0bd2..c4200f4c469bf 100644 --- a/clients/client-iam/src/commands/UntagOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/UntagOpenIDConnectProviderCommand.ts @@ -75,6 +75,7 @@ export interface UntagOpenIDConnectProviderCommandOutput extends __MetadataBeare * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class UntagOpenIDConnectProviderCommand extends $Command diff --git a/clients/client-iam/src/commands/UntagPolicyCommand.ts b/clients/client-iam/src/commands/UntagPolicyCommand.ts index e0c546f769d39..7b24ace20b4c1 100644 --- a/clients/client-iam/src/commands/UntagPolicyCommand.ts +++ b/clients/client-iam/src/commands/UntagPolicyCommand.ts @@ -73,6 +73,7 @@ export interface UntagPolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class UntagPolicyCommand extends $Command diff --git a/clients/client-iam/src/commands/UntagRoleCommand.ts b/clients/client-iam/src/commands/UntagRoleCommand.ts index 3cad0c874b947..b0ec26fcceded 100644 --- a/clients/client-iam/src/commands/UntagRoleCommand.ts +++ b/clients/client-iam/src/commands/UntagRoleCommand.ts @@ -69,21 +69,24 @@ export interface UntagRoleCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To remove a tag from an IAM role * ```javascript * // The following example shows how to remove a tag with the key 'Dept' from a role named 'taggedrole'. * const input = { - * "RoleName": "taggedrole", - * "TagKeys": [ + * RoleName: "taggedrole", + * TagKeys: [ * "Dept" * ] * }; * const command = new UntagRoleCommand(input); - * await client.send(command); - * // example id: to-remove-a-tag-from-an-iam-role-1506719589943 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UntagRoleCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/UntagSAMLProviderCommand.ts b/clients/client-iam/src/commands/UntagSAMLProviderCommand.ts index 67b2f5251167f..31aa946495235 100644 --- a/clients/client-iam/src/commands/UntagSAMLProviderCommand.ts +++ b/clients/client-iam/src/commands/UntagSAMLProviderCommand.ts @@ -75,6 +75,7 @@ export interface UntagSAMLProviderCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class UntagSAMLProviderCommand extends $Command diff --git a/clients/client-iam/src/commands/UntagServerCertificateCommand.ts b/clients/client-iam/src/commands/UntagServerCertificateCommand.ts index aa6fd55e79219..946b80e883017 100644 --- a/clients/client-iam/src/commands/UntagServerCertificateCommand.ts +++ b/clients/client-iam/src/commands/UntagServerCertificateCommand.ts @@ -81,6 +81,7 @@ export interface UntagServerCertificateCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class UntagServerCertificateCommand extends $Command diff --git a/clients/client-iam/src/commands/UntagUserCommand.ts b/clients/client-iam/src/commands/UntagUserCommand.ts index 1411b07f10a32..474464e1eb901 100644 --- a/clients/client-iam/src/commands/UntagUserCommand.ts +++ b/clients/client-iam/src/commands/UntagUserCommand.ts @@ -69,21 +69,24 @@ export interface UntagUserCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To remove a tag from an IAM user * ```javascript * // The following example shows how to remove tags that are attached to a user named 'anika'. * const input = { - * "TagKeys": [ + * TagKeys: [ * "Dept" * ], - * "UserName": "anika" + * UserName: "anika" * }; * const command = new UntagUserCommand(input); - * await client.send(command); - * // example id: to-remove-a-tag-from-an-iam-user-1506719725554 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UntagUserCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/UpdateAccessKeyCommand.ts b/clients/client-iam/src/commands/UpdateAccessKeyCommand.ts index 41828abdcb7b9..037357379add7 100644 --- a/clients/client-iam/src/commands/UpdateAccessKeyCommand.ts +++ b/clients/client-iam/src/commands/UpdateAccessKeyCommand.ts @@ -77,20 +77,23 @@ export interface UpdateAccessKeyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To activate or deactivate an access key for an IAM user * ```javascript * // The following command deactivates the specified access key (access key ID and secret access key) for the IAM user named Bob. * const input = { - * "AccessKeyId": "AKIAIOSFODNN7EXAMPLE", - * "Status": "Inactive", - * "UserName": "Bob" + * AccessKeyId: "AKIAIOSFODNN7EXAMPLE", + * Status: "Inactive", + * UserName: "Bob" * }; * const command = new UpdateAccessKeyCommand(input); - * await client.send(command); - * // example id: 02b556fd-e673-49b7-ab6b-f2f9035967d0 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateAccessKeyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/UpdateAccountPasswordPolicyCommand.ts b/clients/client-iam/src/commands/UpdateAccountPasswordPolicyCommand.ts index a99540c46d03d..b26730aa095f5 100644 --- a/clients/client-iam/src/commands/UpdateAccountPasswordPolicyCommand.ts +++ b/clients/client-iam/src/commands/UpdateAccountPasswordPolicyCommand.ts @@ -87,19 +87,22 @@ export interface UpdateAccountPasswordPolicyCommandOutput extends __MetadataBear * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To set or change the current account password policy * ```javascript * // The following command sets the password policy to require a minimum length of eight characters and to require one or more numbers in the password: * const input = { - * "MinimumPasswordLength": 8, - * "RequireNumbers": true + * MinimumPasswordLength: 8, + * RequireNumbers: true * }; * const command = new UpdateAccountPasswordPolicyCommand(input); - * await client.send(command); - * // example id: c263a1af-37dc-4423-8dba-9790284ef5e0 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateAccountPasswordPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/UpdateAssumeRolePolicyCommand.ts b/clients/client-iam/src/commands/UpdateAssumeRolePolicyCommand.ts index 393a50dc87a8e..f33784f435b09 100644 --- a/clients/client-iam/src/commands/UpdateAssumeRolePolicyCommand.ts +++ b/clients/client-iam/src/commands/UpdateAssumeRolePolicyCommand.ts @@ -79,19 +79,22 @@ export interface UpdateAssumeRolePolicyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To update the trust policy for an IAM role * ```javascript * // The following command updates the role trust policy for the role named Test-Role: * const input = { - * "PolicyDocument": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Principal\":{\"Service\":[\"ec2.amazonaws.com\"]},\"Action\":[\"sts:AssumeRole\"]}]}", - * "RoleName": "S3AccessForEC2Instances" + * PolicyDocument: `{"Version":"2012-10-17","Statement":[{"Effect":"Allow","Principal":{"Service":["ec2.amazonaws.com"]},"Action":["sts:AssumeRole"]}]}`, + * RoleName: "S3AccessForEC2Instances" * }; * const command = new UpdateAssumeRolePolicyCommand(input); - * await client.send(command); - * // example id: c9150063-d953-4e99-9576-9685872006c6 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateAssumeRolePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/UpdateGroupCommand.ts b/clients/client-iam/src/commands/UpdateGroupCommand.ts index 962ac31b794c9..9d7a2c5139c53 100644 --- a/clients/client-iam/src/commands/UpdateGroupCommand.ts +++ b/clients/client-iam/src/commands/UpdateGroupCommand.ts @@ -85,19 +85,22 @@ export interface UpdateGroupCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To rename an IAM group * ```javascript * // The following command changes the name of the IAM group Test to Test-1. * const input = { - * "GroupName": "Test", - * "NewGroupName": "Test-1" + * GroupName: "Test", + * NewGroupName: "Test-1" * }; * const command = new UpdateGroupCommand(input); - * await client.send(command); - * // example id: f0cf1662-91ae-4278-a80e-7db54256ccba + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateGroupCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/UpdateLoginProfileCommand.ts b/clients/client-iam/src/commands/UpdateLoginProfileCommand.ts index 295619b1aaf0a..ee364ed7a8557 100644 --- a/clients/client-iam/src/commands/UpdateLoginProfileCommand.ts +++ b/clients/client-iam/src/commands/UpdateLoginProfileCommand.ts @@ -83,19 +83,22 @@ export interface UpdateLoginProfileCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To change the password for an IAM user * ```javascript * // The following command creates or changes the password for the IAM user named Bob. * const input = { - * "Password": "SomeKindOfPassword123!@#", - * "UserName": "Bob" + * Password: "SomeKindOfPassword123!@#", + * UserName: "Bob" * }; * const command = new UpdateLoginProfileCommand(input); - * await client.send(command); - * // example id: 036d9498-ecdb-4ed6-a8d8-366c383d1487 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateLoginProfileCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/UpdateOpenIDConnectProviderThumbprintCommand.ts b/clients/client-iam/src/commands/UpdateOpenIDConnectProviderThumbprintCommand.ts index 3876a8b889692..01d4ed2195e91 100644 --- a/clients/client-iam/src/commands/UpdateOpenIDConnectProviderThumbprintCommand.ts +++ b/clients/client-iam/src/commands/UpdateOpenIDConnectProviderThumbprintCommand.ts @@ -93,6 +93,7 @@ export interface UpdateOpenIDConnectProviderThumbprintCommandOutput extends __Me * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class UpdateOpenIDConnectProviderThumbprintCommand extends $Command diff --git a/clients/client-iam/src/commands/UpdateRoleCommand.ts b/clients/client-iam/src/commands/UpdateRoleCommand.ts index 9cc8828d81847..6ef16ff6b36fb 100644 --- a/clients/client-iam/src/commands/UpdateRoleCommand.ts +++ b/clients/client-iam/src/commands/UpdateRoleCommand.ts @@ -69,6 +69,7 @@ export interface UpdateRoleCommandOutput extends UpdateRoleResponse, __MetadataB * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class UpdateRoleCommand extends $Command diff --git a/clients/client-iam/src/commands/UpdateRoleDescriptionCommand.ts b/clients/client-iam/src/commands/UpdateRoleDescriptionCommand.ts index d1a2ae266c36c..ef66418cf904e 100644 --- a/clients/client-iam/src/commands/UpdateRoleDescriptionCommand.ts +++ b/clients/client-iam/src/commands/UpdateRoleDescriptionCommand.ts @@ -95,6 +95,7 @@ export interface UpdateRoleDescriptionCommandOutput extends UpdateRoleDescriptio * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class UpdateRoleDescriptionCommand extends $Command diff --git a/clients/client-iam/src/commands/UpdateSAMLProviderCommand.ts b/clients/client-iam/src/commands/UpdateSAMLProviderCommand.ts index 24e620d103fbd..271b2859923b7 100644 --- a/clients/client-iam/src/commands/UpdateSAMLProviderCommand.ts +++ b/clients/client-iam/src/commands/UpdateSAMLProviderCommand.ts @@ -81,6 +81,7 @@ export interface UpdateSAMLProviderCommandOutput extends UpdateSAMLProviderRespo * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class UpdateSAMLProviderCommand extends $Command diff --git a/clients/client-iam/src/commands/UpdateSSHPublicKeyCommand.ts b/clients/client-iam/src/commands/UpdateSSHPublicKeyCommand.ts index 668174ba99cfd..bebafa306870a 100644 --- a/clients/client-iam/src/commands/UpdateSSHPublicKeyCommand.ts +++ b/clients/client-iam/src/commands/UpdateSSHPublicKeyCommand.ts @@ -65,6 +65,7 @@ export interface UpdateSSHPublicKeyCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class UpdateSSHPublicKeyCommand extends $Command diff --git a/clients/client-iam/src/commands/UpdateServerCertificateCommand.ts b/clients/client-iam/src/commands/UpdateServerCertificateCommand.ts index 62c639c4e3dae..3abe4c000f35c 100644 --- a/clients/client-iam/src/commands/UpdateServerCertificateCommand.ts +++ b/clients/client-iam/src/commands/UpdateServerCertificateCommand.ts @@ -90,6 +90,7 @@ export interface UpdateServerCertificateCommandOutput extends __MetadataBearer { * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class UpdateServerCertificateCommand extends $Command diff --git a/clients/client-iam/src/commands/UpdateServiceSpecificCredentialCommand.ts b/clients/client-iam/src/commands/UpdateServiceSpecificCredentialCommand.ts index cc57b53df1127..2151dd589ee77 100644 --- a/clients/client-iam/src/commands/UpdateServiceSpecificCredentialCommand.ts +++ b/clients/client-iam/src/commands/UpdateServiceSpecificCredentialCommand.ts @@ -65,6 +65,7 @@ export interface UpdateServiceSpecificCredentialCommandOutput extends __Metadata * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class UpdateServiceSpecificCredentialCommand extends $Command diff --git a/clients/client-iam/src/commands/UpdateSigningCertificateCommand.ts b/clients/client-iam/src/commands/UpdateSigningCertificateCommand.ts index 7c9bec7b07353..2bcd2e1937947 100644 --- a/clients/client-iam/src/commands/UpdateSigningCertificateCommand.ts +++ b/clients/client-iam/src/commands/UpdateSigningCertificateCommand.ts @@ -74,20 +74,23 @@ export interface UpdateSigningCertificateCommandOutput extends __MetadataBearer * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To change the active status of a signing certificate for an IAM user * ```javascript * // The following command changes the status of a signing certificate for a user named Bob to Inactive. * const input = { - * "CertificateId": "TA7SMP42TDN5Z26OBPJE7EXAMPLE", - * "Status": "Inactive", - * "UserName": "Bob" + * CertificateId: "TA7SMP42TDN5Z26OBPJE7EXAMPLE", + * Status: "Inactive", + * UserName: "Bob" * }; * const command = new UpdateSigningCertificateCommand(input); - * await client.send(command); - * // example id: 829aee7b-efc5-4b3b-84a5-7f899b38018d + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateSigningCertificateCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/UpdateUserCommand.ts b/clients/client-iam/src/commands/UpdateUserCommand.ts index dcf648d827ffb..b4b39f79a495f 100644 --- a/clients/client-iam/src/commands/UpdateUserCommand.ts +++ b/clients/client-iam/src/commands/UpdateUserCommand.ts @@ -93,19 +93,22 @@ export interface UpdateUserCommandOutput extends __MetadataBearer {} * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To change an IAM user's name * ```javascript * // The following command changes the name of the IAM user Bob to Robert. It does not change the user's path. * const input = { - * "NewUserName": "Robert", - * "UserName": "Bob" + * NewUserName: "Robert", + * UserName: "Bob" * }; * const command = new UpdateUserCommand(input); - * await client.send(command); - * // example id: 275d53ed-347a-44e6-b7d0-a96276154352 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateUserCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/UploadSSHPublicKeyCommand.ts b/clients/client-iam/src/commands/UploadSSHPublicKeyCommand.ts index daa8592023a64..5207d019f84b7 100644 --- a/clients/client-iam/src/commands/UploadSSHPublicKeyCommand.ts +++ b/clients/client-iam/src/commands/UploadSSHPublicKeyCommand.ts @@ -86,6 +86,7 @@ export interface UploadSSHPublicKeyCommandOutput extends UploadSSHPublicKeyRespo * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* + * * @public */ export class UploadSSHPublicKeyCommand extends $Command diff --git a/clients/client-iam/src/commands/UploadServerCertificateCommand.ts b/clients/client-iam/src/commands/UploadServerCertificateCommand.ts index be48434b5b10e..1643cda9ade8e 100644 --- a/clients/client-iam/src/commands/UploadServerCertificateCommand.ts +++ b/clients/client-iam/src/commands/UploadServerCertificateCommand.ts @@ -133,33 +133,33 @@ export interface UploadServerCertificateCommandOutput extends UploadServerCertif * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To upload a server certificate to your AWS account * ```javascript * // The following upload-server-certificate command uploads a server certificate to your AWS account: * const input = { - * "CertificateBody": "-----BEGIN CERTIFICATE----------END CERTIFICATE-----", - * "Path": "/company/servercerts/", - * "PrivateKey": "-----BEGIN DSA PRIVATE KEY----------END DSA PRIVATE KEY-----", - * "ServerCertificateName": "ProdServerCert" + * CertificateBody: "-----BEGIN CERTIFICATE----------END CERTIFICATE-----", + * Path: "/company/servercerts/", + * PrivateKey: "-----BEGIN DSA PRIVATE KEY----------END DSA PRIVATE KEY-----", + * ServerCertificateName: "ProdServerCert" * }; * const command = new UploadServerCertificateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ServerCertificateMetadata": { - * "Arn": "arn:aws:iam::123456789012:server-certificate/company/servercerts/ProdServerCert", - * "Expiration": "2012-05-08T01:02:03.004Z", - * "Path": "/company/servercerts/", - * "ServerCertificateId": "ASCA1111111111EXAMPLE", - * "ServerCertificateName": "ProdServerCert", - * "UploadDate": "2010-05-08T01:02:03.004Z" + * ServerCertificateMetadata: { + * Arn: "arn:aws:iam::123456789012:server-certificate/company/servercerts/ProdServerCert", + * Expiration: "2012-05-08T01:02:03.004Z", + * Path: "/company/servercerts/", + * ServerCertificateId: "ASCA1111111111EXAMPLE", + * ServerCertificateName: "ProdServerCert", + * UploadDate: "2010-05-08T01:02:03.004Z" * } * } * *\/ - * // example id: 06eab6d1-ebf2-4bd9-839d-f7508b9a38b6 * ``` * + * @public */ export class UploadServerCertificateCommand extends $Command .classBuilder< diff --git a/clients/client-iam/src/commands/UploadSigningCertificateCommand.ts b/clients/client-iam/src/commands/UploadSigningCertificateCommand.ts index d06d5a36d41f9..48b335cf2c5a6 100644 --- a/clients/client-iam/src/commands/UploadSigningCertificateCommand.ts +++ b/clients/client-iam/src/commands/UploadSigningCertificateCommand.ts @@ -112,30 +112,30 @@ export interface UploadSigningCertificateCommandOutput extends UploadSigningCert * @throws {@link IAMServiceException} *

Base exception class for all service exceptions from IAM service.

* - * @public + * * @example To upload a signing certificate for an IAM user * ```javascript * // The following command uploads a signing certificate for the IAM user named Bob. * const input = { - * "CertificateBody": "-----BEGIN CERTIFICATE----------END CERTIFICATE-----", - * "UserName": "Bob" + * CertificateBody: "-----BEGIN CERTIFICATE----------END CERTIFICATE-----", + * UserName: "Bob" * }; * const command = new UploadSigningCertificateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Certificate": { - * "CertificateBody": "-----BEGIN CERTIFICATE----------END CERTIFICATE-----", - * "CertificateId": "ID123456789012345EXAMPLE", - * "Status": "Active", - * "UploadDate": "2015-06-06T21:40:08.121Z", - * "UserName": "Bob" + * Certificate: { + * CertificateBody: "-----BEGIN CERTIFICATE----------END CERTIFICATE-----", + * CertificateId: "ID123456789012345EXAMPLE", + * Status: "Active", + * UploadDate: "2015-06-06T21:40:08.121Z", + * UserName: "Bob" * } * } * *\/ - * // example id: e67489b6-7b73-4e30-9ed3-9a9e0231e458 * ``` * + * @public */ export class UploadSigningCertificateCommand extends $Command .classBuilder< diff --git a/clients/client-identitystore/src/commands/CreateGroupCommand.ts b/clients/client-identitystore/src/commands/CreateGroupCommand.ts index e607dc5936a79..292010e4c3c24 100644 --- a/clients/client-identitystore/src/commands/CreateGroupCommand.ts +++ b/clients/client-identitystore/src/commands/CreateGroupCommand.ts @@ -87,6 +87,7 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class CreateGroupCommand extends $Command diff --git a/clients/client-identitystore/src/commands/CreateGroupMembershipCommand.ts b/clients/client-identitystore/src/commands/CreateGroupMembershipCommand.ts index afca47daf3906..2ed7ea1f25a9e 100644 --- a/clients/client-identitystore/src/commands/CreateGroupMembershipCommand.ts +++ b/clients/client-identitystore/src/commands/CreateGroupMembershipCommand.ts @@ -89,6 +89,7 @@ export interface CreateGroupMembershipCommandOutput extends CreateGroupMembershi * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class CreateGroupMembershipCommand extends $Command diff --git a/clients/client-identitystore/src/commands/CreateUserCommand.ts b/clients/client-identitystore/src/commands/CreateUserCommand.ts index 5b3ce09bb3d56..dd282493a0411 100644 --- a/clients/client-identitystore/src/commands/CreateUserCommand.ts +++ b/clients/client-identitystore/src/commands/CreateUserCommand.ts @@ -128,6 +128,7 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class CreateUserCommand extends $Command diff --git a/clients/client-identitystore/src/commands/DeleteGroupCommand.ts b/clients/client-identitystore/src/commands/DeleteGroupCommand.ts index 53e6fa9559af9..9d74588b41bcb 100644 --- a/clients/client-identitystore/src/commands/DeleteGroupCommand.ts +++ b/clients/client-identitystore/src/commands/DeleteGroupCommand.ts @@ -80,6 +80,7 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __Metadat * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class DeleteGroupCommand extends $Command diff --git a/clients/client-identitystore/src/commands/DeleteGroupMembershipCommand.ts b/clients/client-identitystore/src/commands/DeleteGroupMembershipCommand.ts index 2f2fb72c4427d..41dc77bcf6865 100644 --- a/clients/client-identitystore/src/commands/DeleteGroupMembershipCommand.ts +++ b/clients/client-identitystore/src/commands/DeleteGroupMembershipCommand.ts @@ -80,6 +80,7 @@ export interface DeleteGroupMembershipCommandOutput extends DeleteGroupMembershi * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class DeleteGroupMembershipCommand extends $Command diff --git a/clients/client-identitystore/src/commands/DeleteUserCommand.ts b/clients/client-identitystore/src/commands/DeleteUserCommand.ts index e3e1cda7af7d3..dda9699e460c5 100644 --- a/clients/client-identitystore/src/commands/DeleteUserCommand.ts +++ b/clients/client-identitystore/src/commands/DeleteUserCommand.ts @@ -80,6 +80,7 @@ export interface DeleteUserCommandOutput extends DeleteUserResponse, __MetadataB * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class DeleteUserCommand extends $Command diff --git a/clients/client-identitystore/src/commands/DescribeGroupCommand.ts b/clients/client-identitystore/src/commands/DescribeGroupCommand.ts index da58bf3d9ca84..21d030fb6cfa6 100644 --- a/clients/client-identitystore/src/commands/DescribeGroupCommand.ts +++ b/clients/client-identitystore/src/commands/DescribeGroupCommand.ts @@ -90,6 +90,7 @@ export interface DescribeGroupCommandOutput extends DescribeGroupResponse, __Met * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class DescribeGroupCommand extends $Command diff --git a/clients/client-identitystore/src/commands/DescribeGroupMembershipCommand.ts b/clients/client-identitystore/src/commands/DescribeGroupMembershipCommand.ts index 425e328b3b674..f014fe50cffaf 100644 --- a/clients/client-identitystore/src/commands/DescribeGroupMembershipCommand.ts +++ b/clients/client-identitystore/src/commands/DescribeGroupMembershipCommand.ts @@ -81,6 +81,7 @@ export interface DescribeGroupMembershipCommandOutput extends DescribeGroupMembe * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class DescribeGroupMembershipCommand extends $Command diff --git a/clients/client-identitystore/src/commands/DescribeUserCommand.ts b/clients/client-identitystore/src/commands/DescribeUserCommand.ts index cf8fb888de3d4..888e00169131a 100644 --- a/clients/client-identitystore/src/commands/DescribeUserCommand.ts +++ b/clients/client-identitystore/src/commands/DescribeUserCommand.ts @@ -126,6 +126,7 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class DescribeUserCommand extends $Command diff --git a/clients/client-identitystore/src/commands/GetGroupIdCommand.ts b/clients/client-identitystore/src/commands/GetGroupIdCommand.ts index 1018697e07e6a..0e6d9633ad439 100644 --- a/clients/client-identitystore/src/commands/GetGroupIdCommand.ts +++ b/clients/client-identitystore/src/commands/GetGroupIdCommand.ts @@ -86,6 +86,7 @@ export interface GetGroupIdCommandOutput extends GetGroupIdResponse, __MetadataB * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class GetGroupIdCommand extends $Command diff --git a/clients/client-identitystore/src/commands/GetGroupMembershipIdCommand.ts b/clients/client-identitystore/src/commands/GetGroupMembershipIdCommand.ts index dca3e6105cd37..c6def7d199edb 100644 --- a/clients/client-identitystore/src/commands/GetGroupMembershipIdCommand.ts +++ b/clients/client-identitystore/src/commands/GetGroupMembershipIdCommand.ts @@ -80,6 +80,7 @@ export interface GetGroupMembershipIdCommandOutput extends GetGroupMembershipIdR * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class GetGroupMembershipIdCommand extends $Command diff --git a/clients/client-identitystore/src/commands/GetUserIdCommand.ts b/clients/client-identitystore/src/commands/GetUserIdCommand.ts index babaf198099d8..6c14f18289936 100644 --- a/clients/client-identitystore/src/commands/GetUserIdCommand.ts +++ b/clients/client-identitystore/src/commands/GetUserIdCommand.ts @@ -86,6 +86,7 @@ export interface GetUserIdCommandOutput extends GetUserIdResponse, __MetadataBea * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class GetUserIdCommand extends $Command diff --git a/clients/client-identitystore/src/commands/IsMemberInGroupsCommand.ts b/clients/client-identitystore/src/commands/IsMemberInGroupsCommand.ts index 23131e6fb47dc..8076a7086490e 100644 --- a/clients/client-identitystore/src/commands/IsMemberInGroupsCommand.ts +++ b/clients/client-identitystore/src/commands/IsMemberInGroupsCommand.ts @@ -93,6 +93,7 @@ export interface IsMemberInGroupsCommandOutput extends IsMemberInGroupsResponse, * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class IsMemberInGroupsCommand extends $Command diff --git a/clients/client-identitystore/src/commands/ListGroupMembershipsCommand.ts b/clients/client-identitystore/src/commands/ListGroupMembershipsCommand.ts index 1757ff000e616..7a79f3b71ce4d 100644 --- a/clients/client-identitystore/src/commands/ListGroupMembershipsCommand.ts +++ b/clients/client-identitystore/src/commands/ListGroupMembershipsCommand.ts @@ -88,6 +88,7 @@ export interface ListGroupMembershipsCommandOutput extends ListGroupMembershipsR * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class ListGroupMembershipsCommand extends $Command diff --git a/clients/client-identitystore/src/commands/ListGroupMembershipsForMemberCommand.ts b/clients/client-identitystore/src/commands/ListGroupMembershipsForMemberCommand.ts index 1f7904c628dbf..28f272e46a65f 100644 --- a/clients/client-identitystore/src/commands/ListGroupMembershipsForMemberCommand.ts +++ b/clients/client-identitystore/src/commands/ListGroupMembershipsForMemberCommand.ts @@ -95,6 +95,7 @@ export interface ListGroupMembershipsForMemberCommandOutput * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class ListGroupMembershipsForMemberCommand extends $Command diff --git a/clients/client-identitystore/src/commands/ListGroupsCommand.ts b/clients/client-identitystore/src/commands/ListGroupsCommand.ts index 6f26c105ab284..decbae863efbf 100644 --- a/clients/client-identitystore/src/commands/ListGroupsCommand.ts +++ b/clients/client-identitystore/src/commands/ListGroupsCommand.ts @@ -103,6 +103,7 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class ListGroupsCommand extends $Command diff --git a/clients/client-identitystore/src/commands/ListUsersCommand.ts b/clients/client-identitystore/src/commands/ListUsersCommand.ts index 88352627fa6ac..2f8f07f668809 100644 --- a/clients/client-identitystore/src/commands/ListUsersCommand.ts +++ b/clients/client-identitystore/src/commands/ListUsersCommand.ts @@ -144,6 +144,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class ListUsersCommand extends $Command diff --git a/clients/client-identitystore/src/commands/UpdateGroupCommand.ts b/clients/client-identitystore/src/commands/UpdateGroupCommand.ts index a7f2b63b7d726..02cab3a6b54b5 100644 --- a/clients/client-identitystore/src/commands/UpdateGroupCommand.ts +++ b/clients/client-identitystore/src/commands/UpdateGroupCommand.ts @@ -89,6 +89,7 @@ export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __Metadat * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class UpdateGroupCommand extends $Command diff --git a/clients/client-identitystore/src/commands/UpdateUserCommand.ts b/clients/client-identitystore/src/commands/UpdateUserCommand.ts index 2e57853483427..e5b4f33bf5d4b 100644 --- a/clients/client-identitystore/src/commands/UpdateUserCommand.ts +++ b/clients/client-identitystore/src/commands/UpdateUserCommand.ts @@ -89,6 +89,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB * @throws {@link IdentitystoreServiceException} *

Base exception class for all service exceptions from Identitystore service.

* + * * @public */ export class UpdateUserCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/CancelImageCreationCommand.ts b/clients/client-imagebuilder/src/commands/CancelImageCreationCommand.ts index e9694013516f1..588bfe693f169 100644 --- a/clients/client-imagebuilder/src/commands/CancelImageCreationCommand.ts +++ b/clients/client-imagebuilder/src/commands/CancelImageCreationCommand.ts @@ -88,6 +88,7 @@ export interface CancelImageCreationCommandOutput extends CancelImageCreationRes * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class CancelImageCreationCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/CancelLifecycleExecutionCommand.ts b/clients/client-imagebuilder/src/commands/CancelLifecycleExecutionCommand.ts index 44e7ed3deeb53..cdac1688f74a5 100644 --- a/clients/client-imagebuilder/src/commands/CancelLifecycleExecutionCommand.ts +++ b/clients/client-imagebuilder/src/commands/CancelLifecycleExecutionCommand.ts @@ -85,6 +85,7 @@ export interface CancelLifecycleExecutionCommandOutput extends CancelLifecycleEx * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class CancelLifecycleExecutionCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/CreateComponentCommand.ts b/clients/client-imagebuilder/src/commands/CreateComponentCommand.ts index 8fc60d597c2a4..cdaef3030e78b 100644 --- a/clients/client-imagebuilder/src/commands/CreateComponentCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateComponentCommand.ts @@ -123,6 +123,7 @@ export interface CreateComponentCommandOutput extends CreateComponentResponse, _ * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class CreateComponentCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/CreateContainerRecipeCommand.ts b/clients/client-imagebuilder/src/commands/CreateContainerRecipeCommand.ts index c1dfefeaf811e..3884a34fedfe6 100644 --- a/clients/client-imagebuilder/src/commands/CreateContainerRecipeCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateContainerRecipeCommand.ts @@ -149,6 +149,7 @@ export interface CreateContainerRecipeCommandOutput extends CreateContainerRecip * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class CreateContainerRecipeCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/CreateDistributionConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/CreateDistributionConfigurationCommand.ts index 113ab0da555cf..d089d2548c8c7 100644 --- a/clients/client-imagebuilder/src/commands/CreateDistributionConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateDistributionConfigurationCommand.ts @@ -180,6 +180,7 @@ export interface CreateDistributionConfigurationCommandOutput * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class CreateDistributionConfigurationCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/CreateImageCommand.ts b/clients/client-imagebuilder/src/commands/CreateImageCommand.ts index 62aeb0794f524..648e89373c6c8 100644 --- a/clients/client-imagebuilder/src/commands/CreateImageCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateImageCommand.ts @@ -131,6 +131,7 @@ export interface CreateImageCommandOutput extends CreateImageResponse, __Metadat * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class CreateImageCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/CreateImagePipelineCommand.ts b/clients/client-imagebuilder/src/commands/CreateImagePipelineCommand.ts index ea6dfa3ef7151..772b3dd96d58e 100644 --- a/clients/client-imagebuilder/src/commands/CreateImagePipelineCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateImagePipelineCommand.ts @@ -140,6 +140,7 @@ export interface CreateImagePipelineCommandOutput extends CreateImagePipelineRes * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class CreateImagePipelineCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/CreateImageRecipeCommand.ts b/clients/client-imagebuilder/src/commands/CreateImageRecipeCommand.ts index 8a23b79529a25..b5bd9c356b37e 100644 --- a/clients/client-imagebuilder/src/commands/CreateImageRecipeCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateImageRecipeCommand.ts @@ -142,6 +142,7 @@ export interface CreateImageRecipeCommandOutput extends CreateImageRecipeRespons * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class CreateImageRecipeCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/CreateInfrastructureConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/CreateInfrastructureConfigurationCommand.ts index caff7227ac69d..ffb525c87da79 100644 --- a/clients/client-imagebuilder/src/commands/CreateInfrastructureConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateInfrastructureConfigurationCommand.ts @@ -138,6 +138,7 @@ export interface CreateInfrastructureConfigurationCommandOutput * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class CreateInfrastructureConfigurationCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/CreateLifecyclePolicyCommand.ts b/clients/client-imagebuilder/src/commands/CreateLifecyclePolicyCommand.ts index cbefde56ec6dc..a2a48a714df98 100644 --- a/clients/client-imagebuilder/src/commands/CreateLifecyclePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateLifecyclePolicyCommand.ts @@ -147,6 +147,7 @@ export interface CreateLifecyclePolicyCommandOutput extends CreateLifecyclePolic * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class CreateLifecyclePolicyCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/CreateWorkflowCommand.ts b/clients/client-imagebuilder/src/commands/CreateWorkflowCommand.ts index 502029a4f2bf8..6e6b94bf8e07c 100644 --- a/clients/client-imagebuilder/src/commands/CreateWorkflowCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateWorkflowCommand.ts @@ -108,6 +108,7 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class CreateWorkflowCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/DeleteComponentCommand.ts b/clients/client-imagebuilder/src/commands/DeleteComponentCommand.ts index 48ab0ad25098d..2ec0cb8445cd9 100644 --- a/clients/client-imagebuilder/src/commands/DeleteComponentCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteComponentCommand.ts @@ -81,6 +81,7 @@ export interface DeleteComponentCommandOutput extends DeleteComponentResponse, _ * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class DeleteComponentCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/DeleteContainerRecipeCommand.ts b/clients/client-imagebuilder/src/commands/DeleteContainerRecipeCommand.ts index 6cf45c3404975..450421c7bd55f 100644 --- a/clients/client-imagebuilder/src/commands/DeleteContainerRecipeCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteContainerRecipeCommand.ts @@ -81,6 +81,7 @@ export interface DeleteContainerRecipeCommandOutput extends DeleteContainerRecip * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class DeleteContainerRecipeCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/DeleteDistributionConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/DeleteDistributionConfigurationCommand.ts index fe3ce58465250..b34fc099b1af4 100644 --- a/clients/client-imagebuilder/src/commands/DeleteDistributionConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteDistributionConfigurationCommand.ts @@ -86,6 +86,7 @@ export interface DeleteDistributionConfigurationCommandOutput * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class DeleteDistributionConfigurationCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/DeleteImageCommand.ts b/clients/client-imagebuilder/src/commands/DeleteImageCommand.ts index 26224dd6452f5..9285a0e24e9c7 100644 --- a/clients/client-imagebuilder/src/commands/DeleteImageCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteImageCommand.ts @@ -102,6 +102,7 @@ export interface DeleteImageCommandOutput extends DeleteImageResponse, __Metadat * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class DeleteImageCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/DeleteImagePipelineCommand.ts b/clients/client-imagebuilder/src/commands/DeleteImagePipelineCommand.ts index 5d12a5a951e90..2ce35aefd0443 100644 --- a/clients/client-imagebuilder/src/commands/DeleteImagePipelineCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteImagePipelineCommand.ts @@ -81,6 +81,7 @@ export interface DeleteImagePipelineCommandOutput extends DeleteImagePipelineRes * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class DeleteImagePipelineCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/DeleteImageRecipeCommand.ts b/clients/client-imagebuilder/src/commands/DeleteImageRecipeCommand.ts index 19fe8cc89f92b..040bdf4780134 100644 --- a/clients/client-imagebuilder/src/commands/DeleteImageRecipeCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteImageRecipeCommand.ts @@ -81,6 +81,7 @@ export interface DeleteImageRecipeCommandOutput extends DeleteImageRecipeRespons * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class DeleteImageRecipeCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/DeleteInfrastructureConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/DeleteInfrastructureConfigurationCommand.ts index f5d07ad9b6390..8c9f8163fe6b8 100644 --- a/clients/client-imagebuilder/src/commands/DeleteInfrastructureConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteInfrastructureConfigurationCommand.ts @@ -89,6 +89,7 @@ export interface DeleteInfrastructureConfigurationCommandOutput * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class DeleteInfrastructureConfigurationCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/DeleteLifecyclePolicyCommand.ts b/clients/client-imagebuilder/src/commands/DeleteLifecyclePolicyCommand.ts index 090ef41683274..95a39b9ca1e14 100644 --- a/clients/client-imagebuilder/src/commands/DeleteLifecyclePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteLifecyclePolicyCommand.ts @@ -80,6 +80,7 @@ export interface DeleteLifecyclePolicyCommandOutput extends DeleteLifecyclePolic * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class DeleteLifecyclePolicyCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/DeleteWorkflowCommand.ts b/clients/client-imagebuilder/src/commands/DeleteWorkflowCommand.ts index 4988fc37b21ba..f652f65313276 100644 --- a/clients/client-imagebuilder/src/commands/DeleteWorkflowCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteWorkflowCommand.ts @@ -80,6 +80,7 @@ export interface DeleteWorkflowCommandOutput extends DeleteWorkflowResponse, __M * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class DeleteWorkflowCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetComponentCommand.ts b/clients/client-imagebuilder/src/commands/GetComponentCommand.ts index 2f8888f582f2a..177dde90f650b 100644 --- a/clients/client-imagebuilder/src/commands/GetComponentCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetComponentCommand.ts @@ -118,6 +118,7 @@ export interface GetComponentCommandOutput extends GetComponentResponse, __Metad * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetComponentCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetComponentPolicyCommand.ts b/clients/client-imagebuilder/src/commands/GetComponentPolicyCommand.ts index de608c9a13ce7..48ddeed95141d 100644 --- a/clients/client-imagebuilder/src/commands/GetComponentPolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetComponentPolicyCommand.ts @@ -75,6 +75,7 @@ export interface GetComponentPolicyCommandOutput extends GetComponentPolicyRespo * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetComponentPolicyCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetContainerRecipeCommand.ts b/clients/client-imagebuilder/src/commands/GetContainerRecipeCommand.ts index d7fedd64bc8ce..a81893e6cf310 100644 --- a/clients/client-imagebuilder/src/commands/GetContainerRecipeCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetContainerRecipeCommand.ts @@ -131,6 +131,7 @@ export interface GetContainerRecipeCommandOutput extends GetContainerRecipeRespo * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetContainerRecipeCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetContainerRecipePolicyCommand.ts b/clients/client-imagebuilder/src/commands/GetContainerRecipePolicyCommand.ts index f0be32c9cdff5..9a1fa2fb73300 100644 --- a/clients/client-imagebuilder/src/commands/GetContainerRecipePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetContainerRecipePolicyCommand.ts @@ -75,6 +75,7 @@ export interface GetContainerRecipePolicyCommandOutput extends GetContainerRecip * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetContainerRecipePolicyCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetDistributionConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/GetDistributionConfigurationCommand.ts index ee2819f338237..41b4cd3f0aaa9 100644 --- a/clients/client-imagebuilder/src/commands/GetDistributionConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetDistributionConfigurationCommand.ts @@ -163,6 +163,7 @@ export interface GetDistributionConfigurationCommandOutput * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetDistributionConfigurationCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetImageCommand.ts b/clients/client-imagebuilder/src/commands/GetImageCommand.ts index d82c601ea6ce6..191e7c7717fa9 100644 --- a/clients/client-imagebuilder/src/commands/GetImageCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetImageCommand.ts @@ -377,6 +377,7 @@ export interface GetImageCommandOutput extends GetImageResponse, __MetadataBeare * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetImageCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetImagePipelineCommand.ts b/clients/client-imagebuilder/src/commands/GetImagePipelineCommand.ts index babcb7a7c885e..f1eaa47e81da0 100644 --- a/clients/client-imagebuilder/src/commands/GetImagePipelineCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetImagePipelineCommand.ts @@ -129,6 +129,7 @@ export interface GetImagePipelineCommandOutput extends GetImagePipelineResponse, * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetImagePipelineCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetImagePolicyCommand.ts b/clients/client-imagebuilder/src/commands/GetImagePolicyCommand.ts index b0d8a026dc072..df69bdc3a1116 100644 --- a/clients/client-imagebuilder/src/commands/GetImagePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetImagePolicyCommand.ts @@ -75,6 +75,7 @@ export interface GetImagePolicyCommandOutput extends GetImagePolicyResponse, __M * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetImagePolicyCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetImageRecipeCommand.ts b/clients/client-imagebuilder/src/commands/GetImageRecipeCommand.ts index 95f5c96c0d35e..8015bbee24c8f 100644 --- a/clients/client-imagebuilder/src/commands/GetImageRecipeCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetImageRecipeCommand.ts @@ -127,6 +127,7 @@ export interface GetImageRecipeCommandOutput extends GetImageRecipeResponse, __M * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetImageRecipeCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetImageRecipePolicyCommand.ts b/clients/client-imagebuilder/src/commands/GetImageRecipePolicyCommand.ts index 40d45224c3af9..5ca27bfd8f889 100644 --- a/clients/client-imagebuilder/src/commands/GetImageRecipePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetImageRecipePolicyCommand.ts @@ -75,6 +75,7 @@ export interface GetImageRecipePolicyCommandOutput extends GetImageRecipePolicyR * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetImageRecipePolicyCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetInfrastructureConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/GetInfrastructureConfigurationCommand.ts index 7a57943e57a78..9d7140abc101d 100644 --- a/clients/client-imagebuilder/src/commands/GetInfrastructureConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetInfrastructureConfigurationCommand.ts @@ -121,6 +121,7 @@ export interface GetInfrastructureConfigurationCommandOutput * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetInfrastructureConfigurationCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetLifecycleExecutionCommand.ts b/clients/client-imagebuilder/src/commands/GetLifecycleExecutionCommand.ts index eac1ba717d0f2..1c4b53e20c9cf 100644 --- a/clients/client-imagebuilder/src/commands/GetLifecycleExecutionCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetLifecycleExecutionCommand.ts @@ -88,6 +88,7 @@ export interface GetLifecycleExecutionCommandOutput extends GetLifecycleExecutio * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetLifecycleExecutionCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetLifecyclePolicyCommand.ts b/clients/client-imagebuilder/src/commands/GetLifecyclePolicyCommand.ts index b91b922bb7a2a..f62fb231adda4 100644 --- a/clients/client-imagebuilder/src/commands/GetLifecyclePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetLifecyclePolicyCommand.ts @@ -135,6 +135,7 @@ export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyRespo * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetLifecyclePolicyCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetMarketplaceResourceCommand.ts b/clients/client-imagebuilder/src/commands/GetMarketplaceResourceCommand.ts index 1349479e2de7b..e4f15934f42ef 100644 --- a/clients/client-imagebuilder/src/commands/GetMarketplaceResourceCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetMarketplaceResourceCommand.ts @@ -82,6 +82,7 @@ export interface GetMarketplaceResourceCommandOutput extends GetMarketplaceResou * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetMarketplaceResourceCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetWorkflowCommand.ts b/clients/client-imagebuilder/src/commands/GetWorkflowCommand.ts index 819c3634f7230..0849b5e5e2c9d 100644 --- a/clients/client-imagebuilder/src/commands/GetWorkflowCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetWorkflowCommand.ts @@ -104,6 +104,7 @@ export interface GetWorkflowCommandOutput extends GetWorkflowResponse, __Metadat * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetWorkflowCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetWorkflowExecutionCommand.ts b/clients/client-imagebuilder/src/commands/GetWorkflowExecutionCommand.ts index 76b75749faec4..7450fbba49057 100644 --- a/clients/client-imagebuilder/src/commands/GetWorkflowExecutionCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetWorkflowExecutionCommand.ts @@ -90,6 +90,7 @@ export interface GetWorkflowExecutionCommandOutput extends GetWorkflowExecutionR * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetWorkflowExecutionCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/GetWorkflowStepExecutionCommand.ts b/clients/client-imagebuilder/src/commands/GetWorkflowStepExecutionCommand.ts index a6d89b869f606..6a0093f93dda1 100644 --- a/clients/client-imagebuilder/src/commands/GetWorkflowStepExecutionCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetWorkflowStepExecutionCommand.ts @@ -93,6 +93,7 @@ export interface GetWorkflowStepExecutionCommandOutput extends GetWorkflowStepEx * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class GetWorkflowStepExecutionCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ImportComponentCommand.ts b/clients/client-imagebuilder/src/commands/ImportComponentCommand.ts index 665a7e2c5e918..aa63153fde912 100644 --- a/clients/client-imagebuilder/src/commands/ImportComponentCommand.ts +++ b/clients/client-imagebuilder/src/commands/ImportComponentCommand.ts @@ -106,6 +106,7 @@ export interface ImportComponentCommandOutput extends ImportComponentResponse, _ * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ImportComponentCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ImportDiskImageCommand.ts b/clients/client-imagebuilder/src/commands/ImportDiskImageCommand.ts index dfb4139793cc0..bb96016647375 100644 --- a/clients/client-imagebuilder/src/commands/ImportDiskImageCommand.ts +++ b/clients/client-imagebuilder/src/commands/ImportDiskImageCommand.ts @@ -85,6 +85,7 @@ export interface ImportDiskImageCommandOutput extends ImportDiskImageResponse, _ * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ImportDiskImageCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ImportVmImageCommand.ts b/clients/client-imagebuilder/src/commands/ImportVmImageCommand.ts index bc02b8babbcfe..3e87da9462bd5 100644 --- a/clients/client-imagebuilder/src/commands/ImportVmImageCommand.ts +++ b/clients/client-imagebuilder/src/commands/ImportVmImageCommand.ts @@ -85,6 +85,7 @@ export interface ImportVmImageCommandOutput extends ImportVmImageResponse, __Met * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ImportVmImageCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListComponentBuildVersionsCommand.ts b/clients/client-imagebuilder/src/commands/ListComponentBuildVersionsCommand.ts index eb947b6e1942a..6ff3560e21de7 100644 --- a/clients/client-imagebuilder/src/commands/ListComponentBuildVersionsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListComponentBuildVersionsCommand.ts @@ -108,6 +108,7 @@ export interface ListComponentBuildVersionsCommandOutput extends ListComponentBu * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListComponentBuildVersionsCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListComponentsCommand.ts b/clients/client-imagebuilder/src/commands/ListComponentsCommand.ts index 38aae74822abf..ed274d0150832 100644 --- a/clients/client-imagebuilder/src/commands/ListComponentsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListComponentsCommand.ts @@ -124,6 +124,7 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListComponentsCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListContainerRecipesCommand.ts b/clients/client-imagebuilder/src/commands/ListContainerRecipesCommand.ts index 52c31dded4750..199d8d05b21be 100644 --- a/clients/client-imagebuilder/src/commands/ListContainerRecipesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListContainerRecipesCommand.ts @@ -104,6 +104,7 @@ export interface ListContainerRecipesCommandOutput extends ListContainerRecipesR * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListContainerRecipesCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListDistributionConfigurationsCommand.ts b/clients/client-imagebuilder/src/commands/ListDistributionConfigurationsCommand.ts index 28bcae1a060c9..f192af157667f 100644 --- a/clients/client-imagebuilder/src/commands/ListDistributionConfigurationsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListDistributionConfigurationsCommand.ts @@ -109,6 +109,7 @@ export interface ListDistributionConfigurationsCommandOutput * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListDistributionConfigurationsCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListImageBuildVersionsCommand.ts b/clients/client-imagebuilder/src/commands/ListImageBuildVersionsCommand.ts index 812ac30a7f3d3..a5842df7ab85a 100644 --- a/clients/client-imagebuilder/src/commands/ListImageBuildVersionsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImageBuildVersionsCommand.ts @@ -136,6 +136,7 @@ export interface ListImageBuildVersionsCommandOutput extends ListImageBuildVersi * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListImageBuildVersionsCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListImagePackagesCommand.ts b/clients/client-imagebuilder/src/commands/ListImagePackagesCommand.ts index b11320e28a840..1408f87089473 100644 --- a/clients/client-imagebuilder/src/commands/ListImagePackagesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImagePackagesCommand.ts @@ -92,6 +92,7 @@ export interface ListImagePackagesCommandOutput extends ListImagePackagesRespons * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListImagePackagesCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListImagePipelineImagesCommand.ts b/clients/client-imagebuilder/src/commands/ListImagePipelineImagesCommand.ts index 1ceb5df8aa652..222e589d83535 100644 --- a/clients/client-imagebuilder/src/commands/ListImagePipelineImagesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImagePipelineImagesCommand.ts @@ -139,6 +139,7 @@ export interface ListImagePipelineImagesCommandOutput extends ListImagePipelineI * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListImagePipelineImagesCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListImagePipelinesCommand.ts b/clients/client-imagebuilder/src/commands/ListImagePipelinesCommand.ts index 4a12b1001e8ce..cc31e34648f8e 100644 --- a/clients/client-imagebuilder/src/commands/ListImagePipelinesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImagePipelinesCommand.ts @@ -144,6 +144,7 @@ export interface ListImagePipelinesCommandOutput extends ListImagePipelinesRespo * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListImagePipelinesCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListImageRecipesCommand.ts b/clients/client-imagebuilder/src/commands/ListImageRecipesCommand.ts index c0b27980aaf32..a89db0c5130b6 100644 --- a/clients/client-imagebuilder/src/commands/ListImageRecipesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImageRecipesCommand.ts @@ -103,6 +103,7 @@ export interface ListImageRecipesCommandOutput extends ListImageRecipesResponse, * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListImageRecipesCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListImageScanFindingAggregationsCommand.ts b/clients/client-imagebuilder/src/commands/ListImageScanFindingAggregationsCommand.ts index 9a863d88cdd53..a11d7a8d98513 100644 --- a/clients/client-imagebuilder/src/commands/ListImageScanFindingAggregationsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImageScanFindingAggregationsCommand.ts @@ -159,6 +159,7 @@ export interface ListImageScanFindingAggregationsCommandOutput * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListImageScanFindingAggregationsCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListImageScanFindingsCommand.ts b/clients/client-imagebuilder/src/commands/ListImageScanFindingsCommand.ts index 1bf4f1ac727c5..7fa6a239cae8b 100644 --- a/clients/client-imagebuilder/src/commands/ListImageScanFindingsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImageScanFindingsCommand.ts @@ -161,6 +161,7 @@ export interface ListImageScanFindingsCommandOutput extends ListImageScanFinding * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListImageScanFindingsCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListImagesCommand.ts b/clients/client-imagebuilder/src/commands/ListImagesCommand.ts index af368cab452e8..3130962efc3bf 100644 --- a/clients/client-imagebuilder/src/commands/ListImagesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImagesCommand.ts @@ -107,6 +107,7 @@ export interface ListImagesCommandOutput extends ListImagesResponse, __MetadataB * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListImagesCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListInfrastructureConfigurationsCommand.ts b/clients/client-imagebuilder/src/commands/ListInfrastructureConfigurationsCommand.ts index 5369b2abb1374..5cabe65874d76 100644 --- a/clients/client-imagebuilder/src/commands/ListInfrastructureConfigurationsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListInfrastructureConfigurationsCommand.ts @@ -119,6 +119,7 @@ export interface ListInfrastructureConfigurationsCommandOutput * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListInfrastructureConfigurationsCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListLifecycleExecutionResourcesCommand.ts b/clients/client-imagebuilder/src/commands/ListLifecycleExecutionResourcesCommand.ts index b687445841015..7e6c8cb022dee 100644 --- a/clients/client-imagebuilder/src/commands/ListLifecycleExecutionResourcesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListLifecycleExecutionResourcesCommand.ts @@ -121,6 +121,7 @@ export interface ListLifecycleExecutionResourcesCommandOutput * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListLifecycleExecutionResourcesCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListLifecycleExecutionsCommand.ts b/clients/client-imagebuilder/src/commands/ListLifecycleExecutionsCommand.ts index f17d729f313bb..7c9547b13afbc 100644 --- a/clients/client-imagebuilder/src/commands/ListLifecycleExecutionsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListLifecycleExecutionsCommand.ts @@ -96,6 +96,7 @@ export interface ListLifecycleExecutionsCommandOutput extends ListLifecycleExecu * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListLifecycleExecutionsCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListLifecyclePoliciesCommand.ts b/clients/client-imagebuilder/src/commands/ListLifecyclePoliciesCommand.ts index 5ef9762b5ec3e..b4996a5752f94 100644 --- a/clients/client-imagebuilder/src/commands/ListLifecyclePoliciesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListLifecyclePoliciesCommand.ts @@ -104,6 +104,7 @@ export interface ListLifecyclePoliciesCommandOutput extends ListLifecyclePolicie * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListLifecyclePoliciesCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListTagsForResourceCommand.ts b/clients/client-imagebuilder/src/commands/ListTagsForResourceCommand.ts index 8c674b31a2a78..1d770abd7fc91 100644 --- a/clients/client-imagebuilder/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListTagsForResourceCommand.ts @@ -68,6 +68,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListWaitingWorkflowStepsCommand.ts b/clients/client-imagebuilder/src/commands/ListWaitingWorkflowStepsCommand.ts index 52f4dfb76186e..4880c615cf5a7 100644 --- a/clients/client-imagebuilder/src/commands/ListWaitingWorkflowStepsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListWaitingWorkflowStepsCommand.ts @@ -92,6 +92,7 @@ export interface ListWaitingWorkflowStepsCommandOutput extends ListWaitingWorkfl * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListWaitingWorkflowStepsCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListWorkflowBuildVersionsCommand.ts b/clients/client-imagebuilder/src/commands/ListWorkflowBuildVersionsCommand.ts index e945274738fa5..73ab67f5bfb6a 100644 --- a/clients/client-imagebuilder/src/commands/ListWorkflowBuildVersionsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListWorkflowBuildVersionsCommand.ts @@ -100,6 +100,7 @@ export interface ListWorkflowBuildVersionsCommandOutput extends ListWorkflowBuil * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListWorkflowBuildVersionsCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListWorkflowExecutionsCommand.ts b/clients/client-imagebuilder/src/commands/ListWorkflowExecutionsCommand.ts index 26acbbe5a2120..984e84146b473 100644 --- a/clients/client-imagebuilder/src/commands/ListWorkflowExecutionsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListWorkflowExecutionsCommand.ts @@ -101,6 +101,7 @@ export interface ListWorkflowExecutionsCommandOutput extends ListWorkflowExecuti * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListWorkflowExecutionsCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListWorkflowStepExecutionsCommand.ts b/clients/client-imagebuilder/src/commands/ListWorkflowStepExecutionsCommand.ts index c9cd26e477f62..393a6511e7e44 100644 --- a/clients/client-imagebuilder/src/commands/ListWorkflowStepExecutionsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListWorkflowStepExecutionsCommand.ts @@ -102,6 +102,7 @@ export interface ListWorkflowStepExecutionsCommandOutput extends ListWorkflowSte * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListWorkflowStepExecutionsCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/ListWorkflowsCommand.ts b/clients/client-imagebuilder/src/commands/ListWorkflowsCommand.ts index 577059558086a..a6fa003053f41 100644 --- a/clients/client-imagebuilder/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListWorkflowsCommand.ts @@ -101,6 +101,7 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class ListWorkflowsCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/PutComponentPolicyCommand.ts b/clients/client-imagebuilder/src/commands/PutComponentPolicyCommand.ts index 428f28722315e..bfc5ffa0a1bfa 100644 --- a/clients/client-imagebuilder/src/commands/PutComponentPolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/PutComponentPolicyCommand.ts @@ -86,6 +86,7 @@ export interface PutComponentPolicyCommandOutput extends PutComponentPolicyRespo * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class PutComponentPolicyCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/PutContainerRecipePolicyCommand.ts b/clients/client-imagebuilder/src/commands/PutContainerRecipePolicyCommand.ts index df508efe18e29..d94582954a221 100644 --- a/clients/client-imagebuilder/src/commands/PutContainerRecipePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/PutContainerRecipePolicyCommand.ts @@ -91,6 +91,7 @@ export interface PutContainerRecipePolicyCommandOutput extends PutContainerRecip * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class PutContainerRecipePolicyCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/PutImagePolicyCommand.ts b/clients/client-imagebuilder/src/commands/PutImagePolicyCommand.ts index 175473f5be164..043663bddda52 100644 --- a/clients/client-imagebuilder/src/commands/PutImagePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/PutImagePolicyCommand.ts @@ -86,6 +86,7 @@ export interface PutImagePolicyCommandOutput extends PutImagePolicyResponse, __M * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class PutImagePolicyCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/PutImageRecipePolicyCommand.ts b/clients/client-imagebuilder/src/commands/PutImageRecipePolicyCommand.ts index 9e0803fa9c93a..445b313dc1d0e 100644 --- a/clients/client-imagebuilder/src/commands/PutImageRecipePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/PutImageRecipePolicyCommand.ts @@ -86,6 +86,7 @@ export interface PutImageRecipePolicyCommandOutput extends PutImageRecipePolicyR * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class PutImageRecipePolicyCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/SendWorkflowStepActionCommand.ts b/clients/client-imagebuilder/src/commands/SendWorkflowStepActionCommand.ts index ae00c5143db63..6a4b31de04467 100644 --- a/clients/client-imagebuilder/src/commands/SendWorkflowStepActionCommand.ts +++ b/clients/client-imagebuilder/src/commands/SendWorkflowStepActionCommand.ts @@ -97,6 +97,7 @@ export interface SendWorkflowStepActionCommandOutput extends SendWorkflowStepAct * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class SendWorkflowStepActionCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/StartImagePipelineExecutionCommand.ts b/clients/client-imagebuilder/src/commands/StartImagePipelineExecutionCommand.ts index a0104bce15476..ca13fbb5c9125 100644 --- a/clients/client-imagebuilder/src/commands/StartImagePipelineExecutionCommand.ts +++ b/clients/client-imagebuilder/src/commands/StartImagePipelineExecutionCommand.ts @@ -95,6 +95,7 @@ export interface StartImagePipelineExecutionCommandOutput * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class StartImagePipelineExecutionCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/StartResourceStateUpdateCommand.ts b/clients/client-imagebuilder/src/commands/StartResourceStateUpdateCommand.ts index 0e30290f57f17..09c2df7bacb68 100644 --- a/clients/client-imagebuilder/src/commands/StartResourceStateUpdateCommand.ts +++ b/clients/client-imagebuilder/src/commands/StartResourceStateUpdateCommand.ts @@ -118,6 +118,7 @@ export interface StartResourceStateUpdateCommandOutput extends StartResourceStat * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class StartResourceStateUpdateCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/TagResourceCommand.ts b/clients/client-imagebuilder/src/commands/TagResourceCommand.ts index 0940d8839a416..b207d786a42cf 100644 --- a/clients/client-imagebuilder/src/commands/TagResourceCommand.ts +++ b/clients/client-imagebuilder/src/commands/TagResourceCommand.ts @@ -67,6 +67,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/UntagResourceCommand.ts b/clients/client-imagebuilder/src/commands/UntagResourceCommand.ts index 1117e8422a1b6..30864b705cb6e 100644 --- a/clients/client-imagebuilder/src/commands/UntagResourceCommand.ts +++ b/clients/client-imagebuilder/src/commands/UntagResourceCommand.ts @@ -67,6 +67,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/UpdateDistributionConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/UpdateDistributionConfigurationCommand.ts index 48651a2f4c6d3..c40cd8001a131 100644 --- a/clients/client-imagebuilder/src/commands/UpdateDistributionConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/UpdateDistributionConfigurationCommand.ts @@ -169,6 +169,7 @@ export interface UpdateDistributionConfigurationCommandOutput * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class UpdateDistributionConfigurationCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/UpdateImagePipelineCommand.ts b/clients/client-imagebuilder/src/commands/UpdateImagePipelineCommand.ts index 92641db4af47e..4ce604085dabd 100644 --- a/clients/client-imagebuilder/src/commands/UpdateImagePipelineCommand.ts +++ b/clients/client-imagebuilder/src/commands/UpdateImagePipelineCommand.ts @@ -135,6 +135,7 @@ export interface UpdateImagePipelineCommandOutput extends UpdateImagePipelineRes * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class UpdateImagePipelineCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/UpdateInfrastructureConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/UpdateInfrastructureConfigurationCommand.ts index 85385cdaf7b54..270113bfdafd1 100644 --- a/clients/client-imagebuilder/src/commands/UpdateInfrastructureConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/UpdateInfrastructureConfigurationCommand.ts @@ -127,6 +127,7 @@ export interface UpdateInfrastructureConfigurationCommandOutput * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class UpdateInfrastructureConfigurationCommand extends $Command diff --git a/clients/client-imagebuilder/src/commands/UpdateLifecyclePolicyCommand.ts b/clients/client-imagebuilder/src/commands/UpdateLifecyclePolicyCommand.ts index c5e53a7e8a23d..fe3b2b14ffc2b 100644 --- a/clients/client-imagebuilder/src/commands/UpdateLifecyclePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/UpdateLifecyclePolicyCommand.ts @@ -141,6 +141,7 @@ export interface UpdateLifecyclePolicyCommandOutput extends UpdateLifecyclePolic * @throws {@link ImagebuilderServiceException} *

Base exception class for all service exceptions from Imagebuilder service.

* + * * @public */ export class UpdateLifecyclePolicyCommand extends $Command diff --git a/clients/client-inspector-scan/src/commands/ScanSbomCommand.ts b/clients/client-inspector-scan/src/commands/ScanSbomCommand.ts index 93b335d681274..e815f2baf71e5 100644 --- a/clients/client-inspector-scan/src/commands/ScanSbomCommand.ts +++ b/clients/client-inspector-scan/src/commands/ScanSbomCommand.ts @@ -73,180 +73,180 @@ export interface ScanSbomCommandOutput extends ScanSbomResponse, __MetadataBeare * @throws {@link InspectorScanServiceException} *

Base exception class for all service exceptions from InspectorScan service.

* - * @public + * * @example Sample ScanSbom Call * ```javascript * // * const input = { - * "outputFormat": "CYCLONE_DX_1_5", - * "sbom": { - * "bomFormat": "CycloneDX", - * "components": [ + * outputFormat: "CYCLONE_DX_1_5", + * sbom: { + * bomFormat: "CycloneDX", + * components: [ * { - * "name": "log4j-core", - * "type": "library", - * "purl": "pkg:maven/org.apache.logging.log4j/log4j-core@2.17.0" + * name: "log4j-core", + * purl: "pkg:maven/org.apache.logging.log4j/log4j-core@2.17.0", + * type: "library" * } * ], - * "specVersion": "1.5" + * specVersion: "1.5" * } * }; * const command = new ScanSbomCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "sbom": { - * "metadata": { - * "properties": [ + * sbom: { + * bomFormat: "CycloneDX", + * components: [ + * { + * bom-ref: "comp-1", + * name: "log4j-core", + * purl: "pkg:maven/org.apache.logging.log4j/log4j-core@2.17.0", + * type: "library" + * } + * ], + * metadata: { + * properties: [ * { - * "name": "amazon:inspector:sbom_scanner:critical_vulnerabilities", - * "value": "0" + * name: "amazon:inspector:sbom_scanner:critical_vulnerabilities", + * value: "0" * }, * { - * "name": "amazon:inspector:sbom_scanner:high_vulnerabilities", - * "value": "0" + * name: "amazon:inspector:sbom_scanner:high_vulnerabilities", + * value: "0" * }, * { - * "name": "amazon:inspector:sbom_scanner:medium_vulnerabilities", - * "value": "1" + * name: "amazon:inspector:sbom_scanner:medium_vulnerabilities", + * value: "1" * }, * { - * "name": "amazon:inspector:sbom_scanner:low_vulnerabilities", - * "value": "0" + * name: "amazon:inspector:sbom_scanner:low_vulnerabilities", + * value: "0" * } * ], - * "timestamp": "2023-11-16T02:55:34.355Z", - * "tools": [ + * timestamp: "2023-11-16T02:55:34.355Z", + * tools: [ * { - * "version": "9f8c30ff+20b2305b", - * "name": "CycloneDX SBOM API", - * "vendor": "Amazon Inspector" + * name: "CycloneDX SBOM API", + * vendor: "Amazon Inspector", + * version: "9f8c30ff+20b2305b" * } * ] * }, - * "bomFormat": "CycloneDX", - * "components": [ + * serialNumber: "urn:uuid:26de5e0a-deb4-4b38-a208-7d19c1832e8c", + * specVersion: "1.5", + * vulnerabilities: [ * { - * "name": "log4j-core", - * "type": "library", - * "bom-ref": "comp-1", - * "purl": "pkg:maven/org.apache.logging.log4j/log4j-core@2.17.0" - * } - * ], - * "serialNumber": "urn:uuid:26de5e0a-deb4-4b38-a208-7d19c1832e8c", - * "specVersion": "1.5", - * "vulnerabilities": [ - * { - * "advisories": [ + * advisories: [ * { - * "url": "https://www.oracle.com/security-alerts/cpujan2022.html" + * url: "https://www.oracle.com/security-alerts/cpujan2022.html" * }, * { - * "url": "https://lists.debian.org/debian-lts-announce/2021/12/msg00036.html" + * url: "https://lists.debian.org/debian-lts-announce/2021/12/msg00036.html" * }, * { - * "url": "https://cert-portal.siemens.com/productcert/pdf/ssa-784507.pdf" + * url: "https://cert-portal.siemens.com/productcert/pdf/ssa-784507.pdf" * }, * { - * "url": "https://lists.apache.org/thread/s1o5vlo78ypqxnzn6p8zf6t9shtq5143" + * url: "https://lists.apache.org/thread/s1o5vlo78ypqxnzn6p8zf6t9shtq5143" * }, * { - * "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EVV25FXL4FU5X6X5BSL7RLQ7T6F65MRA/" + * url: "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EVV25FXL4FU5X6X5BSL7RLQ7T6F65MRA/" * }, * { - * "url": "https://www.oracle.com/security-alerts/cpuapr2022.html" + * url: "https://www.oracle.com/security-alerts/cpuapr2022.html" * }, * { - * "url": "https://www.oracle.com/security-alerts/cpujul2022.html" + * url: "https://www.oracle.com/security-alerts/cpujul2022.html" * }, * { - * "url": "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-apache-log4j-qRuKNEbd" + * url: "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-apache-log4j-qRuKNEbd" * }, * { - * "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/T57MPJUW3MA6QGWZRTMCHHMMPQNVKGFC/" + * url: "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/T57MPJUW3MA6QGWZRTMCHHMMPQNVKGFC/" * }, * { - * "url": "https://issues.apache.org/jira/browse/LOG4J2-3293" + * url: "https://issues.apache.org/jira/browse/LOG4J2-3293" * } * ], - * "affects": [ + * affects: [ * { - * "ref": "comp-1" + * ref: "comp-1" * } * ], - * "bom-ref": "vuln-1", - * "created": "2021-12-28T20:15:08Z", - * "cwes": [ + * bom-ref: "vuln-1", + * created: "2021-12-28T20:15:08Z", + * cwes: [ * 20, * 74 * ], - * "description": "Apache Log4j2 versions 2.0-beta7 through 2.17.0 (excluding security fix releases 2.3.2 and 2.12.4) are vulnerable to a remote code execution (RCE) attack when a configuration uses a JDBC Appender with a JNDI LDAP data source URI when an attacker has control of the target LDAP server. This issue is fixed by limiting JNDI data source names to the java protocol in Log4j2 versions 2.17.1, 2.12.4, and 2.3.2.", - * "id": "CVE-2021-44832", - * "properties": [ + * description: "Apache Log4j2 versions 2.0-beta7 through 2.17.0 (excluding security fix releases 2.3.2 and 2.12.4) are vulnerable to a remote code execution (RCE) attack when a configuration uses a JDBC Appender with a JNDI LDAP data source URI when an attacker has control of the target LDAP server. This issue is fixed by limiting JNDI data source names to the java protocol in Log4j2 versions 2.17.1, 2.12.4, and 2.3.2.", + * id: "CVE-2021-44832", + * properties: [ * { - * "name": "amazon:inspector:sbom_scanner:exploit_available", - * "value": "true" + * name: "amazon:inspector:sbom_scanner:exploit_available", + * value: "true" * }, * { - * "name": "amazon:inspector:sbom_scanner:exploit_last_seen_in_public", - * "value": "2023-01-02T00:00:00Z" + * name: "amazon:inspector:sbom_scanner:exploit_last_seen_in_public", + * value: "2023-01-02T00:00:00Z" * }, * { - * "name": "amazon:inspector:sbom_scanner:fixed_version:comp-1", - * "value": "2.17.1" + * name: "amazon:inspector:sbom_scanner:fixed_version:comp-1", + * value: "2.17.1" * } * ], - * "ratings": [ + * ratings: [ * { - * "method": "CVSSv31", - * "score": 6.5, - * "severity": "medium", - * "source": { - * "name": "NVD", - * "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-44832" + * method: "CVSSv31", + * score: 6.5, + * severity: "medium", + * source: { + * name: "NVD", + * url: "https://nvd.nist.gov/vuln/detail/CVE-2021-44832" * }, - * "vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H" + * vector: "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H" * }, * { - * "method": "other", - * "score": 0.02686, - * "severity": "none", - * "source": { - * "name": "EPSS", - * "url": "https://www.first.org/epss/" + * method: "other", + * score: 0.02686, + * severity: "none", + * source: { + * name: "EPSS", + * url: "https://www.first.org/epss/" * }, - * "vector": "model:v2023.03.01,date:2023-11-15T00:00:00+0000" + * vector: "model:v2023.03.01,date:2023-11-15T00:00:00+0000" * } * ], - * "references": [ + * references: [ * { - * "id": "GHSA-8489-44mv-ggj8", - * "source": { - * "name": "GITHUB_SEC", - * "url": "https://github.com/advisories" + * id: "GHSA-8489-44mv-ggj8", + * source: { + * name: "GITHUB_SEC", + * url: "https://github.com/advisories" * } * }, * { - * "id": "SNYK-JAVA-ORGAPACHELOGGINGLOG4J-2327339", - * "source": { - * "name": "SNYK", - * "url": "https://security.snyk.io/vuln" + * id: "SNYK-JAVA-ORGAPACHELOGGINGLOG4J-2327339", + * source: { + * name: "SNYK", + * url: "https://security.snyk.io/vuln" * } * } * ], - * "source": { - * "name": "NVD", - * "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-44832" + * source: { + * name: "NVD", + * url: "https://nvd.nist.gov/vuln/detail/CVE-2021-44832" * }, - * "updated": "2023-11-07T03:39:43Z" + * updated: "2023-11-07T03:39:43Z" * } * ] * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ScanSbomCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/AddAttributesToFindingsCommand.ts b/clients/client-inspector/src/commands/AddAttributesToFindingsCommand.ts index 75e0b0df94849..5d37bd8dca739 100644 --- a/clients/client-inspector/src/commands/AddAttributesToFindingsCommand.ts +++ b/clients/client-inspector/src/commands/AddAttributesToFindingsCommand.ts @@ -86,31 +86,31 @@ export interface AddAttributesToFindingsCommandOutput extends AddAttributesToFin * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Add attributes to findings * ```javascript * // Assigns attributes (key and value pairs) to the findings that are specified by the ARNs of the findings. * const input = { - * "attributes": [ + * attributes: [ * { - * "key": "Example", - * "value": "example" + * key: "Example", + * value: "example" * } * ], - * "findingArns": [ + * findingArns: [ * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-8l1VIE0D/run/0-Z02cjjug/finding/0-T8yM9mEU" * ] * }; * const command = new AddAttributesToFindingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "failedItems": {} + * failedItems: { /* empty *\/ } * } * *\/ - * // example id: add-attributes-to-findings-1481063856401 * ``` * + * @public */ export class AddAttributesToFindingsCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/CreateAssessmentTargetCommand.ts b/clients/client-inspector/src/commands/CreateAssessmentTargetCommand.ts index 28492e9d71653..94641127e437c 100644 --- a/clients/client-inspector/src/commands/CreateAssessmentTargetCommand.ts +++ b/clients/client-inspector/src/commands/CreateAssessmentTargetCommand.ts @@ -88,24 +88,24 @@ export interface CreateAssessmentTargetCommandOutput extends CreateAssessmentTar * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Create assessment target * ```javascript * // Creates a new assessment target using the ARN of the resource group that is generated by CreateResourceGroup. You can create up to 50 assessment targets per AWS account. You can run up to 500 concurrent agents per AWS account. * const input = { - * "assessmentTargetName": "ExampleAssessmentTarget", - * "resourceGroupArn": "arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-AB6DMKnv" + * assessmentTargetName: "ExampleAssessmentTarget", + * resourceGroupArn: "arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-AB6DMKnv" * }; * const command = new CreateAssessmentTargetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "assessmentTargetArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX" + * assessmentTargetArn: "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX" * } * *\/ - * // example id: create-assessment-target-1481063953657 * ``` * + * @public */ export class CreateAssessmentTargetCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/CreateAssessmentTemplateCommand.ts b/clients/client-inspector/src/commands/CreateAssessmentTemplateCommand.ts index d4683ca8e2614..1a7fb562c5f52 100644 --- a/clients/client-inspector/src/commands/CreateAssessmentTemplateCommand.ts +++ b/clients/client-inspector/src/commands/CreateAssessmentTemplateCommand.ts @@ -90,34 +90,34 @@ export interface CreateAssessmentTemplateCommandOutput extends CreateAssessmentT * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Create assessment template * ```javascript * // Creates an assessment template for the assessment target that is specified by the ARN of the assessment target. * const input = { - * "assessmentTargetArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX", - * "assessmentTemplateName": "ExampleAssessmentTemplate", - * "durationInSeconds": 180, - * "rulesPackageArns": [ + * assessmentTargetArn: "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX", + * assessmentTemplateName: "ExampleAssessmentTemplate", + * durationInSeconds: 180, + * rulesPackageArns: [ * "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-11B9DBXp" * ], - * "userAttributesForFindings": [ + * userAttributesForFindings: [ * { - * "key": "Example", - * "value": "example" + * key: "Example", + * value: "example" * } * ] * }; * const command = new CreateAssessmentTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "assessmentTemplateArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T" + * assessmentTemplateArn: "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T" * } * *\/ - * // example id: create-assessment-template-1481064046719 * ``` * + * @public */ export class CreateAssessmentTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/CreateExclusionsPreviewCommand.ts b/clients/client-inspector/src/commands/CreateExclusionsPreviewCommand.ts index 2407f6a823585..69c8f454bdc2b 100644 --- a/clients/client-inspector/src/commands/CreateExclusionsPreviewCommand.ts +++ b/clients/client-inspector/src/commands/CreateExclusionsPreviewCommand.ts @@ -78,6 +78,7 @@ export interface CreateExclusionsPreviewCommandOutput extends CreateExclusionsPr * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* + * * @public */ export class CreateExclusionsPreviewCommand extends $Command diff --git a/clients/client-inspector/src/commands/CreateResourceGroupCommand.ts b/clients/client-inspector/src/commands/CreateResourceGroupCommand.ts index 6f6fb9468e1b5..a3c5e4ae15220 100644 --- a/clients/client-inspector/src/commands/CreateResourceGroupCommand.ts +++ b/clients/client-inspector/src/commands/CreateResourceGroupCommand.ts @@ -80,28 +80,28 @@ export interface CreateResourceGroupCommandOutput extends CreateResourceGroupRes * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Create resource group * ```javascript * // Creates a resource group using the specified set of tags (key and value pairs) that are used to select the EC2 instances to be included in an Amazon Inspector assessment target. The created resource group is then used to create an Amazon Inspector assessment target. * const input = { - * "resourceGroupTags": [ + * resourceGroupTags: [ * { - * "key": "Name", - * "value": "example" + * key: "Name", + * value: "example" * } * ] * }; * const command = new CreateResourceGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "resourceGroupArn": "arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-AB6DMKnv" + * resourceGroupArn: "arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-AB6DMKnv" * } * *\/ - * // example id: create-resource-group-1481064169037 * ``` * + * @public */ export class CreateResourceGroupCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/DeleteAssessmentRunCommand.ts b/clients/client-inspector/src/commands/DeleteAssessmentRunCommand.ts index 1a2f53dc3cb0d..c2403b5fb5c5b 100644 --- a/clients/client-inspector/src/commands/DeleteAssessmentRunCommand.ts +++ b/clients/client-inspector/src/commands/DeleteAssessmentRunCommand.ts @@ -75,18 +75,21 @@ export interface DeleteAssessmentRunCommandOutput extends __MetadataBearer {} * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Delete assessment run * ```javascript * // Deletes the assessment run that is specified by the ARN of the assessment run. * const input = { - * "assessmentRunArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T/run/0-11LMTAVe" + * assessmentRunArn: "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T/run/0-11LMTAVe" * }; * const command = new DeleteAssessmentRunCommand(input); - * await client.send(command); - * // example id: delete-assessment-run-1481064251629 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteAssessmentRunCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/DeleteAssessmentTargetCommand.ts b/clients/client-inspector/src/commands/DeleteAssessmentTargetCommand.ts index 8d60108596643..06fd7e395135a 100644 --- a/clients/client-inspector/src/commands/DeleteAssessmentTargetCommand.ts +++ b/clients/client-inspector/src/commands/DeleteAssessmentTargetCommand.ts @@ -75,18 +75,21 @@ export interface DeleteAssessmentTargetCommandOutput extends __MetadataBearer {} * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Delete assessment target * ```javascript * // Deletes the assessment target that is specified by the ARN of the assessment target. * const input = { - * "assessmentTargetArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq" + * assessmentTargetArn: "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq" * }; * const command = new DeleteAssessmentTargetCommand(input); - * await client.send(command); - * // example id: delete-assessment-target-1481064309029 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteAssessmentTargetCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/DeleteAssessmentTemplateCommand.ts b/clients/client-inspector/src/commands/DeleteAssessmentTemplateCommand.ts index 995ddbb2779a9..23b12d33a3f33 100644 --- a/clients/client-inspector/src/commands/DeleteAssessmentTemplateCommand.ts +++ b/clients/client-inspector/src/commands/DeleteAssessmentTemplateCommand.ts @@ -75,18 +75,21 @@ export interface DeleteAssessmentTemplateCommandOutput extends __MetadataBearer * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Delete assessment template * ```javascript * // Deletes the assessment template that is specified by the ARN of the assessment template. * const input = { - * "assessmentTemplateArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T" + * assessmentTemplateArn: "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T" * }; * const command = new DeleteAssessmentTemplateCommand(input); - * await client.send(command); - * // example id: delete-assessment-template-1481064364074 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteAssessmentTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/DescribeAssessmentRunsCommand.ts b/clients/client-inspector/src/commands/DescribeAssessmentRunsCommand.ts index 76e01b4ccf698..4f9a5e3a46854 100644 --- a/clients/client-inspector/src/commands/DescribeAssessmentRunsCommand.ts +++ b/clients/client-inspector/src/commands/DescribeAssessmentRunsCommand.ts @@ -112,85 +112,8 @@ export interface DescribeAssessmentRunsCommandOutput extends DescribeAssessmentR * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public - * @example Describte assessment runs - * ```javascript - * // Describes the assessment runs that are specified by the ARNs of the assessment runs. - * const input = { - * "assessmentRunArns": [ - * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE" - * ] - * }; - * const command = new DescribeAssessmentRunsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "assessmentRuns": [ - * { - * "name": "Run 1 for ExampleAssessmentTemplate", - * "arn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE", - * "assessmentTemplateArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw", - * "completedAt": "1458680301.4", - * "createdAt": "1458680170.035", - * "dataCollected": true, - * "durationInSeconds": 3600, - * "findingCounts": { - * "High": 14, - * "Informational": 0, - * "Low": 0, - * "Medium": 2, - * "Undefined": 0 - * }, - * "notifications": [], - * "rulesPackageArns": [ - * "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-X1KXtawP" - * ], - * "startedAt": "1458680170.161", - * "state": "COMPLETED", - * "stateChangedAt": "1458680301.4", - * "stateChanges": [ - * { - * "state": "CREATED", - * "stateChangedAt": "1458680170.035" - * }, - * { - * "state": "START_DATA_COLLECTION_PENDING", - * "stateChangedAt": "1458680170.065" - * }, - * { - * "state": "START_DATA_COLLECTION_IN_PROGRESS", - * "stateChangedAt": "1458680170.096" - * }, - * { - * "state": "COLLECTING_DATA", - * "stateChangedAt": "1458680170.161" - * }, - * { - * "state": "STOP_DATA_COLLECTION_PENDING", - * "stateChangedAt": "1458680239.883" - * }, - * { - * "state": "DATA_COLLECTED", - * "stateChangedAt": "1458680299.847" - * }, - * { - * "state": "EVALUATING_RULES", - * "stateChangedAt": "1458680300.099" - * }, - * { - * "state": "COMPLETED", - * "stateChangedAt": "1458680301.4" - * } - * ], - * "userAttributesForFindings": [] - * } - * ], - * "failedItems": {} - * } - * *\/ - * // example id: describte-assessment-runs-1481064424352 - * ``` * + * @public */ export class DescribeAssessmentRunsCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/DescribeAssessmentTargetsCommand.ts b/clients/client-inspector/src/commands/DescribeAssessmentTargetsCommand.ts index d7e22a8308523..79f824a9b17b7 100644 --- a/clients/client-inspector/src/commands/DescribeAssessmentTargetsCommand.ts +++ b/clients/client-inspector/src/commands/DescribeAssessmentTargetsCommand.ts @@ -79,34 +79,8 @@ export interface DescribeAssessmentTargetsCommandOutput extends DescribeAssessme * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public - * @example Describte assessment targets - * ```javascript - * // Describes the assessment targets that are specified by the ARNs of the assessment targets. - * const input = { - * "assessmentTargetArns": [ - * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq" - * ] - * }; - * const command = new DescribeAssessmentTargetsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "assessmentTargets": [ - * { - * "name": "ExampleAssessmentTarget", - * "arn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq", - * "createdAt": "1458074191.459", - * "resourceGroupArn": "arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-PyGXopAI", - * "updatedAt": "1458074191.459" - * } - * ], - * "failedItems": {} - * } - * *\/ - * // example id: describte-assessment-targets-1481064527735 - * ``` * + * @public */ export class DescribeAssessmentTargetsCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/DescribeAssessmentTemplatesCommand.ts b/clients/client-inspector/src/commands/DescribeAssessmentTemplatesCommand.ts index db0064e3eb5bb..3dcc31462406b 100644 --- a/clients/client-inspector/src/commands/DescribeAssessmentTemplatesCommand.ts +++ b/clients/client-inspector/src/commands/DescribeAssessmentTemplatesCommand.ts @@ -92,39 +92,8 @@ export interface DescribeAssessmentTemplatesCommandOutput * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public - * @example Describte assessment templates - * ```javascript - * // Describes the assessment templates that are specified by the ARNs of the assessment templates. - * const input = { - * "assessmentTemplateArns": [ - * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw" - * ] - * }; - * const command = new DescribeAssessmentTemplatesCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "assessmentTemplates": [ - * { - * "name": "ExampleAssessmentTemplate", - * "arn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw", - * "assessmentRunCount": 0, - * "assessmentTargetArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq", - * "createdAt": "1458074191.844", - * "durationInSeconds": 3600, - * "rulesPackageArns": [ - * "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-X1KXtawP" - * ], - * "userAttributesForFindings": [] - * } - * ], - * "failedItems": {} - * } - * *\/ - * // example id: describte-assessment-templates-1481064606829 - * ``` * + * @public */ export class DescribeAssessmentTemplatesCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/DescribeCrossAccountAccessRoleCommand.ts b/clients/client-inspector/src/commands/DescribeCrossAccountAccessRoleCommand.ts index 86a4c2bbea671..42aeb8a4d0b5d 100644 --- a/clients/client-inspector/src/commands/DescribeCrossAccountAccessRoleCommand.ts +++ b/clients/client-inspector/src/commands/DescribeCrossAccountAccessRoleCommand.ts @@ -64,23 +64,8 @@ export interface DescribeCrossAccountAccessRoleCommandOutput * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public - * @example Describte cross account access role - * ```javascript - * // Describes the IAM role that enables Amazon Inspector to access your AWS account. - * const input = {}; - * const command = new DescribeCrossAccountAccessRoleCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "registeredAt": "1458069182.826", - * "roleArn": "arn:aws:iam::123456789012:role/inspector", - * "valid": true - * } - * *\/ - * // example id: describte-cross-account-access-role-1481064682267 - * ``` * + * @public */ export class DescribeCrossAccountAccessRoleCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/DescribeExclusionsCommand.ts b/clients/client-inspector/src/commands/DescribeExclusionsCommand.ts index 624bb32c44cda..7e7c4a6a5f1e9 100644 --- a/clients/client-inspector/src/commands/DescribeExclusionsCommand.ts +++ b/clients/client-inspector/src/commands/DescribeExclusionsCommand.ts @@ -90,6 +90,7 @@ export interface DescribeExclusionsCommandOutput extends DescribeExclusionsRespo * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* + * * @public */ export class DescribeExclusionsCommand extends $Command diff --git a/clients/client-inspector/src/commands/DescribeFindingsCommand.ts b/clients/client-inspector/src/commands/DescribeFindingsCommand.ts index ee6790912921b..4747090278daa 100644 --- a/clients/client-inspector/src/commands/DescribeFindingsCommand.ts +++ b/clients/client-inspector/src/commands/DescribeFindingsCommand.ts @@ -147,53 +147,8 @@ export interface DescribeFindingsCommandOutput extends DescribeFindingsResponse, * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public - * @example Describe findings - * ```javascript - * // Describes the findings that are specified by the ARNs of the findings. - * const input = { - * "findingArns": [ - * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE/finding/0-HwPnsDm4" - * ] - * }; - * const command = new DescribeFindingsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "failedItems": {}, - * "findings": [ - * { - * "arn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE/finding/0-HwPnsDm4", - * "assetAttributes": { - * "ipv4Addresses": [], - * "schemaVersion": 1 - * }, - * "assetType": "ec2-instance", - * "attributes": [], - * "confidence": 10, - * "createdAt": "1458680301.37", - * "description": "Amazon Inspector did not find any potential security issues during this assessment.", - * "indicatorOfCompromise": false, - * "numericSeverity": 0, - * "recommendation": "No remediation needed.", - * "schemaVersion": 1, - * "service": "Inspector", - * "serviceAttributes": { - * "assessmentRunArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE", - * "rulesPackageArn": "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-X1KXtawP", - * "schemaVersion": 1 - * }, - * "severity": "Informational", - * "title": "No potential security issues found", - * "updatedAt": "1458680301.37", - * "userAttributes": [] - * } - * ] - * } - * *\/ - * // example id: describte-findings-1481064771803 - * ``` * + * @public */ export class DescribeFindingsCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/DescribeResourceGroupsCommand.ts b/clients/client-inspector/src/commands/DescribeResourceGroupsCommand.ts index f68cdb8378fa5..80d30fa087807 100644 --- a/clients/client-inspector/src/commands/DescribeResourceGroupsCommand.ts +++ b/clients/client-inspector/src/commands/DescribeResourceGroupsCommand.ts @@ -82,37 +82,8 @@ export interface DescribeResourceGroupsCommandOutput extends DescribeResourceGro * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public - * @example Describe resource groups - * ```javascript - * // Describes the resource groups that are specified by the ARNs of the resource groups. - * const input = { - * "resourceGroupArns": [ - * "arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-PyGXopAI" - * ] - * }; - * const command = new DescribeResourceGroupsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "failedItems": {}, - * "resourceGroups": [ - * { - * "arn": "arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-PyGXopAI", - * "createdAt": "1458074191.098", - * "tags": [ - * { - * "key": "Name", - * "value": "example" - * } - * ] - * } - * ] - * } - * *\/ - * // example id: describe-resource-groups-1481065787743 - * ``` * + * @public */ export class DescribeResourceGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/DescribeRulesPackagesCommand.ts b/clients/client-inspector/src/commands/DescribeRulesPackagesCommand.ts index 387f4c26dcdda..92e36ad7a4a20 100644 --- a/clients/client-inspector/src/commands/DescribeRulesPackagesCommand.ts +++ b/clients/client-inspector/src/commands/DescribeRulesPackagesCommand.ts @@ -80,34 +80,34 @@ export interface DescribeRulesPackagesCommandOutput extends DescribeRulesPackage * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Describe rules packages * ```javascript * // Describes the rules packages that are specified by the ARNs of the rules packages. * const input = { - * "rulesPackageArns": [ + * rulesPackageArns: [ * "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ" * ] * }; * const command = new DescribeRulesPackagesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "failedItems": {}, - * "rulesPackages": [ + * failedItems: { /* empty *\/ }, + * rulesPackages: [ * { - * "version": "1.1", - * "name": "Security Best Practices", - * "arn": "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ", - * "description": "The rules in this package help determine whether your systems are configured securely.", - * "provider": "Amazon Web Services, Inc." + * arn: "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ", + * description: "The rules in this package help determine whether your systems are configured securely.", + * name: "Security Best Practices", + * provider: "Amazon Web Services, Inc.", + * version: "1.1" * } * ] * } * *\/ - * // example id: describe-rules-packages-1481069641979 * ``` * + * @public */ export class DescribeRulesPackagesCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/GetAssessmentReportCommand.ts b/clients/client-inspector/src/commands/GetAssessmentReportCommand.ts index 68c36a42e9b71..b0c1387a7fb2d 100644 --- a/clients/client-inspector/src/commands/GetAssessmentReportCommand.ts +++ b/clients/client-inspector/src/commands/GetAssessmentReportCommand.ts @@ -87,6 +87,7 @@ export interface GetAssessmentReportCommandOutput extends GetAssessmentReportRes * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* + * * @public */ export class GetAssessmentReportCommand extends $Command diff --git a/clients/client-inspector/src/commands/GetExclusionsPreviewCommand.ts b/clients/client-inspector/src/commands/GetExclusionsPreviewCommand.ts index 172768d39aec9..db5873f25693e 100644 --- a/clients/client-inspector/src/commands/GetExclusionsPreviewCommand.ts +++ b/clients/client-inspector/src/commands/GetExclusionsPreviewCommand.ts @@ -95,6 +95,7 @@ export interface GetExclusionsPreviewCommandOutput extends GetExclusionsPreviewR * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* + * * @public */ export class GetExclusionsPreviewCommand extends $Command diff --git a/clients/client-inspector/src/commands/GetTelemetryMetadataCommand.ts b/clients/client-inspector/src/commands/GetTelemetryMetadataCommand.ts index a78a7f5e8d272..17cf699742851 100644 --- a/clients/client-inspector/src/commands/GetTelemetryMetadataCommand.ts +++ b/clients/client-inspector/src/commands/GetTelemetryMetadataCommand.ts @@ -76,169 +76,169 @@ export interface GetTelemetryMetadataCommandOutput extends GetTelemetryMetadataR * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Get telemetry metadata * ```javascript * // Information about the data that is collected for the specified assessment run. * const input = { - * "assessmentRunArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE" + * assessmentRunArn: "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE" * }; * const command = new GetTelemetryMetadataCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "telemetryMetadata": [ + * telemetryMetadata: [ * { - * "count": 2, - * "dataSize": 345, - * "messageType": "InspectorDuplicateProcess" + * count: 2, + * dataSize: 345, + * messageType: "InspectorDuplicateProcess" * }, * { - * "count": 3, - * "dataSize": 255, - * "messageType": "InspectorTimeEventMsg" + * count: 3, + * dataSize: 255, + * messageType: "InspectorTimeEventMsg" * }, * { - * "count": 4, - * "dataSize": 1082, - * "messageType": "InspectorNetworkInterface" + * count: 4, + * dataSize: 1082, + * messageType: "InspectorNetworkInterface" * }, * { - * "count": 2, - * "dataSize": 349, - * "messageType": "InspectorDnsEntry" + * count: 2, + * dataSize: 349, + * messageType: "InspectorDnsEntry" * }, * { - * "count": 11, - * "dataSize": 2514, - * "messageType": "InspectorDirectoryInfoMsg" + * count: 11, + * dataSize: 2514, + * messageType: "InspectorDirectoryInfoMsg" * }, * { - * "count": 1, - * "dataSize": 179, - * "messageType": "InspectorTcpV6ListeningPort" + * count: 1, + * dataSize: 179, + * messageType: "InspectorTcpV6ListeningPort" * }, * { - * "count": 101, - * "dataSize": 10949, - * "messageType": "InspectorTerminal" + * count: 101, + * dataSize: 10949, + * messageType: "InspectorTerminal" * }, * { - * "count": 26, - * "dataSize": 5916, - * "messageType": "InspectorUser" + * count: 26, + * dataSize: 5916, + * messageType: "InspectorUser" * }, * { - * "count": 282, - * "dataSize": 32148, - * "messageType": "InspectorDynamicallyLoadedCodeModule" + * count: 282, + * dataSize: 32148, + * messageType: "InspectorDynamicallyLoadedCodeModule" * }, * { - * "count": 18, - * "dataSize": 10172, - * "messageType": "InspectorCreateProcess" + * count: 18, + * dataSize: 10172, + * messageType: "InspectorCreateProcess" * }, * { - * "count": 3, - * "dataSize": 8001, - * "messageType": "InspectorProcessPerformance" + * count: 3, + * dataSize: 8001, + * messageType: "InspectorProcessPerformance" * }, * { - * "count": 1, - * "dataSize": 360, - * "messageType": "InspectorOperatingSystem" + * count: 1, + * dataSize: 360, + * messageType: "InspectorOperatingSystem" * }, * { - * "count": 6, - * "dataSize": 546, - * "messageType": "InspectorStopProcess" + * count: 6, + * dataSize: 546, + * messageType: "InspectorStopProcess" * }, * { - * "count": 1, - * "dataSize": 1553, - * "messageType": "InspectorInstanceMetaData" + * count: 1, + * dataSize: 1553, + * messageType: "InspectorInstanceMetaData" * }, * { - * "count": 2, - * "dataSize": 434, - * "messageType": "InspectorTcpV4Connection" + * count: 2, + * dataSize: 434, + * messageType: "InspectorTcpV4Connection" * }, * { - * "count": 474, - * "dataSize": 2960322, - * "messageType": "InspectorPackageInfo" + * count: 474, + * dataSize: 2960322, + * messageType: "InspectorPackageInfo" * }, * { - * "count": 3, - * "dataSize": 2235, - * "messageType": "InspectorSystemPerformance" + * count: 3, + * dataSize: 2235, + * messageType: "InspectorSystemPerformance" * }, * { - * "count": 105, - * "dataSize": 46048, - * "messageType": "InspectorCodeModule" + * count: 105, + * dataSize: 46048, + * messageType: "InspectorCodeModule" * }, * { - * "count": 1, - * "dataSize": 182, - * "messageType": "InspectorUdpV6ListeningPort" + * count: 1, + * dataSize: 182, + * messageType: "InspectorUdpV6ListeningPort" * }, * { - * "count": 2, - * "dataSize": 371, - * "messageType": "InspectorUdpV4ListeningPort" + * count: 2, + * dataSize: 371, + * messageType: "InspectorUdpV4ListeningPort" * }, * { - * "count": 18, - * "dataSize": 8362, - * "messageType": "InspectorKernelModule" + * count: 18, + * dataSize: 8362, + * messageType: "InspectorKernelModule" * }, * { - * "count": 29, - * "dataSize": 48788, - * "messageType": "InspectorConfigurationInfo" + * count: 29, + * dataSize: 48788, + * messageType: "InspectorConfigurationInfo" * }, * { - * "count": 1, - * "dataSize": 79, - * "messageType": "InspectorMonitoringStart" + * count: 1, + * dataSize: 79, + * messageType: "InspectorMonitoringStart" * }, * { - * "count": 5, - * "dataSize": 0, - * "messageType": "InspectorSplitMsgBegin" + * count: 5, + * dataSize: 0, + * messageType: "InspectorSplitMsgBegin" * }, * { - * "count": 51, - * "dataSize": 4593, - * "messageType": "InspectorGroup" + * count: 51, + * dataSize: 4593, + * messageType: "InspectorGroup" * }, * { - * "count": 1, - * "dataSize": 184, - * "messageType": "InspectorTcpV4ListeningPort" + * count: 1, + * dataSize: 184, + * messageType: "InspectorTcpV4ListeningPort" * }, * { - * "count": 1159, - * "dataSize": 3146579, - * "messageType": "Total" + * count: 1159, + * dataSize: 3146579, + * messageType: "Total" * }, * { - * "count": 5, - * "dataSize": 0, - * "messageType": "InspectorSplitMsgEnd" + * count: 5, + * dataSize: 0, + * messageType: "InspectorSplitMsgEnd" * }, * { - * "count": 1, - * "dataSize": 612, - * "messageType": "InspectorLoadImageInProcess" + * count: 1, + * dataSize: 612, + * messageType: "InspectorLoadImageInProcess" * } * ] * } * *\/ - * // example id: get-telemetry-metadata-1481066021297 * ``` * + * @public */ export class GetTelemetryMetadataCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/ListAssessmentRunAgentsCommand.ts b/clients/client-inspector/src/commands/ListAssessmentRunAgentsCommand.ts index 0aa240be97bae..3ac108be6dc98 100644 --- a/clients/client-inspector/src/commands/ListAssessmentRunAgentsCommand.ts +++ b/clients/client-inspector/src/commands/ListAssessmentRunAgentsCommand.ts @@ -97,179 +97,179 @@ export interface ListAssessmentRunAgentsCommandOutput extends ListAssessmentRunA * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example List assessment run agents * ```javascript * // Lists the agents of the assessment runs that are specified by the ARNs of the assessment runs. * const input = { - * "assessmentRunArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE", - * "maxResults": 123 + * assessmentRunArn: "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE", + * maxResults: 123 * }; * const command = new ListAssessmentRunAgentsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "assessmentRunAgents": [ + * assessmentRunAgents: [ * { - * "agentHealth": "HEALTHY", - * "agentHealthCode": "RUNNING", - * "agentId": "i-49113b93", - * "assessmentRunArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE", - * "telemetryMetadata": [ + * agentHealth: "HEALTHY", + * agentHealthCode: "RUNNING", + * agentId: "i-49113b93", + * assessmentRunArn: "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE", + * telemetryMetadata: [ * { - * "count": 2, - * "dataSize": 345, - * "messageType": "InspectorDuplicateProcess" + * count: 2, + * dataSize: 345, + * messageType: "InspectorDuplicateProcess" * }, * { - * "count": 3, - * "dataSize": 255, - * "messageType": "InspectorTimeEventMsg" + * count: 3, + * dataSize: 255, + * messageType: "InspectorTimeEventMsg" * }, * { - * "count": 4, - * "dataSize": 1082, - * "messageType": "InspectorNetworkInterface" + * count: 4, + * dataSize: 1082, + * messageType: "InspectorNetworkInterface" * }, * { - * "count": 2, - * "dataSize": 349, - * "messageType": "InspectorDnsEntry" + * count: 2, + * dataSize: 349, + * messageType: "InspectorDnsEntry" * }, * { - * "count": 11, - * "dataSize": 2514, - * "messageType": "InspectorDirectoryInfoMsg" + * count: 11, + * dataSize: 2514, + * messageType: "InspectorDirectoryInfoMsg" * }, * { - * "count": 1, - * "dataSize": 179, - * "messageType": "InspectorTcpV6ListeningPort" + * count: 1, + * dataSize: 179, + * messageType: "InspectorTcpV6ListeningPort" * }, * { - * "count": 101, - * "dataSize": 10949, - * "messageType": "InspectorTerminal" + * count: 101, + * dataSize: 10949, + * messageType: "InspectorTerminal" * }, * { - * "count": 26, - * "dataSize": 5916, - * "messageType": "InspectorUser" + * count: 26, + * dataSize: 5916, + * messageType: "InspectorUser" * }, * { - * "count": 282, - * "dataSize": 32148, - * "messageType": "InspectorDynamicallyLoadedCodeModule" + * count: 282, + * dataSize: 32148, + * messageType: "InspectorDynamicallyLoadedCodeModule" * }, * { - * "count": 18, - * "dataSize": 10172, - * "messageType": "InspectorCreateProcess" + * count: 18, + * dataSize: 10172, + * messageType: "InspectorCreateProcess" * }, * { - * "count": 3, - * "dataSize": 8001, - * "messageType": "InspectorProcessPerformance" + * count: 3, + * dataSize: 8001, + * messageType: "InspectorProcessPerformance" * }, * { - * "count": 1, - * "dataSize": 360, - * "messageType": "InspectorOperatingSystem" + * count: 1, + * dataSize: 360, + * messageType: "InspectorOperatingSystem" * }, * { - * "count": 6, - * "dataSize": 546, - * "messageType": "InspectorStopProcess" + * count: 6, + * dataSize: 546, + * messageType: "InspectorStopProcess" * }, * { - * "count": 1, - * "dataSize": 1553, - * "messageType": "InspectorInstanceMetaData" + * count: 1, + * dataSize: 1553, + * messageType: "InspectorInstanceMetaData" * }, * { - * "count": 2, - * "dataSize": 434, - * "messageType": "InspectorTcpV4Connection" + * count: 2, + * dataSize: 434, + * messageType: "InspectorTcpV4Connection" * }, * { - * "count": 474, - * "dataSize": 2960322, - * "messageType": "InspectorPackageInfo" + * count: 474, + * dataSize: 2960322, + * messageType: "InspectorPackageInfo" * }, * { - * "count": 3, - * "dataSize": 2235, - * "messageType": "InspectorSystemPerformance" + * count: 3, + * dataSize: 2235, + * messageType: "InspectorSystemPerformance" * }, * { - * "count": 105, - * "dataSize": 46048, - * "messageType": "InspectorCodeModule" + * count: 105, + * dataSize: 46048, + * messageType: "InspectorCodeModule" * }, * { - * "count": 1, - * "dataSize": 182, - * "messageType": "InspectorUdpV6ListeningPort" + * count: 1, + * dataSize: 182, + * messageType: "InspectorUdpV6ListeningPort" * }, * { - * "count": 2, - * "dataSize": 371, - * "messageType": "InspectorUdpV4ListeningPort" + * count: 2, + * dataSize: 371, + * messageType: "InspectorUdpV4ListeningPort" * }, * { - * "count": 18, - * "dataSize": 8362, - * "messageType": "InspectorKernelModule" + * count: 18, + * dataSize: 8362, + * messageType: "InspectorKernelModule" * }, * { - * "count": 29, - * "dataSize": 48788, - * "messageType": "InspectorConfigurationInfo" + * count: 29, + * dataSize: 48788, + * messageType: "InspectorConfigurationInfo" * }, * { - * "count": 1, - * "dataSize": 79, - * "messageType": "InspectorMonitoringStart" + * count: 1, + * dataSize: 79, + * messageType: "InspectorMonitoringStart" * }, * { - * "count": 5, - * "dataSize": 0, - * "messageType": "InspectorSplitMsgBegin" + * count: 5, + * dataSize: 0, + * messageType: "InspectorSplitMsgBegin" * }, * { - * "count": 51, - * "dataSize": 4593, - * "messageType": "InspectorGroup" + * count: 51, + * dataSize: 4593, + * messageType: "InspectorGroup" * }, * { - * "count": 1, - * "dataSize": 184, - * "messageType": "InspectorTcpV4ListeningPort" + * count: 1, + * dataSize: 184, + * messageType: "InspectorTcpV4ListeningPort" * }, * { - * "count": 1159, - * "dataSize": 3146579, - * "messageType": "Total" + * count: 1159, + * dataSize: 3146579, + * messageType: "Total" * }, * { - * "count": 5, - * "dataSize": 0, - * "messageType": "InspectorSplitMsgEnd" + * count: 5, + * dataSize: 0, + * messageType: "InspectorSplitMsgEnd" * }, * { - * "count": 1, - * "dataSize": 612, - * "messageType": "InspectorLoadImageInProcess" + * count: 1, + * dataSize: 612, + * messageType: "InspectorLoadImageInProcess" * } * ] * } * ], - * "nextToken": "1" + * nextToken: "1" * } * *\/ - * // example id: list-assessment-run-agents-1481918140642 * ``` * + * @public */ export class ListAssessmentRunAgentsCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/ListAssessmentRunsCommand.ts b/clients/client-inspector/src/commands/ListAssessmentRunsCommand.ts index d4c12ba274bb8..1f7d2d6ef6640 100644 --- a/clients/client-inspector/src/commands/ListAssessmentRunsCommand.ts +++ b/clients/client-inspector/src/commands/ListAssessmentRunsCommand.ts @@ -102,30 +102,30 @@ export interface ListAssessmentRunsCommandOutput extends ListAssessmentRunsRespo * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example List assessment runs * ```javascript * // Lists the assessment runs that correspond to the assessment templates that are specified by the ARNs of the assessment templates. * const input = { - * "assessmentTemplateArns": [ + * assessmentTemplateArns: [ * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw" * ], - * "maxResults": 123 + * maxResults: 123 * }; * const command = new ListAssessmentRunsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "assessmentRunArns": [ + * assessmentRunArns: [ * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE", * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-v5D6fI3v" * ], - * "nextToken": "1" + * nextToken: "1" * } * *\/ - * // example id: list-assessment-runs-1481066340844 * ``` * + * @public */ export class ListAssessmentRunsCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/ListAssessmentTargetsCommand.ts b/clients/client-inspector/src/commands/ListAssessmentTargetsCommand.ts index 6ad0d3023b78b..193e03b08c73a 100644 --- a/clients/client-inspector/src/commands/ListAssessmentTargetsCommand.ts +++ b/clients/client-inspector/src/commands/ListAssessmentTargetsCommand.ts @@ -74,26 +74,26 @@ export interface ListAssessmentTargetsCommandOutput extends ListAssessmentTarget * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example List assessment targets * ```javascript * // Lists the ARNs of the assessment targets within this AWS account. * const input = { - * "maxResults": 123 + * maxResults: 123 * }; * const command = new ListAssessmentTargetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "assessmentTargetArns": [ + * assessmentTargetArns: [ * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq" * ], - * "nextToken": "1" + * nextToken: "1" * } * *\/ - * // example id: list-assessment-targets-1481066540849 * ``` * + * @public */ export class ListAssessmentTargetsCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/ListAssessmentTemplatesCommand.ts b/clients/client-inspector/src/commands/ListAssessmentTemplatesCommand.ts index 4a1888aadfbb0..1570b08089a68 100644 --- a/clients/client-inspector/src/commands/ListAssessmentTemplatesCommand.ts +++ b/clients/client-inspector/src/commands/ListAssessmentTemplatesCommand.ts @@ -87,30 +87,30 @@ export interface ListAssessmentTemplatesCommandOutput extends ListAssessmentTemp * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example List assessment templates * ```javascript * // Lists the assessment templates that correspond to the assessment targets that are specified by the ARNs of the assessment targets. * const input = { - * "assessmentTargetArns": [ + * assessmentTargetArns: [ * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq" * ], - * "maxResults": 123 + * maxResults: 123 * }; * const command = new ListAssessmentTemplatesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "assessmentTemplateArns": [ + * assessmentTemplateArns: [ * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw", * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-Uza6ihLh" * ], - * "nextToken": "1" + * nextToken: "1" * } * *\/ - * // example id: list-assessment-templates-1481066623520 * ``` * + * @public */ export class ListAssessmentTemplatesCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/ListEventSubscriptionsCommand.ts b/clients/client-inspector/src/commands/ListEventSubscriptionsCommand.ts index 65c4fe6905125..ec5005dd255e5 100644 --- a/clients/client-inspector/src/commands/ListEventSubscriptionsCommand.ts +++ b/clients/client-inspector/src/commands/ListEventSubscriptionsCommand.ts @@ -84,36 +84,8 @@ export interface ListEventSubscriptionsCommandOutput extends ListEventSubscripti * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public - * @example List event subscriptions - * ```javascript - * // Lists all the event subscriptions for the assessment template that is specified by the ARN of the assessment template. - * const input = { - * "maxResults": 123, - * "resourceArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0" - * }; - * const command = new ListEventSubscriptionsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "nextToken": "1", - * "subscriptions": [ - * { - * "eventSubscriptions": [ - * { - * "event": "ASSESSMENT_RUN_COMPLETED", - * "subscribedAt": "1459455440.867" - * } - * ], - * "resourceArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0", - * "topicArn": "arn:aws:sns:us-west-2:123456789012:exampletopic" - * } - * ] - * } - * *\/ - * // example id: list-event-subscriptions-1481068376945 - * ``` * + * @public */ export class ListEventSubscriptionsCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/ListExclusionsCommand.ts b/clients/client-inspector/src/commands/ListExclusionsCommand.ts index 9e4bd2851d7a3..887e6a4d74f4a 100644 --- a/clients/client-inspector/src/commands/ListExclusionsCommand.ts +++ b/clients/client-inspector/src/commands/ListExclusionsCommand.ts @@ -74,6 +74,7 @@ export interface ListExclusionsCommandOutput extends ListExclusionsResponse, __M * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* + * * @public */ export class ListExclusionsCommand extends $Command diff --git a/clients/client-inspector/src/commands/ListFindingsCommand.ts b/clients/client-inspector/src/commands/ListFindingsCommand.ts index 16fbd0653a6ff..85f12766c462d 100644 --- a/clients/client-inspector/src/commands/ListFindingsCommand.ts +++ b/clients/client-inspector/src/commands/ListFindingsCommand.ts @@ -110,30 +110,30 @@ export interface ListFindingsCommandOutput extends ListFindingsResponse, __Metad * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example List findings * ```javascript * // Lists findings that are generated by the assessment runs that are specified by the ARNs of the assessment runs. * const input = { - * "assessmentRunArns": [ + * assessmentRunArns: [ * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE" * ], - * "maxResults": 123 + * maxResults: 123 * }; * const command = new ListFindingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "findingArns": [ + * findingArns: [ * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE/finding/0-HwPnsDm4", * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-v5D6fI3v/finding/0-tyvmqBLy" * ], - * "nextToken": "1" + * nextToken: "1" * } * *\/ - * // example id: list-findings-1481066840611 * ``` * + * @public */ export class ListFindingsCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/ListRulesPackagesCommand.ts b/clients/client-inspector/src/commands/ListRulesPackagesCommand.ts index 43a2da3cefc16..cbd90c760fc89 100644 --- a/clients/client-inspector/src/commands/ListRulesPackagesCommand.ts +++ b/clients/client-inspector/src/commands/ListRulesPackagesCommand.ts @@ -69,19 +69,19 @@ export interface ListRulesPackagesCommandOutput extends ListRulesPackagesRespons * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example List rules packages * ```javascript * // Lists all available Amazon Inspector rules packages. * const input = { - * "maxResults": 123 + * maxResults: 123 * }; * const command = new ListRulesPackagesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "nextToken": "1", - * "rulesPackageArns": [ + * nextToken: "1", + * rulesPackageArns: [ * "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-9hgA516p", * "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-H5hpSawc", * "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ", @@ -89,9 +89,9 @@ export interface ListRulesPackagesCommandOutput extends ListRulesPackagesRespons * ] * } * *\/ - * // example id: list-rules-packages-1481066954883 * ``` * + * @public */ export class ListRulesPackagesCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/ListTagsForResourceCommand.ts b/clients/client-inspector/src/commands/ListTagsForResourceCommand.ts index 29bcbb2dcf901..e2a4899f3b4ce 100644 --- a/clients/client-inspector/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-inspector/src/commands/ListTagsForResourceCommand.ts @@ -74,28 +74,28 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example List tags for resource * ```javascript * // Lists all tags associated with an assessment template. * const input = { - * "resourceArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-gcwFliYu" + * resourceArn: "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-gcwFliYu" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "tags": [ + * tags: [ * { - * "key": "Name", - * "value": "Example" + * key: "Name", + * value: "Example" * } * ] * } * *\/ - * // example id: list-tags-for-resource-1481067025240 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/PreviewAgentsCommand.ts b/clients/client-inspector/src/commands/PreviewAgentsCommand.ts index b59062c73075a..bb1629d4cfa2b 100644 --- a/clients/client-inspector/src/commands/PreviewAgentsCommand.ts +++ b/clients/client-inspector/src/commands/PreviewAgentsCommand.ts @@ -88,29 +88,29 @@ export interface PreviewAgentsCommandOutput extends PreviewAgentsResponse, __Met * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Preview agents * ```javascript * // Previews the agents installed on the EC2 instances that are part of the specified assessment target. * const input = { - * "maxResults": 123, - * "previewAgentsArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq" + * maxResults: 123, + * previewAgentsArn: "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq" * }; * const command = new PreviewAgentsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "agentPreviews": [ + * agentPreviews: [ * { - * "agentId": "i-49113b93" + * agentId: "i-49113b93" * } * ], - * "nextToken": "1" + * nextToken: "1" * } * *\/ - * // example id: preview-agents-1481067101888 * ``` * + * @public */ export class PreviewAgentsCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/RegisterCrossAccountAccessRoleCommand.ts b/clients/client-inspector/src/commands/RegisterCrossAccountAccessRoleCommand.ts index 57b9ee0add751..ae121e170f0f1 100644 --- a/clients/client-inspector/src/commands/RegisterCrossAccountAccessRoleCommand.ts +++ b/clients/client-inspector/src/commands/RegisterCrossAccountAccessRoleCommand.ts @@ -74,18 +74,21 @@ export interface RegisterCrossAccountAccessRoleCommandOutput extends __MetadataB * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Register cross account access role * ```javascript * // Registers the IAM role that Amazon Inspector uses to list your EC2 instances at the start of the assessment run or when you call the PreviewAgents action. * const input = { - * "roleArn": "arn:aws:iam::123456789012:role/inspector" + * roleArn: "arn:aws:iam::123456789012:role/inspector" * }; * const command = new RegisterCrossAccountAccessRoleCommand(input); - * await client.send(command); - * // example id: register-cross-account-access-role-1481067178301 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RegisterCrossAccountAccessRoleCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/RemoveAttributesFromFindingsCommand.ts b/clients/client-inspector/src/commands/RemoveAttributesFromFindingsCommand.ts index 1f9ec4e814600..71ceff7f26c48 100644 --- a/clients/client-inspector/src/commands/RemoveAttributesFromFindingsCommand.ts +++ b/clients/client-inspector/src/commands/RemoveAttributesFromFindingsCommand.ts @@ -88,28 +88,28 @@ export interface RemoveAttributesFromFindingsCommandOutput * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Remove attributes from findings * ```javascript * // Removes entire attributes (key and value pairs) from the findings that are specified by the ARNs of the findings where an attribute with the specified key exists. * const input = { - * "attributeKeys": [ + * attributeKeys: [ * "key=Example,value=example" * ], - * "findingArns": [ + * findingArns: [ * "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-8l1VIE0D/run/0-Z02cjjug/finding/0-T8yM9mEU" * ] * }; * const command = new RemoveAttributesFromFindingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "failedItems": {} + * failedItems: { /* empty *\/ } * } * *\/ - * // example id: remove-attributes-from-findings-1481067246548 * ``` * + * @public */ export class RemoveAttributesFromFindingsCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/SetTagsForResourceCommand.ts b/clients/client-inspector/src/commands/SetTagsForResourceCommand.ts index 48f8a4d3b3174..59e3f1de69492 100644 --- a/clients/client-inspector/src/commands/SetTagsForResourceCommand.ts +++ b/clients/client-inspector/src/commands/SetTagsForResourceCommand.ts @@ -77,24 +77,27 @@ export interface SetTagsForResourceCommandOutput extends __MetadataBearer {} * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Set tags for resource * ```javascript * // Sets tags (key and value pairs) to the assessment template that is specified by the ARN of the assessment template. * const input = { - * "resourceArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0", - * "tags": [ + * resourceArn: "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0", + * tags: [ * { - * "key": "Example", - * "value": "example" + * key: "Example", + * value: "example" * } * ] * }; * const command = new SetTagsForResourceCommand(input); - * await client.send(command); - * // example id: set-tags-for-resource-1481067329646 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/StartAssessmentRunCommand.ts b/clients/client-inspector/src/commands/StartAssessmentRunCommand.ts index 86461d7577dae..5ac07560bc413 100644 --- a/clients/client-inspector/src/commands/StartAssessmentRunCommand.ts +++ b/clients/client-inspector/src/commands/StartAssessmentRunCommand.ts @@ -87,24 +87,24 @@ export interface StartAssessmentRunCommandOutput extends StartAssessmentRunRespo * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Start assessment run * ```javascript * // Starts the assessment run specified by the ARN of the assessment template. For this API to function properly, you must not exceed the limit of running up to 500 concurrent agents per AWS account. * const input = { - * "assessmentRunName": "examplerun", - * "assessmentTemplateArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T" + * assessmentRunName: "examplerun", + * assessmentTemplateArn: "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T" * }; * const command = new StartAssessmentRunCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "assessmentRunArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T/run/0-jOoroxyY" + * assessmentRunArn: "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T/run/0-jOoroxyY" * } * *\/ - * // example id: start-assessment-run-1481067407484 * ``` * + * @public */ export class StartAssessmentRunCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/StopAssessmentRunCommand.ts b/clients/client-inspector/src/commands/StopAssessmentRunCommand.ts index 25a32a9d2f562..a40bdbf397ae8 100644 --- a/clients/client-inspector/src/commands/StopAssessmentRunCommand.ts +++ b/clients/client-inspector/src/commands/StopAssessmentRunCommand.ts @@ -72,18 +72,21 @@ export interface StopAssessmentRunCommandOutput extends __MetadataBearer {} * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Stop assessment run * ```javascript * // Stops the assessment run that is specified by the ARN of the assessment run. * const input = { - * "assessmentRunArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T/run/0-11LMTAVe" + * assessmentRunArn: "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T/run/0-11LMTAVe" * }; * const command = new StopAssessmentRunCommand(input); - * await client.send(command); - * // example id: stop-assessment-run-1481067502857 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class StopAssessmentRunCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/SubscribeToEventCommand.ts b/clients/client-inspector/src/commands/SubscribeToEventCommand.ts index 39bd1c6317e32..39e87cd23fd93 100644 --- a/clients/client-inspector/src/commands/SubscribeToEventCommand.ts +++ b/clients/client-inspector/src/commands/SubscribeToEventCommand.ts @@ -77,20 +77,23 @@ export interface SubscribeToEventCommandOutput extends __MetadataBearer {} * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Subscribe to event * ```javascript * // Enables the process of sending Amazon Simple Notification Service (SNS) notifications about a specified event to a specified SNS topic. * const input = { - * "event": "ASSESSMENT_RUN_COMPLETED", - * "resourceArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0", - * "topicArn": "arn:aws:sns:us-west-2:123456789012:exampletopic" + * event: "ASSESSMENT_RUN_COMPLETED", + * resourceArn: "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0", + * topicArn: "arn:aws:sns:us-west-2:123456789012:exampletopic" * }; * const command = new SubscribeToEventCommand(input); - * await client.send(command); - * // example id: subscribe-to-event-1481067686031 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SubscribeToEventCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/UnsubscribeFromEventCommand.ts b/clients/client-inspector/src/commands/UnsubscribeFromEventCommand.ts index 984b08d78b4c6..5304e3e135bff 100644 --- a/clients/client-inspector/src/commands/UnsubscribeFromEventCommand.ts +++ b/clients/client-inspector/src/commands/UnsubscribeFromEventCommand.ts @@ -73,20 +73,23 @@ export interface UnsubscribeFromEventCommandOutput extends __MetadataBearer {} * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Unsubscribe from event * ```javascript * // Disables the process of sending Amazon Simple Notification Service (SNS) notifications about a specified event to a specified SNS topic. * const input = { - * "event": "ASSESSMENT_RUN_COMPLETED", - * "resourceArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0", - * "topicArn": "arn:aws:sns:us-west-2:123456789012:exampletopic" + * event: "ASSESSMENT_RUN_COMPLETED", + * resourceArn: "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0", + * topicArn: "arn:aws:sns:us-west-2:123456789012:exampletopic" * }; * const command = new UnsubscribeFromEventCommand(input); - * await client.send(command); - * // example id: unsubscribe-from-event-1481067781705 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UnsubscribeFromEventCommand extends $Command .classBuilder< diff --git a/clients/client-inspector/src/commands/UpdateAssessmentTargetCommand.ts b/clients/client-inspector/src/commands/UpdateAssessmentTargetCommand.ts index 712a01bc2cd76..46bf8a3618e4b 100644 --- a/clients/client-inspector/src/commands/UpdateAssessmentTargetCommand.ts +++ b/clients/client-inspector/src/commands/UpdateAssessmentTargetCommand.ts @@ -75,20 +75,23 @@ export interface UpdateAssessmentTargetCommandOutput extends __MetadataBearer {} * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* - * @public + * * @example Update assessment target * ```javascript * // Updates the assessment target that is specified by the ARN of the assessment target. * const input = { - * "assessmentTargetArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX", - * "assessmentTargetName": "Example", - * "resourceGroupArn": "arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-yNbgL5Pt" + * assessmentTargetArn: "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX", + * assessmentTargetName: "Example", + * resourceGroupArn: "arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-yNbgL5Pt" * }; * const command = new UpdateAssessmentTargetCommand(input); - * await client.send(command); - * // example id: update-assessment-target-1481067866692 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateAssessmentTargetCommand extends $Command .classBuilder< diff --git a/clients/client-inspector2/src/commands/AssociateMemberCommand.ts b/clients/client-inspector2/src/commands/AssociateMemberCommand.ts index 6d56fd4bc62e3..6bbc8678e2674 100644 --- a/clients/client-inspector2/src/commands/AssociateMemberCommand.ts +++ b/clients/client-inspector2/src/commands/AssociateMemberCommand.ts @@ -72,6 +72,7 @@ export interface AssociateMemberCommandOutput extends AssociateMemberResponse, _ * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class AssociateMemberCommand extends $Command diff --git a/clients/client-inspector2/src/commands/BatchGetAccountStatusCommand.ts b/clients/client-inspector2/src/commands/BatchGetAccountStatusCommand.ts index dbee60a52eaf2..7a81daaa55e95 100644 --- a/clients/client-inspector2/src/commands/BatchGetAccountStatusCommand.ts +++ b/clients/client-inspector2/src/commands/BatchGetAccountStatusCommand.ts @@ -118,6 +118,7 @@ export interface BatchGetAccountStatusCommandOutput extends BatchGetAccountStatu * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class BatchGetAccountStatusCommand extends $Command diff --git a/clients/client-inspector2/src/commands/BatchGetCodeSnippetCommand.ts b/clients/client-inspector2/src/commands/BatchGetCodeSnippetCommand.ts index 312991d83b2ba..54af285032176 100644 --- a/clients/client-inspector2/src/commands/BatchGetCodeSnippetCommand.ts +++ b/clients/client-inspector2/src/commands/BatchGetCodeSnippetCommand.ts @@ -95,6 +95,7 @@ export interface BatchGetCodeSnippetCommandOutput extends BatchGetCodeSnippetRes * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class BatchGetCodeSnippetCommand extends $Command diff --git a/clients/client-inspector2/src/commands/BatchGetFindingDetailsCommand.ts b/clients/client-inspector2/src/commands/BatchGetFindingDetailsCommand.ts index 9aab535a40996..1e2896ce82167 100644 --- a/clients/client-inspector2/src/commands/BatchGetFindingDetailsCommand.ts +++ b/clients/client-inspector2/src/commands/BatchGetFindingDetailsCommand.ts @@ -111,6 +111,67 @@ export interface BatchGetFindingDetailsCommandOutput extends BatchGetFindingDeta * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * + * @example Sample BatchGetFindingDetails Call + * ```javascript + * // + * const input = { + * findingArns: [ + * "arn:aws:inspector2:eu-west-1:123456789012:finding/78b88cc9aa1d78b6e14fde90d774dde7", + * "arn:aws:inspector2:eu-west-1:111111111111:finding/78b88cc9aa1d78b6e14fde90d874dde7" + * ] + * }; + * const command = new BatchGetFindingDetailsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * errors: [ + * { + * errorCode: "ACCESS_DENIED", + * errorMessage: "You don't have permission to access this finding", + * findingArn: "arn:aws:inspector2:eu-west-1:111111111111:finding/78b88cc9aa1d78b6e14fde90d874dde7" + * } + * ], + * findingDetails: [ + * { + * cisaData: { + * action: "For all affected software assets for which updates exist, the only acceptable remediation actions are: 1) Apply updates; OR 2) remove affected assets from agency networks.", + * dateAdded: 1688580990, + * dateDue: 1688580999 + * }, + * cwes: [ + * "cwe-1234" + * ], + * epssScore: 0.85, + * evidences: [ + * { + * evidenceDetail: "2 sightings on 1 source", + * evidenceRule: "Historically Linked to Penetration Testing Tools", + * severity: "Low" + * } + * ], + * exploitObserved: { + * firstSeen: 1688580800, + * lastSeen: 1688580990 + * }, + * findingArn: "arn:aws:inspector2:eu-west-1:123456789012:finding/78b88cc9aa1d78b6e14fde90d774dde7", + * referenceUrls: [ + * "https://nvd.nist.gov/vuln/detail/CVE-2019-20367" + * ], + * riskScore: 66, + * tools: [ + * "Metasploit" + * ], + * ttps: [ + * "TA0001", + * "TA0002" + * ] + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class BatchGetFindingDetailsCommand extends $Command diff --git a/clients/client-inspector2/src/commands/BatchGetFreeTrialInfoCommand.ts b/clients/client-inspector2/src/commands/BatchGetFreeTrialInfoCommand.ts index 0a490977d6e3f..8c7bae6311e11 100644 --- a/clients/client-inspector2/src/commands/BatchGetFreeTrialInfoCommand.ts +++ b/clients/client-inspector2/src/commands/BatchGetFreeTrialInfoCommand.ts @@ -89,6 +89,7 @@ export interface BatchGetFreeTrialInfoCommandOutput extends BatchGetFreeTrialInf * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class BatchGetFreeTrialInfoCommand extends $Command diff --git a/clients/client-inspector2/src/commands/BatchGetMemberEc2DeepInspectionStatusCommand.ts b/clients/client-inspector2/src/commands/BatchGetMemberEc2DeepInspectionStatusCommand.ts index 30cbac9e6d7d6..3af86a34f1888 100644 --- a/clients/client-inspector2/src/commands/BatchGetMemberEc2DeepInspectionStatusCommand.ts +++ b/clients/client-inspector2/src/commands/BatchGetMemberEc2DeepInspectionStatusCommand.ts @@ -92,6 +92,7 @@ export interface BatchGetMemberEc2DeepInspectionStatusCommandOutput * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class BatchGetMemberEc2DeepInspectionStatusCommand extends $Command diff --git a/clients/client-inspector2/src/commands/BatchUpdateMemberEc2DeepInspectionStatusCommand.ts b/clients/client-inspector2/src/commands/BatchUpdateMemberEc2DeepInspectionStatusCommand.ts index f5db7730985bd..d727cc6c2a513 100644 --- a/clients/client-inspector2/src/commands/BatchUpdateMemberEc2DeepInspectionStatusCommand.ts +++ b/clients/client-inspector2/src/commands/BatchUpdateMemberEc2DeepInspectionStatusCommand.ts @@ -95,6 +95,7 @@ export interface BatchUpdateMemberEc2DeepInspectionStatusCommandOutput * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class BatchUpdateMemberEc2DeepInspectionStatusCommand extends $Command diff --git a/clients/client-inspector2/src/commands/CancelFindingsReportCommand.ts b/clients/client-inspector2/src/commands/CancelFindingsReportCommand.ts index 5d7618931616b..692bbce13eb79 100644 --- a/clients/client-inspector2/src/commands/CancelFindingsReportCommand.ts +++ b/clients/client-inspector2/src/commands/CancelFindingsReportCommand.ts @@ -71,6 +71,7 @@ export interface CancelFindingsReportCommandOutput extends CancelFindingsReportR * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class CancelFindingsReportCommand extends $Command diff --git a/clients/client-inspector2/src/commands/CancelSbomExportCommand.ts b/clients/client-inspector2/src/commands/CancelSbomExportCommand.ts index b996911512ad4..49227385e1f0e 100644 --- a/clients/client-inspector2/src/commands/CancelSbomExportCommand.ts +++ b/clients/client-inspector2/src/commands/CancelSbomExportCommand.ts @@ -71,6 +71,7 @@ export interface CancelSbomExportCommandOutput extends CancelSbomExportResponse, * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class CancelSbomExportCommand extends $Command diff --git a/clients/client-inspector2/src/commands/CreateCisScanConfigurationCommand.ts b/clients/client-inspector2/src/commands/CreateCisScanConfigurationCommand.ts index 7343c7ac23e65..da695d87d9cda 100644 --- a/clients/client-inspector2/src/commands/CreateCisScanConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/CreateCisScanConfigurationCommand.ts @@ -107,6 +107,41 @@ export interface CreateCisScanConfigurationCommandOutput extends CreateCisScanCo * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * + * @example Sample CreateCisScanConfiguration Call + * ```javascript + * // + * const input = { + * scanName: "sample", + * schedule: { + * daily: { + * startTime: { + * timeOfDay: "12:34", + * timezone: "UTC" + * } + * } + * }, + * securityLevel: "LEVEL_1", + * targets: { + * accountIds: [ + * "SELF" + * ], + * targetResourceTags: { + * key: [ + * "value" + * ] + * } + * } + * }; + * const command = new CreateCisScanConfigurationCommand(input); + * const response = await client.send(command); + * /* response is + * { + * scanConfigurationArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-configuration/624b746d-e080-44ae-8c1d-48e653365a38" + * } + * *\/ + * ``` + * * @public */ export class CreateCisScanConfigurationCommand extends $Command diff --git a/clients/client-inspector2/src/commands/CreateFilterCommand.ts b/clients/client-inspector2/src/commands/CreateFilterCommand.ts index 41c54b6af26de..14f6a4a944d98 100644 --- a/clients/client-inspector2/src/commands/CreateFilterCommand.ts +++ b/clients/client-inspector2/src/commands/CreateFilterCommand.ts @@ -210,6 +210,7 @@ export interface CreateFilterCommandOutput extends CreateFilterResponse, __Metad * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class CreateFilterCommand extends $Command diff --git a/clients/client-inspector2/src/commands/CreateFindingsReportCommand.ts b/clients/client-inspector2/src/commands/CreateFindingsReportCommand.ts index 80bd778b22fea..8117f61560a92 100644 --- a/clients/client-inspector2/src/commands/CreateFindingsReportCommand.ts +++ b/clients/client-inspector2/src/commands/CreateFindingsReportCommand.ts @@ -205,6 +205,7 @@ export interface CreateFindingsReportCommandOutput extends CreateFindingsReportR * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class CreateFindingsReportCommand extends $Command diff --git a/clients/client-inspector2/src/commands/CreateSbomExportCommand.ts b/clients/client-inspector2/src/commands/CreateSbomExportCommand.ts index 170e58b9c3a2e..10922a26c8da1 100644 --- a/clients/client-inspector2/src/commands/CreateSbomExportCommand.ts +++ b/clients/client-inspector2/src/commands/CreateSbomExportCommand.ts @@ -123,6 +123,7 @@ export interface CreateSbomExportCommandOutput extends CreateSbomExportResponse, * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class CreateSbomExportCommand extends $Command diff --git a/clients/client-inspector2/src/commands/DeleteCisScanConfigurationCommand.ts b/clients/client-inspector2/src/commands/DeleteCisScanConfigurationCommand.ts index cdb7796384c50..aa3904ffd7716 100644 --- a/clients/client-inspector2/src/commands/DeleteCisScanConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/DeleteCisScanConfigurationCommand.ts @@ -71,6 +71,22 @@ export interface DeleteCisScanConfigurationCommandOutput extends DeleteCisScanCo * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * + * @example Sample DeleteCisScanConfiguration Call + * ```javascript + * // + * const input = { + * scanConfigurationArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-configuration/624b746d-e080-44ae-8c1d-48e653365a38" + * }; + * const command = new DeleteCisScanConfigurationCommand(input); + * const response = await client.send(command); + * /* response is + * { + * scanConfigurationArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-configuration/624b746d-e080-44ae-8c1d-48e653365a38" + * } + * *\/ + * ``` + * * @public */ export class DeleteCisScanConfigurationCommand extends $Command diff --git a/clients/client-inspector2/src/commands/DeleteFilterCommand.ts b/clients/client-inspector2/src/commands/DeleteFilterCommand.ts index 77117942c2f97..54c5894bc7450 100644 --- a/clients/client-inspector2/src/commands/DeleteFilterCommand.ts +++ b/clients/client-inspector2/src/commands/DeleteFilterCommand.ts @@ -71,6 +71,7 @@ export interface DeleteFilterCommandOutput extends DeleteFilterResponse, __Metad * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class DeleteFilterCommand extends $Command diff --git a/clients/client-inspector2/src/commands/DescribeOrganizationConfigurationCommand.ts b/clients/client-inspector2/src/commands/DescribeOrganizationConfigurationCommand.ts index aac041e5bade5..673ae54c888a8 100644 --- a/clients/client-inspector2/src/commands/DescribeOrganizationConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/DescribeOrganizationConfigurationCommand.ts @@ -80,6 +80,7 @@ export interface DescribeOrganizationConfigurationCommandOutput * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class DescribeOrganizationConfigurationCommand extends $Command diff --git a/clients/client-inspector2/src/commands/DisableCommand.ts b/clients/client-inspector2/src/commands/DisableCommand.ts index c46701d320230..983d6556d0d4d 100644 --- a/clients/client-inspector2/src/commands/DisableCommand.ts +++ b/clients/client-inspector2/src/commands/DisableCommand.ts @@ -102,6 +102,7 @@ export interface DisableCommandOutput extends DisableResponse, __MetadataBearer * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class DisableCommand extends $Command diff --git a/clients/client-inspector2/src/commands/DisableDelegatedAdminAccountCommand.ts b/clients/client-inspector2/src/commands/DisableDelegatedAdminAccountCommand.ts index 2ce73ca8c70be..ecb465de0fe18 100644 --- a/clients/client-inspector2/src/commands/DisableDelegatedAdminAccountCommand.ts +++ b/clients/client-inspector2/src/commands/DisableDelegatedAdminAccountCommand.ts @@ -79,6 +79,7 @@ export interface DisableDelegatedAdminAccountCommandOutput * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class DisableDelegatedAdminAccountCommand extends $Command diff --git a/clients/client-inspector2/src/commands/DisassociateMemberCommand.ts b/clients/client-inspector2/src/commands/DisassociateMemberCommand.ts index 1ec875cfa69f6..6a2deb37cbd7a 100644 --- a/clients/client-inspector2/src/commands/DisassociateMemberCommand.ts +++ b/clients/client-inspector2/src/commands/DisassociateMemberCommand.ts @@ -68,6 +68,7 @@ export interface DisassociateMemberCommandOutput extends DisassociateMemberRespo * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class DisassociateMemberCommand extends $Command diff --git a/clients/client-inspector2/src/commands/EnableCommand.ts b/clients/client-inspector2/src/commands/EnableCommand.ts index f9632416704a6..7d30e91482e9c 100644 --- a/clients/client-inspector2/src/commands/EnableCommand.ts +++ b/clients/client-inspector2/src/commands/EnableCommand.ts @@ -102,6 +102,7 @@ export interface EnableCommandOutput extends EnableResponse, __MetadataBearer {} * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class EnableCommand extends $Command diff --git a/clients/client-inspector2/src/commands/EnableDelegatedAdminAccountCommand.ts b/clients/client-inspector2/src/commands/EnableDelegatedAdminAccountCommand.ts index af1612a013c62..147aa2658ea64 100644 --- a/clients/client-inspector2/src/commands/EnableDelegatedAdminAccountCommand.ts +++ b/clients/client-inspector2/src/commands/EnableDelegatedAdminAccountCommand.ts @@ -80,6 +80,7 @@ export interface EnableDelegatedAdminAccountCommandOutput * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class EnableDelegatedAdminAccountCommand extends $Command diff --git a/clients/client-inspector2/src/commands/GetCisScanReportCommand.ts b/clients/client-inspector2/src/commands/GetCisScanReportCommand.ts index 9cd8f3f73bcdb..c9018326097c7 100644 --- a/clients/client-inspector2/src/commands/GetCisScanReportCommand.ts +++ b/clients/client-inspector2/src/commands/GetCisScanReportCommand.ts @@ -76,6 +76,24 @@ export interface GetCisScanReportCommandOutput extends GetCisScanReportResponse, * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * + * @example Sample GetCisScanReport Call + * ```javascript + * // + * const input = { + * reportFormat: "PDF", + * scanArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-scan/624b746d-e080-44ae-8c1d-48e653365a38" + * }; + * const command = new GetCisScanReportCommand(input); + * const response = await client.send(command); + * /* response is + * { + * status: "SUCCEEDED", + * url: "www.s3.amazon.com/abcdef" + * } + * *\/ + * ``` + * * @public */ export class GetCisScanReportCommand extends $Command diff --git a/clients/client-inspector2/src/commands/GetCisScanResultDetailsCommand.ts b/clients/client-inspector2/src/commands/GetCisScanResultDetailsCommand.ts index dd2dce316ba2f..c4296df5f7f9c 100644 --- a/clients/client-inspector2/src/commands/GetCisScanResultDetailsCommand.ts +++ b/clients/client-inspector2/src/commands/GetCisScanResultDetailsCommand.ts @@ -122,6 +122,37 @@ export interface GetCisScanResultDetailsCommandOutput extends GetCisScanResultDe * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * + * @example Sample GetCisScanResultDetails Call + * ```javascript + * // + * const input = { + * accountId: "123412341234", + * scanArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-scan/624b746d-e080-44ae-8c1d-48e653365a38", + * targetResourceId: "i-12341234" + * }; + * const command = new GetCisScanResultDetailsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * scanResultDetails: [ + * { + * accountId: "123412341234", + * checkDescription: "description", + * checkId: "1.1.1.1", + * level: "LEVEL_1", + * platform: "AMAZON_LINUX_2", + * remediation: "fix", + * scanArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-scan/624b746d-e080-44ae-8c1d-48e653365a38", + * status: "PASSED", + * targetResourceId: "i-12341234", + * title: "title1" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class GetCisScanResultDetailsCommand extends $Command diff --git a/clients/client-inspector2/src/commands/GetConfigurationCommand.ts b/clients/client-inspector2/src/commands/GetConfigurationCommand.ts index bb52d1475d269..2ba0def5819fa 100644 --- a/clients/client-inspector2/src/commands/GetConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/GetConfigurationCommand.ts @@ -75,6 +75,7 @@ export interface GetConfigurationCommandOutput extends GetConfigurationResponse, * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class GetConfigurationCommand extends $Command diff --git a/clients/client-inspector2/src/commands/GetDelegatedAdminAccountCommand.ts b/clients/client-inspector2/src/commands/GetDelegatedAdminAccountCommand.ts index 7404b1aade234..07203fff4a9cd 100644 --- a/clients/client-inspector2/src/commands/GetDelegatedAdminAccountCommand.ts +++ b/clients/client-inspector2/src/commands/GetDelegatedAdminAccountCommand.ts @@ -73,6 +73,7 @@ export interface GetDelegatedAdminAccountCommandOutput extends GetDelegatedAdmin * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class GetDelegatedAdminAccountCommand extends $Command diff --git a/clients/client-inspector2/src/commands/GetEc2DeepInspectionConfigurationCommand.ts b/clients/client-inspector2/src/commands/GetEc2DeepInspectionConfigurationCommand.ts index 6eb7d8ad94024..7a755e7364f36 100644 --- a/clients/client-inspector2/src/commands/GetEc2DeepInspectionConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/GetEc2DeepInspectionConfigurationCommand.ts @@ -81,6 +81,7 @@ export interface GetEc2DeepInspectionConfigurationCommandOutput * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class GetEc2DeepInspectionConfigurationCommand extends $Command diff --git a/clients/client-inspector2/src/commands/GetEncryptionKeyCommand.ts b/clients/client-inspector2/src/commands/GetEncryptionKeyCommand.ts index a69fef5084059..f69bc90b0043e 100644 --- a/clients/client-inspector2/src/commands/GetEncryptionKeyCommand.ts +++ b/clients/client-inspector2/src/commands/GetEncryptionKeyCommand.ts @@ -72,6 +72,7 @@ export interface GetEncryptionKeyCommandOutput extends GetEncryptionKeyResponse, * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class GetEncryptionKeyCommand extends $Command diff --git a/clients/client-inspector2/src/commands/GetFindingsReportStatusCommand.ts b/clients/client-inspector2/src/commands/GetFindingsReportStatusCommand.ts index 7569be35fc811..40ca0c6e48399 100644 --- a/clients/client-inspector2/src/commands/GetFindingsReportStatusCommand.ts +++ b/clients/client-inspector2/src/commands/GetFindingsReportStatusCommand.ts @@ -208,6 +208,7 @@ export interface GetFindingsReportStatusCommandOutput extends GetFindingsReportS * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class GetFindingsReportStatusCommand extends $Command diff --git a/clients/client-inspector2/src/commands/GetMemberCommand.ts b/clients/client-inspector2/src/commands/GetMemberCommand.ts index 8f93e24701877..37c921fe4588e 100644 --- a/clients/client-inspector2/src/commands/GetMemberCommand.ts +++ b/clients/client-inspector2/src/commands/GetMemberCommand.ts @@ -76,6 +76,7 @@ export interface GetMemberCommandOutput extends GetMemberResponse, __MetadataBea * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class GetMemberCommand extends $Command diff --git a/clients/client-inspector2/src/commands/GetSbomExportCommand.ts b/clients/client-inspector2/src/commands/GetSbomExportCommand.ts index f73cffa262d25..8ed8ecf4e2193 100644 --- a/clients/client-inspector2/src/commands/GetSbomExportCommand.ts +++ b/clients/client-inspector2/src/commands/GetSbomExportCommand.ts @@ -127,6 +127,7 @@ export interface GetSbomExportCommandOutput extends GetSbomExportResponse, __Met * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class GetSbomExportCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ListAccountPermissionsCommand.ts b/clients/client-inspector2/src/commands/ListAccountPermissionsCommand.ts index 2071dffceb2ea..daa7088509463 100644 --- a/clients/client-inspector2/src/commands/ListAccountPermissionsCommand.ts +++ b/clients/client-inspector2/src/commands/ListAccountPermissionsCommand.ts @@ -76,6 +76,7 @@ export interface ListAccountPermissionsCommandOutput extends ListAccountPermissi * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class ListAccountPermissionsCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ListCisScanConfigurationsCommand.ts b/clients/client-inspector2/src/commands/ListCisScanConfigurationsCommand.ts index 2a92a668ff193..238fc67ad0b60 100644 --- a/clients/client-inspector2/src/commands/ListCisScanConfigurationsCommand.ts +++ b/clients/client-inspector2/src/commands/ListCisScanConfigurationsCommand.ts @@ -138,6 +138,45 @@ export interface ListCisScanConfigurationsCommandOutput extends ListCisScanConfi * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * + * @example Sample ListCisScanConfigurations Call + * ```javascript + * // + * const input = { /* empty *\/ }; + * const command = new ListCisScanConfigurationsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * scanConfigurations: [ + * { + * ownerId: "123412341234", + * scanConfigurationArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-configuration/624b746d-e080-44ae-8c1d-48e653365a38", + * scanName: "sample", + * schedule: { + * daily: { + * startTime: { + * timeOfDay: "12:34", + * timezone: "UTC" + * } + * } + * }, + * securityLevel: "LEVEL_1", + * targets: { + * accountIds: [ + * "123412341234" + * ], + * targetResourceTags: { + * key: [ + * "value" + * ] + * } + * } + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListCisScanConfigurationsCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByChecksCommand.ts b/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByChecksCommand.ts index 4f6258789d673..980c9a09c9bf2 100644 --- a/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByChecksCommand.ts +++ b/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByChecksCommand.ts @@ -134,6 +134,37 @@ export interface ListCisScanResultsAggregatedByChecksCommandOutput * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * + * @example Sample ListCisScanResultsAggregatedByChecks Call + * ```javascript + * // + * const input = { + * scanArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-scan/624b746d-e080-44ae-8c1d-48e653365a38" + * }; + * const command = new ListCisScanResultsAggregatedByChecksCommand(input); + * const response = await client.send(command); + * /* response is + * { + * checkAggregations: [ + * { + * accountId: "123412341234", + * checkDescription: "description", + * checkId: "1.1.1.1", + * level: "LEVEL_1", + * platform: "AMAZON_LINUX_2", + * scanArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-scan/624b746d-e080-44ae-8c1d-48e653365a38", + * statusCounts: { + * failed: 0, + * passed: 2, + * skipped: 1 + * }, + * title: "title1" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListCisScanResultsAggregatedByChecksCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByTargetResourceCommand.ts b/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByTargetResourceCommand.ts index b2eaf11a45ced..8a85f6b5ecb09 100644 --- a/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByTargetResourceCommand.ts +++ b/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByTargetResourceCommand.ts @@ -158,6 +158,40 @@ export interface ListCisScanResultsAggregatedByTargetResourceCommandOutput * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * + * @example Sample ListCisScanResultsAggregatedByTargetResource Call + * ```javascript + * // + * const input = { + * scanArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-scan/624b746d-e080-44ae-8c1d-48e653365a38" + * }; + * const command = new ListCisScanResultsAggregatedByTargetResourceCommand(input); + * const response = await client.send(command); + * /* response is + * { + * targetResourceAggregations: [ + * { + * accountId: "123412341234", + * platform: "AMAZON_LINUX_2", + * scanArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-scan/624b746d-e080-44ae-8c1d-48e653365a38", + * statusCounts: { + * failed: 0, + * passed: 2, + * skipped: 1 + * }, + * targetResourceId: "i-12341234", + * targetResourceTags: { + * key: [ + * "value" + * ] + * }, + * targetStatus: "COMPLETED" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListCisScanResultsAggregatedByTargetResourceCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ListCisScansCommand.ts b/clients/client-inspector2/src/commands/ListCisScansCommand.ts index d4cb0e1f1325a..de1403da29eb1 100644 --- a/clients/client-inspector2/src/commands/ListCisScansCommand.ts +++ b/clients/client-inspector2/src/commands/ListCisScansCommand.ts @@ -155,6 +155,42 @@ export interface ListCisScansCommandOutput extends ListCisScansResponse, __Metad * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * + * @example Sample ListCisScans Call + * ```javascript + * // + * const input = { /* empty *\/ }; + * const command = new ListCisScansCommand(input); + * const response = await client.send(command); + * /* response is + * { + * scans: [ + * { + * failedChecks: 2, + * scanArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-scan/624b746d-e080-44ae-8c1d-48e653365a38", + * scanConfigurationArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-configuration/624b746d-e080-44ae-8c1d-48e653365a38", + * scanDate: "2023-04-12T23:20:50.52Z", + * scanName: "sample", + * scheduledBy: "Delegated Admin", + * securityLevel: "LEVEL_1", + * status: "COMPLETED", + * targets: { + * accountIds: [ + * "123412341234" + * ], + * targetResourceTags: { + * key: [ + * "value" + * ] + * } + * }, + * totalChecks: 150 + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListCisScansCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ListCoverageCommand.ts b/clients/client-inspector2/src/commands/ListCoverageCommand.ts index 9423bd1307792..19f2b4f46a9a1 100644 --- a/clients/client-inspector2/src/commands/ListCoverageCommand.ts +++ b/clients/client-inspector2/src/commands/ListCoverageCommand.ts @@ -173,6 +173,7 @@ export interface ListCoverageCommandOutput extends ListCoverageResponse, __Metad * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class ListCoverageCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ListCoverageStatisticsCommand.ts b/clients/client-inspector2/src/commands/ListCoverageStatisticsCommand.ts index 7c3bf9e31fed5..3c3d38559eedd 100644 --- a/clients/client-inspector2/src/commands/ListCoverageStatisticsCommand.ts +++ b/clients/client-inspector2/src/commands/ListCoverageStatisticsCommand.ts @@ -137,6 +137,7 @@ export interface ListCoverageStatisticsCommandOutput extends ListCoverageStatist * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class ListCoverageStatisticsCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ListDelegatedAdminAccountsCommand.ts b/clients/client-inspector2/src/commands/ListDelegatedAdminAccountsCommand.ts index 287c1e8f21546..42c87785b71fd 100644 --- a/clients/client-inspector2/src/commands/ListDelegatedAdminAccountsCommand.ts +++ b/clients/client-inspector2/src/commands/ListDelegatedAdminAccountsCommand.ts @@ -76,6 +76,7 @@ export interface ListDelegatedAdminAccountsCommandOutput extends ListDelegatedAd * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class ListDelegatedAdminAccountsCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ListFiltersCommand.ts b/clients/client-inspector2/src/commands/ListFiltersCommand.ts index ec23cbe0b533a..edc703ec78dfe 100644 --- a/clients/client-inspector2/src/commands/ListFiltersCommand.ts +++ b/clients/client-inspector2/src/commands/ListFiltersCommand.ts @@ -217,6 +217,7 @@ export interface ListFiltersCommandOutput extends ListFiltersResponse, __Metadat * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class ListFiltersCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ListFindingAggregationsCommand.ts b/clients/client-inspector2/src/commands/ListFindingAggregationsCommand.ts index cdd56161f6074..8aa394647075b 100644 --- a/clients/client-inspector2/src/commands/ListFindingAggregationsCommand.ts +++ b/clients/client-inspector2/src/commands/ListFindingAggregationsCommand.ts @@ -293,6 +293,7 @@ export interface ListFindingAggregationsCommandOutput extends ListFindingAggrega * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class ListFindingAggregationsCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ListFindingsCommand.ts b/clients/client-inspector2/src/commands/ListFindingsCommand.ts index e3658b1051e90..114afb255559f 100644 --- a/clients/client-inspector2/src/commands/ListFindingsCommand.ts +++ b/clients/client-inspector2/src/commands/ListFindingsCommand.ts @@ -382,6 +382,7 @@ export interface ListFindingsCommandOutput extends ListFindingsResponse, __Metad * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class ListFindingsCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ListMembersCommand.ts b/clients/client-inspector2/src/commands/ListMembersCommand.ts index 8db294c705911..1741b26b07a66 100644 --- a/clients/client-inspector2/src/commands/ListMembersCommand.ts +++ b/clients/client-inspector2/src/commands/ListMembersCommand.ts @@ -79,6 +79,7 @@ export interface ListMembersCommandOutput extends ListMembersResponse, __Metadat * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class ListMembersCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ListTagsForResourceCommand.ts b/clients/client-inspector2/src/commands/ListTagsForResourceCommand.ts index 718d63b5b3f2a..03f898ae6ba72 100644 --- a/clients/client-inspector2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-inspector2/src/commands/ListTagsForResourceCommand.ts @@ -70,6 +70,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ListUsageTotalsCommand.ts b/clients/client-inspector2/src/commands/ListUsageTotalsCommand.ts index a7d7b2c66efa1..f51b8ac533348 100644 --- a/clients/client-inspector2/src/commands/ListUsageTotalsCommand.ts +++ b/clients/client-inspector2/src/commands/ListUsageTotalsCommand.ts @@ -85,6 +85,7 @@ export interface ListUsageTotalsCommandOutput extends ListUsageTotalsResponse, _ * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class ListUsageTotalsCommand extends $Command diff --git a/clients/client-inspector2/src/commands/ResetEncryptionKeyCommand.ts b/clients/client-inspector2/src/commands/ResetEncryptionKeyCommand.ts index 4f56d75eef183..dc5eb86ffd6b4 100644 --- a/clients/client-inspector2/src/commands/ResetEncryptionKeyCommand.ts +++ b/clients/client-inspector2/src/commands/ResetEncryptionKeyCommand.ts @@ -70,6 +70,7 @@ export interface ResetEncryptionKeyCommandOutput extends ResetEncryptionKeyRespo * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class ResetEncryptionKeyCommand extends $Command diff --git a/clients/client-inspector2/src/commands/SearchVulnerabilitiesCommand.ts b/clients/client-inspector2/src/commands/SearchVulnerabilitiesCommand.ts index bcfbf73a1395c..03458e3ccdae3 100644 --- a/clients/client-inspector2/src/commands/SearchVulnerabilitiesCommand.ts +++ b/clients/client-inspector2/src/commands/SearchVulnerabilitiesCommand.ts @@ -126,6 +126,7 @@ export interface SearchVulnerabilitiesCommandOutput extends SearchVulnerabilitie * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class SearchVulnerabilitiesCommand extends $Command diff --git a/clients/client-inspector2/src/commands/SendCisSessionHealthCommand.ts b/clients/client-inspector2/src/commands/SendCisSessionHealthCommand.ts index 2d3b5ef8b1430..b7e3b1d260708 100644 --- a/clients/client-inspector2/src/commands/SendCisSessionHealthCommand.ts +++ b/clients/client-inspector2/src/commands/SendCisSessionHealthCommand.ts @@ -74,6 +74,21 @@ export interface SendCisSessionHealthCommandOutput extends SendCisSessionHealthR * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * + * @example Sample SendCisSessionHealth Call + * ```javascript + * // + * const input = { + * scanJobId: "624b746d-e080-44ae-8c1d-48e653365a38", + * sessionToken: "624b746d-e080-44ae-8c1d-48e653365a31" + * }; + * const command = new SendCisSessionHealthCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * * @public */ export class SendCisSessionHealthCommand extends $Command diff --git a/clients/client-inspector2/src/commands/SendCisSessionTelemetryCommand.ts b/clients/client-inspector2/src/commands/SendCisSessionTelemetryCommand.ts index 49c2fc31b207b..41284940df36e 100644 --- a/clients/client-inspector2/src/commands/SendCisSessionTelemetryCommand.ts +++ b/clients/client-inspector2/src/commands/SendCisSessionTelemetryCommand.ts @@ -81,6 +81,33 @@ export interface SendCisSessionTelemetryCommandOutput extends SendCisSessionTele * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * + * @example Sample SendCisSessionTelemetry Call + * ```javascript + * // + * const input = { + * messages: [ + * { + * cisRuleDetails: "dGVzdCBleGFtcGxlCg==", + * ruleId: "1.12.1", + * status: "FAILED" + * }, + * { + * cisRuleDetails: "dGVzdCBleGFtcGxlCg==dGVzdCBleGFtcGxlCg", + * ruleId: "1.2.1", + * status: "PASSED" + * } + * ], + * scanJobId: "624b746d-e080-44ae-8c1d-48e653365a38", + * sessionToken: "624b746d-e080-44ae-8c1d-48e653365a31" + * }; + * const command = new SendCisSessionTelemetryCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * * @public */ export class SendCisSessionTelemetryCommand extends $Command diff --git a/clients/client-inspector2/src/commands/StartCisSessionCommand.ts b/clients/client-inspector2/src/commands/StartCisSessionCommand.ts index 482bd0a3bed33..928c90ad5e4db 100644 --- a/clients/client-inspector2/src/commands/StartCisSessionCommand.ts +++ b/clients/client-inspector2/src/commands/StartCisSessionCommand.ts @@ -76,6 +76,23 @@ export interface StartCisSessionCommandOutput extends StartCisSessionResponse, _ * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * + * @example Sample SendCisSessionHealth Call + * ```javascript + * // + * const input = { + * message: { + * sessionToken: "624b746d-e080-44ae-8c1d-48e653365a31" + * }, + * scanJobId: "624b746d-e080-44ae-8c1d-48e653365a38" + * }; + * const command = new StartCisSessionCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * * @public */ export class StartCisSessionCommand extends $Command diff --git a/clients/client-inspector2/src/commands/StopCisSessionCommand.ts b/clients/client-inspector2/src/commands/StopCisSessionCommand.ts index d704f1c1d0c72..035a1200ff164 100644 --- a/clients/client-inspector2/src/commands/StopCisSessionCommand.ts +++ b/clients/client-inspector2/src/commands/StopCisSessionCommand.ts @@ -95,6 +95,42 @@ export interface StopCisSessionCommandOutput extends StopCisSessionResponse, __M * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * + * @example Sample StopCisSession Call + * ```javascript + * // + * const input = { + * message: { + * benchmarkProfile: "xccdf_org.cisecurity.benchmarks_profile_Level_1", + * benchmarkVersion: "2.0.0", + * computePlatform: { + * product: "ubuntu", + * vendor: "canonical", + * version: "20.04" + * }, + * progress: { + * errorChecks: 1, + * failedChecks: 0, + * informationalChecks: 1, + * notApplicableChecks: 0, + * notEvaluatedChecks: 2, + * successfulChecks: 5, + * totalChecks: 10, + * unknownChecks: 0 + * }, + * reason: "Failure Reason", + * status: "FAILED" + * }, + * scanJobId: "624b746d-e080-44ae-8c1d-48e653365a38", + * sessionToken: "624b746d-e080-44ae-8c1d-48e653365a31" + * }; + * const command = new StopCisSessionCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * * @public */ export class StopCisSessionCommand extends $Command diff --git a/clients/client-inspector2/src/commands/TagResourceCommand.ts b/clients/client-inspector2/src/commands/TagResourceCommand.ts index a3e7c9d2e576e..8ea342f65d098 100644 --- a/clients/client-inspector2/src/commands/TagResourceCommand.ts +++ b/clients/client-inspector2/src/commands/TagResourceCommand.ts @@ -72,6 +72,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-inspector2/src/commands/UntagResourceCommand.ts b/clients/client-inspector2/src/commands/UntagResourceCommand.ts index 571bedf9eec68..4cc207b6b8962 100644 --- a/clients/client-inspector2/src/commands/UntagResourceCommand.ts +++ b/clients/client-inspector2/src/commands/UntagResourceCommand.ts @@ -69,6 +69,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-inspector2/src/commands/UpdateCisScanConfigurationCommand.ts b/clients/client-inspector2/src/commands/UpdateCisScanConfigurationCommand.ts index f306da6c0ead6..0a6e19a891907 100644 --- a/clients/client-inspector2/src/commands/UpdateCisScanConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateCisScanConfigurationCommand.ts @@ -108,6 +108,42 @@ export interface UpdateCisScanConfigurationCommandOutput extends UpdateCisScanCo * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * + * @example Sample UpdateCisScanConfiguration Call + * ```javascript + * // + * const input = { + * scanConfigurationArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-configuration/624b746d-e080-44ae-8c1d-48e653365a38", + * scanName: "sample_new", + * schedule: { + * daily: { + * startTime: { + * timeOfDay: "12:56", + * timezone: "UTC" + * } + * } + * }, + * securityLevel: "LEVEL_2", + * targets: { + * accountIds: [ + * "SELF" + * ], + * targetResourceTags: { + * key2: [ + * "value2" + * ] + * } + * } + * }; + * const command = new UpdateCisScanConfigurationCommand(input); + * const response = await client.send(command); + * /* response is + * { + * scanConfigurationArn: "arn:aws:inspector2:us-east-1:123412341234:owner/123412341234/cis-configuration/624b746d-e080-44ae-8c1d-48e653365a38" + * } + * *\/ + * ``` + * * @public */ export class UpdateCisScanConfigurationCommand extends $Command diff --git a/clients/client-inspector2/src/commands/UpdateConfigurationCommand.ts b/clients/client-inspector2/src/commands/UpdateConfigurationCommand.ts index 5d361a65dd8ff..2b6aa950aebca 100644 --- a/clients/client-inspector2/src/commands/UpdateConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateConfigurationCommand.ts @@ -72,6 +72,7 @@ export interface UpdateConfigurationCommandOutput extends UpdateConfigurationRes * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class UpdateConfigurationCommand extends $Command diff --git a/clients/client-inspector2/src/commands/UpdateEc2DeepInspectionConfigurationCommand.ts b/clients/client-inspector2/src/commands/UpdateEc2DeepInspectionConfigurationCommand.ts index 0eabc07f3ca82..d0b10fc787d97 100644 --- a/clients/client-inspector2/src/commands/UpdateEc2DeepInspectionConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateEc2DeepInspectionConfigurationCommand.ts @@ -86,6 +86,7 @@ export interface UpdateEc2DeepInspectionConfigurationCommandOutput * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class UpdateEc2DeepInspectionConfigurationCommand extends $Command diff --git a/clients/client-inspector2/src/commands/UpdateEncryptionKeyCommand.ts b/clients/client-inspector2/src/commands/UpdateEncryptionKeyCommand.ts index 61ae23ef1913e..758c77f8e2b2c 100644 --- a/clients/client-inspector2/src/commands/UpdateEncryptionKeyCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateEncryptionKeyCommand.ts @@ -71,6 +71,7 @@ export interface UpdateEncryptionKeyCommandOutput extends UpdateEncryptionKeyRes * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class UpdateEncryptionKeyCommand extends $Command diff --git a/clients/client-inspector2/src/commands/UpdateFilterCommand.ts b/clients/client-inspector2/src/commands/UpdateFilterCommand.ts index 18b488318c05b..1343c4fc9c69a 100644 --- a/clients/client-inspector2/src/commands/UpdateFilterCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateFilterCommand.ts @@ -204,6 +204,7 @@ export interface UpdateFilterCommandOutput extends UpdateFilterResponse, __Metad * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class UpdateFilterCommand extends $Command diff --git a/clients/client-inspector2/src/commands/UpdateOrgEc2DeepInspectionConfigurationCommand.ts b/clients/client-inspector2/src/commands/UpdateOrgEc2DeepInspectionConfigurationCommand.ts index c0679a9497953..88561dea12123 100644 --- a/clients/client-inspector2/src/commands/UpdateOrgEc2DeepInspectionConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateOrgEc2DeepInspectionConfigurationCommand.ts @@ -77,6 +77,7 @@ export interface UpdateOrgEc2DeepInspectionConfigurationCommandOutput * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class UpdateOrgEc2DeepInspectionConfigurationCommand extends $Command diff --git a/clients/client-inspector2/src/commands/UpdateOrganizationConfigurationCommand.ts b/clients/client-inspector2/src/commands/UpdateOrganizationConfigurationCommand.ts index 2b1e6cb74ce5a..e659f3838b2b0 100644 --- a/clients/client-inspector2/src/commands/UpdateOrganizationConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateOrganizationConfigurationCommand.ts @@ -83,6 +83,7 @@ export interface UpdateOrganizationConfigurationCommandOutput * @throws {@link Inspector2ServiceException} *

Base exception class for all service exceptions from Inspector2 service.

* + * * @public */ export class UpdateOrganizationConfigurationCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/CreateMonitorCommand.ts b/clients/client-internetmonitor/src/commands/CreateMonitorCommand.ts index 9e6dc01b17cf6..4262fa4242c9c 100644 --- a/clients/client-internetmonitor/src/commands/CreateMonitorCommand.ts +++ b/clients/client-internetmonitor/src/commands/CreateMonitorCommand.ts @@ -112,6 +112,7 @@ export interface CreateMonitorCommandOutput extends CreateMonitorOutput, __Metad * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class CreateMonitorCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/DeleteMonitorCommand.ts b/clients/client-internetmonitor/src/commands/DeleteMonitorCommand.ts index c48eb6cc44383..bbfad3b944a9c 100644 --- a/clients/client-internetmonitor/src/commands/DeleteMonitorCommand.ts +++ b/clients/client-internetmonitor/src/commands/DeleteMonitorCommand.ts @@ -65,6 +65,7 @@ export interface DeleteMonitorCommandOutput extends DeleteMonitorOutput, __Metad * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class DeleteMonitorCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/GetHealthEventCommand.ts b/clients/client-internetmonitor/src/commands/GetHealthEventCommand.ts index 5b7413c7c8ac1..d5b0b14a50aca 100644 --- a/clients/client-internetmonitor/src/commands/GetHealthEventCommand.ts +++ b/clients/client-internetmonitor/src/commands/GetHealthEventCommand.ts @@ -133,6 +133,7 @@ export interface GetHealthEventCommandOutput extends GetHealthEventOutput, __Met * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class GetHealthEventCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/GetInternetEventCommand.ts b/clients/client-internetmonitor/src/commands/GetInternetEventCommand.ts index 132867abe14fa..bbabe84b31d24 100644 --- a/clients/client-internetmonitor/src/commands/GetInternetEventCommand.ts +++ b/clients/client-internetmonitor/src/commands/GetInternetEventCommand.ts @@ -87,6 +87,7 @@ export interface GetInternetEventCommandOutput extends GetInternetEventOutput, _ * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class GetInternetEventCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/GetMonitorCommand.ts b/clients/client-internetmonitor/src/commands/GetMonitorCommand.ts index 613717216aa68..9d10dea464dad 100644 --- a/clients/client-internetmonitor/src/commands/GetMonitorCommand.ts +++ b/clients/client-internetmonitor/src/commands/GetMonitorCommand.ts @@ -104,6 +104,7 @@ export interface GetMonitorCommandOutput extends GetMonitorOutput, __MetadataBea * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class GetMonitorCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/GetQueryResultsCommand.ts b/clients/client-internetmonitor/src/commands/GetQueryResultsCommand.ts index 4cc0a7dc1fa81..891af7064f7b2 100644 --- a/clients/client-internetmonitor/src/commands/GetQueryResultsCommand.ts +++ b/clients/client-internetmonitor/src/commands/GetQueryResultsCommand.ts @@ -88,6 +88,7 @@ export interface GetQueryResultsCommandOutput extends GetQueryResultsOutput, __M * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class GetQueryResultsCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/GetQueryStatusCommand.ts b/clients/client-internetmonitor/src/commands/GetQueryStatusCommand.ts index 86e4358312cd1..80888e8f03ce8 100644 --- a/clients/client-internetmonitor/src/commands/GetQueryStatusCommand.ts +++ b/clients/client-internetmonitor/src/commands/GetQueryStatusCommand.ts @@ -94,6 +94,7 @@ export interface GetQueryStatusCommandOutput extends GetQueryStatusOutput, __Met * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class GetQueryStatusCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/ListHealthEventsCommand.ts b/clients/client-internetmonitor/src/commands/ListHealthEventsCommand.ts index d4db288c8c4ab..a02712d059b40 100644 --- a/clients/client-internetmonitor/src/commands/ListHealthEventsCommand.ts +++ b/clients/client-internetmonitor/src/commands/ListHealthEventsCommand.ts @@ -142,6 +142,7 @@ export interface ListHealthEventsCommandOutput extends ListHealthEventsOutput, _ * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class ListHealthEventsCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/ListInternetEventsCommand.ts b/clients/client-internetmonitor/src/commands/ListInternetEventsCommand.ts index bf307725efd02..d531dc61e5f25 100644 --- a/clients/client-internetmonitor/src/commands/ListInternetEventsCommand.ts +++ b/clients/client-internetmonitor/src/commands/ListInternetEventsCommand.ts @@ -99,6 +99,7 @@ export interface ListInternetEventsCommandOutput extends ListInternetEventsOutpu * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class ListInternetEventsCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/ListMonitorsCommand.ts b/clients/client-internetmonitor/src/commands/ListMonitorsCommand.ts index 16e36bac9d3eb..bde99b7f7eeae 100644 --- a/clients/client-internetmonitor/src/commands/ListMonitorsCommand.ts +++ b/clients/client-internetmonitor/src/commands/ListMonitorsCommand.ts @@ -78,6 +78,7 @@ export interface ListMonitorsCommandOutput extends ListMonitorsOutput, __Metadat * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class ListMonitorsCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/ListTagsForResourceCommand.ts b/clients/client-internetmonitor/src/commands/ListTagsForResourceCommand.ts index d15c626bdd751..c51f27f1cb83d 100644 --- a/clients/client-internetmonitor/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-internetmonitor/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/StartQueryCommand.ts b/clients/client-internetmonitor/src/commands/StartQueryCommand.ts index 7365bbca4edaa..ba0cdfe0ba1b3 100644 --- a/clients/client-internetmonitor/src/commands/StartQueryCommand.ts +++ b/clients/client-internetmonitor/src/commands/StartQueryCommand.ts @@ -88,6 +88,7 @@ export interface StartQueryCommandOutput extends StartQueryOutput, __MetadataBea * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class StartQueryCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/StopQueryCommand.ts b/clients/client-internetmonitor/src/commands/StopQueryCommand.ts index 5b70856aec2ed..10087e1f82e0a 100644 --- a/clients/client-internetmonitor/src/commands/StopQueryCommand.ts +++ b/clients/client-internetmonitor/src/commands/StopQueryCommand.ts @@ -69,6 +69,7 @@ export interface StopQueryCommandOutput extends StopQueryOutput, __MetadataBeare * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class StopQueryCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/TagResourceCommand.ts b/clients/client-internetmonitor/src/commands/TagResourceCommand.ts index aa5adedf0789c..bb5816011bff5 100644 --- a/clients/client-internetmonitor/src/commands/TagResourceCommand.ts +++ b/clients/client-internetmonitor/src/commands/TagResourceCommand.ts @@ -72,6 +72,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/UntagResourceCommand.ts b/clients/client-internetmonitor/src/commands/UntagResourceCommand.ts index 7e5ce91c2c1ba..38c956dbe2fea 100644 --- a/clients/client-internetmonitor/src/commands/UntagResourceCommand.ts +++ b/clients/client-internetmonitor/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-internetmonitor/src/commands/UpdateMonitorCommand.ts b/clients/client-internetmonitor/src/commands/UpdateMonitorCommand.ts index ea91a3f8fdf1a..35c9832f1ddc5 100644 --- a/clients/client-internetmonitor/src/commands/UpdateMonitorCommand.ts +++ b/clients/client-internetmonitor/src/commands/UpdateMonitorCommand.ts @@ -108,6 +108,7 @@ export interface UpdateMonitorCommandOutput extends UpdateMonitorOutput, __Metad * @throws {@link InternetMonitorServiceException} *

Base exception class for all service exceptions from InternetMonitor service.

* + * * @public */ export class UpdateMonitorCommand extends $Command diff --git a/clients/client-invoicing/src/commands/BatchGetInvoiceProfileCommand.ts b/clients/client-invoicing/src/commands/BatchGetInvoiceProfileCommand.ts index bae375b2a980e..4bc694179fe50 100644 --- a/clients/client-invoicing/src/commands/BatchGetInvoiceProfileCommand.ts +++ b/clients/client-invoicing/src/commands/BatchGetInvoiceProfileCommand.ts @@ -99,39 +99,39 @@ export interface BatchGetInvoiceProfileCommandOutput extends BatchGetInvoiceProf * @throws {@link InvoicingServiceException} *

Base exception class for all service exceptions from Invoicing service.

* - * @public + * * @example BatchGetInvoiceProfile * ```javascript * // * const input = { - * "AccountIds": [ + * AccountIds: [ * "111111111111" * ] * }; * const command = new BatchGetInvoiceProfileCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Profiles": [ + * Profiles: [ * { - * "AccountId": "111111111111", - * "Issuer": "Test", - * "ReceiverAddress": { - * "AddressLine1": "Test", - * "City": "Test", - * "CountryCode": "LU", - * "PostalCode": "Test", - * "StateOrRegion": "Test" + * AccountId: "111111111111", + * Issuer: "Test", + * ReceiverAddress: { + * AddressLine1: "Test", + * City: "Test", + * CountryCode: "LU", + * PostalCode: "Test", + * StateOrRegion: "Test" * }, - * "ReceiverEmail": "test@amazon.com", - * "ReceiverName": "TestAccount" + * ReceiverEmail: "test@amazon.com", + * ReceiverName: "TestAccount" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class BatchGetInvoiceProfileCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/CreateInvoiceUnitCommand.ts b/clients/client-invoicing/src/commands/CreateInvoiceUnitCommand.ts index 690204d9f59c1..a8f9c6073c0aa 100644 --- a/clients/client-invoicing/src/commands/CreateInvoiceUnitCommand.ts +++ b/clients/client-invoicing/src/commands/CreateInvoiceUnitCommand.ts @@ -84,37 +84,37 @@ export interface CreateInvoiceUnitCommandOutput extends CreateInvoiceUnitRespons * @throws {@link InvoicingServiceException} *

Base exception class for all service exceptions from Invoicing service.

* - * @public + * * @example CreateInvoiceUnit * ```javascript * // * const input = { - * "Description": "Example Invoice Unit Description", - * "InvoiceReceiver": "111111111111", - * "Name": "Example Invoice Unit", - * "ResourceTags": [ + * Description: "Example Invoice Unit Description", + * InvoiceReceiver: "111111111111", + * Name: "Example Invoice Unit", + * ResourceTags: [ * { - * "Key": "TagKey", - * "Value": "TagValue" + * Key: "TagKey", + * Value: "TagValue" * } * ], - * "Rule": { - * "LinkedAccounts": [ + * Rule: { + * LinkedAccounts: [ * "222222222222" * ] * }, - * "TaxInheritanceDisabled": false + * TaxInheritanceDisabled: false * }; * const command = new CreateInvoiceUnitCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateInvoiceUnitCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/DeleteInvoiceUnitCommand.ts b/clients/client-invoicing/src/commands/DeleteInvoiceUnitCommand.ts index 080a4ca7848cd..b67f3a5e9930b 100644 --- a/clients/client-invoicing/src/commands/DeleteInvoiceUnitCommand.ts +++ b/clients/client-invoicing/src/commands/DeleteInvoiceUnitCommand.ts @@ -75,23 +75,23 @@ export interface DeleteInvoiceUnitCommandOutput extends DeleteInvoiceUnitRespons * @throws {@link InvoicingServiceException} *

Base exception class for all service exceptions from Invoicing service.

* - * @public + * * @example DeleteInvoiceUnit * ```javascript * // * const input = { - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678" * }; * const command = new DeleteInvoiceUnitCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class DeleteInvoiceUnitCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/GetInvoiceUnitCommand.ts b/clients/client-invoicing/src/commands/GetInvoiceUnitCommand.ts index 2db2a41ddba82..f834ccc3456bf 100644 --- a/clients/client-invoicing/src/commands/GetInvoiceUnitCommand.ts +++ b/clients/client-invoicing/src/commands/GetInvoiceUnitCommand.ts @@ -85,60 +85,59 @@ export interface GetInvoiceUnitCommandOutput extends GetInvoiceUnitResponse, __M * @throws {@link InvoicingServiceException} *

Base exception class for all service exceptions from Invoicing service.

* - * @public + * * @example GetInvoiceUnit as of current time * ```javascript * // * const input = { - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678" * }; * const command = new GetInvoiceUnitCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Description": "Description changed on 1733788800", - * "InvoiceReceiver": "111111111111", - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678", - * "LastModified": 1733788800, - * "Name": "Example Invoice Unit A", - * "Rule": { - * "LinkedAccounts": [ + * Description: "Description changed on 1733788800", + * InvoiceReceiver: "111111111111", + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678", + * LastModified: 1733788800, + * Name: "Example Invoice Unit A", + * Rule: { + * LinkedAccounts: [ * "222222222222" * ] * }, - * "TaxInheritanceDisabled": false + * TaxInheritanceDisabled: false * } * *\/ - * // example id: example-1 * ``` * * @example GetInvoiceUnit as of specified time * ```javascript * // * const input = { - * "AsOf": 1733097600, - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321" + * AsOf: 1733097600, + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/87654321" * }; * const command = new GetInvoiceUnitCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Description": "Description changed on 1733011200", - * "InvoiceReceiver": "333333333333", - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321", - * "LastModified": 1733011200, - * "Name": "Example Invoice Unit B", - * "Rule": { - * "LinkedAccounts": [ + * Description: "Description changed on 1733011200", + * InvoiceReceiver: "333333333333", + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/87654321", + * LastModified: 1733011200, + * Name: "Example Invoice Unit B", + * Rule: { + * LinkedAccounts: [ * "333333333333" * ] * }, - * "TaxInheritanceDisabled": false + * TaxInheritanceDisabled: false * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class GetInvoiceUnitCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/ListInvoiceUnitsCommand.ts b/clients/client-invoicing/src/commands/ListInvoiceUnitsCommand.ts index 213bb5704424e..9ccd195055437 100644 --- a/clients/client-invoicing/src/commands/ListInvoiceUnitsCommand.ts +++ b/clients/client-invoicing/src/commands/ListInvoiceUnitsCommand.ts @@ -98,145 +98,142 @@ export interface ListInvoiceUnitsCommandOutput extends ListInvoiceUnitsResponse, * @throws {@link InvoicingServiceException} *

Base exception class for all service exceptions from Invoicing service.

* - * @public + * * @example ListInvoiceUnits without filters as of current time * ```javascript * // - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListInvoiceUnitsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InvoiceUnits": [ + * InvoiceUnits: [ * { - * "Description": "Description changed on 1733788800", - * "InvoiceReceiver": "111111111111", - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678", - * "LastModified": 1733788800, - * "Name": "Example Invoice Unit A", - * "Rule": { - * "LinkedAccounts": [ + * Description: "Description changed on 1733788800", + * InvoiceReceiver: "111111111111", + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678", + * LastModified: 1733788800, + * Name: "Example Invoice Unit A", + * Rule: { + * LinkedAccounts: [ * "222222222222" * ] * }, - * "TaxInheritanceDisabled": false + * TaxInheritanceDisabled: false * }, * { - * "Description": "Description changed on 1733788800", - * "InvoiceReceiver": "333333333333", - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321", - * "LastModified": 1733788800, - * "Name": "Example Invoice Unit B", - * "Rule": { - * "LinkedAccounts": [ + * Description: "Description changed on 1733788800", + * InvoiceReceiver: "333333333333", + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/87654321", + * LastModified: 1733788800, + * Name: "Example Invoice Unit B", + * Rule: { + * LinkedAccounts: [ * "333333333333" * ] * }, - * "TaxInheritanceDisabled": true + * TaxInheritanceDisabled: true * } * ] * } * *\/ - * // example id: example-1 * ``` * * @example ListInvoiceUnits with filters as of specified time * ```javascript * // * const input = { - * "AsOf": 1733097600, - * "Filters": { - * "InvoiceReceivers": [ + * AsOf: 1733097600, + * Filters: { + * InvoiceReceivers: [ * "333333333333" * ] * } * }; * const command = new ListInvoiceUnitsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InvoiceUnits": [ + * InvoiceUnits: [ * { - * "Description": "Description changed on 1733011200", - * "InvoiceReceiver": "333333333333", - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321", - * "LastModified": 1733011200, - * "Name": "Example Invoice Unit B", - * "Rule": { - * "LinkedAccounts": [ + * Description: "Description changed on 1733011200", + * InvoiceReceiver: "333333333333", + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/87654321", + * LastModified: 1733011200, + * Name: "Example Invoice Unit B", + * Rule: { + * LinkedAccounts: [ * "333333333333" * ] * }, - * "TaxInheritanceDisabled": false + * TaxInheritanceDisabled: false * } * ] * } * *\/ - * // example id: example-2 * ``` * * @example ListInvoiceUnits with pagination - first page * ```javascript * // * const input = { - * "MaxResults": 1 + * MaxResults: 1 * }; * const command = new ListInvoiceUnitsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InvoiceUnits": [ + * InvoiceUnits: [ * { - * "Description": "Description changed on 1733788800", - * "InvoiceReceiver": "111111111111", - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678", - * "LastModified": 1733788800, - * "Name": "Example Invoice Unit A", - * "Rule": { - * "LinkedAccounts": [ + * Description: "Description changed on 1733788800", + * InvoiceReceiver: "111111111111", + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678", + * LastModified: 1733788800, + * Name: "Example Invoice Unit A", + * Rule: { + * LinkedAccounts: [ * "222222222222" * ] * }, - * "TaxInheritanceDisabled": false + * TaxInheritanceDisabled: false * } * ], - * "NextToken": "nextTokenExample" + * NextToken: "nextTokenExample" * } * *\/ - * // example id: example-3 * ``` * * @example ListInvoiceUnits with pagination - second page * ```javascript * // * const input = { - * "MaxResults": 1, - * "NextToken": "nextTokenExample" + * MaxResults: 1, + * NextToken: "nextTokenExample" * }; * const command = new ListInvoiceUnitsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InvoiceUnits": [ + * InvoiceUnits: [ * { - * "Description": "Description changed on 1733788800", - * "InvoiceReceiver": "333333333333", - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321", - * "LastModified": 1733788800, - * "Name": "Example Invoice Unit B", - * "Rule": { - * "LinkedAccounts": [ + * Description: "Description changed on 1733788800", + * InvoiceReceiver: "333333333333", + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/87654321", + * LastModified: 1733788800, + * Name: "Example Invoice Unit B", + * Rule: { + * LinkedAccounts: [ * "333333333333" * ] * }, - * "TaxInheritanceDisabled": true + * TaxInheritanceDisabled: true * } * ] * } * *\/ - * // example id: example-4 * ``` * + * @public */ export class ListInvoiceUnitsCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/ListTagsForResourceCommand.ts b/clients/client-invoicing/src/commands/ListTagsForResourceCommand.ts index 0d4efd1f50d9f..6efb4ddbfa34e 100644 --- a/clients/client-invoicing/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-invoicing/src/commands/ListTagsForResourceCommand.ts @@ -80,28 +80,28 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link InvoicingServiceException} *

Base exception class for all service exceptions from Invoicing service.

* - * @public + * * @example ListTagsForResource * ```javascript * // * const input = { - * "ResourceArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * ResourceArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ResourceTags": [ + * ResourceTags: [ * { - * "Key": "TagKey", - * "Value": "TagValue" + * Key: "TagKey", + * Value: "TagValue" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/TagResourceCommand.ts b/clients/client-invoicing/src/commands/TagResourceCommand.ts index 917bb59bb11dd..992cd3aa8cf73 100644 --- a/clients/client-invoicing/src/commands/TagResourceCommand.ts +++ b/clients/client-invoicing/src/commands/TagResourceCommand.ts @@ -83,24 +83,27 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link InvoicingServiceException} *

Base exception class for all service exceptions from Invoicing service.

* - * @public + * * @example TagResource * ```javascript * // * const input = { - * "ResourceArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678", - * "ResourceTags": [ + * ResourceArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678", + * ResourceTags: [ * { - * "Key": "TagKey", - * "Value": "TagValue" + * Key: "TagKey", + * Value: "TagValue" * } * ] * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/UntagResourceCommand.ts b/clients/client-invoicing/src/commands/UntagResourceCommand.ts index 7b3cb44f6af63..be86ba5aacf8e 100644 --- a/clients/client-invoicing/src/commands/UntagResourceCommand.ts +++ b/clients/client-invoicing/src/commands/UntagResourceCommand.ts @@ -77,21 +77,24 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link InvoicingServiceException} *

Base exception class for all service exceptions from Invoicing service.

* - * @public + * * @example UntagResource * ```javascript * // * const input = { - * "ResourceArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678", - * "ResourceTagKeys": [ + * ResourceArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678", + * ResourceTagKeys: [ * "TagKey" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/UpdateInvoiceUnitCommand.ts b/clients/client-invoicing/src/commands/UpdateInvoiceUnitCommand.ts index cd24874420dcc..16524d6f3cafe 100644 --- a/clients/client-invoicing/src/commands/UpdateInvoiceUnitCommand.ts +++ b/clients/client-invoicing/src/commands/UpdateInvoiceUnitCommand.ts @@ -81,48 +81,47 @@ export interface UpdateInvoiceUnitCommandOutput extends UpdateInvoiceUnitRespons * @throws {@link InvoicingServiceException} *

Base exception class for all service exceptions from Invoicing service.

* - * @public + * * @example UpdateInvoiceUnit with all updatable fields * ```javascript * // * const input = { - * "Description": "Updated IU description", - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678", - * "Rule": { - * "LinkedAccounts": [ + * Description: "Updated IU description", + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678", + * Rule: { + * LinkedAccounts: [ * "111111111111", * "222222222222" * ] * }, - * "TaxInheritanceDisabled": false + * TaxInheritanceDisabled: false * }; * const command = new UpdateInvoiceUnitCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678" * } * *\/ - * // example id: example-1 * ``` * * @example UpdateInvoiceUnit with specific fields * ```javascript * // * const input = { - * "Description": "Updated IU description. All other fields remain unchanged", - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * Description: "Updated IU description. All other fields remain unchanged", + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678" * }; * const command = new UpdateInvoiceUnitCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678" * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class UpdateInvoiceUnitCommand extends $Command .classBuilder< diff --git a/clients/client-iot-data-plane/src/commands/DeleteThingShadowCommand.ts b/clients/client-iot-data-plane/src/commands/DeleteThingShadowCommand.ts index 98fa5508e23c6..349566aad1b21 100644 --- a/clients/client-iot-data-plane/src/commands/DeleteThingShadowCommand.ts +++ b/clients/client-iot-data-plane/src/commands/DeleteThingShadowCommand.ts @@ -90,6 +90,7 @@ export interface DeleteThingShadowCommandOutput extends DeleteThingShadowCommand * @throws {@link IoTDataPlaneServiceException} *

Base exception class for all service exceptions from IoTDataPlane service.

* + * * @public */ export class DeleteThingShadowCommand extends $Command diff --git a/clients/client-iot-data-plane/src/commands/GetRetainedMessageCommand.ts b/clients/client-iot-data-plane/src/commands/GetRetainedMessageCommand.ts index 54fa3ac576563..9983a3e480741 100644 --- a/clients/client-iot-data-plane/src/commands/GetRetainedMessageCommand.ts +++ b/clients/client-iot-data-plane/src/commands/GetRetainedMessageCommand.ts @@ -86,6 +86,7 @@ export interface GetRetainedMessageCommandOutput extends GetRetainedMessageRespo * @throws {@link IoTDataPlaneServiceException} *

Base exception class for all service exceptions from IoTDataPlane service.

* + * * @public */ export class GetRetainedMessageCommand extends $Command diff --git a/clients/client-iot-data-plane/src/commands/GetThingShadowCommand.ts b/clients/client-iot-data-plane/src/commands/GetThingShadowCommand.ts index 46c40482f6a2f..cf5228cca6b84 100644 --- a/clients/client-iot-data-plane/src/commands/GetThingShadowCommand.ts +++ b/clients/client-iot-data-plane/src/commands/GetThingShadowCommand.ts @@ -91,6 +91,7 @@ export interface GetThingShadowCommandOutput extends GetThingShadowCommandOutput * @throws {@link IoTDataPlaneServiceException} *

Base exception class for all service exceptions from IoTDataPlane service.

* + * * @public */ export class GetThingShadowCommand extends $Command diff --git a/clients/client-iot-data-plane/src/commands/ListNamedShadowsForThingCommand.ts b/clients/client-iot-data-plane/src/commands/ListNamedShadowsForThingCommand.ts index d97d7c75aca58..7dbd62cbb4a40 100644 --- a/clients/client-iot-data-plane/src/commands/ListNamedShadowsForThingCommand.ts +++ b/clients/client-iot-data-plane/src/commands/ListNamedShadowsForThingCommand.ts @@ -83,6 +83,7 @@ export interface ListNamedShadowsForThingCommandOutput extends ListNamedShadowsF * @throws {@link IoTDataPlaneServiceException} *

Base exception class for all service exceptions from IoTDataPlane service.

* + * * @public */ export class ListNamedShadowsForThingCommand extends $Command diff --git a/clients/client-iot-data-plane/src/commands/ListRetainedMessagesCommand.ts b/clients/client-iot-data-plane/src/commands/ListRetainedMessagesCommand.ts index bfbaa22d915e0..25e43f369b85b 100644 --- a/clients/client-iot-data-plane/src/commands/ListRetainedMessagesCommand.ts +++ b/clients/client-iot-data-plane/src/commands/ListRetainedMessagesCommand.ts @@ -91,6 +91,7 @@ export interface ListRetainedMessagesCommandOutput extends ListRetainedMessagesR * @throws {@link IoTDataPlaneServiceException} *

Base exception class for all service exceptions from IoTDataPlane service.

* + * * @public */ export class ListRetainedMessagesCommand extends $Command diff --git a/clients/client-iot-data-plane/src/commands/PublishCommand.ts b/clients/client-iot-data-plane/src/commands/PublishCommand.ts index 47f800dc1c16a..aeb9f0e73eea4 100644 --- a/clients/client-iot-data-plane/src/commands/PublishCommand.ts +++ b/clients/client-iot-data-plane/src/commands/PublishCommand.ts @@ -90,6 +90,7 @@ export interface PublishCommandOutput extends __MetadataBearer {} * @throws {@link IoTDataPlaneServiceException} *

Base exception class for all service exceptions from IoTDataPlane service.

* + * * @public */ export class PublishCommand extends $Command diff --git a/clients/client-iot-data-plane/src/commands/UpdateThingShadowCommand.ts b/clients/client-iot-data-plane/src/commands/UpdateThingShadowCommand.ts index 390a1cea37e21..637ab4e319a2e 100644 --- a/clients/client-iot-data-plane/src/commands/UpdateThingShadowCommand.ts +++ b/clients/client-iot-data-plane/src/commands/UpdateThingShadowCommand.ts @@ -102,6 +102,7 @@ export interface UpdateThingShadowCommandOutput extends UpdateThingShadowCommand * @throws {@link IoTDataPlaneServiceException} *

Base exception class for all service exceptions from IoTDataPlane service.

* + * * @public */ export class UpdateThingShadowCommand extends $Command diff --git a/clients/client-iot-events-data/src/commands/BatchAcknowledgeAlarmCommand.ts b/clients/client-iot-events-data/src/commands/BatchAcknowledgeAlarmCommand.ts index a912e0ed62602..cde79da1a0d5a 100644 --- a/clients/client-iot-events-data/src/commands/BatchAcknowledgeAlarmCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchAcknowledgeAlarmCommand.ts @@ -81,6 +81,7 @@ export interface BatchAcknowledgeAlarmCommandOutput extends BatchAcknowledgeAlar * @throws {@link IoTEventsDataServiceException} *

Base exception class for all service exceptions from IoTEventsData service.

* + * * @public */ export class BatchAcknowledgeAlarmCommand extends $Command diff --git a/clients/client-iot-events-data/src/commands/BatchDeleteDetectorCommand.ts b/clients/client-iot-events-data/src/commands/BatchDeleteDetectorCommand.ts index 274681388dc4a..e7595d817b7c8 100644 --- a/clients/client-iot-events-data/src/commands/BatchDeleteDetectorCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchDeleteDetectorCommand.ts @@ -79,6 +79,7 @@ export interface BatchDeleteDetectorCommandOutput extends BatchDeleteDetectorRes * @throws {@link IoTEventsDataServiceException} *

Base exception class for all service exceptions from IoTEventsData service.

* + * * @public */ export class BatchDeleteDetectorCommand extends $Command diff --git a/clients/client-iot-events-data/src/commands/BatchDisableAlarmCommand.ts b/clients/client-iot-events-data/src/commands/BatchDisableAlarmCommand.ts index 53c093291a278..7cf958978ce6c 100644 --- a/clients/client-iot-events-data/src/commands/BatchDisableAlarmCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchDisableAlarmCommand.ts @@ -81,6 +81,7 @@ export interface BatchDisableAlarmCommandOutput extends BatchDisableAlarmRespons * @throws {@link IoTEventsDataServiceException} *

Base exception class for all service exceptions from IoTEventsData service.

* + * * @public */ export class BatchDisableAlarmCommand extends $Command diff --git a/clients/client-iot-events-data/src/commands/BatchEnableAlarmCommand.ts b/clients/client-iot-events-data/src/commands/BatchEnableAlarmCommand.ts index 9ddb5b9465cc1..0a3e2ca5e5c6e 100644 --- a/clients/client-iot-events-data/src/commands/BatchEnableAlarmCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchEnableAlarmCommand.ts @@ -81,6 +81,7 @@ export interface BatchEnableAlarmCommandOutput extends BatchEnableAlarmResponse, * @throws {@link IoTEventsDataServiceException} *

Base exception class for all service exceptions from IoTEventsData service.

* + * * @public */ export class BatchEnableAlarmCommand extends $Command diff --git a/clients/client-iot-events-data/src/commands/BatchPutMessageCommand.ts b/clients/client-iot-events-data/src/commands/BatchPutMessageCommand.ts index aae00b1696cda..29023486873e3 100644 --- a/clients/client-iot-events-data/src/commands/BatchPutMessageCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchPutMessageCommand.ts @@ -86,6 +86,7 @@ export interface BatchPutMessageCommandOutput extends BatchPutMessageResponse, _ * @throws {@link IoTEventsDataServiceException} *

Base exception class for all service exceptions from IoTEventsData service.

* + * * @public */ export class BatchPutMessageCommand extends $Command diff --git a/clients/client-iot-events-data/src/commands/BatchResetAlarmCommand.ts b/clients/client-iot-events-data/src/commands/BatchResetAlarmCommand.ts index 58324098e747c..320fb6cbd4380 100644 --- a/clients/client-iot-events-data/src/commands/BatchResetAlarmCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchResetAlarmCommand.ts @@ -81,6 +81,7 @@ export interface BatchResetAlarmCommandOutput extends BatchResetAlarmResponse, _ * @throws {@link IoTEventsDataServiceException} *

Base exception class for all service exceptions from IoTEventsData service.

* + * * @public */ export class BatchResetAlarmCommand extends $Command diff --git a/clients/client-iot-events-data/src/commands/BatchSnoozeAlarmCommand.ts b/clients/client-iot-events-data/src/commands/BatchSnoozeAlarmCommand.ts index fd8fc08bc27bc..80fff15ee9cd1 100644 --- a/clients/client-iot-events-data/src/commands/BatchSnoozeAlarmCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchSnoozeAlarmCommand.ts @@ -82,6 +82,7 @@ export interface BatchSnoozeAlarmCommandOutput extends BatchSnoozeAlarmResponse, * @throws {@link IoTEventsDataServiceException} *

Base exception class for all service exceptions from IoTEventsData service.

* + * * @public */ export class BatchSnoozeAlarmCommand extends $Command diff --git a/clients/client-iot-events-data/src/commands/BatchUpdateDetectorCommand.ts b/clients/client-iot-events-data/src/commands/BatchUpdateDetectorCommand.ts index 4d9554dc8e018..e7aa90bcba3eb 100644 --- a/clients/client-iot-events-data/src/commands/BatchUpdateDetectorCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchUpdateDetectorCommand.ts @@ -95,6 +95,7 @@ export interface BatchUpdateDetectorCommandOutput extends BatchUpdateDetectorRes * @throws {@link IoTEventsDataServiceException} *

Base exception class for all service exceptions from IoTEventsData service.

* + * * @public */ export class BatchUpdateDetectorCommand extends $Command diff --git a/clients/client-iot-events-data/src/commands/DescribeAlarmCommand.ts b/clients/client-iot-events-data/src/commands/DescribeAlarmCommand.ts index fcf01268b52ff..13abf4a9e293f 100644 --- a/clients/client-iot-events-data/src/commands/DescribeAlarmCommand.ts +++ b/clients/client-iot-events-data/src/commands/DescribeAlarmCommand.ts @@ -113,6 +113,7 @@ export interface DescribeAlarmCommandOutput extends DescribeAlarmResponse, __Met * @throws {@link IoTEventsDataServiceException} *

Base exception class for all service exceptions from IoTEventsData service.

* + * * @public */ export class DescribeAlarmCommand extends $Command diff --git a/clients/client-iot-events-data/src/commands/DescribeDetectorCommand.ts b/clients/client-iot-events-data/src/commands/DescribeDetectorCommand.ts index b896a75a61405..94924d7870f70 100644 --- a/clients/client-iot-events-data/src/commands/DescribeDetectorCommand.ts +++ b/clients/client-iot-events-data/src/commands/DescribeDetectorCommand.ts @@ -92,6 +92,7 @@ export interface DescribeDetectorCommandOutput extends DescribeDetectorResponse, * @throws {@link IoTEventsDataServiceException} *

Base exception class for all service exceptions from IoTEventsData service.

* + * * @public */ export class DescribeDetectorCommand extends $Command diff --git a/clients/client-iot-events-data/src/commands/ListAlarmsCommand.ts b/clients/client-iot-events-data/src/commands/ListAlarmsCommand.ts index 4b081e12b9480..c7b1400bce7d9 100644 --- a/clients/client-iot-events-data/src/commands/ListAlarmsCommand.ts +++ b/clients/client-iot-events-data/src/commands/ListAlarmsCommand.ts @@ -83,6 +83,7 @@ export interface ListAlarmsCommandOutput extends ListAlarmsResponse, __MetadataB * @throws {@link IoTEventsDataServiceException} *

Base exception class for all service exceptions from IoTEventsData service.

* + * * @public */ export class ListAlarmsCommand extends $Command diff --git a/clients/client-iot-events-data/src/commands/ListDetectorsCommand.ts b/clients/client-iot-events-data/src/commands/ListDetectorsCommand.ts index a22685d7da4b1..3942cae7e4fef 100644 --- a/clients/client-iot-events-data/src/commands/ListDetectorsCommand.ts +++ b/clients/client-iot-events-data/src/commands/ListDetectorsCommand.ts @@ -85,6 +85,7 @@ export interface ListDetectorsCommandOutput extends ListDetectorsResponse, __Met * @throws {@link IoTEventsDataServiceException} *

Base exception class for all service exceptions from IoTEventsData service.

* + * * @public */ export class ListDetectorsCommand extends $Command diff --git a/clients/client-iot-events/src/commands/CreateAlarmModelCommand.ts b/clients/client-iot-events/src/commands/CreateAlarmModelCommand.ts index 88596cba7fd2d..ed1aaec1c79b0 100644 --- a/clients/client-iot-events/src/commands/CreateAlarmModelCommand.ts +++ b/clients/client-iot-events/src/commands/CreateAlarmModelCommand.ts @@ -234,6 +234,7 @@ export interface CreateAlarmModelCommandOutput extends CreateAlarmModelResponse, * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class CreateAlarmModelCommand extends $Command diff --git a/clients/client-iot-events/src/commands/CreateDetectorModelCommand.ts b/clients/client-iot-events/src/commands/CreateDetectorModelCommand.ts index 73a3b16a88a58..57f138998ee3e 100644 --- a/clients/client-iot-events/src/commands/CreateDetectorModelCommand.ts +++ b/clients/client-iot-events/src/commands/CreateDetectorModelCommand.ts @@ -471,6 +471,7 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class CreateDetectorModelCommand extends $Command diff --git a/clients/client-iot-events/src/commands/CreateInputCommand.ts b/clients/client-iot-events/src/commands/CreateInputCommand.ts index 5521e4698ada6..fef208c35753f 100644 --- a/clients/client-iot-events/src/commands/CreateInputCommand.ts +++ b/clients/client-iot-events/src/commands/CreateInputCommand.ts @@ -91,6 +91,7 @@ export interface CreateInputCommandOutput extends CreateInputResponse, __Metadat * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class CreateInputCommand extends $Command diff --git a/clients/client-iot-events/src/commands/DeleteAlarmModelCommand.ts b/clients/client-iot-events/src/commands/DeleteAlarmModelCommand.ts index 00084cae4e72b..0b2927a5c8c42 100644 --- a/clients/client-iot-events/src/commands/DeleteAlarmModelCommand.ts +++ b/clients/client-iot-events/src/commands/DeleteAlarmModelCommand.ts @@ -72,6 +72,7 @@ export interface DeleteAlarmModelCommandOutput extends DeleteAlarmModelResponse, * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class DeleteAlarmModelCommand extends $Command diff --git a/clients/client-iot-events/src/commands/DeleteDetectorModelCommand.ts b/clients/client-iot-events/src/commands/DeleteDetectorModelCommand.ts index 73e4546b7c8d4..7b7943a05ff94 100644 --- a/clients/client-iot-events/src/commands/DeleteDetectorModelCommand.ts +++ b/clients/client-iot-events/src/commands/DeleteDetectorModelCommand.ts @@ -72,6 +72,7 @@ export interface DeleteDetectorModelCommandOutput extends DeleteDetectorModelRes * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class DeleteDetectorModelCommand extends $Command diff --git a/clients/client-iot-events/src/commands/DeleteInputCommand.ts b/clients/client-iot-events/src/commands/DeleteInputCommand.ts index 3a2e9eb25c857..65072c9de7e79 100644 --- a/clients/client-iot-events/src/commands/DeleteInputCommand.ts +++ b/clients/client-iot-events/src/commands/DeleteInputCommand.ts @@ -71,6 +71,7 @@ export interface DeleteInputCommandOutput extends DeleteInputResponse, __Metadat * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class DeleteInputCommand extends $Command diff --git a/clients/client-iot-events/src/commands/DescribeAlarmModelCommand.ts b/clients/client-iot-events/src/commands/DescribeAlarmModelCommand.ts index e789f0a92629e..d9530b9904401 100644 --- a/clients/client-iot-events/src/commands/DescribeAlarmModelCommand.ts +++ b/clients/client-iot-events/src/commands/DescribeAlarmModelCommand.ts @@ -224,6 +224,7 @@ export interface DescribeAlarmModelCommandOutput extends DescribeAlarmModelRespo * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class DescribeAlarmModelCommand extends $Command diff --git a/clients/client-iot-events/src/commands/DescribeDetectorModelAnalysisCommand.ts b/clients/client-iot-events/src/commands/DescribeDetectorModelAnalysisCommand.ts index c0b7134ed7347..e91666caf140a 100644 --- a/clients/client-iot-events/src/commands/DescribeDetectorModelAnalysisCommand.ts +++ b/clients/client-iot-events/src/commands/DescribeDetectorModelAnalysisCommand.ts @@ -78,6 +78,7 @@ export interface DescribeDetectorModelAnalysisCommandOutput * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class DescribeDetectorModelAnalysisCommand extends $Command diff --git a/clients/client-iot-events/src/commands/DescribeDetectorModelCommand.ts b/clients/client-iot-events/src/commands/DescribeDetectorModelCommand.ts index 3f4eff6184caf..f98c85997c04c 100644 --- a/clients/client-iot-events/src/commands/DescribeDetectorModelCommand.ts +++ b/clients/client-iot-events/src/commands/DescribeDetectorModelCommand.ts @@ -459,6 +459,7 @@ export interface DescribeDetectorModelCommandOutput extends DescribeDetectorMode * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class DescribeDetectorModelCommand extends $Command diff --git a/clients/client-iot-events/src/commands/DescribeInputCommand.ts b/clients/client-iot-events/src/commands/DescribeInputCommand.ts index 142f64a4dec18..3f6c82e754aba 100644 --- a/clients/client-iot-events/src/commands/DescribeInputCommand.ts +++ b/clients/client-iot-events/src/commands/DescribeInputCommand.ts @@ -86,6 +86,7 @@ export interface DescribeInputCommandOutput extends DescribeInputResponse, __Met * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class DescribeInputCommand extends $Command diff --git a/clients/client-iot-events/src/commands/DescribeLoggingOptionsCommand.ts b/clients/client-iot-events/src/commands/DescribeLoggingOptionsCommand.ts index 2784e70b7fe5e..4227e68b3ebd9 100644 --- a/clients/client-iot-events/src/commands/DescribeLoggingOptionsCommand.ts +++ b/clients/client-iot-events/src/commands/DescribeLoggingOptionsCommand.ts @@ -81,6 +81,7 @@ export interface DescribeLoggingOptionsCommandOutput extends DescribeLoggingOpti * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class DescribeLoggingOptionsCommand extends $Command diff --git a/clients/client-iot-events/src/commands/GetDetectorModelAnalysisResultsCommand.ts b/clients/client-iot-events/src/commands/GetDetectorModelAnalysisResultsCommand.ts index 28155cdee5be3..68a81d8937ae0 100644 --- a/clients/client-iot-events/src/commands/GetDetectorModelAnalysisResultsCommand.ts +++ b/clients/client-iot-events/src/commands/GetDetectorModelAnalysisResultsCommand.ts @@ -92,6 +92,7 @@ export interface GetDetectorModelAnalysisResultsCommandOutput * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class GetDetectorModelAnalysisResultsCommand extends $Command diff --git a/clients/client-iot-events/src/commands/ListAlarmModelVersionsCommand.ts b/clients/client-iot-events/src/commands/ListAlarmModelVersionsCommand.ts index d006ed669606c..028bb8a546c76 100644 --- a/clients/client-iot-events/src/commands/ListAlarmModelVersionsCommand.ts +++ b/clients/client-iot-events/src/commands/ListAlarmModelVersionsCommand.ts @@ -85,6 +85,7 @@ export interface ListAlarmModelVersionsCommandOutput extends ListAlarmModelVersi * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class ListAlarmModelVersionsCommand extends $Command diff --git a/clients/client-iot-events/src/commands/ListAlarmModelsCommand.ts b/clients/client-iot-events/src/commands/ListAlarmModelsCommand.ts index 0d52f05b6283b..ca8a11c3868fd 100644 --- a/clients/client-iot-events/src/commands/ListAlarmModelsCommand.ts +++ b/clients/client-iot-events/src/commands/ListAlarmModelsCommand.ts @@ -76,6 +76,7 @@ export interface ListAlarmModelsCommandOutput extends ListAlarmModelsResponse, _ * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class ListAlarmModelsCommand extends $Command diff --git a/clients/client-iot-events/src/commands/ListDetectorModelVersionsCommand.ts b/clients/client-iot-events/src/commands/ListDetectorModelVersionsCommand.ts index 7e062a9293cc2..f2f8ba2fc5c97 100644 --- a/clients/client-iot-events/src/commands/ListDetectorModelVersionsCommand.ts +++ b/clients/client-iot-events/src/commands/ListDetectorModelVersionsCommand.ts @@ -85,6 +85,7 @@ export interface ListDetectorModelVersionsCommandOutput extends ListDetectorMode * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class ListDetectorModelVersionsCommand extends $Command diff --git a/clients/client-iot-events/src/commands/ListDetectorModelsCommand.ts b/clients/client-iot-events/src/commands/ListDetectorModelsCommand.ts index 3af4f0e4b728e..3351f306abe2c 100644 --- a/clients/client-iot-events/src/commands/ListDetectorModelsCommand.ts +++ b/clients/client-iot-events/src/commands/ListDetectorModelsCommand.ts @@ -76,6 +76,7 @@ export interface ListDetectorModelsCommandOutput extends ListDetectorModelsRespo * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class ListDetectorModelsCommand extends $Command diff --git a/clients/client-iot-events/src/commands/ListInputRoutingsCommand.ts b/clients/client-iot-events/src/commands/ListInputRoutingsCommand.ts index fbeccb45236ef..d6fec99fb1bfc 100644 --- a/clients/client-iot-events/src/commands/ListInputRoutingsCommand.ts +++ b/clients/client-iot-events/src/commands/ListInputRoutingsCommand.ts @@ -90,6 +90,7 @@ export interface ListInputRoutingsCommandOutput extends ListInputRoutingsRespons * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class ListInputRoutingsCommand extends $Command diff --git a/clients/client-iot-events/src/commands/ListInputsCommand.ts b/clients/client-iot-events/src/commands/ListInputsCommand.ts index 8a21695280800..903b68fbc4377 100644 --- a/clients/client-iot-events/src/commands/ListInputsCommand.ts +++ b/clients/client-iot-events/src/commands/ListInputsCommand.ts @@ -78,6 +78,7 @@ export interface ListInputsCommandOutput extends ListInputsResponse, __MetadataB * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class ListInputsCommand extends $Command diff --git a/clients/client-iot-events/src/commands/ListTagsForResourceCommand.ts b/clients/client-iot-events/src/commands/ListTagsForResourceCommand.ts index 72d5d434af200..a3cefef3888e2 100644 --- a/clients/client-iot-events/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iot-events/src/commands/ListTagsForResourceCommand.ts @@ -75,6 +75,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-iot-events/src/commands/PutLoggingOptionsCommand.ts b/clients/client-iot-events/src/commands/PutLoggingOptionsCommand.ts index de406ca9c1e55..21f561866613d 100644 --- a/clients/client-iot-events/src/commands/PutLoggingOptionsCommand.ts +++ b/clients/client-iot-events/src/commands/PutLoggingOptionsCommand.ts @@ -85,6 +85,7 @@ export interface PutLoggingOptionsCommandOutput extends __MetadataBearer {} * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class PutLoggingOptionsCommand extends $Command diff --git a/clients/client-iot-events/src/commands/StartDetectorModelAnalysisCommand.ts b/clients/client-iot-events/src/commands/StartDetectorModelAnalysisCommand.ts index 393db983146ff..b1948a29a3915 100644 --- a/clients/client-iot-events/src/commands/StartDetectorModelAnalysisCommand.ts +++ b/clients/client-iot-events/src/commands/StartDetectorModelAnalysisCommand.ts @@ -445,6 +445,7 @@ export interface StartDetectorModelAnalysisCommandOutput extends StartDetectorMo * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class StartDetectorModelAnalysisCommand extends $Command diff --git a/clients/client-iot-events/src/commands/TagResourceCommand.ts b/clients/client-iot-events/src/commands/TagResourceCommand.ts index 0b1ec56357cc2..9b19a1e6088b0 100644 --- a/clients/client-iot-events/src/commands/TagResourceCommand.ts +++ b/clients/client-iot-events/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-iot-events/src/commands/UntagResourceCommand.ts b/clients/client-iot-events/src/commands/UntagResourceCommand.ts index eb13a6870482e..3f5ba0c96481d 100644 --- a/clients/client-iot-events/src/commands/UntagResourceCommand.ts +++ b/clients/client-iot-events/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-iot-events/src/commands/UpdateAlarmModelCommand.ts b/clients/client-iot-events/src/commands/UpdateAlarmModelCommand.ts index 1b615957852da..9836076657aba 100644 --- a/clients/client-iot-events/src/commands/UpdateAlarmModelCommand.ts +++ b/clients/client-iot-events/src/commands/UpdateAlarmModelCommand.ts @@ -223,6 +223,7 @@ export interface UpdateAlarmModelCommandOutput extends UpdateAlarmModelResponse, * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class UpdateAlarmModelCommand extends $Command diff --git a/clients/client-iot-events/src/commands/UpdateDetectorModelCommand.ts b/clients/client-iot-events/src/commands/UpdateDetectorModelCommand.ts index c2bfc750f82ba..d3c47df290f17 100644 --- a/clients/client-iot-events/src/commands/UpdateDetectorModelCommand.ts +++ b/clients/client-iot-events/src/commands/UpdateDetectorModelCommand.ts @@ -462,6 +462,7 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class UpdateDetectorModelCommand extends $Command diff --git a/clients/client-iot-events/src/commands/UpdateInputCommand.ts b/clients/client-iot-events/src/commands/UpdateInputCommand.ts index 97fbce6b52664..b70d835183c01 100644 --- a/clients/client-iot-events/src/commands/UpdateInputCommand.ts +++ b/clients/client-iot-events/src/commands/UpdateInputCommand.ts @@ -88,6 +88,7 @@ export interface UpdateInputCommandOutput extends UpdateInputResponse, __Metadat * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* + * * @public */ export class UpdateInputCommand extends $Command diff --git a/clients/client-iot-jobs-data-plane/src/commands/DescribeJobExecutionCommand.ts b/clients/client-iot-jobs-data-plane/src/commands/DescribeJobExecutionCommand.ts index 2e50e25c1a13e..22ba243f20bd4 100644 --- a/clients/client-iot-jobs-data-plane/src/commands/DescribeJobExecutionCommand.ts +++ b/clients/client-iot-jobs-data-plane/src/commands/DescribeJobExecutionCommand.ts @@ -91,6 +91,7 @@ export interface DescribeJobExecutionCommandOutput extends DescribeJobExecutionR * @throws {@link IoTJobsDataPlaneServiceException} *

Base exception class for all service exceptions from IoTJobsDataPlane service.

* + * * @public */ export class DescribeJobExecutionCommand extends $Command diff --git a/clients/client-iot-jobs-data-plane/src/commands/GetPendingJobExecutionsCommand.ts b/clients/client-iot-jobs-data-plane/src/commands/GetPendingJobExecutionsCommand.ts index 18273d3fdd597..1b5b2e1fc1f82 100644 --- a/clients/client-iot-jobs-data-plane/src/commands/GetPendingJobExecutionsCommand.ts +++ b/clients/client-iot-jobs-data-plane/src/commands/GetPendingJobExecutionsCommand.ts @@ -90,6 +90,7 @@ export interface GetPendingJobExecutionsCommandOutput extends GetPendingJobExecu * @throws {@link IoTJobsDataPlaneServiceException} *

Base exception class for all service exceptions from IoTJobsDataPlane service.

* + * * @public */ export class GetPendingJobExecutionsCommand extends $Command diff --git a/clients/client-iot-jobs-data-plane/src/commands/StartCommandExecutionCommand.ts b/clients/client-iot-jobs-data-plane/src/commands/StartCommandExecutionCommand.ts index 59e14ef2ccfdc..390e62b3babc8 100644 --- a/clients/client-iot-jobs-data-plane/src/commands/StartCommandExecutionCommand.ts +++ b/clients/client-iot-jobs-data-plane/src/commands/StartCommandExecutionCommand.ts @@ -88,6 +88,7 @@ export interface StartCommandExecutionCommandOutput extends StartCommandExecutio * @throws {@link IoTJobsDataPlaneServiceException} *

Base exception class for all service exceptions from IoTJobsDataPlane service.

* + * * @public */ export class StartCommandExecutionCommand extends $Command diff --git a/clients/client-iot-jobs-data-plane/src/commands/StartNextPendingJobExecutionCommand.ts b/clients/client-iot-jobs-data-plane/src/commands/StartNextPendingJobExecutionCommand.ts index 141a303036773..b9f24eee3f6c9 100644 --- a/clients/client-iot-jobs-data-plane/src/commands/StartNextPendingJobExecutionCommand.ts +++ b/clients/client-iot-jobs-data-plane/src/commands/StartNextPendingJobExecutionCommand.ts @@ -95,6 +95,7 @@ export interface StartNextPendingJobExecutionCommandOutput * @throws {@link IoTJobsDataPlaneServiceException} *

Base exception class for all service exceptions from IoTJobsDataPlane service.

* + * * @public */ export class StartNextPendingJobExecutionCommand extends $Command diff --git a/clients/client-iot-jobs-data-plane/src/commands/UpdateJobExecutionCommand.ts b/clients/client-iot-jobs-data-plane/src/commands/UpdateJobExecutionCommand.ts index af4f2a8d4dc54..1d0fd427ef519 100644 --- a/clients/client-iot-jobs-data-plane/src/commands/UpdateJobExecutionCommand.ts +++ b/clients/client-iot-jobs-data-plane/src/commands/UpdateJobExecutionCommand.ts @@ -94,6 +94,7 @@ export interface UpdateJobExecutionCommandOutput extends UpdateJobExecutionRespo * @throws {@link IoTJobsDataPlaneServiceException} *

Base exception class for all service exceptions from IoTJobsDataPlane service.

* + * * @public */ export class UpdateJobExecutionCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/CreateCredentialLockerCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateCredentialLockerCommand.ts index e0dea8f431fd8..70263f8a2f54b 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateCredentialLockerCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateCredentialLockerCommand.ts @@ -92,6 +92,7 @@ export interface CreateCredentialLockerCommandOutput extends CreateCredentialLoc * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class CreateCredentialLockerCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/CreateDestinationCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateDestinationCommand.ts index 006ae4fd11cb3..b1535e2ad62e3 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateDestinationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateDestinationCommand.ts @@ -88,6 +88,7 @@ export interface CreateDestinationCommandOutput extends CreateDestinationRespons * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class CreateDestinationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/CreateEventLogConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateEventLogConfigurationCommand.ts index 06ccfd6636d82..fc8b118496c57 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateEventLogConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateEventLogConfigurationCommand.ts @@ -87,6 +87,7 @@ export interface CreateEventLogConfigurationCommandOutput * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class CreateEventLogConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/CreateManagedThingCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateManagedThingCommand.ts index 28fd01aa08acd..d727e24c4f531 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateManagedThingCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateManagedThingCommand.ts @@ -136,6 +136,7 @@ export interface CreateManagedThingCommandOutput extends CreateManagedThingRespo * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class CreateManagedThingCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/CreateNotificationConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateNotificationConfigurationCommand.ts index 1e43271617e6a..796271047a028 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateNotificationConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateNotificationConfigurationCommand.ts @@ -90,6 +90,7 @@ export interface CreateNotificationConfigurationCommandOutput * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class CreateNotificationConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskCommand.ts index bc265ede920ef..9b95726ab6dcd 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskCommand.ts @@ -113,6 +113,7 @@ export interface CreateOtaTaskCommandOutput extends CreateOtaTaskResponse, __Met * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class CreateOtaTaskCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskConfigurationCommand.ts index b55e98baf419b..5233ac86aed7d 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskConfigurationCommand.ts @@ -107,6 +107,7 @@ export interface CreateOtaTaskConfigurationCommandOutput extends CreateOtaTaskCo * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class CreateOtaTaskConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/CreateProvisioningProfileCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateProvisioningProfileCommand.ts index 1b94f28a38ae1..437d1ad2604cc 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateProvisioningProfileCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateProvisioningProfileCommand.ts @@ -99,6 +99,7 @@ export interface CreateProvisioningProfileCommandOutput extends CreateProvisioni * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class CreateProvisioningProfileCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteCredentialLockerCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteCredentialLockerCommand.ts index cee67cfd2aabe..bfe29770e5207 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteCredentialLockerCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteCredentialLockerCommand.ts @@ -80,6 +80,7 @@ export interface DeleteCredentialLockerCommandOutput extends __MetadataBearer {} * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class DeleteCredentialLockerCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteDestinationCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteDestinationCommand.ts index 98d461dab980d..0bcbe41e1ba97 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteDestinationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteDestinationCommand.ts @@ -73,6 +73,7 @@ export interface DeleteDestinationCommandOutput extends __MetadataBearer {} * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class DeleteDestinationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteEventLogConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteEventLogConfigurationCommand.ts index b33772f544045..17450fb130da8 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteEventLogConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteEventLogConfigurationCommand.ts @@ -76,6 +76,7 @@ export interface DeleteEventLogConfigurationCommandOutput extends __MetadataBear * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class DeleteEventLogConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteManagedThingCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteManagedThingCommand.ts index 305c6fb9192ba..2a259850074aa 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteManagedThingCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteManagedThingCommand.ts @@ -85,6 +85,7 @@ export interface DeleteManagedThingCommandOutput extends __MetadataBearer {} * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class DeleteManagedThingCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteNotificationConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteNotificationConfigurationCommand.ts index 2cc41898ec23d..bef216217799c 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteNotificationConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteNotificationConfigurationCommand.ts @@ -76,6 +76,7 @@ export interface DeleteNotificationConfigurationCommandOutput extends __Metadata * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class DeleteNotificationConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskCommand.ts index 45ff6b3ed2eb6..b45db1c19faa2 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskCommand.ts @@ -73,6 +73,7 @@ export interface DeleteOtaTaskCommandOutput extends __MetadataBearer {} * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class DeleteOtaTaskCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskConfigurationCommand.ts index 134008ac7c065..c80fbb25bee19 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskConfigurationCommand.ts @@ -73,6 +73,7 @@ export interface DeleteOtaTaskConfigurationCommandOutput extends __MetadataBeare * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class DeleteOtaTaskConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteProvisioningProfileCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteProvisioningProfileCommand.ts index c8c575dc5df5b..218eabecebe57 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteProvisioningProfileCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteProvisioningProfileCommand.ts @@ -79,6 +79,7 @@ export interface DeleteProvisioningProfileCommandOutput extends __MetadataBearer * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class DeleteProvisioningProfileCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetCredentialLockerCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetCredentialLockerCommand.ts index 6f870750f3d6d..e62d5d9a60361 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetCredentialLockerCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetCredentialLockerCommand.ts @@ -88,6 +88,7 @@ export interface GetCredentialLockerCommandOutput extends GetCredentialLockerRes * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetCredentialLockerCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetCustomEndpointCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetCustomEndpointCommand.ts index dabe5f16ba0b5..6dd799820ebb7 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetCustomEndpointCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetCustomEndpointCommand.ts @@ -79,6 +79,7 @@ export interface GetCustomEndpointCommandOutput extends GetCustomEndpointRespons * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetCustomEndpointCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetDefaultEncryptionConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetDefaultEncryptionConfigurationCommand.ts index d37e6c4539358..978441d1e5a02 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetDefaultEncryptionConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetDefaultEncryptionConfigurationCommand.ts @@ -96,6 +96,7 @@ export interface GetDefaultEncryptionConfigurationCommandOutput * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetDefaultEncryptionConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetDestinationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetDestinationCommand.ts index af7860da2272e..3c7ff491aa871 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetDestinationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetDestinationCommand.ts @@ -88,6 +88,7 @@ export interface GetDestinationCommandOutput extends GetDestinationResponse, __M * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetDestinationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetDeviceDiscoveryCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetDeviceDiscoveryCommand.ts index 7285aa8ec6b93..364b31eb983bd 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetDeviceDiscoveryCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetDeviceDiscoveryCommand.ts @@ -95,6 +95,7 @@ export interface GetDeviceDiscoveryCommandOutput extends GetDeviceDiscoveryRespo * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetDeviceDiscoveryCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetEventLogConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetEventLogConfigurationCommand.ts index b85b10cb00587..eb67bf1dd8fd5 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetEventLogConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetEventLogConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface GetEventLogConfigurationCommandOutput extends GetEventLogConfig * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetEventLogConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetHubConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetHubConfigurationCommand.ts index d2dee3bf6e0c2..d2dd55f2a6587 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetHubConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetHubConfigurationCommand.ts @@ -77,6 +77,7 @@ export interface GetHubConfigurationCommandOutput extends GetHubConfigurationRes * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetHubConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetManagedThingCapabilitiesCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetManagedThingCapabilitiesCommand.ts index 5820ea8afa00e..8a3d343ea453b 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetManagedThingCapabilitiesCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetManagedThingCapabilitiesCommand.ts @@ -115,6 +115,7 @@ export interface GetManagedThingCapabilitiesCommandOutput * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetManagedThingCapabilitiesCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetManagedThingCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetManagedThingCommand.ts index 7d3f699863b76..893dacf5c2993 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetManagedThingCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetManagedThingCommand.ts @@ -113,6 +113,7 @@ export interface GetManagedThingCommandOutput extends GetManagedThingResponse, _ * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetManagedThingCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetManagedThingConnectivityDataCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetManagedThingConnectivityDataCommand.ts index 92f487b8146cd..c0c823b883484 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetManagedThingConnectivityDataCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetManagedThingConnectivityDataCommand.ts @@ -89,6 +89,7 @@ export interface GetManagedThingConnectivityDataCommandOutput * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetManagedThingConnectivityDataCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetManagedThingMetaDataCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetManagedThingMetaDataCommand.ts index 4616b7115c105..585d483ec0697 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetManagedThingMetaDataCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetManagedThingMetaDataCommand.ts @@ -84,6 +84,7 @@ export interface GetManagedThingMetaDataCommandOutput extends GetManagedThingMet * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetManagedThingMetaDataCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetManagedThingStateCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetManagedThingStateCommand.ts index f09541cebb8d3..20eccc9783f07 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetManagedThingStateCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetManagedThingStateCommand.ts @@ -96,6 +96,7 @@ export interface GetManagedThingStateCommandOutput extends GetManagedThingStateR * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetManagedThingStateCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetNotificationConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetNotificationConfigurationCommand.ts index cd36921b59c2e..761a4e32614b1 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetNotificationConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetNotificationConfigurationCommand.ts @@ -90,6 +90,7 @@ export interface GetNotificationConfigurationCommandOutput * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetNotificationConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetOtaTaskCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetOtaTaskCommand.ts index bb9891dfa7c99..a47b4805e074d 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetOtaTaskCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetOtaTaskCommand.ts @@ -121,6 +121,7 @@ export interface GetOtaTaskCommandOutput extends GetOtaTaskResponse, __MetadataB * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetOtaTaskCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetOtaTaskConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetOtaTaskConfigurationCommand.ts index 38cc002c2f0de..1520cb109cfa4 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetOtaTaskConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetOtaTaskConfigurationCommand.ts @@ -108,6 +108,7 @@ export interface GetOtaTaskConfigurationCommandOutput extends GetOtaTaskConfigur * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetOtaTaskConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetProvisioningProfileCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetProvisioningProfileCommand.ts index 9ff02951f778c..3f25c09bc33a2 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetProvisioningProfileCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetProvisioningProfileCommand.ts @@ -92,6 +92,7 @@ export interface GetProvisioningProfileCommandOutput extends GetProvisioningProf * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetProvisioningProfileCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetRuntimeLogConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetRuntimeLogConfigurationCommand.ts index 3dc1df9a34ca1..9ffbf37088b0f 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetRuntimeLogConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetRuntimeLogConfigurationCommand.ts @@ -86,6 +86,7 @@ export interface GetRuntimeLogConfigurationCommandOutput extends GetRuntimeLogCo * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class GetRuntimeLogConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/GetSchemaVersionCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetSchemaVersionCommand.ts index 84d162c558cb9..8aff49fe9c447 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetSchemaVersionCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetSchemaVersionCommand.ts @@ -89,104 +89,105 @@ export interface GetSchemaVersionCommandOutput extends GetSchemaVersionResponse, * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* - * @public + * * @example GetSchemaVersion happy path for an example schema version. * ```javascript * // * const input = { - * "SchemaVersionedId": "matter.ColorControl@$latest", - * "Type": "capability" + * SchemaVersionedId: "matter.ColorControl@$latest", + * Type: "capability" * }; * const command = new GetSchemaVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Description": "The Color Control cluster defined as Harmony Capability.", - * "Namespace": "matter", - * "Schema": { - * "name": "Color Control", - * "$defs": {}, - * "$id": "matter.ColorControl@1.3", - * "$ref": "aws.capability@1.0", - * "actions": [ + * Description: "The Color Control cluster defined as Harmony Capability.", + * Namespace: "matter", + * Schema: { + * $defs: { /* empty *\/ }, + * $id: "matter.ColorControl@1.3", + * $ref: "aws.capability@1.0", + * actions: [ * { - * "$ref": "aws.action.ReadState@1.0" + * $ref: "aws.action.ReadState@1.0" * }, * { - * "$ref": "aws.action.UpdateState@1.0" + * $ref: "aws.action.UpdateState@1.0" * }, * { - * "name": "MoveToHue", - * "extrinsicId": "0x00", - * "request": { - * "parameters": { - * "Hue": { - * "value": { - * "$ref": "aws.integer@1.0" - * }, - * "extrinsicId": "0" + * extrinsicId: "0x00", + * name: "MoveToHue", + * request: { + * parameters: { + * Hue: { + * extrinsicId: "0", + * value: { + * $ref: "aws.integer@1.0" + * } * } * } * } * } * ], - * "description": "The Color Control cluster defined as Harmony Capability.", - * "events": [], - * "extrinsicId": "0x0300", - * "extrinsicVersion": "14", - * "properties": { - * "CurrentHue": { - * "value": { - * "$ref": "aws.integer@1.0" - * }, - * "mutable": false + * description: "The Color Control cluster defined as Harmony Capability.", + * events: [], + * extrinsicId: "0x0300", + * extrinsicVersion: "14", + * name: "Color Control", + * properties: { + * CurrentHue: { + * mutable: false, + * value: { + * $ref: "aws.integer@1.0" + * } * } * }, - * "title": "Color Control Cluster" + * title: "Color Control Cluster" * }, - * "SchemaId": "matter.ColorControl", - * "SemanticVersion": "1.3", - * "Type": "capability" + * SchemaId: "matter.ColorControl", + * SemanticVersion: "1.3", + * Type: "capability" * } * *\/ - * // example id: example-1 * ``` * * @example GetSchemaVersion happy path for an example schema version. * ```javascript * // * const input = { - * "Format": "ZCL", - * "SchemaVersionedId": "matter.ColorControl@1.3", - * "Type": "capability" + * Format: "ZCL", + * SchemaVersionedId: "matter.ColorControl@1.3", + * Type: "capability" * }; * const command = new GetSchemaVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Description": "The Color Control cluster defined as Harmony Capability.", - * "Namespace": "matter", - * "Schema": {}, - * "SchemaId": "matter.ColorControl", - * "SemanticVersion": "1.3", - * "Type": "capability" + * Description: "The Color Control cluster defined as Harmony Capability.", + * Namespace: "matter", + * Schema: { /* empty *\/ }, + * SchemaId: "matter.ColorControl", + * SemanticVersion: "1.3", + * Type: "capability" * } * *\/ - * // example id: example-2 * ``` * * @example GetSchemaVersion error path for an example schema version that does not exist. * ```javascript * // * const input = { - * "SchemaVersionedId": "matter.ColorControl@$latest", - * "Type": "capability" + * SchemaVersionedId: "matter.ColorControl@$latest", + * Type: "capability" * }; * const command = new GetSchemaVersionCommand(input); - * await client.send(command); - * // example id: example-3 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class GetSchemaVersionCommand extends $Command .classBuilder< diff --git a/clients/client-iot-managed-integrations/src/commands/ListCredentialLockersCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListCredentialLockersCommand.ts index 362d9b3e289ff..1d0e20071c2c6 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListCredentialLockersCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListCredentialLockersCommand.ts @@ -88,6 +88,7 @@ export interface ListCredentialLockersCommandOutput extends ListCredentialLocker * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class ListCredentialLockersCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/ListDestinationsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListDestinationsCommand.ts index 1c125c3007f42..92bdb880442bd 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListDestinationsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListDestinationsCommand.ts @@ -82,6 +82,7 @@ export interface ListDestinationsCommandOutput extends ListDestinationsResponse, * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class ListDestinationsCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/ListEventLogConfigurationsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListEventLogConfigurationsCommand.ts index 8c8558bf7f316..26e635f5deaf5 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListEventLogConfigurationsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListEventLogConfigurationsCommand.ts @@ -81,6 +81,7 @@ export interface ListEventLogConfigurationsCommandOutput extends ListEventLogCon * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class ListEventLogConfigurationsCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/ListManagedThingSchemasCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListManagedThingSchemasCommand.ts index 6b86d50398abd..7eedccb4c8539 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListManagedThingSchemasCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListManagedThingSchemasCommand.ts @@ -92,6 +92,7 @@ export interface ListManagedThingSchemasCommandOutput extends ListManagedThingSc * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class ListManagedThingSchemasCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/ListManagedThingsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListManagedThingsCommand.ts index 3a12f432c648e..068a9525cd85a 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListManagedThingsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListManagedThingsCommand.ts @@ -113,6 +113,7 @@ export interface ListManagedThingsCommandOutput extends ListManagedThingsRespons * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class ListManagedThingsCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/ListNotificationConfigurationsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListNotificationConfigurationsCommand.ts index 529a5ae1662fc..1f89a217b6aba 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListNotificationConfigurationsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListNotificationConfigurationsCommand.ts @@ -84,6 +84,7 @@ export interface ListNotificationConfigurationsCommandOutput * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class ListNotificationConfigurationsCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/ListOtaTaskConfigurationsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListOtaTaskConfigurationsCommand.ts index 3ab2e2bfe8ebc..d4e676221a141 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListOtaTaskConfigurationsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListOtaTaskConfigurationsCommand.ts @@ -84,6 +84,7 @@ export interface ListOtaTaskConfigurationsCommandOutput extends ListOtaTaskConfi * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class ListOtaTaskConfigurationsCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/ListOtaTaskExecutionsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListOtaTaskExecutionsCommand.ts index 0a3cda8143adc..809c83a806a0b 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListOtaTaskExecutionsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListOtaTaskExecutionsCommand.ts @@ -87,6 +87,7 @@ export interface ListOtaTaskExecutionsCommandOutput extends ListOtaTaskExecution * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class ListOtaTaskExecutionsCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/ListOtaTasksCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListOtaTasksCommand.ts index 61dabc67b03bc..92e3e37ec8f94 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListOtaTasksCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListOtaTasksCommand.ts @@ -83,6 +83,7 @@ export interface ListOtaTasksCommandOutput extends ListOtaTasksResponse, __Metad * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class ListOtaTasksCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/ListProvisioningProfilesCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListProvisioningProfilesCommand.ts index c1fd6b533ce7e..26f63d49550d2 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListProvisioningProfilesCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListProvisioningProfilesCommand.ts @@ -87,6 +87,7 @@ export interface ListProvisioningProfilesCommandOutput extends ListProvisioningP * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class ListProvisioningProfilesCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/ListSchemaVersionsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListSchemaVersionsCommand.ts index 6b7560bf6e5f4..29fc2788d7760 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListSchemaVersionsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListSchemaVersionsCommand.ts @@ -94,70 +94,71 @@ export interface ListSchemaVersionsCommandOutput extends ListSchemaVersionsRespo * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* - * @public + * * @example ListSchemaVersions happy path for an example schema version. * ```javascript * // * const input = { - * "SchemaId": "matter.ColorControl", - * "Type": "capability" + * SchemaId: "matter.ColorControl", + * Type: "capability" * }; * const command = new ListSchemaVersionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Items": [ + * Items: [ * { - * "Description": "The Color Control cluster defined as Harmony Capability.", - * "Namespace": "matter", - * "SchemaId": "matter.ColorControl", - * "SemanticVersion": "1.3", - * "Type": "capability" + * Description: "The Color Control cluster defined as Harmony Capability.", + * Namespace: "matter", + * SchemaId: "matter.ColorControl", + * SemanticVersion: "1.3", + * Type: "capability" * } * ] * } * *\/ - * // example id: example-1 * ``` * * @example ListSchemaVersions by version. * ```javascript * // * const input = { - * "SemanticVersion": "34.56", - * "Type": "capability" + * SemanticVersion: "34.56", + * Type: "capability" * }; * const command = new ListSchemaVersionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Items": [ + * Items: [ * { - * "Description": "The Color Control cluster defined as Harmony Capability.", - * "Namespace": "matter", - * "SchemaId": "matter.ColorControl", - * "SemanticVersion": "1.3", - * "Type": "capability" + * Description: "The Color Control cluster defined as Harmony Capability.", + * Namespace: "matter", + * SchemaId: "matter.ColorControl", + * SemanticVersion: "1.3", + * Type: "capability" * } * ] * } * *\/ - * // example id: example-2 * ``` * * @example ListSchemaVersions error for invalid input. * ```javascript * // * const input = { - * "Namespace": "matter", - * "SchemaId": "matter.ColorControl", - * "Type": "capability" + * Namespace: "matter", + * SchemaId: "matter.ColorControl", + * Type: "capability" * }; * const command = new ListSchemaVersionsCommand(input); - * await client.send(command); - * // example id: example-3 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ListSchemaVersionsCommand extends $Command .classBuilder< diff --git a/clients/client-iot-managed-integrations/src/commands/PutDefaultEncryptionConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/PutDefaultEncryptionConfigurationCommand.ts index 88ddc075837e6..ab85196ac8259 100644 --- a/clients/client-iot-managed-integrations/src/commands/PutDefaultEncryptionConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/PutDefaultEncryptionConfigurationCommand.ts @@ -99,6 +99,7 @@ export interface PutDefaultEncryptionConfigurationCommandOutput * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class PutDefaultEncryptionConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/PutHubConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/PutHubConfigurationCommand.ts index 5697f9e21ecc8..a5d6b2613a558 100644 --- a/clients/client-iot-managed-integrations/src/commands/PutHubConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/PutHubConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface PutHubConfigurationCommandOutput extends PutHubConfigurationRes * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class PutHubConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/PutRuntimeLogConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/PutRuntimeLogConfigurationCommand.ts index 76cf5764a608e..80ca9b63d66cf 100644 --- a/clients/client-iot-managed-integrations/src/commands/PutRuntimeLogConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/PutRuntimeLogConfigurationCommand.ts @@ -84,6 +84,7 @@ export interface PutRuntimeLogConfigurationCommandOutput extends __MetadataBeare * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class PutRuntimeLogConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/RegisterCustomEndpointCommand.ts b/clients/client-iot-managed-integrations/src/commands/RegisterCustomEndpointCommand.ts index bc959736b50d6..8cfc08854f83c 100644 --- a/clients/client-iot-managed-integrations/src/commands/RegisterCustomEndpointCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/RegisterCustomEndpointCommand.ts @@ -80,6 +80,7 @@ export interface RegisterCustomEndpointCommandOutput extends RegisterCustomEndpo * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class RegisterCustomEndpointCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/ResetRuntimeLogConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/ResetRuntimeLogConfigurationCommand.ts index 5665e8d4c706b..fe22c0e932cf4 100644 --- a/clients/client-iot-managed-integrations/src/commands/ResetRuntimeLogConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ResetRuntimeLogConfigurationCommand.ts @@ -77,6 +77,7 @@ export interface ResetRuntimeLogConfigurationCommandOutput extends __MetadataBea * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class ResetRuntimeLogConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/SendManagedThingCommandCommand.ts b/clients/client-iot-managed-integrations/src/commands/SendManagedThingCommandCommand.ts index 55bc19f3ae52e..b79718303a76e 100644 --- a/clients/client-iot-managed-integrations/src/commands/SendManagedThingCommandCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/SendManagedThingCommandCommand.ts @@ -103,6 +103,7 @@ export interface SendManagedThingCommandCommandOutput extends SendManagedThingCo * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class SendManagedThingCommandCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/StartDeviceDiscoveryCommand.ts b/clients/client-iot-managed-integrations/src/commands/StartDeviceDiscoveryCommand.ts index 3314da734ccc6..7b2096e919dc9 100644 --- a/clients/client-iot-managed-integrations/src/commands/StartDeviceDiscoveryCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/StartDeviceDiscoveryCommand.ts @@ -99,6 +99,7 @@ export interface StartDeviceDiscoveryCommandOutput extends StartDeviceDiscoveryR * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class StartDeviceDiscoveryCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/UpdateDestinationCommand.ts b/clients/client-iot-managed-integrations/src/commands/UpdateDestinationCommand.ts index 5f2a86c07f5eb..4a258dfc23515 100644 --- a/clients/client-iot-managed-integrations/src/commands/UpdateDestinationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/UpdateDestinationCommand.ts @@ -77,6 +77,7 @@ export interface UpdateDestinationCommandOutput extends __MetadataBearer {} * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class UpdateDestinationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/UpdateEventLogConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/UpdateEventLogConfigurationCommand.ts index 8e5040674e7d5..285943615737d 100644 --- a/clients/client-iot-managed-integrations/src/commands/UpdateEventLogConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/UpdateEventLogConfigurationCommand.ts @@ -77,6 +77,7 @@ export interface UpdateEventLogConfigurationCommandOutput extends __MetadataBear * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class UpdateEventLogConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/UpdateManagedThingCommand.ts b/clients/client-iot-managed-integrations/src/commands/UpdateManagedThingCommand.ts index 911e146e1feee..65f49736f8967 100644 --- a/clients/client-iot-managed-integrations/src/commands/UpdateManagedThingCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/UpdateManagedThingCommand.ts @@ -122,6 +122,7 @@ export interface UpdateManagedThingCommandOutput extends __MetadataBearer {} * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class UpdateManagedThingCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/UpdateNotificationConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/UpdateNotificationConfigurationCommand.ts index 3686fdd76f950..f5935f7c16e19 100644 --- a/clients/client-iot-managed-integrations/src/commands/UpdateNotificationConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/UpdateNotificationConfigurationCommand.ts @@ -77,6 +77,7 @@ export interface UpdateNotificationConfigurationCommandOutput extends __Metadata * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class UpdateNotificationConfigurationCommand extends $Command diff --git a/clients/client-iot-managed-integrations/src/commands/UpdateOtaTaskCommand.ts b/clients/client-iot-managed-integrations/src/commands/UpdateOtaTaskCommand.ts index 86d1d85e20def..6de760727925a 100644 --- a/clients/client-iot-managed-integrations/src/commands/UpdateOtaTaskCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/UpdateOtaTaskCommand.ts @@ -75,6 +75,7 @@ export interface UpdateOtaTaskCommandOutput extends __MetadataBearer {} * @throws {@link IoTManagedIntegrationsServiceException} *

Base exception class for all service exceptions from IoTManagedIntegrations service.

* + * * @public */ export class UpdateOtaTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/AssociateAwsAccountWithPartnerAccountCommand.ts b/clients/client-iot-wireless/src/commands/AssociateAwsAccountWithPartnerAccountCommand.ts index 571b5704a0863..68c9dc27f677e 100644 --- a/clients/client-iot-wireless/src/commands/AssociateAwsAccountWithPartnerAccountCommand.ts +++ b/clients/client-iot-wireless/src/commands/AssociateAwsAccountWithPartnerAccountCommand.ts @@ -98,6 +98,7 @@ export interface AssociateAwsAccountWithPartnerAccountCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class AssociateAwsAccountWithPartnerAccountCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/AssociateMulticastGroupWithFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/AssociateMulticastGroupWithFuotaTaskCommand.ts index 02ea350e89ebf..9a26f5373800c 100644 --- a/clients/client-iot-wireless/src/commands/AssociateMulticastGroupWithFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/AssociateMulticastGroupWithFuotaTaskCommand.ts @@ -80,6 +80,7 @@ export interface AssociateMulticastGroupWithFuotaTaskCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class AssociateMulticastGroupWithFuotaTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithFuotaTaskCommand.ts index c2234b9239166..e06068bb28c82 100644 --- a/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithFuotaTaskCommand.ts @@ -80,6 +80,7 @@ export interface AssociateWirelessDeviceWithFuotaTaskCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class AssociateWirelessDeviceWithFuotaTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithMulticastGroupCommand.ts index 65d86e49bace2..ea62c2c0655fc 100644 --- a/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithMulticastGroupCommand.ts @@ -81,6 +81,7 @@ export interface AssociateWirelessDeviceWithMulticastGroupCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class AssociateWirelessDeviceWithMulticastGroupCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithThingCommand.ts b/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithThingCommand.ts index b6d5185316776..52edd0b79b241 100644 --- a/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithThingCommand.ts +++ b/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithThingCommand.ts @@ -77,6 +77,7 @@ export interface AssociateWirelessDeviceWithThingCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class AssociateWirelessDeviceWithThingCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithCertificateCommand.ts b/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithCertificateCommand.ts index a36c2aa62c091..9e42027583def 100644 --- a/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithCertificateCommand.ts +++ b/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithCertificateCommand.ts @@ -83,6 +83,7 @@ export interface AssociateWirelessGatewayWithCertificateCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class AssociateWirelessGatewayWithCertificateCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithThingCommand.ts b/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithThingCommand.ts index e586dc73640b2..5169611ae3951 100644 --- a/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithThingCommand.ts +++ b/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithThingCommand.ts @@ -80,6 +80,7 @@ export interface AssociateWirelessGatewayWithThingCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class AssociateWirelessGatewayWithThingCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/CancelMulticastGroupSessionCommand.ts b/clients/client-iot-wireless/src/commands/CancelMulticastGroupSessionCommand.ts index d15bd8f09c891..4e6639b27600b 100644 --- a/clients/client-iot-wireless/src/commands/CancelMulticastGroupSessionCommand.ts +++ b/clients/client-iot-wireless/src/commands/CancelMulticastGroupSessionCommand.ts @@ -76,6 +76,7 @@ export interface CancelMulticastGroupSessionCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class CancelMulticastGroupSessionCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/CreateDestinationCommand.ts b/clients/client-iot-wireless/src/commands/CreateDestinationCommand.ts index f90604bc59aa9..eda33319c621b 100644 --- a/clients/client-iot-wireless/src/commands/CreateDestinationCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateDestinationCommand.ts @@ -85,6 +85,7 @@ export interface CreateDestinationCommandOutput extends CreateDestinationRespons * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class CreateDestinationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/CreateDeviceProfileCommand.ts b/clients/client-iot-wireless/src/commands/CreateDeviceProfileCommand.ts index a4e0392847050..7270866edd06e 100644 --- a/clients/client-iot-wireless/src/commands/CreateDeviceProfileCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateDeviceProfileCommand.ts @@ -102,6 +102,7 @@ export interface CreateDeviceProfileCommandOutput extends CreateDeviceProfileRes * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class CreateDeviceProfileCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/CreateFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/CreateFuotaTaskCommand.ts index bcd6a22e3caf8..7d31eb627259b 100644 --- a/clients/client-iot-wireless/src/commands/CreateFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateFuotaTaskCommand.ts @@ -91,6 +91,7 @@ export interface CreateFuotaTaskCommandOutput extends CreateFuotaTaskResponse, _ * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class CreateFuotaTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/CreateMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/CreateMulticastGroupCommand.ts index b36d41a1c2a4a..b4f9d83633c66 100644 --- a/clients/client-iot-wireless/src/commands/CreateMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateMulticastGroupCommand.ts @@ -92,6 +92,7 @@ export interface CreateMulticastGroupCommandOutput extends CreateMulticastGroupR * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class CreateMulticastGroupCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/CreateNetworkAnalyzerConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/CreateNetworkAnalyzerConfigurationCommand.ts index 63fba6401ed40..d595b50763330 100644 --- a/clients/client-iot-wireless/src/commands/CreateNetworkAnalyzerConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateNetworkAnalyzerConfigurationCommand.ts @@ -104,6 +104,7 @@ export interface CreateNetworkAnalyzerConfigurationCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class CreateNetworkAnalyzerConfigurationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/CreateServiceProfileCommand.ts b/clients/client-iot-wireless/src/commands/CreateServiceProfileCommand.ts index dd225d41de155..31dfa7dbd9e34 100644 --- a/clients/client-iot-wireless/src/commands/CreateServiceProfileCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateServiceProfileCommand.ts @@ -85,6 +85,7 @@ export interface CreateServiceProfileCommandOutput extends CreateServiceProfileR * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class CreateServiceProfileCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/CreateWirelessDeviceCommand.ts b/clients/client-iot-wireless/src/commands/CreateWirelessDeviceCommand.ts index bf9b2d3887519..fe5a5c4085ee3 100644 --- a/clients/client-iot-wireless/src/commands/CreateWirelessDeviceCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateWirelessDeviceCommand.ts @@ -139,6 +139,7 @@ export interface CreateWirelessDeviceCommandOutput extends CreateWirelessDeviceR * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class CreateWirelessDeviceCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/CreateWirelessGatewayCommand.ts b/clients/client-iot-wireless/src/commands/CreateWirelessGatewayCommand.ts index 5b47062d26d51..336206453ae83 100644 --- a/clients/client-iot-wireless/src/commands/CreateWirelessGatewayCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateWirelessGatewayCommand.ts @@ -116,6 +116,7 @@ export interface CreateWirelessGatewayCommandOutput extends CreateWirelessGatewa * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class CreateWirelessGatewayCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskCommand.ts b/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskCommand.ts index bebc7939e2d1e..3557d10317ccb 100644 --- a/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskCommand.ts @@ -75,6 +75,7 @@ export interface CreateWirelessGatewayTaskCommandOutput extends CreateWirelessGa * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class CreateWirelessGatewayTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskDefinitionCommand.ts b/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskDefinitionCommand.ts index c5b60b42e1d22..482928dc73888 100644 --- a/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskDefinitionCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskDefinitionCommand.ts @@ -108,6 +108,7 @@ export interface CreateWirelessGatewayTaskDefinitionCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class CreateWirelessGatewayTaskDefinitionCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DeleteDestinationCommand.ts b/clients/client-iot-wireless/src/commands/DeleteDestinationCommand.ts index 9ebfec4c9ddca..63fe5be9c5f20 100644 --- a/clients/client-iot-wireless/src/commands/DeleteDestinationCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteDestinationCommand.ts @@ -71,6 +71,7 @@ export interface DeleteDestinationCommandOutput extends DeleteDestinationRespons * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DeleteDestinationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DeleteDeviceProfileCommand.ts b/clients/client-iot-wireless/src/commands/DeleteDeviceProfileCommand.ts index 4ed5a4a301600..0023e6397a0e3 100644 --- a/clients/client-iot-wireless/src/commands/DeleteDeviceProfileCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteDeviceProfileCommand.ts @@ -71,6 +71,7 @@ export interface DeleteDeviceProfileCommandOutput extends DeleteDeviceProfileRes * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DeleteDeviceProfileCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DeleteFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/DeleteFuotaTaskCommand.ts index 0043f2946fefb..cf2291a515306 100644 --- a/clients/client-iot-wireless/src/commands/DeleteFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteFuotaTaskCommand.ts @@ -68,6 +68,7 @@ export interface DeleteFuotaTaskCommandOutput extends DeleteFuotaTaskResponse, _ * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DeleteFuotaTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DeleteMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/DeleteMulticastGroupCommand.ts index 91e1028e2a3ab..18d7c1191c4d6 100644 --- a/clients/client-iot-wireless/src/commands/DeleteMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteMulticastGroupCommand.ts @@ -71,6 +71,7 @@ export interface DeleteMulticastGroupCommandOutput extends DeleteMulticastGroupR * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DeleteMulticastGroupCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DeleteNetworkAnalyzerConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/DeleteNetworkAnalyzerConfigurationCommand.ts index 49a0ef56e9590..bba4ee356e36c 100644 --- a/clients/client-iot-wireless/src/commands/DeleteNetworkAnalyzerConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteNetworkAnalyzerConfigurationCommand.ts @@ -79,6 +79,7 @@ export interface DeleteNetworkAnalyzerConfigurationCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DeleteNetworkAnalyzerConfigurationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DeleteQueuedMessagesCommand.ts b/clients/client-iot-wireless/src/commands/DeleteQueuedMessagesCommand.ts index bf7ab686467a4..45c12c0668b87 100644 --- a/clients/client-iot-wireless/src/commands/DeleteQueuedMessagesCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteQueuedMessagesCommand.ts @@ -70,6 +70,7 @@ export interface DeleteQueuedMessagesCommandOutput extends DeleteQueuedMessagesR * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DeleteQueuedMessagesCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DeleteServiceProfileCommand.ts b/clients/client-iot-wireless/src/commands/DeleteServiceProfileCommand.ts index d6927fac602c3..456365305257f 100644 --- a/clients/client-iot-wireless/src/commands/DeleteServiceProfileCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteServiceProfileCommand.ts @@ -71,6 +71,7 @@ export interface DeleteServiceProfileCommandOutput extends DeleteServiceProfileR * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DeleteServiceProfileCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceCommand.ts b/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceCommand.ts index 607a54537a4a0..7364f6287e172 100644 --- a/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceCommand.ts @@ -68,6 +68,7 @@ export interface DeleteWirelessDeviceCommandOutput extends DeleteWirelessDeviceR * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DeleteWirelessDeviceCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceImportTaskCommand.ts b/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceImportTaskCommand.ts index 51586692550e5..4ba4997dea0fc 100644 --- a/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceImportTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceImportTaskCommand.ts @@ -76,6 +76,7 @@ export interface DeleteWirelessDeviceImportTaskCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DeleteWirelessDeviceImportTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayCommand.ts b/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayCommand.ts index fb8f460601023..4ed2d81042999 100644 --- a/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayCommand.ts @@ -83,6 +83,7 @@ export interface DeleteWirelessGatewayCommandOutput extends DeleteWirelessGatewa * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DeleteWirelessGatewayCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskCommand.ts b/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskCommand.ts index d96838abec88e..1f48383140222 100644 --- a/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskCommand.ts @@ -68,6 +68,7 @@ export interface DeleteWirelessGatewayTaskCommandOutput extends DeleteWirelessGa * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DeleteWirelessGatewayTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskDefinitionCommand.ts b/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskDefinitionCommand.ts index a3696129ef067..b419a794c5eea 100644 --- a/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskDefinitionCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskDefinitionCommand.ts @@ -77,6 +77,7 @@ export interface DeleteWirelessGatewayTaskDefinitionCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DeleteWirelessGatewayTaskDefinitionCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DeregisterWirelessDeviceCommand.ts b/clients/client-iot-wireless/src/commands/DeregisterWirelessDeviceCommand.ts index 8f863b00d0666..7125ceb12e61c 100644 --- a/clients/client-iot-wireless/src/commands/DeregisterWirelessDeviceCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeregisterWirelessDeviceCommand.ts @@ -66,6 +66,7 @@ export interface DeregisterWirelessDeviceCommandOutput extends DeregisterWireles * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DeregisterWirelessDeviceCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DisassociateAwsAccountFromPartnerAccountCommand.ts b/clients/client-iot-wireless/src/commands/DisassociateAwsAccountFromPartnerAccountCommand.ts index 19aa00c2fb90d..d757cf44a6e6d 100644 --- a/clients/client-iot-wireless/src/commands/DisassociateAwsAccountFromPartnerAccountCommand.ts +++ b/clients/client-iot-wireless/src/commands/DisassociateAwsAccountFromPartnerAccountCommand.ts @@ -77,6 +77,7 @@ export interface DisassociateAwsAccountFromPartnerAccountCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DisassociateAwsAccountFromPartnerAccountCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DisassociateMulticastGroupFromFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/DisassociateMulticastGroupFromFuotaTaskCommand.ts index 0b6cd37e7510c..749aa6d4631f1 100644 --- a/clients/client-iot-wireless/src/commands/DisassociateMulticastGroupFromFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/DisassociateMulticastGroupFromFuotaTaskCommand.ts @@ -78,6 +78,7 @@ export interface DisassociateMulticastGroupFromFuotaTaskCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DisassociateMulticastGroupFromFuotaTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.ts index 20eddee4c796f..ece1d7a03a2c6 100644 --- a/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.ts @@ -81,6 +81,7 @@ export interface DisassociateWirelessDeviceFromFuotaTaskCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DisassociateWirelessDeviceFromFuotaTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.ts index a730efdd47e88..43527935f192a 100644 --- a/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.ts @@ -78,6 +78,7 @@ export interface DisassociateWirelessDeviceFromMulticastGroupCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DisassociateWirelessDeviceFromMulticastGroupCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromThingCommand.ts b/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromThingCommand.ts index 3e2f0e16f6ea3..9975dbabf5fdf 100644 --- a/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromThingCommand.ts +++ b/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromThingCommand.ts @@ -79,6 +79,7 @@ export interface DisassociateWirelessDeviceFromThingCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DisassociateWirelessDeviceFromThingCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromCertificateCommand.ts b/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromCertificateCommand.ts index 16116910ef507..d705c0ff608e9 100644 --- a/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromCertificateCommand.ts +++ b/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromCertificateCommand.ts @@ -77,6 +77,7 @@ export interface DisassociateWirelessGatewayFromCertificateCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DisassociateWirelessGatewayFromCertificateCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromThingCommand.ts b/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromThingCommand.ts index 2b788303ddd49..c2ac6f9e01bf4 100644 --- a/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromThingCommand.ts +++ b/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromThingCommand.ts @@ -79,6 +79,7 @@ export interface DisassociateWirelessGatewayFromThingCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class DisassociateWirelessGatewayFromThingCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetDestinationCommand.ts b/clients/client-iot-wireless/src/commands/GetDestinationCommand.ts index ae0eeacb01dd6..4ff607880f6d6 100644 --- a/clients/client-iot-wireless/src/commands/GetDestinationCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetDestinationCommand.ts @@ -75,6 +75,7 @@ export interface GetDestinationCommandOutput extends GetDestinationResponse, __M * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetDestinationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetDeviceProfileCommand.ts b/clients/client-iot-wireless/src/commands/GetDeviceProfileCommand.ts index 24994f579779e..61248ab6d6f7e 100644 --- a/clients/client-iot-wireless/src/commands/GetDeviceProfileCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetDeviceProfileCommand.ts @@ -112,6 +112,7 @@ export interface GetDeviceProfileCommandOutput extends GetDeviceProfileResponse, * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetDeviceProfileCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetEventConfigurationByResourceTypesCommand.ts b/clients/client-iot-wireless/src/commands/GetEventConfigurationByResourceTypesCommand.ts index cf250ef42ca91..7d5748904885e 100644 --- a/clients/client-iot-wireless/src/commands/GetEventConfigurationByResourceTypesCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetEventConfigurationByResourceTypesCommand.ts @@ -94,6 +94,7 @@ export interface GetEventConfigurationByResourceTypesCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetEventConfigurationByResourceTypesCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/GetFuotaTaskCommand.ts index b625b7e38cbfa..4adcf2e74f960 100644 --- a/clients/client-iot-wireless/src/commands/GetFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetFuotaTaskCommand.ts @@ -85,6 +85,7 @@ export interface GetFuotaTaskCommandOutput extends GetFuotaTaskResponse, __Metad * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetFuotaTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetLogLevelsByResourceTypesCommand.ts b/clients/client-iot-wireless/src/commands/GetLogLevelsByResourceTypesCommand.ts index ca660b59b9ff9..9a65aef1390f3 100644 --- a/clients/client-iot-wireless/src/commands/GetLogLevelsByResourceTypesCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetLogLevelsByResourceTypesCommand.ts @@ -111,6 +111,7 @@ export interface GetLogLevelsByResourceTypesCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetLogLevelsByResourceTypesCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetMetricConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/GetMetricConfigurationCommand.ts index f9baca24dfa45..4947785fa6322 100644 --- a/clients/client-iot-wireless/src/commands/GetMetricConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetMetricConfigurationCommand.ts @@ -73,6 +73,7 @@ export interface GetMetricConfigurationCommandOutput extends GetMetricConfigurat * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetMetricConfigurationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetMetricsCommand.ts b/clients/client-iot-wireless/src/commands/GetMetricsCommand.ts index 02ad73f3f730b..194aa8a59e9b3 100644 --- a/clients/client-iot-wireless/src/commands/GetMetricsCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetMetricsCommand.ts @@ -117,6 +117,7 @@ export interface GetMetricsCommandOutput extends GetMetricsResponse, __MetadataB * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetMetricsCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/GetMulticastGroupCommand.ts index 2570c87e5233e..f645fc8b1def1 100644 --- a/clients/client-iot-wireless/src/commands/GetMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetMulticastGroupCommand.ts @@ -87,6 +87,7 @@ export interface GetMulticastGroupCommandOutput extends GetMulticastGroupRespons * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetMulticastGroupCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetMulticastGroupSessionCommand.ts b/clients/client-iot-wireless/src/commands/GetMulticastGroupSessionCommand.ts index 94768da7ebf5c..3d6bd032321ed 100644 --- a/clients/client-iot-wireless/src/commands/GetMulticastGroupSessionCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetMulticastGroupSessionCommand.ts @@ -76,6 +76,7 @@ export interface GetMulticastGroupSessionCommandOutput extends GetMulticastGroup * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetMulticastGroupSessionCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetNetworkAnalyzerConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/GetNetworkAnalyzerConfigurationCommand.ts index c2789ab870829..ded6e126fd875 100644 --- a/clients/client-iot-wireless/src/commands/GetNetworkAnalyzerConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetNetworkAnalyzerConfigurationCommand.ts @@ -91,6 +91,7 @@ export interface GetNetworkAnalyzerConfigurationCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetNetworkAnalyzerConfigurationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetPartnerAccountCommand.ts b/clients/client-iot-wireless/src/commands/GetPartnerAccountCommand.ts index 94506d0bb0328..a8519e5f01dff 100644 --- a/clients/client-iot-wireless/src/commands/GetPartnerAccountCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetPartnerAccountCommand.ts @@ -78,6 +78,7 @@ export interface GetPartnerAccountCommandOutput extends GetPartnerAccountRespons * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetPartnerAccountCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetPositionCommand.ts b/clients/client-iot-wireless/src/commands/GetPositionCommand.ts index 5e57ad0f5e3f8..442b92280eb95 100644 --- a/clients/client-iot-wireless/src/commands/GetPositionCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetPositionCommand.ts @@ -87,6 +87,7 @@ export interface GetPositionCommandOutput extends GetPositionResponse, __Metadat * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetPositionCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetPositionConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/GetPositionConfigurationCommand.ts index bdaf3d9527faa..ec1eeae360f30 100644 --- a/clients/client-iot-wireless/src/commands/GetPositionConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetPositionConfigurationCommand.ts @@ -85,6 +85,7 @@ export interface GetPositionConfigurationCommandOutput extends GetPositionConfig * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetPositionConfigurationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetPositionEstimateCommand.ts b/clients/client-iot-wireless/src/commands/GetPositionEstimateCommand.ts index 4edca2ab5b44a..bc30821bbac98 100644 --- a/clients/client-iot-wireless/src/commands/GetPositionEstimateCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetPositionEstimateCommand.ts @@ -221,6 +221,7 @@ export interface GetPositionEstimateCommandOutput extends GetPositionEstimateCom * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetPositionEstimateCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetResourceEventConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/GetResourceEventConfigurationCommand.ts index 9b69da801098e..65b875e25ea0e 100644 --- a/clients/client-iot-wireless/src/commands/GetResourceEventConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetResourceEventConfigurationCommand.ts @@ -106,6 +106,7 @@ export interface GetResourceEventConfigurationCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetResourceEventConfigurationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetResourceLogLevelCommand.ts b/clients/client-iot-wireless/src/commands/GetResourceLogLevelCommand.ts index bae716de6708d..2837eab2accc1 100644 --- a/clients/client-iot-wireless/src/commands/GetResourceLogLevelCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetResourceLogLevelCommand.ts @@ -72,6 +72,7 @@ export interface GetResourceLogLevelCommandOutput extends GetResourceLogLevelRes * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetResourceLogLevelCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetResourcePositionCommand.ts b/clients/client-iot-wireless/src/commands/GetResourcePositionCommand.ts index 672cd822f9278..f6d8d54698f21 100644 --- a/clients/client-iot-wireless/src/commands/GetResourcePositionCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetResourcePositionCommand.ts @@ -81,6 +81,7 @@ export interface GetResourcePositionCommandOutput extends GetResourcePositionCom * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetResourcePositionCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetServiceEndpointCommand.ts b/clients/client-iot-wireless/src/commands/GetServiceEndpointCommand.ts index 642fb0b149ed0..1c62c779097db 100644 --- a/clients/client-iot-wireless/src/commands/GetServiceEndpointCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetServiceEndpointCommand.ts @@ -70,6 +70,7 @@ export interface GetServiceEndpointCommandOutput extends GetServiceEndpointRespo * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetServiceEndpointCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetServiceProfileCommand.ts b/clients/client-iot-wireless/src/commands/GetServiceProfileCommand.ts index 50473c09862bc..32ac947099ad9 100644 --- a/clients/client-iot-wireless/src/commands/GetServiceProfileCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetServiceProfileCommand.ts @@ -93,6 +93,7 @@ export interface GetServiceProfileCommandOutput extends GetServiceProfileRespons * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetServiceProfileCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetWirelessDeviceCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessDeviceCommand.ts index bd52a1f52c4ef..6f295cfdce5c3 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessDeviceCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessDeviceCommand.ts @@ -150,6 +150,7 @@ export interface GetWirelessDeviceCommandOutput extends GetWirelessDeviceRespons * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetWirelessDeviceCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetWirelessDeviceImportTaskCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessDeviceImportTaskCommand.ts index 39a040cb7e5cd..73e233a559a26 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessDeviceImportTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessDeviceImportTaskCommand.ts @@ -94,6 +94,7 @@ export interface GetWirelessDeviceImportTaskCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetWirelessDeviceImportTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetWirelessDeviceStatisticsCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessDeviceStatisticsCommand.ts index e6f54467f4286..78b260e7d9817 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessDeviceStatisticsCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessDeviceStatisticsCommand.ts @@ -106,6 +106,7 @@ export interface GetWirelessDeviceStatisticsCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetWirelessDeviceStatisticsCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetWirelessGatewayCertificateCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessGatewayCertificateCommand.ts index 41fda39689a73..ad241eeb8667d 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessGatewayCertificateCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessGatewayCertificateCommand.ts @@ -77,6 +77,7 @@ export interface GetWirelessGatewayCertificateCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetWirelessGatewayCertificateCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetWirelessGatewayCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessGatewayCommand.ts index 7e29166f5c465..f1156c414becf 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessGatewayCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessGatewayCommand.ts @@ -98,6 +98,7 @@ export interface GetWirelessGatewayCommandOutput extends GetWirelessGatewayRespo * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetWirelessGatewayCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetWirelessGatewayFirmwareInformationCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessGatewayFirmwareInformationCommand.ts index f18b343135da2..e917b320202b7 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessGatewayFirmwareInformationCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessGatewayFirmwareInformationCommand.ts @@ -85,6 +85,7 @@ export interface GetWirelessGatewayFirmwareInformationCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetWirelessGatewayFirmwareInformationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetWirelessGatewayStatisticsCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessGatewayStatisticsCommand.ts index d6aaffd19e905..15f358d660a68 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessGatewayStatisticsCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessGatewayStatisticsCommand.ts @@ -77,6 +77,7 @@ export interface GetWirelessGatewayStatisticsCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetWirelessGatewayStatisticsCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskCommand.ts index 2adf3db271a57..f675601928a34 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskCommand.ts @@ -74,6 +74,7 @@ export interface GetWirelessGatewayTaskCommandOutput extends GetWirelessGatewayT * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetWirelessGatewayTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskDefinitionCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskDefinitionCommand.ts index d619a929777dc..4d123f6ced95b 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskDefinitionCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskDefinitionCommand.ts @@ -95,6 +95,7 @@ export interface GetWirelessGatewayTaskDefinitionCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class GetWirelessGatewayTaskDefinitionCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListDestinationsCommand.ts b/clients/client-iot-wireless/src/commands/ListDestinationsCommand.ts index 89215751952f0..53a8aa1186215 100644 --- a/clients/client-iot-wireless/src/commands/ListDestinationsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListDestinationsCommand.ts @@ -78,6 +78,7 @@ export interface ListDestinationsCommandOutput extends ListDestinationsResponse, * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListDestinationsCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListDeviceProfilesCommand.ts b/clients/client-iot-wireless/src/commands/ListDeviceProfilesCommand.ts index b527e8a4802bf..311f3d92e6675 100644 --- a/clients/client-iot-wireless/src/commands/ListDeviceProfilesCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListDeviceProfilesCommand.ts @@ -76,6 +76,7 @@ export interface ListDeviceProfilesCommandOutput extends ListDeviceProfilesRespo * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListDeviceProfilesCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListDevicesForWirelessDeviceImportTaskCommand.ts b/clients/client-iot-wireless/src/commands/ListDevicesForWirelessDeviceImportTaskCommand.ts index c6a69df07b804..15aef692c9e05 100644 --- a/clients/client-iot-wireless/src/commands/ListDevicesForWirelessDeviceImportTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListDevicesForWirelessDeviceImportTaskCommand.ts @@ -96,6 +96,7 @@ export interface ListDevicesForWirelessDeviceImportTaskCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListDevicesForWirelessDeviceImportTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListEventConfigurationsCommand.ts b/clients/client-iot-wireless/src/commands/ListEventConfigurationsCommand.ts index f0468d05421c2..dd8b2413b0e1b 100644 --- a/clients/client-iot-wireless/src/commands/ListEventConfigurationsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListEventConfigurationsCommand.ts @@ -108,6 +108,7 @@ export interface ListEventConfigurationsCommandOutput extends ListEventConfigura * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListEventConfigurationsCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListFuotaTasksCommand.ts b/clients/client-iot-wireless/src/commands/ListFuotaTasksCommand.ts index 3b95fcdd6835f..540a21fb97a3c 100644 --- a/clients/client-iot-wireless/src/commands/ListFuotaTasksCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListFuotaTasksCommand.ts @@ -75,6 +75,7 @@ export interface ListFuotaTasksCommandOutput extends ListFuotaTasksResponse, __M * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListFuotaTasksCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListMulticastGroupsByFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/ListMulticastGroupsByFuotaTaskCommand.ts index 786a2de5c7405..e932e6f6213ce 100644 --- a/clients/client-iot-wireless/src/commands/ListMulticastGroupsByFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListMulticastGroupsByFuotaTaskCommand.ts @@ -82,6 +82,7 @@ export interface ListMulticastGroupsByFuotaTaskCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListMulticastGroupsByFuotaTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListMulticastGroupsCommand.ts b/clients/client-iot-wireless/src/commands/ListMulticastGroupsCommand.ts index 187da8cfe9f84..f4ccbc77654dc 100644 --- a/clients/client-iot-wireless/src/commands/ListMulticastGroupsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListMulticastGroupsCommand.ts @@ -75,6 +75,7 @@ export interface ListMulticastGroupsCommandOutput extends ListMulticastGroupsRes * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListMulticastGroupsCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListNetworkAnalyzerConfigurationsCommand.ts b/clients/client-iot-wireless/src/commands/ListNetworkAnalyzerConfigurationsCommand.ts index 12a4c66c3a938..4d2c0530096cb 100644 --- a/clients/client-iot-wireless/src/commands/ListNetworkAnalyzerConfigurationsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListNetworkAnalyzerConfigurationsCommand.ts @@ -82,6 +82,7 @@ export interface ListNetworkAnalyzerConfigurationsCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListNetworkAnalyzerConfigurationsCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListPartnerAccountsCommand.ts b/clients/client-iot-wireless/src/commands/ListPartnerAccountsCommand.ts index c5aee339f25e6..473842769d502 100644 --- a/clients/client-iot-wireless/src/commands/ListPartnerAccountsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListPartnerAccountsCommand.ts @@ -79,6 +79,7 @@ export interface ListPartnerAccountsCommandOutput extends ListPartnerAccountsRes * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListPartnerAccountsCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListPositionConfigurationsCommand.ts b/clients/client-iot-wireless/src/commands/ListPositionConfigurationsCommand.ts index 9a8ada68c6016..f3c14588e6792 100644 --- a/clients/client-iot-wireless/src/commands/ListPositionConfigurationsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListPositionConfigurationsCommand.ts @@ -90,6 +90,7 @@ export interface ListPositionConfigurationsCommandOutput extends ListPositionCon * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListPositionConfigurationsCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListQueuedMessagesCommand.ts b/clients/client-iot-wireless/src/commands/ListQueuedMessagesCommand.ts index c9d3ef30b6f07..16efaf5763da3 100644 --- a/clients/client-iot-wireless/src/commands/ListQueuedMessagesCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListQueuedMessagesCommand.ts @@ -93,6 +93,7 @@ export interface ListQueuedMessagesCommandOutput extends ListQueuedMessagesRespo * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListQueuedMessagesCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListServiceProfilesCommand.ts b/clients/client-iot-wireless/src/commands/ListServiceProfilesCommand.ts index a8403e5089394..0701d45e31562 100644 --- a/clients/client-iot-wireless/src/commands/ListServiceProfilesCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListServiceProfilesCommand.ts @@ -75,6 +75,7 @@ export interface ListServiceProfilesCommandOutput extends ListServiceProfilesRes * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListServiceProfilesCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListTagsForResourceCommand.ts b/clients/client-iot-wireless/src/commands/ListTagsForResourceCommand.ts index 0d57888858175..ead7c09bcdfdc 100644 --- a/clients/client-iot-wireless/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListTagsForResourceCommand.ts @@ -75,6 +75,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListWirelessDeviceImportTasksCommand.ts b/clients/client-iot-wireless/src/commands/ListWirelessDeviceImportTasksCommand.ts index 0a293c69e3502..7ae55bba08f43 100644 --- a/clients/client-iot-wireless/src/commands/ListWirelessDeviceImportTasksCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListWirelessDeviceImportTasksCommand.ts @@ -99,6 +99,7 @@ export interface ListWirelessDeviceImportTasksCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListWirelessDeviceImportTasksCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListWirelessDevicesCommand.ts b/clients/client-iot-wireless/src/commands/ListWirelessDevicesCommand.ts index 6fdce8c7dc430..235982974ef26 100644 --- a/clients/client-iot-wireless/src/commands/ListWirelessDevicesCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListWirelessDevicesCommand.ts @@ -103,6 +103,7 @@ export interface ListWirelessDevicesCommandOutput extends ListWirelessDevicesRes * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListWirelessDevicesCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListWirelessGatewayTaskDefinitionsCommand.ts b/clients/client-iot-wireless/src/commands/ListWirelessGatewayTaskDefinitionsCommand.ts index fb8ecf16641c6..590dc39637c70 100644 --- a/clients/client-iot-wireless/src/commands/ListWirelessGatewayTaskDefinitionsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListWirelessGatewayTaskDefinitionsCommand.ts @@ -95,6 +95,7 @@ export interface ListWirelessGatewayTaskDefinitionsCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListWirelessGatewayTaskDefinitionsCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ListWirelessGatewaysCommand.ts b/clients/client-iot-wireless/src/commands/ListWirelessGatewaysCommand.ts index 3220d986868fb..1b6b383ccfecc 100644 --- a/clients/client-iot-wireless/src/commands/ListWirelessGatewaysCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListWirelessGatewaysCommand.ts @@ -99,6 +99,7 @@ export interface ListWirelessGatewaysCommandOutput extends ListWirelessGatewaysR * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ListWirelessGatewaysCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/PutPositionConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/PutPositionConfigurationCommand.ts index a1ddc6eeffb7d..48199d975a735 100644 --- a/clients/client-iot-wireless/src/commands/PutPositionConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/PutPositionConfigurationCommand.ts @@ -82,6 +82,7 @@ export interface PutPositionConfigurationCommandOutput extends PutPositionConfig * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class PutPositionConfigurationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/PutResourceLogLevelCommand.ts b/clients/client-iot-wireless/src/commands/PutResourceLogLevelCommand.ts index 013d7f56dbbae..4e697ff93866f 100644 --- a/clients/client-iot-wireless/src/commands/PutResourceLogLevelCommand.ts +++ b/clients/client-iot-wireless/src/commands/PutResourceLogLevelCommand.ts @@ -71,6 +71,7 @@ export interface PutResourceLogLevelCommandOutput extends PutResourceLogLevelRes * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class PutResourceLogLevelCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ResetAllResourceLogLevelsCommand.ts b/clients/client-iot-wireless/src/commands/ResetAllResourceLogLevelsCommand.ts index 8603ab63ba6ef..72d6bed4f3cfb 100644 --- a/clients/client-iot-wireless/src/commands/ResetAllResourceLogLevelsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ResetAllResourceLogLevelsCommand.ts @@ -67,6 +67,7 @@ export interface ResetAllResourceLogLevelsCommandOutput extends ResetAllResource * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ResetAllResourceLogLevelsCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/ResetResourceLogLevelCommand.ts b/clients/client-iot-wireless/src/commands/ResetResourceLogLevelCommand.ts index 01b1766792dce..ed31c674f5c84 100644 --- a/clients/client-iot-wireless/src/commands/ResetResourceLogLevelCommand.ts +++ b/clients/client-iot-wireless/src/commands/ResetResourceLogLevelCommand.ts @@ -70,6 +70,7 @@ export interface ResetResourceLogLevelCommandOutput extends ResetResourceLogLeve * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class ResetResourceLogLevelCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/SendDataToMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/SendDataToMulticastGroupCommand.ts index 1d606e85047a8..7f44b238f032b 100644 --- a/clients/client-iot-wireless/src/commands/SendDataToMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/SendDataToMulticastGroupCommand.ts @@ -79,6 +79,7 @@ export interface SendDataToMulticastGroupCommandOutput extends SendDataToMultica * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class SendDataToMulticastGroupCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/SendDataToWirelessDeviceCommand.ts b/clients/client-iot-wireless/src/commands/SendDataToWirelessDeviceCommand.ts index e1c7eaef94154..70cc3c6ca7536 100644 --- a/clients/client-iot-wireless/src/commands/SendDataToWirelessDeviceCommand.ts +++ b/clients/client-iot-wireless/src/commands/SendDataToWirelessDeviceCommand.ts @@ -89,6 +89,7 @@ export interface SendDataToWirelessDeviceCommandOutput extends SendDataToWireles * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class SendDataToWirelessDeviceCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.ts index 608b89f6f94cb..3c302166319f6 100644 --- a/clients/client-iot-wireless/src/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.ts @@ -85,6 +85,7 @@ export interface StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class StartBulkAssociateWirelessDeviceWithMulticastGroupCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.ts index 2680e0efa470d..cf386325eb420 100644 --- a/clients/client-iot-wireless/src/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.ts @@ -85,6 +85,7 @@ export interface StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOut * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/StartFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/StartFuotaTaskCommand.ts index 69697296ccf8f..23eb291b1d498 100644 --- a/clients/client-iot-wireless/src/commands/StartFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/StartFuotaTaskCommand.ts @@ -74,6 +74,7 @@ export interface StartFuotaTaskCommandOutput extends StartFuotaTaskResponse, __M * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class StartFuotaTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/StartMulticastGroupSessionCommand.ts b/clients/client-iot-wireless/src/commands/StartMulticastGroupSessionCommand.ts index 53f858cd39a6a..d37d7ea556f34 100644 --- a/clients/client-iot-wireless/src/commands/StartMulticastGroupSessionCommand.ts +++ b/clients/client-iot-wireless/src/commands/StartMulticastGroupSessionCommand.ts @@ -78,6 +78,7 @@ export interface StartMulticastGroupSessionCommandOutput extends StartMulticastG * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class StartMulticastGroupSessionCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/StartSingleWirelessDeviceImportTaskCommand.ts b/clients/client-iot-wireless/src/commands/StartSingleWirelessDeviceImportTaskCommand.ts index fa59bc120de47..e3d5edadada0f 100644 --- a/clients/client-iot-wireless/src/commands/StartSingleWirelessDeviceImportTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/StartSingleWirelessDeviceImportTaskCommand.ts @@ -93,6 +93,7 @@ export interface StartSingleWirelessDeviceImportTaskCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class StartSingleWirelessDeviceImportTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/StartWirelessDeviceImportTaskCommand.ts b/clients/client-iot-wireless/src/commands/StartWirelessDeviceImportTaskCommand.ts index bbabfd1733706..c8a8f40fe657e 100644 --- a/clients/client-iot-wireless/src/commands/StartWirelessDeviceImportTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/StartWirelessDeviceImportTaskCommand.ts @@ -91,6 +91,7 @@ export interface StartWirelessDeviceImportTaskCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class StartWirelessDeviceImportTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/TagResourceCommand.ts b/clients/client-iot-wireless/src/commands/TagResourceCommand.ts index 65edbc21b36a2..13a5cbff0f4b7 100644 --- a/clients/client-iot-wireless/src/commands/TagResourceCommand.ts +++ b/clients/client-iot-wireless/src/commands/TagResourceCommand.ts @@ -77,6 +77,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/TestWirelessDeviceCommand.ts b/clients/client-iot-wireless/src/commands/TestWirelessDeviceCommand.ts index 1c4f01a236e3b..bc6977095771a 100644 --- a/clients/client-iot-wireless/src/commands/TestWirelessDeviceCommand.ts +++ b/clients/client-iot-wireless/src/commands/TestWirelessDeviceCommand.ts @@ -68,6 +68,7 @@ export interface TestWirelessDeviceCommandOutput extends TestWirelessDeviceRespo * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class TestWirelessDeviceCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UntagResourceCommand.ts b/clients/client-iot-wireless/src/commands/UntagResourceCommand.ts index 33ba7f4c9728e..be9e4c52ddecc 100644 --- a/clients/client-iot-wireless/src/commands/UntagResourceCommand.ts +++ b/clients/client-iot-wireless/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UpdateDestinationCommand.ts b/clients/client-iot-wireless/src/commands/UpdateDestinationCommand.ts index 0361d8ec4d833..5ce5933df2eb6 100644 --- a/clients/client-iot-wireless/src/commands/UpdateDestinationCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateDestinationCommand.ts @@ -72,6 +72,7 @@ export interface UpdateDestinationCommandOutput extends UpdateDestinationRespons * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UpdateDestinationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UpdateEventConfigurationByResourceTypesCommand.ts b/clients/client-iot-wireless/src/commands/UpdateEventConfigurationByResourceTypesCommand.ts index 67cc56a53d85c..c48d3c068c9b0 100644 --- a/clients/client-iot-wireless/src/commands/UpdateEventConfigurationByResourceTypesCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateEventConfigurationByResourceTypesCommand.ts @@ -98,6 +98,7 @@ export interface UpdateEventConfigurationByResourceTypesCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UpdateEventConfigurationByResourceTypesCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UpdateFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/UpdateFuotaTaskCommand.ts index 6cd52eb62afd8..dff8b4f77eed0 100644 --- a/clients/client-iot-wireless/src/commands/UpdateFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateFuotaTaskCommand.ts @@ -82,6 +82,7 @@ export interface UpdateFuotaTaskCommandOutput extends UpdateFuotaTaskResponse, _ * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UpdateFuotaTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UpdateLogLevelsByResourceTypesCommand.ts b/clients/client-iot-wireless/src/commands/UpdateLogLevelsByResourceTypesCommand.ts index ac5278df9ac14..882e941d609ae 100644 --- a/clients/client-iot-wireless/src/commands/UpdateLogLevelsByResourceTypesCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateLogLevelsByResourceTypesCommand.ts @@ -114,6 +114,7 @@ export interface UpdateLogLevelsByResourceTypesCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UpdateLogLevelsByResourceTypesCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UpdateMetricConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/UpdateMetricConfigurationCommand.ts index 3dfb894a0ce78..5648239cdf4fb 100644 --- a/clients/client-iot-wireless/src/commands/UpdateMetricConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateMetricConfigurationCommand.ts @@ -73,6 +73,7 @@ export interface UpdateMetricConfigurationCommandOutput extends UpdateMetricConf * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UpdateMetricConfigurationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UpdateMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/UpdateMulticastGroupCommand.ts index 7624ad2fed0dd..cab0c43803598 100644 --- a/clients/client-iot-wireless/src/commands/UpdateMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateMulticastGroupCommand.ts @@ -83,6 +83,7 @@ export interface UpdateMulticastGroupCommandOutput extends UpdateMulticastGroupR * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UpdateMulticastGroupCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UpdateNetworkAnalyzerConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/UpdateNetworkAnalyzerConfigurationCommand.ts index ca6187e27455a..16fb4d0b07fd0 100644 --- a/clients/client-iot-wireless/src/commands/UpdateNetworkAnalyzerConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateNetworkAnalyzerConfigurationCommand.ts @@ -100,6 +100,7 @@ export interface UpdateNetworkAnalyzerConfigurationCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UpdateNetworkAnalyzerConfigurationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UpdatePartnerAccountCommand.ts b/clients/client-iot-wireless/src/commands/UpdatePartnerAccountCommand.ts index 38ebbfbacc5a2..20aa413232f9c 100644 --- a/clients/client-iot-wireless/src/commands/UpdatePartnerAccountCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdatePartnerAccountCommand.ts @@ -73,6 +73,7 @@ export interface UpdatePartnerAccountCommandOutput extends UpdatePartnerAccountR * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UpdatePartnerAccountCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UpdatePositionCommand.ts b/clients/client-iot-wireless/src/commands/UpdatePositionCommand.ts index 7cfa0a9a6ec86..b0f1f83a0c190 100644 --- a/clients/client-iot-wireless/src/commands/UpdatePositionCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdatePositionCommand.ts @@ -78,6 +78,7 @@ export interface UpdatePositionCommandOutput extends UpdatePositionResponse, __M * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UpdatePositionCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UpdateResourceEventConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/UpdateResourceEventConfigurationCommand.ts index b6b968cc466dd..80167d3a0d35b 100644 --- a/clients/client-iot-wireless/src/commands/UpdateResourceEventConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateResourceEventConfigurationCommand.ts @@ -108,6 +108,7 @@ export interface UpdateResourceEventConfigurationCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UpdateResourceEventConfigurationCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UpdateResourcePositionCommand.ts b/clients/client-iot-wireless/src/commands/UpdateResourcePositionCommand.ts index 50e874fcff0c7..cc81ae60c4ebc 100644 --- a/clients/client-iot-wireless/src/commands/UpdateResourcePositionCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateResourcePositionCommand.ts @@ -79,6 +79,7 @@ export interface UpdateResourcePositionCommandOutput extends UpdateResourcePosit * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UpdateResourcePositionCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceCommand.ts b/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceCommand.ts index 59d78ad99713a..31d89904fc134 100644 --- a/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceCommand.ts @@ -96,6 +96,7 @@ export interface UpdateWirelessDeviceCommandOutput extends UpdateWirelessDeviceR * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UpdateWirelessDeviceCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceImportTaskCommand.ts b/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceImportTaskCommand.ts index 72c06ecf7af89..6aed2e663fb79 100644 --- a/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceImportTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceImportTaskCommand.ts @@ -79,6 +79,7 @@ export interface UpdateWirelessDeviceImportTaskCommandOutput * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UpdateWirelessDeviceImportTaskCommand extends $Command diff --git a/clients/client-iot-wireless/src/commands/UpdateWirelessGatewayCommand.ts b/clients/client-iot-wireless/src/commands/UpdateWirelessGatewayCommand.ts index 5d65e7cf1928e..278f7019ef09c 100644 --- a/clients/client-iot-wireless/src/commands/UpdateWirelessGatewayCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateWirelessGatewayCommand.ts @@ -79,6 +79,7 @@ export interface UpdateWirelessGatewayCommandOutput extends UpdateWirelessGatewa * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* + * * @public */ export class UpdateWirelessGatewayCommand extends $Command diff --git a/clients/client-iot/src/commands/AcceptCertificateTransferCommand.ts b/clients/client-iot/src/commands/AcceptCertificateTransferCommand.ts index 33ae3442143d1..8f1d5c03a554c 100644 --- a/clients/client-iot/src/commands/AcceptCertificateTransferCommand.ts +++ b/clients/client-iot/src/commands/AcceptCertificateTransferCommand.ts @@ -80,6 +80,7 @@ export interface AcceptCertificateTransferCommandOutput extends __MetadataBearer * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class AcceptCertificateTransferCommand extends $Command diff --git a/clients/client-iot/src/commands/AddThingToBillingGroupCommand.ts b/clients/client-iot/src/commands/AddThingToBillingGroupCommand.ts index 2bf0ba5d5ec5a..8609f8da637ec 100644 --- a/clients/client-iot/src/commands/AddThingToBillingGroupCommand.ts +++ b/clients/client-iot/src/commands/AddThingToBillingGroupCommand.ts @@ -69,6 +69,7 @@ export interface AddThingToBillingGroupCommandOutput extends AddThingToBillingGr * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class AddThingToBillingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/AddThingToThingGroupCommand.ts b/clients/client-iot/src/commands/AddThingToThingGroupCommand.ts index ef6c0ce3b3431..0db0ae91869c2 100644 --- a/clients/client-iot/src/commands/AddThingToThingGroupCommand.ts +++ b/clients/client-iot/src/commands/AddThingToThingGroupCommand.ts @@ -70,6 +70,7 @@ export interface AddThingToThingGroupCommandOutput extends AddThingToThingGroupR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class AddThingToThingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/AssociateSbomWithPackageVersionCommand.ts b/clients/client-iot/src/commands/AssociateSbomWithPackageVersionCommand.ts index 39f3868a93dea..a93e6a4c21ec0 100644 --- a/clients/client-iot/src/commands/AssociateSbomWithPackageVersionCommand.ts +++ b/clients/client-iot/src/commands/AssociateSbomWithPackageVersionCommand.ts @@ -98,6 +98,7 @@ export interface AssociateSbomWithPackageVersionCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class AssociateSbomWithPackageVersionCommand extends $Command diff --git a/clients/client-iot/src/commands/AssociateTargetsWithJobCommand.ts b/clients/client-iot/src/commands/AssociateTargetsWithJobCommand.ts index 5d4978531a762..34c81b19a175e 100644 --- a/clients/client-iot/src/commands/AssociateTargetsWithJobCommand.ts +++ b/clients/client-iot/src/commands/AssociateTargetsWithJobCommand.ts @@ -91,6 +91,7 @@ export interface AssociateTargetsWithJobCommandOutput extends AssociateTargetsWi * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class AssociateTargetsWithJobCommand extends $Command diff --git a/clients/client-iot/src/commands/AttachPolicyCommand.ts b/clients/client-iot/src/commands/AttachPolicyCommand.ts index fab8f441f9364..6d4c80c7260b1 100644 --- a/clients/client-iot/src/commands/AttachPolicyCommand.ts +++ b/clients/client-iot/src/commands/AttachPolicyCommand.ts @@ -77,6 +77,7 @@ export interface AttachPolicyCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class AttachPolicyCommand extends $Command diff --git a/clients/client-iot/src/commands/AttachPrincipalPolicyCommand.ts b/clients/client-iot/src/commands/AttachPrincipalPolicyCommand.ts index 7c02cd6b79cd2..2c39b847b155b 100644 --- a/clients/client-iot/src/commands/AttachPrincipalPolicyCommand.ts +++ b/clients/client-iot/src/commands/AttachPrincipalPolicyCommand.ts @@ -82,6 +82,7 @@ export interface AttachPrincipalPolicyCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class AttachPrincipalPolicyCommand extends $Command diff --git a/clients/client-iot/src/commands/AttachSecurityProfileCommand.ts b/clients/client-iot/src/commands/AttachSecurityProfileCommand.ts index 1990a369e46e0..eb0e96cbef698 100644 --- a/clients/client-iot/src/commands/AttachSecurityProfileCommand.ts +++ b/clients/client-iot/src/commands/AttachSecurityProfileCommand.ts @@ -76,6 +76,7 @@ export interface AttachSecurityProfileCommandOutput extends AttachSecurityProfil * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class AttachSecurityProfileCommand extends $Command diff --git a/clients/client-iot/src/commands/AttachThingPrincipalCommand.ts b/clients/client-iot/src/commands/AttachThingPrincipalCommand.ts index fac4ab27f9797..91f7b643a81bb 100644 --- a/clients/client-iot/src/commands/AttachThingPrincipalCommand.ts +++ b/clients/client-iot/src/commands/AttachThingPrincipalCommand.ts @@ -75,6 +75,7 @@ export interface AttachThingPrincipalCommandOutput extends AttachThingPrincipalR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class AttachThingPrincipalCommand extends $Command diff --git a/clients/client-iot/src/commands/CancelAuditMitigationActionsTaskCommand.ts b/clients/client-iot/src/commands/CancelAuditMitigationActionsTaskCommand.ts index 32a20cbb77d22..b97c5c328a020 100644 --- a/clients/client-iot/src/commands/CancelAuditMitigationActionsTaskCommand.ts +++ b/clients/client-iot/src/commands/CancelAuditMitigationActionsTaskCommand.ts @@ -73,6 +73,7 @@ export interface CancelAuditMitigationActionsTaskCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CancelAuditMitigationActionsTaskCommand extends $Command diff --git a/clients/client-iot/src/commands/CancelAuditTaskCommand.ts b/clients/client-iot/src/commands/CancelAuditTaskCommand.ts index eb98037090c03..2fe147b139a3d 100644 --- a/clients/client-iot/src/commands/CancelAuditTaskCommand.ts +++ b/clients/client-iot/src/commands/CancelAuditTaskCommand.ts @@ -66,6 +66,7 @@ export interface CancelAuditTaskCommandOutput extends CancelAuditTaskResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CancelAuditTaskCommand extends $Command diff --git a/clients/client-iot/src/commands/CancelCertificateTransferCommand.ts b/clients/client-iot/src/commands/CancelCertificateTransferCommand.ts index 7ba37b6221c0a..87623f7771eab 100644 --- a/clients/client-iot/src/commands/CancelCertificateTransferCommand.ts +++ b/clients/client-iot/src/commands/CancelCertificateTransferCommand.ts @@ -83,6 +83,7 @@ export interface CancelCertificateTransferCommandOutput extends __MetadataBearer * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CancelCertificateTransferCommand extends $Command diff --git a/clients/client-iot/src/commands/CancelDetectMitigationActionsTaskCommand.ts b/clients/client-iot/src/commands/CancelDetectMitigationActionsTaskCommand.ts index 3f9b186f72adf..4b7aa8855a23c 100644 --- a/clients/client-iot/src/commands/CancelDetectMitigationActionsTaskCommand.ts +++ b/clients/client-iot/src/commands/CancelDetectMitigationActionsTaskCommand.ts @@ -76,6 +76,7 @@ export interface CancelDetectMitigationActionsTaskCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CancelDetectMitigationActionsTaskCommand extends $Command diff --git a/clients/client-iot/src/commands/CancelJobCommand.ts b/clients/client-iot/src/commands/CancelJobCommand.ts index d6fa99cc0c326..8994432b1f1c1 100644 --- a/clients/client-iot/src/commands/CancelJobCommand.ts +++ b/clients/client-iot/src/commands/CancelJobCommand.ts @@ -76,6 +76,7 @@ export interface CancelJobCommandOutput extends CancelJobResponse, __MetadataBea * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CancelJobCommand extends $Command diff --git a/clients/client-iot/src/commands/CancelJobExecutionCommand.ts b/clients/client-iot/src/commands/CancelJobExecutionCommand.ts index 441e226681e8e..abda1d6cf0d52 100644 --- a/clients/client-iot/src/commands/CancelJobExecutionCommand.ts +++ b/clients/client-iot/src/commands/CancelJobExecutionCommand.ts @@ -82,6 +82,7 @@ export interface CancelJobExecutionCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CancelJobExecutionCommand extends $Command diff --git a/clients/client-iot/src/commands/ClearDefaultAuthorizerCommand.ts b/clients/client-iot/src/commands/ClearDefaultAuthorizerCommand.ts index 3fae1e88931b5..e1d58e09ae849 100644 --- a/clients/client-iot/src/commands/ClearDefaultAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/ClearDefaultAuthorizerCommand.ts @@ -70,6 +70,7 @@ export interface ClearDefaultAuthorizerCommandOutput extends ClearDefaultAuthori * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ClearDefaultAuthorizerCommand extends $Command diff --git a/clients/client-iot/src/commands/ConfirmTopicRuleDestinationCommand.ts b/clients/client-iot/src/commands/ConfirmTopicRuleDestinationCommand.ts index 7d451267c0345..f73449a4ae1da 100644 --- a/clients/client-iot/src/commands/ConfirmTopicRuleDestinationCommand.ts +++ b/clients/client-iot/src/commands/ConfirmTopicRuleDestinationCommand.ts @@ -78,6 +78,7 @@ export interface ConfirmTopicRuleDestinationCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ConfirmTopicRuleDestinationCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateAuditSuppressionCommand.ts b/clients/client-iot/src/commands/CreateAuditSuppressionCommand.ts index 886c7b794b955..35b314f166844 100644 --- a/clients/client-iot/src/commands/CreateAuditSuppressionCommand.ts +++ b/clients/client-iot/src/commands/CreateAuditSuppressionCommand.ts @@ -94,6 +94,7 @@ export interface CreateAuditSuppressionCommandOutput extends CreateAuditSuppress * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateAuditSuppressionCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateAuthorizerCommand.ts b/clients/client-iot/src/commands/CreateAuthorizerCommand.ts index b73a7da4dac75..5ab16ecc086e5 100644 --- a/clients/client-iot/src/commands/CreateAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/CreateAuthorizerCommand.ts @@ -92,6 +92,7 @@ export interface CreateAuthorizerCommandOutput extends CreateAuthorizerResponse, * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateAuthorizerCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateBillingGroupCommand.ts b/clients/client-iot/src/commands/CreateBillingGroupCommand.ts index 01854beca7547..50cca9ef69eca 100644 --- a/clients/client-iot/src/commands/CreateBillingGroupCommand.ts +++ b/clients/client-iot/src/commands/CreateBillingGroupCommand.ts @@ -81,6 +81,7 @@ export interface CreateBillingGroupCommandOutput extends CreateBillingGroupRespo * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateBillingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateCertificateFromCsrCommand.ts b/clients/client-iot/src/commands/CreateCertificateFromCsrCommand.ts index dafc80d71ec23..83a37dc207426 100644 --- a/clients/client-iot/src/commands/CreateCertificateFromCsrCommand.ts +++ b/clients/client-iot/src/commands/CreateCertificateFromCsrCommand.ts @@ -120,6 +120,7 @@ export interface CreateCertificateFromCsrCommandOutput extends CreateCertificate * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateCertificateFromCsrCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateCertificateProviderCommand.ts b/clients/client-iot/src/commands/CreateCertificateProviderCommand.ts index 3c15caf6dd482..c7449cd428441 100644 --- a/clients/client-iot/src/commands/CreateCertificateProviderCommand.ts +++ b/clients/client-iot/src/commands/CreateCertificateProviderCommand.ts @@ -100,6 +100,7 @@ export interface CreateCertificateProviderCommandOutput extends CreateCertificat * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateCertificateProviderCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateCommandCommand.ts b/clients/client-iot/src/commands/CreateCommandCommand.ts index 3f92aadc6e607..cb8a4770ef384 100644 --- a/clients/client-iot/src/commands/CreateCommandCommand.ts +++ b/clients/client-iot/src/commands/CreateCommandCommand.ts @@ -111,6 +111,7 @@ export interface CreateCommandCommandOutput extends CreateCommandResponse, __Met * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateCommandCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateCustomMetricCommand.ts b/clients/client-iot/src/commands/CreateCustomMetricCommand.ts index c13cff79d8a59..da23914289e7a 100644 --- a/clients/client-iot/src/commands/CreateCustomMetricCommand.ts +++ b/clients/client-iot/src/commands/CreateCustomMetricCommand.ts @@ -84,6 +84,7 @@ export interface CreateCustomMetricCommandOutput extends CreateCustomMetricRespo * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateCustomMetricCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateDimensionCommand.ts b/clients/client-iot/src/commands/CreateDimensionCommand.ts index c50424d187eec..d98d736bb9a77 100644 --- a/clients/client-iot/src/commands/CreateDimensionCommand.ts +++ b/clients/client-iot/src/commands/CreateDimensionCommand.ts @@ -84,6 +84,7 @@ export interface CreateDimensionCommandOutput extends CreateDimensionResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateDimensionCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateDomainConfigurationCommand.ts b/clients/client-iot/src/commands/CreateDomainConfigurationCommand.ts index c5eaf3fbf8f75..203bd7eaf95a4 100644 --- a/clients/client-iot/src/commands/CreateDomainConfigurationCommand.ts +++ b/clients/client-iot/src/commands/CreateDomainConfigurationCommand.ts @@ -110,6 +110,7 @@ export interface CreateDomainConfigurationCommandOutput extends CreateDomainConf * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateDomainConfigurationCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateDynamicThingGroupCommand.ts b/clients/client-iot/src/commands/CreateDynamicThingGroupCommand.ts index 06e0b0a9e56e3..c0cb8ed4e5743 100644 --- a/clients/client-iot/src/commands/CreateDynamicThingGroupCommand.ts +++ b/clients/client-iot/src/commands/CreateDynamicThingGroupCommand.ts @@ -100,6 +100,7 @@ export interface CreateDynamicThingGroupCommandOutput extends CreateDynamicThing * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateDynamicThingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateFleetMetricCommand.ts b/clients/client-iot/src/commands/CreateFleetMetricCommand.ts index f978f109bfc97..1f7d6d1dac385 100644 --- a/clients/client-iot/src/commands/CreateFleetMetricCommand.ts +++ b/clients/client-iot/src/commands/CreateFleetMetricCommand.ts @@ -109,6 +109,7 @@ export interface CreateFleetMetricCommandOutput extends CreateFleetMetricRespons * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateFleetMetricCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateJobCommand.ts b/clients/client-iot/src/commands/CreateJobCommand.ts index b2b4ad7eae7fd..9515a2dfa7aaa 100644 --- a/clients/client-iot/src/commands/CreateJobCommand.ts +++ b/clients/client-iot/src/commands/CreateJobCommand.ts @@ -144,6 +144,7 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateJobCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateJobTemplateCommand.ts b/clients/client-iot/src/commands/CreateJobTemplateCommand.ts index c905a7141df8f..0a572f548c10b 100644 --- a/clients/client-iot/src/commands/CreateJobTemplateCommand.ts +++ b/clients/client-iot/src/commands/CreateJobTemplateCommand.ts @@ -130,6 +130,7 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateJobTemplateCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateKeysAndCertificateCommand.ts b/clients/client-iot/src/commands/CreateKeysAndCertificateCommand.ts index 57440a675da4b..526593cfdb75f 100644 --- a/clients/client-iot/src/commands/CreateKeysAndCertificateCommand.ts +++ b/clients/client-iot/src/commands/CreateKeysAndCertificateCommand.ts @@ -86,6 +86,7 @@ export interface CreateKeysAndCertificateCommandOutput extends CreateKeysAndCert * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateKeysAndCertificateCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateMitigationActionCommand.ts b/clients/client-iot/src/commands/CreateMitigationActionCommand.ts index 4e795bc1d0d62..9cf38b0078799 100644 --- a/clients/client-iot/src/commands/CreateMitigationActionCommand.ts +++ b/clients/client-iot/src/commands/CreateMitigationActionCommand.ts @@ -104,6 +104,7 @@ export interface CreateMitigationActionCommandOutput extends CreateMitigationAct * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateMitigationActionCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateOTAUpdateCommand.ts b/clients/client-iot/src/commands/CreateOTAUpdateCommand.ts index 8d7bf6c213ac5..6b42aaf803663 100644 --- a/clients/client-iot/src/commands/CreateOTAUpdateCommand.ts +++ b/clients/client-iot/src/commands/CreateOTAUpdateCommand.ts @@ -178,6 +178,7 @@ export interface CreateOTAUpdateCommandOutput extends CreateOTAUpdateResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateOTAUpdateCommand extends $Command diff --git a/clients/client-iot/src/commands/CreatePackageCommand.ts b/clients/client-iot/src/commands/CreatePackageCommand.ts index d46ccef1af8a7..08b204c06bff4 100644 --- a/clients/client-iot/src/commands/CreatePackageCommand.ts +++ b/clients/client-iot/src/commands/CreatePackageCommand.ts @@ -84,6 +84,7 @@ export interface CreatePackageCommandOutput extends CreatePackageResponse, __Met * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreatePackageCommand extends $Command diff --git a/clients/client-iot/src/commands/CreatePackageVersionCommand.ts b/clients/client-iot/src/commands/CreatePackageVersionCommand.ts index d9d311a160deb..1eac46541a5bc 100644 --- a/clients/client-iot/src/commands/CreatePackageVersionCommand.ts +++ b/clients/client-iot/src/commands/CreatePackageVersionCommand.ts @@ -102,6 +102,7 @@ export interface CreatePackageVersionCommandOutput extends CreatePackageVersionR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreatePackageVersionCommand extends $Command diff --git a/clients/client-iot/src/commands/CreatePolicyCommand.ts b/clients/client-iot/src/commands/CreatePolicyCommand.ts index d03c183a78c04..b52db1de31789 100644 --- a/clients/client-iot/src/commands/CreatePolicyCommand.ts +++ b/clients/client-iot/src/commands/CreatePolicyCommand.ts @@ -90,6 +90,7 @@ export interface CreatePolicyCommandOutput extends CreatePolicyResponse, __Metad * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreatePolicyCommand extends $Command diff --git a/clients/client-iot/src/commands/CreatePolicyVersionCommand.ts b/clients/client-iot/src/commands/CreatePolicyVersionCommand.ts index ec25e26d3f805..6d1c5dec477d1 100644 --- a/clients/client-iot/src/commands/CreatePolicyVersionCommand.ts +++ b/clients/client-iot/src/commands/CreatePolicyVersionCommand.ts @@ -91,6 +91,7 @@ export interface CreatePolicyVersionCommandOutput extends CreatePolicyVersionRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreatePolicyVersionCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateProvisioningClaimCommand.ts b/clients/client-iot/src/commands/CreateProvisioningClaimCommand.ts index 81e58f0da004a..a165ebc461827 100644 --- a/clients/client-iot/src/commands/CreateProvisioningClaimCommand.ts +++ b/clients/client-iot/src/commands/CreateProvisioningClaimCommand.ts @@ -84,6 +84,7 @@ export interface CreateProvisioningClaimCommandOutput extends CreateProvisioning * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateProvisioningClaimCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateProvisioningTemplateCommand.ts b/clients/client-iot/src/commands/CreateProvisioningTemplateCommand.ts index c6704d327e139..ee9ecfc8cae19 100644 --- a/clients/client-iot/src/commands/CreateProvisioningTemplateCommand.ts +++ b/clients/client-iot/src/commands/CreateProvisioningTemplateCommand.ts @@ -91,6 +91,7 @@ export interface CreateProvisioningTemplateCommandOutput extends CreateProvision * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateProvisioningTemplateCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateProvisioningTemplateVersionCommand.ts b/clients/client-iot/src/commands/CreateProvisioningTemplateVersionCommand.ts index 9978cc3db76c6..049bc41954d23 100644 --- a/clients/client-iot/src/commands/CreateProvisioningTemplateVersionCommand.ts +++ b/clients/client-iot/src/commands/CreateProvisioningTemplateVersionCommand.ts @@ -91,6 +91,7 @@ export interface CreateProvisioningTemplateVersionCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateProvisioningTemplateVersionCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateRoleAliasCommand.ts b/clients/client-iot/src/commands/CreateRoleAliasCommand.ts index d569185d5de6d..38f7b7f4492aa 100644 --- a/clients/client-iot/src/commands/CreateRoleAliasCommand.ts +++ b/clients/client-iot/src/commands/CreateRoleAliasCommand.ts @@ -94,6 +94,7 @@ export interface CreateRoleAliasCommandOutput extends CreateRoleAliasResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateRoleAliasCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateScheduledAuditCommand.ts b/clients/client-iot/src/commands/CreateScheduledAuditCommand.ts index 4ebcc240a5f3d..4b5dbd68c31c0 100644 --- a/clients/client-iot/src/commands/CreateScheduledAuditCommand.ts +++ b/clients/client-iot/src/commands/CreateScheduledAuditCommand.ts @@ -84,6 +84,7 @@ export interface CreateScheduledAuditCommandOutput extends CreateScheduledAuditR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateScheduledAuditCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateSecurityProfileCommand.ts b/clients/client-iot/src/commands/CreateSecurityProfileCommand.ts index 228a6cc5b408d..e1bb7a47bee9d 100644 --- a/clients/client-iot/src/commands/CreateSecurityProfileCommand.ts +++ b/clients/client-iot/src/commands/CreateSecurityProfileCommand.ts @@ -139,6 +139,7 @@ export interface CreateSecurityProfileCommandOutput extends CreateSecurityProfil * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateSecurityProfileCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateStreamCommand.ts b/clients/client-iot/src/commands/CreateStreamCommand.ts index e7d39f3a3754b..e94230149d876 100644 --- a/clients/client-iot/src/commands/CreateStreamCommand.ts +++ b/clients/client-iot/src/commands/CreateStreamCommand.ts @@ -103,6 +103,7 @@ export interface CreateStreamCommandOutput extends CreateStreamResponse, __Metad * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateStreamCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateThingCommand.ts b/clients/client-iot/src/commands/CreateThingCommand.ts index 5aae9ed285898..9ee37a0254d1b 100644 --- a/clients/client-iot/src/commands/CreateThingCommand.ts +++ b/clients/client-iot/src/commands/CreateThingCommand.ts @@ -94,6 +94,7 @@ export interface CreateThingCommandOutput extends CreateThingResponse, __Metadat * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateThingCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateThingGroupCommand.ts b/clients/client-iot/src/commands/CreateThingGroupCommand.ts index 240c73e8e7519..f04818ab2c50c 100644 --- a/clients/client-iot/src/commands/CreateThingGroupCommand.ts +++ b/clients/client-iot/src/commands/CreateThingGroupCommand.ts @@ -93,6 +93,7 @@ export interface CreateThingGroupCommandOutput extends CreateThingGroupResponse, * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateThingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateThingTypeCommand.ts b/clients/client-iot/src/commands/CreateThingTypeCommand.ts index 9f1042dd311f2..8f82f2e32dfe6 100644 --- a/clients/client-iot/src/commands/CreateThingTypeCommand.ts +++ b/clients/client-iot/src/commands/CreateThingTypeCommand.ts @@ -100,6 +100,7 @@ export interface CreateThingTypeCommandOutput extends CreateThingTypeResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateThingTypeCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateTopicRuleCommand.ts b/clients/client-iot/src/commands/CreateTopicRuleCommand.ts index 4450a5a0dc03b..40c60db3833d9 100644 --- a/clients/client-iot/src/commands/CreateTopicRuleCommand.ts +++ b/clients/client-iot/src/commands/CreateTopicRuleCommand.ts @@ -495,6 +495,7 @@ export interface CreateTopicRuleCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateTopicRuleCommand extends $Command diff --git a/clients/client-iot/src/commands/CreateTopicRuleDestinationCommand.ts b/clients/client-iot/src/commands/CreateTopicRuleDestinationCommand.ts index 684bc42847c7e..1c4601d1df62f 100644 --- a/clients/client-iot/src/commands/CreateTopicRuleDestinationCommand.ts +++ b/clients/client-iot/src/commands/CreateTopicRuleDestinationCommand.ts @@ -106,6 +106,7 @@ export interface CreateTopicRuleDestinationCommandOutput extends CreateTopicRule * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class CreateTopicRuleDestinationCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteAccountAuditConfigurationCommand.ts b/clients/client-iot/src/commands/DeleteAccountAuditConfigurationCommand.ts index c0e2e3d83586a..0e03bff5fcfe3 100644 --- a/clients/client-iot/src/commands/DeleteAccountAuditConfigurationCommand.ts +++ b/clients/client-iot/src/commands/DeleteAccountAuditConfigurationCommand.ts @@ -73,6 +73,7 @@ export interface DeleteAccountAuditConfigurationCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteAccountAuditConfigurationCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteAuditSuppressionCommand.ts b/clients/client-iot/src/commands/DeleteAuditSuppressionCommand.ts index 6b32e14e3ea79..29ad11eff3552 100644 --- a/clients/client-iot/src/commands/DeleteAuditSuppressionCommand.ts +++ b/clients/client-iot/src/commands/DeleteAuditSuppressionCommand.ts @@ -84,6 +84,7 @@ export interface DeleteAuditSuppressionCommandOutput extends DeleteAuditSuppress * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteAuditSuppressionCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteAuthorizerCommand.ts b/clients/client-iot/src/commands/DeleteAuthorizerCommand.ts index 5f1c10eda39aa..0f43fed609220 100644 --- a/clients/client-iot/src/commands/DeleteAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/DeleteAuthorizerCommand.ts @@ -76,6 +76,7 @@ export interface DeleteAuthorizerCommandOutput extends DeleteAuthorizerResponse, * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteAuthorizerCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteBillingGroupCommand.ts b/clients/client-iot/src/commands/DeleteBillingGroupCommand.ts index f5d98f978afe7..fae69968ae630 100644 --- a/clients/client-iot/src/commands/DeleteBillingGroupCommand.ts +++ b/clients/client-iot/src/commands/DeleteBillingGroupCommand.ts @@ -69,6 +69,7 @@ export interface DeleteBillingGroupCommandOutput extends DeleteBillingGroupRespo * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteBillingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteCACertificateCommand.ts b/clients/client-iot/src/commands/DeleteCACertificateCommand.ts index a7c1a360cd295..ddd9eee2dd69e 100644 --- a/clients/client-iot/src/commands/DeleteCACertificateCommand.ts +++ b/clients/client-iot/src/commands/DeleteCACertificateCommand.ts @@ -75,6 +75,7 @@ export interface DeleteCACertificateCommandOutput extends DeleteCACertificateRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteCACertificateCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteCertificateCommand.ts b/clients/client-iot/src/commands/DeleteCertificateCommand.ts index 6e71845bf9cf8..3113acc55372d 100644 --- a/clients/client-iot/src/commands/DeleteCertificateCommand.ts +++ b/clients/client-iot/src/commands/DeleteCertificateCommand.ts @@ -83,6 +83,7 @@ export interface DeleteCertificateCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteCertificateCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteCertificateProviderCommand.ts b/clients/client-iot/src/commands/DeleteCertificateProviderCommand.ts index 367ab4f8da5aa..0af1ef7cf2ba6 100644 --- a/clients/client-iot/src/commands/DeleteCertificateProviderCommand.ts +++ b/clients/client-iot/src/commands/DeleteCertificateProviderCommand.ts @@ -80,6 +80,7 @@ export interface DeleteCertificateProviderCommandOutput extends DeleteCertificat * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteCertificateProviderCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteCommandCommand.ts b/clients/client-iot/src/commands/DeleteCommandCommand.ts index 93b0bf2bcd558..96b7956ba3949 100644 --- a/clients/client-iot/src/commands/DeleteCommandCommand.ts +++ b/clients/client-iot/src/commands/DeleteCommandCommand.ts @@ -68,6 +68,7 @@ export interface DeleteCommandCommandOutput extends DeleteCommandResponse, __Met * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteCommandCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteCommandExecutionCommand.ts b/clients/client-iot/src/commands/DeleteCommandExecutionCommand.ts index f2d6aa510a3c5..bc466ee4e5dda 100644 --- a/clients/client-iot/src/commands/DeleteCommandExecutionCommand.ts +++ b/clients/client-iot/src/commands/DeleteCommandExecutionCommand.ts @@ -71,6 +71,7 @@ export interface DeleteCommandExecutionCommandOutput extends DeleteCommandExecut * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteCommandExecutionCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteCustomMetricCommand.ts b/clients/client-iot/src/commands/DeleteCustomMetricCommand.ts index 292faeca59b22..8ee08da28783b 100644 --- a/clients/client-iot/src/commands/DeleteCustomMetricCommand.ts +++ b/clients/client-iot/src/commands/DeleteCustomMetricCommand.ts @@ -73,6 +73,7 @@ export interface DeleteCustomMetricCommandOutput extends DeleteCustomMetricRespo * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteCustomMetricCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteDimensionCommand.ts b/clients/client-iot/src/commands/DeleteDimensionCommand.ts index 9aba14163e1bb..26ca6453a61cc 100644 --- a/clients/client-iot/src/commands/DeleteDimensionCommand.ts +++ b/clients/client-iot/src/commands/DeleteDimensionCommand.ts @@ -63,6 +63,7 @@ export interface DeleteDimensionCommandOutput extends DeleteDimensionResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteDimensionCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteDomainConfigurationCommand.ts b/clients/client-iot/src/commands/DeleteDomainConfigurationCommand.ts index 5e2937373c57e..9ec7fbcb85739 100644 --- a/clients/client-iot/src/commands/DeleteDomainConfigurationCommand.ts +++ b/clients/client-iot/src/commands/DeleteDomainConfigurationCommand.ts @@ -72,6 +72,7 @@ export interface DeleteDomainConfigurationCommandOutput extends DeleteDomainConf * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteDomainConfigurationCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteDynamicThingGroupCommand.ts b/clients/client-iot/src/commands/DeleteDynamicThingGroupCommand.ts index d18798b39e770..558a95c68facd 100644 --- a/clients/client-iot/src/commands/DeleteDynamicThingGroupCommand.ts +++ b/clients/client-iot/src/commands/DeleteDynamicThingGroupCommand.ts @@ -69,6 +69,7 @@ export interface DeleteDynamicThingGroupCommandOutput extends DeleteDynamicThing * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteDynamicThingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteFleetMetricCommand.ts b/clients/client-iot/src/commands/DeleteFleetMetricCommand.ts index 633f2e9dd2c4d..593a9a0b71442 100644 --- a/clients/client-iot/src/commands/DeleteFleetMetricCommand.ts +++ b/clients/client-iot/src/commands/DeleteFleetMetricCommand.ts @@ -76,6 +76,7 @@ export interface DeleteFleetMetricCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteFleetMetricCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteJobCommand.ts b/clients/client-iot/src/commands/DeleteJobCommand.ts index a1e51ce23d801..c8d077cced675 100644 --- a/clients/client-iot/src/commands/DeleteJobCommand.ts +++ b/clients/client-iot/src/commands/DeleteJobCommand.ts @@ -82,6 +82,7 @@ export interface DeleteJobCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteJobCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteJobExecutionCommand.ts b/clients/client-iot/src/commands/DeleteJobExecutionCommand.ts index d1d42d4cecdce..a0b6da419653f 100644 --- a/clients/client-iot/src/commands/DeleteJobExecutionCommand.ts +++ b/clients/client-iot/src/commands/DeleteJobExecutionCommand.ts @@ -75,6 +75,7 @@ export interface DeleteJobExecutionCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteJobExecutionCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteJobTemplateCommand.ts b/clients/client-iot/src/commands/DeleteJobTemplateCommand.ts index 3bca4755091e2..bb5e66f0bc8ea 100644 --- a/clients/client-iot/src/commands/DeleteJobTemplateCommand.ts +++ b/clients/client-iot/src/commands/DeleteJobTemplateCommand.ts @@ -65,6 +65,7 @@ export interface DeleteJobTemplateCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteJobTemplateCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteMitigationActionCommand.ts b/clients/client-iot/src/commands/DeleteMitigationActionCommand.ts index 25a7868a2fba3..5e7f4b8ea93d0 100644 --- a/clients/client-iot/src/commands/DeleteMitigationActionCommand.ts +++ b/clients/client-iot/src/commands/DeleteMitigationActionCommand.ts @@ -63,6 +63,7 @@ export interface DeleteMitigationActionCommandOutput extends DeleteMitigationAct * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteMitigationActionCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteOTAUpdateCommand.ts b/clients/client-iot/src/commands/DeleteOTAUpdateCommand.ts index 0044109fea64b..d8a7d74014acf 100644 --- a/clients/client-iot/src/commands/DeleteOTAUpdateCommand.ts +++ b/clients/client-iot/src/commands/DeleteOTAUpdateCommand.ts @@ -79,6 +79,7 @@ export interface DeleteOTAUpdateCommandOutput extends DeleteOTAUpdateResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteOTAUpdateCommand extends $Command diff --git a/clients/client-iot/src/commands/DeletePackageCommand.ts b/clients/client-iot/src/commands/DeletePackageCommand.ts index 7c4a6fee7397b..37caae13297d9 100644 --- a/clients/client-iot/src/commands/DeletePackageCommand.ts +++ b/clients/client-iot/src/commands/DeletePackageCommand.ts @@ -67,6 +67,7 @@ export interface DeletePackageCommandOutput extends DeletePackageResponse, __Met * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeletePackageCommand extends $Command diff --git a/clients/client-iot/src/commands/DeletePackageVersionCommand.ts b/clients/client-iot/src/commands/DeletePackageVersionCommand.ts index c1de5f2f60128..64995cc77f15f 100644 --- a/clients/client-iot/src/commands/DeletePackageVersionCommand.ts +++ b/clients/client-iot/src/commands/DeletePackageVersionCommand.ts @@ -67,6 +67,7 @@ export interface DeletePackageVersionCommandOutput extends DeletePackageVersionR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeletePackageVersionCommand extends $Command diff --git a/clients/client-iot/src/commands/DeletePolicyCommand.ts b/clients/client-iot/src/commands/DeletePolicyCommand.ts index 98dd51605d99d..18f36192b3b3c 100644 --- a/clients/client-iot/src/commands/DeletePolicyCommand.ts +++ b/clients/client-iot/src/commands/DeletePolicyCommand.ts @@ -87,6 +87,7 @@ export interface DeletePolicyCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeletePolicyCommand extends $Command diff --git a/clients/client-iot/src/commands/DeletePolicyVersionCommand.ts b/clients/client-iot/src/commands/DeletePolicyVersionCommand.ts index 877fdae7a1ca2..1a729016fd2b4 100644 --- a/clients/client-iot/src/commands/DeletePolicyVersionCommand.ts +++ b/clients/client-iot/src/commands/DeletePolicyVersionCommand.ts @@ -79,6 +79,7 @@ export interface DeletePolicyVersionCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeletePolicyVersionCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteProvisioningTemplateCommand.ts b/clients/client-iot/src/commands/DeleteProvisioningTemplateCommand.ts index 0d5a9205458d8..0ebeda5191c9c 100644 --- a/clients/client-iot/src/commands/DeleteProvisioningTemplateCommand.ts +++ b/clients/client-iot/src/commands/DeleteProvisioningTemplateCommand.ts @@ -77,6 +77,7 @@ export interface DeleteProvisioningTemplateCommandOutput extends DeleteProvision * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteProvisioningTemplateCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteProvisioningTemplateVersionCommand.ts b/clients/client-iot/src/commands/DeleteProvisioningTemplateVersionCommand.ts index 2a065580e2bcd..9223b4950a249 100644 --- a/clients/client-iot/src/commands/DeleteProvisioningTemplateVersionCommand.ts +++ b/clients/client-iot/src/commands/DeleteProvisioningTemplateVersionCommand.ts @@ -86,6 +86,7 @@ export interface DeleteProvisioningTemplateVersionCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteProvisioningTemplateVersionCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteRegistrationCodeCommand.ts b/clients/client-iot/src/commands/DeleteRegistrationCodeCommand.ts index 78c693edae24c..c0991c2ff0255 100644 --- a/clients/client-iot/src/commands/DeleteRegistrationCodeCommand.ts +++ b/clients/client-iot/src/commands/DeleteRegistrationCodeCommand.ts @@ -67,6 +67,7 @@ export interface DeleteRegistrationCodeCommandOutput extends DeleteRegistrationC * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteRegistrationCodeCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteRoleAliasCommand.ts b/clients/client-iot/src/commands/DeleteRoleAliasCommand.ts index 6688b37b6057d..02a0d8ac840c7 100644 --- a/clients/client-iot/src/commands/DeleteRoleAliasCommand.ts +++ b/clients/client-iot/src/commands/DeleteRoleAliasCommand.ts @@ -76,6 +76,7 @@ export interface DeleteRoleAliasCommandOutput extends DeleteRoleAliasResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteRoleAliasCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteScheduledAuditCommand.ts b/clients/client-iot/src/commands/DeleteScheduledAuditCommand.ts index 4cc4ed565a767..7d103c318bd13 100644 --- a/clients/client-iot/src/commands/DeleteScheduledAuditCommand.ts +++ b/clients/client-iot/src/commands/DeleteScheduledAuditCommand.ts @@ -66,6 +66,7 @@ export interface DeleteScheduledAuditCommandOutput extends DeleteScheduledAuditR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteScheduledAuditCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteSecurityProfileCommand.ts b/clients/client-iot/src/commands/DeleteSecurityProfileCommand.ts index 439b540c8ce3b..b194cefcbd06d 100644 --- a/clients/client-iot/src/commands/DeleteSecurityProfileCommand.ts +++ b/clients/client-iot/src/commands/DeleteSecurityProfileCommand.ts @@ -69,6 +69,7 @@ export interface DeleteSecurityProfileCommandOutput extends DeleteSecurityProfil * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteSecurityProfileCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteStreamCommand.ts b/clients/client-iot/src/commands/DeleteStreamCommand.ts index 17c889897b26e..05c703acc0b29 100644 --- a/clients/client-iot/src/commands/DeleteStreamCommand.ts +++ b/clients/client-iot/src/commands/DeleteStreamCommand.ts @@ -76,6 +76,7 @@ export interface DeleteStreamCommandOutput extends DeleteStreamResponse, __Metad * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteStreamCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteThingCommand.ts b/clients/client-iot/src/commands/DeleteThingCommand.ts index f9a70e8e6e26a..6b2a81e863a79 100644 --- a/clients/client-iot/src/commands/DeleteThingCommand.ts +++ b/clients/client-iot/src/commands/DeleteThingCommand.ts @@ -79,6 +79,7 @@ export interface DeleteThingCommandOutput extends DeleteThingResponse, __Metadat * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteThingCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteThingGroupCommand.ts b/clients/client-iot/src/commands/DeleteThingGroupCommand.ts index 09b6f52474149..32d5ff9e9168a 100644 --- a/clients/client-iot/src/commands/DeleteThingGroupCommand.ts +++ b/clients/client-iot/src/commands/DeleteThingGroupCommand.ts @@ -69,6 +69,7 @@ export interface DeleteThingGroupCommandOutput extends DeleteThingGroupResponse, * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteThingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteThingTypeCommand.ts b/clients/client-iot/src/commands/DeleteThingTypeCommand.ts index 348aa4efc9eda..47a383c986c1e 100644 --- a/clients/client-iot/src/commands/DeleteThingTypeCommand.ts +++ b/clients/client-iot/src/commands/DeleteThingTypeCommand.ts @@ -74,6 +74,7 @@ export interface DeleteThingTypeCommandOutput extends DeleteThingTypeResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteThingTypeCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteTopicRuleCommand.ts b/clients/client-iot/src/commands/DeleteTopicRuleCommand.ts index e026f431244b7..06ff0e0b70504 100644 --- a/clients/client-iot/src/commands/DeleteTopicRuleCommand.ts +++ b/clients/client-iot/src/commands/DeleteTopicRuleCommand.ts @@ -70,6 +70,7 @@ export interface DeleteTopicRuleCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteTopicRuleCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteTopicRuleDestinationCommand.ts b/clients/client-iot/src/commands/DeleteTopicRuleDestinationCommand.ts index 244ef78825e3e..7abf8f3656996 100644 --- a/clients/client-iot/src/commands/DeleteTopicRuleDestinationCommand.ts +++ b/clients/client-iot/src/commands/DeleteTopicRuleDestinationCommand.ts @@ -70,6 +70,7 @@ export interface DeleteTopicRuleDestinationCommandOutput extends DeleteTopicRule * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteTopicRuleDestinationCommand extends $Command diff --git a/clients/client-iot/src/commands/DeleteV2LoggingLevelCommand.ts b/clients/client-iot/src/commands/DeleteV2LoggingLevelCommand.ts index 0c7574874f978..fa4da0f77889b 100644 --- a/clients/client-iot/src/commands/DeleteV2LoggingLevelCommand.ts +++ b/clients/client-iot/src/commands/DeleteV2LoggingLevelCommand.ts @@ -64,6 +64,7 @@ export interface DeleteV2LoggingLevelCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeleteV2LoggingLevelCommand extends $Command diff --git a/clients/client-iot/src/commands/DeprecateThingTypeCommand.ts b/clients/client-iot/src/commands/DeprecateThingTypeCommand.ts index fa13ef28df7cd..a96d6a55cb58f 100644 --- a/clients/client-iot/src/commands/DeprecateThingTypeCommand.ts +++ b/clients/client-iot/src/commands/DeprecateThingTypeCommand.ts @@ -74,6 +74,7 @@ export interface DeprecateThingTypeCommandOutput extends DeprecateThingTypeRespo * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DeprecateThingTypeCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeAccountAuditConfigurationCommand.ts b/clients/client-iot/src/commands/DescribeAccountAuditConfigurationCommand.ts index 66de00f698d63..56bb730accd32 100644 --- a/clients/client-iot/src/commands/DescribeAccountAuditConfigurationCommand.ts +++ b/clients/client-iot/src/commands/DescribeAccountAuditConfigurationCommand.ts @@ -85,6 +85,7 @@ export interface DescribeAccountAuditConfigurationCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeAccountAuditConfigurationCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeAuditFindingCommand.ts b/clients/client-iot/src/commands/DescribeAuditFindingCommand.ts index 22e1028bb46a5..4c320bfe54654 100644 --- a/clients/client-iot/src/commands/DescribeAuditFindingCommand.ts +++ b/clients/client-iot/src/commands/DescribeAuditFindingCommand.ts @@ -134,6 +134,7 @@ export interface DescribeAuditFindingCommandOutput extends DescribeAuditFindingR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeAuditFindingCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeAuditMitigationActionsTaskCommand.ts b/clients/client-iot/src/commands/DescribeAuditMitigationActionsTaskCommand.ts index ac836d61690ee..2447657c4983f 100644 --- a/clients/client-iot/src/commands/DescribeAuditMitigationActionsTaskCommand.ts +++ b/clients/client-iot/src/commands/DescribeAuditMitigationActionsTaskCommand.ts @@ -133,6 +133,7 @@ export interface DescribeAuditMitigationActionsTaskCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeAuditMitigationActionsTaskCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeAuditSuppressionCommand.ts b/clients/client-iot/src/commands/DescribeAuditSuppressionCommand.ts index 24eb3859bcc93..38d87ab1cc102 100644 --- a/clients/client-iot/src/commands/DescribeAuditSuppressionCommand.ts +++ b/clients/client-iot/src/commands/DescribeAuditSuppressionCommand.ts @@ -110,6 +110,7 @@ export interface DescribeAuditSuppressionCommandOutput extends DescribeAuditSupp * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeAuditSuppressionCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeAuditTaskCommand.ts b/clients/client-iot/src/commands/DescribeAuditTaskCommand.ts index b1993e809de9e..943229bbbd2d8 100644 --- a/clients/client-iot/src/commands/DescribeAuditTaskCommand.ts +++ b/clients/client-iot/src/commands/DescribeAuditTaskCommand.ts @@ -91,6 +91,7 @@ export interface DescribeAuditTaskCommandOutput extends DescribeAuditTaskRespons * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeAuditTaskCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeAuthorizerCommand.ts b/clients/client-iot/src/commands/DescribeAuthorizerCommand.ts index 51e68b0bf8058..f510cc085555a 100644 --- a/clients/client-iot/src/commands/DescribeAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/DescribeAuthorizerCommand.ts @@ -87,6 +87,7 @@ export interface DescribeAuthorizerCommandOutput extends DescribeAuthorizerRespo * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeAuthorizerCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeBillingGroupCommand.ts b/clients/client-iot/src/commands/DescribeBillingGroupCommand.ts index a0b4da7fc8891..3ae0bd9d430d1 100644 --- a/clients/client-iot/src/commands/DescribeBillingGroupCommand.ts +++ b/clients/client-iot/src/commands/DescribeBillingGroupCommand.ts @@ -77,6 +77,7 @@ export interface DescribeBillingGroupCommandOutput extends DescribeBillingGroupR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeBillingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeCACertificateCommand.ts b/clients/client-iot/src/commands/DescribeCACertificateCommand.ts index b1dda8aa8eb1c..be74f65cfdef7 100644 --- a/clients/client-iot/src/commands/DescribeCACertificateCommand.ts +++ b/clients/client-iot/src/commands/DescribeCACertificateCommand.ts @@ -95,6 +95,7 @@ export interface DescribeCACertificateCommandOutput extends DescribeCACertificat * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeCACertificateCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeCertificateCommand.ts b/clients/client-iot/src/commands/DescribeCertificateCommand.ts index dd189b13d7102..3cee9a26970dd 100644 --- a/clients/client-iot/src/commands/DescribeCertificateCommand.ts +++ b/clients/client-iot/src/commands/DescribeCertificateCommand.ts @@ -98,6 +98,7 @@ export interface DescribeCertificateCommandOutput extends DescribeCertificateRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeCertificateCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeCertificateProviderCommand.ts b/clients/client-iot/src/commands/DescribeCertificateProviderCommand.ts index 96874d21bf0cf..7d56b19bfe799 100644 --- a/clients/client-iot/src/commands/DescribeCertificateProviderCommand.ts +++ b/clients/client-iot/src/commands/DescribeCertificateProviderCommand.ts @@ -87,6 +87,7 @@ export interface DescribeCertificateProviderCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeCertificateProviderCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeCustomMetricCommand.ts b/clients/client-iot/src/commands/DescribeCustomMetricCommand.ts index 2064f678711c4..4373f24bbf3db 100644 --- a/clients/client-iot/src/commands/DescribeCustomMetricCommand.ts +++ b/clients/client-iot/src/commands/DescribeCustomMetricCommand.ts @@ -75,6 +75,7 @@ export interface DescribeCustomMetricCommandOutput extends DescribeCustomMetricR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeCustomMetricCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeDefaultAuthorizerCommand.ts b/clients/client-iot/src/commands/DescribeDefaultAuthorizerCommand.ts index 64c3ef5659d59..0542dbc380281 100644 --- a/clients/client-iot/src/commands/DescribeDefaultAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/DescribeDefaultAuthorizerCommand.ts @@ -85,6 +85,7 @@ export interface DescribeDefaultAuthorizerCommandOutput extends DescribeDefaultA * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeDefaultAuthorizerCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeDetectMitigationActionsTaskCommand.ts b/clients/client-iot/src/commands/DescribeDetectMitigationActionsTaskCommand.ts index 0f149beece7c8..b5d95e35a65b2 100644 --- a/clients/client-iot/src/commands/DescribeDetectMitigationActionsTaskCommand.ts +++ b/clients/client-iot/src/commands/DescribeDetectMitigationActionsTaskCommand.ts @@ -132,6 +132,7 @@ export interface DescribeDetectMitigationActionsTaskCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeDetectMitigationActionsTaskCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeDimensionCommand.ts b/clients/client-iot/src/commands/DescribeDimensionCommand.ts index 371c8c7211660..de51df6edc1a8 100644 --- a/clients/client-iot/src/commands/DescribeDimensionCommand.ts +++ b/clients/client-iot/src/commands/DescribeDimensionCommand.ts @@ -75,6 +75,7 @@ export interface DescribeDimensionCommandOutput extends DescribeDimensionRespons * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeDimensionCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeDomainConfigurationCommand.ts b/clients/client-iot/src/commands/DescribeDomainConfigurationCommand.ts index 4a8ae1894c076..01e6608087ed3 100644 --- a/clients/client-iot/src/commands/DescribeDomainConfigurationCommand.ts +++ b/clients/client-iot/src/commands/DescribeDomainConfigurationCommand.ts @@ -109,6 +109,7 @@ export interface DescribeDomainConfigurationCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeDomainConfigurationCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeEndpointCommand.ts b/clients/client-iot/src/commands/DescribeEndpointCommand.ts index 5568c55ad9ea6..cc7d7ca87734e 100644 --- a/clients/client-iot/src/commands/DescribeEndpointCommand.ts +++ b/clients/client-iot/src/commands/DescribeEndpointCommand.ts @@ -72,6 +72,7 @@ export interface DescribeEndpointCommandOutput extends DescribeEndpointResponse, * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeEndpointCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeEventConfigurationsCommand.ts b/clients/client-iot/src/commands/DescribeEventConfigurationsCommand.ts index 1c138e55794c7..ad0a27c9763d7 100644 --- a/clients/client-iot/src/commands/DescribeEventConfigurationsCommand.ts +++ b/clients/client-iot/src/commands/DescribeEventConfigurationsCommand.ts @@ -71,6 +71,7 @@ export interface DescribeEventConfigurationsCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeEventConfigurationsCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeFleetMetricCommand.ts b/clients/client-iot/src/commands/DescribeFleetMetricCommand.ts index 6c13d439c46ab..b40da026eb6c3 100644 --- a/clients/client-iot/src/commands/DescribeFleetMetricCommand.ts +++ b/clients/client-iot/src/commands/DescribeFleetMetricCommand.ts @@ -91,6 +91,7 @@ export interface DescribeFleetMetricCommandOutput extends DescribeFleetMetricRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeFleetMetricCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeIndexCommand.ts b/clients/client-iot/src/commands/DescribeIndexCommand.ts index 53c20ababa14b..f93e091b25765 100644 --- a/clients/client-iot/src/commands/DescribeIndexCommand.ts +++ b/clients/client-iot/src/commands/DescribeIndexCommand.ts @@ -76,6 +76,7 @@ export interface DescribeIndexCommandOutput extends DescribeIndexResponse, __Met * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeIndexCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeJobCommand.ts b/clients/client-iot/src/commands/DescribeJobCommand.ts index 1d80eacf755c5..6ff82e7911117 100644 --- a/clients/client-iot/src/commands/DescribeJobCommand.ts +++ b/clients/client-iot/src/commands/DescribeJobCommand.ts @@ -159,6 +159,7 @@ export interface DescribeJobCommandOutput extends DescribeJobResponse, __Metadat * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeJobCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeJobExecutionCommand.ts b/clients/client-iot/src/commands/DescribeJobExecutionCommand.ts index 891889dc86967..bbdfa911dc22b 100644 --- a/clients/client-iot/src/commands/DescribeJobExecutionCommand.ts +++ b/clients/client-iot/src/commands/DescribeJobExecutionCommand.ts @@ -86,6 +86,7 @@ export interface DescribeJobExecutionCommandOutput extends DescribeJobExecutionR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeJobExecutionCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeJobTemplateCommand.ts b/clients/client-iot/src/commands/DescribeJobTemplateCommand.ts index 634277b2b7c42..517c6f71b3aaf 100644 --- a/clients/client-iot/src/commands/DescribeJobTemplateCommand.ts +++ b/clients/client-iot/src/commands/DescribeJobTemplateCommand.ts @@ -117,6 +117,7 @@ export interface DescribeJobTemplateCommandOutput extends DescribeJobTemplateRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeJobTemplateCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeManagedJobTemplateCommand.ts b/clients/client-iot/src/commands/DescribeManagedJobTemplateCommand.ts index 1a1a452140058..7d527429a2d57 100644 --- a/clients/client-iot/src/commands/DescribeManagedJobTemplateCommand.ts +++ b/clients/client-iot/src/commands/DescribeManagedJobTemplateCommand.ts @@ -85,6 +85,7 @@ export interface DescribeManagedJobTemplateCommandOutput extends DescribeManaged * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeManagedJobTemplateCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeMitigationActionCommand.ts b/clients/client-iot/src/commands/DescribeMitigationActionCommand.ts index 15aa6425dc6e7..d2a0546372728 100644 --- a/clients/client-iot/src/commands/DescribeMitigationActionCommand.ts +++ b/clients/client-iot/src/commands/DescribeMitigationActionCommand.ts @@ -98,6 +98,7 @@ export interface DescribeMitigationActionCommandOutput extends DescribeMitigatio * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeMitigationActionCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeProvisioningTemplateCommand.ts b/clients/client-iot/src/commands/DescribeProvisioningTemplateCommand.ts index c941585a47163..d449d1f41d651 100644 --- a/clients/client-iot/src/commands/DescribeProvisioningTemplateCommand.ts +++ b/clients/client-iot/src/commands/DescribeProvisioningTemplateCommand.ts @@ -89,6 +89,7 @@ export interface DescribeProvisioningTemplateCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeProvisioningTemplateCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeProvisioningTemplateVersionCommand.ts b/clients/client-iot/src/commands/DescribeProvisioningTemplateVersionCommand.ts index 991f7c33ed50b..5791c81322e1e 100644 --- a/clients/client-iot/src/commands/DescribeProvisioningTemplateVersionCommand.ts +++ b/clients/client-iot/src/commands/DescribeProvisioningTemplateVersionCommand.ts @@ -83,6 +83,7 @@ export interface DescribeProvisioningTemplateVersionCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeProvisioningTemplateVersionCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeRoleAliasCommand.ts b/clients/client-iot/src/commands/DescribeRoleAliasCommand.ts index 533094bfc06ce..8cd49a1824e4c 100644 --- a/clients/client-iot/src/commands/DescribeRoleAliasCommand.ts +++ b/clients/client-iot/src/commands/DescribeRoleAliasCommand.ts @@ -82,6 +82,7 @@ export interface DescribeRoleAliasCommandOutput extends DescribeRoleAliasRespons * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeRoleAliasCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeScheduledAuditCommand.ts b/clients/client-iot/src/commands/DescribeScheduledAuditCommand.ts index 156124e230165..784ff766d9eb8 100644 --- a/clients/client-iot/src/commands/DescribeScheduledAuditCommand.ts +++ b/clients/client-iot/src/commands/DescribeScheduledAuditCommand.ts @@ -75,6 +75,7 @@ export interface DescribeScheduledAuditCommandOutput extends DescribeScheduledAu * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeScheduledAuditCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeSecurityProfileCommand.ts b/clients/client-iot/src/commands/DescribeSecurityProfileCommand.ts index 131e8cc5d5a3d..d8efc5afe3fc4 100644 --- a/clients/client-iot/src/commands/DescribeSecurityProfileCommand.ts +++ b/clients/client-iot/src/commands/DescribeSecurityProfileCommand.ts @@ -136,6 +136,7 @@ export interface DescribeSecurityProfileCommandOutput extends DescribeSecurityPr * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeSecurityProfileCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeStreamCommand.ts b/clients/client-iot/src/commands/DescribeStreamCommand.ts index 3a16b5099482e..5dd53c281b13d 100644 --- a/clients/client-iot/src/commands/DescribeStreamCommand.ts +++ b/clients/client-iot/src/commands/DescribeStreamCommand.ts @@ -92,6 +92,7 @@ export interface DescribeStreamCommandOutput extends DescribeStreamResponse, __M * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeStreamCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeThingCommand.ts b/clients/client-iot/src/commands/DescribeThingCommand.ts index de47cc9d64afc..40c9b28fc1359 100644 --- a/clients/client-iot/src/commands/DescribeThingCommand.ts +++ b/clients/client-iot/src/commands/DescribeThingCommand.ts @@ -83,6 +83,7 @@ export interface DescribeThingCommandOutput extends DescribeThingResponse, __Met * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeThingCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeThingGroupCommand.ts b/clients/client-iot/src/commands/DescribeThingGroupCommand.ts index 17f1ec33dbfcc..0b911965d2174 100644 --- a/clients/client-iot/src/commands/DescribeThingGroupCommand.ts +++ b/clients/client-iot/src/commands/DescribeThingGroupCommand.ts @@ -94,6 +94,7 @@ export interface DescribeThingGroupCommandOutput extends DescribeThingGroupRespo * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeThingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeThingRegistrationTaskCommand.ts b/clients/client-iot/src/commands/DescribeThingRegistrationTaskCommand.ts index e591aae98fba0..c6b4b9338c2a6 100644 --- a/clients/client-iot/src/commands/DescribeThingRegistrationTaskCommand.ts +++ b/clients/client-iot/src/commands/DescribeThingRegistrationTaskCommand.ts @@ -87,6 +87,7 @@ export interface DescribeThingRegistrationTaskCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeThingRegistrationTaskCommand extends $Command diff --git a/clients/client-iot/src/commands/DescribeThingTypeCommand.ts b/clients/client-iot/src/commands/DescribeThingTypeCommand.ts index 516a9347266de..b4f5574dea2e9 100644 --- a/clients/client-iot/src/commands/DescribeThingTypeCommand.ts +++ b/clients/client-iot/src/commands/DescribeThingTypeCommand.ts @@ -96,6 +96,7 @@ export interface DescribeThingTypeCommandOutput extends DescribeThingTypeRespons * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DescribeThingTypeCommand extends $Command diff --git a/clients/client-iot/src/commands/DetachPolicyCommand.ts b/clients/client-iot/src/commands/DetachPolicyCommand.ts index d85457619b7eb..77ced4741b0cc 100644 --- a/clients/client-iot/src/commands/DetachPolicyCommand.ts +++ b/clients/client-iot/src/commands/DetachPolicyCommand.ts @@ -77,6 +77,7 @@ export interface DetachPolicyCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DetachPolicyCommand extends $Command diff --git a/clients/client-iot/src/commands/DetachPrincipalPolicyCommand.ts b/clients/client-iot/src/commands/DetachPrincipalPolicyCommand.ts index 02be1bb478b07..54b749379226d 100644 --- a/clients/client-iot/src/commands/DetachPrincipalPolicyCommand.ts +++ b/clients/client-iot/src/commands/DetachPrincipalPolicyCommand.ts @@ -78,6 +78,7 @@ export interface DetachPrincipalPolicyCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DetachPrincipalPolicyCommand extends $Command diff --git a/clients/client-iot/src/commands/DetachSecurityProfileCommand.ts b/clients/client-iot/src/commands/DetachSecurityProfileCommand.ts index c2491c7da14a5..7b3b1e2e8b0c0 100644 --- a/clients/client-iot/src/commands/DetachSecurityProfileCommand.ts +++ b/clients/client-iot/src/commands/DetachSecurityProfileCommand.ts @@ -67,6 +67,7 @@ export interface DetachSecurityProfileCommandOutput extends DetachSecurityProfil * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DetachSecurityProfileCommand extends $Command diff --git a/clients/client-iot/src/commands/DetachThingPrincipalCommand.ts b/clients/client-iot/src/commands/DetachThingPrincipalCommand.ts index 48f6a6a4f423e..d8c60b6f00d2c 100644 --- a/clients/client-iot/src/commands/DetachThingPrincipalCommand.ts +++ b/clients/client-iot/src/commands/DetachThingPrincipalCommand.ts @@ -79,6 +79,7 @@ export interface DetachThingPrincipalCommandOutput extends DetachThingPrincipalR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DetachThingPrincipalCommand extends $Command diff --git a/clients/client-iot/src/commands/DisableTopicRuleCommand.ts b/clients/client-iot/src/commands/DisableTopicRuleCommand.ts index 99396aa839115..4ca1d7c475ea6 100644 --- a/clients/client-iot/src/commands/DisableTopicRuleCommand.ts +++ b/clients/client-iot/src/commands/DisableTopicRuleCommand.ts @@ -70,6 +70,7 @@ export interface DisableTopicRuleCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DisableTopicRuleCommand extends $Command diff --git a/clients/client-iot/src/commands/DisassociateSbomFromPackageVersionCommand.ts b/clients/client-iot/src/commands/DisassociateSbomFromPackageVersionCommand.ts index a98a0bb38e0fe..46aa86e459f3a 100644 --- a/clients/client-iot/src/commands/DisassociateSbomFromPackageVersionCommand.ts +++ b/clients/client-iot/src/commands/DisassociateSbomFromPackageVersionCommand.ts @@ -80,6 +80,7 @@ export interface DisassociateSbomFromPackageVersionCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class DisassociateSbomFromPackageVersionCommand extends $Command diff --git a/clients/client-iot/src/commands/EnableTopicRuleCommand.ts b/clients/client-iot/src/commands/EnableTopicRuleCommand.ts index 54efa1c567617..c6ec9841edbf4 100644 --- a/clients/client-iot/src/commands/EnableTopicRuleCommand.ts +++ b/clients/client-iot/src/commands/EnableTopicRuleCommand.ts @@ -70,6 +70,7 @@ export interface EnableTopicRuleCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class EnableTopicRuleCommand extends $Command diff --git a/clients/client-iot/src/commands/GetBehaviorModelTrainingSummariesCommand.ts b/clients/client-iot/src/commands/GetBehaviorModelTrainingSummariesCommand.ts index 48f0ed2782764..d35cd4c288168 100644 --- a/clients/client-iot/src/commands/GetBehaviorModelTrainingSummariesCommand.ts +++ b/clients/client-iot/src/commands/GetBehaviorModelTrainingSummariesCommand.ts @@ -90,6 +90,7 @@ export interface GetBehaviorModelTrainingSummariesCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetBehaviorModelTrainingSummariesCommand extends $Command diff --git a/clients/client-iot/src/commands/GetBucketsAggregationCommand.ts b/clients/client-iot/src/commands/GetBucketsAggregationCommand.ts index e1c1928582198..62444f0650b72 100644 --- a/clients/client-iot/src/commands/GetBucketsAggregationCommand.ts +++ b/clients/client-iot/src/commands/GetBucketsAggregationCommand.ts @@ -97,6 +97,7 @@ export interface GetBucketsAggregationCommandOutput extends GetBucketsAggregatio * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetBucketsAggregationCommand extends $Command diff --git a/clients/client-iot/src/commands/GetCardinalityCommand.ts b/clients/client-iot/src/commands/GetCardinalityCommand.ts index 46abc3ef6ccb7..416f40d3848ef 100644 --- a/clients/client-iot/src/commands/GetCardinalityCommand.ts +++ b/clients/client-iot/src/commands/GetCardinalityCommand.ts @@ -86,6 +86,7 @@ export interface GetCardinalityCommandOutput extends GetCardinalityResponse, __M * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetCardinalityCommand extends $Command diff --git a/clients/client-iot/src/commands/GetCommandCommand.ts b/clients/client-iot/src/commands/GetCommandCommand.ts index 4d8b351a155d8..c7201b543b622 100644 --- a/clients/client-iot/src/commands/GetCommandCommand.ts +++ b/clients/client-iot/src/commands/GetCommandCommand.ts @@ -105,6 +105,7 @@ export interface GetCommandCommandOutput extends GetCommandResponse, __MetadataB * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetCommandCommand extends $Command diff --git a/clients/client-iot/src/commands/GetCommandExecutionCommand.ts b/clients/client-iot/src/commands/GetCommandExecutionCommand.ts index fa09543c76c6a..5d8811716d68c 100644 --- a/clients/client-iot/src/commands/GetCommandExecutionCommand.ts +++ b/clients/client-iot/src/commands/GetCommandExecutionCommand.ts @@ -101,6 +101,7 @@ export interface GetCommandExecutionCommandOutput extends GetCommandExecutionRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetCommandExecutionCommand extends $Command diff --git a/clients/client-iot/src/commands/GetEffectivePoliciesCommand.ts b/clients/client-iot/src/commands/GetEffectivePoliciesCommand.ts index a9af842d48947..c9d709fc3a9c8 100644 --- a/clients/client-iot/src/commands/GetEffectivePoliciesCommand.ts +++ b/clients/client-iot/src/commands/GetEffectivePoliciesCommand.ts @@ -86,6 +86,7 @@ export interface GetEffectivePoliciesCommandOutput extends GetEffectivePoliciesR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetEffectivePoliciesCommand extends $Command diff --git a/clients/client-iot/src/commands/GetIndexingConfigurationCommand.ts b/clients/client-iot/src/commands/GetIndexingConfigurationCommand.ts index 7f8789e219884..94c243c44f8b5 100644 --- a/clients/client-iot/src/commands/GetIndexingConfigurationCommand.ts +++ b/clients/client-iot/src/commands/GetIndexingConfigurationCommand.ts @@ -112,6 +112,7 @@ export interface GetIndexingConfigurationCommandOutput extends GetIndexingConfig * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetIndexingConfigurationCommand extends $Command diff --git a/clients/client-iot/src/commands/GetJobDocumentCommand.ts b/clients/client-iot/src/commands/GetJobDocumentCommand.ts index fa3ae1cb1e104..d98113e1a3cc9 100644 --- a/clients/client-iot/src/commands/GetJobDocumentCommand.ts +++ b/clients/client-iot/src/commands/GetJobDocumentCommand.ts @@ -69,6 +69,7 @@ export interface GetJobDocumentCommandOutput extends GetJobDocumentResponse, __M * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetJobDocumentCommand extends $Command diff --git a/clients/client-iot/src/commands/GetLoggingOptionsCommand.ts b/clients/client-iot/src/commands/GetLoggingOptionsCommand.ts index 9030df7d2cf9e..25087346bf468 100644 --- a/clients/client-iot/src/commands/GetLoggingOptionsCommand.ts +++ b/clients/client-iot/src/commands/GetLoggingOptionsCommand.ts @@ -66,6 +66,7 @@ export interface GetLoggingOptionsCommandOutput extends GetLoggingOptionsRespons * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetLoggingOptionsCommand extends $Command diff --git a/clients/client-iot/src/commands/GetOTAUpdateCommand.ts b/clients/client-iot/src/commands/GetOTAUpdateCommand.ts index 1fb68a95b7cfd..146e6f0d01f34 100644 --- a/clients/client-iot/src/commands/GetOTAUpdateCommand.ts +++ b/clients/client-iot/src/commands/GetOTAUpdateCommand.ts @@ -160,6 +160,7 @@ export interface GetOTAUpdateCommandOutput extends GetOTAUpdateResponse, __Metad * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetOTAUpdateCommand extends $Command diff --git a/clients/client-iot/src/commands/GetPackageCommand.ts b/clients/client-iot/src/commands/GetPackageCommand.ts index accb5ee569b19..effeaa4d29d75 100644 --- a/clients/client-iot/src/commands/GetPackageCommand.ts +++ b/clients/client-iot/src/commands/GetPackageCommand.ts @@ -74,6 +74,7 @@ export interface GetPackageCommandOutput extends GetPackageResponse, __MetadataB * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetPackageCommand extends $Command diff --git a/clients/client-iot/src/commands/GetPackageConfigurationCommand.ts b/clients/client-iot/src/commands/GetPackageConfigurationCommand.ts index e2784951cc3f8..b38a6d74e162b 100644 --- a/clients/client-iot/src/commands/GetPackageConfigurationCommand.ts +++ b/clients/client-iot/src/commands/GetPackageConfigurationCommand.ts @@ -64,6 +64,7 @@ export interface GetPackageConfigurationCommandOutput extends GetPackageConfigur * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetPackageConfigurationCommand extends $Command diff --git a/clients/client-iot/src/commands/GetPackageVersionCommand.ts b/clients/client-iot/src/commands/GetPackageVersionCommand.ts index aba38005f7197..1bb1f8b9cfa2e 100644 --- a/clients/client-iot/src/commands/GetPackageVersionCommand.ts +++ b/clients/client-iot/src/commands/GetPackageVersionCommand.ts @@ -100,6 +100,7 @@ export interface GetPackageVersionCommandOutput extends GetPackageVersionRespons * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetPackageVersionCommand extends $Command diff --git a/clients/client-iot/src/commands/GetPercentilesCommand.ts b/clients/client-iot/src/commands/GetPercentilesCommand.ts index 1c8cbe1b893c7..d9be49c24f435 100644 --- a/clients/client-iot/src/commands/GetPercentilesCommand.ts +++ b/clients/client-iot/src/commands/GetPercentilesCommand.ts @@ -102,6 +102,7 @@ export interface GetPercentilesCommandOutput extends GetPercentilesResponse, __M * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetPercentilesCommand extends $Command diff --git a/clients/client-iot/src/commands/GetPolicyCommand.ts b/clients/client-iot/src/commands/GetPolicyCommand.ts index 2b668c1a6e152..12b7e54eede46 100644 --- a/clients/client-iot/src/commands/GetPolicyCommand.ts +++ b/clients/client-iot/src/commands/GetPolicyCommand.ts @@ -81,6 +81,7 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetPolicyCommand extends $Command diff --git a/clients/client-iot/src/commands/GetPolicyVersionCommand.ts b/clients/client-iot/src/commands/GetPolicyVersionCommand.ts index eeaab73d0925d..a19b573f981b9 100644 --- a/clients/client-iot/src/commands/GetPolicyVersionCommand.ts +++ b/clients/client-iot/src/commands/GetPolicyVersionCommand.ts @@ -82,6 +82,7 @@ export interface GetPolicyVersionCommandOutput extends GetPolicyVersionResponse, * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetPolicyVersionCommand extends $Command diff --git a/clients/client-iot/src/commands/GetRegistrationCodeCommand.ts b/clients/client-iot/src/commands/GetRegistrationCodeCommand.ts index fa5043c48cde2..c2b8d6eb5c726 100644 --- a/clients/client-iot/src/commands/GetRegistrationCodeCommand.ts +++ b/clients/client-iot/src/commands/GetRegistrationCodeCommand.ts @@ -72,6 +72,7 @@ export interface GetRegistrationCodeCommandOutput extends GetRegistrationCodeRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetRegistrationCodeCommand extends $Command diff --git a/clients/client-iot/src/commands/GetStatisticsCommand.ts b/clients/client-iot/src/commands/GetStatisticsCommand.ts index 0694005c70e43..9f23308dbccc7 100644 --- a/clients/client-iot/src/commands/GetStatisticsCommand.ts +++ b/clients/client-iot/src/commands/GetStatisticsCommand.ts @@ -97,6 +97,7 @@ export interface GetStatisticsCommandOutput extends GetStatisticsResponse, __Met * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetStatisticsCommand extends $Command diff --git a/clients/client-iot/src/commands/GetThingConnectivityDataCommand.ts b/clients/client-iot/src/commands/GetThingConnectivityDataCommand.ts index 37952d2c17ccd..125d16c1936df 100644 --- a/clients/client-iot/src/commands/GetThingConnectivityDataCommand.ts +++ b/clients/client-iot/src/commands/GetThingConnectivityDataCommand.ts @@ -84,6 +84,7 @@ export interface GetThingConnectivityDataCommandOutput extends GetThingConnectiv * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetThingConnectivityDataCommand extends $Command diff --git a/clients/client-iot/src/commands/GetTopicRuleCommand.ts b/clients/client-iot/src/commands/GetTopicRuleCommand.ts index 84b1bb4bb7d98..3c43302f75f39 100644 --- a/clients/client-iot/src/commands/GetTopicRuleCommand.ts +++ b/clients/client-iot/src/commands/GetTopicRuleCommand.ts @@ -490,6 +490,7 @@ export interface GetTopicRuleCommandOutput extends GetTopicRuleResponse, __Metad * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetTopicRuleCommand extends $Command diff --git a/clients/client-iot/src/commands/GetTopicRuleDestinationCommand.ts b/clients/client-iot/src/commands/GetTopicRuleDestinationCommand.ts index e6a22baaa446c..d9ad0ab288a8f 100644 --- a/clients/client-iot/src/commands/GetTopicRuleDestinationCommand.ts +++ b/clients/client-iot/src/commands/GetTopicRuleDestinationCommand.ts @@ -87,6 +87,7 @@ export interface GetTopicRuleDestinationCommandOutput extends GetTopicRuleDestin * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetTopicRuleDestinationCommand extends $Command diff --git a/clients/client-iot/src/commands/GetV2LoggingOptionsCommand.ts b/clients/client-iot/src/commands/GetV2LoggingOptionsCommand.ts index cbb4e17397fb4..d83933f314094 100644 --- a/clients/client-iot/src/commands/GetV2LoggingOptionsCommand.ts +++ b/clients/client-iot/src/commands/GetV2LoggingOptionsCommand.ts @@ -65,6 +65,7 @@ export interface GetV2LoggingOptionsCommandOutput extends GetV2LoggingOptionsRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class GetV2LoggingOptionsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListActiveViolationsCommand.ts b/clients/client-iot/src/commands/ListActiveViolationsCommand.ts index cfc4265925564..a5eeca5fbe83a 100644 --- a/clients/client-iot/src/commands/ListActiveViolationsCommand.ts +++ b/clients/client-iot/src/commands/ListActiveViolationsCommand.ts @@ -142,6 +142,7 @@ export interface ListActiveViolationsCommandOutput extends ListActiveViolationsR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListActiveViolationsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListAttachedPoliciesCommand.ts b/clients/client-iot/src/commands/ListAttachedPoliciesCommand.ts index 64ee5b0b39346..cd589f73ea309 100644 --- a/clients/client-iot/src/commands/ListAttachedPoliciesCommand.ts +++ b/clients/client-iot/src/commands/ListAttachedPoliciesCommand.ts @@ -86,6 +86,7 @@ export interface ListAttachedPoliciesCommandOutput extends ListAttachedPoliciesR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListAttachedPoliciesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListAuditFindingsCommand.ts b/clients/client-iot/src/commands/ListAuditFindingsCommand.ts index 82ce03522e242..5a58ba6e54fa7 100644 --- a/clients/client-iot/src/commands/ListAuditFindingsCommand.ts +++ b/clients/client-iot/src/commands/ListAuditFindingsCommand.ts @@ -156,6 +156,7 @@ export interface ListAuditFindingsCommandOutput extends ListAuditFindingsRespons * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListAuditFindingsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListAuditMitigationActionsExecutionsCommand.ts b/clients/client-iot/src/commands/ListAuditMitigationActionsExecutionsCommand.ts index 96071cc322e4b..2667210beeade 100644 --- a/clients/client-iot/src/commands/ListAuditMitigationActionsExecutionsCommand.ts +++ b/clients/client-iot/src/commands/ListAuditMitigationActionsExecutionsCommand.ts @@ -91,6 +91,7 @@ export interface ListAuditMitigationActionsExecutionsCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListAuditMitigationActionsExecutionsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListAuditMitigationActionsTasksCommand.ts b/clients/client-iot/src/commands/ListAuditMitigationActionsTasksCommand.ts index 0b091b1a87ced..ae84a6322f214 100644 --- a/clients/client-iot/src/commands/ListAuditMitigationActionsTasksCommand.ts +++ b/clients/client-iot/src/commands/ListAuditMitigationActionsTasksCommand.ts @@ -83,6 +83,7 @@ export interface ListAuditMitigationActionsTasksCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListAuditMitigationActionsTasksCommand extends $Command diff --git a/clients/client-iot/src/commands/ListAuditSuppressionsCommand.ts b/clients/client-iot/src/commands/ListAuditSuppressionsCommand.ts index da801a24f5a8e..60b44b141c56d 100644 --- a/clients/client-iot/src/commands/ListAuditSuppressionsCommand.ts +++ b/clients/client-iot/src/commands/ListAuditSuppressionsCommand.ts @@ -116,6 +116,7 @@ export interface ListAuditSuppressionsCommandOutput extends ListAuditSuppression * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListAuditSuppressionsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListAuditTasksCommand.ts b/clients/client-iot/src/commands/ListAuditTasksCommand.ts index 2f5b4e9225a9f..319b2ea2d8697 100644 --- a/clients/client-iot/src/commands/ListAuditTasksCommand.ts +++ b/clients/client-iot/src/commands/ListAuditTasksCommand.ts @@ -78,6 +78,7 @@ export interface ListAuditTasksCommandOutput extends ListAuditTasksResponse, __M * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListAuditTasksCommand extends $Command diff --git a/clients/client-iot/src/commands/ListAuthorizersCommand.ts b/clients/client-iot/src/commands/ListAuthorizersCommand.ts index 799b1348667a3..cdbb778a3c3a3 100644 --- a/clients/client-iot/src/commands/ListAuthorizersCommand.ts +++ b/clients/client-iot/src/commands/ListAuthorizersCommand.ts @@ -80,6 +80,7 @@ export interface ListAuthorizersCommandOutput extends ListAuthorizersResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListAuthorizersCommand extends $Command diff --git a/clients/client-iot/src/commands/ListBillingGroupsCommand.ts b/clients/client-iot/src/commands/ListBillingGroupsCommand.ts index 698967729e1c2..9091e1d666661 100644 --- a/clients/client-iot/src/commands/ListBillingGroupsCommand.ts +++ b/clients/client-iot/src/commands/ListBillingGroupsCommand.ts @@ -76,6 +76,7 @@ export interface ListBillingGroupsCommandOutput extends ListBillingGroupsRespons * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListBillingGroupsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListCACertificatesCommand.ts b/clients/client-iot/src/commands/ListCACertificatesCommand.ts index 0c3a6046c84b2..d53f7c8f91e16 100644 --- a/clients/client-iot/src/commands/ListCACertificatesCommand.ts +++ b/clients/client-iot/src/commands/ListCACertificatesCommand.ts @@ -84,6 +84,7 @@ export interface ListCACertificatesCommandOutput extends ListCACertificatesRespo * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListCACertificatesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListCertificateProvidersCommand.ts b/clients/client-iot/src/commands/ListCertificateProvidersCommand.ts index a1e7764eb3ec8..0706b744706f5 100644 --- a/clients/client-iot/src/commands/ListCertificateProvidersCommand.ts +++ b/clients/client-iot/src/commands/ListCertificateProvidersCommand.ts @@ -79,6 +79,7 @@ export interface ListCertificateProvidersCommandOutput extends ListCertificatePr * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListCertificateProvidersCommand extends $Command diff --git a/clients/client-iot/src/commands/ListCertificatesByCACommand.ts b/clients/client-iot/src/commands/ListCertificatesByCACommand.ts index fc4bb8c5016c3..dbe4d29fc5889 100644 --- a/clients/client-iot/src/commands/ListCertificatesByCACommand.ts +++ b/clients/client-iot/src/commands/ListCertificatesByCACommand.ts @@ -83,6 +83,7 @@ export interface ListCertificatesByCACommandOutput extends ListCertificatesByCAR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListCertificatesByCACommand extends $Command diff --git a/clients/client-iot/src/commands/ListCertificatesCommand.ts b/clients/client-iot/src/commands/ListCertificatesCommand.ts index 0ad87459bd0c1..8da79157df07b 100644 --- a/clients/client-iot/src/commands/ListCertificatesCommand.ts +++ b/clients/client-iot/src/commands/ListCertificatesCommand.ts @@ -84,6 +84,7 @@ export interface ListCertificatesCommandOutput extends ListCertificatesResponse, * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListCertificatesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListCommandExecutionsCommand.ts b/clients/client-iot/src/commands/ListCommandExecutionsCommand.ts index 41b4ebc0355ec..cffee8d8af6c5 100644 --- a/clients/client-iot/src/commands/ListCommandExecutionsCommand.ts +++ b/clients/client-iot/src/commands/ListCommandExecutionsCommand.ts @@ -113,6 +113,7 @@ export interface ListCommandExecutionsCommandOutput extends ListCommandExecution * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListCommandExecutionsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListCommandsCommand.ts b/clients/client-iot/src/commands/ListCommandsCommand.ts index 2943eed7374c5..7e8d20459f33c 100644 --- a/clients/client-iot/src/commands/ListCommandsCommand.ts +++ b/clients/client-iot/src/commands/ListCommandsCommand.ts @@ -80,6 +80,7 @@ export interface ListCommandsCommandOutput extends ListCommandsResponse, __Metad * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListCommandsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListCustomMetricsCommand.ts b/clients/client-iot/src/commands/ListCustomMetricsCommand.ts index b90d0fbc2e0fd..62e8a10971a7e 100644 --- a/clients/client-iot/src/commands/ListCustomMetricsCommand.ts +++ b/clients/client-iot/src/commands/ListCustomMetricsCommand.ts @@ -72,6 +72,7 @@ export interface ListCustomMetricsCommandOutput extends ListCustomMetricsRespons * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListCustomMetricsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListDetectMitigationActionsExecutionsCommand.ts b/clients/client-iot/src/commands/ListDetectMitigationActionsExecutionsCommand.ts index 472bb49a48d36..6c7b62e1879b3 100644 --- a/clients/client-iot/src/commands/ListDetectMitigationActionsExecutionsCommand.ts +++ b/clients/client-iot/src/commands/ListDetectMitigationActionsExecutionsCommand.ts @@ -95,6 +95,7 @@ export interface ListDetectMitigationActionsExecutionsCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListDetectMitigationActionsExecutionsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListDetectMitigationActionsTasksCommand.ts b/clients/client-iot/src/commands/ListDetectMitigationActionsTasksCommand.ts index a6c36fae7f19c..729bc451b5c60 100644 --- a/clients/client-iot/src/commands/ListDetectMitigationActionsTasksCommand.ts +++ b/clients/client-iot/src/commands/ListDetectMitigationActionsTasksCommand.ts @@ -132,6 +132,7 @@ export interface ListDetectMitigationActionsTasksCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListDetectMitigationActionsTasksCommand extends $Command diff --git a/clients/client-iot/src/commands/ListDimensionsCommand.ts b/clients/client-iot/src/commands/ListDimensionsCommand.ts index 9c7a2a4ef7df6..e9888b794bdc0 100644 --- a/clients/client-iot/src/commands/ListDimensionsCommand.ts +++ b/clients/client-iot/src/commands/ListDimensionsCommand.ts @@ -69,6 +69,7 @@ export interface ListDimensionsCommandOutput extends ListDimensionsResponse, __M * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListDimensionsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListDomainConfigurationsCommand.ts b/clients/client-iot/src/commands/ListDomainConfigurationsCommand.ts index 01934e24ea0da..b1d02a5c2a151 100644 --- a/clients/client-iot/src/commands/ListDomainConfigurationsCommand.ts +++ b/clients/client-iot/src/commands/ListDomainConfigurationsCommand.ts @@ -81,6 +81,7 @@ export interface ListDomainConfigurationsCommandOutput extends ListDomainConfigu * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListDomainConfigurationsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListFleetMetricsCommand.ts b/clients/client-iot/src/commands/ListFleetMetricsCommand.ts index 4413d24a9046a..138db3a97242f 100644 --- a/clients/client-iot/src/commands/ListFleetMetricsCommand.ts +++ b/clients/client-iot/src/commands/ListFleetMetricsCommand.ts @@ -78,6 +78,7 @@ export interface ListFleetMetricsCommandOutput extends ListFleetMetricsResponse, * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListFleetMetricsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListIndicesCommand.ts b/clients/client-iot/src/commands/ListIndicesCommand.ts index 6117702433004..9728cca0e67a6 100644 --- a/clients/client-iot/src/commands/ListIndicesCommand.ts +++ b/clients/client-iot/src/commands/ListIndicesCommand.ts @@ -75,6 +75,7 @@ export interface ListIndicesCommandOutput extends ListIndicesResponse, __Metadat * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListIndicesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListJobExecutionsForJobCommand.ts b/clients/client-iot/src/commands/ListJobExecutionsForJobCommand.ts index f485b4ca58290..b15eab053c2c4 100644 --- a/clients/client-iot/src/commands/ListJobExecutionsForJobCommand.ts +++ b/clients/client-iot/src/commands/ListJobExecutionsForJobCommand.ts @@ -84,6 +84,7 @@ export interface ListJobExecutionsForJobCommandOutput extends ListJobExecutionsF * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListJobExecutionsForJobCommand extends $Command diff --git a/clients/client-iot/src/commands/ListJobExecutionsForThingCommand.ts b/clients/client-iot/src/commands/ListJobExecutionsForThingCommand.ts index 7f347da34afb9..ee6835a9bbe98 100644 --- a/clients/client-iot/src/commands/ListJobExecutionsForThingCommand.ts +++ b/clients/client-iot/src/commands/ListJobExecutionsForThingCommand.ts @@ -86,6 +86,7 @@ export interface ListJobExecutionsForThingCommandOutput extends ListJobExecution * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListJobExecutionsForThingCommand extends $Command diff --git a/clients/client-iot/src/commands/ListJobTemplatesCommand.ts b/clients/client-iot/src/commands/ListJobTemplatesCommand.ts index d2964042bbc68..e9ce09c7e34ba 100644 --- a/clients/client-iot/src/commands/ListJobTemplatesCommand.ts +++ b/clients/client-iot/src/commands/ListJobTemplatesCommand.ts @@ -74,6 +74,7 @@ export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse, * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListJobTemplatesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListJobsCommand.ts b/clients/client-iot/src/commands/ListJobsCommand.ts index 9d807d7a63477..651f744c535b4 100644 --- a/clients/client-iot/src/commands/ListJobsCommand.ts +++ b/clients/client-iot/src/commands/ListJobsCommand.ts @@ -87,6 +87,7 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListJobsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListManagedJobTemplatesCommand.ts b/clients/client-iot/src/commands/ListManagedJobTemplatesCommand.ts index 2fa123cd19cac..1b2d06ab184cc 100644 --- a/clients/client-iot/src/commands/ListManagedJobTemplatesCommand.ts +++ b/clients/client-iot/src/commands/ListManagedJobTemplatesCommand.ts @@ -81,6 +81,7 @@ export interface ListManagedJobTemplatesCommandOutput extends ListManagedJobTemp * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListManagedJobTemplatesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListMetricValuesCommand.ts b/clients/client-iot/src/commands/ListMetricValuesCommand.ts index 27cbf985ad6f3..1e9b262c79227 100644 --- a/clients/client-iot/src/commands/ListMetricValuesCommand.ts +++ b/clients/client-iot/src/commands/ListMetricValuesCommand.ts @@ -96,6 +96,7 @@ export interface ListMetricValuesCommandOutput extends ListMetricValuesResponse, * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListMetricValuesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListMitigationActionsCommand.ts b/clients/client-iot/src/commands/ListMitigationActionsCommand.ts index a01ebdbaef426..1c7878f7dc7de 100644 --- a/clients/client-iot/src/commands/ListMitigationActionsCommand.ts +++ b/clients/client-iot/src/commands/ListMitigationActionsCommand.ts @@ -74,6 +74,7 @@ export interface ListMitigationActionsCommandOutput extends ListMitigationAction * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListMitigationActionsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListOTAUpdatesCommand.ts b/clients/client-iot/src/commands/ListOTAUpdatesCommand.ts index af6ce33d880f0..18dad032c0da2 100644 --- a/clients/client-iot/src/commands/ListOTAUpdatesCommand.ts +++ b/clients/client-iot/src/commands/ListOTAUpdatesCommand.ts @@ -80,6 +80,7 @@ export interface ListOTAUpdatesCommandOutput extends ListOTAUpdatesResponse, __M * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListOTAUpdatesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListOutgoingCertificatesCommand.ts b/clients/client-iot/src/commands/ListOutgoingCertificatesCommand.ts index 222e85bbc1ffd..01d338b6d80be 100644 --- a/clients/client-iot/src/commands/ListOutgoingCertificatesCommand.ts +++ b/clients/client-iot/src/commands/ListOutgoingCertificatesCommand.ts @@ -83,6 +83,7 @@ export interface ListOutgoingCertificatesCommandOutput extends ListOutgoingCerti * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListOutgoingCertificatesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListPackageVersionsCommand.ts b/clients/client-iot/src/commands/ListPackageVersionsCommand.ts index 4a61fe295eee4..12fcffcf51b4b 100644 --- a/clients/client-iot/src/commands/ListPackageVersionsCommand.ts +++ b/clients/client-iot/src/commands/ListPackageVersionsCommand.ts @@ -78,6 +78,7 @@ export interface ListPackageVersionsCommandOutput extends ListPackageVersionsRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListPackageVersionsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListPackagesCommand.ts b/clients/client-iot/src/commands/ListPackagesCommand.ts index 933cc2f88b9e6..0b4688e74f199 100644 --- a/clients/client-iot/src/commands/ListPackagesCommand.ts +++ b/clients/client-iot/src/commands/ListPackagesCommand.ts @@ -75,6 +75,7 @@ export interface ListPackagesCommandOutput extends ListPackagesResponse, __Metad * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListPackagesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListPoliciesCommand.ts b/clients/client-iot/src/commands/ListPoliciesCommand.ts index abe2c826a12bf..b8ee2b79bde83 100644 --- a/clients/client-iot/src/commands/ListPoliciesCommand.ts +++ b/clients/client-iot/src/commands/ListPoliciesCommand.ts @@ -79,6 +79,7 @@ export interface ListPoliciesCommandOutput extends ListPoliciesResponse, __Metad * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListPoliciesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListPolicyPrincipalsCommand.ts b/clients/client-iot/src/commands/ListPolicyPrincipalsCommand.ts index d823bc37438ae..10bbc5dca32f8 100644 --- a/clients/client-iot/src/commands/ListPolicyPrincipalsCommand.ts +++ b/clients/client-iot/src/commands/ListPolicyPrincipalsCommand.ts @@ -85,6 +85,7 @@ export interface ListPolicyPrincipalsCommandOutput extends ListPolicyPrincipalsR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListPolicyPrincipalsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListPolicyVersionsCommand.ts b/clients/client-iot/src/commands/ListPolicyVersionsCommand.ts index b97e4d5146584..9515c2814d408 100644 --- a/clients/client-iot/src/commands/ListPolicyVersionsCommand.ts +++ b/clients/client-iot/src/commands/ListPolicyVersionsCommand.ts @@ -81,6 +81,7 @@ export interface ListPolicyVersionsCommandOutput extends ListPolicyVersionsRespo * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListPolicyVersionsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListPrincipalPoliciesCommand.ts b/clients/client-iot/src/commands/ListPrincipalPoliciesCommand.ts index 399e02243eccf..e2f476840bc29 100644 --- a/clients/client-iot/src/commands/ListPrincipalPoliciesCommand.ts +++ b/clients/client-iot/src/commands/ListPrincipalPoliciesCommand.ts @@ -89,6 +89,7 @@ export interface ListPrincipalPoliciesCommandOutput extends ListPrincipalPolicie * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListPrincipalPoliciesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListPrincipalThingsCommand.ts b/clients/client-iot/src/commands/ListPrincipalThingsCommand.ts index 17d753a4269ad..ab05fe50da22d 100644 --- a/clients/client-iot/src/commands/ListPrincipalThingsCommand.ts +++ b/clients/client-iot/src/commands/ListPrincipalThingsCommand.ts @@ -81,6 +81,7 @@ export interface ListPrincipalThingsCommandOutput extends ListPrincipalThingsRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListPrincipalThingsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListPrincipalThingsV2Command.ts b/clients/client-iot/src/commands/ListPrincipalThingsV2Command.ts index 849354c664ed6..d32c6cdd5750d 100644 --- a/clients/client-iot/src/commands/ListPrincipalThingsV2Command.ts +++ b/clients/client-iot/src/commands/ListPrincipalThingsV2Command.ts @@ -84,6 +84,7 @@ export interface ListPrincipalThingsV2CommandOutput extends ListPrincipalThingsV * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListPrincipalThingsV2Command extends $Command diff --git a/clients/client-iot/src/commands/ListProvisioningTemplateVersionsCommand.ts b/clients/client-iot/src/commands/ListProvisioningTemplateVersionsCommand.ts index 4d13266f3b682..2adf1c7542585 100644 --- a/clients/client-iot/src/commands/ListProvisioningTemplateVersionsCommand.ts +++ b/clients/client-iot/src/commands/ListProvisioningTemplateVersionsCommand.ts @@ -85,6 +85,7 @@ export interface ListProvisioningTemplateVersionsCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListProvisioningTemplateVersionsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListProvisioningTemplatesCommand.ts b/clients/client-iot/src/commands/ListProvisioningTemplatesCommand.ts index f8486ee57cc1e..bef24adef1717 100644 --- a/clients/client-iot/src/commands/ListProvisioningTemplatesCommand.ts +++ b/clients/client-iot/src/commands/ListProvisioningTemplatesCommand.ts @@ -80,6 +80,7 @@ export interface ListProvisioningTemplatesCommandOutput extends ListProvisioning * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListProvisioningTemplatesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListRelatedResourcesForAuditFindingCommand.ts b/clients/client-iot/src/commands/ListRelatedResourcesForAuditFindingCommand.ts index 54fa3e926c522..f39b341efc668 100644 --- a/clients/client-iot/src/commands/ListRelatedResourcesForAuditFindingCommand.ts +++ b/clients/client-iot/src/commands/ListRelatedResourcesForAuditFindingCommand.ts @@ -140,6 +140,7 @@ export interface ListRelatedResourcesForAuditFindingCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListRelatedResourcesForAuditFindingCommand extends $Command diff --git a/clients/client-iot/src/commands/ListRoleAliasesCommand.ts b/clients/client-iot/src/commands/ListRoleAliasesCommand.ts index 9522001bc0151..5050d49966ce1 100644 --- a/clients/client-iot/src/commands/ListRoleAliasesCommand.ts +++ b/clients/client-iot/src/commands/ListRoleAliasesCommand.ts @@ -76,6 +76,7 @@ export interface ListRoleAliasesCommandOutput extends ListRoleAliasesResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListRoleAliasesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListSbomValidationResultsCommand.ts b/clients/client-iot/src/commands/ListSbomValidationResultsCommand.ts index f45a832ba4df8..bca8371adc654 100644 --- a/clients/client-iot/src/commands/ListSbomValidationResultsCommand.ts +++ b/clients/client-iot/src/commands/ListSbomValidationResultsCommand.ts @@ -81,6 +81,7 @@ export interface ListSbomValidationResultsCommandOutput extends ListSbomValidati * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListSbomValidationResultsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListScheduledAuditsCommand.ts b/clients/client-iot/src/commands/ListScheduledAuditsCommand.ts index df19b39fb8658..6049a0fa43111 100644 --- a/clients/client-iot/src/commands/ListScheduledAuditsCommand.ts +++ b/clients/client-iot/src/commands/ListScheduledAuditsCommand.ts @@ -75,6 +75,7 @@ export interface ListScheduledAuditsCommandOutput extends ListScheduledAuditsRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListScheduledAuditsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListSecurityProfilesCommand.ts b/clients/client-iot/src/commands/ListSecurityProfilesCommand.ts index 48bf23ab4fad6..b8e8c2b07551a 100644 --- a/clients/client-iot/src/commands/ListSecurityProfilesCommand.ts +++ b/clients/client-iot/src/commands/ListSecurityProfilesCommand.ts @@ -83,6 +83,7 @@ export interface ListSecurityProfilesCommandOutput extends ListSecurityProfilesR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListSecurityProfilesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListSecurityProfilesForTargetCommand.ts b/clients/client-iot/src/commands/ListSecurityProfilesForTargetCommand.ts index c17e7c8919189..f3da27d7f9541 100644 --- a/clients/client-iot/src/commands/ListSecurityProfilesForTargetCommand.ts +++ b/clients/client-iot/src/commands/ListSecurityProfilesForTargetCommand.ts @@ -87,6 +87,7 @@ export interface ListSecurityProfilesForTargetCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListSecurityProfilesForTargetCommand extends $Command diff --git a/clients/client-iot/src/commands/ListStreamsCommand.ts b/clients/client-iot/src/commands/ListStreamsCommand.ts index 788aa7d45eb86..84d4b1eedb9c2 100644 --- a/clients/client-iot/src/commands/ListStreamsCommand.ts +++ b/clients/client-iot/src/commands/ListStreamsCommand.ts @@ -81,6 +81,7 @@ export interface ListStreamsCommandOutput extends ListStreamsResponse, __Metadat * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListStreamsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListTagsForResourceCommand.ts b/clients/client-iot/src/commands/ListTagsForResourceCommand.ts index ac0fd585e922f..34446448a666d 100644 --- a/clients/client-iot/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iot/src/commands/ListTagsForResourceCommand.ts @@ -75,6 +75,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-iot/src/commands/ListTargetsForPolicyCommand.ts b/clients/client-iot/src/commands/ListTargetsForPolicyCommand.ts index 1eedf955aee5e..d78c2cf4c26d2 100644 --- a/clients/client-iot/src/commands/ListTargetsForPolicyCommand.ts +++ b/clients/client-iot/src/commands/ListTargetsForPolicyCommand.ts @@ -82,6 +82,7 @@ export interface ListTargetsForPolicyCommandOutput extends ListTargetsForPolicyR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListTargetsForPolicyCommand extends $Command diff --git a/clients/client-iot/src/commands/ListTargetsForSecurityProfileCommand.ts b/clients/client-iot/src/commands/ListTargetsForSecurityProfileCommand.ts index cb0dd525a8470..5a6e2e5ec3e10 100644 --- a/clients/client-iot/src/commands/ListTargetsForSecurityProfileCommand.ts +++ b/clients/client-iot/src/commands/ListTargetsForSecurityProfileCommand.ts @@ -80,6 +80,7 @@ export interface ListTargetsForSecurityProfileCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListTargetsForSecurityProfileCommand extends $Command diff --git a/clients/client-iot/src/commands/ListThingGroupsCommand.ts b/clients/client-iot/src/commands/ListThingGroupsCommand.ts index 865b004f878af..c3ef729fa3094 100644 --- a/clients/client-iot/src/commands/ListThingGroupsCommand.ts +++ b/clients/client-iot/src/commands/ListThingGroupsCommand.ts @@ -78,6 +78,7 @@ export interface ListThingGroupsCommandOutput extends ListThingGroupsResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListThingGroupsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListThingGroupsForThingCommand.ts b/clients/client-iot/src/commands/ListThingGroupsForThingCommand.ts index ecf890b70f647..e896643eea899 100644 --- a/clients/client-iot/src/commands/ListThingGroupsForThingCommand.ts +++ b/clients/client-iot/src/commands/ListThingGroupsForThingCommand.ts @@ -76,6 +76,7 @@ export interface ListThingGroupsForThingCommandOutput extends ListThingGroupsFor * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListThingGroupsForThingCommand extends $Command diff --git a/clients/client-iot/src/commands/ListThingPrincipalsCommand.ts b/clients/client-iot/src/commands/ListThingPrincipalsCommand.ts index c766f5a8b601d..21979445dd46c 100644 --- a/clients/client-iot/src/commands/ListThingPrincipalsCommand.ts +++ b/clients/client-iot/src/commands/ListThingPrincipalsCommand.ts @@ -81,6 +81,7 @@ export interface ListThingPrincipalsCommandOutput extends ListThingPrincipalsRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListThingPrincipalsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListThingPrincipalsV2Command.ts b/clients/client-iot/src/commands/ListThingPrincipalsV2Command.ts index 1ba49e406209f..8c2415d74e3ac 100644 --- a/clients/client-iot/src/commands/ListThingPrincipalsV2Command.ts +++ b/clients/client-iot/src/commands/ListThingPrincipalsV2Command.ts @@ -84,6 +84,7 @@ export interface ListThingPrincipalsV2CommandOutput extends ListThingPrincipalsV * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListThingPrincipalsV2Command extends $Command diff --git a/clients/client-iot/src/commands/ListThingRegistrationTaskReportsCommand.ts b/clients/client-iot/src/commands/ListThingRegistrationTaskReportsCommand.ts index 15069e2da4241..e9401c74fc0e7 100644 --- a/clients/client-iot/src/commands/ListThingRegistrationTaskReportsCommand.ts +++ b/clients/client-iot/src/commands/ListThingRegistrationTaskReportsCommand.ts @@ -79,6 +79,7 @@ export interface ListThingRegistrationTaskReportsCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListThingRegistrationTaskReportsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListThingRegistrationTasksCommand.ts b/clients/client-iot/src/commands/ListThingRegistrationTasksCommand.ts index 44776ef677e92..4462786dd1ad8 100644 --- a/clients/client-iot/src/commands/ListThingRegistrationTasksCommand.ts +++ b/clients/client-iot/src/commands/ListThingRegistrationTasksCommand.ts @@ -73,6 +73,7 @@ export interface ListThingRegistrationTasksCommandOutput extends ListThingRegist * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListThingRegistrationTasksCommand extends $Command diff --git a/clients/client-iot/src/commands/ListThingTypesCommand.ts b/clients/client-iot/src/commands/ListThingTypesCommand.ts index df67309e38aa5..0d5341917c186 100644 --- a/clients/client-iot/src/commands/ListThingTypesCommand.ts +++ b/clients/client-iot/src/commands/ListThingTypesCommand.ts @@ -99,6 +99,7 @@ export interface ListThingTypesCommandOutput extends ListThingTypesResponse, __M * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListThingTypesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListThingsCommand.ts b/clients/client-iot/src/commands/ListThingsCommand.ts index 8cce2b23a5115..8324b11def1e7 100644 --- a/clients/client-iot/src/commands/ListThingsCommand.ts +++ b/clients/client-iot/src/commands/ListThingsCommand.ts @@ -94,6 +94,7 @@ export interface ListThingsCommandOutput extends ListThingsResponse, __MetadataB * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListThingsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListThingsInBillingGroupCommand.ts b/clients/client-iot/src/commands/ListThingsInBillingGroupCommand.ts index 44aa31e630419..bcf5e6ab495c2 100644 --- a/clients/client-iot/src/commands/ListThingsInBillingGroupCommand.ts +++ b/clients/client-iot/src/commands/ListThingsInBillingGroupCommand.ts @@ -73,6 +73,7 @@ export interface ListThingsInBillingGroupCommandOutput extends ListThingsInBilli * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListThingsInBillingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/ListThingsInThingGroupCommand.ts b/clients/client-iot/src/commands/ListThingsInThingGroupCommand.ts index 7a53e5828297c..629e38998a027 100644 --- a/clients/client-iot/src/commands/ListThingsInThingGroupCommand.ts +++ b/clients/client-iot/src/commands/ListThingsInThingGroupCommand.ts @@ -74,6 +74,7 @@ export interface ListThingsInThingGroupCommandOutput extends ListThingsInThingGr * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListThingsInThingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/ListTopicRuleDestinationsCommand.ts b/clients/client-iot/src/commands/ListTopicRuleDestinationsCommand.ts index 519ebb17de17b..7b2767fcbf7c0 100644 --- a/clients/client-iot/src/commands/ListTopicRuleDestinationsCommand.ts +++ b/clients/client-iot/src/commands/ListTopicRuleDestinationsCommand.ts @@ -91,6 +91,7 @@ export interface ListTopicRuleDestinationsCommandOutput extends ListTopicRuleDes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListTopicRuleDestinationsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListTopicRulesCommand.ts b/clients/client-iot/src/commands/ListTopicRulesCommand.ts index 28c2e7a3c6903..1cf4e19711e69 100644 --- a/clients/client-iot/src/commands/ListTopicRulesCommand.ts +++ b/clients/client-iot/src/commands/ListTopicRulesCommand.ts @@ -77,6 +77,7 @@ export interface ListTopicRulesCommandOutput extends ListTopicRulesResponse, __M * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListTopicRulesCommand extends $Command diff --git a/clients/client-iot/src/commands/ListV2LoggingLevelsCommand.ts b/clients/client-iot/src/commands/ListV2LoggingLevelsCommand.ts index 1d4707b8d493e..ee44f7ff8d6bc 100644 --- a/clients/client-iot/src/commands/ListV2LoggingLevelsCommand.ts +++ b/clients/client-iot/src/commands/ListV2LoggingLevelsCommand.ts @@ -79,6 +79,7 @@ export interface ListV2LoggingLevelsCommandOutput extends ListV2LoggingLevelsRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListV2LoggingLevelsCommand extends $Command diff --git a/clients/client-iot/src/commands/ListViolationEventsCommand.ts b/clients/client-iot/src/commands/ListViolationEventsCommand.ts index 5c1b80493fda9..6e57ccb6a8005 100644 --- a/clients/client-iot/src/commands/ListViolationEventsCommand.ts +++ b/clients/client-iot/src/commands/ListViolationEventsCommand.ts @@ -143,6 +143,7 @@ export interface ListViolationEventsCommandOutput extends ListViolationEventsRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ListViolationEventsCommand extends $Command diff --git a/clients/client-iot/src/commands/PutVerificationStateOnViolationCommand.ts b/clients/client-iot/src/commands/PutVerificationStateOnViolationCommand.ts index 1ba0d346845ae..d649427028c4e 100644 --- a/clients/client-iot/src/commands/PutVerificationStateOnViolationCommand.ts +++ b/clients/client-iot/src/commands/PutVerificationStateOnViolationCommand.ts @@ -69,6 +69,7 @@ export interface PutVerificationStateOnViolationCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class PutVerificationStateOnViolationCommand extends $Command diff --git a/clients/client-iot/src/commands/RegisterCACertificateCommand.ts b/clients/client-iot/src/commands/RegisterCACertificateCommand.ts index 14936da13040f..20829843ffba6 100644 --- a/clients/client-iot/src/commands/RegisterCACertificateCommand.ts +++ b/clients/client-iot/src/commands/RegisterCACertificateCommand.ts @@ -104,6 +104,7 @@ export interface RegisterCACertificateCommandOutput extends RegisterCACertificat * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class RegisterCACertificateCommand extends $Command diff --git a/clients/client-iot/src/commands/RegisterCertificateCommand.ts b/clients/client-iot/src/commands/RegisterCertificateCommand.ts index 4b40578e9b8de..399a09ab5b97a 100644 --- a/clients/client-iot/src/commands/RegisterCertificateCommand.ts +++ b/clients/client-iot/src/commands/RegisterCertificateCommand.ts @@ -91,6 +91,7 @@ export interface RegisterCertificateCommandOutput extends RegisterCertificateRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class RegisterCertificateCommand extends $Command diff --git a/clients/client-iot/src/commands/RegisterCertificateWithoutCACommand.ts b/clients/client-iot/src/commands/RegisterCertificateWithoutCACommand.ts index e876c0104815e..c65b12d910faf 100644 --- a/clients/client-iot/src/commands/RegisterCertificateWithoutCACommand.ts +++ b/clients/client-iot/src/commands/RegisterCertificateWithoutCACommand.ts @@ -89,6 +89,7 @@ export interface RegisterCertificateWithoutCACommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class RegisterCertificateWithoutCACommand extends $Command diff --git a/clients/client-iot/src/commands/RegisterThingCommand.ts b/clients/client-iot/src/commands/RegisterThingCommand.ts index 1f09195c26827..c49615c98ced9 100644 --- a/clients/client-iot/src/commands/RegisterThingCommand.ts +++ b/clients/client-iot/src/commands/RegisterThingCommand.ts @@ -87,6 +87,7 @@ export interface RegisterThingCommandOutput extends RegisterThingResponse, __Met * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class RegisterThingCommand extends $Command diff --git a/clients/client-iot/src/commands/RejectCertificateTransferCommand.ts b/clients/client-iot/src/commands/RejectCertificateTransferCommand.ts index 752c206199503..f798f1e20d30d 100644 --- a/clients/client-iot/src/commands/RejectCertificateTransferCommand.ts +++ b/clients/client-iot/src/commands/RejectCertificateTransferCommand.ts @@ -83,6 +83,7 @@ export interface RejectCertificateTransferCommandOutput extends __MetadataBearer * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class RejectCertificateTransferCommand extends $Command diff --git a/clients/client-iot/src/commands/RemoveThingFromBillingGroupCommand.ts b/clients/client-iot/src/commands/RemoveThingFromBillingGroupCommand.ts index d590535c47acb..54af151dc7b20 100644 --- a/clients/client-iot/src/commands/RemoveThingFromBillingGroupCommand.ts +++ b/clients/client-iot/src/commands/RemoveThingFromBillingGroupCommand.ts @@ -77,6 +77,7 @@ export interface RemoveThingFromBillingGroupCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class RemoveThingFromBillingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/RemoveThingFromThingGroupCommand.ts b/clients/client-iot/src/commands/RemoveThingFromThingGroupCommand.ts index e06d4b74f0b73..43d6a5e892acf 100644 --- a/clients/client-iot/src/commands/RemoveThingFromThingGroupCommand.ts +++ b/clients/client-iot/src/commands/RemoveThingFromThingGroupCommand.ts @@ -74,6 +74,7 @@ export interface RemoveThingFromThingGroupCommandOutput extends RemoveThingFromT * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class RemoveThingFromThingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/ReplaceTopicRuleCommand.ts b/clients/client-iot/src/commands/ReplaceTopicRuleCommand.ts index ffdb39ecdadd5..bdd5496a2ee7d 100644 --- a/clients/client-iot/src/commands/ReplaceTopicRuleCommand.ts +++ b/clients/client-iot/src/commands/ReplaceTopicRuleCommand.ts @@ -495,6 +495,7 @@ export interface ReplaceTopicRuleCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ReplaceTopicRuleCommand extends $Command diff --git a/clients/client-iot/src/commands/SearchIndexCommand.ts b/clients/client-iot/src/commands/SearchIndexCommand.ts index b1678e4037e5f..9f2175953a659 100644 --- a/clients/client-iot/src/commands/SearchIndexCommand.ts +++ b/clients/client-iot/src/commands/SearchIndexCommand.ts @@ -117,6 +117,7 @@ export interface SearchIndexCommandOutput extends SearchIndexResponse, __Metadat * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class SearchIndexCommand extends $Command diff --git a/clients/client-iot/src/commands/SetDefaultAuthorizerCommand.ts b/clients/client-iot/src/commands/SetDefaultAuthorizerCommand.ts index e74c8f2383eb2..69da2a64e3cc6 100644 --- a/clients/client-iot/src/commands/SetDefaultAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/SetDefaultAuthorizerCommand.ts @@ -79,6 +79,7 @@ export interface SetDefaultAuthorizerCommandOutput extends SetDefaultAuthorizerR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class SetDefaultAuthorizerCommand extends $Command diff --git a/clients/client-iot/src/commands/SetDefaultPolicyVersionCommand.ts b/clients/client-iot/src/commands/SetDefaultPolicyVersionCommand.ts index efa8015ba68eb..14957001bf216 100644 --- a/clients/client-iot/src/commands/SetDefaultPolicyVersionCommand.ts +++ b/clients/client-iot/src/commands/SetDefaultPolicyVersionCommand.ts @@ -76,6 +76,7 @@ export interface SetDefaultPolicyVersionCommandOutput extends __MetadataBearer { * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class SetDefaultPolicyVersionCommand extends $Command diff --git a/clients/client-iot/src/commands/SetLoggingOptionsCommand.ts b/clients/client-iot/src/commands/SetLoggingOptionsCommand.ts index a6b42bc397a32..d2faae32a74fa 100644 --- a/clients/client-iot/src/commands/SetLoggingOptionsCommand.ts +++ b/clients/client-iot/src/commands/SetLoggingOptionsCommand.ts @@ -68,6 +68,7 @@ export interface SetLoggingOptionsCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class SetLoggingOptionsCommand extends $Command diff --git a/clients/client-iot/src/commands/SetV2LoggingLevelCommand.ts b/clients/client-iot/src/commands/SetV2LoggingLevelCommand.ts index f7819b75abf5e..3637653745b39 100644 --- a/clients/client-iot/src/commands/SetV2LoggingLevelCommand.ts +++ b/clients/client-iot/src/commands/SetV2LoggingLevelCommand.ts @@ -73,6 +73,7 @@ export interface SetV2LoggingLevelCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class SetV2LoggingLevelCommand extends $Command diff --git a/clients/client-iot/src/commands/SetV2LoggingOptionsCommand.ts b/clients/client-iot/src/commands/SetV2LoggingOptionsCommand.ts index 26b766cf8e776..b4fd3daac6e42 100644 --- a/clients/client-iot/src/commands/SetV2LoggingOptionsCommand.ts +++ b/clients/client-iot/src/commands/SetV2LoggingOptionsCommand.ts @@ -65,6 +65,7 @@ export interface SetV2LoggingOptionsCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class SetV2LoggingOptionsCommand extends $Command diff --git a/clients/client-iot/src/commands/StartAuditMitigationActionsTaskCommand.ts b/clients/client-iot/src/commands/StartAuditMitigationActionsTaskCommand.ts index 7ff011ddf12cc..de11c77989443 100644 --- a/clients/client-iot/src/commands/StartAuditMitigationActionsTaskCommand.ts +++ b/clients/client-iot/src/commands/StartAuditMitigationActionsTaskCommand.ts @@ -95,6 +95,7 @@ export interface StartAuditMitigationActionsTaskCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class StartAuditMitigationActionsTaskCommand extends $Command diff --git a/clients/client-iot/src/commands/StartDetectMitigationActionsTaskCommand.ts b/clients/client-iot/src/commands/StartDetectMitigationActionsTaskCommand.ts index 7954c613313f0..3f9ccb90d2293 100644 --- a/clients/client-iot/src/commands/StartDetectMitigationActionsTaskCommand.ts +++ b/clients/client-iot/src/commands/StartDetectMitigationActionsTaskCommand.ts @@ -97,6 +97,7 @@ export interface StartDetectMitigationActionsTaskCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class StartDetectMitigationActionsTaskCommand extends $Command diff --git a/clients/client-iot/src/commands/StartOnDemandAuditTaskCommand.ts b/clients/client-iot/src/commands/StartOnDemandAuditTaskCommand.ts index 613efc754088c..4d98d95669801 100644 --- a/clients/client-iot/src/commands/StartOnDemandAuditTaskCommand.ts +++ b/clients/client-iot/src/commands/StartOnDemandAuditTaskCommand.ts @@ -70,6 +70,7 @@ export interface StartOnDemandAuditTaskCommandOutput extends StartOnDemandAuditT * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class StartOnDemandAuditTaskCommand extends $Command diff --git a/clients/client-iot/src/commands/StartThingRegistrationTaskCommand.ts b/clients/client-iot/src/commands/StartThingRegistrationTaskCommand.ts index d25e1539cfda6..ebb9162837c4f 100644 --- a/clients/client-iot/src/commands/StartThingRegistrationTaskCommand.ts +++ b/clients/client-iot/src/commands/StartThingRegistrationTaskCommand.ts @@ -71,6 +71,7 @@ export interface StartThingRegistrationTaskCommandOutput extends StartThingRegis * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class StartThingRegistrationTaskCommand extends $Command diff --git a/clients/client-iot/src/commands/StopThingRegistrationTaskCommand.ts b/clients/client-iot/src/commands/StopThingRegistrationTaskCommand.ts index ce54f32827d72..bbfcf39fd26fe 100644 --- a/clients/client-iot/src/commands/StopThingRegistrationTaskCommand.ts +++ b/clients/client-iot/src/commands/StopThingRegistrationTaskCommand.ts @@ -69,6 +69,7 @@ export interface StopThingRegistrationTaskCommandOutput extends StopThingRegistr * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class StopThingRegistrationTaskCommand extends $Command diff --git a/clients/client-iot/src/commands/TagResourceCommand.ts b/clients/client-iot/src/commands/TagResourceCommand.ts index ae8d875cc8b3e..b9339911fa22b 100644 --- a/clients/client-iot/src/commands/TagResourceCommand.ts +++ b/clients/client-iot/src/commands/TagResourceCommand.ts @@ -76,6 +76,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-iot/src/commands/TestAuthorizationCommand.ts b/clients/client-iot/src/commands/TestAuthorizationCommand.ts index bf03350ad4a71..0363388fa1844 100644 --- a/clients/client-iot/src/commands/TestAuthorizationCommand.ts +++ b/clients/client-iot/src/commands/TestAuthorizationCommand.ts @@ -134,6 +134,7 @@ export interface TestAuthorizationCommandOutput extends TestAuthorizationRespons * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class TestAuthorizationCommand extends $Command diff --git a/clients/client-iot/src/commands/TestInvokeAuthorizerCommand.ts b/clients/client-iot/src/commands/TestInvokeAuthorizerCommand.ts index 4b2d3a7cd89e7..df10bd6d813a0 100644 --- a/clients/client-iot/src/commands/TestInvokeAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/TestInvokeAuthorizerCommand.ts @@ -101,6 +101,7 @@ export interface TestInvokeAuthorizerCommandOutput extends TestInvokeAuthorizerR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class TestInvokeAuthorizerCommand extends $Command diff --git a/clients/client-iot/src/commands/TransferCertificateCommand.ts b/clients/client-iot/src/commands/TransferCertificateCommand.ts index 36420cc8d3ee6..8659faf52db45 100644 --- a/clients/client-iot/src/commands/TransferCertificateCommand.ts +++ b/clients/client-iot/src/commands/TransferCertificateCommand.ts @@ -90,6 +90,7 @@ export interface TransferCertificateCommandOutput extends TransferCertificateRes * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class TransferCertificateCommand extends $Command diff --git a/clients/client-iot/src/commands/UntagResourceCommand.ts b/clients/client-iot/src/commands/UntagResourceCommand.ts index ad24932e68339..6ed7f25022c77 100644 --- a/clients/client-iot/src/commands/UntagResourceCommand.ts +++ b/clients/client-iot/src/commands/UntagResourceCommand.ts @@ -69,6 +69,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateAccountAuditConfigurationCommand.ts b/clients/client-iot/src/commands/UpdateAccountAuditConfigurationCommand.ts index 5d889864d0a84..cd34c9bb05a48 100644 --- a/clients/client-iot/src/commands/UpdateAccountAuditConfigurationCommand.ts +++ b/clients/client-iot/src/commands/UpdateAccountAuditConfigurationCommand.ts @@ -85,6 +85,7 @@ export interface UpdateAccountAuditConfigurationCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateAccountAuditConfigurationCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateAuditSuppressionCommand.ts b/clients/client-iot/src/commands/UpdateAuditSuppressionCommand.ts index 11cc61000383f..b78233cdb55bd 100644 --- a/clients/client-iot/src/commands/UpdateAuditSuppressionCommand.ts +++ b/clients/client-iot/src/commands/UpdateAuditSuppressionCommand.ts @@ -89,6 +89,7 @@ export interface UpdateAuditSuppressionCommandOutput extends UpdateAuditSuppress * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateAuditSuppressionCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateAuthorizerCommand.ts b/clients/client-iot/src/commands/UpdateAuthorizerCommand.ts index e2b0c80912d74..fb7e4dcc21836 100644 --- a/clients/client-iot/src/commands/UpdateAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/UpdateAuthorizerCommand.ts @@ -85,6 +85,7 @@ export interface UpdateAuthorizerCommandOutput extends UpdateAuthorizerResponse, * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateAuthorizerCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateBillingGroupCommand.ts b/clients/client-iot/src/commands/UpdateBillingGroupCommand.ts index 7e280f0baf24d..ed24abe440073 100644 --- a/clients/client-iot/src/commands/UpdateBillingGroupCommand.ts +++ b/clients/client-iot/src/commands/UpdateBillingGroupCommand.ts @@ -77,6 +77,7 @@ export interface UpdateBillingGroupCommandOutput extends UpdateBillingGroupRespo * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateBillingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateCACertificateCommand.ts b/clients/client-iot/src/commands/UpdateCACertificateCommand.ts index 31f883c2215d7..e06d8730c1b8d 100644 --- a/clients/client-iot/src/commands/UpdateCACertificateCommand.ts +++ b/clients/client-iot/src/commands/UpdateCACertificateCommand.ts @@ -80,6 +80,7 @@ export interface UpdateCACertificateCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateCACertificateCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateCertificateCommand.ts b/clients/client-iot/src/commands/UpdateCertificateCommand.ts index b13114990894a..f27116506ccb3 100644 --- a/clients/client-iot/src/commands/UpdateCertificateCommand.ts +++ b/clients/client-iot/src/commands/UpdateCertificateCommand.ts @@ -82,6 +82,7 @@ export interface UpdateCertificateCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateCertificateCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateCertificateProviderCommand.ts b/clients/client-iot/src/commands/UpdateCertificateProviderCommand.ts index dda6f7975f2bc..9efc7f576c381 100644 --- a/clients/client-iot/src/commands/UpdateCertificateProviderCommand.ts +++ b/clients/client-iot/src/commands/UpdateCertificateProviderCommand.ts @@ -80,6 +80,7 @@ export interface UpdateCertificateProviderCommandOutput extends UpdateCertificat * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateCertificateProviderCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateCommandCommand.ts b/clients/client-iot/src/commands/UpdateCommandCommand.ts index 36833fc009122..d4030c68031c3 100644 --- a/clients/client-iot/src/commands/UpdateCommandCommand.ts +++ b/clients/client-iot/src/commands/UpdateCommandCommand.ts @@ -78,6 +78,7 @@ export interface UpdateCommandCommandOutput extends UpdateCommandResponse, __Met * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateCommandCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateCustomMetricCommand.ts b/clients/client-iot/src/commands/UpdateCustomMetricCommand.ts index 70e82d6dbaa0f..4d2d11e4563cb 100644 --- a/clients/client-iot/src/commands/UpdateCustomMetricCommand.ts +++ b/clients/client-iot/src/commands/UpdateCustomMetricCommand.ts @@ -75,6 +75,7 @@ export interface UpdateCustomMetricCommandOutput extends UpdateCustomMetricRespo * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateCustomMetricCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateDimensionCommand.ts b/clients/client-iot/src/commands/UpdateDimensionCommand.ts index 45a4ccb06054e..ffec5c0e35852 100644 --- a/clients/client-iot/src/commands/UpdateDimensionCommand.ts +++ b/clients/client-iot/src/commands/UpdateDimensionCommand.ts @@ -83,6 +83,7 @@ export interface UpdateDimensionCommandOutput extends UpdateDimensionResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateDimensionCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateDomainConfigurationCommand.ts b/clients/client-iot/src/commands/UpdateDomainConfigurationCommand.ts index 162ec847b0d07..0fdcb21543fcd 100644 --- a/clients/client-iot/src/commands/UpdateDomainConfigurationCommand.ts +++ b/clients/client-iot/src/commands/UpdateDomainConfigurationCommand.ts @@ -98,6 +98,7 @@ export interface UpdateDomainConfigurationCommandOutput extends UpdateDomainConf * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateDomainConfigurationCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateDynamicThingGroupCommand.ts b/clients/client-iot/src/commands/UpdateDynamicThingGroupCommand.ts index b72f72535d22a..1d76d5cae955f 100644 --- a/clients/client-iot/src/commands/UpdateDynamicThingGroupCommand.ts +++ b/clients/client-iot/src/commands/UpdateDynamicThingGroupCommand.ts @@ -89,6 +89,7 @@ export interface UpdateDynamicThingGroupCommandOutput extends UpdateDynamicThing * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateDynamicThingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateEventConfigurationsCommand.ts b/clients/client-iot/src/commands/UpdateEventConfigurationsCommand.ts index ea0a42eac653e..8beb8691c97c9 100644 --- a/clients/client-iot/src/commands/UpdateEventConfigurationsCommand.ts +++ b/clients/client-iot/src/commands/UpdateEventConfigurationsCommand.ts @@ -67,6 +67,7 @@ export interface UpdateEventConfigurationsCommandOutput extends UpdateEventConfi * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateEventConfigurationsCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateFleetMetricCommand.ts b/clients/client-iot/src/commands/UpdateFleetMetricCommand.ts index 9a5515ccc3d6b..66421ec395ba1 100644 --- a/clients/client-iot/src/commands/UpdateFleetMetricCommand.ts +++ b/clients/client-iot/src/commands/UpdateFleetMetricCommand.ts @@ -100,6 +100,7 @@ export interface UpdateFleetMetricCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateFleetMetricCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateIndexingConfigurationCommand.ts b/clients/client-iot/src/commands/UpdateIndexingConfigurationCommand.ts index 24594e4e20176..56e18092c5f1b 100644 --- a/clients/client-iot/src/commands/UpdateIndexingConfigurationCommand.ts +++ b/clients/client-iot/src/commands/UpdateIndexingConfigurationCommand.ts @@ -117,6 +117,7 @@ export interface UpdateIndexingConfigurationCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateIndexingConfigurationCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateJobCommand.ts b/clients/client-iot/src/commands/UpdateJobCommand.ts index cdb28121c8d2e..d8f2e415e32a8 100644 --- a/clients/client-iot/src/commands/UpdateJobCommand.ts +++ b/clients/client-iot/src/commands/UpdateJobCommand.ts @@ -104,6 +104,7 @@ export interface UpdateJobCommandOutput extends __MetadataBearer {} * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateJobCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateMitigationActionCommand.ts b/clients/client-iot/src/commands/UpdateMitigationActionCommand.ts index 088c88b942482..b9396419519be 100644 --- a/clients/client-iot/src/commands/UpdateMitigationActionCommand.ts +++ b/clients/client-iot/src/commands/UpdateMitigationActionCommand.ts @@ -94,6 +94,7 @@ export interface UpdateMitigationActionCommandOutput extends UpdateMitigationAct * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateMitigationActionCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdatePackageCommand.ts b/clients/client-iot/src/commands/UpdatePackageCommand.ts index cec2289a307e5..338c1942bf907 100644 --- a/clients/client-iot/src/commands/UpdatePackageCommand.ts +++ b/clients/client-iot/src/commands/UpdatePackageCommand.ts @@ -78,6 +78,7 @@ export interface UpdatePackageCommandOutput extends UpdatePackageResponse, __Met * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdatePackageCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdatePackageConfigurationCommand.ts b/clients/client-iot/src/commands/UpdatePackageConfigurationCommand.ts index a0dbc4b455c3d..e28c5e733f2a4 100644 --- a/clients/client-iot/src/commands/UpdatePackageConfigurationCommand.ts +++ b/clients/client-iot/src/commands/UpdatePackageConfigurationCommand.ts @@ -71,6 +71,7 @@ export interface UpdatePackageConfigurationCommandOutput extends UpdatePackageCo * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdatePackageConfigurationCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdatePackageVersionCommand.ts b/clients/client-iot/src/commands/UpdatePackageVersionCommand.ts index 0383d9eb36961..7b79b4b6ea4b3 100644 --- a/clients/client-iot/src/commands/UpdatePackageVersionCommand.ts +++ b/clients/client-iot/src/commands/UpdatePackageVersionCommand.ts @@ -89,6 +89,7 @@ export interface UpdatePackageVersionCommandOutput extends UpdatePackageVersionR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdatePackageVersionCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateProvisioningTemplateCommand.ts b/clients/client-iot/src/commands/UpdateProvisioningTemplateCommand.ts index 44f62690ecf01..cd8fda713916a 100644 --- a/clients/client-iot/src/commands/UpdateProvisioningTemplateCommand.ts +++ b/clients/client-iot/src/commands/UpdateProvisioningTemplateCommand.ts @@ -79,6 +79,7 @@ export interface UpdateProvisioningTemplateCommandOutput extends UpdateProvision * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateProvisioningTemplateCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateRoleAliasCommand.ts b/clients/client-iot/src/commands/UpdateRoleAliasCommand.ts index ffc28330b59e8..97947400811ad 100644 --- a/clients/client-iot/src/commands/UpdateRoleAliasCommand.ts +++ b/clients/client-iot/src/commands/UpdateRoleAliasCommand.ts @@ -85,6 +85,7 @@ export interface UpdateRoleAliasCommandOutput extends UpdateRoleAliasResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateRoleAliasCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateScheduledAuditCommand.ts b/clients/client-iot/src/commands/UpdateScheduledAuditCommand.ts index 4f673776d392e..45f505ec7df25 100644 --- a/clients/client-iot/src/commands/UpdateScheduledAuditCommand.ts +++ b/clients/client-iot/src/commands/UpdateScheduledAuditCommand.ts @@ -75,6 +75,7 @@ export interface UpdateScheduledAuditCommandOutput extends UpdateScheduledAuditR * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateScheduledAuditCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateSecurityProfileCommand.ts b/clients/client-iot/src/commands/UpdateSecurityProfileCommand.ts index 2d83969895997..ced839ffae0c5 100644 --- a/clients/client-iot/src/commands/UpdateSecurityProfileCommand.ts +++ b/clients/client-iot/src/commands/UpdateSecurityProfileCommand.ts @@ -210,6 +210,7 @@ export interface UpdateSecurityProfileCommandOutput extends UpdateSecurityProfil * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateSecurityProfileCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateStreamCommand.ts b/clients/client-iot/src/commands/UpdateStreamCommand.ts index 4140774bbe240..c39002320d660 100644 --- a/clients/client-iot/src/commands/UpdateStreamCommand.ts +++ b/clients/client-iot/src/commands/UpdateStreamCommand.ts @@ -92,6 +92,7 @@ export interface UpdateStreamCommandOutput extends UpdateStreamResponse, __Metad * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateStreamCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateThingCommand.ts b/clients/client-iot/src/commands/UpdateThingCommand.ts index 5fa0ca9a8e1a6..986ad39357f04 100644 --- a/clients/client-iot/src/commands/UpdateThingCommand.ts +++ b/clients/client-iot/src/commands/UpdateThingCommand.ts @@ -86,6 +86,7 @@ export interface UpdateThingCommandOutput extends UpdateThingResponse, __Metadat * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateThingCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateThingGroupCommand.ts b/clients/client-iot/src/commands/UpdateThingGroupCommand.ts index bbfb6669a573c..515442051c4c4 100644 --- a/clients/client-iot/src/commands/UpdateThingGroupCommand.ts +++ b/clients/client-iot/src/commands/UpdateThingGroupCommand.ts @@ -83,6 +83,7 @@ export interface UpdateThingGroupCommandOutput extends UpdateThingGroupResponse, * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateThingGroupCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateThingGroupsForThingCommand.ts b/clients/client-iot/src/commands/UpdateThingGroupsForThingCommand.ts index 386c7e8934574..72236a395a75f 100644 --- a/clients/client-iot/src/commands/UpdateThingGroupsForThingCommand.ts +++ b/clients/client-iot/src/commands/UpdateThingGroupsForThingCommand.ts @@ -73,6 +73,7 @@ export interface UpdateThingGroupsForThingCommandOutput extends UpdateThingGroup * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateThingGroupsForThingCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateThingTypeCommand.ts b/clients/client-iot/src/commands/UpdateThingTypeCommand.ts index c29e052cd71f7..e9154b86ab3c3 100644 --- a/clients/client-iot/src/commands/UpdateThingTypeCommand.ts +++ b/clients/client-iot/src/commands/UpdateThingTypeCommand.ts @@ -86,6 +86,7 @@ export interface UpdateThingTypeCommandOutput extends UpdateThingTypeResponse, _ * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateThingTypeCommand extends $Command diff --git a/clients/client-iot/src/commands/UpdateTopicRuleDestinationCommand.ts b/clients/client-iot/src/commands/UpdateTopicRuleDestinationCommand.ts index 71c8c8f343dae..d9e89df10135d 100644 --- a/clients/client-iot/src/commands/UpdateTopicRuleDestinationCommand.ts +++ b/clients/client-iot/src/commands/UpdateTopicRuleDestinationCommand.ts @@ -72,6 +72,7 @@ export interface UpdateTopicRuleDestinationCommandOutput extends UpdateTopicRule * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class UpdateTopicRuleDestinationCommand extends $Command diff --git a/clients/client-iot/src/commands/ValidateSecurityProfileBehaviorsCommand.ts b/clients/client-iot/src/commands/ValidateSecurityProfileBehaviorsCommand.ts index 8bff3ac886175..417d77cb0142d 100644 --- a/clients/client-iot/src/commands/ValidateSecurityProfileBehaviorsCommand.ts +++ b/clients/client-iot/src/commands/ValidateSecurityProfileBehaviorsCommand.ts @@ -114,6 +114,7 @@ export interface ValidateSecurityProfileBehaviorsCommandOutput * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* + * * @public */ export class ValidateSecurityProfileBehaviorsCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/BatchPutMessageCommand.ts b/clients/client-iotanalytics/src/commands/BatchPutMessageCommand.ts index 4b6df748ddaec..cd454df36409d 100644 --- a/clients/client-iotanalytics/src/commands/BatchPutMessageCommand.ts +++ b/clients/client-iotanalytics/src/commands/BatchPutMessageCommand.ts @@ -82,6 +82,7 @@ export interface BatchPutMessageCommandOutput extends BatchPutMessageResponse, _ * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class BatchPutMessageCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/CancelPipelineReprocessingCommand.ts b/clients/client-iotanalytics/src/commands/CancelPipelineReprocessingCommand.ts index 3e868b47ae1aa..33dfe9ab35dc0 100644 --- a/clients/client-iotanalytics/src/commands/CancelPipelineReprocessingCommand.ts +++ b/clients/client-iotanalytics/src/commands/CancelPipelineReprocessingCommand.ts @@ -69,6 +69,7 @@ export interface CancelPipelineReprocessingCommandOutput extends CancelPipelineR * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class CancelPipelineReprocessingCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/CreateChannelCommand.ts b/clients/client-iotanalytics/src/commands/CreateChannelCommand.ts index c8fd6ca945423..0967004655f6e 100644 --- a/clients/client-iotanalytics/src/commands/CreateChannelCommand.ts +++ b/clients/client-iotanalytics/src/commands/CreateChannelCommand.ts @@ -97,6 +97,7 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class CreateChannelCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/CreateDatasetCommand.ts b/clients/client-iotanalytics/src/commands/CreateDatasetCommand.ts index 2f56649473af9..6854d85237bb0 100644 --- a/clients/client-iotanalytics/src/commands/CreateDatasetCommand.ts +++ b/clients/client-iotanalytics/src/commands/CreateDatasetCommand.ts @@ -173,6 +173,7 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class CreateDatasetCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/CreateDatasetContentCommand.ts b/clients/client-iotanalytics/src/commands/CreateDatasetContentCommand.ts index e0eec810684bc..f397f10c6b57b 100644 --- a/clients/client-iotanalytics/src/commands/CreateDatasetContentCommand.ts +++ b/clients/client-iotanalytics/src/commands/CreateDatasetContentCommand.ts @@ -72,6 +72,7 @@ export interface CreateDatasetContentCommandOutput extends CreateDatasetContentR * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class CreateDatasetContentCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/CreateDatastoreCommand.ts b/clients/client-iotanalytics/src/commands/CreateDatastoreCommand.ts index 4bfeacecc5077..b270dcdb5ec71 100644 --- a/clients/client-iotanalytics/src/commands/CreateDatastoreCommand.ts +++ b/clients/client-iotanalytics/src/commands/CreateDatastoreCommand.ts @@ -128,6 +128,7 @@ export interface CreateDatastoreCommandOutput extends CreateDatastoreResponse, _ * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class CreateDatastoreCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/CreatePipelineCommand.ts b/clients/client-iotanalytics/src/commands/CreatePipelineCommand.ts index 0c6dec77f7d5e..2393d679a175d 100644 --- a/clients/client-iotanalytics/src/commands/CreatePipelineCommand.ts +++ b/clients/client-iotanalytics/src/commands/CreatePipelineCommand.ts @@ -148,6 +148,7 @@ export interface CreatePipelineCommandOutput extends CreatePipelineResponse, __M * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class CreatePipelineCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/DeleteChannelCommand.ts b/clients/client-iotanalytics/src/commands/DeleteChannelCommand.ts index b943b3615686b..657397220f1ff 100644 --- a/clients/client-iotanalytics/src/commands/DeleteChannelCommand.ts +++ b/clients/client-iotanalytics/src/commands/DeleteChannelCommand.ts @@ -68,6 +68,7 @@ export interface DeleteChannelCommandOutput extends __MetadataBearer {} * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class DeleteChannelCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/DeleteDatasetCommand.ts b/clients/client-iotanalytics/src/commands/DeleteDatasetCommand.ts index 0cf2b2cc92491..f2245851c1618 100644 --- a/clients/client-iotanalytics/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-iotanalytics/src/commands/DeleteDatasetCommand.ts @@ -70,6 +70,7 @@ export interface DeleteDatasetCommandOutput extends __MetadataBearer {} * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class DeleteDatasetCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/DeleteDatasetContentCommand.ts b/clients/client-iotanalytics/src/commands/DeleteDatasetContentCommand.ts index c5ef000bcdacf..59119c3c2c011 100644 --- a/clients/client-iotanalytics/src/commands/DeleteDatasetContentCommand.ts +++ b/clients/client-iotanalytics/src/commands/DeleteDatasetContentCommand.ts @@ -69,6 +69,7 @@ export interface DeleteDatasetContentCommandOutput extends __MetadataBearer {} * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class DeleteDatasetContentCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/DeleteDatastoreCommand.ts b/clients/client-iotanalytics/src/commands/DeleteDatastoreCommand.ts index 47abb91a1f11d..8e7d68cfc8447 100644 --- a/clients/client-iotanalytics/src/commands/DeleteDatastoreCommand.ts +++ b/clients/client-iotanalytics/src/commands/DeleteDatastoreCommand.ts @@ -68,6 +68,7 @@ export interface DeleteDatastoreCommandOutput extends __MetadataBearer {} * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class DeleteDatastoreCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/DeletePipelineCommand.ts b/clients/client-iotanalytics/src/commands/DeletePipelineCommand.ts index 4b3fdf87775ca..d1805ff325f43 100644 --- a/clients/client-iotanalytics/src/commands/DeletePipelineCommand.ts +++ b/clients/client-iotanalytics/src/commands/DeletePipelineCommand.ts @@ -68,6 +68,7 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {} * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class DeletePipelineCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/DescribeChannelCommand.ts b/clients/client-iotanalytics/src/commands/DescribeChannelCommand.ts index af50ad4fca419..8726119f4e2f6 100644 --- a/clients/client-iotanalytics/src/commands/DescribeChannelCommand.ts +++ b/clients/client-iotanalytics/src/commands/DescribeChannelCommand.ts @@ -96,6 +96,7 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _ * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class DescribeChannelCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/DescribeDatasetCommand.ts b/clients/client-iotanalytics/src/commands/DescribeDatasetCommand.ts index 21fe8ec2d8629..afd6650d802b2 100644 --- a/clients/client-iotanalytics/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-iotanalytics/src/commands/DescribeDatasetCommand.ts @@ -161,6 +161,7 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _ * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class DescribeDatasetCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/DescribeDatastoreCommand.ts b/clients/client-iotanalytics/src/commands/DescribeDatastoreCommand.ts index 5b6c91010854f..087afd6db01a2 100644 --- a/clients/client-iotanalytics/src/commands/DescribeDatastoreCommand.ts +++ b/clients/client-iotanalytics/src/commands/DescribeDatastoreCommand.ts @@ -128,6 +128,7 @@ export interface DescribeDatastoreCommandOutput extends DescribeDatastoreRespons * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class DescribeDatastoreCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/DescribeLoggingOptionsCommand.ts b/clients/client-iotanalytics/src/commands/DescribeLoggingOptionsCommand.ts index 2ce58fedb8b86..95b44c2609ece 100644 --- a/clients/client-iotanalytics/src/commands/DescribeLoggingOptionsCommand.ts +++ b/clients/client-iotanalytics/src/commands/DescribeLoggingOptionsCommand.ts @@ -72,6 +72,7 @@ export interface DescribeLoggingOptionsCommandOutput extends DescribeLoggingOpti * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class DescribeLoggingOptionsCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/DescribePipelineCommand.ts b/clients/client-iotanalytics/src/commands/DescribePipelineCommand.ts index 9cb8a5780eac3..9d895707563d6 100644 --- a/clients/client-iotanalytics/src/commands/DescribePipelineCommand.ts +++ b/clients/client-iotanalytics/src/commands/DescribePipelineCommand.ts @@ -147,6 +147,7 @@ export interface DescribePipelineCommandOutput extends DescribePipelineResponse, * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class DescribePipelineCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/GetDatasetContentCommand.ts b/clients/client-iotanalytics/src/commands/GetDatasetContentCommand.ts index 4db963b0cf348..d8878bab9944e 100644 --- a/clients/client-iotanalytics/src/commands/GetDatasetContentCommand.ts +++ b/clients/client-iotanalytics/src/commands/GetDatasetContentCommand.ts @@ -81,6 +81,7 @@ export interface GetDatasetContentCommandOutput extends GetDatasetContentRespons * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class GetDatasetContentCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/ListChannelsCommand.ts b/clients/client-iotanalytics/src/commands/ListChannelsCommand.ts index 1a4f0f73ea41d..e9e9d08cd1ba1 100644 --- a/clients/client-iotanalytics/src/commands/ListChannelsCommand.ts +++ b/clients/client-iotanalytics/src/commands/ListChannelsCommand.ts @@ -85,6 +85,7 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class ListChannelsCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/ListDatasetContentsCommand.ts b/clients/client-iotanalytics/src/commands/ListDatasetContentsCommand.ts index 6dffbfd3c69f0..ee2261efd7d32 100644 --- a/clients/client-iotanalytics/src/commands/ListDatasetContentsCommand.ts +++ b/clients/client-iotanalytics/src/commands/ListDatasetContentsCommand.ts @@ -86,6 +86,7 @@ export interface ListDatasetContentsCommandOutput extends ListDatasetContentsRes * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class ListDatasetContentsCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/ListDatasetsCommand.ts b/clients/client-iotanalytics/src/commands/ListDatasetsCommand.ts index 65c29601a2a41..1ef65823227a4 100644 --- a/clients/client-iotanalytics/src/commands/ListDatasetsCommand.ts +++ b/clients/client-iotanalytics/src/commands/ListDatasetsCommand.ts @@ -92,6 +92,7 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class ListDatasetsCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/ListDatastoresCommand.ts b/clients/client-iotanalytics/src/commands/ListDatastoresCommand.ts index b1096ccd6c348..0136e57a7c453 100644 --- a/clients/client-iotanalytics/src/commands/ListDatastoresCommand.ts +++ b/clients/client-iotanalytics/src/commands/ListDatastoresCommand.ts @@ -105,6 +105,7 @@ export interface ListDatastoresCommandOutput extends ListDatastoresResponse, __M * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class ListDatastoresCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/ListPipelinesCommand.ts b/clients/client-iotanalytics/src/commands/ListPipelinesCommand.ts index 2d265df69b7e3..5c37e918b0c59 100644 --- a/clients/client-iotanalytics/src/commands/ListPipelinesCommand.ts +++ b/clients/client-iotanalytics/src/commands/ListPipelinesCommand.ts @@ -82,6 +82,7 @@ export interface ListPipelinesCommandOutput extends ListPipelinesResponse, __Met * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class ListPipelinesCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/ListTagsForResourceCommand.ts b/clients/client-iotanalytics/src/commands/ListTagsForResourceCommand.ts index 32fd25c8f6148..05146fa224930 100644 --- a/clients/client-iotanalytics/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iotanalytics/src/commands/ListTagsForResourceCommand.ts @@ -78,6 +78,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/PutLoggingOptionsCommand.ts b/clients/client-iotanalytics/src/commands/PutLoggingOptionsCommand.ts index 1f56a8d15b4fd..1fbbe52bcda7a 100644 --- a/clients/client-iotanalytics/src/commands/PutLoggingOptionsCommand.ts +++ b/clients/client-iotanalytics/src/commands/PutLoggingOptionsCommand.ts @@ -73,6 +73,7 @@ export interface PutLoggingOptionsCommandOutput extends __MetadataBearer {} * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class PutLoggingOptionsCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/RunPipelineActivityCommand.ts b/clients/client-iotanalytics/src/commands/RunPipelineActivityCommand.ts index ead2ff050fc1a..cdc8f78370875 100644 --- a/clients/client-iotanalytics/src/commands/RunPipelineActivityCommand.ts +++ b/clients/client-iotanalytics/src/commands/RunPipelineActivityCommand.ts @@ -135,6 +135,7 @@ export interface RunPipelineActivityCommandOutput extends RunPipelineActivityRes * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class RunPipelineActivityCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/SampleChannelDataCommand.ts b/clients/client-iotanalytics/src/commands/SampleChannelDataCommand.ts index cbc17a668d097..ada15e2acf209 100644 --- a/clients/client-iotanalytics/src/commands/SampleChannelDataCommand.ts +++ b/clients/client-iotanalytics/src/commands/SampleChannelDataCommand.ts @@ -76,6 +76,7 @@ export interface SampleChannelDataCommandOutput extends SampleChannelDataRespons * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class SampleChannelDataCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/StartPipelineReprocessingCommand.ts b/clients/client-iotanalytics/src/commands/StartPipelineReprocessingCommand.ts index cea77c6f358b9..182eeae36106b 100644 --- a/clients/client-iotanalytics/src/commands/StartPipelineReprocessingCommand.ts +++ b/clients/client-iotanalytics/src/commands/StartPipelineReprocessingCommand.ts @@ -80,6 +80,7 @@ export interface StartPipelineReprocessingCommandOutput extends StartPipelineRep * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class StartPipelineReprocessingCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/TagResourceCommand.ts b/clients/client-iotanalytics/src/commands/TagResourceCommand.ts index 1e53e18d3185c..6e42a594a5d0b 100644 --- a/clients/client-iotanalytics/src/commands/TagResourceCommand.ts +++ b/clients/client-iotanalytics/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/UntagResourceCommand.ts b/clients/client-iotanalytics/src/commands/UntagResourceCommand.ts index 50d25587303b7..b11b75a881c28 100644 --- a/clients/client-iotanalytics/src/commands/UntagResourceCommand.ts +++ b/clients/client-iotanalytics/src/commands/UntagResourceCommand.ts @@ -74,6 +74,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/UpdateChannelCommand.ts b/clients/client-iotanalytics/src/commands/UpdateChannelCommand.ts index 3d0ca50d65e6b..4a7d26a1e9050 100644 --- a/clients/client-iotanalytics/src/commands/UpdateChannelCommand.ts +++ b/clients/client-iotanalytics/src/commands/UpdateChannelCommand.ts @@ -80,6 +80,7 @@ export interface UpdateChannelCommandOutput extends __MetadataBearer {} * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class UpdateChannelCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/UpdateDatasetCommand.ts b/clients/client-iotanalytics/src/commands/UpdateDatasetCommand.ts index c48fdb2d61c1d..656555e4bb933 100644 --- a/clients/client-iotanalytics/src/commands/UpdateDatasetCommand.ts +++ b/clients/client-iotanalytics/src/commands/UpdateDatasetCommand.ts @@ -153,6 +153,7 @@ export interface UpdateDatasetCommandOutput extends __MetadataBearer {} * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class UpdateDatasetCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/UpdateDatastoreCommand.ts b/clients/client-iotanalytics/src/commands/UpdateDatastoreCommand.ts index a8e185c46fcc9..c144029ee0919 100644 --- a/clients/client-iotanalytics/src/commands/UpdateDatastoreCommand.ts +++ b/clients/client-iotanalytics/src/commands/UpdateDatastoreCommand.ts @@ -99,6 +99,7 @@ export interface UpdateDatastoreCommandOutput extends __MetadataBearer {} * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class UpdateDatastoreCommand extends $Command diff --git a/clients/client-iotanalytics/src/commands/UpdatePipelineCommand.ts b/clients/client-iotanalytics/src/commands/UpdatePipelineCommand.ts index 4f139321697d0..ccc2f347b0383 100644 --- a/clients/client-iotanalytics/src/commands/UpdatePipelineCommand.ts +++ b/clients/client-iotanalytics/src/commands/UpdatePipelineCommand.ts @@ -138,6 +138,7 @@ export interface UpdatePipelineCommandOutput extends __MetadataBearer {} * @throws {@link IoTAnalyticsServiceException} *

Base exception class for all service exceptions from IoTAnalytics service.

* + * * @public */ export class UpdatePipelineCommand extends $Command diff --git a/clients/client-iotdeviceadvisor/src/commands/CreateSuiteDefinitionCommand.ts b/clients/client-iotdeviceadvisor/src/commands/CreateSuiteDefinitionCommand.ts index 0e695626d3389..c5eba043b42ff 100644 --- a/clients/client-iotdeviceadvisor/src/commands/CreateSuiteDefinitionCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/CreateSuiteDefinitionCommand.ts @@ -83,6 +83,7 @@ export interface CreateSuiteDefinitionCommandOutput extends CreateSuiteDefinitio * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* + * * @public */ export class CreateSuiteDefinitionCommand extends $Command diff --git a/clients/client-iotdeviceadvisor/src/commands/DeleteSuiteDefinitionCommand.ts b/clients/client-iotdeviceadvisor/src/commands/DeleteSuiteDefinitionCommand.ts index ba5b59d070789..2baf5cb5022c7 100644 --- a/clients/client-iotdeviceadvisor/src/commands/DeleteSuiteDefinitionCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/DeleteSuiteDefinitionCommand.ts @@ -60,6 +60,7 @@ export interface DeleteSuiteDefinitionCommandOutput extends DeleteSuiteDefinitio * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* + * * @public */ export class DeleteSuiteDefinitionCommand extends $Command diff --git a/clients/client-iotdeviceadvisor/src/commands/GetEndpointCommand.ts b/clients/client-iotdeviceadvisor/src/commands/GetEndpointCommand.ts index c85c161365828..0303d1416f55c 100644 --- a/clients/client-iotdeviceadvisor/src/commands/GetEndpointCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/GetEndpointCommand.ts @@ -67,6 +67,7 @@ export interface GetEndpointCommandOutput extends GetEndpointResponse, __Metadat * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* + * * @public */ export class GetEndpointCommand extends $Command diff --git a/clients/client-iotdeviceadvisor/src/commands/GetSuiteDefinitionCommand.ts b/clients/client-iotdeviceadvisor/src/commands/GetSuiteDefinitionCommand.ts index 62073b87f686b..5f24bf5c05881 100644 --- a/clients/client-iotdeviceadvisor/src/commands/GetSuiteDefinitionCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/GetSuiteDefinitionCommand.ts @@ -89,6 +89,7 @@ export interface GetSuiteDefinitionCommandOutput extends GetSuiteDefinitionRespo * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* + * * @public */ export class GetSuiteDefinitionCommand extends $Command diff --git a/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunCommand.ts b/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunCommand.ts index 49cbfdc1b274d..a390583f896b6 100644 --- a/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunCommand.ts @@ -117,6 +117,7 @@ export interface GetSuiteRunCommandOutput extends GetSuiteRunResponse, __Metadat * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* + * * @public */ export class GetSuiteRunCommand extends $Command diff --git a/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunReportCommand.ts b/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunReportCommand.ts index 29d42b3bc54db..7aa2f3f89e6d6 100644 --- a/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunReportCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunReportCommand.ts @@ -66,6 +66,7 @@ export interface GetSuiteRunReportCommandOutput extends GetSuiteRunReportRespons * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* + * * @public */ export class GetSuiteRunReportCommand extends $Command diff --git a/clients/client-iotdeviceadvisor/src/commands/ListSuiteDefinitionsCommand.ts b/clients/client-iotdeviceadvisor/src/commands/ListSuiteDefinitionsCommand.ts index 74454ea233cd8..5f6cc4b6e593a 100644 --- a/clients/client-iotdeviceadvisor/src/commands/ListSuiteDefinitionsCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/ListSuiteDefinitionsCommand.ts @@ -80,6 +80,7 @@ export interface ListSuiteDefinitionsCommandOutput extends ListSuiteDefinitionsR * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* + * * @public */ export class ListSuiteDefinitionsCommand extends $Command diff --git a/clients/client-iotdeviceadvisor/src/commands/ListSuiteRunsCommand.ts b/clients/client-iotdeviceadvisor/src/commands/ListSuiteRunsCommand.ts index 1ae9007dde903..2eeacd58c3225 100644 --- a/clients/client-iotdeviceadvisor/src/commands/ListSuiteRunsCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/ListSuiteRunsCommand.ts @@ -80,6 +80,7 @@ export interface ListSuiteRunsCommandOutput extends ListSuiteRunsResponse, __Met * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* + * * @public */ export class ListSuiteRunsCommand extends $Command diff --git a/clients/client-iotdeviceadvisor/src/commands/ListTagsForResourceCommand.ts b/clients/client-iotdeviceadvisor/src/commands/ListTagsForResourceCommand.ts index 062b1fd7c4d8b..66f899df248aa 100644 --- a/clients/client-iotdeviceadvisor/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-iotdeviceadvisor/src/commands/StartSuiteRunCommand.ts b/clients/client-iotdeviceadvisor/src/commands/StartSuiteRunCommand.ts index c023d1a606371..6bb3eda79d389 100644 --- a/clients/client-iotdeviceadvisor/src/commands/StartSuiteRunCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/StartSuiteRunCommand.ts @@ -83,6 +83,7 @@ export interface StartSuiteRunCommandOutput extends StartSuiteRunResponse, __Met * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* + * * @public */ export class StartSuiteRunCommand extends $Command diff --git a/clients/client-iotdeviceadvisor/src/commands/StopSuiteRunCommand.ts b/clients/client-iotdeviceadvisor/src/commands/StopSuiteRunCommand.ts index d96d8e015eef0..b93a9b8df8e30 100644 --- a/clients/client-iotdeviceadvisor/src/commands/StopSuiteRunCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/StopSuiteRunCommand.ts @@ -64,6 +64,7 @@ export interface StopSuiteRunCommandOutput extends StopSuiteRunResponse, __Metad * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* + * * @public */ export class StopSuiteRunCommand extends $Command diff --git a/clients/client-iotdeviceadvisor/src/commands/TagResourceCommand.ts b/clients/client-iotdeviceadvisor/src/commands/TagResourceCommand.ts index fa36911432e93..8920c82520ce9 100644 --- a/clients/client-iotdeviceadvisor/src/commands/TagResourceCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/TagResourceCommand.ts @@ -66,6 +66,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-iotdeviceadvisor/src/commands/UntagResourceCommand.ts b/clients/client-iotdeviceadvisor/src/commands/UntagResourceCommand.ts index fe3f8fbd143e7..3c0caf2173eb0 100644 --- a/clients/client-iotdeviceadvisor/src/commands/UntagResourceCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/UntagResourceCommand.ts @@ -66,6 +66,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-iotdeviceadvisor/src/commands/UpdateSuiteDefinitionCommand.ts b/clients/client-iotdeviceadvisor/src/commands/UpdateSuiteDefinitionCommand.ts index 31c9426e60833..7062e7fc49d72 100644 --- a/clients/client-iotdeviceadvisor/src/commands/UpdateSuiteDefinitionCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/UpdateSuiteDefinitionCommand.ts @@ -82,6 +82,7 @@ export interface UpdateSuiteDefinitionCommandOutput extends UpdateSuiteDefinitio * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* + * * @public */ export class UpdateSuiteDefinitionCommand extends $Command diff --git a/clients/client-iotfleethub/src/commands/CreateApplicationCommand.ts b/clients/client-iotfleethub/src/commands/CreateApplicationCommand.ts index f6232f7260088..33fd4d9b0e3f5 100644 --- a/clients/client-iotfleethub/src/commands/CreateApplicationCommand.ts +++ b/clients/client-iotfleethub/src/commands/CreateApplicationCommand.ts @@ -78,6 +78,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons * @throws {@link IoTFleetHubServiceException} *

Base exception class for all service exceptions from IoTFleetHub service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-iotfleethub/src/commands/DeleteApplicationCommand.ts b/clients/client-iotfleethub/src/commands/DeleteApplicationCommand.ts index 69a3d4dac62e4..30c2185e6d0e0 100644 --- a/clients/client-iotfleethub/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-iotfleethub/src/commands/DeleteApplicationCommand.ts @@ -66,6 +66,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons * @throws {@link IoTFleetHubServiceException} *

Base exception class for all service exceptions from IoTFleetHub service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-iotfleethub/src/commands/DescribeApplicationCommand.ts b/clients/client-iotfleethub/src/commands/DescribeApplicationCommand.ts index 8bd5adea313de..96ad0986feb15 100644 --- a/clients/client-iotfleethub/src/commands/DescribeApplicationCommand.ts +++ b/clients/client-iotfleethub/src/commands/DescribeApplicationCommand.ts @@ -80,6 +80,7 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes * @throws {@link IoTFleetHubServiceException} *

Base exception class for all service exceptions from IoTFleetHub service.

* + * * @public */ export class DescribeApplicationCommand extends $Command diff --git a/clients/client-iotfleethub/src/commands/ListApplicationsCommand.ts b/clients/client-iotfleethub/src/commands/ListApplicationsCommand.ts index a04fbc1b7b885..b8114136f2765 100644 --- a/clients/client-iotfleethub/src/commands/ListApplicationsCommand.ts +++ b/clients/client-iotfleethub/src/commands/ListApplicationsCommand.ts @@ -75,6 +75,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, * @throws {@link IoTFleetHubServiceException} *

Base exception class for all service exceptions from IoTFleetHub service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-iotfleethub/src/commands/ListTagsForResourceCommand.ts b/clients/client-iotfleethub/src/commands/ListTagsForResourceCommand.ts index c86d1a3d9baef..42c94c19681ab 100644 --- a/clients/client-iotfleethub/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iotfleethub/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link IoTFleetHubServiceException} *

Base exception class for all service exceptions from IoTFleetHub service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-iotfleethub/src/commands/TagResourceCommand.ts b/clients/client-iotfleethub/src/commands/TagResourceCommand.ts index 6b75df997b36e..c0f8cd3d74180 100644 --- a/clients/client-iotfleethub/src/commands/TagResourceCommand.ts +++ b/clients/client-iotfleethub/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link IoTFleetHubServiceException} *

Base exception class for all service exceptions from IoTFleetHub service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-iotfleethub/src/commands/UntagResourceCommand.ts b/clients/client-iotfleethub/src/commands/UntagResourceCommand.ts index 0c21a278d51b8..8c2457bf67b1c 100644 --- a/clients/client-iotfleethub/src/commands/UntagResourceCommand.ts +++ b/clients/client-iotfleethub/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link IoTFleetHubServiceException} *

Base exception class for all service exceptions from IoTFleetHub service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-iotfleethub/src/commands/UpdateApplicationCommand.ts b/clients/client-iotfleethub/src/commands/UpdateApplicationCommand.ts index b525f14a48f59..aafef4491bf91 100644 --- a/clients/client-iotfleethub/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-iotfleethub/src/commands/UpdateApplicationCommand.ts @@ -71,6 +71,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons * @throws {@link IoTFleetHubServiceException} *

Base exception class for all service exceptions from IoTFleetHub service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/AssociateVehicleFleetCommand.ts b/clients/client-iotfleetwise/src/commands/AssociateVehicleFleetCommand.ts index bfe92c018fdb7..2f9d2c2fea2bc 100644 --- a/clients/client-iotfleetwise/src/commands/AssociateVehicleFleetCommand.ts +++ b/clients/client-iotfleetwise/src/commands/AssociateVehicleFleetCommand.ts @@ -72,6 +72,7 @@ export interface AssociateVehicleFleetCommandOutput extends AssociateVehicleFlee * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class AssociateVehicleFleetCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/BatchCreateVehicleCommand.ts b/clients/client-iotfleetwise/src/commands/BatchCreateVehicleCommand.ts index b7b90c342f76b..2b5abc9ba9a28 100644 --- a/clients/client-iotfleetwise/src/commands/BatchCreateVehicleCommand.ts +++ b/clients/client-iotfleetwise/src/commands/BatchCreateVehicleCommand.ts @@ -119,6 +119,7 @@ export interface BatchCreateVehicleCommandOutput extends BatchCreateVehicleRespo * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class BatchCreateVehicleCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/BatchUpdateVehicleCommand.ts b/clients/client-iotfleetwise/src/commands/BatchUpdateVehicleCommand.ts index b84955b654841..b0297ee24187e 100644 --- a/clients/client-iotfleetwise/src/commands/BatchUpdateVehicleCommand.ts +++ b/clients/client-iotfleetwise/src/commands/BatchUpdateVehicleCommand.ts @@ -115,6 +115,7 @@ export interface BatchUpdateVehicleCommandOutput extends BatchUpdateVehicleRespo * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class BatchUpdateVehicleCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/CreateCampaignCommand.ts b/clients/client-iotfleetwise/src/commands/CreateCampaignCommand.ts index a9af9409dec0a..949970f918418 100644 --- a/clients/client-iotfleetwise/src/commands/CreateCampaignCommand.ts +++ b/clients/client-iotfleetwise/src/commands/CreateCampaignCommand.ts @@ -184,6 +184,7 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class CreateCampaignCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/CreateDecoderManifestCommand.ts b/clients/client-iotfleetwise/src/commands/CreateDecoderManifestCommand.ts index 90d4b4de1b7ba..c54a4532ba5a0 100644 --- a/clients/client-iotfleetwise/src/commands/CreateDecoderManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/CreateDecoderManifestCommand.ts @@ -213,6 +213,7 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class CreateDecoderManifestCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/CreateFleetCommand.ts b/clients/client-iotfleetwise/src/commands/CreateFleetCommand.ts index eddf69908bfad..8fbd887c776e9 100644 --- a/clients/client-iotfleetwise/src/commands/CreateFleetCommand.ts +++ b/clients/client-iotfleetwise/src/commands/CreateFleetCommand.ts @@ -93,6 +93,7 @@ export interface CreateFleetCommandOutput extends CreateFleetResponse, __Metadat * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class CreateFleetCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/CreateModelManifestCommand.ts b/clients/client-iotfleetwise/src/commands/CreateModelManifestCommand.ts index 90a612f862ea2..858773e4ab79e 100644 --- a/clients/client-iotfleetwise/src/commands/CreateModelManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/CreateModelManifestCommand.ts @@ -96,6 +96,7 @@ export interface CreateModelManifestCommandOutput extends CreateModelManifestRes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class CreateModelManifestCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/CreateSignalCatalogCommand.ts b/clients/client-iotfleetwise/src/commands/CreateSignalCatalogCommand.ts index 07c794a454e06..158865b98ff9a 100644 --- a/clients/client-iotfleetwise/src/commands/CreateSignalCatalogCommand.ts +++ b/clients/client-iotfleetwise/src/commands/CreateSignalCatalogCommand.ts @@ -160,6 +160,7 @@ export interface CreateSignalCatalogCommandOutput extends CreateSignalCatalogRes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class CreateSignalCatalogCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/CreateStateTemplateCommand.ts b/clients/client-iotfleetwise/src/commands/CreateStateTemplateCommand.ts index 1ae694fb40a3d..4fd910e23eda1 100644 --- a/clients/client-iotfleetwise/src/commands/CreateStateTemplateCommand.ts +++ b/clients/client-iotfleetwise/src/commands/CreateStateTemplateCommand.ts @@ -103,6 +103,7 @@ export interface CreateStateTemplateCommandOutput extends CreateStateTemplateRes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class CreateStateTemplateCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/CreateVehicleCommand.ts b/clients/client-iotfleetwise/src/commands/CreateVehicleCommand.ts index 06208dbdd0fad..a2eef957ee512 100644 --- a/clients/client-iotfleetwise/src/commands/CreateVehicleCommand.ts +++ b/clients/client-iotfleetwise/src/commands/CreateVehicleCommand.ts @@ -113,6 +113,7 @@ export interface CreateVehicleCommandOutput extends CreateVehicleResponse, __Met * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class CreateVehicleCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/DeleteCampaignCommand.ts b/clients/client-iotfleetwise/src/commands/DeleteCampaignCommand.ts index 1a2bae796f886..fa6318e4bd387 100644 --- a/clients/client-iotfleetwise/src/commands/DeleteCampaignCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DeleteCampaignCommand.ts @@ -72,6 +72,7 @@ export interface DeleteCampaignCommandOutput extends DeleteCampaignResponse, __M * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class DeleteCampaignCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/DeleteDecoderManifestCommand.ts b/clients/client-iotfleetwise/src/commands/DeleteDecoderManifestCommand.ts index 4ae65e0a123c4..5acfbd262f891 100644 --- a/clients/client-iotfleetwise/src/commands/DeleteDecoderManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DeleteDecoderManifestCommand.ts @@ -73,6 +73,7 @@ export interface DeleteDecoderManifestCommandOutput extends DeleteDecoderManifes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class DeleteDecoderManifestCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/DeleteFleetCommand.ts b/clients/client-iotfleetwise/src/commands/DeleteFleetCommand.ts index 3805e4b719c03..71cf199f38b6f 100644 --- a/clients/client-iotfleetwise/src/commands/DeleteFleetCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DeleteFleetCommand.ts @@ -70,6 +70,7 @@ export interface DeleteFleetCommandOutput extends DeleteFleetResponse, __Metadat * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class DeleteFleetCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/DeleteModelManifestCommand.ts b/clients/client-iotfleetwise/src/commands/DeleteModelManifestCommand.ts index 6cd62e19cbec6..7746a8fb11f1f 100644 --- a/clients/client-iotfleetwise/src/commands/DeleteModelManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DeleteModelManifestCommand.ts @@ -72,6 +72,7 @@ export interface DeleteModelManifestCommandOutput extends DeleteModelManifestRes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class DeleteModelManifestCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/DeleteSignalCatalogCommand.ts b/clients/client-iotfleetwise/src/commands/DeleteSignalCatalogCommand.ts index 161dcb4bd994c..3c99d1c4c29ff 100644 --- a/clients/client-iotfleetwise/src/commands/DeleteSignalCatalogCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DeleteSignalCatalogCommand.ts @@ -72,6 +72,7 @@ export interface DeleteSignalCatalogCommandOutput extends DeleteSignalCatalogRes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class DeleteSignalCatalogCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/DeleteStateTemplateCommand.ts b/clients/client-iotfleetwise/src/commands/DeleteStateTemplateCommand.ts index 1f434fff83644..1b0644bb2d1ac 100644 --- a/clients/client-iotfleetwise/src/commands/DeleteStateTemplateCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DeleteStateTemplateCommand.ts @@ -69,6 +69,7 @@ export interface DeleteStateTemplateCommandOutput extends DeleteStateTemplateRes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class DeleteStateTemplateCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/DeleteVehicleCommand.ts b/clients/client-iotfleetwise/src/commands/DeleteVehicleCommand.ts index 4ec7541f82945..fcf56a6c91f3a 100644 --- a/clients/client-iotfleetwise/src/commands/DeleteVehicleCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DeleteVehicleCommand.ts @@ -68,6 +68,7 @@ export interface DeleteVehicleCommandOutput extends DeleteVehicleResponse, __Met * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class DeleteVehicleCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/DisassociateVehicleFleetCommand.ts b/clients/client-iotfleetwise/src/commands/DisassociateVehicleFleetCommand.ts index eb4d5923fae7f..c4810b3c0c408 100644 --- a/clients/client-iotfleetwise/src/commands/DisassociateVehicleFleetCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DisassociateVehicleFleetCommand.ts @@ -70,6 +70,7 @@ export interface DisassociateVehicleFleetCommandOutput extends DisassociateVehic * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class DisassociateVehicleFleetCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/GetCampaignCommand.ts b/clients/client-iotfleetwise/src/commands/GetCampaignCommand.ts index 6bec84b673cc0..8f6a92787da10 100644 --- a/clients/client-iotfleetwise/src/commands/GetCampaignCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetCampaignCommand.ts @@ -165,6 +165,7 @@ export interface GetCampaignCommandOutput extends GetCampaignResponse, __Metadat * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class GetCampaignCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/GetDecoderManifestCommand.ts b/clients/client-iotfleetwise/src/commands/GetDecoderManifestCommand.ts index 8b9d1b2400d6b..2898f00e2256f 100644 --- a/clients/client-iotfleetwise/src/commands/GetDecoderManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetDecoderManifestCommand.ts @@ -77,6 +77,7 @@ export interface GetDecoderManifestCommandOutput extends GetDecoderManifestRespo * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class GetDecoderManifestCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/GetEncryptionConfigurationCommand.ts b/clients/client-iotfleetwise/src/commands/GetEncryptionConfigurationCommand.ts index 6bee76a5b1e76..8c3a23360cd5d 100644 --- a/clients/client-iotfleetwise/src/commands/GetEncryptionConfigurationCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetEncryptionConfigurationCommand.ts @@ -73,6 +73,7 @@ export interface GetEncryptionConfigurationCommandOutput extends GetEncryptionCo * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class GetEncryptionConfigurationCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/GetFleetCommand.ts b/clients/client-iotfleetwise/src/commands/GetFleetCommand.ts index bf07c96b987bb..c1ef9822a6287 100644 --- a/clients/client-iotfleetwise/src/commands/GetFleetCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetFleetCommand.ts @@ -75,6 +75,7 @@ export interface GetFleetCommandOutput extends GetFleetResponse, __MetadataBeare * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class GetFleetCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/GetLoggingOptionsCommand.ts b/clients/client-iotfleetwise/src/commands/GetLoggingOptionsCommand.ts index adfc145646a6c..e0e944135d6f9 100644 --- a/clients/client-iotfleetwise/src/commands/GetLoggingOptionsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetLoggingOptionsCommand.ts @@ -65,6 +65,7 @@ export interface GetLoggingOptionsCommandOutput extends GetLoggingOptionsRespons * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class GetLoggingOptionsCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/GetModelManifestCommand.ts b/clients/client-iotfleetwise/src/commands/GetModelManifestCommand.ts index 4a119ad0cf1fe..9646d25bc6291 100644 --- a/clients/client-iotfleetwise/src/commands/GetModelManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetModelManifestCommand.ts @@ -76,6 +76,7 @@ export interface GetModelManifestCommandOutput extends GetModelManifestResponse, * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class GetModelManifestCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/GetRegisterAccountStatusCommand.ts b/clients/client-iotfleetwise/src/commands/GetRegisterAccountStatusCommand.ts index 6e66b7381ad16..901f316f52a76 100644 --- a/clients/client-iotfleetwise/src/commands/GetRegisterAccountStatusCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetRegisterAccountStatusCommand.ts @@ -90,6 +90,7 @@ export interface GetRegisterAccountStatusCommandOutput extends GetRegisterAccoun * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class GetRegisterAccountStatusCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/GetSignalCatalogCommand.ts b/clients/client-iotfleetwise/src/commands/GetSignalCatalogCommand.ts index a381885c9bf14..06fdefd290f37 100644 --- a/clients/client-iotfleetwise/src/commands/GetSignalCatalogCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetSignalCatalogCommand.ts @@ -83,6 +83,7 @@ export interface GetSignalCatalogCommandOutput extends GetSignalCatalogResponse, * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class GetSignalCatalogCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/GetStateTemplateCommand.ts b/clients/client-iotfleetwise/src/commands/GetStateTemplateCommand.ts index daf47b8e39208..f91341976eff9 100644 --- a/clients/client-iotfleetwise/src/commands/GetStateTemplateCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetStateTemplateCommand.ts @@ -88,6 +88,7 @@ export interface GetStateTemplateCommandOutput extends GetStateTemplateResponse, * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class GetStateTemplateCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/GetVehicleCommand.ts b/clients/client-iotfleetwise/src/commands/GetVehicleCommand.ts index 6057628e1184b..9550a15a0d86e 100644 --- a/clients/client-iotfleetwise/src/commands/GetVehicleCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetVehicleCommand.ts @@ -92,6 +92,7 @@ export interface GetVehicleCommandOutput extends GetVehicleResponse, __MetadataB * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class GetVehicleCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/GetVehicleStatusCommand.ts b/clients/client-iotfleetwise/src/commands/GetVehicleStatusCommand.ts index 21f6c100f5be9..9cd2741f54a29 100644 --- a/clients/client-iotfleetwise/src/commands/GetVehicleStatusCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetVehicleStatusCommand.ts @@ -80,6 +80,7 @@ export interface GetVehicleStatusCommandOutput extends GetVehicleStatusResponse, * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class GetVehicleStatusCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ImportDecoderManifestCommand.ts b/clients/client-iotfleetwise/src/commands/ImportDecoderManifestCommand.ts index fa9a039d9ebdd..d1f9555a33d90 100644 --- a/clients/client-iotfleetwise/src/commands/ImportDecoderManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ImportDecoderManifestCommand.ts @@ -98,6 +98,7 @@ export interface ImportDecoderManifestCommandOutput extends ImportDecoderManifes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ImportDecoderManifestCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ImportSignalCatalogCommand.ts b/clients/client-iotfleetwise/src/commands/ImportSignalCatalogCommand.ts index ecd7008114396..55be626c6a23b 100644 --- a/clients/client-iotfleetwise/src/commands/ImportSignalCatalogCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ImportSignalCatalogCommand.ts @@ -93,6 +93,7 @@ export interface ImportSignalCatalogCommandOutput extends ImportSignalCatalogRes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ImportSignalCatalogCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ListCampaignsCommand.ts b/clients/client-iotfleetwise/src/commands/ListCampaignsCommand.ts index 3df2afbacec4e..9a09b4cafe8bb 100644 --- a/clients/client-iotfleetwise/src/commands/ListCampaignsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListCampaignsCommand.ts @@ -85,6 +85,7 @@ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __Met * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ListCampaignsCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ListDecoderManifestNetworkInterfacesCommand.ts b/clients/client-iotfleetwise/src/commands/ListDecoderManifestNetworkInterfacesCommand.ts index bb2efb0eac2b3..1a52b981c887e 100644 --- a/clients/client-iotfleetwise/src/commands/ListDecoderManifestNetworkInterfacesCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListDecoderManifestNetworkInterfacesCommand.ts @@ -110,6 +110,7 @@ export interface ListDecoderManifestNetworkInterfacesCommandOutput * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ListDecoderManifestNetworkInterfacesCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ListDecoderManifestSignalsCommand.ts b/clients/client-iotfleetwise/src/commands/ListDecoderManifestSignalsCommand.ts index 9fe2d948b0c7e..75763e8f1496f 100644 --- a/clients/client-iotfleetwise/src/commands/ListDecoderManifestSignalsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListDecoderManifestSignalsCommand.ts @@ -155,6 +155,7 @@ export interface ListDecoderManifestSignalsCommandOutput extends ListDecoderMani * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ListDecoderManifestSignalsCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ListDecoderManifestsCommand.ts b/clients/client-iotfleetwise/src/commands/ListDecoderManifestsCommand.ts index eeebb718b1215..8234a883531ac 100644 --- a/clients/client-iotfleetwise/src/commands/ListDecoderManifestsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListDecoderManifestsCommand.ts @@ -85,6 +85,7 @@ export interface ListDecoderManifestsCommandOutput extends ListDecoderManifestsR * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ListDecoderManifestsCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ListFleetsCommand.ts b/clients/client-iotfleetwise/src/commands/ListFleetsCommand.ts index ecea31eb97cfc..a2456e129698b 100644 --- a/clients/client-iotfleetwise/src/commands/ListFleetsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListFleetsCommand.ts @@ -85,6 +85,7 @@ export interface ListFleetsCommandOutput extends ListFleetsResponse, __MetadataB * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ListFleetsCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ListFleetsForVehicleCommand.ts b/clients/client-iotfleetwise/src/commands/ListFleetsForVehicleCommand.ts index 8c82f42a94820..14b3d56a2968a 100644 --- a/clients/client-iotfleetwise/src/commands/ListFleetsForVehicleCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListFleetsForVehicleCommand.ts @@ -78,6 +78,7 @@ export interface ListFleetsForVehicleCommandOutput extends ListFleetsForVehicleR * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ListFleetsForVehicleCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ListModelManifestNodesCommand.ts b/clients/client-iotfleetwise/src/commands/ListModelManifestNodesCommand.ts index d255f076981eb..9c92c9d3f5999 100644 --- a/clients/client-iotfleetwise/src/commands/ListModelManifestNodesCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListModelManifestNodesCommand.ts @@ -147,6 +147,7 @@ export interface ListModelManifestNodesCommandOutput extends ListModelManifestNo * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ListModelManifestNodesCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ListModelManifestsCommand.ts b/clients/client-iotfleetwise/src/commands/ListModelManifestsCommand.ts index 7b1db1e748578..3caeb4cafff4d 100644 --- a/clients/client-iotfleetwise/src/commands/ListModelManifestsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListModelManifestsCommand.ts @@ -84,6 +84,7 @@ export interface ListModelManifestsCommandOutput extends ListModelManifestsRespo * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ListModelManifestsCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ListSignalCatalogNodesCommand.ts b/clients/client-iotfleetwise/src/commands/ListSignalCatalogNodesCommand.ts index 34e4a0007d0d4..5a2efc418957d 100644 --- a/clients/client-iotfleetwise/src/commands/ListSignalCatalogNodesCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListSignalCatalogNodesCommand.ts @@ -148,6 +148,7 @@ export interface ListSignalCatalogNodesCommandOutput extends ListSignalCatalogNo * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ListSignalCatalogNodesCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ListSignalCatalogsCommand.ts b/clients/client-iotfleetwise/src/commands/ListSignalCatalogsCommand.ts index dcb4a96dd7e84..86d76d8319120 100644 --- a/clients/client-iotfleetwise/src/commands/ListSignalCatalogsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListSignalCatalogsCommand.ts @@ -81,6 +81,7 @@ export interface ListSignalCatalogsCommandOutput extends ListSignalCatalogsRespo * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ListSignalCatalogsCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ListStateTemplatesCommand.ts b/clients/client-iotfleetwise/src/commands/ListStateTemplatesCommand.ts index 0de0804632653..2b21d5fa9be96 100644 --- a/clients/client-iotfleetwise/src/commands/ListStateTemplatesCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListStateTemplatesCommand.ts @@ -83,6 +83,7 @@ export interface ListStateTemplatesCommandOutput extends ListStateTemplatesRespo * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ListStateTemplatesCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ListTagsForResourceCommand.ts b/clients/client-iotfleetwise/src/commands/ListTagsForResourceCommand.ts index 50f6e8b65ad5f..50c45706f6c93 100644 --- a/clients/client-iotfleetwise/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListTagsForResourceCommand.ts @@ -75,6 +75,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ListVehiclesCommand.ts b/clients/client-iotfleetwise/src/commands/ListVehiclesCommand.ts index b5e85af8db329..c4df5337260a0 100644 --- a/clients/client-iotfleetwise/src/commands/ListVehiclesCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListVehiclesCommand.ts @@ -92,6 +92,7 @@ export interface ListVehiclesCommandOutput extends ListVehiclesResponse, __Metad * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ListVehiclesCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/ListVehiclesInFleetCommand.ts b/clients/client-iotfleetwise/src/commands/ListVehiclesInFleetCommand.ts index 908d04f1f62f7..8964f13f5a771 100644 --- a/clients/client-iotfleetwise/src/commands/ListVehiclesInFleetCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListVehiclesInFleetCommand.ts @@ -78,6 +78,7 @@ export interface ListVehiclesInFleetCommandOutput extends ListVehiclesInFleetRes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class ListVehiclesInFleetCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/PutEncryptionConfigurationCommand.ts b/clients/client-iotfleetwise/src/commands/PutEncryptionConfigurationCommand.ts index 36930b8d3fc49..4a75abda23ec3 100644 --- a/clients/client-iotfleetwise/src/commands/PutEncryptionConfigurationCommand.ts +++ b/clients/client-iotfleetwise/src/commands/PutEncryptionConfigurationCommand.ts @@ -80,6 +80,7 @@ export interface PutEncryptionConfigurationCommandOutput extends PutEncryptionCo * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class PutEncryptionConfigurationCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/PutLoggingOptionsCommand.ts b/clients/client-iotfleetwise/src/commands/PutLoggingOptionsCommand.ts index 7f026bf9f8ee3..65875aa38b5e1 100644 --- a/clients/client-iotfleetwise/src/commands/PutLoggingOptionsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/PutLoggingOptionsCommand.ts @@ -75,6 +75,7 @@ export interface PutLoggingOptionsCommandOutput extends PutLoggingOptionsRespons * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class PutLoggingOptionsCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/RegisterAccountCommand.ts b/clients/client-iotfleetwise/src/commands/RegisterAccountCommand.ts index e48fbb07817bf..f67d2e4d1ae01 100644 --- a/clients/client-iotfleetwise/src/commands/RegisterAccountCommand.ts +++ b/clients/client-iotfleetwise/src/commands/RegisterAccountCommand.ts @@ -111,6 +111,7 @@ export interface RegisterAccountCommandOutput extends RegisterAccountResponse, _ * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class RegisterAccountCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/TagResourceCommand.ts b/clients/client-iotfleetwise/src/commands/TagResourceCommand.ts index f29ad82d6275e..e6458907b1fa2 100644 --- a/clients/client-iotfleetwise/src/commands/TagResourceCommand.ts +++ b/clients/client-iotfleetwise/src/commands/TagResourceCommand.ts @@ -75,6 +75,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/UntagResourceCommand.ts b/clients/client-iotfleetwise/src/commands/UntagResourceCommand.ts index 611d0a70214e6..83d7305fe64c2 100644 --- a/clients/client-iotfleetwise/src/commands/UntagResourceCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/UpdateCampaignCommand.ts b/clients/client-iotfleetwise/src/commands/UpdateCampaignCommand.ts index f2c88e6771a0b..dc18e0c3c1943 100644 --- a/clients/client-iotfleetwise/src/commands/UpdateCampaignCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UpdateCampaignCommand.ts @@ -85,6 +85,7 @@ export interface UpdateCampaignCommandOutput extends UpdateCampaignResponse, __M * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class UpdateCampaignCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/UpdateDecoderManifestCommand.ts b/clients/client-iotfleetwise/src/commands/UpdateDecoderManifestCommand.ts index c61902d363a97..01f419121d00d 100644 --- a/clients/client-iotfleetwise/src/commands/UpdateDecoderManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UpdateDecoderManifestCommand.ts @@ -265,6 +265,7 @@ export interface UpdateDecoderManifestCommandOutput extends UpdateDecoderManifes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class UpdateDecoderManifestCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/UpdateFleetCommand.ts b/clients/client-iotfleetwise/src/commands/UpdateFleetCommand.ts index c3e1e7d4e3220..6750dfb5da69f 100644 --- a/clients/client-iotfleetwise/src/commands/UpdateFleetCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UpdateFleetCommand.ts @@ -76,6 +76,7 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResponse, __Metadat * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class UpdateFleetCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/UpdateModelManifestCommand.ts b/clients/client-iotfleetwise/src/commands/UpdateModelManifestCommand.ts index 958ff4795abd8..7415f6a496fc5 100644 --- a/clients/client-iotfleetwise/src/commands/UpdateModelManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UpdateModelManifestCommand.ts @@ -88,6 +88,7 @@ export interface UpdateModelManifestCommandOutput extends UpdateModelManifestRes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class UpdateModelManifestCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/UpdateSignalCatalogCommand.ts b/clients/client-iotfleetwise/src/commands/UpdateSignalCatalogCommand.ts index 48aaeb1a4a4e3..7e7e085271166 100644 --- a/clients/client-iotfleetwise/src/commands/UpdateSignalCatalogCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UpdateSignalCatalogCommand.ts @@ -226,6 +226,7 @@ export interface UpdateSignalCatalogCommandOutput extends UpdateSignalCatalogRes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class UpdateSignalCatalogCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/UpdateStateTemplateCommand.ts b/clients/client-iotfleetwise/src/commands/UpdateStateTemplateCommand.ts index 16d45e5a905f8..4078b1cf0b0a3 100644 --- a/clients/client-iotfleetwise/src/commands/UpdateStateTemplateCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UpdateStateTemplateCommand.ts @@ -95,6 +95,7 @@ export interface UpdateStateTemplateCommandOutput extends UpdateStateTemplateRes * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class UpdateStateTemplateCommand extends $Command diff --git a/clients/client-iotfleetwise/src/commands/UpdateVehicleCommand.ts b/clients/client-iotfleetwise/src/commands/UpdateVehicleCommand.ts index 757cf21bcfb39..e88edb5bb2d6f 100644 --- a/clients/client-iotfleetwise/src/commands/UpdateVehicleCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UpdateVehicleCommand.ts @@ -101,6 +101,7 @@ export interface UpdateVehicleCommandOutput extends UpdateVehicleResponse, __Met * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* + * * @public */ export class UpdateVehicleCommand extends $Command diff --git a/clients/client-iotsecuretunneling/src/commands/CloseTunnelCommand.ts b/clients/client-iotsecuretunneling/src/commands/CloseTunnelCommand.ts index 24c0fca8e398a..58586c4b84c63 100644 --- a/clients/client-iotsecuretunneling/src/commands/CloseTunnelCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/CloseTunnelCommand.ts @@ -64,6 +64,7 @@ export interface CloseTunnelCommandOutput extends CloseTunnelResponse, __Metadat * @throws {@link IoTSecureTunnelingServiceException} *

Base exception class for all service exceptions from IoTSecureTunneling service.

* + * * @public */ export class CloseTunnelCommand extends $Command diff --git a/clients/client-iotsecuretunneling/src/commands/DescribeTunnelCommand.ts b/clients/client-iotsecuretunneling/src/commands/DescribeTunnelCommand.ts index fa559aa902f54..63b05c609606d 100644 --- a/clients/client-iotsecuretunneling/src/commands/DescribeTunnelCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/DescribeTunnelCommand.ts @@ -93,6 +93,7 @@ export interface DescribeTunnelCommandOutput extends DescribeTunnelResponse, __M * @throws {@link IoTSecureTunnelingServiceException} *

Base exception class for all service exceptions from IoTSecureTunneling service.

* + * * @public */ export class DescribeTunnelCommand extends $Command diff --git a/clients/client-iotsecuretunneling/src/commands/ListTagsForResourceCommand.ts b/clients/client-iotsecuretunneling/src/commands/ListTagsForResourceCommand.ts index cdcd417443f6a..8cebada0bf075 100644 --- a/clients/client-iotsecuretunneling/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link IoTSecureTunnelingServiceException} *

Base exception class for all service exceptions from IoTSecureTunneling service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-iotsecuretunneling/src/commands/ListTunnelsCommand.ts b/clients/client-iotsecuretunneling/src/commands/ListTunnelsCommand.ts index f7d944e1b11b7..9a8278281ec1a 100644 --- a/clients/client-iotsecuretunneling/src/commands/ListTunnelsCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/ListTunnelsCommand.ts @@ -73,6 +73,7 @@ export interface ListTunnelsCommandOutput extends ListTunnelsResponse, __Metadat * @throws {@link IoTSecureTunnelingServiceException} *

Base exception class for all service exceptions from IoTSecureTunneling service.

* + * * @public */ export class ListTunnelsCommand extends $Command diff --git a/clients/client-iotsecuretunneling/src/commands/OpenTunnelCommand.ts b/clients/client-iotsecuretunneling/src/commands/OpenTunnelCommand.ts index 01bf1811bc37e..2d43b4300ab6a 100644 --- a/clients/client-iotsecuretunneling/src/commands/OpenTunnelCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/OpenTunnelCommand.ts @@ -82,6 +82,7 @@ export interface OpenTunnelCommandOutput extends OpenTunnelResponse, __MetadataB * @throws {@link IoTSecureTunnelingServiceException} *

Base exception class for all service exceptions from IoTSecureTunneling service.

* + * * @public */ export class OpenTunnelCommand extends $Command diff --git a/clients/client-iotsecuretunneling/src/commands/RotateTunnelAccessTokenCommand.ts b/clients/client-iotsecuretunneling/src/commands/RotateTunnelAccessTokenCommand.ts index c6c8d0c3ace97..2af2e4667da82 100644 --- a/clients/client-iotsecuretunneling/src/commands/RotateTunnelAccessTokenCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/RotateTunnelAccessTokenCommand.ts @@ -83,6 +83,7 @@ export interface RotateTunnelAccessTokenCommandOutput extends RotateTunnelAccess * @throws {@link IoTSecureTunnelingServiceException} *

Base exception class for all service exceptions from IoTSecureTunneling service.

* + * * @public */ export class RotateTunnelAccessTokenCommand extends $Command diff --git a/clients/client-iotsecuretunneling/src/commands/TagResourceCommand.ts b/clients/client-iotsecuretunneling/src/commands/TagResourceCommand.ts index 38b0492563d1b..aadd2b0952c9e 100644 --- a/clients/client-iotsecuretunneling/src/commands/TagResourceCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/TagResourceCommand.ts @@ -66,6 +66,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link IoTSecureTunnelingServiceException} *

Base exception class for all service exceptions from IoTSecureTunneling service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-iotsecuretunneling/src/commands/UntagResourceCommand.ts b/clients/client-iotsecuretunneling/src/commands/UntagResourceCommand.ts index 808fa042ab7a6..5c863cee8637e 100644 --- a/clients/client-iotsecuretunneling/src/commands/UntagResourceCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/UntagResourceCommand.ts @@ -63,6 +63,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link IoTSecureTunnelingServiceException} *

Base exception class for all service exceptions from IoTSecureTunneling service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/AssociateAssetsCommand.ts b/clients/client-iotsitewise/src/commands/AssociateAssetsCommand.ts index 43cc5b7f07437..a9dc5ddf937b7 100644 --- a/clients/client-iotsitewise/src/commands/AssociateAssetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/AssociateAssetsCommand.ts @@ -87,6 +87,7 @@ export interface AssociateAssetsCommandOutput extends __MetadataBearer {} * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class AssociateAssetsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/AssociateTimeSeriesToAssetPropertyCommand.ts b/clients/client-iotsitewise/src/commands/AssociateTimeSeriesToAssetPropertyCommand.ts index 242524875ff11..b65bfc1c50b10 100644 --- a/clients/client-iotsitewise/src/commands/AssociateTimeSeriesToAssetPropertyCommand.ts +++ b/clients/client-iotsitewise/src/commands/AssociateTimeSeriesToAssetPropertyCommand.ts @@ -79,6 +79,7 @@ export interface AssociateTimeSeriesToAssetPropertyCommandOutput extends __Metad * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class AssociateTimeSeriesToAssetPropertyCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/BatchAssociateProjectAssetsCommand.ts b/clients/client-iotsitewise/src/commands/BatchAssociateProjectAssetsCommand.ts index ee99c78744923..0c52cb8c35ee5 100644 --- a/clients/client-iotsitewise/src/commands/BatchAssociateProjectAssetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/BatchAssociateProjectAssetsCommand.ts @@ -92,6 +92,7 @@ export interface BatchAssociateProjectAssetsCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class BatchAssociateProjectAssetsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/BatchDisassociateProjectAssetsCommand.ts b/clients/client-iotsitewise/src/commands/BatchDisassociateProjectAssetsCommand.ts index 92fa9ca7140e2..110250803a4ac 100644 --- a/clients/client-iotsitewise/src/commands/BatchDisassociateProjectAssetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/BatchDisassociateProjectAssetsCommand.ts @@ -86,6 +86,7 @@ export interface BatchDisassociateProjectAssetsCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class BatchDisassociateProjectAssetsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyAggregatesCommand.ts b/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyAggregatesCommand.ts index 014dfa9c7f73c..d240480b55d69 100644 --- a/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyAggregatesCommand.ts +++ b/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyAggregatesCommand.ts @@ -133,6 +133,7 @@ export interface BatchGetAssetPropertyAggregatesCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class BatchGetAssetPropertyAggregatesCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueCommand.ts b/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueCommand.ts index 2f5a23c814e41..812b3b1595dff 100644 --- a/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueCommand.ts +++ b/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueCommand.ts @@ -118,6 +118,7 @@ export interface BatchGetAssetPropertyValueCommandOutput extends BatchGetAssetPr * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class BatchGetAssetPropertyValueCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueHistoryCommand.ts b/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueHistoryCommand.ts index 8c436b4e196d1..75cda0a202673 100644 --- a/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueHistoryCommand.ts +++ b/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueHistoryCommand.ts @@ -135,6 +135,7 @@ export interface BatchGetAssetPropertyValueHistoryCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class BatchGetAssetPropertyValueHistoryCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/BatchPutAssetPropertyValueCommand.ts b/clients/client-iotsitewise/src/commands/BatchPutAssetPropertyValueCommand.ts index e10300e5b9704..e60bba62baaff 100644 --- a/clients/client-iotsitewise/src/commands/BatchPutAssetPropertyValueCommand.ts +++ b/clients/client-iotsitewise/src/commands/BatchPutAssetPropertyValueCommand.ts @@ -150,6 +150,7 @@ export interface BatchPutAssetPropertyValueCommandOutput extends BatchPutAssetPr * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class BatchPutAssetPropertyValueCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/CreateAccessPolicyCommand.ts b/clients/client-iotsitewise/src/commands/CreateAccessPolicyCommand.ts index 4622888c5c589..53f27a44e139f 100644 --- a/clients/client-iotsitewise/src/commands/CreateAccessPolicyCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateAccessPolicyCommand.ts @@ -105,6 +105,7 @@ export interface CreateAccessPolicyCommandOutput extends CreateAccessPolicyRespo * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class CreateAccessPolicyCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/CreateAssetCommand.ts b/clients/client-iotsitewise/src/commands/CreateAssetCommand.ts index baf21711227cd..0a4e44ef36a4a 100644 --- a/clients/client-iotsitewise/src/commands/CreateAssetCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateAssetCommand.ts @@ -107,6 +107,7 @@ export interface CreateAssetCommandOutput extends CreateAssetResponse, __Metadat * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class CreateAssetCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/CreateAssetModelCommand.ts b/clients/client-iotsitewise/src/commands/CreateAssetModelCommand.ts index 8e81b427479ca..81f262aa8a2dc 100644 --- a/clients/client-iotsitewise/src/commands/CreateAssetModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateAssetModelCommand.ts @@ -289,6 +289,7 @@ export interface CreateAssetModelCommandOutput extends CreateAssetModelResponse, * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class CreateAssetModelCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/CreateAssetModelCompositeModelCommand.ts b/clients/client-iotsitewise/src/commands/CreateAssetModelCompositeModelCommand.ts index 0d5632967077e..54a794e9fb397 100644 --- a/clients/client-iotsitewise/src/commands/CreateAssetModelCompositeModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateAssetModelCompositeModelCommand.ts @@ -212,6 +212,7 @@ export interface CreateAssetModelCompositeModelCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class CreateAssetModelCompositeModelCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/CreateBulkImportJobCommand.ts b/clients/client-iotsitewise/src/commands/CreateBulkImportJobCommand.ts index 0496c70cbdb4c..c7a6d8e6d1b4f 100644 --- a/clients/client-iotsitewise/src/commands/CreateBulkImportJobCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateBulkImportJobCommand.ts @@ -117,6 +117,7 @@ export interface CreateBulkImportJobCommandOutput extends CreateBulkImportJobRes * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class CreateBulkImportJobCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/CreateDashboardCommand.ts b/clients/client-iotsitewise/src/commands/CreateDashboardCommand.ts index 44f66df71dc7a..bec152eb3af98 100644 --- a/clients/client-iotsitewise/src/commands/CreateDashboardCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateDashboardCommand.ts @@ -85,6 +85,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _ * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class CreateDashboardCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/CreateDatasetCommand.ts b/clients/client-iotsitewise/src/commands/CreateDatasetCommand.ts index 30351d0ed6ba0..b85916ebedf45 100644 --- a/clients/client-iotsitewise/src/commands/CreateDatasetCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateDatasetCommand.ts @@ -114,6 +114,7 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class CreateDatasetCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/CreateGatewayCommand.ts b/clients/client-iotsitewise/src/commands/CreateGatewayCommand.ts index 1d39974d072a4..008d79d104497 100644 --- a/clients/client-iotsitewise/src/commands/CreateGatewayCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateGatewayCommand.ts @@ -96,6 +96,7 @@ export interface CreateGatewayCommandOutput extends CreateGatewayResponse, __Met * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class CreateGatewayCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/CreatePortalCommand.ts b/clients/client-iotsitewise/src/commands/CreatePortalCommand.ts index 81cadf16df202..92dc1d93f0994 100644 --- a/clients/client-iotsitewise/src/commands/CreatePortalCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreatePortalCommand.ts @@ -118,6 +118,7 @@ export interface CreatePortalCommandOutput extends CreatePortalResponse, __Metad * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class CreatePortalCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/CreateProjectCommand.ts b/clients/client-iotsitewise/src/commands/CreateProjectCommand.ts index a6147377aa02a..ce84cccb3117c 100644 --- a/clients/client-iotsitewise/src/commands/CreateProjectCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateProjectCommand.ts @@ -88,6 +88,7 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class CreateProjectCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DeleteAccessPolicyCommand.ts b/clients/client-iotsitewise/src/commands/DeleteAccessPolicyCommand.ts index 3d3619edbd0b5..5efbb9c6ba70e 100644 --- a/clients/client-iotsitewise/src/commands/DeleteAccessPolicyCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteAccessPolicyCommand.ts @@ -72,6 +72,7 @@ export interface DeleteAccessPolicyCommandOutput extends DeleteAccessPolicyRespo * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DeleteAccessPolicyCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DeleteAssetCommand.ts b/clients/client-iotsitewise/src/commands/DeleteAssetCommand.ts index 220cc581a8337..d8c87e5cea6e6 100644 --- a/clients/client-iotsitewise/src/commands/DeleteAssetCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteAssetCommand.ts @@ -93,6 +93,7 @@ export interface DeleteAssetCommandOutput extends DeleteAssetResponse, __Metadat * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DeleteAssetCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DeleteAssetModelCommand.ts b/clients/client-iotsitewise/src/commands/DeleteAssetModelCommand.ts index 7cd80be2a8437..eccb965d66586 100644 --- a/clients/client-iotsitewise/src/commands/DeleteAssetModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteAssetModelCommand.ts @@ -99,6 +99,7 @@ export interface DeleteAssetModelCommandOutput extends DeleteAssetModelResponse, * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DeleteAssetModelCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DeleteAssetModelCompositeModelCommand.ts b/clients/client-iotsitewise/src/commands/DeleteAssetModelCompositeModelCommand.ts index 71bdc786849a6..f8e82f312cc63 100644 --- a/clients/client-iotsitewise/src/commands/DeleteAssetModelCompositeModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteAssetModelCompositeModelCommand.ts @@ -105,6 +105,7 @@ export interface DeleteAssetModelCompositeModelCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DeleteAssetModelCompositeModelCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DeleteDashboardCommand.ts b/clients/client-iotsitewise/src/commands/DeleteDashboardCommand.ts index 2886ce3274475..20623b4c23e14 100644 --- a/clients/client-iotsitewise/src/commands/DeleteDashboardCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteDashboardCommand.ts @@ -70,6 +70,7 @@ export interface DeleteDashboardCommandOutput extends DeleteDashboardResponse, _ * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DeleteDashboardCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DeleteDatasetCommand.ts b/clients/client-iotsitewise/src/commands/DeleteDatasetCommand.ts index 13f91332cf161..42d3f9acb0a98 100644 --- a/clients/client-iotsitewise/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteDatasetCommand.ts @@ -88,6 +88,7 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DeleteDatasetCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DeleteGatewayCommand.ts b/clients/client-iotsitewise/src/commands/DeleteGatewayCommand.ts index 433dc31d0d878..9fa72ed351922 100644 --- a/clients/client-iotsitewise/src/commands/DeleteGatewayCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteGatewayCommand.ts @@ -74,6 +74,7 @@ export interface DeleteGatewayCommandOutput extends __MetadataBearer {} * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DeleteGatewayCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DeletePortalCommand.ts b/clients/client-iotsitewise/src/commands/DeletePortalCommand.ts index fb2fbe7d50b86..d01ff5413badd 100644 --- a/clients/client-iotsitewise/src/commands/DeletePortalCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeletePortalCommand.ts @@ -82,6 +82,7 @@ export interface DeletePortalCommandOutput extends DeletePortalResponse, __Metad * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DeletePortalCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DeleteProjectCommand.ts b/clients/client-iotsitewise/src/commands/DeleteProjectCommand.ts index 5b9ffb8a6d732..085e424a9f3bb 100644 --- a/clients/client-iotsitewise/src/commands/DeleteProjectCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteProjectCommand.ts @@ -70,6 +70,7 @@ export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __Met * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DeleteProjectCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DeleteTimeSeriesCommand.ts b/clients/client-iotsitewise/src/commands/DeleteTimeSeriesCommand.ts index a7f919960ccda..1e8065524d4b5 100644 --- a/clients/client-iotsitewise/src/commands/DeleteTimeSeriesCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteTimeSeriesCommand.ts @@ -97,6 +97,7 @@ export interface DeleteTimeSeriesCommandOutput extends __MetadataBearer {} * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DeleteTimeSeriesCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeAccessPolicyCommand.ts b/clients/client-iotsitewise/src/commands/DescribeAccessPolicyCommand.ts index ae6133807b66d..a4cda0f5455a0 100644 --- a/clients/client-iotsitewise/src/commands/DescribeAccessPolicyCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeAccessPolicyCommand.ts @@ -98,6 +98,7 @@ export interface DescribeAccessPolicyCommandOutput extends DescribeAccessPolicyR * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeAccessPolicyCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeActionCommand.ts b/clients/client-iotsitewise/src/commands/DescribeActionCommand.ts index 13647d455b829..100334f83f19c 100644 --- a/clients/client-iotsitewise/src/commands/DescribeActionCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeActionCommand.ts @@ -79,6 +79,7 @@ export interface DescribeActionCommandOutput extends DescribeActionResponse, __M * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeActionCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeAssetCommand.ts b/clients/client-iotsitewise/src/commands/DescribeAssetCommand.ts index 52d6b714d0b97..54397b5fa1416 100644 --- a/clients/client-iotsitewise/src/commands/DescribeAssetCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeAssetCommand.ts @@ -165,6 +165,7 @@ export interface DescribeAssetCommandOutput extends DescribeAssetResponse, __Met * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeAssetCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeAssetCompositeModelCommand.ts b/clients/client-iotsitewise/src/commands/DescribeAssetCompositeModelCommand.ts index c15d49879bbea..38a8b73c4957e 100644 --- a/clients/client-iotsitewise/src/commands/DescribeAssetCompositeModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeAssetCompositeModelCommand.ts @@ -134,6 +134,7 @@ export interface DescribeAssetCompositeModelCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeAssetCompositeModelCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeAssetModelCommand.ts b/clients/client-iotsitewise/src/commands/DescribeAssetModelCommand.ts index ab1db5d832157..b13a626ce5e0e 100644 --- a/clients/client-iotsitewise/src/commands/DescribeAssetModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeAssetModelCommand.ts @@ -270,6 +270,7 @@ export interface DescribeAssetModelCommandOutput extends DescribeAssetModelRespo * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeAssetModelCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeAssetModelCompositeModelCommand.ts b/clients/client-iotsitewise/src/commands/DescribeAssetModelCompositeModelCommand.ts index 1260b4596b542..fa03cfb15d720 100644 --- a/clients/client-iotsitewise/src/commands/DescribeAssetModelCompositeModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeAssetModelCompositeModelCommand.ts @@ -199,6 +199,7 @@ export interface DescribeAssetModelCompositeModelCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeAssetModelCompositeModelCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeAssetPropertyCommand.ts b/clients/client-iotsitewise/src/commands/DescribeAssetPropertyCommand.ts index 628cc472f5728..3015ca6730dba 100644 --- a/clients/client-iotsitewise/src/commands/DescribeAssetPropertyCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeAssetPropertyCommand.ts @@ -250,6 +250,7 @@ export interface DescribeAssetPropertyCommandOutput extends DescribeAssetPropert * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeAssetPropertyCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeBulkImportJobCommand.ts b/clients/client-iotsitewise/src/commands/DescribeBulkImportJobCommand.ts index 6b27a5cc9503e..0ce09c70db343 100644 --- a/clients/client-iotsitewise/src/commands/DescribeBulkImportJobCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeBulkImportJobCommand.ts @@ -100,6 +100,7 @@ export interface DescribeBulkImportJobCommandOutput extends DescribeBulkImportJo * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeBulkImportJobCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeDashboardCommand.ts b/clients/client-iotsitewise/src/commands/DescribeDashboardCommand.ts index 5edaf50c4dd33..36fd3022bbef5 100644 --- a/clients/client-iotsitewise/src/commands/DescribeDashboardCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeDashboardCommand.ts @@ -78,6 +78,7 @@ export interface DescribeDashboardCommandOutput extends DescribeDashboardRespons * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeDashboardCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeDatasetCommand.ts b/clients/client-iotsitewise/src/commands/DescribeDatasetCommand.ts index 26bbc6a2d408a..893b085575db6 100644 --- a/clients/client-iotsitewise/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeDatasetCommand.ts @@ -100,6 +100,7 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _ * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeDatasetCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeDefaultEncryptionConfigurationCommand.ts b/clients/client-iotsitewise/src/commands/DescribeDefaultEncryptionConfigurationCommand.ts index 8a2b425b992b7..d03efd3ee038b 100644 --- a/clients/client-iotsitewise/src/commands/DescribeDefaultEncryptionConfigurationCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeDefaultEncryptionConfigurationCommand.ts @@ -85,6 +85,7 @@ export interface DescribeDefaultEncryptionConfigurationCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeDefaultEncryptionConfigurationCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeGatewayCapabilityConfigurationCommand.ts b/clients/client-iotsitewise/src/commands/DescribeGatewayCapabilityConfigurationCommand.ts index 66010f02c93c8..15d095a4a1f91 100644 --- a/clients/client-iotsitewise/src/commands/DescribeGatewayCapabilityConfigurationCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeGatewayCapabilityConfigurationCommand.ts @@ -88,6 +88,7 @@ export interface DescribeGatewayCapabilityConfigurationCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeGatewayCapabilityConfigurationCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeGatewayCommand.ts b/clients/client-iotsitewise/src/commands/DescribeGatewayCommand.ts index 6e4d6a5f276cb..fefb8c619c9a0 100644 --- a/clients/client-iotsitewise/src/commands/DescribeGatewayCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeGatewayCommand.ts @@ -94,6 +94,7 @@ export interface DescribeGatewayCommandOutput extends DescribeGatewayResponse, _ * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeGatewayCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeLoggingOptionsCommand.ts b/clients/client-iotsitewise/src/commands/DescribeLoggingOptionsCommand.ts index a91fb81aee55e..edbc3f3579b62 100644 --- a/clients/client-iotsitewise/src/commands/DescribeLoggingOptionsCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeLoggingOptionsCommand.ts @@ -71,6 +71,7 @@ export interface DescribeLoggingOptionsCommandOutput extends DescribeLoggingOpti * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeLoggingOptionsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribePortalCommand.ts b/clients/client-iotsitewise/src/commands/DescribePortalCommand.ts index f07a5e9a78071..5cabfd4a07c06 100644 --- a/clients/client-iotsitewise/src/commands/DescribePortalCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribePortalCommand.ts @@ -109,6 +109,7 @@ export interface DescribePortalCommandOutput extends DescribePortalResponse, __M * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribePortalCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeProjectCommand.ts b/clients/client-iotsitewise/src/commands/DescribeProjectCommand.ts index 757cf642d6062..48a7d537354cb 100644 --- a/clients/client-iotsitewise/src/commands/DescribeProjectCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeProjectCommand.ts @@ -77,6 +77,7 @@ export interface DescribeProjectCommandOutput extends DescribeProjectResponse, _ * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeProjectCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeStorageConfigurationCommand.ts b/clients/client-iotsitewise/src/commands/DescribeStorageConfigurationCommand.ts index d032019ebb782..6240549bfe6e0 100644 --- a/clients/client-iotsitewise/src/commands/DescribeStorageConfigurationCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeStorageConfigurationCommand.ts @@ -109,6 +109,7 @@ export interface DescribeStorageConfigurationCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeStorageConfigurationCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DescribeTimeSeriesCommand.ts b/clients/client-iotsitewise/src/commands/DescribeTimeSeriesCommand.ts index 0eca0d1cd0659..9d20c83d603eb 100644 --- a/clients/client-iotsitewise/src/commands/DescribeTimeSeriesCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeTimeSeriesCommand.ts @@ -100,6 +100,7 @@ export interface DescribeTimeSeriesCommandOutput extends DescribeTimeSeriesRespo * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DescribeTimeSeriesCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DisassociateAssetsCommand.ts b/clients/client-iotsitewise/src/commands/DisassociateAssetsCommand.ts index ec82bedb14253..49edc39e429af 100644 --- a/clients/client-iotsitewise/src/commands/DisassociateAssetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/DisassociateAssetsCommand.ts @@ -77,6 +77,7 @@ export interface DisassociateAssetsCommandOutput extends __MetadataBearer {} * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DisassociateAssetsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/DisassociateTimeSeriesFromAssetPropertyCommand.ts b/clients/client-iotsitewise/src/commands/DisassociateTimeSeriesFromAssetPropertyCommand.ts index 05327dc8be368..73c40175bcdf1 100644 --- a/clients/client-iotsitewise/src/commands/DisassociateTimeSeriesFromAssetPropertyCommand.ts +++ b/clients/client-iotsitewise/src/commands/DisassociateTimeSeriesFromAssetPropertyCommand.ts @@ -80,6 +80,7 @@ export interface DisassociateTimeSeriesFromAssetPropertyCommandOutput extends __ * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class DisassociateTimeSeriesFromAssetPropertyCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ExecuteActionCommand.ts b/clients/client-iotsitewise/src/commands/ExecuteActionCommand.ts index f10f395a8287c..bd9fd39a257bd 100644 --- a/clients/client-iotsitewise/src/commands/ExecuteActionCommand.ts +++ b/clients/client-iotsitewise/src/commands/ExecuteActionCommand.ts @@ -88,6 +88,7 @@ export interface ExecuteActionCommandOutput extends ExecuteActionResponse, __Met * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ExecuteActionCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ExecuteQueryCommand.ts b/clients/client-iotsitewise/src/commands/ExecuteQueryCommand.ts index 299ab4a3ffaa0..f4cb63b125d53 100644 --- a/clients/client-iotsitewise/src/commands/ExecuteQueryCommand.ts +++ b/clients/client-iotsitewise/src/commands/ExecuteQueryCommand.ts @@ -114,6 +114,7 @@ export interface ExecuteQueryCommandOutput extends ExecuteQueryResponse, __Metad * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ExecuteQueryCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/GetAssetPropertyAggregatesCommand.ts b/clients/client-iotsitewise/src/commands/GetAssetPropertyAggregatesCommand.ts index dc1c3090c3738..c96b657bc99d0 100644 --- a/clients/client-iotsitewise/src/commands/GetAssetPropertyAggregatesCommand.ts +++ b/clients/client-iotsitewise/src/commands/GetAssetPropertyAggregatesCommand.ts @@ -113,6 +113,7 @@ export interface GetAssetPropertyAggregatesCommandOutput extends GetAssetPropert * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class GetAssetPropertyAggregatesCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/GetAssetPropertyValueCommand.ts b/clients/client-iotsitewise/src/commands/GetAssetPropertyValueCommand.ts index ecac16975ceb8..27eeb52b55278 100644 --- a/clients/client-iotsitewise/src/commands/GetAssetPropertyValueCommand.ts +++ b/clients/client-iotsitewise/src/commands/GetAssetPropertyValueCommand.ts @@ -102,6 +102,7 @@ export interface GetAssetPropertyValueCommandOutput extends GetAssetPropertyValu * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class GetAssetPropertyValueCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/GetAssetPropertyValueHistoryCommand.ts b/clients/client-iotsitewise/src/commands/GetAssetPropertyValueHistoryCommand.ts index 1247ab3adcdbb..c1e3489c1b25f 100644 --- a/clients/client-iotsitewise/src/commands/GetAssetPropertyValueHistoryCommand.ts +++ b/clients/client-iotsitewise/src/commands/GetAssetPropertyValueHistoryCommand.ts @@ -118,6 +118,7 @@ export interface GetAssetPropertyValueHistoryCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class GetAssetPropertyValueHistoryCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/GetInterpolatedAssetPropertyValuesCommand.ts b/clients/client-iotsitewise/src/commands/GetInterpolatedAssetPropertyValuesCommand.ts index 323d409e52195..0b122e9a4b9a8 100644 --- a/clients/client-iotsitewise/src/commands/GetInterpolatedAssetPropertyValuesCommand.ts +++ b/clients/client-iotsitewise/src/commands/GetInterpolatedAssetPropertyValuesCommand.ts @@ -125,6 +125,7 @@ export interface GetInterpolatedAssetPropertyValuesCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class GetInterpolatedAssetPropertyValuesCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/InvokeAssistantCommand.ts b/clients/client-iotsitewise/src/commands/InvokeAssistantCommand.ts index b8ef97b97d416..018f76aa88c00 100644 --- a/clients/client-iotsitewise/src/commands/InvokeAssistantCommand.ts +++ b/clients/client-iotsitewise/src/commands/InvokeAssistantCommand.ts @@ -140,6 +140,7 @@ export interface InvokeAssistantCommandOutput extends InvokeAssistantResponse, _ * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class InvokeAssistantCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListAccessPoliciesCommand.ts b/clients/client-iotsitewise/src/commands/ListAccessPoliciesCommand.ts index 33ec99c438917..fd4407165cdbd 100644 --- a/clients/client-iotsitewise/src/commands/ListAccessPoliciesCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAccessPoliciesCommand.ts @@ -105,6 +105,7 @@ export interface ListAccessPoliciesCommandOutput extends ListAccessPoliciesRespo * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListAccessPoliciesCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListActionsCommand.ts b/clients/client-iotsitewise/src/commands/ListActionsCommand.ts index 1284983b39097..0d8151215cd24 100644 --- a/clients/client-iotsitewise/src/commands/ListActionsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListActionsCommand.ts @@ -83,6 +83,7 @@ export interface ListActionsCommandOutput extends ListActionsResponse, __Metadat * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListActionsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListAssetModelCompositeModelsCommand.ts b/clients/client-iotsitewise/src/commands/ListAssetModelCompositeModelsCommand.ts index 1261644dd4ccb..7d02cf2a437ac 100644 --- a/clients/client-iotsitewise/src/commands/ListAssetModelCompositeModelsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAssetModelCompositeModelsCommand.ts @@ -94,6 +94,7 @@ export interface ListAssetModelCompositeModelsCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListAssetModelCompositeModelsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListAssetModelPropertiesCommand.ts b/clients/client-iotsitewise/src/commands/ListAssetModelPropertiesCommand.ts index ecc391c49230d..a425285c5f19b 100644 --- a/clients/client-iotsitewise/src/commands/ListAssetModelPropertiesCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAssetModelPropertiesCommand.ts @@ -157,6 +157,7 @@ export interface ListAssetModelPropertiesCommandOutput extends ListAssetModelPro * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListAssetModelPropertiesCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListAssetModelsCommand.ts b/clients/client-iotsitewise/src/commands/ListAssetModelsCommand.ts index b36a294a0bf0d..fbc385c5a3460 100644 --- a/clients/client-iotsitewise/src/commands/ListAssetModelsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAssetModelsCommand.ts @@ -99,6 +99,7 @@ export interface ListAssetModelsCommandOutput extends ListAssetModelsResponse, _ * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListAssetModelsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListAssetPropertiesCommand.ts b/clients/client-iotsitewise/src/commands/ListAssetPropertiesCommand.ts index f01575817bcf2..b24488277426b 100644 --- a/clients/client-iotsitewise/src/commands/ListAssetPropertiesCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAssetPropertiesCommand.ts @@ -95,6 +95,7 @@ export interface ListAssetPropertiesCommandOutput extends ListAssetPropertiesRes * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListAssetPropertiesCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListAssetRelationshipsCommand.ts b/clients/client-iotsitewise/src/commands/ListAssetRelationshipsCommand.ts index 1b334908ac347..2b7cef339e9a1 100644 --- a/clients/client-iotsitewise/src/commands/ListAssetRelationshipsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAssetRelationshipsCommand.ts @@ -85,6 +85,7 @@ export interface ListAssetRelationshipsCommandOutput extends ListAssetRelationsh * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListAssetRelationshipsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListAssetsCommand.ts b/clients/client-iotsitewise/src/commands/ListAssetsCommand.ts index 2a259846811b3..eb865afc06bef 100644 --- a/clients/client-iotsitewise/src/commands/ListAssetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAssetsCommand.ts @@ -119,6 +119,7 @@ export interface ListAssetsCommandOutput extends ListAssetsResponse, __MetadataB * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListAssetsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListAssociatedAssetsCommand.ts b/clients/client-iotsitewise/src/commands/ListAssociatedAssetsCommand.ts index 0ce5be485915c..bcaf548cedf8b 100644 --- a/clients/client-iotsitewise/src/commands/ListAssociatedAssetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAssociatedAssetsCommand.ts @@ -118,6 +118,7 @@ export interface ListAssociatedAssetsCommandOutput extends ListAssociatedAssetsR * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListAssociatedAssetsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListBulkImportJobsCommand.ts b/clients/client-iotsitewise/src/commands/ListBulkImportJobsCommand.ts index fc2e471009d27..f888af04b15fa 100644 --- a/clients/client-iotsitewise/src/commands/ListBulkImportJobsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListBulkImportJobsCommand.ts @@ -81,6 +81,7 @@ export interface ListBulkImportJobsCommandOutput extends ListBulkImportJobsRespo * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListBulkImportJobsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListCompositionRelationshipsCommand.ts b/clients/client-iotsitewise/src/commands/ListCompositionRelationshipsCommand.ts index 919ade7d18939..db18802b03688 100644 --- a/clients/client-iotsitewise/src/commands/ListCompositionRelationshipsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListCompositionRelationshipsCommand.ts @@ -86,6 +86,7 @@ export interface ListCompositionRelationshipsCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListCompositionRelationshipsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListDashboardsCommand.ts b/clients/client-iotsitewise/src/commands/ListDashboardsCommand.ts index 6e596fded7ad2..8552eff7a565e 100644 --- a/clients/client-iotsitewise/src/commands/ListDashboardsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListDashboardsCommand.ts @@ -79,6 +79,7 @@ export interface ListDashboardsCommandOutput extends ListDashboardsResponse, __M * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListDashboardsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListDatasetsCommand.ts b/clients/client-iotsitewise/src/commands/ListDatasetsCommand.ts index 54f352e6f766d..b835e543a8756 100644 --- a/clients/client-iotsitewise/src/commands/ListDatasetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListDatasetsCommand.ts @@ -93,6 +93,7 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListDatasetsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListGatewaysCommand.ts b/clients/client-iotsitewise/src/commands/ListGatewaysCommand.ts index ea35f26484c40..6f5210c7722fd 100644 --- a/clients/client-iotsitewise/src/commands/ListGatewaysCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListGatewaysCommand.ts @@ -96,6 +96,7 @@ export interface ListGatewaysCommandOutput extends ListGatewaysResponse, __Metad * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListGatewaysCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListPortalsCommand.ts b/clients/client-iotsitewise/src/commands/ListPortalsCommand.ts index b04b99eef92ac..64656839c1ded 100644 --- a/clients/client-iotsitewise/src/commands/ListPortalsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListPortalsCommand.ts @@ -88,6 +88,7 @@ export interface ListPortalsCommandOutput extends ListPortalsResponse, __Metadat * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListPortalsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListProjectAssetsCommand.ts b/clients/client-iotsitewise/src/commands/ListProjectAssetsCommand.ts index 3eb1f9085a9f0..674c708d5d3f3 100644 --- a/clients/client-iotsitewise/src/commands/ListProjectAssetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListProjectAssetsCommand.ts @@ -73,6 +73,7 @@ export interface ListProjectAssetsCommandOutput extends ListProjectAssetsRespons * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListProjectAssetsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListProjectsCommand.ts b/clients/client-iotsitewise/src/commands/ListProjectsCommand.ts index 92f7a6a34faab..fa919e1c350b1 100644 --- a/clients/client-iotsitewise/src/commands/ListProjectsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListProjectsCommand.ts @@ -79,6 +79,7 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListProjectsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListTagsForResourceCommand.ts b/clients/client-iotsitewise/src/commands/ListTagsForResourceCommand.ts index 38d8241574caa..57369ca4a7f90 100644 --- a/clients/client-iotsitewise/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListTagsForResourceCommand.ts @@ -86,6 +86,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/ListTimeSeriesCommand.ts b/clients/client-iotsitewise/src/commands/ListTimeSeriesCommand.ts index 0cd947a165c60..7bef1ebc9c1d8 100644 --- a/clients/client-iotsitewise/src/commands/ListTimeSeriesCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListTimeSeriesCommand.ts @@ -88,6 +88,7 @@ export interface ListTimeSeriesCommandOutput extends ListTimeSeriesResponse, __M * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class ListTimeSeriesCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/PutDefaultEncryptionConfigurationCommand.ts b/clients/client-iotsitewise/src/commands/PutDefaultEncryptionConfigurationCommand.ts index 1a8d4a3ab8284..dddbadb99b3b3 100644 --- a/clients/client-iotsitewise/src/commands/PutDefaultEncryptionConfigurationCommand.ts +++ b/clients/client-iotsitewise/src/commands/PutDefaultEncryptionConfigurationCommand.ts @@ -97,6 +97,7 @@ export interface PutDefaultEncryptionConfigurationCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class PutDefaultEncryptionConfigurationCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/PutLoggingOptionsCommand.ts b/clients/client-iotsitewise/src/commands/PutLoggingOptionsCommand.ts index de5f2b762575f..1d81c06c0e24c 100644 --- a/clients/client-iotsitewise/src/commands/PutLoggingOptionsCommand.ts +++ b/clients/client-iotsitewise/src/commands/PutLoggingOptionsCommand.ts @@ -75,6 +75,7 @@ export interface PutLoggingOptionsCommandOutput extends PutLoggingOptionsRespons * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class PutLoggingOptionsCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/PutStorageConfigurationCommand.ts b/clients/client-iotsitewise/src/commands/PutStorageConfigurationCommand.ts index 500895ce07fc2..ccb0bd7684aad 100644 --- a/clients/client-iotsitewise/src/commands/PutStorageConfigurationCommand.ts +++ b/clients/client-iotsitewise/src/commands/PutStorageConfigurationCommand.ts @@ -125,6 +125,7 @@ export interface PutStorageConfigurationCommandOutput extends PutStorageConfigur * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class PutStorageConfigurationCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/TagResourceCommand.ts b/clients/client-iotsitewise/src/commands/TagResourceCommand.ts index f059c9f21d67a..845609a3c44db 100644 --- a/clients/client-iotsitewise/src/commands/TagResourceCommand.ts +++ b/clients/client-iotsitewise/src/commands/TagResourceCommand.ts @@ -91,6 +91,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/UntagResourceCommand.ts b/clients/client-iotsitewise/src/commands/UntagResourceCommand.ts index 53517ca839acb..147b14a4538d1 100644 --- a/clients/client-iotsitewise/src/commands/UntagResourceCommand.ts +++ b/clients/client-iotsitewise/src/commands/UntagResourceCommand.ts @@ -85,6 +85,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/UpdateAccessPolicyCommand.ts b/clients/client-iotsitewise/src/commands/UpdateAccessPolicyCommand.ts index 062c2b90d70e0..39f806843bb06 100644 --- a/clients/client-iotsitewise/src/commands/UpdateAccessPolicyCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateAccessPolicyCommand.ts @@ -94,6 +94,7 @@ export interface UpdateAccessPolicyCommandOutput extends UpdateAccessPolicyRespo * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class UpdateAccessPolicyCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/UpdateAssetCommand.ts b/clients/client-iotsitewise/src/commands/UpdateAssetCommand.ts index 95d2ebea906fc..f774465e5c36e 100644 --- a/clients/client-iotsitewise/src/commands/UpdateAssetCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateAssetCommand.ts @@ -95,6 +95,7 @@ export interface UpdateAssetCommandOutput extends UpdateAssetResponse, __Metadat * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class UpdateAssetCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/UpdateAssetModelCommand.ts b/clients/client-iotsitewise/src/commands/UpdateAssetModelCommand.ts index 4b7f26efbc049..b0d25875d84eb 100644 --- a/clients/client-iotsitewise/src/commands/UpdateAssetModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateAssetModelCommand.ts @@ -287,6 +287,7 @@ export interface UpdateAssetModelCommandOutput extends UpdateAssetModelResponse, * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class UpdateAssetModelCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/UpdateAssetModelCompositeModelCommand.ts b/clients/client-iotsitewise/src/commands/UpdateAssetModelCompositeModelCommand.ts index 54701b19701ed..9ddcb2b5a5880 100644 --- a/clients/client-iotsitewise/src/commands/UpdateAssetModelCompositeModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateAssetModelCompositeModelCommand.ts @@ -218,6 +218,7 @@ export interface UpdateAssetModelCompositeModelCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class UpdateAssetModelCompositeModelCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/UpdateAssetPropertyCommand.ts b/clients/client-iotsitewise/src/commands/UpdateAssetPropertyCommand.ts index cf19f950af86e..92bb670e87ddd 100644 --- a/clients/client-iotsitewise/src/commands/UpdateAssetPropertyCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateAssetPropertyCommand.ts @@ -83,6 +83,7 @@ export interface UpdateAssetPropertyCommandOutput extends __MetadataBearer {} * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class UpdateAssetPropertyCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/UpdateDashboardCommand.ts b/clients/client-iotsitewise/src/commands/UpdateDashboardCommand.ts index 3028d543eccf2..6ebf517928e31 100644 --- a/clients/client-iotsitewise/src/commands/UpdateDashboardCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateDashboardCommand.ts @@ -73,6 +73,7 @@ export interface UpdateDashboardCommandOutput extends UpdateDashboardResponse, _ * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class UpdateDashboardCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/UpdateDatasetCommand.ts b/clients/client-iotsitewise/src/commands/UpdateDatasetCommand.ts index 16e14c6c513ae..c4bb1f78236a3 100644 --- a/clients/client-iotsitewise/src/commands/UpdateDatasetCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateDatasetCommand.ts @@ -108,6 +108,7 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class UpdateDatasetCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/UpdateGatewayCapabilityConfigurationCommand.ts b/clients/client-iotsitewise/src/commands/UpdateGatewayCapabilityConfigurationCommand.ts index a297bdfe7b877..b6787fdb2a081 100644 --- a/clients/client-iotsitewise/src/commands/UpdateGatewayCapabilityConfigurationCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateGatewayCapabilityConfigurationCommand.ts @@ -96,6 +96,7 @@ export interface UpdateGatewayCapabilityConfigurationCommandOutput * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class UpdateGatewayCapabilityConfigurationCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/UpdateGatewayCommand.ts b/clients/client-iotsitewise/src/commands/UpdateGatewayCommand.ts index cd9b391dfd2e9..bfebcc18f2a0f 100644 --- a/clients/client-iotsitewise/src/commands/UpdateGatewayCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateGatewayCommand.ts @@ -74,6 +74,7 @@ export interface UpdateGatewayCommandOutput extends __MetadataBearer {} * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class UpdateGatewayCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/UpdatePortalCommand.ts b/clients/client-iotsitewise/src/commands/UpdatePortalCommand.ts index a702406c4532a..f4f1846071642 100644 --- a/clients/client-iotsitewise/src/commands/UpdatePortalCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdatePortalCommand.ts @@ -106,6 +106,7 @@ export interface UpdatePortalCommandOutput extends UpdatePortalResponse, __Metad * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class UpdatePortalCommand extends $Command diff --git a/clients/client-iotsitewise/src/commands/UpdateProjectCommand.ts b/clients/client-iotsitewise/src/commands/UpdateProjectCommand.ts index bf740d2701193..17bd22dd27016 100644 --- a/clients/client-iotsitewise/src/commands/UpdateProjectCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateProjectCommand.ts @@ -72,6 +72,7 @@ export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __Met * @throws {@link IoTSiteWiseServiceException} *

Base exception class for all service exceptions from IoTSiteWise service.

* + * * @public */ export class UpdateProjectCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/AssociateEntityToThingCommand.ts b/clients/client-iotthingsgraph/src/commands/AssociateEntityToThingCommand.ts index b1e984c0bc0b9..5dc3bc926abaa 100644 --- a/clients/client-iotthingsgraph/src/commands/AssociateEntityToThingCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/AssociateEntityToThingCommand.ts @@ -70,6 +70,7 @@ export interface AssociateEntityToThingCommandOutput extends AssociateEntityToTh * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class AssociateEntityToThingCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/CreateFlowTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/CreateFlowTemplateCommand.ts index 54db981ba7ce5..f17a817b2ddf2 100644 --- a/clients/client-iotthingsgraph/src/commands/CreateFlowTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/CreateFlowTemplateCommand.ts @@ -83,6 +83,7 @@ export interface CreateFlowTemplateCommandOutput extends CreateFlowTemplateRespo * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class CreateFlowTemplateCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/CreateSystemInstanceCommand.ts b/clients/client-iotthingsgraph/src/commands/CreateSystemInstanceCommand.ts index 916882c1e7b07..a139fc98cc426 100644 --- a/clients/client-iotthingsgraph/src/commands/CreateSystemInstanceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/CreateSystemInstanceCommand.ts @@ -107,6 +107,7 @@ export interface CreateSystemInstanceCommandOutput extends CreateSystemInstanceR * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class CreateSystemInstanceCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/CreateSystemTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/CreateSystemTemplateCommand.ts index 3184fba9fcf98..ca66bc49f09c6 100644 --- a/clients/client-iotthingsgraph/src/commands/CreateSystemTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/CreateSystemTemplateCommand.ts @@ -79,6 +79,7 @@ export interface CreateSystemTemplateCommandOutput extends CreateSystemTemplateR * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class CreateSystemTemplateCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/DeleteFlowTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/DeleteFlowTemplateCommand.ts index cdf7ba614764d..99716ab4d6a45 100644 --- a/clients/client-iotthingsgraph/src/commands/DeleteFlowTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DeleteFlowTemplateCommand.ts @@ -68,6 +68,7 @@ export interface DeleteFlowTemplateCommandOutput extends DeleteFlowTemplateRespo * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class DeleteFlowTemplateCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/DeleteNamespaceCommand.ts b/clients/client-iotthingsgraph/src/commands/DeleteNamespaceCommand.ts index 14edbb53276a3..fd4312329dc97 100644 --- a/clients/client-iotthingsgraph/src/commands/DeleteNamespaceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DeleteNamespaceCommand.ts @@ -63,6 +63,7 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _ * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class DeleteNamespaceCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/DeleteSystemInstanceCommand.ts b/clients/client-iotthingsgraph/src/commands/DeleteSystemInstanceCommand.ts index 094858fcd76b4..0ac586a21317c 100644 --- a/clients/client-iotthingsgraph/src/commands/DeleteSystemInstanceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DeleteSystemInstanceCommand.ts @@ -69,6 +69,7 @@ export interface DeleteSystemInstanceCommandOutput extends DeleteSystemInstanceR * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class DeleteSystemInstanceCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/DeleteSystemTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/DeleteSystemTemplateCommand.ts index 34bf309d6abe6..e969bf559404f 100644 --- a/clients/client-iotthingsgraph/src/commands/DeleteSystemTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DeleteSystemTemplateCommand.ts @@ -68,6 +68,7 @@ export interface DeleteSystemTemplateCommandOutput extends DeleteSystemTemplateR * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class DeleteSystemTemplateCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/DeploySystemInstanceCommand.ts b/clients/client-iotthingsgraph/src/commands/DeploySystemInstanceCommand.ts index 6d0c9be8db9ef..15e77a24cd072 100644 --- a/clients/client-iotthingsgraph/src/commands/DeploySystemInstanceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DeploySystemInstanceCommand.ts @@ -94,6 +94,7 @@ export interface DeploySystemInstanceCommandOutput extends DeploySystemInstanceR * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class DeploySystemInstanceCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/DeprecateFlowTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/DeprecateFlowTemplateCommand.ts index 036780220d33b..577e67f355891 100644 --- a/clients/client-iotthingsgraph/src/commands/DeprecateFlowTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DeprecateFlowTemplateCommand.ts @@ -67,6 +67,7 @@ export interface DeprecateFlowTemplateCommandOutput extends DeprecateFlowTemplat * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class DeprecateFlowTemplateCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/DeprecateSystemTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/DeprecateSystemTemplateCommand.ts index e91f57061db16..80e6d885e0e96 100644 --- a/clients/client-iotthingsgraph/src/commands/DeprecateSystemTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DeprecateSystemTemplateCommand.ts @@ -67,6 +67,7 @@ export interface DeprecateSystemTemplateCommandOutput extends DeprecateSystemTem * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class DeprecateSystemTemplateCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/DescribeNamespaceCommand.ts b/clients/client-iotthingsgraph/src/commands/DescribeNamespaceCommand.ts index cba36c0b689d2..c71eb1fdf79ca 100644 --- a/clients/client-iotthingsgraph/src/commands/DescribeNamespaceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DescribeNamespaceCommand.ts @@ -73,6 +73,7 @@ export interface DescribeNamespaceCommandOutput extends DescribeNamespaceRespons * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class DescribeNamespaceCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/DissociateEntityFromThingCommand.ts b/clients/client-iotthingsgraph/src/commands/DissociateEntityFromThingCommand.ts index 8057d8d831639..bde788def5957 100644 --- a/clients/client-iotthingsgraph/src/commands/DissociateEntityFromThingCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DissociateEntityFromThingCommand.ts @@ -69,6 +69,7 @@ export interface DissociateEntityFromThingCommandOutput extends DissociateEntity * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class DissociateEntityFromThingCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/GetEntitiesCommand.ts b/clients/client-iotthingsgraph/src/commands/GetEntitiesCommand.ts index 5129fa1b22ef5..1cfebfb1f3e0e 100644 --- a/clients/client-iotthingsgraph/src/commands/GetEntitiesCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetEntitiesCommand.ts @@ -114,6 +114,7 @@ export interface GetEntitiesCommandOutput extends GetEntitiesResponse, __Metadat * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class GetEntitiesCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/GetFlowTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/GetFlowTemplateCommand.ts index 53cc7fafdcb7f..69a88251d74cd 100644 --- a/clients/client-iotthingsgraph/src/commands/GetFlowTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetFlowTemplateCommand.ts @@ -82,6 +82,7 @@ export interface GetFlowTemplateCommandOutput extends GetFlowTemplateResponse, _ * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class GetFlowTemplateCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/GetFlowTemplateRevisionsCommand.ts b/clients/client-iotthingsgraph/src/commands/GetFlowTemplateRevisionsCommand.ts index 7ca1244e5041f..05cb614f019b8 100644 --- a/clients/client-iotthingsgraph/src/commands/GetFlowTemplateRevisionsCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetFlowTemplateRevisionsCommand.ts @@ -80,6 +80,7 @@ export interface GetFlowTemplateRevisionsCommandOutput extends GetFlowTemplateRe * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class GetFlowTemplateRevisionsCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/GetNamespaceDeletionStatusCommand.ts b/clients/client-iotthingsgraph/src/commands/GetNamespaceDeletionStatusCommand.ts index c67f6767f4107..15d4bf94867c6 100644 --- a/clients/client-iotthingsgraph/src/commands/GetNamespaceDeletionStatusCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetNamespaceDeletionStatusCommand.ts @@ -68,6 +68,7 @@ export interface GetNamespaceDeletionStatusCommandOutput extends GetNamespaceDel * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class GetNamespaceDeletionStatusCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/GetSystemInstanceCommand.ts b/clients/client-iotthingsgraph/src/commands/GetSystemInstanceCommand.ts index eaf062ea5e8c9..94d6ace375018 100644 --- a/clients/client-iotthingsgraph/src/commands/GetSystemInstanceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetSystemInstanceCommand.ts @@ -98,6 +98,7 @@ export interface GetSystemInstanceCommandOutput extends GetSystemInstanceRespons * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class GetSystemInstanceCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/GetSystemTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/GetSystemTemplateCommand.ts index b30019c100e8f..cfd821823aab6 100644 --- a/clients/client-iotthingsgraph/src/commands/GetSystemTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetSystemTemplateCommand.ts @@ -82,6 +82,7 @@ export interface GetSystemTemplateCommandOutput extends GetSystemTemplateRespons * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class GetSystemTemplateCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/GetSystemTemplateRevisionsCommand.ts b/clients/client-iotthingsgraph/src/commands/GetSystemTemplateRevisionsCommand.ts index 81fc6ca8792fb..c05af1a9ff2e1 100644 --- a/clients/client-iotthingsgraph/src/commands/GetSystemTemplateRevisionsCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetSystemTemplateRevisionsCommand.ts @@ -80,6 +80,7 @@ export interface GetSystemTemplateRevisionsCommandOutput extends GetSystemTempla * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class GetSystemTemplateRevisionsCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/GetUploadStatusCommand.ts b/clients/client-iotthingsgraph/src/commands/GetUploadStatusCommand.ts index 8ec580672a9a7..12f65d9022d07 100644 --- a/clients/client-iotthingsgraph/src/commands/GetUploadStatusCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetUploadStatusCommand.ts @@ -77,6 +77,7 @@ export interface GetUploadStatusCommandOutput extends GetUploadStatusResponse, _ * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class GetUploadStatusCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/ListFlowExecutionMessagesCommand.ts b/clients/client-iotthingsgraph/src/commands/ListFlowExecutionMessagesCommand.ts index 69773dfd32c0b..9c4a5cc5b259a 100644 --- a/clients/client-iotthingsgraph/src/commands/ListFlowExecutionMessagesCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/ListFlowExecutionMessagesCommand.ts @@ -79,6 +79,7 @@ export interface ListFlowExecutionMessagesCommandOutput extends ListFlowExecutio * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class ListFlowExecutionMessagesCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/ListTagsForResourceCommand.ts b/clients/client-iotthingsgraph/src/commands/ListTagsForResourceCommand.ts index 75b5dcc925402..34fa2ba63be1e 100644 --- a/clients/client-iotthingsgraph/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/ListTagsForResourceCommand.ts @@ -77,6 +77,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/SearchEntitiesCommand.ts b/clients/client-iotthingsgraph/src/commands/SearchEntitiesCommand.ts index a9b69a375de86..af53d53df89af 100644 --- a/clients/client-iotthingsgraph/src/commands/SearchEntitiesCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/SearchEntitiesCommand.ts @@ -91,6 +91,7 @@ export interface SearchEntitiesCommandOutput extends SearchEntitiesResponse, __M * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class SearchEntitiesCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/SearchFlowExecutionsCommand.ts b/clients/client-iotthingsgraph/src/commands/SearchFlowExecutionsCommand.ts index 6c51b19b767a6..b20318e0f5406 100644 --- a/clients/client-iotthingsgraph/src/commands/SearchFlowExecutionsCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/SearchFlowExecutionsCommand.ts @@ -84,6 +84,7 @@ export interface SearchFlowExecutionsCommandOutput extends SearchFlowExecutionsR * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class SearchFlowExecutionsCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/SearchFlowTemplatesCommand.ts b/clients/client-iotthingsgraph/src/commands/SearchFlowTemplatesCommand.ts index ab98aeb9ebfb1..6d5d1f17accf8 100644 --- a/clients/client-iotthingsgraph/src/commands/SearchFlowTemplatesCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/SearchFlowTemplatesCommand.ts @@ -83,6 +83,7 @@ export interface SearchFlowTemplatesCommandOutput extends SearchFlowTemplatesRes * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class SearchFlowTemplatesCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/SearchSystemInstancesCommand.ts b/clients/client-iotthingsgraph/src/commands/SearchSystemInstancesCommand.ts index 0ae2a387e2b9e..079d3f6bedcfd 100644 --- a/clients/client-iotthingsgraph/src/commands/SearchSystemInstancesCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/SearchSystemInstancesCommand.ts @@ -88,6 +88,7 @@ export interface SearchSystemInstancesCommandOutput extends SearchSystemInstance * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class SearchSystemInstancesCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/SearchSystemTemplatesCommand.ts b/clients/client-iotthingsgraph/src/commands/SearchSystemTemplatesCommand.ts index 06e1f59272e88..7b947de0c5e84 100644 --- a/clients/client-iotthingsgraph/src/commands/SearchSystemTemplatesCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/SearchSystemTemplatesCommand.ts @@ -83,6 +83,7 @@ export interface SearchSystemTemplatesCommandOutput extends SearchSystemTemplate * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class SearchSystemTemplatesCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/SearchThingsCommand.ts b/clients/client-iotthingsgraph/src/commands/SearchThingsCommand.ts index d3a2c953938fd..b9c8418b00061 100644 --- a/clients/client-iotthingsgraph/src/commands/SearchThingsCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/SearchThingsCommand.ts @@ -81,6 +81,7 @@ export interface SearchThingsCommandOutput extends SearchThingsResponse, __Metad * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class SearchThingsCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/TagResourceCommand.ts b/clients/client-iotthingsgraph/src/commands/TagResourceCommand.ts index a050e5131da34..222fc5751951e 100644 --- a/clients/client-iotthingsgraph/src/commands/TagResourceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/TagResourceCommand.ts @@ -73,6 +73,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/UndeploySystemInstanceCommand.ts b/clients/client-iotthingsgraph/src/commands/UndeploySystemInstanceCommand.ts index b772df9b6531a..98393b2308f5f 100644 --- a/clients/client-iotthingsgraph/src/commands/UndeploySystemInstanceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/UndeploySystemInstanceCommand.ts @@ -82,6 +82,7 @@ export interface UndeploySystemInstanceCommandOutput extends UndeploySystemInsta * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class UndeploySystemInstanceCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/UntagResourceCommand.ts b/clients/client-iotthingsgraph/src/commands/UntagResourceCommand.ts index d58d0ddae197b..0c203b88711f8 100644 --- a/clients/client-iotthingsgraph/src/commands/UntagResourceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/UntagResourceCommand.ts @@ -70,6 +70,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/UpdateFlowTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/UpdateFlowTemplateCommand.ts index 8f168553a3604..10b361ebeb42b 100644 --- a/clients/client-iotthingsgraph/src/commands/UpdateFlowTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/UpdateFlowTemplateCommand.ts @@ -80,6 +80,7 @@ export interface UpdateFlowTemplateCommandOutput extends UpdateFlowTemplateRespo * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class UpdateFlowTemplateCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/UpdateSystemTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/UpdateSystemTemplateCommand.ts index 05199ac18a5c7..e734ee7241089 100644 --- a/clients/client-iotthingsgraph/src/commands/UpdateSystemTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/UpdateSystemTemplateCommand.ts @@ -79,6 +79,7 @@ export interface UpdateSystemTemplateCommandOutput extends UpdateSystemTemplateR * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class UpdateSystemTemplateCommand extends $Command diff --git a/clients/client-iotthingsgraph/src/commands/UploadEntityDefinitionsCommand.ts b/clients/client-iotthingsgraph/src/commands/UploadEntityDefinitionsCommand.ts index df51837b5b8cb..014ea1f4276a4 100644 --- a/clients/client-iotthingsgraph/src/commands/UploadEntityDefinitionsCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/UploadEntityDefinitionsCommand.ts @@ -81,6 +81,7 @@ export interface UploadEntityDefinitionsCommandOutput extends UploadEntityDefini * @throws {@link IoTThingsGraphServiceException} *

Base exception class for all service exceptions from IoTThingsGraph service.

* + * * @public */ export class UploadEntityDefinitionsCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/BatchPutPropertyValuesCommand.ts b/clients/client-iottwinmaker/src/commands/BatchPutPropertyValuesCommand.ts index 1bac529618c9e..5ab0a0fcec8ca 100644 --- a/clients/client-iottwinmaker/src/commands/BatchPutPropertyValuesCommand.ts +++ b/clients/client-iottwinmaker/src/commands/BatchPutPropertyValuesCommand.ts @@ -182,6 +182,7 @@ export interface BatchPutPropertyValuesCommandOutput extends BatchPutPropertyVal * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class BatchPutPropertyValuesCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/CancelMetadataTransferJobCommand.ts b/clients/client-iottwinmaker/src/commands/CancelMetadataTransferJobCommand.ts index c097ab8c67143..681f31327a83a 100644 --- a/clients/client-iottwinmaker/src/commands/CancelMetadataTransferJobCommand.ts +++ b/clients/client-iottwinmaker/src/commands/CancelMetadataTransferJobCommand.ts @@ -89,6 +89,7 @@ export interface CancelMetadataTransferJobCommandOutput extends CancelMetadataTr * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class CancelMetadataTransferJobCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/CreateComponentTypeCommand.ts b/clients/client-iottwinmaker/src/commands/CreateComponentTypeCommand.ts index 9af37f72aea52..ffee235eb2867 100644 --- a/clients/client-iottwinmaker/src/commands/CreateComponentTypeCommand.ts +++ b/clients/client-iottwinmaker/src/commands/CreateComponentTypeCommand.ts @@ -178,6 +178,7 @@ export interface CreateComponentTypeCommandOutput extends CreateComponentTypeRes * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class CreateComponentTypeCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/CreateEntityCommand.ts b/clients/client-iottwinmaker/src/commands/CreateEntityCommand.ts index 9c2c96fc78d19..dc9787b63a736 100644 --- a/clients/client-iottwinmaker/src/commands/CreateEntityCommand.ts +++ b/clients/client-iottwinmaker/src/commands/CreateEntityCommand.ts @@ -200,6 +200,7 @@ export interface CreateEntityCommandOutput extends CreateEntityResponse, __Metad * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class CreateEntityCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/CreateMetadataTransferJobCommand.ts b/clients/client-iottwinmaker/src/commands/CreateMetadataTransferJobCommand.ts index d6a3f7b087e2b..b4f056e6eb47f 100644 --- a/clients/client-iottwinmaker/src/commands/CreateMetadataTransferJobCommand.ts +++ b/clients/client-iottwinmaker/src/commands/CreateMetadataTransferJobCommand.ts @@ -135,6 +135,7 @@ export interface CreateMetadataTransferJobCommandOutput extends CreateMetadataTr * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class CreateMetadataTransferJobCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/CreateSceneCommand.ts b/clients/client-iottwinmaker/src/commands/CreateSceneCommand.ts index a436797fb24bf..cab131de8f87b 100644 --- a/clients/client-iottwinmaker/src/commands/CreateSceneCommand.ts +++ b/clients/client-iottwinmaker/src/commands/CreateSceneCommand.ts @@ -86,6 +86,7 @@ export interface CreateSceneCommandOutput extends CreateSceneResponse, __Metadat * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class CreateSceneCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/CreateSyncJobCommand.ts b/clients/client-iottwinmaker/src/commands/CreateSyncJobCommand.ts index 2f33efbe0860c..9ab5476fbe955 100644 --- a/clients/client-iottwinmaker/src/commands/CreateSyncJobCommand.ts +++ b/clients/client-iottwinmaker/src/commands/CreateSyncJobCommand.ts @@ -80,6 +80,7 @@ export interface CreateSyncJobCommandOutput extends CreateSyncJobResponse, __Met * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class CreateSyncJobCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/CreateWorkspaceCommand.ts b/clients/client-iottwinmaker/src/commands/CreateWorkspaceCommand.ts index 43510f250a0db..de47aad88e7df 100644 --- a/clients/client-iottwinmaker/src/commands/CreateWorkspaceCommand.ts +++ b/clients/client-iottwinmaker/src/commands/CreateWorkspaceCommand.ts @@ -80,6 +80,7 @@ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _ * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class CreateWorkspaceCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/DeleteComponentTypeCommand.ts b/clients/client-iottwinmaker/src/commands/DeleteComponentTypeCommand.ts index aa0a25759f79c..7f0228f9c334c 100644 --- a/clients/client-iottwinmaker/src/commands/DeleteComponentTypeCommand.ts +++ b/clients/client-iottwinmaker/src/commands/DeleteComponentTypeCommand.ts @@ -71,6 +71,7 @@ export interface DeleteComponentTypeCommandOutput extends DeleteComponentTypeRes * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class DeleteComponentTypeCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/DeleteEntityCommand.ts b/clients/client-iottwinmaker/src/commands/DeleteEntityCommand.ts index 19e96a272cf5c..78ec656b4fcb6 100644 --- a/clients/client-iottwinmaker/src/commands/DeleteEntityCommand.ts +++ b/clients/client-iottwinmaker/src/commands/DeleteEntityCommand.ts @@ -72,6 +72,7 @@ export interface DeleteEntityCommandOutput extends DeleteEntityResponse, __Metad * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class DeleteEntityCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/DeleteSceneCommand.ts b/clients/client-iottwinmaker/src/commands/DeleteSceneCommand.ts index 63ffc3dd90131..19c0a823eac0e 100644 --- a/clients/client-iottwinmaker/src/commands/DeleteSceneCommand.ts +++ b/clients/client-iottwinmaker/src/commands/DeleteSceneCommand.ts @@ -69,6 +69,7 @@ export interface DeleteSceneCommandOutput extends DeleteSceneResponse, __Metadat * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class DeleteSceneCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/DeleteSyncJobCommand.ts b/clients/client-iottwinmaker/src/commands/DeleteSyncJobCommand.ts index 640a4e7e39335..98ec91c37f00f 100644 --- a/clients/client-iottwinmaker/src/commands/DeleteSyncJobCommand.ts +++ b/clients/client-iottwinmaker/src/commands/DeleteSyncJobCommand.ts @@ -74,6 +74,7 @@ export interface DeleteSyncJobCommandOutput extends DeleteSyncJobResponse, __Met * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class DeleteSyncJobCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/DeleteWorkspaceCommand.ts b/clients/client-iottwinmaker/src/commands/DeleteWorkspaceCommand.ts index a0c0a313e1512..2770b7ed72573 100644 --- a/clients/client-iottwinmaker/src/commands/DeleteWorkspaceCommand.ts +++ b/clients/client-iottwinmaker/src/commands/DeleteWorkspaceCommand.ts @@ -70,6 +70,7 @@ export interface DeleteWorkspaceCommandOutput extends DeleteWorkspaceResponse, _ * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class DeleteWorkspaceCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/ExecuteQueryCommand.ts b/clients/client-iottwinmaker/src/commands/ExecuteQueryCommand.ts index 0bb496c8f2477..fd395535913f4 100644 --- a/clients/client-iottwinmaker/src/commands/ExecuteQueryCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ExecuteQueryCommand.ts @@ -94,6 +94,7 @@ export interface ExecuteQueryCommandOutput extends ExecuteQueryResponse, __Metad * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class ExecuteQueryCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/GetComponentTypeCommand.ts b/clients/client-iottwinmaker/src/commands/GetComponentTypeCommand.ts index ccc26b615cb65..9c5a22d8de6e6 100644 --- a/clients/client-iottwinmaker/src/commands/GetComponentTypeCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetComponentTypeCommand.ts @@ -190,6 +190,7 @@ export interface GetComponentTypeCommandOutput extends GetComponentTypeResponse, * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class GetComponentTypeCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/GetEntityCommand.ts b/clients/client-iottwinmaker/src/commands/GetEntityCommand.ts index 528c705af5bf5..b900c6053d1ef 100644 --- a/clients/client-iottwinmaker/src/commands/GetEntityCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetEntityCommand.ts @@ -208,6 +208,7 @@ export interface GetEntityCommandOutput extends GetEntityResponse, __MetadataBea * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class GetEntityCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/GetMetadataTransferJobCommand.ts b/clients/client-iottwinmaker/src/commands/GetMetadataTransferJobCommand.ts index 45e18fc1f1bf4..c9abee8809285 100644 --- a/clients/client-iottwinmaker/src/commands/GetMetadataTransferJobCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetMetadataTransferJobCommand.ts @@ -138,6 +138,7 @@ export interface GetMetadataTransferJobCommandOutput extends GetMetadataTransfer * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class GetMetadataTransferJobCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/GetPricingPlanCommand.ts b/clients/client-iottwinmaker/src/commands/GetPricingPlanCommand.ts index af5b5c025402f..7bea1f4e1cb93 100644 --- a/clients/client-iottwinmaker/src/commands/GetPricingPlanCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetPricingPlanCommand.ts @@ -90,6 +90,7 @@ export interface GetPricingPlanCommandOutput extends GetPricingPlanResponse, __M * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class GetPricingPlanCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/GetPropertyValueCommand.ts b/clients/client-iottwinmaker/src/commands/GetPropertyValueCommand.ts index 4108b8b800bef..ee69c2286392e 100644 --- a/clients/client-iottwinmaker/src/commands/GetPropertyValueCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetPropertyValueCommand.ts @@ -192,6 +192,7 @@ export interface GetPropertyValueCommandOutput extends GetPropertyValueResponse, * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class GetPropertyValueCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/GetPropertyValueHistoryCommand.ts b/clients/client-iottwinmaker/src/commands/GetPropertyValueHistoryCommand.ts index 233a54ba2d491..2b7981921d50d 100644 --- a/clients/client-iottwinmaker/src/commands/GetPropertyValueHistoryCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetPropertyValueHistoryCommand.ts @@ -193,6 +193,7 @@ export interface GetPropertyValueHistoryCommandOutput extends GetPropertyValueHi * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class GetPropertyValueHistoryCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/GetSceneCommand.ts b/clients/client-iottwinmaker/src/commands/GetSceneCommand.ts index 10a138400aaaf..9ca6fb0b9cb1e 100644 --- a/clients/client-iottwinmaker/src/commands/GetSceneCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetSceneCommand.ts @@ -90,6 +90,7 @@ export interface GetSceneCommandOutput extends GetSceneResponse, __MetadataBeare * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class GetSceneCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/GetSyncJobCommand.ts b/clients/client-iottwinmaker/src/commands/GetSyncJobCommand.ts index 7baf167aadfa8..825c83e2478ad 100644 --- a/clients/client-iottwinmaker/src/commands/GetSyncJobCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetSyncJobCommand.ts @@ -86,6 +86,7 @@ export interface GetSyncJobCommandOutput extends GetSyncJobResponse, __MetadataB * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class GetSyncJobCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/GetWorkspaceCommand.ts b/clients/client-iottwinmaker/src/commands/GetWorkspaceCommand.ts index a688684dc34ab..7131924541e55 100644 --- a/clients/client-iottwinmaker/src/commands/GetWorkspaceCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetWorkspaceCommand.ts @@ -79,6 +79,7 @@ export interface GetWorkspaceCommandOutput extends GetWorkspaceResponse, __Metad * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class GetWorkspaceCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/ListComponentTypesCommand.ts b/clients/client-iottwinmaker/src/commands/ListComponentTypesCommand.ts index f4eb2c7b0e956..084a7b70d3a98 100644 --- a/clients/client-iottwinmaker/src/commands/ListComponentTypesCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListComponentTypesCommand.ts @@ -95,6 +95,7 @@ export interface ListComponentTypesCommandOutput extends ListComponentTypesRespo * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class ListComponentTypesCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/ListComponentsCommand.ts b/clients/client-iottwinmaker/src/commands/ListComponentsCommand.ts index cd5f724ec1788..4a85aaa34230a 100644 --- a/clients/client-iottwinmaker/src/commands/ListComponentsCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListComponentsCommand.ts @@ -100,6 +100,7 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class ListComponentsCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/ListEntitiesCommand.ts b/clients/client-iottwinmaker/src/commands/ListEntitiesCommand.ts index 551a2d5e11c0e..748d95b7ec2ad 100644 --- a/clients/client-iottwinmaker/src/commands/ListEntitiesCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListEntitiesCommand.ts @@ -95,6 +95,7 @@ export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __Metad * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class ListEntitiesCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/ListMetadataTransferJobsCommand.ts b/clients/client-iottwinmaker/src/commands/ListMetadataTransferJobsCommand.ts index 362836fd46f76..a7da04f01bde0 100644 --- a/clients/client-iottwinmaker/src/commands/ListMetadataTransferJobsCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListMetadataTransferJobsCommand.ts @@ -98,6 +98,7 @@ export interface ListMetadataTransferJobsCommandOutput extends ListMetadataTrans * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class ListMetadataTransferJobsCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/ListPropertiesCommand.ts b/clients/client-iottwinmaker/src/commands/ListPropertiesCommand.ts index 64b0f29f09d40..63fe4a74a522f 100644 --- a/clients/client-iottwinmaker/src/commands/ListPropertiesCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListPropertiesCommand.ts @@ -149,6 +149,7 @@ export interface ListPropertiesCommandOutput extends ListPropertiesResponse, __M * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class ListPropertiesCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/ListScenesCommand.ts b/clients/client-iottwinmaker/src/commands/ListScenesCommand.ts index e2e9362172c97..0e3592bed5cf0 100644 --- a/clients/client-iottwinmaker/src/commands/ListScenesCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListScenesCommand.ts @@ -79,6 +79,7 @@ export interface ListScenesCommandOutput extends ListScenesResponse, __MetadataB * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class ListScenesCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/ListSyncJobsCommand.ts b/clients/client-iottwinmaker/src/commands/ListSyncJobsCommand.ts index c9cdcd03340e3..2742c9bef4ee2 100644 --- a/clients/client-iottwinmaker/src/commands/ListSyncJobsCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListSyncJobsCommand.ts @@ -88,6 +88,7 @@ export interface ListSyncJobsCommandOutput extends ListSyncJobsResponse, __Metad * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class ListSyncJobsCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/ListSyncResourcesCommand.ts b/clients/client-iottwinmaker/src/commands/ListSyncResourcesCommand.ts index a7e9f0c27ad2b..88aeb5705dbe7 100644 --- a/clients/client-iottwinmaker/src/commands/ListSyncResourcesCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListSyncResourcesCommand.ts @@ -96,6 +96,7 @@ export interface ListSyncResourcesCommandOutput extends ListSyncResourcesRespons * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class ListSyncResourcesCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/ListTagsForResourceCommand.ts b/clients/client-iottwinmaker/src/commands/ListTagsForResourceCommand.ts index 74497c7ee8ec7..783716730301a 100644 --- a/clients/client-iottwinmaker/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/ListWorkspacesCommand.ts b/clients/client-iottwinmaker/src/commands/ListWorkspacesCommand.ts index dbecddddddf27..9dff97bbfcbf2 100644 --- a/clients/client-iottwinmaker/src/commands/ListWorkspacesCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListWorkspacesCommand.ts @@ -80,6 +80,7 @@ export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __M * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class ListWorkspacesCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/TagResourceCommand.ts b/clients/client-iottwinmaker/src/commands/TagResourceCommand.ts index b09e05b4663cb..74790718b738a 100644 --- a/clients/client-iottwinmaker/src/commands/TagResourceCommand.ts +++ b/clients/client-iottwinmaker/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/UntagResourceCommand.ts b/clients/client-iottwinmaker/src/commands/UntagResourceCommand.ts index 6a727bb5049cd..deeb550a7e1a9 100644 --- a/clients/client-iottwinmaker/src/commands/UntagResourceCommand.ts +++ b/clients/client-iottwinmaker/src/commands/UntagResourceCommand.ts @@ -62,6 +62,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/UpdateComponentTypeCommand.ts b/clients/client-iottwinmaker/src/commands/UpdateComponentTypeCommand.ts index be750e0dd89f3..7bdd099546671 100644 --- a/clients/client-iottwinmaker/src/commands/UpdateComponentTypeCommand.ts +++ b/clients/client-iottwinmaker/src/commands/UpdateComponentTypeCommand.ts @@ -176,6 +176,7 @@ export interface UpdateComponentTypeCommandOutput extends UpdateComponentTypeRes * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class UpdateComponentTypeCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/UpdateEntityCommand.ts b/clients/client-iottwinmaker/src/commands/UpdateEntityCommand.ts index a1b0a451bc32f..575fed30d3f70 100644 --- a/clients/client-iottwinmaker/src/commands/UpdateEntityCommand.ts +++ b/clients/client-iottwinmaker/src/commands/UpdateEntityCommand.ts @@ -203,6 +203,7 @@ export interface UpdateEntityCommandOutput extends UpdateEntityResponse, __Metad * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class UpdateEntityCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/UpdatePricingPlanCommand.ts b/clients/client-iottwinmaker/src/commands/UpdatePricingPlanCommand.ts index 46b0c521780e8..4d1cd3ab7b50b 100644 --- a/clients/client-iottwinmaker/src/commands/UpdatePricingPlanCommand.ts +++ b/clients/client-iottwinmaker/src/commands/UpdatePricingPlanCommand.ts @@ -95,6 +95,7 @@ export interface UpdatePricingPlanCommandOutput extends UpdatePricingPlanRespons * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class UpdatePricingPlanCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/UpdateSceneCommand.ts b/clients/client-iottwinmaker/src/commands/UpdateSceneCommand.ts index 04570a201de97..bd6cd27298f8f 100644 --- a/clients/client-iottwinmaker/src/commands/UpdateSceneCommand.ts +++ b/clients/client-iottwinmaker/src/commands/UpdateSceneCommand.ts @@ -79,6 +79,7 @@ export interface UpdateSceneCommandOutput extends UpdateSceneResponse, __Metadat * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class UpdateSceneCommand extends $Command diff --git a/clients/client-iottwinmaker/src/commands/UpdateWorkspaceCommand.ts b/clients/client-iottwinmaker/src/commands/UpdateWorkspaceCommand.ts index b606af58eaa61..2ac886186e107 100644 --- a/clients/client-iottwinmaker/src/commands/UpdateWorkspaceCommand.ts +++ b/clients/client-iottwinmaker/src/commands/UpdateWorkspaceCommand.ts @@ -76,6 +76,7 @@ export interface UpdateWorkspaceCommandOutput extends UpdateWorkspaceResponse, _ * @throws {@link IoTTwinMakerServiceException} *

Base exception class for all service exceptions from IoTTwinMaker service.

* + * * @public */ export class UpdateWorkspaceCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/CreateEncoderConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/CreateEncoderConfigurationCommand.ts index ac077470d9980..6ea4705ad439b 100644 --- a/clients/client-ivs-realtime/src/commands/CreateEncoderConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/CreateEncoderConfigurationCommand.ts @@ -97,6 +97,7 @@ export interface CreateEncoderConfigurationCommandOutput extends CreateEncoderCo * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class CreateEncoderConfigurationCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/CreateIngestConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/CreateIngestConfigurationCommand.ts index 98c067256684a..72c6bf3a76b84 100644 --- a/clients/client-ivs-realtime/src/commands/CreateIngestConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/CreateIngestConfigurationCommand.ts @@ -96,6 +96,7 @@ export interface CreateIngestConfigurationCommandOutput extends CreateIngestConf * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class CreateIngestConfigurationCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/CreateParticipantTokenCommand.ts b/clients/client-ivs-realtime/src/commands/CreateParticipantTokenCommand.ts index 9fbb3f59779dd..e66ec4e473455 100644 --- a/clients/client-ivs-realtime/src/commands/CreateParticipantTokenCommand.ts +++ b/clients/client-ivs-realtime/src/commands/CreateParticipantTokenCommand.ts @@ -98,6 +98,7 @@ export interface CreateParticipantTokenCommandOutput extends CreateParticipantTo * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class CreateParticipantTokenCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/CreateStageCommand.ts b/clients/client-ivs-realtime/src/commands/CreateStageCommand.ts index f574c73a4ea7a..8e855eb35dc41 100644 --- a/clients/client-ivs-realtime/src/commands/CreateStageCommand.ts +++ b/clients/client-ivs-realtime/src/commands/CreateStageCommand.ts @@ -144,6 +144,7 @@ export interface CreateStageCommandOutput extends CreateStageResponse, __Metadat * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class CreateStageCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/CreateStorageConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/CreateStorageConfigurationCommand.ts index 8249a0c109606..dc3ef5e3a70f4 100644 --- a/clients/client-ivs-realtime/src/commands/CreateStorageConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/CreateStorageConfigurationCommand.ts @@ -93,6 +93,7 @@ export interface CreateStorageConfigurationCommandOutput extends CreateStorageCo * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class CreateStorageConfigurationCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/DeleteEncoderConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/DeleteEncoderConfigurationCommand.ts index 0c89aacf3c4c2..2321b3d0ea6f5 100644 --- a/clients/client-ivs-realtime/src/commands/DeleteEncoderConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/DeleteEncoderConfigurationCommand.ts @@ -72,6 +72,7 @@ export interface DeleteEncoderConfigurationCommandOutput extends DeleteEncoderCo * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class DeleteEncoderConfigurationCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/DeleteIngestConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/DeleteIngestConfigurationCommand.ts index 0e536fdadedbd..8845b09b90fad 100644 --- a/clients/client-ivs-realtime/src/commands/DeleteIngestConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/DeleteIngestConfigurationCommand.ts @@ -69,6 +69,7 @@ export interface DeleteIngestConfigurationCommandOutput extends DeleteIngestConf * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class DeleteIngestConfigurationCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/DeletePublicKeyCommand.ts b/clients/client-ivs-realtime/src/commands/DeletePublicKeyCommand.ts index bd93415449ad2..7fc76f70fd716 100644 --- a/clients/client-ivs-realtime/src/commands/DeletePublicKeyCommand.ts +++ b/clients/client-ivs-realtime/src/commands/DeletePublicKeyCommand.ts @@ -70,6 +70,7 @@ export interface DeletePublicKeyCommandOutput extends DeletePublicKeyResponse, _ * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class DeletePublicKeyCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/DeleteStageCommand.ts b/clients/client-ivs-realtime/src/commands/DeleteStageCommand.ts index c68205f92f116..1edfb90bac85d 100644 --- a/clients/client-ivs-realtime/src/commands/DeleteStageCommand.ts +++ b/clients/client-ivs-realtime/src/commands/DeleteStageCommand.ts @@ -70,6 +70,7 @@ export interface DeleteStageCommandOutput extends DeleteStageResponse, __Metadat * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class DeleteStageCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/DeleteStorageConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/DeleteStorageConfigurationCommand.ts index 33850c92e7d49..e8cf3106e989c 100644 --- a/clients/client-ivs-realtime/src/commands/DeleteStorageConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/DeleteStorageConfigurationCommand.ts @@ -74,6 +74,7 @@ export interface DeleteStorageConfigurationCommandOutput extends DeleteStorageCo * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class DeleteStorageConfigurationCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/DisconnectParticipantCommand.ts b/clients/client-ivs-realtime/src/commands/DisconnectParticipantCommand.ts index e0e565f8904a1..7ff61f0a759b9 100644 --- a/clients/client-ivs-realtime/src/commands/DisconnectParticipantCommand.ts +++ b/clients/client-ivs-realtime/src/commands/DisconnectParticipantCommand.ts @@ -69,6 +69,7 @@ export interface DisconnectParticipantCommandOutput extends DisconnectParticipan * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class DisconnectParticipantCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/GetCompositionCommand.ts b/clients/client-ivs-realtime/src/commands/GetCompositionCommand.ts index 5af538a8fb31b..4af4d7308cbaf 100644 --- a/clients/client-ivs-realtime/src/commands/GetCompositionCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetCompositionCommand.ts @@ -143,6 +143,7 @@ export interface GetCompositionCommandOutput extends GetCompositionResponse, __M * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class GetCompositionCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/GetEncoderConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/GetEncoderConfigurationCommand.ts index 28b2aedc1bf4e..19c4dd389d2db 100644 --- a/clients/client-ivs-realtime/src/commands/GetEncoderConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetEncoderConfigurationCommand.ts @@ -85,6 +85,7 @@ export interface GetEncoderConfigurationCommandOutput extends GetEncoderConfigur * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class GetEncoderConfigurationCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/GetIngestConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/GetIngestConfigurationCommand.ts index dae1dde74b08a..ec176bcf07564 100644 --- a/clients/client-ivs-realtime/src/commands/GetIngestConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetIngestConfigurationCommand.ts @@ -83,6 +83,7 @@ export interface GetIngestConfigurationCommandOutput extends GetIngestConfigurat * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class GetIngestConfigurationCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/GetParticipantCommand.ts b/clients/client-ivs-realtime/src/commands/GetParticipantCommand.ts index 08874defb2072..2e97d299ae85f 100644 --- a/clients/client-ivs-realtime/src/commands/GetParticipantCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetParticipantCommand.ts @@ -85,6 +85,7 @@ export interface GetParticipantCommandOutput extends GetParticipantResponse, __M * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class GetParticipantCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/GetPublicKeyCommand.ts b/clients/client-ivs-realtime/src/commands/GetPublicKeyCommand.ts index d43971a8215ab..4df02600dd431 100644 --- a/clients/client-ivs-realtime/src/commands/GetPublicKeyCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetPublicKeyCommand.ts @@ -72,6 +72,7 @@ export interface GetPublicKeyCommandOutput extends GetPublicKeyResponse, __Metad * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class GetPublicKeyCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/GetStageCommand.ts b/clients/client-ivs-realtime/src/commands/GetStageCommand.ts index 06db94baef725..a07648af8a181 100644 --- a/clients/client-ivs-realtime/src/commands/GetStageCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetStageCommand.ts @@ -94,6 +94,7 @@ export interface GetStageCommandOutput extends GetStageResponse, __MetadataBeare * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class GetStageCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/GetStageSessionCommand.ts b/clients/client-ivs-realtime/src/commands/GetStageSessionCommand.ts index 8b9ba1feafb3f..ea8015c31aaa4 100644 --- a/clients/client-ivs-realtime/src/commands/GetStageSessionCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetStageSessionCommand.ts @@ -69,6 +69,7 @@ export interface GetStageSessionCommandOutput extends GetStageSessionResponse, _ * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class GetStageSessionCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/GetStorageConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/GetStorageConfigurationCommand.ts index a578eb3ce3e4d..e961d8cd18f9e 100644 --- a/clients/client-ivs-realtime/src/commands/GetStorageConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetStorageConfigurationCommand.ts @@ -82,6 +82,7 @@ export interface GetStorageConfigurationCommandOutput extends GetStorageConfigur * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class GetStorageConfigurationCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/ImportPublicKeyCommand.ts b/clients/client-ivs-realtime/src/commands/ImportPublicKeyCommand.ts index 4d78e2e7872bc..038b7333122ec 100644 --- a/clients/client-ivs-realtime/src/commands/ImportPublicKeyCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ImportPublicKeyCommand.ts @@ -82,6 +82,7 @@ export interface ImportPublicKeyCommandOutput extends ImportPublicKeyResponse, _ * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class ImportPublicKeyCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/ListCompositionsCommand.ts b/clients/client-ivs-realtime/src/commands/ListCompositionsCommand.ts index cf704ec8fac5b..8e8ed87c467ae 100644 --- a/clients/client-ivs-realtime/src/commands/ListCompositionsCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListCompositionsCommand.ts @@ -94,6 +94,7 @@ export interface ListCompositionsCommandOutput extends ListCompositionsResponse, * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class ListCompositionsCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/ListEncoderConfigurationsCommand.ts b/clients/client-ivs-realtime/src/commands/ListEncoderConfigurationsCommand.ts index 8114e38cecfa9..ddbfc82316ae2 100644 --- a/clients/client-ivs-realtime/src/commands/ListEncoderConfigurationsCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListEncoderConfigurationsCommand.ts @@ -81,6 +81,7 @@ export interface ListEncoderConfigurationsCommandOutput extends ListEncoderConfi * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class ListEncoderConfigurationsCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/ListIngestConfigurationsCommand.ts b/clients/client-ivs-realtime/src/commands/ListIngestConfigurationsCommand.ts index 8b6d682033966..f529b980ef461 100644 --- a/clients/client-ivs-realtime/src/commands/ListIngestConfigurationsCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListIngestConfigurationsCommand.ts @@ -75,6 +75,7 @@ export interface ListIngestConfigurationsCommandOutput extends ListIngestConfigu * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class ListIngestConfigurationsCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/ListParticipantEventsCommand.ts b/clients/client-ivs-realtime/src/commands/ListParticipantEventsCommand.ts index bb0b11fc1c52f..2ae5ec9bdb21c 100644 --- a/clients/client-ivs-realtime/src/commands/ListParticipantEventsCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListParticipantEventsCommand.ts @@ -75,6 +75,7 @@ export interface ListParticipantEventsCommandOutput extends ListParticipantEvent * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class ListParticipantEventsCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/ListParticipantsCommand.ts b/clients/client-ivs-realtime/src/commands/ListParticipantsCommand.ts index baf6ce97f0079..2398f21a00b8f 100644 --- a/clients/client-ivs-realtime/src/commands/ListParticipantsCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListParticipantsCommand.ts @@ -78,6 +78,7 @@ export interface ListParticipantsCommandOutput extends ListParticipantsResponse, * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class ListParticipantsCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/ListPublicKeysCommand.ts b/clients/client-ivs-realtime/src/commands/ListPublicKeysCommand.ts index b8e81a3a3ef93..04684c1d44c37 100644 --- a/clients/client-ivs-realtime/src/commands/ListPublicKeysCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListPublicKeysCommand.ts @@ -71,6 +71,7 @@ export interface ListPublicKeysCommandOutput extends ListPublicKeysResponse, __M * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class ListPublicKeysCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/ListStageSessionsCommand.ts b/clients/client-ivs-realtime/src/commands/ListStageSessionsCommand.ts index 5e6fc01d2522e..301ffcc537e24 100644 --- a/clients/client-ivs-realtime/src/commands/ListStageSessionsCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListStageSessionsCommand.ts @@ -70,6 +70,7 @@ export interface ListStageSessionsCommandOutput extends ListStageSessionsRespons * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class ListStageSessionsCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/ListStagesCommand.ts b/clients/client-ivs-realtime/src/commands/ListStagesCommand.ts index a51af54bff2ff..92225d73f6cb4 100644 --- a/clients/client-ivs-realtime/src/commands/ListStagesCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListStagesCommand.ts @@ -76,6 +76,7 @@ export interface ListStagesCommandOutput extends ListStagesResponse, __MetadataB * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class ListStagesCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/ListStorageConfigurationsCommand.ts b/clients/client-ivs-realtime/src/commands/ListStorageConfigurationsCommand.ts index 0c91ea263d5c0..d342f6c751dfa 100644 --- a/clients/client-ivs-realtime/src/commands/ListStorageConfigurationsCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListStorageConfigurationsCommand.ts @@ -84,6 +84,7 @@ export interface ListStorageConfigurationsCommandOutput extends ListStorageConfi * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class ListStorageConfigurationsCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/ListTagsForResourceCommand.ts b/clients/client-ivs-realtime/src/commands/ListTagsForResourceCommand.ts index 0b819e73b6893..12dd68b80634d 100644 --- a/clients/client-ivs-realtime/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/StartCompositionCommand.ts b/clients/client-ivs-realtime/src/commands/StartCompositionCommand.ts index add1534d2b559..efaf9a22aa967 100644 --- a/clients/client-ivs-realtime/src/commands/StartCompositionCommand.ts +++ b/clients/client-ivs-realtime/src/commands/StartCompositionCommand.ts @@ -223,6 +223,7 @@ export interface StartCompositionCommandOutput extends StartCompositionResponse, * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class StartCompositionCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/StopCompositionCommand.ts b/clients/client-ivs-realtime/src/commands/StopCompositionCommand.ts index 465479fb5c36a..a0748f625ff93 100644 --- a/clients/client-ivs-realtime/src/commands/StopCompositionCommand.ts +++ b/clients/client-ivs-realtime/src/commands/StopCompositionCommand.ts @@ -72,6 +72,7 @@ export interface StopCompositionCommandOutput extends StopCompositionResponse, _ * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class StopCompositionCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/TagResourceCommand.ts b/clients/client-ivs-realtime/src/commands/TagResourceCommand.ts index 51889f84d8059..a61a2e85c3f29 100644 --- a/clients/client-ivs-realtime/src/commands/TagResourceCommand.ts +++ b/clients/client-ivs-realtime/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/UntagResourceCommand.ts b/clients/client-ivs-realtime/src/commands/UntagResourceCommand.ts index 8a72e5907b126..7e35e5fea24bd 100644 --- a/clients/client-ivs-realtime/src/commands/UntagResourceCommand.ts +++ b/clients/client-ivs-realtime/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/UpdateIngestConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/UpdateIngestConfigurationCommand.ts index b53d87582bfff..56333b5acbc0f 100644 --- a/clients/client-ivs-realtime/src/commands/UpdateIngestConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/UpdateIngestConfigurationCommand.ts @@ -90,6 +90,7 @@ export interface UpdateIngestConfigurationCommandOutput extends UpdateIngestConf * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class UpdateIngestConfigurationCommand extends $Command diff --git a/clients/client-ivs-realtime/src/commands/UpdateStageCommand.ts b/clients/client-ivs-realtime/src/commands/UpdateStageCommand.ts index f4f93124a630c..fe8824a6e92fe 100644 --- a/clients/client-ivs-realtime/src/commands/UpdateStageCommand.ts +++ b/clients/client-ivs-realtime/src/commands/UpdateStageCommand.ts @@ -121,6 +121,7 @@ export interface UpdateStageCommandOutput extends UpdateStageResponse, __Metadat * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* + * * @public */ export class UpdateStageCommand extends $Command diff --git a/clients/client-ivs/src/commands/BatchGetChannelCommand.ts b/clients/client-ivs/src/commands/BatchGetChannelCommand.ts index def219d342016..e494b366934f3 100644 --- a/clients/client-ivs/src/commands/BatchGetChannelCommand.ts +++ b/clients/client-ivs/src/commands/BatchGetChannelCommand.ts @@ -95,6 +95,7 @@ export interface BatchGetChannelCommandOutput extends BatchGetChannelResponse, _ * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class BatchGetChannelCommand extends $Command diff --git a/clients/client-ivs/src/commands/BatchGetStreamKeyCommand.ts b/clients/client-ivs/src/commands/BatchGetStreamKeyCommand.ts index 8857deda6dfc9..7150358e03aa6 100644 --- a/clients/client-ivs/src/commands/BatchGetStreamKeyCommand.ts +++ b/clients/client-ivs/src/commands/BatchGetStreamKeyCommand.ts @@ -77,6 +77,7 @@ export interface BatchGetStreamKeyCommandOutput extends BatchGetStreamKeyRespons * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class BatchGetStreamKeyCommand extends $Command diff --git a/clients/client-ivs/src/commands/BatchStartViewerSessionRevocationCommand.ts b/clients/client-ivs/src/commands/BatchStartViewerSessionRevocationCommand.ts index 6f2c29b724a84..920c43eeb0942 100644 --- a/clients/client-ivs/src/commands/BatchStartViewerSessionRevocationCommand.ts +++ b/clients/client-ivs/src/commands/BatchStartViewerSessionRevocationCommand.ts @@ -89,6 +89,7 @@ export interface BatchStartViewerSessionRevocationCommandOutput * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class BatchStartViewerSessionRevocationCommand extends $Command diff --git a/clients/client-ivs/src/commands/CreateChannelCommand.ts b/clients/client-ivs/src/commands/CreateChannelCommand.ts index bd9f8f36316ca..c763ca32e3f13 100644 --- a/clients/client-ivs/src/commands/CreateChannelCommand.ts +++ b/clients/client-ivs/src/commands/CreateChannelCommand.ts @@ -123,6 +123,7 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class CreateChannelCommand extends $Command diff --git a/clients/client-ivs/src/commands/CreatePlaybackRestrictionPolicyCommand.ts b/clients/client-ivs/src/commands/CreatePlaybackRestrictionPolicyCommand.ts index 41b46a40701d8..02dc5801cfa74 100644 --- a/clients/client-ivs/src/commands/CreatePlaybackRestrictionPolicyCommand.ts +++ b/clients/client-ivs/src/commands/CreatePlaybackRestrictionPolicyCommand.ts @@ -99,6 +99,7 @@ export interface CreatePlaybackRestrictionPolicyCommandOutput * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class CreatePlaybackRestrictionPolicyCommand extends $Command diff --git a/clients/client-ivs/src/commands/CreateRecordingConfigurationCommand.ts b/clients/client-ivs/src/commands/CreateRecordingConfigurationCommand.ts index ed6e643df5eb4..767e0a2928d21 100644 --- a/clients/client-ivs/src/commands/CreateRecordingConfigurationCommand.ts +++ b/clients/client-ivs/src/commands/CreateRecordingConfigurationCommand.ts @@ -139,6 +139,7 @@ export interface CreateRecordingConfigurationCommandOutput * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class CreateRecordingConfigurationCommand extends $Command diff --git a/clients/client-ivs/src/commands/CreateStreamKeyCommand.ts b/clients/client-ivs/src/commands/CreateStreamKeyCommand.ts index 56e34530514c6..4e417038ac2b3 100644 --- a/clients/client-ivs/src/commands/CreateStreamKeyCommand.ts +++ b/clients/client-ivs/src/commands/CreateStreamKeyCommand.ts @@ -87,6 +87,7 @@ export interface CreateStreamKeyCommandOutput extends CreateStreamKeyResponse, _ * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class CreateStreamKeyCommand extends $Command diff --git a/clients/client-ivs/src/commands/DeleteChannelCommand.ts b/clients/client-ivs/src/commands/DeleteChannelCommand.ts index 3a51f80c3a6b1..8a4d13c10e0a9 100644 --- a/clients/client-ivs/src/commands/DeleteChannelCommand.ts +++ b/clients/client-ivs/src/commands/DeleteChannelCommand.ts @@ -73,6 +73,7 @@ export interface DeleteChannelCommandOutput extends __MetadataBearer {} * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class DeleteChannelCommand extends $Command diff --git a/clients/client-ivs/src/commands/DeletePlaybackKeyPairCommand.ts b/clients/client-ivs/src/commands/DeletePlaybackKeyPairCommand.ts index 82493564116a9..ae90cec1fd6fc 100644 --- a/clients/client-ivs/src/commands/DeletePlaybackKeyPairCommand.ts +++ b/clients/client-ivs/src/commands/DeletePlaybackKeyPairCommand.ts @@ -67,6 +67,7 @@ export interface DeletePlaybackKeyPairCommandOutput extends DeletePlaybackKeyPai * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class DeletePlaybackKeyPairCommand extends $Command diff --git a/clients/client-ivs/src/commands/DeletePlaybackRestrictionPolicyCommand.ts b/clients/client-ivs/src/commands/DeletePlaybackRestrictionPolicyCommand.ts index 5415f44dfef01..a298f6f69d7a3 100644 --- a/clients/client-ivs/src/commands/DeletePlaybackRestrictionPolicyCommand.ts +++ b/clients/client-ivs/src/commands/DeletePlaybackRestrictionPolicyCommand.ts @@ -71,6 +71,7 @@ export interface DeletePlaybackRestrictionPolicyCommandOutput extends __Metadata * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class DeletePlaybackRestrictionPolicyCommand extends $Command diff --git a/clients/client-ivs/src/commands/DeleteRecordingConfigurationCommand.ts b/clients/client-ivs/src/commands/DeleteRecordingConfigurationCommand.ts index 74642d0043896..556241e21e55f 100644 --- a/clients/client-ivs/src/commands/DeleteRecordingConfigurationCommand.ts +++ b/clients/client-ivs/src/commands/DeleteRecordingConfigurationCommand.ts @@ -76,6 +76,7 @@ export interface DeleteRecordingConfigurationCommandOutput extends __MetadataBea * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class DeleteRecordingConfigurationCommand extends $Command diff --git a/clients/client-ivs/src/commands/DeleteStreamKeyCommand.ts b/clients/client-ivs/src/commands/DeleteStreamKeyCommand.ts index 4d8dd3011a6ea..b7231545eab57 100644 --- a/clients/client-ivs/src/commands/DeleteStreamKeyCommand.ts +++ b/clients/client-ivs/src/commands/DeleteStreamKeyCommand.ts @@ -66,6 +66,7 @@ export interface DeleteStreamKeyCommandOutput extends __MetadataBearer {} * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class DeleteStreamKeyCommand extends $Command diff --git a/clients/client-ivs/src/commands/GetChannelCommand.ts b/clients/client-ivs/src/commands/GetChannelCommand.ts index 1a9ff8bbbef48..80b9913c6fc21 100644 --- a/clients/client-ivs/src/commands/GetChannelCommand.ts +++ b/clients/client-ivs/src/commands/GetChannelCommand.ts @@ -89,6 +89,7 @@ export interface GetChannelCommandOutput extends GetChannelResponse, __MetadataB * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class GetChannelCommand extends $Command diff --git a/clients/client-ivs/src/commands/GetPlaybackKeyPairCommand.ts b/clients/client-ivs/src/commands/GetPlaybackKeyPairCommand.ts index 71566cd8c96e2..a1b2e7b3aa55c 100644 --- a/clients/client-ivs/src/commands/GetPlaybackKeyPairCommand.ts +++ b/clients/client-ivs/src/commands/GetPlaybackKeyPairCommand.ts @@ -75,6 +75,7 @@ export interface GetPlaybackKeyPairCommandOutput extends GetPlaybackKeyPairRespo * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class GetPlaybackKeyPairCommand extends $Command diff --git a/clients/client-ivs/src/commands/GetPlaybackRestrictionPolicyCommand.ts b/clients/client-ivs/src/commands/GetPlaybackRestrictionPolicyCommand.ts index 99ec3f95c7fe1..d0aa7424167b1 100644 --- a/clients/client-ivs/src/commands/GetPlaybackRestrictionPolicyCommand.ts +++ b/clients/client-ivs/src/commands/GetPlaybackRestrictionPolicyCommand.ts @@ -85,6 +85,7 @@ export interface GetPlaybackRestrictionPolicyCommandOutput * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class GetPlaybackRestrictionPolicyCommand extends $Command diff --git a/clients/client-ivs/src/commands/GetRecordingConfigurationCommand.ts b/clients/client-ivs/src/commands/GetRecordingConfigurationCommand.ts index 7dda4e7459001..afb1d0d44a9fb 100644 --- a/clients/client-ivs/src/commands/GetRecordingConfigurationCommand.ts +++ b/clients/client-ivs/src/commands/GetRecordingConfigurationCommand.ts @@ -94,6 +94,7 @@ export interface GetRecordingConfigurationCommandOutput extends GetRecordingConf * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class GetRecordingConfigurationCommand extends $Command diff --git a/clients/client-ivs/src/commands/GetStreamCommand.ts b/clients/client-ivs/src/commands/GetStreamCommand.ts index 3eb511685bc54..4ed15cf32abb4 100644 --- a/clients/client-ivs/src/commands/GetStreamCommand.ts +++ b/clients/client-ivs/src/commands/GetStreamCommand.ts @@ -75,6 +75,7 @@ export interface GetStreamCommandOutput extends GetStreamResponse, __MetadataBea * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class GetStreamCommand extends $Command diff --git a/clients/client-ivs/src/commands/GetStreamKeyCommand.ts b/clients/client-ivs/src/commands/GetStreamKeyCommand.ts index 179555bca4380..f393a14d6f9c4 100644 --- a/clients/client-ivs/src/commands/GetStreamKeyCommand.ts +++ b/clients/client-ivs/src/commands/GetStreamKeyCommand.ts @@ -71,6 +71,7 @@ export interface GetStreamKeyCommandOutput extends GetStreamKeyResponse, __Metad * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class GetStreamKeyCommand extends $Command diff --git a/clients/client-ivs/src/commands/GetStreamSessionCommand.ts b/clients/client-ivs/src/commands/GetStreamSessionCommand.ts index cdb57133c6f57..c103864b5cc06 100644 --- a/clients/client-ivs/src/commands/GetStreamSessionCommand.ts +++ b/clients/client-ivs/src/commands/GetStreamSessionCommand.ts @@ -183,6 +183,7 @@ export interface GetStreamSessionCommandOutput extends GetStreamSessionResponse, * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class GetStreamSessionCommand extends $Command diff --git a/clients/client-ivs/src/commands/ImportPlaybackKeyPairCommand.ts b/clients/client-ivs/src/commands/ImportPlaybackKeyPairCommand.ts index e7a71daa55b96..a25bef8ce9369 100644 --- a/clients/client-ivs/src/commands/ImportPlaybackKeyPairCommand.ts +++ b/clients/client-ivs/src/commands/ImportPlaybackKeyPairCommand.ts @@ -85,6 +85,7 @@ export interface ImportPlaybackKeyPairCommandOutput extends ImportPlaybackKeyPai * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class ImportPlaybackKeyPairCommand extends $Command diff --git a/clients/client-ivs/src/commands/ListChannelsCommand.ts b/clients/client-ivs/src/commands/ListChannelsCommand.ts index 60cc2b3db9f68..d793450e4ab60 100644 --- a/clients/client-ivs/src/commands/ListChannelsCommand.ts +++ b/clients/client-ivs/src/commands/ListChannelsCommand.ts @@ -87,6 +87,7 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class ListChannelsCommand extends $Command diff --git a/clients/client-ivs/src/commands/ListPlaybackKeyPairsCommand.ts b/clients/client-ivs/src/commands/ListPlaybackKeyPairsCommand.ts index b077a82726cdf..3cb415d285986 100644 --- a/clients/client-ivs/src/commands/ListPlaybackKeyPairsCommand.ts +++ b/clients/client-ivs/src/commands/ListPlaybackKeyPairsCommand.ts @@ -72,6 +72,7 @@ export interface ListPlaybackKeyPairsCommandOutput extends ListPlaybackKeyPairsR * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class ListPlaybackKeyPairsCommand extends $Command diff --git a/clients/client-ivs/src/commands/ListPlaybackRestrictionPoliciesCommand.ts b/clients/client-ivs/src/commands/ListPlaybackRestrictionPoliciesCommand.ts index c8ac1569bd191..73e5b68232664 100644 --- a/clients/client-ivs/src/commands/ListPlaybackRestrictionPoliciesCommand.ts +++ b/clients/client-ivs/src/commands/ListPlaybackRestrictionPoliciesCommand.ts @@ -89,6 +89,7 @@ export interface ListPlaybackRestrictionPoliciesCommandOutput * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class ListPlaybackRestrictionPoliciesCommand extends $Command diff --git a/clients/client-ivs/src/commands/ListRecordingConfigurationsCommand.ts b/clients/client-ivs/src/commands/ListRecordingConfigurationsCommand.ts index 662ec543da2a4..88bfafe59d2a4 100644 --- a/clients/client-ivs/src/commands/ListRecordingConfigurationsCommand.ts +++ b/clients/client-ivs/src/commands/ListRecordingConfigurationsCommand.ts @@ -86,6 +86,7 @@ export interface ListRecordingConfigurationsCommandOutput * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class ListRecordingConfigurationsCommand extends $Command diff --git a/clients/client-ivs/src/commands/ListStreamKeysCommand.ts b/clients/client-ivs/src/commands/ListStreamKeysCommand.ts index 32d98ae081510..b2159d000db7e 100644 --- a/clients/client-ivs/src/commands/ListStreamKeysCommand.ts +++ b/clients/client-ivs/src/commands/ListStreamKeysCommand.ts @@ -75,6 +75,7 @@ export interface ListStreamKeysCommandOutput extends ListStreamKeysResponse, __M * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class ListStreamKeysCommand extends $Command diff --git a/clients/client-ivs/src/commands/ListStreamSessionsCommand.ts b/clients/client-ivs/src/commands/ListStreamSessionsCommand.ts index f429483e55917..74b33386578a1 100644 --- a/clients/client-ivs/src/commands/ListStreamSessionsCommand.ts +++ b/clients/client-ivs/src/commands/ListStreamSessionsCommand.ts @@ -75,6 +75,7 @@ export interface ListStreamSessionsCommandOutput extends ListStreamSessionsRespo * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class ListStreamSessionsCommand extends $Command diff --git a/clients/client-ivs/src/commands/ListStreamsCommand.ts b/clients/client-ivs/src/commands/ListStreamsCommand.ts index e9b6226ac3a29..3ff08aef5edfe 100644 --- a/clients/client-ivs/src/commands/ListStreamsCommand.ts +++ b/clients/client-ivs/src/commands/ListStreamsCommand.ts @@ -76,6 +76,7 @@ export interface ListStreamsCommandOutput extends ListStreamsResponse, __Metadat * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class ListStreamsCommand extends $Command diff --git a/clients/client-ivs/src/commands/ListTagsForResourceCommand.ts b/clients/client-ivs/src/commands/ListTagsForResourceCommand.ts index 97998cc6ca2c5..173edf3f61d27 100644 --- a/clients/client-ivs/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ivs/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-ivs/src/commands/PutMetadataCommand.ts b/clients/client-ivs/src/commands/PutMetadataCommand.ts index 507ae8f538ca7..75fa55dee728f 100644 --- a/clients/client-ivs/src/commands/PutMetadataCommand.ts +++ b/clients/client-ivs/src/commands/PutMetadataCommand.ts @@ -73,6 +73,7 @@ export interface PutMetadataCommandOutput extends __MetadataBearer {} * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class PutMetadataCommand extends $Command diff --git a/clients/client-ivs/src/commands/StartViewerSessionRevocationCommand.ts b/clients/client-ivs/src/commands/StartViewerSessionRevocationCommand.ts index e4f3f1cae34be..b84d8663e8ac7 100644 --- a/clients/client-ivs/src/commands/StartViewerSessionRevocationCommand.ts +++ b/clients/client-ivs/src/commands/StartViewerSessionRevocationCommand.ts @@ -82,6 +82,7 @@ export interface StartViewerSessionRevocationCommandOutput * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class StartViewerSessionRevocationCommand extends $Command diff --git a/clients/client-ivs/src/commands/StopStreamCommand.ts b/clients/client-ivs/src/commands/StopStreamCommand.ts index 3a6f6e348e2a5..88215173eb8e3 100644 --- a/clients/client-ivs/src/commands/StopStreamCommand.ts +++ b/clients/client-ivs/src/commands/StopStreamCommand.ts @@ -75,6 +75,7 @@ export interface StopStreamCommandOutput extends StopStreamResponse, __MetadataB * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class StopStreamCommand extends $Command diff --git a/clients/client-ivs/src/commands/TagResourceCommand.ts b/clients/client-ivs/src/commands/TagResourceCommand.ts index 497fb23bfd68a..5c33222a61f27 100644 --- a/clients/client-ivs/src/commands/TagResourceCommand.ts +++ b/clients/client-ivs/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-ivs/src/commands/UntagResourceCommand.ts b/clients/client-ivs/src/commands/UntagResourceCommand.ts index f57138d2528fd..d9b3a2d2eb116 100644 --- a/clients/client-ivs/src/commands/UntagResourceCommand.ts +++ b/clients/client-ivs/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-ivs/src/commands/UpdateChannelCommand.ts b/clients/client-ivs/src/commands/UpdateChannelCommand.ts index 9eeac73f001ee..5a469a2ed8aaa 100644 --- a/clients/client-ivs/src/commands/UpdateChannelCommand.ts +++ b/clients/client-ivs/src/commands/UpdateChannelCommand.ts @@ -115,6 +115,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class UpdateChannelCommand extends $Command diff --git a/clients/client-ivs/src/commands/UpdatePlaybackRestrictionPolicyCommand.ts b/clients/client-ivs/src/commands/UpdatePlaybackRestrictionPolicyCommand.ts index 82349d5ce33cf..1a7a209301a6a 100644 --- a/clients/client-ivs/src/commands/UpdatePlaybackRestrictionPolicyCommand.ts +++ b/clients/client-ivs/src/commands/UpdatePlaybackRestrictionPolicyCommand.ts @@ -96,6 +96,7 @@ export interface UpdatePlaybackRestrictionPolicyCommandOutput * @throws {@link IvsServiceException} *

Base exception class for all service exceptions from Ivs service.

* + * * @public */ export class UpdatePlaybackRestrictionPolicyCommand extends $Command diff --git a/clients/client-ivschat/src/commands/CreateChatTokenCommand.ts b/clients/client-ivschat/src/commands/CreateChatTokenCommand.ts index 5a98cc8c28632..44d0c11bb28ce 100644 --- a/clients/client-ivschat/src/commands/CreateChatTokenCommand.ts +++ b/clients/client-ivschat/src/commands/CreateChatTokenCommand.ts @@ -93,6 +93,7 @@ export interface CreateChatTokenCommandOutput extends CreateChatTokenResponse, _ * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class CreateChatTokenCommand extends $Command diff --git a/clients/client-ivschat/src/commands/CreateLoggingConfigurationCommand.ts b/clients/client-ivschat/src/commands/CreateLoggingConfigurationCommand.ts index 4b69331ae725e..56c59d587d263 100644 --- a/clients/client-ivschat/src/commands/CreateLoggingConfigurationCommand.ts +++ b/clients/client-ivschat/src/commands/CreateLoggingConfigurationCommand.ts @@ -107,6 +107,7 @@ export interface CreateLoggingConfigurationCommandOutput extends CreateLoggingCo * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class CreateLoggingConfigurationCommand extends $Command diff --git a/clients/client-ivschat/src/commands/CreateRoomCommand.ts b/clients/client-ivschat/src/commands/CreateRoomCommand.ts index 10afdf5b0f055..8b41886359bcf 100644 --- a/clients/client-ivschat/src/commands/CreateRoomCommand.ts +++ b/clients/client-ivschat/src/commands/CreateRoomCommand.ts @@ -101,6 +101,7 @@ export interface CreateRoomCommandOutput extends CreateRoomResponse, __MetadataB * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class CreateRoomCommand extends $Command diff --git a/clients/client-ivschat/src/commands/DeleteLoggingConfigurationCommand.ts b/clients/client-ivschat/src/commands/DeleteLoggingConfigurationCommand.ts index b64a8b5761267..55773753320f4 100644 --- a/clients/client-ivschat/src/commands/DeleteLoggingConfigurationCommand.ts +++ b/clients/client-ivschat/src/commands/DeleteLoggingConfigurationCommand.ts @@ -68,6 +68,7 @@ export interface DeleteLoggingConfigurationCommandOutput extends __MetadataBeare * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class DeleteLoggingConfigurationCommand extends $Command diff --git a/clients/client-ivschat/src/commands/DeleteMessageCommand.ts b/clients/client-ivschat/src/commands/DeleteMessageCommand.ts index 39d5db6b23332..944e53d44ad18 100644 --- a/clients/client-ivschat/src/commands/DeleteMessageCommand.ts +++ b/clients/client-ivschat/src/commands/DeleteMessageCommand.ts @@ -75,6 +75,7 @@ export interface DeleteMessageCommandOutput extends DeleteMessageResponse, __Met * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class DeleteMessageCommand extends $Command diff --git a/clients/client-ivschat/src/commands/DeleteRoomCommand.ts b/clients/client-ivschat/src/commands/DeleteRoomCommand.ts index 38e82b8b21704..dff23201fa453 100644 --- a/clients/client-ivschat/src/commands/DeleteRoomCommand.ts +++ b/clients/client-ivschat/src/commands/DeleteRoomCommand.ts @@ -65,6 +65,7 @@ export interface DeleteRoomCommandOutput extends __MetadataBearer {} * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class DeleteRoomCommand extends $Command diff --git a/clients/client-ivschat/src/commands/DisconnectUserCommand.ts b/clients/client-ivschat/src/commands/DisconnectUserCommand.ts index 0c13e6a9c9733..5c2cbcaa67677 100644 --- a/clients/client-ivschat/src/commands/DisconnectUserCommand.ts +++ b/clients/client-ivschat/src/commands/DisconnectUserCommand.ts @@ -76,6 +76,7 @@ export interface DisconnectUserCommandOutput extends DisconnectUserResponse, __M * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class DisconnectUserCommand extends $Command diff --git a/clients/client-ivschat/src/commands/GetLoggingConfigurationCommand.ts b/clients/client-ivschat/src/commands/GetLoggingConfigurationCommand.ts index 0ee918a2c14bb..5672688385007 100644 --- a/clients/client-ivschat/src/commands/GetLoggingConfigurationCommand.ts +++ b/clients/client-ivschat/src/commands/GetLoggingConfigurationCommand.ts @@ -83,6 +83,7 @@ export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigur * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class GetLoggingConfigurationCommand extends $Command diff --git a/clients/client-ivschat/src/commands/GetRoomCommand.ts b/clients/client-ivschat/src/commands/GetRoomCommand.ts index f98faf7e4aee3..04e2fc29f553b 100644 --- a/clients/client-ivschat/src/commands/GetRoomCommand.ts +++ b/clients/client-ivschat/src/commands/GetRoomCommand.ts @@ -80,6 +80,7 @@ export interface GetRoomCommandOutput extends GetRoomResponse, __MetadataBearer * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class GetRoomCommand extends $Command diff --git a/clients/client-ivschat/src/commands/ListLoggingConfigurationsCommand.ts b/clients/client-ivschat/src/commands/ListLoggingConfigurationsCommand.ts index b944cfd2dd7ac..a5f10eaa7aaae 100644 --- a/clients/client-ivschat/src/commands/ListLoggingConfigurationsCommand.ts +++ b/clients/client-ivschat/src/commands/ListLoggingConfigurationsCommand.ts @@ -87,6 +87,7 @@ export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfi * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class ListLoggingConfigurationsCommand extends $Command diff --git a/clients/client-ivschat/src/commands/ListRoomsCommand.ts b/clients/client-ivschat/src/commands/ListRoomsCommand.ts index e1fa02f3725cb..c7b842548892e 100644 --- a/clients/client-ivschat/src/commands/ListRoomsCommand.ts +++ b/clients/client-ivschat/src/commands/ListRoomsCommand.ts @@ -88,6 +88,7 @@ export interface ListRoomsCommandOutput extends ListRoomsResponse, __MetadataBea * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class ListRoomsCommand extends $Command diff --git a/clients/client-ivschat/src/commands/ListTagsForResourceCommand.ts b/clients/client-ivschat/src/commands/ListTagsForResourceCommand.ts index a7843df4d6dc4..2d27dbbf71d52 100644 --- a/clients/client-ivschat/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ivschat/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-ivschat/src/commands/SendEventCommand.ts b/clients/client-ivschat/src/commands/SendEventCommand.ts index fa52691040339..4417617fb1a3e 100644 --- a/clients/client-ivschat/src/commands/SendEventCommand.ts +++ b/clients/client-ivschat/src/commands/SendEventCommand.ts @@ -76,6 +76,7 @@ export interface SendEventCommandOutput extends SendEventResponse, __MetadataBea * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class SendEventCommand extends $Command diff --git a/clients/client-ivschat/src/commands/TagResourceCommand.ts b/clients/client-ivschat/src/commands/TagResourceCommand.ts index 95e7505dfd168..8bcfdf435138d 100644 --- a/clients/client-ivschat/src/commands/TagResourceCommand.ts +++ b/clients/client-ivschat/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-ivschat/src/commands/UntagResourceCommand.ts b/clients/client-ivschat/src/commands/UntagResourceCommand.ts index 328bf2ced8839..6b4a7570f8ea3 100644 --- a/clients/client-ivschat/src/commands/UntagResourceCommand.ts +++ b/clients/client-ivschat/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-ivschat/src/commands/UpdateLoggingConfigurationCommand.ts b/clients/client-ivschat/src/commands/UpdateLoggingConfigurationCommand.ts index d362bc733bd39..f00d11c894ef8 100644 --- a/clients/client-ivschat/src/commands/UpdateLoggingConfigurationCommand.ts +++ b/clients/client-ivschat/src/commands/UpdateLoggingConfigurationCommand.ts @@ -101,6 +101,7 @@ export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingCo * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class UpdateLoggingConfigurationCommand extends $Command diff --git a/clients/client-ivschat/src/commands/UpdateRoomCommand.ts b/clients/client-ivschat/src/commands/UpdateRoomCommand.ts index 587684217b45a..efd1eecde1237 100644 --- a/clients/client-ivschat/src/commands/UpdateRoomCommand.ts +++ b/clients/client-ivschat/src/commands/UpdateRoomCommand.ts @@ -93,6 +93,7 @@ export interface UpdateRoomCommandOutput extends UpdateRoomResponse, __MetadataB * @throws {@link IvschatServiceException} *

Base exception class for all service exceptions from Ivschat service.

* + * * @public */ export class UpdateRoomCommand extends $Command diff --git a/clients/client-kafka/src/commands/BatchAssociateScramSecretCommand.ts b/clients/client-kafka/src/commands/BatchAssociateScramSecretCommand.ts index f79cc9ed44cee..9f2e8180d42e4 100644 --- a/clients/client-kafka/src/commands/BatchAssociateScramSecretCommand.ts +++ b/clients/client-kafka/src/commands/BatchAssociateScramSecretCommand.ts @@ -86,6 +86,7 @@ export interface BatchAssociateScramSecretCommandOutput extends BatchAssociateSc * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class BatchAssociateScramSecretCommand extends $Command diff --git a/clients/client-kafka/src/commands/BatchDisassociateScramSecretCommand.ts b/clients/client-kafka/src/commands/BatchDisassociateScramSecretCommand.ts index 7148696e0a8b5..5057e99af2488 100644 --- a/clients/client-kafka/src/commands/BatchDisassociateScramSecretCommand.ts +++ b/clients/client-kafka/src/commands/BatchDisassociateScramSecretCommand.ts @@ -91,6 +91,7 @@ export interface BatchDisassociateScramSecretCommandOutput * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class BatchDisassociateScramSecretCommand extends $Command diff --git a/clients/client-kafka/src/commands/CreateClusterCommand.ts b/clients/client-kafka/src/commands/CreateClusterCommand.ts index 992d48f895bd4..26bb749e881cf 100644 --- a/clients/client-kafka/src/commands/CreateClusterCommand.ts +++ b/clients/client-kafka/src/commands/CreateClusterCommand.ts @@ -186,6 +186,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class CreateClusterCommand extends $Command diff --git a/clients/client-kafka/src/commands/CreateClusterV2Command.ts b/clients/client-kafka/src/commands/CreateClusterV2Command.ts index a0a21ed01e8be..695f52c37feff 100644 --- a/clients/client-kafka/src/commands/CreateClusterV2Command.ts +++ b/clients/client-kafka/src/commands/CreateClusterV2Command.ts @@ -206,6 +206,7 @@ export interface CreateClusterV2CommandOutput extends CreateClusterV2Response, _ * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class CreateClusterV2Command extends $Command diff --git a/clients/client-kafka/src/commands/CreateConfigurationCommand.ts b/clients/client-kafka/src/commands/CreateConfigurationCommand.ts index 57805efdf782b..ceabc8cfce5ee 100644 --- a/clients/client-kafka/src/commands/CreateConfigurationCommand.ts +++ b/clients/client-kafka/src/commands/CreateConfigurationCommand.ts @@ -89,6 +89,7 @@ export interface CreateConfigurationCommandOutput extends CreateConfigurationRes * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class CreateConfigurationCommand extends $Command diff --git a/clients/client-kafka/src/commands/CreateReplicatorCommand.ts b/clients/client-kafka/src/commands/CreateReplicatorCommand.ts index ba6cc8dbb3772..e7d341b7a94b3 100644 --- a/clients/client-kafka/src/commands/CreateReplicatorCommand.ts +++ b/clients/client-kafka/src/commands/CreateReplicatorCommand.ts @@ -135,6 +135,7 @@ export interface CreateReplicatorCommandOutput extends CreateReplicatorResponse, * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class CreateReplicatorCommand extends $Command diff --git a/clients/client-kafka/src/commands/CreateVpcConnectionCommand.ts b/clients/client-kafka/src/commands/CreateVpcConnectionCommand.ts index 21709614a4fc5..62478125779b8 100644 --- a/clients/client-kafka/src/commands/CreateVpcConnectionCommand.ts +++ b/clients/client-kafka/src/commands/CreateVpcConnectionCommand.ts @@ -97,6 +97,7 @@ export interface CreateVpcConnectionCommandOutput extends CreateVpcConnectionRes * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class CreateVpcConnectionCommand extends $Command diff --git a/clients/client-kafka/src/commands/DeleteClusterCommand.ts b/clients/client-kafka/src/commands/DeleteClusterCommand.ts index 264015a2bc5a0..755d6c6092c10 100644 --- a/clients/client-kafka/src/commands/DeleteClusterCommand.ts +++ b/clients/client-kafka/src/commands/DeleteClusterCommand.ts @@ -69,6 +69,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class DeleteClusterCommand extends $Command diff --git a/clients/client-kafka/src/commands/DeleteClusterPolicyCommand.ts b/clients/client-kafka/src/commands/DeleteClusterPolicyCommand.ts index f08bb288b26c4..5d56910c3df69 100644 --- a/clients/client-kafka/src/commands/DeleteClusterPolicyCommand.ts +++ b/clients/client-kafka/src/commands/DeleteClusterPolicyCommand.ts @@ -65,6 +65,7 @@ export interface DeleteClusterPolicyCommandOutput extends DeleteClusterPolicyRes * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class DeleteClusterPolicyCommand extends $Command diff --git a/clients/client-kafka/src/commands/DeleteConfigurationCommand.ts b/clients/client-kafka/src/commands/DeleteConfigurationCommand.ts index 1704ff442bb4a..56239b7831da1 100644 --- a/clients/client-kafka/src/commands/DeleteConfigurationCommand.ts +++ b/clients/client-kafka/src/commands/DeleteConfigurationCommand.ts @@ -68,6 +68,7 @@ export interface DeleteConfigurationCommandOutput extends DeleteConfigurationRes * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class DeleteConfigurationCommand extends $Command diff --git a/clients/client-kafka/src/commands/DeleteReplicatorCommand.ts b/clients/client-kafka/src/commands/DeleteReplicatorCommand.ts index 2f443221f4c55..8a606e8b1dc61 100644 --- a/clients/client-kafka/src/commands/DeleteReplicatorCommand.ts +++ b/clients/client-kafka/src/commands/DeleteReplicatorCommand.ts @@ -78,6 +78,7 @@ export interface DeleteReplicatorCommandOutput extends DeleteReplicatorResponse, * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class DeleteReplicatorCommand extends $Command diff --git a/clients/client-kafka/src/commands/DeleteVpcConnectionCommand.ts b/clients/client-kafka/src/commands/DeleteVpcConnectionCommand.ts index c9ec89ae0e7db..c908488d9ead8 100644 --- a/clients/client-kafka/src/commands/DeleteVpcConnectionCommand.ts +++ b/clients/client-kafka/src/commands/DeleteVpcConnectionCommand.ts @@ -68,6 +68,7 @@ export interface DeleteVpcConnectionCommandOutput extends DeleteVpcConnectionRes * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class DeleteVpcConnectionCommand extends $Command diff --git a/clients/client-kafka/src/commands/DescribeClusterCommand.ts b/clients/client-kafka/src/commands/DescribeClusterCommand.ts index e41dfcc034cc3..0a880c9cfb8fa 100644 --- a/clients/client-kafka/src/commands/DescribeClusterCommand.ts +++ b/clients/client-kafka/src/commands/DescribeClusterCommand.ts @@ -192,6 +192,7 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _ * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class DescribeClusterCommand extends $Command diff --git a/clients/client-kafka/src/commands/DescribeClusterOperationCommand.ts b/clients/client-kafka/src/commands/DescribeClusterOperationCommand.ts index a7a6a90523e46..5916d2c28c30a 100644 --- a/clients/client-kafka/src/commands/DescribeClusterOperationCommand.ts +++ b/clients/client-kafka/src/commands/DescribeClusterOperationCommand.ts @@ -307,6 +307,7 @@ export interface DescribeClusterOperationCommandOutput extends DescribeClusterOp * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class DescribeClusterOperationCommand extends $Command diff --git a/clients/client-kafka/src/commands/DescribeClusterOperationV2Command.ts b/clients/client-kafka/src/commands/DescribeClusterOperationV2Command.ts index 0d23216fa8ce4..c4837c33dcc8d 100644 --- a/clients/client-kafka/src/commands/DescribeClusterOperationV2Command.ts +++ b/clients/client-kafka/src/commands/DescribeClusterOperationV2Command.ts @@ -326,6 +326,7 @@ export interface DescribeClusterOperationV2CommandOutput extends DescribeCluster * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class DescribeClusterOperationV2Command extends $Command diff --git a/clients/client-kafka/src/commands/DescribeClusterV2Command.ts b/clients/client-kafka/src/commands/DescribeClusterV2Command.ts index 142eee72f3f14..e17c0c3dd94e9 100644 --- a/clients/client-kafka/src/commands/DescribeClusterV2Command.ts +++ b/clients/client-kafka/src/commands/DescribeClusterV2Command.ts @@ -212,6 +212,7 @@ export interface DescribeClusterV2CommandOutput extends DescribeClusterV2Respons * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class DescribeClusterV2Command extends $Command diff --git a/clients/client-kafka/src/commands/DescribeConfigurationCommand.ts b/clients/client-kafka/src/commands/DescribeConfigurationCommand.ts index 08841cb2d614d..2fa24daf291be 100644 --- a/clients/client-kafka/src/commands/DescribeConfigurationCommand.ts +++ b/clients/client-kafka/src/commands/DescribeConfigurationCommand.ts @@ -85,6 +85,7 @@ export interface DescribeConfigurationCommandOutput extends DescribeConfiguratio * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class DescribeConfigurationCommand extends $Command diff --git a/clients/client-kafka/src/commands/DescribeConfigurationRevisionCommand.ts b/clients/client-kafka/src/commands/DescribeConfigurationRevisionCommand.ts index 3078a8adce740..16d0d4941abb4 100644 --- a/clients/client-kafka/src/commands/DescribeConfigurationRevisionCommand.ts +++ b/clients/client-kafka/src/commands/DescribeConfigurationRevisionCommand.ts @@ -83,6 +83,7 @@ export interface DescribeConfigurationRevisionCommandOutput * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class DescribeConfigurationRevisionCommand extends $Command diff --git a/clients/client-kafka/src/commands/DescribeReplicatorCommand.ts b/clients/client-kafka/src/commands/DescribeReplicatorCommand.ts index 57aaa67df7ccc..1da2aafc2e9d8 100644 --- a/clients/client-kafka/src/commands/DescribeReplicatorCommand.ts +++ b/clients/client-kafka/src/commands/DescribeReplicatorCommand.ts @@ -141,6 +141,7 @@ export interface DescribeReplicatorCommandOutput extends DescribeReplicatorRespo * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class DescribeReplicatorCommand extends $Command diff --git a/clients/client-kafka/src/commands/DescribeVpcConnectionCommand.ts b/clients/client-kafka/src/commands/DescribeVpcConnectionCommand.ts index c738e913fdfc4..c5ec4b7d5f3e5 100644 --- a/clients/client-kafka/src/commands/DescribeVpcConnectionCommand.ts +++ b/clients/client-kafka/src/commands/DescribeVpcConnectionCommand.ts @@ -87,6 +87,7 @@ export interface DescribeVpcConnectionCommandOutput extends DescribeVpcConnectio * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class DescribeVpcConnectionCommand extends $Command diff --git a/clients/client-kafka/src/commands/GetBootstrapBrokersCommand.ts b/clients/client-kafka/src/commands/GetBootstrapBrokersCommand.ts index 1dc5a868f1f66..1cea9d8487437 100644 --- a/clients/client-kafka/src/commands/GetBootstrapBrokersCommand.ts +++ b/clients/client-kafka/src/commands/GetBootstrapBrokersCommand.ts @@ -79,6 +79,7 @@ export interface GetBootstrapBrokersCommandOutput extends GetBootstrapBrokersRes * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class GetBootstrapBrokersCommand extends $Command diff --git a/clients/client-kafka/src/commands/GetClusterPolicyCommand.ts b/clients/client-kafka/src/commands/GetClusterPolicyCommand.ts index 3d876849c7a4a..c24733b58cd89 100644 --- a/clients/client-kafka/src/commands/GetClusterPolicyCommand.ts +++ b/clients/client-kafka/src/commands/GetClusterPolicyCommand.ts @@ -68,6 +68,7 @@ export interface GetClusterPolicyCommandOutput extends GetClusterPolicyResponse, * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class GetClusterPolicyCommand extends $Command diff --git a/clients/client-kafka/src/commands/GetCompatibleKafkaVersionsCommand.ts b/clients/client-kafka/src/commands/GetCompatibleKafkaVersionsCommand.ts index 55f1492a90af3..32aa92f0cef2d 100644 --- a/clients/client-kafka/src/commands/GetCompatibleKafkaVersionsCommand.ts +++ b/clients/client-kafka/src/commands/GetCompatibleKafkaVersionsCommand.ts @@ -83,6 +83,7 @@ export interface GetCompatibleKafkaVersionsCommandOutput extends GetCompatibleKa * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class GetCompatibleKafkaVersionsCommand extends $Command diff --git a/clients/client-kafka/src/commands/ListClientVpcConnectionsCommand.ts b/clients/client-kafka/src/commands/ListClientVpcConnectionsCommand.ts index 56903df8fa7ab..30d0fb66507bd 100644 --- a/clients/client-kafka/src/commands/ListClientVpcConnectionsCommand.ts +++ b/clients/client-kafka/src/commands/ListClientVpcConnectionsCommand.ts @@ -81,6 +81,7 @@ export interface ListClientVpcConnectionsCommandOutput extends ListClientVpcConn * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class ListClientVpcConnectionsCommand extends $Command diff --git a/clients/client-kafka/src/commands/ListClusterOperationsCommand.ts b/clients/client-kafka/src/commands/ListClusterOperationsCommand.ts index 7a15f10b71a98..6221855299e5b 100644 --- a/clients/client-kafka/src/commands/ListClusterOperationsCommand.ts +++ b/clients/client-kafka/src/commands/ListClusterOperationsCommand.ts @@ -309,6 +309,7 @@ export interface ListClusterOperationsCommandOutput extends ListClusterOperation * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class ListClusterOperationsCommand extends $Command diff --git a/clients/client-kafka/src/commands/ListClusterOperationsV2Command.ts b/clients/client-kafka/src/commands/ListClusterOperationsV2Command.ts index 3ce796bd7fedf..a470c0b49bff4 100644 --- a/clients/client-kafka/src/commands/ListClusterOperationsV2Command.ts +++ b/clients/client-kafka/src/commands/ListClusterOperationsV2Command.ts @@ -89,6 +89,7 @@ export interface ListClusterOperationsV2CommandOutput extends ListClusterOperati * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class ListClusterOperationsV2Command extends $Command diff --git a/clients/client-kafka/src/commands/ListClustersCommand.ts b/clients/client-kafka/src/commands/ListClustersCommand.ts index ad4eb28df4543..45b4531bae997 100644 --- a/clients/client-kafka/src/commands/ListClustersCommand.ts +++ b/clients/client-kafka/src/commands/ListClustersCommand.ts @@ -194,6 +194,7 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class ListClustersCommand extends $Command diff --git a/clients/client-kafka/src/commands/ListClustersV2Command.ts b/clients/client-kafka/src/commands/ListClustersV2Command.ts index 25f860998a46b..b2ef2429ab56d 100644 --- a/clients/client-kafka/src/commands/ListClustersV2Command.ts +++ b/clients/client-kafka/src/commands/ListClustersV2Command.ts @@ -215,6 +215,7 @@ export interface ListClustersV2CommandOutput extends ListClustersV2Response, __M * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class ListClustersV2Command extends $Command diff --git a/clients/client-kafka/src/commands/ListConfigurationRevisionsCommand.ts b/clients/client-kafka/src/commands/ListConfigurationRevisionsCommand.ts index 0f91f1ecc5e70..8ccb76cd9d6bb 100644 --- a/clients/client-kafka/src/commands/ListConfigurationRevisionsCommand.ts +++ b/clients/client-kafka/src/commands/ListConfigurationRevisionsCommand.ts @@ -82,6 +82,7 @@ export interface ListConfigurationRevisionsCommandOutput extends ListConfigurati * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class ListConfigurationRevisionsCommand extends $Command diff --git a/clients/client-kafka/src/commands/ListConfigurationsCommand.ts b/clients/client-kafka/src/commands/ListConfigurationsCommand.ts index 415436358391c..acc01ff72cf25 100644 --- a/clients/client-kafka/src/commands/ListConfigurationsCommand.ts +++ b/clients/client-kafka/src/commands/ListConfigurationsCommand.ts @@ -88,6 +88,7 @@ export interface ListConfigurationsCommandOutput extends ListConfigurationsRespo * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class ListConfigurationsCommand extends $Command diff --git a/clients/client-kafka/src/commands/ListKafkaVersionsCommand.ts b/clients/client-kafka/src/commands/ListKafkaVersionsCommand.ts index 0c0a050060e51..b72e3b0f26473 100644 --- a/clients/client-kafka/src/commands/ListKafkaVersionsCommand.ts +++ b/clients/client-kafka/src/commands/ListKafkaVersionsCommand.ts @@ -74,6 +74,7 @@ export interface ListKafkaVersionsCommandOutput extends ListKafkaVersionsRespons * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class ListKafkaVersionsCommand extends $Command diff --git a/clients/client-kafka/src/commands/ListNodesCommand.ts b/clients/client-kafka/src/commands/ListNodesCommand.ts index 5cbd8e68f3389..d92175d24bc5b 100644 --- a/clients/client-kafka/src/commands/ListNodesCommand.ts +++ b/clients/client-kafka/src/commands/ListNodesCommand.ts @@ -105,6 +105,7 @@ export interface ListNodesCommandOutput extends ListNodesResponse, __MetadataBea * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class ListNodesCommand extends $Command diff --git a/clients/client-kafka/src/commands/ListReplicatorsCommand.ts b/clients/client-kafka/src/commands/ListReplicatorsCommand.ts index 79ad0042c4f29..b4909b77334f6 100644 --- a/clients/client-kafka/src/commands/ListReplicatorsCommand.ts +++ b/clients/client-kafka/src/commands/ListReplicatorsCommand.ts @@ -103,6 +103,7 @@ export interface ListReplicatorsCommandOutput extends ListReplicatorsResponse, _ * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class ListReplicatorsCommand extends $Command diff --git a/clients/client-kafka/src/commands/ListScramSecretsCommand.ts b/clients/client-kafka/src/commands/ListScramSecretsCommand.ts index e5283909445ad..aa361a2e4131e 100644 --- a/clients/client-kafka/src/commands/ListScramSecretsCommand.ts +++ b/clients/client-kafka/src/commands/ListScramSecretsCommand.ts @@ -81,6 +81,7 @@ export interface ListScramSecretsCommandOutput extends ListScramSecretsResponse, * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class ListScramSecretsCommand extends $Command diff --git a/clients/client-kafka/src/commands/ListTagsForResourceCommand.ts b/clients/client-kafka/src/commands/ListTagsForResourceCommand.ts index 2f59c96ff802f..689f343e88260 100644 --- a/clients/client-kafka/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kafka/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-kafka/src/commands/ListVpcConnectionsCommand.ts b/clients/client-kafka/src/commands/ListVpcConnectionsCommand.ts index 456a531bf51a6..55fc7abc0d8a7 100644 --- a/clients/client-kafka/src/commands/ListVpcConnectionsCommand.ts +++ b/clients/client-kafka/src/commands/ListVpcConnectionsCommand.ts @@ -81,6 +81,7 @@ export interface ListVpcConnectionsCommandOutput extends ListVpcConnectionsRespo * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class ListVpcConnectionsCommand extends $Command diff --git a/clients/client-kafka/src/commands/PutClusterPolicyCommand.ts b/clients/client-kafka/src/commands/PutClusterPolicyCommand.ts index 8d177364f0844..0009683942f1b 100644 --- a/clients/client-kafka/src/commands/PutClusterPolicyCommand.ts +++ b/clients/client-kafka/src/commands/PutClusterPolicyCommand.ts @@ -66,6 +66,7 @@ export interface PutClusterPolicyCommandOutput extends PutClusterPolicyResponse, * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class PutClusterPolicyCommand extends $Command diff --git a/clients/client-kafka/src/commands/RebootBrokerCommand.ts b/clients/client-kafka/src/commands/RebootBrokerCommand.ts index 701ed50c69504..46cb381db37a3 100644 --- a/clients/client-kafka/src/commands/RebootBrokerCommand.ts +++ b/clients/client-kafka/src/commands/RebootBrokerCommand.ts @@ -80,6 +80,7 @@ export interface RebootBrokerCommandOutput extends RebootBrokerResponse, __Metad * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class RebootBrokerCommand extends $Command diff --git a/clients/client-kafka/src/commands/RejectClientVpcConnectionCommand.ts b/clients/client-kafka/src/commands/RejectClientVpcConnectionCommand.ts index 049a5474572f6..5e322df032712 100644 --- a/clients/client-kafka/src/commands/RejectClientVpcConnectionCommand.ts +++ b/clients/client-kafka/src/commands/RejectClientVpcConnectionCommand.ts @@ -69,6 +69,7 @@ export interface RejectClientVpcConnectionCommandOutput extends RejectClientVpcC * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class RejectClientVpcConnectionCommand extends $Command diff --git a/clients/client-kafka/src/commands/TagResourceCommand.ts b/clients/client-kafka/src/commands/TagResourceCommand.ts index a2b0198c3abe7..4318a69be727f 100644 --- a/clients/client-kafka/src/commands/TagResourceCommand.ts +++ b/clients/client-kafka/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-kafka/src/commands/UntagResourceCommand.ts b/clients/client-kafka/src/commands/UntagResourceCommand.ts index 34b4c8e438781..ad1eaab9debd6 100644 --- a/clients/client-kafka/src/commands/UntagResourceCommand.ts +++ b/clients/client-kafka/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-kafka/src/commands/UpdateBrokerCountCommand.ts b/clients/client-kafka/src/commands/UpdateBrokerCountCommand.ts index 4874f62b1f958..07efa699b8b15 100644 --- a/clients/client-kafka/src/commands/UpdateBrokerCountCommand.ts +++ b/clients/client-kafka/src/commands/UpdateBrokerCountCommand.ts @@ -73,6 +73,7 @@ export interface UpdateBrokerCountCommandOutput extends UpdateBrokerCountRespons * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class UpdateBrokerCountCommand extends $Command diff --git a/clients/client-kafka/src/commands/UpdateBrokerStorageCommand.ts b/clients/client-kafka/src/commands/UpdateBrokerStorageCommand.ts index aa6cda8d92f47..ded0b382f7ed0 100644 --- a/clients/client-kafka/src/commands/UpdateBrokerStorageCommand.ts +++ b/clients/client-kafka/src/commands/UpdateBrokerStorageCommand.ts @@ -82,6 +82,7 @@ export interface UpdateBrokerStorageCommandOutput extends UpdateBrokerStorageRes * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class UpdateBrokerStorageCommand extends $Command diff --git a/clients/client-kafka/src/commands/UpdateBrokerTypeCommand.ts b/clients/client-kafka/src/commands/UpdateBrokerTypeCommand.ts index 6a9521ea11594..75a9bd3fb3a79 100644 --- a/clients/client-kafka/src/commands/UpdateBrokerTypeCommand.ts +++ b/clients/client-kafka/src/commands/UpdateBrokerTypeCommand.ts @@ -79,6 +79,7 @@ export interface UpdateBrokerTypeCommandOutput extends UpdateBrokerTypeResponse, * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class UpdateBrokerTypeCommand extends $Command diff --git a/clients/client-kafka/src/commands/UpdateClusterConfigurationCommand.ts b/clients/client-kafka/src/commands/UpdateClusterConfigurationCommand.ts index 4201068e600f2..bf5c8f5e0c1c4 100644 --- a/clients/client-kafka/src/commands/UpdateClusterConfigurationCommand.ts +++ b/clients/client-kafka/src/commands/UpdateClusterConfigurationCommand.ts @@ -79,6 +79,7 @@ export interface UpdateClusterConfigurationCommandOutput extends UpdateClusterCo * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class UpdateClusterConfigurationCommand extends $Command diff --git a/clients/client-kafka/src/commands/UpdateClusterKafkaVersionCommand.ts b/clients/client-kafka/src/commands/UpdateClusterKafkaVersionCommand.ts index d022d4640872c..71a68c5686d53 100644 --- a/clients/client-kafka/src/commands/UpdateClusterKafkaVersionCommand.ts +++ b/clients/client-kafka/src/commands/UpdateClusterKafkaVersionCommand.ts @@ -83,6 +83,7 @@ export interface UpdateClusterKafkaVersionCommandOutput extends UpdateClusterKaf * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class UpdateClusterKafkaVersionCommand extends $Command diff --git a/clients/client-kafka/src/commands/UpdateConfigurationCommand.ts b/clients/client-kafka/src/commands/UpdateConfigurationCommand.ts index 3f9e6548c596a..771c0ccaf3e91 100644 --- a/clients/client-kafka/src/commands/UpdateConfigurationCommand.ts +++ b/clients/client-kafka/src/commands/UpdateConfigurationCommand.ts @@ -80,6 +80,7 @@ export interface UpdateConfigurationCommandOutput extends UpdateConfigurationRes * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class UpdateConfigurationCommand extends $Command diff --git a/clients/client-kafka/src/commands/UpdateConnectivityCommand.ts b/clients/client-kafka/src/commands/UpdateConnectivityCommand.ts index 2ce0d056a13e1..23d2cfb6f4f73 100644 --- a/clients/client-kafka/src/commands/UpdateConnectivityCommand.ts +++ b/clients/client-kafka/src/commands/UpdateConnectivityCommand.ts @@ -95,6 +95,7 @@ export interface UpdateConnectivityCommandOutput extends UpdateConnectivityRespo * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class UpdateConnectivityCommand extends $Command diff --git a/clients/client-kafka/src/commands/UpdateMonitoringCommand.ts b/clients/client-kafka/src/commands/UpdateMonitoringCommand.ts index 92480d00fa1a3..6ab3646c5ca8c 100644 --- a/clients/client-kafka/src/commands/UpdateMonitoringCommand.ts +++ b/clients/client-kafka/src/commands/UpdateMonitoringCommand.ts @@ -100,6 +100,7 @@ export interface UpdateMonitoringCommandOutput extends UpdateMonitoringResponse, * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class UpdateMonitoringCommand extends $Command diff --git a/clients/client-kafka/src/commands/UpdateReplicationInfoCommand.ts b/clients/client-kafka/src/commands/UpdateReplicationInfoCommand.ts index ba94051676e1b..9fc640cea4710 100644 --- a/clients/client-kafka/src/commands/UpdateReplicationInfoCommand.ts +++ b/clients/client-kafka/src/commands/UpdateReplicationInfoCommand.ts @@ -101,6 +101,7 @@ export interface UpdateReplicationInfoCommandOutput extends UpdateReplicationInf * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class UpdateReplicationInfoCommand extends $Command diff --git a/clients/client-kafka/src/commands/UpdateSecurityCommand.ts b/clients/client-kafka/src/commands/UpdateSecurityCommand.ts index 5fd2a6c242c8f..be2d1be25d889 100644 --- a/clients/client-kafka/src/commands/UpdateSecurityCommand.ts +++ b/clients/client-kafka/src/commands/UpdateSecurityCommand.ts @@ -106,6 +106,7 @@ export interface UpdateSecurityCommandOutput extends UpdateSecurityResponse, __M * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class UpdateSecurityCommand extends $Command diff --git a/clients/client-kafka/src/commands/UpdateStorageCommand.ts b/clients/client-kafka/src/commands/UpdateStorageCommand.ts index f9f788b617137..b1b1386686b7e 100644 --- a/clients/client-kafka/src/commands/UpdateStorageCommand.ts +++ b/clients/client-kafka/src/commands/UpdateStorageCommand.ts @@ -84,6 +84,7 @@ export interface UpdateStorageCommandOutput extends UpdateStorageResponse, __Met * @throws {@link KafkaServiceException} *

Base exception class for all service exceptions from Kafka service.

* + * * @public */ export class UpdateStorageCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/CreateConnectorCommand.ts b/clients/client-kafkaconnect/src/commands/CreateConnectorCommand.ts index 5b2dbf35b3adb..5077c6e6f95c7 100644 --- a/clients/client-kafkaconnect/src/commands/CreateConnectorCommand.ts +++ b/clients/client-kafkaconnect/src/commands/CreateConnectorCommand.ts @@ -166,6 +166,7 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _ * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class CreateConnectorCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/CreateCustomPluginCommand.ts b/clients/client-kafkaconnect/src/commands/CreateCustomPluginCommand.ts index 0a3d7ecd45570..37953dd6dd0d9 100644 --- a/clients/client-kafkaconnect/src/commands/CreateCustomPluginCommand.ts +++ b/clients/client-kafkaconnect/src/commands/CreateCustomPluginCommand.ts @@ -101,6 +101,7 @@ export interface CreateCustomPluginCommandOutput extends CreateCustomPluginRespo * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class CreateCustomPluginCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/CreateWorkerConfigurationCommand.ts b/clients/client-kafkaconnect/src/commands/CreateWorkerConfigurationCommand.ts index 1c64cb956f4cb..a5d24c3ac9ebe 100644 --- a/clients/client-kafkaconnect/src/commands/CreateWorkerConfigurationCommand.ts +++ b/clients/client-kafkaconnect/src/commands/CreateWorkerConfigurationCommand.ts @@ -103,6 +103,7 @@ export interface CreateWorkerConfigurationCommandOutput extends CreateWorkerConf * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class CreateWorkerConfigurationCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/DeleteConnectorCommand.ts b/clients/client-kafkaconnect/src/commands/DeleteConnectorCommand.ts index 4a69b52fe037b..56e2d0a9252ed 100644 --- a/clients/client-kafkaconnect/src/commands/DeleteConnectorCommand.ts +++ b/clients/client-kafkaconnect/src/commands/DeleteConnectorCommand.ts @@ -84,6 +84,7 @@ export interface DeleteConnectorCommandOutput extends DeleteConnectorResponse, _ * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class DeleteConnectorCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/DeleteCustomPluginCommand.ts b/clients/client-kafkaconnect/src/commands/DeleteCustomPluginCommand.ts index cfdfb9d690513..0116b82771e44 100644 --- a/clients/client-kafkaconnect/src/commands/DeleteCustomPluginCommand.ts +++ b/clients/client-kafkaconnect/src/commands/DeleteCustomPluginCommand.ts @@ -83,6 +83,7 @@ export interface DeleteCustomPluginCommandOutput extends DeleteCustomPluginRespo * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class DeleteCustomPluginCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/DeleteWorkerConfigurationCommand.ts b/clients/client-kafkaconnect/src/commands/DeleteWorkerConfigurationCommand.ts index 5c987bd205af8..9626966ecabda 100644 --- a/clients/client-kafkaconnect/src/commands/DeleteWorkerConfigurationCommand.ts +++ b/clients/client-kafkaconnect/src/commands/DeleteWorkerConfigurationCommand.ts @@ -83,6 +83,7 @@ export interface DeleteWorkerConfigurationCommandOutput extends DeleteWorkerConf * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class DeleteWorkerConfigurationCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/DescribeConnectorCommand.ts b/clients/client-kafkaconnect/src/commands/DescribeConnectorCommand.ts index 796540a704346..aa7798b49316e 100644 --- a/clients/client-kafkaconnect/src/commands/DescribeConnectorCommand.ts +++ b/clients/client-kafkaconnect/src/commands/DescribeConnectorCommand.ts @@ -165,6 +165,7 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class DescribeConnectorCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/DescribeConnectorOperationCommand.ts b/clients/client-kafkaconnect/src/commands/DescribeConnectorOperationCommand.ts index 79bca5c85e65b..8166bcbb71bea 100644 --- a/clients/client-kafkaconnect/src/commands/DescribeConnectorOperationCommand.ts +++ b/clients/client-kafkaconnect/src/commands/DescribeConnectorOperationCommand.ts @@ -145,6 +145,7 @@ export interface DescribeConnectorOperationCommandOutput extends DescribeConnect * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class DescribeConnectorOperationCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/DescribeCustomPluginCommand.ts b/clients/client-kafkaconnect/src/commands/DescribeCustomPluginCommand.ts index 99c915be40a4f..3c203b1097fcc 100644 --- a/clients/client-kafkaconnect/src/commands/DescribeCustomPluginCommand.ts +++ b/clients/client-kafkaconnect/src/commands/DescribeCustomPluginCommand.ts @@ -107,6 +107,7 @@ export interface DescribeCustomPluginCommandOutput extends DescribeCustomPluginR * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class DescribeCustomPluginCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/DescribeWorkerConfigurationCommand.ts b/clients/client-kafkaconnect/src/commands/DescribeWorkerConfigurationCommand.ts index da6eb9df34f8a..800c92b2e87bc 100644 --- a/clients/client-kafkaconnect/src/commands/DescribeWorkerConfigurationCommand.ts +++ b/clients/client-kafkaconnect/src/commands/DescribeWorkerConfigurationCommand.ts @@ -101,6 +101,7 @@ export interface DescribeWorkerConfigurationCommandOutput * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class DescribeWorkerConfigurationCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/ListConnectorOperationsCommand.ts b/clients/client-kafkaconnect/src/commands/ListConnectorOperationsCommand.ts index 370349dd067c1..b1058f8dcb3f0 100644 --- a/clients/client-kafkaconnect/src/commands/ListConnectorOperationsCommand.ts +++ b/clients/client-kafkaconnect/src/commands/ListConnectorOperationsCommand.ts @@ -93,6 +93,7 @@ export interface ListConnectorOperationsCommandOutput extends ListConnectorOpera * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class ListConnectorOperationsCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/ListConnectorsCommand.ts b/clients/client-kafkaconnect/src/commands/ListConnectorsCommand.ts index 605ad4d93bbc3..874607465eccb 100644 --- a/clients/client-kafkaconnect/src/commands/ListConnectorsCommand.ts +++ b/clients/client-kafkaconnect/src/commands/ListConnectorsCommand.ts @@ -163,6 +163,7 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class ListConnectorsCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/ListCustomPluginsCommand.ts b/clients/client-kafkaconnect/src/commands/ListCustomPluginsCommand.ts index 2c9d03b30f1d4..2dfb3091d902f 100644 --- a/clients/client-kafkaconnect/src/commands/ListCustomPluginsCommand.ts +++ b/clients/client-kafkaconnect/src/commands/ListCustomPluginsCommand.ts @@ -110,6 +110,7 @@ export interface ListCustomPluginsCommandOutput extends ListCustomPluginsRespons * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class ListCustomPluginsCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/ListTagsForResourceCommand.ts b/clients/client-kafkaconnect/src/commands/ListTagsForResourceCommand.ts index 7176ef569aa89..1991657107db6 100644 --- a/clients/client-kafkaconnect/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kafkaconnect/src/commands/ListTagsForResourceCommand.ts @@ -84,6 +84,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/ListWorkerConfigurationsCommand.ts b/clients/client-kafkaconnect/src/commands/ListWorkerConfigurationsCommand.ts index 048a92f36ff51..a993f8e55f473 100644 --- a/clients/client-kafkaconnect/src/commands/ListWorkerConfigurationsCommand.ts +++ b/clients/client-kafkaconnect/src/commands/ListWorkerConfigurationsCommand.ts @@ -98,6 +98,7 @@ export interface ListWorkerConfigurationsCommandOutput extends ListWorkerConfigu * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class ListWorkerConfigurationsCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/TagResourceCommand.ts b/clients/client-kafkaconnect/src/commands/TagResourceCommand.ts index 1310740aa58ba..d0871c033f690 100644 --- a/clients/client-kafkaconnect/src/commands/TagResourceCommand.ts +++ b/clients/client-kafkaconnect/src/commands/TagResourceCommand.ts @@ -87,6 +87,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/UntagResourceCommand.ts b/clients/client-kafkaconnect/src/commands/UntagResourceCommand.ts index dc4e2e4d1a9a3..7f85359b7f449 100644 --- a/clients/client-kafkaconnect/src/commands/UntagResourceCommand.ts +++ b/clients/client-kafkaconnect/src/commands/UntagResourceCommand.ts @@ -83,6 +83,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-kafkaconnect/src/commands/UpdateConnectorCommand.ts b/clients/client-kafkaconnect/src/commands/UpdateConnectorCommand.ts index 2be2ed1cb3483..f17947aae524a 100644 --- a/clients/client-kafkaconnect/src/commands/UpdateConnectorCommand.ts +++ b/clients/client-kafkaconnect/src/commands/UpdateConnectorCommand.ts @@ -109,6 +109,7 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _ * @throws {@link KafkaConnectServiceException} *

Base exception class for all service exceptions from KafkaConnect service.

* + * * @public */ export class UpdateConnectorCommand extends $Command diff --git a/clients/client-kendra-ranking/src/commands/CreateRescoreExecutionPlanCommand.ts b/clients/client-kendra-ranking/src/commands/CreateRescoreExecutionPlanCommand.ts index b9045630398af..afa6d8faaad98 100644 --- a/clients/client-kendra-ranking/src/commands/CreateRescoreExecutionPlanCommand.ts +++ b/clients/client-kendra-ranking/src/commands/CreateRescoreExecutionPlanCommand.ts @@ -108,6 +108,7 @@ export interface CreateRescoreExecutionPlanCommandOutput extends CreateRescoreEx * @throws {@link KendraRankingServiceException} *

Base exception class for all service exceptions from KendraRanking service.

* + * * @public */ export class CreateRescoreExecutionPlanCommand extends $Command diff --git a/clients/client-kendra-ranking/src/commands/DeleteRescoreExecutionPlanCommand.ts b/clients/client-kendra-ranking/src/commands/DeleteRescoreExecutionPlanCommand.ts index 5c5626cc745ea..f236334f16f4e 100644 --- a/clients/client-kendra-ranking/src/commands/DeleteRescoreExecutionPlanCommand.ts +++ b/clients/client-kendra-ranking/src/commands/DeleteRescoreExecutionPlanCommand.ts @@ -85,6 +85,7 @@ export interface DeleteRescoreExecutionPlanCommandOutput extends __MetadataBeare * @throws {@link KendraRankingServiceException} *

Base exception class for all service exceptions from KendraRanking service.

* + * * @public */ export class DeleteRescoreExecutionPlanCommand extends $Command diff --git a/clients/client-kendra-ranking/src/commands/DescribeRescoreExecutionPlanCommand.ts b/clients/client-kendra-ranking/src/commands/DescribeRescoreExecutionPlanCommand.ts index 7f22b0e8d7bc6..a578accd81a0f 100644 --- a/clients/client-kendra-ranking/src/commands/DescribeRescoreExecutionPlanCommand.ts +++ b/clients/client-kendra-ranking/src/commands/DescribeRescoreExecutionPlanCommand.ts @@ -98,6 +98,7 @@ export interface DescribeRescoreExecutionPlanCommandOutput * @throws {@link KendraRankingServiceException} *

Base exception class for all service exceptions from KendraRanking service.

* + * * @public */ export class DescribeRescoreExecutionPlanCommand extends $Command diff --git a/clients/client-kendra-ranking/src/commands/ListRescoreExecutionPlansCommand.ts b/clients/client-kendra-ranking/src/commands/ListRescoreExecutionPlansCommand.ts index fdb9f44a7177d..3a9a0dd912da1 100644 --- a/clients/client-kendra-ranking/src/commands/ListRescoreExecutionPlansCommand.ts +++ b/clients/client-kendra-ranking/src/commands/ListRescoreExecutionPlansCommand.ts @@ -88,6 +88,7 @@ export interface ListRescoreExecutionPlansCommandOutput extends ListRescoreExecu * @throws {@link KendraRankingServiceException} *

Base exception class for all service exceptions from KendraRanking service.

* + * * @public */ export class ListRescoreExecutionPlansCommand extends $Command diff --git a/clients/client-kendra-ranking/src/commands/ListTagsForResourceCommand.ts b/clients/client-kendra-ranking/src/commands/ListTagsForResourceCommand.ts index 4cb3d782a7b56..cd4daca9a7c92 100644 --- a/clients/client-kendra-ranking/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kendra-ranking/src/commands/ListTagsForResourceCommand.ts @@ -88,6 +88,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link KendraRankingServiceException} *

Base exception class for all service exceptions from KendraRanking service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-kendra-ranking/src/commands/RescoreCommand.ts b/clients/client-kendra-ranking/src/commands/RescoreCommand.ts index ad355b63741a2..67a09f058ec69 100644 --- a/clients/client-kendra-ranking/src/commands/RescoreCommand.ts +++ b/clients/client-kendra-ranking/src/commands/RescoreCommand.ts @@ -110,6 +110,7 @@ export interface RescoreCommandOutput extends RescoreResult, __MetadataBearer {} * @throws {@link KendraRankingServiceException} *

Base exception class for all service exceptions from KendraRanking service.

* + * * @public */ export class RescoreCommand extends $Command diff --git a/clients/client-kendra-ranking/src/commands/TagResourceCommand.ts b/clients/client-kendra-ranking/src/commands/TagResourceCommand.ts index 50fa025a3fe51..249598490ff24 100644 --- a/clients/client-kendra-ranking/src/commands/TagResourceCommand.ts +++ b/clients/client-kendra-ranking/src/commands/TagResourceCommand.ts @@ -89,6 +89,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link KendraRankingServiceException} *

Base exception class for all service exceptions from KendraRanking service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-kendra-ranking/src/commands/UntagResourceCommand.ts b/clients/client-kendra-ranking/src/commands/UntagResourceCommand.ts index a271fe3903191..5737806bdf4a8 100644 --- a/clients/client-kendra-ranking/src/commands/UntagResourceCommand.ts +++ b/clients/client-kendra-ranking/src/commands/UntagResourceCommand.ts @@ -85,6 +85,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link KendraRankingServiceException} *

Base exception class for all service exceptions from KendraRanking service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-kendra-ranking/src/commands/UpdateRescoreExecutionPlanCommand.ts b/clients/client-kendra-ranking/src/commands/UpdateRescoreExecutionPlanCommand.ts index d6aec77f04ffa..b2e2c4ee53568 100644 --- a/clients/client-kendra-ranking/src/commands/UpdateRescoreExecutionPlanCommand.ts +++ b/clients/client-kendra-ranking/src/commands/UpdateRescoreExecutionPlanCommand.ts @@ -100,6 +100,7 @@ export interface UpdateRescoreExecutionPlanCommandOutput extends __MetadataBeare * @throws {@link KendraRankingServiceException} *

Base exception class for all service exceptions from KendraRanking service.

* + * * @public */ export class UpdateRescoreExecutionPlanCommand extends $Command diff --git a/clients/client-kendra/src/commands/AssociateEntitiesToExperienceCommand.ts b/clients/client-kendra/src/commands/AssociateEntitiesToExperienceCommand.ts index c622d06b86599..a023cf7d8c606 100644 --- a/clients/client-kendra/src/commands/AssociateEntitiesToExperienceCommand.ts +++ b/clients/client-kendra/src/commands/AssociateEntitiesToExperienceCommand.ts @@ -100,6 +100,7 @@ export interface AssociateEntitiesToExperienceCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class AssociateEntitiesToExperienceCommand extends $Command diff --git a/clients/client-kendra/src/commands/AssociatePersonasToEntitiesCommand.ts b/clients/client-kendra/src/commands/AssociatePersonasToEntitiesCommand.ts index 7f0b942df3383..ea3b0642cad04 100644 --- a/clients/client-kendra/src/commands/AssociatePersonasToEntitiesCommand.ts +++ b/clients/client-kendra/src/commands/AssociatePersonasToEntitiesCommand.ts @@ -97,6 +97,7 @@ export interface AssociatePersonasToEntitiesCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class AssociatePersonasToEntitiesCommand extends $Command diff --git a/clients/client-kendra/src/commands/BatchDeleteDocumentCommand.ts b/clients/client-kendra/src/commands/BatchDeleteDocumentCommand.ts index 96a8ac04c1178..afc0c9b1e4820 100644 --- a/clients/client-kendra/src/commands/BatchDeleteDocumentCommand.ts +++ b/clients/client-kendra/src/commands/BatchDeleteDocumentCommand.ts @@ -102,6 +102,7 @@ export interface BatchDeleteDocumentCommandOutput extends BatchDeleteDocumentRes * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class BatchDeleteDocumentCommand extends $Command diff --git a/clients/client-kendra/src/commands/BatchDeleteFeaturedResultsSetCommand.ts b/clients/client-kendra/src/commands/BatchDeleteFeaturedResultsSetCommand.ts index 1a323101b1988..7c866e384302b 100644 --- a/clients/client-kendra/src/commands/BatchDeleteFeaturedResultsSetCommand.ts +++ b/clients/client-kendra/src/commands/BatchDeleteFeaturedResultsSetCommand.ts @@ -91,6 +91,7 @@ export interface BatchDeleteFeaturedResultsSetCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class BatchDeleteFeaturedResultsSetCommand extends $Command diff --git a/clients/client-kendra/src/commands/BatchGetDocumentStatusCommand.ts b/clients/client-kendra/src/commands/BatchGetDocumentStatusCommand.ts index 88da5993be6fa..eb505b94d7409 100644 --- a/clients/client-kendra/src/commands/BatchGetDocumentStatusCommand.ts +++ b/clients/client-kendra/src/commands/BatchGetDocumentStatusCommand.ts @@ -120,6 +120,7 @@ export interface BatchGetDocumentStatusCommandOutput extends BatchGetDocumentSta * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class BatchGetDocumentStatusCommand extends $Command diff --git a/clients/client-kendra/src/commands/BatchPutDocumentCommand.ts b/clients/client-kendra/src/commands/BatchPutDocumentCommand.ts index e231dccf75b26..a0d6c0a72779f 100644 --- a/clients/client-kendra/src/commands/BatchPutDocumentCommand.ts +++ b/clients/client-kendra/src/commands/BatchPutDocumentCommand.ts @@ -215,6 +215,7 @@ export interface BatchPutDocumentCommandOutput extends BatchPutDocumentResponse, * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class BatchPutDocumentCommand extends $Command diff --git a/clients/client-kendra/src/commands/ClearQuerySuggestionsCommand.ts b/clients/client-kendra/src/commands/ClearQuerySuggestionsCommand.ts index 9cf02e7408b60..0697beb65573a 100644 --- a/clients/client-kendra/src/commands/ClearQuerySuggestionsCommand.ts +++ b/clients/client-kendra/src/commands/ClearQuerySuggestionsCommand.ts @@ -86,6 +86,7 @@ export interface ClearQuerySuggestionsCommandOutput extends __MetadataBearer {} * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class ClearQuerySuggestionsCommand extends $Command diff --git a/clients/client-kendra/src/commands/CreateAccessControlConfigurationCommand.ts b/clients/client-kendra/src/commands/CreateAccessControlConfigurationCommand.ts index c76f64f76e750..c492292a53b87 100644 --- a/clients/client-kendra/src/commands/CreateAccessControlConfigurationCommand.ts +++ b/clients/client-kendra/src/commands/CreateAccessControlConfigurationCommand.ts @@ -137,6 +137,7 @@ export interface CreateAccessControlConfigurationCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class CreateAccessControlConfigurationCommand extends $Command diff --git a/clients/client-kendra/src/commands/CreateDataSourceCommand.ts b/clients/client-kendra/src/commands/CreateDataSourceCommand.ts index 511313fad0c74..d435a8fc4dba3 100644 --- a/clients/client-kendra/src/commands/CreateDataSourceCommand.ts +++ b/clients/client-kendra/src/commands/CreateDataSourceCommand.ts @@ -665,6 +665,7 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse, * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class CreateDataSourceCommand extends $Command diff --git a/clients/client-kendra/src/commands/CreateExperienceCommand.ts b/clients/client-kendra/src/commands/CreateExperienceCommand.ts index b5b106029fdbb..9ab1aa9a03159 100644 --- a/clients/client-kendra/src/commands/CreateExperienceCommand.ts +++ b/clients/client-kendra/src/commands/CreateExperienceCommand.ts @@ -106,6 +106,7 @@ export interface CreateExperienceCommandOutput extends CreateExperienceResponse, * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class CreateExperienceCommand extends $Command diff --git a/clients/client-kendra/src/commands/CreateFaqCommand.ts b/clients/client-kendra/src/commands/CreateFaqCommand.ts index 17dc47b1ed492..9d89a61520b80 100644 --- a/clients/client-kendra/src/commands/CreateFaqCommand.ts +++ b/clients/client-kendra/src/commands/CreateFaqCommand.ts @@ -104,6 +104,7 @@ export interface CreateFaqCommandOutput extends CreateFaqResponse, __MetadataBea * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class CreateFaqCommand extends $Command diff --git a/clients/client-kendra/src/commands/CreateFeaturedResultsSetCommand.ts b/clients/client-kendra/src/commands/CreateFeaturedResultsSetCommand.ts index 05617044eb656..b806da4368def 100644 --- a/clients/client-kendra/src/commands/CreateFeaturedResultsSetCommand.ts +++ b/clients/client-kendra/src/commands/CreateFeaturedResultsSetCommand.ts @@ -124,6 +124,7 @@ export interface CreateFeaturedResultsSetCommandOutput extends CreateFeaturedRes * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class CreateFeaturedResultsSetCommand extends $Command diff --git a/clients/client-kendra/src/commands/CreateIndexCommand.ts b/clients/client-kendra/src/commands/CreateIndexCommand.ts index b70bdc5870866..20711527f33be 100644 --- a/clients/client-kendra/src/commands/CreateIndexCommand.ts +++ b/clients/client-kendra/src/commands/CreateIndexCommand.ts @@ -128,6 +128,7 @@ export interface CreateIndexCommandOutput extends CreateIndexResponse, __Metadat * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class CreateIndexCommand extends $Command diff --git a/clients/client-kendra/src/commands/CreateQuerySuggestionsBlockListCommand.ts b/clients/client-kendra/src/commands/CreateQuerySuggestionsBlockListCommand.ts index 05efe4a36f648..5d0c82cd6539d 100644 --- a/clients/client-kendra/src/commands/CreateQuerySuggestionsBlockListCommand.ts +++ b/clients/client-kendra/src/commands/CreateQuerySuggestionsBlockListCommand.ts @@ -118,6 +118,7 @@ export interface CreateQuerySuggestionsBlockListCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class CreateQuerySuggestionsBlockListCommand extends $Command diff --git a/clients/client-kendra/src/commands/CreateThesaurusCommand.ts b/clients/client-kendra/src/commands/CreateThesaurusCommand.ts index 14e56d6becd16..062186504a39d 100644 --- a/clients/client-kendra/src/commands/CreateThesaurusCommand.ts +++ b/clients/client-kendra/src/commands/CreateThesaurusCommand.ts @@ -103,6 +103,7 @@ export interface CreateThesaurusCommandOutput extends CreateThesaurusResponse, _ * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class CreateThesaurusCommand extends $Command diff --git a/clients/client-kendra/src/commands/DeleteAccessControlConfigurationCommand.ts b/clients/client-kendra/src/commands/DeleteAccessControlConfigurationCommand.ts index 66a00b0593723..012fb68dd47b7 100644 --- a/clients/client-kendra/src/commands/DeleteAccessControlConfigurationCommand.ts +++ b/clients/client-kendra/src/commands/DeleteAccessControlConfigurationCommand.ts @@ -86,6 +86,7 @@ export interface DeleteAccessControlConfigurationCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DeleteAccessControlConfigurationCommand extends $Command diff --git a/clients/client-kendra/src/commands/DeleteDataSourceCommand.ts b/clients/client-kendra/src/commands/DeleteDataSourceCommand.ts index 6d87a0a5960e9..b4e4bd41b1d14 100644 --- a/clients/client-kendra/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-kendra/src/commands/DeleteDataSourceCommand.ts @@ -84,6 +84,7 @@ export interface DeleteDataSourceCommandOutput extends __MetadataBearer {} * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DeleteDataSourceCommand extends $Command diff --git a/clients/client-kendra/src/commands/DeleteExperienceCommand.ts b/clients/client-kendra/src/commands/DeleteExperienceCommand.ts index 802214b2e85a6..ed7ad425b0868 100644 --- a/clients/client-kendra/src/commands/DeleteExperienceCommand.ts +++ b/clients/client-kendra/src/commands/DeleteExperienceCommand.ts @@ -80,6 +80,7 @@ export interface DeleteExperienceCommandOutput extends DeleteExperienceResponse, * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DeleteExperienceCommand extends $Command diff --git a/clients/client-kendra/src/commands/DeleteFaqCommand.ts b/clients/client-kendra/src/commands/DeleteFaqCommand.ts index 92eb6be43570f..35886ba59e871 100644 --- a/clients/client-kendra/src/commands/DeleteFaqCommand.ts +++ b/clients/client-kendra/src/commands/DeleteFaqCommand.ts @@ -78,6 +78,7 @@ export interface DeleteFaqCommandOutput extends __MetadataBearer {} * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DeleteFaqCommand extends $Command diff --git a/clients/client-kendra/src/commands/DeleteIndexCommand.ts b/clients/client-kendra/src/commands/DeleteIndexCommand.ts index e0f716bf706b0..40b1046f926de 100644 --- a/clients/client-kendra/src/commands/DeleteIndexCommand.ts +++ b/clients/client-kendra/src/commands/DeleteIndexCommand.ts @@ -79,6 +79,7 @@ export interface DeleteIndexCommandOutput extends __MetadataBearer {} * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DeleteIndexCommand extends $Command diff --git a/clients/client-kendra/src/commands/DeletePrincipalMappingCommand.ts b/clients/client-kendra/src/commands/DeletePrincipalMappingCommand.ts index 99ad9a7b43b55..1cc07c9e28810 100644 --- a/clients/client-kendra/src/commands/DeletePrincipalMappingCommand.ts +++ b/clients/client-kendra/src/commands/DeletePrincipalMappingCommand.ts @@ -92,6 +92,7 @@ export interface DeletePrincipalMappingCommandOutput extends __MetadataBearer {} * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DeletePrincipalMappingCommand extends $Command diff --git a/clients/client-kendra/src/commands/DeleteQuerySuggestionsBlockListCommand.ts b/clients/client-kendra/src/commands/DeleteQuerySuggestionsBlockListCommand.ts index ac17908eacb5f..ae796a2905a2b 100644 --- a/clients/client-kendra/src/commands/DeleteQuerySuggestionsBlockListCommand.ts +++ b/clients/client-kendra/src/commands/DeleteQuerySuggestionsBlockListCommand.ts @@ -87,6 +87,7 @@ export interface DeleteQuerySuggestionsBlockListCommandOutput extends __Metadata * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DeleteQuerySuggestionsBlockListCommand extends $Command diff --git a/clients/client-kendra/src/commands/DeleteThesaurusCommand.ts b/clients/client-kendra/src/commands/DeleteThesaurusCommand.ts index 7adb8ea734d2c..c8f5c131bb508 100644 --- a/clients/client-kendra/src/commands/DeleteThesaurusCommand.ts +++ b/clients/client-kendra/src/commands/DeleteThesaurusCommand.ts @@ -79,6 +79,7 @@ export interface DeleteThesaurusCommandOutput extends __MetadataBearer {} * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DeleteThesaurusCommand extends $Command diff --git a/clients/client-kendra/src/commands/DescribeAccessControlConfigurationCommand.ts b/clients/client-kendra/src/commands/DescribeAccessControlConfigurationCommand.ts index a04e87f1215e3..4b4abf93b6d48 100644 --- a/clients/client-kendra/src/commands/DescribeAccessControlConfigurationCommand.ts +++ b/clients/client-kendra/src/commands/DescribeAccessControlConfigurationCommand.ts @@ -109,6 +109,7 @@ export interface DescribeAccessControlConfigurationCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DescribeAccessControlConfigurationCommand extends $Command diff --git a/clients/client-kendra/src/commands/DescribeDataSourceCommand.ts b/clients/client-kendra/src/commands/DescribeDataSourceCommand.ts index 0cf6a0bb471f1..b6e261330b72f 100644 --- a/clients/client-kendra/src/commands/DescribeDataSourceCommand.ts +++ b/clients/client-kendra/src/commands/DescribeDataSourceCommand.ts @@ -640,6 +640,7 @@ export interface DescribeDataSourceCommandOutput extends DescribeDataSourceRespo * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DescribeDataSourceCommand extends $Command diff --git a/clients/client-kendra/src/commands/DescribeExperienceCommand.ts b/clients/client-kendra/src/commands/DescribeExperienceCommand.ts index e87e0a2bb6808..e9f2cb8b9a643 100644 --- a/clients/client-kendra/src/commands/DescribeExperienceCommand.ts +++ b/clients/client-kendra/src/commands/DescribeExperienceCommand.ts @@ -107,6 +107,7 @@ export interface DescribeExperienceCommandOutput extends DescribeExperienceRespo * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DescribeExperienceCommand extends $Command diff --git a/clients/client-kendra/src/commands/DescribeFaqCommand.ts b/clients/client-kendra/src/commands/DescribeFaqCommand.ts index ba45a2af381d1..b3d34d5773dac 100644 --- a/clients/client-kendra/src/commands/DescribeFaqCommand.ts +++ b/clients/client-kendra/src/commands/DescribeFaqCommand.ts @@ -90,6 +90,7 @@ export interface DescribeFaqCommandOutput extends DescribeFaqResponse, __Metadat * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DescribeFaqCommand extends $Command diff --git a/clients/client-kendra/src/commands/DescribeFeaturedResultsSetCommand.ts b/clients/client-kendra/src/commands/DescribeFeaturedResultsSetCommand.ts index 287c4126a9d8f..1e92ef4ec6a43 100644 --- a/clients/client-kendra/src/commands/DescribeFeaturedResultsSetCommand.ts +++ b/clients/client-kendra/src/commands/DescribeFeaturedResultsSetCommand.ts @@ -98,6 +98,7 @@ export interface DescribeFeaturedResultsSetCommandOutput extends DescribeFeature * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DescribeFeaturedResultsSetCommand extends $Command diff --git a/clients/client-kendra/src/commands/DescribeIndexCommand.ts b/clients/client-kendra/src/commands/DescribeIndexCommand.ts index e92155d3ceba2..f0345bf300573 100644 --- a/clients/client-kendra/src/commands/DescribeIndexCommand.ts +++ b/clients/client-kendra/src/commands/DescribeIndexCommand.ts @@ -145,6 +145,7 @@ export interface DescribeIndexCommandOutput extends DescribeIndexResponse, __Met * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DescribeIndexCommand extends $Command diff --git a/clients/client-kendra/src/commands/DescribePrincipalMappingCommand.ts b/clients/client-kendra/src/commands/DescribePrincipalMappingCommand.ts index 743386ba337a4..f69a71ae935c7 100644 --- a/clients/client-kendra/src/commands/DescribePrincipalMappingCommand.ts +++ b/clients/client-kendra/src/commands/DescribePrincipalMappingCommand.ts @@ -95,6 +95,7 @@ export interface DescribePrincipalMappingCommandOutput extends DescribePrincipal * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DescribePrincipalMappingCommand extends $Command diff --git a/clients/client-kendra/src/commands/DescribeQuerySuggestionsBlockListCommand.ts b/clients/client-kendra/src/commands/DescribeQuerySuggestionsBlockListCommand.ts index f184e9842dfcf..a7d7850cd067e 100644 --- a/clients/client-kendra/src/commands/DescribeQuerySuggestionsBlockListCommand.ts +++ b/clients/client-kendra/src/commands/DescribeQuerySuggestionsBlockListCommand.ts @@ -104,6 +104,7 @@ export interface DescribeQuerySuggestionsBlockListCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DescribeQuerySuggestionsBlockListCommand extends $Command diff --git a/clients/client-kendra/src/commands/DescribeQuerySuggestionsConfigCommand.ts b/clients/client-kendra/src/commands/DescribeQuerySuggestionsConfigCommand.ts index 414f46e164149..8523c1aba31d3 100644 --- a/clients/client-kendra/src/commands/DescribeQuerySuggestionsConfigCommand.ts +++ b/clients/client-kendra/src/commands/DescribeQuerySuggestionsConfigCommand.ts @@ -102,6 +102,7 @@ export interface DescribeQuerySuggestionsConfigCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DescribeQuerySuggestionsConfigCommand extends $Command diff --git a/clients/client-kendra/src/commands/DescribeThesaurusCommand.ts b/clients/client-kendra/src/commands/DescribeThesaurusCommand.ts index c1c19c65e1b42..281e23be6bfc6 100644 --- a/clients/client-kendra/src/commands/DescribeThesaurusCommand.ts +++ b/clients/client-kendra/src/commands/DescribeThesaurusCommand.ts @@ -91,6 +91,7 @@ export interface DescribeThesaurusCommandOutput extends DescribeThesaurusRespons * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DescribeThesaurusCommand extends $Command diff --git a/clients/client-kendra/src/commands/DisassociateEntitiesFromExperienceCommand.ts b/clients/client-kendra/src/commands/DisassociateEntitiesFromExperienceCommand.ts index 5a878a2bbad10..19d4edc0e738b 100644 --- a/clients/client-kendra/src/commands/DisassociateEntitiesFromExperienceCommand.ts +++ b/clients/client-kendra/src/commands/DisassociateEntitiesFromExperienceCommand.ts @@ -99,6 +99,7 @@ export interface DisassociateEntitiesFromExperienceCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DisassociateEntitiesFromExperienceCommand extends $Command diff --git a/clients/client-kendra/src/commands/DisassociatePersonasFromEntitiesCommand.ts b/clients/client-kendra/src/commands/DisassociatePersonasFromEntitiesCommand.ts index 4d03bc3a9f80b..83147edcfa91a 100644 --- a/clients/client-kendra/src/commands/DisassociatePersonasFromEntitiesCommand.ts +++ b/clients/client-kendra/src/commands/DisassociatePersonasFromEntitiesCommand.ts @@ -93,6 +93,7 @@ export interface DisassociatePersonasFromEntitiesCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class DisassociatePersonasFromEntitiesCommand extends $Command diff --git a/clients/client-kendra/src/commands/GetQuerySuggestionsCommand.ts b/clients/client-kendra/src/commands/GetQuerySuggestionsCommand.ts index 8619b27bf6870..340120ec065dc 100644 --- a/clients/client-kendra/src/commands/GetQuerySuggestionsCommand.ts +++ b/clients/client-kendra/src/commands/GetQuerySuggestionsCommand.ts @@ -233,6 +233,7 @@ export interface GetQuerySuggestionsCommandOutput extends GetQuerySuggestionsRes * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class GetQuerySuggestionsCommand extends $Command diff --git a/clients/client-kendra/src/commands/GetSnapshotsCommand.ts b/clients/client-kendra/src/commands/GetSnapshotsCommand.ts index e086183339644..20298f2b886d8 100644 --- a/clients/client-kendra/src/commands/GetSnapshotsCommand.ts +++ b/clients/client-kendra/src/commands/GetSnapshotsCommand.ts @@ -88,6 +88,7 @@ export interface GetSnapshotsCommandOutput extends GetSnapshotsResponse, __Metad * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class GetSnapshotsCommand extends $Command diff --git a/clients/client-kendra/src/commands/ListAccessControlConfigurationsCommand.ts b/clients/client-kendra/src/commands/ListAccessControlConfigurationsCommand.ts index 08ab6485f5eb0..cb5e47113d4eb 100644 --- a/clients/client-kendra/src/commands/ListAccessControlConfigurationsCommand.ts +++ b/clients/client-kendra/src/commands/ListAccessControlConfigurationsCommand.ts @@ -90,6 +90,7 @@ export interface ListAccessControlConfigurationsCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class ListAccessControlConfigurationsCommand extends $Command diff --git a/clients/client-kendra/src/commands/ListDataSourceSyncJobsCommand.ts b/clients/client-kendra/src/commands/ListDataSourceSyncJobsCommand.ts index 23f1314a3fb6b..5fe9c6248011a 100644 --- a/clients/client-kendra/src/commands/ListDataSourceSyncJobsCommand.ts +++ b/clients/client-kendra/src/commands/ListDataSourceSyncJobsCommand.ts @@ -105,6 +105,7 @@ export interface ListDataSourceSyncJobsCommandOutput extends ListDataSourceSyncJ * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class ListDataSourceSyncJobsCommand extends $Command diff --git a/clients/client-kendra/src/commands/ListDataSourcesCommand.ts b/clients/client-kendra/src/commands/ListDataSourcesCommand.ts index b748bd6dbc080..79cf1a0b8d5a4 100644 --- a/clients/client-kendra/src/commands/ListDataSourcesCommand.ts +++ b/clients/client-kendra/src/commands/ListDataSourcesCommand.ts @@ -88,6 +88,7 @@ export interface ListDataSourcesCommandOutput extends ListDataSourcesResponse, _ * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class ListDataSourcesCommand extends $Command diff --git a/clients/client-kendra/src/commands/ListEntityPersonasCommand.ts b/clients/client-kendra/src/commands/ListEntityPersonasCommand.ts index a75c8cbbe8b9d..e4790db4220c4 100644 --- a/clients/client-kendra/src/commands/ListEntityPersonasCommand.ts +++ b/clients/client-kendra/src/commands/ListEntityPersonasCommand.ts @@ -87,6 +87,7 @@ export interface ListEntityPersonasCommandOutput extends ListEntityPersonasRespo * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class ListEntityPersonasCommand extends $Command diff --git a/clients/client-kendra/src/commands/ListExperienceEntitiesCommand.ts b/clients/client-kendra/src/commands/ListExperienceEntitiesCommand.ts index 8b9da8a97dd9f..d4f40dcfdabbb 100644 --- a/clients/client-kendra/src/commands/ListExperienceEntitiesCommand.ts +++ b/clients/client-kendra/src/commands/ListExperienceEntitiesCommand.ts @@ -98,6 +98,7 @@ export interface ListExperienceEntitiesCommandOutput extends ListExperienceEntit * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class ListExperienceEntitiesCommand extends $Command diff --git a/clients/client-kendra/src/commands/ListExperiencesCommand.ts b/clients/client-kendra/src/commands/ListExperiencesCommand.ts index f4d0c58dae07e..7ab158ba393cb 100644 --- a/clients/client-kendra/src/commands/ListExperiencesCommand.ts +++ b/clients/client-kendra/src/commands/ListExperiencesCommand.ts @@ -94,6 +94,7 @@ export interface ListExperiencesCommandOutput extends ListExperiencesResponse, _ * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class ListExperiencesCommand extends $Command diff --git a/clients/client-kendra/src/commands/ListFaqsCommand.ts b/clients/client-kendra/src/commands/ListFaqsCommand.ts index e03bae0f17b21..baeb53e300ef9 100644 --- a/clients/client-kendra/src/commands/ListFaqsCommand.ts +++ b/clients/client-kendra/src/commands/ListFaqsCommand.ts @@ -88,6 +88,7 @@ export interface ListFaqsCommandOutput extends ListFaqsResponse, __MetadataBeare * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class ListFaqsCommand extends $Command diff --git a/clients/client-kendra/src/commands/ListFeaturedResultsSetsCommand.ts b/clients/client-kendra/src/commands/ListFeaturedResultsSetsCommand.ts index 4f3302c3b0d99..35d1995cebdf4 100644 --- a/clients/client-kendra/src/commands/ListFeaturedResultsSetsCommand.ts +++ b/clients/client-kendra/src/commands/ListFeaturedResultsSetsCommand.ts @@ -88,6 +88,7 @@ export interface ListFeaturedResultsSetsCommandOutput extends ListFeaturedResult * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class ListFeaturedResultsSetsCommand extends $Command diff --git a/clients/client-kendra/src/commands/ListGroupsOlderThanOrderingIdCommand.ts b/clients/client-kendra/src/commands/ListGroupsOlderThanOrderingIdCommand.ts index 43cb5f33ee9c7..1cbd9e3dc1abe 100644 --- a/clients/client-kendra/src/commands/ListGroupsOlderThanOrderingIdCommand.ts +++ b/clients/client-kendra/src/commands/ListGroupsOlderThanOrderingIdCommand.ts @@ -97,6 +97,7 @@ export interface ListGroupsOlderThanOrderingIdCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class ListGroupsOlderThanOrderingIdCommand extends $Command diff --git a/clients/client-kendra/src/commands/ListIndicesCommand.ts b/clients/client-kendra/src/commands/ListIndicesCommand.ts index 2690ef27b9696..64ce8f71dbc6f 100644 --- a/clients/client-kendra/src/commands/ListIndicesCommand.ts +++ b/clients/client-kendra/src/commands/ListIndicesCommand.ts @@ -82,6 +82,7 @@ export interface ListIndicesCommandOutput extends ListIndicesResponse, __Metadat * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class ListIndicesCommand extends $Command diff --git a/clients/client-kendra/src/commands/ListQuerySuggestionsBlockListsCommand.ts b/clients/client-kendra/src/commands/ListQuerySuggestionsBlockListsCommand.ts index 751b59b1c2ecf..0757d0a580149 100644 --- a/clients/client-kendra/src/commands/ListQuerySuggestionsBlockListsCommand.ts +++ b/clients/client-kendra/src/commands/ListQuerySuggestionsBlockListsCommand.ts @@ -98,6 +98,7 @@ export interface ListQuerySuggestionsBlockListsCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class ListQuerySuggestionsBlockListsCommand extends $Command diff --git a/clients/client-kendra/src/commands/ListTagsForResourceCommand.ts b/clients/client-kendra/src/commands/ListTagsForResourceCommand.ts index 6447dd0ace748..7ca5a4f901c96 100644 --- a/clients/client-kendra/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kendra/src/commands/ListTagsForResourceCommand.ts @@ -81,6 +81,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-kendra/src/commands/ListThesauriCommand.ts b/clients/client-kendra/src/commands/ListThesauriCommand.ts index bcae781a763f4..e12e865554da4 100644 --- a/clients/client-kendra/src/commands/ListThesauriCommand.ts +++ b/clients/client-kendra/src/commands/ListThesauriCommand.ts @@ -86,6 +86,7 @@ export interface ListThesauriCommandOutput extends ListThesauriResponse, __Metad * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class ListThesauriCommand extends $Command diff --git a/clients/client-kendra/src/commands/PutPrincipalMappingCommand.ts b/clients/client-kendra/src/commands/PutPrincipalMappingCommand.ts index d6bcfe641f0eb..6aed22f2aea6c 100644 --- a/clients/client-kendra/src/commands/PutPrincipalMappingCommand.ts +++ b/clients/client-kendra/src/commands/PutPrincipalMappingCommand.ts @@ -115,6 +115,7 @@ export interface PutPrincipalMappingCommandOutput extends __MetadataBearer {} * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class PutPrincipalMappingCommand extends $Command diff --git a/clients/client-kendra/src/commands/QueryCommand.ts b/clients/client-kendra/src/commands/QueryCommand.ts index 67038d3a682db..5e706a4b56341 100644 --- a/clients/client-kendra/src/commands/QueryCommand.ts +++ b/clients/client-kendra/src/commands/QueryCommand.ts @@ -490,6 +490,7 @@ export interface QueryCommandOutput extends QueryResult, __MetadataBearer {} * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class QueryCommand extends $Command diff --git a/clients/client-kendra/src/commands/RetrieveCommand.ts b/clients/client-kendra/src/commands/RetrieveCommand.ts index 91a050eecf21d..7d9a3d566cadc 100644 --- a/clients/client-kendra/src/commands/RetrieveCommand.ts +++ b/clients/client-kendra/src/commands/RetrieveCommand.ts @@ -266,6 +266,7 @@ export interface RetrieveCommandOutput extends RetrieveResult, __MetadataBearer * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class RetrieveCommand extends $Command diff --git a/clients/client-kendra/src/commands/StartDataSourceSyncJobCommand.ts b/clients/client-kendra/src/commands/StartDataSourceSyncJobCommand.ts index d41e54d6e9647..f240d326e6420 100644 --- a/clients/client-kendra/src/commands/StartDataSourceSyncJobCommand.ts +++ b/clients/client-kendra/src/commands/StartDataSourceSyncJobCommand.ts @@ -89,6 +89,7 @@ export interface StartDataSourceSyncJobCommandOutput extends StartDataSourceSync * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class StartDataSourceSyncJobCommand extends $Command diff --git a/clients/client-kendra/src/commands/StopDataSourceSyncJobCommand.ts b/clients/client-kendra/src/commands/StopDataSourceSyncJobCommand.ts index 4ded32f8b2177..5cb90e9069e9a 100644 --- a/clients/client-kendra/src/commands/StopDataSourceSyncJobCommand.ts +++ b/clients/client-kendra/src/commands/StopDataSourceSyncJobCommand.ts @@ -75,6 +75,7 @@ export interface StopDataSourceSyncJobCommandOutput extends __MetadataBearer {} * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class StopDataSourceSyncJobCommand extends $Command diff --git a/clients/client-kendra/src/commands/SubmitFeedbackCommand.ts b/clients/client-kendra/src/commands/SubmitFeedbackCommand.ts index 8ca2de2d7cd5b..7cdad57e6e2e1 100644 --- a/clients/client-kendra/src/commands/SubmitFeedbackCommand.ts +++ b/clients/client-kendra/src/commands/SubmitFeedbackCommand.ts @@ -94,6 +94,7 @@ export interface SubmitFeedbackCommandOutput extends __MetadataBearer {} * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class SubmitFeedbackCommand extends $Command diff --git a/clients/client-kendra/src/commands/TagResourceCommand.ts b/clients/client-kendra/src/commands/TagResourceCommand.ts index 00740cb9b1afe..38760f881fc19 100644 --- a/clients/client-kendra/src/commands/TagResourceCommand.ts +++ b/clients/client-kendra/src/commands/TagResourceCommand.ts @@ -80,6 +80,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-kendra/src/commands/UntagResourceCommand.ts b/clients/client-kendra/src/commands/UntagResourceCommand.ts index af67327546945..1a86e01d84bc4 100644 --- a/clients/client-kendra/src/commands/UntagResourceCommand.ts +++ b/clients/client-kendra/src/commands/UntagResourceCommand.ts @@ -76,6 +76,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-kendra/src/commands/UpdateAccessControlConfigurationCommand.ts b/clients/client-kendra/src/commands/UpdateAccessControlConfigurationCommand.ts index 1a51f2ed05441..22b0d96ca98d3 100644 --- a/clients/client-kendra/src/commands/UpdateAccessControlConfigurationCommand.ts +++ b/clients/client-kendra/src/commands/UpdateAccessControlConfigurationCommand.ts @@ -135,6 +135,7 @@ export interface UpdateAccessControlConfigurationCommandOutput * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class UpdateAccessControlConfigurationCommand extends $Command diff --git a/clients/client-kendra/src/commands/UpdateDataSourceCommand.ts b/clients/client-kendra/src/commands/UpdateDataSourceCommand.ts index eeab6baccda04..b7a1fcb14e33a 100644 --- a/clients/client-kendra/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-kendra/src/commands/UpdateDataSourceCommand.ts @@ -636,6 +636,7 @@ export interface UpdateDataSourceCommandOutput extends __MetadataBearer {} * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class UpdateDataSourceCommand extends $Command diff --git a/clients/client-kendra/src/commands/UpdateExperienceCommand.ts b/clients/client-kendra/src/commands/UpdateExperienceCommand.ts index 30d65bba73db6..3e66fa140816a 100644 --- a/clients/client-kendra/src/commands/UpdateExperienceCommand.ts +++ b/clients/client-kendra/src/commands/UpdateExperienceCommand.ts @@ -97,6 +97,7 @@ export interface UpdateExperienceCommandOutput extends __MetadataBearer {} * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class UpdateExperienceCommand extends $Command diff --git a/clients/client-kendra/src/commands/UpdateFeaturedResultsSetCommand.ts b/clients/client-kendra/src/commands/UpdateFeaturedResultsSetCommand.ts index b371861523bc0..ed29d2b2187da 100644 --- a/clients/client-kendra/src/commands/UpdateFeaturedResultsSetCommand.ts +++ b/clients/client-kendra/src/commands/UpdateFeaturedResultsSetCommand.ts @@ -112,6 +112,7 @@ export interface UpdateFeaturedResultsSetCommandOutput extends UpdateFeaturedRes * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class UpdateFeaturedResultsSetCommand extends $Command diff --git a/clients/client-kendra/src/commands/UpdateIndexCommand.ts b/clients/client-kendra/src/commands/UpdateIndexCommand.ts index 7f71f7d8b5bb2..15e33125200ac 100644 --- a/clients/client-kendra/src/commands/UpdateIndexCommand.ts +++ b/clients/client-kendra/src/commands/UpdateIndexCommand.ts @@ -132,6 +132,7 @@ export interface UpdateIndexCommandOutput extends __MetadataBearer {} * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class UpdateIndexCommand extends $Command diff --git a/clients/client-kendra/src/commands/UpdateQuerySuggestionsBlockListCommand.ts b/clients/client-kendra/src/commands/UpdateQuerySuggestionsBlockListCommand.ts index 87ef39f85e7a3..8b595f1290710 100644 --- a/clients/client-kendra/src/commands/UpdateQuerySuggestionsBlockListCommand.ts +++ b/clients/client-kendra/src/commands/UpdateQuerySuggestionsBlockListCommand.ts @@ -98,6 +98,7 @@ export interface UpdateQuerySuggestionsBlockListCommandOutput extends __Metadata * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class UpdateQuerySuggestionsBlockListCommand extends $Command diff --git a/clients/client-kendra/src/commands/UpdateQuerySuggestionsConfigCommand.ts b/clients/client-kendra/src/commands/UpdateQuerySuggestionsConfigCommand.ts index 321e0beaea4a8..f0ea798fa97d1 100644 --- a/clients/client-kendra/src/commands/UpdateQuerySuggestionsConfigCommand.ts +++ b/clients/client-kendra/src/commands/UpdateQuerySuggestionsConfigCommand.ts @@ -105,6 +105,7 @@ export interface UpdateQuerySuggestionsConfigCommandOutput extends __MetadataBea * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class UpdateQuerySuggestionsConfigCommand extends $Command diff --git a/clients/client-kendra/src/commands/UpdateThesaurusCommand.ts b/clients/client-kendra/src/commands/UpdateThesaurusCommand.ts index 3b7a7532be1e3..11fd07e3ad724 100644 --- a/clients/client-kendra/src/commands/UpdateThesaurusCommand.ts +++ b/clients/client-kendra/src/commands/UpdateThesaurusCommand.ts @@ -85,6 +85,7 @@ export interface UpdateThesaurusCommandOutput extends __MetadataBearer {} * @throws {@link KendraServiceException} *

Base exception class for all service exceptions from Kendra service.

* + * * @public */ export class UpdateThesaurusCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/CreateKeyspaceCommand.ts b/clients/client-keyspaces/src/commands/CreateKeyspaceCommand.ts index 58659741ff128..c3d5a3e38e994 100644 --- a/clients/client-keyspaces/src/commands/CreateKeyspaceCommand.ts +++ b/clients/client-keyspaces/src/commands/CreateKeyspaceCommand.ts @@ -91,6 +91,7 @@ export interface CreateKeyspaceCommandOutput extends CreateKeyspaceResponse, __M * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class CreateKeyspaceCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/CreateTableCommand.ts b/clients/client-keyspaces/src/commands/CreateTableCommand.ts index 2a42a94b94d87..bc0392cc8e24a 100644 --- a/clients/client-keyspaces/src/commands/CreateTableCommand.ts +++ b/clients/client-keyspaces/src/commands/CreateTableCommand.ts @@ -184,6 +184,7 @@ export interface CreateTableCommandOutput extends CreateTableResponse, __Metadat * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class CreateTableCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/CreateTypeCommand.ts b/clients/client-keyspaces/src/commands/CreateTypeCommand.ts index e3740e3f53961..af682e20b3def 100644 --- a/clients/client-keyspaces/src/commands/CreateTypeCommand.ts +++ b/clients/client-keyspaces/src/commands/CreateTypeCommand.ts @@ -91,6 +91,7 @@ export interface CreateTypeCommandOutput extends CreateTypeResponse, __MetadataB * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class CreateTypeCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/DeleteKeyspaceCommand.ts b/clients/client-keyspaces/src/commands/DeleteKeyspaceCommand.ts index ad495d78f8f61..cce98fb6868c6 100644 --- a/clients/client-keyspaces/src/commands/DeleteKeyspaceCommand.ts +++ b/clients/client-keyspaces/src/commands/DeleteKeyspaceCommand.ts @@ -75,6 +75,7 @@ export interface DeleteKeyspaceCommandOutput extends DeleteKeyspaceResponse, __M * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class DeleteKeyspaceCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/DeleteTableCommand.ts b/clients/client-keyspaces/src/commands/DeleteTableCommand.ts index a84e7ab5f926d..417d6d03b8fb3 100644 --- a/clients/client-keyspaces/src/commands/DeleteTableCommand.ts +++ b/clients/client-keyspaces/src/commands/DeleteTableCommand.ts @@ -80,6 +80,7 @@ export interface DeleteTableCommandOutput extends DeleteTableResponse, __Metadat * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class DeleteTableCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/DeleteTypeCommand.ts b/clients/client-keyspaces/src/commands/DeleteTypeCommand.ts index 3e4bb2a9ca896..54a3f1c323c0c 100644 --- a/clients/client-keyspaces/src/commands/DeleteTypeCommand.ts +++ b/clients/client-keyspaces/src/commands/DeleteTypeCommand.ts @@ -84,6 +84,7 @@ export interface DeleteTypeCommandOutput extends DeleteTypeResponse, __MetadataB * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class DeleteTypeCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/GetKeyspaceCommand.ts b/clients/client-keyspaces/src/commands/GetKeyspaceCommand.ts index c55129dfcc56b..6e73777a35a59 100644 --- a/clients/client-keyspaces/src/commands/GetKeyspaceCommand.ts +++ b/clients/client-keyspaces/src/commands/GetKeyspaceCommand.ts @@ -85,6 +85,7 @@ export interface GetKeyspaceCommandOutput extends GetKeyspaceResponse, __Metadat * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class GetKeyspaceCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/GetTableAutoScalingSettingsCommand.ts b/clients/client-keyspaces/src/commands/GetTableAutoScalingSettingsCommand.ts index ea56bc9446385..ab1cbb0446aad 100644 --- a/clients/client-keyspaces/src/commands/GetTableAutoScalingSettingsCommand.ts +++ b/clients/client-keyspaces/src/commands/GetTableAutoScalingSettingsCommand.ts @@ -160,6 +160,7 @@ export interface GetTableAutoScalingSettingsCommandOutput * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class GetTableAutoScalingSettingsCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/GetTableCommand.ts b/clients/client-keyspaces/src/commands/GetTableCommand.ts index 22bd350274908..a4224b3e839ca 100644 --- a/clients/client-keyspaces/src/commands/GetTableCommand.ts +++ b/clients/client-keyspaces/src/commands/GetTableCommand.ts @@ -141,6 +141,7 @@ export interface GetTableCommandOutput extends GetTableResponse, __MetadataBeare * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class GetTableCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/GetTypeCommand.ts b/clients/client-keyspaces/src/commands/GetTypeCommand.ts index 43411d36008de..78e9b8eca37ae 100644 --- a/clients/client-keyspaces/src/commands/GetTypeCommand.ts +++ b/clients/client-keyspaces/src/commands/GetTypeCommand.ts @@ -97,6 +97,7 @@ export interface GetTypeCommandOutput extends GetTypeResponse, __MetadataBearer * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class GetTypeCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/ListKeyspacesCommand.ts b/clients/client-keyspaces/src/commands/ListKeyspacesCommand.ts index 8be92eca13de5..df3f567cbea3f 100644 --- a/clients/client-keyspaces/src/commands/ListKeyspacesCommand.ts +++ b/clients/client-keyspaces/src/commands/ListKeyspacesCommand.ts @@ -83,6 +83,7 @@ export interface ListKeyspacesCommandOutput extends ListKeyspacesResponse, __Met * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class ListKeyspacesCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/ListTablesCommand.ts b/clients/client-keyspaces/src/commands/ListTablesCommand.ts index 4c8fd065f3385..04d0edae1cafc 100644 --- a/clients/client-keyspaces/src/commands/ListTablesCommand.ts +++ b/clients/client-keyspaces/src/commands/ListTablesCommand.ts @@ -84,6 +84,7 @@ export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataB * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class ListTablesCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/ListTagsForResourceCommand.ts b/clients/client-keyspaces/src/commands/ListTagsForResourceCommand.ts index 2a0c4528c0184..6ea148776acce 100644 --- a/clients/client-keyspaces/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-keyspaces/src/commands/ListTagsForResourceCommand.ts @@ -83,6 +83,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/ListTypesCommand.ts b/clients/client-keyspaces/src/commands/ListTypesCommand.ts index 2cbbf968b82a5..49ae759363d96 100644 --- a/clients/client-keyspaces/src/commands/ListTypesCommand.ts +++ b/clients/client-keyspaces/src/commands/ListTypesCommand.ts @@ -83,6 +83,7 @@ export interface ListTypesCommandOutput extends ListTypesResponse, __MetadataBea * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class ListTypesCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/RestoreTableCommand.ts b/clients/client-keyspaces/src/commands/RestoreTableCommand.ts index f93812a2060ad..344b051ac1707 100644 --- a/clients/client-keyspaces/src/commands/RestoreTableCommand.ts +++ b/clients/client-keyspaces/src/commands/RestoreTableCommand.ts @@ -191,6 +191,7 @@ export interface RestoreTableCommandOutput extends RestoreTableResponse, __Metad * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class RestoreTableCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/TagResourceCommand.ts b/clients/client-keyspaces/src/commands/TagResourceCommand.ts index f67885f8a9b10..0c45a2d3974b7 100644 --- a/clients/client-keyspaces/src/commands/TagResourceCommand.ts +++ b/clients/client-keyspaces/src/commands/TagResourceCommand.ts @@ -87,6 +87,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/UntagResourceCommand.ts b/clients/client-keyspaces/src/commands/UntagResourceCommand.ts index 52c25b4b51125..95fde2ada4613 100644 --- a/clients/client-keyspaces/src/commands/UntagResourceCommand.ts +++ b/clients/client-keyspaces/src/commands/UntagResourceCommand.ts @@ -81,6 +81,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/UpdateKeyspaceCommand.ts b/clients/client-keyspaces/src/commands/UpdateKeyspaceCommand.ts index fccf3c2d39bfc..3b30da6f3e32c 100644 --- a/clients/client-keyspaces/src/commands/UpdateKeyspaceCommand.ts +++ b/clients/client-keyspaces/src/commands/UpdateKeyspaceCommand.ts @@ -186,6 +186,7 @@ export interface UpdateKeyspaceCommandOutput extends UpdateKeyspaceResponse, __M * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class UpdateKeyspaceCommand extends $Command diff --git a/clients/client-keyspaces/src/commands/UpdateTableCommand.ts b/clients/client-keyspaces/src/commands/UpdateTableCommand.ts index bcf3f558a1e2d..23f925b84bd49 100644 --- a/clients/client-keyspaces/src/commands/UpdateTableCommand.ts +++ b/clients/client-keyspaces/src/commands/UpdateTableCommand.ts @@ -152,6 +152,7 @@ export interface UpdateTableCommandOutput extends UpdateTableResponse, __Metadat * @throws {@link KeyspacesServiceException} *

Base exception class for all service exceptions from Keyspaces service.

* + * * @public */ export class UpdateTableCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts index ae3b1964cf03d..4067be83bac7e 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts @@ -102,6 +102,7 @@ export interface AddApplicationCloudWatchLoggingOptionCommandOutput * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class AddApplicationCloudWatchLoggingOptionCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputCommand.ts index e138b4e30874b..d897da01a11c4 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputCommand.ts @@ -181,6 +181,7 @@ export interface AddApplicationInputCommandOutput extends AddApplicationInputRes * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class AddApplicationInputCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputProcessingConfigurationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputProcessingConfigurationCommand.ts index fdd9c27c0898d..11ebb4e388bd4 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputProcessingConfigurationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputProcessingConfigurationCommand.ts @@ -102,6 +102,7 @@ export interface AddApplicationInputProcessingConfigurationCommandOutput * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class AddApplicationInputProcessingConfigurationCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationOutputCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationOutputCommand.ts index e1b4840d818c2..5a2f9d78eea8a 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationOutputCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationOutputCommand.ts @@ -126,6 +126,7 @@ export interface AddApplicationOutputCommandOutput extends AddApplicationOutputR * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class AddApplicationOutputCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationReferenceDataSourceCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationReferenceDataSourceCommand.ts index f85e8392444b0..618976223b171 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationReferenceDataSourceCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationReferenceDataSourceCommand.ts @@ -153,6 +153,7 @@ export interface AddApplicationReferenceDataSourceCommandOutput * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class AddApplicationReferenceDataSourceCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationVpcConfigurationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationVpcConfigurationCommand.ts index fe00eac430889..e7afe2b050f46 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationVpcConfigurationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationVpcConfigurationCommand.ts @@ -114,6 +114,7 @@ export interface AddApplicationVpcConfigurationCommandOutput * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class AddApplicationVpcConfigurationCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationCommand.ts index 73f1ab3239c86..d103c5f24e9f0 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationCommand.ts @@ -524,6 +524,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationPresignedUrlCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationPresignedUrlCommand.ts index 99ac69ca08df8..30d6a3f3f48e2 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationPresignedUrlCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationPresignedUrlCommand.ts @@ -87,6 +87,7 @@ export interface CreateApplicationPresignedUrlCommandOutput * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class CreateApplicationPresignedUrlCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationSnapshotCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationSnapshotCommand.ts index 5170f024ab6b8..6561c0bc0246b 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationSnapshotCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationSnapshotCommand.ts @@ -80,6 +80,7 @@ export interface CreateApplicationSnapshotCommandOutput extends CreateApplicatio * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class CreateApplicationSnapshotCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts index f1878fc053327..e8952fcf18f4d 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts @@ -100,6 +100,7 @@ export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class DeleteApplicationCloudWatchLoggingOptionCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCommand.ts index f6b0001a50532..a1ee8e6486818 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCommand.ts @@ -78,6 +78,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts index 6cdbc27ff78e6..a3915ed0a8913 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts @@ -88,6 +88,7 @@ export interface DeleteApplicationInputProcessingConfigurationCommandOutput * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class DeleteApplicationInputProcessingConfigurationCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationOutputCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationOutputCommand.ts index d01a64e28dc07..d861534eda792 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationOutputCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationOutputCommand.ts @@ -81,6 +81,7 @@ export interface DeleteApplicationOutputCommandOutput extends DeleteApplicationO * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class DeleteApplicationOutputCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationReferenceDataSourceCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationReferenceDataSourceCommand.ts index bdfd811579cc5..ec300f807b6ee 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationReferenceDataSourceCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationReferenceDataSourceCommand.ts @@ -89,6 +89,7 @@ export interface DeleteApplicationReferenceDataSourceCommandOutput * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class DeleteApplicationReferenceDataSourceCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationSnapshotCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationSnapshotCommand.ts index c8973b5ec41ec..844ae354c9319 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationSnapshotCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationSnapshotCommand.ts @@ -80,6 +80,7 @@ export interface DeleteApplicationSnapshotCommandOutput extends DeleteApplicatio * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class DeleteApplicationSnapshotCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationVpcConfigurationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationVpcConfigurationCommand.ts index cc481260f0cb3..e4a6ddbc4284c 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationVpcConfigurationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationVpcConfigurationCommand.ts @@ -89,6 +89,7 @@ export interface DeleteApplicationVpcConfigurationCommandOutput * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class DeleteApplicationVpcConfigurationCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationCommand.ts index 6743aeb0bc7b4..1706c4cd36829 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationCommand.ts @@ -309,6 +309,7 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class DescribeApplicationCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationOperationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationOperationCommand.ts index 86b07e7e5a14f..cd6696a825c65 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationOperationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationOperationCommand.ts @@ -90,6 +90,7 @@ export interface DescribeApplicationOperationCommandOutput * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class DescribeApplicationOperationCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationSnapshotCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationSnapshotCommand.ts index 55398575b4005..088ce10601cd6 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationSnapshotCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationSnapshotCommand.ts @@ -78,6 +78,7 @@ export interface DescribeApplicationSnapshotCommandOutput * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class DescribeApplicationSnapshotCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationVersionCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationVersionCommand.ts index 5b4061bc070c6..6e791377b42fe 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationVersionCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationVersionCommand.ts @@ -311,6 +311,7 @@ export interface DescribeApplicationVersionCommandOutput extends DescribeApplica * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class DescribeApplicationVersionCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/DiscoverInputSchemaCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DiscoverInputSchemaCommand.ts index 54d0446855abc..e271a60a84b3e 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DiscoverInputSchemaCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DiscoverInputSchemaCommand.ts @@ -131,6 +131,7 @@ export interface DiscoverInputSchemaCommandOutput extends DiscoverInputSchemaRes * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class DiscoverInputSchemaCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationOperationsCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationOperationsCommand.ts index a508fdc9bd218..a60b62c997f04 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationOperationsCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationOperationsCommand.ts @@ -82,6 +82,7 @@ export interface ListApplicationOperationsCommandOutput extends ListApplicationO * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class ListApplicationOperationsCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationSnapshotsCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationSnapshotsCommand.ts index 6e1e60b73bce1..c773bb2ab3afa 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationSnapshotsCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationSnapshotsCommand.ts @@ -77,6 +77,7 @@ export interface ListApplicationSnapshotsCommandOutput extends ListApplicationSn * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class ListApplicationSnapshotsCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationVersionsCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationVersionsCommand.ts index 28039676093c7..7cceef1f077d8 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationVersionsCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationVersionsCommand.ts @@ -82,6 +82,7 @@ export interface ListApplicationVersionsCommandOutput extends ListApplicationVer * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class ListApplicationVersionsCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationsCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationsCommand.ts index 2ecf7b720ac18..b0701beffdf70 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationsCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationsCommand.ts @@ -77,6 +77,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/ListTagsForResourceCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/ListTagsForResourceCommand.ts index 32e5407b46bae..7fec1b67e022d 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/RollbackApplicationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/RollbackApplicationCommand.ts index 7255f152d76a4..3b73ef0ac4301 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/RollbackApplicationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/RollbackApplicationCommand.ts @@ -325,6 +325,7 @@ export interface RollbackApplicationCommandOutput extends RollbackApplicationRes * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class RollbackApplicationCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/StartApplicationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/StartApplicationCommand.ts index a665fb68cc79f..79dd1af40c36b 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/StartApplicationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/StartApplicationCommand.ts @@ -92,6 +92,7 @@ export interface StartApplicationCommandOutput extends StartApplicationResponse, * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class StartApplicationCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/StopApplicationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/StopApplicationCommand.ts index 6eacf39cb11a3..47f16ab93a4ad 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/StopApplicationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/StopApplicationCommand.ts @@ -86,6 +86,7 @@ export interface StopApplicationCommandOutput extends StopApplicationResponse, _ * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class StopApplicationCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/TagResourceCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/TagResourceCommand.ts index 461260a72e604..99a818e193161 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/TagResourceCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/TagResourceCommand.ts @@ -83,6 +83,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/UntagResourceCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/UntagResourceCommand.ts index e8f1a6d6213b3..c8450e02229a6 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/UntagResourceCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/UntagResourceCommand.ts @@ -79,6 +79,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationCommand.ts index 9e5b9ca6a8deb..c9db1f4a7d19d 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationCommand.ts @@ -532,6 +532,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationMaintenanceConfigurationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationMaintenanceConfigurationCommand.ts index 97c3d5fbd113f..319413f885498 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationMaintenanceConfigurationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationMaintenanceConfigurationCommand.ts @@ -108,6 +108,7 @@ export interface UpdateApplicationMaintenanceConfigurationCommandOutput * @throws {@link KinesisAnalyticsV2ServiceException} *

Base exception class for all service exceptions from KinesisAnalyticsV2 service.

* + * * @public */ export class UpdateApplicationMaintenanceConfigurationCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts b/clients/client-kinesis-analytics/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts index 6efb0fac2b947..8d999ffb543a8 100644 --- a/clients/client-kinesis-analytics/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts @@ -88,6 +88,7 @@ export interface AddApplicationCloudWatchLoggingOptionCommandOutput * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class AddApplicationCloudWatchLoggingOptionCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/AddApplicationInputCommand.ts b/clients/client-kinesis-analytics/src/commands/AddApplicationInputCommand.ts index b153bc177a836..7cb6c1a576f7d 100644 --- a/clients/client-kinesis-analytics/src/commands/AddApplicationInputCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/AddApplicationInputCommand.ts @@ -130,6 +130,7 @@ export interface AddApplicationInputCommandOutput extends AddApplicationInputRes * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class AddApplicationInputCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/AddApplicationInputProcessingConfigurationCommand.ts b/clients/client-kinesis-analytics/src/commands/AddApplicationInputProcessingConfigurationCommand.ts index 80f95c5d16056..15c77ead23048 100644 --- a/clients/client-kinesis-analytics/src/commands/AddApplicationInputProcessingConfigurationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/AddApplicationInputProcessingConfigurationCommand.ts @@ -90,6 +90,7 @@ export interface AddApplicationInputProcessingConfigurationCommandOutput * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class AddApplicationInputProcessingConfigurationCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/AddApplicationOutputCommand.ts b/clients/client-kinesis-analytics/src/commands/AddApplicationOutputCommand.ts index 3b0cf32604b01..838951e2b7d35 100644 --- a/clients/client-kinesis-analytics/src/commands/AddApplicationOutputCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/AddApplicationOutputCommand.ts @@ -106,6 +106,7 @@ export interface AddApplicationOutputCommandOutput extends AddApplicationOutputR * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class AddApplicationOutputCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/AddApplicationReferenceDataSourceCommand.ts b/clients/client-kinesis-analytics/src/commands/AddApplicationReferenceDataSourceCommand.ts index 65c68b7022788..110eb81ef0156 100644 --- a/clients/client-kinesis-analytics/src/commands/AddApplicationReferenceDataSourceCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/AddApplicationReferenceDataSourceCommand.ts @@ -120,6 +120,7 @@ export interface AddApplicationReferenceDataSourceCommandOutput * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class AddApplicationReferenceDataSourceCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/CreateApplicationCommand.ts b/clients/client-kinesis-analytics/src/commands/CreateApplicationCommand.ts index 290d7020e1f7e..833bfee31288e 100644 --- a/clients/client-kinesis-analytics/src/commands/CreateApplicationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/CreateApplicationCommand.ts @@ -181,6 +181,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts b/clients/client-kinesis-analytics/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts index dacdf12a6aeea..9f42f0301d0e8 100644 --- a/clients/client-kinesis-analytics/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts @@ -84,6 +84,7 @@ export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class DeleteApplicationCloudWatchLoggingOptionCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/DeleteApplicationCommand.ts b/clients/client-kinesis-analytics/src/commands/DeleteApplicationCommand.ts index 2ab9abeb60495..447c029e3f2fe 100644 --- a/clients/client-kinesis-analytics/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/DeleteApplicationCommand.ts @@ -71,6 +71,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts b/clients/client-kinesis-analytics/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts index d465b72d845d3..114fffe3cebd9 100644 --- a/clients/client-kinesis-analytics/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts @@ -82,6 +82,7 @@ export interface DeleteApplicationInputProcessingConfigurationCommandOutput * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class DeleteApplicationInputProcessingConfigurationCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/DeleteApplicationOutputCommand.ts b/clients/client-kinesis-analytics/src/commands/DeleteApplicationOutputCommand.ts index 12614ffbaab2f..c3e9c38c9b76b 100644 --- a/clients/client-kinesis-analytics/src/commands/DeleteApplicationOutputCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/DeleteApplicationOutputCommand.ts @@ -75,6 +75,7 @@ export interface DeleteApplicationOutputCommandOutput extends DeleteApplicationO * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class DeleteApplicationOutputCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/DeleteApplicationReferenceDataSourceCommand.ts b/clients/client-kinesis-analytics/src/commands/DeleteApplicationReferenceDataSourceCommand.ts index 980fd95d1d550..c63572157e9f9 100644 --- a/clients/client-kinesis-analytics/src/commands/DeleteApplicationReferenceDataSourceCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/DeleteApplicationReferenceDataSourceCommand.ts @@ -86,6 +86,7 @@ export interface DeleteApplicationReferenceDataSourceCommandOutput * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class DeleteApplicationReferenceDataSourceCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/DescribeApplicationCommand.ts b/clients/client-kinesis-analytics/src/commands/DescribeApplicationCommand.ts index fa04fb8a4eceb..be56d46aa777a 100644 --- a/clients/client-kinesis-analytics/src/commands/DescribeApplicationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/DescribeApplicationCommand.ts @@ -191,6 +191,7 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class DescribeApplicationCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/DiscoverInputSchemaCommand.ts b/clients/client-kinesis-analytics/src/commands/DiscoverInputSchemaCommand.ts index 87ccaf4e3bd27..633f87e4616fc 100644 --- a/clients/client-kinesis-analytics/src/commands/DiscoverInputSchemaCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/DiscoverInputSchemaCommand.ts @@ -133,6 +133,7 @@ export interface DiscoverInputSchemaCommandOutput extends DiscoverInputSchemaRes * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class DiscoverInputSchemaCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/ListApplicationsCommand.ts b/clients/client-kinesis-analytics/src/commands/ListApplicationsCommand.ts index 9716989bd5bf9..b4aec31e44940 100644 --- a/clients/client-kinesis-analytics/src/commands/ListApplicationsCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/ListApplicationsCommand.ts @@ -79,6 +79,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/ListTagsForResourceCommand.ts b/clients/client-kinesis-analytics/src/commands/ListTagsForResourceCommand.ts index 8861c71ae1336..e5a8b4cf33ae4 100644 --- a/clients/client-kinesis-analytics/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/ListTagsForResourceCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/StartApplicationCommand.ts b/clients/client-kinesis-analytics/src/commands/StartApplicationCommand.ts index ae090ed7eec82..6ca2a7a4aa6a6 100644 --- a/clients/client-kinesis-analytics/src/commands/StartApplicationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/StartApplicationCommand.ts @@ -87,6 +87,7 @@ export interface StartApplicationCommandOutput extends StartApplicationResponse, * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class StartApplicationCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/StopApplicationCommand.ts b/clients/client-kinesis-analytics/src/commands/StopApplicationCommand.ts index 04787d84c7da5..e3a49e17e02fb 100644 --- a/clients/client-kinesis-analytics/src/commands/StopApplicationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/StopApplicationCommand.ts @@ -72,6 +72,7 @@ export interface StopApplicationCommandOutput extends StopApplicationResponse, _ * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class StopApplicationCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/TagResourceCommand.ts b/clients/client-kinesis-analytics/src/commands/TagResourceCommand.ts index 07f76e688bdc5..f3a8e7058c70f 100644 --- a/clients/client-kinesis-analytics/src/commands/TagResourceCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/TagResourceCommand.ts @@ -75,6 +75,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/UntagResourceCommand.ts b/clients/client-kinesis-analytics/src/commands/UntagResourceCommand.ts index 7a123a032beea..228e6290462de 100644 --- a/clients/client-kinesis-analytics/src/commands/UntagResourceCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-kinesis-analytics/src/commands/UpdateApplicationCommand.ts b/clients/client-kinesis-analytics/src/commands/UpdateApplicationCommand.ts index 7f536997ce5c4..409332be8dc4b 100644 --- a/clients/client-kinesis-analytics/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/UpdateApplicationCommand.ts @@ -190,6 +190,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons * @throws {@link KinesisAnalyticsServiceException} *

Base exception class for all service exceptions from KinesisAnalytics service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-kinesis-video-archived-media/src/commands/GetClipCommand.ts b/clients/client-kinesis-video-archived-media/src/commands/GetClipCommand.ts index 2ef31c15c2879..e5d5e6607aad5 100644 --- a/clients/client-kinesis-video-archived-media/src/commands/GetClipCommand.ts +++ b/clients/client-kinesis-video-archived-media/src/commands/GetClipCommand.ts @@ -92,6 +92,11 @@ export interface GetClipCommandOutput extends Omit, __ * }; * const command = new GetClipCommand(input); * const response = await client.send(command); + * // consume or destroy the stream to free the socket. + * const bytes = await response.Payload.transformToByteArray(); + * // const str = await response.Payload.transformToString(); + * // response.Payload.destroy(); // only applicable to Node.js Readable streams. + * * // { // GetClipOutput * // ContentType: "STRING_VALUE", * // Payload: "", // see \@smithy/types -> StreamingBlobPayloadOutputTypes @@ -153,6 +158,7 @@ export interface GetClipCommandOutput extends Omit, __ * @throws {@link KinesisVideoArchivedMediaServiceException} *

Base exception class for all service exceptions from KinesisVideoArchivedMedia service.

* + * * @public */ export class GetClipCommand extends $Command diff --git a/clients/client-kinesis-video-archived-media/src/commands/GetDASHStreamingSessionURLCommand.ts b/clients/client-kinesis-video-archived-media/src/commands/GetDASHStreamingSessionURLCommand.ts index 3be2f46949778..8dcdc46fd9865 100644 --- a/clients/client-kinesis-video-archived-media/src/commands/GetDASHStreamingSessionURLCommand.ts +++ b/clients/client-kinesis-video-archived-media/src/commands/GetDASHStreamingSessionURLCommand.ts @@ -256,6 +256,7 @@ export interface GetDASHStreamingSessionURLCommandOutput extends GetDASHStreamin * @throws {@link KinesisVideoArchivedMediaServiceException} *

Base exception class for all service exceptions from KinesisVideoArchivedMedia service.

* + * * @public */ export class GetDASHStreamingSessionURLCommand extends $Command diff --git a/clients/client-kinesis-video-archived-media/src/commands/GetHLSStreamingSessionURLCommand.ts b/clients/client-kinesis-video-archived-media/src/commands/GetHLSStreamingSessionURLCommand.ts index aa39c8f703741..6478917aeee9c 100644 --- a/clients/client-kinesis-video-archived-media/src/commands/GetHLSStreamingSessionURLCommand.ts +++ b/clients/client-kinesis-video-archived-media/src/commands/GetHLSStreamingSessionURLCommand.ts @@ -299,6 +299,7 @@ export interface GetHLSStreamingSessionURLCommandOutput extends GetHLSStreamingS * @throws {@link KinesisVideoArchivedMediaServiceException} *

Base exception class for all service exceptions from KinesisVideoArchivedMedia service.

* + * * @public */ export class GetHLSStreamingSessionURLCommand extends $Command diff --git a/clients/client-kinesis-video-archived-media/src/commands/GetImagesCommand.ts b/clients/client-kinesis-video-archived-media/src/commands/GetImagesCommand.ts index 0adce8c5cad51..35170fcafe024 100644 --- a/clients/client-kinesis-video-archived-media/src/commands/GetImagesCommand.ts +++ b/clients/client-kinesis-video-archived-media/src/commands/GetImagesCommand.ts @@ -108,6 +108,7 @@ export interface GetImagesCommandOutput extends GetImagesOutput, __MetadataBeare * @throws {@link KinesisVideoArchivedMediaServiceException} *

Base exception class for all service exceptions from KinesisVideoArchivedMedia service.

* + * * @public */ export class GetImagesCommand extends $Command diff --git a/clients/client-kinesis-video-archived-media/src/commands/GetMediaForFragmentListCommand.ts b/clients/client-kinesis-video-archived-media/src/commands/GetMediaForFragmentListCommand.ts index ffeb397de7cef..98e15d3673134 100644 --- a/clients/client-kinesis-video-archived-media/src/commands/GetMediaForFragmentListCommand.ts +++ b/clients/client-kinesis-video-archived-media/src/commands/GetMediaForFragmentListCommand.ts @@ -89,6 +89,11 @@ export interface GetMediaForFragmentListCommandOutput * }; * const command = new GetMediaForFragmentListCommand(input); * const response = await client.send(command); + * // consume or destroy the stream to free the socket. + * const bytes = await response.Payload.transformToByteArray(); + * // const str = await response.Payload.transformToString(); + * // response.Payload.destroy(); // only applicable to Node.js Readable streams. + * * // { // GetMediaForFragmentListOutput * // ContentType: "STRING_VALUE", * // Payload: "", // see \@smithy/types -> StreamingBlobPayloadOutputTypes @@ -128,6 +133,7 @@ export interface GetMediaForFragmentListCommandOutput * @throws {@link KinesisVideoArchivedMediaServiceException} *

Base exception class for all service exceptions from KinesisVideoArchivedMedia service.

* + * * @public */ export class GetMediaForFragmentListCommand extends $Command diff --git a/clients/client-kinesis-video-archived-media/src/commands/ListFragmentsCommand.ts b/clients/client-kinesis-video-archived-media/src/commands/ListFragmentsCommand.ts index 2daa7b3b16325..919a87f837d6a 100644 --- a/clients/client-kinesis-video-archived-media/src/commands/ListFragmentsCommand.ts +++ b/clients/client-kinesis-video-archived-media/src/commands/ListFragmentsCommand.ts @@ -136,6 +136,7 @@ export interface ListFragmentsCommandOutput extends ListFragmentsOutput, __Metad * @throws {@link KinesisVideoArchivedMediaServiceException} *

Base exception class for all service exceptions from KinesisVideoArchivedMedia service.

* + * * @public */ export class ListFragmentsCommand extends $Command diff --git a/clients/client-kinesis-video-media/src/commands/GetMediaCommand.ts b/clients/client-kinesis-video-media/src/commands/GetMediaCommand.ts index bdfbcedcbfc14..a728b9df90889 100644 --- a/clients/client-kinesis-video-media/src/commands/GetMediaCommand.ts +++ b/clients/client-kinesis-video-media/src/commands/GetMediaCommand.ts @@ -98,6 +98,11 @@ export interface GetMediaCommandOutput extends Omit, * }; * const command = new GetMediaCommand(input); * const response = await client.send(command); + * // consume or destroy the stream to free the socket. + * const bytes = await response.Payload.transformToByteArray(); + * // const str = await response.Payload.transformToString(); + * // response.Payload.destroy(); // only applicable to Node.js Readable streams. + * * // { // GetMediaOutput * // ContentType: "STRING_VALUE", * // Payload: "", // see \@smithy/types -> StreamingBlobPayloadOutputTypes @@ -138,6 +143,7 @@ export interface GetMediaCommandOutput extends Omit, * @throws {@link KinesisVideoMediaServiceException} *

Base exception class for all service exceptions from KinesisVideoMedia service.

* + * * @public */ export class GetMediaCommand extends $Command diff --git a/clients/client-kinesis-video-signaling/src/commands/GetIceServerConfigCommand.ts b/clients/client-kinesis-video-signaling/src/commands/GetIceServerConfigCommand.ts index f6babcbb92252..818bc3f72cf83 100644 --- a/clients/client-kinesis-video-signaling/src/commands/GetIceServerConfigCommand.ts +++ b/clients/client-kinesis-video-signaling/src/commands/GetIceServerConfigCommand.ts @@ -105,6 +105,7 @@ export interface GetIceServerConfigCommandOutput extends GetIceServerConfigRespo * @throws {@link KinesisVideoSignalingServiceException} *

Base exception class for all service exceptions from KinesisVideoSignaling service.

* + * * @public */ export class GetIceServerConfigCommand extends $Command diff --git a/clients/client-kinesis-video-signaling/src/commands/SendAlexaOfferToMasterCommand.ts b/clients/client-kinesis-video-signaling/src/commands/SendAlexaOfferToMasterCommand.ts index 3942ad62bba11..af8474606d5d3 100644 --- a/clients/client-kinesis-video-signaling/src/commands/SendAlexaOfferToMasterCommand.ts +++ b/clients/client-kinesis-video-signaling/src/commands/SendAlexaOfferToMasterCommand.ts @@ -79,6 +79,7 @@ export interface SendAlexaOfferToMasterCommandOutput extends SendAlexaOfferToMas * @throws {@link KinesisVideoSignalingServiceException} *

Base exception class for all service exceptions from KinesisVideoSignaling service.

* + * * @public */ export class SendAlexaOfferToMasterCommand extends $Command diff --git a/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionAsViewerCommand.ts b/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionAsViewerCommand.ts index 8ff5b9a5edbd5..de357d9836c7f 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionAsViewerCommand.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionAsViewerCommand.ts @@ -89,6 +89,7 @@ export interface JoinStorageSessionAsViewerCommandOutput extends __MetadataBeare * @throws {@link KinesisVideoWebRTCStorageServiceException} *

Base exception class for all service exceptions from KinesisVideoWebRTCStorage service.

* + * * @public */ export class JoinStorageSessionAsViewerCommand extends $Command diff --git a/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionCommand.ts b/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionCommand.ts index d19b17e4546c8..5fe4387680cb0 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionCommand.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionCommand.ts @@ -125,6 +125,7 @@ export interface JoinStorageSessionCommandOutput extends __MetadataBearer {} * @throws {@link KinesisVideoWebRTCStorageServiceException} *

Base exception class for all service exceptions from KinesisVideoWebRTCStorage service.

* + * * @public */ export class JoinStorageSessionCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/CreateSignalingChannelCommand.ts b/clients/client-kinesis-video/src/commands/CreateSignalingChannelCommand.ts index ed0a88c857cae..6b0106f3989e5 100644 --- a/clients/client-kinesis-video/src/commands/CreateSignalingChannelCommand.ts +++ b/clients/client-kinesis-video/src/commands/CreateSignalingChannelCommand.ts @@ -105,6 +105,7 @@ export interface CreateSignalingChannelCommandOutput extends CreateSignalingChan * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class CreateSignalingChannelCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/CreateStreamCommand.ts b/clients/client-kinesis-video/src/commands/CreateStreamCommand.ts index 9c3f6b0a7132a..8ba59d03b66fb 100644 --- a/clients/client-kinesis-video/src/commands/CreateStreamCommand.ts +++ b/clients/client-kinesis-video/src/commands/CreateStreamCommand.ts @@ -110,6 +110,7 @@ export interface CreateStreamCommandOutput extends CreateStreamOutput, __Metadat * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class CreateStreamCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/DeleteEdgeConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/DeleteEdgeConfigurationCommand.ts index c523606b63ab2..a6a01daaca41f 100644 --- a/clients/client-kinesis-video/src/commands/DeleteEdgeConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/DeleteEdgeConfigurationCommand.ts @@ -73,6 +73,7 @@ export interface DeleteEdgeConfigurationCommandOutput extends DeleteEdgeConfigur * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class DeleteEdgeConfigurationCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/DeleteSignalingChannelCommand.ts b/clients/client-kinesis-video/src/commands/DeleteSignalingChannelCommand.ts index d305293fc1ce6..456ffa4357fac 100644 --- a/clients/client-kinesis-video/src/commands/DeleteSignalingChannelCommand.ts +++ b/clients/client-kinesis-video/src/commands/DeleteSignalingChannelCommand.ts @@ -94,6 +94,7 @@ export interface DeleteSignalingChannelCommandOutput extends DeleteSignalingChan * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class DeleteSignalingChannelCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/DeleteStreamCommand.ts b/clients/client-kinesis-video/src/commands/DeleteStreamCommand.ts index 8159e55f18cfb..f2756987334f5 100644 --- a/clients/client-kinesis-video/src/commands/DeleteStreamCommand.ts +++ b/clients/client-kinesis-video/src/commands/DeleteStreamCommand.ts @@ -101,6 +101,7 @@ export interface DeleteStreamCommandOutput extends DeleteStreamOutput, __Metadat * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class DeleteStreamCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/DescribeEdgeConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/DescribeEdgeConfigurationCommand.ts index e8309620a17db..5a7198d18a5ff 100644 --- a/clients/client-kinesis-video/src/commands/DescribeEdgeConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeEdgeConfigurationCommand.ts @@ -127,6 +127,7 @@ export interface DescribeEdgeConfigurationCommandOutput extends DescribeEdgeConf * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class DescribeEdgeConfigurationCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/DescribeImageGenerationConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/DescribeImageGenerationConfigurationCommand.ts index 713ad4ed30c7b..6aba7a89c6d2b 100644 --- a/clients/client-kinesis-video/src/commands/DescribeImageGenerationConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeImageGenerationConfigurationCommand.ts @@ -91,6 +91,7 @@ export interface DescribeImageGenerationConfigurationCommandOutput * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class DescribeImageGenerationConfigurationCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/DescribeMappedResourceConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/DescribeMappedResourceConfigurationCommand.ts index 412f4811f95d9..93c832a35f4c9 100644 --- a/clients/client-kinesis-video/src/commands/DescribeMappedResourceConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeMappedResourceConfigurationCommand.ts @@ -86,6 +86,7 @@ export interface DescribeMappedResourceConfigurationCommandOutput * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class DescribeMappedResourceConfigurationCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/DescribeMediaStorageConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/DescribeMediaStorageConfigurationCommand.ts index 74a2f2a2c3975..1c06eb67f1b68 100644 --- a/clients/client-kinesis-video/src/commands/DescribeMediaStorageConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeMediaStorageConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface DescribeMediaStorageConfigurationCommandOutput * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class DescribeMediaStorageConfigurationCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/DescribeNotificationConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/DescribeNotificationConfigurationCommand.ts index d823f9792c9b5..ec8010fbf2d51 100644 --- a/clients/client-kinesis-video/src/commands/DescribeNotificationConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeNotificationConfigurationCommand.ts @@ -79,6 +79,7 @@ export interface DescribeNotificationConfigurationCommandOutput * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class DescribeNotificationConfigurationCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/DescribeSignalingChannelCommand.ts b/clients/client-kinesis-video/src/commands/DescribeSignalingChannelCommand.ts index 0d6c95f751d26..9e88da77187af 100644 --- a/clients/client-kinesis-video/src/commands/DescribeSignalingChannelCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeSignalingChannelCommand.ts @@ -81,6 +81,7 @@ export interface DescribeSignalingChannelCommandOutput extends DescribeSignaling * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class DescribeSignalingChannelCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/DescribeStreamCommand.ts b/clients/client-kinesis-video/src/commands/DescribeStreamCommand.ts index 377707ba645ad..db8de9676c5ce 100644 --- a/clients/client-kinesis-video/src/commands/DescribeStreamCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeStreamCommand.ts @@ -80,6 +80,7 @@ export interface DescribeStreamCommandOutput extends DescribeStreamOutput, __Met * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class DescribeStreamCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/GetDataEndpointCommand.ts b/clients/client-kinesis-video/src/commands/GetDataEndpointCommand.ts index 1298f41ea3296..2c4924aaf4ba0 100644 --- a/clients/client-kinesis-video/src/commands/GetDataEndpointCommand.ts +++ b/clients/client-kinesis-video/src/commands/GetDataEndpointCommand.ts @@ -80,6 +80,7 @@ export interface GetDataEndpointCommandOutput extends GetDataEndpointOutput, __M * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class GetDataEndpointCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/GetSignalingChannelEndpointCommand.ts b/clients/client-kinesis-video/src/commands/GetSignalingChannelEndpointCommand.ts index a4824f7cd92ec..ef7dc4056f76b 100644 --- a/clients/client-kinesis-video/src/commands/GetSignalingChannelEndpointCommand.ts +++ b/clients/client-kinesis-video/src/commands/GetSignalingChannelEndpointCommand.ts @@ -115,6 +115,7 @@ export interface GetSignalingChannelEndpointCommandOutput extends GetSignalingCh * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class GetSignalingChannelEndpointCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/ListEdgeAgentConfigurationsCommand.ts b/clients/client-kinesis-video/src/commands/ListEdgeAgentConfigurationsCommand.ts index 0469e8534662d..4919bfc6c1603 100644 --- a/clients/client-kinesis-video/src/commands/ListEdgeAgentConfigurationsCommand.ts +++ b/clients/client-kinesis-video/src/commands/ListEdgeAgentConfigurationsCommand.ts @@ -112,6 +112,7 @@ export interface ListEdgeAgentConfigurationsCommandOutput extends ListEdgeAgentC * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class ListEdgeAgentConfigurationsCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/ListSignalingChannelsCommand.ts b/clients/client-kinesis-video/src/commands/ListSignalingChannelsCommand.ts index 0841c167fd36d..c24c376189b04 100644 --- a/clients/client-kinesis-video/src/commands/ListSignalingChannelsCommand.ts +++ b/clients/client-kinesis-video/src/commands/ListSignalingChannelsCommand.ts @@ -85,6 +85,7 @@ export interface ListSignalingChannelsCommandOutput extends ListSignalingChannel * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class ListSignalingChannelsCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/ListStreamsCommand.ts b/clients/client-kinesis-video/src/commands/ListStreamsCommand.ts index ae1f8ede0b40a..4379739c2a709 100644 --- a/clients/client-kinesis-video/src/commands/ListStreamsCommand.ts +++ b/clients/client-kinesis-video/src/commands/ListStreamsCommand.ts @@ -82,6 +82,7 @@ export interface ListStreamsCommandOutput extends ListStreamsOutput, __MetadataB * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class ListStreamsCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/ListTagsForResourceCommand.ts b/clients/client-kinesis-video/src/commands/ListTagsForResourceCommand.ts index ddb5feba45ce0..41e935d5fa220 100644 --- a/clients/client-kinesis-video/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kinesis-video/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/ListTagsForStreamCommand.ts b/clients/client-kinesis-video/src/commands/ListTagsForStreamCommand.ts index 6d753c1410d5a..16276e4db6831 100644 --- a/clients/client-kinesis-video/src/commands/ListTagsForStreamCommand.ts +++ b/clients/client-kinesis-video/src/commands/ListTagsForStreamCommand.ts @@ -78,6 +78,7 @@ export interface ListTagsForStreamCommandOutput extends ListTagsForStreamOutput, * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class ListTagsForStreamCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/StartEdgeConfigurationUpdateCommand.ts b/clients/client-kinesis-video/src/commands/StartEdgeConfigurationUpdateCommand.ts index 7b7ff04a258ce..b4db3873c4de5 100644 --- a/clients/client-kinesis-video/src/commands/StartEdgeConfigurationUpdateCommand.ts +++ b/clients/client-kinesis-video/src/commands/StartEdgeConfigurationUpdateCommand.ts @@ -174,6 +174,7 @@ export interface StartEdgeConfigurationUpdateCommandOutput * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class StartEdgeConfigurationUpdateCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/TagResourceCommand.ts b/clients/client-kinesis-video/src/commands/TagResourceCommand.ts index 1e13d1f33a328..296655c7c3290 100644 --- a/clients/client-kinesis-video/src/commands/TagResourceCommand.ts +++ b/clients/client-kinesis-video/src/commands/TagResourceCommand.ts @@ -81,6 +81,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/TagStreamCommand.ts b/clients/client-kinesis-video/src/commands/TagStreamCommand.ts index 504ce6c8f1ac3..aa94b1a41f51c 100644 --- a/clients/client-kinesis-video/src/commands/TagStreamCommand.ts +++ b/clients/client-kinesis-video/src/commands/TagStreamCommand.ts @@ -86,6 +86,7 @@ export interface TagStreamCommandOutput extends TagStreamOutput, __MetadataBeare * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class TagStreamCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/UntagResourceCommand.ts b/clients/client-kinesis-video/src/commands/UntagResourceCommand.ts index e432bfe372a15..ab461573ca15c 100644 --- a/clients/client-kinesis-video/src/commands/UntagResourceCommand.ts +++ b/clients/client-kinesis-video/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/UntagStreamCommand.ts b/clients/client-kinesis-video/src/commands/UntagStreamCommand.ts index 73bb48cbc4b35..7563411a16f12 100644 --- a/clients/client-kinesis-video/src/commands/UntagStreamCommand.ts +++ b/clients/client-kinesis-video/src/commands/UntagStreamCommand.ts @@ -77,6 +77,7 @@ export interface UntagStreamCommandOutput extends UntagStreamOutput, __MetadataB * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class UntagStreamCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/UpdateDataRetentionCommand.ts b/clients/client-kinesis-video/src/commands/UpdateDataRetentionCommand.ts index bb297dc1fcde0..7f844f1e68e62 100644 --- a/clients/client-kinesis-video/src/commands/UpdateDataRetentionCommand.ts +++ b/clients/client-kinesis-video/src/commands/UpdateDataRetentionCommand.ts @@ -116,6 +116,7 @@ export interface UpdateDataRetentionCommandOutput extends UpdateDataRetentionOut * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class UpdateDataRetentionCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/UpdateImageGenerationConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/UpdateImageGenerationConfigurationCommand.ts index 3c327a5ff79d2..814b8aed4689e 100644 --- a/clients/client-kinesis-video/src/commands/UpdateImageGenerationConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/UpdateImageGenerationConfigurationCommand.ts @@ -110,6 +110,7 @@ export interface UpdateImageGenerationConfigurationCommandOutput * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class UpdateImageGenerationConfigurationCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/UpdateMediaStorageConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/UpdateMediaStorageConfigurationCommand.ts index 1020dc9d84d2c..deb9f4fef1aed 100644 --- a/clients/client-kinesis-video/src/commands/UpdateMediaStorageConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/UpdateMediaStorageConfigurationCommand.ts @@ -116,6 +116,7 @@ export interface UpdateMediaStorageConfigurationCommandOutput * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class UpdateMediaStorageConfigurationCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/UpdateNotificationConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/UpdateNotificationConfigurationCommand.ts index 12d80a36becf6..7b57d5f03b617 100644 --- a/clients/client-kinesis-video/src/commands/UpdateNotificationConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/UpdateNotificationConfigurationCommand.ts @@ -101,6 +101,7 @@ export interface UpdateNotificationConfigurationCommandOutput * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class UpdateNotificationConfigurationCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/UpdateSignalingChannelCommand.ts b/clients/client-kinesis-video/src/commands/UpdateSignalingChannelCommand.ts index ebc842239fb3d..d695cf73fcc39 100644 --- a/clients/client-kinesis-video/src/commands/UpdateSignalingChannelCommand.ts +++ b/clients/client-kinesis-video/src/commands/UpdateSignalingChannelCommand.ts @@ -100,6 +100,7 @@ export interface UpdateSignalingChannelCommandOutput extends UpdateSignalingChan * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class UpdateSignalingChannelCommand extends $Command diff --git a/clients/client-kinesis-video/src/commands/UpdateStreamCommand.ts b/clients/client-kinesis-video/src/commands/UpdateStreamCommand.ts index 3ffc211db94f2..faad51ef377c7 100644 --- a/clients/client-kinesis-video/src/commands/UpdateStreamCommand.ts +++ b/clients/client-kinesis-video/src/commands/UpdateStreamCommand.ts @@ -104,6 +104,7 @@ export interface UpdateStreamCommandOutput extends UpdateStreamOutput, __Metadat * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* + * * @public */ export class UpdateStreamCommand extends $Command diff --git a/clients/client-kinesis/src/commands/AddTagsToStreamCommand.ts b/clients/client-kinesis/src/commands/AddTagsToStreamCommand.ts index e6d402dae5086..074d3717236df 100644 --- a/clients/client-kinesis/src/commands/AddTagsToStreamCommand.ts +++ b/clients/client-kinesis/src/commands/AddTagsToStreamCommand.ts @@ -88,6 +88,7 @@ export interface AddTagsToStreamCommandOutput extends __MetadataBearer {} * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class AddTagsToStreamCommand extends $Command diff --git a/clients/client-kinesis/src/commands/CreateStreamCommand.ts b/clients/client-kinesis/src/commands/CreateStreamCommand.ts index 733a1a6fd9d24..062cc768b19b2 100644 --- a/clients/client-kinesis/src/commands/CreateStreamCommand.ts +++ b/clients/client-kinesis/src/commands/CreateStreamCommand.ts @@ -120,6 +120,7 @@ export interface CreateStreamCommandOutput extends __MetadataBearer {} * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class CreateStreamCommand extends $Command diff --git a/clients/client-kinesis/src/commands/DecreaseStreamRetentionPeriodCommand.ts b/clients/client-kinesis/src/commands/DecreaseStreamRetentionPeriodCommand.ts index e45826a346b71..75df0f120ba55 100644 --- a/clients/client-kinesis/src/commands/DecreaseStreamRetentionPeriodCommand.ts +++ b/clients/client-kinesis/src/commands/DecreaseStreamRetentionPeriodCommand.ts @@ -88,6 +88,7 @@ export interface DecreaseStreamRetentionPeriodCommandOutput extends __MetadataBe * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class DecreaseStreamRetentionPeriodCommand extends $Command diff --git a/clients/client-kinesis/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-kinesis/src/commands/DeleteResourcePolicyCommand.ts index 0876079d49679..1193f749453c6 100644 --- a/clients/client-kinesis/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-kinesis/src/commands/DeleteResourcePolicyCommand.ts @@ -83,6 +83,7 @@ export interface DeleteResourcePolicyCommandOutput extends __MetadataBearer {} * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-kinesis/src/commands/DeleteStreamCommand.ts b/clients/client-kinesis/src/commands/DeleteStreamCommand.ts index df112be3fb64c..285031ddb79ea 100644 --- a/clients/client-kinesis/src/commands/DeleteStreamCommand.ts +++ b/clients/client-kinesis/src/commands/DeleteStreamCommand.ts @@ -98,6 +98,7 @@ export interface DeleteStreamCommandOutput extends __MetadataBearer {} * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class DeleteStreamCommand extends $Command diff --git a/clients/client-kinesis/src/commands/DeregisterStreamConsumerCommand.ts b/clients/client-kinesis/src/commands/DeregisterStreamConsumerCommand.ts index 482fe8e3d4b39..5c5d5b8324540 100644 --- a/clients/client-kinesis/src/commands/DeregisterStreamConsumerCommand.ts +++ b/clients/client-kinesis/src/commands/DeregisterStreamConsumerCommand.ts @@ -74,6 +74,7 @@ export interface DeregisterStreamConsumerCommandOutput extends __MetadataBearer * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class DeregisterStreamConsumerCommand extends $Command diff --git a/clients/client-kinesis/src/commands/DescribeLimitsCommand.ts b/clients/client-kinesis/src/commands/DescribeLimitsCommand.ts index c0ed931c6b7a6..bb27a6f534427 100644 --- a/clients/client-kinesis/src/commands/DescribeLimitsCommand.ts +++ b/clients/client-kinesis/src/commands/DescribeLimitsCommand.ts @@ -63,6 +63,7 @@ export interface DescribeLimitsCommandOutput extends DescribeLimitsOutput, __Met * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class DescribeLimitsCommand extends $Command diff --git a/clients/client-kinesis/src/commands/DescribeStreamCommand.ts b/clients/client-kinesis/src/commands/DescribeStreamCommand.ts index 303af6bb370b9..125ab3680fde8 100644 --- a/clients/client-kinesis/src/commands/DescribeStreamCommand.ts +++ b/clients/client-kinesis/src/commands/DescribeStreamCommand.ts @@ -132,6 +132,7 @@ export interface DescribeStreamCommandOutput extends DescribeStreamOutput, __Met * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class DescribeStreamCommand extends $Command diff --git a/clients/client-kinesis/src/commands/DescribeStreamConsumerCommand.ts b/clients/client-kinesis/src/commands/DescribeStreamConsumerCommand.ts index 50eb8f78b4a1c..3867009259619 100644 --- a/clients/client-kinesis/src/commands/DescribeStreamConsumerCommand.ts +++ b/clients/client-kinesis/src/commands/DescribeStreamConsumerCommand.ts @@ -85,6 +85,7 @@ export interface DescribeStreamConsumerCommandOutput extends DescribeStreamConsu * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class DescribeStreamConsumerCommand extends $Command diff --git a/clients/client-kinesis/src/commands/DescribeStreamSummaryCommand.ts b/clients/client-kinesis/src/commands/DescribeStreamSummaryCommand.ts index 902198e041f19..bb69cbb23d205 100644 --- a/clients/client-kinesis/src/commands/DescribeStreamSummaryCommand.ts +++ b/clients/client-kinesis/src/commands/DescribeStreamSummaryCommand.ts @@ -104,6 +104,7 @@ export interface DescribeStreamSummaryCommandOutput extends DescribeStreamSummar * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class DescribeStreamSummaryCommand extends $Command diff --git a/clients/client-kinesis/src/commands/DisableEnhancedMonitoringCommand.ts b/clients/client-kinesis/src/commands/DisableEnhancedMonitoringCommand.ts index 6302ab25a8816..36f0a1a515f65 100644 --- a/clients/client-kinesis/src/commands/DisableEnhancedMonitoringCommand.ts +++ b/clients/client-kinesis/src/commands/DisableEnhancedMonitoringCommand.ts @@ -91,6 +91,7 @@ export interface DisableEnhancedMonitoringCommandOutput extends EnhancedMonitori * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class DisableEnhancedMonitoringCommand extends $Command diff --git a/clients/client-kinesis/src/commands/EnableEnhancedMonitoringCommand.ts b/clients/client-kinesis/src/commands/EnableEnhancedMonitoringCommand.ts index 77b983a66f8e7..9e284c4ad2d0d 100644 --- a/clients/client-kinesis/src/commands/EnableEnhancedMonitoringCommand.ts +++ b/clients/client-kinesis/src/commands/EnableEnhancedMonitoringCommand.ts @@ -91,6 +91,7 @@ export interface EnableEnhancedMonitoringCommandOutput extends EnhancedMonitorin * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class EnableEnhancedMonitoringCommand extends $Command diff --git a/clients/client-kinesis/src/commands/GetRecordsCommand.ts b/clients/client-kinesis/src/commands/GetRecordsCommand.ts index 63da8d252d4bd..1664098502626 100644 --- a/clients/client-kinesis/src/commands/GetRecordsCommand.ts +++ b/clients/client-kinesis/src/commands/GetRecordsCommand.ts @@ -180,6 +180,7 @@ export interface GetRecordsCommandOutput extends GetRecordsOutput, __MetadataBea * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class GetRecordsCommand extends $Command diff --git a/clients/client-kinesis/src/commands/GetResourcePolicyCommand.ts b/clients/client-kinesis/src/commands/GetResourcePolicyCommand.ts index b3f39fe6b2840..a36ec2b9e2ee4 100644 --- a/clients/client-kinesis/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-kinesis/src/commands/GetResourcePolicyCommand.ts @@ -85,6 +85,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyOutput, * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-kinesis/src/commands/GetShardIteratorCommand.ts b/clients/client-kinesis/src/commands/GetShardIteratorCommand.ts index 295e83b2ee25b..1c9cc7f62553c 100644 --- a/clients/client-kinesis/src/commands/GetShardIteratorCommand.ts +++ b/clients/client-kinesis/src/commands/GetShardIteratorCommand.ts @@ -117,6 +117,7 @@ export interface GetShardIteratorCommandOutput extends GetShardIteratorOutput, _ * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class GetShardIteratorCommand extends $Command diff --git a/clients/client-kinesis/src/commands/IncreaseStreamRetentionPeriodCommand.ts b/clients/client-kinesis/src/commands/IncreaseStreamRetentionPeriodCommand.ts index 92ec9b0a2a984..057803b051983 100644 --- a/clients/client-kinesis/src/commands/IncreaseStreamRetentionPeriodCommand.ts +++ b/clients/client-kinesis/src/commands/IncreaseStreamRetentionPeriodCommand.ts @@ -91,6 +91,7 @@ export interface IncreaseStreamRetentionPeriodCommandOutput extends __MetadataBe * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class IncreaseStreamRetentionPeriodCommand extends $Command diff --git a/clients/client-kinesis/src/commands/ListShardsCommand.ts b/clients/client-kinesis/src/commands/ListShardsCommand.ts index 9728fa8c1da3f..f222e0628a481 100644 --- a/clients/client-kinesis/src/commands/ListShardsCommand.ts +++ b/clients/client-kinesis/src/commands/ListShardsCommand.ts @@ -118,6 +118,7 @@ export interface ListShardsCommandOutput extends ListShardsOutput, __MetadataBea * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class ListShardsCommand extends $Command diff --git a/clients/client-kinesis/src/commands/ListStreamConsumersCommand.ts b/clients/client-kinesis/src/commands/ListStreamConsumersCommand.ts index b4e0e6bf873a5..ec22452c1fe71 100644 --- a/clients/client-kinesis/src/commands/ListStreamConsumersCommand.ts +++ b/clients/client-kinesis/src/commands/ListStreamConsumersCommand.ts @@ -87,6 +87,7 @@ export interface ListStreamConsumersCommandOutput extends ListStreamConsumersOut * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class ListStreamConsumersCommand extends $Command diff --git a/clients/client-kinesis/src/commands/ListStreamsCommand.ts b/clients/client-kinesis/src/commands/ListStreamsCommand.ts index d2e73b3d55140..1aa85b1dee104 100644 --- a/clients/client-kinesis/src/commands/ListStreamsCommand.ts +++ b/clients/client-kinesis/src/commands/ListStreamsCommand.ts @@ -98,6 +98,7 @@ export interface ListStreamsCommandOutput extends ListStreamsOutput, __MetadataB * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class ListStreamsCommand extends $Command diff --git a/clients/client-kinesis/src/commands/ListTagsForStreamCommand.ts b/clients/client-kinesis/src/commands/ListTagsForStreamCommand.ts index 8dbfc82abd8fe..1ab837c9c225e 100644 --- a/clients/client-kinesis/src/commands/ListTagsForStreamCommand.ts +++ b/clients/client-kinesis/src/commands/ListTagsForStreamCommand.ts @@ -86,6 +86,7 @@ export interface ListTagsForStreamCommandOutput extends ListTagsForStreamOutput, * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class ListTagsForStreamCommand extends $Command diff --git a/clients/client-kinesis/src/commands/MergeShardsCommand.ts b/clients/client-kinesis/src/commands/MergeShardsCommand.ts index ee1dcd718e0c0..f6cc25563b65e 100644 --- a/clients/client-kinesis/src/commands/MergeShardsCommand.ts +++ b/clients/client-kinesis/src/commands/MergeShardsCommand.ts @@ -122,6 +122,7 @@ export interface MergeShardsCommandOutput extends __MetadataBearer {} * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class MergeShardsCommand extends $Command diff --git a/clients/client-kinesis/src/commands/PutRecordCommand.ts b/clients/client-kinesis/src/commands/PutRecordCommand.ts index 50bbe8b941542..5227a35499f4c 100644 --- a/clients/client-kinesis/src/commands/PutRecordCommand.ts +++ b/clients/client-kinesis/src/commands/PutRecordCommand.ts @@ -148,6 +148,7 @@ export interface PutRecordCommandOutput extends PutRecordOutput, __MetadataBeare * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class PutRecordCommand extends $Command diff --git a/clients/client-kinesis/src/commands/PutRecordsCommand.ts b/clients/client-kinesis/src/commands/PutRecordsCommand.ts index cee46880d5efa..44ad6374a0085 100644 --- a/clients/client-kinesis/src/commands/PutRecordsCommand.ts +++ b/clients/client-kinesis/src/commands/PutRecordsCommand.ts @@ -178,6 +178,7 @@ export interface PutRecordsCommandOutput extends PutRecordsOutput, __MetadataBea * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class PutRecordsCommand extends $Command diff --git a/clients/client-kinesis/src/commands/PutResourcePolicyCommand.ts b/clients/client-kinesis/src/commands/PutResourcePolicyCommand.ts index e3b8996a049b5..e86124625aa9a 100644 --- a/clients/client-kinesis/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-kinesis/src/commands/PutResourcePolicyCommand.ts @@ -91,6 +91,7 @@ export interface PutResourcePolicyCommandOutput extends __MetadataBearer {} * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-kinesis/src/commands/RegisterStreamConsumerCommand.ts b/clients/client-kinesis/src/commands/RegisterStreamConsumerCommand.ts index ebaaba2af0500..8f8d3edf86455 100644 --- a/clients/client-kinesis/src/commands/RegisterStreamConsumerCommand.ts +++ b/clients/client-kinesis/src/commands/RegisterStreamConsumerCommand.ts @@ -90,6 +90,7 @@ export interface RegisterStreamConsumerCommandOutput extends RegisterStreamConsu * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class RegisterStreamConsumerCommand extends $Command diff --git a/clients/client-kinesis/src/commands/RemoveTagsFromStreamCommand.ts b/clients/client-kinesis/src/commands/RemoveTagsFromStreamCommand.ts index 9fea5167643d9..ace1c541d5906 100644 --- a/clients/client-kinesis/src/commands/RemoveTagsFromStreamCommand.ts +++ b/clients/client-kinesis/src/commands/RemoveTagsFromStreamCommand.ts @@ -87,6 +87,7 @@ export interface RemoveTagsFromStreamCommandOutput extends __MetadataBearer {} * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class RemoveTagsFromStreamCommand extends $Command diff --git a/clients/client-kinesis/src/commands/SplitShardCommand.ts b/clients/client-kinesis/src/commands/SplitShardCommand.ts index 80755373fc380..8f50597de8703 100644 --- a/clients/client-kinesis/src/commands/SplitShardCommand.ts +++ b/clients/client-kinesis/src/commands/SplitShardCommand.ts @@ -126,6 +126,7 @@ export interface SplitShardCommandOutput extends __MetadataBearer {} * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class SplitShardCommand extends $Command diff --git a/clients/client-kinesis/src/commands/StartStreamEncryptionCommand.ts b/clients/client-kinesis/src/commands/StartStreamEncryptionCommand.ts index e9ccba3b9ccfd..3e3e852548748 100644 --- a/clients/client-kinesis/src/commands/StartStreamEncryptionCommand.ts +++ b/clients/client-kinesis/src/commands/StartStreamEncryptionCommand.ts @@ -123,6 +123,7 @@ export interface StartStreamEncryptionCommandOutput extends __MetadataBearer {} * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class StartStreamEncryptionCommand extends $Command diff --git a/clients/client-kinesis/src/commands/StopStreamEncryptionCommand.ts b/clients/client-kinesis/src/commands/StopStreamEncryptionCommand.ts index 3578c19c8abdf..658d32621d003 100644 --- a/clients/client-kinesis/src/commands/StopStreamEncryptionCommand.ts +++ b/clients/client-kinesis/src/commands/StopStreamEncryptionCommand.ts @@ -95,6 +95,7 @@ export interface StopStreamEncryptionCommandOutput extends __MetadataBearer {} * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class StopStreamEncryptionCommand extends $Command diff --git a/clients/client-kinesis/src/commands/SubscribeToShardCommand.ts b/clients/client-kinesis/src/commands/SubscribeToShardCommand.ts index d165e4f10eddd..88c88002c68bc 100644 --- a/clients/client-kinesis/src/commands/SubscribeToShardCommand.ts +++ b/clients/client-kinesis/src/commands/SubscribeToShardCommand.ts @@ -160,6 +160,7 @@ export interface SubscribeToShardCommandOutput extends SubscribeToShardOutput, _ * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class SubscribeToShardCommand extends $Command diff --git a/clients/client-kinesis/src/commands/UpdateShardCountCommand.ts b/clients/client-kinesis/src/commands/UpdateShardCountCommand.ts index 8bf599746bba3..7d6defe18d86e 100644 --- a/clients/client-kinesis/src/commands/UpdateShardCountCommand.ts +++ b/clients/client-kinesis/src/commands/UpdateShardCountCommand.ts @@ -137,6 +137,7 @@ export interface UpdateShardCountCommandOutput extends UpdateShardCountOutput, _ * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class UpdateShardCountCommand extends $Command diff --git a/clients/client-kinesis/src/commands/UpdateStreamModeCommand.ts b/clients/client-kinesis/src/commands/UpdateStreamModeCommand.ts index 4ce2744137130..c600675c8200a 100644 --- a/clients/client-kinesis/src/commands/UpdateStreamModeCommand.ts +++ b/clients/client-kinesis/src/commands/UpdateStreamModeCommand.ts @@ -75,6 +75,7 @@ export interface UpdateStreamModeCommandOutput extends __MetadataBearer {} * @throws {@link KinesisServiceException} *

Base exception class for all service exceptions from Kinesis service.

* + * * @public */ export class UpdateStreamModeCommand extends $Command diff --git a/clients/client-kms/src/commands/CancelKeyDeletionCommand.ts b/clients/client-kms/src/commands/CancelKeyDeletionCommand.ts index 0fa24c37f5ec9..f0079378bd144 100644 --- a/clients/client-kms/src/commands/CancelKeyDeletionCommand.ts +++ b/clients/client-kms/src/commands/CancelKeyDeletionCommand.ts @@ -106,23 +106,23 @@ export interface CancelKeyDeletionCommandOutput extends CancelKeyDeletionRespons * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To cancel deletion of a KMS key * ```javascript * // The following example cancels deletion of the specified KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new CancelKeyDeletionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" + * KeyId: "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" * } * *\/ - * // example id: to-cancel-deletion-of-a-cmk-1477428535102 * ``` * + * @public */ export class CancelKeyDeletionCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/ConnectCustomKeyStoreCommand.ts b/clients/client-kms/src/commands/ConnectCustomKeyStoreCommand.ts index e1ccef478819f..e530ad0ee60d6 100644 --- a/clients/client-kms/src/commands/ConnectCustomKeyStoreCommand.ts +++ b/clients/client-kms/src/commands/ConnectCustomKeyStoreCommand.ts @@ -226,18 +226,21 @@ export interface ConnectCustomKeyStoreCommandOutput extends ConnectCustomKeyStor * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To connect a custom key store * ```javascript * // This example connects an AWS KMS custom key store to its backing key store. For an AWS CloudHSM key store, it connects the key store to its AWS CloudHSM cluster. For an external key store, it connects the key store to the external key store proxy that communicates with your external key manager. This operation does not return any data. To verify that the custom key store is connected, use the DescribeCustomKeyStores operation. * const input = { - * "CustomKeyStoreId": "cks-1234567890abcdef0" + * CustomKeyStoreId: "cks-1234567890abcdef0" * }; * const command = new ConnectCustomKeyStoreCommand(input); - * await client.send(command); - * // example id: to-connect-a-custom-key-store-1628626947750 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class ConnectCustomKeyStoreCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/CreateAliasCommand.ts b/clients/client-kms/src/commands/CreateAliasCommand.ts index 915dfe89a97d7..5826f763df830 100644 --- a/clients/client-kms/src/commands/CreateAliasCommand.ts +++ b/clients/client-kms/src/commands/CreateAliasCommand.ts @@ -156,19 +156,22 @@ export interface CreateAliasCommandOutput extends __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To create an alias * ```javascript * // The following example creates an alias for the specified KMS key. * const input = { - * "AliasName": "alias/ExampleAlias", - * "TargetKeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" + * AliasName: "alias/ExampleAlias", + * TargetKeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new CreateAliasCommand(input); - * await client.send(command); - * // example id: to-create-an-alias-1477505685119 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateAliasCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/CreateCustomKeyStoreCommand.ts b/clients/client-kms/src/commands/CreateCustomKeyStoreCommand.ts index c556ac3f94018..69193a0fc377f 100644 --- a/clients/client-kms/src/commands/CreateCustomKeyStoreCommand.ts +++ b/clients/client-kms/src/commands/CreateCustomKeyStoreCommand.ts @@ -286,75 +286,26 @@ export interface CreateCustomKeyStoreCommandOutput extends CreateCustomKeyStoreR * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To create an AWS CloudHSM key store * ```javascript * // This example creates a custom key store that is associated with an AWS CloudHSM cluster. * const input = { - * "CloudHsmClusterId": "cluster-234abcdefABC", - * "CustomKeyStoreName": "ExampleKeyStore", - * "KeyStorePassword": "kmsPswd", - * "TrustAnchorCertificate": "" - * }; - * const command = new CreateCustomKeyStoreCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "CustomKeyStoreId": "cks-1234567890abcdef0" - * } - * *\/ - * // example id: to-create-an-aws-cloudhsm-custom-key-store-1 - * ``` - * - * @example To create an external key store with VPC endpoint service connectivity - * ```javascript - * // This example creates an external key store that uses an Amazon VPC endpoint service to communicate with AWS KMS. - * const input = { - * "CustomKeyStoreName": "ExampleVPCEndpointKeyStore", - * "CustomKeyStoreType": "EXTERNAL_KEY_STORE", - * "XksProxyAuthenticationCredential": { - * "AccessKeyId": "ABCDE12345670EXAMPLE", - * "RawSecretAccessKey": "DXjSUawnel2fr6SKC7G25CNxTyWKE5PF9XX6H/u9pSo=" - * }, - * "XksProxyConnectivity": "VPC_ENDPOINT_SERVICE", - * "XksProxyUriEndpoint": "https://myproxy-private.xks.example.com", - * "XksProxyUriPath": "/example-prefix/kms/xks/v1", - * "XksProxyVpcEndpointServiceName": "com.amazonaws.vpce.us-east-1.vpce-svc-example1" + * CloudHsmClusterId: "cluster-234abcdefABC", + * CustomKeyStoreName: "ExampleKeyStore", + * KeyStorePassword: "kmsPswd", + * TrustAnchorCertificate: "" * }; * const command = new CreateCustomKeyStoreCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CustomKeyStoreId": "cks-1234567890abcdef0" + * CustomKeyStoreId: "cks-1234567890abcdef0" * } * *\/ - * // example id: to-create-an-external-custom-key-store-with-vpc-connectivity-2 - * ``` - * - * @example To create an external key store with public endpoint connectivity - * ```javascript - * // This example creates an external key store with public endpoint connectivity. - * const input = { - * "CustomKeyStoreName": "ExamplePublicEndpointKeyStore", - * "CustomKeyStoreType": "EXTERNAL_KEY_STORE", - * "XksProxyAuthenticationCredential": { - * "AccessKeyId": "ABCDE12345670EXAMPLE", - * "RawSecretAccessKey": "DXjSUawnel2fr6SKC7G25CNxTyWKE5PF9XX6H/u9pSo=" - * }, - * "XksProxyConnectivity": "PUBLIC_ENDPOINT", - * "XksProxyUriEndpoint": "https://myproxy.xks.example.com", - * "XksProxyUriPath": "/kms/xks/v1" - * }; - * const command = new CreateCustomKeyStoreCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "CustomKeyStoreId": "cks-987654321abcdef0" - * } - * *\/ - * // example id: to-create-an-external-custom-key-store-with-a-public-endpoint-3 * ``` * + * @public */ export class CreateCustomKeyStoreCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/CreateGrantCommand.ts b/clients/client-kms/src/commands/CreateGrantCommand.ts index bcfb47ddf2d33..9212e95f7f2f7 100644 --- a/clients/client-kms/src/commands/CreateGrantCommand.ts +++ b/clients/client-kms/src/commands/CreateGrantCommand.ts @@ -187,29 +187,29 @@ export interface CreateGrantCommandOutput extends CreateGrantResponse, __Metadat * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To create a grant * ```javascript * // The following example creates a grant that allows the specified IAM role to encrypt data with the specified KMS key. * const input = { - * "GranteePrincipal": "arn:aws:iam::111122223333:role/ExampleRole", - * "KeyId": "arn:aws:kms:us-east-2:444455556666:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "Operations": [ + * GranteePrincipal: "arn:aws:iam::111122223333:role/ExampleRole", + * KeyId: "arn:aws:kms:us-east-2:444455556666:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * Operations: [ * "Encrypt", * "Decrypt" * ] * }; * const command = new CreateGrantCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GrantId": "0c237476b39f8bc44e45212e08498fbe3151305030726c0590dd8d3e9f3d6a60", - * "GrantToken": "AQpAM2RhZTk1MGMyNTk2ZmZmMzEyYWVhOWViN2I1MWM4Mzc0MWFiYjc0ZDE1ODkyNGFlNTIzODZhMzgyZjBlNGY3NiKIAgEBAgB4Pa6VDCWW__MSrqnre1HIN0Grt00ViSSuUjhqOC8OT3YAAADfMIHcBgkqhkiG9w0BBwaggc4wgcsCAQAwgcUGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMmqLyBTAegIn9XlK5AgEQgIGXZQjkBcl1dykDdqZBUQ6L1OfUivQy7JVYO2-ZJP7m6f1g8GzV47HX5phdtONAP7K_HQIflcgpkoCqd_fUnE114mSmiagWkbQ5sqAVV3ov-VeqgrvMe5ZFEWLMSluvBAqdjHEdMIkHMlhlj4ENZbzBfo9Wxk8b8SnwP4kc4gGivedzFXo-dwN8fxjjq_ZZ9JFOj2ijIbj5FyogDCN0drOfi8RORSEuCEmPvjFRMFAwcmwFkN2NPp89amA" + * GrantId: "0c237476b39f8bc44e45212e08498fbe3151305030726c0590dd8d3e9f3d6a60", + * GrantToken: "AQpAM2RhZTk1MGMyNTk2ZmZmMzEyYWVhOWViN2I1MWM4Mzc0MWFiYjc0ZDE1ODkyNGFlNTIzODZhMzgyZjBlNGY3NiKIAgEBAgB4Pa6VDCWW__MSrqnre1HIN0Grt00ViSSuUjhqOC8OT3YAAADfMIHcBgkqhkiG9w0BBwaggc4wgcsCAQAwgcUGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMmqLyBTAegIn9XlK5AgEQgIGXZQjkBcl1dykDdqZBUQ6L1OfUivQy7JVYO2-ZJP7m6f1g8GzV47HX5phdtONAP7K_HQIflcgpkoCqd_fUnE114mSmiagWkbQ5sqAVV3ov-VeqgrvMe5ZFEWLMSluvBAqdjHEdMIkHMlhlj4ENZbzBfo9Wxk8b8SnwP4kc4gGivedzFXo-dwN8fxjjq_ZZ9JFOj2ijIbj5FyogDCN0drOfi8RORSEuCEmPvjFRMFAwcmwFkN2NPp89amA" * } * *\/ - * // example id: to-create-a-grant-1477972226782 * ``` * + * @public */ export class CreateGrantCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/CreateKeyCommand.ts b/clients/client-kms/src/commands/CreateKeyCommand.ts index 9ee845d214c7c..ff65373bc162b 100644 --- a/clients/client-kms/src/commands/CreateKeyCommand.ts +++ b/clients/client-kms/src/commands/CreateKeyCommand.ts @@ -408,290 +408,8 @@ export interface CreateKeyCommandOutput extends CreateKeyResponse, __MetadataBea * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public - * @example To create a KMS key - * ```javascript - * // The following example creates a symmetric KMS key for encryption and decryption. No parameters are required for this operation. - * const input = {}; - * const command = new CreateKeyCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "KeyMetadata": { - * "AWSAccountId": "111122223333", - * "Arn": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "CreationDate": "2017-07-05T14:04:55-07:00", - * "CustomerMasterKeySpec": "SYMMETRIC_DEFAULT", - * "Description": "", - * "Enabled": true, - * "EncryptionAlgorithms": [ - * "SYMMETRIC_DEFAULT" - * ], - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyManager": "CUSTOMER", - * "KeySpec": "SYMMETRIC_DEFAULT", - * "KeyState": "Enabled", - * "KeyUsage": "ENCRYPT_DECRYPT", - * "MultiRegion": false, - * "Origin": "AWS_KMS" - * } - * } - * *\/ - * // example id: to-create-a-cmk-1 - * ``` - * - * @example To create an asymmetric RSA KMS key for encryption and decryption - * ```javascript - * // This example creates a KMS key that contains an asymmetric RSA key pair for encryption and decryption. The key spec and key usage can't be changed after the key is created. - * const input = { - * "KeySpec": "RSA_4096", - * "KeyUsage": "ENCRYPT_DECRYPT" - * }; - * const command = new CreateKeyCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "KeyMetadata": { - * "AWSAccountId": "111122223333", - * "Arn": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "CreationDate": "2021-04-05T14:04:55-07:00", - * "CustomerMasterKeySpec": "RSA_4096", - * "Description": "", - * "Enabled": true, - * "EncryptionAlgorithms": [ - * "RSAES_OAEP_SHA_1", - * "RSAES_OAEP_SHA_256" - * ], - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyManager": "CUSTOMER", - * "KeySpec": "RSA_4096", - * "KeyState": "Enabled", - * "KeyUsage": "ENCRYPT_DECRYPT", - * "MultiRegion": false, - * "Origin": "AWS_KMS" - * } - * } - * *\/ - * // example id: to-create-an-asymmetric-rsa-kms-key-for-encryption-and-decryption-2 - * ``` - * - * @example To create an asymmetric elliptic curve KMS key for signing and verification - * ```javascript - * // This example creates a KMS key that contains an asymmetric elliptic curve (ECC) key pair for signing and verification. The key usage is required even though "SIGN_VERIFY" is the only valid value for ECC KMS keys. The key spec and key usage can't be changed after the key is created. - * const input = { - * "KeySpec": "ECC_NIST_P521", - * "KeyUsage": "SIGN_VERIFY" - * }; - * const command = new CreateKeyCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "KeyMetadata": { - * "AWSAccountId": "111122223333", - * "Arn": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "CreationDate": "2019-12-02T07:48:55-07:00", - * "CustomerMasterKeySpec": "ECC_NIST_P521", - * "Description": "", - * "Enabled": true, - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyManager": "CUSTOMER", - * "KeySpec": "ECC_NIST_P521", - * "KeyState": "Enabled", - * "KeyUsage": "SIGN_VERIFY", - * "MultiRegion": false, - * "Origin": "AWS_KMS", - * "SigningAlgorithms": [ - * "ECDSA_SHA_512" - * ] - * } - * } - * *\/ - * // example id: to-create-an-asymmetric-elliptic-curve-kms-key-for-signing-and-verification-3 - * ``` - * - * @example To create an HMAC KMS key - * ```javascript - * // This example creates a 384-bit symmetric HMAC KMS key. The GENERATE_VERIFY_MAC key usage value is required even though it's the only valid value for HMAC KMS keys. The key spec and key usage can't be changed after the key is created. - * const input = { - * "KeySpec": "HMAC_384", - * "KeyUsage": "GENERATE_VERIFY_MAC" - * }; - * const command = new CreateKeyCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "KeyMetadata": { - * "AWSAccountId": "111122223333", - * "Arn": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "CreationDate": "2022-04-05T14:04:55-07:00", - * "CustomerMasterKeySpec": "HMAC_384", - * "Description": "", - * "Enabled": true, - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyManager": "CUSTOMER", - * "KeySpec": "HMAC_384", - * "KeyState": "Enabled", - * "KeyUsage": "GENERATE_VERIFY_MAC", - * "MacAlgorithms": [ - * "HMAC_SHA_384" - * ], - * "MultiRegion": false, - * "Origin": "AWS_KMS" - * } - * } - * *\/ - * // example id: to-create-an-hmac-kms-key-1630628752841 - * ``` - * - * @example To create a multi-Region primary KMS key - * ```javascript - * // This example creates a multi-Region primary symmetric encryption key. Because the default values for all parameters create a symmetric encryption key, only the MultiRegion parameter is required for this KMS key. - * const input = { - * "MultiRegion": true - * }; - * const command = new CreateKeyCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "KeyMetadata": { - * "AWSAccountId": "111122223333", - * "Arn": "arn:aws:kms:us-west-2:111122223333:key/mrk-1234abcd12ab34cd56ef12345678990ab", - * "CreationDate": "2021-09-02T016:15:21-09:00", - * "CustomerMasterKeySpec": "SYMMETRIC_DEFAULT", - * "Description": "", - * "Enabled": true, - * "EncryptionAlgorithms": [ - * "SYMMETRIC_DEFAULT" - * ], - * "KeyId": "mrk-1234abcd12ab34cd56ef12345678990ab", - * "KeyManager": "CUSTOMER", - * "KeySpec": "SYMMETRIC_DEFAULT", - * "KeyState": "Enabled", - * "KeyUsage": "ENCRYPT_DECRYPT", - * "MultiRegion": true, - * "MultiRegionConfiguration": { - * "MultiRegionKeyType": "PRIMARY", - * "PrimaryKey": { - * "Arn": "arn:aws:kms:us-west-2:111122223333:key/mrk-1234abcd12ab34cd56ef12345678990ab", - * "Region": "us-west-2" - * }, - * "ReplicaKeys": [] - * }, - * "Origin": "AWS_KMS" - * } - * } - * *\/ - * // example id: to-create-a-multi-region-primary-kms-key-4 - * ``` - * - * @example To create a KMS key for imported key material - * ```javascript - * // This example creates a symmetric KMS key with no key material. When the operation is complete, you can import your own key material into the KMS key. To create this KMS key, set the Origin parameter to EXTERNAL. - * const input = { - * "Origin": "EXTERNAL" - * }; - * const command = new CreateKeyCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "KeyMetadata": { - * "AWSAccountId": "111122223333", - * "Arn": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "CreationDate": "2019-12-02T07:48:55-07:00", - * "CustomerMasterKeySpec": "SYMMETRIC_DEFAULT", - * "Description": "", - * "Enabled": false, - * "EncryptionAlgorithms": [ - * "SYMMETRIC_DEFAULT" - * ], - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyManager": "CUSTOMER", - * "KeySpec": "SYMMETRIC_DEFAULT", - * "KeyState": "PendingImport", - * "KeyUsage": "ENCRYPT_DECRYPT", - * "MultiRegion": false, - * "Origin": "EXTERNAL" - * } - * } - * *\/ - * // example id: to-create-a-kms-key-for-imported-key-material-5 - * ``` - * - * @example To create a KMS key in an AWS CloudHSM key store - * ```javascript - * // This example creates a KMS key in the specified AWS CloudHSM key store. The operation creates the KMS key and its metadata in AWS KMS and creates the key material in the AWS CloudHSM cluster associated with the custom key store. This example requires the CustomKeyStoreId and Origin parameters. - * const input = { - * "CustomKeyStoreId": "cks-1234567890abcdef0", - * "Origin": "AWS_CLOUDHSM" - * }; - * const command = new CreateKeyCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "KeyMetadata": { - * "AWSAccountId": "111122223333", - * "Arn": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "CloudHsmClusterId": "cluster-234abcdefABC", - * "CreationDate": "2019-12-02T07:48:55-07:00", - * "CustomKeyStoreId": "cks-1234567890abcdef0", - * "CustomerMasterKeySpec": "SYMMETRIC_DEFAULT", - * "Description": "", - * "Enabled": true, - * "EncryptionAlgorithms": [ - * "SYMMETRIC_DEFAULT" - * ], - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyManager": "CUSTOMER", - * "KeySpec": "SYMMETRIC_DEFAULT", - * "KeyState": "Enabled", - * "KeyUsage": "ENCRYPT_DECRYPT", - * "MultiRegion": false, - * "Origin": "AWS_CLOUDHSM" - * } - * } - * *\/ - * // example id: to-create-a-kms-key-in-an-aws-cloudhsm-custom-key-store-6 - * ``` - * - * @example To create a KMS key in an external key store - * ```javascript - * // This example creates a KMS key in the specified external key store. It uses the XksKeyId parameter to associate the KMS key with an existing symmetric encryption key in your external key manager. This CustomKeyStoreId, Origin, and XksKeyId parameters are required in this operation. - * const input = { - * "CustomKeyStoreId": "cks-9876543210fedcba9", - * "Origin": "EXTERNAL_KEY_STORE", - * "XksKeyId": "bb8562717f809024" - * }; - * const command = new CreateKeyCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "KeyMetadata": { - * "AWSAccountId": "111122223333", - * "Arn": "arn:aws:kms:us-east-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321", - * "CreationDate": "2022-02-02T07:48:55-07:00", - * "CustomKeyStoreId": "cks-9876543210fedcba9", - * "CustomerMasterKeySpec": "SYMMETRIC_DEFAULT", - * "Description": "", - * "Enabled": true, - * "EncryptionAlgorithms": [ - * "SYMMETRIC_DEFAULT" - * ], - * "KeyId": "0987dcba-09fe-87dc-65ba-ab0987654321", - * "KeyManager": "CUSTOMER", - * "KeySpec": "SYMMETRIC_DEFAULT", - * "KeyState": "Enabled", - * "KeyUsage": "ENCRYPT_DECRYPT", - * "MultiRegion": false, - * "Origin": "EXTERNAL_KEY_STORE", - * "XksKeyConfiguration": { - * "Id": "bb8562717f809024" - * } - * } - * } - * *\/ - * // example id: to-create-a-kms-key-in-an-external-custom-key-store-7 - * ``` * + * @public */ export class CreateKeyCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/DecryptCommand.ts b/clients/client-kms/src/commands/DecryptCommand.ts index 24975529b9735..09147d8671e48 100644 --- a/clients/client-kms/src/commands/DecryptCommand.ts +++ b/clients/client-kms/src/commands/DecryptCommand.ts @@ -248,69 +248,45 @@ export interface DecryptCommandOutput extends DecryptResponse, __MetadataBearer * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To decrypt data with a symmetric encryption KMS key * ```javascript * // The following example decrypts data that was encrypted with a symmetric encryption KMS key. The KeyId is not required when decrypting with a symmetric encryption key, but it is a best practice. * const input = { - * "CiphertextBlob": "", - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" + * CiphertextBlob: "", + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new DecryptCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EncryptionAlgorithm": "SYMMETRIC_DEFAULT", - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "Plaintext": "" + * EncryptionAlgorithm: "SYMMETRIC_DEFAULT", + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * Plaintext: "" * } * *\/ - * // example id: to-decrypt-data-1 * ``` * * @example To decrypt data with an asymmetric encryption KMS key * ```javascript * // The following example decrypts data that was encrypted with an asymmetric encryption KMS key. When the KMS encryption key is asymmetric, you must specify the KMS key ID and the encryption algorithm that was used to encrypt the data. * const input = { - * "CiphertextBlob": "", - * "EncryptionAlgorithm": "RSAES_OAEP_SHA_256", - * "KeyId": "0987dcba-09fe-87dc-65ba-ab0987654321" + * CiphertextBlob: "", + * EncryptionAlgorithm: "RSAES_OAEP_SHA_256", + * KeyId: "0987dcba-09fe-87dc-65ba-ab0987654321" * }; * const command = new DecryptCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EncryptionAlgorithm": "RSAES_OAEP_SHA_256", - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321", - * "Plaintext": "" + * EncryptionAlgorithm: "RSAES_OAEP_SHA_256", + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321", + * Plaintext: "" * } * *\/ - * // example id: to-decrypt-data-2 - * ``` - * - * @example To decrypt data for a Nitro enclave - * ```javascript - * // The following Decrypt example includes the Recipient parameter with a signed attestation document from an AWS Nitro enclave. Instead of returning the decrypted data in plaintext (Plaintext), the operation returns the decrypted data encrypted by the public key from the attestation document (CiphertextForRecipient). - * const input = { - * "CiphertextBlob": "", - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "Recipient": { - * "AttestationDocument": "", - * "KeyEncryptionAlgorithm": "RSAES_OAEP_SHA_256" - * } - * }; - * const command = new DecryptCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "CiphertextForRecipient": "", - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "Plaintext": "" - * } - * *\/ - * // example id: to-decrypt-data-for-a-nitro-enclave-2 * ``` * + * @public */ export class DecryptCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/DeleteAliasCommand.ts b/clients/client-kms/src/commands/DeleteAliasCommand.ts index 4b8515de55e2f..a38741f24a8ad 100644 --- a/clients/client-kms/src/commands/DeleteAliasCommand.ts +++ b/clients/client-kms/src/commands/DeleteAliasCommand.ts @@ -135,18 +135,21 @@ export interface DeleteAliasCommandOutput extends __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To delete an alias * ```javascript * // The following example deletes the specified alias. * const input = { - * "AliasName": "alias/ExampleAlias" + * AliasName: "alias/ExampleAlias" * }; * const command = new DeleteAliasCommand(input); - * await client.send(command); - * // example id: to-delete-an-alias-1478285209338 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteAliasCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/DeleteCustomKeyStoreCommand.ts b/clients/client-kms/src/commands/DeleteCustomKeyStoreCommand.ts index 7195608face26..dfa39e3aefe31 100644 --- a/clients/client-kms/src/commands/DeleteCustomKeyStoreCommand.ts +++ b/clients/client-kms/src/commands/DeleteCustomKeyStoreCommand.ts @@ -164,18 +164,21 @@ export interface DeleteCustomKeyStoreCommandOutput extends DeleteCustomKeyStoreR * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To delete a custom key store from AWS KMS * ```javascript * // This example deletes a custom key store from AWS KMS. This operation does not affect the backing key store, such as a CloudHSM cluster, external key store proxy, or your external key manager. This operation doesn't return any data. To verify that the operation was successful, use the DescribeCustomKeyStores operation. * const input = { - * "CustomKeyStoreId": "cks-1234567890abcdef0" + * CustomKeyStoreId: "cks-1234567890abcdef0" * }; * const command = new DeleteCustomKeyStoreCommand(input); - * await client.send(command); - * // example id: to-delete-a-custom-key-store-from-aws-kms-1628630837145 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteCustomKeyStoreCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/DeleteImportedKeyMaterialCommand.ts b/clients/client-kms/src/commands/DeleteImportedKeyMaterialCommand.ts index 3eac22dbe1a1b..1377e308ffc6e 100644 --- a/clients/client-kms/src/commands/DeleteImportedKeyMaterialCommand.ts +++ b/clients/client-kms/src/commands/DeleteImportedKeyMaterialCommand.ts @@ -123,18 +123,21 @@ export interface DeleteImportedKeyMaterialCommandOutput extends __MetadataBearer * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To delete imported key material * ```javascript * // The following example deletes the imported key material from the specified KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new DeleteImportedKeyMaterialCommand(input); - * await client.send(command); - * // example id: to-delete-imported-key-material-1478561674507 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteImportedKeyMaterialCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/DeriveSharedSecretCommand.ts b/clients/client-kms/src/commands/DeriveSharedSecretCommand.ts index da947e0b203e1..2c9c2a22024b4 100644 --- a/clients/client-kms/src/commands/DeriveSharedSecretCommand.ts +++ b/clients/client-kms/src/commands/DeriveSharedSecretCommand.ts @@ -223,28 +223,28 @@ export interface DeriveSharedSecretCommandOutput extends DeriveSharedSecretRespo * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To derive a shared secret * ```javascript * // The following example derives a shared secret using a key agreement algorithm. * const input = { - * "KeyAgreementAlgorithm": "ECDH", - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "PublicKey": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvH3Yj0wbkLEpUl95Cv1cJVjsVNSjwGq3tCLnzXfhVwVvmzGN8pYj3U8nKwgouaHbBWNJYjP5VutbbkKS4Kv4GojwZBJyHN17kmxo8yTjRmjR15SKIQ8cqRA2uaERMLnpztIXdZp232PQPbWGxDyXYJ0aJ5EFSag" + * KeyAgreementAlgorithm: "ECDH", + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab", + * PublicKey: "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvH3Yj0wbkLEpUl95Cv1cJVjsVNSjwGq3tCLnzXfhVwVvmzGN8pYj3U8nKwgouaHbBWNJYjP5VutbbkKS4Kv4GojwZBJyHN17kmxo8yTjRmjR15SKIQ8cqRA2uaERMLnpztIXdZp232PQPbWGxDyXYJ0aJ5EFSag" * }; * const command = new DeriveSharedSecretCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyAgreementAlgorithm": "ECDH", - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyOrigin": "AWS_KMS", - * "SharedSecret": "MEYCIQCKZLWyTk5runarx6XiAkU9gv3lbwPO/pHa+DXFehzdDwIhANwpsIV2g/9SPWLLsF6p/hiSskuIXMTRwqrMdVKWTMHG" + * KeyAgreementAlgorithm: "ECDH", + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab", + * KeyOrigin: "AWS_KMS", + * SharedSecret: "MEYCIQCKZLWyTk5runarx6XiAkU9gv3lbwPO/pHa+DXFehzdDwIhANwpsIV2g/9SPWLLsF6p/hiSskuIXMTRwqrMdVKWTMHG" * } * *\/ - * // example id: to-derive-a-shared-secret-1718381818754 * ``` * + * @public */ export class DeriveSharedSecretCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/DescribeCustomKeyStoresCommand.ts b/clients/client-kms/src/commands/DescribeCustomKeyStoresCommand.ts index 751f98a8a82b6..a88371ad20fd8 100644 --- a/clients/client-kms/src/commands/DescribeCustomKeyStoresCommand.ts +++ b/clients/client-kms/src/commands/DescribeCustomKeyStoresCommand.ts @@ -155,108 +155,21 @@ export interface DescribeCustomKeyStoresCommandOutput extends DescribeCustomKeyS * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To get detailed information about custom key stores in the account and Region * ```javascript * // This example gets detailed information about all AWS KMS custom key stores in an AWS account and Region. To get all key stores, do not enter a custom key store name or ID. - * const input = {}; - * const command = new DescribeCustomKeyStoresCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "CustomKeyStores": [] - * } - * *\/ - * // example id: to-get-detailed-information-about-custom-key-stores-in-the-account-and-region-1 - * ``` - * - * @example To get detailed information about an AWS CloudHSM key store by specifying its friendly name - * ```javascript - * // This example gets detailed information about a particular AWS CloudHSM key store by specifying its friendly name. To limit the output to a particular custom key store, provide either the custom key store name or ID. - * const input = { - * "CustomKeyStoreName": "ExampleKeyStore" - * }; - * const command = new DescribeCustomKeyStoresCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "CustomKeyStores": [ - * { - * "CloudHsmClusterId": "cluster-234abcdefABC", - * "ConnectionState": "CONNECTED", - * "CreationDate": "1.499288695918E9", - * "CustomKeyStoreId": "cks-1234567890abcdef0", - * "CustomKeyStoreName": "ExampleKeyStore", - * "CustomKeyStoreType": "AWS_CLOUDHSM", - * "TrustAnchorCertificate": "" - * } - * ] - * } - * *\/ - * // example id: to-get-detailed-information-about-a-cloudhsm-custom-key-store-by-name-2 - * ``` - * - * @example To get detailed information about an external key store by specifying its ID - * ```javascript - * // This example gets detailed information about an external key store by specifying its ID. The example external key store proxy uses public endpoint connectivity. - * const input = { - * "CustomKeyStoreId": "cks-9876543210fedcba9" - * }; + * const input = { /* empty *\/ }; * const command = new DescribeCustomKeyStoresCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CustomKeyStores": [ - * { - * "ConnectionState": "CONNECTED", - * "CreationDate": "1.599288695918E9", - * "CustomKeyStoreId": "cks-9876543210fedcba9", - * "CustomKeyStoreName": "ExampleExternalKeyStore", - * "CustomKeyStoreType": "EXTERNAL_KEY_STORE", - * "XksProxyConfiguration": { - * "AccessKeyId": "ABCDE12345670EXAMPLE", - * "Connectivity": "PUBLIC_ENDPOINT", - * "UriEndpoint": "https://myproxy.xks.example.com", - * "UriPath": "/kms/xks/v1" - * } - * } - * ] + * CustomKeyStores: [] * } * *\/ - * // example id: to-get-detailed-information-about-an-external-key-store--3 - * ``` - * - * @example To get detailed information about an external key store VPC endpoint connectivity by specifying its friendly name - * ```javascript - * // This example gets detailed information about a particular external key store by specifying its friendly name. To limit the output to a particular custom key store, provide either the custom key store name or ID. The proxy URI path for this external key store includes an optional prefix. Also, because this example external key store uses VPC endpoint connectivity, the response includes the associated VPC endpoint service name. - * const input = { - * "CustomKeyStoreName": "VPCExternalKeystore" - * }; - * const command = new DescribeCustomKeyStoresCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "CustomKeyStores": [ - * { - * "ConnectionState": "CONNECTED", - * "CreationDate": "1.643057863.842", - * "CustomKeyStoreId": "cks-876543210fedcba98", - * "CustomKeyStoreName": "ExampleVPCExternalKeyStore", - * "CustomKeyStoreType": "EXTERNAL_KEY_STORE", - * "XksProxyConfiguration": { - * "AccessKeyId": "ABCDE12345670EXAMPLE", - * "Connectivity": "VPC_ENDPOINT_SERVICE", - * "UriEndpoint": "https://myproxy-private.xks.example.com", - * "UriPath": "/example-prefix/kms/xks/v1", - * "VpcEndpointServiceName": "com.amazonaws.vpce.us-east-1.vpce-svc-example1" - * } - * } - * ] - * } - * *\/ - * // example id: to-get-detailed-information-about-an-external-custom-key-store-by-name-4 * ``` * + * @public */ export class DescribeCustomKeyStoresCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/DescribeKeyCommand.ts b/clients/client-kms/src/commands/DescribeKeyCommand.ts index 892791fffc1e2..737e853993841 100644 --- a/clients/client-kms/src/commands/DescribeKeyCommand.ts +++ b/clients/client-kms/src/commands/DescribeKeyCommand.ts @@ -205,65 +205,32 @@ export interface DescribeKeyCommandOutput extends DescribeKeyResponse, __Metadat * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public - * @example To get details about a KMS key - * ```javascript - * // The following example gets metadata for a symmetric encryption KMS key. - * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" - * }; - * const command = new DescribeKeyCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "KeyMetadata": { - * "AWSAccountId": "111122223333", - * "Arn": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "CreationDate": "2017-07-05T14:04:55-07:00", - * "CustomerMasterKeySpec": "SYMMETRIC_DEFAULT", - * "Description": "", - * "Enabled": true, - * "EncryptionAlgorithms": [ - * "SYMMETRIC_DEFAULT" - * ], - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyManager": "CUSTOMER", - * "KeySpec": "SYMMETRIC_DEFAULT", - * "KeyState": "Enabled", - * "KeyUsage": "ENCRYPT_DECRYPT", - * "MultiRegion": false, - * "Origin": "AWS_KMS" - * } - * } - * *\/ - * // example id: get-key-details-1 - * ``` * * @example To get details about an RSA asymmetric KMS key * ```javascript * // The following example gets metadata for an asymmetric RSA KMS key used for signing and verification. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new DescribeKeyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyMetadata": { - * "AWSAccountId": "111122223333", - * "Arn": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "CreationDate": 1571767572.317, - * "CustomerMasterKeySpec": "RSA_2048", - * "Description": "", - * "Enabled": false, - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyManager": "CUSTOMER", - * "KeySpec": "RSA_2048", - * "KeyState": "Disabled", - * "KeyUsage": "SIGN_VERIFY", - * "MultiRegion": false, - * "Origin": "AWS_KMS", - * "SigningAlgorithms": [ + * KeyMetadata: { + * AWSAccountId: "111122223333", + * Arn: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * CreationDate: 1.571767572317E9, + * CustomerMasterKeySpec: "RSA_2048", + * Description: "", + * Enabled: false, + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab", + * KeyManager: "CUSTOMER", + * KeySpec: "RSA_2048", + * KeyState: "Disabled", + * KeyUsage: "SIGN_VERIFY", + * MultiRegion: false, + * Origin: "AWS_KMS", + * SigningAlgorithms: [ * "RSASSA_PKCS1_V1_5_SHA_256", * "RSASSA_PKCS1_V1_5_SHA_384", * "RSASSA_PKCS1_V1_5_SHA_512", @@ -274,166 +241,162 @@ export interface DescribeKeyCommandOutput extends DescribeKeyResponse, __Metadat * } * } * *\/ - * // example id: to-get-details-about-an-rsa-asymmetric-kms-key-2 * ``` * * @example To get details about a multi-Region key * ```javascript * // The following example gets metadata for a multi-Region replica key. This multi-Region key is a symmetric encryption key. DescribeKey returns information about the primary key and all of its replicas. * const input = { - * "KeyId": "arn:aws:kms:ap-northeast-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab" + * KeyId: "arn:aws:kms:ap-northeast-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab" * }; * const command = new DescribeKeyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyMetadata": { - * "AWSAccountId": "111122223333", - * "Arn": "arn:aws:kms:ap-northeast-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", - * "CreationDate": 1586329200.918, - * "CustomerMasterKeySpec": "SYMMETRIC_DEFAULT", - * "Description": "", - * "Enabled": true, - * "EncryptionAlgorithms": [ + * KeyMetadata: { + * AWSAccountId: "111122223333", + * Arn: "arn:aws:kms:ap-northeast-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", + * CreationDate: 1.586329200918E9, + * CustomerMasterKeySpec: "SYMMETRIC_DEFAULT", + * Description: "", + * Enabled: true, + * EncryptionAlgorithms: [ * "SYMMETRIC_DEFAULT" * ], - * "KeyId": "mrk-1234abcd12ab34cd56ef1234567890ab", - * "KeyManager": "CUSTOMER", - * "KeyState": "Enabled", - * "KeyUsage": "ENCRYPT_DECRYPT", - * "MultiRegion": true, - * "MultiRegionConfiguration": { - * "MultiRegionKeyType": "PRIMARY", - * "PrimaryKey": { - * "Arn": "arn:aws:kms:us-west-2:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", - * "Region": "us-west-2" + * KeyId: "mrk-1234abcd12ab34cd56ef1234567890ab", + * KeyManager: "CUSTOMER", + * KeyState: "Enabled", + * KeyUsage: "ENCRYPT_DECRYPT", + * MultiRegion: true, + * MultiRegionConfiguration: { + * MultiRegionKeyType: "PRIMARY", + * PrimaryKey: { + * Arn: "arn:aws:kms:us-west-2:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", + * Region: "us-west-2" * }, - * "ReplicaKeys": [ + * ReplicaKeys: [ * { - * "Arn": "arn:aws:kms:eu-west-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", - * "Region": "eu-west-1" + * Arn: "arn:aws:kms:eu-west-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", + * Region: "eu-west-1" * }, * { - * "Arn": "arn:aws:kms:ap-northeast-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", - * "Region": "ap-northeast-1" + * Arn: "arn:aws:kms:ap-northeast-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", + * Region: "ap-northeast-1" * }, * { - * "Arn": "arn:aws:kms:sa-east-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", - * "Region": "sa-east-1" + * Arn: "arn:aws:kms:sa-east-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", + * Region: "sa-east-1" * } * ] * }, - * "Origin": "AWS_KMS" + * Origin: "AWS_KMS" * } * } * *\/ - * // example id: to-get-details-about-a-multi-region-key-3 * ``` * * @example To get details about an HMAC KMS key * ```javascript * // The following example gets the metadata of an HMAC KMS key. * const input = { - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new DescribeKeyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyMetadata": { - * "AWSAccountId": "123456789012", - * "Arn": "arn:aws:kms:us-west-2:123456789012:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "CreationDate": 1566160362.664, - * "CustomerMasterKeySpec": "HMAC_256", - * "Description": "Development test key", - * "Enabled": true, - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyManager": "CUSTOMER", - * "KeyState": "Enabled", - * "KeyUsage": "GENERATE_VERIFY_MAC", - * "MacAlgorithms": [ + * KeyMetadata: { + * AWSAccountId: "123456789012", + * Arn: "arn:aws:kms:us-west-2:123456789012:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * CreationDate: 1.566160362664E9, + * CustomerMasterKeySpec: "HMAC_256", + * Description: "Development test key", + * Enabled: true, + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab", + * KeyManager: "CUSTOMER", + * KeyState: "Enabled", + * KeyUsage: "GENERATE_VERIFY_MAC", + * MacAlgorithms: [ * "HMAC_SHA_256" * ], - * "MultiRegion": false, - * "Origin": "AWS_KMS" + * MultiRegion: false, + * Origin: "AWS_KMS" * } * } * *\/ - * // example id: to-get-details-about-an-hmac-kms-key-4 * ``` * * @example To get details about a KMS key in an AWS CloudHSM key store * ```javascript * // The following example gets the metadata of a KMS key in an AWS CloudHSM key store. * const input = { - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new DescribeKeyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyMetadata": { - * "AWSAccountId": "123456789012", - * "Arn": "arn:aws:kms:us-west-2:123456789012:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "CloudHsmClusterId": "cluster-234abcdefABC", - * "CreationDate": 1646160362.664, - * "CustomKeyStoreId": "cks-1234567890abcdef0", - * "CustomerMasterKeySpec": "SYMMETRIC_DEFAULT", - * "Description": "CloudHSM key store test key", - * "Enabled": true, - * "EncryptionAlgorithms": [ + * KeyMetadata: { + * AWSAccountId: "123456789012", + * Arn: "arn:aws:kms:us-west-2:123456789012:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * CloudHsmClusterId: "cluster-234abcdefABC", + * CreationDate: 1.646160362664E9, + * CustomKeyStoreId: "cks-1234567890abcdef0", + * CustomerMasterKeySpec: "SYMMETRIC_DEFAULT", + * Description: "CloudHSM key store test key", + * Enabled: true, + * EncryptionAlgorithms: [ * "SYMMETRIC_DEFAULT" * ], - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyManager": "CUSTOMER", - * "KeySpec": "SYMMETRIC_DEFAULT", - * "KeyState": "Enabled", - * "KeyUsage": "ENCRYPT_DECRYPT", - * "MultiRegion": false, - * "Origin": "AWS_CLOUDHSM" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab", + * KeyManager: "CUSTOMER", + * KeySpec: "SYMMETRIC_DEFAULT", + * KeyState: "Enabled", + * KeyUsage: "ENCRYPT_DECRYPT", + * MultiRegion: false, + * Origin: "AWS_CLOUDHSM" * } * } * *\/ - * // example id: to-get-details-about-a-kms-key-in-an-AWS-CloudHSM-key-store-5 * ``` * * @example To get details about a KMS key in an external key store * ```javascript * // The following example gets the metadata of a KMS key in an external key store. * const input = { - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new DescribeKeyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyMetadata": { - * "AWSAccountId": "123456789012", - * "Arn": "arn:aws:kms:us-west-2:123456789012:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "CreationDate": 1646160362.664, - * "CustomKeyStoreId": "cks-1234567890abcdef0", - * "CustomerMasterKeySpec": "SYMMETRIC_DEFAULT", - * "Description": "External key store test key", - * "Enabled": true, - * "EncryptionAlgorithms": [ + * KeyMetadata: { + * AWSAccountId: "123456789012", + * Arn: "arn:aws:kms:us-west-2:123456789012:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * CreationDate: 1.646160362664E9, + * CustomKeyStoreId: "cks-1234567890abcdef0", + * CustomerMasterKeySpec: "SYMMETRIC_DEFAULT", + * Description: "External key store test key", + * Enabled: true, + * EncryptionAlgorithms: [ * "SYMMETRIC_DEFAULT" * ], - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyManager": "CUSTOMER", - * "KeySpec": "SYMMETRIC_DEFAULT", - * "KeyState": "Enabled", - * "KeyUsage": "ENCRYPT_DECRYPT", - * "MultiRegion": false, - * "Origin": "EXTERNAL_KEY_STORE", - * "XksKeyConfiguration": { - * "Id": "bb8562717f809024" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab", + * KeyManager: "CUSTOMER", + * KeySpec: "SYMMETRIC_DEFAULT", + * KeyState: "Enabled", + * KeyUsage: "ENCRYPT_DECRYPT", + * MultiRegion: false, + * Origin: "EXTERNAL_KEY_STORE", + * XksKeyConfiguration: { + * Id: "bb8562717f809024" * } * } * } * *\/ - * // example id: to-get-details-about-a-kms-key-in-an-external-key-store-6 * ``` * + * @public */ export class DescribeKeyCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/DisableKeyCommand.ts b/clients/client-kms/src/commands/DisableKeyCommand.ts index da23e1f7ea46f..cbc67063483eb 100644 --- a/clients/client-kms/src/commands/DisableKeyCommand.ts +++ b/clients/client-kms/src/commands/DisableKeyCommand.ts @@ -106,18 +106,21 @@ export interface DisableKeyCommandOutput extends __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To disable a KMS key * ```javascript * // The following example disables the specified KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new DisableKeyCommand(input); - * await client.send(command); - * // example id: to-disable-a-cmk-1478566583659 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DisableKeyCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/DisableKeyRotationCommand.ts b/clients/client-kms/src/commands/DisableKeyRotationCommand.ts index 048ab4bc8b7e4..d1565305e6470 100644 --- a/clients/client-kms/src/commands/DisableKeyRotationCommand.ts +++ b/clients/client-kms/src/commands/DisableKeyRotationCommand.ts @@ -141,18 +141,21 @@ export interface DisableKeyRotationCommandOutput extends __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To disable automatic rotation of key material * ```javascript * // The following example disables automatic annual rotation of the key material for the specified KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new DisableKeyRotationCommand(input); - * await client.send(command); - * // example id: to-disable-automatic-rotation-of-key-material-1478624396092 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DisableKeyRotationCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/DisconnectCustomKeyStoreCommand.ts b/clients/client-kms/src/commands/DisconnectCustomKeyStoreCommand.ts index aa704ab915d3d..4d53c71c5110f 100644 --- a/clients/client-kms/src/commands/DisconnectCustomKeyStoreCommand.ts +++ b/clients/client-kms/src/commands/DisconnectCustomKeyStoreCommand.ts @@ -151,18 +151,21 @@ export interface DisconnectCustomKeyStoreCommandOutput extends DisconnectCustomK * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To disconnect a custom key store from its CloudHSM cluster * ```javascript * // This example disconnects an AWS KMS custom key store from its backing key store. For an AWS CloudHSM key store, it disconnects the key store from its AWS CloudHSM cluster. For an external key store, it disconnects the key store from the external key store proxy that communicates with your external key manager. This operation doesn't return any data. To verify that the custom key store is disconnected, use the DescribeCustomKeyStores operation. * const input = { - * "CustomKeyStoreId": "cks-1234567890abcdef0" + * CustomKeyStoreId: "cks-1234567890abcdef0" * }; * const command = new DisconnectCustomKeyStoreCommand(input); - * await client.send(command); - * // example id: to-disconnect-a-custom-key-store-from-its-cloudhsm-cluster-234abcdefABC + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DisconnectCustomKeyStoreCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/EnableKeyCommand.ts b/clients/client-kms/src/commands/EnableKeyCommand.ts index c5ae8635a7725..614bd18d3aa98 100644 --- a/clients/client-kms/src/commands/EnableKeyCommand.ts +++ b/clients/client-kms/src/commands/EnableKeyCommand.ts @@ -106,18 +106,21 @@ export interface EnableKeyCommandOutput extends __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To enable a KMS key * ```javascript * // The following example enables the specified KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new EnableKeyCommand(input); - * await client.send(command); - * // example id: to-enable-a-cmk-1478627501129 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class EnableKeyCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/EnableKeyRotationCommand.ts b/clients/client-kms/src/commands/EnableKeyRotationCommand.ts index 73002829b2910..80ade1d2550f5 100644 --- a/clients/client-kms/src/commands/EnableKeyRotationCommand.ts +++ b/clients/client-kms/src/commands/EnableKeyRotationCommand.ts @@ -161,19 +161,22 @@ export interface EnableKeyRotationCommandOutput extends __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To enable automatic rotation of key material * ```javascript * // The following example enables automatic rotation with a rotation period of 365 days for the specified KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "RotationPeriodInDays": 365 + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab", + * RotationPeriodInDays: 365 * }; * const command = new EnableKeyRotationCommand(input); - * await client.send(command); - * // example id: to-enable-automatic-rotation-of-key-material-1712499675853 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class EnableKeyRotationCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/EncryptCommand.ts b/clients/client-kms/src/commands/EncryptCommand.ts index d9d3879e8d2cc..83ea64901f4bf 100644 --- a/clients/client-kms/src/commands/EncryptCommand.ts +++ b/clients/client-kms/src/commands/EncryptCommand.ts @@ -244,46 +244,45 @@ export interface EncryptCommandOutput extends EncryptResponse, __MetadataBearer * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To encrypt data with a symmetric encryption KMS key * ```javascript * // The following example encrypts data with the specified symmetric encryption KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "Plaintext": "" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab", + * Plaintext: "" * }; * const command = new EncryptCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CiphertextBlob": "", - * "EncryptionAlgorithm": "SYMMETRIC_DEFAULT", - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" + * CiphertextBlob: "", + * EncryptionAlgorithm: "SYMMETRIC_DEFAULT", + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" * } * *\/ - * // example id: to-encrypt-data-1 * ``` * * @example To encrypt data with an asymmetric encryption KMS key * ```javascript * // The following example encrypts data with the specified RSA asymmetric KMS key. When you encrypt with an asymmetric key, you must specify the encryption algorithm. * const input = { - * "EncryptionAlgorithm": "RSAES_OAEP_SHA_256", - * "KeyId": "0987dcba-09fe-87dc-65ba-ab0987654321", - * "Plaintext": "" + * EncryptionAlgorithm: "RSAES_OAEP_SHA_256", + * KeyId: "0987dcba-09fe-87dc-65ba-ab0987654321", + * Plaintext: "" * }; * const command = new EncryptCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CiphertextBlob": "", - * "EncryptionAlgorithm": "RSAES_OAEP_SHA_256", - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321" + * CiphertextBlob: "", + * EncryptionAlgorithm: "RSAES_OAEP_SHA_256", + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321" * } * *\/ - * // example id: to-encrypt-data-2 * ``` * + * @public */ export class EncryptCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/GenerateDataKeyCommand.ts b/clients/client-kms/src/commands/GenerateDataKeyCommand.ts index 60ac791bf9405..23801efa548c8 100644 --- a/clients/client-kms/src/commands/GenerateDataKeyCommand.ts +++ b/clients/client-kms/src/commands/GenerateDataKeyCommand.ts @@ -247,50 +247,26 @@ export interface GenerateDataKeyCommandOutput extends GenerateDataKeyResponse, _ * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To generate a data key * ```javascript * // The following example generates a 256-bit symmetric data encryption key (data key) in two formats. One is the unencrypted (plainext) data key, and the other is the data key encrypted with the specified KMS key. * const input = { - * "KeyId": "alias/ExampleAlias", - * "KeySpec": "AES_256" + * KeyId: "alias/ExampleAlias", + * KeySpec: "AES_256" * }; * const command = new GenerateDataKeyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CiphertextBlob": "", - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "Plaintext": "" + * CiphertextBlob: "", + * KeyId: "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * Plaintext: "" * } * *\/ - * // example id: to-generate-a-data-key-1 - * ``` - * - * @example To generate a data key pair for a Nitro enclave - * ```javascript - * // The following example includes the Recipient parameter with a signed attestation document from an AWS Nitro enclave. Instead of returning a copy of the data key encrypted by the KMS key and a plaintext copy of the data key, GenerateDataKey returns one copy of the data key encrypted by the KMS key (CiphertextBlob) and one copy of the data key encrypted by the public key from the attestation document (CiphertextForRecipient). The operation doesn't return a plaintext data key. - * const input = { - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeySpec": "AES_256", - * "Recipient": { - * "AttestationDocument": "", - * "KeyEncryptionAlgorithm": "RSAES_OAEP_SHA_256" - * } - * }; - * const command = new GenerateDataKeyCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "CiphertextBlob": "", - * "CiphertextForRecipient": "", - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "Plaintext": "" - * } - * *\/ - * // example id: to-generate-a-data-key-for-a-nitro-enclave-2 * ``` * + * @public */ export class GenerateDataKeyCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/GenerateDataKeyPairCommand.ts b/clients/client-kms/src/commands/GenerateDataKeyPairCommand.ts index b6e0af2fc5dc9..60ce9ada60605 100644 --- a/clients/client-kms/src/commands/GenerateDataKeyPairCommand.ts +++ b/clients/client-kms/src/commands/GenerateDataKeyPairCommand.ts @@ -231,54 +231,28 @@ export interface GenerateDataKeyPairCommandOutput extends GenerateDataKeyPairRes * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To generate an RSA key pair for encryption and decryption * ```javascript * // This example generates an RSA data key pair for encryption and decryption. The operation returns a plaintext public key and private key, and a copy of the private key that is encrypted under a symmetric encryption KMS key that you specify. * const input = { - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyPairSpec": "RSA_3072" + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * KeyPairSpec: "RSA_3072" * }; * const command = new GenerateDataKeyPairCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyPairSpec": "RSA_3072", - * "PrivateKeyCiphertextBlob": "", - * "PrivateKeyPlaintext": "", - * "PublicKey": "" + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * KeyPairSpec: "RSA_3072", + * PrivateKeyCiphertextBlob: "", + * PrivateKeyPlaintext: "", + * PublicKey: "" * } * *\/ - * // example id: to-generate-an-rsa-key-pair-for-encryption-and-decryption-1 - * ``` - * - * @example To generate a data key pair for a Nitro enclave - * ```javascript - * // The following example includes the Recipient parameter with a signed attestation document from an AWS Nitro enclave. Instead of returning a plaintext copy of the private data key, GenerateDataKeyPair returns a copy of the private data key encrypted by the public key from the attestation document (CiphertextForRecipient). It returns the public data key (PublicKey) and a copy of private data key encrypted under the specified KMS key (PrivateKeyCiphertextBlob), as usual, but plaintext private data key field (PrivateKeyPlaintext) is null or empty. - * const input = { - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyPairSpec": "RSA_3072", - * "Recipient": { - * "AttestationDocument": "", - * "KeyEncryptionAlgorithm": "RSAES_OAEP_SHA_256" - * } - * }; - * const command = new GenerateDataKeyPairCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "CiphertextForRecipient": "", - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyPairSpec": "RSA_3072", - * "PrivateKeyCiphertextBlob": "", - * "PrivateKeyPlaintext": "", - * "PublicKey": "" - * } - * *\/ - * // example id: to-generate-a-data-key-pair-for-a-nitro-enclave-2 * ``` * + * @public */ export class GenerateDataKeyPairCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/GenerateDataKeyPairWithoutPlaintextCommand.ts b/clients/client-kms/src/commands/GenerateDataKeyPairWithoutPlaintextCommand.ts index f85ff44778cb3..d971d6e4dede4 100644 --- a/clients/client-kms/src/commands/GenerateDataKeyPairWithoutPlaintextCommand.ts +++ b/clients/client-kms/src/commands/GenerateDataKeyPairWithoutPlaintextCommand.ts @@ -211,27 +211,27 @@ export interface GenerateDataKeyPairWithoutPlaintextCommandOutput * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To generate an asymmetric data key pair without a plaintext key * ```javascript * // This example returns an asymmetric elliptic curve (ECC) data key pair. The private key is encrypted under the symmetric encryption KMS key that you specify. This operation doesn't return a plaintext (unencrypted) private key. * const input = { - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyPairSpec": "ECC_NIST_P521" + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * KeyPairSpec: "ECC_NIST_P521" * }; * const command = new GenerateDataKeyPairWithoutPlaintextCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyPairSpec": "ECC_NIST_P521", - * "PrivateKeyCiphertextBlob": "", - * "PublicKey": "" + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * KeyPairSpec: "ECC_NIST_P521", + * PrivateKeyCiphertextBlob: "", + * PublicKey: "" * } * *\/ - * // example id: to-generate-an-asymmetric-data-key-pair-without-a-plaintext-key-1628620971564 * ``` * + * @public */ export class GenerateDataKeyPairWithoutPlaintextCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/GenerateDataKeyWithoutPlaintextCommand.ts b/clients/client-kms/src/commands/GenerateDataKeyWithoutPlaintextCommand.ts index 860fcaa393772..e12c588b9d01c 100644 --- a/clients/client-kms/src/commands/GenerateDataKeyWithoutPlaintextCommand.ts +++ b/clients/client-kms/src/commands/GenerateDataKeyWithoutPlaintextCommand.ts @@ -212,25 +212,25 @@ export interface GenerateDataKeyWithoutPlaintextCommandOutput * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To generate an encrypted data key * ```javascript * // The following example generates an encrypted copy of a 256-bit symmetric data encryption key (data key). The data key is encrypted with the specified KMS key. * const input = { - * "KeyId": "alias/ExampleAlias", - * "KeySpec": "AES_256" + * KeyId: "alias/ExampleAlias", + * KeySpec: "AES_256" * }; * const command = new GenerateDataKeyWithoutPlaintextCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CiphertextBlob": "", - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" + * CiphertextBlob: "", + * KeyId: "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" * } * *\/ - * // example id: to-generate-an-encrypted-data-key-1478914121134 * ``` * + * @public */ export class GenerateDataKeyWithoutPlaintextCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/GenerateMacCommand.ts b/clients/client-kms/src/commands/GenerateMacCommand.ts index 9fe349715b837..4a5f8dc4fd90d 100644 --- a/clients/client-kms/src/commands/GenerateMacCommand.ts +++ b/clients/client-kms/src/commands/GenerateMacCommand.ts @@ -157,27 +157,27 @@ export interface GenerateMacCommandOutput extends GenerateMacResponse, __Metadat * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To generate an HMAC for a message * ```javascript * // This example generates an HMAC for a message, an HMAC KMS key, and a MAC algorithm. The algorithm must be supported by the specified HMAC KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "MacAlgorithm": "HMAC_SHA_384", - * "Message": "Hello World" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab", + * MacAlgorithm: "HMAC_SHA_384", + * Message: "Hello World" * }; * const command = new GenerateMacCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "Mac": "", - * "MacAlgorithm": "HMAC_SHA_384" + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * Mac: "", + * MacAlgorithm: "HMAC_SHA_384" * } * *\/ - * // example id: to-generate-an-hmac-for-a-message-1631570135665 * ``` * + * @public */ export class GenerateMacCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/GenerateRandomCommand.ts b/clients/client-kms/src/commands/GenerateRandomCommand.ts index c57d73c6c1032..34885456560d9 100644 --- a/clients/client-kms/src/commands/GenerateRandomCommand.ts +++ b/clients/client-kms/src/commands/GenerateRandomCommand.ts @@ -140,44 +140,23 @@ export interface GenerateRandomCommandOutput extends GenerateRandomResponse, __M * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public - * @example To generate random data - * ```javascript - * // The following example generates 32 bytes of random data. - * const input = { - * "NumberOfBytes": 32 - * }; - * const command = new GenerateRandomCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Plaintext": "" - * } - * *\/ - * // example id: to-generate-random-data-1 - * ``` * * @example To generate random data * ```javascript - * // The following example includes the Recipient parameter with a signed attestation document from an AWS Nitro enclave. Instead of returning a plaintext (unencrypted) byte string, GenerateRandom returns the byte string encrypted by the public key from the enclave's attestation document. + * // The following example generates 32 bytes of random data. * const input = { - * "NumberOfBytes": 1024, - * "Recipient": { - * "AttestationDocument": "", - * "KeyEncryptionAlgorithm": "RSAES_OAEP_SHA_256" - * } + * NumberOfBytes: 32 * }; * const command = new GenerateRandomCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CiphertextForRecipient": "", - * "Plaintext": "" + * Plaintext: "" * } * *\/ - * // example id: to-generate-random-data-2 * ``` * + * @public */ export class GenerateRandomCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/GetKeyPolicyCommand.ts b/clients/client-kms/src/commands/GetKeyPolicyCommand.ts index aede7fd827bd3..4811b0d5bf427 100644 --- a/clients/client-kms/src/commands/GetKeyPolicyCommand.ts +++ b/clients/client-kms/src/commands/GetKeyPolicyCommand.ts @@ -103,24 +103,36 @@ export interface GetKeyPolicyCommandOutput extends GetKeyPolicyResponse, __Metad * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To retrieve a key policy * ```javascript * // The following example retrieves the key policy for the specified KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "PolicyName": "default" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab", + * PolicyName: "default" * }; * const command = new GetKeyPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Policy": "{\n \"Version\" : \"2012-10-17\",\n \"Id\" : \"key-default-1\",\n \"Statement\" : [ {\n \"Sid\" : \"Enable IAM User Permissions\",\n \"Effect\" : \"Allow\",\n \"Principal\" : {\n \"AWS\" : \"arn:aws:iam::111122223333:root\"\n },\n \"Action\" : \"kms:*\",\n \"Resource\" : \"*\"\n } ]\n}" + * Policy: `{ + * "Version" : "2012-10-17", + * "Id" : "key-default-1", + * "Statement" : [ { + * "Sid" : "Enable IAM User Permissions", + * "Effect" : "Allow", + * "Principal" : { + * "AWS" : "arn:aws:iam::111122223333:root" + * }, + * "Action" : "kms:*", + * "Resource" : "*" + * } ] + * }` * } * *\/ - * // example id: to-retrieve-a-key-policy-1479170128325 * ``` * + * @public */ export class GetKeyPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/GetKeyRotationStatusCommand.ts b/clients/client-kms/src/commands/GetKeyRotationStatusCommand.ts index 0ef646e01d1dc..4bf8d6e6689ef 100644 --- a/clients/client-kms/src/commands/GetKeyRotationStatusCommand.ts +++ b/clients/client-kms/src/commands/GetKeyRotationStatusCommand.ts @@ -166,27 +166,8 @@ export interface GetKeyRotationStatusCommandOutput extends GetKeyRotationStatusR * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public - * @example To retrieve the rotation status for a KMS key - * ```javascript - * // The following example retrieves detailed information about the rotation status for a KMS key, including whether automatic key rotation is enabled for the specified KMS key, the rotation period, and the next scheduled rotation date. - * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" - * }; - * const command = new GetKeyRotationStatusCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "KeyRotationEnabled": true, - * "NextRotationDate": "2024-04-05T15:14:47.757000+00:00", - * "OnDemandRotationStartDate": "2024-03-02T10:11:36.564000+00:00", - * "RotationPeriodInDays": 365 - * } - * *\/ - * // example id: to-retrieve-the-rotation-status-for-a-kms-key-1712500357701 - * ``` * + * @public */ export class GetKeyRotationStatusCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/GetParametersForImportCommand.ts b/clients/client-kms/src/commands/GetParametersForImportCommand.ts index b075694e31e44..0c76d7487b878 100644 --- a/clients/client-kms/src/commands/GetParametersForImportCommand.ts +++ b/clients/client-kms/src/commands/GetParametersForImportCommand.ts @@ -180,91 +180,8 @@ export interface GetParametersForImportCommandOutput extends GetParametersForImp * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public - * @example To download the public key and import token for a symmetric encryption KMS key - * ```javascript - * // The following example downloads a public key and import token to import symmetric encryption key material. It uses the default wrapping key spec and the RSAES_OAEP_SHA_256 wrapping algorithm. - * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "WrappingAlgorithm": "RSAES_OAEP_SHA_1", - * "WrappingKeySpec": "RSA_2048" - * }; - * const command = new GetParametersForImportCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ImportToken": "", - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "ParametersValidTo": "2023-02-01T14:52:17-08:00", - * "PublicKey": "" - * } - * *\/ - * // example id: to-download-the-public-key-and-import-token-1 - * ``` - * - * @example To download the public key and import token for an RSA asymmetric KMS key - * ```javascript - * // The following example downloads a public key and import token to import an RSA private key. It uses a required RSA_AES wrapping algorithm and the largest supported private key. - * const input = { - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/8888abcd-12ab-34cd-56ef-1234567890ab", - * "WrappingAlgorithm": "RSA_AES_KEY_WRAP_SHA_256", - * "WrappingKeySpec": "RSA_4096" - * }; - * const command = new GetParametersForImportCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ImportToken": "", - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/8888abcd-12ab-34cd-56ef-1234567890ab", - * "ParametersValidTo": "2023-03-08T13:02:02-07:00", - * "PublicKey": "" - * } - * *\/ - * // example id: to-download-the-public-key-and-import-token-2 - * ``` - * - * @example To download the public key and import token for an elliptic curve (ECC) asymmetric KMS key - * ```javascript - * // The following example downloads a public key and import token to import an ECC_NIST_P521 (secp521r1) private key. You cannot directly wrap this ECC key under an RSA_2048 public key, although you can use an RSA_2048 public key with an RSA_AES wrapping algorithm to wrap any supported key material. This example requests an RSA_3072 public key for use with the RSAES_OAEP_SHA_256. - * const input = { - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/9876abcd-12ab-34cd-56ef-1234567890ab", - * "WrappingAlgorithm": "RSAES_OAEP_SHA_256", - * "WrappingKeySpec": "RSA_3072" - * }; - * const command = new GetParametersForImportCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ImportToken": "", - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/9876abcd-12ab-34cd-56ef-1234567890ab", - * "ParametersValidTo": "2023-09-12T03:15:01-20:00", - * "PublicKey": "" - * } - * *\/ - * // example id: to-download-the-public-key-and-import-token-3 - * ``` - * - * @example To download the public key and import token for an HMAC KMS key - * ```javascript - * // The following example downloads a public key and import token to import an HMAC key. It uses the RSAES_OAEP_SHA_256 wrapping algorithm and an RSA_4096 private key. - * const input = { - * "KeyId": "2468abcd-12ab-34cd-56ef-1234567890ab", - * "WrappingAlgorithm": "RSAES_OAEP_SHA_256", - * "WrappingKeySpec": "RSA_4096" - * }; - * const command = new GetParametersForImportCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ImportToken": "", - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/2468abcd-12ab-34cd-56ef-1234567890ab", - * "ParametersValidTo": "2023-04-02T13:02:02-07:00", - * "PublicKey": "" - * } - * *\/ - * // example id: to-download-the-public-key-and-import-token-4 - * ``` * + * @public */ export class GetParametersForImportCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/GetPublicKeyCommand.ts b/clients/client-kms/src/commands/GetPublicKeyCommand.ts index 9415b6d0451a3..3ce6f66c9a1ef 100644 --- a/clients/client-kms/src/commands/GetPublicKeyCommand.ts +++ b/clients/client-kms/src/commands/GetPublicKeyCommand.ts @@ -194,30 +194,30 @@ export interface GetPublicKeyCommandOutput extends GetPublicKeyResponse, __Metad * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To download the public key of an asymmetric KMS key * ```javascript * // This example gets the public key of an asymmetric RSA KMS key used for encryption and decryption. The operation returns the key spec, key usage, and encryption or signing algorithms to help you use the public key correctly outside of AWS KMS. * const input = { - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321" + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321" * }; * const command = new GetPublicKeyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CustomerMasterKeySpec": "RSA_4096", - * "EncryptionAlgorithms": [ + * CustomerMasterKeySpec: "RSA_4096", + * EncryptionAlgorithms: [ * "RSAES_OAEP_SHA_1", * "RSAES_OAEP_SHA_256" * ], - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321", - * "KeyUsage": "ENCRYPT_DECRYPT", - * "PublicKey": "" + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321", + * KeyUsage: "ENCRYPT_DECRYPT", + * PublicKey: "" * } * *\/ - * // example id: to-download-the-public-key-of-an-asymmetric-kms-key-1628621691873 * ``` * + * @public */ export class GetPublicKeyCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/ImportKeyMaterialCommand.ts b/clients/client-kms/src/commands/ImportKeyMaterialCommand.ts index 003be2a41bb97..9370f61244e15 100644 --- a/clients/client-kms/src/commands/ImportKeyMaterialCommand.ts +++ b/clients/client-kms/src/commands/ImportKeyMaterialCommand.ts @@ -221,36 +221,24 @@ export interface ImportKeyMaterialCommandOutput extends ImportKeyMaterialRespons * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public - * @example To import key material into a KMS key - * ```javascript - * // The following example imports key material into the specified KMS key. - * const input = { - * "EncryptedKeyMaterial": "", - * "ExpirationModel": "KEY_MATERIAL_DOES_NOT_EXPIRE", - * "ImportToken": "", - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" - * }; - * const command = new ImportKeyMaterialCommand(input); - * await client.send(command); - * // example id: to-import-key-material-into-a-kms-key-1 - * ``` * * @example To import key material into a KMS key * ```javascript - * // The following example imports key material that expires in 3 days. It might be part of an application that frequently reimports the same key material to comply with business rules or regulations. + * // The following example imports key material into the specified KMS key. * const input = { - * "EncryptedKeyMaterial": "", - * "ExpirationModel": "KEY_MATERIAL_EXPIRES", - * "ImportToken": "", - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "ValidTo": "2023-09-30T00:00:00-00:00" + * EncryptedKeyMaterial: "", + * ExpirationModel: "KEY_MATERIAL_DOES_NOT_EXPIRE", + * ImportToken: "", + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new ImportKeyMaterialCommand(input); - * await client.send(command); - * // example id: to-import-key-material-into-a-kms-key-2 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ImportKeyMaterialCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/ListAliasesCommand.ts b/clients/client-kms/src/commands/ListAliasesCommand.ts index e2035e6a2e3ef..68ff78198b74d 100644 --- a/clients/client-kms/src/commands/ListAliasesCommand.ts +++ b/clients/client-kms/src/commands/ListAliasesCommand.ts @@ -130,63 +130,63 @@ export interface ListAliasesCommandOutput extends ListAliasesResponse, __Metadat * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To list aliases * ```javascript * // The following example lists aliases. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListAliasesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Aliases": [ + * Aliases: [ * { - * "AliasArn": "arn:aws:kms:us-east-2:111122223333:alias/aws/acm", - * "AliasName": "alias/aws/acm", - * "TargetKeyId": "da03f6f7-d279-427a-9cae-de48d07e5b66" + * AliasArn: "arn:aws:kms:us-east-2:111122223333:alias/aws/acm", + * AliasName: "alias/aws/acm", + * TargetKeyId: "da03f6f7-d279-427a-9cae-de48d07e5b66" * }, * { - * "AliasArn": "arn:aws:kms:us-east-2:111122223333:alias/aws/ebs", - * "AliasName": "alias/aws/ebs", - * "TargetKeyId": "25a217e7-7170-4b8c-8bf6-045ea5f70e5b" + * AliasArn: "arn:aws:kms:us-east-2:111122223333:alias/aws/ebs", + * AliasName: "alias/aws/ebs", + * TargetKeyId: "25a217e7-7170-4b8c-8bf6-045ea5f70e5b" * }, * { - * "AliasArn": "arn:aws:kms:us-east-2:111122223333:alias/aws/rds", - * "AliasName": "alias/aws/rds", - * "TargetKeyId": "7ec3104e-c3f2-4b5c-bf42-bfc4772c6685" + * AliasArn: "arn:aws:kms:us-east-2:111122223333:alias/aws/rds", + * AliasName: "alias/aws/rds", + * TargetKeyId: "7ec3104e-c3f2-4b5c-bf42-bfc4772c6685" * }, * { - * "AliasArn": "arn:aws:kms:us-east-2:111122223333:alias/aws/redshift", - * "AliasName": "alias/aws/redshift", - * "TargetKeyId": "08f7a25a-69e2-4fb5-8f10-393db27326fa" + * AliasArn: "arn:aws:kms:us-east-2:111122223333:alias/aws/redshift", + * AliasName: "alias/aws/redshift", + * TargetKeyId: "08f7a25a-69e2-4fb5-8f10-393db27326fa" * }, * { - * "AliasArn": "arn:aws:kms:us-east-2:111122223333:alias/aws/s3", - * "AliasName": "alias/aws/s3", - * "TargetKeyId": "d2b0f1a3-580d-4f79-b836-bc983be8cfa5" + * AliasArn: "arn:aws:kms:us-east-2:111122223333:alias/aws/s3", + * AliasName: "alias/aws/s3", + * TargetKeyId: "d2b0f1a3-580d-4f79-b836-bc983be8cfa5" * }, * { - * "AliasArn": "arn:aws:kms:us-east-2:111122223333:alias/example1", - * "AliasName": "alias/example1", - * "TargetKeyId": "4da1e216-62d0-46c5-a7c0-5f3a3d2f8046" + * AliasArn: "arn:aws:kms:us-east-2:111122223333:alias/example1", + * AliasName: "alias/example1", + * TargetKeyId: "4da1e216-62d0-46c5-a7c0-5f3a3d2f8046" * }, * { - * "AliasArn": "arn:aws:kms:us-east-2:111122223333:alias/example2", - * "AliasName": "alias/example2", - * "TargetKeyId": "f32fef59-2cc2-445b-8573-2d73328acbee" + * AliasArn: "arn:aws:kms:us-east-2:111122223333:alias/example2", + * AliasName: "alias/example2", + * TargetKeyId: "f32fef59-2cc2-445b-8573-2d73328acbee" * }, * { - * "AliasArn": "arn:aws:kms:us-east-2:111122223333:alias/example3", - * "AliasName": "alias/example3", - * "TargetKeyId": "1374ef38-d34e-4d5f-b2c9-4e0daee38855" + * AliasArn: "arn:aws:kms:us-east-2:111122223333:alias/example3", + * AliasName: "alias/example3", + * TargetKeyId: "1374ef38-d34e-4d5f-b2c9-4e0daee38855" * } * ], - * "Truncated": false + * Truncated: false * } * *\/ - * // example id: to-list-aliases-1480729693349 * ``` * + * @public */ export class ListAliasesCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/ListGrantsCommand.ts b/clients/client-kms/src/commands/ListGrantsCommand.ts index b9d8921cd9d2a..e9525254287ea 100644 --- a/clients/client-kms/src/commands/ListGrantsCommand.ts +++ b/clients/client-kms/src/commands/ListGrantsCommand.ts @@ -172,76 +172,8 @@ export interface ListGrantsCommandOutput extends ListGrantsResponse, __MetadataB * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public - * @example To list grants for a KMS key - * ```javascript - * // The following example lists grants for the specified KMS key. - * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" - * }; - * const command = new ListGrantsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Grants": [ - * { - * "CreationDate": "2016-10-25T14:37:41-07:00", - * "GrantId": "91ad875e49b04a9d1f3bdeb84d821f9db6ea95e1098813f6d47f0c65fbe2a172", - * "GranteePrincipal": "acm.us-east-2.amazonaws.com", - * "IssuingAccount": "arn:aws:iam::111122223333:root", - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "Operations": [ - * "Encrypt", - * "ReEncryptFrom", - * "ReEncryptTo" - * ], - * "RetiringPrincipal": "acm.us-east-2.amazonaws.com" - * }, - * { - * "CreationDate": "2016-10-25T14:37:41-07:00", - * "GrantId": "a5d67d3e207a8fc1f4928749ee3e52eb0440493a8b9cf05bbfad91655b056200", - * "GranteePrincipal": "acm.us-east-2.amazonaws.com", - * "IssuingAccount": "arn:aws:iam::111122223333:root", - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "Operations": [ - * "ReEncryptFrom", - * "ReEncryptTo" - * ], - * "RetiringPrincipal": "acm.us-east-2.amazonaws.com" - * }, - * { - * "CreationDate": "2016-10-25T14:37:41-07:00", - * "GrantId": "c541aaf05d90cb78846a73b346fc43e65be28b7163129488c738e0c9e0628f4f", - * "GranteePrincipal": "acm.us-east-2.amazonaws.com", - * "IssuingAccount": "arn:aws:iam::111122223333:root", - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "Operations": [ - * "Encrypt", - * "ReEncryptFrom", - * "ReEncryptTo" - * ], - * "RetiringPrincipal": "acm.us-east-2.amazonaws.com" - * }, - * { - * "CreationDate": "2016-10-25T14:37:41-07:00", - * "GrantId": "dd2052c67b4c76ee45caf1dc6a1e2d24e8dc744a51b36ae2f067dc540ce0105c", - * "GranteePrincipal": "acm.us-east-2.amazonaws.com", - * "IssuingAccount": "arn:aws:iam::111122223333:root", - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "Operations": [ - * "Encrypt", - * "ReEncryptFrom", - * "ReEncryptTo" - * ], - * "RetiringPrincipal": "acm.us-east-2.amazonaws.com" - * } - * ], - * "Truncated": true - * } - * *\/ - * // example id: to-list-grants-for-a-cmk-1481067365389 - * ``` * + * @public */ export class ListGrantsCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/ListKeyPoliciesCommand.ts b/clients/client-kms/src/commands/ListKeyPoliciesCommand.ts index 04a0166ce4f01..8e3b34b9c1926 100644 --- a/clients/client-kms/src/commands/ListKeyPoliciesCommand.ts +++ b/clients/client-kms/src/commands/ListKeyPoliciesCommand.ts @@ -121,26 +121,26 @@ export interface ListKeyPoliciesCommandOutput extends ListKeyPoliciesResponse, _ * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To list key policies for a KMS key * ```javascript * // The following example lists key policies for the specified KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new ListKeyPoliciesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "PolicyNames": [ + * PolicyNames: [ * "default" * ], - * "Truncated": false + * Truncated: false * } * *\/ - * // example id: to-list-key-policies-for-a-cmk-1481069780998 * ``` * + * @public */ export class ListKeyPoliciesCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/ListKeyRotationsCommand.ts b/clients/client-kms/src/commands/ListKeyRotationsCommand.ts index f80e186e09c74..859310d6a892e 100644 --- a/clients/client-kms/src/commands/ListKeyRotationsCommand.ts +++ b/clients/client-kms/src/commands/ListKeyRotationsCommand.ts @@ -142,35 +142,8 @@ export interface ListKeyRotationsCommandOutput extends ListKeyRotationsResponse, * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public - * @example To retrieve information about all completed key material rotations - * ```javascript - * // The following example returns information about all completed key material rotations for the specified KMS key. - * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" - * }; - * const command = new ListKeyRotationsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Rotations": [ - * { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "RotationDate": "2024-03-02T10:11:36.564000+00:00", - * "RotationType": "AUTOMATIC" - * }, - * { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "RotationDate": "2024-04-05T15:14:47.757000+00:00", - * "RotationType": "ON_DEMAND" - * } - * ], - * "Truncated": false - * } - * *\/ - * // example id: to-retrieve-information-about-all-completed-key-material-rotations-1712585167775 - * ``` * + * @public */ export class ListKeyRotationsCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/ListKeysCommand.ts b/clients/client-kms/src/commands/ListKeysCommand.ts index b7da09e352196..90c028f1a6945 100644 --- a/clients/client-kms/src/commands/ListKeysCommand.ts +++ b/clients/client-kms/src/commands/ListKeysCommand.ts @@ -107,51 +107,51 @@ export interface ListKeysCommandOutput extends ListKeysResponse, __MetadataBeare * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To list KMS keys * ```javascript * // The following example lists KMS keys. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListKeysCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Keys": [ + * Keys: [ * { - * "KeyArn": "arn:aws:kms:us-east-2:111122223333:key/0d990263-018e-4e65-a703-eff731de951e", - * "KeyId": "0d990263-018e-4e65-a703-eff731de951e" + * KeyArn: "arn:aws:kms:us-east-2:111122223333:key/0d990263-018e-4e65-a703-eff731de951e", + * KeyId: "0d990263-018e-4e65-a703-eff731de951e" * }, * { - * "KeyArn": "arn:aws:kms:us-east-2:111122223333:key/144be297-0ae1-44ac-9c8f-93cd8c82f841", - * "KeyId": "144be297-0ae1-44ac-9c8f-93cd8c82f841" + * KeyArn: "arn:aws:kms:us-east-2:111122223333:key/144be297-0ae1-44ac-9c8f-93cd8c82f841", + * KeyId: "144be297-0ae1-44ac-9c8f-93cd8c82f841" * }, * { - * "KeyArn": "arn:aws:kms:us-east-2:111122223333:key/21184251-b765-428e-b852-2c7353e72571", - * "KeyId": "21184251-b765-428e-b852-2c7353e72571" + * KeyArn: "arn:aws:kms:us-east-2:111122223333:key/21184251-b765-428e-b852-2c7353e72571", + * KeyId: "21184251-b765-428e-b852-2c7353e72571" * }, * { - * "KeyArn": "arn:aws:kms:us-east-2:111122223333:key/214fe92f-5b03-4ae1-b350-db2a45dbe10c", - * "KeyId": "214fe92f-5b03-4ae1-b350-db2a45dbe10c" + * KeyArn: "arn:aws:kms:us-east-2:111122223333:key/214fe92f-5b03-4ae1-b350-db2a45dbe10c", + * KeyId: "214fe92f-5b03-4ae1-b350-db2a45dbe10c" * }, * { - * "KeyArn": "arn:aws:kms:us-east-2:111122223333:key/339963f2-e523-49d3-af24-a0fe752aa458", - * "KeyId": "339963f2-e523-49d3-af24-a0fe752aa458" + * KeyArn: "arn:aws:kms:us-east-2:111122223333:key/339963f2-e523-49d3-af24-a0fe752aa458", + * KeyId: "339963f2-e523-49d3-af24-a0fe752aa458" * }, * { - * "KeyArn": "arn:aws:kms:us-east-2:111122223333:key/b776a44b-df37-4438-9be4-a27494e4271a", - * "KeyId": "b776a44b-df37-4438-9be4-a27494e4271a" + * KeyArn: "arn:aws:kms:us-east-2:111122223333:key/b776a44b-df37-4438-9be4-a27494e4271a", + * KeyId: "b776a44b-df37-4438-9be4-a27494e4271a" * }, * { - * "KeyArn": "arn:aws:kms:us-east-2:111122223333:key/deaf6c9e-cf2c-46a6-bf6d-0b6d487cffbb", - * "KeyId": "deaf6c9e-cf2c-46a6-bf6d-0b6d487cffbb" + * KeyArn: "arn:aws:kms:us-east-2:111122223333:key/deaf6c9e-cf2c-46a6-bf6d-0b6d487cffbb", + * KeyId: "deaf6c9e-cf2c-46a6-bf6d-0b6d487cffbb" * } * ], - * "Truncated": false + * Truncated: false * } * *\/ - * // example id: to-list-cmks-1481071643069 * ``` * + * @public */ export class ListKeysCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/ListResourceTagsCommand.ts b/clients/client-kms/src/commands/ListResourceTagsCommand.ts index eb463bed67900..5e0c18fea344f 100644 --- a/clients/client-kms/src/commands/ListResourceTagsCommand.ts +++ b/clients/client-kms/src/commands/ListResourceTagsCommand.ts @@ -116,37 +116,37 @@ export interface ListResourceTagsCommandOutput extends ListResourceTagsResponse, * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To list tags for a KMS key * ```javascript * // The following example lists tags for a KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new ListResourceTagsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Tags": [ + * Tags: [ * { - * "TagKey": "CostCenter", - * "TagValue": "87654" + * TagKey: "CostCenter", + * TagValue: "87654" * }, * { - * "TagKey": "CreatedBy", - * "TagValue": "ExampleUser" + * TagKey: "CreatedBy", + * TagValue: "ExampleUser" * }, * { - * "TagKey": "Purpose", - * "TagValue": "Test" + * TagKey: "Purpose", + * TagValue: "Test" * } * ], - * "Truncated": false + * Truncated: false * } * *\/ - * // example id: to-list-tags-for-a-cmk-1483996855796 * ``` * + * @public */ export class ListResourceTagsCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/ListRetirableGrantsCommand.ts b/clients/client-kms/src/commands/ListRetirableGrantsCommand.ts index 730db286ae5fc..f1ed3ac895304 100644 --- a/clients/client-kms/src/commands/ListRetirableGrantsCommand.ts +++ b/clients/client-kms/src/commands/ListRetirableGrantsCommand.ts @@ -154,37 +154,8 @@ export interface ListRetirableGrantsCommandOutput extends ListGrantsResponse, __ * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public - * @example To list grants that the specified principal can retire - * ```javascript - * // The following example lists the grants that the specified principal (identity) can retire. - * const input = { - * "RetiringPrincipal": "arn:aws:iam::111122223333:role/ExampleRole" - * }; - * const command = new ListRetirableGrantsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Grants": [ - * { - * "CreationDate": "2016-12-07T11:09:35-08:00", - * "GrantId": "0c237476b39f8bc44e45212e08498fbe3151305030726c0590dd8d3e9f3d6a60", - * "GranteePrincipal": "arn:aws:iam::111122223333:role/ExampleRole", - * "IssuingAccount": "arn:aws:iam::444455556666:root", - * "KeyId": "arn:aws:kms:us-east-2:444455556666:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "Operations": [ - * "Decrypt", - * "Encrypt" - * ], - * "RetiringPrincipal": "arn:aws:iam::111122223333:role/ExampleRole" - * } - * ], - * "Truncated": false - * } - * *\/ - * // example id: to-list-grants-that-the-specified-principal-can-retire-1481140499620 - * ``` * + * @public */ export class ListRetirableGrantsCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/PutKeyPolicyCommand.ts b/clients/client-kms/src/commands/PutKeyPolicyCommand.ts index 63afb4579533a..3b8a68104ac1e 100644 --- a/clients/client-kms/src/commands/PutKeyPolicyCommand.ts +++ b/clients/client-kms/src/commands/PutKeyPolicyCommand.ts @@ -119,20 +119,96 @@ export interface PutKeyPolicyCommandOutput extends __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To attach a key policy to a KMS key * ```javascript * // The following example attaches a key policy to the specified KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "Policy": "{\n \"Version\": \"2012-10-17\",\n \"Id\": \"custom-policy-2016-12-07\",\n \"Statement\": [\n {\n \"Sid\": \"Enable IAM User Permissions\",\n \"Effect\": \"Allow\",\n \"Principal\": {\n \"AWS\": \"arn:aws:iam::111122223333:root\"\n },\n \"Action\": \"kms:*\",\n \"Resource\": \"*\"\n },\n {\n \"Sid\": \"Allow access for Key Administrators\",\n \"Effect\": \"Allow\",\n \"Principal\": {\n \"AWS\": [\n \"arn:aws:iam::111122223333:user/ExampleAdminUser\",\n \"arn:aws:iam::111122223333:role/ExampleAdminRole\"\n ]\n },\n \"Action\": [\n \"kms:Create*\",\n \"kms:Describe*\",\n \"kms:Enable*\",\n \"kms:List*\",\n \"kms:Put*\",\n \"kms:Update*\",\n \"kms:Revoke*\",\n \"kms:Disable*\",\n \"kms:Get*\",\n \"kms:Delete*\",\n \"kms:ScheduleKeyDeletion\",\n \"kms:CancelKeyDeletion\"\n ],\n \"Resource\": \"*\"\n },\n {\n \"Sid\": \"Allow use of the key\",\n \"Effect\": \"Allow\",\n \"Principal\": {\n \"AWS\": \"arn:aws:iam::111122223333:role/ExamplePowerUserRole\"\n },\n \"Action\": [\n \"kms:Encrypt\",\n \"kms:Decrypt\",\n \"kms:ReEncrypt*\",\n \"kms:GenerateDataKey*\",\n \"kms:DescribeKey\"\n ],\n \"Resource\": \"*\"\n },\n {\n \"Sid\": \"Allow attachment of persistent resources\",\n \"Effect\": \"Allow\",\n \"Principal\": {\n \"AWS\": \"arn:aws:iam::111122223333:role/ExamplePowerUserRole\"\n },\n \"Action\": [\n \"kms:CreateGrant\",\n \"kms:ListGrants\",\n \"kms:RevokeGrant\"\n ],\n \"Resource\": \"*\",\n \"Condition\": {\n \"Bool\": {\n \"kms:GrantIsForAWSResource\": \"true\"\n }\n }\n }\n ]\n}\n", - * "PolicyName": "default" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab", + * Policy: `{ + * "Version": "2012-10-17", + * "Id": "custom-policy-2016-12-07", + * "Statement": [ + * { + * "Sid": "Enable IAM User Permissions", + * "Effect": "Allow", + * "Principal": { + * "AWS": "arn:aws:iam::111122223333:root" + * }, + * "Action": "kms:*", + * "Resource": "*" + * }, + * { + * "Sid": "Allow access for Key Administrators", + * "Effect": "Allow", + * "Principal": { + * "AWS": [ + * "arn:aws:iam::111122223333:user/ExampleAdminUser", + * "arn:aws:iam::111122223333:role/ExampleAdminRole" + * ] + * }, + * "Action": [ + * "kms:Create*", + * "kms:Describe*", + * "kms:Enable*", + * "kms:List*", + * "kms:Put*", + * "kms:Update*", + * "kms:Revoke*", + * "kms:Disable*", + * "kms:Get*", + * "kms:Delete*", + * "kms:ScheduleKeyDeletion", + * "kms:CancelKeyDeletion" + * ], + * "Resource": "*" + * }, + * { + * "Sid": "Allow use of the key", + * "Effect": "Allow", + * "Principal": { + * "AWS": "arn:aws:iam::111122223333:role/ExamplePowerUserRole" + * }, + * "Action": [ + * "kms:Encrypt", + * "kms:Decrypt", + * "kms:ReEncrypt*", + * "kms:GenerateDataKey*", + * "kms:DescribeKey" + * ], + * "Resource": "*" + * }, + * { + * "Sid": "Allow attachment of persistent resources", + * "Effect": "Allow", + * "Principal": { + * "AWS": "arn:aws:iam::111122223333:role/ExamplePowerUserRole" + * }, + * "Action": [ + * "kms:CreateGrant", + * "kms:ListGrants", + * "kms:RevokeGrant" + * ], + * "Resource": "*", + * "Condition": { + * "Bool": { + * "kms:GrantIsForAWSResource": "true" + * } + * } + * } + * ] + * } + * `, + * PolicyName: "default" * }; * const command = new PutKeyPolicyCommand(input); - * await client.send(command); - * // example id: to-attach-a-key-policy-to-a-cmk-1481147345018 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutKeyPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/ReEncryptCommand.ts b/clients/client-kms/src/commands/ReEncryptCommand.ts index feb9e76d57068..b878bfd87d9d3 100644 --- a/clients/client-kms/src/commands/ReEncryptCommand.ts +++ b/clients/client-kms/src/commands/ReEncryptCommand.ts @@ -251,26 +251,26 @@ export interface ReEncryptCommandOutput extends ReEncryptResponse, __MetadataBea * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To reencrypt data * ```javascript * // The following example reencrypts data with the specified KMS key. * const input = { - * "CiphertextBlob": "", - * "DestinationKeyId": "0987dcba-09fe-87dc-65ba-ab0987654321" + * CiphertextBlob: "", + * DestinationKeyId: "0987dcba-09fe-87dc-65ba-ab0987654321" * }; * const command = new ReEncryptCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CiphertextBlob": "", - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321", - * "SourceKeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" + * CiphertextBlob: "", + * KeyId: "arn:aws:kms:us-east-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321", + * SourceKeyId: "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" * } * *\/ - * // example id: to-reencrypt-data-1481230358001 * ``` * + * @public */ export class ReEncryptCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/ReplicateKeyCommand.ts b/clients/client-kms/src/commands/ReplicateKeyCommand.ts index 568a4eeabc099..78a8aa823534f 100644 --- a/clients/client-kms/src/commands/ReplicateKeyCommand.ts +++ b/clients/client-kms/src/commands/ReplicateKeyCommand.ts @@ -260,55 +260,57 @@ export interface ReplicateKeyCommandOutput extends ReplicateKeyResponse, __Metad * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To replicate a multi-Region key in a different AWS Region * ```javascript * // This example creates a multi-Region replica key in us-west-2 of a multi-Region primary key in us-east-1. * const input = { - * "KeyId": "arn:aws:kms:us-east-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", - * "ReplicaRegion": "us-west-2" + * KeyId: "arn:aws:kms:us-east-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", + * ReplicaRegion: "us-west-2" * }; * const command = new ReplicateKeyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicaKeyMetadata": { - * "AWSAccountId": "111122223333", - * "Arn": "arn:aws:kms:us-west-2:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", - * "CreationDate": 1607472987.918, - * "CustomerMasterKeySpec": "SYMMETRIC_DEFAULT", - * "Description": "", - * "Enabled": true, - * "EncryptionAlgorithms": [ + * ReplicaKeyMetadata: { + * AWSAccountId: "111122223333", + * Arn: "arn:aws:kms:us-west-2:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", + * CreationDate: 1.607472987918E9, + * CustomerMasterKeySpec: "SYMMETRIC_DEFAULT", + * Description: "", + * Enabled: true, + * EncryptionAlgorithms: [ * "SYMMETRIC_DEFAULT" * ], - * "KeyId": "mrk-1234abcd12ab34cd56ef1234567890ab", - * "KeyManager": "CUSTOMER", - * "KeyState": "Enabled", - * "KeyUsage": "ENCRYPT_DECRYPT", - * "MultiRegion": true, - * "MultiRegionConfiguration": { - * "MultiRegionKeyType": "REPLICA", - * "PrimaryKey": { - * "Arn": "arn:aws:kms:us-east-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", - * "Region": "us-east-1" + * KeyId: "mrk-1234abcd12ab34cd56ef1234567890ab", + * KeyManager: "CUSTOMER", + * KeyState: "Enabled", + * KeyUsage: "ENCRYPT_DECRYPT", + * MultiRegion: true, + * MultiRegionConfiguration: { + * MultiRegionKeyType: "REPLICA", + * PrimaryKey: { + * Arn: "arn:aws:kms:us-east-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", + * Region: "us-east-1" * }, - * "ReplicaKeys": [ + * ReplicaKeys: [ * { - * "Arn": "arn:aws:kms:us-west-2:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", - * "Region": "us-west-2" + * Arn: "arn:aws:kms:us-west-2:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", + * Region: "us-west-2" * } * ] * }, - * "Origin": "AWS_KMS" + * Origin: "AWS_KMS" * }, - * "ReplicaPolicy": "{\n \"Version\" : \"2012-10-17\",\n \"Id\" : \"key-default-1\",...}", - * "ReplicaTags": [] + * ReplicaPolicy: `{ + * "Version" : "2012-10-17", + * "Id" : "key-default-1",...}`, + * ReplicaTags: [] * } * *\/ - * // example id: to-replicate-a-multi-region-key-in-a-different-aws-region-1628622402887 * ``` * + * @public */ export class ReplicateKeyCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/RetireGrantCommand.ts b/clients/client-kms/src/commands/RetireGrantCommand.ts index e131dfa667f63..ddaa962478cfe 100644 --- a/clients/client-kms/src/commands/RetireGrantCommand.ts +++ b/clients/client-kms/src/commands/RetireGrantCommand.ts @@ -149,19 +149,22 @@ export interface RetireGrantCommandOutput extends __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To retire a grant * ```javascript * // The following example retires a grant. * const input = { - * "GrantId": "0c237476b39f8bc44e45212e08498fbe3151305030726c0590dd8d3e9f3d6a60", - * "KeyId": "arn:aws:kms:us-east-2:444455556666:key/1234abcd-12ab-34cd-56ef-1234567890ab" + * GrantId: "0c237476b39f8bc44e45212e08498fbe3151305030726c0590dd8d3e9f3d6a60", + * KeyId: "arn:aws:kms:us-east-2:444455556666:key/1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new RetireGrantCommand(input); - * await client.send(command); - * // example id: to-retire-a-grant-1481327028297 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RetireGrantCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/RevokeGrantCommand.ts b/clients/client-kms/src/commands/RevokeGrantCommand.ts index dd0c7492f541d..c14c0f4910b74 100644 --- a/clients/client-kms/src/commands/RevokeGrantCommand.ts +++ b/clients/client-kms/src/commands/RevokeGrantCommand.ts @@ -143,19 +143,22 @@ export interface RevokeGrantCommandOutput extends __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To revoke a grant * ```javascript * // The following example revokes a grant. * const input = { - * "GrantId": "0c237476b39f8bc44e45212e08498fbe3151305030726c0590dd8d3e9f3d6a60", - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" + * GrantId: "0c237476b39f8bc44e45212e08498fbe3151305030726c0590dd8d3e9f3d6a60", + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new RevokeGrantCommand(input); - * await client.send(command); - * // example id: to-revoke-a-grant-1481329549302 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RevokeGrantCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/RotateKeyOnDemandCommand.ts b/clients/client-kms/src/commands/RotateKeyOnDemandCommand.ts index b039bf708ce76..c2ca15100b0a4 100644 --- a/clients/client-kms/src/commands/RotateKeyOnDemandCommand.ts +++ b/clients/client-kms/src/commands/RotateKeyOnDemandCommand.ts @@ -166,23 +166,23 @@ export interface RotateKeyOnDemandCommandOutput extends RotateKeyOnDemandRespons * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To perform on-demand rotation of key material * ```javascript * // The following example immediately initiates rotation of the key material for the specified KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new RotateKeyOnDemandCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * } * *\/ - * // example id: to-perform-on-demand-rotation-of-key-material-1712499025700 * ``` * + * @public */ export class RotateKeyOnDemandCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/ScheduleKeyDeletionCommand.ts b/clients/client-kms/src/commands/ScheduleKeyDeletionCommand.ts index 348d0920f4df6..12042835a8111 100644 --- a/clients/client-kms/src/commands/ScheduleKeyDeletionCommand.ts +++ b/clients/client-kms/src/commands/ScheduleKeyDeletionCommand.ts @@ -154,25 +154,8 @@ export interface ScheduleKeyDeletionCommandOutput extends ScheduleKeyDeletionRes * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public - * @example To schedule a KMS key for deletion - * ```javascript - * // The following example schedules the specified KMS key for deletion. - * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "PendingWindowInDays": 7 - * }; - * const command = new ScheduleKeyDeletionCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "DeletionDate": "2016-12-17T16:00:00-08:00", - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab" - * } - * *\/ - * // example id: to-schedule-a-cmk-for-deletion-1481331111094 - * ``` * + * @public */ export class ScheduleKeyDeletionCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/SignCommand.ts b/clients/client-kms/src/commands/SignCommand.ts index fde7f1be0c89b..567271023f8cd 100644 --- a/clients/client-kms/src/commands/SignCommand.ts +++ b/clients/client-kms/src/commands/SignCommand.ts @@ -185,49 +185,48 @@ export interface SignCommandOutput extends SignResponse, __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To digitally sign a message with an asymmetric KMS key. * ```javascript * // This operation uses the private key in an asymmetric elliptic curve (ECC) KMS key to generate a digital signature for a given message. * const input = { - * "KeyId": "alias/ECC_signing_key", - * "Message": "", - * "MessageType": "RAW", - * "SigningAlgorithm": "ECDSA_SHA_384" + * KeyId: "alias/ECC_signing_key", + * Message: "", + * MessageType: "RAW", + * SigningAlgorithm: "ECDSA_SHA_384" * }; * const command = new SignCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "Signature": "", - * "SigningAlgorithm": "ECDSA_SHA_384" + * KeyId: "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * Signature: "", + * SigningAlgorithm: "ECDSA_SHA_384" * } * *\/ - * // example id: to-digitally-sign-a-message-with-an-asymmetric-kms-key-1 * ``` * * @example To digitally sign a message digest with an asymmetric KMS key. * ```javascript * // This operation uses the private key in an asymmetric RSA signing KMS key to generate a digital signature for a message digest. In this example, a large message was hashed and the resulting digest is provided in the Message parameter. To tell KMS not to hash the message again, the MessageType field is set to DIGEST * const input = { - * "KeyId": "alias/RSA_signing_key", - * "Message": "", - * "MessageType": "DIGEST", - * "SigningAlgorithm": "RSASSA_PKCS1_V1_5_SHA_256" + * KeyId: "alias/RSA_signing_key", + * Message: "", + * MessageType: "DIGEST", + * SigningAlgorithm: "RSASSA_PKCS1_V1_5_SHA_256" * }; * const command = new SignCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321", - * "Signature": "", - * "SigningAlgorithm": "RSASSA_PKCS1_V1_5_SHA_256" + * KeyId: "arn:aws:kms:us-east-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321", + * Signature: "", + * SigningAlgorithm: "RSASSA_PKCS1_V1_5_SHA_256" * } * *\/ - * // example id: to-digitally-sign-a-message-digest-with-an-asymmetric-kms-key-2 * ``` * + * @public */ export class SignCommand extends $Command .classBuilder() diff --git a/clients/client-kms/src/commands/TagResourceCommand.ts b/clients/client-kms/src/commands/TagResourceCommand.ts index 8c3b57282ee04..f435c81bfe0d1 100644 --- a/clients/client-kms/src/commands/TagResourceCommand.ts +++ b/clients/client-kms/src/commands/TagResourceCommand.ts @@ -147,24 +147,27 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To tag a KMS key * ```javascript * // The following example tags a KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "Tags": [ + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab", + * Tags: [ * { - * "TagKey": "Purpose", - * "TagValue": "Test" + * TagKey: "Purpose", + * TagValue: "Test" * } * ] * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: to-tag-a-cmk-1483997246518 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/UntagResourceCommand.ts b/clients/client-kms/src/commands/UntagResourceCommand.ts index 17976e392bb26..ef66e46adc84d 100644 --- a/clients/client-kms/src/commands/UntagResourceCommand.ts +++ b/clients/client-kms/src/commands/UntagResourceCommand.ts @@ -135,22 +135,25 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To remove tags from a KMS key * ```javascript * // The following example removes tags from a KMS key. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "TagKeys": [ + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab", + * TagKeys: [ * "Purpose", * "CostCenter" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: to-remove-tags-from-a-cmk-1483997590962 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/UpdateAliasCommand.ts b/clients/client-kms/src/commands/UpdateAliasCommand.ts index 3e4e6797b60b0..d016ef394141e 100644 --- a/clients/client-kms/src/commands/UpdateAliasCommand.ts +++ b/clients/client-kms/src/commands/UpdateAliasCommand.ts @@ -155,19 +155,22 @@ export interface UpdateAliasCommandOutput extends __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To update an alias * ```javascript * // The following example updates the specified alias to refer to the specified KMS key. * const input = { - * "AliasName": "alias/ExampleAlias", - * "TargetKeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" + * AliasName: "alias/ExampleAlias", + * TargetKeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new UpdateAliasCommand(input); - * await client.send(command); - * // example id: to-update-an-alias-1481572726920 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateAliasCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/UpdateCustomKeyStoreCommand.ts b/clients/client-kms/src/commands/UpdateCustomKeyStoreCommand.ts index 045889d76e1ad..2146ee43f6bd0 100644 --- a/clients/client-kms/src/commands/UpdateCustomKeyStoreCommand.ts +++ b/clients/client-kms/src/commands/UpdateCustomKeyStoreCommand.ts @@ -319,84 +319,80 @@ export interface UpdateCustomKeyStoreCommandOutput extends UpdateCustomKeyStoreR * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To edit the friendly name of a custom key store * ```javascript * // This example changes the friendly name of the AWS KMS custom key store to the name that you specify. This operation does not return any data. To verify that the operation worked, use the DescribeCustomKeyStores operation. * const input = { - * "CustomKeyStoreId": "cks-1234567890abcdef0", - * "NewCustomKeyStoreName": "DevelopmentKeys" + * CustomKeyStoreId: "cks-1234567890abcdef0", + * NewCustomKeyStoreName: "DevelopmentKeys" * }; * const command = new UpdateCustomKeyStoreCommand(input); - * await client.send(command); - * // example id: to-edit-the-friendly-name-of-a-custom-key-store-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * * @example To edit the password of an AWS CloudHSM key store * ```javascript * // This example tells AWS KMS the password for the kmsuser crypto user in the AWS CloudHSM cluster that is associated with the AWS KMS custom key store. (It does not change the password in the CloudHSM cluster.) This operation does not return any data. * const input = { - * "CustomKeyStoreId": "cks-1234567890abcdef0", - * "KeyStorePassword": "ExamplePassword" + * CustomKeyStoreId: "cks-1234567890abcdef0", + * KeyStorePassword: "ExamplePassword" * }; * const command = new UpdateCustomKeyStoreCommand(input); - * await client.send(command); - * // example id: to-edit-the-properties-of-an-aws-cloudhsm-key-store-2 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * * @example To associate the custom key store with a different, but related, AWS CloudHSM cluster. * ```javascript * // This example changes the AWS CloudHSM cluster that is associated with an AWS CloudHSM key store to a related cluster, such as a different backup of the same cluster. This operation does not return any data. To verify that the operation worked, use the DescribeCustomKeyStores operation. * const input = { - * "CloudHsmClusterId": "cluster-234abcdefABC", - * "CustomKeyStoreId": "cks-1234567890abcdef0" - * }; - * const command = new UpdateCustomKeyStoreCommand(input); - * await client.send(command); - * // example id: to-associate-the-custom-key-store-with-a-different-but-related-aws-cloudhsm-cluster-3 - * ``` - * - * @example To update the proxy authentication credential of an external key store - * ```javascript - * // To update the proxy authentication credential for your external key store, specify both the RawSecretAccessKey and the AccessKeyId, even if you are changing only one of the values. You can use this feature to fix an invalid credential or to change the credential when the external key store proxy rotates it. - * const input = { - * "CustomKeyStoreId": "cks-1234567890abcdef0", - * "XksProxyAuthenticationCredential": { - * "AccessKeyId": "ABCDE12345670EXAMPLE", - * "RawSecretAccessKey": "DXjSUawnel2fr6SKC7G25CNxTyWKE5PF9XX6H/u9pSo=" - * } + * CloudHsmClusterId: "cluster-234abcdefABC", + * CustomKeyStoreId: "cks-1234567890abcdef0" * }; * const command = new UpdateCustomKeyStoreCommand(input); - * await client.send(command); - * // example id: to-update-the-proxy-authentication-credential-of-an-external-key-store-4 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * * @example To edit the proxy URI path of an external key store. * ```javascript * // This example updates the proxy URI path for an external key store * const input = { - * "CustomKeyStoreId": "cks-1234567890abcdef0", - * "XksProxyUriPath": "/new-path/kms/xks/v1" + * CustomKeyStoreId: "cks-1234567890abcdef0", + * XksProxyUriPath: "/new-path/kms/xks/v1" * }; * const command = new UpdateCustomKeyStoreCommand(input); - * await client.send(command); - * // example id: to-update-the-xks-proxy-api-path-of-an-external-key-store-5 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * * @example To update the proxy connectivity of an external key store to VPC_ENDPOINT_SERVICE * ```javascript * // To change the external key store proxy connectivity option from public endpoint connectivity to VPC endpoint service connectivity, in addition to changing the XksProxyConnectivity value, you must change the XksProxyUriEndpoint value to reflect the private DNS name associated with the VPC endpoint service. You must also add an XksProxyVpcEndpointServiceName value. * const input = { - * "CustomKeyStoreId": "cks-1234567890abcdef0", - * "XksProxyConnectivity": "VPC_ENDPOINT_SERVICE", - * "XksProxyUriEndpoint": "https://myproxy-private.xks.example.com", - * "XksProxyVpcEndpointServiceName": "com.amazonaws.vpce.us-east-1.vpce-svc-example" + * CustomKeyStoreId: "cks-1234567890abcdef0", + * XksProxyConnectivity: "VPC_ENDPOINT_SERVICE", + * XksProxyUriEndpoint: "https://myproxy-private.xks.example.com", + * XksProxyVpcEndpointServiceName: "com.amazonaws.vpce.us-east-1.vpce-svc-example" * }; * const command = new UpdateCustomKeyStoreCommand(input); - * await client.send(command); - * // example id: to-update-the-proxy-connectivity-of-an-external-key-store-to-vpc_endpoint_service-6 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UpdateCustomKeyStoreCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/UpdateKeyDescriptionCommand.ts b/clients/client-kms/src/commands/UpdateKeyDescriptionCommand.ts index a0d389e45f5c6..b2b6a5afc45cf 100644 --- a/clients/client-kms/src/commands/UpdateKeyDescriptionCommand.ts +++ b/clients/client-kms/src/commands/UpdateKeyDescriptionCommand.ts @@ -114,19 +114,22 @@ export interface UpdateKeyDescriptionCommandOutput extends __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To update the description of a KMS key * ```javascript * // The following example updates the description of the specified KMS key. * const input = { - * "Description": "Example description that indicates the intended use of this KMS key.", - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab" + * Description: "Example description that indicates the intended use of this KMS key.", + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab" * }; * const command = new UpdateKeyDescriptionCommand(input); - * await client.send(command); - * // example id: to-update-the-description-of-a-cmk-1481574808619 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateKeyDescriptionCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/UpdatePrimaryRegionCommand.ts b/clients/client-kms/src/commands/UpdatePrimaryRegionCommand.ts index b29d5a1237cf9..153cbf64900e4 100644 --- a/clients/client-kms/src/commands/UpdatePrimaryRegionCommand.ts +++ b/clients/client-kms/src/commands/UpdatePrimaryRegionCommand.ts @@ -160,23 +160,26 @@ export interface UpdatePrimaryRegionCommandOutput extends __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To update the primary Region of a multi-Region KMS key * ```javascript * // The following UpdatePrimaryRegion example changes the multi-Region replica key in the eu-central-1 Region to the primary key. The current primary key in the us-west-1 Region becomes a replica key. - * // - * // The KeyId parameter identifies the current primary key in the us-west-1 Region. The PrimaryRegion parameter indicates the Region of the replica key that will become the new primary key. - * // - * // This operation does not return any output. To verify that primary key is changed, use the DescribeKey operation. + * + * The KeyId parameter identifies the current primary key in the us-west-1 Region. The PrimaryRegion parameter indicates the Region of the replica key that will become the new primary key. + * + * This operation does not return any output. To verify that primary key is changed, use the DescribeKey operation. * const input = { - * "KeyId": "arn:aws:kms:us-west-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", - * "PrimaryRegion": "eu-central-1" + * KeyId: "arn:aws:kms:us-west-1:111122223333:key/mrk-1234abcd12ab34cd56ef1234567890ab", + * PrimaryRegion: "eu-central-1" * }; * const command = new UpdatePrimaryRegionCommand(input); - * await client.send(command); - * // example id: to-update-the-primary-region-of-a-multi-region-kms-key-1660249555577 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdatePrimaryRegionCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/VerifyCommand.ts b/clients/client-kms/src/commands/VerifyCommand.ts index ce9b35d5001e3..3131849829df1 100644 --- a/clients/client-kms/src/commands/VerifyCommand.ts +++ b/clients/client-kms/src/commands/VerifyCommand.ts @@ -174,51 +174,50 @@ export interface VerifyCommandOutput extends VerifyResponse, __MetadataBearer {} * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To use an asymmetric KMS key to verify a digital signature * ```javascript * // This operation uses the public key in an elliptic curve (ECC) asymmetric key to verify a digital signature within AWS KMS. * const input = { - * "KeyId": "alias/ECC_signing_key", - * "Message": "", - * "MessageType": "RAW", - * "Signature": "", - * "SigningAlgorithm": "ECDSA_SHA_384" + * KeyId: "alias/ECC_signing_key", + * Message: "", + * MessageType: "RAW", + * Signature: "", + * SigningAlgorithm: "ECDSA_SHA_384" * }; * const command = new VerifyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "SignatureValid": true, - * "SigningAlgorithm": "ECDSA_SHA_384" + * KeyId: "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * SignatureValid: true, + * SigningAlgorithm: "ECDSA_SHA_384" * } * *\/ - * // example id: to-use-an-asymmetric-kms-key-to-verify-a-digital-signature-1 * ``` * * @example To use an asymmetric KMS key to verify a digital signature on a message digest * ```javascript * // This operation uses the public key in an RSA asymmetric signing key pair to verify the digital signature of a message digest. Hashing a message into a digest before sending it to KMS lets you verify messages that exceed the 4096-byte message size limit. To indicate that the value of Message is a digest, use the MessageType parameter * const input = { - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321", - * "Message": "", - * "MessageType": "DIGEST", - * "Signature": "", - * "SigningAlgorithm": "RSASSA_PSS_SHA_512" + * KeyId: "arn:aws:kms:us-east-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321", + * Message: "", + * MessageType: "DIGEST", + * Signature: "", + * SigningAlgorithm: "RSASSA_PSS_SHA_512" * }; * const command = new VerifyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyId": "arn:aws:kms:us-east-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321", - * "SignatureValid": true, - * "SigningAlgorithm": "RSASSA_PSS_SHA_512" + * KeyId: "arn:aws:kms:us-east-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321", + * SignatureValid: true, + * SigningAlgorithm: "RSASSA_PSS_SHA_512" * } * *\/ - * // example id: to-use-an-asymmetric-kms-key-to-verify-a-digital-signature-on-a-message-digest-2 * ``` * + * @public */ export class VerifyCommand extends $Command .classBuilder< diff --git a/clients/client-kms/src/commands/VerifyMacCommand.ts b/clients/client-kms/src/commands/VerifyMacCommand.ts index a6aede9edf02b..4a9cc68898971 100644 --- a/clients/client-kms/src/commands/VerifyMacCommand.ts +++ b/clients/client-kms/src/commands/VerifyMacCommand.ts @@ -155,28 +155,28 @@ export interface VerifyMacCommandOutput extends VerifyMacResponse, __MetadataBea * @throws {@link KMSServiceException} *

Base exception class for all service exceptions from KMS service.

* - * @public + * * @example To verify an HMAC * ```javascript * // This example verifies an HMAC for a particular message, HMAC KMS keys, and MAC algorithm. A value of 'true' in the MacValid value in the response indicates that the HMAC is valid. * const input = { - * "KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", - * "Mac": "", - * "MacAlgorithm": "HMAC_SHA_384", - * "Message": "Hello World" + * KeyId: "1234abcd-12ab-34cd-56ef-1234567890ab", + * Mac: "", + * MacAlgorithm: "HMAC_SHA_384", + * Message: "Hello World" * }; * const command = new VerifyMacCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KeyId": "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", - * "MacAlgorithm": "HMAC_SHA_384", - * "MacValid": true + * KeyId: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab", + * MacAlgorithm: "HMAC_SHA_384", + * MacValid: true * } * *\/ - * // example id: to-verify-an-hmac-1631570863401 * ``` * + * @public */ export class VerifyMacCommand extends $Command .classBuilder< diff --git a/clients/client-lakeformation/src/commands/AddLFTagsToResourceCommand.ts b/clients/client-lakeformation/src/commands/AddLFTagsToResourceCommand.ts index dc4eb4cd1a322..d3980d729c643 100644 --- a/clients/client-lakeformation/src/commands/AddLFTagsToResourceCommand.ts +++ b/clients/client-lakeformation/src/commands/AddLFTagsToResourceCommand.ts @@ -158,6 +158,7 @@ export interface AddLFTagsToResourceCommandOutput extends AddLFTagsToResourceRes * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class AddLFTagsToResourceCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/AssumeDecoratedRoleWithSAMLCommand.ts b/clients/client-lakeformation/src/commands/AssumeDecoratedRoleWithSAMLCommand.ts index dfb1fea45db89..f7a15296e64f4 100644 --- a/clients/client-lakeformation/src/commands/AssumeDecoratedRoleWithSAMLCommand.ts +++ b/clients/client-lakeformation/src/commands/AssumeDecoratedRoleWithSAMLCommand.ts @@ -86,6 +86,7 @@ export interface AssumeDecoratedRoleWithSAMLCommandOutput * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class AssumeDecoratedRoleWithSAMLCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/BatchGrantPermissionsCommand.ts b/clients/client-lakeformation/src/commands/BatchGrantPermissionsCommand.ts index f69ebbdd190ee..cff4124c39c06 100644 --- a/clients/client-lakeformation/src/commands/BatchGrantPermissionsCommand.ts +++ b/clients/client-lakeformation/src/commands/BatchGrantPermissionsCommand.ts @@ -224,6 +224,7 @@ export interface BatchGrantPermissionsCommandOutput extends BatchGrantPermission * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class BatchGrantPermissionsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/BatchRevokePermissionsCommand.ts b/clients/client-lakeformation/src/commands/BatchRevokePermissionsCommand.ts index f2c4d20657276..8540d6eee2ec5 100644 --- a/clients/client-lakeformation/src/commands/BatchRevokePermissionsCommand.ts +++ b/clients/client-lakeformation/src/commands/BatchRevokePermissionsCommand.ts @@ -224,6 +224,7 @@ export interface BatchRevokePermissionsCommandOutput extends BatchRevokePermissi * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class BatchRevokePermissionsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/CancelTransactionCommand.ts b/clients/client-lakeformation/src/commands/CancelTransactionCommand.ts index 41d254069e130..970e54a241d3d 100644 --- a/clients/client-lakeformation/src/commands/CancelTransactionCommand.ts +++ b/clients/client-lakeformation/src/commands/CancelTransactionCommand.ts @@ -74,6 +74,7 @@ export interface CancelTransactionCommandOutput extends CancelTransactionRespons * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class CancelTransactionCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/CommitTransactionCommand.ts b/clients/client-lakeformation/src/commands/CommitTransactionCommand.ts index 3e7f0b19c1608..6ffc956e58f3c 100644 --- a/clients/client-lakeformation/src/commands/CommitTransactionCommand.ts +++ b/clients/client-lakeformation/src/commands/CommitTransactionCommand.ts @@ -73,6 +73,7 @@ export interface CommitTransactionCommandOutput extends CommitTransactionRespons * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class CommitTransactionCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/CreateDataCellsFilterCommand.ts b/clients/client-lakeformation/src/commands/CreateDataCellsFilterCommand.ts index 81203314eb5d1..e7e2736f13bf1 100644 --- a/clients/client-lakeformation/src/commands/CreateDataCellsFilterCommand.ts +++ b/clients/client-lakeformation/src/commands/CreateDataCellsFilterCommand.ts @@ -92,6 +92,7 @@ export interface CreateDataCellsFilterCommandOutput extends CreateDataCellsFilte * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class CreateDataCellsFilterCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/CreateLFTagCommand.ts b/clients/client-lakeformation/src/commands/CreateLFTagCommand.ts index 46f772cfe8589..026fb3670e139 100644 --- a/clients/client-lakeformation/src/commands/CreateLFTagCommand.ts +++ b/clients/client-lakeformation/src/commands/CreateLFTagCommand.ts @@ -75,6 +75,7 @@ export interface CreateLFTagCommandOutput extends CreateLFTagResponse, __Metadat * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class CreateLFTagCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/CreateLFTagExpressionCommand.ts b/clients/client-lakeformation/src/commands/CreateLFTagExpressionCommand.ts index cf20de8d74776..82c3ff360d301 100644 --- a/clients/client-lakeformation/src/commands/CreateLFTagExpressionCommand.ts +++ b/clients/client-lakeformation/src/commands/CreateLFTagExpressionCommand.ts @@ -89,6 +89,7 @@ export interface CreateLFTagExpressionCommandOutput extends CreateLFTagExpressio * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class CreateLFTagExpressionCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/CreateLakeFormationIdentityCenterConfigurationCommand.ts b/clients/client-lakeformation/src/commands/CreateLakeFormationIdentityCenterConfigurationCommand.ts index 89dea8e5a9588..4da11a9dbd153 100644 --- a/clients/client-lakeformation/src/commands/CreateLakeFormationIdentityCenterConfigurationCommand.ts +++ b/clients/client-lakeformation/src/commands/CreateLakeFormationIdentityCenterConfigurationCommand.ts @@ -94,6 +94,7 @@ export interface CreateLakeFormationIdentityCenterConfigurationCommandOutput * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class CreateLakeFormationIdentityCenterConfigurationCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/CreateLakeFormationOptInCommand.ts b/clients/client-lakeformation/src/commands/CreateLakeFormationOptInCommand.ts index 77b990667c199..ea94b53d9aac5 100644 --- a/clients/client-lakeformation/src/commands/CreateLakeFormationOptInCommand.ts +++ b/clients/client-lakeformation/src/commands/CreateLakeFormationOptInCommand.ts @@ -141,6 +141,7 @@ export interface CreateLakeFormationOptInCommandOutput extends CreateLakeFormati * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class CreateLakeFormationOptInCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/DeleteDataCellsFilterCommand.ts b/clients/client-lakeformation/src/commands/DeleteDataCellsFilterCommand.ts index aafa0797ed0c7..788aedb7e2d57 100644 --- a/clients/client-lakeformation/src/commands/DeleteDataCellsFilterCommand.ts +++ b/clients/client-lakeformation/src/commands/DeleteDataCellsFilterCommand.ts @@ -71,6 +71,7 @@ export interface DeleteDataCellsFilterCommandOutput extends DeleteDataCellsFilte * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class DeleteDataCellsFilterCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/DeleteLFTagCommand.ts b/clients/client-lakeformation/src/commands/DeleteLFTagCommand.ts index 81a2920bca28f..fe9d90ae07d7c 100644 --- a/clients/client-lakeformation/src/commands/DeleteLFTagCommand.ts +++ b/clients/client-lakeformation/src/commands/DeleteLFTagCommand.ts @@ -69,6 +69,7 @@ export interface DeleteLFTagCommandOutput extends DeleteLFTagResponse, __Metadat * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class DeleteLFTagCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/DeleteLFTagExpressionCommand.ts b/clients/client-lakeformation/src/commands/DeleteLFTagExpressionCommand.ts index ad6c8ca7060e1..1f830cf948b33 100644 --- a/clients/client-lakeformation/src/commands/DeleteLFTagExpressionCommand.ts +++ b/clients/client-lakeformation/src/commands/DeleteLFTagExpressionCommand.ts @@ -70,6 +70,7 @@ export interface DeleteLFTagExpressionCommandOutput extends DeleteLFTagExpressio * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class DeleteLFTagExpressionCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.ts b/clients/client-lakeformation/src/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.ts index be78e817252b2..36cbc04681209 100644 --- a/clients/client-lakeformation/src/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.ts +++ b/clients/client-lakeformation/src/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.ts @@ -80,6 +80,7 @@ export interface DeleteLakeFormationIdentityCenterConfigurationCommandOutput * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class DeleteLakeFormationIdentityCenterConfigurationCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/DeleteLakeFormationOptInCommand.ts b/clients/client-lakeformation/src/commands/DeleteLakeFormationOptInCommand.ts index 5511276e5c0e4..b4301ed6557d9 100644 --- a/clients/client-lakeformation/src/commands/DeleteLakeFormationOptInCommand.ts +++ b/clients/client-lakeformation/src/commands/DeleteLakeFormationOptInCommand.ts @@ -138,6 +138,7 @@ export interface DeleteLakeFormationOptInCommandOutput extends DeleteLakeFormati * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class DeleteLakeFormationOptInCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/DeleteObjectsOnCancelCommand.ts b/clients/client-lakeformation/src/commands/DeleteObjectsOnCancelCommand.ts index 3e652735bc112..8c89e75a6a676 100644 --- a/clients/client-lakeformation/src/commands/DeleteObjectsOnCancelCommand.ts +++ b/clients/client-lakeformation/src/commands/DeleteObjectsOnCancelCommand.ts @@ -93,6 +93,7 @@ export interface DeleteObjectsOnCancelCommandOutput extends DeleteObjectsOnCance * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class DeleteObjectsOnCancelCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/DeregisterResourceCommand.ts b/clients/client-lakeformation/src/commands/DeregisterResourceCommand.ts index a59c85b1ccf58..b8e70966d2dd0 100644 --- a/clients/client-lakeformation/src/commands/DeregisterResourceCommand.ts +++ b/clients/client-lakeformation/src/commands/DeregisterResourceCommand.ts @@ -66,6 +66,7 @@ export interface DeregisterResourceCommandOutput extends DeregisterResourceRespo * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class DeregisterResourceCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.ts b/clients/client-lakeformation/src/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.ts index f7e6b6cc5eda2..28050de6f7cac 100644 --- a/clients/client-lakeformation/src/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.ts +++ b/clients/client-lakeformation/src/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.ts @@ -93,6 +93,7 @@ export interface DescribeLakeFormationIdentityCenterConfigurationCommandOutput * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class DescribeLakeFormationIdentityCenterConfigurationCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/DescribeResourceCommand.ts b/clients/client-lakeformation/src/commands/DescribeResourceCommand.ts index 60202926e028c..b7118feb8f814 100644 --- a/clients/client-lakeformation/src/commands/DescribeResourceCommand.ts +++ b/clients/client-lakeformation/src/commands/DescribeResourceCommand.ts @@ -74,6 +74,7 @@ export interface DescribeResourceCommandOutput extends DescribeResourceResponse, * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class DescribeResourceCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/DescribeTransactionCommand.ts b/clients/client-lakeformation/src/commands/DescribeTransactionCommand.ts index 1ff6e99787e49..f779c7e84d8a6 100644 --- a/clients/client-lakeformation/src/commands/DescribeTransactionCommand.ts +++ b/clients/client-lakeformation/src/commands/DescribeTransactionCommand.ts @@ -72,6 +72,7 @@ export interface DescribeTransactionCommandOutput extends DescribeTransactionRes * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class DescribeTransactionCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/ExtendTransactionCommand.ts b/clients/client-lakeformation/src/commands/ExtendTransactionCommand.ts index 4537ae629dec0..ad0085cdbe2fd 100644 --- a/clients/client-lakeformation/src/commands/ExtendTransactionCommand.ts +++ b/clients/client-lakeformation/src/commands/ExtendTransactionCommand.ts @@ -75,6 +75,7 @@ export interface ExtendTransactionCommandOutput extends ExtendTransactionRespons * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class ExtendTransactionCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GetDataCellsFilterCommand.ts b/clients/client-lakeformation/src/commands/GetDataCellsFilterCommand.ts index ecd31a0c4db62..d072c8f8c9ac4 100644 --- a/clients/client-lakeformation/src/commands/GetDataCellsFilterCommand.ts +++ b/clients/client-lakeformation/src/commands/GetDataCellsFilterCommand.ts @@ -91,6 +91,7 @@ export interface GetDataCellsFilterCommandOutput extends GetDataCellsFilterRespo * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GetDataCellsFilterCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GetDataLakePrincipalCommand.ts b/clients/client-lakeformation/src/commands/GetDataLakePrincipalCommand.ts index 461566f2d8d44..936ceaa04bb6b 100644 --- a/clients/client-lakeformation/src/commands/GetDataLakePrincipalCommand.ts +++ b/clients/client-lakeformation/src/commands/GetDataLakePrincipalCommand.ts @@ -62,6 +62,7 @@ export interface GetDataLakePrincipalCommandOutput extends GetDataLakePrincipalR * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GetDataLakePrincipalCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GetDataLakeSettingsCommand.ts b/clients/client-lakeformation/src/commands/GetDataLakeSettingsCommand.ts index 42459984b1965..e94f54f40e4c6 100644 --- a/clients/client-lakeformation/src/commands/GetDataLakeSettingsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetDataLakeSettingsCommand.ts @@ -111,6 +111,7 @@ export interface GetDataLakeSettingsCommandOutput extends GetDataLakeSettingsRes * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GetDataLakeSettingsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GetEffectivePermissionsForPathCommand.ts b/clients/client-lakeformation/src/commands/GetEffectivePermissionsForPathCommand.ts index 02ab857a58221..8cf8e374d78d2 100644 --- a/clients/client-lakeformation/src/commands/GetEffectivePermissionsForPathCommand.ts +++ b/clients/client-lakeformation/src/commands/GetEffectivePermissionsForPathCommand.ts @@ -161,6 +161,7 @@ export interface GetEffectivePermissionsForPathCommandOutput * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GetEffectivePermissionsForPathCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GetLFTagCommand.ts b/clients/client-lakeformation/src/commands/GetLFTagCommand.ts index 635c4a3bd17bc..86668bbb93075 100644 --- a/clients/client-lakeformation/src/commands/GetLFTagCommand.ts +++ b/clients/client-lakeformation/src/commands/GetLFTagCommand.ts @@ -75,6 +75,7 @@ export interface GetLFTagCommandOutput extends GetLFTagResponse, __MetadataBeare * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GetLFTagCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GetLFTagExpressionCommand.ts b/clients/client-lakeformation/src/commands/GetLFTagExpressionCommand.ts index f218325585c9a..cf47bdebc0dda 100644 --- a/clients/client-lakeformation/src/commands/GetLFTagExpressionCommand.ts +++ b/clients/client-lakeformation/src/commands/GetLFTagExpressionCommand.ts @@ -82,6 +82,7 @@ export interface GetLFTagExpressionCommandOutput extends GetLFTagExpressionRespo * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GetLFTagExpressionCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GetQueryStateCommand.ts b/clients/client-lakeformation/src/commands/GetQueryStateCommand.ts index 0390b0de65cb4..435c8f4046b38 100644 --- a/clients/client-lakeformation/src/commands/GetQueryStateCommand.ts +++ b/clients/client-lakeformation/src/commands/GetQueryStateCommand.ts @@ -65,6 +65,7 @@ export interface GetQueryStateCommandOutput extends GetQueryStateResponse, __Met * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GetQueryStateCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GetQueryStatisticsCommand.ts b/clients/client-lakeformation/src/commands/GetQueryStatisticsCommand.ts index d645f0091cad7..4927a426917cd 100644 --- a/clients/client-lakeformation/src/commands/GetQueryStatisticsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetQueryStatisticsCommand.ts @@ -84,6 +84,7 @@ export interface GetQueryStatisticsCommandOutput extends GetQueryStatisticsRespo * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GetQueryStatisticsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GetResourceLFTagsCommand.ts b/clients/client-lakeformation/src/commands/GetResourceLFTagsCommand.ts index 316b649dec730..9777fd2714bbb 100644 --- a/clients/client-lakeformation/src/commands/GetResourceLFTagsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetResourceLFTagsCommand.ts @@ -167,6 +167,7 @@ export interface GetResourceLFTagsCommandOutput extends GetResourceLFTagsRespons * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GetResourceLFTagsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GetTableObjectsCommand.ts b/clients/client-lakeformation/src/commands/GetTableObjectsCommand.ts index 1edcf65678c0e..78af419198d16 100644 --- a/clients/client-lakeformation/src/commands/GetTableObjectsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetTableObjectsCommand.ts @@ -97,6 +97,7 @@ export interface GetTableObjectsCommandOutput extends GetTableObjectsResponse, _ * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GetTableObjectsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GetTemporaryGluePartitionCredentialsCommand.ts b/clients/client-lakeformation/src/commands/GetTemporaryGluePartitionCredentialsCommand.ts index bc6258a847d3e..8c07fbbfb33b8 100644 --- a/clients/client-lakeformation/src/commands/GetTemporaryGluePartitionCredentialsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetTemporaryGluePartitionCredentialsCommand.ts @@ -99,6 +99,7 @@ export interface GetTemporaryGluePartitionCredentialsCommandOutput * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GetTemporaryGluePartitionCredentialsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GetTemporaryGlueTableCredentialsCommand.ts b/clients/client-lakeformation/src/commands/GetTemporaryGlueTableCredentialsCommand.ts index 56342e51c763a..10b1cbc9ea6c3 100644 --- a/clients/client-lakeformation/src/commands/GetTemporaryGlueTableCredentialsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetTemporaryGlueTableCredentialsCommand.ts @@ -105,6 +105,7 @@ export interface GetTemporaryGlueTableCredentialsCommandOutput * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GetTemporaryGlueTableCredentialsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GetWorkUnitResultsCommand.ts b/clients/client-lakeformation/src/commands/GetWorkUnitResultsCommand.ts index d6be8cb6dedd4..ca49566752cef 100644 --- a/clients/client-lakeformation/src/commands/GetWorkUnitResultsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetWorkUnitResultsCommand.ts @@ -51,6 +51,11 @@ export interface GetWorkUnitResultsCommandOutput * }; * const command = new GetWorkUnitResultsCommand(input); * const response = await client.send(command); + * // consume or destroy the stream to free the socket. + * const bytes = await response.ResultStream.transformToByteArray(); + * // const str = await response.ResultStream.transformToString(); + * // response.ResultStream.destroy(); // only applicable to Node.js Readable streams. + * * // { // GetWorkUnitResultsResponse * // ResultStream: "", // see \@smithy/types -> StreamingBlobPayloadOutputTypes * // }; @@ -81,6 +86,7 @@ export interface GetWorkUnitResultsCommandOutput * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GetWorkUnitResultsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GetWorkUnitsCommand.ts b/clients/client-lakeformation/src/commands/GetWorkUnitsCommand.ts index c99cb200e6c2a..6d3fa8b39eccb 100644 --- a/clients/client-lakeformation/src/commands/GetWorkUnitsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetWorkUnitsCommand.ts @@ -80,6 +80,7 @@ export interface GetWorkUnitsCommandOutput extends GetWorkUnitsResponse, __Metad * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GetWorkUnitsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/GrantPermissionsCommand.ts b/clients/client-lakeformation/src/commands/GrantPermissionsCommand.ts index 84491a40ca092..4d5e06da20fd8 100644 --- a/clients/client-lakeformation/src/commands/GrantPermissionsCommand.ts +++ b/clients/client-lakeformation/src/commands/GrantPermissionsCommand.ts @@ -137,6 +137,7 @@ export interface GrantPermissionsCommandOutput extends GrantPermissionsResponse, * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class GrantPermissionsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/ListDataCellsFilterCommand.ts b/clients/client-lakeformation/src/commands/ListDataCellsFilterCommand.ts index b0c7c2b0db5e3..abbd758e610b9 100644 --- a/clients/client-lakeformation/src/commands/ListDataCellsFilterCommand.ts +++ b/clients/client-lakeformation/src/commands/ListDataCellsFilterCommand.ts @@ -95,6 +95,7 @@ export interface ListDataCellsFilterCommandOutput extends ListDataCellsFilterRes * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class ListDataCellsFilterCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/ListLFTagExpressionsCommand.ts b/clients/client-lakeformation/src/commands/ListLFTagExpressionsCommand.ts index d463a812f2839..f6d65448df9dd 100644 --- a/clients/client-lakeformation/src/commands/ListLFTagExpressionsCommand.ts +++ b/clients/client-lakeformation/src/commands/ListLFTagExpressionsCommand.ts @@ -87,6 +87,7 @@ export interface ListLFTagExpressionsCommandOutput extends ListLFTagExpressionsR * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class ListLFTagExpressionsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/ListLFTagsCommand.ts b/clients/client-lakeformation/src/commands/ListLFTagsCommand.ts index 1ea42a2cdee2c..d71afb2345930 100644 --- a/clients/client-lakeformation/src/commands/ListLFTagsCommand.ts +++ b/clients/client-lakeformation/src/commands/ListLFTagsCommand.ts @@ -82,6 +82,7 @@ export interface ListLFTagsCommandOutput extends ListLFTagsResponse, __MetadataB * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class ListLFTagsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/ListLakeFormationOptInsCommand.ts b/clients/client-lakeformation/src/commands/ListLakeFormationOptInsCommand.ts index 85bec217ef9a5..79e23412ae01f 100644 --- a/clients/client-lakeformation/src/commands/ListLakeFormationOptInsCommand.ts +++ b/clients/client-lakeformation/src/commands/ListLakeFormationOptInsCommand.ts @@ -207,6 +207,7 @@ export interface ListLakeFormationOptInsCommandOutput extends ListLakeFormationO * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class ListLakeFormationOptInsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/ListPermissionsCommand.ts b/clients/client-lakeformation/src/commands/ListPermissionsCommand.ts index 67ad620e72a7a..c720ce11e7e8f 100644 --- a/clients/client-lakeformation/src/commands/ListPermissionsCommand.ts +++ b/clients/client-lakeformation/src/commands/ListPermissionsCommand.ts @@ -220,6 +220,7 @@ export interface ListPermissionsCommandOutput extends ListPermissionsResponse, _ * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class ListPermissionsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/ListResourcesCommand.ts b/clients/client-lakeformation/src/commands/ListResourcesCommand.ts index dfeb4c37413d0..224108f6e2ab3 100644 --- a/clients/client-lakeformation/src/commands/ListResourcesCommand.ts +++ b/clients/client-lakeformation/src/commands/ListResourcesCommand.ts @@ -84,6 +84,7 @@ export interface ListResourcesCommandOutput extends ListResourcesResponse, __Met * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class ListResourcesCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/ListTableStorageOptimizersCommand.ts b/clients/client-lakeformation/src/commands/ListTableStorageOptimizersCommand.ts index b09d172fd0075..df7c8bc6be3ed 100644 --- a/clients/client-lakeformation/src/commands/ListTableStorageOptimizersCommand.ts +++ b/clients/client-lakeformation/src/commands/ListTableStorageOptimizersCommand.ts @@ -83,6 +83,7 @@ export interface ListTableStorageOptimizersCommandOutput extends ListTableStorag * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class ListTableStorageOptimizersCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/ListTransactionsCommand.ts b/clients/client-lakeformation/src/commands/ListTransactionsCommand.ts index 42253fc329fd2..6fe8068229f26 100644 --- a/clients/client-lakeformation/src/commands/ListTransactionsCommand.ts +++ b/clients/client-lakeformation/src/commands/ListTransactionsCommand.ts @@ -76,6 +76,7 @@ export interface ListTransactionsCommandOutput extends ListTransactionsResponse, * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class ListTransactionsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/PutDataLakeSettingsCommand.ts b/clients/client-lakeformation/src/commands/PutDataLakeSettingsCommand.ts index b774b172f5951..a41e2d59373ef 100644 --- a/clients/client-lakeformation/src/commands/PutDataLakeSettingsCommand.ts +++ b/clients/client-lakeformation/src/commands/PutDataLakeSettingsCommand.ts @@ -108,6 +108,7 @@ export interface PutDataLakeSettingsCommandOutput extends PutDataLakeSettingsRes * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class PutDataLakeSettingsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/RegisterResourceCommand.ts b/clients/client-lakeformation/src/commands/RegisterResourceCommand.ts index fc319f53e57f2..d8ca6dbddaa6b 100644 --- a/clients/client-lakeformation/src/commands/RegisterResourceCommand.ts +++ b/clients/client-lakeformation/src/commands/RegisterResourceCommand.ts @@ -89,6 +89,7 @@ export interface RegisterResourceCommandOutput extends RegisterResourceResponse, * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class RegisterResourceCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/RemoveLFTagsFromResourceCommand.ts b/clients/client-lakeformation/src/commands/RemoveLFTagsFromResourceCommand.ts index f8bd7177bd2f0..9d3a5a5ca308d 100644 --- a/clients/client-lakeformation/src/commands/RemoveLFTagsFromResourceCommand.ts +++ b/clients/client-lakeformation/src/commands/RemoveLFTagsFromResourceCommand.ts @@ -161,6 +161,7 @@ export interface RemoveLFTagsFromResourceCommandOutput extends RemoveLFTagsFromR * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class RemoveLFTagsFromResourceCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/RevokePermissionsCommand.ts b/clients/client-lakeformation/src/commands/RevokePermissionsCommand.ts index e516fef90ec25..371132265d87f 100644 --- a/clients/client-lakeformation/src/commands/RevokePermissionsCommand.ts +++ b/clients/client-lakeformation/src/commands/RevokePermissionsCommand.ts @@ -136,6 +136,7 @@ export interface RevokePermissionsCommandOutput extends RevokePermissionsRespons * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class RevokePermissionsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/SearchDatabasesByLFTagsCommand.ts b/clients/client-lakeformation/src/commands/SearchDatabasesByLFTagsCommand.ts index c2c1d7f78f75b..ab0af0e2d113e 100644 --- a/clients/client-lakeformation/src/commands/SearchDatabasesByLFTagsCommand.ts +++ b/clients/client-lakeformation/src/commands/SearchDatabasesByLFTagsCommand.ts @@ -100,6 +100,7 @@ export interface SearchDatabasesByLFTagsCommandOutput extends SearchDatabasesByL * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class SearchDatabasesByLFTagsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/SearchTablesByLFTagsCommand.ts b/clients/client-lakeformation/src/commands/SearchTablesByLFTagsCommand.ts index 1b107ec97d56d..9d051059a76bd 100644 --- a/clients/client-lakeformation/src/commands/SearchTablesByLFTagsCommand.ts +++ b/clients/client-lakeformation/src/commands/SearchTablesByLFTagsCommand.ts @@ -125,6 +125,7 @@ export interface SearchTablesByLFTagsCommandOutput extends SearchTablesByLFTagsR * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class SearchTablesByLFTagsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/StartQueryPlanningCommand.ts b/clients/client-lakeformation/src/commands/StartQueryPlanningCommand.ts index 682467572fb58..735e6366d49ae 100644 --- a/clients/client-lakeformation/src/commands/StartQueryPlanningCommand.ts +++ b/clients/client-lakeformation/src/commands/StartQueryPlanningCommand.ts @@ -81,6 +81,7 @@ export interface StartQueryPlanningCommandOutput extends StartQueryPlanningRespo * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class StartQueryPlanningCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/StartTransactionCommand.ts b/clients/client-lakeformation/src/commands/StartTransactionCommand.ts index b99b6b8865ac1..e6a671e783fa3 100644 --- a/clients/client-lakeformation/src/commands/StartTransactionCommand.ts +++ b/clients/client-lakeformation/src/commands/StartTransactionCommand.ts @@ -61,6 +61,7 @@ export interface StartTransactionCommandOutput extends StartTransactionResponse, * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class StartTransactionCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/UpdateDataCellsFilterCommand.ts b/clients/client-lakeformation/src/commands/UpdateDataCellsFilterCommand.ts index 5e44d3c353727..032481c6307fd 100644 --- a/clients/client-lakeformation/src/commands/UpdateDataCellsFilterCommand.ts +++ b/clients/client-lakeformation/src/commands/UpdateDataCellsFilterCommand.ts @@ -89,6 +89,7 @@ export interface UpdateDataCellsFilterCommandOutput extends UpdateDataCellsFilte * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class UpdateDataCellsFilterCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/UpdateLFTagCommand.ts b/clients/client-lakeformation/src/commands/UpdateLFTagCommand.ts index df3cc7d097f2f..591f7d54cd70e 100644 --- a/clients/client-lakeformation/src/commands/UpdateLFTagCommand.ts +++ b/clients/client-lakeformation/src/commands/UpdateLFTagCommand.ts @@ -78,6 +78,7 @@ export interface UpdateLFTagCommandOutput extends UpdateLFTagResponse, __Metadat * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class UpdateLFTagCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/UpdateLFTagExpressionCommand.ts b/clients/client-lakeformation/src/commands/UpdateLFTagExpressionCommand.ts index f1d88f96ba415..6ce66e44236cd 100644 --- a/clients/client-lakeformation/src/commands/UpdateLFTagExpressionCommand.ts +++ b/clients/client-lakeformation/src/commands/UpdateLFTagExpressionCommand.ts @@ -82,6 +82,7 @@ export interface UpdateLFTagExpressionCommandOutput extends UpdateLFTagExpressio * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class UpdateLFTagExpressionCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.ts b/clients/client-lakeformation/src/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.ts index 2b7fcc44a3773..87c7f864a7366 100644 --- a/clients/client-lakeformation/src/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.ts +++ b/clients/client-lakeformation/src/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.ts @@ -92,6 +92,7 @@ export interface UpdateLakeFormationIdentityCenterConfigurationCommandOutput * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class UpdateLakeFormationIdentityCenterConfigurationCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/UpdateResourceCommand.ts b/clients/client-lakeformation/src/commands/UpdateResourceCommand.ts index e0e4aad94d1dc..77b0d2834fa3d 100644 --- a/clients/client-lakeformation/src/commands/UpdateResourceCommand.ts +++ b/clients/client-lakeformation/src/commands/UpdateResourceCommand.ts @@ -68,6 +68,7 @@ export interface UpdateResourceCommandOutput extends UpdateResourceResponse, __M * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class UpdateResourceCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/UpdateTableObjectsCommand.ts b/clients/client-lakeformation/src/commands/UpdateTableObjectsCommand.ts index f7f7b850dc2c0..42434d2ef3e9a 100644 --- a/clients/client-lakeformation/src/commands/UpdateTableObjectsCommand.ts +++ b/clients/client-lakeformation/src/commands/UpdateTableObjectsCommand.ts @@ -102,6 +102,7 @@ export interface UpdateTableObjectsCommandOutput extends UpdateTableObjectsRespo * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class UpdateTableObjectsCommand extends $Command diff --git a/clients/client-lakeformation/src/commands/UpdateTableStorageOptimizerCommand.ts b/clients/client-lakeformation/src/commands/UpdateTableStorageOptimizerCommand.ts index 034ca7f8af7fb..b78b5eb338d99 100644 --- a/clients/client-lakeformation/src/commands/UpdateTableStorageOptimizerCommand.ts +++ b/clients/client-lakeformation/src/commands/UpdateTableStorageOptimizerCommand.ts @@ -79,6 +79,7 @@ export interface UpdateTableStorageOptimizerCommandOutput * @throws {@link LakeFormationServiceException} *

Base exception class for all service exceptions from LakeFormation service.

* + * * @public */ export class UpdateTableStorageOptimizerCommand extends $Command diff --git a/clients/client-lambda/src/commands/AddLayerVersionPermissionCommand.ts b/clients/client-lambda/src/commands/AddLayerVersionPermissionCommand.ts index 88d38f359f1c0..71c96129985a1 100644 --- a/clients/client-lambda/src/commands/AddLayerVersionPermissionCommand.ts +++ b/clients/client-lambda/src/commands/AddLayerVersionPermissionCommand.ts @@ -98,28 +98,28 @@ export interface AddLayerVersionPermissionCommandOutput extends AddLayerVersionP * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To add permissions to a layer version * ```javascript * // The following example grants permission for the account 223456789012 to use version 1 of a layer named my-layer. * const input = { - * "Action": "lambda:GetLayerVersion", - * "LayerName": "my-layer", - * "Principal": "223456789012", - * "StatementId": "xaccount", - * "VersionNumber": 1 + * Action: "lambda:GetLayerVersion", + * LayerName: "my-layer", + * Principal: "223456789012", + * StatementId: "xaccount", + * VersionNumber: 1 * }; * const command = new AddLayerVersionPermissionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RevisionId": "35d87451-f796-4a3f-a618-95a3671b0a0c", - * "Statement": "{\"Sid\":\"xaccount\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::223456789012:root\"},\"Action\":\"lambda:GetLayerVersion\",\"Resource\":\"arn:aws:lambda:us-east-2:123456789012:layer:my-layer:1\"}" + * RevisionId: "35d87451-f796-4a3f-a618-95a3671b0a0c", + * Statement: `{"Sid":"xaccount","Effect":"Allow","Principal":{"AWS":"arn:aws:iam::223456789012:root"},"Action":"lambda:GetLayerVersion","Resource":"arn:aws:lambda:us-east-2:123456789012:layer:my-layer:1"}` * } * *\/ - * // example id: to-add-permissions-to-a-layer-version-1586479797163 * ``` * + * @public */ export class AddLayerVersionPermissionCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/AddPermissionCommand.ts b/clients/client-lambda/src/commands/AddPermissionCommand.ts index 11889e4ead2a3..967b23a598b49 100644 --- a/clients/client-lambda/src/commands/AddPermissionCommand.ts +++ b/clients/client-lambda/src/commands/AddPermissionCommand.ts @@ -108,47 +108,46 @@ export interface AddPermissionCommandOutput extends AddPermissionResponse, __Met * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To grant Amazon S3 permission to invoke a function * ```javascript * // The following example adds permission for Amazon S3 to invoke a Lambda function named my-function for notifications from a bucket named my-bucket-1xpuxmplzrlbh in account 123456789012. * const input = { - * "Action": "lambda:InvokeFunction", - * "FunctionName": "my-function", - * "Principal": "s3.amazonaws.com", - * "SourceAccount": "123456789012", - * "SourceArn": "arn:aws:s3:::my-bucket-1xpuxmplzrlbh/*", - * "StatementId": "s3" + * Action: "lambda:InvokeFunction", + * FunctionName: "my-function", + * Principal: "s3.amazonaws.com", + * SourceAccount: "123456789012", + * SourceArn: "arn:aws:s3:::my-bucket-1xpuxmplzrlbh/*", + * StatementId: "s3" * }; * const command = new AddPermissionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Statement": "{\"Sid\":\"s3\",\"Effect\":\"Allow\",\"Principal\":{\"Service\":\"s3.amazonaws.com\"},\"Action\":\"lambda:InvokeFunction\",\"Resource\":\"arn:aws:lambda:us-east-2:123456789012:function:my-function\",\"Condition\":{\"StringEquals\":{\"AWS:SourceAccount\":\"123456789012\"},\"ArnLike\":{\"AWS:SourceArn\":\"arn:aws:s3:::my-bucket-1xpuxmplzrlbh\"}}}" + * Statement: `{"Sid":"s3","Effect":"Allow","Principal":{"Service":"s3.amazonaws.com"},"Action":"lambda:InvokeFunction","Resource":"arn:aws:lambda:us-east-2:123456789012:function:my-function","Condition":{"StringEquals":{"AWS:SourceAccount":"123456789012"},"ArnLike":{"AWS:SourceArn":"arn:aws:s3:::my-bucket-1xpuxmplzrlbh"}}}` * } * *\/ - * // example id: add-permission-1474651469455 * ``` * * @example To grant another account permission to invoke a function * ```javascript * // The following example adds permission for account 223456789012 invoke a Lambda function named my-function. * const input = { - * "Action": "lambda:InvokeFunction", - * "FunctionName": "my-function", - * "Principal": "223456789012", - * "StatementId": "xaccount" + * Action: "lambda:InvokeFunction", + * FunctionName: "my-function", + * Principal: "223456789012", + * StatementId: "xaccount" * }; * const command = new AddPermissionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Statement": "{\"Sid\":\"xaccount\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::223456789012:root\"},\"Action\":\"lambda:InvokeFunction\",\"Resource\":\"arn:aws:lambda:us-east-2:123456789012:function:my-function\"}" + * Statement: `{"Sid":"xaccount","Effect":"Allow","Principal":{"AWS":"arn:aws:iam::223456789012:root"},"Action":"lambda:InvokeFunction","Resource":"arn:aws:lambda:us-east-2:123456789012:function:my-function"}` * } * *\/ - * // example id: add-permission-1474651469456 * ``` * + * @public */ export class AddPermissionCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/CreateAliasCommand.ts b/clients/client-lambda/src/commands/CreateAliasCommand.ts index bfdc2cf01287a..2106c4e4cdcb2 100644 --- a/clients/client-lambda/src/commands/CreateAliasCommand.ts +++ b/clients/client-lambda/src/commands/CreateAliasCommand.ts @@ -92,30 +92,30 @@ export interface CreateAliasCommandOutput extends AliasConfiguration, __Metadata * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To create an alias for a Lambda function * ```javascript * // The following example creates an alias named LIVE that points to version 1 of the my-function Lambda function. * const input = { - * "Description": "alias for live version of function", - * "FunctionName": "my-function", - * "FunctionVersion": "1", - * "Name": "LIVE" + * Description: "alias for live version of function", + * FunctionName: "my-function", + * FunctionVersion: "1", + * Name: "LIVE" * }; * const command = new CreateAliasCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AliasArn": "arn:aws:lambda:us-east-2:123456789012:function:my-function:LIVE", - * "Description": "alias for live version of function", - * "FunctionVersion": "1", - * "Name": "LIVE", - * "RevisionId": "873282ed-xmpl-4dc8-a069-d0c647e470c6" + * AliasArn: "arn:aws:lambda:us-east-2:123456789012:function:my-function:LIVE", + * Description: "alias for live version of function", + * FunctionVersion: "1", + * Name: "LIVE", + * RevisionId: "873282ed-xmpl-4dc8-a069-d0c647e470c6" * } * *\/ - * // example id: to-create-an-alias-for-a-lambda-function-1586480324259 * ``` * + * @public */ export class CreateAliasCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/CreateCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/CreateCodeSigningConfigCommand.ts index f20ba5bdf78e4..9d8c0a2dde3eb 100644 --- a/clients/client-lambda/src/commands/CreateCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/CreateCodeSigningConfigCommand.ts @@ -87,6 +87,7 @@ export interface CreateCodeSigningConfigCommandOutput extends CreateCodeSigningC * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class CreateCodeSigningConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/CreateEventSourceMappingCommand.ts b/clients/client-lambda/src/commands/CreateEventSourceMappingCommand.ts index f9b5b1df11632..9eefe36b92303 100644 --- a/clients/client-lambda/src/commands/CreateEventSourceMappingCommand.ts +++ b/clients/client-lambda/src/commands/CreateEventSourceMappingCommand.ts @@ -343,31 +343,31 @@ export interface CreateEventSourceMappingCommandOutput extends EventSourceMappin * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To create a mapping between an event source and an AWS Lambda function * ```javascript * // The following example creates a mapping between an SQS queue and the my-function Lambda function. * const input = { - * "BatchSize": 5, - * "EventSourceArn": "arn:aws:sqs:us-west-2:123456789012:my-queue", - * "FunctionName": "my-function" + * BatchSize: 5, + * EventSourceArn: "arn:aws:sqs:us-west-2:123456789012:my-queue", + * FunctionName: "my-function" * }; * const command = new CreateEventSourceMappingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "BatchSize": 5, - * "EventSourceArn": "arn:aws:sqs:us-west-2:123456789012:my-queue", - * "FunctionArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function", - * "LastModified": 1569284520.333, - * "State": "Creating", - * "StateTransitionReason": "USER_INITIATED", - * "UUID": "a1b2c3d4-5678-90ab-cdef-11111EXAMPLE" + * BatchSize: 5, + * EventSourceArn: "arn:aws:sqs:us-west-2:123456789012:my-queue", + * FunctionArn: "arn:aws:lambda:us-west-2:123456789012:function:my-function", + * LastModified: 1.569284520333E9, + * State: "Creating", + * StateTransitionReason: "USER_INITIATED", + * UUID: "a1b2c3d4-5678-90ab-cdef-11111EXAMPLE" * } * *\/ - * // example id: to-create-a-mapping-between-an-event-source-and-an-aws-lambda-function-1586480555467 * ``` * + * @public */ export class CreateEventSourceMappingCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/CreateFunctionCommand.ts b/clients/client-lambda/src/commands/CreateFunctionCommand.ts index 9d7c6698e7e23..a25d16d2b698e 100644 --- a/clients/client-lambda/src/commands/CreateFunctionCommand.ts +++ b/clients/client-lambda/src/commands/CreateFunctionCommand.ts @@ -300,71 +300,71 @@ export interface CreateFunctionCommandOutput extends FunctionConfiguration, __Me * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To create a function * ```javascript * // The following example creates a function with a deployment package in Amazon S3 and enables X-Ray tracing and environment variable encryption. * const input = { - * "Code": { - * "S3Bucket": "my-bucket-1xpuxmplzrlbh", - * "S3Key": "function.zip" + * Code: { + * S3Bucket: "my-bucket-1xpuxmplzrlbh", + * S3Key: "function.zip" * }, - * "Description": "Process image objects from Amazon S3.", - * "Environment": { - * "Variables": { - * "BUCKET": "my-bucket-1xpuxmplzrlbh", - * "PREFIX": "inbound" + * Description: "Process image objects from Amazon S3.", + * Environment: { + * Variables: { + * BUCKET: "my-bucket-1xpuxmplzrlbh", + * PREFIX: "inbound" * } * }, - * "FunctionName": "my-function", - * "Handler": "index.handler", - * "KMSKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b0844d6c-xmpl-4463-97a4-d49f50839966", - * "MemorySize": 256, - * "Publish": true, - * "Role": "arn:aws:iam::123456789012:role/lambda-role", - * "Runtime": "nodejs12.x", - * "Tags": { - * "DEPARTMENT": "Assets" + * FunctionName: "my-function", + * Handler: "index.handler", + * KMSKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b0844d6c-xmpl-4463-97a4-d49f50839966", + * MemorySize: 256, + * Publish: true, + * Role: "arn:aws:iam::123456789012:role/lambda-role", + * Runtime: "nodejs12.x", + * Tags: { + * DEPARTMENT: "Assets" * }, - * "Timeout": 15, - * "TracingConfig": { - * "Mode": "Active" + * Timeout: 15, + * TracingConfig: { + * Mode: "Active" * } * }; * const command = new CreateFunctionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CodeSha256": "YFgDgEKG3ugvF1+pX64gV6tu9qNuIYNUdgJm8nCxsm4=", - * "CodeSize": 5797206, - * "Description": "Process image objects from Amazon S3.", - * "Environment": { - * "Variables": { - * "BUCKET": "my-bucket-1xpuxmplzrlbh", - * "PREFIX": "inbound" + * CodeSha256: "YFgDgEKG3ugvF1+pX64gV6tu9qNuIYNUdgJm8nCxsm4=", + * CodeSize: 5797206, + * Description: "Process image objects from Amazon S3.", + * Environment: { + * Variables: { + * BUCKET: "my-bucket-1xpuxmplzrlbh", + * PREFIX: "inbound" * } * }, - * "FunctionArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function", - * "FunctionName": "my-function", - * "Handler": "index.handler", - * "KMSKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b0844d6c-xmpl-4463-97a4-d49f50839966", - * "LastModified": "2020-04-10T19:06:32.563+0000", - * "LastUpdateStatus": "Successful", - * "MemorySize": 256, - * "RevisionId": "b75dcd81-xmpl-48a8-a75a-93ba8b5b9727", - * "Role": "arn:aws:iam::123456789012:role/lambda-role", - * "Runtime": "nodejs12.x", - * "State": "Active", - * "Timeout": 15, - * "TracingConfig": { - * "Mode": "Active" + * FunctionArn: "arn:aws:lambda:us-west-2:123456789012:function:my-function", + * FunctionName: "my-function", + * Handler: "index.handler", + * KMSKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b0844d6c-xmpl-4463-97a4-d49f50839966", + * LastModified: "2020-04-10T19:06:32.563+0000", + * LastUpdateStatus: "Successful", + * MemorySize: 256, + * RevisionId: "b75dcd81-xmpl-48a8-a75a-93ba8b5b9727", + * Role: "arn:aws:iam::123456789012:role/lambda-role", + * Runtime: "nodejs12.x", + * State: "Active", + * Timeout: 15, + * TracingConfig: { + * Mode: "Active" * }, - * "Version": "1" + * Version: "1" * } * *\/ - * // example id: to-create-a-function-1586492061186 * ``` * + * @public */ export class CreateFunctionCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/CreateFunctionUrlConfigCommand.ts b/clients/client-lambda/src/commands/CreateFunctionUrlConfigCommand.ts index e143bcde447ce..4a8c3a2a3d874 100644 --- a/clients/client-lambda/src/commands/CreateFunctionUrlConfigCommand.ts +++ b/clients/client-lambda/src/commands/CreateFunctionUrlConfigCommand.ts @@ -110,6 +110,7 @@ export interface CreateFunctionUrlConfigCommandOutput extends CreateFunctionUrlC * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class CreateFunctionUrlConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/DeleteAliasCommand.ts b/clients/client-lambda/src/commands/DeleteAliasCommand.ts index 228b6f7e25388..a69c5910fb8e0 100644 --- a/clients/client-lambda/src/commands/DeleteAliasCommand.ts +++ b/clients/client-lambda/src/commands/DeleteAliasCommand.ts @@ -66,19 +66,22 @@ export interface DeleteAliasCommandOutput extends __MetadataBearer {} * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To delete a Lambda function alias * ```javascript * // The following example deletes an alias named BLUE from a function named my-function * const input = { - * "FunctionName": "my-function", - * "Name": "BLUE" + * FunctionName: "my-function", + * Name: "BLUE" * }; * const command = new DeleteAliasCommand(input); - * await client.send(command); - * // example id: to-delete-a-lambda-function-alias-1481660370804 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteAliasCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/DeleteCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/DeleteCodeSigningConfigCommand.ts index 56c04ac1ab5e0..b60eeab2d1e33 100644 --- a/clients/client-lambda/src/commands/DeleteCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/DeleteCodeSigningConfigCommand.ts @@ -66,6 +66,7 @@ export interface DeleteCodeSigningConfigCommandOutput extends DeleteCodeSigningC * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class DeleteCodeSigningConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/DeleteEventSourceMappingCommand.ts b/clients/client-lambda/src/commands/DeleteEventSourceMappingCommand.ts index c68fc09ccb2f9..8312bc0510f49 100644 --- a/clients/client-lambda/src/commands/DeleteEventSourceMappingCommand.ts +++ b/clients/client-lambda/src/commands/DeleteEventSourceMappingCommand.ts @@ -158,29 +158,8 @@ export interface DeleteEventSourceMappingCommandOutput extends EventSourceMappin * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public - * @example To delete a Lambda function event source mapping - * ```javascript - * // The following example deletes an event source mapping. To get a mapping's UUID, use ListEventSourceMappings. - * const input = { - * "UUID": "14e0db71-xmpl-4eb5-b481-8945cf9d10c2" - * }; - * const command = new DeleteEventSourceMappingCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "BatchSize": 5, - * "EventSourceArn": "arn:aws:sqs:us-west-2:123456789012:my-queue", - * "FunctionArn": "arn:aws:lambda:us-east-2:123456789012:function:my-function", - * "LastModified": "${timestamp}", - * "State": "Enabled", - * "StateTransitionReason": "USER_INITIATED", - * "UUID": "14e0db71-xmpl-4eb5-b481-8945cf9d10c2" - * } - * *\/ - * // example id: to-delete-a-lambda-function-event-source-mapping-1481658973862 - * ``` * + * @public */ export class DeleteEventSourceMappingCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/DeleteFunctionCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/DeleteFunctionCodeSigningConfigCommand.ts index 708af938e485f..b9db0dc2d88e8 100644 --- a/clients/client-lambda/src/commands/DeleteFunctionCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/DeleteFunctionCodeSigningConfigCommand.ts @@ -74,6 +74,7 @@ export interface DeleteFunctionCodeSigningConfigCommandOutput extends __Metadata * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class DeleteFunctionCodeSigningConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/DeleteFunctionCommand.ts b/clients/client-lambda/src/commands/DeleteFunctionCommand.ts index b174dc0248c8e..a289295bddcd7 100644 --- a/clients/client-lambda/src/commands/DeleteFunctionCommand.ts +++ b/clients/client-lambda/src/commands/DeleteFunctionCommand.ts @@ -73,19 +73,22 @@ export interface DeleteFunctionCommandOutput extends __MetadataBearer {} * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To delete a version of a Lambda function * ```javascript * // The following example deletes version 1 of a Lambda function named my-function. * const input = { - * "FunctionName": "my-function", - * "Qualifier": "1" + * FunctionName: "my-function", + * Qualifier: "1" * }; * const command = new DeleteFunctionCommand(input); - * await client.send(command); - * // example id: to-delete-a-lambda-function-1481648553696 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteFunctionCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/DeleteFunctionConcurrencyCommand.ts b/clients/client-lambda/src/commands/DeleteFunctionConcurrencyCommand.ts index 512df50ac136e..e3f4ed5fdb382 100644 --- a/clients/client-lambda/src/commands/DeleteFunctionConcurrencyCommand.ts +++ b/clients/client-lambda/src/commands/DeleteFunctionConcurrencyCommand.ts @@ -68,18 +68,21 @@ export interface DeleteFunctionConcurrencyCommandOutput extends __MetadataBearer * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To remove the reserved concurrent execution limit from a function * ```javascript * // The following example deletes the reserved concurrent execution limit from a function named my-function. * const input = { - * "FunctionName": "my-function" + * FunctionName: "my-function" * }; * const command = new DeleteFunctionConcurrencyCommand(input); - * await client.send(command); - * // example id: to-remove-the-reserved-concurrent-execution-limit-from-a-function-1586480714680 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteFunctionConcurrencyCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/DeleteFunctionEventInvokeConfigCommand.ts b/clients/client-lambda/src/commands/DeleteFunctionEventInvokeConfigCommand.ts index 253b7e976c836..6caa55b35ccfa 100644 --- a/clients/client-lambda/src/commands/DeleteFunctionEventInvokeConfigCommand.ts +++ b/clients/client-lambda/src/commands/DeleteFunctionEventInvokeConfigCommand.ts @@ -73,19 +73,22 @@ export interface DeleteFunctionEventInvokeConfigCommandOutput extends __Metadata * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To delete an asynchronous invocation configuration * ```javascript * // The following example deletes the asynchronous invocation configuration for the GREEN alias of a function named my-function. * const input = { - * "FunctionName": "my-function", - * "Qualifier": "GREEN" + * FunctionName: "my-function", + * Qualifier: "GREEN" * }; * const command = new DeleteFunctionEventInvokeConfigCommand(input); - * await client.send(command); - * // example id: to-delete-an-asynchronous-invocation-configuration-1586481102187 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteFunctionEventInvokeConfigCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/DeleteFunctionUrlConfigCommand.ts b/clients/client-lambda/src/commands/DeleteFunctionUrlConfigCommand.ts index bb7edbedab82d..4bb51db03ba87 100644 --- a/clients/client-lambda/src/commands/DeleteFunctionUrlConfigCommand.ts +++ b/clients/client-lambda/src/commands/DeleteFunctionUrlConfigCommand.ts @@ -67,6 +67,7 @@ export interface DeleteFunctionUrlConfigCommandOutput extends __MetadataBearer { * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class DeleteFunctionUrlConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/DeleteLayerVersionCommand.ts b/clients/client-lambda/src/commands/DeleteLayerVersionCommand.ts index 8de89cd75568f..bfa46722cb07e 100644 --- a/clients/client-lambda/src/commands/DeleteLayerVersionCommand.ts +++ b/clients/client-lambda/src/commands/DeleteLayerVersionCommand.ts @@ -62,19 +62,22 @@ export interface DeleteLayerVersionCommandOutput extends __MetadataBearer {} * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To delete a version of a Lambda layer * ```javascript * // The following example deletes version 2 of a layer named my-layer. * const input = { - * "LayerName": "my-layer", - * "VersionNumber": 2 + * LayerName: "my-layer", + * VersionNumber: 2 * }; * const command = new DeleteLayerVersionCommand(input); - * await client.send(command); - * // example id: to-delete-a-version-of-a-lambda-layer-1586481157547 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteLayerVersionCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/DeleteProvisionedConcurrencyConfigCommand.ts b/clients/client-lambda/src/commands/DeleteProvisionedConcurrencyConfigCommand.ts index ff45878642505..7d8fdc1b30fbd 100644 --- a/clients/client-lambda/src/commands/DeleteProvisionedConcurrencyConfigCommand.ts +++ b/clients/client-lambda/src/commands/DeleteProvisionedConcurrencyConfigCommand.ts @@ -72,19 +72,22 @@ export interface DeleteProvisionedConcurrencyConfigCommandOutput extends __Metad * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To delete a provisioned concurrency configuration * ```javascript * // The following example deletes the provisioned concurrency configuration for the GREEN alias of a function named my-function. * const input = { - * "FunctionName": "my-function", - * "Qualifier": "GREEN" + * FunctionName: "my-function", + * Qualifier: "GREEN" * }; * const command = new DeleteProvisionedConcurrencyConfigCommand(input); - * await client.send(command); - * // example id: to-delete-a-provisioned-concurrency-configuration-1586481032551 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteProvisionedConcurrencyConfigCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/GetAccountSettingsCommand.ts b/clients/client-lambda/src/commands/GetAccountSettingsCommand.ts index 782b811203297..ab68d1b0bca31 100644 --- a/clients/client-lambda/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-lambda/src/commands/GetAccountSettingsCommand.ts @@ -69,31 +69,31 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsRespo * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To get account settings * ```javascript * // This operation takes no parameters and returns details about storage and concurrency quotas in the current Region. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new GetAccountSettingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AccountLimit": { - * "CodeSizeUnzipped": 262144000, - * "CodeSizeZipped": 52428800, - * "ConcurrentExecutions": 1000, - * "TotalCodeSize": 80530636800, - * "UnreservedConcurrentExecutions": 1000 + * AccountLimit: { + * CodeSizeUnzipped: 262144000, + * CodeSizeZipped: 52428800, + * ConcurrentExecutions: 1000, + * TotalCodeSize: 80530636800, + * UnreservedConcurrentExecutions: 1000 * }, - * "AccountUsage": { - * "FunctionCount": 4, - * "TotalCodeSize": 9426 + * AccountUsage: { + * FunctionCount: 4, + * TotalCodeSize: 9426 * } * } * *\/ - * // example id: to-get-account-settings-1481657495274 * ``` * + * @public */ export class GetAccountSettingsCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/GetAliasCommand.ts b/clients/client-lambda/src/commands/GetAliasCommand.ts index f7b2a149508e5..2017f44e0cd8b 100644 --- a/clients/client-lambda/src/commands/GetAliasCommand.ts +++ b/clients/client-lambda/src/commands/GetAliasCommand.ts @@ -77,28 +77,28 @@ export interface GetAliasCommandOutput extends AliasConfiguration, __MetadataBea * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To get a Lambda function alias * ```javascript * // The following example returns details about an alias named BLUE for a function named my-function * const input = { - * "FunctionName": "my-function", - * "Name": "BLUE" + * FunctionName: "my-function", + * Name: "BLUE" * }; * const command = new GetAliasCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AliasArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function:BLUE", - * "Description": "Production environment BLUE.", - * "FunctionVersion": "3", - * "Name": "BLUE", - * "RevisionId": "594f41fb-xmpl-4c20-95c7-6ca5f2a92c93" + * AliasArn: "arn:aws:lambda:us-west-2:123456789012:function:my-function:BLUE", + * Description: "Production environment BLUE.", + * FunctionVersion: "3", + * Name: "BLUE", + * RevisionId: "594f41fb-xmpl-4c20-95c7-6ca5f2a92c93" * } * *\/ - * // example id: to-retrieve-a-lambda-function-alias-1481648742254 * ``` * + * @public */ export class GetAliasCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/GetCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/GetCodeSigningConfigCommand.ts index faa2a89053bbd..601fa6604aec2 100644 --- a/clients/client-lambda/src/commands/GetCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetCodeSigningConfigCommand.ts @@ -77,6 +77,7 @@ export interface GetCodeSigningConfigCommandOutput extends GetCodeSigningConfigR * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class GetCodeSigningConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/GetEventSourceMappingCommand.ts b/clients/client-lambda/src/commands/GetEventSourceMappingCommand.ts index 4c9abe543c86a..9b8a595839983 100644 --- a/clients/client-lambda/src/commands/GetEventSourceMappingCommand.ts +++ b/clients/client-lambda/src/commands/GetEventSourceMappingCommand.ts @@ -149,34 +149,8 @@ export interface GetEventSourceMappingCommandOutput extends EventSourceMappingCo * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public - * @example To get a Lambda function's event source mapping - * ```javascript - * // The following example returns details about an event source mapping. To get a mapping's UUID, use ListEventSourceMappings. - * const input = { - * "UUID": "14e0db71-xmpl-4eb5-b481-8945cf9d10c2" - * }; - * const command = new GetEventSourceMappingCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "BatchSize": 500, - * "BisectBatchOnFunctionError": false, - * "DestinationConfig": {}, - * "EventSourceArn": "arn:aws:sqs:us-east-2:123456789012:mySQSqueue", - * "FunctionArn": "arn:aws:lambda:us-east-2:123456789012:function:myFunction", - * "LastModified": "${timestamp}", - * "LastProcessingResult": "No records processed", - * "MaximumRecordAgeInSeconds": 604800, - * "MaximumRetryAttempts": 10000, - * "State": "Creating", - * "StateTransitionReason": "User action", - * "UUID": "14e0db71-xmpl-4eb5-b481-8945cf9d10c2" - * } - * *\/ - * // example id: to-get-a-lambda-functions-event-source-mapping-1481661622799 - * ``` * + * @public */ export class GetEventSourceMappingCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/GetFunctionCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/GetFunctionCodeSigningConfigCommand.ts index 159e70faa13d7..8d8ab5d485ceb 100644 --- a/clients/client-lambda/src/commands/GetFunctionCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionCodeSigningConfigCommand.ts @@ -73,6 +73,7 @@ export interface GetFunctionCodeSigningConfigCommandOutput * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class GetFunctionCodeSigningConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/GetFunctionCommand.ts b/clients/client-lambda/src/commands/GetFunctionCommand.ts index f5aed35edc74e..547842178fe0c 100644 --- a/clients/client-lambda/src/commands/GetFunctionCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionCommand.ts @@ -189,57 +189,57 @@ export interface GetFunctionCommandOutput extends GetFunctionResponse, __Metadat * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To get a Lambda function * ```javascript * // The following example returns code and configuration details for version 1 of a function named my-function. * const input = { - * "FunctionName": "my-function", - * "Qualifier": "1" + * FunctionName: "my-function", + * Qualifier: "1" * }; * const command = new GetFunctionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Code": { - * "Location": "https://awslambda-us-west-2-tasks.s3.us-west-2.amazonaws.com/snapshots/123456789012/my-function-e7d9d1ed-xmpl-4f79-904a-4b87f2681f30?versionId=sH3TQwBOaUy...", - * "RepositoryType": "S3" + * Code: { + * Location: "https://awslambda-us-west-2-tasks.s3.us-west-2.amazonaws.com/snapshots/123456789012/my-function-e7d9d1ed-xmpl-4f79-904a-4b87f2681f30?versionId=sH3TQwBOaUy...", + * RepositoryType: "S3" * }, - * "Configuration": { - * "CodeSha256": "YFgDgEKG3ugvF1+pX64gV6tu9qNuIYNUdgJm8nCxsm4=", - * "CodeSize": 5797206, - * "Description": "Process image objects from Amazon S3.", - * "Environment": { - * "Variables": { - * "BUCKET": "my-bucket-1xpuxmplzrlbh", - * "PREFIX": "inbound" + * Configuration: { + * CodeSha256: "YFgDgEKG3ugvF1+pX64gV6tu9qNuIYNUdgJm8nCxsm4=", + * CodeSize: 5797206, + * Description: "Process image objects from Amazon S3.", + * Environment: { + * Variables: { + * BUCKET: "my-bucket-1xpuxmplzrlbh", + * PREFIX: "inbound" * } * }, - * "FunctionArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function", - * "FunctionName": "my-function", - * "Handler": "index.handler", - * "KMSKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b0844d6c-xmpl-4463-97a4-d49f50839966", - * "LastModified": "2020-04-10T19:06:32.563+0000", - * "LastUpdateStatus": "Successful", - * "MemorySize": 256, - * "RevisionId": "b75dcd81-xmpl-48a8-a75a-93ba8b5b9727", - * "Role": "arn:aws:iam::123456789012:role/lambda-role", - * "Runtime": "nodejs12.x", - * "State": "Active", - * "Timeout": 15, - * "TracingConfig": { - * "Mode": "Active" + * FunctionArn: "arn:aws:lambda:us-west-2:123456789012:function:my-function", + * FunctionName: "my-function", + * Handler: "index.handler", + * KMSKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b0844d6c-xmpl-4463-97a4-d49f50839966", + * LastModified: "2020-04-10T19:06:32.563+0000", + * LastUpdateStatus: "Successful", + * MemorySize: 256, + * RevisionId: "b75dcd81-xmpl-48a8-a75a-93ba8b5b9727", + * Role: "arn:aws:iam::123456789012:role/lambda-role", + * Runtime: "nodejs12.x", + * State: "Active", + * Timeout: 15, + * TracingConfig: { + * Mode: "Active" * }, - * "Version": "$LATEST" + * Version: "$LATEST" * }, - * "Tags": { - * "DEPARTMENT": "Assets" + * Tags: { + * DEPARTMENT: "Assets" * } * } * *\/ - * // example id: to-get-a-lambda-function-1481661622799 * ``` * + * @public */ export class GetFunctionCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/GetFunctionConcurrencyCommand.ts b/clients/client-lambda/src/commands/GetFunctionConcurrencyCommand.ts index 338213c66453a..5a4293ed4e206 100644 --- a/clients/client-lambda/src/commands/GetFunctionConcurrencyCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionConcurrencyCommand.ts @@ -68,23 +68,23 @@ export interface GetFunctionConcurrencyCommandOutput extends GetFunctionConcurre * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To get the reserved concurrency setting for a function * ```javascript * // The following example returns the reserved concurrency setting for a function named my-function. * const input = { - * "FunctionName": "my-function" + * FunctionName: "my-function" * }; * const command = new GetFunctionConcurrencyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReservedConcurrentExecutions": 250 + * ReservedConcurrentExecutions: 250 * } * *\/ - * // example id: to-get-the-reserved-concurrency-setting-for-a-function-1586481279992 * ``` * + * @public */ export class GetFunctionConcurrencyCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/GetFunctionConfigurationCommand.ts b/clients/client-lambda/src/commands/GetFunctionConfigurationCommand.ts index 032388f146a18..f5434075f4c9c 100644 --- a/clients/client-lambda/src/commands/GetFunctionConfigurationCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionConfigurationCommand.ts @@ -174,48 +174,48 @@ export interface GetFunctionConfigurationCommandOutput extends FunctionConfigura * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To get a Lambda function's event source mapping * ```javascript * // The following example returns and configuration details for version 1 of a function named my-function. * const input = { - * "FunctionName": "my-function", - * "Qualifier": "1" + * FunctionName: "my-function", + * Qualifier: "1" * }; * const command = new GetFunctionConfigurationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CodeSha256": "YFgDgEKG3ugvF1+pX64gV6tu9qNuIYNUdgJm8nCxsm4=", - * "CodeSize": 5797206, - * "Description": "Process image objects from Amazon S3.", - * "Environment": { - * "Variables": { - * "BUCKET": "my-bucket-1xpuxmplzrlbh", - * "PREFIX": "inbound" + * CodeSha256: "YFgDgEKG3ugvF1+pX64gV6tu9qNuIYNUdgJm8nCxsm4=", + * CodeSize: 5797206, + * Description: "Process image objects from Amazon S3.", + * Environment: { + * Variables: { + * BUCKET: "my-bucket-1xpuxmplzrlbh", + * PREFIX: "inbound" * } * }, - * "FunctionArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function", - * "FunctionName": "my-function", - * "Handler": "index.handler", - * "KMSKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b0844d6c-xmpl-4463-97a4-d49f50839966", - * "LastModified": "2020-04-10T19:06:32.563+0000", - * "LastUpdateStatus": "Successful", - * "MemorySize": 256, - * "RevisionId": "b75dcd81-xmpl-48a8-a75a-93ba8b5b9727", - * "Role": "arn:aws:iam::123456789012:role/lambda-role", - * "Runtime": "nodejs12.x", - * "State": "Active", - * "Timeout": 15, - * "TracingConfig": { - * "Mode": "Active" + * FunctionArn: "arn:aws:lambda:us-west-2:123456789012:function:my-function", + * FunctionName: "my-function", + * Handler: "index.handler", + * KMSKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b0844d6c-xmpl-4463-97a4-d49f50839966", + * LastModified: "2020-04-10T19:06:32.563+0000", + * LastUpdateStatus: "Successful", + * MemorySize: 256, + * RevisionId: "b75dcd81-xmpl-48a8-a75a-93ba8b5b9727", + * Role: "arn:aws:iam::123456789012:role/lambda-role", + * Runtime: "nodejs12.x", + * State: "Active", + * Timeout: 15, + * TracingConfig: { + * Mode: "Active" * }, - * "Version": "$LATEST" + * Version: "$LATEST" * } * *\/ - * // example id: to-get-a-lambda-functions-event-source-mapping-1481661622799 * ``` * + * @public */ export class GetFunctionConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/GetFunctionEventInvokeConfigCommand.ts b/clients/client-lambda/src/commands/GetFunctionEventInvokeConfigCommand.ts index 570eaf0298bdd..1ed058fa7d71a 100644 --- a/clients/client-lambda/src/commands/GetFunctionEventInvokeConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionEventInvokeConfigCommand.ts @@ -83,33 +83,8 @@ export interface GetFunctionEventInvokeConfigCommandOutput extends FunctionEvent * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public - * @example To get an asynchronous invocation configuration - * ```javascript - * // The following example returns the asynchronous invocation configuration for the BLUE alias of a function named my-function. - * const input = { - * "FunctionName": "my-function", - * "Qualifier": "BLUE" - * }; - * const command = new GetFunctionEventInvokeConfigCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "DestinationConfig": { - * "OnFailure": { - * "Destination": "arn:aws:sqs:us-east-2:123456789012:failed-invocations" - * }, - * "OnSuccess": {} - * }, - * "FunctionArn": "arn:aws:lambda:us-east-2:123456789012:function:my-function:BLUE", - * "LastModified": "${timestamp}", - * "MaximumEventAgeInSeconds": 3600, - * "MaximumRetryAttempts": 0 - * } - * *\/ - * // example id: to-get-an-asynchronous-invocation-configuration-1586481338463 - * ``` * + * @public */ export class GetFunctionEventInvokeConfigCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/GetFunctionRecursionConfigCommand.ts b/clients/client-lambda/src/commands/GetFunctionRecursionConfigCommand.ts index b7bf39a6ed219..a023e9ea127ef 100644 --- a/clients/client-lambda/src/commands/GetFunctionRecursionConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionRecursionConfigCommand.ts @@ -68,6 +68,7 @@ export interface GetFunctionRecursionConfigCommandOutput extends GetFunctionRecu * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class GetFunctionRecursionConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/GetFunctionUrlConfigCommand.ts b/clients/client-lambda/src/commands/GetFunctionUrlConfigCommand.ts index ef675bd6d5088..3db0b10e4eda4 100644 --- a/clients/client-lambda/src/commands/GetFunctionUrlConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionUrlConfigCommand.ts @@ -89,6 +89,7 @@ export interface GetFunctionUrlConfigCommandOutput extends GetFunctionUrlConfigR * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class GetFunctionUrlConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/GetLayerVersionByArnCommand.ts b/clients/client-lambda/src/commands/GetLayerVersionByArnCommand.ts index b2aaa54475bec..711b9e8900ea4 100644 --- a/clients/client-lambda/src/commands/GetLayerVersionByArnCommand.ts +++ b/clients/client-lambda/src/commands/GetLayerVersionByArnCommand.ts @@ -87,35 +87,35 @@ export interface GetLayerVersionByArnCommandOutput extends GetLayerVersionRespon * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To get information about a Lambda layer version * ```javascript * // The following example returns information about the layer version with the specified Amazon Resource Name (ARN). * const input = { - * "Arn": "arn:aws:lambda:ca-central-1:123456789012:layer:blank-python-lib:3" + * Arn: "arn:aws:lambda:ca-central-1:123456789012:layer:blank-python-lib:3" * }; * const command = new GetLayerVersionByArnCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CompatibleRuntimes": [ + * CompatibleRuntimes: [ * "python3.8" * ], - * "Content": { - * "CodeSha256": "6x+xmpl/M3BnQUk7gS9sGmfeFsR/npojXoA3fZUv4eU=", - * "CodeSize": 9529009, - * "Location": "https://awslambda-us-east-2-layers.s3.us-east-2.amazonaws.com/snapshots/123456789012/blank-python-lib-e5212378-xmpl-44ee-8398-9d8ec5113949?versionId=WbZnvf..." + * Content: { + * CodeSha256: "6x+xmpl/M3BnQUk7gS9sGmfeFsR/npojXoA3fZUv4eU=", + * CodeSize: 9529009, + * Location: "https://awslambda-us-east-2-layers.s3.us-east-2.amazonaws.com/snapshots/123456789012/blank-python-lib-e5212378-xmpl-44ee-8398-9d8ec5113949?versionId=WbZnvf..." * }, - * "CreatedDate": "2020-03-31T00:35:18.949+0000", - * "Description": "Dependencies for the blank-python sample app.", - * "LayerArn": "arn:aws:lambda:us-east-2:123456789012:layer:blank-python-lib", - * "LayerVersionArn": "arn:aws:lambda:us-east-2:123456789012:layer:blank-python-lib:3", - * "Version": 3 + * CreatedDate: "2020-03-31T00:35:18.949+0000", + * Description: "Dependencies for the blank-python sample app.", + * LayerArn: "arn:aws:lambda:us-east-2:123456789012:layer:blank-python-lib", + * LayerVersionArn: "arn:aws:lambda:us-east-2:123456789012:layer:blank-python-lib:3", + * Version: 3 * } * *\/ - * // example id: to-get-information-about-a-lambda-layer-version-1586481457839 * ``` * + * @public */ export class GetLayerVersionByArnCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/GetLayerVersionCommand.ts b/clients/client-lambda/src/commands/GetLayerVersionCommand.ts index 841418c3f210a..451fb1b5b7077 100644 --- a/clients/client-lambda/src/commands/GetLayerVersionCommand.ts +++ b/clients/client-lambda/src/commands/GetLayerVersionCommand.ts @@ -88,38 +88,38 @@ export interface GetLayerVersionCommandOutput extends GetLayerVersionResponse, _ * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To get information about a Lambda layer version * ```javascript * // The following example returns information for version 1 of a layer named my-layer. * const input = { - * "LayerName": "my-layer", - * "VersionNumber": 1 + * LayerName: "my-layer", + * VersionNumber: 1 * }; * const command = new GetLayerVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CompatibleRuntimes": [ + * CompatibleRuntimes: [ * "python3.6", * "python3.7" * ], - * "Content": { - * "CodeSha256": "tv9jJO+rPbXUUXuRKi7CwHzKtLDkDRJLB3cC3Z/ouXo=", - * "CodeSize": 169, - * "Location": "https://awslambda-us-east-2-layers.s3.us-east-2.amazonaws.com/snapshots/123456789012/my-layer-4aaa2fbb-ff77-4b0a-ad92-5b78a716a96a?versionId=27iWyA73cCAYqyH..." + * Content: { + * CodeSha256: "tv9jJO+rPbXUUXuRKi7CwHzKtLDkDRJLB3cC3Z/ouXo=", + * CodeSize: 169, + * Location: "https://awslambda-us-east-2-layers.s3.us-east-2.amazonaws.com/snapshots/123456789012/my-layer-4aaa2fbb-ff77-4b0a-ad92-5b78a716a96a?versionId=27iWyA73cCAYqyH..." * }, - * "CreatedDate": "2018-11-14T23:03:52.894+0000", - * "Description": "My Python layer", - * "LayerArn": "arn:aws:lambda:us-east-2:123456789012:layer:my-layer", - * "LayerVersionArn": "arn:aws:lambda:us-east-2:123456789012:layer:my-layer:1", - * "LicenseInfo": "MIT", - * "Version": 1 + * CreatedDate: "2018-11-14T23:03:52.894+0000", + * Description: "My Python layer", + * LayerArn: "arn:aws:lambda:us-east-2:123456789012:layer:my-layer", + * LayerVersionArn: "arn:aws:lambda:us-east-2:123456789012:layer:my-layer:1", + * LicenseInfo: "MIT", + * Version: 1 * } * *\/ - * // example id: to-get-information-about-a-lambda-layer-version-1586481457839 * ``` * + * @public */ export class GetLayerVersionCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/GetLayerVersionPolicyCommand.ts b/clients/client-lambda/src/commands/GetLayerVersionPolicyCommand.ts index ee22b849e5eff..3041409cc59a4 100644 --- a/clients/client-lambda/src/commands/GetLayerVersionPolicyCommand.ts +++ b/clients/client-lambda/src/commands/GetLayerVersionPolicyCommand.ts @@ -70,6 +70,7 @@ export interface GetLayerVersionPolicyCommandOutput extends GetLayerVersionPolic * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class GetLayerVersionPolicyCommand extends $Command diff --git a/clients/client-lambda/src/commands/GetPolicyCommand.ts b/clients/client-lambda/src/commands/GetPolicyCommand.ts index 9a1e2cdb55639..47b8577d59e65 100644 --- a/clients/client-lambda/src/commands/GetPolicyCommand.ts +++ b/clients/client-lambda/src/commands/GetPolicyCommand.ts @@ -69,25 +69,25 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To retrieve a Lambda function policy * ```javascript * // The following example returns the resource-based policy for version 1 of a Lambda function named my-function. * const input = { - * "FunctionName": "my-function", - * "Qualifier": "1" + * FunctionName: "my-function", + * Qualifier: "1" * }; * const command = new GetPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Policy": "{\"Version\":\"2012-10-17\",\"Id\":\"default\",\"Statement\":[{\"Sid\":\"xaccount\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::123456789012:root\"},\"Action\":\"lambda:InvokeFunction\",\"Resource\":\"arn:aws:lambda:us-east-2:123456789012:function:my-function:1\"}]}", - * "RevisionId": "4843f2f6-7c59-4fda-b484-afd0bc0e22b8" + * Policy: `{"Version":"2012-10-17","Id":"default","Statement":[{"Sid":"xaccount","Effect":"Allow","Principal":{"AWS":"arn:aws:iam::123456789012:root"},"Action":"lambda:InvokeFunction","Resource":"arn:aws:lambda:us-east-2:123456789012:function:my-function:1"}]}`, + * RevisionId: "4843f2f6-7c59-4fda-b484-afd0bc0e22b8" * } * *\/ - * // example id: to-retrieve-a-lambda-function-policy-1481649319053 * ``` * + * @public */ export class GetPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/GetProvisionedConcurrencyConfigCommand.ts b/clients/client-lambda/src/commands/GetProvisionedConcurrencyConfigCommand.ts index 9a6dea44d948b..90bdaee4e11bf 100644 --- a/clients/client-lambda/src/commands/GetProvisionedConcurrencyConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetProvisionedConcurrencyConfigCommand.ts @@ -81,49 +81,48 @@ export interface GetProvisionedConcurrencyConfigCommandOutput * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To get a provisioned concurrency configuration * ```javascript * // The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified function. * const input = { - * "FunctionName": "my-function", - * "Qualifier": "BLUE" + * FunctionName: "my-function", + * Qualifier: "BLUE" * }; * const command = new GetProvisionedConcurrencyConfigCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AllocatedProvisionedConcurrentExecutions": 100, - * "AvailableProvisionedConcurrentExecutions": 100, - * "LastModified": "2019-12-31T20:28:49+0000", - * "RequestedProvisionedConcurrentExecutions": 100, - * "Status": "READY" + * AllocatedProvisionedConcurrentExecutions: 100, + * AvailableProvisionedConcurrentExecutions: 100, + * LastModified: "2019-12-31T20:28:49+0000", + * RequestedProvisionedConcurrentExecutions: 100, + * Status: "READY" * } * *\/ - * // example id: to-get-a-provisioned-concurrency-configuration-1586490192690 * ``` * * @example To view a provisioned concurrency configuration * ```javascript * // The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified function. * const input = { - * "FunctionName": "my-function", - * "Qualifier": "BLUE" + * FunctionName: "my-function", + * Qualifier: "BLUE" * }; * const command = new GetProvisionedConcurrencyConfigCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AllocatedProvisionedConcurrentExecutions": 100, - * "AvailableProvisionedConcurrentExecutions": 100, - * "LastModified": "2019-12-31T20:28:49+0000", - * "RequestedProvisionedConcurrentExecutions": 100, - * "Status": "READY" + * AllocatedProvisionedConcurrentExecutions: 100, + * AvailableProvisionedConcurrentExecutions: 100, + * LastModified: "2019-12-31T20:28:49+0000", + * RequestedProvisionedConcurrentExecutions: 100, + * Status: "READY" * } * *\/ - * // example id: to-view-a-provisioned-concurrency-configuration-1586490192690 * ``` * + * @public */ export class GetProvisionedConcurrencyConfigCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/GetRuntimeManagementConfigCommand.ts b/clients/client-lambda/src/commands/GetRuntimeManagementConfigCommand.ts index 3b152fc32711e..444a3daf84b4f 100644 --- a/clients/client-lambda/src/commands/GetRuntimeManagementConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetRuntimeManagementConfigCommand.ts @@ -72,6 +72,7 @@ export interface GetRuntimeManagementConfigCommandOutput extends GetRuntimeManag * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class GetRuntimeManagementConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/InvokeAsyncCommand.ts b/clients/client-lambda/src/commands/InvokeAsyncCommand.ts index 82d42bea08ce5..adb223cd4161c 100644 --- a/clients/client-lambda/src/commands/InvokeAsyncCommand.ts +++ b/clients/client-lambda/src/commands/InvokeAsyncCommand.ts @@ -84,24 +84,24 @@ export interface InvokeAsyncCommandOutput extends InvokeAsyncResponse, __Metadat * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To invoke a Lambda function asynchronously * ```javascript * // The following example invokes a Lambda function asynchronously * const input = { - * "FunctionName": "my-function", - * "InvokeArgs": "{}" + * FunctionName: "my-function", + * InvokeArgs: "{}" * }; * const command = new InvokeAsyncCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Status": 202 + * Status: 202 * } * *\/ - * // example id: to-invoke-a-lambda-function-asynchronously-1481649694923 * ``` * + * @public */ export class InvokeAsyncCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/InvokeCommand.ts b/clients/client-lambda/src/commands/InvokeCommand.ts index 32a3bb5646ca7..300b3c3042310 100644 --- a/clients/client-lambda/src/commands/InvokeCommand.ts +++ b/clients/client-lambda/src/commands/InvokeCommand.ts @@ -215,46 +215,45 @@ export interface InvokeCommandOutput extends InvokeCommandOutputType, __Metadata * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To invoke a Lambda function * ```javascript * // The following example invokes version 1 of a function named my-function with an empty event payload. * const input = { - * "FunctionName": "my-function", - * "Payload": "{}", - * "Qualifier": "1" + * FunctionName: "my-function", + * Payload: "{}", + * Qualifier: "1" * }; * const command = new InvokeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Payload": "200 SUCCESS", - * "StatusCode": 200 + * Payload: "200 SUCCESS", + * StatusCode: 200 * } * *\/ - * // example id: to-invoke-a-lambda-function-1481659683915 * ``` * * @example To invoke a Lambda function asynchronously * ```javascript * // The following example invokes version 1 of a function named my-function asynchronously. * const input = { - * "FunctionName": "my-function", - * "InvocationType": "Event", - * "Payload": "{}", - * "Qualifier": "1" + * FunctionName: "my-function", + * InvocationType: "Event", + * Payload: "{}", + * Qualifier: "1" * }; * const command = new InvokeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Payload": "", - * "StatusCode": 202 + * Payload: "", + * StatusCode: 202 * } * *\/ - * // example id: to-invoke-a-lambda-function-async-1481659683915 * ``` * + * @public */ export class InvokeCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/InvokeWithResponseStreamCommand.ts b/clients/client-lambda/src/commands/InvokeWithResponseStreamCommand.ts index 9652c90d96445..ba9f14f04bc19 100644 --- a/clients/client-lambda/src/commands/InvokeWithResponseStreamCommand.ts +++ b/clients/client-lambda/src/commands/InvokeWithResponseStreamCommand.ts @@ -191,6 +191,7 @@ export interface InvokeWithResponseStreamCommandOutput extends InvokeWithRespons * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class InvokeWithResponseStreamCommand extends $Command diff --git a/clients/client-lambda/src/commands/ListAliasesCommand.ts b/clients/client-lambda/src/commands/ListAliasesCommand.ts index b800a86c7c27c..98b39dc29497f 100644 --- a/clients/client-lambda/src/commands/ListAliasesCommand.ts +++ b/clients/client-lambda/src/commands/ListAliasesCommand.ts @@ -85,43 +85,43 @@ export interface ListAliasesCommandOutput extends ListAliasesResponse, __Metadat * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To list a function's aliases * ```javascript * // The following example returns a list of aliases for a function named my-function. * const input = { - * "FunctionName": "my-function" + * FunctionName: "my-function" * }; * const command = new ListAliasesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Aliases": [ + * Aliases: [ * { - * "AliasArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function:BETA", - * "Description": "Production environment BLUE.", - * "FunctionVersion": "2", - * "Name": "BLUE", - * "RevisionId": "a410117f-xmpl-494e-8035-7e204bb7933b", - * "RoutingConfig": { - * "AdditionalVersionWeights": { - * "1": 0.7 + * AliasArn: "arn:aws:lambda:us-west-2:123456789012:function:my-function:BETA", + * Description: "Production environment BLUE.", + * FunctionVersion: "2", + * Name: "BLUE", + * RevisionId: "a410117f-xmpl-494e-8035-7e204bb7933b", + * RoutingConfig: { + * AdditionalVersionWeights: { + * 1: 0.7 * } * } * }, * { - * "AliasArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function:LIVE", - * "Description": "Production environment GREEN.", - * "FunctionVersion": "1", - * "Name": "GREEN", - * "RevisionId": "21d40116-xmpl-40ba-9360-3ea284da1bb5" + * AliasArn: "arn:aws:lambda:us-west-2:123456789012:function:my-function:LIVE", + * Description: "Production environment GREEN.", + * FunctionVersion: "1", + * Name: "GREEN", + * RevisionId: "21d40116-xmpl-40ba-9360-3ea284da1bb5" * } * ] * } * *\/ - * // example id: to-list-a-functions-aliases-1481650199732 * ``` * + * @public */ export class ListAliasesCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/ListCodeSigningConfigsCommand.ts b/clients/client-lambda/src/commands/ListCodeSigningConfigsCommand.ts index da07304fccc01..83c244ba91be0 100644 --- a/clients/client-lambda/src/commands/ListCodeSigningConfigsCommand.ts +++ b/clients/client-lambda/src/commands/ListCodeSigningConfigsCommand.ts @@ -80,6 +80,7 @@ export interface ListCodeSigningConfigsCommandOutput extends ListCodeSigningConf * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class ListCodeSigningConfigsCommand extends $Command diff --git a/clients/client-lambda/src/commands/ListEventSourceMappingsCommand.ts b/clients/client-lambda/src/commands/ListEventSourceMappingsCommand.ts index 2d04760676f6f..9fa81ff6f56a8 100644 --- a/clients/client-lambda/src/commands/ListEventSourceMappingsCommand.ts +++ b/clients/client-lambda/src/commands/ListEventSourceMappingsCommand.ts @@ -157,33 +157,33 @@ export interface ListEventSourceMappingsCommandOutput extends ListEventSourceMap * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To list the event source mappings for a function * ```javascript * // The following example returns a list of the event source mappings for a function named my-function. * const input = { - * "FunctionName": "my-function" + * FunctionName: "my-function" * }; * const command = new ListEventSourceMappingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EventSourceMappings": [ + * EventSourceMappings: [ * { - * "BatchSize": 5, - * "EventSourceArn": "arn:aws:sqs:us-west-2:123456789012:mySQSqueue", - * "FunctionArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function", - * "LastModified": 1569284520.333, - * "State": "Enabled", - * "StateTransitionReason": "USER_INITIATED", - * "UUID": "a1b2c3d4-5678-90ab-cdef-11111EXAMPLE" + * BatchSize: 5, + * EventSourceArn: "arn:aws:sqs:us-west-2:123456789012:mySQSqueue", + * FunctionArn: "arn:aws:lambda:us-west-2:123456789012:function:my-function", + * LastModified: 1.569284520333E9, + * State: "Enabled", + * StateTransitionReason: "USER_INITIATED", + * UUID: "a1b2c3d4-5678-90ab-cdef-11111EXAMPLE" * } * ] * } * *\/ - * // example id: to-list-the-event-source-mappings-for-a-function-1586490285906 * ``` * + * @public */ export class ListEventSourceMappingsCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/ListFunctionEventInvokeConfigsCommand.ts b/clients/client-lambda/src/commands/ListFunctionEventInvokeConfigsCommand.ts index af066dd461d3f..1759661a118a7 100644 --- a/clients/client-lambda/src/commands/ListFunctionEventInvokeConfigsCommand.ts +++ b/clients/client-lambda/src/commands/ListFunctionEventInvokeConfigsCommand.ts @@ -91,36 +91,36 @@ export interface ListFunctionEventInvokeConfigsCommandOutput * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To view a list of asynchronous invocation configurations * ```javascript * // The following example returns a list of asynchronous invocation configurations for a function named my-function. * const input = { - * "FunctionName": "my-function" + * FunctionName: "my-function" * }; * const command = new ListFunctionEventInvokeConfigsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FunctionEventInvokeConfigs": [ + * FunctionEventInvokeConfigs: [ * { - * "FunctionArn": "arn:aws:lambda:us-east-2:123456789012:function:my-function:GREEN", - * "LastModified": 1577824406.719, - * "MaximumEventAgeInSeconds": 1800, - * "MaximumRetryAttempts": 2 + * FunctionArn: "arn:aws:lambda:us-east-2:123456789012:function:my-function:GREEN", + * LastModified: 1.577824406719E9, + * MaximumEventAgeInSeconds: 1800, + * MaximumRetryAttempts: 2 * }, * { - * "FunctionArn": "arn:aws:lambda:us-east-2:123456789012:function:my-function:BLUE", - * "LastModified": 1577824396.653, - * "MaximumEventAgeInSeconds": 3600, - * "MaximumRetryAttempts": 0 + * FunctionArn: "arn:aws:lambda:us-east-2:123456789012:function:my-function:BLUE", + * LastModified: 1.577824396653E9, + * MaximumEventAgeInSeconds: 3600, + * MaximumRetryAttempts: 0 * } * ] * } * *\/ - * // example id: to-view-a-list-of-asynchronous-invocation-configurations-1586490355611 * ``` * + * @public */ export class ListFunctionEventInvokeConfigsCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/ListFunctionUrlConfigsCommand.ts b/clients/client-lambda/src/commands/ListFunctionUrlConfigsCommand.ts index 9a82f2a840725..1f36d66a73c2f 100644 --- a/clients/client-lambda/src/commands/ListFunctionUrlConfigsCommand.ts +++ b/clients/client-lambda/src/commands/ListFunctionUrlConfigsCommand.ts @@ -95,6 +95,7 @@ export interface ListFunctionUrlConfigsCommandOutput extends ListFunctionUrlConf * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class ListFunctionUrlConfigsCommand extends $Command diff --git a/clients/client-lambda/src/commands/ListFunctionsByCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/ListFunctionsByCodeSigningConfigCommand.ts index 1f1cae8e91e9d..6c411a093f581 100644 --- a/clients/client-lambda/src/commands/ListFunctionsByCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/ListFunctionsByCodeSigningConfigCommand.ts @@ -75,6 +75,7 @@ export interface ListFunctionsByCodeSigningConfigCommandOutput * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class ListFunctionsByCodeSigningConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/ListFunctionsCommand.ts b/clients/client-lambda/src/commands/ListFunctionsCommand.ts index a88f36bb1caa9..f814d65164d47 100644 --- a/clients/client-lambda/src/commands/ListFunctionsCommand.ts +++ b/clients/client-lambda/src/commands/ListFunctionsCommand.ts @@ -184,64 +184,64 @@ export interface ListFunctionsCommandOutput extends ListFunctionsResponse, __Met * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To get a list of Lambda functions * ```javascript * // This operation returns a list of Lambda functions. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListFunctionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Functions": [ + * Functions: [ * { - * "CodeSha256": "dBG9m8SGdmlEjw/JYXlhhvCrAv5TxvXsbL/RMr0fT/I=", - * "CodeSize": 294, - * "Description": "", - * "FunctionArn": "arn:aws:lambda:us-west-2:123456789012:function:helloworld", - * "FunctionName": "helloworld", - * "Handler": "helloworld.handler", - * "LastModified": "2019-09-23T18:32:33.857+0000", - * "MemorySize": 128, - * "RevisionId": "1718e831-badf-4253-9518-d0644210af7b", - * "Role": "arn:aws:iam::123456789012:role/service-role/MyTestFunction-role-zgur6bf4", - * "Runtime": "nodejs10.x", - * "Timeout": 3, - * "TracingConfig": { - * "Mode": "PassThrough" + * CodeSha256: "dBG9m8SGdmlEjw/JYXlhhvCrAv5TxvXsbL/RMr0fT/I=", + * CodeSize: 294, + * Description: "", + * FunctionArn: "arn:aws:lambda:us-west-2:123456789012:function:helloworld", + * FunctionName: "helloworld", + * Handler: "helloworld.handler", + * LastModified: "2019-09-23T18:32:33.857+0000", + * MemorySize: 128, + * RevisionId: "1718e831-badf-4253-9518-d0644210af7b", + * Role: "arn:aws:iam::123456789012:role/service-role/MyTestFunction-role-zgur6bf4", + * Runtime: "nodejs10.x", + * Timeout: 3, + * TracingConfig: { + * Mode: "PassThrough" * }, - * "Version": "$LATEST" + * Version: "$LATEST" * }, * { - * "CodeSha256": "sU0cJ2/hOZevwV/lTxCuQqK3gDZP3i8gUoqUUVRmY6E=", - * "CodeSize": 266, - * "Description": "", - * "FunctionArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function", - * "FunctionName": "my-function", - * "Handler": "index.handler", - * "LastModified": "2019-10-01T16:47:28.490+0000", - * "MemorySize": 256, - * "RevisionId": "93017fc9-59cb-41dc-901b-4845ce4bf668", - * "Role": "arn:aws:iam::123456789012:role/service-role/helloWorldPython-role-uy3l9qyq", - * "Runtime": "nodejs10.x", - * "Timeout": 3, - * "TracingConfig": { - * "Mode": "PassThrough" + * CodeSha256: "sU0cJ2/hOZevwV/lTxCuQqK3gDZP3i8gUoqUUVRmY6E=", + * CodeSize: 266, + * Description: "", + * FunctionArn: "arn:aws:lambda:us-west-2:123456789012:function:my-function", + * FunctionName: "my-function", + * Handler: "index.handler", + * LastModified: "2019-10-01T16:47:28.490+0000", + * MemorySize: 256, + * RevisionId: "93017fc9-59cb-41dc-901b-4845ce4bf668", + * Role: "arn:aws:iam::123456789012:role/service-role/helloWorldPython-role-uy3l9qyq", + * Runtime: "nodejs10.x", + * Timeout: 3, + * TracingConfig: { + * Mode: "PassThrough" * }, - * "Version": "$LATEST", - * "VpcConfig": { - * "SecurityGroupIds": [], - * "SubnetIds": [], - * "VpcId": "" + * Version: "$LATEST", + * VpcConfig: { + * SecurityGroupIds: [], + * SubnetIds: [], + * VpcId: "" * } * } * ], - * "NextMarker": "" + * NextMarker: "" * } * *\/ - * // example id: to-get-a-list-of-lambda-functions-1481650507425 * ``` * + * @public */ export class ListFunctionsCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/ListLayerVersionsCommand.ts b/clients/client-lambda/src/commands/ListLayerVersionsCommand.ts index af811752b6c1b..4a3e1d3a6de62 100644 --- a/clients/client-lambda/src/commands/ListLayerVersionsCommand.ts +++ b/clients/client-lambda/src/commands/ListLayerVersionsCommand.ts @@ -89,42 +89,42 @@ export interface ListLayerVersionsCommandOutput extends ListLayerVersionsRespons * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To list versions of a layer * ```javascript * // The following example displays information about the versions for the layer named blank-java-lib * const input = { - * "LayerName": "blank-java-lib" + * LayerName: "blank-java-lib" * }; * const command = new ListLayerVersionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LayerVersions": [ + * LayerVersions: [ * { - * "CompatibleRuntimes": [ + * CompatibleRuntimes: [ * "java8" * ], - * "CreatedDate": "2020-03-18T23:38:42.284+0000", - * "Description": "Dependencies for the blank-java sample app.", - * "LayerVersionArn": "arn:aws:lambda:us-east-2:123456789012:layer:blank-java-lib:7", - * "Version": 7 + * CreatedDate: "2020-03-18T23:38:42.284+0000", + * Description: "Dependencies for the blank-java sample app.", + * LayerVersionArn: "arn:aws:lambda:us-east-2:123456789012:layer:blank-java-lib:7", + * Version: 7 * }, * { - * "CompatibleRuntimes": [ + * CompatibleRuntimes: [ * "java8" * ], - * "CreatedDate": "2020-03-17T07:24:21.960+0000", - * "Description": "Dependencies for the blank-java sample app.", - * "LayerVersionArn": "arn:aws:lambda:us-east-2:123456789012:layer:blank-java-lib:6", - * "Version": 6 + * CreatedDate: "2020-03-17T07:24:21.960+0000", + * Description: "Dependencies for the blank-java sample app.", + * LayerVersionArn: "arn:aws:lambda:us-east-2:123456789012:layer:blank-java-lib:6", + * Version: 6 * } * ] * } * *\/ - * // example id: to-list-versions-of-a-layer-1586490857297 * ``` * + * @public */ export class ListLayerVersionsCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/ListLayersCommand.ts b/clients/client-lambda/src/commands/ListLayersCommand.ts index 2deb772ac2d3e..6d4f44453eceb 100644 --- a/clients/client-lambda/src/commands/ListLayersCommand.ts +++ b/clients/client-lambda/src/commands/ListLayersCommand.ts @@ -91,38 +91,38 @@ export interface ListLayersCommandOutput extends ListLayersResponse, __MetadataB * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To list the layers that are compatible with your function's runtime * ```javascript * // The following example returns information about layers that are compatible with the Python 3.7 runtime. * const input = { - * "CompatibleRuntime": "python3.7" + * CompatibleRuntime: "python3.7" * }; * const command = new ListLayersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Layers": [ + * Layers: [ * { - * "LatestMatchingVersion": { - * "CompatibleRuntimes": [ + * LatestMatchingVersion: { + * CompatibleRuntimes: [ * "python3.6", * "python3.7" * ], - * "CreatedDate": "2018-11-15T00:37:46.592+0000", - * "Description": "My layer", - * "LayerVersionArn": "arn:aws:lambda:us-east-2:123456789012:layer:my-layer:2", - * "Version": 2 + * CreatedDate: "2018-11-15T00:37:46.592+0000", + * Description: "My layer", + * LayerVersionArn: "arn:aws:lambda:us-east-2:123456789012:layer:my-layer:2", + * Version: 2 * }, - * "LayerArn": "arn:aws:lambda:us-east-2:123456789012:layer:my-layer", - * "LayerName": "my-layer" + * LayerArn: "arn:aws:lambda:us-east-2:123456789012:layer:my-layer", + * LayerName: "my-layer" * } * ] * } * *\/ - * // example id: to-list-the-layers-that-are-compatible-with-your-functions-runtime-1586490857297 * ``` * + * @public */ export class ListLayersCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/ListProvisionedConcurrencyConfigsCommand.ts b/clients/client-lambda/src/commands/ListProvisionedConcurrencyConfigsCommand.ts index d25cd0116ff6f..93a319dcc9ae9 100644 --- a/clients/client-lambda/src/commands/ListProvisionedConcurrencyConfigsCommand.ts +++ b/clients/client-lambda/src/commands/ListProvisionedConcurrencyConfigsCommand.ts @@ -88,40 +88,40 @@ export interface ListProvisionedConcurrencyConfigsCommandOutput * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To get a list of provisioned concurrency configurations * ```javascript * // The following example returns a list of provisioned concurrency configurations for a function named my-function. * const input = { - * "FunctionName": "my-function" + * FunctionName: "my-function" * }; * const command = new ListProvisionedConcurrencyConfigsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ProvisionedConcurrencyConfigs": [ + * ProvisionedConcurrencyConfigs: [ * { - * "AllocatedProvisionedConcurrentExecutions": 100, - * "AvailableProvisionedConcurrentExecutions": 100, - * "FunctionArn": "arn:aws:lambda:us-east-2:123456789012:function:my-function:GREEN", - * "LastModified": "2019-12-31T20:29:00+0000", - * "RequestedProvisionedConcurrentExecutions": 100, - * "Status": "READY" + * AllocatedProvisionedConcurrentExecutions: 100, + * AvailableProvisionedConcurrentExecutions: 100, + * FunctionArn: "arn:aws:lambda:us-east-2:123456789012:function:my-function:GREEN", + * LastModified: "2019-12-31T20:29:00+0000", + * RequestedProvisionedConcurrentExecutions: 100, + * Status: "READY" * }, * { - * "AllocatedProvisionedConcurrentExecutions": 100, - * "AvailableProvisionedConcurrentExecutions": 100, - * "FunctionArn": "arn:aws:lambda:us-east-2:123456789012:function:my-function:BLUE", - * "LastModified": "2019-12-31T20:28:49+0000", - * "RequestedProvisionedConcurrentExecutions": 100, - * "Status": "READY" + * AllocatedProvisionedConcurrentExecutions: 100, + * AvailableProvisionedConcurrentExecutions: 100, + * FunctionArn: "arn:aws:lambda:us-east-2:123456789012:function:my-function:BLUE", + * LastModified: "2019-12-31T20:28:49+0000", + * RequestedProvisionedConcurrentExecutions: 100, + * Status: "READY" * } * ] * } * *\/ - * // example id: to-get-a-list-of-provisioned-concurrency-configurations-1586491032592 * ``` * + * @public */ export class ListProvisionedConcurrencyConfigsCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/ListTagsCommand.ts b/clients/client-lambda/src/commands/ListTagsCommand.ts index 39b05e7d10ab3..e03bcc66619ab 100644 --- a/clients/client-lambda/src/commands/ListTagsCommand.ts +++ b/clients/client-lambda/src/commands/ListTagsCommand.ts @@ -70,26 +70,26 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To retrieve the list of tags for a Lambda function * ```javascript * // The following example displays the tags attached to the my-function Lambda function. * const input = { - * "Resource": "arn:aws:lambda:us-west-2:123456789012:function:my-function" + * Resource: "arn:aws:lambda:us-west-2:123456789012:function:my-function" * }; * const command = new ListTagsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Tags": { - * "Category": "Web Tools", - * "Department": "Sales" + * Tags: { + * Category: "Web Tools", + * Department: "Sales" * } * } * *\/ - * // example id: to-retrieve-the-list-of-tags-for-a-lambda-function-1586491111498 * ``` * + * @public */ export class ListTagsCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/ListVersionsByFunctionCommand.ts b/clients/client-lambda/src/commands/ListVersionsByFunctionCommand.ts index e3467b5995fca..ddf311bd3e552 100644 --- a/clients/client-lambda/src/commands/ListVersionsByFunctionCommand.ts +++ b/clients/client-lambda/src/commands/ListVersionsByFunctionCommand.ts @@ -179,74 +179,74 @@ export interface ListVersionsByFunctionCommandOutput extends ListVersionsByFunct * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To list versions of a function * ```javascript * // The following example returns a list of versions of a function named my-function * const input = { - * "FunctionName": "my-function" + * FunctionName: "my-function" * }; * const command = new ListVersionsByFunctionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Versions": [ + * Versions: [ * { - * "CodeSha256": "YFgDgEKG3ugvF1+pX64gV6tu9qNuIYNUdgJm8nCxsm4=", - * "CodeSize": 5797206, - * "Description": "Process image objects from Amazon S3.", - * "Environment": { - * "Variables": { - * "BUCKET": "my-bucket-1xpuxmplzrlbh", - * "PREFIX": "inbound" + * CodeSha256: "YFgDgEKG3ugvF1+pX64gV6tu9qNuIYNUdgJm8nCxsm4=", + * CodeSize: 5797206, + * Description: "Process image objects from Amazon S3.", + * Environment: { + * Variables: { + * BUCKET: "my-bucket-1xpuxmplzrlbh", + * PREFIX: "inbound" * } * }, - * "FunctionArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function", - * "FunctionName": "my-function", - * "Handler": "index.handler", - * "KMSKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b0844d6c-xmpl-4463-97a4-d49f50839966", - * "LastModified": "2020-04-10T19:06:32.563+0000", - * "MemorySize": 256, - * "RevisionId": "850ca006-2d98-4ff4-86db-8766e9d32fe9", - * "Role": "arn:aws:iam::123456789012:role/lambda-role", - * "Runtime": "nodejs12.x", - * "Timeout": 15, - * "TracingConfig": { - * "Mode": "Active" + * FunctionArn: "arn:aws:lambda:us-west-2:123456789012:function:my-function", + * FunctionName: "my-function", + * Handler: "index.handler", + * KMSKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b0844d6c-xmpl-4463-97a4-d49f50839966", + * LastModified: "2020-04-10T19:06:32.563+0000", + * MemorySize: 256, + * RevisionId: "850ca006-2d98-4ff4-86db-8766e9d32fe9", + * Role: "arn:aws:iam::123456789012:role/lambda-role", + * Runtime: "nodejs12.x", + * Timeout: 15, + * TracingConfig: { + * Mode: "Active" * }, - * "Version": "$LATEST" + * Version: "$LATEST" * }, * { - * "CodeSha256": "YFgDgEKG3ugvF1+pX64gV6tu9qNuIYNUdgJm8nCxsm4=", - * "CodeSize": 5797206, - * "Description": "Process image objects from Amazon S3.", - * "Environment": { - * "Variables": { - * "BUCKET": "my-bucket-1xpuxmplzrlbh", - * "PREFIX": "inbound" + * CodeSha256: "YFgDgEKG3ugvF1+pX64gV6tu9qNuIYNUdgJm8nCxsm4=", + * CodeSize: 5797206, + * Description: "Process image objects from Amazon S3.", + * Environment: { + * Variables: { + * BUCKET: "my-bucket-1xpuxmplzrlbh", + * PREFIX: "inbound" * } * }, - * "FunctionArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function", - * "FunctionName": "my-function", - * "Handler": "index.handler", - * "KMSKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b0844d6c-xmpl-4463-97a4-d49f50839966", - * "LastModified": "2020-04-10T19:06:32.563+0000", - * "MemorySize": 256, - * "RevisionId": "b75dcd81-xmpl-48a8-a75a-93ba8b5b9727", - * "Role": "arn:aws:iam::123456789012:role/lambda-role", - * "Runtime": "nodejs12.x", - * "Timeout": 5, - * "TracingConfig": { - * "Mode": "Active" + * FunctionArn: "arn:aws:lambda:us-west-2:123456789012:function:my-function", + * FunctionName: "my-function", + * Handler: "index.handler", + * KMSKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b0844d6c-xmpl-4463-97a4-d49f50839966", + * LastModified: "2020-04-10T19:06:32.563+0000", + * MemorySize: 256, + * RevisionId: "b75dcd81-xmpl-48a8-a75a-93ba8b5b9727", + * Role: "arn:aws:iam::123456789012:role/lambda-role", + * Runtime: "nodejs12.x", + * Timeout: 5, + * TracingConfig: { + * Mode: "Active" * }, - * "Version": "1" + * Version: "1" * } * ] * } * *\/ - * // example id: to-list-versions-1481650603750 * ``` * + * @public */ export class ListVersionsByFunctionCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/PublishLayerVersionCommand.ts b/clients/client-lambda/src/commands/PublishLayerVersionCommand.ts index 0bca0a064f485..0f2664c07eca4 100644 --- a/clients/client-lambda/src/commands/PublishLayerVersionCommand.ts +++ b/clients/client-lambda/src/commands/PublishLayerVersionCommand.ts @@ -109,47 +109,47 @@ export interface PublishLayerVersionCommandOutput extends PublishLayerVersionRes * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To create a Lambda layer version * ```javascript * // The following example creates a new Python library layer version. The command retrieves the layer content a file named layer.zip in the specified S3 bucket. * const input = { - * "CompatibleRuntimes": [ + * CompatibleRuntimes: [ * "python3.6", * "python3.7" * ], - * "Content": { - * "S3Bucket": "lambda-layers-us-west-2-123456789012", - * "S3Key": "layer.zip" + * Content: { + * S3Bucket: "lambda-layers-us-west-2-123456789012", + * S3Key: "layer.zip" * }, - * "Description": "My Python layer", - * "LayerName": "my-layer", - * "LicenseInfo": "MIT" + * Description: "My Python layer", + * LayerName: "my-layer", + * LicenseInfo: "MIT" * }; * const command = new PublishLayerVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CompatibleRuntimes": [ + * CompatibleRuntimes: [ * "python3.6", * "python3.7" * ], - * "Content": { - * "CodeSha256": "tv9jJO+rPbXUUXuRKi7CwHzKtLDkDRJLB3cC3Z/ouXo=", - * "CodeSize": 169, - * "Location": "https://awslambda-us-west-2-layers.s3.us-west-2.amazonaws.com/snapshots/123456789012/my-layer-4aaa2fbb-ff77-4b0a-ad92-5b78a716a96a?versionId=27iWyA73cCAYqyH..." + * Content: { + * CodeSha256: "tv9jJO+rPbXUUXuRKi7CwHzKtLDkDRJLB3cC3Z/ouXo=", + * CodeSize: 169, + * Location: "https://awslambda-us-west-2-layers.s3.us-west-2.amazonaws.com/snapshots/123456789012/my-layer-4aaa2fbb-ff77-4b0a-ad92-5b78a716a96a?versionId=27iWyA73cCAYqyH..." * }, - * "CreatedDate": "2018-11-14T23:03:52.894+0000", - * "Description": "My Python layer", - * "LayerArn": "arn:aws:lambda:us-west-2:123456789012:layer:my-layer", - * "LayerVersionArn": "arn:aws:lambda:us-west-2:123456789012:layer:my-layer:1", - * "LicenseInfo": "MIT", - * "Version": 1 + * CreatedDate: "2018-11-14T23:03:52.894+0000", + * Description: "My Python layer", + * LayerArn: "arn:aws:lambda:us-west-2:123456789012:layer:my-layer", + * LayerVersionArn: "arn:aws:lambda:us-west-2:123456789012:layer:my-layer:1", + * LicenseInfo: "MIT", + * Version: 1 * } * *\/ - * // example id: to-create-a-lambda-layer-version-1586491213595 * ``` * + * @public */ export class PublishLayerVersionCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/PublishVersionCommand.ts b/clients/client-lambda/src/commands/PublishVersionCommand.ts index e80e6663be475..fe6ce87d9932e 100644 --- a/clients/client-lambda/src/commands/PublishVersionCommand.ts +++ b/clients/client-lambda/src/commands/PublishVersionCommand.ts @@ -199,49 +199,49 @@ export interface PublishVersionCommandOutput extends FunctionConfiguration, __Me * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To publish a version of a Lambda function * ```javascript * // This operation publishes a version of a Lambda function * const input = { - * "CodeSha256": "", - * "Description": "", - * "FunctionName": "myFunction" + * CodeSha256: "", + * Description: "", + * FunctionName: "myFunction" * }; * const command = new PublishVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CodeSha256": "YFgDgEKG3ugvF1+pX64gV6tu9qNuIYNUdgJm8nCxsm4=", - * "CodeSize": 5797206, - * "Description": "Process image objects from Amazon S3.", - * "Environment": { - * "Variables": { - * "BUCKET": "my-bucket-1xpuxmplzrlbh", - * "PREFIX": "inbound" + * CodeSha256: "YFgDgEKG3ugvF1+pX64gV6tu9qNuIYNUdgJm8nCxsm4=", + * CodeSize: 5797206, + * Description: "Process image objects from Amazon S3.", + * Environment: { + * Variables: { + * BUCKET: "my-bucket-1xpuxmplzrlbh", + * PREFIX: "inbound" * } * }, - * "FunctionArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function", - * "FunctionName": "my-function", - * "Handler": "index.handler", - * "KMSKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b0844d6c-xmpl-4463-97a4-d49f50839966", - * "LastModified": "2020-04-10T19:06:32.563+0000", - * "LastUpdateStatus": "Successful", - * "MemorySize": 256, - * "RevisionId": "b75dcd81-xmpl-48a8-a75a-93ba8b5b9727", - * "Role": "arn:aws:iam::123456789012:role/lambda-role", - * "Runtime": "nodejs12.x", - * "State": "Active", - * "Timeout": 5, - * "TracingConfig": { - * "Mode": "Active" + * FunctionArn: "arn:aws:lambda:us-west-2:123456789012:function:my-function", + * FunctionName: "my-function", + * Handler: "index.handler", + * KMSKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b0844d6c-xmpl-4463-97a4-d49f50839966", + * LastModified: "2020-04-10T19:06:32.563+0000", + * LastUpdateStatus: "Successful", + * MemorySize: 256, + * RevisionId: "b75dcd81-xmpl-48a8-a75a-93ba8b5b9727", + * Role: "arn:aws:iam::123456789012:role/lambda-role", + * Runtime: "nodejs12.x", + * State: "Active", + * Timeout: 5, + * TracingConfig: { + * Mode: "Active" * }, - * "Version": "1" + * Version: "1" * } * *\/ - * // example id: to-publish-a-version-of-a-lambda-function-1481650704986 * ``` * + * @public */ export class PublishVersionCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/PutFunctionCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/PutFunctionCodeSigningConfigCommand.ts index be1374aed4ae0..1abdffddffd25 100644 --- a/clients/client-lambda/src/commands/PutFunctionCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/PutFunctionCodeSigningConfigCommand.ts @@ -81,6 +81,7 @@ export interface PutFunctionCodeSigningConfigCommandOutput * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class PutFunctionCodeSigningConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/PutFunctionConcurrencyCommand.ts b/clients/client-lambda/src/commands/PutFunctionConcurrencyCommand.ts index e177b59dcb793..9b1be2b2cdc70 100644 --- a/clients/client-lambda/src/commands/PutFunctionConcurrencyCommand.ts +++ b/clients/client-lambda/src/commands/PutFunctionConcurrencyCommand.ts @@ -79,24 +79,24 @@ export interface PutFunctionConcurrencyCommandOutput extends Concurrency, __Meta * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To configure a reserved concurrency limit for a function * ```javascript * // The following example configures 100 reserved concurrent executions for the my-function function. * const input = { - * "FunctionName": "my-function", - * "ReservedConcurrentExecutions": 100 + * FunctionName: "my-function", + * ReservedConcurrentExecutions: 100 * }; * const command = new PutFunctionConcurrencyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReservedConcurrentExecutions": 100 + * ReservedConcurrentExecutions: 100 * } * *\/ - * // example id: to-configure-a-reserved-concurrency-limit-for-a-function-1586491405956 * ``` * + * @public */ export class PutFunctionConcurrencyCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/PutFunctionEventInvokeConfigCommand.ts b/clients/client-lambda/src/commands/PutFunctionEventInvokeConfigCommand.ts index 650322d9f702d..311ee117b2920 100644 --- a/clients/client-lambda/src/commands/PutFunctionEventInvokeConfigCommand.ts +++ b/clients/client-lambda/src/commands/PutFunctionEventInvokeConfigCommand.ts @@ -108,32 +108,8 @@ export interface PutFunctionEventInvokeConfigCommandOutput extends FunctionEvent * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public - * @example To configure error handling for asynchronous invocation - * ```javascript - * // The following example sets a maximum event age of one hour and disables retries for the specified function. - * const input = { - * "FunctionName": "my-function", - * "MaximumEventAgeInSeconds": 3600, - * "MaximumRetryAttempts": 0 - * }; - * const command = new PutFunctionEventInvokeConfigCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "DestinationConfig": { - * "OnFailure": {}, - * "OnSuccess": {} - * }, - * "FunctionArn": "arn:aws:lambda:us-east-2:123456789012:function:my-function:$LATEST", - * "LastModified": "${timestamp}", - * "MaximumEventAgeInSeconds": 3600, - * "MaximumRetryAttempts": 0 - * } - * *\/ - * // example id: to-configure-error-handling-for-asynchronous-invocation-1586491524021 - * ``` * + * @public */ export class PutFunctionEventInvokeConfigCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/PutFunctionRecursionConfigCommand.ts b/clients/client-lambda/src/commands/PutFunctionRecursionConfigCommand.ts index 9037dc6edf159..5e69cf4fea695 100644 --- a/clients/client-lambda/src/commands/PutFunctionRecursionConfigCommand.ts +++ b/clients/client-lambda/src/commands/PutFunctionRecursionConfigCommand.ts @@ -77,6 +77,7 @@ export interface PutFunctionRecursionConfigCommandOutput extends PutFunctionRecu * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class PutFunctionRecursionConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/PutProvisionedConcurrencyConfigCommand.ts b/clients/client-lambda/src/commands/PutProvisionedConcurrencyConfigCommand.ts index 7ff476c69bf8e..f653f65848426 100644 --- a/clients/client-lambda/src/commands/PutProvisionedConcurrencyConfigCommand.ts +++ b/clients/client-lambda/src/commands/PutProvisionedConcurrencyConfigCommand.ts @@ -82,28 +82,28 @@ export interface PutProvisionedConcurrencyConfigCommandOutput * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To allocate provisioned concurrency * ```javascript * // The following example allocates 100 provisioned concurrency for the BLUE alias of the specified function. * const input = { - * "FunctionName": "my-function", - * "ProvisionedConcurrentExecutions": 100, - * "Qualifier": "BLUE" + * FunctionName: "my-function", + * ProvisionedConcurrentExecutions: 100, + * Qualifier: "BLUE" * }; * const command = new PutProvisionedConcurrencyConfigCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AllocatedProvisionedConcurrentExecutions": 0, - * "LastModified": "2019-11-21T19:32:12+0000", - * "RequestedProvisionedConcurrentExecutions": 100, - * "Status": "IN_PROGRESS" + * AllocatedProvisionedConcurrentExecutions: 0, + * LastModified: "2019-11-21T19:32:12+0000", + * RequestedProvisionedConcurrentExecutions: 100, + * Status: "IN_PROGRESS" * } * *\/ - * // example id: to-allocate-provisioned-concurrency-1586491651377 * ``` * + * @public */ export class PutProvisionedConcurrencyConfigCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/PutRuntimeManagementConfigCommand.ts b/clients/client-lambda/src/commands/PutRuntimeManagementConfigCommand.ts index 9afacb60b682c..17299fcf137d8 100644 --- a/clients/client-lambda/src/commands/PutRuntimeManagementConfigCommand.ts +++ b/clients/client-lambda/src/commands/PutRuntimeManagementConfigCommand.ts @@ -76,6 +76,7 @@ export interface PutRuntimeManagementConfigCommandOutput extends PutRuntimeManag * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class PutRuntimeManagementConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/RemoveLayerVersionPermissionCommand.ts b/clients/client-lambda/src/commands/RemoveLayerVersionPermissionCommand.ts index 0b2cd041b946e..cdc52c58a8886 100644 --- a/clients/client-lambda/src/commands/RemoveLayerVersionPermissionCommand.ts +++ b/clients/client-lambda/src/commands/RemoveLayerVersionPermissionCommand.ts @@ -86,20 +86,23 @@ export interface RemoveLayerVersionPermissionCommandOutput extends __MetadataBea * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To delete layer-version permissions * ```javascript * // The following example deletes permission for an account to configure a layer version. * const input = { - * "LayerName": "my-layer", - * "StatementId": "xaccount", - * "VersionNumber": 1 + * LayerName: "my-layer", + * StatementId: "xaccount", + * VersionNumber: 1 * }; * const command = new RemoveLayerVersionPermissionCommand(input); - * await client.send(command); - * // example id: to-delete-layer-version-permissions-1586491829416 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RemoveLayerVersionPermissionCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/RemovePermissionCommand.ts b/clients/client-lambda/src/commands/RemovePermissionCommand.ts index 736203a79402a..cbcbcf6faca06 100644 --- a/clients/client-lambda/src/commands/RemovePermissionCommand.ts +++ b/clients/client-lambda/src/commands/RemovePermissionCommand.ts @@ -82,20 +82,23 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {} * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To remove a Lambda function's permissions * ```javascript * // The following example removes a permissions statement named xaccount from the PROD alias of a function named my-function. * const input = { - * "FunctionName": "my-function", - * "Qualifier": "PROD", - * "StatementId": "xaccount" + * FunctionName: "my-function", + * Qualifier: "PROD", + * StatementId: "xaccount" * }; * const command = new RemovePermissionCommand(input); - * await client.send(command); - * // example id: to-remove-a-lambda-functions-permissions-1481661337021 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RemovePermissionCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/TagResourceCommand.ts b/clients/client-lambda/src/commands/TagResourceCommand.ts index 057e2b92d06c0..0bb81b25a4780 100644 --- a/clients/client-lambda/src/commands/TagResourceCommand.ts +++ b/clients/client-lambda/src/commands/TagResourceCommand.ts @@ -71,21 +71,24 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To add tags to an existing Lambda function * ```javascript * // The following example adds a tag with the key name DEPARTMENT and a value of 'Department A' to the specified Lambda function. * const input = { - * "Resource": "arn:aws:lambda:us-west-2:123456789012:function:my-function", - * "Tags": { - * "DEPARTMENT": "Department A" + * Resource: "arn:aws:lambda:us-west-2:123456789012:function:my-function", + * Tags: { + * DEPARTMENT: "Department A" * } * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: to-add-tags-to-an-existing-lambda-function-1586491890446 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/UntagResourceCommand.ts b/clients/client-lambda/src/commands/UntagResourceCommand.ts index 5369477088140..c79c84dabc0d9 100644 --- a/clients/client-lambda/src/commands/UntagResourceCommand.ts +++ b/clients/client-lambda/src/commands/UntagResourceCommand.ts @@ -71,21 +71,24 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To remove tags from an existing Lambda function * ```javascript * // The following example removes the tag with the key name DEPARTMENT tag from the my-function Lambda function. * const input = { - * "Resource": "arn:aws:lambda:us-west-2:123456789012:function:my-function", - * "TagKeys": [ + * Resource: "arn:aws:lambda:us-west-2:123456789012:function:my-function", + * TagKeys: [ * "DEPARTMENT" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: to-remove-tags-from-an-existing-lambda-function-1586491956425 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/UpdateAliasCommand.ts b/clients/client-lambda/src/commands/UpdateAliasCommand.ts index dfa91e4492ce2..69b56e0246e3c 100644 --- a/clients/client-lambda/src/commands/UpdateAliasCommand.ts +++ b/clients/client-lambda/src/commands/UpdateAliasCommand.ts @@ -101,39 +101,39 @@ export interface UpdateAliasCommandOutput extends AliasConfiguration, __Metadata * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To update a function alias * ```javascript * // The following example updates the alias named BLUE to send 30% of traffic to version 2 and 70% to version 1. * const input = { - * "FunctionName": "my-function", - * "FunctionVersion": "2", - * "Name": "BLUE", - * "RoutingConfig": { - * "AdditionalVersionWeights": { - * "1": 0.7 + * FunctionName: "my-function", + * FunctionVersion: "2", + * Name: "BLUE", + * RoutingConfig: { + * AdditionalVersionWeights: { + * 1: 0.7 * } * } * }; * const command = new UpdateAliasCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AliasArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function:BLUE", - * "Description": "Production environment BLUE.", - * "FunctionVersion": "2", - * "Name": "BLUE", - * "RevisionId": "594f41fb-xmpl-4c20-95c7-6ca5f2a92c93", - * "RoutingConfig": { - * "AdditionalVersionWeights": { - * "1": 0.7 + * AliasArn: "arn:aws:lambda:us-west-2:123456789012:function:my-function:BLUE", + * Description: "Production environment BLUE.", + * FunctionVersion: "2", + * Name: "BLUE", + * RevisionId: "594f41fb-xmpl-4c20-95c7-6ca5f2a92c93", + * RoutingConfig: { + * AdditionalVersionWeights: { + * 1: 0.7 * } * } * } * *\/ - * // example id: to-update-a-function-alias-1481650817950 * ``` * + * @public */ export class UpdateAliasCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/UpdateCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/UpdateCodeSigningConfigCommand.ts index 6e1f49d62aec7..c8688fadd9382 100644 --- a/clients/client-lambda/src/commands/UpdateCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/UpdateCodeSigningConfigCommand.ts @@ -87,6 +87,7 @@ export interface UpdateCodeSigningConfigCommandOutput extends UpdateCodeSigningC * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class UpdateCodeSigningConfigCommand extends $Command diff --git a/clients/client-lambda/src/commands/UpdateEventSourceMappingCommand.ts b/clients/client-lambda/src/commands/UpdateEventSourceMappingCommand.ts index 8378bab35a287..54da6b497c483 100644 --- a/clients/client-lambda/src/commands/UpdateEventSourceMappingCommand.ts +++ b/clients/client-lambda/src/commands/UpdateEventSourceMappingCommand.ts @@ -324,33 +324,8 @@ export interface UpdateEventSourceMappingCommandOutput extends EventSourceMappin * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public - * @example To update a Lambda function event source mapping - * ```javascript - * // This operation updates a Lambda function event source mapping - * const input = { - * "BatchSize": 123, - * "Enabled": true, - * "FunctionName": "myFunction", - * "UUID": "1234xCy789012" - * }; - * const command = new UpdateEventSourceMappingCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "BatchSize": 123, - * "EventSourceArn": "arn:aws:s3:::examplebucket/*", - * "FunctionArn": "arn:aws:lambda:us-west-2:123456789012:function:myFunction", - * "LastModified": "2016-11-21T19:49:20.006+0000", - * "LastProcessingResult": "", - * "State": "", - * "StateTransitionReason": "", - * "UUID": "1234xCy789012" - * } - * *\/ - * // example id: to-update-a-lambda-function-event-source-mapping-1481650907413 - * ``` * + * @public */ export class UpdateEventSourceMappingCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/UpdateFunctionCodeCommand.ts b/clients/client-lambda/src/commands/UpdateFunctionCodeCommand.ts index dfe7fbe16d22e..9839dc5484728 100644 --- a/clients/client-lambda/src/commands/UpdateFunctionCodeCommand.ts +++ b/clients/client-lambda/src/commands/UpdateFunctionCodeCommand.ts @@ -229,40 +229,40 @@ export interface UpdateFunctionCodeCommandOutput extends FunctionConfiguration, * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To update a Lambda function's code * ```javascript * // The following example replaces the code of the unpublished ($LATEST) version of a function named my-function with the contents of the specified zip file in Amazon S3. * const input = { - * "FunctionName": "my-function", - * "S3Bucket": "my-bucket-1xpuxmplzrlbh", - * "S3Key": "function.zip" + * FunctionName: "my-function", + * S3Bucket: "my-bucket-1xpuxmplzrlbh", + * S3Key: "function.zip" * }; * const command = new UpdateFunctionCodeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CodeSha256": "PFn4S+er27qk+UuZSTKEQfNKG/XNn7QJs90mJgq6oH8=", - * "CodeSize": 308, - * "Description": "", - * "FunctionArn": "arn:aws:lambda:us-east-2:123456789012:function:my-function", - * "FunctionName": "my-function", - * "Handler": "index.handler", - * "LastModified": "2019-08-14T22:26:11.234+0000", - * "MemorySize": 128, - * "RevisionId": "873282ed-xmpl-4dc8-a069-d0c647e470c6", - * "Role": "arn:aws:iam::123456789012:role/lambda-role", - * "Runtime": "nodejs12.x", - * "Timeout": 3, - * "TracingConfig": { - * "Mode": "PassThrough" + * CodeSha256: "PFn4S+er27qk+UuZSTKEQfNKG/XNn7QJs90mJgq6oH8=", + * CodeSize: 308, + * Description: "", + * FunctionArn: "arn:aws:lambda:us-east-2:123456789012:function:my-function", + * FunctionName: "my-function", + * Handler: "index.handler", + * LastModified: "2019-08-14T22:26:11.234+0000", + * MemorySize: 128, + * RevisionId: "873282ed-xmpl-4dc8-a069-d0c647e470c6", + * Role: "arn:aws:iam::123456789012:role/lambda-role", + * Runtime: "nodejs12.x", + * Timeout: 3, + * TracingConfig: { + * Mode: "PassThrough" * }, - * "Version": "$LATEST" + * Version: "$LATEST" * } * *\/ - * // example id: to-update-a-lambda-functions-code-1481650992672 * ``` * + * @public */ export class UpdateFunctionCodeCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/UpdateFunctionConfigurationCommand.ts b/clients/client-lambda/src/commands/UpdateFunctionConfigurationCommand.ts index d6e4e61f8a076..6337ab7e8bbfe 100644 --- a/clients/client-lambda/src/commands/UpdateFunctionConfigurationCommand.ts +++ b/clients/client-lambda/src/commands/UpdateFunctionConfigurationCommand.ts @@ -271,39 +271,39 @@ export interface UpdateFunctionConfigurationCommandOutput extends FunctionConfig * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To update a Lambda function's configuration * ```javascript * // The following example modifies the memory size to be 256 MB for the unpublished ($LATEST) version of a function named my-function. * const input = { - * "FunctionName": "my-function", - * "MemorySize": 256 + * FunctionName: "my-function", + * MemorySize: 256 * }; * const command = new UpdateFunctionConfigurationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CodeSha256": "PFn4S+er27qk+UuZSTKEQfNKG/XNn7QJs90mJgq6oH8=", - * "CodeSize": 308, - * "Description": "", - * "FunctionArn": "arn:aws:lambda:us-east-2:123456789012:function:my-function", - * "FunctionName": "my-function", - * "Handler": "index.handler", - * "LastModified": "2019-08-14T22:26:11.234+0000", - * "MemorySize": 256, - * "RevisionId": "873282ed-xmpl-4dc8-a069-d0c647e470c6", - * "Role": "arn:aws:iam::123456789012:role/lambda-role", - * "Runtime": "nodejs12.x", - * "Timeout": 3, - * "TracingConfig": { - * "Mode": "PassThrough" + * CodeSha256: "PFn4S+er27qk+UuZSTKEQfNKG/XNn7QJs90mJgq6oH8=", + * CodeSize: 308, + * Description: "", + * FunctionArn: "arn:aws:lambda:us-east-2:123456789012:function:my-function", + * FunctionName: "my-function", + * Handler: "index.handler", + * LastModified: "2019-08-14T22:26:11.234+0000", + * MemorySize: 256, + * RevisionId: "873282ed-xmpl-4dc8-a069-d0c647e470c6", + * Role: "arn:aws:iam::123456789012:role/lambda-role", + * Runtime: "nodejs12.x", + * Timeout: 3, + * TracingConfig: { + * Mode: "PassThrough" * }, - * "Version": "$LATEST" + * Version: "$LATEST" * } * *\/ - * // example id: to-update-a-lambda-functions-configuration-1481651096447 * ``` * + * @public */ export class UpdateFunctionConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/UpdateFunctionEventInvokeConfigCommand.ts b/clients/client-lambda/src/commands/UpdateFunctionEventInvokeConfigCommand.ts index 9bc4bcfce8abf..aa480324c3181 100644 --- a/clients/client-lambda/src/commands/UpdateFunctionEventInvokeConfigCommand.ts +++ b/clients/client-lambda/src/commands/UpdateFunctionEventInvokeConfigCommand.ts @@ -96,37 +96,37 @@ export interface UpdateFunctionEventInvokeConfigCommandOutput extends FunctionEv * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* - * @public + * * @example To update an asynchronous invocation configuration * ```javascript * // The following example adds an on-failure destination to the existing asynchronous invocation configuration for a function named my-function. * const input = { - * "DestinationConfig": { - * "OnFailure": { - * "Destination": "arn:aws:sqs:us-east-2:123456789012:destination" + * DestinationConfig: { + * OnFailure: { + * Destination: "arn:aws:sqs:us-east-2:123456789012:destination" * } * }, - * "FunctionName": "my-function" + * FunctionName: "my-function" * }; * const command = new UpdateFunctionEventInvokeConfigCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DestinationConfig": { - * "OnFailure": { - * "Destination": "arn:aws:sqs:us-east-2:123456789012:destination" + * DestinationConfig: { + * OnFailure: { + * Destination: "arn:aws:sqs:us-east-2:123456789012:destination" * }, - * "OnSuccess": {} + * OnSuccess: { /* empty *\/ } * }, - * "FunctionArn": "arn:aws:lambda:us-east-2:123456789012:function:my-function:$LATEST", - * "LastModified": 1573687896.493, - * "MaximumEventAgeInSeconds": 3600, - * "MaximumRetryAttempts": 0 + * FunctionArn: "arn:aws:lambda:us-east-2:123456789012:function:my-function:$LATEST", + * LastModified: 1.573687896493E9, + * MaximumEventAgeInSeconds: 3600, + * MaximumRetryAttempts: 0 * } * *\/ - * // example id: to-update-an-asynchronous-invocation-configuration-1586492061186 * ``` * + * @public */ export class UpdateFunctionEventInvokeConfigCommand extends $Command .classBuilder< diff --git a/clients/client-lambda/src/commands/UpdateFunctionUrlConfigCommand.ts b/clients/client-lambda/src/commands/UpdateFunctionUrlConfigCommand.ts index e5da4f52f6095..b7929fc7a07b9 100644 --- a/clients/client-lambda/src/commands/UpdateFunctionUrlConfigCommand.ts +++ b/clients/client-lambda/src/commands/UpdateFunctionUrlConfigCommand.ts @@ -110,6 +110,7 @@ export interface UpdateFunctionUrlConfigCommandOutput extends UpdateFunctionUrlC * @throws {@link LambdaServiceException} *

Base exception class for all service exceptions from Lambda service.

* + * * @public */ export class UpdateFunctionUrlConfigCommand extends $Command diff --git a/clients/client-launch-wizard/src/commands/CreateDeploymentCommand.ts b/clients/client-launch-wizard/src/commands/CreateDeploymentCommand.ts index 3e65b018864ba..ba9968e7bc068 100644 --- a/clients/client-launch-wizard/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-launch-wizard/src/commands/CreateDeploymentCommand.ts @@ -84,6 +84,71 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentOutput, _ * @throws {@link LaunchWizardServiceException} *

Base exception class for all service exceptions from LaunchWizard service.

* + * + * @example Deploy a given workload with given settings. + * ```javascript + * // + * const input = { + * deploymentPatternName: "SapHanaSingle", + * dryRun: false, + * name: "SapHanaSingleForTest", + * specifications: { + * DisableDeploymentRollback: "true", + * Encryption: "Yes", + * KeyName: "testLinuxInstance", + * SAPTZ: "America/Vancouver", + * VPCID: "vpc-1234567", + * applicationName: "SapHanaSingleForTest", + * deploymentScenario: "SapHanaSingle", + * environmentType: "production", + * saveArtifactsS3Uri: "s3://testbucket", + * saveDeploymentArtifacts: "Yes" + * }, + * workloadName: "SAP" + * }; + * const command = new CreateDeploymentCommand(input); + * const response = await client.send(command); + * /* response is + * { + * deploymentId: "4c1b59c1-659c-467f-b6e9-6ef6f9d28e1d" + * } + * *\/ + * ``` + * + * @example Deploy a given workload with given settings and passing tags for Launch Wizard deployment resource. + * ```javascript + * // + * const input = { + * deploymentPatternName: "SapHanaSingle", + * dryRun: false, + * name: "SapHanaSingleForTest", + * specifications: { + * DisableDeploymentRollback: "true", + * Encryption: "Yes", + * KeyName: "testLinuxInstance", + * SAPTZ: "America/Vancouver", + * VPCID: "vpc-1234567", + * applicationName: "SapHanaSingleForTest", + * deploymentScenario: "SapHanaSingle", + * environmentType: "production", + * saveArtifactsS3Uri: "s3://testbucket", + * saveDeploymentArtifacts: "Yes" + * }, + * tags: { + * key1: "val1", + * key2: "val2" + * }, + * workloadName: "SAP" + * }; + * const command = new CreateDeploymentCommand(input); + * const response = await client.send(command); + * /* response is + * { + * deploymentId: "1111111-1111-1111-1111-111111111111" + * } + * *\/ + * ``` + * * @public */ export class CreateDeploymentCommand extends $Command diff --git a/clients/client-launch-wizard/src/commands/DeleteDeploymentCommand.ts b/clients/client-launch-wizard/src/commands/DeleteDeploymentCommand.ts index 6784d3c416caf..cb0f75571c74f 100644 --- a/clients/client-launch-wizard/src/commands/DeleteDeploymentCommand.ts +++ b/clients/client-launch-wizard/src/commands/DeleteDeploymentCommand.ts @@ -70,6 +70,23 @@ export interface DeleteDeploymentCommandOutput extends DeleteDeploymentOutput, _ * @throws {@link LaunchWizardServiceException} *

Base exception class for all service exceptions from LaunchWizard service.

* + * + * @example Delete a deployment. + * ```javascript + * // + * const input = { + * deploymentId: "4c1b59c1-659c-467f-b6e9-6ef6f9d28e1d" + * }; + * const command = new DeleteDeploymentCommand(input); + * const response = await client.send(command); + * /* response is + * { + * status: "DELETED", + * statusReason: "Finished processing DeleteApp request" + * } + * *\/ + * ``` + * * @public */ export class DeleteDeploymentCommand extends $Command diff --git a/clients/client-launch-wizard/src/commands/GetDeploymentCommand.ts b/clients/client-launch-wizard/src/commands/GetDeploymentCommand.ts index a10236c74b0ac..b60f02a4d73d9 100644 --- a/clients/client-launch-wizard/src/commands/GetDeploymentCommand.ts +++ b/clients/client-launch-wizard/src/commands/GetDeploymentCommand.ts @@ -81,6 +81,45 @@ export interface GetDeploymentCommandOutput extends GetDeploymentOutput, __Metad * @throws {@link LaunchWizardServiceException} *

Base exception class for all service exceptions from LaunchWizard service.

* + * + * @example Get details about a given deployment. + * ```javascript + * // + * const input = { + * deploymentId: "1111111-1111-1111-1111-111111111111" + * }; + * const command = new GetDeploymentCommand(input); + * const response = await client.send(command); + * /* response is + * { + * deployment: { + * createdAt: "2023-04-24T13:10:09.857Z", + * deploymentArn: "arn:aws:launchwizard:us-east-1:123456789012:deployment/1111111-1111-1111-1111-111111111111", + * id: "1111111-1111-1111-1111-111111111111", + * name: "SapHanaSingleForTest", + * specifications: { + * DisableDeploymentRollback: "true", + * Encryption: "Yes", + * KeyName: "testLinuxInstance", + * SAPTZ: "America/Vancouver", + * VPCID: "vpc-1234567", + * applicationName: "SapHanaSingleForTest", + * deploymentScenario: "SapHanaSingle", + * environmentType: "production", + * saveArtifactsS3Uri: "s3://testbucket", + * saveDeploymentArtifacts: "Yes" + * }, + * status: "FAILED", + * tags: { + * key1: "val1", + * key2: "val2" + * }, + * workloadName: "SapHanaSingle" + * } + * } + * *\/ + * ``` + * * @public */ export class GetDeploymentCommand extends $Command diff --git a/clients/client-launch-wizard/src/commands/GetWorkloadCommand.ts b/clients/client-launch-wizard/src/commands/GetWorkloadCommand.ts index 5c6181fb7011b..91812eedffc77 100644 --- a/clients/client-launch-wizard/src/commands/GetWorkloadCommand.ts +++ b/clients/client-launch-wizard/src/commands/GetWorkloadCommand.ts @@ -73,6 +73,29 @@ export interface GetWorkloadCommandOutput extends GetWorkloadOutput, __MetadataB * @throws {@link LaunchWizardServiceException} *

Base exception class for all service exceptions from LaunchWizard service.

* + * + * @example Get details about a specific workload. + * ```javascript + * // + * const input = { + * workloadName: "SAP" + * }; + * const command = new GetWorkloadCommand(input); + * const response = await client.send(command); + * /* response is + * { + * workload: { + * description: "Workload Description", + * displayName: "SAP", + * documentationUrl: "https://docs.aws.amazon.com/launchwizard/latest/userguide/launch-wizard-sap.html", + * iconUrl: "https://aws-lw-workload-assets-test-us-east-1.s3.amazonaws.com/amazon/SAP/icon.png?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEAUaCXVzLWVhc3QtMSJHMEUCIC4l3GCH4o%2Bgq3pJzcD1YJmtrmyNCoEgG2RIayjDWf9kAiEAnMK5nYixaZLuF1s1UVoNd7xIbDrOQ8EAbhcZWexMp9cq7wIIrf%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgw1ODI1NTgxMjEyMDYiDHxMN%2BZ8CoPORzvo4yrDAtkVZlBVxLwnFmwHw005vo13LOUUbyajEpp3HNh%2BaBL8K2DLx7Kzi0UPPD6z8pL1eiFLHAQ9zZgVc7pLVQjBKOdcw1GmIADDepqYEb%2B8zLi7zwWP1JT72YbT6ZXSoWpb5NCqcyAvdK47b0Ae586s6VkWzoeJ65jR%2FgbJMhRpFpqVSP2XI6Rf6yA3%2BkQyUCk3RdyF4ljIL8Nf5nIFb%2BOMK2PZ8aJX85l1j7UpJE1rfNb1PitVcQz3KlW5xkiXfcWRKeVhgHRyuCEL3FY0DyPFdqe3NxcA0%2FzPgBq6Y9B41kM6af5u2kQRfQOjWejDpzpG7w40eaIKAYnhBkjIA9550geSLB7O%2FuAPQLI9fI2lVowIBUKsKVOr0%2FFGIzW3WM7%2BbEx%2FZ0mDkP1IhcpZdP7owC77K8O%2BXDgBCabAy48K3ndi%2BQKQMPXjz6YGOp4Bbgv9mVc3sE4KvXZv1skhnOYcOKGdCncIKLne0W%2BgO3URxyDQiyO2FhM3OekXDH83CNCyDVIpkgpWkvgXDSaZiD5mj0T9iqEeJzfh6uQvX1dRN%2BxI1eV0M7HKY2e7F%2BKNjeLhzKgKpSpDqFIUSjLeBlLLyQCNKuUiO3DMiy3rB89aX4b9wyC8au0SfGb72YyNLXjh6M1whcj1VNGePyw%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20230809T202649Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Credential=ASIAYPIZLPT3GGDNTHTI%2F20230809%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=6a37e41e47208b426a5e7d32392d0815388cd0231187652204836943c37ad86a", + * status: "ACTIVE", + * workloadName: "SAP" + * } + * } + * *\/ + * ``` + * * @public */ export class GetWorkloadCommand extends $Command diff --git a/clients/client-launch-wizard/src/commands/GetWorkloadDeploymentPatternCommand.ts b/clients/client-launch-wizard/src/commands/GetWorkloadDeploymentPatternCommand.ts index 97035e7d4ddff..2347f7ab6a12c 100644 --- a/clients/client-launch-wizard/src/commands/GetWorkloadDeploymentPatternCommand.ts +++ b/clients/client-launch-wizard/src/commands/GetWorkloadDeploymentPatternCommand.ts @@ -99,6 +99,47 @@ export interface GetWorkloadDeploymentPatternCommandOutput * @throws {@link LaunchWizardServiceException} *

Base exception class for all service exceptions from LaunchWizard service.

* + * + * @example Get details about a specific Workload deployment pattern + * ```javascript + * // + * const input = { + * deploymentPatternName: "adSelfManagedNewVpc", + * workloadName: "MicrosoftActiveDirectory" + * }; + * const command = new GetWorkloadDeploymentPatternCommand(input); + * const response = await client.send(command); + * /* response is + * { + * workloadDeploymentPattern: { + * deploymentPatternName: "adSelfManagedNewVpc", + * description: "Builds a new AWS environment (VPC and other components), and deploys AD DS into this new VPC.", + * displayName: "Self-managed AD - new VPC", + * specifications: [ + * { + * description: "Number of Availability Zones to use in the VPC.", + * name: "NumberOfAZs", + * required: "Yes" + * }, + * { + * description: "List of Availability Zones (AZs) to use for the subnets in the VPC.", + * name: "AvailabilityZones", + * required: "Yes" + * }, + * { + * description: "CIDR block for the VPC.", + * name: "VPCCIDR", + * required: "Yes" + * } + * ], + * status: "ACTIVE", + * workloadName: "MicrosoftActiveDirectory", + * workloadVersionName: "2024-03-19-14-00-09" + * } + * } + * *\/ + * ``` + * * @public */ export class GetWorkloadDeploymentPatternCommand extends $Command diff --git a/clients/client-launch-wizard/src/commands/ListDeploymentEventsCommand.ts b/clients/client-launch-wizard/src/commands/ListDeploymentEventsCommand.ts index 68aa690eb73a9..cb128dcbbf8a2 100644 --- a/clients/client-launch-wizard/src/commands/ListDeploymentEventsCommand.ts +++ b/clients/client-launch-wizard/src/commands/ListDeploymentEventsCommand.ts @@ -76,6 +76,37 @@ export interface ListDeploymentEventsCommandOutput extends ListDeploymentEventsO * @throws {@link LaunchWizardServiceException} *

Base exception class for all service exceptions from LaunchWizard service.

* + * + * @example List all actions taken during a deployment. + * ```javascript + * // + * const input = { + * deploymentId: "4c1b59c1-659c-467f-b6e9-6ef6f9d28e1d" + * }; + * const command = new ListDeploymentEventsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * deploymentEvents: [ + * { + * description: "Creates a new secure parameter", + * name: "Create secure parameter", + * status: "COMPLETED", + * statusReason: "", + * timestamp: "2023-04-24T13:10:39.123Z" + * }, + * { + * description: "Creates a resource group with all the application resources", + * name: "Create resource group", + * status: "COMPLETED", + * statusReason: "", + * timestamp: "2023-04-24T13:10:42.238Z" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListDeploymentEventsCommand extends $Command diff --git a/clients/client-launch-wizard/src/commands/ListDeploymentsCommand.ts b/clients/client-launch-wizard/src/commands/ListDeploymentsCommand.ts index 2cba2f93286ea..50a845201215e 100644 --- a/clients/client-launch-wizard/src/commands/ListDeploymentsCommand.ts +++ b/clients/client-launch-wizard/src/commands/ListDeploymentsCommand.ts @@ -81,6 +81,38 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsOutput, __M * @throws {@link LaunchWizardServiceException} *

Base exception class for all service exceptions from LaunchWizard service.

* + * + * @example List deployments in the account with filters. + * ```javascript + * // + * const input = { + * filters: [ + * { + * name: "DEPLOYMENT_STATUS", + * values: [ + * "IN_PROGRESS" + * ] + * } + * ] + * }; + * const command = new ListDeploymentsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * deployments: [ + * { + * createdAt: "2023-04-24T13:10:09.857Z", + * id: "4c1b59c1-659c-467f-b6e9-6ef6f9d28e1d", + * name: "SapHanaSingleForTest", + * patternName: "SapHanaSingle", + * status: "IN_PROGRESS", + * workloadName: "SAP" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListDeploymentsCommand extends $Command diff --git a/clients/client-launch-wizard/src/commands/ListTagsForResourceCommand.ts b/clients/client-launch-wizard/src/commands/ListTagsForResourceCommand.ts index b175c25203ea6..b0dfccd47125a 100644 --- a/clients/client-launch-wizard/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-launch-wizard/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,25 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link LaunchWizardServiceException} *

Base exception class for all service exceptions from LaunchWizard service.

* + * + * @example Listing tags on a Launch Wizard deployment resource. + * ```javascript + * // + * const input = { + * resourceArn: "arn:aws:launchwizard:us-east-1:123456789012:deployment/11111111-1111-1111-1111-111111111111" + * }; + * const command = new ListTagsForResourceCommand(input); + * const response = await client.send(command); + * /* response is + * { + * tags: { + * key1: "value1", + * key2: "value2" + * } + * } + * *\/ + * ``` + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-launch-wizard/src/commands/ListWorkloadDeploymentPatternsCommand.ts b/clients/client-launch-wizard/src/commands/ListWorkloadDeploymentPatternsCommand.ts index 3a73d1e840d44..0525ab0171c63 100644 --- a/clients/client-launch-wizard/src/commands/ListWorkloadDeploymentPatternsCommand.ts +++ b/clients/client-launch-wizard/src/commands/ListWorkloadDeploymentPatternsCommand.ts @@ -83,6 +83,39 @@ export interface ListWorkloadDeploymentPatternsCommandOutput * @throws {@link LaunchWizardServiceException} *

Base exception class for all service exceptions from LaunchWizard service.

* + * + * @example List all available workloads supported by AWS Launch Wizard. + * ```javascript + * // + * const input = { + * workloadName: "SAP" + * }; + * const command = new ListWorkloadDeploymentPatternsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * workloadDeploymentPatterns: [ + * { + * deploymentPatternName: "SapHanaHA", + * description: "Deployment Option Description", + * displayName: "Deployment Option Display Name", + * status: "ACTIVE", + * workloadName: "SAP", + * workloadVersionName: "2023-08-02-01-00-00" + * }, + * { + * deploymentPatternName: "SapHanaMulti", + * description: "Deployment Option Description", + * displayName: "Deployment Option Display Name", + * status: "ACTIVE", + * workloadName: "SAP", + * workloadVersionName: "2023-08-02-01-00-00" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListWorkloadDeploymentPatternsCommand extends $Command diff --git a/clients/client-launch-wizard/src/commands/ListWorkloadsCommand.ts b/clients/client-launch-wizard/src/commands/ListWorkloadsCommand.ts index 2354cd3dd1ac1..8cac51934fab7 100644 --- a/clients/client-launch-wizard/src/commands/ListWorkloadsCommand.ts +++ b/clients/client-launch-wizard/src/commands/ListWorkloadsCommand.ts @@ -69,6 +69,29 @@ export interface ListWorkloadsCommandOutput extends ListWorkloadsOutput, __Metad * @throws {@link LaunchWizardServiceException} *

Base exception class for all service exceptions from LaunchWizard service.

* + * + * @example List all available workloads supported by AWS Launch Wizard. + * ```javascript + * // + * const input = { /* empty *\/ }; + * const command = new ListWorkloadsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * workloads: [ + * { + * displayName: "SAP", + * workloadName: "SAP" + * }, + * { + * displayName: "MS SQL Server", + * workloadName: "SQL" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListWorkloadsCommand extends $Command diff --git a/clients/client-launch-wizard/src/commands/TagResourceCommand.ts b/clients/client-launch-wizard/src/commands/TagResourceCommand.ts index 1256663a682b5..a7764611efba3 100644 --- a/clients/client-launch-wizard/src/commands/TagResourceCommand.ts +++ b/clients/client-launch-wizard/src/commands/TagResourceCommand.ts @@ -66,6 +66,24 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link LaunchWizardServiceException} *

Base exception class for all service exceptions from LaunchWizard service.

* + * + * @example Adding tags to a Launch Wizard deployment resource. + * ```javascript + * // + * const input = { + * resourceArn: "arn:aws:launchwizard:us-east-1:123456789012:deployment/11111111-1111-1111-1111-111111111111", + * tags: { + * key1: "value1", + * key2: "value2" + * } + * }; + * const command = new TagResourceCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-launch-wizard/src/commands/UntagResourceCommand.ts b/clients/client-launch-wizard/src/commands/UntagResourceCommand.ts index e735ee87eaecd..1e17282daa363 100644 --- a/clients/client-launch-wizard/src/commands/UntagResourceCommand.ts +++ b/clients/client-launch-wizard/src/commands/UntagResourceCommand.ts @@ -66,6 +66,24 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link LaunchWizardServiceException} *

Base exception class for all service exceptions from LaunchWizard service.

* + * + * @example Removing tags on a Launch Wizard deployment resource. + * ```javascript + * // + * const input = { + * resourceArn: "arn:aws:launchwizard:us-east-1:123456789012:deployment/11111111-1111-1111-1111-111111111111", + * tagKeys: [ + * "key1", + * "key2" + * ] + * }; + * const command = new UntagResourceCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/CreateBotVersionCommand.ts b/clients/client-lex-model-building-service/src/commands/CreateBotVersionCommand.ts index 8fdce2193fdf7..e738fdb0c57aa 100644 --- a/clients/client-lex-model-building-service/src/commands/CreateBotVersionCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/CreateBotVersionCommand.ts @@ -136,6 +136,7 @@ export interface CreateBotVersionCommandOutput extends CreateBotVersionResponse, * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class CreateBotVersionCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/CreateIntentVersionCommand.ts b/clients/client-lex-model-building-service/src/commands/CreateIntentVersionCommand.ts index 947480fe7506d..1861d133ae9a1 100644 --- a/clients/client-lex-model-building-service/src/commands/CreateIntentVersionCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/CreateIntentVersionCommand.ts @@ -199,6 +199,7 @@ export interface CreateIntentVersionCommandOutput extends CreateIntentVersionRes * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class CreateIntentVersionCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/CreateSlotTypeVersionCommand.ts b/clients/client-lex-model-building-service/src/commands/CreateSlotTypeVersionCommand.ts index f8f1c89c4b18f..9fbdac42086a4 100644 --- a/clients/client-lex-model-building-service/src/commands/CreateSlotTypeVersionCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/CreateSlotTypeVersionCommand.ts @@ -119,6 +119,7 @@ export interface CreateSlotTypeVersionCommandOutput extends CreateSlotTypeVersio * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class CreateSlotTypeVersionCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/DeleteBotAliasCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteBotAliasCommand.ts index 7c511e04de3ad..02eeea79440a0 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteBotAliasCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteBotAliasCommand.ts @@ -103,6 +103,7 @@ export interface DeleteBotAliasCommandOutput extends __MetadataBearer {} * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class DeleteBotAliasCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/DeleteBotChannelAssociationCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteBotChannelAssociationCommand.ts index 1747578affca7..93a8b18c3e269 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteBotChannelAssociationCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteBotChannelAssociationCommand.ts @@ -84,6 +84,7 @@ export interface DeleteBotChannelAssociationCommandOutput extends __MetadataBear * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class DeleteBotChannelAssociationCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/DeleteBotCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteBotCommand.ts index 6486251dc73c4..15df326a80261 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteBotCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteBotCommand.ts @@ -109,6 +109,7 @@ export interface DeleteBotCommandOutput extends __MetadataBearer {} * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class DeleteBotCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/DeleteBotVersionCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteBotVersionCommand.ts index 64f3a7c37f605..9079c596c198e 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteBotVersionCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteBotVersionCommand.ts @@ -98,6 +98,7 @@ export interface DeleteBotVersionCommandOutput extends __MetadataBearer {} * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class DeleteBotVersionCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/DeleteIntentCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteIntentCommand.ts index 4d5ff221940a5..aa344f9b190d1 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteIntentCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteIntentCommand.ts @@ -110,6 +110,7 @@ export interface DeleteIntentCommandOutput extends __MetadataBearer {} * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class DeleteIntentCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/DeleteIntentVersionCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteIntentVersionCommand.ts index 2f1b338275a62..056e29d02e45a 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteIntentVersionCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteIntentVersionCommand.ts @@ -98,6 +98,7 @@ export interface DeleteIntentVersionCommandOutput extends __MetadataBearer {} * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class DeleteIntentVersionCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeCommand.ts index 8529db1b3b28e..93612a36923e4 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeCommand.ts @@ -110,6 +110,7 @@ export interface DeleteSlotTypeCommandOutput extends __MetadataBearer {} * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class DeleteSlotTypeCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeVersionCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeVersionCommand.ts index a68dff4675e53..fd67c7505a4af 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeVersionCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeVersionCommand.ts @@ -98,6 +98,7 @@ export interface DeleteSlotTypeVersionCommandOutput extends __MetadataBearer {} * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class DeleteSlotTypeVersionCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/DeleteUtterancesCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteUtterancesCommand.ts index a8119380203c0..e9f08685debb6 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteUtterancesCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteUtterancesCommand.ts @@ -84,6 +84,7 @@ export interface DeleteUtterancesCommandOutput extends __MetadataBearer {} * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class DeleteUtterancesCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetBotAliasCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBotAliasCommand.ts index 806805eadd30c..f385be96327c8 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBotAliasCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBotAliasCommand.ts @@ -96,6 +96,7 @@ export interface GetBotAliasCommandOutput extends GetBotAliasResponse, __Metadat * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetBotAliasCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetBotAliasesCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBotAliasesCommand.ts index fe1f0be919fa3..844d82928b6b4 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBotAliasesCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBotAliasesCommand.ts @@ -98,6 +98,7 @@ export interface GetBotAliasesCommandOutput extends GetBotAliasesResponse, __Met * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetBotAliasesCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationCommand.ts index 76161239dfecc..0189d8e2c07e1 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationCommand.ts @@ -93,6 +93,7 @@ export interface GetBotChannelAssociationCommandOutput extends GetBotChannelAsso * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetBotChannelAssociationCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationsCommand.ts index 7d8e000dd9dd0..31b0b47c8c6ac 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationsCommand.ts @@ -97,6 +97,7 @@ export interface GetBotChannelAssociationsCommandOutput extends GetBotChannelAss * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetBotChannelAssociationsCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetBotCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBotCommand.ts index 4ab46e59af25b..cebfbeb9861f0 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBotCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBotCommand.ts @@ -119,64 +119,64 @@ export interface GetBotCommandOutput extends GetBotResponse, __MetadataBearer {} * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* - * @public + * * @example To get information about a bot * ```javascript * // This example shows how to get configuration information for a bot. * const input = { - * "name": "DocOrderPizza", - * "versionOrAlias": "$LATEST" + * name: "DocOrderPizza", + * versionOrAlias: "$LATEST" * }; * const command = new GetBotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "version": "$LATEST", - * "name": "DocOrderPizzaBot", - * "abortStatement": { - * "messages": [ + * abortStatement: { + * messages: [ * { - * "content": "I don't understand. Can you try again?", - * "contentType": "PlainText" + * content: "I don't understand. Can you try again?", + * contentType: "PlainText" * }, * { - * "content": "I'm sorry, I don't understand.", - * "contentType": "PlainText" + * content: "I'm sorry, I don't understand.", + * contentType: "PlainText" * } * ] * }, - * "checksum": "20172ee3-fa06-49b2-bbc5-667c090303e9", - * "childDirected": true, - * "clarificationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * checksum: "20172ee3-fa06-49b2-bbc5-667c090303e9", + * childDirected: true, + * clarificationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "I'm sorry, I didn't hear that. Can you repeate what you just said?", - * "contentType": "PlainText" + * content: "I'm sorry, I didn't hear that. Can you repeate what you just said?", + * contentType: "PlainText" * }, * { - * "content": "Can you say that again?", - * "contentType": "PlainText" + * content: "Can you say that again?", + * contentType: "PlainText" * } * ] * }, - * "createdDate": 1494360160.133, - * "description": "Orders a pizza from a local pizzeria.", - * "idleSessionTTLInSeconds": 300, - * "intents": [ + * createdDate: 1.494360160133E9, + * description: "Orders a pizza from a local pizzeria.", + * idleSessionTTLInSeconds: 300, + * intents: [ * { - * "intentName": "DocOrderPizza", - * "intentVersion": "$LATEST" + * intentName: "DocOrderPizza", + * intentVersion: "$LATEST" * } * ], - * "lastUpdatedDate": 1494360160.133, - * "locale": "en-US", - * "status": "NOT_BUILT" + * lastUpdatedDate: 1.494360160133E9, + * locale: "en-US", + * name: "DocOrderPizzaBot", + * status: "NOT_BUILT", + * version: "$LATEST" * } * *\/ - * // example id: to-get-information-about-a-bot-1494431724188 * ``` * + * @public */ export class GetBotCommand extends $Command .classBuilder< diff --git a/clients/client-lex-model-building-service/src/commands/GetBotVersionsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBotVersionsCommand.ts index 2d212e35c5fc4..6bc925bf0e523 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBotVersionsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBotVersionsCommand.ts @@ -96,6 +96,7 @@ export interface GetBotVersionsCommandOutput extends GetBotVersionsResponse, __M * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetBotVersionsCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetBotsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBotsCommand.ts index 91eae8e20044c..841e05770052b 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBotsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBotsCommand.ts @@ -100,33 +100,33 @@ export interface GetBotsCommandOutput extends GetBotsResponse, __MetadataBearer * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* - * @public + * * @example To get a list of bots * ```javascript * // This example shows how to get a list of all of the bots in your account. * const input = { - * "maxResults": 5, - * "nextToken": "" + * maxResults: 5, + * nextToken: "" * }; * const command = new GetBotsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "bots": [ + * bots: [ * { - * "version": "$LATEST", - * "name": "DocOrderPizzaBot", - * "createdDate": 1494360160.133, - * "description": "Orders a pizza from a local pizzeria.", - * "lastUpdatedDate": 1494360160.133, - * "status": "NOT_BUILT" + * createdDate: 1.494360160133E9, + * description: "Orders a pizza from a local pizzeria.", + * lastUpdatedDate: 1.494360160133E9, + * name: "DocOrderPizzaBot", + * status: "NOT_BUILT", + * version: "$LATEST" * } * ] * } * *\/ - * // example id: to-get-a-list-of-bots-1494432220036 * ``` * + * @public */ export class GetBotsCommand extends $Command .classBuilder< diff --git a/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentCommand.ts index 44e1a075ff1cf..eb0b4c9bacda8 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentCommand.ts @@ -84,6 +84,7 @@ export interface GetBuiltinIntentCommandOutput extends GetBuiltinIntentResponse, * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetBuiltinIntentCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentsCommand.ts index 016edb57bec83..ffab5f02509a6 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentsCommand.ts @@ -84,6 +84,7 @@ export interface GetBuiltinIntentsCommandOutput extends GetBuiltinIntentsRespons * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetBuiltinIntentsCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetBuiltinSlotTypesCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBuiltinSlotTypesCommand.ts index c317c01660464..2897904d5301f 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBuiltinSlotTypesCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBuiltinSlotTypesCommand.ts @@ -86,6 +86,7 @@ export interface GetBuiltinSlotTypesCommandOutput extends GetBuiltinSlotTypesRes * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetBuiltinSlotTypesCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetExportCommand.ts b/clients/client-lex-model-building-service/src/commands/GetExportCommand.ts index 50f560e1619fa..c08b07e228184 100644 --- a/clients/client-lex-model-building-service/src/commands/GetExportCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetExportCommand.ts @@ -84,6 +84,7 @@ export interface GetExportCommandOutput extends GetExportResponse, __MetadataBea * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetExportCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetImportCommand.ts b/clients/client-lex-model-building-service/src/commands/GetImportCommand.ts index efea8e4d88833..919e921a62604 100644 --- a/clients/client-lex-model-building-service/src/commands/GetImportCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetImportCommand.ts @@ -83,6 +83,7 @@ export interface GetImportCommandOutput extends GetImportResponse, __MetadataBea * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetImportCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetIntentCommand.ts b/clients/client-lex-model-building-service/src/commands/GetIntentCommand.ts index dfee39ef55aec..134d0ededf810 100644 --- a/clients/client-lex-model-building-service/src/commands/GetIntentCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetIntentCommand.ts @@ -180,154 +180,154 @@ export interface GetIntentCommandOutput extends GetIntentResponse, __MetadataBea * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* - * @public + * * @example To get a information about an intent * ```javascript * // This example shows how to get information about an intent. * const input = { - * "version": "$LATEST", - * "name": "DocOrderPizza" + * name: "DocOrderPizza", + * version: "$LATEST" * }; * const command = new GetIntentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "version": "$LATEST", - * "name": "DocOrderPizza", - * "checksum": "ca9bc13d-afc8-4706-bbaf-091f7a5935d6", - * "conclusionStatement": { - * "messages": [ + * checksum: "ca9bc13d-afc8-4706-bbaf-091f7a5935d6", + * conclusionStatement: { + * messages: [ * { - * "content": "All right, I ordered you a {Crust} crust {Type} pizza with {Sauce} sauce.", - * "contentType": "PlainText" + * content: "All right, I ordered you a {Crust} crust {Type} pizza with {Sauce} sauce.", + * contentType: "PlainText" * }, * { - * "content": "OK, your {Crust} crust {Type} pizza with {Sauce} sauce is on the way.", - * "contentType": "PlainText" + * content: "OK, your {Crust} crust {Type} pizza with {Sauce} sauce is on the way.", + * contentType: "PlainText" * } * ], - * "responseCard": "foo" + * responseCard: "foo" * }, - * "confirmationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * confirmationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "Should I order your {Crust} crust {Type} pizza with {Sauce} sauce?", - * "contentType": "PlainText" + * content: "Should I order your {Crust} crust {Type} pizza with {Sauce} sauce?", + * contentType: "PlainText" * } * ] * }, - * "createdDate": 1494359783.453, - * "description": "Order a pizza from a local pizzeria.", - * "fulfillmentActivity": { - * "type": "ReturnIntent" + * createdDate: 1.494359783453E9, + * description: "Order a pizza from a local pizzeria.", + * fulfillmentActivity: { + * type: "ReturnIntent" * }, - * "lastUpdatedDate": 1494359783.453, - * "rejectionStatement": { - * "messages": [ + * lastUpdatedDate: 1.494359783453E9, + * name: "DocOrderPizza", + * rejectionStatement: { + * messages: [ * { - * "content": "Ok, I'll cancel your order.", - * "contentType": "PlainText" + * content: "Ok, I'll cancel your order.", + * contentType: "PlainText" * }, * { - * "content": "I cancelled your order.", - * "contentType": "PlainText" + * content: "I cancelled your order.", + * contentType: "PlainText" * } * ] * }, - * "sampleUtterances": [ + * sampleUtterances: [ * "Order me a pizza.", * "Order me a {Type} pizza.", * "I want a {Crust} crust {Type} pizza", * "I want a {Crust} crust {Type} pizza with {Sauce} sauce." * ], - * "slots": [ + * slots: [ * { - * "name": "Type", - * "description": "The type of pizza to order.", - * "priority": 1, - * "sampleUtterances": [ + * description: "The type of pizza to order.", + * name: "Type", + * priority: 1, + * sampleUtterances: [ * "Get me a {Type} pizza.", * "A {Type} pizza please.", * "I'd like a {Type} pizza." * ], - * "slotConstraint": "Required", - * "slotType": "DocPizzaType", - * "slotTypeVersion": "$LATEST", - * "valueElicitationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * slotConstraint: "Required", + * slotType: "DocPizzaType", + * slotTypeVersion: "$LATEST", + * valueElicitationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "What type of pizza would you like?", - * "contentType": "PlainText" + * content: "What type of pizza would you like?", + * contentType: "PlainText" * }, * { - * "content": "Vegie or cheese pizza?", - * "contentType": "PlainText" + * content: "Vegie or cheese pizza?", + * contentType: "PlainText" * }, * { - * "content": "I can get you a vegie or a cheese pizza.", - * "contentType": "PlainText" + * content: "I can get you a vegie or a cheese pizza.", + * contentType: "PlainText" * } * ] * } * }, * { - * "name": "Crust", - * "description": "The type of pizza crust to order.", - * "priority": 2, - * "sampleUtterances": [ + * description: "The type of pizza crust to order.", + * name: "Crust", + * priority: 2, + * sampleUtterances: [ * "Make it a {Crust} crust.", * "I'd like a {Crust} crust." * ], - * "slotConstraint": "Required", - * "slotType": "DocPizzaCrustType", - * "slotTypeVersion": "$LATEST", - * "valueElicitationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * slotConstraint: "Required", + * slotType: "DocPizzaCrustType", + * slotTypeVersion: "$LATEST", + * valueElicitationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "What type of crust would you like?", - * "contentType": "PlainText" + * content: "What type of crust would you like?", + * contentType: "PlainText" * }, * { - * "content": "Thick or thin crust?", - * "contentType": "PlainText" + * content: "Thick or thin crust?", + * contentType: "PlainText" * } * ] * } * }, * { - * "name": "Sauce", - * "description": "The type of sauce to use on the pizza.", - * "priority": 3, - * "sampleUtterances": [ + * description: "The type of sauce to use on the pizza.", + * name: "Sauce", + * priority: 3, + * sampleUtterances: [ * "Make it {Sauce} sauce.", * "I'd like {Sauce} sauce." * ], - * "slotConstraint": "Required", - * "slotType": "DocPizzaSauceType", - * "slotTypeVersion": "$LATEST", - * "valueElicitationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * slotConstraint: "Required", + * slotType: "DocPizzaSauceType", + * slotTypeVersion: "$LATEST", + * valueElicitationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "White or red sauce?", - * "contentType": "PlainText" + * content: "White or red sauce?", + * contentType: "PlainText" * }, * { - * "content": "Garlic or tomato sauce?", - * "contentType": "PlainText" + * content: "Garlic or tomato sauce?", + * contentType: "PlainText" * } * ] * } * } - * ] + * ], + * version: "$LATEST" * } * *\/ - * // example id: to-get-a-information-about-an-intent-1494432574147 * ``` * + * @public */ export class GetIntentCommand extends $Command .classBuilder< diff --git a/clients/client-lex-model-building-service/src/commands/GetIntentVersionsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetIntentVersionsCommand.ts index 51a27b6cb3b99..46e14a2f2975f 100644 --- a/clients/client-lex-model-building-service/src/commands/GetIntentVersionsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetIntentVersionsCommand.ts @@ -95,6 +95,7 @@ export interface GetIntentVersionsCommandOutput extends GetIntentVersionsRespons * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetIntentVersionsCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetIntentsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetIntentsCommand.ts index be5b19e6f1a9d..60449d6e7b2b1 100644 --- a/clients/client-lex-model-building-service/src/commands/GetIntentsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetIntentsCommand.ts @@ -99,32 +99,32 @@ export interface GetIntentsCommandOutput extends GetIntentsResponse, __MetadataB * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* - * @public + * * @example To get a list of intents * ```javascript * // This example shows how to get a list of all of the intents in your account. * const input = { - * "maxResults": 10, - * "nextToken": "" + * maxResults: 10, + * nextToken: "" * }; * const command = new GetIntentsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "intents": [ + * intents: [ * { - * "version": "$LATEST", - * "name": "DocOrderPizza", - * "createdDate": 1494359783.453, - * "description": "Order a pizza from a local pizzeria.", - * "lastUpdatedDate": 1494359783.453 + * createdDate: 1.494359783453E9, + * description: "Order a pizza from a local pizzeria.", + * lastUpdatedDate: 1.494359783453E9, + * name: "DocOrderPizza", + * version: "$LATEST" * } * ] * } * *\/ - * // example id: to-get-a-list-of-intents-1494432416363 * ``` * + * @public */ export class GetIntentsCommand extends $Command .classBuilder< diff --git a/clients/client-lex-model-building-service/src/commands/GetMigrationCommand.ts b/clients/client-lex-model-building-service/src/commands/GetMigrationCommand.ts index 2e868018ca471..8ff6374e6b0eb 100644 --- a/clients/client-lex-model-building-service/src/commands/GetMigrationCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetMigrationCommand.ts @@ -96,6 +96,7 @@ export interface GetMigrationCommandOutput extends GetMigrationResponse, __Metad * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetMigrationCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetMigrationsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetMigrationsCommand.ts index 13919a12db918..46539ba0f57f5 100644 --- a/clients/client-lex-model-building-service/src/commands/GetMigrationsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetMigrationsCommand.ts @@ -88,6 +88,7 @@ export interface GetMigrationsCommandOutput extends GetMigrationsResponse, __Met * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetMigrationsCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetSlotTypeCommand.ts b/clients/client-lex-model-building-service/src/commands/GetSlotTypeCommand.ts index f2ef3653d0ce9..dd698af02feb9 100644 --- a/clients/client-lex-model-building-service/src/commands/GetSlotTypeCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetSlotTypeCommand.ts @@ -101,37 +101,37 @@ export interface GetSlotTypeCommandOutput extends GetSlotTypeResponse, __Metadat * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* - * @public + * * @example To get information about a slot type * ```javascript * // This example shows how to get information about a slot type. * const input = { - * "version": "$LATEST", - * "name": "DocPizzaCrustType" + * name: "DocPizzaCrustType", + * version: "$LATEST" * }; * const command = new GetSlotTypeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "version": "$LATEST", - * "name": "DocPizzaCrustType", - * "checksum": "210b3d5a-90a3-4b22-ac7e-f50c2c71095f", - * "createdDate": 1494359274.403, - * "description": "Available crust types", - * "enumerationValues": [ + * checksum: "210b3d5a-90a3-4b22-ac7e-f50c2c71095f", + * createdDate: 1.494359274403E9, + * description: "Available crust types", + * enumerationValues: [ * { - * "value": "thick" + * value: "thick" * }, * { - * "value": "thin" + * value: "thin" * } * ], - * "lastUpdatedDate": 1494359274.403 + * lastUpdatedDate: 1.494359274403E9, + * name: "DocPizzaCrustType", + * version: "$LATEST" * } * *\/ - * // example id: to-get-information-about-a-slot-type-1494432961004 * ``` * + * @public */ export class GetSlotTypeCommand extends $Command .classBuilder< diff --git a/clients/client-lex-model-building-service/src/commands/GetSlotTypeVersionsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetSlotTypeVersionsCommand.ts index a7f3b34819c64..ae11597eeed7e 100644 --- a/clients/client-lex-model-building-service/src/commands/GetSlotTypeVersionsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetSlotTypeVersionsCommand.ts @@ -95,6 +95,7 @@ export interface GetSlotTypeVersionsCommandOutput extends GetSlotTypeVersionsRes * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetSlotTypeVersionsCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/GetSlotTypesCommand.ts b/clients/client-lex-model-building-service/src/commands/GetSlotTypesCommand.ts index b668350724506..4df770f8ab165 100644 --- a/clients/client-lex-model-building-service/src/commands/GetSlotTypesCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetSlotTypesCommand.ts @@ -99,46 +99,46 @@ export interface GetSlotTypesCommandOutput extends GetSlotTypesResponse, __Metad * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* - * @public + * * @example To get a list of slot types * ```javascript * // This example shows how to get a list of all of the slot types in your account. * const input = { - * "maxResults": 10, - * "nextToken": "" + * maxResults: 10, + * nextToken: "" * }; * const command = new GetSlotTypesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "slotTypes": [ + * slotTypes: [ * { - * "version": "$LATEST", - * "name": "DocPizzaCrustType", - * "createdDate": 1494359274.403, - * "description": "Available crust types", - * "lastUpdatedDate": 1494359274.403 + * createdDate: 1.494359274403E9, + * description: "Available crust types", + * lastUpdatedDate: 1.494359274403E9, + * name: "DocPizzaCrustType", + * version: "$LATEST" * }, * { - * "version": "$LATEST", - * "name": "DocPizzaSauceType", - * "createdDate": 1494356442.23, - * "description": "Available pizza sauces", - * "lastUpdatedDate": 1494356442.23 + * createdDate: 1.49435644223E9, + * description: "Available pizza sauces", + * lastUpdatedDate: 1.49435644223E9, + * name: "DocPizzaSauceType", + * version: "$LATEST" * }, * { - * "version": "$LATEST", - * "name": "DocPizzaType", - * "createdDate": 1494359198.656, - * "description": "Available pizzas", - * "lastUpdatedDate": 1494359198.656 + * createdDate: 1.494359198656E9, + * description: "Available pizzas", + * lastUpdatedDate: 1.494359198656E9, + * name: "DocPizzaType", + * version: "$LATEST" * } * ] * } * *\/ - * // example id: to-get-a-list-of-slot-types-1494432757458 * ``` * + * @public */ export class GetSlotTypesCommand extends $Command .classBuilder< diff --git a/clients/client-lex-model-building-service/src/commands/GetUtterancesViewCommand.ts b/clients/client-lex-model-building-service/src/commands/GetUtterancesViewCommand.ts index d78ce99c2539e..5761c2dd33cb4 100644 --- a/clients/client-lex-model-building-service/src/commands/GetUtterancesViewCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetUtterancesViewCommand.ts @@ -111,6 +111,7 @@ export interface GetUtterancesViewCommandOutput extends GetUtterancesViewRespons * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class GetUtterancesViewCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/ListTagsForResourceCommand.ts b/clients/client-lex-model-building-service/src/commands/ListTagsForResourceCommand.ts index 8d404c585a0ba..9fc4aa62d84e7 100644 --- a/clients/client-lex-model-building-service/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/ListTagsForResourceCommand.ts @@ -80,6 +80,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/PutBotAliasCommand.ts b/clients/client-lex-model-building-service/src/commands/PutBotAliasCommand.ts index 2639a028d4f1c..6d21486963c9f 100644 --- a/clients/client-lex-model-building-service/src/commands/PutBotAliasCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/PutBotAliasCommand.ts @@ -129,6 +129,7 @@ export interface PutBotAliasCommandOutput extends PutBotAliasResponse, __Metadat * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class PutBotAliasCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/PutBotCommand.ts b/clients/client-lex-model-building-service/src/commands/PutBotCommand.ts index aadcac6bcf6d0..5fe564579b2b9 100644 --- a/clients/client-lex-model-building-service/src/commands/PutBotCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/PutBotCommand.ts @@ -187,99 +187,99 @@ export interface PutBotCommandOutput extends PutBotResponse, __MetadataBearer {} * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* - * @public + * * @example To create a bot * ```javascript * // This example shows how to create a bot for ordering pizzas. * const input = { - * "name": "DocOrderPizzaBot", - * "abortStatement": { - * "messages": [ + * abortStatement: { + * messages: [ * { - * "content": "I don't understand. Can you try again?", - * "contentType": "PlainText" + * content: "I don't understand. Can you try again?", + * contentType: "PlainText" * }, * { - * "content": "I'm sorry, I don't understand.", - * "contentType": "PlainText" + * content: "I'm sorry, I don't understand.", + * contentType: "PlainText" * } * ] * }, - * "childDirected": true, - * "clarificationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * childDirected: true, + * clarificationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "I'm sorry, I didn't hear that. Can you repeat what you just said?", - * "contentType": "PlainText" + * content: "I'm sorry, I didn't hear that. Can you repeat what you just said?", + * contentType: "PlainText" * }, * { - * "content": "Can you say that again?", - * "contentType": "PlainText" + * content: "Can you say that again?", + * contentType: "PlainText" * } * ] * }, - * "description": "Orders a pizza from a local pizzeria.", - * "idleSessionTTLInSeconds": 300, - * "intents": [ + * description: "Orders a pizza from a local pizzeria.", + * idleSessionTTLInSeconds: 300, + * intents: [ * { - * "intentName": "DocOrderPizza", - * "intentVersion": "$LATEST" + * intentName: "DocOrderPizza", + * intentVersion: "$LATEST" * } * ], - * "locale": "en-US", - * "processBehavior": "SAVE" + * locale: "en-US", + * name: "DocOrderPizzaBot", + * processBehavior: "SAVE" * }; * const command = new PutBotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "version": "$LATEST", - * "name": "DocOrderPizzaBot", - * "abortStatement": { - * "messages": [ + * abortStatement: { + * messages: [ * { - * "content": "I don't understand. Can you try again?", - * "contentType": "PlainText" + * content: "I don't understand. Can you try again?", + * contentType: "PlainText" * }, * { - * "content": "I'm sorry, I don't understand.", - * "contentType": "PlainText" + * content: "I'm sorry, I don't understand.", + * contentType: "PlainText" * } * ] * }, - * "checksum": "20172ee3-fa06-49b2-bbc5-667c090303e9", - * "childDirected": true, - * "clarificationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * checksum: "20172ee3-fa06-49b2-bbc5-667c090303e9", + * childDirected: true, + * clarificationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "I'm sorry, I didn't hear that. Can you repeate what you just said?", - * "contentType": "PlainText" + * content: "I'm sorry, I didn't hear that. Can you repeate what you just said?", + * contentType: "PlainText" * }, * { - * "content": "Can you say that again?", - * "contentType": "PlainText" + * content: "Can you say that again?", + * contentType: "PlainText" * } * ] * }, - * "createdDate": 1494360160.133, - * "description": "Orders a pizza from a local pizzeria.", - * "idleSessionTTLInSeconds": 300, - * "intents": [ + * createdDate: 1.494360160133E9, + * description: "Orders a pizza from a local pizzeria.", + * idleSessionTTLInSeconds: 300, + * intents: [ * { - * "intentName": "DocOrderPizza", - * "intentVersion": "$LATEST" + * intentName: "DocOrderPizza", + * intentVersion: "$LATEST" * } * ], - * "lastUpdatedDate": 1494360160.133, - * "locale": "en-US", - * "status": "NOT_BUILT" + * lastUpdatedDate: 1.494360160133E9, + * locale: "en-US", + * name: "DocOrderPizzaBot", + * status: "NOT_BUILT", + * version: "$LATEST" * } * *\/ - * // example id: to-create-a-bot-1494360003886 * ``` * + * @public */ export class PutBotCommand extends $Command .classBuilder< diff --git a/clients/client-lex-model-building-service/src/commands/PutIntentCommand.ts b/clients/client-lex-model-building-service/src/commands/PutIntentCommand.ts index afe98127f7331..e213ea9f519ae 100644 --- a/clients/client-lex-model-building-service/src/commands/PutIntentCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/PutIntentCommand.ts @@ -338,133 +338,133 @@ export interface PutIntentCommandOutput extends PutIntentResponse, __MetadataBea * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* - * @public + * * @example To create an intent * ```javascript * // This example shows how to create an intent for ordering pizzas. * const input = { - * "name": "DocOrderPizza", - * "conclusionStatement": { - * "messages": [ + * conclusionStatement: { + * messages: [ * { - * "content": "All right, I ordered you a {Crust} crust {Type} pizza with {Sauce} sauce.", - * "contentType": "PlainText" + * content: "All right, I ordered you a {Crust} crust {Type} pizza with {Sauce} sauce.", + * contentType: "PlainText" * }, * { - * "content": "OK, your {Crust} crust {Type} pizza with {Sauce} sauce is on the way.", - * "contentType": "PlainText" + * content: "OK, your {Crust} crust {Type} pizza with {Sauce} sauce is on the way.", + * contentType: "PlainText" * } * ], - * "responseCard": "foo" + * responseCard: "foo" * }, - * "confirmationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * confirmationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "Should I order your {Crust} crust {Type} pizza with {Sauce} sauce?", - * "contentType": "PlainText" + * content: "Should I order your {Crust} crust {Type} pizza with {Sauce} sauce?", + * contentType: "PlainText" * } * ] * }, - * "description": "Order a pizza from a local pizzeria.", - * "fulfillmentActivity": { - * "type": "ReturnIntent" + * description: "Order a pizza from a local pizzeria.", + * fulfillmentActivity: { + * type: "ReturnIntent" * }, - * "rejectionStatement": { - * "messages": [ + * name: "DocOrderPizza", + * rejectionStatement: { + * messages: [ * { - * "content": "Ok, I'll cancel your order.", - * "contentType": "PlainText" + * content: "Ok, I'll cancel your order.", + * contentType: "PlainText" * }, * { - * "content": "I cancelled your order.", - * "contentType": "PlainText" + * content: "I cancelled your order.", + * contentType: "PlainText" * } * ] * }, - * "sampleUtterances": [ + * sampleUtterances: [ * "Order me a pizza.", * "Order me a {Type} pizza.", * "I want a {Crust} crust {Type} pizza", * "I want a {Crust} crust {Type} pizza with {Sauce} sauce." * ], - * "slots": [ + * slots: [ * { - * "name": "Type", - * "description": "The type of pizza to order.", - * "priority": 1, - * "sampleUtterances": [ + * description: "The type of pizza to order.", + * name: "Type", + * priority: 1, + * sampleUtterances: [ * "Get me a {Type} pizza.", * "A {Type} pizza please.", * "I'd like a {Type} pizza." * ], - * "slotConstraint": "Required", - * "slotType": "DocPizzaType", - * "slotTypeVersion": "$LATEST", - * "valueElicitationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * slotConstraint: "Required", + * slotType: "DocPizzaType", + * slotTypeVersion: "$LATEST", + * valueElicitationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "What type of pizza would you like?", - * "contentType": "PlainText" + * content: "What type of pizza would you like?", + * contentType: "PlainText" * }, * { - * "content": "Vegie or cheese pizza?", - * "contentType": "PlainText" + * content: "Vegie or cheese pizza?", + * contentType: "PlainText" * }, * { - * "content": "I can get you a vegie or a cheese pizza.", - * "contentType": "PlainText" + * content: "I can get you a vegie or a cheese pizza.", + * contentType: "PlainText" * } * ] * } * }, * { - * "name": "Crust", - * "description": "The type of pizza crust to order.", - * "priority": 2, - * "sampleUtterances": [ + * description: "The type of pizza crust to order.", + * name: "Crust", + * priority: 2, + * sampleUtterances: [ * "Make it a {Crust} crust.", * "I'd like a {Crust} crust." * ], - * "slotConstraint": "Required", - * "slotType": "DocPizzaCrustType", - * "slotTypeVersion": "$LATEST", - * "valueElicitationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * slotConstraint: "Required", + * slotType: "DocPizzaCrustType", + * slotTypeVersion: "$LATEST", + * valueElicitationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "What type of crust would you like?", - * "contentType": "PlainText" + * content: "What type of crust would you like?", + * contentType: "PlainText" * }, * { - * "content": "Thick or thin crust?", - * "contentType": "PlainText" + * content: "Thick or thin crust?", + * contentType: "PlainText" * } * ] * } * }, * { - * "name": "Sauce", - * "description": "The type of sauce to use on the pizza.", - * "priority": 3, - * "sampleUtterances": [ + * description: "The type of sauce to use on the pizza.", + * name: "Sauce", + * priority: 3, + * sampleUtterances: [ * "Make it {Sauce} sauce.", * "I'd like {Sauce} sauce." * ], - * "slotConstraint": "Required", - * "slotType": "DocPizzaSauceType", - * "slotTypeVersion": "$LATEST", - * "valueElicitationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * slotConstraint: "Required", + * slotType: "DocPizzaSauceType", + * slotTypeVersion: "$LATEST", + * valueElicitationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "White or red sauce?", - * "contentType": "PlainText" + * content: "White or red sauce?", + * contentType: "PlainText" * }, * { - * "content": "Garlic or tomato sauce?", - * "contentType": "PlainText" + * content: "Garlic or tomato sauce?", + * contentType: "PlainText" * } * ] * } @@ -473,144 +473,144 @@ export interface PutIntentCommandOutput extends PutIntentResponse, __MetadataBea * }; * const command = new PutIntentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "version": "$LATEST", - * "name": "DocOrderPizza", - * "checksum": "ca9bc13d-afc8-4706-bbaf-091f7a5935d6", - * "conclusionStatement": { - * "messages": [ + * checksum: "ca9bc13d-afc8-4706-bbaf-091f7a5935d6", + * conclusionStatement: { + * messages: [ * { - * "content": "All right, I ordered you a {Crust} crust {Type} pizza with {Sauce} sauce.", - * "contentType": "PlainText" + * content: "All right, I ordered you a {Crust} crust {Type} pizza with {Sauce} sauce.", + * contentType: "PlainText" * }, * { - * "content": "OK, your {Crust} crust {Type} pizza with {Sauce} sauce is on the way.", - * "contentType": "PlainText" + * content: "OK, your {Crust} crust {Type} pizza with {Sauce} sauce is on the way.", + * contentType: "PlainText" * } * ], - * "responseCard": "foo" + * responseCard: "foo" * }, - * "confirmationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * confirmationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "Should I order your {Crust} crust {Type} pizza with {Sauce} sauce?", - * "contentType": "PlainText" + * content: "Should I order your {Crust} crust {Type} pizza with {Sauce} sauce?", + * contentType: "PlainText" * } * ] * }, - * "createdDate": 1494359783.453, - * "description": "Order a pizza from a local pizzeria.", - * "fulfillmentActivity": { - * "type": "ReturnIntent" + * createdDate: 1.494359783453E9, + * description: "Order a pizza from a local pizzeria.", + * fulfillmentActivity: { + * type: "ReturnIntent" * }, - * "lastUpdatedDate": 1494359783.453, - * "rejectionStatement": { - * "messages": [ + * lastUpdatedDate: 1.494359783453E9, + * name: "DocOrderPizza", + * rejectionStatement: { + * messages: [ * { - * "content": "Ok, I'll cancel your order.", - * "contentType": "PlainText" + * content: "Ok, I'll cancel your order.", + * contentType: "PlainText" * }, * { - * "content": "I cancelled your order.", - * "contentType": "PlainText" + * content: "I cancelled your order.", + * contentType: "PlainText" * } * ] * }, - * "sampleUtterances": [ + * sampleUtterances: [ * "Order me a pizza.", * "Order me a {Type} pizza.", * "I want a {Crust} crust {Type} pizza", * "I want a {Crust} crust {Type} pizza with {Sauce} sauce." * ], - * "slots": [ + * slots: [ * { - * "name": "Sauce", - * "description": "The type of sauce to use on the pizza.", - * "priority": 3, - * "sampleUtterances": [ + * description: "The type of sauce to use on the pizza.", + * name: "Sauce", + * priority: 3, + * sampleUtterances: [ * "Make it {Sauce} sauce.", * "I'd like {Sauce} sauce." * ], - * "slotConstraint": "Required", - * "slotType": "DocPizzaSauceType", - * "slotTypeVersion": "$LATEST", - * "valueElicitationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * slotConstraint: "Required", + * slotType: "DocPizzaSauceType", + * slotTypeVersion: "$LATEST", + * valueElicitationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "White or red sauce?", - * "contentType": "PlainText" + * content: "White or red sauce?", + * contentType: "PlainText" * }, * { - * "content": "Garlic or tomato sauce?", - * "contentType": "PlainText" + * content: "Garlic or tomato sauce?", + * contentType: "PlainText" * } * ] * } * }, * { - * "name": "Type", - * "description": "The type of pizza to order.", - * "priority": 1, - * "sampleUtterances": [ + * description: "The type of pizza to order.", + * name: "Type", + * priority: 1, + * sampleUtterances: [ * "Get me a {Type} pizza.", * "A {Type} pizza please.", * "I'd like a {Type} pizza." * ], - * "slotConstraint": "Required", - * "slotType": "DocPizzaType", - * "slotTypeVersion": "$LATEST", - * "valueElicitationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * slotConstraint: "Required", + * slotType: "DocPizzaType", + * slotTypeVersion: "$LATEST", + * valueElicitationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "What type of pizza would you like?", - * "contentType": "PlainText" + * content: "What type of pizza would you like?", + * contentType: "PlainText" * }, * { - * "content": "Vegie or cheese pizza?", - * "contentType": "PlainText" + * content: "Vegie or cheese pizza?", + * contentType: "PlainText" * }, * { - * "content": "I can get you a vegie or a cheese pizza.", - * "contentType": "PlainText" + * content: "I can get you a vegie or a cheese pizza.", + * contentType: "PlainText" * } * ] * } * }, * { - * "name": "Crust", - * "description": "The type of pizza crust to order.", - * "priority": 2, - * "sampleUtterances": [ + * description: "The type of pizza crust to order.", + * name: "Crust", + * priority: 2, + * sampleUtterances: [ * "Make it a {Crust} crust.", * "I'd like a {Crust} crust." * ], - * "slotConstraint": "Required", - * "slotType": "DocPizzaCrustType", - * "slotTypeVersion": "$LATEST", - * "valueElicitationPrompt": { - * "maxAttempts": 1, - * "messages": [ + * slotConstraint: "Required", + * slotType: "DocPizzaCrustType", + * slotTypeVersion: "$LATEST", + * valueElicitationPrompt: { + * maxAttempts: 1, + * messages: [ * { - * "content": "What type of crust would you like?", - * "contentType": "PlainText" + * content: "What type of crust would you like?", + * contentType: "PlainText" * }, * { - * "content": "Thick or thin crust?", - * "contentType": "PlainText" + * content: "Thick or thin crust?", + * contentType: "PlainText" * } * ] * } * } - * ] + * ], + * version: "$LATEST" * } * *\/ - * // example id: to-create-an-intent-1494358144659 * ``` * + * @public */ export class PutIntentCommand extends $Command .classBuilder< diff --git a/clients/client-lex-model-building-service/src/commands/PutSlotTypeCommand.ts b/clients/client-lex-model-building-service/src/commands/PutSlotTypeCommand.ts index 677d840aa91be..57cecf6931818 100644 --- a/clients/client-lex-model-building-service/src/commands/PutSlotTypeCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/PutSlotTypeCommand.ts @@ -136,45 +136,45 @@ export interface PutSlotTypeCommandOutput extends PutSlotTypeResponse, __Metadat * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* - * @public + * * @example To Create a Slot Type * ```javascript * // This example shows how to create a slot type that describes pizza sauces. * const input = { - * "name": "PizzaSauceType", - * "description": "Available pizza sauces", - * "enumerationValues": [ + * description: "Available pizza sauces", + * enumerationValues: [ * { - * "value": "red" + * value: "red" * }, * { - * "value": "white" + * value: "white" * } - * ] + * ], + * name: "PizzaSauceType" * }; * const command = new PutSlotTypeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "version": "$LATEST", - * "name": "DocPizzaSauceType", - * "checksum": "cfd00ed1-775d-4357-947c-aca7e73b44ba", - * "createdDate": 1494356442.23, - * "description": "Available pizza sauces", - * "enumerationValues": [ + * checksum: "cfd00ed1-775d-4357-947c-aca7e73b44ba", + * createdDate: 1.49435644223E9, + * description: "Available pizza sauces", + * enumerationValues: [ * { - * "value": "red" + * value: "red" * }, * { - * "value": "white" + * value: "white" * } * ], - * "lastUpdatedDate": 1494356442.23 + * lastUpdatedDate: 1.49435644223E9, + * name: "DocPizzaSauceType", + * version: "$LATEST" * } * *\/ - * // example id: to-create-a-slot-type-1494357262258 * ``` * + * @public */ export class PutSlotTypeCommand extends $Command .classBuilder< diff --git a/clients/client-lex-model-building-service/src/commands/StartImportCommand.ts b/clients/client-lex-model-building-service/src/commands/StartImportCommand.ts index e7f849496e7b8..3efc6b8d92e01 100644 --- a/clients/client-lex-model-building-service/src/commands/StartImportCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/StartImportCommand.ts @@ -89,6 +89,7 @@ export interface StartImportCommandOutput extends StartImportResponse, __Metadat * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class StartImportCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/StartMigrationCommand.ts b/clients/client-lex-model-building-service/src/commands/StartMigrationCommand.ts index e51750bd9f96c..66bd746c95474 100644 --- a/clients/client-lex-model-building-service/src/commands/StartMigrationCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/StartMigrationCommand.ts @@ -92,6 +92,7 @@ export interface StartMigrationCommandOutput extends StartMigrationResponse, __M * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class StartMigrationCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/TagResourceCommand.ts b/clients/client-lex-model-building-service/src/commands/TagResourceCommand.ts index d592f1b3b8045..68bbde9a53df1 100644 --- a/clients/client-lex-model-building-service/src/commands/TagResourceCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/TagResourceCommand.ts @@ -83,6 +83,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-lex-model-building-service/src/commands/UntagResourceCommand.ts b/clients/client-lex-model-building-service/src/commands/UntagResourceCommand.ts index 6cfadae77e360..99e0ed6f7b6c2 100644 --- a/clients/client-lex-model-building-service/src/commands/UntagResourceCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/UntagResourceCommand.ts @@ -79,6 +79,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link LexModelBuildingServiceServiceException} *

Base exception class for all service exceptions from LexModelBuildingService service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/BatchCreateCustomVocabularyItemCommand.ts b/clients/client-lex-models-v2/src/commands/BatchCreateCustomVocabularyItemCommand.ts index 5ed9ce3885c67..554d323ec1453 100644 --- a/clients/client-lex-models-v2/src/commands/BatchCreateCustomVocabularyItemCommand.ts +++ b/clients/client-lex-models-v2/src/commands/BatchCreateCustomVocabularyItemCommand.ts @@ -106,6 +106,7 @@ export interface BatchCreateCustomVocabularyItemCommandOutput * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class BatchCreateCustomVocabularyItemCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/BatchDeleteCustomVocabularyItemCommand.ts b/clients/client-lex-models-v2/src/commands/BatchDeleteCustomVocabularyItemCommand.ts index 402c0592a73d4..7d05126f1d3b4 100644 --- a/clients/client-lex-models-v2/src/commands/BatchDeleteCustomVocabularyItemCommand.ts +++ b/clients/client-lex-models-v2/src/commands/BatchDeleteCustomVocabularyItemCommand.ts @@ -104,6 +104,7 @@ export interface BatchDeleteCustomVocabularyItemCommandOutput * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class BatchDeleteCustomVocabularyItemCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/BatchUpdateCustomVocabularyItemCommand.ts b/clients/client-lex-models-v2/src/commands/BatchUpdateCustomVocabularyItemCommand.ts index 729ed037eeb98..ff4e806539f12 100644 --- a/clients/client-lex-models-v2/src/commands/BatchUpdateCustomVocabularyItemCommand.ts +++ b/clients/client-lex-models-v2/src/commands/BatchUpdateCustomVocabularyItemCommand.ts @@ -107,6 +107,7 @@ export interface BatchUpdateCustomVocabularyItemCommandOutput * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class BatchUpdateCustomVocabularyItemCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/BuildBotLocaleCommand.ts b/clients/client-lex-models-v2/src/commands/BuildBotLocaleCommand.ts index ee2d301cd7312..7782d33ac8a6c 100644 --- a/clients/client-lex-models-v2/src/commands/BuildBotLocaleCommand.ts +++ b/clients/client-lex-models-v2/src/commands/BuildBotLocaleCommand.ts @@ -88,6 +88,7 @@ export interface BuildBotLocaleCommandOutput extends BuildBotLocaleResponse, __M * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class BuildBotLocaleCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/CreateBotAliasCommand.ts b/clients/client-lex-models-v2/src/commands/CreateBotAliasCommand.ts index c181e8112ab72..c7f169ec18305 100644 --- a/clients/client-lex-models-v2/src/commands/CreateBotAliasCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateBotAliasCommand.ts @@ -181,6 +181,7 @@ export interface CreateBotAliasCommandOutput extends CreateBotAliasResponse, __M * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class CreateBotAliasCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/CreateBotCommand.ts b/clients/client-lex-models-v2/src/commands/CreateBotCommand.ts index 841f408c6e77a..fe16b175aab93 100644 --- a/clients/client-lex-models-v2/src/commands/CreateBotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateBotCommand.ts @@ -127,6 +127,7 @@ export interface CreateBotCommandOutput extends CreateBotResponse, __MetadataBea * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class CreateBotCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/CreateBotLocaleCommand.ts b/clients/client-lex-models-v2/src/commands/CreateBotLocaleCommand.ts index 064b8d9fc1069..c46807d002daa 100644 --- a/clients/client-lex-models-v2/src/commands/CreateBotLocaleCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateBotLocaleCommand.ts @@ -186,6 +186,7 @@ export interface CreateBotLocaleCommandOutput extends CreateBotLocaleResponse, _ * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class CreateBotLocaleCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/CreateBotReplicaCommand.ts b/clients/client-lex-models-v2/src/commands/CreateBotReplicaCommand.ts index d17c949a39607..a72251edb35ce 100644 --- a/clients/client-lex-models-v2/src/commands/CreateBotReplicaCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateBotReplicaCommand.ts @@ -85,6 +85,7 @@ export interface CreateBotReplicaCommandOutput extends CreateBotReplicaResponse, * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class CreateBotReplicaCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/CreateBotVersionCommand.ts b/clients/client-lex-models-v2/src/commands/CreateBotVersionCommand.ts index e498b46dbc149..483204d00eb81 100644 --- a/clients/client-lex-models-v2/src/commands/CreateBotVersionCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateBotVersionCommand.ts @@ -99,6 +99,7 @@ export interface CreateBotVersionCommandOutput extends CreateBotVersionResponse, * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class CreateBotVersionCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/CreateExportCommand.ts b/clients/client-lex-models-v2/src/commands/CreateExportCommand.ts index 417b73b1e5f23..52d115779cdea 100644 --- a/clients/client-lex-models-v2/src/commands/CreateExportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateExportCommand.ts @@ -130,6 +130,7 @@ export interface CreateExportCommandOutput extends CreateExportResponse, __Metad * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class CreateExportCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/CreateIntentCommand.ts b/clients/client-lex-models-v2/src/commands/CreateIntentCommand.ts index eda7cb207a57d..840850ace4d0e 100644 --- a/clients/client-lex-models-v2/src/commands/CreateIntentCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateIntentCommand.ts @@ -1049,6 +1049,7 @@ export interface CreateIntentCommandOutput extends CreateIntentResponse, __Metad * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class CreateIntentCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/CreateResourcePolicyCommand.ts b/clients/client-lex-models-v2/src/commands/CreateResourcePolicyCommand.ts index 528947f7ccec9..f7a38100578ed 100644 --- a/clients/client-lex-models-v2/src/commands/CreateResourcePolicyCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateResourcePolicyCommand.ts @@ -82,6 +82,7 @@ export interface CreateResourcePolicyCommandOutput extends CreateResourcePolicyR * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class CreateResourcePolicyCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/CreateResourcePolicyStatementCommand.ts b/clients/client-lex-models-v2/src/commands/CreateResourcePolicyStatementCommand.ts index 43fce6482a3e9..301b885cd2181 100644 --- a/clients/client-lex-models-v2/src/commands/CreateResourcePolicyStatementCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateResourcePolicyStatementCommand.ts @@ -113,6 +113,7 @@ export interface CreateResourcePolicyStatementCommandOutput * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class CreateResourcePolicyStatementCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/CreateSlotCommand.ts b/clients/client-lex-models-v2/src/commands/CreateSlotCommand.ts index 566674f9e5974..0c183d7c1219a 100644 --- a/clients/client-lex-models-v2/src/commands/CreateSlotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateSlotCommand.ts @@ -886,6 +886,7 @@ export interface CreateSlotCommandOutput extends CreateSlotResponse, __MetadataB * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class CreateSlotCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/CreateSlotTypeCommand.ts b/clients/client-lex-models-v2/src/commands/CreateSlotTypeCommand.ts index 9e3e257b4a8dd..40c861bee2f15 100644 --- a/clients/client-lex-models-v2/src/commands/CreateSlotTypeCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateSlotTypeCommand.ts @@ -171,6 +171,7 @@ export interface CreateSlotTypeCommandOutput extends CreateSlotTypeResponse, __M * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class CreateSlotTypeCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/CreateTestSetDiscrepancyReportCommand.ts b/clients/client-lex-models-v2/src/commands/CreateTestSetDiscrepancyReportCommand.ts index 4299240c097c1..8a6e7287f415c 100644 --- a/clients/client-lex-models-v2/src/commands/CreateTestSetDiscrepancyReportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateTestSetDiscrepancyReportCommand.ts @@ -100,6 +100,7 @@ export interface CreateTestSetDiscrepancyReportCommandOutput * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class CreateTestSetDiscrepancyReportCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/CreateUploadUrlCommand.ts b/clients/client-lex-models-v2/src/commands/CreateUploadUrlCommand.ts index 58e6021d300c7..742bff5085057 100644 --- a/clients/client-lex-models-v2/src/commands/CreateUploadUrlCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateUploadUrlCommand.ts @@ -76,6 +76,7 @@ export interface CreateUploadUrlCommandOutput extends CreateUploadUrlResponse, _ * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class CreateUploadUrlCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteBotAliasCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteBotAliasCommand.ts index 0f951e5f12ce0..64c86f9f55369 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteBotAliasCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteBotAliasCommand.ts @@ -84,6 +84,7 @@ export interface DeleteBotAliasCommandOutput extends DeleteBotAliasResponse, __M * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteBotAliasCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteBotCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteBotCommand.ts index bdda1ba37578c..da6147ae7d93a 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteBotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteBotCommand.ts @@ -91,6 +91,7 @@ export interface DeleteBotCommandOutput extends DeleteBotResponse, __MetadataBea * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteBotCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteBotLocaleCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteBotLocaleCommand.ts index 5f4baacf1ddb4..9bb23c6283a6e 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteBotLocaleCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteBotLocaleCommand.ts @@ -87,6 +87,7 @@ export interface DeleteBotLocaleCommandOutput extends DeleteBotLocaleResponse, _ * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteBotLocaleCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteBotReplicaCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteBotReplicaCommand.ts index 52b1854cdb0db..19c431ff0c216 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteBotReplicaCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteBotReplicaCommand.ts @@ -83,6 +83,7 @@ export interface DeleteBotReplicaCommandOutput extends DeleteBotReplicaResponse, * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteBotReplicaCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteBotVersionCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteBotVersionCommand.ts index b82b971ea94f6..d2730f547802a 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteBotVersionCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteBotVersionCommand.ts @@ -85,6 +85,7 @@ export interface DeleteBotVersionCommandOutput extends DeleteBotVersionResponse, * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteBotVersionCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteCustomVocabularyCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteCustomVocabularyCommand.ts index 5d83749f5df4a..fe85c580fbd2d 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteCustomVocabularyCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteCustomVocabularyCommand.ts @@ -86,6 +86,7 @@ export interface DeleteCustomVocabularyCommandOutput extends DeleteCustomVocabul * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteCustomVocabularyCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteExportCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteExportCommand.ts index f9cb0070a7074..ac40893ef44de 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteExportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteExportCommand.ts @@ -77,6 +77,7 @@ export interface DeleteExportCommandOutput extends DeleteExportResponse, __Metad * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteExportCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteImportCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteImportCommand.ts index 4443d90edc37b..6d416ae8ec732 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteImportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteImportCommand.ts @@ -77,6 +77,7 @@ export interface DeleteImportCommandOutput extends DeleteImportResponse, __Metad * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteImportCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteIntentCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteIntentCommand.ts index 3da678106f47c..aa512e1ec2950 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteIntentCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteIntentCommand.ts @@ -83,6 +83,7 @@ export interface DeleteIntentCommandOutput extends __MetadataBearer {} * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteIntentCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyCommand.ts index 1ed17cf1a2d86..16634da5ffc01 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyCommand.ts @@ -75,6 +75,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyStatementCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyStatementCommand.ts index d1bd31c073fdb..bfd3b5dd093b6 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyStatementCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyStatementCommand.ts @@ -86,6 +86,7 @@ export interface DeleteResourcePolicyStatementCommandOutput * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteResourcePolicyStatementCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteSlotCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteSlotCommand.ts index 95de71e788758..3fabfaf76f6c4 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteSlotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteSlotCommand.ts @@ -82,6 +82,7 @@ export interface DeleteSlotCommandOutput extends __MetadataBearer {} * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteSlotCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteSlotTypeCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteSlotTypeCommand.ts index da59518760176..33a5934adcf9a 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteSlotTypeCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteSlotTypeCommand.ts @@ -86,6 +86,7 @@ export interface DeleteSlotTypeCommandOutput extends __MetadataBearer {} * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteSlotTypeCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteTestSetCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteTestSetCommand.ts index cc0968eecd536..8b71e8b6a8639 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteTestSetCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteTestSetCommand.ts @@ -78,6 +78,7 @@ export interface DeleteTestSetCommandOutput extends __MetadataBearer {} * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteTestSetCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DeleteUtterancesCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteUtterancesCommand.ts index 3b8f7336fc166..c3555143ccea1 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteUtterancesCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteUtterancesCommand.ts @@ -78,6 +78,7 @@ export interface DeleteUtterancesCommandOutput extends DeleteUtterancesResponse, * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DeleteUtterancesCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeBotAliasCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeBotAliasCommand.ts index 26b9b97bcc276..4cefed0522dd1 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeBotAliasCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeBotAliasCommand.ts @@ -136,6 +136,7 @@ export interface DescribeBotAliasCommandOutput extends DescribeBotAliasResponse, * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeBotAliasCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeBotCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeBotCommand.ts index ba29b82a68c45..916a79e609c13 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeBotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeBotCommand.ts @@ -97,6 +97,7 @@ export interface DescribeBotCommandOutput extends DescribeBotResponse, __Metadat * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeBotCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeBotLocaleCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeBotLocaleCommand.ts index 981aecf55ebf7..745fe76cc2dec 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeBotLocaleCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeBotLocaleCommand.ts @@ -146,6 +146,7 @@ export interface DescribeBotLocaleCommandOutput extends DescribeBotLocaleRespons * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeBotLocaleCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeBotRecommendationCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeBotRecommendationCommand.ts index 1cb2ef49ad139..604aff2bae3c4 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeBotRecommendationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeBotRecommendationCommand.ts @@ -128,6 +128,7 @@ export interface DescribeBotRecommendationCommandOutput extends DescribeBotRecom * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeBotRecommendationCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeBotReplicaCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeBotReplicaCommand.ts index ade60a8a82449..7e0629ae2554b 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeBotReplicaCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeBotReplicaCommand.ts @@ -82,6 +82,7 @@ export interface DescribeBotReplicaCommandOutput extends DescribeBotReplicaRespo * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeBotReplicaCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeBotResourceGenerationCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeBotResourceGenerationCommand.ts index 6e0105f2d3e61..c216b748696b7 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeBotResourceGenerationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeBotResourceGenerationCommand.ts @@ -94,6 +94,7 @@ export interface DescribeBotResourceGenerationCommandOutput * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeBotResourceGenerationCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeBotVersionCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeBotVersionCommand.ts index e8ad3e42b279e..2148dd5748c07 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeBotVersionCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeBotVersionCommand.ts @@ -104,6 +104,7 @@ export interface DescribeBotVersionCommandOutput extends DescribeBotVersionRespo * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeBotVersionCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeCustomVocabularyMetadataCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeCustomVocabularyMetadataCommand.ts index 70d15c3e6553f..9701d2a5f0edc 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeCustomVocabularyMetadataCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeCustomVocabularyMetadataCommand.ts @@ -86,6 +86,7 @@ export interface DescribeCustomVocabularyMetadataCommandOutput * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeCustomVocabularyMetadataCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeExportCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeExportCommand.ts index a41bfb99e44ab..d2685800fde79 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeExportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeExportCommand.ts @@ -98,6 +98,7 @@ export interface DescribeExportCommandOutput extends DescribeExportResponse, __M * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeExportCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeImportCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeImportCommand.ts index 9a3b6ff6964e3..0b831dda31a70 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeImportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeImportCommand.ts @@ -129,6 +129,7 @@ export interface DescribeImportCommandOutput extends DescribeImportResponse, __M * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeImportCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeIntentCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeIntentCommand.ts index d3ecf409bc041..be49b506427cb 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeIntentCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeIntentCommand.ts @@ -551,6 +551,7 @@ export interface DescribeIntentCommandOutput extends DescribeIntentResponse, __M * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeIntentCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeResourcePolicyCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeResourcePolicyCommand.ts index 27c01817100c1..dbd1b5499a2cd 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeResourcePolicyCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeResourcePolicyCommand.ts @@ -70,6 +70,7 @@ export interface DescribeResourcePolicyCommandOutput extends DescribeResourcePol * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeResourcePolicyCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeSlotCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeSlotCommand.ts index d6b8ab8832324..d32a19cab2e19 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeSlotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeSlotCommand.ts @@ -481,6 +481,7 @@ export interface DescribeSlotCommandOutput extends DescribeSlotResponse, __Metad * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeSlotCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeSlotTypeCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeSlotTypeCommand.ts index de99a3cd27488..b71d7a33f59a6 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeSlotTypeCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeSlotTypeCommand.ts @@ -123,6 +123,7 @@ export interface DescribeSlotTypeCommandOutput extends DescribeSlotTypeResponse, * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeSlotTypeCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeTestExecutionCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeTestExecutionCommand.ts index 0d218cd918e19..9fd267bbf1c15 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeTestExecutionCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeTestExecutionCommand.ts @@ -91,6 +91,7 @@ export interface DescribeTestExecutionCommandOutput extends DescribeTestExecutio * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeTestExecutionCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeTestSetCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeTestSetCommand.ts index 52fbb78577e29..edc5cdc0562cd 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeTestSetCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeTestSetCommand.ts @@ -87,6 +87,7 @@ export interface DescribeTestSetCommandOutput extends DescribeTestSetResponse, _ * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeTestSetCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeTestSetDiscrepancyReportCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeTestSetDiscrepancyReportCommand.ts index 40729ecea8931..5d87e28008b7c 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeTestSetDiscrepancyReportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeTestSetDiscrepancyReportCommand.ts @@ -109,6 +109,7 @@ export interface DescribeTestSetDiscrepancyReportCommandOutput * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeTestSetDiscrepancyReportCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/DescribeTestSetGenerationCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeTestSetGenerationCommand.ts index 64cbb05196fba..9074f642be4cc 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeTestSetGenerationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeTestSetGenerationCommand.ts @@ -101,6 +101,7 @@ export interface DescribeTestSetGenerationCommandOutput extends DescribeTestSetG * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class DescribeTestSetGenerationCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/GenerateBotElementCommand.ts b/clients/client-lex-models-v2/src/commands/GenerateBotElementCommand.ts index c773b3af322de..15c710679a2ce 100644 --- a/clients/client-lex-models-v2/src/commands/GenerateBotElementCommand.ts +++ b/clients/client-lex-models-v2/src/commands/GenerateBotElementCommand.ts @@ -95,6 +95,7 @@ export interface GenerateBotElementCommandOutput extends GenerateBotElementRespo * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class GenerateBotElementCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/GetTestExecutionArtifactsUrlCommand.ts b/clients/client-lex-models-v2/src/commands/GetTestExecutionArtifactsUrlCommand.ts index b7f7646e1cb62..199650c8dba1d 100644 --- a/clients/client-lex-models-v2/src/commands/GetTestExecutionArtifactsUrlCommand.ts +++ b/clients/client-lex-models-v2/src/commands/GetTestExecutionArtifactsUrlCommand.ts @@ -80,6 +80,7 @@ export interface GetTestExecutionArtifactsUrlCommandOutput * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class GetTestExecutionArtifactsUrlCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListAggregatedUtterancesCommand.ts b/clients/client-lex-models-v2/src/commands/ListAggregatedUtterancesCommand.ts index 9c96ded5525fd..859c714918cdc 100644 --- a/clients/client-lex-models-v2/src/commands/ListAggregatedUtterancesCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListAggregatedUtterancesCommand.ts @@ -143,6 +143,7 @@ export interface ListAggregatedUtterancesCommandOutput extends ListAggregatedUtt * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListAggregatedUtterancesCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListBotAliasReplicasCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotAliasReplicasCommand.ts index 863e7e1027ce5..cb00cd76fd010 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotAliasReplicasCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotAliasReplicasCommand.ts @@ -88,6 +88,7 @@ export interface ListBotAliasReplicasCommandOutput extends ListBotAliasReplicasR * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListBotAliasReplicasCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListBotAliasesCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotAliasesCommand.ts index 6736f7f229e36..de89f28948bd0 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotAliasesCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotAliasesCommand.ts @@ -84,6 +84,7 @@ export interface ListBotAliasesCommandOutput extends ListBotAliasesResponse, __M * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListBotAliasesCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListBotLocalesCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotLocalesCommand.ts index dffa8b3a005a1..bdcfb6a73e139 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotLocalesCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotLocalesCommand.ts @@ -98,6 +98,7 @@ export interface ListBotLocalesCommandOutput extends ListBotLocalesResponse, __M * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListBotLocalesCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListBotRecommendationsCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotRecommendationsCommand.ts index b4f46d66c848e..afd05e7a73704 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotRecommendationsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotRecommendationsCommand.ts @@ -87,6 +87,7 @@ export interface ListBotRecommendationsCommandOutput extends ListBotRecommendati * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListBotRecommendationsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListBotReplicasCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotReplicasCommand.ts index 2f4eaf0648d84..1562feed228b8 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotReplicasCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotReplicasCommand.ts @@ -81,6 +81,7 @@ export interface ListBotReplicasCommandOutput extends ListBotReplicasResponse, _ * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListBotReplicasCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListBotResourceGenerationsCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotResourceGenerationsCommand.ts index 06dfcf109f6f0..94ccd77298291 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotResourceGenerationsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotResourceGenerationsCommand.ts @@ -90,6 +90,7 @@ export interface ListBotResourceGenerationsCommandOutput extends ListBotResource * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListBotResourceGenerationsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListBotVersionReplicasCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotVersionReplicasCommand.ts index 55c71231948d3..a302c4a031a75 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotVersionReplicasCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotVersionReplicasCommand.ts @@ -90,6 +90,7 @@ export interface ListBotVersionReplicasCommandOutput extends ListBotVersionRepli * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListBotVersionReplicasCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListBotVersionsCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotVersionsCommand.ts index 01fe2a317f436..eea016f3b8bfc 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotVersionsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotVersionsCommand.ts @@ -93,6 +93,7 @@ export interface ListBotVersionsCommandOutput extends ListBotVersionsResponse, _ * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListBotVersionsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListBotsCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotsCommand.ts index d17bd917a1be8..ab6a9d67fa4bd 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotsCommand.ts @@ -95,6 +95,7 @@ export interface ListBotsCommandOutput extends ListBotsResponse, __MetadataBeare * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListBotsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListBuiltInIntentsCommand.ts b/clients/client-lex-models-v2/src/commands/ListBuiltInIntentsCommand.ts index 61f42bf3cd718..793fb647cfcc2 100644 --- a/clients/client-lex-models-v2/src/commands/ListBuiltInIntentsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBuiltInIntentsCommand.ts @@ -88,6 +88,7 @@ export interface ListBuiltInIntentsCommandOutput extends ListBuiltInIntentsRespo * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListBuiltInIntentsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListBuiltInSlotTypesCommand.ts b/clients/client-lex-models-v2/src/commands/ListBuiltInSlotTypesCommand.ts index 282997ac9cb59..37783174af3ff 100644 --- a/clients/client-lex-models-v2/src/commands/ListBuiltInSlotTypesCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBuiltInSlotTypesCommand.ts @@ -84,6 +84,7 @@ export interface ListBuiltInSlotTypesCommandOutput extends ListBuiltInSlotTypesR * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListBuiltInSlotTypesCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListCustomVocabularyItemsCommand.ts b/clients/client-lex-models-v2/src/commands/ListCustomVocabularyItemsCommand.ts index be30ed9247089..0adf842e7806c 100644 --- a/clients/client-lex-models-v2/src/commands/ListCustomVocabularyItemsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListCustomVocabularyItemsCommand.ts @@ -90,6 +90,7 @@ export interface ListCustomVocabularyItemsCommandOutput extends ListCustomVocabu * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListCustomVocabularyItemsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListExportsCommand.ts b/clients/client-lex-models-v2/src/commands/ListExportsCommand.ts index 66ae92a936dc1..2faff2c8f10ea 100644 --- a/clients/client-lex-models-v2/src/commands/ListExportsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListExportsCommand.ts @@ -116,6 +116,7 @@ export interface ListExportsCommandOutput extends ListExportsResponse, __Metadat * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListExportsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListImportsCommand.ts b/clients/client-lex-models-v2/src/commands/ListImportsCommand.ts index 0ed57902df062..10b10689c43d4 100644 --- a/clients/client-lex-models-v2/src/commands/ListImportsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListImportsCommand.ts @@ -100,6 +100,7 @@ export interface ListImportsCommandOutput extends ListImportsResponse, __Metadat * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListImportsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListIntentMetricsCommand.ts b/clients/client-lex-models-v2/src/commands/ListIntentMetricsCommand.ts index 3f19fe987c668..d666dc3bd86c1 100644 --- a/clients/client-lex-models-v2/src/commands/ListIntentMetricsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListIntentMetricsCommand.ts @@ -151,6 +151,7 @@ export interface ListIntentMetricsCommandOutput extends ListIntentMetricsRespons * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListIntentMetricsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListIntentPathsCommand.ts b/clients/client-lex-models-v2/src/commands/ListIntentPathsCommand.ts index 2c67cc9fa5e7f..ab957ac4b1efb 100644 --- a/clients/client-lex-models-v2/src/commands/ListIntentPathsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListIntentPathsCommand.ts @@ -106,6 +106,7 @@ export interface ListIntentPathsCommandOutput extends ListIntentPathsResponse, _ * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListIntentPathsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListIntentStageMetricsCommand.ts b/clients/client-lex-models-v2/src/commands/ListIntentStageMetricsCommand.ts index 19d9b7e8ff585..c9e287335501b 100644 --- a/clients/client-lex-models-v2/src/commands/ListIntentStageMetricsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListIntentStageMetricsCommand.ts @@ -151,6 +151,7 @@ export interface ListIntentStageMetricsCommandOutput extends ListIntentStageMetr * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListIntentStageMetricsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListIntentsCommand.ts b/clients/client-lex-models-v2/src/commands/ListIntentsCommand.ts index 850fa4767fd84..5bf6866fdf533 100644 --- a/clients/client-lex-models-v2/src/commands/ListIntentsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListIntentsCommand.ts @@ -111,6 +111,7 @@ export interface ListIntentsCommandOutput extends ListIntentsResponse, __Metadat * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListIntentsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListRecommendedIntentsCommand.ts b/clients/client-lex-models-v2/src/commands/ListRecommendedIntentsCommand.ts index 39761a4f31bea..ac7c481966d58 100644 --- a/clients/client-lex-models-v2/src/commands/ListRecommendedIntentsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListRecommendedIntentsCommand.ts @@ -92,6 +92,7 @@ export interface ListRecommendedIntentsCommandOutput extends ListRecommendedInte * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListRecommendedIntentsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListSessionAnalyticsDataCommand.ts b/clients/client-lex-models-v2/src/commands/ListSessionAnalyticsDataCommand.ts index 18e148ad7fb82..f8f549ee4d180 100644 --- a/clients/client-lex-models-v2/src/commands/ListSessionAnalyticsDataCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListSessionAnalyticsDataCommand.ts @@ -122,6 +122,7 @@ export interface ListSessionAnalyticsDataCommandOutput extends ListSessionAnalyt * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListSessionAnalyticsDataCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListSessionMetricsCommand.ts b/clients/client-lex-models-v2/src/commands/ListSessionMetricsCommand.ts index b0d3b5453be9e..9482deb2cbe99 100644 --- a/clients/client-lex-models-v2/src/commands/ListSessionMetricsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListSessionMetricsCommand.ts @@ -151,6 +151,7 @@ export interface ListSessionMetricsCommandOutput extends ListSessionMetricsRespo * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListSessionMetricsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListSlotTypesCommand.ts b/clients/client-lex-models-v2/src/commands/ListSlotTypesCommand.ts index b0a40e795f8fe..addf9440860e2 100644 --- a/clients/client-lex-models-v2/src/commands/ListSlotTypesCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListSlotTypesCommand.ts @@ -100,6 +100,7 @@ export interface ListSlotTypesCommandOutput extends ListSlotTypesResponse, __Met * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListSlotTypesCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListSlotsCommand.ts b/clients/client-lex-models-v2/src/commands/ListSlotsCommand.ts index 32053eba159d3..71489cb7c4b9b 100644 --- a/clients/client-lex-models-v2/src/commands/ListSlotsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListSlotsCommand.ts @@ -182,6 +182,7 @@ export interface ListSlotsCommandOutput extends ListSlotsResponse, __MetadataBea * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListSlotsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListTagsForResourceCommand.ts b/clients/client-lex-models-v2/src/commands/ListTagsForResourceCommand.ts index 09f2c2cf9a55e..d7643957f9e61 100644 --- a/clients/client-lex-models-v2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListTestExecutionResultItemsCommand.ts b/clients/client-lex-models-v2/src/commands/ListTestExecutionResultItemsCommand.ts index 018ecde039957..00ca2c4c14dd1 100644 --- a/clients/client-lex-models-v2/src/commands/ListTestExecutionResultItemsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListTestExecutionResultItemsCommand.ts @@ -278,6 +278,7 @@ export interface ListTestExecutionResultItemsCommandOutput * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListTestExecutionResultItemsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListTestExecutionsCommand.ts b/clients/client-lex-models-v2/src/commands/ListTestExecutionsCommand.ts index eac5570e0ada8..c8044917b86df 100644 --- a/clients/client-lex-models-v2/src/commands/ListTestExecutionsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListTestExecutionsCommand.ts @@ -94,6 +94,7 @@ export interface ListTestExecutionsCommandOutput extends ListTestExecutionsRespo * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListTestExecutionsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListTestSetRecordsCommand.ts b/clients/client-lex-models-v2/src/commands/ListTestSetRecordsCommand.ts index 5befeb974d3ea..3aa8cb43d12eb 100644 --- a/clients/client-lex-models-v2/src/commands/ListTestSetRecordsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListTestSetRecordsCommand.ts @@ -162,6 +162,7 @@ export interface ListTestSetRecordsCommandOutput extends ListTestSetRecordsRespo * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListTestSetRecordsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListTestSetsCommand.ts b/clients/client-lex-models-v2/src/commands/ListTestSetsCommand.ts index 4610ee10f8c61..886c9bdd2b510 100644 --- a/clients/client-lex-models-v2/src/commands/ListTestSetsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListTestSetsCommand.ts @@ -93,6 +93,7 @@ export interface ListTestSetsCommandOutput extends ListTestSetsResponse, __Metad * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListTestSetsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListUtteranceAnalyticsDataCommand.ts b/clients/client-lex-models-v2/src/commands/ListUtteranceAnalyticsDataCommand.ts index f85cc6a01fad4..02d2383d2c980 100644 --- a/clients/client-lex-models-v2/src/commands/ListUtteranceAnalyticsDataCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListUtteranceAnalyticsDataCommand.ts @@ -156,6 +156,7 @@ export interface ListUtteranceAnalyticsDataCommandOutput extends ListUtteranceAn * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListUtteranceAnalyticsDataCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/ListUtteranceMetricsCommand.ts b/clients/client-lex-models-v2/src/commands/ListUtteranceMetricsCommand.ts index 21332015be6e1..c23523457d138 100644 --- a/clients/client-lex-models-v2/src/commands/ListUtteranceMetricsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListUtteranceMetricsCommand.ts @@ -167,6 +167,7 @@ export interface ListUtteranceMetricsCommandOutput extends ListUtteranceMetricsR * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class ListUtteranceMetricsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/SearchAssociatedTranscriptsCommand.ts b/clients/client-lex-models-v2/src/commands/SearchAssociatedTranscriptsCommand.ts index bbe25c1b9383b..46d049286e38a 100644 --- a/clients/client-lex-models-v2/src/commands/SearchAssociatedTranscriptsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/SearchAssociatedTranscriptsCommand.ts @@ -104,6 +104,7 @@ export interface SearchAssociatedTranscriptsCommandOutput * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class SearchAssociatedTranscriptsCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/StartBotRecommendationCommand.ts b/clients/client-lex-models-v2/src/commands/StartBotRecommendationCommand.ts index b670eb17fda90..6678deb0b8584 100644 --- a/clients/client-lex-models-v2/src/commands/StartBotRecommendationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/StartBotRecommendationCommand.ts @@ -147,6 +147,7 @@ export interface StartBotRecommendationCommandOutput extends StartBotRecommendat * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class StartBotRecommendationCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/StartBotResourceGenerationCommand.ts b/clients/client-lex-models-v2/src/commands/StartBotResourceGenerationCommand.ts index 882d0bac36887..2f73ec31b826c 100644 --- a/clients/client-lex-models-v2/src/commands/StartBotResourceGenerationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/StartBotResourceGenerationCommand.ts @@ -93,6 +93,7 @@ export interface StartBotResourceGenerationCommandOutput extends StartBotResourc * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class StartBotResourceGenerationCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/StartImportCommand.ts b/clients/client-lex-models-v2/src/commands/StartImportCommand.ts index 8cf8e06fb33bb..d4d8b0c10968d 100644 --- a/clients/client-lex-models-v2/src/commands/StartImportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/StartImportCommand.ts @@ -183,6 +183,7 @@ export interface StartImportCommandOutput extends StartImportResponse, __Metadat * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class StartImportCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/StartTestExecutionCommand.ts b/clients/client-lex-models-v2/src/commands/StartTestExecutionCommand.ts index 584d2064cd5db..e39a056f465bf 100644 --- a/clients/client-lex-models-v2/src/commands/StartTestExecutionCommand.ts +++ b/clients/client-lex-models-v2/src/commands/StartTestExecutionCommand.ts @@ -99,6 +99,7 @@ export interface StartTestExecutionCommandOutput extends StartTestExecutionRespo * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class StartTestExecutionCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/StartTestSetGenerationCommand.ts b/clients/client-lex-models-v2/src/commands/StartTestSetGenerationCommand.ts index dbc4ea0c2908e..3f8053b51c813 100644 --- a/clients/client-lex-models-v2/src/commands/StartTestSetGenerationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/StartTestSetGenerationCommand.ts @@ -126,6 +126,7 @@ export interface StartTestSetGenerationCommandOutput extends StartTestSetGenerat * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class StartTestSetGenerationCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/StopBotRecommendationCommand.ts b/clients/client-lex-models-v2/src/commands/StopBotRecommendationCommand.ts index f34f0b957714c..096408d02b2dc 100644 --- a/clients/client-lex-models-v2/src/commands/StopBotRecommendationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/StopBotRecommendationCommand.ts @@ -91,6 +91,7 @@ export interface StopBotRecommendationCommandOutput extends StopBotRecommendatio * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class StopBotRecommendationCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/TagResourceCommand.ts b/clients/client-lex-models-v2/src/commands/TagResourceCommand.ts index ded3d7fb92f6d..98de9950058f2 100644 --- a/clients/client-lex-models-v2/src/commands/TagResourceCommand.ts +++ b/clients/client-lex-models-v2/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/UntagResourceCommand.ts b/clients/client-lex-models-v2/src/commands/UntagResourceCommand.ts index a85b77ab627ae..460977e2f333a 100644 --- a/clients/client-lex-models-v2/src/commands/UntagResourceCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UntagResourceCommand.ts @@ -72,6 +72,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/UpdateBotAliasCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateBotAliasCommand.ts index cb034c2e51266..0b634fd500973 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateBotAliasCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateBotAliasCommand.ts @@ -173,6 +173,7 @@ export interface UpdateBotAliasCommandOutput extends UpdateBotAliasResponse, __M * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class UpdateBotAliasCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/UpdateBotCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateBotCommand.ts index f229c577debae..dad93c50987bf 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateBotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateBotCommand.ts @@ -117,6 +117,7 @@ export interface UpdateBotCommandOutput extends UpdateBotResponse, __MetadataBea * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class UpdateBotCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/UpdateBotLocaleCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateBotLocaleCommand.ts index 5bc198b4f70b9..1d2b9162462d4 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateBotLocaleCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateBotLocaleCommand.ts @@ -190,6 +190,7 @@ export interface UpdateBotLocaleCommandOutput extends UpdateBotLocaleResponse, _ * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class UpdateBotLocaleCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/UpdateBotRecommendationCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateBotRecommendationCommand.ts index 391c9e4ee95f9..7bbf023af1253 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateBotRecommendationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateBotRecommendationCommand.ts @@ -128,6 +128,7 @@ export interface UpdateBotRecommendationCommandOutput extends UpdateBotRecommend * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class UpdateBotRecommendationCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/UpdateExportCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateExportCommand.ts index 2fbfb61d02f42..1e2be5d674dd2 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateExportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateExportCommand.ts @@ -107,6 +107,7 @@ export interface UpdateExportCommandOutput extends UpdateExportResponse, __Metad * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class UpdateExportCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/UpdateIntentCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateIntentCommand.ts index 8e166d7cd61c8..4f8ad61000dc2 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateIntentCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateIntentCommand.ts @@ -1026,6 +1026,7 @@ export interface UpdateIntentCommandOutput extends UpdateIntentResponse, __Metad * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class UpdateIntentCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/UpdateResourcePolicyCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateResourcePolicyCommand.ts index af6f1044b0769..772188cccdc21 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateResourcePolicyCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateResourcePolicyCommand.ts @@ -84,6 +84,7 @@ export interface UpdateResourcePolicyCommandOutput extends UpdateResourcePolicyR * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class UpdateResourcePolicyCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/UpdateSlotCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateSlotCommand.ts index 6a0ece7b62bc6..2e5eeb889f3a8 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateSlotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateSlotCommand.ts @@ -884,6 +884,7 @@ export interface UpdateSlotCommandOutput extends UpdateSlotResponse, __MetadataB * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class UpdateSlotCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/UpdateSlotTypeCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateSlotTypeCommand.ts index fe737ab90bc85..46b5c25701bee 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateSlotTypeCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateSlotTypeCommand.ts @@ -170,6 +170,7 @@ export interface UpdateSlotTypeCommandOutput extends UpdateSlotTypeResponse, __M * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class UpdateSlotTypeCommand extends $Command diff --git a/clients/client-lex-models-v2/src/commands/UpdateTestSetCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateTestSetCommand.ts index dfed838da60d9..2e9d2646c5b8d 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateTestSetCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateTestSetCommand.ts @@ -95,6 +95,7 @@ export interface UpdateTestSetCommandOutput extends UpdateTestSetResponse, __Met * @throws {@link LexModelsV2ServiceException} *

Base exception class for all service exceptions from LexModelsV2 service.

* + * * @public */ export class UpdateTestSetCommand extends $Command diff --git a/clients/client-lex-runtime-service/src/commands/DeleteSessionCommand.ts b/clients/client-lex-runtime-service/src/commands/DeleteSessionCommand.ts index 91c52e0cc29e8..94300c6b0b7f8 100644 --- a/clients/client-lex-runtime-service/src/commands/DeleteSessionCommand.ts +++ b/clients/client-lex-runtime-service/src/commands/DeleteSessionCommand.ts @@ -84,6 +84,7 @@ export interface DeleteSessionCommandOutput extends DeleteSessionResponse, __Met * @throws {@link LexRuntimeServiceServiceException} *

Base exception class for all service exceptions from LexRuntimeService service.

* + * * @public */ export class DeleteSessionCommand extends $Command diff --git a/clients/client-lex-runtime-service/src/commands/GetSessionCommand.ts b/clients/client-lex-runtime-service/src/commands/GetSessionCommand.ts index 9b0478953f594..92acee2a05518 100644 --- a/clients/client-lex-runtime-service/src/commands/GetSessionCommand.ts +++ b/clients/client-lex-runtime-service/src/commands/GetSessionCommand.ts @@ -115,6 +115,7 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB * @throws {@link LexRuntimeServiceServiceException} *

Base exception class for all service exceptions from LexRuntimeService service.

* + * * @public */ export class GetSessionCommand extends $Command diff --git a/clients/client-lex-runtime-service/src/commands/PostContentCommand.ts b/clients/client-lex-runtime-service/src/commands/PostContentCommand.ts index cb31d37167853..6e0f785649c52 100644 --- a/clients/client-lex-runtime-service/src/commands/PostContentCommand.ts +++ b/clients/client-lex-runtime-service/src/commands/PostContentCommand.ts @@ -142,6 +142,11 @@ export interface PostContentCommandOutput extends OmitBase exception class for all service exceptions from LexRuntimeService service.

* + * * @public */ export class PostContentCommand extends $Command diff --git a/clients/client-lex-runtime-service/src/commands/PostTextCommand.ts b/clients/client-lex-runtime-service/src/commands/PostTextCommand.ts index 4bd1851e33d98..a311b188ee494 100644 --- a/clients/client-lex-runtime-service/src/commands/PostTextCommand.ts +++ b/clients/client-lex-runtime-service/src/commands/PostTextCommand.ts @@ -265,6 +265,7 @@ export interface PostTextCommandOutput extends PostTextResponse, __MetadataBeare * @throws {@link LexRuntimeServiceServiceException} *

Base exception class for all service exceptions from LexRuntimeService service.

* + * * @public */ export class PostTextCommand extends $Command diff --git a/clients/client-lex-runtime-service/src/commands/PutSessionCommand.ts b/clients/client-lex-runtime-service/src/commands/PutSessionCommand.ts index f6260f3dead2a..302e3204162d5 100644 --- a/clients/client-lex-runtime-service/src/commands/PutSessionCommand.ts +++ b/clients/client-lex-runtime-service/src/commands/PutSessionCommand.ts @@ -95,6 +95,11 @@ export interface PutSessionCommandOutput extends OmitBase exception class for all service exceptions from LexRuntimeService service.

* + * * @public */ export class PutSessionCommand extends $Command diff --git a/clients/client-lex-runtime-v2/src/commands/DeleteSessionCommand.ts b/clients/client-lex-runtime-v2/src/commands/DeleteSessionCommand.ts index c6911555b3646..104346af43bd8 100644 --- a/clients/client-lex-runtime-v2/src/commands/DeleteSessionCommand.ts +++ b/clients/client-lex-runtime-v2/src/commands/DeleteSessionCommand.ts @@ -92,6 +92,7 @@ export interface DeleteSessionCommandOutput extends DeleteSessionResponse, __Met * @throws {@link LexRuntimeV2ServiceException} *

Base exception class for all service exceptions from LexRuntimeV2 service.

* + * * @public */ export class DeleteSessionCommand extends $Command diff --git a/clients/client-lex-runtime-v2/src/commands/GetSessionCommand.ts b/clients/client-lex-runtime-v2/src/commands/GetSessionCommand.ts index c574ec8ecbbe8..d05a1e9d5f97c 100644 --- a/clients/client-lex-runtime-v2/src/commands/GetSessionCommand.ts +++ b/clients/client-lex-runtime-v2/src/commands/GetSessionCommand.ts @@ -210,6 +210,7 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB * @throws {@link LexRuntimeV2ServiceException} *

Base exception class for all service exceptions from LexRuntimeV2 service.

* + * * @public */ export class GetSessionCommand extends $Command diff --git a/clients/client-lex-runtime-v2/src/commands/PutSessionCommand.ts b/clients/client-lex-runtime-v2/src/commands/PutSessionCommand.ts index c2ed042422ae9..280b63b14b838 100644 --- a/clients/client-lex-runtime-v2/src/commands/PutSessionCommand.ts +++ b/clients/client-lex-runtime-v2/src/commands/PutSessionCommand.ts @@ -162,6 +162,11 @@ export interface PutSessionCommandOutput extends OmitBase exception class for all service exceptions from LexRuntimeV2 service.

* + * * @public */ export class PutSessionCommand extends $Command diff --git a/clients/client-lex-runtime-v2/src/commands/RecognizeTextCommand.ts b/clients/client-lex-runtime-v2/src/commands/RecognizeTextCommand.ts index b2f2054dc9847..c845dd33eb74f 100644 --- a/clients/client-lex-runtime-v2/src/commands/RecognizeTextCommand.ts +++ b/clients/client-lex-runtime-v2/src/commands/RecognizeTextCommand.ts @@ -346,6 +346,7 @@ export interface RecognizeTextCommandOutput extends RecognizeTextResponse, __Met * @throws {@link LexRuntimeV2ServiceException} *

Base exception class for all service exceptions from LexRuntimeV2 service.

* + * * @public */ export class RecognizeTextCommand extends $Command diff --git a/clients/client-lex-runtime-v2/src/commands/RecognizeUtteranceCommand.ts b/clients/client-lex-runtime-v2/src/commands/RecognizeUtteranceCommand.ts index 9daac93dfc7f3..15c4c42137a50 100644 --- a/clients/client-lex-runtime-v2/src/commands/RecognizeUtteranceCommand.ts +++ b/clients/client-lex-runtime-v2/src/commands/RecognizeUtteranceCommand.ts @@ -126,6 +126,11 @@ export interface RecognizeUtteranceCommandOutput * }; * const command = new RecognizeUtteranceCommand(input); * const response = await client.send(command); + * // consume or destroy the stream to free the socket. + * const bytes = await response.audioStream.transformToByteArray(); + * // const str = await response.audioStream.transformToString(); + * // response.audioStream.destroy(); // only applicable to Node.js Readable streams. + * * // { // RecognizeUtteranceResponse * // inputMode: "STRING_VALUE", * // contentType: "STRING_VALUE", @@ -174,6 +179,7 @@ export interface RecognizeUtteranceCommandOutput * @throws {@link LexRuntimeV2ServiceException} *

Base exception class for all service exceptions from LexRuntimeV2 service.

* + * * @public */ export class RecognizeUtteranceCommand extends $Command diff --git a/clients/client-lex-runtime-v2/src/commands/StartConversationCommand.ts b/clients/client-lex-runtime-v2/src/commands/StartConversationCommand.ts index add654bf8220f..13a7bc5b2ea40 100644 --- a/clients/client-lex-runtime-v2/src/commands/StartConversationCommand.ts +++ b/clients/client-lex-runtime-v2/src/commands/StartConversationCommand.ts @@ -463,6 +463,7 @@ export interface StartConversationCommandOutput extends StartConversationRespons * @throws {@link LexRuntimeV2ServiceException} *

Base exception class for all service exceptions from LexRuntimeV2 service.

* + * * @public */ export class StartConversationCommand extends $Command diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/DeregisterSubscriptionProviderCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/DeregisterSubscriptionProviderCommand.ts index 60ba7bc371df3..e51582b348506 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/DeregisterSubscriptionProviderCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/DeregisterSubscriptionProviderCommand.ts @@ -75,6 +75,7 @@ export interface DeregisterSubscriptionProviderCommandOutput * @throws {@link LicenseManagerLinuxSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.

* + * * @public */ export class DeregisterSubscriptionProviderCommand extends $Command diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/GetRegisteredSubscriptionProviderCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/GetRegisteredSubscriptionProviderCommand.ts index 09709a5dc31c6..2721c2fe111c1 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/GetRegisteredSubscriptionProviderCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/GetRegisteredSubscriptionProviderCommand.ts @@ -84,6 +84,7 @@ export interface GetRegisteredSubscriptionProviderCommandOutput * @throws {@link LicenseManagerLinuxSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.

* + * * @public */ export class GetRegisteredSubscriptionProviderCommand extends $Command diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/GetServiceSettingsCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/GetServiceSettingsCommand.ts index 59cacbfa02b7b..c18e63cee42be 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/GetServiceSettingsCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/GetServiceSettingsCommand.ts @@ -79,6 +79,7 @@ export interface GetServiceSettingsCommandOutput extends GetServiceSettingsRespo * @throws {@link LicenseManagerLinuxSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.

* + * * @public */ export class GetServiceSettingsCommand extends $Command diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionInstancesCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionInstancesCommand.ts index 874758bdc0589..9b6e7f94ca5e2 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionInstancesCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionInstancesCommand.ts @@ -105,6 +105,7 @@ export interface ListLinuxSubscriptionInstancesCommandOutput * @throws {@link LicenseManagerLinuxSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.

* + * * @public */ export class ListLinuxSubscriptionInstancesCommand extends $Command diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionsCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionsCommand.ts index 9bc7831fc87ef..601c078efe535 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionsCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionsCommand.ts @@ -87,6 +87,7 @@ export interface ListLinuxSubscriptionsCommandOutput extends ListLinuxSubscripti * @throws {@link LicenseManagerLinuxSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.

* + * * @public */ export class ListLinuxSubscriptionsCommand extends $Command diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/ListRegisteredSubscriptionProvidersCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/ListRegisteredSubscriptionProvidersCommand.ts index 48437942e73f9..cfd9d29af0f35 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/ListRegisteredSubscriptionProvidersCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/ListRegisteredSubscriptionProvidersCommand.ts @@ -90,6 +90,7 @@ export interface ListRegisteredSubscriptionProvidersCommandOutput * @throws {@link LicenseManagerLinuxSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.

* + * * @public */ export class ListRegisteredSubscriptionProvidersCommand extends $Command diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/ListTagsForResourceCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/ListTagsForResourceCommand.ts index 51e534caa88ef..38c4453abb167 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/ListTagsForResourceCommand.ts @@ -75,6 +75,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link LicenseManagerLinuxSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/RegisterSubscriptionProviderCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/RegisterSubscriptionProviderCommand.ts index 5ce80f30bb3af..9bff42f8d2832 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/RegisterSubscriptionProviderCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/RegisterSubscriptionProviderCommand.ts @@ -83,6 +83,7 @@ export interface RegisterSubscriptionProviderCommandOutput * @throws {@link LicenseManagerLinuxSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.

* + * * @public */ export class RegisterSubscriptionProviderCommand extends $Command diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/TagResourceCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/TagResourceCommand.ts index ed13d5db6f548..347d6d73bed33 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/TagResourceCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/TagResourceCommand.ts @@ -69,6 +69,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link LicenseManagerLinuxSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/UntagResourceCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/UntagResourceCommand.ts index 6b4ddfaacad6a..d2b7900ce6e54 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/UntagResourceCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/UntagResourceCommand.ts @@ -70,6 +70,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link LicenseManagerLinuxSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/UpdateServiceSettingsCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/UpdateServiceSettingsCommand.ts index 2ad81f71d4df8..5bc5ce464884a 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/UpdateServiceSettingsCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/UpdateServiceSettingsCommand.ts @@ -88,6 +88,7 @@ export interface UpdateServiceSettingsCommandOutput extends UpdateServiceSetting * @throws {@link LicenseManagerLinuxSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.

* + * * @public */ export class UpdateServiceSettingsCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/AssociateUserCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/AssociateUserCommand.ts index 900d81100b965..a74c5714ce0f7 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/AssociateUserCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/AssociateUserCommand.ts @@ -148,6 +148,7 @@ export interface AssociateUserCommandOutput extends AssociateUserResponse, __Met * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class AssociateUserCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/CreateLicenseServerEndpointCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/CreateLicenseServerEndpointCommand.ts index be0e51d971c9c..10d9324ce8369 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/CreateLicenseServerEndpointCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/CreateLicenseServerEndpointCommand.ts @@ -106,6 +106,7 @@ export interface CreateLicenseServerEndpointCommandOutput * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class CreateLicenseServerEndpointCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/DeleteLicenseServerEndpointCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/DeleteLicenseServerEndpointCommand.ts index 3c57be9384de8..235c0531cdef0 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/DeleteLicenseServerEndpointCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/DeleteLicenseServerEndpointCommand.ts @@ -105,6 +105,7 @@ export interface DeleteLicenseServerEndpointCommandOutput * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class DeleteLicenseServerEndpointCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/DeregisterIdentityProviderCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/DeregisterIdentityProviderCommand.ts index 0633f296aebc4..2481feeb04eed 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/DeregisterIdentityProviderCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/DeregisterIdentityProviderCommand.ts @@ -137,6 +137,7 @@ export interface DeregisterIdentityProviderCommandOutput extends DeregisterIdent * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class DeregisterIdentityProviderCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/DisassociateUserCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/DisassociateUserCommand.ts index 6da0888a8050e..01332ad186601 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/DisassociateUserCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/DisassociateUserCommand.ts @@ -137,6 +137,7 @@ export interface DisassociateUserCommandOutput extends DisassociateUserResponse, * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class DisassociateUserCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/ListIdentityProvidersCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/ListIdentityProvidersCommand.ts index c21d9bb5e3b59..5f9411d8cc9ea 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/ListIdentityProvidersCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/ListIdentityProvidersCommand.ts @@ -125,6 +125,7 @@ export interface ListIdentityProvidersCommandOutput extends ListIdentityProvider * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class ListIdentityProvidersCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/ListInstancesCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/ListInstancesCommand.ts index 5ed08d6cd18da..bb3796e7bcab4 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/ListInstancesCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/ListInstancesCommand.ts @@ -100,6 +100,7 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class ListInstancesCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/ListLicenseServerEndpointsCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/ListLicenseServerEndpointsCommand.ts index 602cdd0889b1b..e72a6ddd30b0f 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/ListLicenseServerEndpointsCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/ListLicenseServerEndpointsCommand.ts @@ -107,6 +107,7 @@ export interface ListLicenseServerEndpointsCommandOutput extends ListLicenseServ * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class ListLicenseServerEndpointsCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/ListProductSubscriptionsCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/ListProductSubscriptionsCommand.ts index c0f26b66d432d..3a4ea3342af9a 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/ListProductSubscriptionsCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/ListProductSubscriptionsCommand.ts @@ -146,6 +146,7 @@ export interface ListProductSubscriptionsCommandOutput extends ListProductSubscr * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class ListProductSubscriptionsCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/ListTagsForResourceCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/ListTagsForResourceCommand.ts index c853b1ce2dafb..ffaa0cd6c39dc 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/ListUserAssociationsCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/ListUserAssociationsCommand.ts index fea73d8f9d766..f7d80fff843b7 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/ListUserAssociationsCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/ListUserAssociationsCommand.ts @@ -146,6 +146,7 @@ export interface ListUserAssociationsCommandOutput extends ListUserAssociationsR * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class ListUserAssociationsCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/RegisterIdentityProviderCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/RegisterIdentityProviderCommand.ts index b0b6056f5639d..f9b6fcf9a38bd 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/RegisterIdentityProviderCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/RegisterIdentityProviderCommand.ts @@ -149,6 +149,7 @@ export interface RegisterIdentityProviderCommandOutput extends RegisterIdentityP * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class RegisterIdentityProviderCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/StartProductSubscriptionCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/StartProductSubscriptionCommand.ts index 7d0fd41f08ded..7b06cc8d4fb1d 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/StartProductSubscriptionCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/StartProductSubscriptionCommand.ts @@ -148,6 +148,7 @@ export interface StartProductSubscriptionCommandOutput extends StartProductSubsc * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class StartProductSubscriptionCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/StopProductSubscriptionCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/StopProductSubscriptionCommand.ts index bd11be5d70371..d69172f173c7b 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/StopProductSubscriptionCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/StopProductSubscriptionCommand.ts @@ -137,6 +137,7 @@ export interface StopProductSubscriptionCommandOutput extends StopProductSubscri * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class StopProductSubscriptionCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/TagResourceCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/TagResourceCommand.ts index d0f1d9765d09a..6f7cea0f60d3e 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/TagResourceCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/TagResourceCommand.ts @@ -69,6 +69,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/UntagResourceCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/UntagResourceCommand.ts index 9b01cff63f88a..4c96b01ba9418 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/UntagResourceCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/UntagResourceCommand.ts @@ -70,6 +70,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-license-manager-user-subscriptions/src/commands/UpdateIdentityProviderSettingsCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/UpdateIdentityProviderSettingsCommand.ts index cbd7dbc13c6bc..a9671325e14f6 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/UpdateIdentityProviderSettingsCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/UpdateIdentityProviderSettingsCommand.ts @@ -142,6 +142,7 @@ export interface UpdateIdentityProviderSettingsCommandOutput * @throws {@link LicenseManagerUserSubscriptionsServiceException} *

Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.

* + * * @public */ export class UpdateIdentityProviderSettingsCommand extends $Command diff --git a/clients/client-license-manager/src/commands/AcceptGrantCommand.ts b/clients/client-license-manager/src/commands/AcceptGrantCommand.ts index 2bfed63aa7281..5072ea0a05313 100644 --- a/clients/client-license-manager/src/commands/AcceptGrantCommand.ts +++ b/clients/client-license-manager/src/commands/AcceptGrantCommand.ts @@ -79,6 +79,7 @@ export interface AcceptGrantCommandOutput extends AcceptGrantResponse, __Metadat * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class AcceptGrantCommand extends $Command diff --git a/clients/client-license-manager/src/commands/CheckInLicenseCommand.ts b/clients/client-license-manager/src/commands/CheckInLicenseCommand.ts index 6309bb768ccdd..77319d44ec432 100644 --- a/clients/client-license-manager/src/commands/CheckInLicenseCommand.ts +++ b/clients/client-license-manager/src/commands/CheckInLicenseCommand.ts @@ -79,6 +79,7 @@ export interface CheckInLicenseCommandOutput extends CheckInLicenseResponse, __M * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class CheckInLicenseCommand extends $Command diff --git a/clients/client-license-manager/src/commands/CheckoutBorrowLicenseCommand.ts b/clients/client-license-manager/src/commands/CheckoutBorrowLicenseCommand.ts index f410d72d953a4..8ad0c2457f6c7 100644 --- a/clients/client-license-manager/src/commands/CheckoutBorrowLicenseCommand.ts +++ b/clients/client-license-manager/src/commands/CheckoutBorrowLicenseCommand.ts @@ -123,6 +123,7 @@ export interface CheckoutBorrowLicenseCommandOutput extends CheckoutBorrowLicens * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class CheckoutBorrowLicenseCommand extends $Command diff --git a/clients/client-license-manager/src/commands/CheckoutLicenseCommand.ts b/clients/client-license-manager/src/commands/CheckoutLicenseCommand.ts index 42a3225cfd34d..c1a5e2efc5bd5 100644 --- a/clients/client-license-manager/src/commands/CheckoutLicenseCommand.ts +++ b/clients/client-license-manager/src/commands/CheckoutLicenseCommand.ts @@ -115,6 +115,7 @@ export interface CheckoutLicenseCommandOutput extends CheckoutLicenseResponse, _ * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class CheckoutLicenseCommand extends $Command diff --git a/clients/client-license-manager/src/commands/CreateGrantCommand.ts b/clients/client-license-manager/src/commands/CreateGrantCommand.ts index 78ab9c7e0c38d..f6a0cd4182f55 100644 --- a/clients/client-license-manager/src/commands/CreateGrantCommand.ts +++ b/clients/client-license-manager/src/commands/CreateGrantCommand.ts @@ -90,6 +90,7 @@ export interface CreateGrantCommandOutput extends CreateGrantResponse, __Metadat * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class CreateGrantCommand extends $Command diff --git a/clients/client-license-manager/src/commands/CreateGrantVersionCommand.ts b/clients/client-license-manager/src/commands/CreateGrantVersionCommand.ts index c7c6315b16d81..d183911df272e 100644 --- a/clients/client-license-manager/src/commands/CreateGrantVersionCommand.ts +++ b/clients/client-license-manager/src/commands/CreateGrantVersionCommand.ts @@ -91,6 +91,7 @@ export interface CreateGrantVersionCommandOutput extends CreateGrantVersionRespo * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class CreateGrantVersionCommand extends $Command diff --git a/clients/client-license-manager/src/commands/CreateLicenseCommand.ts b/clients/client-license-manager/src/commands/CreateLicenseCommand.ts index 09cc7204d665b..2036d4fa7b9a6 100644 --- a/clients/client-license-manager/src/commands/CreateLicenseCommand.ts +++ b/clients/client-license-manager/src/commands/CreateLicenseCommand.ts @@ -118,6 +118,7 @@ export interface CreateLicenseCommandOutput extends CreateLicenseResponse, __Met * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class CreateLicenseCommand extends $Command diff --git a/clients/client-license-manager/src/commands/CreateLicenseConfigurationCommand.ts b/clients/client-license-manager/src/commands/CreateLicenseConfigurationCommand.ts index a3b11fbecbd32..41fb4fedea277 100644 --- a/clients/client-license-manager/src/commands/CreateLicenseConfigurationCommand.ts +++ b/clients/client-license-manager/src/commands/CreateLicenseConfigurationCommand.ts @@ -107,6 +107,7 @@ export interface CreateLicenseConfigurationCommandOutput extends CreateLicenseCo * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class CreateLicenseConfigurationCommand extends $Command diff --git a/clients/client-license-manager/src/commands/CreateLicenseConversionTaskForResourceCommand.ts b/clients/client-license-manager/src/commands/CreateLicenseConversionTaskForResourceCommand.ts index 9be76ea5996a8..9d8adc0888a0c 100644 --- a/clients/client-license-manager/src/commands/CreateLicenseConversionTaskForResourceCommand.ts +++ b/clients/client-license-manager/src/commands/CreateLicenseConversionTaskForResourceCommand.ts @@ -89,6 +89,7 @@ export interface CreateLicenseConversionTaskForResourceCommandOutput * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class CreateLicenseConversionTaskForResourceCommand extends $Command diff --git a/clients/client-license-manager/src/commands/CreateLicenseManagerReportGeneratorCommand.ts b/clients/client-license-manager/src/commands/CreateLicenseManagerReportGeneratorCommand.ts index 57da3203993c3..70a5774506469 100644 --- a/clients/client-license-manager/src/commands/CreateLicenseManagerReportGeneratorCommand.ts +++ b/clients/client-license-manager/src/commands/CreateLicenseManagerReportGeneratorCommand.ts @@ -108,6 +108,7 @@ export interface CreateLicenseManagerReportGeneratorCommandOutput * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class CreateLicenseManagerReportGeneratorCommand extends $Command diff --git a/clients/client-license-manager/src/commands/CreateLicenseVersionCommand.ts b/clients/client-license-manager/src/commands/CreateLicenseVersionCommand.ts index 2838354b98fea..3b9193d5c72dc 100644 --- a/clients/client-license-manager/src/commands/CreateLicenseVersionCommand.ts +++ b/clients/client-license-manager/src/commands/CreateLicenseVersionCommand.ts @@ -122,6 +122,7 @@ export interface CreateLicenseVersionCommandOutput extends CreateLicenseVersionR * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class CreateLicenseVersionCommand extends $Command diff --git a/clients/client-license-manager/src/commands/CreateTokenCommand.ts b/clients/client-license-manager/src/commands/CreateTokenCommand.ts index 0513b1fda9cb4..9444e9e51e348 100644 --- a/clients/client-license-manager/src/commands/CreateTokenCommand.ts +++ b/clients/client-license-manager/src/commands/CreateTokenCommand.ts @@ -93,6 +93,7 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class CreateTokenCommand extends $Command diff --git a/clients/client-license-manager/src/commands/DeleteGrantCommand.ts b/clients/client-license-manager/src/commands/DeleteGrantCommand.ts index e831ac5acba69..88f3e7cded555 100644 --- a/clients/client-license-manager/src/commands/DeleteGrantCommand.ts +++ b/clients/client-license-manager/src/commands/DeleteGrantCommand.ts @@ -81,6 +81,7 @@ export interface DeleteGrantCommandOutput extends DeleteGrantResponse, __Metadat * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class DeleteGrantCommand extends $Command diff --git a/clients/client-license-manager/src/commands/DeleteLicenseCommand.ts b/clients/client-license-manager/src/commands/DeleteLicenseCommand.ts index 5227dc5107894..ce72dcca66d51 100644 --- a/clients/client-license-manager/src/commands/DeleteLicenseCommand.ts +++ b/clients/client-license-manager/src/commands/DeleteLicenseCommand.ts @@ -82,6 +82,7 @@ export interface DeleteLicenseCommandOutput extends DeleteLicenseResponse, __Met * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class DeleteLicenseCommand extends $Command diff --git a/clients/client-license-manager/src/commands/DeleteLicenseConfigurationCommand.ts b/clients/client-license-manager/src/commands/DeleteLicenseConfigurationCommand.ts index 61bcb75a8f766..fdf9c92d44537 100644 --- a/clients/client-license-manager/src/commands/DeleteLicenseConfigurationCommand.ts +++ b/clients/client-license-manager/src/commands/DeleteLicenseConfigurationCommand.ts @@ -70,6 +70,7 @@ export interface DeleteLicenseConfigurationCommandOutput extends DeleteLicenseCo * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class DeleteLicenseConfigurationCommand extends $Command diff --git a/clients/client-license-manager/src/commands/DeleteLicenseManagerReportGeneratorCommand.ts b/clients/client-license-manager/src/commands/DeleteLicenseManagerReportGeneratorCommand.ts index 36293802a398d..ab2428c6201bf 100644 --- a/clients/client-license-manager/src/commands/DeleteLicenseManagerReportGeneratorCommand.ts +++ b/clients/client-license-manager/src/commands/DeleteLicenseManagerReportGeneratorCommand.ts @@ -88,6 +88,7 @@ export interface DeleteLicenseManagerReportGeneratorCommandOutput * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class DeleteLicenseManagerReportGeneratorCommand extends $Command diff --git a/clients/client-license-manager/src/commands/DeleteTokenCommand.ts b/clients/client-license-manager/src/commands/DeleteTokenCommand.ts index 3acb82dd9cb8b..518a41c3b27ee 100644 --- a/clients/client-license-manager/src/commands/DeleteTokenCommand.ts +++ b/clients/client-license-manager/src/commands/DeleteTokenCommand.ts @@ -75,6 +75,7 @@ export interface DeleteTokenCommandOutput extends DeleteTokenResponse, __Metadat * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class DeleteTokenCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ExtendLicenseConsumptionCommand.ts b/clients/client-license-manager/src/commands/ExtendLicenseConsumptionCommand.ts index 5b6c2c494a29c..b18ef9ba5a282 100644 --- a/clients/client-license-manager/src/commands/ExtendLicenseConsumptionCommand.ts +++ b/clients/client-license-manager/src/commands/ExtendLicenseConsumptionCommand.ts @@ -79,6 +79,7 @@ export interface ExtendLicenseConsumptionCommandOutput extends ExtendLicenseCons * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ExtendLicenseConsumptionCommand extends $Command diff --git a/clients/client-license-manager/src/commands/GetAccessTokenCommand.ts b/clients/client-license-manager/src/commands/GetAccessTokenCommand.ts index 663b27ecc30d0..14b15c2837042 100644 --- a/clients/client-license-manager/src/commands/GetAccessTokenCommand.ts +++ b/clients/client-license-manager/src/commands/GetAccessTokenCommand.ts @@ -75,6 +75,7 @@ export interface GetAccessTokenCommandOutput extends GetAccessTokenResponse, __M * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class GetAccessTokenCommand extends $Command diff --git a/clients/client-license-manager/src/commands/GetGrantCommand.ts b/clients/client-license-manager/src/commands/GetGrantCommand.ts index 0f4d00177aaa7..1319621906bdc 100644 --- a/clients/client-license-manager/src/commands/GetGrantCommand.ts +++ b/clients/client-license-manager/src/commands/GetGrantCommand.ts @@ -94,6 +94,7 @@ export interface GetGrantCommandOutput extends GetGrantResponse, __MetadataBeare * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class GetGrantCommand extends $Command diff --git a/clients/client-license-manager/src/commands/GetLicenseCommand.ts b/clients/client-license-manager/src/commands/GetLicenseCommand.ts index 605e8c519def7..4955f8dba57eb 100644 --- a/clients/client-license-manager/src/commands/GetLicenseCommand.ts +++ b/clients/client-license-manager/src/commands/GetLicenseCommand.ts @@ -120,6 +120,7 @@ export interface GetLicenseCommandOutput extends GetLicenseResponse, __MetadataB * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class GetLicenseCommand extends $Command diff --git a/clients/client-license-manager/src/commands/GetLicenseConfigurationCommand.ts b/clients/client-license-manager/src/commands/GetLicenseConfigurationCommand.ts index 8d4b125c705b9..99bbe6404d590 100644 --- a/clients/client-license-manager/src/commands/GetLicenseConfigurationCommand.ts +++ b/clients/client-license-manager/src/commands/GetLicenseConfigurationCommand.ts @@ -119,6 +119,7 @@ export interface GetLicenseConfigurationCommandOutput extends GetLicenseConfigur * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class GetLicenseConfigurationCommand extends $Command diff --git a/clients/client-license-manager/src/commands/GetLicenseConversionTaskCommand.ts b/clients/client-license-manager/src/commands/GetLicenseConversionTaskCommand.ts index 5d8bc536f5e67..3fda13ba4e247 100644 --- a/clients/client-license-manager/src/commands/GetLicenseConversionTaskCommand.ts +++ b/clients/client-license-manager/src/commands/GetLicenseConversionTaskCommand.ts @@ -83,6 +83,7 @@ export interface GetLicenseConversionTaskCommandOutput extends GetLicenseConvers * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class GetLicenseConversionTaskCommand extends $Command diff --git a/clients/client-license-manager/src/commands/GetLicenseManagerReportGeneratorCommand.ts b/clients/client-license-manager/src/commands/GetLicenseManagerReportGeneratorCommand.ts index 7eb4de26a4c22..aebd83b3481ff 100644 --- a/clients/client-license-manager/src/commands/GetLicenseManagerReportGeneratorCommand.ts +++ b/clients/client-license-manager/src/commands/GetLicenseManagerReportGeneratorCommand.ts @@ -116,6 +116,7 @@ export interface GetLicenseManagerReportGeneratorCommandOutput * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class GetLicenseManagerReportGeneratorCommand extends $Command diff --git a/clients/client-license-manager/src/commands/GetLicenseUsageCommand.ts b/clients/client-license-manager/src/commands/GetLicenseUsageCommand.ts index 108e066131200..ad5abe371fbd1 100644 --- a/clients/client-license-manager/src/commands/GetLicenseUsageCommand.ts +++ b/clients/client-license-manager/src/commands/GetLicenseUsageCommand.ts @@ -83,6 +83,7 @@ export interface GetLicenseUsageCommandOutput extends GetLicenseUsageResponse, _ * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class GetLicenseUsageCommand extends $Command diff --git a/clients/client-license-manager/src/commands/GetServiceSettingsCommand.ts b/clients/client-license-manager/src/commands/GetServiceSettingsCommand.ts index 17b1f1a19000e..38da242da739f 100644 --- a/clients/client-license-manager/src/commands/GetServiceSettingsCommand.ts +++ b/clients/client-license-manager/src/commands/GetServiceSettingsCommand.ts @@ -72,6 +72,7 @@ export interface GetServiceSettingsCommandOutput extends GetServiceSettingsRespo * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class GetServiceSettingsCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListAssociationsForLicenseConfigurationCommand.ts b/clients/client-license-manager/src/commands/ListAssociationsForLicenseConfigurationCommand.ts index 9c285f2cd62f8..348f56b43a208 100644 --- a/clients/client-license-manager/src/commands/ListAssociationsForLicenseConfigurationCommand.ts +++ b/clients/client-license-manager/src/commands/ListAssociationsForLicenseConfigurationCommand.ts @@ -97,6 +97,7 @@ export interface ListAssociationsForLicenseConfigurationCommandOutput * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListAssociationsForLicenseConfigurationCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListDistributedGrantsCommand.ts b/clients/client-license-manager/src/commands/ListDistributedGrantsCommand.ts index 4322fcd49d770..bcface524cd09 100644 --- a/clients/client-license-manager/src/commands/ListDistributedGrantsCommand.ts +++ b/clients/client-license-manager/src/commands/ListDistributedGrantsCommand.ts @@ -108,6 +108,7 @@ export interface ListDistributedGrantsCommandOutput extends ListDistributedGrant * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListDistributedGrantsCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListFailuresForLicenseConfigurationOperationsCommand.ts b/clients/client-license-manager/src/commands/ListFailuresForLicenseConfigurationOperationsCommand.ts index 2d4c224cb5ce3..79937860140da 100644 --- a/clients/client-license-manager/src/commands/ListFailuresForLicenseConfigurationOperationsCommand.ts +++ b/clients/client-license-manager/src/commands/ListFailuresForLicenseConfigurationOperationsCommand.ts @@ -99,6 +99,7 @@ export interface ListFailuresForLicenseConfigurationOperationsCommandOutput * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListFailuresForLicenseConfigurationOperationsCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListLicenseConfigurationsCommand.ts b/clients/client-license-manager/src/commands/ListLicenseConfigurationsCommand.ts index 4830231d5a3c1..9a93377799f86 100644 --- a/clients/client-license-manager/src/commands/ListLicenseConfigurationsCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicenseConfigurationsCommand.ts @@ -133,6 +133,7 @@ export interface ListLicenseConfigurationsCommandOutput extends ListLicenseConfi * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListLicenseConfigurationsCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListLicenseConversionTasksCommand.ts b/clients/client-license-manager/src/commands/ListLicenseConversionTasksCommand.ts index bfd0108ca5334..376a757b32281 100644 --- a/clients/client-license-manager/src/commands/ListLicenseConversionTasksCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicenseConversionTasksCommand.ts @@ -97,6 +97,7 @@ export interface ListLicenseConversionTasksCommandOutput extends ListLicenseConv * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListLicenseConversionTasksCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListLicenseManagerReportGeneratorsCommand.ts b/clients/client-license-manager/src/commands/ListLicenseManagerReportGeneratorsCommand.ts index da3b53b25ccd9..a0ef86a5e09a1 100644 --- a/clients/client-license-manager/src/commands/ListLicenseManagerReportGeneratorsCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicenseManagerReportGeneratorsCommand.ts @@ -131,6 +131,7 @@ export interface ListLicenseManagerReportGeneratorsCommandOutput * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListLicenseManagerReportGeneratorsCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListLicenseSpecificationsForResourceCommand.ts b/clients/client-license-manager/src/commands/ListLicenseSpecificationsForResourceCommand.ts index 2521f1aa8db21..a955c7b85dffc 100644 --- a/clients/client-license-manager/src/commands/ListLicenseSpecificationsForResourceCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicenseSpecificationsForResourceCommand.ts @@ -87,6 +87,7 @@ export interface ListLicenseSpecificationsForResourceCommandOutput * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListLicenseSpecificationsForResourceCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListLicenseVersionsCommand.ts b/clients/client-license-manager/src/commands/ListLicenseVersionsCommand.ts index 31ee850685a0b..f61ac9acce227 100644 --- a/clients/client-license-manager/src/commands/ListLicenseVersionsCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicenseVersionsCommand.ts @@ -121,6 +121,7 @@ export interface ListLicenseVersionsCommandOutput extends ListLicenseVersionsRes * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListLicenseVersionsCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListLicensesCommand.ts b/clients/client-license-manager/src/commands/ListLicensesCommand.ts index 247c309135b97..c5179e81b3b68 100644 --- a/clients/client-license-manager/src/commands/ListLicensesCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicensesCommand.ts @@ -134,6 +134,7 @@ export interface ListLicensesCommandOutput extends ListLicensesResponse, __Metad * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListLicensesCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListReceivedGrantsCommand.ts b/clients/client-license-manager/src/commands/ListReceivedGrantsCommand.ts index d7013a222f644..115414b750d6b 100644 --- a/clients/client-license-manager/src/commands/ListReceivedGrantsCommand.ts +++ b/clients/client-license-manager/src/commands/ListReceivedGrantsCommand.ts @@ -110,6 +110,7 @@ export interface ListReceivedGrantsCommandOutput extends ListReceivedGrantsRespo * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListReceivedGrantsCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListReceivedGrantsForOrganizationCommand.ts b/clients/client-license-manager/src/commands/ListReceivedGrantsForOrganizationCommand.ts index 6e755d2434cf7..f544a02e31364 100644 --- a/clients/client-license-manager/src/commands/ListReceivedGrantsForOrganizationCommand.ts +++ b/clients/client-license-manager/src/commands/ListReceivedGrantsForOrganizationCommand.ts @@ -114,6 +114,7 @@ export interface ListReceivedGrantsForOrganizationCommandOutput * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListReceivedGrantsForOrganizationCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListReceivedLicensesCommand.ts b/clients/client-license-manager/src/commands/ListReceivedLicensesCommand.ts index 74cf50fa495dc..ed6ff9ed08df8 100644 --- a/clients/client-license-manager/src/commands/ListReceivedLicensesCommand.ts +++ b/clients/client-license-manager/src/commands/ListReceivedLicensesCommand.ts @@ -144,6 +144,7 @@ export interface ListReceivedLicensesCommandOutput extends ListReceivedLicensesR * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListReceivedLicensesCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListReceivedLicensesForOrganizationCommand.ts b/clients/client-license-manager/src/commands/ListReceivedLicensesForOrganizationCommand.ts index f6b2725001ee5..c6c0f1a68365f 100644 --- a/clients/client-license-manager/src/commands/ListReceivedLicensesForOrganizationCommand.ts +++ b/clients/client-license-manager/src/commands/ListReceivedLicensesForOrganizationCommand.ts @@ -149,6 +149,7 @@ export interface ListReceivedLicensesForOrganizationCommandOutput * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListReceivedLicensesForOrganizationCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListResourceInventoryCommand.ts b/clients/client-license-manager/src/commands/ListResourceInventoryCommand.ts index d3e8833e16d68..0a0ea7ab8fab4 100644 --- a/clients/client-license-manager/src/commands/ListResourceInventoryCommand.ts +++ b/clients/client-license-manager/src/commands/ListResourceInventoryCommand.ts @@ -95,6 +95,7 @@ export interface ListResourceInventoryCommandOutput extends ListResourceInventor * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListResourceInventoryCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListTagsForResourceCommand.ts b/clients/client-license-manager/src/commands/ListTagsForResourceCommand.ts index 6564afe002540..66c11295ae826 100644 --- a/clients/client-license-manager/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-license-manager/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListTokensCommand.ts b/clients/client-license-manager/src/commands/ListTokensCommand.ts index abc57fa68a256..4dbaf06b971be 100644 --- a/clients/client-license-manager/src/commands/ListTokensCommand.ts +++ b/clients/client-license-manager/src/commands/ListTokensCommand.ts @@ -98,6 +98,7 @@ export interface ListTokensCommandOutput extends ListTokensResponse, __MetadataB * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListTokensCommand extends $Command diff --git a/clients/client-license-manager/src/commands/ListUsageForLicenseConfigurationCommand.ts b/clients/client-license-manager/src/commands/ListUsageForLicenseConfigurationCommand.ts index 232e36a477856..6c405f0b16589 100644 --- a/clients/client-license-manager/src/commands/ListUsageForLicenseConfigurationCommand.ts +++ b/clients/client-license-manager/src/commands/ListUsageForLicenseConfigurationCommand.ts @@ -101,6 +101,7 @@ export interface ListUsageForLicenseConfigurationCommandOutput * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class ListUsageForLicenseConfigurationCommand extends $Command diff --git a/clients/client-license-manager/src/commands/RejectGrantCommand.ts b/clients/client-license-manager/src/commands/RejectGrantCommand.ts index 93e9246d9b577..1c99fd4739691 100644 --- a/clients/client-license-manager/src/commands/RejectGrantCommand.ts +++ b/clients/client-license-manager/src/commands/RejectGrantCommand.ts @@ -79,6 +79,7 @@ export interface RejectGrantCommandOutput extends RejectGrantResponse, __Metadat * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class RejectGrantCommand extends $Command diff --git a/clients/client-license-manager/src/commands/TagResourceCommand.ts b/clients/client-license-manager/src/commands/TagResourceCommand.ts index e5bd191845f63..a6169915c4ed2 100644 --- a/clients/client-license-manager/src/commands/TagResourceCommand.ts +++ b/clients/client-license-manager/src/commands/TagResourceCommand.ts @@ -75,6 +75,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-license-manager/src/commands/UntagResourceCommand.ts b/clients/client-license-manager/src/commands/UntagResourceCommand.ts index 84f335a84ee8a..ecc51ea7e2ec7 100644 --- a/clients/client-license-manager/src/commands/UntagResourceCommand.ts +++ b/clients/client-license-manager/src/commands/UntagResourceCommand.ts @@ -72,6 +72,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-license-manager/src/commands/UpdateLicenseConfigurationCommand.ts b/clients/client-license-manager/src/commands/UpdateLicenseConfigurationCommand.ts index b9f6814ab2474..91341db9c9a07 100644 --- a/clients/client-license-manager/src/commands/UpdateLicenseConfigurationCommand.ts +++ b/clients/client-license-manager/src/commands/UpdateLicenseConfigurationCommand.ts @@ -95,6 +95,7 @@ export interface UpdateLicenseConfigurationCommandOutput extends UpdateLicenseCo * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class UpdateLicenseConfigurationCommand extends $Command diff --git a/clients/client-license-manager/src/commands/UpdateLicenseManagerReportGeneratorCommand.ts b/clients/client-license-manager/src/commands/UpdateLicenseManagerReportGeneratorCommand.ts index 9e79587b523f5..125e07daefb3f 100644 --- a/clients/client-license-manager/src/commands/UpdateLicenseManagerReportGeneratorCommand.ts +++ b/clients/client-license-manager/src/commands/UpdateLicenseManagerReportGeneratorCommand.ts @@ -102,6 +102,7 @@ export interface UpdateLicenseManagerReportGeneratorCommandOutput * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class UpdateLicenseManagerReportGeneratorCommand extends $Command diff --git a/clients/client-license-manager/src/commands/UpdateLicenseSpecificationsForResourceCommand.ts b/clients/client-license-manager/src/commands/UpdateLicenseSpecificationsForResourceCommand.ts index 4b9e74122e02f..2ace745c7bc52 100644 --- a/clients/client-license-manager/src/commands/UpdateLicenseSpecificationsForResourceCommand.ts +++ b/clients/client-license-manager/src/commands/UpdateLicenseSpecificationsForResourceCommand.ts @@ -101,6 +101,7 @@ export interface UpdateLicenseSpecificationsForResourceCommandOutput * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class UpdateLicenseSpecificationsForResourceCommand extends $Command diff --git a/clients/client-license-manager/src/commands/UpdateServiceSettingsCommand.ts b/clients/client-license-manager/src/commands/UpdateServiceSettingsCommand.ts index 04b5d7779f19c..8144bc5d3a0c9 100644 --- a/clients/client-license-manager/src/commands/UpdateServiceSettingsCommand.ts +++ b/clients/client-license-manager/src/commands/UpdateServiceSettingsCommand.ts @@ -74,6 +74,7 @@ export interface UpdateServiceSettingsCommandOutput extends UpdateServiceSetting * @throws {@link LicenseManagerServiceException} *

Base exception class for all service exceptions from LicenseManager service.

* + * * @public */ export class UpdateServiceSettingsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/AllocateStaticIpCommand.ts b/clients/client-lightsail/src/commands/AllocateStaticIpCommand.ts index 4fdf611281d24..3e5a85f559566 100644 --- a/clients/client-lightsail/src/commands/AllocateStaticIpCommand.ts +++ b/clients/client-lightsail/src/commands/AllocateStaticIpCommand.ts @@ -103,6 +103,7 @@ export interface AllocateStaticIpCommandOutput extends AllocateStaticIpResult, _ * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class AllocateStaticIpCommand extends $Command diff --git a/clients/client-lightsail/src/commands/AttachCertificateToDistributionCommand.ts b/clients/client-lightsail/src/commands/AttachCertificateToDistributionCommand.ts index da37c97c93df7..8071d779def3e 100644 --- a/clients/client-lightsail/src/commands/AttachCertificateToDistributionCommand.ts +++ b/clients/client-lightsail/src/commands/AttachCertificateToDistributionCommand.ts @@ -115,6 +115,7 @@ export interface AttachCertificateToDistributionCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class AttachCertificateToDistributionCommand extends $Command diff --git a/clients/client-lightsail/src/commands/AttachDiskCommand.ts b/clients/client-lightsail/src/commands/AttachDiskCommand.ts index 29f2fe2c87302..2abe3ae24568b 100644 --- a/clients/client-lightsail/src/commands/AttachDiskCommand.ts +++ b/clients/client-lightsail/src/commands/AttachDiskCommand.ts @@ -110,6 +110,7 @@ export interface AttachDiskCommandOutput extends AttachDiskResult, __MetadataBea * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class AttachDiskCommand extends $Command diff --git a/clients/client-lightsail/src/commands/AttachInstancesToLoadBalancerCommand.ts b/clients/client-lightsail/src/commands/AttachInstancesToLoadBalancerCommand.ts index d94bc219c48c2..83298e309a67d 100644 --- a/clients/client-lightsail/src/commands/AttachInstancesToLoadBalancerCommand.ts +++ b/clients/client-lightsail/src/commands/AttachInstancesToLoadBalancerCommand.ts @@ -116,6 +116,7 @@ export interface AttachInstancesToLoadBalancerCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class AttachInstancesToLoadBalancerCommand extends $Command diff --git a/clients/client-lightsail/src/commands/AttachLoadBalancerTlsCertificateCommand.ts b/clients/client-lightsail/src/commands/AttachLoadBalancerTlsCertificateCommand.ts index 88b32977a4771..eaa9d5ae2aa43 100644 --- a/clients/client-lightsail/src/commands/AttachLoadBalancerTlsCertificateCommand.ts +++ b/clients/client-lightsail/src/commands/AttachLoadBalancerTlsCertificateCommand.ts @@ -117,6 +117,7 @@ export interface AttachLoadBalancerTlsCertificateCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class AttachLoadBalancerTlsCertificateCommand extends $Command diff --git a/clients/client-lightsail/src/commands/AttachStaticIpCommand.ts b/clients/client-lightsail/src/commands/AttachStaticIpCommand.ts index 53da9645d4959..579dd6a24824c 100644 --- a/clients/client-lightsail/src/commands/AttachStaticIpCommand.ts +++ b/clients/client-lightsail/src/commands/AttachStaticIpCommand.ts @@ -104,6 +104,7 @@ export interface AttachStaticIpCommandOutput extends AttachStaticIpResult, __Met * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class AttachStaticIpCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CloseInstancePublicPortsCommand.ts b/clients/client-lightsail/src/commands/CloseInstancePublicPortsCommand.ts index 3cb628ec7c908..49719480fcceb 100644 --- a/clients/client-lightsail/src/commands/CloseInstancePublicPortsCommand.ts +++ b/clients/client-lightsail/src/commands/CloseInstancePublicPortsCommand.ts @@ -118,6 +118,7 @@ export interface CloseInstancePublicPortsCommandOutput extends CloseInstancePubl * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CloseInstancePublicPortsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CopySnapshotCommand.ts b/clients/client-lightsail/src/commands/CopySnapshotCommand.ts index e2519ac309b53..86b77b517b6f2 100644 --- a/clients/client-lightsail/src/commands/CopySnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/CopySnapshotCommand.ts @@ -117,6 +117,7 @@ export interface CopySnapshotCommandOutput extends CopySnapshotResult, __Metadat * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CopySnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateBucketAccessKeyCommand.ts b/clients/client-lightsail/src/commands/CreateBucketAccessKeyCommand.ts index 9a55e98f07ff0..2746b3e484f0a 100644 --- a/clients/client-lightsail/src/commands/CreateBucketAccessKeyCommand.ts +++ b/clients/client-lightsail/src/commands/CreateBucketAccessKeyCommand.ts @@ -122,6 +122,7 @@ export interface CreateBucketAccessKeyCommandOutput extends CreateBucketAccessKe * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateBucketAccessKeyCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateBucketCommand.ts b/clients/client-lightsail/src/commands/CreateBucketCommand.ts index c3e18c53b2f25..6dd3b04d2b855 100644 --- a/clients/client-lightsail/src/commands/CreateBucketCommand.ts +++ b/clients/client-lightsail/src/commands/CreateBucketCommand.ts @@ -148,6 +148,7 @@ export interface CreateBucketCommandOutput extends CreateBucketResult, __Metadat * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateBucketCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateCertificateCommand.ts b/clients/client-lightsail/src/commands/CreateCertificateCommand.ts index ce4abedc5e0c8..2f0d95a880581 100644 --- a/clients/client-lightsail/src/commands/CreateCertificateCommand.ts +++ b/clients/client-lightsail/src/commands/CreateCertificateCommand.ts @@ -192,6 +192,7 @@ export interface CreateCertificateCommandOutput extends CreateCertificateResult, * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateCertificateCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateCloudFormationStackCommand.ts b/clients/client-lightsail/src/commands/CreateCloudFormationStackCommand.ts index 0e3178430709a..ba817616af76e 100644 --- a/clients/client-lightsail/src/commands/CreateCloudFormationStackCommand.ts +++ b/clients/client-lightsail/src/commands/CreateCloudFormationStackCommand.ts @@ -118,6 +118,7 @@ export interface CreateCloudFormationStackCommandOutput extends CreateCloudForma * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateCloudFormationStackCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateContactMethodCommand.ts b/clients/client-lightsail/src/commands/CreateContactMethodCommand.ts index 70483c58b762c..749cbade8668a 100644 --- a/clients/client-lightsail/src/commands/CreateContactMethodCommand.ts +++ b/clients/client-lightsail/src/commands/CreateContactMethodCommand.ts @@ -104,6 +104,7 @@ export interface CreateContactMethodCommandOutput extends CreateContactMethodRes * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateContactMethodCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateContainerServiceCommand.ts b/clients/client-lightsail/src/commands/CreateContainerServiceCommand.ts index 4647cd23502b2..1648c8baf083c 100644 --- a/clients/client-lightsail/src/commands/CreateContainerServiceCommand.ts +++ b/clients/client-lightsail/src/commands/CreateContainerServiceCommand.ts @@ -227,6 +227,7 @@ export interface CreateContainerServiceCommandOutput extends CreateContainerServ * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateContainerServiceCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateContainerServiceDeploymentCommand.ts b/clients/client-lightsail/src/commands/CreateContainerServiceDeploymentCommand.ts index 56dddf99d7a6c..dcc77bfbd9851 100644 --- a/clients/client-lightsail/src/commands/CreateContainerServiceDeploymentCommand.ts +++ b/clients/client-lightsail/src/commands/CreateContainerServiceDeploymentCommand.ts @@ -218,6 +218,7 @@ export interface CreateContainerServiceDeploymentCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateContainerServiceDeploymentCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateContainerServiceRegistryLoginCommand.ts b/clients/client-lightsail/src/commands/CreateContainerServiceRegistryLoginCommand.ts index fbcf8d0c7ec4f..2bce7542c108a 100644 --- a/clients/client-lightsail/src/commands/CreateContainerServiceRegistryLoginCommand.ts +++ b/clients/client-lightsail/src/commands/CreateContainerServiceRegistryLoginCommand.ts @@ -108,6 +108,7 @@ export interface CreateContainerServiceRegistryLoginCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateContainerServiceRegistryLoginCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateDiskCommand.ts b/clients/client-lightsail/src/commands/CreateDiskCommand.ts index cb5084ee6607a..ade2beeb54d4c 100644 --- a/clients/client-lightsail/src/commands/CreateDiskCommand.ts +++ b/clients/client-lightsail/src/commands/CreateDiskCommand.ts @@ -126,6 +126,7 @@ export interface CreateDiskCommandOutput extends CreateDiskResult, __MetadataBea * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateDiskCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateDiskFromSnapshotCommand.ts b/clients/client-lightsail/src/commands/CreateDiskFromSnapshotCommand.ts index 46114be28b5a9..f60b41fa3f952 100644 --- a/clients/client-lightsail/src/commands/CreateDiskFromSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/CreateDiskFromSnapshotCommand.ts @@ -132,6 +132,7 @@ export interface CreateDiskFromSnapshotCommandOutput extends CreateDiskFromSnaps * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateDiskFromSnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateDiskSnapshotCommand.ts b/clients/client-lightsail/src/commands/CreateDiskSnapshotCommand.ts index 4a9e7720f086a..60113736c46a0 100644 --- a/clients/client-lightsail/src/commands/CreateDiskSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/CreateDiskSnapshotCommand.ts @@ -129,6 +129,7 @@ export interface CreateDiskSnapshotCommandOutput extends CreateDiskSnapshotResul * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateDiskSnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateDistributionCommand.ts b/clients/client-lightsail/src/commands/CreateDistributionCommand.ts index 92e5ab34d544e..67731de501e7e 100644 --- a/clients/client-lightsail/src/commands/CreateDistributionCommand.ts +++ b/clients/client-lightsail/src/commands/CreateDistributionCommand.ts @@ -220,6 +220,7 @@ export interface CreateDistributionCommandOutput extends CreateDistributionResul * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateDistributionCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateDomainCommand.ts b/clients/client-lightsail/src/commands/CreateDomainCommand.ts index a9b9402c9f231..07eb5a2ab0faf 100644 --- a/clients/client-lightsail/src/commands/CreateDomainCommand.ts +++ b/clients/client-lightsail/src/commands/CreateDomainCommand.ts @@ -109,6 +109,7 @@ export interface CreateDomainCommandOutput extends CreateDomainResult, __Metadat * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateDomainCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateDomainEntryCommand.ts b/clients/client-lightsail/src/commands/CreateDomainEntryCommand.ts index 89bc7e45872d1..1ae78ab3209c5 100644 --- a/clients/client-lightsail/src/commands/CreateDomainEntryCommand.ts +++ b/clients/client-lightsail/src/commands/CreateDomainEntryCommand.ts @@ -116,6 +116,7 @@ export interface CreateDomainEntryCommandOutput extends CreateDomainEntryResult, * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateDomainEntryCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateGUISessionAccessDetailsCommand.ts b/clients/client-lightsail/src/commands/CreateGUISessionAccessDetailsCommand.ts index 1a9f58042a027..0d30794872863 100644 --- a/clients/client-lightsail/src/commands/CreateGUISessionAccessDetailsCommand.ts +++ b/clients/client-lightsail/src/commands/CreateGUISessionAccessDetailsCommand.ts @@ -101,6 +101,7 @@ export interface CreateGUISessionAccessDetailsCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateGUISessionAccessDetailsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateInstanceSnapshotCommand.ts b/clients/client-lightsail/src/commands/CreateInstanceSnapshotCommand.ts index f789aed737703..3ea49805f9f60 100644 --- a/clients/client-lightsail/src/commands/CreateInstanceSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/CreateInstanceSnapshotCommand.ts @@ -113,6 +113,7 @@ export interface CreateInstanceSnapshotCommandOutput extends CreateInstanceSnaps * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateInstanceSnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateInstancesCommand.ts b/clients/client-lightsail/src/commands/CreateInstancesCommand.ts index 5fbf090fcdb25..9c070c7fb4ea9 100644 --- a/clients/client-lightsail/src/commands/CreateInstancesCommand.ts +++ b/clients/client-lightsail/src/commands/CreateInstancesCommand.ts @@ -132,6 +132,7 @@ export interface CreateInstancesCommandOutput extends CreateInstancesResult, __M * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateInstancesCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateInstancesFromSnapshotCommand.ts b/clients/client-lightsail/src/commands/CreateInstancesFromSnapshotCommand.ts index ea8a07d50344d..2b65524273578 100644 --- a/clients/client-lightsail/src/commands/CreateInstancesFromSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/CreateInstancesFromSnapshotCommand.ts @@ -144,6 +144,7 @@ export interface CreateInstancesFromSnapshotCommandOutput extends CreateInstance * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateInstancesFromSnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateKeyPairCommand.ts b/clients/client-lightsail/src/commands/CreateKeyPairCommand.ts index 19df4d09b046b..4ef79dc4ed789 100644 --- a/clients/client-lightsail/src/commands/CreateKeyPairCommand.ts +++ b/clients/client-lightsail/src/commands/CreateKeyPairCommand.ts @@ -135,6 +135,7 @@ export interface CreateKeyPairCommandOutput extends CreateKeyPairResult, __Metad * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateKeyPairCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateLoadBalancerCommand.ts b/clients/client-lightsail/src/commands/CreateLoadBalancerCommand.ts index 6000cfb864c9d..caace418eff61 100644 --- a/clients/client-lightsail/src/commands/CreateLoadBalancerCommand.ts +++ b/clients/client-lightsail/src/commands/CreateLoadBalancerCommand.ts @@ -125,6 +125,7 @@ export interface CreateLoadBalancerCommandOutput extends CreateLoadBalancerResul * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateLoadBalancerCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateLoadBalancerTlsCertificateCommand.ts b/clients/client-lightsail/src/commands/CreateLoadBalancerTlsCertificateCommand.ts index 5f091b98ef310..fec39e1d26e9b 100644 --- a/clients/client-lightsail/src/commands/CreateLoadBalancerTlsCertificateCommand.ts +++ b/clients/client-lightsail/src/commands/CreateLoadBalancerTlsCertificateCommand.ts @@ -123,6 +123,7 @@ export interface CreateLoadBalancerTlsCertificateCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateLoadBalancerTlsCertificateCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateRelationalDatabaseCommand.ts b/clients/client-lightsail/src/commands/CreateRelationalDatabaseCommand.ts index f356dbed2392a..9f43847bcc0c7 100644 --- a/clients/client-lightsail/src/commands/CreateRelationalDatabaseCommand.ts +++ b/clients/client-lightsail/src/commands/CreateRelationalDatabaseCommand.ts @@ -124,6 +124,7 @@ export interface CreateRelationalDatabaseCommandOutput extends CreateRelationalD * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateRelationalDatabaseCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateRelationalDatabaseFromSnapshotCommand.ts b/clients/client-lightsail/src/commands/CreateRelationalDatabaseFromSnapshotCommand.ts index 5b9b959a921ab..3cde5ec854fca 100644 --- a/clients/client-lightsail/src/commands/CreateRelationalDatabaseFromSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/CreateRelationalDatabaseFromSnapshotCommand.ts @@ -130,6 +130,7 @@ export interface CreateRelationalDatabaseFromSnapshotCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateRelationalDatabaseFromSnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/CreateRelationalDatabaseSnapshotCommand.ts b/clients/client-lightsail/src/commands/CreateRelationalDatabaseSnapshotCommand.ts index a9c0f1d6e395d..671b465f992f6 100644 --- a/clients/client-lightsail/src/commands/CreateRelationalDatabaseSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/CreateRelationalDatabaseSnapshotCommand.ts @@ -118,6 +118,7 @@ export interface CreateRelationalDatabaseSnapshotCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class CreateRelationalDatabaseSnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteAlarmCommand.ts b/clients/client-lightsail/src/commands/DeleteAlarmCommand.ts index dc413bab2491e..c65918e1279f1 100644 --- a/clients/client-lightsail/src/commands/DeleteAlarmCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteAlarmCommand.ts @@ -103,6 +103,7 @@ export interface DeleteAlarmCommandOutput extends DeleteAlarmResult, __MetadataB * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteAlarmCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteAutoSnapshotCommand.ts b/clients/client-lightsail/src/commands/DeleteAutoSnapshotCommand.ts index 33bae8c506c4a..38fcc09efaed0 100644 --- a/clients/client-lightsail/src/commands/DeleteAutoSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteAutoSnapshotCommand.ts @@ -100,6 +100,7 @@ export interface DeleteAutoSnapshotCommandOutput extends DeleteAutoSnapshotResul * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteAutoSnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteBucketAccessKeyCommand.ts b/clients/client-lightsail/src/commands/DeleteBucketAccessKeyCommand.ts index cd1567150dbd5..cd6fb82e7aaac 100644 --- a/clients/client-lightsail/src/commands/DeleteBucketAccessKeyCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteBucketAccessKeyCommand.ts @@ -100,6 +100,7 @@ export interface DeleteBucketAccessKeyCommandOutput extends DeleteBucketAccessKe * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteBucketAccessKeyCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteBucketCommand.ts b/clients/client-lightsail/src/commands/DeleteBucketCommand.ts index 1fd480e53bdb8..ae46ad6aa596b 100644 --- a/clients/client-lightsail/src/commands/DeleteBucketCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteBucketCommand.ts @@ -101,6 +101,7 @@ export interface DeleteBucketCommandOutput extends DeleteBucketResult, __Metadat * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteBucketCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteCertificateCommand.ts b/clients/client-lightsail/src/commands/DeleteCertificateCommand.ts index 624de7662d7ce..18cab1f06d1d8 100644 --- a/clients/client-lightsail/src/commands/DeleteCertificateCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteCertificateCommand.ts @@ -100,6 +100,7 @@ export interface DeleteCertificateCommandOutput extends DeleteCertificateResult, * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteCertificateCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteContactMethodCommand.ts b/clients/client-lightsail/src/commands/DeleteContactMethodCommand.ts index 25ece3304691f..b9876fcc0d04d 100644 --- a/clients/client-lightsail/src/commands/DeleteContactMethodCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteContactMethodCommand.ts @@ -103,6 +103,7 @@ export interface DeleteContactMethodCommandOutput extends DeleteContactMethodRes * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteContactMethodCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteContainerImageCommand.ts b/clients/client-lightsail/src/commands/DeleteContainerImageCommand.ts index 7f69d9cfe61db..be3fa99a406a3 100644 --- a/clients/client-lightsail/src/commands/DeleteContainerImageCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteContainerImageCommand.ts @@ -78,6 +78,7 @@ export interface DeleteContainerImageCommandOutput extends DeleteContainerImageR * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteContainerImageCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteContainerServiceCommand.ts b/clients/client-lightsail/src/commands/DeleteContainerServiceCommand.ts index 166d8022810fd..6e3334eea0584 100644 --- a/clients/client-lightsail/src/commands/DeleteContainerServiceCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteContainerServiceCommand.ts @@ -76,6 +76,7 @@ export interface DeleteContainerServiceCommandOutput extends DeleteContainerServ * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteContainerServiceCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteDiskCommand.ts b/clients/client-lightsail/src/commands/DeleteDiskCommand.ts index 3e681f6b58d62..3cc34c211a77f 100644 --- a/clients/client-lightsail/src/commands/DeleteDiskCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteDiskCommand.ts @@ -111,6 +111,7 @@ export interface DeleteDiskCommandOutput extends DeleteDiskResult, __MetadataBea * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteDiskCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteDiskSnapshotCommand.ts b/clients/client-lightsail/src/commands/DeleteDiskSnapshotCommand.ts index 35a1efc4334a9..db6221c8544fe 100644 --- a/clients/client-lightsail/src/commands/DeleteDiskSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteDiskSnapshotCommand.ts @@ -111,6 +111,7 @@ export interface DeleteDiskSnapshotCommandOutput extends DeleteDiskSnapshotResul * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteDiskSnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteDistributionCommand.ts b/clients/client-lightsail/src/commands/DeleteDistributionCommand.ts index 1d7cc9b70c6e5..2ee7e6fbff655 100644 --- a/clients/client-lightsail/src/commands/DeleteDistributionCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteDistributionCommand.ts @@ -97,6 +97,7 @@ export interface DeleteDistributionCommandOutput extends DeleteDistributionResul * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteDistributionCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteDomainCommand.ts b/clients/client-lightsail/src/commands/DeleteDomainCommand.ts index f84bb69c5e16a..1e0f07116cf00 100644 --- a/clients/client-lightsail/src/commands/DeleteDomainCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteDomainCommand.ts @@ -104,6 +104,7 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResult, __Metadat * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteDomainCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteDomainEntryCommand.ts b/clients/client-lightsail/src/commands/DeleteDomainEntryCommand.ts index 3b5989d793355..2ac15a886db0f 100644 --- a/clients/client-lightsail/src/commands/DeleteDomainEntryCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteDomainEntryCommand.ts @@ -114,6 +114,7 @@ export interface DeleteDomainEntryCommandOutput extends DeleteDomainEntryResult, * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteDomainEntryCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteInstanceCommand.ts b/clients/client-lightsail/src/commands/DeleteInstanceCommand.ts index 291b733058e7b..2b0a2be95d5fe 100644 --- a/clients/client-lightsail/src/commands/DeleteInstanceCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteInstanceCommand.ts @@ -107,6 +107,7 @@ export interface DeleteInstanceCommandOutput extends DeleteInstanceResult, __Met * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteInstanceCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteInstanceSnapshotCommand.ts b/clients/client-lightsail/src/commands/DeleteInstanceSnapshotCommand.ts index 159856c519de2..55f7dc8a3ae71 100644 --- a/clients/client-lightsail/src/commands/DeleteInstanceSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteInstanceSnapshotCommand.ts @@ -107,6 +107,7 @@ export interface DeleteInstanceSnapshotCommandOutput extends DeleteInstanceSnaps * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteInstanceSnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteKeyPairCommand.ts b/clients/client-lightsail/src/commands/DeleteKeyPairCommand.ts index b1fae6e9f0d67..cb63d8a70bcb7 100644 --- a/clients/client-lightsail/src/commands/DeleteKeyPairCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteKeyPairCommand.ts @@ -109,6 +109,7 @@ export interface DeleteKeyPairCommandOutput extends DeleteKeyPairResult, __Metad * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteKeyPairCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteKnownHostKeysCommand.ts b/clients/client-lightsail/src/commands/DeleteKnownHostKeysCommand.ts index b31fd694987b1..a41a04aaa98f7 100644 --- a/clients/client-lightsail/src/commands/DeleteKnownHostKeysCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteKnownHostKeysCommand.ts @@ -111,6 +111,7 @@ export interface DeleteKnownHostKeysCommandOutput extends DeleteKnownHostKeysRes * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteKnownHostKeysCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteLoadBalancerCommand.ts b/clients/client-lightsail/src/commands/DeleteLoadBalancerCommand.ts index 31095d5585f79..156aa657d7afb 100644 --- a/clients/client-lightsail/src/commands/DeleteLoadBalancerCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteLoadBalancerCommand.ts @@ -108,6 +108,7 @@ export interface DeleteLoadBalancerCommandOutput extends DeleteLoadBalancerResul * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteLoadBalancerCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteLoadBalancerTlsCertificateCommand.ts b/clients/client-lightsail/src/commands/DeleteLoadBalancerTlsCertificateCommand.ts index 3029e98f844d1..95e44d00eeda5 100644 --- a/clients/client-lightsail/src/commands/DeleteLoadBalancerTlsCertificateCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteLoadBalancerTlsCertificateCommand.ts @@ -113,6 +113,7 @@ export interface DeleteLoadBalancerTlsCertificateCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteLoadBalancerTlsCertificateCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteRelationalDatabaseCommand.ts b/clients/client-lightsail/src/commands/DeleteRelationalDatabaseCommand.ts index 5e067b989010e..85c23da80ea9a 100644 --- a/clients/client-lightsail/src/commands/DeleteRelationalDatabaseCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteRelationalDatabaseCommand.ts @@ -108,6 +108,7 @@ export interface DeleteRelationalDatabaseCommandOutput extends DeleteRelationalD * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteRelationalDatabaseCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DeleteRelationalDatabaseSnapshotCommand.ts b/clients/client-lightsail/src/commands/DeleteRelationalDatabaseSnapshotCommand.ts index 10c2269244683..7e16527def0f7 100644 --- a/clients/client-lightsail/src/commands/DeleteRelationalDatabaseSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteRelationalDatabaseSnapshotCommand.ts @@ -111,6 +111,7 @@ export interface DeleteRelationalDatabaseSnapshotCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DeleteRelationalDatabaseSnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DetachCertificateFromDistributionCommand.ts b/clients/client-lightsail/src/commands/DetachCertificateFromDistributionCommand.ts index f2aa12be12157..329063c47ffff 100644 --- a/clients/client-lightsail/src/commands/DetachCertificateFromDistributionCommand.ts +++ b/clients/client-lightsail/src/commands/DetachCertificateFromDistributionCommand.ts @@ -105,6 +105,7 @@ export interface DetachCertificateFromDistributionCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DetachCertificateFromDistributionCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DetachDiskCommand.ts b/clients/client-lightsail/src/commands/DetachDiskCommand.ts index 52026bcbab370..a3231c1f5ce92 100644 --- a/clients/client-lightsail/src/commands/DetachDiskCommand.ts +++ b/clients/client-lightsail/src/commands/DetachDiskCommand.ts @@ -108,6 +108,7 @@ export interface DetachDiskCommandOutput extends DetachDiskResult, __MetadataBea * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DetachDiskCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DetachInstancesFromLoadBalancerCommand.ts b/clients/client-lightsail/src/commands/DetachInstancesFromLoadBalancerCommand.ts index 786f0ea82c3c9..b1935cbb735b2 100644 --- a/clients/client-lightsail/src/commands/DetachInstancesFromLoadBalancerCommand.ts +++ b/clients/client-lightsail/src/commands/DetachInstancesFromLoadBalancerCommand.ts @@ -116,6 +116,7 @@ export interface DetachInstancesFromLoadBalancerCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DetachInstancesFromLoadBalancerCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DetachStaticIpCommand.ts b/clients/client-lightsail/src/commands/DetachStaticIpCommand.ts index 26c9b920e1f6b..2399e7927fbd4 100644 --- a/clients/client-lightsail/src/commands/DetachStaticIpCommand.ts +++ b/clients/client-lightsail/src/commands/DetachStaticIpCommand.ts @@ -103,6 +103,7 @@ export interface DetachStaticIpCommandOutput extends DetachStaticIpResult, __Met * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DetachStaticIpCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DisableAddOnCommand.ts b/clients/client-lightsail/src/commands/DisableAddOnCommand.ts index ee502851dbbb7..4e260da8a521d 100644 --- a/clients/client-lightsail/src/commands/DisableAddOnCommand.ts +++ b/clients/client-lightsail/src/commands/DisableAddOnCommand.ts @@ -100,6 +100,7 @@ export interface DisableAddOnCommandOutput extends DisableAddOnResult, __Metadat * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DisableAddOnCommand extends $Command diff --git a/clients/client-lightsail/src/commands/DownloadDefaultKeyPairCommand.ts b/clients/client-lightsail/src/commands/DownloadDefaultKeyPairCommand.ts index f59bc3ac87f2a..6f7555e8b9957 100644 --- a/clients/client-lightsail/src/commands/DownloadDefaultKeyPairCommand.ts +++ b/clients/client-lightsail/src/commands/DownloadDefaultKeyPairCommand.ts @@ -87,6 +87,7 @@ export interface DownloadDefaultKeyPairCommandOutput extends DownloadDefaultKeyP * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class DownloadDefaultKeyPairCommand extends $Command diff --git a/clients/client-lightsail/src/commands/EnableAddOnCommand.ts b/clients/client-lightsail/src/commands/EnableAddOnCommand.ts index 8a4374c955d3a..0d7f67292e9e4 100644 --- a/clients/client-lightsail/src/commands/EnableAddOnCommand.ts +++ b/clients/client-lightsail/src/commands/EnableAddOnCommand.ts @@ -110,6 +110,7 @@ export interface EnableAddOnCommandOutput extends EnableAddOnResult, __MetadataB * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class EnableAddOnCommand extends $Command diff --git a/clients/client-lightsail/src/commands/ExportSnapshotCommand.ts b/clients/client-lightsail/src/commands/ExportSnapshotCommand.ts index b9a437532f666..96a2a3d62fdd0 100644 --- a/clients/client-lightsail/src/commands/ExportSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/ExportSnapshotCommand.ts @@ -117,6 +117,7 @@ export interface ExportSnapshotCommandOutput extends ExportSnapshotResult, __Met * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class ExportSnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetActiveNamesCommand.ts b/clients/client-lightsail/src/commands/GetActiveNamesCommand.ts index 8eb3b7830bf77..edb81c0c4c8b5 100644 --- a/clients/client-lightsail/src/commands/GetActiveNamesCommand.ts +++ b/clients/client-lightsail/src/commands/GetActiveNamesCommand.ts @@ -88,6 +88,7 @@ export interface GetActiveNamesCommandOutput extends GetActiveNamesResult, __Met * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetActiveNamesCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetAlarmsCommand.ts b/clients/client-lightsail/src/commands/GetAlarmsCommand.ts index 17adf55338bc9..497210f8e3d54 100644 --- a/clients/client-lightsail/src/commands/GetAlarmsCommand.ts +++ b/clients/client-lightsail/src/commands/GetAlarmsCommand.ts @@ -124,6 +124,7 @@ export interface GetAlarmsCommandOutput extends GetAlarmsResult, __MetadataBeare * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetAlarmsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetAutoSnapshotsCommand.ts b/clients/client-lightsail/src/commands/GetAutoSnapshotsCommand.ts index 1be8f31b50f08..643bac113ce2c 100644 --- a/clients/client-lightsail/src/commands/GetAutoSnapshotsCommand.ts +++ b/clients/client-lightsail/src/commands/GetAutoSnapshotsCommand.ts @@ -96,6 +96,7 @@ export interface GetAutoSnapshotsCommandOutput extends GetAutoSnapshotsResult, _ * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetAutoSnapshotsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetBlueprintsCommand.ts b/clients/client-lightsail/src/commands/GetBlueprintsCommand.ts index 115bee2ed4909..4720d83757261 100644 --- a/clients/client-lightsail/src/commands/GetBlueprintsCommand.ts +++ b/clients/client-lightsail/src/commands/GetBlueprintsCommand.ts @@ -113,6 +113,7 @@ export interface GetBlueprintsCommandOutput extends GetBlueprintsResult, __Metad * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetBlueprintsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetBucketAccessKeysCommand.ts b/clients/client-lightsail/src/commands/GetBucketAccessKeysCommand.ts index cec7b1ab9e71a..8f19c06d99235 100644 --- a/clients/client-lightsail/src/commands/GetBucketAccessKeysCommand.ts +++ b/clients/client-lightsail/src/commands/GetBucketAccessKeysCommand.ts @@ -99,6 +99,7 @@ export interface GetBucketAccessKeysCommandOutput extends GetBucketAccessKeysRes * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetBucketAccessKeysCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetBucketBundlesCommand.ts b/clients/client-lightsail/src/commands/GetBucketBundlesCommand.ts index 568386027efb2..ae9200d3c1d6a 100644 --- a/clients/client-lightsail/src/commands/GetBucketBundlesCommand.ts +++ b/clients/client-lightsail/src/commands/GetBucketBundlesCommand.ts @@ -88,6 +88,7 @@ export interface GetBucketBundlesCommandOutput extends GetBucketBundlesResult, _ * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetBucketBundlesCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetBucketMetricDataCommand.ts b/clients/client-lightsail/src/commands/GetBucketMetricDataCommand.ts index b2087ab2f434a..7c13796feb26b 100644 --- a/clients/client-lightsail/src/commands/GetBucketMetricDataCommand.ts +++ b/clients/client-lightsail/src/commands/GetBucketMetricDataCommand.ts @@ -100,6 +100,7 @@ export interface GetBucketMetricDataCommandOutput extends GetBucketMetricDataRes * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetBucketMetricDataCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetBucketsCommand.ts b/clients/client-lightsail/src/commands/GetBucketsCommand.ts index 25b155a0adc0e..1f3f14aeb2716 100644 --- a/clients/client-lightsail/src/commands/GetBucketsCommand.ts +++ b/clients/client-lightsail/src/commands/GetBucketsCommand.ts @@ -135,6 +135,7 @@ export interface GetBucketsCommandOutput extends GetBucketsResult, __MetadataBea * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetBucketsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetBundlesCommand.ts b/clients/client-lightsail/src/commands/GetBundlesCommand.ts index f5ff9b4da8657..9034498f63f91 100644 --- a/clients/client-lightsail/src/commands/GetBundlesCommand.ts +++ b/clients/client-lightsail/src/commands/GetBundlesCommand.ts @@ -116,6 +116,7 @@ export interface GetBundlesCommandOutput extends GetBundlesResult, __MetadataBea * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetBundlesCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetCertificatesCommand.ts b/clients/client-lightsail/src/commands/GetCertificatesCommand.ts index fc7698cb8cd52..86094bde100ad 100644 --- a/clients/client-lightsail/src/commands/GetCertificatesCommand.ts +++ b/clients/client-lightsail/src/commands/GetCertificatesCommand.ts @@ -164,6 +164,7 @@ export interface GetCertificatesCommandOutput extends GetCertificatesResult, __M * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetCertificatesCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetCloudFormationStackRecordsCommand.ts b/clients/client-lightsail/src/commands/GetCloudFormationStackRecordsCommand.ts index a5592ea998c39..a76bfadf56a94 100644 --- a/clients/client-lightsail/src/commands/GetCloudFormationStackRecordsCommand.ts +++ b/clients/client-lightsail/src/commands/GetCloudFormationStackRecordsCommand.ts @@ -117,6 +117,7 @@ export interface GetCloudFormationStackRecordsCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetCloudFormationStackRecordsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetContactMethodsCommand.ts b/clients/client-lightsail/src/commands/GetContactMethodsCommand.ts index b792b29c7a014..a99258cc5707a 100644 --- a/clients/client-lightsail/src/commands/GetContactMethodsCommand.ts +++ b/clients/client-lightsail/src/commands/GetContactMethodsCommand.ts @@ -103,6 +103,7 @@ export interface GetContactMethodsCommandOutput extends GetContactMethodsResult, * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetContactMethodsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetContainerAPIMetadataCommand.ts b/clients/client-lightsail/src/commands/GetContainerAPIMetadataCommand.ts index 5063d0b2d3916..0805bf3668f87 100644 --- a/clients/client-lightsail/src/commands/GetContainerAPIMetadataCommand.ts +++ b/clients/client-lightsail/src/commands/GetContainerAPIMetadataCommand.ts @@ -68,6 +68,7 @@ export interface GetContainerAPIMetadataCommandOutput extends GetContainerAPIMet * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetContainerAPIMetadataCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetContainerImagesCommand.ts b/clients/client-lightsail/src/commands/GetContainerImagesCommand.ts index 5d8b7c123fd07..aa1be2e0ea6e3 100644 --- a/clients/client-lightsail/src/commands/GetContainerImagesCommand.ts +++ b/clients/client-lightsail/src/commands/GetContainerImagesCommand.ts @@ -90,6 +90,7 @@ export interface GetContainerImagesCommandOutput extends GetContainerImagesResul * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetContainerImagesCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetContainerLogCommand.ts b/clients/client-lightsail/src/commands/GetContainerLogCommand.ts index 17174d2c25f29..f380dfb366fc3 100644 --- a/clients/client-lightsail/src/commands/GetContainerLogCommand.ts +++ b/clients/client-lightsail/src/commands/GetContainerLogCommand.ts @@ -98,6 +98,7 @@ export interface GetContainerLogCommandOutput extends GetContainerLogResult, __M * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetContainerLogCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetContainerServiceDeploymentsCommand.ts b/clients/client-lightsail/src/commands/GetContainerServiceDeploymentsCommand.ts index 1a71cdddd4774..86889538fe63e 100644 --- a/clients/client-lightsail/src/commands/GetContainerServiceDeploymentsCommand.ts +++ b/clients/client-lightsail/src/commands/GetContainerServiceDeploymentsCommand.ts @@ -125,6 +125,7 @@ export interface GetContainerServiceDeploymentsCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetContainerServiceDeploymentsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetContainerServiceMetricDataCommand.ts b/clients/client-lightsail/src/commands/GetContainerServiceMetricDataCommand.ts index 5c89da4f14ad3..e3ea092fc0ef4 100644 --- a/clients/client-lightsail/src/commands/GetContainerServiceMetricDataCommand.ts +++ b/clients/client-lightsail/src/commands/GetContainerServiceMetricDataCommand.ts @@ -104,6 +104,7 @@ export interface GetContainerServiceMetricDataCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetContainerServiceMetricDataCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetContainerServicePowersCommand.ts b/clients/client-lightsail/src/commands/GetContainerServicePowersCommand.ts index 45e89be25ed1d..7183a9ae525b8 100644 --- a/clients/client-lightsail/src/commands/GetContainerServicePowersCommand.ts +++ b/clients/client-lightsail/src/commands/GetContainerServicePowersCommand.ts @@ -89,6 +89,7 @@ export interface GetContainerServicePowersCommandOutput extends GetContainerServ * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetContainerServicePowersCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetContainerServicesCommand.ts b/clients/client-lightsail/src/commands/GetContainerServicesCommand.ts index 83ecdaf1652ac..dedb85493d16d 100644 --- a/clients/client-lightsail/src/commands/GetContainerServicesCommand.ts +++ b/clients/client-lightsail/src/commands/GetContainerServicesCommand.ts @@ -181,6 +181,7 @@ export interface GetContainerServicesCommandOutput extends ContainerServicesList * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetContainerServicesCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetCostEstimateCommand.ts b/clients/client-lightsail/src/commands/GetCostEstimateCommand.ts index dc1724807e031..f54300b1c456e 100644 --- a/clients/client-lightsail/src/commands/GetCostEstimateCommand.ts +++ b/clients/client-lightsail/src/commands/GetCostEstimateCommand.ts @@ -105,6 +105,7 @@ export interface GetCostEstimateCommandOutput extends GetCostEstimateResult, __M * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetCostEstimateCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetDiskCommand.ts b/clients/client-lightsail/src/commands/GetDiskCommand.ts index 7de0e6ea2979c..e640e32e67353 100644 --- a/clients/client-lightsail/src/commands/GetDiskCommand.ts +++ b/clients/client-lightsail/src/commands/GetDiskCommand.ts @@ -121,6 +121,7 @@ export interface GetDiskCommandOutput extends GetDiskResult, __MetadataBearer {} * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetDiskCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetDiskSnapshotCommand.ts b/clients/client-lightsail/src/commands/GetDiskSnapshotCommand.ts index 6b1b8dad99ac5..07dfa86a17b97 100644 --- a/clients/client-lightsail/src/commands/GetDiskSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/GetDiskSnapshotCommand.ts @@ -109,6 +109,7 @@ export interface GetDiskSnapshotCommandOutput extends GetDiskSnapshotResult, __M * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetDiskSnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetDiskSnapshotsCommand.ts b/clients/client-lightsail/src/commands/GetDiskSnapshotsCommand.ts index 095c4269be9dd..b03546f6f7d06 100644 --- a/clients/client-lightsail/src/commands/GetDiskSnapshotsCommand.ts +++ b/clients/client-lightsail/src/commands/GetDiskSnapshotsCommand.ts @@ -113,6 +113,7 @@ export interface GetDiskSnapshotsCommandOutput extends GetDiskSnapshotsResult, _ * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetDiskSnapshotsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetDisksCommand.ts b/clients/client-lightsail/src/commands/GetDisksCommand.ts index ca00c2e93ae71..d4865362d8e9d 100644 --- a/clients/client-lightsail/src/commands/GetDisksCommand.ts +++ b/clients/client-lightsail/src/commands/GetDisksCommand.ts @@ -124,6 +124,7 @@ export interface GetDisksCommandOutput extends GetDisksResult, __MetadataBearer * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetDisksCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetDistributionBundlesCommand.ts b/clients/client-lightsail/src/commands/GetDistributionBundlesCommand.ts index bc970b66967cd..ae2a4aeb04cdf 100644 --- a/clients/client-lightsail/src/commands/GetDistributionBundlesCommand.ts +++ b/clients/client-lightsail/src/commands/GetDistributionBundlesCommand.ts @@ -90,6 +90,7 @@ export interface GetDistributionBundlesCommandOutput extends GetDistributionBund * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetDistributionBundlesCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetDistributionLatestCacheResetCommand.ts b/clients/client-lightsail/src/commands/GetDistributionLatestCacheResetCommand.ts index d79c453f6b3d3..1ea88c07619c5 100644 --- a/clients/client-lightsail/src/commands/GetDistributionLatestCacheResetCommand.ts +++ b/clients/client-lightsail/src/commands/GetDistributionLatestCacheResetCommand.ts @@ -88,6 +88,7 @@ export interface GetDistributionLatestCacheResetCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetDistributionLatestCacheResetCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetDistributionMetricDataCommand.ts b/clients/client-lightsail/src/commands/GetDistributionMetricDataCommand.ts index 37a1e658dccc4..cfbfaf92352a5 100644 --- a/clients/client-lightsail/src/commands/GetDistributionMetricDataCommand.ts +++ b/clients/client-lightsail/src/commands/GetDistributionMetricDataCommand.ts @@ -104,6 +104,7 @@ export interface GetDistributionMetricDataCommandOutput extends GetDistributionM * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetDistributionMetricDataCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetDistributionsCommand.ts b/clients/client-lightsail/src/commands/GetDistributionsCommand.ts index 27c3efaa0d7f2..221bd6eacc19f 100644 --- a/clients/client-lightsail/src/commands/GetDistributionsCommand.ts +++ b/clients/client-lightsail/src/commands/GetDistributionsCommand.ts @@ -155,6 +155,7 @@ export interface GetDistributionsCommandOutput extends GetDistributionsResult, _ * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetDistributionsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetDomainCommand.ts b/clients/client-lightsail/src/commands/GetDomainCommand.ts index 5f450ba0add6b..910afd9c51d4d 100644 --- a/clients/client-lightsail/src/commands/GetDomainCommand.ts +++ b/clients/client-lightsail/src/commands/GetDomainCommand.ts @@ -123,6 +123,7 @@ export interface GetDomainCommandOutput extends GetDomainResult, __MetadataBeare * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetDomainCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetDomainsCommand.ts b/clients/client-lightsail/src/commands/GetDomainsCommand.ts index 8529c9716559e..84065058c692f 100644 --- a/clients/client-lightsail/src/commands/GetDomainsCommand.ts +++ b/clients/client-lightsail/src/commands/GetDomainsCommand.ts @@ -126,6 +126,7 @@ export interface GetDomainsCommandOutput extends GetDomainsResult, __MetadataBea * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetDomainsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetExportSnapshotRecordsCommand.ts b/clients/client-lightsail/src/commands/GetExportSnapshotRecordsCommand.ts index 28dc2379b6aa8..eb0d93b5d0792 100644 --- a/clients/client-lightsail/src/commands/GetExportSnapshotRecordsCommand.ts +++ b/clients/client-lightsail/src/commands/GetExportSnapshotRecordsCommand.ts @@ -129,6 +129,7 @@ export interface GetExportSnapshotRecordsCommandOutput extends GetExportSnapshot * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetExportSnapshotRecordsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetInstanceAccessDetailsCommand.ts b/clients/client-lightsail/src/commands/GetInstanceAccessDetailsCommand.ts index 2b2c25c8ad38b..fdad8d8526605 100644 --- a/clients/client-lightsail/src/commands/GetInstanceAccessDetailsCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstanceAccessDetailsCommand.ts @@ -117,6 +117,7 @@ export interface GetInstanceAccessDetailsCommandOutput extends GetInstanceAccess * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetInstanceAccessDetailsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetInstanceCommand.ts b/clients/client-lightsail/src/commands/GetInstanceCommand.ts index 3199060076904..fb8f4eda93616 100644 --- a/clients/client-lightsail/src/commands/GetInstanceCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstanceCommand.ts @@ -203,6 +203,7 @@ export interface GetInstanceCommandOutput extends GetInstanceResult, __MetadataB * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetInstanceCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetInstanceMetricDataCommand.ts b/clients/client-lightsail/src/commands/GetInstanceMetricDataCommand.ts index aeb6429a365d1..394645d9e6494 100644 --- a/clients/client-lightsail/src/commands/GetInstanceMetricDataCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstanceMetricDataCommand.ts @@ -108,6 +108,7 @@ export interface GetInstanceMetricDataCommandOutput extends GetInstanceMetricDat * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetInstanceMetricDataCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetInstancePortStatesCommand.ts b/clients/client-lightsail/src/commands/GetInstancePortStatesCommand.ts index b3eb6fccdc94f..5b70011b36144 100644 --- a/clients/client-lightsail/src/commands/GetInstancePortStatesCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstancePortStatesCommand.ts @@ -102,6 +102,7 @@ export interface GetInstancePortStatesCommandOutput extends GetInstancePortState * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetInstancePortStatesCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetInstanceSnapshotCommand.ts b/clients/client-lightsail/src/commands/GetInstanceSnapshotCommand.ts index 768890e8d28a5..aae7a0195543e 100644 --- a/clients/client-lightsail/src/commands/GetInstanceSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstanceSnapshotCommand.ts @@ -148,6 +148,7 @@ export interface GetInstanceSnapshotCommandOutput extends GetInstanceSnapshotRes * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetInstanceSnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetInstanceSnapshotsCommand.ts b/clients/client-lightsail/src/commands/GetInstanceSnapshotsCommand.ts index 43bd25dd3a9c4..0b8ae32240e8f 100644 --- a/clients/client-lightsail/src/commands/GetInstanceSnapshotsCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstanceSnapshotsCommand.ts @@ -151,6 +151,7 @@ export interface GetInstanceSnapshotsCommandOutput extends GetInstanceSnapshotsR * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetInstanceSnapshotsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetInstanceStateCommand.ts b/clients/client-lightsail/src/commands/GetInstanceStateCommand.ts index 55759e5203547..d96175fba48ca 100644 --- a/clients/client-lightsail/src/commands/GetInstanceStateCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstanceStateCommand.ts @@ -88,6 +88,7 @@ export interface GetInstanceStateCommandOutput extends GetInstanceStateResult, _ * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetInstanceStateCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetInstancesCommand.ts b/clients/client-lightsail/src/commands/GetInstancesCommand.ts index cf72f0cae7624..8ad348d7d6b64 100644 --- a/clients/client-lightsail/src/commands/GetInstancesCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstancesCommand.ts @@ -206,6 +206,7 @@ export interface GetInstancesCommandOutput extends GetInstancesResult, __Metadat * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetInstancesCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetKeyPairCommand.ts b/clients/client-lightsail/src/commands/GetKeyPairCommand.ts index f54fe2fdf55a4..ca676ffdf72aa 100644 --- a/clients/client-lightsail/src/commands/GetKeyPairCommand.ts +++ b/clients/client-lightsail/src/commands/GetKeyPairCommand.ts @@ -102,6 +102,7 @@ export interface GetKeyPairCommandOutput extends GetKeyPairResult, __MetadataBea * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetKeyPairCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetKeyPairsCommand.ts b/clients/client-lightsail/src/commands/GetKeyPairsCommand.ts index 48c1803eb4fdb..600e85de79e85 100644 --- a/clients/client-lightsail/src/commands/GetKeyPairsCommand.ts +++ b/clients/client-lightsail/src/commands/GetKeyPairsCommand.ts @@ -106,6 +106,7 @@ export interface GetKeyPairsCommandOutput extends GetKeyPairsResult, __MetadataB * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetKeyPairsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetLoadBalancerCommand.ts b/clients/client-lightsail/src/commands/GetLoadBalancerCommand.ts index 98e98821dc162..ff8470e101c50 100644 --- a/clients/client-lightsail/src/commands/GetLoadBalancerCommand.ts +++ b/clients/client-lightsail/src/commands/GetLoadBalancerCommand.ts @@ -128,6 +128,7 @@ export interface GetLoadBalancerCommandOutput extends GetLoadBalancerResult, __M * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetLoadBalancerCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetLoadBalancerMetricDataCommand.ts b/clients/client-lightsail/src/commands/GetLoadBalancerMetricDataCommand.ts index 63c851882d8e5..f944bfe106f5c 100644 --- a/clients/client-lightsail/src/commands/GetLoadBalancerMetricDataCommand.ts +++ b/clients/client-lightsail/src/commands/GetLoadBalancerMetricDataCommand.ts @@ -107,6 +107,7 @@ export interface GetLoadBalancerMetricDataCommandOutput extends GetLoadBalancerM * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetLoadBalancerMetricDataCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetLoadBalancerTlsCertificatesCommand.ts b/clients/client-lightsail/src/commands/GetLoadBalancerTlsCertificatesCommand.ts index 527d60f0551b4..cb03b06c91ee8 100644 --- a/clients/client-lightsail/src/commands/GetLoadBalancerTlsCertificatesCommand.ts +++ b/clients/client-lightsail/src/commands/GetLoadBalancerTlsCertificatesCommand.ts @@ -152,6 +152,7 @@ export interface GetLoadBalancerTlsCertificatesCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetLoadBalancerTlsCertificatesCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetLoadBalancerTlsPoliciesCommand.ts b/clients/client-lightsail/src/commands/GetLoadBalancerTlsPoliciesCommand.ts index 465d52bf0a1d0..dfdc896a53c30 100644 --- a/clients/client-lightsail/src/commands/GetLoadBalancerTlsPoliciesCommand.ts +++ b/clients/client-lightsail/src/commands/GetLoadBalancerTlsPoliciesCommand.ts @@ -95,6 +95,7 @@ export interface GetLoadBalancerTlsPoliciesCommandOutput extends GetLoadBalancer * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetLoadBalancerTlsPoliciesCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetLoadBalancersCommand.ts b/clients/client-lightsail/src/commands/GetLoadBalancersCommand.ts index e494889e57eff..9fee28caed169 100644 --- a/clients/client-lightsail/src/commands/GetLoadBalancersCommand.ts +++ b/clients/client-lightsail/src/commands/GetLoadBalancersCommand.ts @@ -131,6 +131,7 @@ export interface GetLoadBalancersCommandOutput extends GetLoadBalancersResult, _ * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetLoadBalancersCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetOperationCommand.ts b/clients/client-lightsail/src/commands/GetOperationCommand.ts index 266025f9e892a..c0a311074e694 100644 --- a/clients/client-lightsail/src/commands/GetOperationCommand.ts +++ b/clients/client-lightsail/src/commands/GetOperationCommand.ts @@ -102,6 +102,7 @@ export interface GetOperationCommandOutput extends GetOperationResult, __Metadat * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetOperationCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetOperationsCommand.ts b/clients/client-lightsail/src/commands/GetOperationsCommand.ts index c3da8ab916b49..79207db9cf554 100644 --- a/clients/client-lightsail/src/commands/GetOperationsCommand.ts +++ b/clients/client-lightsail/src/commands/GetOperationsCommand.ts @@ -107,6 +107,7 @@ export interface GetOperationsCommandOutput extends GetOperationsResult, __Metad * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetOperationsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetOperationsForResourceCommand.ts b/clients/client-lightsail/src/commands/GetOperationsForResourceCommand.ts index 25d87982262a0..26d84028ec4c7 100644 --- a/clients/client-lightsail/src/commands/GetOperationsForResourceCommand.ts +++ b/clients/client-lightsail/src/commands/GetOperationsForResourceCommand.ts @@ -106,6 +106,7 @@ export interface GetOperationsForResourceCommandOutput extends GetOperationsForR * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetOperationsForResourceCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetRegionsCommand.ts b/clients/client-lightsail/src/commands/GetRegionsCommand.ts index e2f6b92854eb6..e49c8c605e248 100644 --- a/clients/client-lightsail/src/commands/GetRegionsCommand.ts +++ b/clients/client-lightsail/src/commands/GetRegionsCommand.ts @@ -107,6 +107,7 @@ export interface GetRegionsCommandOutput extends GetRegionsResult, __MetadataBea * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetRegionsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseBlueprintsCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseBlueprintsCommand.ts index 39c74193b0f15..4c649318ea321 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseBlueprintsCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseBlueprintsCommand.ts @@ -103,6 +103,7 @@ export interface GetRelationalDatabaseBlueprintsCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetRelationalDatabaseBlueprintsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseBundlesCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseBundlesCommand.ts index e96a5269a451d..1d1a809cdc501 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseBundlesCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseBundlesCommand.ts @@ -107,6 +107,7 @@ export interface GetRelationalDatabaseBundlesCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetRelationalDatabaseBundlesCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseCommand.ts index 893b7d94c0fc2..7bc813d8d6576 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseCommand.ts @@ -137,6 +137,7 @@ export interface GetRelationalDatabaseCommandOutput extends GetRelationalDatabas * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetRelationalDatabaseCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseEventsCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseEventsCommand.ts index dd45d7604ca41..b7ed96833e452 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseEventsCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseEventsCommand.ts @@ -97,6 +97,7 @@ export interface GetRelationalDatabaseEventsCommandOutput extends GetRelationalD * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetRelationalDatabaseEventsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseLogEventsCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseLogEventsCommand.ts index 5da5f59e67b6b..761e4c083bbf4 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseLogEventsCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseLogEventsCommand.ts @@ -102,6 +102,7 @@ export interface GetRelationalDatabaseLogEventsCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetRelationalDatabaseLogEventsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseLogStreamsCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseLogStreamsCommand.ts index 7079b7b8ccc4f..648700be47702 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseLogStreamsCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseLogStreamsCommand.ts @@ -92,6 +92,7 @@ export interface GetRelationalDatabaseLogStreamsCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetRelationalDatabaseLogStreamsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseMasterUserPasswordCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseMasterUserPasswordCommand.ts index b35992cf935b7..430040d3340d3 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseMasterUserPasswordCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseMasterUserPasswordCommand.ts @@ -101,6 +101,7 @@ export interface GetRelationalDatabaseMasterUserPasswordCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetRelationalDatabaseMasterUserPasswordCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseMetricDataCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseMetricDataCommand.ts index 945339874f2e5..5809571c51bf7 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseMetricDataCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseMetricDataCommand.ts @@ -112,6 +112,7 @@ export interface GetRelationalDatabaseMetricDataCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetRelationalDatabaseMetricDataCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseParametersCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseParametersCommand.ts index a7c46b1ba7906..33a57aef71f92 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseParametersCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseParametersCommand.ts @@ -107,6 +107,7 @@ export interface GetRelationalDatabaseParametersCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetRelationalDatabaseParametersCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotCommand.ts index 01a55c61868dd..d8eb77eeb43c4 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotCommand.ts @@ -114,6 +114,7 @@ export interface GetRelationalDatabaseSnapshotCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetRelationalDatabaseSnapshotCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotsCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotsCommand.ts index f69399e9b74a6..6cbb8699eb75b 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotsCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotsCommand.ts @@ -117,6 +117,7 @@ export interface GetRelationalDatabaseSnapshotsCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetRelationalDatabaseSnapshotsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabasesCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabasesCommand.ts index aaa37380f7c22..844a341d3db2f 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabasesCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabasesCommand.ts @@ -140,6 +140,7 @@ export interface GetRelationalDatabasesCommandOutput extends GetRelationalDataba * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetRelationalDatabasesCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetSetupHistoryCommand.ts b/clients/client-lightsail/src/commands/GetSetupHistoryCommand.ts index bc744ee12aa7b..9dc1ed8443c4b 100644 --- a/clients/client-lightsail/src/commands/GetSetupHistoryCommand.ts +++ b/clients/client-lightsail/src/commands/GetSetupHistoryCommand.ts @@ -114,6 +114,7 @@ export interface GetSetupHistoryCommandOutput extends GetSetupHistoryResult, __M * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetSetupHistoryCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetStaticIpCommand.ts b/clients/client-lightsail/src/commands/GetStaticIpCommand.ts index db45b17a6c9f2..3b793f89ef138 100644 --- a/clients/client-lightsail/src/commands/GetStaticIpCommand.ts +++ b/clients/client-lightsail/src/commands/GetStaticIpCommand.ts @@ -98,6 +98,7 @@ export interface GetStaticIpCommandOutput extends GetStaticIpResult, __MetadataB * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetStaticIpCommand extends $Command diff --git a/clients/client-lightsail/src/commands/GetStaticIpsCommand.ts b/clients/client-lightsail/src/commands/GetStaticIpsCommand.ts index d653d18bf3e9f..3d4eab29b7dfe 100644 --- a/clients/client-lightsail/src/commands/GetStaticIpsCommand.ts +++ b/clients/client-lightsail/src/commands/GetStaticIpsCommand.ts @@ -101,6 +101,7 @@ export interface GetStaticIpsCommandOutput extends GetStaticIpsResult, __Metadat * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class GetStaticIpsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/ImportKeyPairCommand.ts b/clients/client-lightsail/src/commands/ImportKeyPairCommand.ts index 92a3cbead2cff..d2aa691efeabb 100644 --- a/clients/client-lightsail/src/commands/ImportKeyPairCommand.ts +++ b/clients/client-lightsail/src/commands/ImportKeyPairCommand.ts @@ -102,6 +102,7 @@ export interface ImportKeyPairCommandOutput extends ImportKeyPairResult, __Metad * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class ImportKeyPairCommand extends $Command diff --git a/clients/client-lightsail/src/commands/IsVpcPeeredCommand.ts b/clients/client-lightsail/src/commands/IsVpcPeeredCommand.ts index 9dbf7a00db388..b7b89eea9d98c 100644 --- a/clients/client-lightsail/src/commands/IsVpcPeeredCommand.ts +++ b/clients/client-lightsail/src/commands/IsVpcPeeredCommand.ts @@ -83,6 +83,7 @@ export interface IsVpcPeeredCommandOutput extends IsVpcPeeredResult, __MetadataB * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class IsVpcPeeredCommand extends $Command diff --git a/clients/client-lightsail/src/commands/OpenInstancePublicPortsCommand.ts b/clients/client-lightsail/src/commands/OpenInstancePublicPortsCommand.ts index 72484fe143279..90c38ed26cbbb 100644 --- a/clients/client-lightsail/src/commands/OpenInstancePublicPortsCommand.ts +++ b/clients/client-lightsail/src/commands/OpenInstancePublicPortsCommand.ts @@ -119,6 +119,7 @@ export interface OpenInstancePublicPortsCommandOutput extends OpenInstancePublic * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class OpenInstancePublicPortsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/PeerVpcCommand.ts b/clients/client-lightsail/src/commands/PeerVpcCommand.ts index 601f50d602e76..e9a672fc87d48 100644 --- a/clients/client-lightsail/src/commands/PeerVpcCommand.ts +++ b/clients/client-lightsail/src/commands/PeerVpcCommand.ts @@ -99,6 +99,7 @@ export interface PeerVpcCommandOutput extends PeerVpcResult, __MetadataBearer {} * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class PeerVpcCommand extends $Command diff --git a/clients/client-lightsail/src/commands/PutAlarmCommand.ts b/clients/client-lightsail/src/commands/PutAlarmCommand.ts index c9931961f9fe0..9f4fa7eb37141 100644 --- a/clients/client-lightsail/src/commands/PutAlarmCommand.ts +++ b/clients/client-lightsail/src/commands/PutAlarmCommand.ts @@ -123,6 +123,7 @@ export interface PutAlarmCommandOutput extends PutAlarmResult, __MetadataBearer * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class PutAlarmCommand extends $Command diff --git a/clients/client-lightsail/src/commands/PutInstancePublicPortsCommand.ts b/clients/client-lightsail/src/commands/PutInstancePublicPortsCommand.ts index acc90c614ed05..8e34ba6245bd1 100644 --- a/clients/client-lightsail/src/commands/PutInstancePublicPortsCommand.ts +++ b/clients/client-lightsail/src/commands/PutInstancePublicPortsCommand.ts @@ -125,6 +125,7 @@ export interface PutInstancePublicPortsCommandOutput extends PutInstancePublicPo * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class PutInstancePublicPortsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/RebootInstanceCommand.ts b/clients/client-lightsail/src/commands/RebootInstanceCommand.ts index 1c95763fc0050..2f5ba83581bc9 100644 --- a/clients/client-lightsail/src/commands/RebootInstanceCommand.ts +++ b/clients/client-lightsail/src/commands/RebootInstanceCommand.ts @@ -106,6 +106,7 @@ export interface RebootInstanceCommandOutput extends RebootInstanceResult, __Met * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class RebootInstanceCommand extends $Command diff --git a/clients/client-lightsail/src/commands/RebootRelationalDatabaseCommand.ts b/clients/client-lightsail/src/commands/RebootRelationalDatabaseCommand.ts index f2fdc843faf9b..241d71d2bb797 100644 --- a/clients/client-lightsail/src/commands/RebootRelationalDatabaseCommand.ts +++ b/clients/client-lightsail/src/commands/RebootRelationalDatabaseCommand.ts @@ -106,6 +106,7 @@ export interface RebootRelationalDatabaseCommandOutput extends RebootRelationalD * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class RebootRelationalDatabaseCommand extends $Command diff --git a/clients/client-lightsail/src/commands/RegisterContainerImageCommand.ts b/clients/client-lightsail/src/commands/RegisterContainerImageCommand.ts index d22424b001b1a..b63260e8fc6fd 100644 --- a/clients/client-lightsail/src/commands/RegisterContainerImageCommand.ts +++ b/clients/client-lightsail/src/commands/RegisterContainerImageCommand.ts @@ -90,6 +90,7 @@ export interface RegisterContainerImageCommandOutput extends RegisterContainerIm * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class RegisterContainerImageCommand extends $Command diff --git a/clients/client-lightsail/src/commands/ReleaseStaticIpCommand.ts b/clients/client-lightsail/src/commands/ReleaseStaticIpCommand.ts index 351d2391a5f7b..d49bd4730bffb 100644 --- a/clients/client-lightsail/src/commands/ReleaseStaticIpCommand.ts +++ b/clients/client-lightsail/src/commands/ReleaseStaticIpCommand.ts @@ -103,6 +103,7 @@ export interface ReleaseStaticIpCommandOutput extends ReleaseStaticIpResult, __M * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class ReleaseStaticIpCommand extends $Command diff --git a/clients/client-lightsail/src/commands/ResetDistributionCacheCommand.ts b/clients/client-lightsail/src/commands/ResetDistributionCacheCommand.ts index cf5123ffa3440..7c6b5d05c6cd4 100644 --- a/clients/client-lightsail/src/commands/ResetDistributionCacheCommand.ts +++ b/clients/client-lightsail/src/commands/ResetDistributionCacheCommand.ts @@ -102,6 +102,7 @@ export interface ResetDistributionCacheCommandOutput extends ResetDistributionCa * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class ResetDistributionCacheCommand extends $Command diff --git a/clients/client-lightsail/src/commands/SendContactMethodVerificationCommand.ts b/clients/client-lightsail/src/commands/SendContactMethodVerificationCommand.ts index 0917b74dac289..b282d8ae9fd53 100644 --- a/clients/client-lightsail/src/commands/SendContactMethodVerificationCommand.ts +++ b/clients/client-lightsail/src/commands/SendContactMethodVerificationCommand.ts @@ -116,6 +116,7 @@ export interface SendContactMethodVerificationCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class SendContactMethodVerificationCommand extends $Command diff --git a/clients/client-lightsail/src/commands/SetIpAddressTypeCommand.ts b/clients/client-lightsail/src/commands/SetIpAddressTypeCommand.ts index 798f655dbd68f..8724487dda12c 100644 --- a/clients/client-lightsail/src/commands/SetIpAddressTypeCommand.ts +++ b/clients/client-lightsail/src/commands/SetIpAddressTypeCommand.ts @@ -109,6 +109,7 @@ export interface SetIpAddressTypeCommandOutput extends SetIpAddressTypeResult, _ * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class SetIpAddressTypeCommand extends $Command diff --git a/clients/client-lightsail/src/commands/SetResourceAccessForBucketCommand.ts b/clients/client-lightsail/src/commands/SetResourceAccessForBucketCommand.ts index e0a1de41eded7..a3fdceb4c62fe 100644 --- a/clients/client-lightsail/src/commands/SetResourceAccessForBucketCommand.ts +++ b/clients/client-lightsail/src/commands/SetResourceAccessForBucketCommand.ts @@ -101,6 +101,7 @@ export interface SetResourceAccessForBucketCommandOutput extends SetResourceAcce * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class SetResourceAccessForBucketCommand extends $Command diff --git a/clients/client-lightsail/src/commands/SetupInstanceHttpsCommand.ts b/clients/client-lightsail/src/commands/SetupInstanceHttpsCommand.ts index e522e7ce94aaa..1acd5b912a653 100644 --- a/clients/client-lightsail/src/commands/SetupInstanceHttpsCommand.ts +++ b/clients/client-lightsail/src/commands/SetupInstanceHttpsCommand.ts @@ -108,6 +108,7 @@ export interface SetupInstanceHttpsCommandOutput extends SetupInstanceHttpsResul * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class SetupInstanceHttpsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/StartGUISessionCommand.ts b/clients/client-lightsail/src/commands/StartGUISessionCommand.ts index 25391619beb56..2e71689967a8e 100644 --- a/clients/client-lightsail/src/commands/StartGUISessionCommand.ts +++ b/clients/client-lightsail/src/commands/StartGUISessionCommand.ts @@ -98,6 +98,7 @@ export interface StartGUISessionCommandOutput extends StartGUISessionResult, __M * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class StartGUISessionCommand extends $Command diff --git a/clients/client-lightsail/src/commands/StartInstanceCommand.ts b/clients/client-lightsail/src/commands/StartInstanceCommand.ts index 550defd65eb72..15fd6858b1549 100644 --- a/clients/client-lightsail/src/commands/StartInstanceCommand.ts +++ b/clients/client-lightsail/src/commands/StartInstanceCommand.ts @@ -112,6 +112,7 @@ export interface StartInstanceCommandOutput extends StartInstanceResult, __Metad * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class StartInstanceCommand extends $Command diff --git a/clients/client-lightsail/src/commands/StartRelationalDatabaseCommand.ts b/clients/client-lightsail/src/commands/StartRelationalDatabaseCommand.ts index 632ad07939102..2336855b755e1 100644 --- a/clients/client-lightsail/src/commands/StartRelationalDatabaseCommand.ts +++ b/clients/client-lightsail/src/commands/StartRelationalDatabaseCommand.ts @@ -107,6 +107,7 @@ export interface StartRelationalDatabaseCommandOutput extends StartRelationalDat * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class StartRelationalDatabaseCommand extends $Command diff --git a/clients/client-lightsail/src/commands/StopGUISessionCommand.ts b/clients/client-lightsail/src/commands/StopGUISessionCommand.ts index 7b58aab8b5e7a..a14b9e76dc576 100644 --- a/clients/client-lightsail/src/commands/StopGUISessionCommand.ts +++ b/clients/client-lightsail/src/commands/StopGUISessionCommand.ts @@ -98,6 +98,7 @@ export interface StopGUISessionCommandOutput extends StopGUISessionResult, __Met * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class StopGUISessionCommand extends $Command diff --git a/clients/client-lightsail/src/commands/StopInstanceCommand.ts b/clients/client-lightsail/src/commands/StopInstanceCommand.ts index c8b7457ee6ddd..3288f2ade7b90 100644 --- a/clients/client-lightsail/src/commands/StopInstanceCommand.ts +++ b/clients/client-lightsail/src/commands/StopInstanceCommand.ts @@ -112,6 +112,7 @@ export interface StopInstanceCommandOutput extends StopInstanceResult, __Metadat * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class StopInstanceCommand extends $Command diff --git a/clients/client-lightsail/src/commands/StopRelationalDatabaseCommand.ts b/clients/client-lightsail/src/commands/StopRelationalDatabaseCommand.ts index 3b89ab112d8c3..d0bc1f971b4b3 100644 --- a/clients/client-lightsail/src/commands/StopRelationalDatabaseCommand.ts +++ b/clients/client-lightsail/src/commands/StopRelationalDatabaseCommand.ts @@ -112,6 +112,7 @@ export interface StopRelationalDatabaseCommandOutput extends StopRelationalDatab * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class StopRelationalDatabaseCommand extends $Command diff --git a/clients/client-lightsail/src/commands/TagResourceCommand.ts b/clients/client-lightsail/src/commands/TagResourceCommand.ts index 56658e3921f40..81747ae615e2c 100644 --- a/clients/client-lightsail/src/commands/TagResourceCommand.ts +++ b/clients/client-lightsail/src/commands/TagResourceCommand.ts @@ -115,6 +115,7 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-lightsail/src/commands/TestAlarmCommand.ts b/clients/client-lightsail/src/commands/TestAlarmCommand.ts index c0028a87054f1..5ee46fa8ba9e1 100644 --- a/clients/client-lightsail/src/commands/TestAlarmCommand.ts +++ b/clients/client-lightsail/src/commands/TestAlarmCommand.ts @@ -107,6 +107,7 @@ export interface TestAlarmCommandOutput extends TestAlarmResult, __MetadataBeare * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class TestAlarmCommand extends $Command diff --git a/clients/client-lightsail/src/commands/UnpeerVpcCommand.ts b/clients/client-lightsail/src/commands/UnpeerVpcCommand.ts index e706762af2fd7..097c1d3f80fd4 100644 --- a/clients/client-lightsail/src/commands/UnpeerVpcCommand.ts +++ b/clients/client-lightsail/src/commands/UnpeerVpcCommand.ts @@ -99,6 +99,7 @@ export interface UnpeerVpcCommandOutput extends UnpeerVpcResult, __MetadataBeare * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class UnpeerVpcCommand extends $Command diff --git a/clients/client-lightsail/src/commands/UntagResourceCommand.ts b/clients/client-lightsail/src/commands/UntagResourceCommand.ts index aca685205caeb..68f8178602d76 100644 --- a/clients/client-lightsail/src/commands/UntagResourceCommand.ts +++ b/clients/client-lightsail/src/commands/UntagResourceCommand.ts @@ -111,6 +111,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResult, __Metad * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-lightsail/src/commands/UpdateBucketBundleCommand.ts b/clients/client-lightsail/src/commands/UpdateBucketBundleCommand.ts index abed24ed11bba..de345bdfe1db5 100644 --- a/clients/client-lightsail/src/commands/UpdateBucketBundleCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateBucketBundleCommand.ts @@ -109,6 +109,7 @@ export interface UpdateBucketBundleCommandOutput extends UpdateBucketBundleResul * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class UpdateBucketBundleCommand extends $Command diff --git a/clients/client-lightsail/src/commands/UpdateBucketCommand.ts b/clients/client-lightsail/src/commands/UpdateBucketCommand.ts index 3101e7f99d58f..5c7b2650ee6cb 100644 --- a/clients/client-lightsail/src/commands/UpdateBucketCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateBucketCommand.ts @@ -154,6 +154,7 @@ export interface UpdateBucketCommandOutput extends UpdateBucketResult, __Metadat * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class UpdateBucketCommand extends $Command diff --git a/clients/client-lightsail/src/commands/UpdateContainerServiceCommand.ts b/clients/client-lightsail/src/commands/UpdateContainerServiceCommand.ts index 753fa603524a5..e7a97648a730a 100644 --- a/clients/client-lightsail/src/commands/UpdateContainerServiceCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateContainerServiceCommand.ts @@ -192,6 +192,7 @@ export interface UpdateContainerServiceCommandOutput extends UpdateContainerServ * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class UpdateContainerServiceCommand extends $Command diff --git a/clients/client-lightsail/src/commands/UpdateDistributionBundleCommand.ts b/clients/client-lightsail/src/commands/UpdateDistributionBundleCommand.ts index 62d7ff1deaadf..8cf062a7500ac 100644 --- a/clients/client-lightsail/src/commands/UpdateDistributionBundleCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateDistributionBundleCommand.ts @@ -106,6 +106,7 @@ export interface UpdateDistributionBundleCommandOutput extends UpdateDistributio * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class UpdateDistributionBundleCommand extends $Command diff --git a/clients/client-lightsail/src/commands/UpdateDistributionCommand.ts b/clients/client-lightsail/src/commands/UpdateDistributionCommand.ts index 5472c4d6ff87f..172876c461235 100644 --- a/clients/client-lightsail/src/commands/UpdateDistributionCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateDistributionCommand.ts @@ -142,6 +142,7 @@ export interface UpdateDistributionCommandOutput extends UpdateDistributionResul * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class UpdateDistributionCommand extends $Command diff --git a/clients/client-lightsail/src/commands/UpdateDomainEntryCommand.ts b/clients/client-lightsail/src/commands/UpdateDomainEntryCommand.ts index a4b7029ac7742..18ebacbfbeb36 100644 --- a/clients/client-lightsail/src/commands/UpdateDomainEntryCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateDomainEntryCommand.ts @@ -116,6 +116,7 @@ export interface UpdateDomainEntryCommandOutput extends UpdateDomainEntryResult, * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class UpdateDomainEntryCommand extends $Command diff --git a/clients/client-lightsail/src/commands/UpdateInstanceMetadataOptionsCommand.ts b/clients/client-lightsail/src/commands/UpdateInstanceMetadataOptionsCommand.ts index 87618dd438319..b4939326f746e 100644 --- a/clients/client-lightsail/src/commands/UpdateInstanceMetadataOptionsCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateInstanceMetadataOptionsCommand.ts @@ -115,6 +115,7 @@ export interface UpdateInstanceMetadataOptionsCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class UpdateInstanceMetadataOptionsCommand extends $Command diff --git a/clients/client-lightsail/src/commands/UpdateLoadBalancerAttributeCommand.ts b/clients/client-lightsail/src/commands/UpdateLoadBalancerAttributeCommand.ts index cfe7ff45b166e..cdd4e89b60334 100644 --- a/clients/client-lightsail/src/commands/UpdateLoadBalancerAttributeCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateLoadBalancerAttributeCommand.ts @@ -109,6 +109,7 @@ export interface UpdateLoadBalancerAttributeCommandOutput extends UpdateLoadBala * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class UpdateLoadBalancerAttributeCommand extends $Command diff --git a/clients/client-lightsail/src/commands/UpdateRelationalDatabaseCommand.ts b/clients/client-lightsail/src/commands/UpdateRelationalDatabaseCommand.ts index abad10f43266f..08ff9b9699c30 100644 --- a/clients/client-lightsail/src/commands/UpdateRelationalDatabaseCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateRelationalDatabaseCommand.ts @@ -122,6 +122,7 @@ export interface UpdateRelationalDatabaseCommandOutput extends UpdateRelationalD * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class UpdateRelationalDatabaseCommand extends $Command diff --git a/clients/client-lightsail/src/commands/UpdateRelationalDatabaseParametersCommand.ts b/clients/client-lightsail/src/commands/UpdateRelationalDatabaseParametersCommand.ts index ded3816d6a9cb..daf2461f5bc18 100644 --- a/clients/client-lightsail/src/commands/UpdateRelationalDatabaseParametersCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateRelationalDatabaseParametersCommand.ts @@ -132,6 +132,7 @@ export interface UpdateRelationalDatabaseParametersCommandOutput * @throws {@link LightsailServiceException} *

Base exception class for all service exceptions from Lightsail service.

* + * * @public */ export class UpdateRelationalDatabaseParametersCommand extends $Command diff --git a/clients/client-location/src/commands/AssociateTrackerConsumerCommand.ts b/clients/client-location/src/commands/AssociateTrackerConsumerCommand.ts index 60102c9c04e08..fe7d7528a0c1a 100644 --- a/clients/client-location/src/commands/AssociateTrackerConsumerCommand.ts +++ b/clients/client-location/src/commands/AssociateTrackerConsumerCommand.ts @@ -83,6 +83,7 @@ export interface AssociateTrackerConsumerCommandOutput extends AssociateTrackerC * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class AssociateTrackerConsumerCommand extends $Command diff --git a/clients/client-location/src/commands/BatchDeleteDevicePositionHistoryCommand.ts b/clients/client-location/src/commands/BatchDeleteDevicePositionHistoryCommand.ts index 59164b27a0bef..eef3a8b309098 100644 --- a/clients/client-location/src/commands/BatchDeleteDevicePositionHistoryCommand.ts +++ b/clients/client-location/src/commands/BatchDeleteDevicePositionHistoryCommand.ts @@ -87,6 +87,7 @@ export interface BatchDeleteDevicePositionHistoryCommandOutput * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class BatchDeleteDevicePositionHistoryCommand extends $Command diff --git a/clients/client-location/src/commands/BatchDeleteGeofenceCommand.ts b/clients/client-location/src/commands/BatchDeleteGeofenceCommand.ts index f0b59383084e2..3f24e369bc23d 100644 --- a/clients/client-location/src/commands/BatchDeleteGeofenceCommand.ts +++ b/clients/client-location/src/commands/BatchDeleteGeofenceCommand.ts @@ -85,6 +85,7 @@ export interface BatchDeleteGeofenceCommandOutput extends BatchDeleteGeofenceRes * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class BatchDeleteGeofenceCommand extends $Command diff --git a/clients/client-location/src/commands/BatchEvaluateGeofencesCommand.ts b/clients/client-location/src/commands/BatchEvaluateGeofencesCommand.ts index dee57e112f8e8..c4edccb0b863f 100644 --- a/clients/client-location/src/commands/BatchEvaluateGeofencesCommand.ts +++ b/clients/client-location/src/commands/BatchEvaluateGeofencesCommand.ts @@ -127,6 +127,7 @@ export interface BatchEvaluateGeofencesCommandOutput extends BatchEvaluateGeofen * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class BatchEvaluateGeofencesCommand extends $Command diff --git a/clients/client-location/src/commands/BatchGetDevicePositionCommand.ts b/clients/client-location/src/commands/BatchGetDevicePositionCommand.ts index 888f12a3ebe9e..c234d31a94588 100644 --- a/clients/client-location/src/commands/BatchGetDevicePositionCommand.ts +++ b/clients/client-location/src/commands/BatchGetDevicePositionCommand.ts @@ -102,6 +102,7 @@ export interface BatchGetDevicePositionCommandOutput extends BatchGetDevicePosit * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class BatchGetDevicePositionCommand extends $Command diff --git a/clients/client-location/src/commands/BatchPutGeofenceCommand.ts b/clients/client-location/src/commands/BatchPutGeofenceCommand.ts index bf50cf15d6c46..45f3bbb94285b 100644 --- a/clients/client-location/src/commands/BatchPutGeofenceCommand.ts +++ b/clients/client-location/src/commands/BatchPutGeofenceCommand.ts @@ -115,6 +115,7 @@ export interface BatchPutGeofenceCommandOutput extends BatchPutGeofenceResponse, * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class BatchPutGeofenceCommand extends $Command diff --git a/clients/client-location/src/commands/BatchUpdateDevicePositionCommand.ts b/clients/client-location/src/commands/BatchUpdateDevicePositionCommand.ts index 676c82f2a17fa..b03d80b428772 100644 --- a/clients/client-location/src/commands/BatchUpdateDevicePositionCommand.ts +++ b/clients/client-location/src/commands/BatchUpdateDevicePositionCommand.ts @@ -121,6 +121,7 @@ export interface BatchUpdateDevicePositionCommandOutput extends BatchUpdateDevic * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class BatchUpdateDevicePositionCommand extends $Command diff --git a/clients/client-location/src/commands/CalculateRouteCommand.ts b/clients/client-location/src/commands/CalculateRouteCommand.ts index fa85977729e78..f7edb4b6cb69d 100644 --- a/clients/client-location/src/commands/CalculateRouteCommand.ts +++ b/clients/client-location/src/commands/CalculateRouteCommand.ts @@ -186,6 +186,7 @@ export interface CalculateRouteCommandOutput extends CalculateRouteResponse, __M * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class CalculateRouteCommand extends $Command diff --git a/clients/client-location/src/commands/CalculateRouteMatrixCommand.ts b/clients/client-location/src/commands/CalculateRouteMatrixCommand.ts index 62b094275cf53..32c4676df7c1c 100644 --- a/clients/client-location/src/commands/CalculateRouteMatrixCommand.ts +++ b/clients/client-location/src/commands/CalculateRouteMatrixCommand.ts @@ -177,6 +177,7 @@ export interface CalculateRouteMatrixCommandOutput extends CalculateRouteMatrixR * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class CalculateRouteMatrixCommand extends $Command diff --git a/clients/client-location/src/commands/CreateGeofenceCollectionCommand.ts b/clients/client-location/src/commands/CreateGeofenceCollectionCommand.ts index f9da43e09c6a1..0e1d591119809 100644 --- a/clients/client-location/src/commands/CreateGeofenceCollectionCommand.ts +++ b/clients/client-location/src/commands/CreateGeofenceCollectionCommand.ts @@ -84,6 +84,7 @@ export interface CreateGeofenceCollectionCommandOutput extends CreateGeofenceCol * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class CreateGeofenceCollectionCommand extends $Command diff --git a/clients/client-location/src/commands/CreateKeyCommand.ts b/clients/client-location/src/commands/CreateKeyCommand.ts index 3121e4098d9e2..b8c8f7cafc9c3 100644 --- a/clients/client-location/src/commands/CreateKeyCommand.ts +++ b/clients/client-location/src/commands/CreateKeyCommand.ts @@ -99,6 +99,7 @@ export interface CreateKeyCommandOutput extends CreateKeyResponse, __MetadataBea * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class CreateKeyCommand extends $Command diff --git a/clients/client-location/src/commands/CreateMapCommand.ts b/clients/client-location/src/commands/CreateMapCommand.ts index 47ec3c704433e..f27e45b996582 100644 --- a/clients/client-location/src/commands/CreateMapCommand.ts +++ b/clients/client-location/src/commands/CreateMapCommand.ts @@ -96,6 +96,7 @@ export interface CreateMapCommandOutput extends CreateMapResponse, __MetadataBea * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class CreateMapCommand extends $Command diff --git a/clients/client-location/src/commands/CreatePlaceIndexCommand.ts b/clients/client-location/src/commands/CreatePlaceIndexCommand.ts index a385d4db09403..789d28d92bf67 100644 --- a/clients/client-location/src/commands/CreatePlaceIndexCommand.ts +++ b/clients/client-location/src/commands/CreatePlaceIndexCommand.ts @@ -96,6 +96,7 @@ export interface CreatePlaceIndexCommandOutput extends CreatePlaceIndexResponse, * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class CreatePlaceIndexCommand extends $Command diff --git a/clients/client-location/src/commands/CreateRouteCalculatorCommand.ts b/clients/client-location/src/commands/CreateRouteCalculatorCommand.ts index 3a84c12b68850..1c027658e6492 100644 --- a/clients/client-location/src/commands/CreateRouteCalculatorCommand.ts +++ b/clients/client-location/src/commands/CreateRouteCalculatorCommand.ts @@ -92,6 +92,7 @@ export interface CreateRouteCalculatorCommandOutput extends CreateRouteCalculato * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class CreateRouteCalculatorCommand extends $Command diff --git a/clients/client-location/src/commands/CreateTrackerCommand.ts b/clients/client-location/src/commands/CreateTrackerCommand.ts index 8a4c0e5b3a8e9..7136a31179389 100644 --- a/clients/client-location/src/commands/CreateTrackerCommand.ts +++ b/clients/client-location/src/commands/CreateTrackerCommand.ts @@ -88,6 +88,7 @@ export interface CreateTrackerCommandOutput extends CreateTrackerResponse, __Met * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class CreateTrackerCommand extends $Command diff --git a/clients/client-location/src/commands/DeleteGeofenceCollectionCommand.ts b/clients/client-location/src/commands/DeleteGeofenceCollectionCommand.ts index 708550f5d1c7f..443c0bd1a3979 100644 --- a/clients/client-location/src/commands/DeleteGeofenceCollectionCommand.ts +++ b/clients/client-location/src/commands/DeleteGeofenceCollectionCommand.ts @@ -73,6 +73,7 @@ export interface DeleteGeofenceCollectionCommandOutput extends DeleteGeofenceCol * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class DeleteGeofenceCollectionCommand extends $Command diff --git a/clients/client-location/src/commands/DeleteKeyCommand.ts b/clients/client-location/src/commands/DeleteKeyCommand.ts index 8e5f17dedea9e..48cd858711aec 100644 --- a/clients/client-location/src/commands/DeleteKeyCommand.ts +++ b/clients/client-location/src/commands/DeleteKeyCommand.ts @@ -71,6 +71,7 @@ export interface DeleteKeyCommandOutput extends DeleteKeyResponse, __MetadataBea * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class DeleteKeyCommand extends $Command diff --git a/clients/client-location/src/commands/DeleteMapCommand.ts b/clients/client-location/src/commands/DeleteMapCommand.ts index 89a625902898a..f329d37c57dc9 100644 --- a/clients/client-location/src/commands/DeleteMapCommand.ts +++ b/clients/client-location/src/commands/DeleteMapCommand.ts @@ -73,6 +73,7 @@ export interface DeleteMapCommandOutput extends DeleteMapResponse, __MetadataBea * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class DeleteMapCommand extends $Command diff --git a/clients/client-location/src/commands/DeletePlaceIndexCommand.ts b/clients/client-location/src/commands/DeletePlaceIndexCommand.ts index 9161c440a766d..2ae08f4bc1dda 100644 --- a/clients/client-location/src/commands/DeletePlaceIndexCommand.ts +++ b/clients/client-location/src/commands/DeletePlaceIndexCommand.ts @@ -72,6 +72,7 @@ export interface DeletePlaceIndexCommandOutput extends DeletePlaceIndexResponse, * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class DeletePlaceIndexCommand extends $Command diff --git a/clients/client-location/src/commands/DeleteRouteCalculatorCommand.ts b/clients/client-location/src/commands/DeleteRouteCalculatorCommand.ts index 02de33df9c814..a629b9eb1ba45 100644 --- a/clients/client-location/src/commands/DeleteRouteCalculatorCommand.ts +++ b/clients/client-location/src/commands/DeleteRouteCalculatorCommand.ts @@ -72,6 +72,7 @@ export interface DeleteRouteCalculatorCommandOutput extends DeleteRouteCalculato * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class DeleteRouteCalculatorCommand extends $Command diff --git a/clients/client-location/src/commands/DeleteTrackerCommand.ts b/clients/client-location/src/commands/DeleteTrackerCommand.ts index 474883cea5ef6..9d458d3eaeee7 100644 --- a/clients/client-location/src/commands/DeleteTrackerCommand.ts +++ b/clients/client-location/src/commands/DeleteTrackerCommand.ts @@ -74,6 +74,7 @@ export interface DeleteTrackerCommandOutput extends DeleteTrackerResponse, __Met * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class DeleteTrackerCommand extends $Command diff --git a/clients/client-location/src/commands/DescribeGeofenceCollectionCommand.ts b/clients/client-location/src/commands/DescribeGeofenceCollectionCommand.ts index 320e9b1004508..01b5b23915cfe 100644 --- a/clients/client-location/src/commands/DescribeGeofenceCollectionCommand.ts +++ b/clients/client-location/src/commands/DescribeGeofenceCollectionCommand.ts @@ -82,6 +82,7 @@ export interface DescribeGeofenceCollectionCommandOutput extends DescribeGeofenc * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class DescribeGeofenceCollectionCommand extends $Command diff --git a/clients/client-location/src/commands/DescribeKeyCommand.ts b/clients/client-location/src/commands/DescribeKeyCommand.ts index f377bae85fdcd..7d0527c922294 100644 --- a/clients/client-location/src/commands/DescribeKeyCommand.ts +++ b/clients/client-location/src/commands/DescribeKeyCommand.ts @@ -91,6 +91,7 @@ export interface DescribeKeyCommandOutput extends DescribeKeyResponse, __Metadat * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class DescribeKeyCommand extends $Command diff --git a/clients/client-location/src/commands/DescribeMapCommand.ts b/clients/client-location/src/commands/DescribeMapCommand.ts index 7e9da47a56d8b..884f486540776 100644 --- a/clients/client-location/src/commands/DescribeMapCommand.ts +++ b/clients/client-location/src/commands/DescribeMapCommand.ts @@ -87,6 +87,7 @@ export interface DescribeMapCommandOutput extends DescribeMapResponse, __Metadat * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class DescribeMapCommand extends $Command diff --git a/clients/client-location/src/commands/DescribePlaceIndexCommand.ts b/clients/client-location/src/commands/DescribePlaceIndexCommand.ts index 040b58dcc45cb..68f228a040c3d 100644 --- a/clients/client-location/src/commands/DescribePlaceIndexCommand.ts +++ b/clients/client-location/src/commands/DescribePlaceIndexCommand.ts @@ -83,6 +83,7 @@ export interface DescribePlaceIndexCommandOutput extends DescribePlaceIndexRespo * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class DescribePlaceIndexCommand extends $Command diff --git a/clients/client-location/src/commands/DescribeRouteCalculatorCommand.ts b/clients/client-location/src/commands/DescribeRouteCalculatorCommand.ts index 685b1a83ef045..3fffec4517365 100644 --- a/clients/client-location/src/commands/DescribeRouteCalculatorCommand.ts +++ b/clients/client-location/src/commands/DescribeRouteCalculatorCommand.ts @@ -80,6 +80,7 @@ export interface DescribeRouteCalculatorCommandOutput extends DescribeRouteCalcu * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class DescribeRouteCalculatorCommand extends $Command diff --git a/clients/client-location/src/commands/DescribeTrackerCommand.ts b/clients/client-location/src/commands/DescribeTrackerCommand.ts index 7421c50a35b2a..f3c0956bfff47 100644 --- a/clients/client-location/src/commands/DescribeTrackerCommand.ts +++ b/clients/client-location/src/commands/DescribeTrackerCommand.ts @@ -84,6 +84,7 @@ export interface DescribeTrackerCommandOutput extends DescribeTrackerResponse, _ * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class DescribeTrackerCommand extends $Command diff --git a/clients/client-location/src/commands/DisassociateTrackerConsumerCommand.ts b/clients/client-location/src/commands/DisassociateTrackerConsumerCommand.ts index c9cad6f83db86..d39fc6885c14c 100644 --- a/clients/client-location/src/commands/DisassociateTrackerConsumerCommand.ts +++ b/clients/client-location/src/commands/DisassociateTrackerConsumerCommand.ts @@ -79,6 +79,7 @@ export interface DisassociateTrackerConsumerCommandOutput * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class DisassociateTrackerConsumerCommand extends $Command diff --git a/clients/client-location/src/commands/ForecastGeofenceEventsCommand.ts b/clients/client-location/src/commands/ForecastGeofenceEventsCommand.ts index fe04ce5f51136..0422ecd4c8156 100644 --- a/clients/client-location/src/commands/ForecastGeofenceEventsCommand.ts +++ b/clients/client-location/src/commands/ForecastGeofenceEventsCommand.ts @@ -110,6 +110,7 @@ export interface ForecastGeofenceEventsCommandOutput extends ForecastGeofenceEve * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class ForecastGeofenceEventsCommand extends $Command diff --git a/clients/client-location/src/commands/GetDevicePositionCommand.ts b/clients/client-location/src/commands/GetDevicePositionCommand.ts index 26f68627fa2ef..c57c16047861a 100644 --- a/clients/client-location/src/commands/GetDevicePositionCommand.ts +++ b/clients/client-location/src/commands/GetDevicePositionCommand.ts @@ -90,6 +90,7 @@ export interface GetDevicePositionCommandOutput extends GetDevicePositionRespons * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class GetDevicePositionCommand extends $Command diff --git a/clients/client-location/src/commands/GetDevicePositionHistoryCommand.ts b/clients/client-location/src/commands/GetDevicePositionHistoryCommand.ts index 459571a58eccd..45b575e3dbe60 100644 --- a/clients/client-location/src/commands/GetDevicePositionHistoryCommand.ts +++ b/clients/client-location/src/commands/GetDevicePositionHistoryCommand.ts @@ -100,6 +100,7 @@ export interface GetDevicePositionHistoryCommandOutput extends GetDevicePosition * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class GetDevicePositionHistoryCommand extends $Command diff --git a/clients/client-location/src/commands/GetGeofenceCommand.ts b/clients/client-location/src/commands/GetGeofenceCommand.ts index 7c09939400df6..89c7ce98b4f1f 100644 --- a/clients/client-location/src/commands/GetGeofenceCommand.ts +++ b/clients/client-location/src/commands/GetGeofenceCommand.ts @@ -97,6 +97,7 @@ export interface GetGeofenceCommandOutput extends GetGeofenceResponse, __Metadat * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class GetGeofenceCommand extends $Command diff --git a/clients/client-location/src/commands/GetMapGlyphsCommand.ts b/clients/client-location/src/commands/GetMapGlyphsCommand.ts index 8dac44e135eb6..55a20b5c537e9 100644 --- a/clients/client-location/src/commands/GetMapGlyphsCommand.ts +++ b/clients/client-location/src/commands/GetMapGlyphsCommand.ts @@ -84,6 +84,7 @@ export interface GetMapGlyphsCommandOutput extends GetMapGlyphsCommandOutputType * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class GetMapGlyphsCommand extends $Command diff --git a/clients/client-location/src/commands/GetMapSpritesCommand.ts b/clients/client-location/src/commands/GetMapSpritesCommand.ts index 257865e4f476c..3da4a33d0bb50 100644 --- a/clients/client-location/src/commands/GetMapSpritesCommand.ts +++ b/clients/client-location/src/commands/GetMapSpritesCommand.ts @@ -89,6 +89,7 @@ export interface GetMapSpritesCommandOutput extends GetMapSpritesCommandOutputTy * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class GetMapSpritesCommand extends $Command diff --git a/clients/client-location/src/commands/GetMapStyleDescriptorCommand.ts b/clients/client-location/src/commands/GetMapStyleDescriptorCommand.ts index 795f2fccd1fbf..20d9fb21f49e0 100644 --- a/clients/client-location/src/commands/GetMapStyleDescriptorCommand.ts +++ b/clients/client-location/src/commands/GetMapStyleDescriptorCommand.ts @@ -89,6 +89,7 @@ export interface GetMapStyleDescriptorCommandOutput extends GetMapStyleDescripto * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class GetMapStyleDescriptorCommand extends $Command diff --git a/clients/client-location/src/commands/GetMapTileCommand.ts b/clients/client-location/src/commands/GetMapTileCommand.ts index 639d676b1f125..ce97e08c0da5b 100644 --- a/clients/client-location/src/commands/GetMapTileCommand.ts +++ b/clients/client-location/src/commands/GetMapTileCommand.ts @@ -90,6 +90,7 @@ export interface GetMapTileCommandOutput extends GetMapTileCommandOutputType, __ * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class GetMapTileCommand extends $Command diff --git a/clients/client-location/src/commands/GetPlaceCommand.ts b/clients/client-location/src/commands/GetPlaceCommand.ts index 9d828bfaac11d..afdaf973cd155 100644 --- a/clients/client-location/src/commands/GetPlaceCommand.ts +++ b/clients/client-location/src/commands/GetPlaceCommand.ts @@ -124,6 +124,7 @@ export interface GetPlaceCommandOutput extends GetPlaceResponse, __MetadataBeare * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class GetPlaceCommand extends $Command diff --git a/clients/client-location/src/commands/ListDevicePositionsCommand.ts b/clients/client-location/src/commands/ListDevicePositionsCommand.ts index ddf8d0fefea61..bc40efc9e6229 100644 --- a/clients/client-location/src/commands/ListDevicePositionsCommand.ts +++ b/clients/client-location/src/commands/ListDevicePositionsCommand.ts @@ -99,6 +99,7 @@ export interface ListDevicePositionsCommandOutput extends ListDevicePositionsRes * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class ListDevicePositionsCommand extends $Command diff --git a/clients/client-location/src/commands/ListGeofenceCollectionsCommand.ts b/clients/client-location/src/commands/ListGeofenceCollectionsCommand.ts index 18aac30a014c8..e0c181dae410b 100644 --- a/clients/client-location/src/commands/ListGeofenceCollectionsCommand.ts +++ b/clients/client-location/src/commands/ListGeofenceCollectionsCommand.ts @@ -79,6 +79,7 @@ export interface ListGeofenceCollectionsCommandOutput extends ListGeofenceCollec * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class ListGeofenceCollectionsCommand extends $Command diff --git a/clients/client-location/src/commands/ListGeofencesCommand.ts b/clients/client-location/src/commands/ListGeofencesCommand.ts index 55db86947021b..ae06308798eec 100644 --- a/clients/client-location/src/commands/ListGeofencesCommand.ts +++ b/clients/client-location/src/commands/ListGeofencesCommand.ts @@ -104,6 +104,7 @@ export interface ListGeofencesCommandOutput extends ListGeofencesResponse, __Met * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class ListGeofencesCommand extends $Command diff --git a/clients/client-location/src/commands/ListKeysCommand.ts b/clients/client-location/src/commands/ListKeysCommand.ts index e7a0b5dcb3d41..56815986fdb70 100644 --- a/clients/client-location/src/commands/ListKeysCommand.ts +++ b/clients/client-location/src/commands/ListKeysCommand.ts @@ -92,6 +92,7 @@ export interface ListKeysCommandOutput extends ListKeysResponse, __MetadataBeare * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class ListKeysCommand extends $Command diff --git a/clients/client-location/src/commands/ListMapsCommand.ts b/clients/client-location/src/commands/ListMapsCommand.ts index cb45c8b1af502..42f98246ed7d6 100644 --- a/clients/client-location/src/commands/ListMapsCommand.ts +++ b/clients/client-location/src/commands/ListMapsCommand.ts @@ -79,6 +79,7 @@ export interface ListMapsCommandOutput extends ListMapsResponse, __MetadataBeare * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class ListMapsCommand extends $Command diff --git a/clients/client-location/src/commands/ListPlaceIndexesCommand.ts b/clients/client-location/src/commands/ListPlaceIndexesCommand.ts index 1e406f2b333fc..1e3a5c4f51405 100644 --- a/clients/client-location/src/commands/ListPlaceIndexesCommand.ts +++ b/clients/client-location/src/commands/ListPlaceIndexesCommand.ts @@ -79,6 +79,7 @@ export interface ListPlaceIndexesCommandOutput extends ListPlaceIndexesResponse, * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class ListPlaceIndexesCommand extends $Command diff --git a/clients/client-location/src/commands/ListRouteCalculatorsCommand.ts b/clients/client-location/src/commands/ListRouteCalculatorsCommand.ts index c874bae5948ac..aa3e67f6bd343 100644 --- a/clients/client-location/src/commands/ListRouteCalculatorsCommand.ts +++ b/clients/client-location/src/commands/ListRouteCalculatorsCommand.ts @@ -79,6 +79,7 @@ export interface ListRouteCalculatorsCommandOutput extends ListRouteCalculatorsR * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class ListRouteCalculatorsCommand extends $Command diff --git a/clients/client-location/src/commands/ListTagsForResourceCommand.ts b/clients/client-location/src/commands/ListTagsForResourceCommand.ts index b99a29073e14b..456802faab831 100644 --- a/clients/client-location/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-location/src/commands/ListTagsForResourceCommand.ts @@ -73,6 +73,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-location/src/commands/ListTrackerConsumersCommand.ts b/clients/client-location/src/commands/ListTrackerConsumersCommand.ts index 23e0699deb7b0..2859beef511cc 100644 --- a/clients/client-location/src/commands/ListTrackerConsumersCommand.ts +++ b/clients/client-location/src/commands/ListTrackerConsumersCommand.ts @@ -76,6 +76,7 @@ export interface ListTrackerConsumersCommandOutput extends ListTrackerConsumersR * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class ListTrackerConsumersCommand extends $Command diff --git a/clients/client-location/src/commands/ListTrackersCommand.ts b/clients/client-location/src/commands/ListTrackersCommand.ts index a1d184c455926..25dc89cc87e65 100644 --- a/clients/client-location/src/commands/ListTrackersCommand.ts +++ b/clients/client-location/src/commands/ListTrackersCommand.ts @@ -79,6 +79,7 @@ export interface ListTrackersCommandOutput extends ListTrackersResponse, __Metad * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class ListTrackersCommand extends $Command diff --git a/clients/client-location/src/commands/PutGeofenceCommand.ts b/clients/client-location/src/commands/PutGeofenceCommand.ts index 257effe7bbc02..d6fcc6757f5b4 100644 --- a/clients/client-location/src/commands/PutGeofenceCommand.ts +++ b/clients/client-location/src/commands/PutGeofenceCommand.ts @@ -97,6 +97,7 @@ export interface PutGeofenceCommandOutput extends PutGeofenceResponse, __Metadat * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class PutGeofenceCommand extends $Command diff --git a/clients/client-location/src/commands/SearchPlaceIndexForPositionCommand.ts b/clients/client-location/src/commands/SearchPlaceIndexForPositionCommand.ts index f499555e26569..442eac7f25133 100644 --- a/clients/client-location/src/commands/SearchPlaceIndexForPositionCommand.ts +++ b/clients/client-location/src/commands/SearchPlaceIndexForPositionCommand.ts @@ -131,6 +131,7 @@ export interface SearchPlaceIndexForPositionCommandOutput * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class SearchPlaceIndexForPositionCommand extends $Command diff --git a/clients/client-location/src/commands/SearchPlaceIndexForSuggestionsCommand.ts b/clients/client-location/src/commands/SearchPlaceIndexForSuggestionsCommand.ts index bdfceba53baeb..3e3524e32a64a 100644 --- a/clients/client-location/src/commands/SearchPlaceIndexForSuggestionsCommand.ts +++ b/clients/client-location/src/commands/SearchPlaceIndexForSuggestionsCommand.ts @@ -137,6 +137,7 @@ export interface SearchPlaceIndexForSuggestionsCommandOutput * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class SearchPlaceIndexForSuggestionsCommand extends $Command diff --git a/clients/client-location/src/commands/SearchPlaceIndexForTextCommand.ts b/clients/client-location/src/commands/SearchPlaceIndexForTextCommand.ts index 9576427b044a1..c1307389744f0 100644 --- a/clients/client-location/src/commands/SearchPlaceIndexForTextCommand.ts +++ b/clients/client-location/src/commands/SearchPlaceIndexForTextCommand.ts @@ -158,6 +158,7 @@ export interface SearchPlaceIndexForTextCommandOutput extends SearchPlaceIndexFo * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class SearchPlaceIndexForTextCommand extends $Command diff --git a/clients/client-location/src/commands/TagResourceCommand.ts b/clients/client-location/src/commands/TagResourceCommand.ts index a41b146ba5658..4afdc770dc4ab 100644 --- a/clients/client-location/src/commands/TagResourceCommand.ts +++ b/clients/client-location/src/commands/TagResourceCommand.ts @@ -82,6 +82,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-location/src/commands/UntagResourceCommand.ts b/clients/client-location/src/commands/UntagResourceCommand.ts index ca4dd27572887..686545e1741fc 100644 --- a/clients/client-location/src/commands/UntagResourceCommand.ts +++ b/clients/client-location/src/commands/UntagResourceCommand.ts @@ -72,6 +72,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-location/src/commands/UpdateGeofenceCollectionCommand.ts b/clients/client-location/src/commands/UpdateGeofenceCollectionCommand.ts index e3c168f47f564..4be1f78b58b80 100644 --- a/clients/client-location/src/commands/UpdateGeofenceCollectionCommand.ts +++ b/clients/client-location/src/commands/UpdateGeofenceCollectionCommand.ts @@ -76,6 +76,7 @@ export interface UpdateGeofenceCollectionCommandOutput extends UpdateGeofenceCol * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class UpdateGeofenceCollectionCommand extends $Command diff --git a/clients/client-location/src/commands/UpdateKeyCommand.ts b/clients/client-location/src/commands/UpdateKeyCommand.ts index f8b792c76e8f2..89bea16ea0b20 100644 --- a/clients/client-location/src/commands/UpdateKeyCommand.ts +++ b/clients/client-location/src/commands/UpdateKeyCommand.ts @@ -88,6 +88,7 @@ export interface UpdateKeyCommandOutput extends UpdateKeyResponse, __MetadataBea * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class UpdateKeyCommand extends $Command diff --git a/clients/client-location/src/commands/UpdateMapCommand.ts b/clients/client-location/src/commands/UpdateMapCommand.ts index 28f1badc46d03..c9574c91fa9d3 100644 --- a/clients/client-location/src/commands/UpdateMapCommand.ts +++ b/clients/client-location/src/commands/UpdateMapCommand.ts @@ -81,6 +81,7 @@ export interface UpdateMapCommandOutput extends UpdateMapResponse, __MetadataBea * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class UpdateMapCommand extends $Command diff --git a/clients/client-location/src/commands/UpdatePlaceIndexCommand.ts b/clients/client-location/src/commands/UpdatePlaceIndexCommand.ts index a9e44f1e7bc45..fa139e730ab9e 100644 --- a/clients/client-location/src/commands/UpdatePlaceIndexCommand.ts +++ b/clients/client-location/src/commands/UpdatePlaceIndexCommand.ts @@ -78,6 +78,7 @@ export interface UpdatePlaceIndexCommandOutput extends UpdatePlaceIndexResponse, * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class UpdatePlaceIndexCommand extends $Command diff --git a/clients/client-location/src/commands/UpdateRouteCalculatorCommand.ts b/clients/client-location/src/commands/UpdateRouteCalculatorCommand.ts index 22025ca2b3d9e..b4d16bce68ead 100644 --- a/clients/client-location/src/commands/UpdateRouteCalculatorCommand.ts +++ b/clients/client-location/src/commands/UpdateRouteCalculatorCommand.ts @@ -75,6 +75,7 @@ export interface UpdateRouteCalculatorCommandOutput extends UpdateRouteCalculato * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class UpdateRouteCalculatorCommand extends $Command diff --git a/clients/client-location/src/commands/UpdateTrackerCommand.ts b/clients/client-location/src/commands/UpdateTrackerCommand.ts index 8931e377694e5..681a1e475ecc7 100644 --- a/clients/client-location/src/commands/UpdateTrackerCommand.ts +++ b/clients/client-location/src/commands/UpdateTrackerCommand.ts @@ -79,6 +79,7 @@ export interface UpdateTrackerCommandOutput extends UpdateTrackerResponse, __Met * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class UpdateTrackerCommand extends $Command diff --git a/clients/client-location/src/commands/VerifyDevicePositionCommand.ts b/clients/client-location/src/commands/VerifyDevicePositionCommand.ts index 1fa080ee17b27..e9fbf68358ea1 100644 --- a/clients/client-location/src/commands/VerifyDevicePositionCommand.ts +++ b/clients/client-location/src/commands/VerifyDevicePositionCommand.ts @@ -134,6 +134,7 @@ export interface VerifyDevicePositionCommandOutput extends VerifyDevicePositionR * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* + * * @public */ export class VerifyDevicePositionCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/CreateDatasetCommand.ts b/clients/client-lookoutequipment/src/commands/CreateDatasetCommand.ts index a7961c665f017..c0ac36c8672b0 100644 --- a/clients/client-lookoutequipment/src/commands/CreateDatasetCommand.ts +++ b/clients/client-lookoutequipment/src/commands/CreateDatasetCommand.ts @@ -93,6 +93,7 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class CreateDatasetCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/CreateInferenceSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/CreateInferenceSchedulerCommand.ts index 1c2ae14c9cc9d..95fc0fc7926c1 100644 --- a/clients/client-lookoutequipment/src/commands/CreateInferenceSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/CreateInferenceSchedulerCommand.ts @@ -118,6 +118,7 @@ export interface CreateInferenceSchedulerCommandOutput extends CreateInferenceSc * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class CreateInferenceSchedulerCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/CreateLabelCommand.ts b/clients/client-lookoutequipment/src/commands/CreateLabelCommand.ts index ca53591c4e53d..8f4d236216b02 100644 --- a/clients/client-lookoutequipment/src/commands/CreateLabelCommand.ts +++ b/clients/client-lookoutequipment/src/commands/CreateLabelCommand.ts @@ -88,6 +88,7 @@ export interface CreateLabelCommandOutput extends CreateLabelResponse, __Metadat * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class CreateLabelCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/CreateLabelGroupCommand.ts b/clients/client-lookoutequipment/src/commands/CreateLabelGroupCommand.ts index 7ce91a69f3d84..bd33a72d506db 100644 --- a/clients/client-lookoutequipment/src/commands/CreateLabelGroupCommand.ts +++ b/clients/client-lookoutequipment/src/commands/CreateLabelGroupCommand.ts @@ -88,6 +88,7 @@ export interface CreateLabelGroupCommandOutput extends CreateLabelGroupResponse, * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class CreateLabelGroupCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/CreateModelCommand.ts b/clients/client-lookoutequipment/src/commands/CreateModelCommand.ts index e75bb641a15d8..964eb0305f56f 100644 --- a/clients/client-lookoutequipment/src/commands/CreateModelCommand.ts +++ b/clients/client-lookoutequipment/src/commands/CreateModelCommand.ts @@ -125,6 +125,7 @@ export interface CreateModelCommandOutput extends CreateModelResponse, __Metadat * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class CreateModelCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/CreateRetrainingSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/CreateRetrainingSchedulerCommand.ts index 0227ab7a88600..4dc02c35223be 100644 --- a/clients/client-lookoutequipment/src/commands/CreateRetrainingSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/CreateRetrainingSchedulerCommand.ts @@ -85,51 +85,50 @@ export interface CreateRetrainingSchedulerCommandOutput extends CreateRetraining * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* - * @public + * * @example Creates a retraining scheduler with manual promote mode * ```javascript * // * const input = { - * "ClientToken": "sample-client-token", - * "LookbackWindow": "P360D", - * "ModelName": "sample-model", - * "PromoteMode": "MANUAL", - * "RetrainingFrequency": "P1M" + * ClientToken: "sample-client-token", + * LookbackWindow: "P360D", + * ModelName: "sample-model", + * PromoteMode: "MANUAL", + * RetrainingFrequency: "P1M" * }; * const command = new CreateRetrainingSchedulerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ModelName": "sample-model", - * "Status": "PENDING" + * ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * ModelName: "sample-model", + * Status: "PENDING" * } * *\/ - * // example id: creates-a-retraining-scheduler-with-manual-promote-mode-1694018486212 * ``` * * @example Creates a retraining scheduler with a specific start date * ```javascript * // * const input = { - * "ClientToken": "sample-client-token", - * "LookbackWindow": "P360D", - * "ModelName": "sample-model", - * "RetrainingFrequency": "P1M", - * "RetrainingStartDate": "2024-01-01T00:00:00Z" + * ClientToken: "sample-client-token", + * LookbackWindow: "P360D", + * ModelName: "sample-model", + * RetrainingFrequency: "P1M", + * RetrainingStartDate: "2024-01-01T00:00:00Z" * }; * const command = new CreateRetrainingSchedulerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ModelName": "sample-model", - * "Status": "PENDING" + * ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * ModelName: "sample-model", + * Status: "PENDING" * } * *\/ - * // example id: creates-a-retraining-scheduler-with-a-specific-start-date-1694018790519 * ``` * + * @public */ export class CreateRetrainingSchedulerCommand extends $Command .classBuilder< diff --git a/clients/client-lookoutequipment/src/commands/DeleteDatasetCommand.ts b/clients/client-lookoutequipment/src/commands/DeleteDatasetCommand.ts index ceb0fa3676d02..e057c10dd762a 100644 --- a/clients/client-lookoutequipment/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DeleteDatasetCommand.ts @@ -80,6 +80,7 @@ export interface DeleteDatasetCommandOutput extends __MetadataBearer {} * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class DeleteDatasetCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/DeleteInferenceSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/DeleteInferenceSchedulerCommand.ts index b70bb4feb2925..e76bc1ca09158 100644 --- a/clients/client-lookoutequipment/src/commands/DeleteInferenceSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DeleteInferenceSchedulerCommand.ts @@ -77,6 +77,7 @@ export interface DeleteInferenceSchedulerCommandOutput extends __MetadataBearer * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class DeleteInferenceSchedulerCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/DeleteLabelCommand.ts b/clients/client-lookoutequipment/src/commands/DeleteLabelCommand.ts index 7201d832f20e9..32d7ffd3ccdc3 100644 --- a/clients/client-lookoutequipment/src/commands/DeleteLabelCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DeleteLabelCommand.ts @@ -77,6 +77,7 @@ export interface DeleteLabelCommandOutput extends __MetadataBearer {} * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class DeleteLabelCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/DeleteLabelGroupCommand.ts b/clients/client-lookoutequipment/src/commands/DeleteLabelGroupCommand.ts index 244940b30e0bd..8bf128bf6339d 100644 --- a/clients/client-lookoutequipment/src/commands/DeleteLabelGroupCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DeleteLabelGroupCommand.ts @@ -76,6 +76,7 @@ export interface DeleteLabelGroupCommandOutput extends __MetadataBearer {} * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class DeleteLabelGroupCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/DeleteModelCommand.ts b/clients/client-lookoutequipment/src/commands/DeleteModelCommand.ts index dc2dbe8f30232..e30400e26e1b9 100644 --- a/clients/client-lookoutequipment/src/commands/DeleteModelCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DeleteModelCommand.ts @@ -77,6 +77,7 @@ export interface DeleteModelCommandOutput extends __MetadataBearer {} * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class DeleteModelCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-lookoutequipment/src/commands/DeleteResourcePolicyCommand.ts index ca718333a02e7..b6dd08c309e68 100644 --- a/clients/client-lookoutequipment/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DeleteResourcePolicyCommand.ts @@ -76,6 +76,7 @@ export interface DeleteResourcePolicyCommandOutput extends __MetadataBearer {} * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/DeleteRetrainingSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/DeleteRetrainingSchedulerCommand.ts index 754e1451efdac..ea1c6e48e1a95 100644 --- a/clients/client-lookoutequipment/src/commands/DeleteRetrainingSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DeleteRetrainingSchedulerCommand.ts @@ -77,18 +77,21 @@ export interface DeleteRetrainingSchedulerCommandOutput extends __MetadataBearer * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* - * @public + * * @example Deletes a retraining scheduler * ```javascript * // * const input = { - * "ModelName": "sample-model" + * ModelName: "sample-model" * }; * const command = new DeleteRetrainingSchedulerCommand(input); - * await client.send(command); - * // example id: deletes-a-retraining-scheduler-1694019240097 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteRetrainingSchedulerCommand extends $Command .classBuilder< diff --git a/clients/client-lookoutequipment/src/commands/DescribeDataIngestionJobCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeDataIngestionJobCommand.ts index 61385a8c9febc..f6d2982ba546a 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeDataIngestionJobCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeDataIngestionJobCommand.ts @@ -126,6 +126,7 @@ export interface DescribeDataIngestionJobCommandOutput extends DescribeDataInges * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class DescribeDataIngestionJobCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/DescribeDatasetCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeDatasetCommand.ts index aebbcaba1744f..c9986cacf0f2c 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeDatasetCommand.ts @@ -126,6 +126,7 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _ * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class DescribeDatasetCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/DescribeInferenceSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeInferenceSchedulerCommand.ts index 687864deaa7bd..3b7625b42a746 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeInferenceSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeInferenceSchedulerCommand.ts @@ -104,6 +104,7 @@ export interface DescribeInferenceSchedulerCommandOutput extends DescribeInferen * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class DescribeInferenceSchedulerCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/DescribeLabelCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeLabelCommand.ts index a969f409a9787..a95c4ae095a21 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeLabelCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeLabelCommand.ts @@ -84,6 +84,7 @@ export interface DescribeLabelCommandOutput extends DescribeLabelResponse, __Met * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class DescribeLabelCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/DescribeLabelGroupCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeLabelGroupCommand.ts index 896e26a5d4f76..90ddf1681f02c 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeLabelGroupCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeLabelGroupCommand.ts @@ -80,6 +80,7 @@ export interface DescribeLabelGroupCommandOutput extends DescribeLabelGroupRespo * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class DescribeLabelGroupCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/DescribeModelCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeModelCommand.ts index 1b52537bd5312..3ead8f933d7cc 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeModelCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeModelCommand.ts @@ -131,6 +131,7 @@ export interface DescribeModelCommandOutput extends DescribeModelResponse, __Met * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class DescribeModelCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/DescribeModelVersionCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeModelVersionCommand.ts index 23f5801794cc8..6e0dc6e7b0a3a 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeModelVersionCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeModelVersionCommand.ts @@ -126,6 +126,7 @@ export interface DescribeModelVersionCommandOutput extends DescribeModelVersionR * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class DescribeModelVersionCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/DescribeResourcePolicyCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeResourcePolicyCommand.ts index b6f43f25cb210..c58afc81b8d5d 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeResourcePolicyCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeResourcePolicyCommand.ts @@ -77,6 +77,7 @@ export interface DescribeResourcePolicyCommandOutput extends DescribeResourcePol * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class DescribeResourcePolicyCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/DescribeRetrainingSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeRetrainingSchedulerCommand.ts index 5329fd7de0d35..e7e8d2c47e184 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeRetrainingSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeRetrainingSchedulerCommand.ts @@ -85,31 +85,31 @@ export interface DescribeRetrainingSchedulerCommandOutput * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* - * @public + * * @example Describes a retraining scheduler * ```javascript * // * const input = { - * "ModelName": "sample-model" + * ModelName: "sample-model" * }; * const command = new DescribeRetrainingSchedulerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CreatedAt": "2023-10-01T15:00:00Z", - * "LookbackWindow": "P360D", - * "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ModelName": "sample-model", - * "PromoteMode": "MANAGED", - * "RetrainingFrequency": "P1M", - * "RetrainingStartDate": "2023-11-01T00:00:00Z", - * "Status": "RUNNING", - * "UpdatedAt": "2023-10-01T15:00:00Z" + * CreatedAt: "2023-10-01T15:00:00Z", + * LookbackWindow: "P360D", + * ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * ModelName: "sample-model", + * PromoteMode: "MANAGED", + * RetrainingFrequency: "P1M", + * RetrainingStartDate: "2023-11-01T00:00:00Z", + * Status: "RUNNING", + * UpdatedAt: "2023-10-01T15:00:00Z" * } * *\/ - * // example id: describes-a-retraining-scheduler-1694019344252 * ``` * + * @public */ export class DescribeRetrainingSchedulerCommand extends $Command .classBuilder< diff --git a/clients/client-lookoutequipment/src/commands/ImportDatasetCommand.ts b/clients/client-lookoutequipment/src/commands/ImportDatasetCommand.ts index 373e9dd46fc93..2b52707d052fc 100644 --- a/clients/client-lookoutequipment/src/commands/ImportDatasetCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ImportDatasetCommand.ts @@ -93,6 +93,7 @@ export interface ImportDatasetCommandOutput extends ImportDatasetResponse, __Met * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class ImportDatasetCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/ImportModelVersionCommand.ts b/clients/client-lookoutequipment/src/commands/ImportModelVersionCommand.ts index f5f363eaae2b5..e8be4473638e6 100644 --- a/clients/client-lookoutequipment/src/commands/ImportModelVersionCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ImportModelVersionCommand.ts @@ -104,6 +104,7 @@ export interface ImportModelVersionCommandOutput extends ImportModelVersionRespo * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class ImportModelVersionCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/ListDataIngestionJobsCommand.ts b/clients/client-lookoutequipment/src/commands/ListDataIngestionJobsCommand.ts index 57379374ebfe5..af9736a3ef2fe 100644 --- a/clients/client-lookoutequipment/src/commands/ListDataIngestionJobsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListDataIngestionJobsCommand.ts @@ -89,6 +89,7 @@ export interface ListDataIngestionJobsCommandOutput extends ListDataIngestionJob * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class ListDataIngestionJobsCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/ListDatasetsCommand.ts b/clients/client-lookoutequipment/src/commands/ListDatasetsCommand.ts index 6f960d790ee62..a2106013b3d10 100644 --- a/clients/client-lookoutequipment/src/commands/ListDatasetsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListDatasetsCommand.ts @@ -81,6 +81,7 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class ListDatasetsCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/ListInferenceEventsCommand.ts b/clients/client-lookoutequipment/src/commands/ListInferenceEventsCommand.ts index bfbec7bbc9257..fdc7c07c5e01d 100644 --- a/clients/client-lookoutequipment/src/commands/ListInferenceEventsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListInferenceEventsCommand.ts @@ -89,6 +89,7 @@ export interface ListInferenceEventsCommandOutput extends ListInferenceEventsRes * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class ListInferenceEventsCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/ListInferenceExecutionsCommand.ts b/clients/client-lookoutequipment/src/commands/ListInferenceExecutionsCommand.ts index 82aa14062e949..6f0e4a4d59a11 100644 --- a/clients/client-lookoutequipment/src/commands/ListInferenceExecutionsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListInferenceExecutionsCommand.ts @@ -117,6 +117,7 @@ export interface ListInferenceExecutionsCommandOutput extends ListInferenceExecu * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class ListInferenceExecutionsCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/ListInferenceSchedulersCommand.ts b/clients/client-lookoutequipment/src/commands/ListInferenceSchedulersCommand.ts index 97b6badefca74..8d7d8168303bf 100644 --- a/clients/client-lookoutequipment/src/commands/ListInferenceSchedulersCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListInferenceSchedulersCommand.ts @@ -87,6 +87,7 @@ export interface ListInferenceSchedulersCommandOutput extends ListInferenceSched * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class ListInferenceSchedulersCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/ListLabelGroupsCommand.ts b/clients/client-lookoutequipment/src/commands/ListLabelGroupsCommand.ts index c0f402c6ad98c..e7ebd0aabb41b 100644 --- a/clients/client-lookoutequipment/src/commands/ListLabelGroupsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListLabelGroupsCommand.ts @@ -80,6 +80,7 @@ export interface ListLabelGroupsCommandOutput extends ListLabelGroupsResponse, _ * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class ListLabelGroupsCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/ListLabelsCommand.ts b/clients/client-lookoutequipment/src/commands/ListLabelsCommand.ts index 21c5076b18617..47cc89c0d6bdb 100644 --- a/clients/client-lookoutequipment/src/commands/ListLabelsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListLabelsCommand.ts @@ -89,6 +89,7 @@ export interface ListLabelsCommandOutput extends ListLabelsResponse, __MetadataB * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class ListLabelsCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/ListModelVersionsCommand.ts b/clients/client-lookoutequipment/src/commands/ListModelVersionsCommand.ts index c5865d927e423..31c2d8af1f107 100644 --- a/clients/client-lookoutequipment/src/commands/ListModelVersionsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListModelVersionsCommand.ts @@ -96,6 +96,7 @@ export interface ListModelVersionsCommandOutput extends ListModelVersionsRespons * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class ListModelVersionsCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/ListModelsCommand.ts b/clients/client-lookoutequipment/src/commands/ListModelsCommand.ts index 4eaaf2da7684f..1968fd07a01c5 100644 --- a/clients/client-lookoutequipment/src/commands/ListModelsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListModelsCommand.ts @@ -100,6 +100,7 @@ export interface ListModelsCommandOutput extends ListModelsResponse, __MetadataB * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class ListModelsCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/ListRetrainingSchedulersCommand.ts b/clients/client-lookoutequipment/src/commands/ListRetrainingSchedulersCommand.ts index 1bc10432d884a..e926b717e20cb 100644 --- a/clients/client-lookoutequipment/src/commands/ListRetrainingSchedulersCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListRetrainingSchedulersCommand.ts @@ -84,48 +84,48 @@ export interface ListRetrainingSchedulersCommandOutput extends ListRetrainingSch * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* - * @public + * * @example Listing retraining schedulers * ```javascript * // * const input = { - * "MaxResults": 50 + * MaxResults: 50 * }; * const command = new ListRetrainingSchedulersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RetrainingSchedulerSummaries": [ + * RetrainingSchedulerSummaries: [ * { - * "LookbackWindow": "P180D", - * "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model-1/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ModelName": "sample-model-1", - * "RetrainingFrequency": "P1M", - * "RetrainingStartDate": "2023-06-01T00:00:00Z", - * "Status": "RUNNING" + * LookbackWindow: "P180D", + * ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model-1/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * ModelName: "sample-model-1", + * RetrainingFrequency: "P1M", + * RetrainingStartDate: "2023-06-01T00:00:00Z", + * Status: "RUNNING" * }, * { - * "LookbackWindow": "P180D", - * "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model-2/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", - * "ModelName": "sample-model-2", - * "RetrainingFrequency": "P30D", - * "RetrainingStartDate": "2023-08-15T00:00:00Z", - * "Status": "RUNNING" + * LookbackWindow: "P180D", + * ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model-2/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", + * ModelName: "sample-model-2", + * RetrainingFrequency: "P30D", + * RetrainingStartDate: "2023-08-15T00:00:00Z", + * Status: "RUNNING" * }, * { - * "LookbackWindow": "P360D", - * "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model-3/a1b2c3d4-5678-90ab-cdef-EXAMPLE33333", - * "ModelName": "sample-model-3", - * "RetrainingFrequency": "P1M", - * "RetrainingStartDate": "2023-09-01T00:00:00Z", - * "Status": "STOPPED" + * LookbackWindow: "P360D", + * ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model-3/a1b2c3d4-5678-90ab-cdef-EXAMPLE33333", + * ModelName: "sample-model-3", + * RetrainingFrequency: "P1M", + * RetrainingStartDate: "2023-09-01T00:00:00Z", + * Status: "STOPPED" * } * ] * } * *\/ - * // example id: listing-retraining-schedulers-1694016740503 * ``` * + * @public */ export class ListRetrainingSchedulersCommand extends $Command .classBuilder< diff --git a/clients/client-lookoutequipment/src/commands/ListSensorStatisticsCommand.ts b/clients/client-lookoutequipment/src/commands/ListSensorStatisticsCommand.ts index f91d905f02334..3704a41cd8610 100644 --- a/clients/client-lookoutequipment/src/commands/ListSensorStatisticsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListSensorStatisticsCommand.ts @@ -120,6 +120,7 @@ export interface ListSensorStatisticsCommandOutput extends ListSensorStatisticsR * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class ListSensorStatisticsCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/ListTagsForResourceCommand.ts b/clients/client-lookoutequipment/src/commands/ListTagsForResourceCommand.ts index cb3753a91294e..1fa4803238552 100644 --- a/clients/client-lookoutequipment/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListTagsForResourceCommand.ts @@ -79,6 +79,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/PutResourcePolicyCommand.ts b/clients/client-lookoutequipment/src/commands/PutResourcePolicyCommand.ts index 88de12d0db1b6..7162d66fa7204 100644 --- a/clients/client-lookoutequipment/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-lookoutequipment/src/commands/PutResourcePolicyCommand.ts @@ -85,6 +85,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/StartDataIngestionJobCommand.ts b/clients/client-lookoutequipment/src/commands/StartDataIngestionJobCommand.ts index 01e3d95b50e5e..c237bf64c0400 100644 --- a/clients/client-lookoutequipment/src/commands/StartDataIngestionJobCommand.ts +++ b/clients/client-lookoutequipment/src/commands/StartDataIngestionJobCommand.ts @@ -91,6 +91,7 @@ export interface StartDataIngestionJobCommandOutput extends StartDataIngestionJo * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class StartDataIngestionJobCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/StartInferenceSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/StartInferenceSchedulerCommand.ts index 4e1631d1314bd..d8b6d2469ab38 100644 --- a/clients/client-lookoutequipment/src/commands/StartInferenceSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/StartInferenceSchedulerCommand.ts @@ -82,6 +82,7 @@ export interface StartInferenceSchedulerCommandOutput extends StartInferenceSche * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class StartInferenceSchedulerCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/StartRetrainingSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/StartRetrainingSchedulerCommand.ts index e4987aaffd5b3..26595484bd916 100644 --- a/clients/client-lookoutequipment/src/commands/StartRetrainingSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/StartRetrainingSchedulerCommand.ts @@ -80,25 +80,25 @@ export interface StartRetrainingSchedulerCommandOutput extends StartRetrainingSc * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* - * @public + * * @example Starts a retraining scheduler * ```javascript * // * const input = { - * "ModelName": "sample-model" + * ModelName: "sample-model" * }; * const command = new StartRetrainingSchedulerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ModelName": "sample-model", - * "Status": "PENDING" + * ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * ModelName: "sample-model", + * Status: "PENDING" * } * *\/ - * // example id: starts-a-retraining-scheduler-1694019629413 * ``` * + * @public */ export class StartRetrainingSchedulerCommand extends $Command .classBuilder< diff --git a/clients/client-lookoutequipment/src/commands/StopInferenceSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/StopInferenceSchedulerCommand.ts index e271295250686..a93c0def58fcc 100644 --- a/clients/client-lookoutequipment/src/commands/StopInferenceSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/StopInferenceSchedulerCommand.ts @@ -82,6 +82,7 @@ export interface StopInferenceSchedulerCommandOutput extends StopInferenceSchedu * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class StopInferenceSchedulerCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/StopRetrainingSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/StopRetrainingSchedulerCommand.ts index 37eef898c2ab7..2062e4d4b5160 100644 --- a/clients/client-lookoutequipment/src/commands/StopRetrainingSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/StopRetrainingSchedulerCommand.ts @@ -80,25 +80,25 @@ export interface StopRetrainingSchedulerCommandOutput extends StopRetrainingSche * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* - * @public + * * @example Stops a retraining scheduler * ```javascript * // * const input = { - * "ModelName": "sample-model" + * ModelName: "sample-model" * }; * const command = new StopRetrainingSchedulerCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ModelName": "sample-model", - * "Status": "STOPPING" + * ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * ModelName: "sample-model", + * Status: "STOPPING" * } * *\/ - * // example id: stops-a-retraining-scheduler-1694019734149 * ``` * + * @public */ export class StopRetrainingSchedulerCommand extends $Command .classBuilder< diff --git a/clients/client-lookoutequipment/src/commands/TagResourceCommand.ts b/clients/client-lookoutequipment/src/commands/TagResourceCommand.ts index 54b246e9de6d4..cbf8c8dfa55c3 100644 --- a/clients/client-lookoutequipment/src/commands/TagResourceCommand.ts +++ b/clients/client-lookoutequipment/src/commands/TagResourceCommand.ts @@ -85,6 +85,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/UntagResourceCommand.ts b/clients/client-lookoutequipment/src/commands/UntagResourceCommand.ts index e4e4a83d47aed..72ed21cc9ec3d 100644 --- a/clients/client-lookoutequipment/src/commands/UntagResourceCommand.ts +++ b/clients/client-lookoutequipment/src/commands/UntagResourceCommand.ts @@ -75,6 +75,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/UpdateActiveModelVersionCommand.ts b/clients/client-lookoutequipment/src/commands/UpdateActiveModelVersionCommand.ts index 8291cf2116029..45a46a39430e1 100644 --- a/clients/client-lookoutequipment/src/commands/UpdateActiveModelVersionCommand.ts +++ b/clients/client-lookoutequipment/src/commands/UpdateActiveModelVersionCommand.ts @@ -84,6 +84,7 @@ export interface UpdateActiveModelVersionCommandOutput extends UpdateActiveModel * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class UpdateActiveModelVersionCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/UpdateInferenceSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/UpdateInferenceSchedulerCommand.ts index 88ece5725b4a6..82e8f95c596bd 100644 --- a/clients/client-lookoutequipment/src/commands/UpdateInferenceSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/UpdateInferenceSchedulerCommand.ts @@ -97,6 +97,7 @@ export interface UpdateInferenceSchedulerCommandOutput extends __MetadataBearer * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class UpdateInferenceSchedulerCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/UpdateLabelGroupCommand.ts b/clients/client-lookoutequipment/src/commands/UpdateLabelGroupCommand.ts index af8e036f51816..d4a158557113e 100644 --- a/clients/client-lookoutequipment/src/commands/UpdateLabelGroupCommand.ts +++ b/clients/client-lookoutequipment/src/commands/UpdateLabelGroupCommand.ts @@ -79,6 +79,7 @@ export interface UpdateLabelGroupCommandOutput extends __MetadataBearer {} * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* + * * @public */ export class UpdateLabelGroupCommand extends $Command diff --git a/clients/client-lookoutequipment/src/commands/UpdateModelCommand.ts b/clients/client-lookoutequipment/src/commands/UpdateModelCommand.ts index 49bad685cc765..885d08a09e2a6 100644 --- a/clients/client-lookoutequipment/src/commands/UpdateModelCommand.ts +++ b/clients/client-lookoutequipment/src/commands/UpdateModelCommand.ts @@ -91,21 +91,24 @@ export interface UpdateModelCommandOutput extends __MetadataBearer {} * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* - * @public + * * @example Updates a model * ```javascript * // * const input = { - * "LabelsInputConfiguration": { - * "LabelGroupName": "sample-label-group" + * LabelsInputConfiguration: { + * LabelGroupName: "sample-label-group" * }, - * "ModelName": "sample-model" + * ModelName: "sample-model" * }; * const command = new UpdateModelCommand(input); - * await client.send(command); - * // example id: updates-a-model-1694020683458 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateModelCommand extends $Command .classBuilder< diff --git a/clients/client-lookoutequipment/src/commands/UpdateRetrainingSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/UpdateRetrainingSchedulerCommand.ts index b87b4f95e823a..9dba59f125aa6 100644 --- a/clients/client-lookoutequipment/src/commands/UpdateRetrainingSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/UpdateRetrainingSchedulerCommand.ts @@ -80,20 +80,23 @@ export interface UpdateRetrainingSchedulerCommandOutput extends __MetadataBearer * @throws {@link LookoutEquipmentServiceException} *

Base exception class for all service exceptions from LookoutEquipment service.

* - * @public + * * @example Updates a retraining scheduler * ```javascript * // * const input = { - * "ModelName": "sample-model", - * "RetrainingFrequency": "P1Y", - * "RetrainingStartDate": "2024-01-01T00:00:00Z" + * ModelName: "sample-model", + * RetrainingFrequency: "P1Y", + * RetrainingStartDate: "2024-01-01T00:00:00Z" * }; * const command = new UpdateRetrainingSchedulerCommand(input); - * await client.send(command); - * // example id: updates-a-retraining-scheduler-1694019840918 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateRetrainingSchedulerCommand extends $Command .classBuilder< diff --git a/clients/client-lookoutmetrics/src/commands/ActivateAnomalyDetectorCommand.ts b/clients/client-lookoutmetrics/src/commands/ActivateAnomalyDetectorCommand.ts index 81745ec2c3b2c..2f3bc4312046b 100644 --- a/clients/client-lookoutmetrics/src/commands/ActivateAnomalyDetectorCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/ActivateAnomalyDetectorCommand.ts @@ -72,6 +72,7 @@ export interface ActivateAnomalyDetectorCommandOutput extends ActivateAnomalyDet * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class ActivateAnomalyDetectorCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/BackTestAnomalyDetectorCommand.ts b/clients/client-lookoutmetrics/src/commands/BackTestAnomalyDetectorCommand.ts index 9cfe47700e9d3..39f82cf67160e 100644 --- a/clients/client-lookoutmetrics/src/commands/BackTestAnomalyDetectorCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/BackTestAnomalyDetectorCommand.ts @@ -69,6 +69,7 @@ export interface BackTestAnomalyDetectorCommandOutput extends BackTestAnomalyDet * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class BackTestAnomalyDetectorCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/CreateAlertCommand.ts b/clients/client-lookoutmetrics/src/commands/CreateAlertCommand.ts index 3a83d7c1d3596..f9c0309015266 100644 --- a/clients/client-lookoutmetrics/src/commands/CreateAlertCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/CreateAlertCommand.ts @@ -107,6 +107,7 @@ export interface CreateAlertCommandOutput extends CreateAlertResponse, __Metadat * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class CreateAlertCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/CreateAnomalyDetectorCommand.ts b/clients/client-lookoutmetrics/src/commands/CreateAnomalyDetectorCommand.ts index 8879387590488..e7e41ea94b107 100644 --- a/clients/client-lookoutmetrics/src/commands/CreateAnomalyDetectorCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/CreateAnomalyDetectorCommand.ts @@ -82,6 +82,7 @@ export interface CreateAnomalyDetectorCommandOutput extends CreateAnomalyDetecto * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class CreateAnomalyDetectorCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/CreateMetricSetCommand.ts b/clients/client-lookoutmetrics/src/commands/CreateMetricSetCommand.ts index 64eef5530792e..088ac8bc9fab0 100644 --- a/clients/client-lookoutmetrics/src/commands/CreateMetricSetCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/CreateMetricSetCommand.ts @@ -192,6 +192,7 @@ export interface CreateMetricSetCommandOutput extends CreateMetricSetResponse, _ * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class CreateMetricSetCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/DeactivateAnomalyDetectorCommand.ts b/clients/client-lookoutmetrics/src/commands/DeactivateAnomalyDetectorCommand.ts index 4d80ebc9e7994..b82442a9e7adb 100644 --- a/clients/client-lookoutmetrics/src/commands/DeactivateAnomalyDetectorCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/DeactivateAnomalyDetectorCommand.ts @@ -72,6 +72,7 @@ export interface DeactivateAnomalyDetectorCommandOutput extends DeactivateAnomal * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class DeactivateAnomalyDetectorCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/DeleteAlertCommand.ts b/clients/client-lookoutmetrics/src/commands/DeleteAlertCommand.ts index 9c74bcde22525..f4df513c5d0a9 100644 --- a/clients/client-lookoutmetrics/src/commands/DeleteAlertCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/DeleteAlertCommand.ts @@ -69,6 +69,7 @@ export interface DeleteAlertCommandOutput extends DeleteAlertResponse, __Metadat * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class DeleteAlertCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/DeleteAnomalyDetectorCommand.ts b/clients/client-lookoutmetrics/src/commands/DeleteAnomalyDetectorCommand.ts index baf7faab406bd..d5d5e3b8b6c00 100644 --- a/clients/client-lookoutmetrics/src/commands/DeleteAnomalyDetectorCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/DeleteAnomalyDetectorCommand.ts @@ -73,6 +73,7 @@ export interface DeleteAnomalyDetectorCommandOutput extends DeleteAnomalyDetecto * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class DeleteAnomalyDetectorCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/DescribeAlertCommand.ts b/clients/client-lookoutmetrics/src/commands/DescribeAlertCommand.ts index 96a1fbc7d658f..9bcf822dcdcba 100644 --- a/clients/client-lookoutmetrics/src/commands/DescribeAlertCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/DescribeAlertCommand.ts @@ -107,6 +107,7 @@ export interface DescribeAlertCommandOutput extends DescribeAlertResponse, __Met * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class DescribeAlertCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/DescribeAnomalyDetectionExecutionsCommand.ts b/clients/client-lookoutmetrics/src/commands/DescribeAnomalyDetectionExecutionsCommand.ts index 0a79c7fe1f93a..20948cabf5ed5 100644 --- a/clients/client-lookoutmetrics/src/commands/DescribeAnomalyDetectionExecutionsCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/DescribeAnomalyDetectionExecutionsCommand.ts @@ -89,6 +89,7 @@ export interface DescribeAnomalyDetectionExecutionsCommandOutput * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class DescribeAnomalyDetectionExecutionsCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/DescribeAnomalyDetectorCommand.ts b/clients/client-lookoutmetrics/src/commands/DescribeAnomalyDetectorCommand.ts index 4b8e795aee956..9693ab87d7b14 100644 --- a/clients/client-lookoutmetrics/src/commands/DescribeAnomalyDetectorCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/DescribeAnomalyDetectorCommand.ts @@ -84,6 +84,7 @@ export interface DescribeAnomalyDetectorCommandOutput extends DescribeAnomalyDet * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class DescribeAnomalyDetectorCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/DescribeMetricSetCommand.ts b/clients/client-lookoutmetrics/src/commands/DescribeMetricSetCommand.ts index 68b7faa11a13a..f2f04dc65884b 100644 --- a/clients/client-lookoutmetrics/src/commands/DescribeMetricSetCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/DescribeMetricSetCommand.ts @@ -188,6 +188,7 @@ export interface DescribeMetricSetCommandOutput extends DescribeMetricSetRespons * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class DescribeMetricSetCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/DetectMetricSetConfigCommand.ts b/clients/client-lookoutmetrics/src/commands/DetectMetricSetConfigCommand.ts index b5bdf453e2470..02a9a98dfe319 100644 --- a/clients/client-lookoutmetrics/src/commands/DetectMetricSetConfigCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/DetectMetricSetConfigCommand.ts @@ -187,6 +187,7 @@ export interface DetectMetricSetConfigCommandOutput extends DetectMetricSetConfi * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class DetectMetricSetConfigCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/GetAnomalyGroupCommand.ts b/clients/client-lookoutmetrics/src/commands/GetAnomalyGroupCommand.ts index da26b88eb4605..00416131f4773 100644 --- a/clients/client-lookoutmetrics/src/commands/GetAnomalyGroupCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/GetAnomalyGroupCommand.ts @@ -97,6 +97,7 @@ export interface GetAnomalyGroupCommandOutput extends GetAnomalyGroupResponse, _ * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class GetAnomalyGroupCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/GetDataQualityMetricsCommand.ts b/clients/client-lookoutmetrics/src/commands/GetDataQualityMetricsCommand.ts index 4001e2056b0fb..9fed22197d828 100644 --- a/clients/client-lookoutmetrics/src/commands/GetDataQualityMetricsCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/GetDataQualityMetricsCommand.ts @@ -89,6 +89,7 @@ export interface GetDataQualityMetricsCommandOutput extends GetDataQualityMetric * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class GetDataQualityMetricsCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/GetFeedbackCommand.ts b/clients/client-lookoutmetrics/src/commands/GetFeedbackCommand.ts index 220df58e00d09..0848f10584547 100644 --- a/clients/client-lookoutmetrics/src/commands/GetFeedbackCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/GetFeedbackCommand.ts @@ -83,6 +83,7 @@ export interface GetFeedbackCommandOutput extends GetFeedbackResponse, __Metadat * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class GetFeedbackCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/GetSampleDataCommand.ts b/clients/client-lookoutmetrics/src/commands/GetSampleDataCommand.ts index 4b5e366454aea..4b9b7dc110fd3 100644 --- a/clients/client-lookoutmetrics/src/commands/GetSampleDataCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/GetSampleDataCommand.ts @@ -102,6 +102,7 @@ export interface GetSampleDataCommandOutput extends GetSampleDataResponse, __Met * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class GetSampleDataCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/ListAlertsCommand.ts b/clients/client-lookoutmetrics/src/commands/ListAlertsCommand.ts index 79cadb9066572..0cd9526b9b0fc 100644 --- a/clients/client-lookoutmetrics/src/commands/ListAlertsCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/ListAlertsCommand.ts @@ -90,6 +90,7 @@ export interface ListAlertsCommandOutput extends ListAlertsResponse, __MetadataB * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class ListAlertsCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/ListAnomalyDetectorsCommand.ts b/clients/client-lookoutmetrics/src/commands/ListAnomalyDetectorsCommand.ts index 38b6dfaf0f56d..f5422932cb97a 100644 --- a/clients/client-lookoutmetrics/src/commands/ListAnomalyDetectorsCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/ListAnomalyDetectorsCommand.ts @@ -87,6 +87,7 @@ export interface ListAnomalyDetectorsCommandOutput extends ListAnomalyDetectorsR * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class ListAnomalyDetectorsCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/ListAnomalyGroupRelatedMetricsCommand.ts b/clients/client-lookoutmetrics/src/commands/ListAnomalyGroupRelatedMetricsCommand.ts index bedd1a13fc55f..0d06b585f12f8 100644 --- a/clients/client-lookoutmetrics/src/commands/ListAnomalyGroupRelatedMetricsCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/ListAnomalyGroupRelatedMetricsCommand.ts @@ -89,6 +89,7 @@ export interface ListAnomalyGroupRelatedMetricsCommandOutput * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class ListAnomalyGroupRelatedMetricsCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/ListAnomalyGroupSummariesCommand.ts b/clients/client-lookoutmetrics/src/commands/ListAnomalyGroupSummariesCommand.ts index c7437d4e8c3dc..00b0259010a20 100644 --- a/clients/client-lookoutmetrics/src/commands/ListAnomalyGroupSummariesCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/ListAnomalyGroupSummariesCommand.ts @@ -93,6 +93,7 @@ export interface ListAnomalyGroupSummariesCommandOutput extends ListAnomalyGroup * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class ListAnomalyGroupSummariesCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/ListAnomalyGroupTimeSeriesCommand.ts b/clients/client-lookoutmetrics/src/commands/ListAnomalyGroupTimeSeriesCommand.ts index ddfba95e8201e..0b0431ab768fd 100644 --- a/clients/client-lookoutmetrics/src/commands/ListAnomalyGroupTimeSeriesCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/ListAnomalyGroupTimeSeriesCommand.ts @@ -94,6 +94,7 @@ export interface ListAnomalyGroupTimeSeriesCommandOutput extends ListAnomalyGrou * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class ListAnomalyGroupTimeSeriesCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/ListMetricSetsCommand.ts b/clients/client-lookoutmetrics/src/commands/ListMetricSetsCommand.ts index fa06be35beff6..53b7d92571845 100644 --- a/clients/client-lookoutmetrics/src/commands/ListMetricSetsCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/ListMetricSetsCommand.ts @@ -88,6 +88,7 @@ export interface ListMetricSetsCommandOutput extends ListMetricSetsResponse, __M * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class ListMetricSetsCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/ListTagsForResourceCommand.ts b/clients/client-lookoutmetrics/src/commands/ListTagsForResourceCommand.ts index 1d0f2b8bcd112..07f6ee08b9233 100644 --- a/clients/client-lookoutmetrics/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/PutFeedbackCommand.ts b/clients/client-lookoutmetrics/src/commands/PutFeedbackCommand.ts index 8ed4c0fcf4029..a3052c9f82c62 100644 --- a/clients/client-lookoutmetrics/src/commands/PutFeedbackCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/PutFeedbackCommand.ts @@ -74,6 +74,7 @@ export interface PutFeedbackCommandOutput extends PutFeedbackResponse, __Metadat * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class PutFeedbackCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/TagResourceCommand.ts b/clients/client-lookoutmetrics/src/commands/TagResourceCommand.ts index 460fac6da0b72..568bd6f66111e 100644 --- a/clients/client-lookoutmetrics/src/commands/TagResourceCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/TagResourceCommand.ts @@ -66,6 +66,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/UntagResourceCommand.ts b/clients/client-lookoutmetrics/src/commands/UntagResourceCommand.ts index 5f08d2f4f08e0..a6ce9c3d8e62e 100644 --- a/clients/client-lookoutmetrics/src/commands/UntagResourceCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/UntagResourceCommand.ts @@ -66,6 +66,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/UpdateAlertCommand.ts b/clients/client-lookoutmetrics/src/commands/UpdateAlertCommand.ts index 7c3bea86280e2..13eac90261146 100644 --- a/clients/client-lookoutmetrics/src/commands/UpdateAlertCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/UpdateAlertCommand.ts @@ -97,6 +97,7 @@ export interface UpdateAlertCommandOutput extends UpdateAlertResponse, __Metadat * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class UpdateAlertCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/UpdateAnomalyDetectorCommand.ts b/clients/client-lookoutmetrics/src/commands/UpdateAnomalyDetectorCommand.ts index da11d681bcf42..5fe708026aea9 100644 --- a/clients/client-lookoutmetrics/src/commands/UpdateAnomalyDetectorCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/UpdateAnomalyDetectorCommand.ts @@ -76,6 +76,7 @@ export interface UpdateAnomalyDetectorCommandOutput extends UpdateAnomalyDetecto * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class UpdateAnomalyDetectorCommand extends $Command diff --git a/clients/client-lookoutmetrics/src/commands/UpdateMetricSetCommand.ts b/clients/client-lookoutmetrics/src/commands/UpdateMetricSetCommand.ts index b2a53de2b3667..a2d740fbcf0e9 100644 --- a/clients/client-lookoutmetrics/src/commands/UpdateMetricSetCommand.ts +++ b/clients/client-lookoutmetrics/src/commands/UpdateMetricSetCommand.ts @@ -184,6 +184,7 @@ export interface UpdateMetricSetCommandOutput extends UpdateMetricSetResponse, _ * @throws {@link LookoutMetricsServiceException} *

Base exception class for all service exceptions from LookoutMetrics service.

* + * * @public */ export class UpdateMetricSetCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/CreateDatasetCommand.ts b/clients/client-lookoutvision/src/commands/CreateDatasetCommand.ts index 57014e7e8f6f5..fe24ec44a6b13 100644 --- a/clients/client-lookoutvision/src/commands/CreateDatasetCommand.ts +++ b/clients/client-lookoutvision/src/commands/CreateDatasetCommand.ts @@ -103,6 +103,7 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class CreateDatasetCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/CreateModelCommand.ts b/clients/client-lookoutvision/src/commands/CreateModelCommand.ts index 5179044b24835..cdb15ef11a366 100644 --- a/clients/client-lookoutvision/src/commands/CreateModelCommand.ts +++ b/clients/client-lookoutvision/src/commands/CreateModelCommand.ts @@ -118,6 +118,7 @@ export interface CreateModelCommandOutput extends CreateModelResponse, __Metadat * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class CreateModelCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/CreateProjectCommand.ts b/clients/client-lookoutvision/src/commands/CreateProjectCommand.ts index 726f58f5ab326..f6de4976038fa 100644 --- a/clients/client-lookoutvision/src/commands/CreateProjectCommand.ts +++ b/clients/client-lookoutvision/src/commands/CreateProjectCommand.ts @@ -86,6 +86,7 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class CreateProjectCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/DeleteDatasetCommand.ts b/clients/client-lookoutvision/src/commands/DeleteDatasetCommand.ts index 478aed8f8a0f0..23c1bb0be3ace 100644 --- a/clients/client-lookoutvision/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-lookoutvision/src/commands/DeleteDatasetCommand.ts @@ -88,6 +88,7 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class DeleteDatasetCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/DeleteModelCommand.ts b/clients/client-lookoutvision/src/commands/DeleteModelCommand.ts index 4bb2c31e8a3d8..a6eb4a5a508ec 100644 --- a/clients/client-lookoutvision/src/commands/DeleteModelCommand.ts +++ b/clients/client-lookoutvision/src/commands/DeleteModelCommand.ts @@ -83,6 +83,7 @@ export interface DeleteModelCommandOutput extends DeleteModelResponse, __Metadat * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class DeleteModelCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/DeleteProjectCommand.ts b/clients/client-lookoutvision/src/commands/DeleteProjectCommand.ts index b0913fa48bfef..c2593633d98e5 100644 --- a/clients/client-lookoutvision/src/commands/DeleteProjectCommand.ts +++ b/clients/client-lookoutvision/src/commands/DeleteProjectCommand.ts @@ -82,6 +82,7 @@ export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __Met * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class DeleteProjectCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/DescribeDatasetCommand.ts b/clients/client-lookoutvision/src/commands/DescribeDatasetCommand.ts index 242c878fb32b2..832d3b674d8c5 100644 --- a/clients/client-lookoutvision/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-lookoutvision/src/commands/DescribeDatasetCommand.ts @@ -90,6 +90,7 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _ * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class DescribeDatasetCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/DescribeModelCommand.ts b/clients/client-lookoutvision/src/commands/DescribeModelCommand.ts index 9a033b943229c..3afcd141467c7 100644 --- a/clients/client-lookoutvision/src/commands/DescribeModelCommand.ts +++ b/clients/client-lookoutvision/src/commands/DescribeModelCommand.ts @@ -107,6 +107,7 @@ export interface DescribeModelCommandOutput extends DescribeModelResponse, __Met * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class DescribeModelCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/DescribeModelPackagingJobCommand.ts b/clients/client-lookoutvision/src/commands/DescribeModelPackagingJobCommand.ts index 94c9d68148e65..44c8973d66718 100644 --- a/clients/client-lookoutvision/src/commands/DescribeModelPackagingJobCommand.ts +++ b/clients/client-lookoutvision/src/commands/DescribeModelPackagingJobCommand.ts @@ -118,6 +118,7 @@ export interface DescribeModelPackagingJobCommandOutput extends DescribeModelPac * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class DescribeModelPackagingJobCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/DescribeProjectCommand.ts b/clients/client-lookoutvision/src/commands/DescribeProjectCommand.ts index 1416354017da3..230873d8cfd95 100644 --- a/clients/client-lookoutvision/src/commands/DescribeProjectCommand.ts +++ b/clients/client-lookoutvision/src/commands/DescribeProjectCommand.ts @@ -88,6 +88,7 @@ export interface DescribeProjectCommandOutput extends DescribeProjectResponse, _ * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class DescribeProjectCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/DetectAnomaliesCommand.ts b/clients/client-lookoutvision/src/commands/DetectAnomaliesCommand.ts index d6ee3d0b73cf2..3d4e4b8adf06e 100644 --- a/clients/client-lookoutvision/src/commands/DetectAnomaliesCommand.ts +++ b/clients/client-lookoutvision/src/commands/DetectAnomaliesCommand.ts @@ -112,6 +112,7 @@ export interface DetectAnomaliesCommandOutput extends DetectAnomaliesResponse, _ * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class DetectAnomaliesCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/ListDatasetEntriesCommand.ts b/clients/client-lookoutvision/src/commands/ListDatasetEntriesCommand.ts index 26b8ae4104550..7e78b2a196be8 100644 --- a/clients/client-lookoutvision/src/commands/ListDatasetEntriesCommand.ts +++ b/clients/client-lookoutvision/src/commands/ListDatasetEntriesCommand.ts @@ -88,6 +88,7 @@ export interface ListDatasetEntriesCommandOutput extends ListDatasetEntriesRespo * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class ListDatasetEntriesCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/ListModelPackagingJobsCommand.ts b/clients/client-lookoutvision/src/commands/ListModelPackagingJobsCommand.ts index d54dd88e1d655..5c68befec6d8a 100644 --- a/clients/client-lookoutvision/src/commands/ListModelPackagingJobsCommand.ts +++ b/clients/client-lookoutvision/src/commands/ListModelPackagingJobsCommand.ts @@ -93,6 +93,7 @@ export interface ListModelPackagingJobsCommandOutput extends ListModelPackagingJ * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class ListModelPackagingJobsCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/ListModelsCommand.ts b/clients/client-lookoutvision/src/commands/ListModelsCommand.ts index a6986943cfc8c..fcbbcabdb06e9 100644 --- a/clients/client-lookoutvision/src/commands/ListModelsCommand.ts +++ b/clients/client-lookoutvision/src/commands/ListModelsCommand.ts @@ -96,6 +96,7 @@ export interface ListModelsCommandOutput extends ListModelsResponse, __MetadataB * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class ListModelsCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/ListProjectsCommand.ts b/clients/client-lookoutvision/src/commands/ListProjectsCommand.ts index 8481ebdbc7753..f7869773b4a88 100644 --- a/clients/client-lookoutvision/src/commands/ListProjectsCommand.ts +++ b/clients/client-lookoutvision/src/commands/ListProjectsCommand.ts @@ -88,6 +88,7 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class ListProjectsCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/ListTagsForResourceCommand.ts b/clients/client-lookoutvision/src/commands/ListTagsForResourceCommand.ts index e7d61e43d1038..b2e66da7f51cf 100644 --- a/clients/client-lookoutvision/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-lookoutvision/src/commands/ListTagsForResourceCommand.ts @@ -81,6 +81,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/StartModelCommand.ts b/clients/client-lookoutvision/src/commands/StartModelCommand.ts index c86eba0908c97..09c4fa8560c58 100644 --- a/clients/client-lookoutvision/src/commands/StartModelCommand.ts +++ b/clients/client-lookoutvision/src/commands/StartModelCommand.ts @@ -92,6 +92,7 @@ export interface StartModelCommandOutput extends StartModelResponse, __MetadataB * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class StartModelCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/StartModelPackagingJobCommand.ts b/clients/client-lookoutvision/src/commands/StartModelPackagingJobCommand.ts index 395b55ee8bcef..089b2bd39ce6e 100644 --- a/clients/client-lookoutvision/src/commands/StartModelPackagingJobCommand.ts +++ b/clients/client-lookoutvision/src/commands/StartModelPackagingJobCommand.ts @@ -152,6 +152,7 @@ export interface StartModelPackagingJobCommandOutput extends StartModelPackaging * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class StartModelPackagingJobCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/StopModelCommand.ts b/clients/client-lookoutvision/src/commands/StopModelCommand.ts index f79a9a5e47d8c..a8f4b805d6da7 100644 --- a/clients/client-lookoutvision/src/commands/StopModelCommand.ts +++ b/clients/client-lookoutvision/src/commands/StopModelCommand.ts @@ -80,6 +80,7 @@ export interface StopModelCommandOutput extends StopModelResponse, __MetadataBea * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class StopModelCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/TagResourceCommand.ts b/clients/client-lookoutvision/src/commands/TagResourceCommand.ts index a0530447890f3..9ffe46de25b9f 100644 --- a/clients/client-lookoutvision/src/commands/TagResourceCommand.ts +++ b/clients/client-lookoutvision/src/commands/TagResourceCommand.ts @@ -85,6 +85,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/UntagResourceCommand.ts b/clients/client-lookoutvision/src/commands/UntagResourceCommand.ts index a79f3b09b8745..1767619a66c1e 100644 --- a/clients/client-lookoutvision/src/commands/UntagResourceCommand.ts +++ b/clients/client-lookoutvision/src/commands/UntagResourceCommand.ts @@ -78,6 +78,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-lookoutvision/src/commands/UpdateDatasetEntriesCommand.ts b/clients/client-lookoutvision/src/commands/UpdateDatasetEntriesCommand.ts index 774e6e3b2e0df..c83ed34b4c02c 100644 --- a/clients/client-lookoutvision/src/commands/UpdateDatasetEntriesCommand.ts +++ b/clients/client-lookoutvision/src/commands/UpdateDatasetEntriesCommand.ts @@ -91,6 +91,7 @@ export interface UpdateDatasetEntriesCommandOutput extends UpdateDatasetEntriesR * @throws {@link LookoutVisionServiceException} *

Base exception class for all service exceptions from LookoutVision service.

* + * * @public */ export class UpdateDatasetEntriesCommand extends $Command diff --git a/clients/client-m2/src/commands/CancelBatchJobExecutionCommand.ts b/clients/client-m2/src/commands/CancelBatchJobExecutionCommand.ts index 4c879b587873d..cabee3a7c25c3 100644 --- a/clients/client-m2/src/commands/CancelBatchJobExecutionCommand.ts +++ b/clients/client-m2/src/commands/CancelBatchJobExecutionCommand.ts @@ -73,6 +73,7 @@ export interface CancelBatchJobExecutionCommandOutput extends CancelBatchJobExec * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class CancelBatchJobExecutionCommand extends $Command diff --git a/clients/client-m2/src/commands/CreateApplicationCommand.ts b/clients/client-m2/src/commands/CreateApplicationCommand.ts index 856056373c1c7..c3c2cb893e30c 100644 --- a/clients/client-m2/src/commands/CreateApplicationCommand.ts +++ b/clients/client-m2/src/commands/CreateApplicationCommand.ts @@ -88,6 +88,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-m2/src/commands/CreateDataSetImportTaskCommand.ts b/clients/client-m2/src/commands/CreateDataSetImportTaskCommand.ts index 6e4e5c4501915..3d5e630451326 100644 --- a/clients/client-m2/src/commands/CreateDataSetImportTaskCommand.ts +++ b/clients/client-m2/src/commands/CreateDataSetImportTaskCommand.ts @@ -131,6 +131,7 @@ export interface CreateDataSetImportTaskCommandOutput extends CreateDataSetImpor * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class CreateDataSetImportTaskCommand extends $Command diff --git a/clients/client-m2/src/commands/CreateDeploymentCommand.ts b/clients/client-m2/src/commands/CreateDeploymentCommand.ts index eaafb92ee1753..cc0f0fb338d0b 100644 --- a/clients/client-m2/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-m2/src/commands/CreateDeploymentCommand.ts @@ -80,6 +80,7 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse, * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class CreateDeploymentCommand extends $Command diff --git a/clients/client-m2/src/commands/CreateEnvironmentCommand.ts b/clients/client-m2/src/commands/CreateEnvironmentCommand.ts index 34da043bbde10..abca84dbc4822 100644 --- a/clients/client-m2/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-m2/src/commands/CreateEnvironmentCommand.ts @@ -106,6 +106,7 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentRespons * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class CreateEnvironmentCommand extends $Command diff --git a/clients/client-m2/src/commands/DeleteApplicationCommand.ts b/clients/client-m2/src/commands/DeleteApplicationCommand.ts index df460e255d71d..43a4cb5c7dd2e 100644 --- a/clients/client-m2/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-m2/src/commands/DeleteApplicationCommand.ts @@ -68,6 +68,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-m2/src/commands/DeleteApplicationFromEnvironmentCommand.ts b/clients/client-m2/src/commands/DeleteApplicationFromEnvironmentCommand.ts index 989ba6abed1b7..a7de27066b183 100644 --- a/clients/client-m2/src/commands/DeleteApplicationFromEnvironmentCommand.ts +++ b/clients/client-m2/src/commands/DeleteApplicationFromEnvironmentCommand.ts @@ -80,6 +80,7 @@ export interface DeleteApplicationFromEnvironmentCommandOutput * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class DeleteApplicationFromEnvironmentCommand extends $Command diff --git a/clients/client-m2/src/commands/DeleteEnvironmentCommand.ts b/clients/client-m2/src/commands/DeleteEnvironmentCommand.ts index b5593d32dd509..2fd0bd8aaa7ce 100644 --- a/clients/client-m2/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-m2/src/commands/DeleteEnvironmentCommand.ts @@ -70,6 +70,7 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentRespons * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class DeleteEnvironmentCommand extends $Command diff --git a/clients/client-m2/src/commands/GetApplicationCommand.ts b/clients/client-m2/src/commands/GetApplicationCommand.ts index 5f629e81a520c..2f4bf7992b3b9 100644 --- a/clients/client-m2/src/commands/GetApplicationCommand.ts +++ b/clients/client-m2/src/commands/GetApplicationCommand.ts @@ -111,6 +111,7 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class GetApplicationCommand extends $Command diff --git a/clients/client-m2/src/commands/GetApplicationVersionCommand.ts b/clients/client-m2/src/commands/GetApplicationVersionCommand.ts index b4a5a8af2f521..3403f5bda3206 100644 --- a/clients/client-m2/src/commands/GetApplicationVersionCommand.ts +++ b/clients/client-m2/src/commands/GetApplicationVersionCommand.ts @@ -77,6 +77,7 @@ export interface GetApplicationVersionCommandOutput extends GetApplicationVersio * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class GetApplicationVersionCommand extends $Command diff --git a/clients/client-m2/src/commands/GetBatchJobExecutionCommand.ts b/clients/client-m2/src/commands/GetBatchJobExecutionCommand.ts index 76ce00deaca9c..dde205c0f07a9 100644 --- a/clients/client-m2/src/commands/GetBatchJobExecutionCommand.ts +++ b/clients/client-m2/src/commands/GetBatchJobExecutionCommand.ts @@ -113,6 +113,7 @@ export interface GetBatchJobExecutionCommandOutput extends GetBatchJobExecutionR * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class GetBatchJobExecutionCommand extends $Command diff --git a/clients/client-m2/src/commands/GetDataSetDetailsCommand.ts b/clients/client-m2/src/commands/GetDataSetDetailsCommand.ts index a026221aa5f0e..c5ec7a885953d 100644 --- a/clients/client-m2/src/commands/GetDataSetDetailsCommand.ts +++ b/clients/client-m2/src/commands/GetDataSetDetailsCommand.ts @@ -120,6 +120,7 @@ export interface GetDataSetDetailsCommandOutput extends GetDataSetDetailsRespons * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class GetDataSetDetailsCommand extends $Command diff --git a/clients/client-m2/src/commands/GetDataSetImportTaskCommand.ts b/clients/client-m2/src/commands/GetDataSetImportTaskCommand.ts index 947f7d63c400c..a2f5302f03c5d 100644 --- a/clients/client-m2/src/commands/GetDataSetImportTaskCommand.ts +++ b/clients/client-m2/src/commands/GetDataSetImportTaskCommand.ts @@ -79,6 +79,7 @@ export interface GetDataSetImportTaskCommandOutput extends GetDataSetImportTaskR * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class GetDataSetImportTaskCommand extends $Command diff --git a/clients/client-m2/src/commands/GetDeploymentCommand.ts b/clients/client-m2/src/commands/GetDeploymentCommand.ts index e54758b6fad8b..248d10e36bd97 100644 --- a/clients/client-m2/src/commands/GetDeploymentCommand.ts +++ b/clients/client-m2/src/commands/GetDeploymentCommand.ts @@ -77,6 +77,7 @@ export interface GetDeploymentCommandOutput extends GetDeploymentResponse, __Met * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class GetDeploymentCommand extends $Command diff --git a/clients/client-m2/src/commands/GetEnvironmentCommand.ts b/clients/client-m2/src/commands/GetEnvironmentCommand.ts index 1188833eef70a..efe4e6a722ecf 100644 --- a/clients/client-m2/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-m2/src/commands/GetEnvironmentCommand.ts @@ -117,6 +117,7 @@ export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __M * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class GetEnvironmentCommand extends $Command diff --git a/clients/client-m2/src/commands/GetSignedBluinsightsUrlCommand.ts b/clients/client-m2/src/commands/GetSignedBluinsightsUrlCommand.ts index 1100c21f09942..43c5068868f23 100644 --- a/clients/client-m2/src/commands/GetSignedBluinsightsUrlCommand.ts +++ b/clients/client-m2/src/commands/GetSignedBluinsightsUrlCommand.ts @@ -62,6 +62,7 @@ export interface GetSignedBluinsightsUrlCommandOutput extends GetSignedBluinsigh * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class GetSignedBluinsightsUrlCommand extends $Command diff --git a/clients/client-m2/src/commands/ListApplicationVersionsCommand.ts b/clients/client-m2/src/commands/ListApplicationVersionsCommand.ts index 8fdde68df3dfb..5ff9f84b79f66 100644 --- a/clients/client-m2/src/commands/ListApplicationVersionsCommand.ts +++ b/clients/client-m2/src/commands/ListApplicationVersionsCommand.ts @@ -80,6 +80,7 @@ export interface ListApplicationVersionsCommandOutput extends ListApplicationVer * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class ListApplicationVersionsCommand extends $Command diff --git a/clients/client-m2/src/commands/ListApplicationsCommand.ts b/clients/client-m2/src/commands/ListApplicationsCommand.ts index 38da1b6370a3a..df86c7987f21b 100644 --- a/clients/client-m2/src/commands/ListApplicationsCommand.ts +++ b/clients/client-m2/src/commands/ListApplicationsCommand.ts @@ -91,6 +91,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-m2/src/commands/ListBatchJobDefinitionsCommand.ts b/clients/client-m2/src/commands/ListBatchJobDefinitionsCommand.ts index 888f5ad51d8de..31125b6483d60 100644 --- a/clients/client-m2/src/commands/ListBatchJobDefinitionsCommand.ts +++ b/clients/client-m2/src/commands/ListBatchJobDefinitionsCommand.ts @@ -86,6 +86,7 @@ export interface ListBatchJobDefinitionsCommandOutput extends ListBatchJobDefini * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class ListBatchJobDefinitionsCommand extends $Command diff --git a/clients/client-m2/src/commands/ListBatchJobExecutionsCommand.ts b/clients/client-m2/src/commands/ListBatchJobExecutionsCommand.ts index 2672403ad6b5b..2276804f5e2a5 100644 --- a/clients/client-m2/src/commands/ListBatchJobExecutionsCommand.ts +++ b/clients/client-m2/src/commands/ListBatchJobExecutionsCommand.ts @@ -119,6 +119,7 @@ export interface ListBatchJobExecutionsCommandOutput extends ListBatchJobExecuti * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class ListBatchJobExecutionsCommand extends $Command diff --git a/clients/client-m2/src/commands/ListBatchJobRestartPointsCommand.ts b/clients/client-m2/src/commands/ListBatchJobRestartPointsCommand.ts index acda0829c4047..f1008b6b35a6f 100644 --- a/clients/client-m2/src/commands/ListBatchJobRestartPointsCommand.ts +++ b/clients/client-m2/src/commands/ListBatchJobRestartPointsCommand.ts @@ -84,6 +84,7 @@ export interface ListBatchJobRestartPointsCommandOutput extends ListBatchJobRest * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class ListBatchJobRestartPointsCommand extends $Command diff --git a/clients/client-m2/src/commands/ListDataSetImportHistoryCommand.ts b/clients/client-m2/src/commands/ListDataSetImportHistoryCommand.ts index 32dfb9bb2b6ec..5effcc5670eef 100644 --- a/clients/client-m2/src/commands/ListDataSetImportHistoryCommand.ts +++ b/clients/client-m2/src/commands/ListDataSetImportHistoryCommand.ts @@ -86,6 +86,7 @@ export interface ListDataSetImportHistoryCommandOutput extends ListDataSetImport * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class ListDataSetImportHistoryCommand extends $Command diff --git a/clients/client-m2/src/commands/ListDataSetsCommand.ts b/clients/client-m2/src/commands/ListDataSetsCommand.ts index 033f530744639..ef9e831478f46 100644 --- a/clients/client-m2/src/commands/ListDataSetsCommand.ts +++ b/clients/client-m2/src/commands/ListDataSetsCommand.ts @@ -95,6 +95,7 @@ export interface ListDataSetsCommandOutput extends ListDataSetsResponse, __Metad * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class ListDataSetsCommand extends $Command diff --git a/clients/client-m2/src/commands/ListDeploymentsCommand.ts b/clients/client-m2/src/commands/ListDeploymentsCommand.ts index 906d3e59628a5..4bb255603c72d 100644 --- a/clients/client-m2/src/commands/ListDeploymentsCommand.ts +++ b/clients/client-m2/src/commands/ListDeploymentsCommand.ts @@ -85,6 +85,7 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsResponse, _ * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class ListDeploymentsCommand extends $Command diff --git a/clients/client-m2/src/commands/ListEngineVersionsCommand.ts b/clients/client-m2/src/commands/ListEngineVersionsCommand.ts index e93c4ee5b61e0..0ff667324237d 100644 --- a/clients/client-m2/src/commands/ListEngineVersionsCommand.ts +++ b/clients/client-m2/src/commands/ListEngineVersionsCommand.ts @@ -75,6 +75,7 @@ export interface ListEngineVersionsCommandOutput extends ListEngineVersionsRespo * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class ListEngineVersionsCommand extends $Command diff --git a/clients/client-m2/src/commands/ListEnvironmentsCommand.ts b/clients/client-m2/src/commands/ListEnvironmentsCommand.ts index d8eb2fe6b99c2..0d90b78f650f6 100644 --- a/clients/client-m2/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-m2/src/commands/ListEnvironmentsCommand.ts @@ -85,6 +85,7 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResponse, * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class ListEnvironmentsCommand extends $Command diff --git a/clients/client-m2/src/commands/ListTagsForResourceCommand.ts b/clients/client-m2/src/commands/ListTagsForResourceCommand.ts index db84214ff6c0f..95186e6f13532 100644 --- a/clients/client-m2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-m2/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-m2/src/commands/StartApplicationCommand.ts b/clients/client-m2/src/commands/StartApplicationCommand.ts index 011338f938949..c4a920e112e68 100644 --- a/clients/client-m2/src/commands/StartApplicationCommand.ts +++ b/clients/client-m2/src/commands/StartApplicationCommand.ts @@ -71,6 +71,7 @@ export interface StartApplicationCommandOutput extends StartApplicationResponse, * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class StartApplicationCommand extends $Command diff --git a/clients/client-m2/src/commands/StartBatchJobCommand.ts b/clients/client-m2/src/commands/StartBatchJobCommand.ts index 631eaf8b3dc06..1781e6f9e9955 100644 --- a/clients/client-m2/src/commands/StartBatchJobCommand.ts +++ b/clients/client-m2/src/commands/StartBatchJobCommand.ts @@ -104,6 +104,7 @@ export interface StartBatchJobCommandOutput extends StartBatchJobResponse, __Met * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class StartBatchJobCommand extends $Command diff --git a/clients/client-m2/src/commands/StopApplicationCommand.ts b/clients/client-m2/src/commands/StopApplicationCommand.ts index 708e3391076e2..761dde8e2771b 100644 --- a/clients/client-m2/src/commands/StopApplicationCommand.ts +++ b/clients/client-m2/src/commands/StopApplicationCommand.ts @@ -72,6 +72,7 @@ export interface StopApplicationCommandOutput extends StopApplicationResponse, _ * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class StopApplicationCommand extends $Command diff --git a/clients/client-m2/src/commands/TagResourceCommand.ts b/clients/client-m2/src/commands/TagResourceCommand.ts index 1411cef2a7f35..b58b16a921aed 100644 --- a/clients/client-m2/src/commands/TagResourceCommand.ts +++ b/clients/client-m2/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-m2/src/commands/UntagResourceCommand.ts b/clients/client-m2/src/commands/UntagResourceCommand.ts index 183b01e39958a..9a754e57fdbbb 100644 --- a/clients/client-m2/src/commands/UntagResourceCommand.ts +++ b/clients/client-m2/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-m2/src/commands/UpdateApplicationCommand.ts b/clients/client-m2/src/commands/UpdateApplicationCommand.ts index c1289e9f36ceb..b31aac962703f 100644 --- a/clients/client-m2/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-m2/src/commands/UpdateApplicationCommand.ts @@ -79,6 +79,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-m2/src/commands/UpdateEnvironmentCommand.ts b/clients/client-m2/src/commands/UpdateEnvironmentCommand.ts index 51c99e427a115..bd699b1e9918f 100644 --- a/clients/client-m2/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-m2/src/commands/UpdateEnvironmentCommand.ts @@ -82,6 +82,7 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentRespons * @throws {@link M2ServiceException} *

Base exception class for all service exceptions from M2 service.

* + * * @public */ export class UpdateEnvironmentCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/AddTagsCommand.ts b/clients/client-machine-learning/src/commands/AddTagsCommand.ts index fe3a924d0ae27..9c30a94024392 100644 --- a/clients/client-machine-learning/src/commands/AddTagsCommand.ts +++ b/clients/client-machine-learning/src/commands/AddTagsCommand.ts @@ -78,6 +78,7 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {} * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class AddTagsCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/CreateBatchPredictionCommand.ts b/clients/client-machine-learning/src/commands/CreateBatchPredictionCommand.ts index 373e03b29ef4d..8aa99866570ea 100644 --- a/clients/client-machine-learning/src/commands/CreateBatchPredictionCommand.ts +++ b/clients/client-machine-learning/src/commands/CreateBatchPredictionCommand.ts @@ -79,6 +79,7 @@ export interface CreateBatchPredictionCommandOutput extends CreateBatchPredictio * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class CreateBatchPredictionCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/CreateDataSourceFromRDSCommand.ts b/clients/client-machine-learning/src/commands/CreateDataSourceFromRDSCommand.ts index 2efea571039ca..0cd9675081747 100644 --- a/clients/client-machine-learning/src/commands/CreateDataSourceFromRDSCommand.ts +++ b/clients/client-machine-learning/src/commands/CreateDataSourceFromRDSCommand.ts @@ -103,6 +103,7 @@ export interface CreateDataSourceFromRDSCommandOutput extends CreateDataSourceFr * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class CreateDataSourceFromRDSCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/CreateDataSourceFromRedshiftCommand.ts b/clients/client-machine-learning/src/commands/CreateDataSourceFromRedshiftCommand.ts index e447dfd406f74..49a2164dbe597 100644 --- a/clients/client-machine-learning/src/commands/CreateDataSourceFromRedshiftCommand.ts +++ b/clients/client-machine-learning/src/commands/CreateDataSourceFromRedshiftCommand.ts @@ -123,6 +123,7 @@ export interface CreateDataSourceFromRedshiftCommandOutput * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class CreateDataSourceFromRedshiftCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/CreateDataSourceFromS3Command.ts b/clients/client-machine-learning/src/commands/CreateDataSourceFromS3Command.ts index 02d51e6135c76..71b4790f99777 100644 --- a/clients/client-machine-learning/src/commands/CreateDataSourceFromS3Command.ts +++ b/clients/client-machine-learning/src/commands/CreateDataSourceFromS3Command.ts @@ -102,6 +102,7 @@ export interface CreateDataSourceFromS3CommandOutput extends CreateDataSourceFro * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class CreateDataSourceFromS3Command extends $Command diff --git a/clients/client-machine-learning/src/commands/CreateEvaluationCommand.ts b/clients/client-machine-learning/src/commands/CreateEvaluationCommand.ts index 99eef45e08aa0..11c1d26057271 100644 --- a/clients/client-machine-learning/src/commands/CreateEvaluationCommand.ts +++ b/clients/client-machine-learning/src/commands/CreateEvaluationCommand.ts @@ -78,6 +78,7 @@ export interface CreateEvaluationCommandOutput extends CreateEvaluationOutput, _ * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class CreateEvaluationCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/CreateMLModelCommand.ts b/clients/client-machine-learning/src/commands/CreateMLModelCommand.ts index 97696240dab6a..0ab73946c9527 100644 --- a/clients/client-machine-learning/src/commands/CreateMLModelCommand.ts +++ b/clients/client-machine-learning/src/commands/CreateMLModelCommand.ts @@ -91,6 +91,7 @@ export interface CreateMLModelCommandOutput extends CreateMLModelOutput, __Metad * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class CreateMLModelCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/CreateRealtimeEndpointCommand.ts b/clients/client-machine-learning/src/commands/CreateRealtimeEndpointCommand.ts index 89130eeea93a5..b18d67f1ccc2c 100644 --- a/clients/client-machine-learning/src/commands/CreateRealtimeEndpointCommand.ts +++ b/clients/client-machine-learning/src/commands/CreateRealtimeEndpointCommand.ts @@ -70,6 +70,7 @@ export interface CreateRealtimeEndpointCommandOutput extends CreateRealtimeEndpo * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class CreateRealtimeEndpointCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/DeleteBatchPredictionCommand.ts b/clients/client-machine-learning/src/commands/DeleteBatchPredictionCommand.ts index 8a0b86a80a593..e337421eb754f 100644 --- a/clients/client-machine-learning/src/commands/DeleteBatchPredictionCommand.ts +++ b/clients/client-machine-learning/src/commands/DeleteBatchPredictionCommand.ts @@ -69,6 +69,7 @@ export interface DeleteBatchPredictionCommandOutput extends DeleteBatchPredictio * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class DeleteBatchPredictionCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/DeleteDataSourceCommand.ts b/clients/client-machine-learning/src/commands/DeleteDataSourceCommand.ts index 77b342778c259..1e600e9bf59ee 100644 --- a/clients/client-machine-learning/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-machine-learning/src/commands/DeleteDataSourceCommand.ts @@ -67,6 +67,7 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceOutput, _ * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class DeleteDataSourceCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/DeleteEvaluationCommand.ts b/clients/client-machine-learning/src/commands/DeleteEvaluationCommand.ts index 1ba692572d1b6..b15411e04717c 100644 --- a/clients/client-machine-learning/src/commands/DeleteEvaluationCommand.ts +++ b/clients/client-machine-learning/src/commands/DeleteEvaluationCommand.ts @@ -69,6 +69,7 @@ export interface DeleteEvaluationCommandOutput extends DeleteEvaluationOutput, _ * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class DeleteEvaluationCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/DeleteMLModelCommand.ts b/clients/client-machine-learning/src/commands/DeleteMLModelCommand.ts index 6ea6e954741db..dd3a3792729aa 100644 --- a/clients/client-machine-learning/src/commands/DeleteMLModelCommand.ts +++ b/clients/client-machine-learning/src/commands/DeleteMLModelCommand.ts @@ -69,6 +69,7 @@ export interface DeleteMLModelCommandOutput extends DeleteMLModelOutput, __Metad * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class DeleteMLModelCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/DeleteRealtimeEndpointCommand.ts b/clients/client-machine-learning/src/commands/DeleteRealtimeEndpointCommand.ts index 216101105fbf7..d912bada369fe 100644 --- a/clients/client-machine-learning/src/commands/DeleteRealtimeEndpointCommand.ts +++ b/clients/client-machine-learning/src/commands/DeleteRealtimeEndpointCommand.ts @@ -70,6 +70,7 @@ export interface DeleteRealtimeEndpointCommandOutput extends DeleteRealtimeEndpo * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class DeleteRealtimeEndpointCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/DeleteTagsCommand.ts b/clients/client-machine-learning/src/commands/DeleteTagsCommand.ts index 094e9e012308d..556671167c843 100644 --- a/clients/client-machine-learning/src/commands/DeleteTagsCommand.ts +++ b/clients/client-machine-learning/src/commands/DeleteTagsCommand.ts @@ -72,6 +72,7 @@ export interface DeleteTagsCommandOutput extends DeleteTagsOutput, __MetadataBea * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class DeleteTagsCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/DescribeBatchPredictionsCommand.ts b/clients/client-machine-learning/src/commands/DescribeBatchPredictionsCommand.ts index dd61120bd6f73..4f73ea11d1b57 100644 --- a/clients/client-machine-learning/src/commands/DescribeBatchPredictionsCommand.ts +++ b/clients/client-machine-learning/src/commands/DescribeBatchPredictionsCommand.ts @@ -91,6 +91,7 @@ export interface DescribeBatchPredictionsCommandOutput extends DescribeBatchPred * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class DescribeBatchPredictionsCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/DescribeDataSourcesCommand.ts b/clients/client-machine-learning/src/commands/DescribeDataSourcesCommand.ts index 1f3850231fdae..260483f54cd12 100644 --- a/clients/client-machine-learning/src/commands/DescribeDataSourcesCommand.ts +++ b/clients/client-machine-learning/src/commands/DescribeDataSourcesCommand.ts @@ -110,6 +110,7 @@ export interface DescribeDataSourcesCommandOutput extends DescribeDataSourcesOut * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class DescribeDataSourcesCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/DescribeEvaluationsCommand.ts b/clients/client-machine-learning/src/commands/DescribeEvaluationsCommand.ts index 8362200c25f42..d772faf03714b 100644 --- a/clients/client-machine-learning/src/commands/DescribeEvaluationsCommand.ts +++ b/clients/client-machine-learning/src/commands/DescribeEvaluationsCommand.ts @@ -93,6 +93,7 @@ export interface DescribeEvaluationsCommandOutput extends DescribeEvaluationsOut * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class DescribeEvaluationsCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/DescribeMLModelsCommand.ts b/clients/client-machine-learning/src/commands/DescribeMLModelsCommand.ts index 6a81bfb3abcfb..abef90cb770f2 100644 --- a/clients/client-machine-learning/src/commands/DescribeMLModelsCommand.ts +++ b/clients/client-machine-learning/src/commands/DescribeMLModelsCommand.ts @@ -101,6 +101,7 @@ export interface DescribeMLModelsCommandOutput extends DescribeMLModelsOutput, _ * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class DescribeMLModelsCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/DescribeTagsCommand.ts b/clients/client-machine-learning/src/commands/DescribeTagsCommand.ts index aacc3213c547f..bb9bcddcbe5c0 100644 --- a/clients/client-machine-learning/src/commands/DescribeTagsCommand.ts +++ b/clients/client-machine-learning/src/commands/DescribeTagsCommand.ts @@ -72,6 +72,7 @@ export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __Metadat * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class DescribeTagsCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/GetBatchPredictionCommand.ts b/clients/client-machine-learning/src/commands/GetBatchPredictionCommand.ts index 6f479e655feb2..441fa61773585 100644 --- a/clients/client-machine-learning/src/commands/GetBatchPredictionCommand.ts +++ b/clients/client-machine-learning/src/commands/GetBatchPredictionCommand.ts @@ -81,6 +81,7 @@ export interface GetBatchPredictionCommandOutput extends GetBatchPredictionOutpu * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class GetBatchPredictionCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/GetDataSourceCommand.ts b/clients/client-machine-learning/src/commands/GetDataSourceCommand.ts index 88104fe19e28d..02abebdbe11b3 100644 --- a/clients/client-machine-learning/src/commands/GetDataSourceCommand.ts +++ b/clients/client-machine-learning/src/commands/GetDataSourceCommand.ts @@ -104,6 +104,7 @@ export interface GetDataSourceCommandOutput extends GetDataSourceOutput, __Metad * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class GetDataSourceCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/GetEvaluationCommand.ts b/clients/client-machine-learning/src/commands/GetEvaluationCommand.ts index ea86bb6823ed7..1aae8dee35920 100644 --- a/clients/client-machine-learning/src/commands/GetEvaluationCommand.ts +++ b/clients/client-machine-learning/src/commands/GetEvaluationCommand.ts @@ -82,6 +82,7 @@ export interface GetEvaluationCommandOutput extends GetEvaluationOutput, __Metad * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class GetEvaluationCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/GetMLModelCommand.ts b/clients/client-machine-learning/src/commands/GetMLModelCommand.ts index 3e0f61417f0f0..1d985c91866ee 100644 --- a/clients/client-machine-learning/src/commands/GetMLModelCommand.ts +++ b/clients/client-machine-learning/src/commands/GetMLModelCommand.ts @@ -94,6 +94,7 @@ export interface GetMLModelCommandOutput extends GetMLModelOutput, __MetadataBea * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class GetMLModelCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/PredictCommand.ts b/clients/client-machine-learning/src/commands/PredictCommand.ts index d6a8f9f4f7d4c..6da559bcc3d40 100644 --- a/clients/client-machine-learning/src/commands/PredictCommand.ts +++ b/clients/client-machine-learning/src/commands/PredictCommand.ts @@ -87,6 +87,7 @@ export interface PredictCommandOutput extends PredictOutput, __MetadataBearer {} * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class PredictCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/UpdateBatchPredictionCommand.ts b/clients/client-machine-learning/src/commands/UpdateBatchPredictionCommand.ts index d32d5881839bb..e1806a2ef5293 100644 --- a/clients/client-machine-learning/src/commands/UpdateBatchPredictionCommand.ts +++ b/clients/client-machine-learning/src/commands/UpdateBatchPredictionCommand.ts @@ -66,6 +66,7 @@ export interface UpdateBatchPredictionCommandOutput extends UpdateBatchPredictio * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class UpdateBatchPredictionCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/UpdateDataSourceCommand.ts b/clients/client-machine-learning/src/commands/UpdateDataSourceCommand.ts index 64fefb15592ab..d9ad8b145ba86 100644 --- a/clients/client-machine-learning/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-machine-learning/src/commands/UpdateDataSourceCommand.ts @@ -66,6 +66,7 @@ export interface UpdateDataSourceCommandOutput extends UpdateDataSourceOutput, _ * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class UpdateDataSourceCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/UpdateEvaluationCommand.ts b/clients/client-machine-learning/src/commands/UpdateEvaluationCommand.ts index a52a1e10df578..1c79ee1b0ae4e 100644 --- a/clients/client-machine-learning/src/commands/UpdateEvaluationCommand.ts +++ b/clients/client-machine-learning/src/commands/UpdateEvaluationCommand.ts @@ -66,6 +66,7 @@ export interface UpdateEvaluationCommandOutput extends UpdateEvaluationOutput, _ * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class UpdateEvaluationCommand extends $Command diff --git a/clients/client-machine-learning/src/commands/UpdateMLModelCommand.ts b/clients/client-machine-learning/src/commands/UpdateMLModelCommand.ts index b65a20289a0b6..9029b7ac81907 100644 --- a/clients/client-machine-learning/src/commands/UpdateMLModelCommand.ts +++ b/clients/client-machine-learning/src/commands/UpdateMLModelCommand.ts @@ -67,6 +67,7 @@ export interface UpdateMLModelCommandOutput extends UpdateMLModelOutput, __Metad * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * * @public */ export class UpdateMLModelCommand extends $Command diff --git a/clients/client-macie2/src/commands/AcceptInvitationCommand.ts b/clients/client-macie2/src/commands/AcceptInvitationCommand.ts index f04e24700ce15..95070ed7ee879 100644 --- a/clients/client-macie2/src/commands/AcceptInvitationCommand.ts +++ b/clients/client-macie2/src/commands/AcceptInvitationCommand.ts @@ -76,6 +76,7 @@ export interface AcceptInvitationCommandOutput extends AcceptInvitationResponse, * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class AcceptInvitationCommand extends $Command diff --git a/clients/client-macie2/src/commands/BatchGetCustomDataIdentifiersCommand.ts b/clients/client-macie2/src/commands/BatchGetCustomDataIdentifiersCommand.ts index ecffbbcb478ff..babe91ab92979 100644 --- a/clients/client-macie2/src/commands/BatchGetCustomDataIdentifiersCommand.ts +++ b/clients/client-macie2/src/commands/BatchGetCustomDataIdentifiersCommand.ts @@ -95,6 +95,7 @@ export interface BatchGetCustomDataIdentifiersCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class BatchGetCustomDataIdentifiersCommand extends $Command diff --git a/clients/client-macie2/src/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.ts b/clients/client-macie2/src/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.ts index 14aa8d706acb6..0c91e1992e815 100644 --- a/clients/client-macie2/src/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.ts +++ b/clients/client-macie2/src/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.ts @@ -89,6 +89,7 @@ export interface BatchUpdateAutomatedDiscoveryAccountsCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class BatchUpdateAutomatedDiscoveryAccountsCommand extends $Command diff --git a/clients/client-macie2/src/commands/CreateAllowListCommand.ts b/clients/client-macie2/src/commands/CreateAllowListCommand.ts index 166a6ec28670a..d97846f51d478 100644 --- a/clients/client-macie2/src/commands/CreateAllowListCommand.ts +++ b/clients/client-macie2/src/commands/CreateAllowListCommand.ts @@ -89,6 +89,7 @@ export interface CreateAllowListCommandOutput extends CreateAllowListResponse, _ * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class CreateAllowListCommand extends $Command diff --git a/clients/client-macie2/src/commands/CreateClassificationJobCommand.ts b/clients/client-macie2/src/commands/CreateClassificationJobCommand.ts index e553e8aafc41a..a91ab0af2b854 100644 --- a/clients/client-macie2/src/commands/CreateClassificationJobCommand.ts +++ b/clients/client-macie2/src/commands/CreateClassificationJobCommand.ts @@ -204,6 +204,7 @@ export interface CreateClassificationJobCommandOutput extends CreateClassificati * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class CreateClassificationJobCommand extends $Command diff --git a/clients/client-macie2/src/commands/CreateCustomDataIdentifierCommand.ts b/clients/client-macie2/src/commands/CreateCustomDataIdentifierCommand.ts index 02a5639f3c5cc..13bd306f309c1 100644 --- a/clients/client-macie2/src/commands/CreateCustomDataIdentifierCommand.ts +++ b/clients/client-macie2/src/commands/CreateCustomDataIdentifierCommand.ts @@ -95,6 +95,7 @@ export interface CreateCustomDataIdentifierCommandOutput extends CreateCustomDat * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class CreateCustomDataIdentifierCommand extends $Command diff --git a/clients/client-macie2/src/commands/CreateFindingsFilterCommand.ts b/clients/client-macie2/src/commands/CreateFindingsFilterCommand.ts index 3a250550d7da6..f93acf64a77e7 100644 --- a/clients/client-macie2/src/commands/CreateFindingsFilterCommand.ts +++ b/clients/client-macie2/src/commands/CreateFindingsFilterCommand.ts @@ -103,6 +103,7 @@ export interface CreateFindingsFilterCommandOutput extends CreateFindingsFilterR * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class CreateFindingsFilterCommand extends $Command diff --git a/clients/client-macie2/src/commands/CreateInvitationsCommand.ts b/clients/client-macie2/src/commands/CreateInvitationsCommand.ts index 4e5449b8e80ff..9440348cf287f 100644 --- a/clients/client-macie2/src/commands/CreateInvitationsCommand.ts +++ b/clients/client-macie2/src/commands/CreateInvitationsCommand.ts @@ -86,6 +86,7 @@ export interface CreateInvitationsCommandOutput extends CreateInvitationsRespons * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class CreateInvitationsCommand extends $Command diff --git a/clients/client-macie2/src/commands/CreateMemberCommand.ts b/clients/client-macie2/src/commands/CreateMemberCommand.ts index c513a95cd614f..c0364c002b962 100644 --- a/clients/client-macie2/src/commands/CreateMemberCommand.ts +++ b/clients/client-macie2/src/commands/CreateMemberCommand.ts @@ -82,6 +82,7 @@ export interface CreateMemberCommandOutput extends CreateMemberResponse, __Metad * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class CreateMemberCommand extends $Command diff --git a/clients/client-macie2/src/commands/CreateSampleFindingsCommand.ts b/clients/client-macie2/src/commands/CreateSampleFindingsCommand.ts index 10aa94498412c..8248559ab6a75 100644 --- a/clients/client-macie2/src/commands/CreateSampleFindingsCommand.ts +++ b/clients/client-macie2/src/commands/CreateSampleFindingsCommand.ts @@ -76,6 +76,7 @@ export interface CreateSampleFindingsCommandOutput extends CreateSampleFindingsR * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class CreateSampleFindingsCommand extends $Command diff --git a/clients/client-macie2/src/commands/DeclineInvitationsCommand.ts b/clients/client-macie2/src/commands/DeclineInvitationsCommand.ts index 9ae124e80bcb0..5829105d72aab 100644 --- a/clients/client-macie2/src/commands/DeclineInvitationsCommand.ts +++ b/clients/client-macie2/src/commands/DeclineInvitationsCommand.ts @@ -84,6 +84,7 @@ export interface DeclineInvitationsCommandOutput extends DeclineInvitationsRespo * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class DeclineInvitationsCommand extends $Command diff --git a/clients/client-macie2/src/commands/DeleteAllowListCommand.ts b/clients/client-macie2/src/commands/DeleteAllowListCommand.ts index 72a3be1dd7487..a4a56a2e608bc 100644 --- a/clients/client-macie2/src/commands/DeleteAllowListCommand.ts +++ b/clients/client-macie2/src/commands/DeleteAllowListCommand.ts @@ -69,6 +69,7 @@ export interface DeleteAllowListCommandOutput extends DeleteAllowListResponse, _ * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class DeleteAllowListCommand extends $Command diff --git a/clients/client-macie2/src/commands/DeleteCustomDataIdentifierCommand.ts b/clients/client-macie2/src/commands/DeleteCustomDataIdentifierCommand.ts index 11ad2f2fceaa6..0d39201d02937 100644 --- a/clients/client-macie2/src/commands/DeleteCustomDataIdentifierCommand.ts +++ b/clients/client-macie2/src/commands/DeleteCustomDataIdentifierCommand.ts @@ -74,6 +74,7 @@ export interface DeleteCustomDataIdentifierCommandOutput extends DeleteCustomDat * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class DeleteCustomDataIdentifierCommand extends $Command diff --git a/clients/client-macie2/src/commands/DeleteFindingsFilterCommand.ts b/clients/client-macie2/src/commands/DeleteFindingsFilterCommand.ts index a3fe05d68554c..ebec289879567 100644 --- a/clients/client-macie2/src/commands/DeleteFindingsFilterCommand.ts +++ b/clients/client-macie2/src/commands/DeleteFindingsFilterCommand.ts @@ -74,6 +74,7 @@ export interface DeleteFindingsFilterCommandOutput extends DeleteFindingsFilterR * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class DeleteFindingsFilterCommand extends $Command diff --git a/clients/client-macie2/src/commands/DeleteInvitationsCommand.ts b/clients/client-macie2/src/commands/DeleteInvitationsCommand.ts index 347903eef9fee..6e6bef4e16cb5 100644 --- a/clients/client-macie2/src/commands/DeleteInvitationsCommand.ts +++ b/clients/client-macie2/src/commands/DeleteInvitationsCommand.ts @@ -84,6 +84,7 @@ export interface DeleteInvitationsCommandOutput extends DeleteInvitationsRespons * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class DeleteInvitationsCommand extends $Command diff --git a/clients/client-macie2/src/commands/DeleteMemberCommand.ts b/clients/client-macie2/src/commands/DeleteMemberCommand.ts index f74339528c667..ab9b3d982d6d8 100644 --- a/clients/client-macie2/src/commands/DeleteMemberCommand.ts +++ b/clients/client-macie2/src/commands/DeleteMemberCommand.ts @@ -74,6 +74,7 @@ export interface DeleteMemberCommandOutput extends DeleteMemberResponse, __Metad * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class DeleteMemberCommand extends $Command diff --git a/clients/client-macie2/src/commands/DescribeBucketsCommand.ts b/clients/client-macie2/src/commands/DescribeBucketsCommand.ts index 1f942aab6fee2..2ebfd78c3c05f 100644 --- a/clients/client-macie2/src/commands/DescribeBucketsCommand.ts +++ b/clients/client-macie2/src/commands/DescribeBucketsCommand.ts @@ -188,6 +188,7 @@ export interface DescribeBucketsCommandOutput extends DescribeBucketsResponse, _ * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class DescribeBucketsCommand extends $Command diff --git a/clients/client-macie2/src/commands/DescribeClassificationJobCommand.ts b/clients/client-macie2/src/commands/DescribeClassificationJobCommand.ts index bf6d621cf9c9a..376e86a6168f7 100644 --- a/clients/client-macie2/src/commands/DescribeClassificationJobCommand.ts +++ b/clients/client-macie2/src/commands/DescribeClassificationJobCommand.ts @@ -220,6 +220,7 @@ export interface DescribeClassificationJobCommandOutput extends DescribeClassifi * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class DescribeClassificationJobCommand extends $Command diff --git a/clients/client-macie2/src/commands/DescribeOrganizationConfigurationCommand.ts b/clients/client-macie2/src/commands/DescribeOrganizationConfigurationCommand.ts index f49b9e3891104..2d16fc8780be6 100644 --- a/clients/client-macie2/src/commands/DescribeOrganizationConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/DescribeOrganizationConfigurationCommand.ts @@ -83,6 +83,7 @@ export interface DescribeOrganizationConfigurationCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class DescribeOrganizationConfigurationCommand extends $Command diff --git a/clients/client-macie2/src/commands/DisableMacieCommand.ts b/clients/client-macie2/src/commands/DisableMacieCommand.ts index 717576aa667d7..df3a9f1e2a406 100644 --- a/clients/client-macie2/src/commands/DisableMacieCommand.ts +++ b/clients/client-macie2/src/commands/DisableMacieCommand.ts @@ -72,6 +72,7 @@ export interface DisableMacieCommandOutput extends DisableMacieResponse, __Metad * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class DisableMacieCommand extends $Command diff --git a/clients/client-macie2/src/commands/DisableOrganizationAdminAccountCommand.ts b/clients/client-macie2/src/commands/DisableOrganizationAdminAccountCommand.ts index 0cfd4134285a3..c0621c6b2bc2d 100644 --- a/clients/client-macie2/src/commands/DisableOrganizationAdminAccountCommand.ts +++ b/clients/client-macie2/src/commands/DisableOrganizationAdminAccountCommand.ts @@ -79,6 +79,7 @@ export interface DisableOrganizationAdminAccountCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class DisableOrganizationAdminAccountCommand extends $Command diff --git a/clients/client-macie2/src/commands/DisassociateFromAdministratorAccountCommand.ts b/clients/client-macie2/src/commands/DisassociateFromAdministratorAccountCommand.ts index fcce4c59926eb..58730c16de0a4 100644 --- a/clients/client-macie2/src/commands/DisassociateFromAdministratorAccountCommand.ts +++ b/clients/client-macie2/src/commands/DisassociateFromAdministratorAccountCommand.ts @@ -80,6 +80,7 @@ export interface DisassociateFromAdministratorAccountCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class DisassociateFromAdministratorAccountCommand extends $Command diff --git a/clients/client-macie2/src/commands/DisassociateFromMasterAccountCommand.ts b/clients/client-macie2/src/commands/DisassociateFromMasterAccountCommand.ts index 3e377a7f5a2ed..bb359994188c9 100644 --- a/clients/client-macie2/src/commands/DisassociateFromMasterAccountCommand.ts +++ b/clients/client-macie2/src/commands/DisassociateFromMasterAccountCommand.ts @@ -77,6 +77,7 @@ export interface DisassociateFromMasterAccountCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class DisassociateFromMasterAccountCommand extends $Command diff --git a/clients/client-macie2/src/commands/DisassociateMemberCommand.ts b/clients/client-macie2/src/commands/DisassociateMemberCommand.ts index 8ec46e6cf8dd7..2c38a5321e92f 100644 --- a/clients/client-macie2/src/commands/DisassociateMemberCommand.ts +++ b/clients/client-macie2/src/commands/DisassociateMemberCommand.ts @@ -74,6 +74,7 @@ export interface DisassociateMemberCommandOutput extends DisassociateMemberRespo * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class DisassociateMemberCommand extends $Command diff --git a/clients/client-macie2/src/commands/EnableMacieCommand.ts b/clients/client-macie2/src/commands/EnableMacieCommand.ts index 26c639cb9fe11..96353e6f6e094 100644 --- a/clients/client-macie2/src/commands/EnableMacieCommand.ts +++ b/clients/client-macie2/src/commands/EnableMacieCommand.ts @@ -76,6 +76,7 @@ export interface EnableMacieCommandOutput extends EnableMacieResponse, __Metadat * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class EnableMacieCommand extends $Command diff --git a/clients/client-macie2/src/commands/EnableOrganizationAdminAccountCommand.ts b/clients/client-macie2/src/commands/EnableOrganizationAdminAccountCommand.ts index cf52588166da4..9f26ea88c21d7 100644 --- a/clients/client-macie2/src/commands/EnableOrganizationAdminAccountCommand.ts +++ b/clients/client-macie2/src/commands/EnableOrganizationAdminAccountCommand.ts @@ -80,6 +80,7 @@ export interface EnableOrganizationAdminAccountCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class EnableOrganizationAdminAccountCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetAdministratorAccountCommand.ts b/clients/client-macie2/src/commands/GetAdministratorAccountCommand.ts index 7fcbb385b4452..18b1af6a2036e 100644 --- a/clients/client-macie2/src/commands/GetAdministratorAccountCommand.ts +++ b/clients/client-macie2/src/commands/GetAdministratorAccountCommand.ts @@ -79,6 +79,7 @@ export interface GetAdministratorAccountCommandOutput extends GetAdministratorAc * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetAdministratorAccountCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetAllowListCommand.ts b/clients/client-macie2/src/commands/GetAllowListCommand.ts index 428e1e9a8a863..6a125d1fb63cb 100644 --- a/clients/client-macie2/src/commands/GetAllowListCommand.ts +++ b/clients/client-macie2/src/commands/GetAllowListCommand.ts @@ -89,6 +89,7 @@ export interface GetAllowListCommandOutput extends GetAllowListResponse, __Metad * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetAllowListCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetAutomatedDiscoveryConfigurationCommand.ts b/clients/client-macie2/src/commands/GetAutomatedDiscoveryConfigurationCommand.ts index 9badafe29afd8..db85b65425b0b 100644 --- a/clients/client-macie2/src/commands/GetAutomatedDiscoveryConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/GetAutomatedDiscoveryConfigurationCommand.ts @@ -79,6 +79,7 @@ export interface GetAutomatedDiscoveryConfigurationCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetAutomatedDiscoveryConfigurationCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetBucketStatisticsCommand.ts b/clients/client-macie2/src/commands/GetBucketStatisticsCommand.ts index 61675c9715eb8..913d71ec5c3b6 100644 --- a/clients/client-macie2/src/commands/GetBucketStatisticsCommand.ts +++ b/clients/client-macie2/src/commands/GetBucketStatisticsCommand.ts @@ -141,6 +141,7 @@ export interface GetBucketStatisticsCommandOutput extends GetBucketStatisticsRes * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetBucketStatisticsCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetClassificationExportConfigurationCommand.ts b/clients/client-macie2/src/commands/GetClassificationExportConfigurationCommand.ts index 796af32ef6127..38b1f17dab60d 100644 --- a/clients/client-macie2/src/commands/GetClassificationExportConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/GetClassificationExportConfigurationCommand.ts @@ -88,6 +88,7 @@ export interface GetClassificationExportConfigurationCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetClassificationExportConfigurationCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetClassificationScopeCommand.ts b/clients/client-macie2/src/commands/GetClassificationScopeCommand.ts index da61d72dbfd36..3747d54e584ab 100644 --- a/clients/client-macie2/src/commands/GetClassificationScopeCommand.ts +++ b/clients/client-macie2/src/commands/GetClassificationScopeCommand.ts @@ -78,6 +78,7 @@ export interface GetClassificationScopeCommandOutput extends GetClassificationSc * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetClassificationScopeCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetCustomDataIdentifierCommand.ts b/clients/client-macie2/src/commands/GetCustomDataIdentifierCommand.ts index bfbd401a43830..16216b5e4e280 100644 --- a/clients/client-macie2/src/commands/GetCustomDataIdentifierCommand.ts +++ b/clients/client-macie2/src/commands/GetCustomDataIdentifierCommand.ts @@ -98,6 +98,7 @@ export interface GetCustomDataIdentifierCommandOutput extends GetCustomDataIdent * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetCustomDataIdentifierCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetFindingStatisticsCommand.ts b/clients/client-macie2/src/commands/GetFindingStatisticsCommand.ts index 9d8b64ae6c142..9936c788797e8 100644 --- a/clients/client-macie2/src/commands/GetFindingStatisticsCommand.ts +++ b/clients/client-macie2/src/commands/GetFindingStatisticsCommand.ts @@ -105,6 +105,7 @@ export interface GetFindingStatisticsCommandOutput extends GetFindingStatisticsR * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetFindingStatisticsCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetFindingsCommand.ts b/clients/client-macie2/src/commands/GetFindingsCommand.ts index 867c55c1d59cc..9af7514c1bbc4 100644 --- a/clients/client-macie2/src/commands/GetFindingsCommand.ts +++ b/clients/client-macie2/src/commands/GetFindingsCommand.ts @@ -386,6 +386,7 @@ export interface GetFindingsCommandOutput extends GetFindingsResponse, __Metadat * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetFindingsCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetFindingsFilterCommand.ts b/clients/client-macie2/src/commands/GetFindingsFilterCommand.ts index c5fce896b10f6..886bebb15da0e 100644 --- a/clients/client-macie2/src/commands/GetFindingsFilterCommand.ts +++ b/clients/client-macie2/src/commands/GetFindingsFilterCommand.ts @@ -103,6 +103,7 @@ export interface GetFindingsFilterCommandOutput extends GetFindingsFilterRespons * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetFindingsFilterCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetFindingsPublicationConfigurationCommand.ts b/clients/client-macie2/src/commands/GetFindingsPublicationConfigurationCommand.ts index 8f1c6236507dd..f76abb6fa9f3e 100644 --- a/clients/client-macie2/src/commands/GetFindingsPublicationConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/GetFindingsPublicationConfigurationCommand.ts @@ -85,6 +85,7 @@ export interface GetFindingsPublicationConfigurationCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetFindingsPublicationConfigurationCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetInvitationsCountCommand.ts b/clients/client-macie2/src/commands/GetInvitationsCountCommand.ts index 7502e5d6ce9cd..3070f4eccef10 100644 --- a/clients/client-macie2/src/commands/GetInvitationsCountCommand.ts +++ b/clients/client-macie2/src/commands/GetInvitationsCountCommand.ts @@ -74,6 +74,7 @@ export interface GetInvitationsCountCommandOutput extends GetInvitationsCountRes * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetInvitationsCountCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetMacieSessionCommand.ts b/clients/client-macie2/src/commands/GetMacieSessionCommand.ts index eabef87aca1a1..71b3d6e61d619 100644 --- a/clients/client-macie2/src/commands/GetMacieSessionCommand.ts +++ b/clients/client-macie2/src/commands/GetMacieSessionCommand.ts @@ -78,6 +78,7 @@ export interface GetMacieSessionCommandOutput extends GetMacieSessionResponse, _ * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetMacieSessionCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetMasterAccountCommand.ts b/clients/client-macie2/src/commands/GetMasterAccountCommand.ts index 0aad71f4daec9..080d6ccdf703b 100644 --- a/clients/client-macie2/src/commands/GetMasterAccountCommand.ts +++ b/clients/client-macie2/src/commands/GetMasterAccountCommand.ts @@ -79,6 +79,7 @@ export interface GetMasterAccountCommandOutput extends GetMasterAccountResponse, * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetMasterAccountCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetMemberCommand.ts b/clients/client-macie2/src/commands/GetMemberCommand.ts index 03ed5fe9a7cf4..5f98b4c11e0d8 100644 --- a/clients/client-macie2/src/commands/GetMemberCommand.ts +++ b/clients/client-macie2/src/commands/GetMemberCommand.ts @@ -86,6 +86,7 @@ export interface GetMemberCommandOutput extends GetMemberResponse, __MetadataBea * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetMemberCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetResourceProfileCommand.ts b/clients/client-macie2/src/commands/GetResourceProfileCommand.ts index 619a1ad6d1461..c23bb6a65a7b1 100644 --- a/clients/client-macie2/src/commands/GetResourceProfileCommand.ts +++ b/clients/client-macie2/src/commands/GetResourceProfileCommand.ts @@ -86,6 +86,7 @@ export interface GetResourceProfileCommandOutput extends GetResourceProfileRespo * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetResourceProfileCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetRevealConfigurationCommand.ts b/clients/client-macie2/src/commands/GetRevealConfigurationCommand.ts index 683771f3782b6..53104b2f70d54 100644 --- a/clients/client-macie2/src/commands/GetRevealConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/GetRevealConfigurationCommand.ts @@ -73,6 +73,7 @@ export interface GetRevealConfigurationCommandOutput extends GetRevealConfigurat * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetRevealConfigurationCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesAvailabilityCommand.ts b/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesAvailabilityCommand.ts index 586faf4a45f02..d9b9a8468a461 100644 --- a/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesAvailabilityCommand.ts +++ b/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesAvailabilityCommand.ts @@ -79,6 +79,7 @@ export interface GetSensitiveDataOccurrencesAvailabilityCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetSensitiveDataOccurrencesAvailabilityCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesCommand.ts b/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesCommand.ts index 0ac4fb94f4c03..a06263f546316 100644 --- a/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesCommand.ts +++ b/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesCommand.ts @@ -86,6 +86,7 @@ export interface GetSensitiveDataOccurrencesCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetSensitiveDataOccurrencesCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetSensitivityInspectionTemplateCommand.ts b/clients/client-macie2/src/commands/GetSensitivityInspectionTemplateCommand.ts index 1afab0c1060d9..663a9c92f7669 100644 --- a/clients/client-macie2/src/commands/GetSensitivityInspectionTemplateCommand.ts +++ b/clients/client-macie2/src/commands/GetSensitivityInspectionTemplateCommand.ts @@ -93,6 +93,7 @@ export interface GetSensitivityInspectionTemplateCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetSensitivityInspectionTemplateCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetUsageStatisticsCommand.ts b/clients/client-macie2/src/commands/GetUsageStatisticsCommand.ts index b7840fa51b251..cf2a0ba849e34 100644 --- a/clients/client-macie2/src/commands/GetUsageStatisticsCommand.ts +++ b/clients/client-macie2/src/commands/GetUsageStatisticsCommand.ts @@ -111,6 +111,7 @@ export interface GetUsageStatisticsCommandOutput extends GetUsageStatisticsRespo * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetUsageStatisticsCommand extends $Command diff --git a/clients/client-macie2/src/commands/GetUsageTotalsCommand.ts b/clients/client-macie2/src/commands/GetUsageTotalsCommand.ts index c3a61c1ea7c1a..444bc44540014 100644 --- a/clients/client-macie2/src/commands/GetUsageTotalsCommand.ts +++ b/clients/client-macie2/src/commands/GetUsageTotalsCommand.ts @@ -83,6 +83,7 @@ export interface GetUsageTotalsCommandOutput extends GetUsageTotalsResponse, __M * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class GetUsageTotalsCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListAllowListsCommand.ts b/clients/client-macie2/src/commands/ListAllowListsCommand.ts index ba8ce54a47a6b..459b2e4d48b35 100644 --- a/clients/client-macie2/src/commands/ListAllowListsCommand.ts +++ b/clients/client-macie2/src/commands/ListAllowListsCommand.ts @@ -78,6 +78,7 @@ export interface ListAllowListsCommandOutput extends ListAllowListsResponse, __M * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListAllowListsCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListAutomatedDiscoveryAccountsCommand.ts b/clients/client-macie2/src/commands/ListAutomatedDiscoveryAccountsCommand.ts index 1cb05e0ec99cc..eb5eb0b089506 100644 --- a/clients/client-macie2/src/commands/ListAutomatedDiscoveryAccountsCommand.ts +++ b/clients/client-macie2/src/commands/ListAutomatedDiscoveryAccountsCommand.ts @@ -85,6 +85,7 @@ export interface ListAutomatedDiscoveryAccountsCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListAutomatedDiscoveryAccountsCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListClassificationJobsCommand.ts b/clients/client-macie2/src/commands/ListClassificationJobsCommand.ts index 5d4dfa229ac4b..e14c7fc61b009 100644 --- a/clients/client-macie2/src/commands/ListClassificationJobsCommand.ts +++ b/clients/client-macie2/src/commands/ListClassificationJobsCommand.ts @@ -172,6 +172,7 @@ export interface ListClassificationJobsCommandOutput extends ListClassificationJ * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListClassificationJobsCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListClassificationScopesCommand.ts b/clients/client-macie2/src/commands/ListClassificationScopesCommand.ts index 84c2358436ced..d6b2a26ac24d9 100644 --- a/clients/client-macie2/src/commands/ListClassificationScopesCommand.ts +++ b/clients/client-macie2/src/commands/ListClassificationScopesCommand.ts @@ -74,6 +74,7 @@ export interface ListClassificationScopesCommandOutput extends ListClassificatio * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListClassificationScopesCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListCustomDataIdentifiersCommand.ts b/clients/client-macie2/src/commands/ListCustomDataIdentifiersCommand.ts index 5b61c4c4e45a6..22b5f6442deee 100644 --- a/clients/client-macie2/src/commands/ListCustomDataIdentifiersCommand.ts +++ b/clients/client-macie2/src/commands/ListCustomDataIdentifiersCommand.ts @@ -86,6 +86,7 @@ export interface ListCustomDataIdentifiersCommandOutput extends ListCustomDataId * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListCustomDataIdentifiersCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListFindingsCommand.ts b/clients/client-macie2/src/commands/ListFindingsCommand.ts index 4044293a731dd..cafd140233df3 100644 --- a/clients/client-macie2/src/commands/ListFindingsCommand.ts +++ b/clients/client-macie2/src/commands/ListFindingsCommand.ts @@ -103,6 +103,7 @@ export interface ListFindingsCommandOutput extends ListFindingsResponse, __Metad * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListFindingsCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListFindingsFiltersCommand.ts b/clients/client-macie2/src/commands/ListFindingsFiltersCommand.ts index fd214b3b54b13..5824283e31e57 100644 --- a/clients/client-macie2/src/commands/ListFindingsFiltersCommand.ts +++ b/clients/client-macie2/src/commands/ListFindingsFiltersCommand.ts @@ -88,6 +88,7 @@ export interface ListFindingsFiltersCommandOutput extends ListFindingsFiltersRes * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListFindingsFiltersCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListInvitationsCommand.ts b/clients/client-macie2/src/commands/ListInvitationsCommand.ts index 955a8dc111d4f..f1d89d68211b8 100644 --- a/clients/client-macie2/src/commands/ListInvitationsCommand.ts +++ b/clients/client-macie2/src/commands/ListInvitationsCommand.ts @@ -85,6 +85,7 @@ export interface ListInvitationsCommandOutput extends ListInvitationsResponse, _ * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListInvitationsCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListManagedDataIdentifiersCommand.ts b/clients/client-macie2/src/commands/ListManagedDataIdentifiersCommand.ts index e0a3564799965..6722c42a928f9 100644 --- a/clients/client-macie2/src/commands/ListManagedDataIdentifiersCommand.ts +++ b/clients/client-macie2/src/commands/ListManagedDataIdentifiersCommand.ts @@ -61,6 +61,7 @@ export interface ListManagedDataIdentifiersCommandOutput extends ListManagedData * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListManagedDataIdentifiersCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListMembersCommand.ts b/clients/client-macie2/src/commands/ListMembersCommand.ts index 5a9533f1b47c3..6298aeb3d90a2 100644 --- a/clients/client-macie2/src/commands/ListMembersCommand.ts +++ b/clients/client-macie2/src/commands/ListMembersCommand.ts @@ -93,6 +93,7 @@ export interface ListMembersCommandOutput extends ListMembersResponse, __Metadat * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListMembersCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListOrganizationAdminAccountsCommand.ts b/clients/client-macie2/src/commands/ListOrganizationAdminAccountsCommand.ts index 58e3814c91812..4e5f4fc524dfd 100644 --- a/clients/client-macie2/src/commands/ListOrganizationAdminAccountsCommand.ts +++ b/clients/client-macie2/src/commands/ListOrganizationAdminAccountsCommand.ts @@ -88,6 +88,7 @@ export interface ListOrganizationAdminAccountsCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListOrganizationAdminAccountsCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListResourceProfileArtifactsCommand.ts b/clients/client-macie2/src/commands/ListResourceProfileArtifactsCommand.ts index 133c182a260b4..44e99252a2e23 100644 --- a/clients/client-macie2/src/commands/ListResourceProfileArtifactsCommand.ts +++ b/clients/client-macie2/src/commands/ListResourceProfileArtifactsCommand.ts @@ -83,6 +83,7 @@ export interface ListResourceProfileArtifactsCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListResourceProfileArtifactsCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListResourceProfileDetectionsCommand.ts b/clients/client-macie2/src/commands/ListResourceProfileDetectionsCommand.ts index f7a071b6460cc..1d99db5c14789 100644 --- a/clients/client-macie2/src/commands/ListResourceProfileDetectionsCommand.ts +++ b/clients/client-macie2/src/commands/ListResourceProfileDetectionsCommand.ts @@ -90,6 +90,7 @@ export interface ListResourceProfileDetectionsCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListResourceProfileDetectionsCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListSensitivityInspectionTemplatesCommand.ts b/clients/client-macie2/src/commands/ListSensitivityInspectionTemplatesCommand.ts index 0f9dbdac6f0f4..13fe2f24fa8d9 100644 --- a/clients/client-macie2/src/commands/ListSensitivityInspectionTemplatesCommand.ts +++ b/clients/client-macie2/src/commands/ListSensitivityInspectionTemplatesCommand.ts @@ -85,6 +85,7 @@ export interface ListSensitivityInspectionTemplatesCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListSensitivityInspectionTemplatesCommand extends $Command diff --git a/clients/client-macie2/src/commands/ListTagsForResourceCommand.ts b/clients/client-macie2/src/commands/ListTagsForResourceCommand.ts index bae190e8fecfb..6cbeac33ce33c 100644 --- a/clients/client-macie2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-macie2/src/commands/ListTagsForResourceCommand.ts @@ -57,6 +57,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-macie2/src/commands/PutClassificationExportConfigurationCommand.ts b/clients/client-macie2/src/commands/PutClassificationExportConfigurationCommand.ts index 83336637dede0..0d97e64c1448a 100644 --- a/clients/client-macie2/src/commands/PutClassificationExportConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/PutClassificationExportConfigurationCommand.ts @@ -96,6 +96,7 @@ export interface PutClassificationExportConfigurationCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class PutClassificationExportConfigurationCommand extends $Command diff --git a/clients/client-macie2/src/commands/PutFindingsPublicationConfigurationCommand.ts b/clients/client-macie2/src/commands/PutFindingsPublicationConfigurationCommand.ts index e292512245538..17f5df636ca16 100644 --- a/clients/client-macie2/src/commands/PutFindingsPublicationConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/PutFindingsPublicationConfigurationCommand.ts @@ -86,6 +86,7 @@ export interface PutFindingsPublicationConfigurationCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class PutFindingsPublicationConfigurationCommand extends $Command diff --git a/clients/client-macie2/src/commands/SearchResourcesCommand.ts b/clients/client-macie2/src/commands/SearchResourcesCommand.ts index ac6b975972072..4a05d71af292b 100644 --- a/clients/client-macie2/src/commands/SearchResourcesCommand.ts +++ b/clients/client-macie2/src/commands/SearchResourcesCommand.ts @@ -168,6 +168,7 @@ export interface SearchResourcesCommandOutput extends SearchResourcesResponse, _ * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class SearchResourcesCommand extends $Command diff --git a/clients/client-macie2/src/commands/TagResourceCommand.ts b/clients/client-macie2/src/commands/TagResourceCommand.ts index 33d9f3feb2ef3..40e0a79574c1d 100644 --- a/clients/client-macie2/src/commands/TagResourceCommand.ts +++ b/clients/client-macie2/src/commands/TagResourceCommand.ts @@ -56,6 +56,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-macie2/src/commands/TestCustomDataIdentifierCommand.ts b/clients/client-macie2/src/commands/TestCustomDataIdentifierCommand.ts index 47586197be271..e9f70464145da 100644 --- a/clients/client-macie2/src/commands/TestCustomDataIdentifierCommand.ts +++ b/clients/client-macie2/src/commands/TestCustomDataIdentifierCommand.ts @@ -84,6 +84,7 @@ export interface TestCustomDataIdentifierCommandOutput extends TestCustomDataIde * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class TestCustomDataIdentifierCommand extends $Command diff --git a/clients/client-macie2/src/commands/UntagResourceCommand.ts b/clients/client-macie2/src/commands/UntagResourceCommand.ts index 059518486b29d..35545bb0f52fa 100644 --- a/clients/client-macie2/src/commands/UntagResourceCommand.ts +++ b/clients/client-macie2/src/commands/UntagResourceCommand.ts @@ -56,6 +56,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-macie2/src/commands/UpdateAllowListCommand.ts b/clients/client-macie2/src/commands/UpdateAllowListCommand.ts index 12e3de0415835..0b138d957dc56 100644 --- a/clients/client-macie2/src/commands/UpdateAllowListCommand.ts +++ b/clients/client-macie2/src/commands/UpdateAllowListCommand.ts @@ -80,6 +80,7 @@ export interface UpdateAllowListCommandOutput extends UpdateAllowListResponse, _ * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class UpdateAllowListCommand extends $Command diff --git a/clients/client-macie2/src/commands/UpdateAutomatedDiscoveryConfigurationCommand.ts b/clients/client-macie2/src/commands/UpdateAutomatedDiscoveryConfigurationCommand.ts index bad5a0d89119f..2eb4c33a840b7 100644 --- a/clients/client-macie2/src/commands/UpdateAutomatedDiscoveryConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/UpdateAutomatedDiscoveryConfigurationCommand.ts @@ -75,6 +75,7 @@ export interface UpdateAutomatedDiscoveryConfigurationCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class UpdateAutomatedDiscoveryConfigurationCommand extends $Command diff --git a/clients/client-macie2/src/commands/UpdateClassificationJobCommand.ts b/clients/client-macie2/src/commands/UpdateClassificationJobCommand.ts index 4d61142bfdf57..81446be1c4076 100644 --- a/clients/client-macie2/src/commands/UpdateClassificationJobCommand.ts +++ b/clients/client-macie2/src/commands/UpdateClassificationJobCommand.ts @@ -75,6 +75,7 @@ export interface UpdateClassificationJobCommandOutput extends UpdateClassificati * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class UpdateClassificationJobCommand extends $Command diff --git a/clients/client-macie2/src/commands/UpdateClassificationScopeCommand.ts b/clients/client-macie2/src/commands/UpdateClassificationScopeCommand.ts index a3ddede4388d6..743bf8d333833 100644 --- a/clients/client-macie2/src/commands/UpdateClassificationScopeCommand.ts +++ b/clients/client-macie2/src/commands/UpdateClassificationScopeCommand.ts @@ -76,6 +76,7 @@ export interface UpdateClassificationScopeCommandOutput extends UpdateClassifica * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class UpdateClassificationScopeCommand extends $Command diff --git a/clients/client-macie2/src/commands/UpdateFindingsFilterCommand.ts b/clients/client-macie2/src/commands/UpdateFindingsFilterCommand.ts index 164081705e26f..c5617dabf359b 100644 --- a/clients/client-macie2/src/commands/UpdateFindingsFilterCommand.ts +++ b/clients/client-macie2/src/commands/UpdateFindingsFilterCommand.ts @@ -101,6 +101,7 @@ export interface UpdateFindingsFilterCommandOutput extends UpdateFindingsFilterR * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class UpdateFindingsFilterCommand extends $Command diff --git a/clients/client-macie2/src/commands/UpdateMacieSessionCommand.ts b/clients/client-macie2/src/commands/UpdateMacieSessionCommand.ts index 019e0ff58f648..ffd435897eb10 100644 --- a/clients/client-macie2/src/commands/UpdateMacieSessionCommand.ts +++ b/clients/client-macie2/src/commands/UpdateMacieSessionCommand.ts @@ -75,6 +75,7 @@ export interface UpdateMacieSessionCommandOutput extends UpdateMacieSessionRespo * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class UpdateMacieSessionCommand extends $Command diff --git a/clients/client-macie2/src/commands/UpdateMemberSessionCommand.ts b/clients/client-macie2/src/commands/UpdateMemberSessionCommand.ts index ab4170b942ec0..3861fc11dfc5b 100644 --- a/clients/client-macie2/src/commands/UpdateMemberSessionCommand.ts +++ b/clients/client-macie2/src/commands/UpdateMemberSessionCommand.ts @@ -75,6 +75,7 @@ export interface UpdateMemberSessionCommandOutput extends UpdateMemberSessionRes * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class UpdateMemberSessionCommand extends $Command diff --git a/clients/client-macie2/src/commands/UpdateOrganizationConfigurationCommand.ts b/clients/client-macie2/src/commands/UpdateOrganizationConfigurationCommand.ts index 0b1aeb285c050..336ecdfb8c502 100644 --- a/clients/client-macie2/src/commands/UpdateOrganizationConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/UpdateOrganizationConfigurationCommand.ts @@ -79,6 +79,7 @@ export interface UpdateOrganizationConfigurationCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class UpdateOrganizationConfigurationCommand extends $Command diff --git a/clients/client-macie2/src/commands/UpdateResourceProfileCommand.ts b/clients/client-macie2/src/commands/UpdateResourceProfileCommand.ts index a5576ba54cd8e..fa69c7fa2b272 100644 --- a/clients/client-macie2/src/commands/UpdateResourceProfileCommand.ts +++ b/clients/client-macie2/src/commands/UpdateResourceProfileCommand.ts @@ -72,6 +72,7 @@ export interface UpdateResourceProfileCommandOutput extends UpdateResourceProfil * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class UpdateResourceProfileCommand extends $Command diff --git a/clients/client-macie2/src/commands/UpdateResourceProfileDetectionsCommand.ts b/clients/client-macie2/src/commands/UpdateResourceProfileDetectionsCommand.ts index ea21d78d9a15c..62dc69e4c1023 100644 --- a/clients/client-macie2/src/commands/UpdateResourceProfileDetectionsCommand.ts +++ b/clients/client-macie2/src/commands/UpdateResourceProfileDetectionsCommand.ts @@ -82,6 +82,7 @@ export interface UpdateResourceProfileDetectionsCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class UpdateResourceProfileDetectionsCommand extends $Command diff --git a/clients/client-macie2/src/commands/UpdateRevealConfigurationCommand.ts b/clients/client-macie2/src/commands/UpdateRevealConfigurationCommand.ts index 608ed635ef208..9d9a25fe43c44 100644 --- a/clients/client-macie2/src/commands/UpdateRevealConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/UpdateRevealConfigurationCommand.ts @@ -82,6 +82,7 @@ export interface UpdateRevealConfigurationCommandOutput extends UpdateRevealConf * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class UpdateRevealConfigurationCommand extends $Command diff --git a/clients/client-macie2/src/commands/UpdateSensitivityInspectionTemplateCommand.ts b/clients/client-macie2/src/commands/UpdateSensitivityInspectionTemplateCommand.ts index 4792d17230fb0..49466559279b7 100644 --- a/clients/client-macie2/src/commands/UpdateSensitivityInspectionTemplateCommand.ts +++ b/clients/client-macie2/src/commands/UpdateSensitivityInspectionTemplateCommand.ts @@ -93,6 +93,7 @@ export interface UpdateSensitivityInspectionTemplateCommandOutput * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* + * * @public */ export class UpdateSensitivityInspectionTemplateCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/CreateAddonInstanceCommand.ts b/clients/client-mailmanager/src/commands/CreateAddonInstanceCommand.ts index e95b46633dd03..6ce1e83e524f6 100644 --- a/clients/client-mailmanager/src/commands/CreateAddonInstanceCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateAddonInstanceCommand.ts @@ -76,6 +76,7 @@ export interface CreateAddonInstanceCommandOutput extends CreateAddonInstanceRes * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class CreateAddonInstanceCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/CreateAddonSubscriptionCommand.ts b/clients/client-mailmanager/src/commands/CreateAddonSubscriptionCommand.ts index ef8187ac20705..f6924b438fae6 100644 --- a/clients/client-mailmanager/src/commands/CreateAddonSubscriptionCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateAddonSubscriptionCommand.ts @@ -73,6 +73,7 @@ export interface CreateAddonSubscriptionCommandOutput extends CreateAddonSubscri * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class CreateAddonSubscriptionCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/CreateAddressListCommand.ts b/clients/client-mailmanager/src/commands/CreateAddressListCommand.ts index c74ba7c6b8d4c..587ab32f04645 100644 --- a/clients/client-mailmanager/src/commands/CreateAddressListCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateAddressListCommand.ts @@ -77,6 +77,7 @@ export interface CreateAddressListCommandOutput extends CreateAddressListRespons * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class CreateAddressListCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/CreateAddressListImportJobCommand.ts b/clients/client-mailmanager/src/commands/CreateAddressListImportJobCommand.ts index e12a4c65176bf..5adf1024efd90 100644 --- a/clients/client-mailmanager/src/commands/CreateAddressListImportJobCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateAddressListImportJobCommand.ts @@ -77,6 +77,7 @@ export interface CreateAddressListImportJobCommandOutput extends CreateAddressLi * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class CreateAddressListImportJobCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/CreateArchiveCommand.ts b/clients/client-mailmanager/src/commands/CreateArchiveCommand.ts index 2d0c186d494e5..832a6c00a7103 100644 --- a/clients/client-mailmanager/src/commands/CreateArchiveCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateArchiveCommand.ts @@ -81,6 +81,7 @@ export interface CreateArchiveCommandOutput extends CreateArchiveResponse, __Met * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class CreateArchiveCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/CreateIngressPointCommand.ts b/clients/client-mailmanager/src/commands/CreateIngressPointCommand.ts index 58565e7ff33a4..d85dfe0256d47 100644 --- a/clients/client-mailmanager/src/commands/CreateIngressPointCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateIngressPointCommand.ts @@ -82,6 +82,85 @@ export interface CreateIngressPointCommandOutput extends CreateIngressPointRespo * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * + * @example Create Open IngressPoint + * ```javascript + * // + * const input = { + * IngressPointName: "ingressPointName", + * RuleSetId: "rs-12345", + * Tags: [ + * { + * Key: "key", + * Value: "value" + * } + * ], + * TrafficPolicyId: "tp-12345", + * Type: "OPEN" + * }; + * const command = new CreateIngressPointCommand(input); + * const response = await client.send(command); + * /* response is + * { + * IngressPointId: "inp-12345" + * } + * *\/ + * ``` + * + * @example Create Auth IngressPoint with Password + * ```javascript + * // + * const input = { + * IngressPointConfiguration: { + * SmtpPassword: "smtpPassword" + * }, + * IngressPointName: "ingressPointName", + * RuleSetId: "rs-12345", + * Tags: [ + * { + * Key: "key", + * Value: "value" + * } + * ], + * TrafficPolicyId: "tp-12345", + * Type: "AUTH" + * }; + * const command = new CreateIngressPointCommand(input); + * const response = await client.send(command); + * /* response is + * { + * IngressPointId: "inp-12345" + * } + * *\/ + * ``` + * + * @example Create Auth IngressPoint with SecretsManager Secret + * ```javascript + * // + * const input = { + * IngressPointConfiguration: { + * SecretArn: "arn:aws:secretsmanager:us-west-2:123456789012:secret:abcde" + * }, + * IngressPointName: "ingressPointName", + * RuleSetId: "rs-12345", + * Tags: [ + * { + * Key: "key", + * Value: "value" + * } + * ], + * TrafficPolicyId: "tp-12345", + * Type: "AUTH" + * }; + * const command = new CreateIngressPointCommand(input); + * const response = await client.send(command); + * /* response is + * { + * IngressPointId: "inp-12345" + * } + * *\/ + * ``` + * * @public */ export class CreateIngressPointCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/CreateRelayCommand.ts b/clients/client-mailmanager/src/commands/CreateRelayCommand.ts index f1bafbe0c9da7..c953a1072237d 100644 --- a/clients/client-mailmanager/src/commands/CreateRelayCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateRelayCommand.ts @@ -78,6 +78,7 @@ export interface CreateRelayCommandOutput extends CreateRelayResponse, __Metadat * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class CreateRelayCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/CreateRuleSetCommand.ts b/clients/client-mailmanager/src/commands/CreateRuleSetCommand.ts index 003d0df70ef09..d163fa8aa3018 100644 --- a/clients/client-mailmanager/src/commands/CreateRuleSetCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateRuleSetCommand.ts @@ -260,6 +260,7 @@ export interface CreateRuleSetCommandOutput extends CreateRuleSetResponse, __Met * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class CreateRuleSetCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/CreateTrafficPolicyCommand.ts b/clients/client-mailmanager/src/commands/CreateTrafficPolicyCommand.ts index 432d77ace4c0a..0b5f5700bbba5 100644 --- a/clients/client-mailmanager/src/commands/CreateTrafficPolicyCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateTrafficPolicyCommand.ts @@ -126,6 +126,41 @@ export interface CreateTrafficPolicyCommandOutput extends CreateTrafficPolicyRes * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * + * @example Create TrafficPolicy + * ```javascript + * // + * const input = { + * DefaultAction: "DENY", + * PolicyStatements: [ + * { + * Action: "ALLOW", + * Conditions: [ + * { + * IpExpression: { + * Evaluate: { + * Attribute: "SENDER_IP" + * }, + * Operator: "CIDR_MATCHES", + * Values: [ + * "0.0.0.0/12" + * ] + * } + * } + * ] + * } + * ], + * TrafficPolicyName: "trafficPolicyName" + * }; + * const command = new CreateTrafficPolicyCommand(input); + * const response = await client.send(command); + * /* response is + * { + * TrafficPolicyId: "tp-13245" + * } + * *\/ + * ``` + * * @public */ export class CreateTrafficPolicyCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/DeleteAddonInstanceCommand.ts b/clients/client-mailmanager/src/commands/DeleteAddonInstanceCommand.ts index f09fd9dec6156..43d926a0eef12 100644 --- a/clients/client-mailmanager/src/commands/DeleteAddonInstanceCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteAddonInstanceCommand.ts @@ -59,6 +59,7 @@ export interface DeleteAddonInstanceCommandOutput extends DeleteAddonInstanceRes * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class DeleteAddonInstanceCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/DeleteAddonSubscriptionCommand.ts b/clients/client-mailmanager/src/commands/DeleteAddonSubscriptionCommand.ts index fb2dde48b0512..608e213fe8b9f 100644 --- a/clients/client-mailmanager/src/commands/DeleteAddonSubscriptionCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteAddonSubscriptionCommand.ts @@ -59,6 +59,7 @@ export interface DeleteAddonSubscriptionCommandOutput extends DeleteAddonSubscri * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class DeleteAddonSubscriptionCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/DeleteAddressListCommand.ts b/clients/client-mailmanager/src/commands/DeleteAddressListCommand.ts index 86a90c419aeab..48b7dd1136e76 100644 --- a/clients/client-mailmanager/src/commands/DeleteAddressListCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteAddressListCommand.ts @@ -62,6 +62,7 @@ export interface DeleteAddressListCommandOutput extends DeleteAddressListRespons * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class DeleteAddressListCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/DeleteArchiveCommand.ts b/clients/client-mailmanager/src/commands/DeleteArchiveCommand.ts index 64bac6b9310a4..d43825b675e52 100644 --- a/clients/client-mailmanager/src/commands/DeleteArchiveCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteArchiveCommand.ts @@ -69,6 +69,7 @@ export interface DeleteArchiveCommandOutput extends DeleteArchiveResponse, __Met * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class DeleteArchiveCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/DeleteIngressPointCommand.ts b/clients/client-mailmanager/src/commands/DeleteIngressPointCommand.ts index cbebc8c81d989..f3c8d41bf0100 100644 --- a/clients/client-mailmanager/src/commands/DeleteIngressPointCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteIngressPointCommand.ts @@ -62,6 +62,20 @@ export interface DeleteIngressPointCommandOutput extends DeleteIngressPointRespo * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * + * @example Delete IngressPoint + * ```javascript + * // + * const input = { + * IngressPointId: "inp-12345" + * }; + * const command = new DeleteIngressPointCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * * @public */ export class DeleteIngressPointCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/DeleteRelayCommand.ts b/clients/client-mailmanager/src/commands/DeleteRelayCommand.ts index 3477b0da0daf4..237be685322b2 100644 --- a/clients/client-mailmanager/src/commands/DeleteRelayCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteRelayCommand.ts @@ -62,6 +62,7 @@ export interface DeleteRelayCommandOutput extends DeleteRelayResponse, __Metadat * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class DeleteRelayCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/DeleteRuleSetCommand.ts b/clients/client-mailmanager/src/commands/DeleteRuleSetCommand.ts index e31e1cd6683aa..f405a2be5af8d 100644 --- a/clients/client-mailmanager/src/commands/DeleteRuleSetCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteRuleSetCommand.ts @@ -59,6 +59,7 @@ export interface DeleteRuleSetCommandOutput extends DeleteRuleSetResponse, __Met * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class DeleteRuleSetCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/DeleteTrafficPolicyCommand.ts b/clients/client-mailmanager/src/commands/DeleteTrafficPolicyCommand.ts index fb3639189a2d2..24b52429e61a7 100644 --- a/clients/client-mailmanager/src/commands/DeleteTrafficPolicyCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteTrafficPolicyCommand.ts @@ -62,6 +62,20 @@ export interface DeleteTrafficPolicyCommandOutput extends DeleteTrafficPolicyRes * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * + * @example Delete TrafficPolicy + * ```javascript + * // + * const input = { + * TrafficPolicyId: "tp-12345" + * }; + * const command = new DeleteTrafficPolicyCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * * @public */ export class DeleteTrafficPolicyCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/DeregisterMemberFromAddressListCommand.ts b/clients/client-mailmanager/src/commands/DeregisterMemberFromAddressListCommand.ts index 26290fa9d5639..58230150e941f 100644 --- a/clients/client-mailmanager/src/commands/DeregisterMemberFromAddressListCommand.ts +++ b/clients/client-mailmanager/src/commands/DeregisterMemberFromAddressListCommand.ts @@ -75,6 +75,7 @@ export interface DeregisterMemberFromAddressListCommandOutput * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class DeregisterMemberFromAddressListCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetAddonInstanceCommand.ts b/clients/client-mailmanager/src/commands/GetAddonInstanceCommand.ts index 74cd6685dda6d..5dc10456f651b 100644 --- a/clients/client-mailmanager/src/commands/GetAddonInstanceCommand.ts +++ b/clients/client-mailmanager/src/commands/GetAddonInstanceCommand.ts @@ -64,6 +64,7 @@ export interface GetAddonInstanceCommandOutput extends GetAddonInstanceResponse, * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class GetAddonInstanceCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetAddonSubscriptionCommand.ts b/clients/client-mailmanager/src/commands/GetAddonSubscriptionCommand.ts index 79ec82c60ccc4..f556cd79c04cd 100644 --- a/clients/client-mailmanager/src/commands/GetAddonSubscriptionCommand.ts +++ b/clients/client-mailmanager/src/commands/GetAddonSubscriptionCommand.ts @@ -63,6 +63,7 @@ export interface GetAddonSubscriptionCommandOutput extends GetAddonSubscriptionR * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class GetAddonSubscriptionCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetAddressListCommand.ts b/clients/client-mailmanager/src/commands/GetAddressListCommand.ts index 3da0bb8f03e9a..fdb3562cedf81 100644 --- a/clients/client-mailmanager/src/commands/GetAddressListCommand.ts +++ b/clients/client-mailmanager/src/commands/GetAddressListCommand.ts @@ -71,6 +71,7 @@ export interface GetAddressListCommandOutput extends GetAddressListResponse, __M * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class GetAddressListCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetAddressListImportJobCommand.ts b/clients/client-mailmanager/src/commands/GetAddressListImportJobCommand.ts index 6c032a46dee03..f963d20bff703 100644 --- a/clients/client-mailmanager/src/commands/GetAddressListImportJobCommand.ts +++ b/clients/client-mailmanager/src/commands/GetAddressListImportJobCommand.ts @@ -84,6 +84,7 @@ export interface GetAddressListImportJobCommandOutput extends GetAddressListImpo * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class GetAddressListImportJobCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetArchiveCommand.ts b/clients/client-mailmanager/src/commands/GetArchiveCommand.ts index 8486e8284fa50..d62e6a5bcc45d 100644 --- a/clients/client-mailmanager/src/commands/GetArchiveCommand.ts +++ b/clients/client-mailmanager/src/commands/GetArchiveCommand.ts @@ -76,6 +76,7 @@ export interface GetArchiveCommandOutput extends GetArchiveResponse, __MetadataB * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class GetArchiveCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetArchiveExportCommand.ts b/clients/client-mailmanager/src/commands/GetArchiveExportCommand.ts index aa62ea4bb8c07..f38e838d991a2 100644 --- a/clients/client-mailmanager/src/commands/GetArchiveExportCommand.ts +++ b/clients/client-mailmanager/src/commands/GetArchiveExportCommand.ts @@ -118,6 +118,7 @@ export interface GetArchiveExportCommandOutput extends GetArchiveExportResponse, * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class GetArchiveExportCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetArchiveMessageCommand.ts b/clients/client-mailmanager/src/commands/GetArchiveMessageCommand.ts index 2f5577ecee134..343ae368f958a 100644 --- a/clients/client-mailmanager/src/commands/GetArchiveMessageCommand.ts +++ b/clients/client-mailmanager/src/commands/GetArchiveMessageCommand.ts @@ -92,6 +92,7 @@ export interface GetArchiveMessageCommandOutput extends GetArchiveMessageRespons * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class GetArchiveMessageCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetArchiveMessageContentCommand.ts b/clients/client-mailmanager/src/commands/GetArchiveMessageContentCommand.ts index 1dd0f05a77c04..a8321febd4c45 100644 --- a/clients/client-mailmanager/src/commands/GetArchiveMessageContentCommand.ts +++ b/clients/client-mailmanager/src/commands/GetArchiveMessageContentCommand.ts @@ -70,6 +70,7 @@ export interface GetArchiveMessageContentCommandOutput extends GetArchiveMessage * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class GetArchiveMessageContentCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetArchiveSearchCommand.ts b/clients/client-mailmanager/src/commands/GetArchiveSearchCommand.ts index 295062d47b2f4..631d5ea99f8f2 100644 --- a/clients/client-mailmanager/src/commands/GetArchiveSearchCommand.ts +++ b/clients/client-mailmanager/src/commands/GetArchiveSearchCommand.ts @@ -113,6 +113,7 @@ export interface GetArchiveSearchCommandOutput extends GetArchiveSearchResponse, * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class GetArchiveSearchCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetArchiveSearchResultsCommand.ts b/clients/client-mailmanager/src/commands/GetArchiveSearchResultsCommand.ts index b301a26eb9aa7..9032907cbcf7f 100644 --- a/clients/client-mailmanager/src/commands/GetArchiveSearchResultsCommand.ts +++ b/clients/client-mailmanager/src/commands/GetArchiveSearchResultsCommand.ts @@ -101,6 +101,7 @@ export interface GetArchiveSearchResultsCommandOutput extends GetArchiveSearchRe * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class GetArchiveSearchResultsCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetIngressPointCommand.ts b/clients/client-mailmanager/src/commands/GetIngressPointCommand.ts index 5362b4f29d7be..733bbed55bf9f 100644 --- a/clients/client-mailmanager/src/commands/GetIngressPointCommand.ts +++ b/clients/client-mailmanager/src/commands/GetIngressPointCommand.ts @@ -78,6 +78,50 @@ export interface GetIngressPointCommandOutput extends GetIngressPointResponse, _ * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * + * @example Get Open IngressPoint + * ```javascript + * // + * const input = { + * IngressPointId: "inp-12345" + * }; + * const command = new GetIngressPointCommand(input); + * const response = await client.send(command); + * /* response is + * { + * ARecord: "abcde123.prod.us-east-1.email-border.ses.aws.a2z.com", + * IngressPointArn: "arn:aws:ses:us-east-1:123456789012:mailmanager-ingress-point/inp-12345", + * IngressPointId: "inp-12345", + * IngressPointName: "ingressPointName", + * Status: "ACTIVE", + * Type: "OPEN" + * } + * *\/ + * ``` + * + * @example Get Auth IngressPoint + * ```javascript + * // + * const input = { + * IngressPointId: "inp-12345" + * }; + * const command = new GetIngressPointCommand(input); + * const response = await client.send(command); + * /* response is + * { + * ARecord: "abcde123.prod.us-east-1.email-border.ses.aws.a2z.com", + * IngressPointArn: "arn:aws:ses:us-east-1:123456789012:mailmanager-ingress-point/inp-12345", + * IngressPointAuthConfiguration: { + * SecretArn: "arn:aws:secretsmanager:us-west-2:123456789012:secret:abcde" + * }, + * IngressPointId: "inp-12345", + * IngressPointName: "ingressPointName", + * Status: "ACTIVE", + * Type: "AUTH" + * } + * *\/ + * ``` + * * @public */ export class GetIngressPointCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetMemberOfAddressListCommand.ts b/clients/client-mailmanager/src/commands/GetMemberOfAddressListCommand.ts index 43226cd4a1bd4..b99880db49243 100644 --- a/clients/client-mailmanager/src/commands/GetMemberOfAddressListCommand.ts +++ b/clients/client-mailmanager/src/commands/GetMemberOfAddressListCommand.ts @@ -74,6 +74,7 @@ export interface GetMemberOfAddressListCommandOutput extends GetMemberOfAddressL * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class GetMemberOfAddressListCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetRelayCommand.ts b/clients/client-mailmanager/src/commands/GetRelayCommand.ts index 551618d543070..a84d1ff3d09f0 100644 --- a/clients/client-mailmanager/src/commands/GetRelayCommand.ts +++ b/clients/client-mailmanager/src/commands/GetRelayCommand.ts @@ -71,6 +71,7 @@ export interface GetRelayCommandOutput extends GetRelayResponse, __MetadataBeare * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class GetRelayCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetRuleSetCommand.ts b/clients/client-mailmanager/src/commands/GetRuleSetCommand.ts index 0520482a924d1..440febbf7b29b 100644 --- a/clients/client-mailmanager/src/commands/GetRuleSetCommand.ts +++ b/clients/client-mailmanager/src/commands/GetRuleSetCommand.ts @@ -250,6 +250,7 @@ export interface GetRuleSetCommandOutput extends GetRuleSetResponse, __MetadataB * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class GetRuleSetCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/GetTrafficPolicyCommand.ts b/clients/client-mailmanager/src/commands/GetTrafficPolicyCommand.ts index cb2650dcf46b2..59e0a37142476 100644 --- a/clients/client-mailmanager/src/commands/GetTrafficPolicyCommand.ts +++ b/clients/client-mailmanager/src/commands/GetTrafficPolicyCommand.ts @@ -120,6 +120,45 @@ export interface GetTrafficPolicyCommandOutput extends GetTrafficPolicyResponse, * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * + * @example Get TrafficPolicy + * ```javascript + * // + * const input = { + * TrafficPolicyId: "tp-12345" + * }; + * const command = new GetTrafficPolicyCommand(input); + * const response = await client.send(command); + * /* response is + * { + * DefaultAction: "DENY", + * MaxMessageSizeBytes: 1000, + * PolicyStatements: [ + * { + * Action: "ALLOW", + * Conditions: [ + * { + * StringExpression: { + * Evaluate: { + * Attribute: "RECIPIENT" + * }, + * Operator: "EQUALS", + * Values: [ + * "example@amazon.com", + * "example@gmail.com" + * ] + * } + * } + * ] + * } + * ], + * TrafficPolicyArn: "arn:aws:ses:us-east-1:123456789012:mailmanager-traffic-policy/tp-12345", + * TrafficPolicyId: "tp-12345", + * TrafficPolicyName: "trafficPolicyName" + * } + * *\/ + * ``` + * * @public */ export class GetTrafficPolicyCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/ListAddonInstancesCommand.ts b/clients/client-mailmanager/src/commands/ListAddonInstancesCommand.ts index 8bf6c547367fe..34cb8fafdd43e 100644 --- a/clients/client-mailmanager/src/commands/ListAddonInstancesCommand.ts +++ b/clients/client-mailmanager/src/commands/ListAddonInstancesCommand.ts @@ -68,6 +68,7 @@ export interface ListAddonInstancesCommandOutput extends ListAddonInstancesRespo * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class ListAddonInstancesCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/ListAddonSubscriptionsCommand.ts b/clients/client-mailmanager/src/commands/ListAddonSubscriptionsCommand.ts index 6e01d14de2116..9d00d4de0221c 100644 --- a/clients/client-mailmanager/src/commands/ListAddonSubscriptionsCommand.ts +++ b/clients/client-mailmanager/src/commands/ListAddonSubscriptionsCommand.ts @@ -67,6 +67,7 @@ export interface ListAddonSubscriptionsCommandOutput extends ListAddonSubscripti * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class ListAddonSubscriptionsCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/ListAddressListImportJobsCommand.ts b/clients/client-mailmanager/src/commands/ListAddressListImportJobsCommand.ts index a16f722e58650..d1f82ee0e08dd 100644 --- a/clients/client-mailmanager/src/commands/ListAddressListImportJobsCommand.ts +++ b/clients/client-mailmanager/src/commands/ListAddressListImportJobsCommand.ts @@ -91,6 +91,7 @@ export interface ListAddressListImportJobsCommandOutput extends ListAddressListI * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class ListAddressListImportJobsCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/ListAddressListsCommand.ts b/clients/client-mailmanager/src/commands/ListAddressListsCommand.ts index f76090a991050..5ad645c5b30c4 100644 --- a/clients/client-mailmanager/src/commands/ListAddressListsCommand.ts +++ b/clients/client-mailmanager/src/commands/ListAddressListsCommand.ts @@ -74,6 +74,7 @@ export interface ListAddressListsCommandOutput extends ListAddressListsResponse, * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class ListAddressListsCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/ListArchiveExportsCommand.ts b/clients/client-mailmanager/src/commands/ListArchiveExportsCommand.ts index 6fbe4fb9e04fb..e831283a6f62c 100644 --- a/clients/client-mailmanager/src/commands/ListArchiveExportsCommand.ts +++ b/clients/client-mailmanager/src/commands/ListArchiveExportsCommand.ts @@ -80,6 +80,7 @@ export interface ListArchiveExportsCommandOutput extends ListArchiveExportsRespo * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class ListArchiveExportsCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/ListArchiveSearchesCommand.ts b/clients/client-mailmanager/src/commands/ListArchiveSearchesCommand.ts index d25f62b2f0ec9..4b87321897515 100644 --- a/clients/client-mailmanager/src/commands/ListArchiveSearchesCommand.ts +++ b/clients/client-mailmanager/src/commands/ListArchiveSearchesCommand.ts @@ -80,6 +80,7 @@ export interface ListArchiveSearchesCommandOutput extends ListArchiveSearchesRes * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class ListArchiveSearchesCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/ListArchivesCommand.ts b/clients/client-mailmanager/src/commands/ListArchivesCommand.ts index 7155b854967c1..a75f53af429e8 100644 --- a/clients/client-mailmanager/src/commands/ListArchivesCommand.ts +++ b/clients/client-mailmanager/src/commands/ListArchivesCommand.ts @@ -73,6 +73,7 @@ export interface ListArchivesCommandOutput extends ListArchivesResponse, __Metad * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class ListArchivesCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/ListIngressPointsCommand.ts b/clients/client-mailmanager/src/commands/ListIngressPointsCommand.ts index b85449f4896b4..724376448ac7a 100644 --- a/clients/client-mailmanager/src/commands/ListIngressPointsCommand.ts +++ b/clients/client-mailmanager/src/commands/ListIngressPointsCommand.ts @@ -68,6 +68,74 @@ export interface ListIngressPointsCommandOutput extends ListIngressPointsRespons * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * + * @example List IngressPoints + * ```javascript + * // + * const input = { /* empty *\/ }; + * const command = new ListIngressPointsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * IngressPoints: [ + * { + * ARecord: "abcde123.prod.us-east-1.email-border.ses.aws.a2z.com", + * IngressPointId: "inp-12345", + * IngressPointName: "ingressPointName", + * Status: "ACTIVE", + * Type: "OPEN" + * } + * ] + * } + * *\/ + * ``` + * + * @example List IngressPoints with PageSize + * ```javascript + * // + * const input = { + * PageSize: 10 + * }; + * const command = new ListIngressPointsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * IngressPoints: [ + * { + * ARecord: "abcde123.prod.us-east-1.email-border.ses.aws.a2z.com", + * IngressPointId: "inp-12345", + * IngressPointName: "ingressPointName", + * Status: "ACTIVE", + * Type: "OPEN" + * } + * ] + * } + * *\/ + * ``` + * + * @example List IngressPoints with NextToken + * ```javascript + * // + * const input = { + * NextToken: "nextToken" + * }; + * const command = new ListIngressPointsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * IngressPoints: [ + * { + * ARecord: "abcde123.prod.us-east-1.email-border.ses.aws.a2z.com", + * IngressPointId: "inp-12345", + * IngressPointName: "ingressPointName", + * Status: "ACTIVE", + * Type: "OPEN" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListIngressPointsCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/ListMembersOfAddressListCommand.ts b/clients/client-mailmanager/src/commands/ListMembersOfAddressListCommand.ts index 877e2d83832c5..4915bd67cb05c 100644 --- a/clients/client-mailmanager/src/commands/ListMembersOfAddressListCommand.ts +++ b/clients/client-mailmanager/src/commands/ListMembersOfAddressListCommand.ts @@ -83,6 +83,7 @@ export interface ListMembersOfAddressListCommandOutput extends ListMembersOfAddr * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class ListMembersOfAddressListCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/ListRelaysCommand.ts b/clients/client-mailmanager/src/commands/ListRelaysCommand.ts index 92d9229329aa8..52055eb7f72e0 100644 --- a/clients/client-mailmanager/src/commands/ListRelaysCommand.ts +++ b/clients/client-mailmanager/src/commands/ListRelaysCommand.ts @@ -66,6 +66,7 @@ export interface ListRelaysCommandOutput extends ListRelaysResponse, __MetadataB * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class ListRelaysCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/ListRuleSetsCommand.ts b/clients/client-mailmanager/src/commands/ListRuleSetsCommand.ts index f19d5f74c5ba6..78dc68c7ebfcf 100644 --- a/clients/client-mailmanager/src/commands/ListRuleSetsCommand.ts +++ b/clients/client-mailmanager/src/commands/ListRuleSetsCommand.ts @@ -66,6 +66,7 @@ export interface ListRuleSetsCommandOutput extends ListRuleSetsResponse, __Metad * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class ListRuleSetsCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/ListTagsForResourceCommand.ts b/clients/client-mailmanager/src/commands/ListTagsForResourceCommand.ts index 72261e720e77a..4c263d60028b9 100644 --- a/clients/client-mailmanager/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mailmanager/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/ListTrafficPoliciesCommand.ts b/clients/client-mailmanager/src/commands/ListTrafficPoliciesCommand.ts index b04d10b782b32..4d98edc1dd438 100644 --- a/clients/client-mailmanager/src/commands/ListTrafficPoliciesCommand.ts +++ b/clients/client-mailmanager/src/commands/ListTrafficPoliciesCommand.ts @@ -66,6 +66,68 @@ export interface ListTrafficPoliciesCommandOutput extends ListTrafficPoliciesRes * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * + * @example List TrafficPolicies + * ```javascript + * // + * const input = { /* empty *\/ }; + * const command = new ListTrafficPoliciesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * TrafficPolicies: [ + * { + * DefaultAction: "DENY", + * TrafficPolicyId: "tp-12345", + * TrafficPolicyName: "trafficPolicyName" + * } + * ] + * } + * *\/ + * ``` + * + * @example List TrafficPolicies with PageSize + * ```javascript + * // + * const input = { + * PageSize: 10 + * }; + * const command = new ListTrafficPoliciesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * TrafficPolicies: [ + * { + * DefaultAction: "DENY", + * TrafficPolicyId: "tp-12345", + * TrafficPolicyName: "trafficPolicyName" + * } + * ] + * } + * *\/ + * ``` + * + * @example List TrafficPolicies with NextToken + * ```javascript + * // + * const input = { + * NextToken: "nextToken" + * }; + * const command = new ListTrafficPoliciesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * TrafficPolicies: [ + * { + * DefaultAction: "DENY", + * TrafficPolicyId: "tp-12345", + * TrafficPolicyName: "trafficPolicyName" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListTrafficPoliciesCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/RegisterMemberToAddressListCommand.ts b/clients/client-mailmanager/src/commands/RegisterMemberToAddressListCommand.ts index 950db31f26f9e..539983af57dbc 100644 --- a/clients/client-mailmanager/src/commands/RegisterMemberToAddressListCommand.ts +++ b/clients/client-mailmanager/src/commands/RegisterMemberToAddressListCommand.ts @@ -75,6 +75,7 @@ export interface RegisterMemberToAddressListCommandOutput * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class RegisterMemberToAddressListCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/StartAddressListImportJobCommand.ts b/clients/client-mailmanager/src/commands/StartAddressListImportJobCommand.ts index b88a31d592040..215a7564e4c8c 100644 --- a/clients/client-mailmanager/src/commands/StartAddressListImportJobCommand.ts +++ b/clients/client-mailmanager/src/commands/StartAddressListImportJobCommand.ts @@ -71,6 +71,7 @@ export interface StartAddressListImportJobCommandOutput extends StartAddressList * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class StartAddressListImportJobCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/StartArchiveExportCommand.ts b/clients/client-mailmanager/src/commands/StartArchiveExportCommand.ts index 048948a1d6eea..ae15977fa85fd 100644 --- a/clients/client-mailmanager/src/commands/StartArchiveExportCommand.ts +++ b/clients/client-mailmanager/src/commands/StartArchiveExportCommand.ts @@ -119,6 +119,7 @@ export interface StartArchiveExportCommandOutput extends StartArchiveExportRespo * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class StartArchiveExportCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/StartArchiveSearchCommand.ts b/clients/client-mailmanager/src/commands/StartArchiveSearchCommand.ts index 5eabb1beada64..cd6bcd0509631 100644 --- a/clients/client-mailmanager/src/commands/StartArchiveSearchCommand.ts +++ b/clients/client-mailmanager/src/commands/StartArchiveSearchCommand.ts @@ -116,6 +116,7 @@ export interface StartArchiveSearchCommandOutput extends StartArchiveSearchRespo * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class StartArchiveSearchCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/StopAddressListImportJobCommand.ts b/clients/client-mailmanager/src/commands/StopAddressListImportJobCommand.ts index 08c418cf4234b..46e62feb31e6d 100644 --- a/clients/client-mailmanager/src/commands/StopAddressListImportJobCommand.ts +++ b/clients/client-mailmanager/src/commands/StopAddressListImportJobCommand.ts @@ -68,6 +68,7 @@ export interface StopAddressListImportJobCommandOutput extends StopAddressListIm * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class StopAddressListImportJobCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/StopArchiveExportCommand.ts b/clients/client-mailmanager/src/commands/StopArchiveExportCommand.ts index 821c9c367bf2e..85f678cdf57bb 100644 --- a/clients/client-mailmanager/src/commands/StopArchiveExportCommand.ts +++ b/clients/client-mailmanager/src/commands/StopArchiveExportCommand.ts @@ -62,6 +62,7 @@ export interface StopArchiveExportCommandOutput extends StopArchiveExportRespons * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class StopArchiveExportCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/StopArchiveSearchCommand.ts b/clients/client-mailmanager/src/commands/StopArchiveSearchCommand.ts index 0354e942fe69b..0703033ab0123 100644 --- a/clients/client-mailmanager/src/commands/StopArchiveSearchCommand.ts +++ b/clients/client-mailmanager/src/commands/StopArchiveSearchCommand.ts @@ -62,6 +62,7 @@ export interface StopArchiveSearchCommandOutput extends StopArchiveSearchRespons * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class StopArchiveSearchCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/TagResourceCommand.ts b/clients/client-mailmanager/src/commands/TagResourceCommand.ts index 045ee4146726a..106a77413c915 100644 --- a/clients/client-mailmanager/src/commands/TagResourceCommand.ts +++ b/clients/client-mailmanager/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/UntagResourceCommand.ts b/clients/client-mailmanager/src/commands/UntagResourceCommand.ts index 2e0ca16df6328..9e06cfff18216 100644 --- a/clients/client-mailmanager/src/commands/UntagResourceCommand.ts +++ b/clients/client-mailmanager/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/UpdateArchiveCommand.ts b/clients/client-mailmanager/src/commands/UpdateArchiveCommand.ts index 9a1ae6e9472b7..95ab0afc2e075 100644 --- a/clients/client-mailmanager/src/commands/UpdateArchiveCommand.ts +++ b/clients/client-mailmanager/src/commands/UpdateArchiveCommand.ts @@ -75,6 +75,7 @@ export interface UpdateArchiveCommandOutput extends UpdateArchiveResponse, __Met * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class UpdateArchiveCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/UpdateIngressPointCommand.ts b/clients/client-mailmanager/src/commands/UpdateIngressPointCommand.ts index 6bb8fa202282d..6a4c16698817f 100644 --- a/clients/client-mailmanager/src/commands/UpdateIngressPointCommand.ts +++ b/clients/client-mailmanager/src/commands/UpdateIngressPointCommand.ts @@ -74,6 +74,68 @@ export interface UpdateIngressPointCommandOutput extends UpdateIngressPointRespo * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * + * @example Update Open/Auth IngressPoint with new Name + * ```javascript + * // + * const input = { + * IngressPointId: "inp-12345", + * IngressPointName: "ingressPointNewName" + * }; + * const command = new UpdateIngressPointCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * + * @example Update Open/Auth IngressPoint with new RuleSetId / TrafficPolicyId + * ```javascript + * // + * const input = { + * IngressPointId: "inp-12345", + * RuleSetId: "rs-12345", + * TrafficPolicyId: "tp-12345" + * }; + * const command = new UpdateIngressPointCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * + * @example Update Auth IngressPoint with new SmtpPassword + * ```javascript + * // + * const input = { + * IngressPointConfiguration: { + * SmtpPassword: "newSmtpPassword" + * }, + * IngressPointId: "inp-12345" + * }; + * const command = new UpdateIngressPointCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * + * @example Update Auth IngressPoint with new SecretArn + * ```javascript + * // + * const input = { + * IngressPointConfiguration: { + * SecretArn: "arn:aws:secretsmanager:us-west-2:123456789012:secret:abcde" + * }, + * IngressPointId: "inp-12345" + * }; + * const command = new UpdateIngressPointCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * * @public */ export class UpdateIngressPointCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/UpdateRelayCommand.ts b/clients/client-mailmanager/src/commands/UpdateRelayCommand.ts index 04f7acf0585b4..ffc8a4a396963 100644 --- a/clients/client-mailmanager/src/commands/UpdateRelayCommand.ts +++ b/clients/client-mailmanager/src/commands/UpdateRelayCommand.ts @@ -69,6 +69,7 @@ export interface UpdateRelayCommandOutput extends UpdateRelayResponse, __Metadat * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class UpdateRelayCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/UpdateRuleSetCommand.ts b/clients/client-mailmanager/src/commands/UpdateRuleSetCommand.ts index 949f74d2ebab2..fb18413fd2432 100644 --- a/clients/client-mailmanager/src/commands/UpdateRuleSetCommand.ts +++ b/clients/client-mailmanager/src/commands/UpdateRuleSetCommand.ts @@ -252,6 +252,7 @@ export interface UpdateRuleSetCommandOutput extends UpdateRuleSetResponse, __Met * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * * @public */ export class UpdateRuleSetCommand extends $Command diff --git a/clients/client-mailmanager/src/commands/UpdateTrafficPolicyCommand.ts b/clients/client-mailmanager/src/commands/UpdateTrafficPolicyCommand.ts index ff8518e5906dc..a2714c2b40d84 100644 --- a/clients/client-mailmanager/src/commands/UpdateTrafficPolicyCommand.ts +++ b/clients/client-mailmanager/src/commands/UpdateTrafficPolicyCommand.ts @@ -118,6 +118,67 @@ export interface UpdateTrafficPolicyCommandOutput extends UpdateTrafficPolicyRes * @throws {@link MailManagerServiceException} *

Base exception class for all service exceptions from MailManager service.

* + * + * @example Update TrafficPolicy with new Name + * ```javascript + * // + * const input = { + * TrafficPolicyId: "tp-12345", + * TrafficPolicyName: "trafficPolicyNewName" + * }; + * const command = new UpdateTrafficPolicyCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * + * @example Update TrafficPolicy with new PolicyStatements + * ```javascript + * // + * const input = { + * PolicyStatements: [ + * { + * Action: "ALLOW", + * Conditions: [ + * { + * StringExpression: { + * Evaluate: { + * Attribute: "RECIPIENT" + * }, + * Operator: "EQUALS", + * Values: [ + * "example@amazon.com", + * "example@gmail.com" + * ] + * } + * } + * ] + * } + * ], + * TrafficPolicyId: "tp-12345" + * }; + * const command = new UpdateTrafficPolicyCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * + * @example Update TrafficPolicy with new DefaultAction + * ```javascript + * // + * const input = { + * DefaultAction: "ALLOW", + * TrafficPolicyId: "tp-12345" + * }; + * const command = new UpdateTrafficPolicyCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * * @public */ export class UpdateTrafficPolicyCommand extends $Command diff --git a/clients/client-managedblockchain-query/src/commands/BatchGetTokenBalanceCommand.ts b/clients/client-managedblockchain-query/src/commands/BatchGetTokenBalanceCommand.ts index 3ecbdf73b0c22..65710b6ca92b6 100644 --- a/clients/client-managedblockchain-query/src/commands/BatchGetTokenBalanceCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/BatchGetTokenBalanceCommand.ts @@ -135,6 +135,7 @@ export interface BatchGetTokenBalanceCommandOutput extends BatchGetTokenBalanceO * @throws {@link ManagedBlockchainQueryServiceException} *

Base exception class for all service exceptions from ManagedBlockchainQuery service.

* + * * @public */ export class BatchGetTokenBalanceCommand extends $Command diff --git a/clients/client-managedblockchain-query/src/commands/GetAssetContractCommand.ts b/clients/client-managedblockchain-query/src/commands/GetAssetContractCommand.ts index 625691725294d..818a02e5a414a 100644 --- a/clients/client-managedblockchain-query/src/commands/GetAssetContractCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/GetAssetContractCommand.ts @@ -105,6 +105,7 @@ export interface GetAssetContractCommandOutput extends GetAssetContractOutput, _ * @throws {@link ManagedBlockchainQueryServiceException} *

Base exception class for all service exceptions from ManagedBlockchainQuery service.

* + * * @public */ export class GetAssetContractCommand extends $Command diff --git a/clients/client-managedblockchain-query/src/commands/GetTokenBalanceCommand.ts b/clients/client-managedblockchain-query/src/commands/GetTokenBalanceCommand.ts index 5c72263535313..2f7985353f529 100644 --- a/clients/client-managedblockchain-query/src/commands/GetTokenBalanceCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/GetTokenBalanceCommand.ts @@ -108,6 +108,7 @@ export interface GetTokenBalanceCommandOutput extends GetTokenBalanceOutput, __M * @throws {@link ManagedBlockchainQueryServiceException} *

Base exception class for all service exceptions from ManagedBlockchainQuery service.

* + * * @public */ export class GetTokenBalanceCommand extends $Command diff --git a/clients/client-managedblockchain-query/src/commands/GetTransactionCommand.ts b/clients/client-managedblockchain-query/src/commands/GetTransactionCommand.ts index ce10fcadf0cfa..a7b9819a09628 100644 --- a/clients/client-managedblockchain-query/src/commands/GetTransactionCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/GetTransactionCommand.ts @@ -109,6 +109,7 @@ export interface GetTransactionCommandOutput extends GetTransactionOutput, __Met * @throws {@link ManagedBlockchainQueryServiceException} *

Base exception class for all service exceptions from ManagedBlockchainQuery service.

* + * * @public */ export class GetTransactionCommand extends $Command diff --git a/clients/client-managedblockchain-query/src/commands/ListAssetContractsCommand.ts b/clients/client-managedblockchain-query/src/commands/ListAssetContractsCommand.ts index 11bec6aca869c..ae0b15a708517 100644 --- a/clients/client-managedblockchain-query/src/commands/ListAssetContractsCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/ListAssetContractsCommand.ts @@ -96,6 +96,7 @@ export interface ListAssetContractsCommandOutput extends ListAssetContractsOutpu * @throws {@link ManagedBlockchainQueryServiceException} *

Base exception class for all service exceptions from ManagedBlockchainQuery service.

* + * * @public */ export class ListAssetContractsCommand extends $Command diff --git a/clients/client-managedblockchain-query/src/commands/ListFilteredTransactionEventsCommand.ts b/clients/client-managedblockchain-query/src/commands/ListFilteredTransactionEventsCommand.ts index 095a048762ed4..525ffd26972dc 100644 --- a/clients/client-managedblockchain-query/src/commands/ListFilteredTransactionEventsCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/ListFilteredTransactionEventsCommand.ts @@ -134,6 +134,7 @@ export interface ListFilteredTransactionEventsCommandOutput * @throws {@link ManagedBlockchainQueryServiceException} *

Base exception class for all service exceptions from ManagedBlockchainQuery service.

* + * * @public */ export class ListFilteredTransactionEventsCommand extends $Command diff --git a/clients/client-managedblockchain-query/src/commands/ListTokenBalancesCommand.ts b/clients/client-managedblockchain-query/src/commands/ListTokenBalancesCommand.ts index 7bfdb3cf255b7..8e7a6d4ca3593 100644 --- a/clients/client-managedblockchain-query/src/commands/ListTokenBalancesCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/ListTokenBalancesCommand.ts @@ -121,6 +121,7 @@ export interface ListTokenBalancesCommandOutput extends ListTokenBalancesOutput, * @throws {@link ManagedBlockchainQueryServiceException} *

Base exception class for all service exceptions from ManagedBlockchainQuery service.

* + * * @public */ export class ListTokenBalancesCommand extends $Command diff --git a/clients/client-managedblockchain-query/src/commands/ListTransactionEventsCommand.ts b/clients/client-managedblockchain-query/src/commands/ListTransactionEventsCommand.ts index 7bfdc20f07741..a7ed14674766d 100644 --- a/clients/client-managedblockchain-query/src/commands/ListTransactionEventsCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/ListTransactionEventsCommand.ts @@ -109,6 +109,7 @@ export interface ListTransactionEventsCommandOutput extends ListTransactionEvent * @throws {@link ManagedBlockchainQueryServiceException} *

Base exception class for all service exceptions from ManagedBlockchainQuery service.

* + * * @public */ export class ListTransactionEventsCommand extends $Command diff --git a/clients/client-managedblockchain-query/src/commands/ListTransactionsCommand.ts b/clients/client-managedblockchain-query/src/commands/ListTransactionsCommand.ts index 392f3d01a4185..b930ce6c4b188 100644 --- a/clients/client-managedblockchain-query/src/commands/ListTransactionsCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/ListTransactionsCommand.ts @@ -104,6 +104,7 @@ export interface ListTransactionsCommandOutput extends ListTransactionsOutput, _ * @throws {@link ManagedBlockchainQueryServiceException} *

Base exception class for all service exceptions from ManagedBlockchainQuery service.

* + * * @public */ export class ListTransactionsCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/CreateAccessorCommand.ts b/clients/client-managedblockchain/src/commands/CreateAccessorCommand.ts index b8ce8cc595ac9..2fdf77c23804a 100644 --- a/clients/client-managedblockchain/src/commands/CreateAccessorCommand.ts +++ b/clients/client-managedblockchain/src/commands/CreateAccessorCommand.ts @@ -92,6 +92,7 @@ export interface CreateAccessorCommandOutput extends CreateAccessorOutput, __Met * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class CreateAccessorCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/CreateMemberCommand.ts b/clients/client-managedblockchain/src/commands/CreateMemberCommand.ts index c6ba3e15d233b..0511f351d3aab 100644 --- a/clients/client-managedblockchain/src/commands/CreateMemberCommand.ts +++ b/clients/client-managedblockchain/src/commands/CreateMemberCommand.ts @@ -116,6 +116,7 @@ export interface CreateMemberCommandOutput extends CreateMemberOutput, __Metadat * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class CreateMemberCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/CreateNetworkCommand.ts b/clients/client-managedblockchain/src/commands/CreateNetworkCommand.ts index 416d5582114d2..860eceb24b69e 100644 --- a/clients/client-managedblockchain/src/commands/CreateNetworkCommand.ts +++ b/clients/client-managedblockchain/src/commands/CreateNetworkCommand.ts @@ -128,6 +128,7 @@ export interface CreateNetworkCommandOutput extends CreateNetworkOutput, __Metad * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class CreateNetworkCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/CreateNodeCommand.ts b/clients/client-managedblockchain/src/commands/CreateNodeCommand.ts index 70eb82540b6be..97959ee473b4a 100644 --- a/clients/client-managedblockchain/src/commands/CreateNodeCommand.ts +++ b/clients/client-managedblockchain/src/commands/CreateNodeCommand.ts @@ -115,6 +115,7 @@ export interface CreateNodeCommandOutput extends CreateNodeOutput, __MetadataBea * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class CreateNodeCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/CreateProposalCommand.ts b/clients/client-managedblockchain/src/commands/CreateProposalCommand.ts index 333f8a8189b2a..58e735c333939 100644 --- a/clients/client-managedblockchain/src/commands/CreateProposalCommand.ts +++ b/clients/client-managedblockchain/src/commands/CreateProposalCommand.ts @@ -102,6 +102,7 @@ export interface CreateProposalCommandOutput extends CreateProposalOutput, __Met * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class CreateProposalCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/DeleteAccessorCommand.ts b/clients/client-managedblockchain/src/commands/DeleteAccessorCommand.ts index 25162fd306bac..0953dc7dc810d 100644 --- a/clients/client-managedblockchain/src/commands/DeleteAccessorCommand.ts +++ b/clients/client-managedblockchain/src/commands/DeleteAccessorCommand.ts @@ -81,6 +81,7 @@ export interface DeleteAccessorCommandOutput extends DeleteAccessorOutput, __Met * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class DeleteAccessorCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/DeleteMemberCommand.ts b/clients/client-managedblockchain/src/commands/DeleteMemberCommand.ts index ffdb4ed6d03f5..4c14df653e905 100644 --- a/clients/client-managedblockchain/src/commands/DeleteMemberCommand.ts +++ b/clients/client-managedblockchain/src/commands/DeleteMemberCommand.ts @@ -80,6 +80,7 @@ export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __Metadat * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class DeleteMemberCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/DeleteNodeCommand.ts b/clients/client-managedblockchain/src/commands/DeleteNodeCommand.ts index 5a541e1d16d20..7e67d173e0fef 100644 --- a/clients/client-managedblockchain/src/commands/DeleteNodeCommand.ts +++ b/clients/client-managedblockchain/src/commands/DeleteNodeCommand.ts @@ -81,6 +81,7 @@ export interface DeleteNodeCommandOutput extends DeleteNodeOutput, __MetadataBea * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class DeleteNodeCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/GetAccessorCommand.ts b/clients/client-managedblockchain/src/commands/GetAccessorCommand.ts index 12bf6119583fa..6f3ceb646a278 100644 --- a/clients/client-managedblockchain/src/commands/GetAccessorCommand.ts +++ b/clients/client-managedblockchain/src/commands/GetAccessorCommand.ts @@ -89,6 +89,7 @@ export interface GetAccessorCommandOutput extends GetAccessorOutput, __MetadataB * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class GetAccessorCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/GetMemberCommand.ts b/clients/client-managedblockchain/src/commands/GetMemberCommand.ts index aaf70d4008f34..d4695b982c26b 100644 --- a/clients/client-managedblockchain/src/commands/GetMemberCommand.ts +++ b/clients/client-managedblockchain/src/commands/GetMemberCommand.ts @@ -106,6 +106,7 @@ export interface GetMemberCommandOutput extends GetMemberOutput, __MetadataBeare * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class GetMemberCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/GetNetworkCommand.ts b/clients/client-managedblockchain/src/commands/GetNetworkCommand.ts index b967eccddf810..b3f11549b8cf1 100644 --- a/clients/client-managedblockchain/src/commands/GetNetworkCommand.ts +++ b/clients/client-managedblockchain/src/commands/GetNetworkCommand.ts @@ -107,6 +107,7 @@ export interface GetNetworkCommandOutput extends GetNetworkOutput, __MetadataBea * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class GetNetworkCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/GetNodeCommand.ts b/clients/client-managedblockchain/src/commands/GetNodeCommand.ts index a93d9bbbc49f2..9b06505c23bf9 100644 --- a/clients/client-managedblockchain/src/commands/GetNodeCommand.ts +++ b/clients/client-managedblockchain/src/commands/GetNodeCommand.ts @@ -118,6 +118,7 @@ export interface GetNodeCommandOutput extends GetNodeOutput, __MetadataBearer {} * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class GetNodeCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/GetProposalCommand.ts b/clients/client-managedblockchain/src/commands/GetProposalCommand.ts index 4af5b46968e4f..b1feb64e8fbed 100644 --- a/clients/client-managedblockchain/src/commands/GetProposalCommand.ts +++ b/clients/client-managedblockchain/src/commands/GetProposalCommand.ts @@ -107,6 +107,7 @@ export interface GetProposalCommandOutput extends GetProposalOutput, __MetadataB * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class GetProposalCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/ListAccessorsCommand.ts b/clients/client-managedblockchain/src/commands/ListAccessorsCommand.ts index 028303578f97e..f25fb57234901 100644 --- a/clients/client-managedblockchain/src/commands/ListAccessorsCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListAccessorsCommand.ts @@ -87,6 +87,7 @@ export interface ListAccessorsCommandOutput extends ListAccessorsOutput, __Metad * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class ListAccessorsCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/ListInvitationsCommand.ts b/clients/client-managedblockchain/src/commands/ListInvitationsCommand.ts index 36b8e1ed321be..7766805ec3514 100644 --- a/clients/client-managedblockchain/src/commands/ListInvitationsCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListInvitationsCommand.ts @@ -102,6 +102,7 @@ export interface ListInvitationsCommandOutput extends ListInvitationsOutput, __M * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class ListInvitationsCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/ListMembersCommand.ts b/clients/client-managedblockchain/src/commands/ListMembersCommand.ts index 79a5bd12dcb21..69561bf9831cf 100644 --- a/clients/client-managedblockchain/src/commands/ListMembersCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListMembersCommand.ts @@ -91,6 +91,7 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class ListMembersCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/ListNetworksCommand.ts b/clients/client-managedblockchain/src/commands/ListNetworksCommand.ts index 15a2bfb106b0e..5113eb299c31f 100644 --- a/clients/client-managedblockchain/src/commands/ListNetworksCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListNetworksCommand.ts @@ -91,6 +91,7 @@ export interface ListNetworksCommandOutput extends ListNetworksOutput, __Metadat * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class ListNetworksCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/ListNodesCommand.ts b/clients/client-managedblockchain/src/commands/ListNodesCommand.ts index 1243c7f4f651b..43655eb2d9801 100644 --- a/clients/client-managedblockchain/src/commands/ListNodesCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListNodesCommand.ts @@ -89,6 +89,7 @@ export interface ListNodesCommandOutput extends ListNodesOutput, __MetadataBeare * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class ListNodesCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/ListProposalVotesCommand.ts b/clients/client-managedblockchain/src/commands/ListProposalVotesCommand.ts index ebe5fd405aec1..d2e2a20d4f454 100644 --- a/clients/client-managedblockchain/src/commands/ListProposalVotesCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListProposalVotesCommand.ts @@ -85,6 +85,7 @@ export interface ListProposalVotesCommandOutput extends ListProposalVotesOutput, * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class ListProposalVotesCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/ListProposalsCommand.ts b/clients/client-managedblockchain/src/commands/ListProposalsCommand.ts index 6f5e08b17e93c..d809082086ca4 100644 --- a/clients/client-managedblockchain/src/commands/ListProposalsCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListProposalsCommand.ts @@ -92,6 +92,7 @@ export interface ListProposalsCommandOutput extends ListProposalsOutput, __Metad * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class ListProposalsCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/ListTagsForResourceCommand.ts b/clients/client-managedblockchain/src/commands/ListTagsForResourceCommand.ts index 29bdb5737d9ea..f3dc95e67b96b 100644 --- a/clients/client-managedblockchain/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/RejectInvitationCommand.ts b/clients/client-managedblockchain/src/commands/RejectInvitationCommand.ts index 309d382816628..e99456ce09e44 100644 --- a/clients/client-managedblockchain/src/commands/RejectInvitationCommand.ts +++ b/clients/client-managedblockchain/src/commands/RejectInvitationCommand.ts @@ -79,6 +79,7 @@ export interface RejectInvitationCommandOutput extends RejectInvitationOutput, _ * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class RejectInvitationCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/TagResourceCommand.ts b/clients/client-managedblockchain/src/commands/TagResourceCommand.ts index ebf56e01823da..a859963f33f0d 100644 --- a/clients/client-managedblockchain/src/commands/TagResourceCommand.ts +++ b/clients/client-managedblockchain/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/UntagResourceCommand.ts b/clients/client-managedblockchain/src/commands/UntagResourceCommand.ts index e784a07820a13..1fd88c625a238 100644 --- a/clients/client-managedblockchain/src/commands/UntagResourceCommand.ts +++ b/clients/client-managedblockchain/src/commands/UntagResourceCommand.ts @@ -73,6 +73,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/UpdateMemberCommand.ts b/clients/client-managedblockchain/src/commands/UpdateMemberCommand.ts index a7876486115cd..d39a82540fd44 100644 --- a/clients/client-managedblockchain/src/commands/UpdateMemberCommand.ts +++ b/clients/client-managedblockchain/src/commands/UpdateMemberCommand.ts @@ -86,6 +86,7 @@ export interface UpdateMemberCommandOutput extends UpdateMemberOutput, __Metadat * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class UpdateMemberCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/UpdateNodeCommand.ts b/clients/client-managedblockchain/src/commands/UpdateNodeCommand.ts index fbefeea2956a8..baa8e78102ae7 100644 --- a/clients/client-managedblockchain/src/commands/UpdateNodeCommand.ts +++ b/clients/client-managedblockchain/src/commands/UpdateNodeCommand.ts @@ -92,6 +92,7 @@ export interface UpdateNodeCommandOutput extends UpdateNodeOutput, __MetadataBea * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class UpdateNodeCommand extends $Command diff --git a/clients/client-managedblockchain/src/commands/VoteOnProposalCommand.ts b/clients/client-managedblockchain/src/commands/VoteOnProposalCommand.ts index ba0f8773da7e5..eb119de968522 100644 --- a/clients/client-managedblockchain/src/commands/VoteOnProposalCommand.ts +++ b/clients/client-managedblockchain/src/commands/VoteOnProposalCommand.ts @@ -82,6 +82,7 @@ export interface VoteOnProposalCommandOutput extends VoteOnProposalOutput, __Met * @throws {@link ManagedBlockchainServiceException} *

Base exception class for all service exceptions from ManagedBlockchain service.

* + * * @public */ export class VoteOnProposalCommand extends $Command diff --git a/clients/client-marketplace-agreement/src/commands/DescribeAgreementCommand.ts b/clients/client-marketplace-agreement/src/commands/DescribeAgreementCommand.ts index 229323d716941..9bcbe61a6e5d6 100644 --- a/clients/client-marketplace-agreement/src/commands/DescribeAgreementCommand.ts +++ b/clients/client-marketplace-agreement/src/commands/DescribeAgreementCommand.ts @@ -98,6 +98,7 @@ export interface DescribeAgreementCommandOutput extends DescribeAgreementOutput, * @throws {@link MarketplaceAgreementServiceException} *

Base exception class for all service exceptions from MarketplaceAgreement service.

* + * * @public */ export class DescribeAgreementCommand extends $Command diff --git a/clients/client-marketplace-agreement/src/commands/GetAgreementTermsCommand.ts b/clients/client-marketplace-agreement/src/commands/GetAgreementTermsCommand.ts index c4197e15467d4..d9df1907227c3 100644 --- a/clients/client-marketplace-agreement/src/commands/GetAgreementTermsCommand.ts +++ b/clients/client-marketplace-agreement/src/commands/GetAgreementTermsCommand.ts @@ -221,6 +221,7 @@ export interface GetAgreementTermsCommandOutput extends GetAgreementTermsOutput, * @throws {@link MarketplaceAgreementServiceException} *

Base exception class for all service exceptions from MarketplaceAgreement service.

* + * * @public */ export class GetAgreementTermsCommand extends $Command diff --git a/clients/client-marketplace-agreement/src/commands/SearchAgreementsCommand.ts b/clients/client-marketplace-agreement/src/commands/SearchAgreementsCommand.ts index 1f7e293ae88da..97a24d4a5a24e 100644 --- a/clients/client-marketplace-agreement/src/commands/SearchAgreementsCommand.ts +++ b/clients/client-marketplace-agreement/src/commands/SearchAgreementsCommand.ts @@ -199,6 +199,7 @@ export interface SearchAgreementsCommandOutput extends SearchAgreementsOutput, _ * @throws {@link MarketplaceAgreementServiceException} *

Base exception class for all service exceptions from MarketplaceAgreement service.

* + * * @public */ export class SearchAgreementsCommand extends $Command diff --git a/clients/client-marketplace-catalog/src/commands/BatchDescribeEntitiesCommand.ts b/clients/client-marketplace-catalog/src/commands/BatchDescribeEntitiesCommand.ts index dbb5325cc7a76..1c369a1022406 100644 --- a/clients/client-marketplace-catalog/src/commands/BatchDescribeEntitiesCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/BatchDescribeEntitiesCommand.ts @@ -94,6 +94,7 @@ export interface BatchDescribeEntitiesCommandOutput extends BatchDescribeEntitie * @throws {@link MarketplaceCatalogServiceException} *

Base exception class for all service exceptions from MarketplaceCatalog service.

* + * * @public */ export class BatchDescribeEntitiesCommand extends $Command diff --git a/clients/client-marketplace-catalog/src/commands/CancelChangeSetCommand.ts b/clients/client-marketplace-catalog/src/commands/CancelChangeSetCommand.ts index afc792e01b585..40569a8340891 100644 --- a/clients/client-marketplace-catalog/src/commands/CancelChangeSetCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/CancelChangeSetCommand.ts @@ -87,6 +87,7 @@ export interface CancelChangeSetCommandOutput extends CancelChangeSetResponse, _ * @throws {@link MarketplaceCatalogServiceException} *

Base exception class for all service exceptions from MarketplaceCatalog service.

* + * * @public */ export class CancelChangeSetCommand extends $Command diff --git a/clients/client-marketplace-catalog/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-marketplace-catalog/src/commands/DeleteResourcePolicyCommand.ts index 2fbdcb105bf07..83b758f315612 100644 --- a/clients/client-marketplace-catalog/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/DeleteResourcePolicyCommand.ts @@ -78,6 +78,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link MarketplaceCatalogServiceException} *

Base exception class for all service exceptions from MarketplaceCatalog service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-marketplace-catalog/src/commands/DescribeChangeSetCommand.ts b/clients/client-marketplace-catalog/src/commands/DescribeChangeSetCommand.ts index 64d25ddaa74e0..ce885d851c6c8 100644 --- a/clients/client-marketplace-catalog/src/commands/DescribeChangeSetCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/DescribeChangeSetCommand.ts @@ -106,6 +106,7 @@ export interface DescribeChangeSetCommandOutput extends DescribeChangeSetRespons * @throws {@link MarketplaceCatalogServiceException} *

Base exception class for all service exceptions from MarketplaceCatalog service.

* + * * @public */ export class DescribeChangeSetCommand extends $Command diff --git a/clients/client-marketplace-catalog/src/commands/DescribeEntityCommand.ts b/clients/client-marketplace-catalog/src/commands/DescribeEntityCommand.ts index ad7bb7c2ceac6..92879cf2ea15c 100644 --- a/clients/client-marketplace-catalog/src/commands/DescribeEntityCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/DescribeEntityCommand.ts @@ -88,6 +88,7 @@ export interface DescribeEntityCommandOutput extends DescribeEntityResponse, __M * @throws {@link MarketplaceCatalogServiceException} *

Base exception class for all service exceptions from MarketplaceCatalog service.

* + * * @public */ export class DescribeEntityCommand extends $Command diff --git a/clients/client-marketplace-catalog/src/commands/GetResourcePolicyCommand.ts b/clients/client-marketplace-catalog/src/commands/GetResourcePolicyCommand.ts index 750f493018872..c7330e050cf3f 100644 --- a/clients/client-marketplace-catalog/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/GetResourcePolicyCommand.ts @@ -80,6 +80,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons * @throws {@link MarketplaceCatalogServiceException} *

Base exception class for all service exceptions from MarketplaceCatalog service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-marketplace-catalog/src/commands/ListChangeSetsCommand.ts b/clients/client-marketplace-catalog/src/commands/ListChangeSetsCommand.ts index 82e1e5e1f5292..576d2c3a2d89c 100644 --- a/clients/client-marketplace-catalog/src/commands/ListChangeSetsCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/ListChangeSetsCommand.ts @@ -108,6 +108,7 @@ export interface ListChangeSetsCommandOutput extends ListChangeSetsResponse, __M * @throws {@link MarketplaceCatalogServiceException} *

Base exception class for all service exceptions from MarketplaceCatalog service.

* + * * @public */ export class ListChangeSetsCommand extends $Command diff --git a/clients/client-marketplace-catalog/src/commands/ListEntitiesCommand.ts b/clients/client-marketplace-catalog/src/commands/ListEntitiesCommand.ts index f10888a9981d7..2eb21f41ce512 100644 --- a/clients/client-marketplace-catalog/src/commands/ListEntitiesCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/ListEntitiesCommand.ts @@ -409,6 +409,7 @@ export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __Metad * @throws {@link MarketplaceCatalogServiceException} *

Base exception class for all service exceptions from MarketplaceCatalog service.

* + * * @public */ export class ListEntitiesCommand extends $Command diff --git a/clients/client-marketplace-catalog/src/commands/ListTagsForResourceCommand.ts b/clients/client-marketplace-catalog/src/commands/ListTagsForResourceCommand.ts index 2acc9e1f312c6..8f3d23f017538 100644 --- a/clients/client-marketplace-catalog/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/ListTagsForResourceCommand.ts @@ -85,6 +85,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link MarketplaceCatalogServiceException} *

Base exception class for all service exceptions from MarketplaceCatalog service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-marketplace-catalog/src/commands/PutResourcePolicyCommand.ts b/clients/client-marketplace-catalog/src/commands/PutResourcePolicyCommand.ts index 4a85fadf63c72..dfca7b1ccdf27 100644 --- a/clients/client-marketplace-catalog/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/PutResourcePolicyCommand.ts @@ -79,6 +79,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link MarketplaceCatalogServiceException} *

Base exception class for all service exceptions from MarketplaceCatalog service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-marketplace-catalog/src/commands/StartChangeSetCommand.ts b/clients/client-marketplace-catalog/src/commands/StartChangeSetCommand.ts index 95ea568d938bd..1a9bb64d16958 100644 --- a/clients/client-marketplace-catalog/src/commands/StartChangeSetCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/StartChangeSetCommand.ts @@ -125,6 +125,7 @@ export interface StartChangeSetCommandOutput extends StartChangeSetResponse, __M * @throws {@link MarketplaceCatalogServiceException} *

Base exception class for all service exceptions from MarketplaceCatalog service.

* + * * @public */ export class StartChangeSetCommand extends $Command diff --git a/clients/client-marketplace-catalog/src/commands/TagResourceCommand.ts b/clients/client-marketplace-catalog/src/commands/TagResourceCommand.ts index b7578df3117fb..1e9efce5bb742 100644 --- a/clients/client-marketplace-catalog/src/commands/TagResourceCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/TagResourceCommand.ts @@ -83,6 +83,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link MarketplaceCatalogServiceException} *

Base exception class for all service exceptions from MarketplaceCatalog service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-marketplace-catalog/src/commands/UntagResourceCommand.ts b/clients/client-marketplace-catalog/src/commands/UntagResourceCommand.ts index f2c723dcfbf3f..fb9293feac0e9 100644 --- a/clients/client-marketplace-catalog/src/commands/UntagResourceCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/UntagResourceCommand.ts @@ -80,6 +80,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link MarketplaceCatalogServiceException} *

Base exception class for all service exceptions from MarketplaceCatalog service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-marketplace-commerce-analytics/src/commands/GenerateDataSetCommand.ts b/clients/client-marketplace-commerce-analytics/src/commands/GenerateDataSetCommand.ts index 945f11201b97c..7467c75e3a7e5 100644 --- a/clients/client-marketplace-commerce-analytics/src/commands/GenerateDataSetCommand.ts +++ b/clients/client-marketplace-commerce-analytics/src/commands/GenerateDataSetCommand.ts @@ -77,6 +77,7 @@ export interface GenerateDataSetCommandOutput extends GenerateDataSetResult, __M * @throws {@link MarketplaceCommerceAnalyticsServiceException} *

Base exception class for all service exceptions from MarketplaceCommerceAnalytics service.

* + * * @public */ export class GenerateDataSetCommand extends $Command diff --git a/clients/client-marketplace-commerce-analytics/src/commands/StartSupportDataExportCommand.ts b/clients/client-marketplace-commerce-analytics/src/commands/StartSupportDataExportCommand.ts index 1458b3d98aa65..466306605fc40 100644 --- a/clients/client-marketplace-commerce-analytics/src/commands/StartSupportDataExportCommand.ts +++ b/clients/client-marketplace-commerce-analytics/src/commands/StartSupportDataExportCommand.ts @@ -79,6 +79,7 @@ export interface StartSupportDataExportCommandOutput extends StartSupportDataExp * @throws {@link MarketplaceCommerceAnalyticsServiceException} *

Base exception class for all service exceptions from MarketplaceCommerceAnalytics service.

* + * * @public */ export class StartSupportDataExportCommand extends $Command diff --git a/clients/client-marketplace-deployment/src/commands/ListTagsForResourceCommand.ts b/clients/client-marketplace-deployment/src/commands/ListTagsForResourceCommand.ts index 6f5658b4b8339..33b12236b2ae8 100644 --- a/clients/client-marketplace-deployment/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-marketplace-deployment/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,25 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link MarketplaceDeploymentServiceException} *

Base exception class for all service exceptions from MarketplaceDeployment service.

* + * + * @example Listing tags for a deployment parameter + * ```javascript + * // The following example demonstrates listing the tags for a deployment parameter. If no tags are present, the API will return an empty map. + * const input = { + * resourceArn: "arn:aws:aws-marketplace:us-east-1:123456789012:DeploymentParameter:catalogs/AWSMarketplace/products/product-1234/dp-uniqueidentifier" + * }; + * const command = new ListTagsForResourceCommand(input); + * const response = await client.send(command); + * /* response is + * { + * tags: { + * FooKey: "BarValue", + * HelloKey: "WorldValue" + * } + * } + * *\/ + * ``` + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-marketplace-deployment/src/commands/PutDeploymentParameterCommand.ts b/clients/client-marketplace-deployment/src/commands/PutDeploymentParameterCommand.ts index cb225fa438da4..07037d7ff0698 100644 --- a/clients/client-marketplace-deployment/src/commands/PutDeploymentParameterCommand.ts +++ b/clients/client-marketplace-deployment/src/commands/PutDeploymentParameterCommand.ts @@ -100,6 +100,65 @@ export interface PutDeploymentParameterCommandOutput extends PutDeploymentParame * @throws {@link MarketplaceDeploymentServiceException} *

Base exception class for all service exceptions from MarketplaceDeployment service.

* + * + * @example Creating or updating a deployment parameter + * ```javascript + * // The following example demonstrates creating or updating a deployment parameter named "ExampleDeploymentParameterName". The secret will be saved in the Buyer account associated with the passed `agreementId`, with the value set to the provided `secretString`. Note that the deployment parameter `secretString` can be passed in JSON string format, allowing [json-key specific CloudFormation dynamic references](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/dynamic-references.html) from a single deployment parameter. + * const input = { + * agreementId: "agmt-1234", + * catalog: "AWSMarketplace", + * clientToken: "some-unique-uuid-between-32-and-64-characters", + * deploymentParameter: { + * name: "ExampleDeploymentParameterName", + * secretString: `{"apiKey": "helloWorldApiKey", "entityId": "fooBarEntityId"}` + * }, + * productId: "product-1234" + * }; + * const command = new PutDeploymentParameterCommand(input); + * const response = await client.send(command); + * /* response is + * { + * agreementId: "agmt-1234", + * deploymentParameterId: "dp-uniqueidentifier", + * resourceArn: "arn:aws:aws-marketplace:us-east-1:123456789012:DeploymentParameter:catalogs/AWSMarketplace/products/product-1234/dp-uniqueidentifier", + * tags: { /* empty *\/ } + * } + * *\/ + * ``` + * + * @example Creating a simple deployment parameter, with tags and expiration. + * ```javascript + * // The following example demonstrates creating a simple deployment parameter named "ExampleSimpleDeploymentParameterName". If multiple secrets are not required, the `secretString` may be provided in String format. The provided tags are only applied on resource creation and will be ignored if the operation results in an update. The API response includes the tags present on the resource after completion of the operation. + * const input = { + * agreementId: "agmt-1234", + * catalog: "AWSMarketplace", + * clientToken: "some-unique-uuid-between-32-and-64-characters", + * deploymentParameter: { + * name: "ExampleSimpleDeploymentParameterName", + * secretString: "MySimpleValue" + * }, + * expirationDate: "2099-11-18T08:52:46.397Z", + * productId: "product-1234", + * tags: { + * FooKey: "BarValue", + * HelloKey: "WorldValue" + * } + * }; + * const command = new PutDeploymentParameterCommand(input); + * const response = await client.send(command); + * /* response is + * { + * agreementId: "agmt-1234", + * deploymentParameterId: "dp-uniqueidentifier", + * resourceArn: "arn:aws:aws-marketplace:us-east-1:123456789012:DeploymentParameter:catalogs/AWSMarketplace/products/product-1234/dp-uniqueidentifier", + * tags: { + * FooKey: "BarValue", + * HelloKey: "WorldValue" + * } + * } + * *\/ + * ``` + * * @public */ export class PutDeploymentParameterCommand extends $Command diff --git a/clients/client-marketplace-deployment/src/commands/TagResourceCommand.ts b/clients/client-marketplace-deployment/src/commands/TagResourceCommand.ts index c08f1ad749617..9f963a8ed35f9 100644 --- a/clients/client-marketplace-deployment/src/commands/TagResourceCommand.ts +++ b/clients/client-marketplace-deployment/src/commands/TagResourceCommand.ts @@ -78,6 +78,24 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link MarketplaceDeploymentServiceException} *

Base exception class for all service exceptions from MarketplaceDeployment service.

* + * + * @example Adding tags to a deployment parameter + * ```javascript + * // The following example demonstrates adding two tags to a deployment parameter. There is no output from this API. + * const input = { + * resourceArn: "arn:aws:aws-marketplace:us-east-1:123456789012:DeploymentParameter:catalogs/AWSMarketplace/products/product-1234/dp-uniqueidentifier", + * tags: { + * FooKey: "BarValue", + * HelloKey: "WorldValue" + * } + * }; + * const command = new TagResourceCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-marketplace-deployment/src/commands/UntagResourceCommand.ts b/clients/client-marketplace-deployment/src/commands/UntagResourceCommand.ts index dde995bdd9997..e68d7075eeb00 100644 --- a/clients/client-marketplace-deployment/src/commands/UntagResourceCommand.ts +++ b/clients/client-marketplace-deployment/src/commands/UntagResourceCommand.ts @@ -78,6 +78,24 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link MarketplaceDeploymentServiceException} *

Base exception class for all service exceptions from MarketplaceDeployment service.

* + * + * @example Removing tags from a deployment parameter + * ```javascript + * // The following example demonstrates removing two tags from a deployment parameter. For each, both the tag and the associated value are removed. There is no output from this API. + * const input = { + * resourceArn: "arn:aws:aws-marketplace:us-east-1:123456789012:DeploymentParameter:catalogs/AWSMarketplace/products/product-1234/dp-uniqueidentifier", + * tagKeys: [ + * "FooKey", + * "HelloKey" + * ] + * }; + * const command = new UntagResourceCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-marketplace-entitlement-service/src/commands/GetEntitlementsCommand.ts b/clients/client-marketplace-entitlement-service/src/commands/GetEntitlementsCommand.ts index 3a95964367f8c..08fb9d5d931c9 100644 --- a/clients/client-marketplace-entitlement-service/src/commands/GetEntitlementsCommand.ts +++ b/clients/client-marketplace-entitlement-service/src/commands/GetEntitlementsCommand.ts @@ -98,6 +98,7 @@ export interface GetEntitlementsCommandOutput extends GetEntitlementsResult, __M * @throws {@link MarketplaceEntitlementServiceServiceException} *

Base exception class for all service exceptions from MarketplaceEntitlementService service.

* + * * @public */ export class GetEntitlementsCommand extends $Command diff --git a/clients/client-marketplace-metering/src/commands/BatchMeterUsageCommand.ts b/clients/client-marketplace-metering/src/commands/BatchMeterUsageCommand.ts index 6e59919d4d24f..38d601f7add83 100644 --- a/clients/client-marketplace-metering/src/commands/BatchMeterUsageCommand.ts +++ b/clients/client-marketplace-metering/src/commands/BatchMeterUsageCommand.ts @@ -189,6 +189,7 @@ export interface BatchMeterUsageCommandOutput extends BatchMeterUsageResult, __M * @throws {@link MarketplaceMeteringServiceException} *

Base exception class for all service exceptions from MarketplaceMetering service.

* + * * @public */ export class BatchMeterUsageCommand extends $Command diff --git a/clients/client-marketplace-metering/src/commands/MeterUsageCommand.ts b/clients/client-marketplace-metering/src/commands/MeterUsageCommand.ts index 6fbaf1c8558b7..b9e25a54eb6ef 100644 --- a/clients/client-marketplace-metering/src/commands/MeterUsageCommand.ts +++ b/clients/client-marketplace-metering/src/commands/MeterUsageCommand.ts @@ -129,6 +129,7 @@ export interface MeterUsageCommandOutput extends MeterUsageResult, __MetadataBea * @throws {@link MarketplaceMeteringServiceException} *

Base exception class for all service exceptions from MarketplaceMetering service.

* + * * @public */ export class MeterUsageCommand extends $Command diff --git a/clients/client-marketplace-metering/src/commands/RegisterUsageCommand.ts b/clients/client-marketplace-metering/src/commands/RegisterUsageCommand.ts index bd6868ee99696..6a7fdfa1c0cdd 100644 --- a/clients/client-marketplace-metering/src/commands/RegisterUsageCommand.ts +++ b/clients/client-marketplace-metering/src/commands/RegisterUsageCommand.ts @@ -136,6 +136,7 @@ export interface RegisterUsageCommandOutput extends RegisterUsageResult, __Metad * @throws {@link MarketplaceMeteringServiceException} *

Base exception class for all service exceptions from MarketplaceMetering service.

* + * * @public */ export class RegisterUsageCommand extends $Command diff --git a/clients/client-marketplace-metering/src/commands/ResolveCustomerCommand.ts b/clients/client-marketplace-metering/src/commands/ResolveCustomerCommand.ts index 113477f76796d..1c17aa0e5d6de 100644 --- a/clients/client-marketplace-metering/src/commands/ResolveCustomerCommand.ts +++ b/clients/client-marketplace-metering/src/commands/ResolveCustomerCommand.ts @@ -97,6 +97,7 @@ export interface ResolveCustomerCommandOutput extends ResolveCustomerResult, __M * @throws {@link MarketplaceMeteringServiceException} *

Base exception class for all service exceptions from MarketplaceMetering service.

* + * * @public */ export class ResolveCustomerCommand extends $Command diff --git a/clients/client-marketplace-reporting/src/commands/GetBuyerDashboardCommand.ts b/clients/client-marketplace-reporting/src/commands/GetBuyerDashboardCommand.ts index 3e8d015e3bda2..f681e4159c13c 100644 --- a/clients/client-marketplace-reporting/src/commands/GetBuyerDashboardCommand.ts +++ b/clients/client-marketplace-reporting/src/commands/GetBuyerDashboardCommand.ts @@ -92,53 +92,52 @@ export interface GetBuyerDashboardCommandOutput extends GetBuyerDashboardOutput, * @throws {@link MarketplaceReportingServiceException} *

Base exception class for all service exceptions from MarketplaceReporting service.

* - * @public + * * @example Getting an agreements dashboard * ```javascript * // The following example shows how to obtain a dashboard for active agreements * const input = { - * "dashboardIdentifier": "arn:aws:aws-marketplace::123456789012:AWSMarketplace/ReportingData/Agreement_V1/Dashboard/AgreementSummary_V1", - * "embeddingDomains": [ + * dashboardIdentifier: "arn:aws:aws-marketplace::123456789012:AWSMarketplace/ReportingData/Agreement_V1/Dashboard/AgreementSummary_V1", + * embeddingDomains: [ * "https://*.amazon.com" * ] * }; * const command = new GetBuyerDashboardCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "dashboardIdentifier": "arn:aws:aws-marketplace::123456789012:AWSMarketplace/ReportingData/Agreement_V1/Dashboard/AgreementSummary_V1", - * "embedUrl": "https://us-east-1.quicksight.aws.amazon.com/embed/1235asdbffffbbasdf123/dashboards/8a66afa6-f316-4e71-a1ed-0a5bea07a314?code=abcdefghijklmn&identityprovider=quicksight&isauthcode=true", - * "embeddingDomains": [ + * dashboardIdentifier: "arn:aws:aws-marketplace::123456789012:AWSMarketplace/ReportingData/Agreement_V1/Dashboard/AgreementSummary_V1", + * embedUrl: "https://us-east-1.quicksight.aws.amazon.com/embed/1235asdbffffbbasdf123/dashboards/8a66afa6-f316-4e71-a1ed-0a5bea07a314?code=abcdefghijklmn&identityprovider=quicksight&isauthcode=true", + * embeddingDomains: [ * "https://*.amazon.com" * ] * } * *\/ - * // example id: example-1 * ``` * * @example Getting a cost-analysis dashboard * ```javascript * // The following example shows how to obtain a dashboard for cost analysis * const input = { - * "dashboardIdentifier": "arn:aws:aws-marketplace::123456789012:AWSMarketplace/ReportingData/BillingEvent_V1/Dashboard/CostAnalysis_V1", - * "embeddingDomains": [ + * dashboardIdentifier: "arn:aws:aws-marketplace::123456789012:AWSMarketplace/ReportingData/BillingEvent_V1/Dashboard/CostAnalysis_V1", + * embeddingDomains: [ * "https://*.amazon.com" * ] * }; * const command = new GetBuyerDashboardCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "dashboardIdentifier": "arn:aws:aws-marketplace::123456789012:AWSMarketplace/ReportingData/BillingEvent_V1/Dashboard/CostAnalysis_V1", - * "embedUrl": "https://us-east-1.quicksight.aws.amazon.com/embed/1235asdbffffbbasdf123/dashboards/8a66afa6-f316-4e71-a1ed-0a5bea07a314?code=abcdefghijklmn&identityprovider=quicksight&isauthcode=true", - * "embeddingDomains": [ + * dashboardIdentifier: "arn:aws:aws-marketplace::123456789012:AWSMarketplace/ReportingData/BillingEvent_V1/Dashboard/CostAnalysis_V1", + * embedUrl: "https://us-east-1.quicksight.aws.amazon.com/embed/1235asdbffffbbasdf123/dashboards/8a66afa6-f316-4e71-a1ed-0a5bea07a314?code=abcdefghijklmn&identityprovider=quicksight&isauthcode=true", + * embeddingDomains: [ * "https://*.amazon.com" * ] * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class GetBuyerDashboardCommand extends $Command .classBuilder< diff --git a/clients/client-mediaconnect/src/commands/AddBridgeOutputsCommand.ts b/clients/client-mediaconnect/src/commands/AddBridgeOutputsCommand.ts index 091979e5adfd8..57782a013f33b 100644 --- a/clients/client-mediaconnect/src/commands/AddBridgeOutputsCommand.ts +++ b/clients/client-mediaconnect/src/commands/AddBridgeOutputsCommand.ts @@ -112,6 +112,7 @@ export interface AddBridgeOutputsCommandOutput extends AddBridgeOutputsResponse, * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class AddBridgeOutputsCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/AddBridgeSourcesCommand.ts b/clients/client-mediaconnect/src/commands/AddBridgeSourcesCommand.ts index 62536d360d518..427e85fc1a223 100644 --- a/clients/client-mediaconnect/src/commands/AddBridgeSourcesCommand.ts +++ b/clients/client-mediaconnect/src/commands/AddBridgeSourcesCommand.ts @@ -126,6 +126,7 @@ export interface AddBridgeSourcesCommandOutput extends AddBridgeSourcesResponse, * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class AddBridgeSourcesCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/AddFlowMediaStreamsCommand.ts b/clients/client-mediaconnect/src/commands/AddFlowMediaStreamsCommand.ts index 4606c39615469..bc1f143427598 100644 --- a/clients/client-mediaconnect/src/commands/AddFlowMediaStreamsCommand.ts +++ b/clients/client-mediaconnect/src/commands/AddFlowMediaStreamsCommand.ts @@ -124,6 +124,7 @@ export interface AddFlowMediaStreamsCommandOutput extends AddFlowMediaStreamsRes * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class AddFlowMediaStreamsCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/AddFlowOutputsCommand.ts b/clients/client-mediaconnect/src/commands/AddFlowOutputsCommand.ts index 69dc85bae32bb..f23e9e16aab83 100644 --- a/clients/client-mediaconnect/src/commands/AddFlowOutputsCommand.ts +++ b/clients/client-mediaconnect/src/commands/AddFlowOutputsCommand.ts @@ -208,6 +208,7 @@ export interface AddFlowOutputsCommandOutput extends AddFlowOutputsResponse, __M * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class AddFlowOutputsCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/AddFlowSourcesCommand.ts b/clients/client-mediaconnect/src/commands/AddFlowSourcesCommand.ts index 1b2375d8152c1..756f2ab21ddc7 100644 --- a/clients/client-mediaconnect/src/commands/AddFlowSourcesCommand.ts +++ b/clients/client-mediaconnect/src/commands/AddFlowSourcesCommand.ts @@ -196,6 +196,7 @@ export interface AddFlowSourcesCommandOutput extends AddFlowSourcesResponse, __M * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class AddFlowSourcesCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/AddFlowVpcInterfacesCommand.ts b/clients/client-mediaconnect/src/commands/AddFlowVpcInterfacesCommand.ts index 2cac2242b64e8..2dd21e388be9d 100644 --- a/clients/client-mediaconnect/src/commands/AddFlowVpcInterfacesCommand.ts +++ b/clients/client-mediaconnect/src/commands/AddFlowVpcInterfacesCommand.ts @@ -104,6 +104,7 @@ export interface AddFlowVpcInterfacesCommandOutput extends AddFlowVpcInterfacesR * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class AddFlowVpcInterfacesCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/CreateBridgeCommand.ts b/clients/client-mediaconnect/src/commands/CreateBridgeCommand.ts index 7e3d9a770b47d..e2929d548b0fe 100644 --- a/clients/client-mediaconnect/src/commands/CreateBridgeCommand.ts +++ b/clients/client-mediaconnect/src/commands/CreateBridgeCommand.ts @@ -200,6 +200,7 @@ export interface CreateBridgeCommandOutput extends CreateBridgeResponse, __Metad * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class CreateBridgeCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/CreateFlowCommand.ts b/clients/client-mediaconnect/src/commands/CreateFlowCommand.ts index caf83a27f5cbf..685c391bad53d 100644 --- a/clients/client-mediaconnect/src/commands/CreateFlowCommand.ts +++ b/clients/client-mediaconnect/src/commands/CreateFlowCommand.ts @@ -653,6 +653,7 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class CreateFlowCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/CreateGatewayCommand.ts b/clients/client-mediaconnect/src/commands/CreateGatewayCommand.ts index 5869dd8afa175..dcef0665232d7 100644 --- a/clients/client-mediaconnect/src/commands/CreateGatewayCommand.ts +++ b/clients/client-mediaconnect/src/commands/CreateGatewayCommand.ts @@ -112,6 +112,7 @@ export interface CreateGatewayCommandOutput extends CreateGatewayResponse, __Met * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class CreateGatewayCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/DeleteBridgeCommand.ts b/clients/client-mediaconnect/src/commands/DeleteBridgeCommand.ts index 51abb899245ae..cfcec2b016628 100644 --- a/clients/client-mediaconnect/src/commands/DeleteBridgeCommand.ts +++ b/clients/client-mediaconnect/src/commands/DeleteBridgeCommand.ts @@ -83,6 +83,7 @@ export interface DeleteBridgeCommandOutput extends DeleteBridgeResponse, __Metad * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class DeleteBridgeCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/DeleteFlowCommand.ts b/clients/client-mediaconnect/src/commands/DeleteFlowCommand.ts index af05a7c1fe140..b191f21027c19 100644 --- a/clients/client-mediaconnect/src/commands/DeleteFlowCommand.ts +++ b/clients/client-mediaconnect/src/commands/DeleteFlowCommand.ts @@ -80,6 +80,7 @@ export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataB * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class DeleteFlowCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/DeleteGatewayCommand.ts b/clients/client-mediaconnect/src/commands/DeleteGatewayCommand.ts index 413abef485316..0cbd9c9222fdc 100644 --- a/clients/client-mediaconnect/src/commands/DeleteGatewayCommand.ts +++ b/clients/client-mediaconnect/src/commands/DeleteGatewayCommand.ts @@ -83,6 +83,7 @@ export interface DeleteGatewayCommandOutput extends DeleteGatewayResponse, __Met * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class DeleteGatewayCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/DeregisterGatewayInstanceCommand.ts b/clients/client-mediaconnect/src/commands/DeregisterGatewayInstanceCommand.ts index fc21a81c294c3..9378fc81cd0bf 100644 --- a/clients/client-mediaconnect/src/commands/DeregisterGatewayInstanceCommand.ts +++ b/clients/client-mediaconnect/src/commands/DeregisterGatewayInstanceCommand.ts @@ -85,6 +85,7 @@ export interface DeregisterGatewayInstanceCommandOutput extends DeregisterGatewa * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class DeregisterGatewayInstanceCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/DescribeBridgeCommand.ts b/clients/client-mediaconnect/src/commands/DescribeBridgeCommand.ts index 7f17408678152..d97cef16a2c23 100644 --- a/clients/client-mediaconnect/src/commands/DescribeBridgeCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeBridgeCommand.ts @@ -151,6 +151,7 @@ export interface DescribeBridgeCommandOutput extends DescribeBridgeResponse, __M * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class DescribeBridgeCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/DescribeFlowCommand.ts b/clients/client-mediaconnect/src/commands/DescribeFlowCommand.ts index b2590a046232f..2691b65fd6cea 100644 --- a/clients/client-mediaconnect/src/commands/DescribeFlowCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeFlowCommand.ts @@ -400,6 +400,7 @@ export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __Metad * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class DescribeFlowCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/DescribeFlowSourceMetadataCommand.ts b/clients/client-mediaconnect/src/commands/DescribeFlowSourceMetadataCommand.ts index c956ee4b93477..7e2c854efdcb9 100644 --- a/clients/client-mediaconnect/src/commands/DescribeFlowSourceMetadataCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeFlowSourceMetadataCommand.ts @@ -114,6 +114,7 @@ export interface DescribeFlowSourceMetadataCommandOutput extends DescribeFlowSou * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class DescribeFlowSourceMetadataCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/DescribeFlowSourceThumbnailCommand.ts b/clients/client-mediaconnect/src/commands/DescribeFlowSourceThumbnailCommand.ts index d39676911778d..76196db9ce557 100644 --- a/clients/client-mediaconnect/src/commands/DescribeFlowSourceThumbnailCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeFlowSourceThumbnailCommand.ts @@ -98,6 +98,7 @@ export interface DescribeFlowSourceThumbnailCommandOutput * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class DescribeFlowSourceThumbnailCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/DescribeGatewayCommand.ts b/clients/client-mediaconnect/src/commands/DescribeGatewayCommand.ts index bbf9837385fe6..f1567949164b5 100644 --- a/clients/client-mediaconnect/src/commands/DescribeGatewayCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeGatewayCommand.ts @@ -104,6 +104,7 @@ export interface DescribeGatewayCommandOutput extends DescribeGatewayResponse, _ * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class DescribeGatewayCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/DescribeGatewayInstanceCommand.ts b/clients/client-mediaconnect/src/commands/DescribeGatewayInstanceCommand.ts index a267301678f19..e771d92a71bb4 100644 --- a/clients/client-mediaconnect/src/commands/DescribeGatewayInstanceCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeGatewayInstanceCommand.ts @@ -100,6 +100,7 @@ export interface DescribeGatewayInstanceCommandOutput extends DescribeGatewayIns * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class DescribeGatewayInstanceCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/DescribeOfferingCommand.ts b/clients/client-mediaconnect/src/commands/DescribeOfferingCommand.ts index 5cd079cf65090..0dc5af1207d56 100644 --- a/clients/client-mediaconnect/src/commands/DescribeOfferingCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeOfferingCommand.ts @@ -87,6 +87,7 @@ export interface DescribeOfferingCommandOutput extends DescribeOfferingResponse, * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class DescribeOfferingCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/DescribeReservationCommand.ts b/clients/client-mediaconnect/src/commands/DescribeReservationCommand.ts index f1cfab469b5f8..7e9d2e0268418 100644 --- a/clients/client-mediaconnect/src/commands/DescribeReservationCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeReservationCommand.ts @@ -92,6 +92,7 @@ export interface DescribeReservationCommandOutput extends DescribeReservationRes * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class DescribeReservationCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/GrantFlowEntitlementsCommand.ts b/clients/client-mediaconnect/src/commands/GrantFlowEntitlementsCommand.ts index 9b16c51bdd038..1483da0534d38 100644 --- a/clients/client-mediaconnect/src/commands/GrantFlowEntitlementsCommand.ts +++ b/clients/client-mediaconnect/src/commands/GrantFlowEntitlementsCommand.ts @@ -128,6 +128,7 @@ export interface GrantFlowEntitlementsCommandOutput extends GrantFlowEntitlement * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class GrantFlowEntitlementsCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/ListBridgesCommand.ts b/clients/client-mediaconnect/src/commands/ListBridgesCommand.ts index c6761e028ab18..a20aeff66c674 100644 --- a/clients/client-mediaconnect/src/commands/ListBridgesCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListBridgesCommand.ts @@ -87,6 +87,7 @@ export interface ListBridgesCommandOutput extends ListBridgesResponse, __Metadat * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class ListBridgesCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/ListEntitlementsCommand.ts b/clients/client-mediaconnect/src/commands/ListEntitlementsCommand.ts index 158bcd3872dc6..757babcaf1cc4 100644 --- a/clients/client-mediaconnect/src/commands/ListEntitlementsCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListEntitlementsCommand.ts @@ -79,6 +79,7 @@ export interface ListEntitlementsCommandOutput extends ListEntitlementsResponse, * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class ListEntitlementsCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/ListFlowsCommand.ts b/clients/client-mediaconnect/src/commands/ListFlowsCommand.ts index 51b4ed5318a1c..e25ec47fd224e 100644 --- a/clients/client-mediaconnect/src/commands/ListFlowsCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListFlowsCommand.ts @@ -88,6 +88,7 @@ export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBea * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class ListFlowsCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/ListGatewayInstancesCommand.ts b/clients/client-mediaconnect/src/commands/ListGatewayInstancesCommand.ts index 148b6dba0a807..c7cd4b3218854 100644 --- a/clients/client-mediaconnect/src/commands/ListGatewayInstancesCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListGatewayInstancesCommand.ts @@ -85,6 +85,7 @@ export interface ListGatewayInstancesCommandOutput extends ListGatewayInstancesR * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class ListGatewayInstancesCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/ListGatewaysCommand.ts b/clients/client-mediaconnect/src/commands/ListGatewaysCommand.ts index 3db1580177527..01cbcfec92a5f 100644 --- a/clients/client-mediaconnect/src/commands/ListGatewaysCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListGatewaysCommand.ts @@ -83,6 +83,7 @@ export interface ListGatewaysCommandOutput extends ListGatewaysResponse, __Metad * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class ListGatewaysCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/ListOfferingsCommand.ts b/clients/client-mediaconnect/src/commands/ListOfferingsCommand.ts index 80df9377accbd..c29f56de42a20 100644 --- a/clients/client-mediaconnect/src/commands/ListOfferingsCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListOfferingsCommand.ts @@ -87,6 +87,7 @@ export interface ListOfferingsCommandOutput extends ListOfferingsResponse, __Met * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class ListOfferingsCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/ListReservationsCommand.ts b/clients/client-mediaconnect/src/commands/ListReservationsCommand.ts index 7e070d38fe4a1..008de7b3ced8a 100644 --- a/clients/client-mediaconnect/src/commands/ListReservationsCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListReservationsCommand.ts @@ -92,6 +92,7 @@ export interface ListReservationsCommandOutput extends ListReservationsResponse, * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class ListReservationsCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/ListTagsForResourceCommand.ts b/clients/client-mediaconnect/src/commands/ListTagsForResourceCommand.ts index 19f09b1b187fd..b745d8498b429 100644 --- a/clients/client-mediaconnect/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListTagsForResourceCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/PurchaseOfferingCommand.ts b/clients/client-mediaconnect/src/commands/PurchaseOfferingCommand.ts index 2a6e4c481a259..1975af8054e1e 100644 --- a/clients/client-mediaconnect/src/commands/PurchaseOfferingCommand.ts +++ b/clients/client-mediaconnect/src/commands/PurchaseOfferingCommand.ts @@ -98,6 +98,7 @@ export interface PurchaseOfferingCommandOutput extends PurchaseOfferingResponse, * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class PurchaseOfferingCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/RemoveBridgeOutputCommand.ts b/clients/client-mediaconnect/src/commands/RemoveBridgeOutputCommand.ts index 23ddcd5df0d40..827dd0aeee9d2 100644 --- a/clients/client-mediaconnect/src/commands/RemoveBridgeOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/RemoveBridgeOutputCommand.ts @@ -85,6 +85,7 @@ export interface RemoveBridgeOutputCommandOutput extends RemoveBridgeOutputRespo * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class RemoveBridgeOutputCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/RemoveBridgeSourceCommand.ts b/clients/client-mediaconnect/src/commands/RemoveBridgeSourceCommand.ts index 624f65478bf84..2e1abdb49829c 100644 --- a/clients/client-mediaconnect/src/commands/RemoveBridgeSourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/RemoveBridgeSourceCommand.ts @@ -85,6 +85,7 @@ export interface RemoveBridgeSourceCommandOutput extends RemoveBridgeSourceRespo * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class RemoveBridgeSourceCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/RemoveFlowMediaStreamCommand.ts b/clients/client-mediaconnect/src/commands/RemoveFlowMediaStreamCommand.ts index 4466290d33859..0075c1a869bbb 100644 --- a/clients/client-mediaconnect/src/commands/RemoveFlowMediaStreamCommand.ts +++ b/clients/client-mediaconnect/src/commands/RemoveFlowMediaStreamCommand.ts @@ -81,6 +81,7 @@ export interface RemoveFlowMediaStreamCommandOutput extends RemoveFlowMediaStrea * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class RemoveFlowMediaStreamCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/RemoveFlowOutputCommand.ts b/clients/client-mediaconnect/src/commands/RemoveFlowOutputCommand.ts index 7f4a1abfa7aad..6f326a4a18f26 100644 --- a/clients/client-mediaconnect/src/commands/RemoveFlowOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/RemoveFlowOutputCommand.ts @@ -81,6 +81,7 @@ export interface RemoveFlowOutputCommandOutput extends RemoveFlowOutputResponse, * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class RemoveFlowOutputCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/RemoveFlowSourceCommand.ts b/clients/client-mediaconnect/src/commands/RemoveFlowSourceCommand.ts index ce9b0e9aa4148..e321aa94be671 100644 --- a/clients/client-mediaconnect/src/commands/RemoveFlowSourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/RemoveFlowSourceCommand.ts @@ -82,6 +82,7 @@ export interface RemoveFlowSourceCommandOutput extends RemoveFlowSourceResponse, * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class RemoveFlowSourceCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/RemoveFlowVpcInterfaceCommand.ts b/clients/client-mediaconnect/src/commands/RemoveFlowVpcInterfaceCommand.ts index 36daad42ca225..503aa9fb7729a 100644 --- a/clients/client-mediaconnect/src/commands/RemoveFlowVpcInterfaceCommand.ts +++ b/clients/client-mediaconnect/src/commands/RemoveFlowVpcInterfaceCommand.ts @@ -84,6 +84,7 @@ export interface RemoveFlowVpcInterfaceCommandOutput extends RemoveFlowVpcInterf * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class RemoveFlowVpcInterfaceCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/RevokeFlowEntitlementCommand.ts b/clients/client-mediaconnect/src/commands/RevokeFlowEntitlementCommand.ts index 84cde9dacc164..e64048ffdbf14 100644 --- a/clients/client-mediaconnect/src/commands/RevokeFlowEntitlementCommand.ts +++ b/clients/client-mediaconnect/src/commands/RevokeFlowEntitlementCommand.ts @@ -81,6 +81,7 @@ export interface RevokeFlowEntitlementCommandOutput extends RevokeFlowEntitlemen * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class RevokeFlowEntitlementCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/StartFlowCommand.ts b/clients/client-mediaconnect/src/commands/StartFlowCommand.ts index 0273eee33d0f0..15a33f0257776 100644 --- a/clients/client-mediaconnect/src/commands/StartFlowCommand.ts +++ b/clients/client-mediaconnect/src/commands/StartFlowCommand.ts @@ -80,6 +80,7 @@ export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBea * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class StartFlowCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/StopFlowCommand.ts b/clients/client-mediaconnect/src/commands/StopFlowCommand.ts index c218147063941..04981bcdc0818 100644 --- a/clients/client-mediaconnect/src/commands/StopFlowCommand.ts +++ b/clients/client-mediaconnect/src/commands/StopFlowCommand.ts @@ -80,6 +80,7 @@ export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBeare * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class StopFlowCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/TagResourceCommand.ts b/clients/client-mediaconnect/src/commands/TagResourceCommand.ts index 5e55cdddca41f..2ac418e55c6dc 100644 --- a/clients/client-mediaconnect/src/commands/TagResourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/UntagResourceCommand.ts b/clients/client-mediaconnect/src/commands/UntagResourceCommand.ts index 8da3c4841180f..372832b2ba6e4 100644 --- a/clients/client-mediaconnect/src/commands/UntagResourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/UpdateBridgeCommand.ts b/clients/client-mediaconnect/src/commands/UpdateBridgeCommand.ts index 6dab795e407b6..3012f401a02f7 100644 --- a/clients/client-mediaconnect/src/commands/UpdateBridgeCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateBridgeCommand.ts @@ -166,6 +166,7 @@ export interface UpdateBridgeCommandOutput extends UpdateBridgeResponse, __Metad * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class UpdateBridgeCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/UpdateBridgeOutputCommand.ts b/clients/client-mediaconnect/src/commands/UpdateBridgeOutputCommand.ts index c16b3ec31c6b5..c130956ab7dc1 100644 --- a/clients/client-mediaconnect/src/commands/UpdateBridgeOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateBridgeOutputCommand.ts @@ -106,6 +106,7 @@ export interface UpdateBridgeOutputCommandOutput extends UpdateBridgeOutputRespo * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class UpdateBridgeOutputCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/UpdateBridgeSourceCommand.ts b/clients/client-mediaconnect/src/commands/UpdateBridgeSourceCommand.ts index 4a3a94909c370..157f4398a3167 100644 --- a/clients/client-mediaconnect/src/commands/UpdateBridgeSourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateBridgeSourceCommand.ts @@ -119,6 +119,7 @@ export interface UpdateBridgeSourceCommandOutput extends UpdateBridgeSourceRespo * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class UpdateBridgeSourceCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/UpdateBridgeStateCommand.ts b/clients/client-mediaconnect/src/commands/UpdateBridgeStateCommand.ts index d7971369d5386..14cb3ec033f1e 100644 --- a/clients/client-mediaconnect/src/commands/UpdateBridgeStateCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateBridgeStateCommand.ts @@ -85,6 +85,7 @@ export interface UpdateBridgeStateCommandOutput extends UpdateBridgeStateRespons * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class UpdateBridgeStateCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/UpdateFlowCommand.ts b/clients/client-mediaconnect/src/commands/UpdateFlowCommand.ts index 6b6084ef1ec90..630b45592dc67 100644 --- a/clients/client-mediaconnect/src/commands/UpdateFlowCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateFlowCommand.ts @@ -443,6 +443,7 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class UpdateFlowCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/UpdateFlowEntitlementCommand.ts b/clients/client-mediaconnect/src/commands/UpdateFlowEntitlementCommand.ts index 34275913a429f..d3bc5404fdf38 100644 --- a/clients/client-mediaconnect/src/commands/UpdateFlowEntitlementCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateFlowEntitlementCommand.ts @@ -117,6 +117,7 @@ export interface UpdateFlowEntitlementCommandOutput extends UpdateFlowEntitlemen * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class UpdateFlowEntitlementCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/UpdateFlowMediaStreamCommand.ts b/clients/client-mediaconnect/src/commands/UpdateFlowMediaStreamCommand.ts index 0f8550118fed1..000010efedb6c 100644 --- a/clients/client-mediaconnect/src/commands/UpdateFlowMediaStreamCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateFlowMediaStreamCommand.ts @@ -117,6 +117,7 @@ export interface UpdateFlowMediaStreamCommandOutput extends UpdateFlowMediaStrea * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class UpdateFlowMediaStreamCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/UpdateFlowOutputCommand.ts b/clients/client-mediaconnect/src/commands/UpdateFlowOutputCommand.ts index d9ba498f68197..19ca3240f40bf 100644 --- a/clients/client-mediaconnect/src/commands/UpdateFlowOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateFlowOutputCommand.ts @@ -199,6 +199,7 @@ export interface UpdateFlowOutputCommandOutput extends UpdateFlowOutputResponse, * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class UpdateFlowOutputCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/UpdateFlowSourceCommand.ts b/clients/client-mediaconnect/src/commands/UpdateFlowSourceCommand.ts index b34f955df3da2..38da10706fd78 100644 --- a/clients/client-mediaconnect/src/commands/UpdateFlowSourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateFlowSourceCommand.ts @@ -190,6 +190,7 @@ export interface UpdateFlowSourceCommandOutput extends UpdateFlowSourceResponse, * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class UpdateFlowSourceCommand extends $Command diff --git a/clients/client-mediaconnect/src/commands/UpdateGatewayInstanceCommand.ts b/clients/client-mediaconnect/src/commands/UpdateGatewayInstanceCommand.ts index 4a1d845ccda64..8334f5198805a 100644 --- a/clients/client-mediaconnect/src/commands/UpdateGatewayInstanceCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateGatewayInstanceCommand.ts @@ -86,6 +86,7 @@ export interface UpdateGatewayInstanceCommandOutput extends UpdateGatewayInstanc * @throws {@link MediaConnectServiceException} *

Base exception class for all service exceptions from MediaConnect service.

* + * * @public */ export class UpdateGatewayInstanceCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/AssociateCertificateCommand.ts b/clients/client-mediaconvert/src/commands/AssociateCertificateCommand.ts index 9aeff2ee9bdbf..5c25e46a7ef88 100644 --- a/clients/client-mediaconvert/src/commands/AssociateCertificateCommand.ts +++ b/clients/client-mediaconvert/src/commands/AssociateCertificateCommand.ts @@ -71,6 +71,7 @@ export interface AssociateCertificateCommandOutput extends AssociateCertificateR * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class AssociateCertificateCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/CancelJobCommand.ts b/clients/client-mediaconvert/src/commands/CancelJobCommand.ts index 56f7ba2710298..df3a4b6f5ed75 100644 --- a/clients/client-mediaconvert/src/commands/CancelJobCommand.ts +++ b/clients/client-mediaconvert/src/commands/CancelJobCommand.ts @@ -71,6 +71,7 @@ export interface CancelJobCommandOutput extends CancelJobResponse, __MetadataBea * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class CancelJobCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/CreateJobCommand.ts b/clients/client-mediaconvert/src/commands/CreateJobCommand.ts index 44c8616038e8e..980d05face1b7 100644 --- a/clients/client-mediaconvert/src/commands/CreateJobCommand.ts +++ b/clients/client-mediaconvert/src/commands/CreateJobCommand.ts @@ -3186,6 +3186,7 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class CreateJobCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/CreateJobTemplateCommand.ts b/clients/client-mediaconvert/src/commands/CreateJobTemplateCommand.ts index 4f0c8edf77625..15bfa696003d7 100644 --- a/clients/client-mediaconvert/src/commands/CreateJobTemplateCommand.ts +++ b/clients/client-mediaconvert/src/commands/CreateJobTemplateCommand.ts @@ -3094,6 +3094,7 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class CreateJobTemplateCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/CreatePresetCommand.ts b/clients/client-mediaconvert/src/commands/CreatePresetCommand.ts index da412627e6f1f..4f009fa82bb99 100644 --- a/clients/client-mediaconvert/src/commands/CreatePresetCommand.ts +++ b/clients/client-mediaconvert/src/commands/CreatePresetCommand.ts @@ -1732,6 +1732,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class CreatePresetCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/CreateQueueCommand.ts b/clients/client-mediaconvert/src/commands/CreateQueueCommand.ts index a9f49f652c694..303566eee9949 100644 --- a/clients/client-mediaconvert/src/commands/CreateQueueCommand.ts +++ b/clients/client-mediaconvert/src/commands/CreateQueueCommand.ts @@ -113,6 +113,7 @@ export interface CreateQueueCommandOutput extends CreateQueueResponse, __Metadat * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class CreateQueueCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/DeleteJobTemplateCommand.ts b/clients/client-mediaconvert/src/commands/DeleteJobTemplateCommand.ts index 537e80552901f..5c7fa5e976df5 100644 --- a/clients/client-mediaconvert/src/commands/DeleteJobTemplateCommand.ts +++ b/clients/client-mediaconvert/src/commands/DeleteJobTemplateCommand.ts @@ -71,6 +71,7 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class DeleteJobTemplateCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/DeletePolicyCommand.ts b/clients/client-mediaconvert/src/commands/DeletePolicyCommand.ts index 7825ebc8aa179..e33dd5f469daf 100644 --- a/clients/client-mediaconvert/src/commands/DeletePolicyCommand.ts +++ b/clients/client-mediaconvert/src/commands/DeletePolicyCommand.ts @@ -69,6 +69,7 @@ export interface DeletePolicyCommandOutput extends DeletePolicyResponse, __Metad * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class DeletePolicyCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/DeletePresetCommand.ts b/clients/client-mediaconvert/src/commands/DeletePresetCommand.ts index 25b508283036f..6a7dbaba6da70 100644 --- a/clients/client-mediaconvert/src/commands/DeletePresetCommand.ts +++ b/clients/client-mediaconvert/src/commands/DeletePresetCommand.ts @@ -71,6 +71,7 @@ export interface DeletePresetCommandOutput extends DeletePresetResponse, __Metad * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class DeletePresetCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/DeleteQueueCommand.ts b/clients/client-mediaconvert/src/commands/DeleteQueueCommand.ts index 2a972032c6d62..2cced599ca50a 100644 --- a/clients/client-mediaconvert/src/commands/DeleteQueueCommand.ts +++ b/clients/client-mediaconvert/src/commands/DeleteQueueCommand.ts @@ -71,6 +71,7 @@ export interface DeleteQueueCommandOutput extends DeleteQueueResponse, __Metadat * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class DeleteQueueCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/DescribeEndpointsCommand.ts b/clients/client-mediaconvert/src/commands/DescribeEndpointsCommand.ts index f6e9d21ebf83d..571138f4d7b48 100644 --- a/clients/client-mediaconvert/src/commands/DescribeEndpointsCommand.ts +++ b/clients/client-mediaconvert/src/commands/DescribeEndpointsCommand.ts @@ -82,6 +82,7 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class DescribeEndpointsCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/DisassociateCertificateCommand.ts b/clients/client-mediaconvert/src/commands/DisassociateCertificateCommand.ts index 2d79353cb0cd5..da4e0ca927092 100644 --- a/clients/client-mediaconvert/src/commands/DisassociateCertificateCommand.ts +++ b/clients/client-mediaconvert/src/commands/DisassociateCertificateCommand.ts @@ -71,6 +71,7 @@ export interface DisassociateCertificateCommandOutput extends DisassociateCertif * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class DisassociateCertificateCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/GetJobCommand.ts b/clients/client-mediaconvert/src/commands/GetJobCommand.ts index 8b73c188c0224..3ffc9fb784b58 100644 --- a/clients/client-mediaconvert/src/commands/GetJobCommand.ts +++ b/clients/client-mediaconvert/src/commands/GetJobCommand.ts @@ -1654,6 +1654,7 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {} * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class GetJobCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/GetJobTemplateCommand.ts b/clients/client-mediaconvert/src/commands/GetJobTemplateCommand.ts index f4930ff758b18..e1474ed3dddf0 100644 --- a/clients/client-mediaconvert/src/commands/GetJobTemplateCommand.ts +++ b/clients/client-mediaconvert/src/commands/GetJobTemplateCommand.ts @@ -1585,6 +1585,7 @@ export interface GetJobTemplateCommandOutput extends GetJobTemplateResponse, __M * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class GetJobTemplateCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/GetPolicyCommand.ts b/clients/client-mediaconvert/src/commands/GetPolicyCommand.ts index 3d96d10c44c69..14b21b1872187 100644 --- a/clients/client-mediaconvert/src/commands/GetPolicyCommand.ts +++ b/clients/client-mediaconvert/src/commands/GetPolicyCommand.ts @@ -75,6 +75,7 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class GetPolicyCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/GetPresetCommand.ts b/clients/client-mediaconvert/src/commands/GetPresetCommand.ts index 1a5a8d9b68dd6..1b57caf30ca7d 100644 --- a/clients/client-mediaconvert/src/commands/GetPresetCommand.ts +++ b/clients/client-mediaconvert/src/commands/GetPresetCommand.ts @@ -904,6 +904,7 @@ export interface GetPresetCommandOutput extends GetPresetResponse, __MetadataBea * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class GetPresetCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/GetQueueCommand.ts b/clients/client-mediaconvert/src/commands/GetQueueCommand.ts index 674515f9d84dc..85fdd96b3155c 100644 --- a/clients/client-mediaconvert/src/commands/GetQueueCommand.ts +++ b/clients/client-mediaconvert/src/commands/GetQueueCommand.ts @@ -101,6 +101,7 @@ export interface GetQueueCommandOutput extends GetQueueResponse, __MetadataBeare * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class GetQueueCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/ListJobTemplatesCommand.ts b/clients/client-mediaconvert/src/commands/ListJobTemplatesCommand.ts index 490ae4f36dbc7..e1662e047fcef 100644 --- a/clients/client-mediaconvert/src/commands/ListJobTemplatesCommand.ts +++ b/clients/client-mediaconvert/src/commands/ListJobTemplatesCommand.ts @@ -1592,6 +1592,7 @@ export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse, * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class ListJobTemplatesCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/ListJobsCommand.ts b/clients/client-mediaconvert/src/commands/ListJobsCommand.ts index 5cff0064692c0..b3880454b7712 100644 --- a/clients/client-mediaconvert/src/commands/ListJobsCommand.ts +++ b/clients/client-mediaconvert/src/commands/ListJobsCommand.ts @@ -1661,6 +1661,7 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class ListJobsCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/ListPresetsCommand.ts b/clients/client-mediaconvert/src/commands/ListPresetsCommand.ts index 0f469d0adb173..d46b7b293d497 100644 --- a/clients/client-mediaconvert/src/commands/ListPresetsCommand.ts +++ b/clients/client-mediaconvert/src/commands/ListPresetsCommand.ts @@ -911,6 +911,7 @@ export interface ListPresetsCommandOutput extends ListPresetsResponse, __Metadat * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class ListPresetsCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/ListQueuesCommand.ts b/clients/client-mediaconvert/src/commands/ListQueuesCommand.ts index 2542d857f60df..e0e912ea6eeb7 100644 --- a/clients/client-mediaconvert/src/commands/ListQueuesCommand.ts +++ b/clients/client-mediaconvert/src/commands/ListQueuesCommand.ts @@ -109,6 +109,7 @@ export interface ListQueuesCommandOutput extends ListQueuesResponse, __MetadataB * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class ListQueuesCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/ListTagsForResourceCommand.ts b/clients/client-mediaconvert/src/commands/ListTagsForResourceCommand.ts index b8d57f7589c78..e4519c1f5d29e 100644 --- a/clients/client-mediaconvert/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mediaconvert/src/commands/ListTagsForResourceCommand.ts @@ -78,6 +78,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/ListVersionsCommand.ts b/clients/client-mediaconvert/src/commands/ListVersionsCommand.ts index ebbbb562117e1..d9b6d2b26f31a 100644 --- a/clients/client-mediaconvert/src/commands/ListVersionsCommand.ts +++ b/clients/client-mediaconvert/src/commands/ListVersionsCommand.ts @@ -80,6 +80,7 @@ export interface ListVersionsCommandOutput extends ListVersionsResponse, __Metad * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class ListVersionsCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/ProbeCommand.ts b/clients/client-mediaconvert/src/commands/ProbeCommand.ts index 4802acb7123cd..3e3947f394650 100644 --- a/clients/client-mediaconvert/src/commands/ProbeCommand.ts +++ b/clients/client-mediaconvert/src/commands/ProbeCommand.ts @@ -138,6 +138,7 @@ export interface ProbeCommandOutput extends ProbeResponse, __MetadataBearer {} * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class ProbeCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/PutPolicyCommand.ts b/clients/client-mediaconvert/src/commands/PutPolicyCommand.ts index 0d01b21fda756..5b4779e9ce088 100644 --- a/clients/client-mediaconvert/src/commands/PutPolicyCommand.ts +++ b/clients/client-mediaconvert/src/commands/PutPolicyCommand.ts @@ -81,6 +81,7 @@ export interface PutPolicyCommandOutput extends PutPolicyResponse, __MetadataBea * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class PutPolicyCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/SearchJobsCommand.ts b/clients/client-mediaconvert/src/commands/SearchJobsCommand.ts index d6ea21b9c57db..08857dfcb28b0 100644 --- a/clients/client-mediaconvert/src/commands/SearchJobsCommand.ts +++ b/clients/client-mediaconvert/src/commands/SearchJobsCommand.ts @@ -1662,6 +1662,7 @@ export interface SearchJobsCommandOutput extends SearchJobsResponse, __MetadataB * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class SearchJobsCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/TagResourceCommand.ts b/clients/client-mediaconvert/src/commands/TagResourceCommand.ts index bb5582356de24..f8c9efda80453 100644 --- a/clients/client-mediaconvert/src/commands/TagResourceCommand.ts +++ b/clients/client-mediaconvert/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/UntagResourceCommand.ts b/clients/client-mediaconvert/src/commands/UntagResourceCommand.ts index 12bcbd2cf010e..f9337669c524e 100644 --- a/clients/client-mediaconvert/src/commands/UntagResourceCommand.ts +++ b/clients/client-mediaconvert/src/commands/UntagResourceCommand.ts @@ -74,6 +74,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/UpdateJobTemplateCommand.ts b/clients/client-mediaconvert/src/commands/UpdateJobTemplateCommand.ts index d596283f1f795..7f1e57a36ce99 100644 --- a/clients/client-mediaconvert/src/commands/UpdateJobTemplateCommand.ts +++ b/clients/client-mediaconvert/src/commands/UpdateJobTemplateCommand.ts @@ -3091,6 +3091,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class UpdateJobTemplateCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/UpdatePresetCommand.ts b/clients/client-mediaconvert/src/commands/UpdatePresetCommand.ts index 5c8e9427bbed2..c917485437ce6 100644 --- a/clients/client-mediaconvert/src/commands/UpdatePresetCommand.ts +++ b/clients/client-mediaconvert/src/commands/UpdatePresetCommand.ts @@ -1729,6 +1729,7 @@ export interface UpdatePresetCommandOutput extends UpdatePresetResponse, __Metad * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class UpdatePresetCommand extends $Command diff --git a/clients/client-mediaconvert/src/commands/UpdateQueueCommand.ts b/clients/client-mediaconvert/src/commands/UpdateQueueCommand.ts index 4db4d445f623a..cf5a9c3db6441 100644 --- a/clients/client-mediaconvert/src/commands/UpdateQueueCommand.ts +++ b/clients/client-mediaconvert/src/commands/UpdateQueueCommand.ts @@ -109,6 +109,7 @@ export interface UpdateQueueCommandOutput extends UpdateQueueResponse, __Metadat * @throws {@link MediaConvertServiceException} *

Base exception class for all service exceptions from MediaConvert service.

* + * * @public */ export class UpdateQueueCommand extends $Command diff --git a/clients/client-medialive/src/commands/AcceptInputDeviceTransferCommand.ts b/clients/client-medialive/src/commands/AcceptInputDeviceTransferCommand.ts index b869a717e789f..e9535a776069d 100644 --- a/clients/client-medialive/src/commands/AcceptInputDeviceTransferCommand.ts +++ b/clients/client-medialive/src/commands/AcceptInputDeviceTransferCommand.ts @@ -80,6 +80,7 @@ export interface AcceptInputDeviceTransferCommandOutput extends AcceptInputDevic * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class AcceptInputDeviceTransferCommand extends $Command diff --git a/clients/client-medialive/src/commands/BatchDeleteCommand.ts b/clients/client-medialive/src/commands/BatchDeleteCommand.ts index 5fbde19ff2a78..80cae63fb10aa 100644 --- a/clients/client-medialive/src/commands/BatchDeleteCommand.ts +++ b/clients/client-medialive/src/commands/BatchDeleteCommand.ts @@ -104,6 +104,7 @@ export interface BatchDeleteCommandOutput extends BatchDeleteResponse, __Metadat * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class BatchDeleteCommand extends $Command diff --git a/clients/client-medialive/src/commands/BatchStartCommand.ts b/clients/client-medialive/src/commands/BatchStartCommand.ts index 38364eb2b64e3..15bad497f1144 100644 --- a/clients/client-medialive/src/commands/BatchStartCommand.ts +++ b/clients/client-medialive/src/commands/BatchStartCommand.ts @@ -98,6 +98,7 @@ export interface BatchStartCommandOutput extends BatchStartResponse, __MetadataB * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class BatchStartCommand extends $Command diff --git a/clients/client-medialive/src/commands/BatchStopCommand.ts b/clients/client-medialive/src/commands/BatchStopCommand.ts index aed964e5b57b7..10bb311a05562 100644 --- a/clients/client-medialive/src/commands/BatchStopCommand.ts +++ b/clients/client-medialive/src/commands/BatchStopCommand.ts @@ -98,6 +98,7 @@ export interface BatchStopCommandOutput extends BatchStopResponse, __MetadataBea * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class BatchStopCommand extends $Command diff --git a/clients/client-medialive/src/commands/BatchUpdateScheduleCommand.ts b/clients/client-medialive/src/commands/BatchUpdateScheduleCommand.ts index 311dba3039ac5..64d8fafc16443 100644 --- a/clients/client-medialive/src/commands/BatchUpdateScheduleCommand.ts +++ b/clients/client-medialive/src/commands/BatchUpdateScheduleCommand.ts @@ -563,6 +563,7 @@ export interface BatchUpdateScheduleCommandOutput extends BatchUpdateScheduleRes * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class BatchUpdateScheduleCommand extends $Command diff --git a/clients/client-medialive/src/commands/CancelInputDeviceTransferCommand.ts b/clients/client-medialive/src/commands/CancelInputDeviceTransferCommand.ts index e4c9a36ea4e45..374e871e306cf 100644 --- a/clients/client-medialive/src/commands/CancelInputDeviceTransferCommand.ts +++ b/clients/client-medialive/src/commands/CancelInputDeviceTransferCommand.ts @@ -80,6 +80,7 @@ export interface CancelInputDeviceTransferCommandOutput extends CancelInputDevic * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CancelInputDeviceTransferCommand extends $Command diff --git a/clients/client-medialive/src/commands/ClaimDeviceCommand.ts b/clients/client-medialive/src/commands/ClaimDeviceCommand.ts index 8bb5f794dc975..adf71893c3b00 100644 --- a/clients/client-medialive/src/commands/ClaimDeviceCommand.ts +++ b/clients/client-medialive/src/commands/ClaimDeviceCommand.ts @@ -77,6 +77,7 @@ export interface ClaimDeviceCommandOutput extends ClaimDeviceResponse, __Metadat * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ClaimDeviceCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateChannelCommand.ts b/clients/client-medialive/src/commands/CreateChannelCommand.ts index f87dd40ba1d45..1e4d0436b7a9e 100644 --- a/clients/client-medialive/src/commands/CreateChannelCommand.ts +++ b/clients/client-medialive/src/commands/CreateChannelCommand.ts @@ -2486,6 +2486,7 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateChannelCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateChannelPlacementGroupCommand.ts b/clients/client-medialive/src/commands/CreateChannelPlacementGroupCommand.ts index bfde67d358e0d..ae420862c8768 100644 --- a/clients/client-medialive/src/commands/CreateChannelPlacementGroupCommand.ts +++ b/clients/client-medialive/src/commands/CreateChannelPlacementGroupCommand.ts @@ -99,6 +99,7 @@ export interface CreateChannelPlacementGroupCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateChannelPlacementGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateCommand.ts b/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateCommand.ts index 72e4075e9361a..7a53f2e049684 100644 --- a/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateCommand.ts +++ b/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateCommand.ts @@ -111,6 +111,7 @@ export interface CreateCloudWatchAlarmTemplateCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateCloudWatchAlarmTemplateCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateGroupCommand.ts b/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateGroupCommand.ts index 5216dd08cc96d..5531186a414ec 100644 --- a/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateGroupCommand.ts @@ -94,6 +94,7 @@ export interface CreateCloudWatchAlarmTemplateGroupCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateCloudWatchAlarmTemplateGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateClusterCommand.ts b/clients/client-medialive/src/commands/CreateClusterCommand.ts index d0652363cca20..3ee26043bdd31 100644 --- a/clients/client-medialive/src/commands/CreateClusterCommand.ts +++ b/clients/client-medialive/src/commands/CreateClusterCommand.ts @@ -108,6 +108,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateClusterCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateCommand.ts b/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateCommand.ts index f4d7c6bd3b71f..bc78eb2dd1158 100644 --- a/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateCommand.ts +++ b/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateCommand.ts @@ -105,6 +105,7 @@ export interface CreateEventBridgeRuleTemplateCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateEventBridgeRuleTemplateCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateGroupCommand.ts b/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateGroupCommand.ts index 755545dbcb7b4..4aa6907845312 100644 --- a/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateGroupCommand.ts @@ -94,6 +94,7 @@ export interface CreateEventBridgeRuleTemplateGroupCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateEventBridgeRuleTemplateGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateInputCommand.ts b/clients/client-medialive/src/commands/CreateInputCommand.ts index cea9259ca5a47..c97cc35d3f141 100644 --- a/clients/client-medialive/src/commands/CreateInputCommand.ts +++ b/clients/client-medialive/src/commands/CreateInputCommand.ts @@ -222,6 +222,7 @@ export interface CreateInputCommandOutput extends CreateInputResponse, __Metadat * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateInputCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateInputSecurityGroupCommand.ts b/clients/client-medialive/src/commands/CreateInputSecurityGroupCommand.ts index e99c66fd36502..88523eaf5507b 100644 --- a/clients/client-medialive/src/commands/CreateInputSecurityGroupCommand.ts +++ b/clients/client-medialive/src/commands/CreateInputSecurityGroupCommand.ts @@ -95,6 +95,7 @@ export interface CreateInputSecurityGroupCommandOutput extends CreateInputSecuri * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateInputSecurityGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateMultiplexCommand.ts b/clients/client-medialive/src/commands/CreateMultiplexCommand.ts index d92a686188cb7..5ef67266c680c 100644 --- a/clients/client-medialive/src/commands/CreateMultiplexCommand.ts +++ b/clients/client-medialive/src/commands/CreateMultiplexCommand.ts @@ -118,6 +118,7 @@ export interface CreateMultiplexCommandOutput extends CreateMultiplexResponse, _ * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateMultiplexCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateMultiplexProgramCommand.ts b/clients/client-medialive/src/commands/CreateMultiplexProgramCommand.ts index e1e7d4f8c6158..f489cd3081141 100644 --- a/clients/client-medialive/src/commands/CreateMultiplexProgramCommand.ts +++ b/clients/client-medialive/src/commands/CreateMultiplexProgramCommand.ts @@ -151,6 +151,7 @@ export interface CreateMultiplexProgramCommandOutput extends CreateMultiplexProg * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateMultiplexProgramCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateNetworkCommand.ts b/clients/client-medialive/src/commands/CreateNetworkCommand.ts index 6997054a59984..56d63ca7d649b 100644 --- a/clients/client-medialive/src/commands/CreateNetworkCommand.ts +++ b/clients/client-medialive/src/commands/CreateNetworkCommand.ts @@ -108,6 +108,7 @@ export interface CreateNetworkCommandOutput extends CreateNetworkResponse, __Met * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateNetworkCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateNodeCommand.ts b/clients/client-medialive/src/commands/CreateNodeCommand.ts index 341941fed2046..5806e96e8fd23 100644 --- a/clients/client-medialive/src/commands/CreateNodeCommand.ts +++ b/clients/client-medialive/src/commands/CreateNodeCommand.ts @@ -106,6 +106,7 @@ export interface CreateNodeCommandOutput extends CreateNodeResponse, __MetadataB * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateNodeCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateNodeRegistrationScriptCommand.ts b/clients/client-medialive/src/commands/CreateNodeRegistrationScriptCommand.ts index c37c51d424c5a..7f1205e54b096 100644 --- a/clients/client-medialive/src/commands/CreateNodeRegistrationScriptCommand.ts +++ b/clients/client-medialive/src/commands/CreateNodeRegistrationScriptCommand.ts @@ -92,6 +92,7 @@ export interface CreateNodeRegistrationScriptCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateNodeRegistrationScriptCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreatePartnerInputCommand.ts b/clients/client-medialive/src/commands/CreatePartnerInputCommand.ts index 767086f921408..553bc3f697e6d 100644 --- a/clients/client-medialive/src/commands/CreatePartnerInputCommand.ts +++ b/clients/client-medialive/src/commands/CreatePartnerInputCommand.ts @@ -156,6 +156,7 @@ export interface CreatePartnerInputCommandOutput extends CreatePartnerInputRespo * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreatePartnerInputCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateSignalMapCommand.ts b/clients/client-medialive/src/commands/CreateSignalMapCommand.ts index d9dce6855e3b1..417bc0d7f29e1 100644 --- a/clients/client-medialive/src/commands/CreateSignalMapCommand.ts +++ b/clients/client-medialive/src/commands/CreateSignalMapCommand.ts @@ -147,6 +147,7 @@ export interface CreateSignalMapCommandOutput extends CreateSignalMapResponse, _ * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateSignalMapCommand extends $Command diff --git a/clients/client-medialive/src/commands/CreateTagsCommand.ts b/clients/client-medialive/src/commands/CreateTagsCommand.ts index 61e34277fe528..48ae7f4c78079 100644 --- a/clients/client-medialive/src/commands/CreateTagsCommand.ts +++ b/clients/client-medialive/src/commands/CreateTagsCommand.ts @@ -68,6 +68,7 @@ export interface CreateTagsCommandOutput extends __MetadataBearer {} * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class CreateTagsCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteChannelCommand.ts b/clients/client-medialive/src/commands/DeleteChannelCommand.ts index b223903b798f8..29b914dca7fa6 100644 --- a/clients/client-medialive/src/commands/DeleteChannelCommand.ts +++ b/clients/client-medialive/src/commands/DeleteChannelCommand.ts @@ -1293,6 +1293,7 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteChannelCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteChannelPlacementGroupCommand.ts b/clients/client-medialive/src/commands/DeleteChannelPlacementGroupCommand.ts index 48495bba51be8..db8cb56e6bd49 100644 --- a/clients/client-medialive/src/commands/DeleteChannelPlacementGroupCommand.ts +++ b/clients/client-medialive/src/commands/DeleteChannelPlacementGroupCommand.ts @@ -95,6 +95,7 @@ export interface DeleteChannelPlacementGroupCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteChannelPlacementGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateCommand.ts b/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateCommand.ts index af58663eb3e69..0c09868ab7568 100644 --- a/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateCommand.ts +++ b/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateCommand.ts @@ -74,6 +74,7 @@ export interface DeleteCloudWatchAlarmTemplateCommandOutput extends __MetadataBe * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteCloudWatchAlarmTemplateCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateGroupCommand.ts b/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateGroupCommand.ts index 0ec361eb281c3..3a26f1227b838 100644 --- a/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateGroupCommand.ts @@ -74,6 +74,7 @@ export interface DeleteCloudWatchAlarmTemplateGroupCommandOutput extends __Metad * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteCloudWatchAlarmTemplateGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteClusterCommand.ts b/clients/client-medialive/src/commands/DeleteClusterCommand.ts index 3cb8bf337b903..ea1fe3848b842 100644 --- a/clients/client-medialive/src/commands/DeleteClusterCommand.ts +++ b/clients/client-medialive/src/commands/DeleteClusterCommand.ts @@ -96,6 +96,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteClusterCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateCommand.ts b/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateCommand.ts index a153225ebf21e..1724fcaca6ed2 100644 --- a/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateCommand.ts +++ b/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateCommand.ts @@ -74,6 +74,7 @@ export interface DeleteEventBridgeRuleTemplateCommandOutput extends __MetadataBe * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteEventBridgeRuleTemplateCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateGroupCommand.ts b/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateGroupCommand.ts index 6a31425807032..aa343026e3607 100644 --- a/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateGroupCommand.ts @@ -74,6 +74,7 @@ export interface DeleteEventBridgeRuleTemplateGroupCommandOutput extends __Metad * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteEventBridgeRuleTemplateGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteInputCommand.ts b/clients/client-medialive/src/commands/DeleteInputCommand.ts index 2f502b399c012..2810e7ad5f6bd 100644 --- a/clients/client-medialive/src/commands/DeleteInputCommand.ts +++ b/clients/client-medialive/src/commands/DeleteInputCommand.ts @@ -77,6 +77,7 @@ export interface DeleteInputCommandOutput extends DeleteInputResponse, __Metadat * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteInputCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteInputSecurityGroupCommand.ts b/clients/client-medialive/src/commands/DeleteInputSecurityGroupCommand.ts index 346033f2792ea..47dedc81ab113 100644 --- a/clients/client-medialive/src/commands/DeleteInputSecurityGroupCommand.ts +++ b/clients/client-medialive/src/commands/DeleteInputSecurityGroupCommand.ts @@ -74,6 +74,7 @@ export interface DeleteInputSecurityGroupCommandOutput extends DeleteInputSecuri * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteInputSecurityGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteMultiplexCommand.ts b/clients/client-medialive/src/commands/DeleteMultiplexCommand.ts index c4b2dcd18fcba..b550c9e7790b0 100644 --- a/clients/client-medialive/src/commands/DeleteMultiplexCommand.ts +++ b/clients/client-medialive/src/commands/DeleteMultiplexCommand.ts @@ -103,6 +103,7 @@ export interface DeleteMultiplexCommandOutput extends DeleteMultiplexResponse, _ * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteMultiplexCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteMultiplexProgramCommand.ts b/clients/client-medialive/src/commands/DeleteMultiplexProgramCommand.ts index 46c404f2b58d6..fe3a26515e918 100644 --- a/clients/client-medialive/src/commands/DeleteMultiplexProgramCommand.ts +++ b/clients/client-medialive/src/commands/DeleteMultiplexProgramCommand.ts @@ -132,6 +132,7 @@ export interface DeleteMultiplexProgramCommandOutput extends DeleteMultiplexProg * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteMultiplexProgramCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteNetworkCommand.ts b/clients/client-medialive/src/commands/DeleteNetworkCommand.ts index 1089b7771dc08..be16391074231 100644 --- a/clients/client-medialive/src/commands/DeleteNetworkCommand.ts +++ b/clients/client-medialive/src/commands/DeleteNetworkCommand.ts @@ -96,6 +96,7 @@ export interface DeleteNetworkCommandOutput extends DeleteNetworkResponse, __Met * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteNetworkCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteNodeCommand.ts b/clients/client-medialive/src/commands/DeleteNodeCommand.ts index 70df0c3bb3c5d..6c84322eca567 100644 --- a/clients/client-medialive/src/commands/DeleteNodeCommand.ts +++ b/clients/client-medialive/src/commands/DeleteNodeCommand.ts @@ -97,6 +97,7 @@ export interface DeleteNodeCommandOutput extends DeleteNodeResponse, __MetadataB * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteNodeCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteReservationCommand.ts b/clients/client-medialive/src/commands/DeleteReservationCommand.ts index cd4c2019f45e2..cfccd3bfe95b6 100644 --- a/clients/client-medialive/src/commands/DeleteReservationCommand.ts +++ b/clients/client-medialive/src/commands/DeleteReservationCommand.ts @@ -111,6 +111,7 @@ export interface DeleteReservationCommandOutput extends DeleteReservationRespons * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteReservationCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteScheduleCommand.ts b/clients/client-medialive/src/commands/DeleteScheduleCommand.ts index 7882f42f4d90b..a6b4a28bd2e39 100644 --- a/clients/client-medialive/src/commands/DeleteScheduleCommand.ts +++ b/clients/client-medialive/src/commands/DeleteScheduleCommand.ts @@ -74,6 +74,7 @@ export interface DeleteScheduleCommandOutput extends DeleteScheduleResponse, __M * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteScheduleCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteSignalMapCommand.ts b/clients/client-medialive/src/commands/DeleteSignalMapCommand.ts index 9970f80940d49..a79f6d5dcc1dc 100644 --- a/clients/client-medialive/src/commands/DeleteSignalMapCommand.ts +++ b/clients/client-medialive/src/commands/DeleteSignalMapCommand.ts @@ -71,6 +71,7 @@ export interface DeleteSignalMapCommandOutput extends __MetadataBearer {} * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteSignalMapCommand extends $Command diff --git a/clients/client-medialive/src/commands/DeleteTagsCommand.ts b/clients/client-medialive/src/commands/DeleteTagsCommand.ts index c47f34c6af54a..648b736fc12cf 100644 --- a/clients/client-medialive/src/commands/DeleteTagsCommand.ts +++ b/clients/client-medialive/src/commands/DeleteTagsCommand.ts @@ -68,6 +68,7 @@ export interface DeleteTagsCommandOutput extends __MetadataBearer {} * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DeleteTagsCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeAccountConfigurationCommand.ts b/clients/client-medialive/src/commands/DescribeAccountConfigurationCommand.ts index e526a2b66adbb..d6f137b4b66c0 100644 --- a/clients/client-medialive/src/commands/DescribeAccountConfigurationCommand.ts +++ b/clients/client-medialive/src/commands/DescribeAccountConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface DescribeAccountConfigurationCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeAccountConfigurationCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeChannelCommand.ts b/clients/client-medialive/src/commands/DescribeChannelCommand.ts index b3bb3070f6ad3..e3188ee9d430c 100644 --- a/clients/client-medialive/src/commands/DescribeChannelCommand.ts +++ b/clients/client-medialive/src/commands/DescribeChannelCommand.ts @@ -1290,6 +1290,7 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _ * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeChannelCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeChannelPlacementGroupCommand.ts b/clients/client-medialive/src/commands/DescribeChannelPlacementGroupCommand.ts index b5b79b9fd1873..429da9a8252f0 100644 --- a/clients/client-medialive/src/commands/DescribeChannelPlacementGroupCommand.ts +++ b/clients/client-medialive/src/commands/DescribeChannelPlacementGroupCommand.ts @@ -92,6 +92,7 @@ export interface DescribeChannelPlacementGroupCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeChannelPlacementGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeClusterCommand.ts b/clients/client-medialive/src/commands/DescribeClusterCommand.ts index 11e5bc221f0f9..80762a08e8f59 100644 --- a/clients/client-medialive/src/commands/DescribeClusterCommand.ts +++ b/clients/client-medialive/src/commands/DescribeClusterCommand.ts @@ -93,6 +93,7 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _ * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeClusterCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeInputCommand.ts b/clients/client-medialive/src/commands/DescribeInputCommand.ts index 28232c973010b..f38c42ed74b7d 100644 --- a/clients/client-medialive/src/commands/DescribeInputCommand.ts +++ b/clients/client-medialive/src/commands/DescribeInputCommand.ts @@ -153,6 +153,7 @@ export interface DescribeInputCommandOutput extends DescribeInputResponse, __Met * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeInputCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeInputDeviceCommand.ts b/clients/client-medialive/src/commands/DescribeInputDeviceCommand.ts index 685b9b6ba785c..f4aeca5af7dbb 100644 --- a/clients/client-medialive/src/commands/DescribeInputDeviceCommand.ts +++ b/clients/client-medialive/src/commands/DescribeInputDeviceCommand.ts @@ -136,6 +136,7 @@ export interface DescribeInputDeviceCommandOutput extends DescribeInputDeviceRes * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeInputDeviceCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeInputDeviceThumbnailCommand.ts b/clients/client-medialive/src/commands/DescribeInputDeviceThumbnailCommand.ts index 6164461a71974..140c2f23c33bb 100644 --- a/clients/client-medialive/src/commands/DescribeInputDeviceThumbnailCommand.ts +++ b/clients/client-medialive/src/commands/DescribeInputDeviceThumbnailCommand.ts @@ -52,6 +52,11 @@ export interface DescribeInputDeviceThumbnailCommandOutput * }; * const command = new DescribeInputDeviceThumbnailCommand(input); * const response = await client.send(command); + * // consume or destroy the stream to free the socket. + * const bytes = await response.Body.transformToByteArray(); + * // const str = await response.Body.transformToString(); + * // response.Body.destroy(); // only applicable to Node.js Readable streams. + * * // { // DescribeInputDeviceThumbnailResponse * // Body: "", // see \@smithy/types -> StreamingBlobPayloadOutputTypes * // ContentType: "image/jpeg", @@ -92,6 +97,7 @@ export interface DescribeInputDeviceThumbnailCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeInputDeviceThumbnailCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeInputSecurityGroupCommand.ts b/clients/client-medialive/src/commands/DescribeInputSecurityGroupCommand.ts index 02c054c3878ec..46bf0307a4d0c 100644 --- a/clients/client-medialive/src/commands/DescribeInputSecurityGroupCommand.ts +++ b/clients/client-medialive/src/commands/DescribeInputSecurityGroupCommand.ts @@ -89,6 +89,7 @@ export interface DescribeInputSecurityGroupCommandOutput extends DescribeInputSe * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeInputSecurityGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeMultiplexCommand.ts b/clients/client-medialive/src/commands/DescribeMultiplexCommand.ts index f6d38d3efbf4e..0a53e3b76030b 100644 --- a/clients/client-medialive/src/commands/DescribeMultiplexCommand.ts +++ b/clients/client-medialive/src/commands/DescribeMultiplexCommand.ts @@ -100,6 +100,7 @@ export interface DescribeMultiplexCommandOutput extends DescribeMultiplexRespons * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeMultiplexCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeMultiplexProgramCommand.ts b/clients/client-medialive/src/commands/DescribeMultiplexProgramCommand.ts index b29c9205c03a7..bf1b1b0448d07 100644 --- a/clients/client-medialive/src/commands/DescribeMultiplexProgramCommand.ts +++ b/clients/client-medialive/src/commands/DescribeMultiplexProgramCommand.ts @@ -129,6 +129,7 @@ export interface DescribeMultiplexProgramCommandOutput extends DescribeMultiplex * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeMultiplexProgramCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeNetworkCommand.ts b/clients/client-medialive/src/commands/DescribeNetworkCommand.ts index e05646614c36b..a48e5dda6e95e 100644 --- a/clients/client-medialive/src/commands/DescribeNetworkCommand.ts +++ b/clients/client-medialive/src/commands/DescribeNetworkCommand.ts @@ -93,6 +93,7 @@ export interface DescribeNetworkCommandOutput extends DescribeNetworkResponse, _ * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeNetworkCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeNodeCommand.ts b/clients/client-medialive/src/commands/DescribeNodeCommand.ts index 2f466c3890ce6..6399052a995fa 100644 --- a/clients/client-medialive/src/commands/DescribeNodeCommand.ts +++ b/clients/client-medialive/src/commands/DescribeNodeCommand.ts @@ -94,6 +94,7 @@ export interface DescribeNodeCommandOutput extends DescribeNodeResponse, __Metad * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeNodeCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeOfferingCommand.ts b/clients/client-medialive/src/commands/DescribeOfferingCommand.ts index 376863eec80ec..e003caccd5ff9 100644 --- a/clients/client-medialive/src/commands/DescribeOfferingCommand.ts +++ b/clients/client-medialive/src/commands/DescribeOfferingCommand.ts @@ -95,6 +95,7 @@ export interface DescribeOfferingCommandOutput extends DescribeOfferingResponse, * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeOfferingCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeReservationCommand.ts b/clients/client-medialive/src/commands/DescribeReservationCommand.ts index 3591dd1aefb63..05e5d26463e84 100644 --- a/clients/client-medialive/src/commands/DescribeReservationCommand.ts +++ b/clients/client-medialive/src/commands/DescribeReservationCommand.ts @@ -108,6 +108,7 @@ export interface DescribeReservationCommandOutput extends DescribeReservationRes * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeReservationCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeScheduleCommand.ts b/clients/client-medialive/src/commands/DescribeScheduleCommand.ts index 97e61ba469578..1da47beb82dff 100644 --- a/clients/client-medialive/src/commands/DescribeScheduleCommand.ts +++ b/clients/client-medialive/src/commands/DescribeScheduleCommand.ts @@ -238,6 +238,7 @@ export interface DescribeScheduleCommandOutput extends DescribeScheduleResponse, * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeScheduleCommand extends $Command diff --git a/clients/client-medialive/src/commands/DescribeThumbnailsCommand.ts b/clients/client-medialive/src/commands/DescribeThumbnailsCommand.ts index cb80f1c6ccea8..27f2461fef787 100644 --- a/clients/client-medialive/src/commands/DescribeThumbnailsCommand.ts +++ b/clients/client-medialive/src/commands/DescribeThumbnailsCommand.ts @@ -93,6 +93,7 @@ export interface DescribeThumbnailsCommandOutput extends DescribeThumbnailsRespo * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class DescribeThumbnailsCommand extends $Command diff --git a/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateCommand.ts b/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateCommand.ts index b2e8dc8250339..a4ff056a2aff1 100644 --- a/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateCommand.ts +++ b/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateCommand.ts @@ -88,6 +88,7 @@ export interface GetCloudWatchAlarmTemplateCommandOutput extends GetCloudWatchAl * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class GetCloudWatchAlarmTemplateCommand extends $Command diff --git a/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateGroupCommand.ts b/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateGroupCommand.ts index 7f5c203861a0e..99a68fbf68801 100644 --- a/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateGroupCommand.ts @@ -83,6 +83,7 @@ export interface GetCloudWatchAlarmTemplateGroupCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class GetCloudWatchAlarmTemplateGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateCommand.ts b/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateCommand.ts index a7c3c1d9b9fd7..bcba1010654e7 100644 --- a/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateCommand.ts +++ b/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateCommand.ts @@ -85,6 +85,7 @@ export interface GetEventBridgeRuleTemplateCommandOutput extends GetEventBridgeR * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class GetEventBridgeRuleTemplateCommand extends $Command diff --git a/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateGroupCommand.ts b/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateGroupCommand.ts index 2031f83d46fd1..39d8fc577ef76 100644 --- a/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateGroupCommand.ts @@ -83,6 +83,7 @@ export interface GetEventBridgeRuleTemplateGroupCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class GetEventBridgeRuleTemplateGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/GetSignalMapCommand.ts b/clients/client-medialive/src/commands/GetSignalMapCommand.ts index 82b1ad512e804..fb6a1414fad2d 100644 --- a/clients/client-medialive/src/commands/GetSignalMapCommand.ts +++ b/clients/client-medialive/src/commands/GetSignalMapCommand.ts @@ -132,6 +132,7 @@ export interface GetSignalMapCommandOutput extends GetSignalMapResponse, __Metad * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class GetSignalMapCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListChannelPlacementGroupsCommand.ts b/clients/client-medialive/src/commands/ListChannelPlacementGroupsCommand.ts index ed0867b726564..956b7a5ab1d61 100644 --- a/clients/client-medialive/src/commands/ListChannelPlacementGroupsCommand.ts +++ b/clients/client-medialive/src/commands/ListChannelPlacementGroupsCommand.ts @@ -90,6 +90,7 @@ export interface ListChannelPlacementGroupsCommandOutput extends ListChannelPlac * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListChannelPlacementGroupsCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListChannelsCommand.ts b/clients/client-medialive/src/commands/ListChannelsCommand.ts index 01274fb9351ed..fb89701aaa9f8 100644 --- a/clients/client-medialive/src/commands/ListChannelsCommand.ts +++ b/clients/client-medialive/src/commands/ListChannelsCommand.ts @@ -305,6 +305,7 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListChannelsCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplateGroupsCommand.ts b/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplateGroupsCommand.ts index 0219ffbaf0391..74ca2fb50ae9a 100644 --- a/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplateGroupsCommand.ts +++ b/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplateGroupsCommand.ts @@ -95,6 +95,7 @@ export interface ListCloudWatchAlarmTemplateGroupsCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListCloudWatchAlarmTemplateGroupsCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplatesCommand.ts b/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplatesCommand.ts index 4cee04935a7ee..d3f6a9a8ec7de 100644 --- a/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplatesCommand.ts +++ b/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplatesCommand.ts @@ -102,6 +102,7 @@ export interface ListCloudWatchAlarmTemplatesCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListCloudWatchAlarmTemplatesCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListClustersCommand.ts b/clients/client-medialive/src/commands/ListClustersCommand.ts index 5d9e0deb389cb..74a8fbabb6074 100644 --- a/clients/client-medialive/src/commands/ListClustersCommand.ts +++ b/clients/client-medialive/src/commands/ListClustersCommand.ts @@ -96,6 +96,7 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListClustersCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListEventBridgeRuleTemplateGroupsCommand.ts b/clients/client-medialive/src/commands/ListEventBridgeRuleTemplateGroupsCommand.ts index 51608ee1b8933..3544a060e40b4 100644 --- a/clients/client-medialive/src/commands/ListEventBridgeRuleTemplateGroupsCommand.ts +++ b/clients/client-medialive/src/commands/ListEventBridgeRuleTemplateGroupsCommand.ts @@ -94,6 +94,7 @@ export interface ListEventBridgeRuleTemplateGroupsCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListEventBridgeRuleTemplateGroupsCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListEventBridgeRuleTemplatesCommand.ts b/clients/client-medialive/src/commands/ListEventBridgeRuleTemplatesCommand.ts index cafa3197c5acc..dbae29df69162 100644 --- a/clients/client-medialive/src/commands/ListEventBridgeRuleTemplatesCommand.ts +++ b/clients/client-medialive/src/commands/ListEventBridgeRuleTemplatesCommand.ts @@ -94,6 +94,7 @@ export interface ListEventBridgeRuleTemplatesCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListEventBridgeRuleTemplatesCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListInputDeviceTransfersCommand.ts b/clients/client-medialive/src/commands/ListInputDeviceTransfersCommand.ts index 089aaf2653397..2479f28f592d6 100644 --- a/clients/client-medialive/src/commands/ListInputDeviceTransfersCommand.ts +++ b/clients/client-medialive/src/commands/ListInputDeviceTransfersCommand.ts @@ -86,6 +86,7 @@ export interface ListInputDeviceTransfersCommandOutput extends ListInputDeviceTr * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListInputDeviceTransfersCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListInputDevicesCommand.ts b/clients/client-medialive/src/commands/ListInputDevicesCommand.ts index 9209ba753bed3..1cce39383d2a4 100644 --- a/clients/client-medialive/src/commands/ListInputDevicesCommand.ts +++ b/clients/client-medialive/src/commands/ListInputDevicesCommand.ts @@ -139,6 +139,7 @@ export interface ListInputDevicesCommandOutput extends ListInputDevicesResponse, * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListInputDevicesCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListInputSecurityGroupsCommand.ts b/clients/client-medialive/src/commands/ListInputSecurityGroupsCommand.ts index 870a7edf7ede1..aff6cf335c77d 100644 --- a/clients/client-medialive/src/commands/ListInputSecurityGroupsCommand.ts +++ b/clients/client-medialive/src/commands/ListInputSecurityGroupsCommand.ts @@ -92,6 +92,7 @@ export interface ListInputSecurityGroupsCommandOutput extends ListInputSecurityG * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListInputSecurityGroupsCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListInputsCommand.ts b/clients/client-medialive/src/commands/ListInputsCommand.ts index ea9322dc21e50..589ef904b6578 100644 --- a/clients/client-medialive/src/commands/ListInputsCommand.ts +++ b/clients/client-medialive/src/commands/ListInputsCommand.ts @@ -156,6 +156,7 @@ export interface ListInputsCommandOutput extends ListInputsResponse, __MetadataB * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListInputsCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListMultiplexProgramsCommand.ts b/clients/client-medialive/src/commands/ListMultiplexProgramsCommand.ts index fc3d7f7700cd9..f645f825fb732 100644 --- a/clients/client-medialive/src/commands/ListMultiplexProgramsCommand.ts +++ b/clients/client-medialive/src/commands/ListMultiplexProgramsCommand.ts @@ -84,6 +84,7 @@ export interface ListMultiplexProgramsCommandOutput extends ListMultiplexProgram * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListMultiplexProgramsCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListMultiplexesCommand.ts b/clients/client-medialive/src/commands/ListMultiplexesCommand.ts index c249738779664..87887b85b8bcb 100644 --- a/clients/client-medialive/src/commands/ListMultiplexesCommand.ts +++ b/clients/client-medialive/src/commands/ListMultiplexesCommand.ts @@ -93,6 +93,7 @@ export interface ListMultiplexesCommandOutput extends ListMultiplexesResponse, _ * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListMultiplexesCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListNetworksCommand.ts b/clients/client-medialive/src/commands/ListNetworksCommand.ts index eecfd3bd3959f..d47329b221399 100644 --- a/clients/client-medialive/src/commands/ListNetworksCommand.ts +++ b/clients/client-medialive/src/commands/ListNetworksCommand.ts @@ -96,6 +96,7 @@ export interface ListNetworksCommandOutput extends ListNetworksResponse, __Metad * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListNetworksCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListNodesCommand.ts b/clients/client-medialive/src/commands/ListNodesCommand.ts index 25d966c69ac6a..0a9b06da85b90 100644 --- a/clients/client-medialive/src/commands/ListNodesCommand.ts +++ b/clients/client-medialive/src/commands/ListNodesCommand.ts @@ -98,6 +98,7 @@ export interface ListNodesCommandOutput extends ListNodesResponse, __MetadataBea * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListNodesCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListOfferingsCommand.ts b/clients/client-medialive/src/commands/ListOfferingsCommand.ts index bc7687db989dd..8565fa5ec12e6 100644 --- a/clients/client-medialive/src/commands/ListOfferingsCommand.ts +++ b/clients/client-medialive/src/commands/ListOfferingsCommand.ts @@ -108,6 +108,7 @@ export interface ListOfferingsCommandOutput extends ListOfferingsResponse, __Met * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListOfferingsCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListReservationsCommand.ts b/clients/client-medialive/src/commands/ListReservationsCommand.ts index 48e212f9676e3..62c28f8700738 100644 --- a/clients/client-medialive/src/commands/ListReservationsCommand.ts +++ b/clients/client-medialive/src/commands/ListReservationsCommand.ts @@ -119,6 +119,7 @@ export interface ListReservationsCommandOutput extends ListReservationsResponse, * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListReservationsCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListSignalMapsCommand.ts b/clients/client-medialive/src/commands/ListSignalMapsCommand.ts index 251e35f8ac9f1..d3a0f6ca63e25 100644 --- a/clients/client-medialive/src/commands/ListSignalMapsCommand.ts +++ b/clients/client-medialive/src/commands/ListSignalMapsCommand.ts @@ -88,6 +88,7 @@ export interface ListSignalMapsCommandOutput extends ListSignalMapsResponse, __M * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListSignalMapsCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListTagsForResourceCommand.ts b/clients/client-medialive/src/commands/ListTagsForResourceCommand.ts index 9874af98bd97e..7996bd8d9dfb2 100644 --- a/clients/client-medialive/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-medialive/src/commands/ListTagsForResourceCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-medialive/src/commands/ListVersionsCommand.ts b/clients/client-medialive/src/commands/ListVersionsCommand.ts index 63ce787a1d2a4..2ff5847d7305d 100644 --- a/clients/client-medialive/src/commands/ListVersionsCommand.ts +++ b/clients/client-medialive/src/commands/ListVersionsCommand.ts @@ -82,6 +82,7 @@ export interface ListVersionsCommandOutput extends ListVersionsResponse, __Metad * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class ListVersionsCommand extends $Command diff --git a/clients/client-medialive/src/commands/PurchaseOfferingCommand.ts b/clients/client-medialive/src/commands/PurchaseOfferingCommand.ts index 1c641c7b31deb..e3f5cd9f7d9b8 100644 --- a/clients/client-medialive/src/commands/PurchaseOfferingCommand.ts +++ b/clients/client-medialive/src/commands/PurchaseOfferingCommand.ts @@ -124,6 +124,7 @@ export interface PurchaseOfferingCommandOutput extends PurchaseOfferingResponse, * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class PurchaseOfferingCommand extends $Command diff --git a/clients/client-medialive/src/commands/RebootInputDeviceCommand.ts b/clients/client-medialive/src/commands/RebootInputDeviceCommand.ts index 9c881bafe2361..154f82e0a4974 100644 --- a/clients/client-medialive/src/commands/RebootInputDeviceCommand.ts +++ b/clients/client-medialive/src/commands/RebootInputDeviceCommand.ts @@ -78,6 +78,7 @@ export interface RebootInputDeviceCommandOutput extends RebootInputDeviceRespons * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class RebootInputDeviceCommand extends $Command diff --git a/clients/client-medialive/src/commands/RejectInputDeviceTransferCommand.ts b/clients/client-medialive/src/commands/RejectInputDeviceTransferCommand.ts index 625f2eeb8a4d3..71dfd39c09757 100644 --- a/clients/client-medialive/src/commands/RejectInputDeviceTransferCommand.ts +++ b/clients/client-medialive/src/commands/RejectInputDeviceTransferCommand.ts @@ -80,6 +80,7 @@ export interface RejectInputDeviceTransferCommandOutput extends RejectInputDevic * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class RejectInputDeviceTransferCommand extends $Command diff --git a/clients/client-medialive/src/commands/RestartChannelPipelinesCommand.ts b/clients/client-medialive/src/commands/RestartChannelPipelinesCommand.ts index 3d123aacfeb8d..71dbbf27807da 100644 --- a/clients/client-medialive/src/commands/RestartChannelPipelinesCommand.ts +++ b/clients/client-medialive/src/commands/RestartChannelPipelinesCommand.ts @@ -1297,6 +1297,7 @@ export interface RestartChannelPipelinesCommandOutput extends RestartChannelPipe * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class RestartChannelPipelinesCommand extends $Command diff --git a/clients/client-medialive/src/commands/StartChannelCommand.ts b/clients/client-medialive/src/commands/StartChannelCommand.ts index b91b7dba5584e..1c963de37d993 100644 --- a/clients/client-medialive/src/commands/StartChannelCommand.ts +++ b/clients/client-medialive/src/commands/StartChannelCommand.ts @@ -1293,6 +1293,7 @@ export interface StartChannelCommandOutput extends StartChannelResponse, __Metad * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class StartChannelCommand extends $Command diff --git a/clients/client-medialive/src/commands/StartDeleteMonitorDeploymentCommand.ts b/clients/client-medialive/src/commands/StartDeleteMonitorDeploymentCommand.ts index 05971d6e2b0f2..5e49a6bcad200 100644 --- a/clients/client-medialive/src/commands/StartDeleteMonitorDeploymentCommand.ts +++ b/clients/client-medialive/src/commands/StartDeleteMonitorDeploymentCommand.ts @@ -140,6 +140,7 @@ export interface StartDeleteMonitorDeploymentCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class StartDeleteMonitorDeploymentCommand extends $Command diff --git a/clients/client-medialive/src/commands/StartInputDeviceCommand.ts b/clients/client-medialive/src/commands/StartInputDeviceCommand.ts index 9211b9879d8c5..1a9d840f197af 100644 --- a/clients/client-medialive/src/commands/StartInputDeviceCommand.ts +++ b/clients/client-medialive/src/commands/StartInputDeviceCommand.ts @@ -77,6 +77,7 @@ export interface StartInputDeviceCommandOutput extends StartInputDeviceResponse, * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class StartInputDeviceCommand extends $Command diff --git a/clients/client-medialive/src/commands/StartInputDeviceMaintenanceWindowCommand.ts b/clients/client-medialive/src/commands/StartInputDeviceMaintenanceWindowCommand.ts index eaa61bad66c2d..62e742ff6ffcc 100644 --- a/clients/client-medialive/src/commands/StartInputDeviceMaintenanceWindowCommand.ts +++ b/clients/client-medialive/src/commands/StartInputDeviceMaintenanceWindowCommand.ts @@ -85,6 +85,7 @@ export interface StartInputDeviceMaintenanceWindowCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class StartInputDeviceMaintenanceWindowCommand extends $Command diff --git a/clients/client-medialive/src/commands/StartMonitorDeploymentCommand.ts b/clients/client-medialive/src/commands/StartMonitorDeploymentCommand.ts index 16a99fa392f83..90afe19eb4082 100644 --- a/clients/client-medialive/src/commands/StartMonitorDeploymentCommand.ts +++ b/clients/client-medialive/src/commands/StartMonitorDeploymentCommand.ts @@ -136,6 +136,7 @@ export interface StartMonitorDeploymentCommandOutput extends StartMonitorDeploym * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class StartMonitorDeploymentCommand extends $Command diff --git a/clients/client-medialive/src/commands/StartMultiplexCommand.ts b/clients/client-medialive/src/commands/StartMultiplexCommand.ts index 5ac50defb02c1..defe5f363ac03 100644 --- a/clients/client-medialive/src/commands/StartMultiplexCommand.ts +++ b/clients/client-medialive/src/commands/StartMultiplexCommand.ts @@ -103,6 +103,7 @@ export interface StartMultiplexCommandOutput extends StartMultiplexResponse, __M * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class StartMultiplexCommand extends $Command diff --git a/clients/client-medialive/src/commands/StartUpdateSignalMapCommand.ts b/clients/client-medialive/src/commands/StartUpdateSignalMapCommand.ts index e5e34417841ac..4a4b1f48120c2 100644 --- a/clients/client-medialive/src/commands/StartUpdateSignalMapCommand.ts +++ b/clients/client-medialive/src/commands/StartUpdateSignalMapCommand.ts @@ -145,6 +145,7 @@ export interface StartUpdateSignalMapCommandOutput extends StartUpdateSignalMapR * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class StartUpdateSignalMapCommand extends $Command diff --git a/clients/client-medialive/src/commands/StopChannelCommand.ts b/clients/client-medialive/src/commands/StopChannelCommand.ts index 9c3525a493d2f..c58dd8af3d963 100644 --- a/clients/client-medialive/src/commands/StopChannelCommand.ts +++ b/clients/client-medialive/src/commands/StopChannelCommand.ts @@ -1293,6 +1293,7 @@ export interface StopChannelCommandOutput extends StopChannelResponse, __Metadat * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class StopChannelCommand extends $Command diff --git a/clients/client-medialive/src/commands/StopInputDeviceCommand.ts b/clients/client-medialive/src/commands/StopInputDeviceCommand.ts index b403f0a10d307..24c27f37d2956 100644 --- a/clients/client-medialive/src/commands/StopInputDeviceCommand.ts +++ b/clients/client-medialive/src/commands/StopInputDeviceCommand.ts @@ -77,6 +77,7 @@ export interface StopInputDeviceCommandOutput extends StopInputDeviceResponse, _ * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class StopInputDeviceCommand extends $Command diff --git a/clients/client-medialive/src/commands/StopMultiplexCommand.ts b/clients/client-medialive/src/commands/StopMultiplexCommand.ts index cc0b44de56250..3fde5d1bda116 100644 --- a/clients/client-medialive/src/commands/StopMultiplexCommand.ts +++ b/clients/client-medialive/src/commands/StopMultiplexCommand.ts @@ -103,6 +103,7 @@ export interface StopMultiplexCommandOutput extends StopMultiplexResponse, __Met * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class StopMultiplexCommand extends $Command diff --git a/clients/client-medialive/src/commands/TransferInputDeviceCommand.ts b/clients/client-medialive/src/commands/TransferInputDeviceCommand.ts index 7a5199c2260c8..318f4cfa2af0d 100644 --- a/clients/client-medialive/src/commands/TransferInputDeviceCommand.ts +++ b/clients/client-medialive/src/commands/TransferInputDeviceCommand.ts @@ -83,6 +83,7 @@ export interface TransferInputDeviceCommandOutput extends TransferInputDeviceRes * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class TransferInputDeviceCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateAccountConfigurationCommand.ts b/clients/client-medialive/src/commands/UpdateAccountConfigurationCommand.ts index 30d87e15e3fc4..0f4b7a93da105 100644 --- a/clients/client-medialive/src/commands/UpdateAccountConfigurationCommand.ts +++ b/clients/client-medialive/src/commands/UpdateAccountConfigurationCommand.ts @@ -80,6 +80,7 @@ export interface UpdateAccountConfigurationCommandOutput extends UpdateAccountCo * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateAccountConfigurationCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateChannelClassCommand.ts b/clients/client-medialive/src/commands/UpdateChannelClassCommand.ts index 5efc29d9d552e..981446f1bc82b 100644 --- a/clients/client-medialive/src/commands/UpdateChannelClassCommand.ts +++ b/clients/client-medialive/src/commands/UpdateChannelClassCommand.ts @@ -1330,6 +1330,7 @@ export interface UpdateChannelClassCommandOutput extends UpdateChannelClassRespo * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateChannelClassCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateChannelCommand.ts b/clients/client-medialive/src/commands/UpdateChannelCommand.ts index 4e8352cd1301e..4dbaabca37ed8 100644 --- a/clients/client-medialive/src/commands/UpdateChannelCommand.ts +++ b/clients/client-medialive/src/commands/UpdateChannelCommand.ts @@ -2470,6 +2470,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateChannelCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateChannelPlacementGroupCommand.ts b/clients/client-medialive/src/commands/UpdateChannelPlacementGroupCommand.ts index 2153816b6bd00..7cf2d746fa364 100644 --- a/clients/client-medialive/src/commands/UpdateChannelPlacementGroupCommand.ts +++ b/clients/client-medialive/src/commands/UpdateChannelPlacementGroupCommand.ts @@ -99,6 +99,7 @@ export interface UpdateChannelPlacementGroupCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateChannelPlacementGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateCommand.ts b/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateCommand.ts index fbdabbeff20be..b192ba5096258 100644 --- a/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateCommand.ts +++ b/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateCommand.ts @@ -108,6 +108,7 @@ export interface UpdateCloudWatchAlarmTemplateCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateCloudWatchAlarmTemplateCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateGroupCommand.ts b/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateGroupCommand.ts index a1b69339ee9ce..9d0f710fc0083 100644 --- a/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateGroupCommand.ts @@ -90,6 +90,7 @@ export interface UpdateCloudWatchAlarmTemplateGroupCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateCloudWatchAlarmTemplateGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateClusterCommand.ts b/clients/client-medialive/src/commands/UpdateClusterCommand.ts index 67d04ce76bc8e..b7652ca07ad73 100644 --- a/clients/client-medialive/src/commands/UpdateClusterCommand.ts +++ b/clients/client-medialive/src/commands/UpdateClusterCommand.ts @@ -102,6 +102,7 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateClusterCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateCommand.ts b/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateCommand.ts index 8bbcaef87f027..e42cf74d8ceb7 100644 --- a/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateCommand.ts +++ b/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateCommand.ts @@ -102,6 +102,7 @@ export interface UpdateEventBridgeRuleTemplateCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateEventBridgeRuleTemplateCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateGroupCommand.ts b/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateGroupCommand.ts index 85628dc303bb3..ff269a1b38626 100644 --- a/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateGroupCommand.ts @@ -90,6 +90,7 @@ export interface UpdateEventBridgeRuleTemplateGroupCommandOutput * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateEventBridgeRuleTemplateGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateInputCommand.ts b/clients/client-medialive/src/commands/UpdateInputCommand.ts index ad294923e18d5..261f7202b7d06 100644 --- a/clients/client-medialive/src/commands/UpdateInputCommand.ts +++ b/clients/client-medialive/src/commands/UpdateInputCommand.ts @@ -212,6 +212,7 @@ export interface UpdateInputCommandOutput extends UpdateInputResponse, __Metadat * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateInputCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateInputDeviceCommand.ts b/clients/client-medialive/src/commands/UpdateInputDeviceCommand.ts index 9e07c99764433..39b986c3d8c1e 100644 --- a/clients/client-medialive/src/commands/UpdateInputDeviceCommand.ts +++ b/clients/client-medialive/src/commands/UpdateInputDeviceCommand.ts @@ -177,6 +177,7 @@ export interface UpdateInputDeviceCommandOutput extends UpdateInputDeviceRespons * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateInputDeviceCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateInputSecurityGroupCommand.ts b/clients/client-medialive/src/commands/UpdateInputSecurityGroupCommand.ts index f6c78fc373b8a..eb5555160492f 100644 --- a/clients/client-medialive/src/commands/UpdateInputSecurityGroupCommand.ts +++ b/clients/client-medialive/src/commands/UpdateInputSecurityGroupCommand.ts @@ -99,6 +99,7 @@ export interface UpdateInputSecurityGroupCommandOutput extends UpdateInputSecuri * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateInputSecurityGroupCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateMultiplexCommand.ts b/clients/client-medialive/src/commands/UpdateMultiplexCommand.ts index 4500685a8442d..224a97eda6b89 100644 --- a/clients/client-medialive/src/commands/UpdateMultiplexCommand.ts +++ b/clients/client-medialive/src/commands/UpdateMultiplexCommand.ts @@ -143,6 +143,7 @@ export interface UpdateMultiplexCommandOutput extends UpdateMultiplexResponse, _ * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateMultiplexCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateMultiplexProgramCommand.ts b/clients/client-medialive/src/commands/UpdateMultiplexProgramCommand.ts index bb6fe11508a8b..65190b21679d8 100644 --- a/clients/client-medialive/src/commands/UpdateMultiplexProgramCommand.ts +++ b/clients/client-medialive/src/commands/UpdateMultiplexProgramCommand.ts @@ -150,6 +150,7 @@ export interface UpdateMultiplexProgramCommandOutput extends UpdateMultiplexProg * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateMultiplexProgramCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateNetworkCommand.ts b/clients/client-medialive/src/commands/UpdateNetworkCommand.ts index d6a49219db109..a0387c972a43a 100644 --- a/clients/client-medialive/src/commands/UpdateNetworkCommand.ts +++ b/clients/client-medialive/src/commands/UpdateNetworkCommand.ts @@ -105,6 +105,7 @@ export interface UpdateNetworkCommandOutput extends UpdateNetworkResponse, __Met * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateNetworkCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateNodeCommand.ts b/clients/client-medialive/src/commands/UpdateNodeCommand.ts index 038a340ca7515..0e90d4a2b755f 100644 --- a/clients/client-medialive/src/commands/UpdateNodeCommand.ts +++ b/clients/client-medialive/src/commands/UpdateNodeCommand.ts @@ -96,6 +96,7 @@ export interface UpdateNodeCommandOutput extends UpdateNodeResponse, __MetadataB * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateNodeCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateNodeStateCommand.ts b/clients/client-medialive/src/commands/UpdateNodeStateCommand.ts index b350176f76d96..f837d62c2eeba 100644 --- a/clients/client-medialive/src/commands/UpdateNodeStateCommand.ts +++ b/clients/client-medialive/src/commands/UpdateNodeStateCommand.ts @@ -98,6 +98,7 @@ export interface UpdateNodeStateCommandOutput extends UpdateNodeStateResponse, _ * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateNodeStateCommand extends $Command diff --git a/clients/client-medialive/src/commands/UpdateReservationCommand.ts b/clients/client-medialive/src/commands/UpdateReservationCommand.ts index 63ef4e1e3fa1d..177ed178c6a53 100644 --- a/clients/client-medialive/src/commands/UpdateReservationCommand.ts +++ b/clients/client-medialive/src/commands/UpdateReservationCommand.ts @@ -118,6 +118,7 @@ export interface UpdateReservationCommandOutput extends UpdateReservationRespons * @throws {@link MediaLiveServiceException} *

Base exception class for all service exceptions from MediaLive service.

* + * * @public */ export class UpdateReservationCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/ConfigureLogsCommand.ts b/clients/client-mediapackage-vod/src/commands/ConfigureLogsCommand.ts index ab78a41e7c45e..a2971aa0c031c 100644 --- a/clients/client-mediapackage-vod/src/commands/ConfigureLogsCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/ConfigureLogsCommand.ts @@ -89,6 +89,7 @@ export interface ConfigureLogsCommandOutput extends ConfigureLogsResponse, __Met * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class ConfigureLogsCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/CreateAssetCommand.ts b/clients/client-mediapackage-vod/src/commands/CreateAssetCommand.ts index 3fe6c7cb7ae64..21f1a7d1e5568 100644 --- a/clients/client-mediapackage-vod/src/commands/CreateAssetCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/CreateAssetCommand.ts @@ -96,6 +96,7 @@ export interface CreateAssetCommandOutput extends CreateAssetResponse, __Metadat * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class CreateAssetCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/CreatePackagingConfigurationCommand.ts b/clients/client-mediapackage-vod/src/commands/CreatePackagingConfigurationCommand.ts index ddf89b9e56256..5a0120c14b283 100644 --- a/clients/client-mediapackage-vod/src/commands/CreatePackagingConfigurationCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/CreatePackagingConfigurationCommand.ts @@ -344,6 +344,7 @@ export interface CreatePackagingConfigurationCommandOutput * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class CreatePackagingConfigurationCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/CreatePackagingGroupCommand.ts b/clients/client-mediapackage-vod/src/commands/CreatePackagingGroupCommand.ts index c86d69ee71481..8359f4e341e13 100644 --- a/clients/client-mediapackage-vod/src/commands/CreatePackagingGroupCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/CreatePackagingGroupCommand.ts @@ -96,6 +96,7 @@ export interface CreatePackagingGroupCommandOutput extends CreatePackagingGroupR * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class CreatePackagingGroupCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/DeleteAssetCommand.ts b/clients/client-mediapackage-vod/src/commands/DeleteAssetCommand.ts index 3e08fddc78b14..ceb3354155371 100644 --- a/clients/client-mediapackage-vod/src/commands/DeleteAssetCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/DeleteAssetCommand.ts @@ -71,6 +71,7 @@ export interface DeleteAssetCommandOutput extends DeleteAssetResponse, __Metadat * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class DeleteAssetCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/DeletePackagingConfigurationCommand.ts b/clients/client-mediapackage-vod/src/commands/DeletePackagingConfigurationCommand.ts index 79003a85d10ba..871faa77100e9 100644 --- a/clients/client-mediapackage-vod/src/commands/DeletePackagingConfigurationCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/DeletePackagingConfigurationCommand.ts @@ -76,6 +76,7 @@ export interface DeletePackagingConfigurationCommandOutput * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class DeletePackagingConfigurationCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/DeletePackagingGroupCommand.ts b/clients/client-mediapackage-vod/src/commands/DeletePackagingGroupCommand.ts index c561b2e47a362..80c2cf18a7c2f 100644 --- a/clients/client-mediapackage-vod/src/commands/DeletePackagingGroupCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/DeletePackagingGroupCommand.ts @@ -71,6 +71,7 @@ export interface DeletePackagingGroupCommandOutput extends DeletePackagingGroupR * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class DeletePackagingGroupCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/DescribeAssetCommand.ts b/clients/client-mediapackage-vod/src/commands/DescribeAssetCommand.ts index c57e01672ccaf..73b78c6924886 100644 --- a/clients/client-mediapackage-vod/src/commands/DescribeAssetCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/DescribeAssetCommand.ts @@ -89,6 +89,7 @@ export interface DescribeAssetCommandOutput extends DescribeAssetResponse, __Met * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class DescribeAssetCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/DescribePackagingConfigurationCommand.ts b/clients/client-mediapackage-vod/src/commands/DescribePackagingConfigurationCommand.ts index 9bb790c95fbba..eba75ceed7564 100644 --- a/clients/client-mediapackage-vod/src/commands/DescribePackagingConfigurationCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/DescribePackagingConfigurationCommand.ts @@ -212,6 +212,7 @@ export interface DescribePackagingConfigurationCommandOutput * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class DescribePackagingConfigurationCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/DescribePackagingGroupCommand.ts b/clients/client-mediapackage-vod/src/commands/DescribePackagingGroupCommand.ts index e4ab22a151ba2..d7eb440b203e6 100644 --- a/clients/client-mediapackage-vod/src/commands/DescribePackagingGroupCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/DescribePackagingGroupCommand.ts @@ -87,6 +87,7 @@ export interface DescribePackagingGroupCommandOutput extends DescribePackagingGr * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class DescribePackagingGroupCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/ListAssetsCommand.ts b/clients/client-mediapackage-vod/src/commands/ListAssetsCommand.ts index 760d290dd640a..36fca50992ad3 100644 --- a/clients/client-mediapackage-vod/src/commands/ListAssetsCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/ListAssetsCommand.ts @@ -89,6 +89,7 @@ export interface ListAssetsCommandOutput extends ListAssetsResponse, __MetadataB * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class ListAssetsCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/ListPackagingConfigurationsCommand.ts b/clients/client-mediapackage-vod/src/commands/ListPackagingConfigurationsCommand.ts index 91ffdd9fc8b24..603b85a9322fc 100644 --- a/clients/client-mediapackage-vod/src/commands/ListPackagingConfigurationsCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/ListPackagingConfigurationsCommand.ts @@ -219,6 +219,7 @@ export interface ListPackagingConfigurationsCommandOutput * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class ListPackagingConfigurationsCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/ListPackagingGroupsCommand.ts b/clients/client-mediapackage-vod/src/commands/ListPackagingGroupsCommand.ts index 5df039c2968d0..d2561d0e5ece0 100644 --- a/clients/client-mediapackage-vod/src/commands/ListPackagingGroupsCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/ListPackagingGroupsCommand.ts @@ -93,6 +93,7 @@ export interface ListPackagingGroupsCommandOutput extends ListPackagingGroupsRes * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class ListPackagingGroupsCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/ListTagsForResourceCommand.ts b/clients/client-mediapackage-vod/src/commands/ListTagsForResourceCommand.ts index 41e7025390878..5827cd262b6f1 100644 --- a/clients/client-mediapackage-vod/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/ListTagsForResourceCommand.ts @@ -57,6 +57,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/TagResourceCommand.ts b/clients/client-mediapackage-vod/src/commands/TagResourceCommand.ts index 8ba981ccdc9dd..6894878323729 100644 --- a/clients/client-mediapackage-vod/src/commands/TagResourceCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/TagResourceCommand.ts @@ -56,6 +56,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/UntagResourceCommand.ts b/clients/client-mediapackage-vod/src/commands/UntagResourceCommand.ts index faccb18322bba..ddce57fe94333 100644 --- a/clients/client-mediapackage-vod/src/commands/UntagResourceCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/UntagResourceCommand.ts @@ -56,6 +56,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-mediapackage-vod/src/commands/UpdatePackagingGroupCommand.ts b/clients/client-mediapackage-vod/src/commands/UpdatePackagingGroupCommand.ts index 34b3afa4fb761..9f893f4c005b0 100644 --- a/clients/client-mediapackage-vod/src/commands/UpdatePackagingGroupCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/UpdatePackagingGroupCommand.ts @@ -91,6 +91,7 @@ export interface UpdatePackagingGroupCommandOutput extends UpdatePackagingGroupR * @throws {@link MediaPackageVodServiceException} *

Base exception class for all service exceptions from MediaPackageVod service.

* + * * @public */ export class UpdatePackagingGroupCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/ConfigureLogsCommand.ts b/clients/client-mediapackage/src/commands/ConfigureLogsCommand.ts index 5fc0ad6ea147b..f6e4deb1290fc 100644 --- a/clients/client-mediapackage/src/commands/ConfigureLogsCommand.ts +++ b/clients/client-mediapackage/src/commands/ConfigureLogsCommand.ts @@ -105,6 +105,7 @@ export interface ConfigureLogsCommandOutput extends ConfigureLogsResponse, __Met * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class ConfigureLogsCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/CreateChannelCommand.ts b/clients/client-mediapackage/src/commands/CreateChannelCommand.ts index 800b091605731..bceb3d9260e49 100644 --- a/clients/client-mediapackage/src/commands/CreateChannelCommand.ts +++ b/clients/client-mediapackage/src/commands/CreateChannelCommand.ts @@ -103,6 +103,7 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class CreateChannelCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/CreateHarvestJobCommand.ts b/clients/client-mediapackage/src/commands/CreateHarvestJobCommand.ts index 5a0eadb8c282b..7f974b6c0016c 100644 --- a/clients/client-mediapackage/src/commands/CreateHarvestJobCommand.ts +++ b/clients/client-mediapackage/src/commands/CreateHarvestJobCommand.ts @@ -93,6 +93,7 @@ export interface CreateHarvestJobCommandOutput extends CreateHarvestJobResponse, * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class CreateHarvestJobCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/CreateOriginEndpointCommand.ts b/clients/client-mediapackage/src/commands/CreateOriginEndpointCommand.ts index 1c1ff31348d13..e6e7e4b013d31 100644 --- a/clients/client-mediapackage/src/commands/CreateOriginEndpointCommand.ts +++ b/clients/client-mediapackage/src/commands/CreateOriginEndpointCommand.ts @@ -399,6 +399,7 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class CreateOriginEndpointCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/DeleteChannelCommand.ts b/clients/client-mediapackage/src/commands/DeleteChannelCommand.ts index d88c093812ca7..e189919a0dcfc 100644 --- a/clients/client-mediapackage/src/commands/DeleteChannelCommand.ts +++ b/clients/client-mediapackage/src/commands/DeleteChannelCommand.ts @@ -71,6 +71,7 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class DeleteChannelCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/DeleteOriginEndpointCommand.ts b/clients/client-mediapackage/src/commands/DeleteOriginEndpointCommand.ts index 525a1dd9052fb..95a2aac80f1a4 100644 --- a/clients/client-mediapackage/src/commands/DeleteOriginEndpointCommand.ts +++ b/clients/client-mediapackage/src/commands/DeleteOriginEndpointCommand.ts @@ -71,6 +71,7 @@ export interface DeleteOriginEndpointCommandOutput extends DeleteOriginEndpointR * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class DeleteOriginEndpointCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/DescribeChannelCommand.ts b/clients/client-mediapackage/src/commands/DescribeChannelCommand.ts index 300ef395a8e95..0b433ed07506c 100644 --- a/clients/client-mediapackage/src/commands/DescribeChannelCommand.ts +++ b/clients/client-mediapackage/src/commands/DescribeChannelCommand.ts @@ -99,6 +99,7 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _ * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class DescribeChannelCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/DescribeHarvestJobCommand.ts b/clients/client-mediapackage/src/commands/DescribeHarvestJobCommand.ts index a5cb3e083c181..e00b857c0cd38 100644 --- a/clients/client-mediapackage/src/commands/DescribeHarvestJobCommand.ts +++ b/clients/client-mediapackage/src/commands/DescribeHarvestJobCommand.ts @@ -85,6 +85,7 @@ export interface DescribeHarvestJobCommandOutput extends DescribeHarvestJobRespo * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class DescribeHarvestJobCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/DescribeOriginEndpointCommand.ts b/clients/client-mediapackage/src/commands/DescribeOriginEndpointCommand.ts index cb002b11a8edb..be2cba8afb287 100644 --- a/clients/client-mediapackage/src/commands/DescribeOriginEndpointCommand.ts +++ b/clients/client-mediapackage/src/commands/DescribeOriginEndpointCommand.ts @@ -238,6 +238,7 @@ export interface DescribeOriginEndpointCommandOutput extends DescribeOriginEndpo * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class DescribeOriginEndpointCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/ListChannelsCommand.ts b/clients/client-mediapackage/src/commands/ListChannelsCommand.ts index 42ba3b5d3ab05..10a2ad452ba87 100644 --- a/clients/client-mediapackage/src/commands/ListChannelsCommand.ts +++ b/clients/client-mediapackage/src/commands/ListChannelsCommand.ts @@ -101,6 +101,7 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class ListChannelsCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/ListHarvestJobsCommand.ts b/clients/client-mediapackage/src/commands/ListHarvestJobsCommand.ts index 77fd31fe5526a..a2cb18480b574 100644 --- a/clients/client-mediapackage/src/commands/ListHarvestJobsCommand.ts +++ b/clients/client-mediapackage/src/commands/ListHarvestJobsCommand.ts @@ -93,6 +93,7 @@ export interface ListHarvestJobsCommandOutput extends ListHarvestJobsResponse, _ * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class ListHarvestJobsCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/ListOriginEndpointsCommand.ts b/clients/client-mediapackage/src/commands/ListOriginEndpointsCommand.ts index 7a7086aa003d0..12162b79a73cd 100644 --- a/clients/client-mediapackage/src/commands/ListOriginEndpointsCommand.ts +++ b/clients/client-mediapackage/src/commands/ListOriginEndpointsCommand.ts @@ -245,6 +245,7 @@ export interface ListOriginEndpointsCommandOutput extends ListOriginEndpointsRes * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class ListOriginEndpointsCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/ListTagsForResourceCommand.ts b/clients/client-mediapackage/src/commands/ListTagsForResourceCommand.ts index 7444beb1bc5db..ed71ee89bb571 100644 --- a/clients/client-mediapackage/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mediapackage/src/commands/ListTagsForResourceCommand.ts @@ -58,6 +58,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackage/src/commands/RotateChannelCredentialsCommand.ts b/clients/client-mediapackage/src/commands/RotateChannelCredentialsCommand.ts index 15dfd6ae8c0de..facd89e607084 100644 --- a/clients/client-mediapackage/src/commands/RotateChannelCredentialsCommand.ts +++ b/clients/client-mediapackage/src/commands/RotateChannelCredentialsCommand.ts @@ -101,6 +101,7 @@ export interface RotateChannelCredentialsCommandOutput extends RotateChannelCred * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class RotateChannelCredentialsCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/RotateIngestEndpointCredentialsCommand.ts b/clients/client-mediapackage/src/commands/RotateIngestEndpointCredentialsCommand.ts index 7de2b154a4ba5..1b4b01b7519b9 100644 --- a/clients/client-mediapackage/src/commands/RotateIngestEndpointCredentialsCommand.ts +++ b/clients/client-mediapackage/src/commands/RotateIngestEndpointCredentialsCommand.ts @@ -105,6 +105,7 @@ export interface RotateIngestEndpointCredentialsCommandOutput * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class RotateIngestEndpointCredentialsCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/TagResourceCommand.ts b/clients/client-mediapackage/src/commands/TagResourceCommand.ts index 78d4d78a6f8b0..b3c1d07f84d4a 100644 --- a/clients/client-mediapackage/src/commands/TagResourceCommand.ts +++ b/clients/client-mediapackage/src/commands/TagResourceCommand.ts @@ -57,6 +57,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackage/src/commands/UntagResourceCommand.ts b/clients/client-mediapackage/src/commands/UntagResourceCommand.ts index e077be36865ee..bee090cc7c8fe 100644 --- a/clients/client-mediapackage/src/commands/UntagResourceCommand.ts +++ b/clients/client-mediapackage/src/commands/UntagResourceCommand.ts @@ -57,6 +57,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackage/src/commands/UpdateChannelCommand.ts b/clients/client-mediapackage/src/commands/UpdateChannelCommand.ts index ff8e2099dda41..9bd56e7a661b3 100644 --- a/clients/client-mediapackage/src/commands/UpdateChannelCommand.ts +++ b/clients/client-mediapackage/src/commands/UpdateChannelCommand.ts @@ -100,6 +100,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class UpdateChannelCommand extends $Command diff --git a/clients/client-mediapackage/src/commands/UpdateOriginEndpointCommand.ts b/clients/client-mediapackage/src/commands/UpdateOriginEndpointCommand.ts index 18f0449db85be..998787ef91325 100644 --- a/clients/client-mediapackage/src/commands/UpdateOriginEndpointCommand.ts +++ b/clients/client-mediapackage/src/commands/UpdateOriginEndpointCommand.ts @@ -395,6 +395,7 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR * @throws {@link MediaPackageServiceException} *

Base exception class for all service exceptions from MediaPackage service.

* + * * @public */ export class UpdateOriginEndpointCommand extends $Command diff --git a/clients/client-mediapackagev2/src/commands/CancelHarvestJobCommand.ts b/clients/client-mediapackagev2/src/commands/CancelHarvestJobCommand.ts index f2ed204c66429..9fe547ef695b0 100644 --- a/clients/client-mediapackagev2/src/commands/CancelHarvestJobCommand.ts +++ b/clients/client-mediapackagev2/src/commands/CancelHarvestJobCommand.ts @@ -75,21 +75,24 @@ export interface CancelHarvestJobCommandOutput extends CancelHarvestJobResponse, * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Cancel a Harvest Job * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName", - * "HarvestJobName": "HarvestJobName", - * "OriginEndpointName": "exampleOriginEndpointName" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName", + * HarvestJobName: "HarvestJobName", + * OriginEndpointName: "exampleOriginEndpointName" * }; * const command = new CancelHarvestJobCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class CancelHarvestJobCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/CreateChannelCommand.ts b/clients/client-mediapackagev2/src/commands/CreateChannelCommand.ts index ce147629387a4..13c35bfce2578 100644 --- a/clients/client-mediapackagev2/src/commands/CreateChannelCommand.ts +++ b/clients/client-mediapackagev2/src/commands/CreateChannelCommand.ts @@ -111,51 +111,51 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Creating a Channel * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "Description": "Description for exampleChannel", - * "InputType": "HLS", - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * Description: "Description for exampleChannel", + * InputType: "HLS", + * Tags: { + * key1: "value1", + * key2: "value2" * } * }; * const command = new CreateChannelCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "CreatedAt": "2022-10-18T09:36:00.00Z", - * "Description": "Description for exampleChannel", - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "IngestEndpoints": [ + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * CreatedAt: "2022-10-18T09:36:00.00Z", + * Description: "Description for exampleChannel", + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * IngestEndpoints: [ * { - * "Id": "1", - * "Url": "https://abcde-1.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index" + * Id: "1", + * Url: "https://abcde-1.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index" * }, * { - * "Id": "2", - * "Url": "https://abcde-2.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index" + * Id: "2", + * Url: "https://abcde-2.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index" * } * ], - * "InputType": "HLS", - * "ModifiedAt": "2022-10-18T09:36:00.00Z", - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * InputType: "HLS", + * ModifiedAt: "2022-10-18T09:36:00.00Z", + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateChannelCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/CreateChannelGroupCommand.ts b/clients/client-mediapackagev2/src/commands/CreateChannelGroupCommand.ts index 649fb2378757f..ebd24e90f0fba 100644 --- a/clients/client-mediapackagev2/src/commands/CreateChannelGroupCommand.ts +++ b/clients/client-mediapackagev2/src/commands/CreateChannelGroupCommand.ts @@ -90,38 +90,38 @@ export interface CreateChannelGroupCommandOutput extends CreateChannelGroupRespo * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Creating a Channel Group * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "Description": "Description for exampleChannelGroup", - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * ChannelGroupName: "exampleChannelGroup", + * Description: "Description for exampleChannelGroup", + * Tags: { + * key1: "value1", + * key2: "value2" * } * }; * const command = new CreateChannelGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup", - * "ChannelGroupName": "exampleChannelGroup", - * "CreatedAt": "2022-10-18T09:36:00.00Z", - * "Description": "Description for exampleChannelGroup", - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "EgressDomain": "abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com", - * "ModifiedAt": "2022-10-18T09:36:00.00Z", - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup", + * ChannelGroupName: "exampleChannelGroup", + * CreatedAt: "2022-10-18T09:36:00.00Z", + * Description: "Description for exampleChannelGroup", + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * EgressDomain: "abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com", + * ModifiedAt: "2022-10-18T09:36:00.00Z", + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateChannelGroupCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/CreateHarvestJobCommand.ts b/clients/client-mediapackagev2/src/commands/CreateHarvestJobCommand.ts index ab582efe695b5..48e6812d41198 100644 --- a/clients/client-mediapackagev2/src/commands/CreateHarvestJobCommand.ts +++ b/clients/client-mediapackagev2/src/commands/CreateHarvestJobCommand.ts @@ -151,93 +151,93 @@ export interface CreateHarvestJobCommandOutput extends CreateHarvestJobResponse, * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Creating a Harvest Job * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName", - * "Description": "Example HarvestJob description", - * "Destination": { - * "S3Destination": { - * "BucketName": "harvestJobS3DestinationBucket", - * "DestinationPath": "manifests" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName", + * Description: "Example HarvestJob description", + * Destination: { + * S3Destination: { + * BucketName: "harvestJobS3DestinationBucket", + * DestinationPath: "manifests" * } * }, - * "HarvestedManifests": { - * "DashManifests": [ + * HarvestedManifests: { + * DashManifests: [ * { - * "ManifestName": "DashManifest" + * ManifestName: "DashManifest" * } * ], - * "HlsManifests": [ + * HlsManifests: [ * { - * "ManifestName": "HlsManifest" + * ManifestName: "HlsManifest" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ManifestName": "LowLatencyHlsManifest" + * ManifestName: "LowLatencyHlsManifest" * } * ] * }, - * "OriginEndpointName": "exampleOriginEndpointName", - * "ScheduleConfiguration": { - * "EndTime": "2024-05-28T12:00:00.00Z", - * "StartTime": "2024-05-28T06:00:00.00Z" + * OriginEndpointName: "exampleOriginEndpointName", + * ScheduleConfiguration: { + * EndTime: "2024-05-28T12:00:00.00Z", + * StartTime: "2024-05-28T06:00:00.00Z" * } * }; * const command = new CreateHarvestJobCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName", - * "CreatedAt": "2024-05-28T09:36:00.00Z", - * "Description": "Example HarvestJob description", - * "Destination": { - * "S3Destination": { - * "BucketName": "harvestJobS3DestinationBucket", - * "DestinationPath": "manifests" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName", + * CreatedAt: "2024-05-28T09:36:00.00Z", + * Description: "Example HarvestJob description", + * Destination: { + * S3Destination: { + * BucketName: "harvestJobS3DestinationBucket", + * DestinationPath: "manifests" * } * }, - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "HarvestJobName": "HarvestJobName", - * "HarvestedManifests": { - * "DashManifests": [ + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * HarvestJobName: "HarvestJobName", + * HarvestedManifests: { + * DashManifests: [ * { - * "ManifestName": "DashManifest" + * ManifestName: "DashManifest" * } * ], - * "HlsManifests": [ + * HlsManifests: [ * { - * "ManifestName": "HlsManifest" + * ManifestName: "HlsManifest" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ManifestName": "LowLatencyHlsManifest" + * ManifestName: "LowLatencyHlsManifest" * } * ] * }, - * "ModifiedAt": "2024-05-28T09:36:00.00Z", - * "OriginEndpointName": "exampleOriginEndpointName", - * "ScheduleConfiguration": { - * "EndTime": "2024-05-28T12:00:00.00Z", - * "StartTime": "2024-05-28T06:00:00.00Z" + * ModifiedAt: "2024-05-28T09:36:00.00Z", + * OriginEndpointName: "exampleOriginEndpointName", + * ScheduleConfiguration: { + * EndTime: "2024-05-28T12:00:00.00Z", + * StartTime: "2024-05-28T06:00:00.00Z" * }, - * "Status": "QUEUED", - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * Status: "QUEUED", + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateHarvestJobCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/CreateOriginEndpointCommand.ts b/clients/client-mediapackagev2/src/commands/CreateOriginEndpointCommand.ts index f782d2ac3d451..fe711f61df7b7 100644 --- a/clients/client-mediapackagev2/src/commands/CreateOriginEndpointCommand.ts +++ b/clients/client-mediapackagev2/src/commands/CreateOriginEndpointCommand.ts @@ -322,479 +322,478 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Creating an OriginEndpoint with container type TS, and encryption enabled * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "ContainerType": "TS", - * "Description": "Description for exampleOriginEndpointTS", - * "ForceEndpointErrorConfiguration": { - * "EndpointErrorConditions": [ + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * ContainerType: "TS", + * Description: "Description for exampleOriginEndpointTS", + * ForceEndpointErrorConfiguration: { + * EndpointErrorConditions: [ * "STALE_MANIFEST", * "INCOMPLETE_MANIFEST", * "MISSING_DRM_KEY", * "SLATE_INPUT" * ] * }, - * "HlsManifests": [ + * HlsManifests: [ * { - * "ChildManifestName": "exampleChildManifest1", - * "ManifestName": "exampleManifest1", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleChildManifest1", + * ManifestName: "exampleManifest1", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * } * }, * { - * "ChildManifestName": "exampleManifest2", - * "ManifestName": "exampleManifest2", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleManifest2", + * ManifestName: "exampleManifest2", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * } * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ChildManifestName": "exampleLLChildManifest1", - * "ManifestName": "exampleLLManifest1", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleLLChildManifest1", + * ManifestName: "exampleLLManifest1", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * } * }, * { - * "ChildManifestName": "exampleLLManifest2", - * "ManifestName": "exampleLLManifest2", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleLLManifest2", + * ManifestName: "exampleLLManifest2", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * } * } * ], - * "OriginEndpointName": "exampleOriginEndpointTS", - * "Segment": { - * "Encryption": { - * "ConstantInitializationVector": "A382A901F3C1F7718512266CFFBB0B7E", - * "EncryptionMethod": { - * "TsEncryptionMethod": "AES_128" + * OriginEndpointName: "exampleOriginEndpointTS", + * Segment: { + * Encryption: { + * ConstantInitializationVector: "A382A901F3C1F7718512266CFFBB0B7E", + * EncryptionMethod: { + * TsEncryptionMethod: "AES_128" * }, - * "KeyRotationIntervalSeconds": 300, - * "SpekeKeyProvider": { - * "DrmSystems": [ + * KeyRotationIntervalSeconds: 300, + * SpekeKeyProvider: { + * DrmSystems: [ * "CLEAR_KEY_AES_128" * ], - * "EncryptionContractConfiguration": { - * "PresetSpeke20Audio": "SHARED", - * "PresetSpeke20Video": "SHARED" + * EncryptionContractConfiguration: { + * PresetSpeke20Audio: "SHARED", + * PresetSpeke20Video: "SHARED" * }, - * "ResourceId": "ResourceId", - * "RoleArn": "arn:aws:iam::123456789012:role/empRole", - * "Url": "https://foo.com" + * ResourceId: "ResourceId", + * RoleArn: "arn:aws:iam::123456789012:role/empRole", + * Url: "https://foo.com" * } * }, - * "IncludeIframeOnlyStreams": true, - * "Scte": { - * "ScteFilter": [ + * IncludeIframeOnlyStreams: true, + * Scte: { + * ScteFilter: [ * "SPLICE_INSERT", * "BREAK" * ] * }, - * "SegmentDurationSeconds": 6, - * "SegmentName": "segmentName", - * "TsIncludeDvbSubtitles": true, - * "TsUseAudioRenditionGroup": true + * SegmentDurationSeconds: 6, + * SegmentName: "segmentName", + * TsIncludeDvbSubtitles: true, + * TsUseAudioRenditionGroup: true * }, - * "StartoverWindowSeconds": 300, - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * StartoverWindowSeconds: 300, + * Tags: { + * key1: "value1", + * key2: "value2" * } * }; * const command = new CreateOriginEndpointCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointTS", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "ContainerType": "TS", - * "CreatedAt": "2022-10-18T09:36:00.00Z", - * "Description": "Description for exampleOriginEndpointTS", - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "ForceEndpointErrorConfiguration": { - * "EndpointErrorConditions": [ + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointTS", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * ContainerType: "TS", + * CreatedAt: "2022-10-18T09:36:00.00Z", + * Description: "Description for exampleOriginEndpointTS", + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * ForceEndpointErrorConfiguration: { + * EndpointErrorConditions: [ * "STALE_MANIFEST", * "INCOMPLETE_MANIFEST", * "MISSING_DRM_KEY", * "SLATE_INPUT" * ] * }, - * "HlsManifests": [ + * HlsManifests: [ * { - * "ChildManifestName": "exampleChildManifest1", - * "ManifestName": "exampleManifest1", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleChildManifest1", + * ManifestName: "exampleManifest1", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest1.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest1.m3u8" * }, * { - * "ChildManifestName": "exampleManifest2", - * "ManifestName": "exampleManifest2", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleManifest2", + * ManifestName: "exampleManifest2", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest2.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest2.m3u8" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ChildManifestName": "exampleLLChildManifest1", - * "ManifestName": "exampleLLManifest1", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleLLChildManifest1", + * ManifestName: "exampleLLManifest1", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest1.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest1.m3u8" * }, * { - * "ChildManifestName": "exampleLLManifest2", - * "ManifestName": "exampleLLManifest2", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleLLManifest2", + * ManifestName: "exampleLLManifest2", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest2.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest2.m3u8" * } * ], - * "ModifiedAt": "2022-10-18T09:36:00.00Z", - * "OriginEndpointName": "exampleOriginEndpointTS", - * "Segment": { - * "Encryption": { - * "ConstantInitializationVector": "A382A901F3C1F7718512266CFFBB0B7E", - * "EncryptionMethod": { - * "TsEncryptionMethod": "AES_128" + * ModifiedAt: "2022-10-18T09:36:00.00Z", + * OriginEndpointName: "exampleOriginEndpointTS", + * Segment: { + * Encryption: { + * ConstantInitializationVector: "A382A901F3C1F7718512266CFFBB0B7E", + * EncryptionMethod: { + * TsEncryptionMethod: "AES_128" * }, - * "KeyRotationIntervalSeconds": 300, - * "SpekeKeyProvider": { - * "DrmSystems": [ + * KeyRotationIntervalSeconds: 300, + * SpekeKeyProvider: { + * DrmSystems: [ * "CLEAR_KEY_AES_128" * ], - * "EncryptionContractConfiguration": { - * "PresetSpeke20Audio": "SHARED", - * "PresetSpeke20Video": "SHARED" + * EncryptionContractConfiguration: { + * PresetSpeke20Audio: "SHARED", + * PresetSpeke20Video: "SHARED" * }, - * "ResourceId": "ResourceId", - * "RoleArn": "arn:aws:iam::123456789012:role/empRole", - * "Url": "https://foo.com" + * ResourceId: "ResourceId", + * RoleArn: "arn:aws:iam::123456789012:role/empRole", + * Url: "https://foo.com" * } * }, - * "IncludeIframeOnlyStreams": true, - * "Scte": { - * "ScteFilter": [ + * IncludeIframeOnlyStreams: true, + * Scte: { + * ScteFilter: [ * "SPLICE_INSERT", * "BREAK" * ] * }, - * "SegmentDurationSeconds": 6, - * "SegmentName": "segmentName", - * "TsIncludeDvbSubtitles": true, - * "TsUseAudioRenditionGroup": true + * SegmentDurationSeconds: 6, + * SegmentName: "segmentName", + * TsIncludeDvbSubtitles: true, + * TsUseAudioRenditionGroup: true * }, - * "StartoverWindowSeconds": 300, - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * StartoverWindowSeconds: 300, + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * *\/ - * // example id: example-1 * ``` * * @example Creating an OriginEndpoint with container type CMAF, and encryption enabled * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "ContainerType": "CMAF", - * "DashManifests": [ + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * ContainerType: "CMAF", + * DashManifests: [ * { - * "DrmSignaling": "INDIVIDUAL", - * "ManifestName": "exampleDashManifest1", - * "ManifestWindowSeconds": 300, - * "MinBufferTimeSeconds": 30, - * "MinUpdatePeriodSeconds": 5, - * "PeriodTriggers": [ + * DrmSignaling: "INDIVIDUAL", + * ManifestName: "exampleDashManifest1", + * ManifestWindowSeconds: 300, + * MinBufferTimeSeconds: 30, + * MinUpdatePeriodSeconds: 5, + * PeriodTriggers: [ * "AVAILS" * ], - * "ScteDash": { - * "AdMarkerDash": "XML" + * ScteDash: { + * AdMarkerDash: "XML" * }, - * "SegmentTemplateFormat": "NUMBER_WITH_TIMELINE", - * "SuggestedPresentationDelaySeconds": 2 + * SegmentTemplateFormat: "NUMBER_WITH_TIMELINE", + * SuggestedPresentationDelaySeconds: 2 * }, * { - * "DrmSignaling": "INDIVIDUAL", - * "ManifestName": "exampleDashManifest2", - * "ManifestWindowSeconds": 60, - * "MinBufferTimeSeconds": 9, - * "MinUpdatePeriodSeconds": 3, - * "PeriodTriggers": [ + * DrmSignaling: "INDIVIDUAL", + * ManifestName: "exampleDashManifest2", + * ManifestWindowSeconds: 60, + * MinBufferTimeSeconds: 9, + * MinUpdatePeriodSeconds: 3, + * PeriodTriggers: [ * "AVAILS", * "DRM_KEY_ROTATION", * "SOURCE_CHANGES", * "SOURCE_DISRUPTIONS" * ], - * "ScteDash": { - * "AdMarkerDash": "XML" + * ScteDash: { + * AdMarkerDash: "XML" * }, - * "SegmentTemplateFormat": "NUMBER_WITH_TIMELINE", - * "SuggestedPresentationDelaySeconds": 12 + * SegmentTemplateFormat: "NUMBER_WITH_TIMELINE", + * SuggestedPresentationDelaySeconds: 12 * } * ], - * "ForceEndpointErrorConfiguration": { - * "EndpointErrorConditions": [ + * ForceEndpointErrorConfiguration: { + * EndpointErrorConditions: [ * "STALE_MANIFEST", * "INCOMPLETE_MANIFEST", * "MISSING_DRM_KEY", * "SLATE_INPUT" * ] * }, - * "HlsManifests": [ + * HlsManifests: [ * { - * "ChildManifestName": "exampleChildManifest1", - * "ManifestName": "exampleManifest1", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleChildManifest1", + * ManifestName: "exampleManifest1", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * } * }, * { - * "ChildManifestName": "exampleManifest2", - * "ManifestName": "exampleManifest2", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleManifest2", + * ManifestName: "exampleManifest2", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * } * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ChildManifestName": "exampleLLChildManifest1", - * "ManifestName": "exampleLLManifest1", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleLLChildManifest1", + * ManifestName: "exampleLLManifest1", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * } * }, * { - * "ChildManifestName": "exampleLLManifest2", - * "ManifestName": "exampleLLManifest2", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleLLManifest2", + * ManifestName: "exampleLLManifest2", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * } * } * ], - * "OriginEndpointName": "exampleOriginEndpointCMAF", - * "Segment": { - * "Encryption": { - * "ConstantInitializationVector": "A382A901F3C1F7718512266CFFBB0B9F", - * "EncryptionMethod": { - * "CmafEncryptionMethod": "CBCS" + * OriginEndpointName: "exampleOriginEndpointCMAF", + * Segment: { + * Encryption: { + * ConstantInitializationVector: "A382A901F3C1F7718512266CFFBB0B9F", + * EncryptionMethod: { + * CmafEncryptionMethod: "CBCS" * }, - * "KeyRotationIntervalSeconds": 300, - * "SpekeKeyProvider": { - * "DrmSystems": [ + * KeyRotationIntervalSeconds: 300, + * SpekeKeyProvider: { + * DrmSystems: [ * "PLAYREADY", * "WIDEVINE" * ], - * "EncryptionContractConfiguration": { - * "PresetSpeke20Audio": "PRESET_AUDIO_1", - * "PresetSpeke20Video": "PRESET_VIDEO_1" + * EncryptionContractConfiguration: { + * PresetSpeke20Audio: "PRESET_AUDIO_1", + * PresetSpeke20Video: "PRESET_VIDEO_1" * }, - * "ResourceId": "ResourceId", - * "RoleArn": "arn:aws:iam::123456789012:role/empRole", - * "Url": "https://foo.com" + * ResourceId: "ResourceId", + * RoleArn: "arn:aws:iam::123456789012:role/empRole", + * Url: "https://foo.com" * } * }, - * "IncludeIframeOnlyStreams": true, - * "Scte": { - * "ScteFilter": [ + * IncludeIframeOnlyStreams: true, + * Scte: { + * ScteFilter: [ * "SPLICE_INSERT", * "BREAK" * ] * }, - * "SegmentDurationSeconds": 6, - * "SegmentName": "segmentName" + * SegmentDurationSeconds: 6, + * SegmentName: "segmentName" * }, - * "StartoverWindowSeconds": 300, - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * StartoverWindowSeconds: 300, + * Tags: { + * key1: "value1", + * key2: "value2" * } * }; * const command = new CreateOriginEndpointCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointCMAF", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "ContainerType": "CMAF", - * "CreatedAt": "2022-10-18T09:36:00.00Z", - * "DashManifests": [ + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointCMAF", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * ContainerType: "CMAF", + * CreatedAt: "2022-10-18T09:36:00.00Z", + * DashManifests: [ * { - * "DrmSignaling": "INDIVIDUAL", - * "ManifestName": "exampleDashManifest1", - * "ManifestWindowSeconds": 300, - * "MinBufferTimeSeconds": 30, - * "MinUpdatePeriodSeconds": 5, - * "PeriodTriggers": [ + * DrmSignaling: "INDIVIDUAL", + * ManifestName: "exampleDashManifest1", + * ManifestWindowSeconds: 300, + * MinBufferTimeSeconds: 30, + * MinUpdatePeriodSeconds: 5, + * PeriodTriggers: [ * "AVAILS" * ], - * "ScteDash": { - * "AdMarkerDash": "XML" + * ScteDash: { + * AdMarkerDash: "XML" * }, - * "SegmentTemplateFormat": "NUMBER_WITH_TIMELINE", - * "SuggestedPresentationDelaySeconds": 2, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleDashManifest1.mpd" + * SegmentTemplateFormat: "NUMBER_WITH_TIMELINE", + * SuggestedPresentationDelaySeconds: 2, + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleDashManifest1.mpd" * }, * { - * "DrmSignaling": "INDIVIDUAL", - * "ManifestName": "exampleDashManifest2", - * "ManifestWindowSeconds": 60, - * "MinBufferTimeSeconds": 9, - * "MinUpdatePeriodSeconds": 3, - * "PeriodTriggers": [ + * DrmSignaling: "INDIVIDUAL", + * ManifestName: "exampleDashManifest2", + * ManifestWindowSeconds: 60, + * MinBufferTimeSeconds: 9, + * MinUpdatePeriodSeconds: 3, + * PeriodTriggers: [ * "AVAILS", * "DRM_KEY_ROTATION", * "SOURCE_CHANGES", * "SOURCE_DISRUPTIONS" * ], - * "ScteDash": { - * "AdMarkerDash": "XML" + * ScteDash: { + * AdMarkerDash: "XML" * }, - * "SegmentTemplateFormat": "NUMBER_WITH_TIMELINE", - * "SuggestedPresentationDelaySeconds": 12, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleDashManifest2.mpd" + * SegmentTemplateFormat: "NUMBER_WITH_TIMELINE", + * SuggestedPresentationDelaySeconds: 12, + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleDashManifest2.mpd" * } * ], - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "ForceEndpointErrorConfiguration": { - * "EndpointErrorConditions": [ + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * ForceEndpointErrorConfiguration: { + * EndpointErrorConditions: [ * "STALE_MANIFEST", * "INCOMPLETE_MANIFEST", * "MISSING_DRM_KEY", * "SLATE_INPUT" * ] * }, - * "HlsManifests": [ + * HlsManifests: [ * { - * "ChildManifestName": "exampleChildManifest1", - * "ManifestName": "exampleManifest1", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleChildManifest1", + * ManifestName: "exampleManifest1", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleManifest1.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleManifest1.m3u8" * }, * { - * "ChildManifestName": "exampleManifest2", - * "ManifestName": "exampleManifest2", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleManifest2", + * ManifestName: "exampleManifest2", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleManifest2.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleManifest2.m3u8" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ChildManifestName": "exampleLLChildManifest1", - * "ManifestName": "exampleLLManifest1", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleLLChildManifest1", + * ManifestName: "exampleLLManifest1", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleLLManifest1.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleLLManifest1.m3u8" * }, * { - * "ChildManifestName": "exampleLLManifest2", - * "ManifestName": "exampleLLManifest2", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleLLManifest2", + * ManifestName: "exampleLLManifest2", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleLLManifest2.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleLLManifest2.m3u8" * } * ], - * "ModifiedAt": "2022-10-18T09:36:00.00Z", - * "OriginEndpointName": "exampleOriginEndpointCMAF", - * "Segment": { - * "Encryption": { - * "ConstantInitializationVector": "A382A901F3C1F7718512266CFFBB0B9F", - * "EncryptionMethod": { - * "CmafEncryptionMethod": "CBCS" + * ModifiedAt: "2022-10-18T09:36:00.00Z", + * OriginEndpointName: "exampleOriginEndpointCMAF", + * Segment: { + * Encryption: { + * ConstantInitializationVector: "A382A901F3C1F7718512266CFFBB0B9F", + * EncryptionMethod: { + * CmafEncryptionMethod: "CBCS" * }, - * "KeyRotationIntervalSeconds": 300, - * "SpekeKeyProvider": { - * "DrmSystems": [ + * KeyRotationIntervalSeconds: 300, + * SpekeKeyProvider: { + * DrmSystems: [ * "PLAYREADY", * "WIDEVINE" * ], - * "EncryptionContractConfiguration": { - * "PresetSpeke20Audio": "PRESET_AUDIO_1", - * "PresetSpeke20Video": "PRESET_VIDEO_1" + * EncryptionContractConfiguration: { + * PresetSpeke20Audio: "PRESET_AUDIO_1", + * PresetSpeke20Video: "PRESET_VIDEO_1" * }, - * "ResourceId": "ResourceId", - * "RoleArn": "arn:aws:iam::123456789012:role/empRole", - * "Url": "https://foo.com" + * ResourceId: "ResourceId", + * RoleArn: "arn:aws:iam::123456789012:role/empRole", + * Url: "https://foo.com" * } * }, - * "IncludeIframeOnlyStreams": true, - * "Scte": { - * "ScteFilter": [ + * IncludeIframeOnlyStreams: true, + * Scte: { + * ScteFilter: [ * "SPLICE_INSERT", * "BREAK" * ] * }, - * "SegmentDurationSeconds": 6, - * "SegmentName": "segmentName" + * SegmentDurationSeconds: 6, + * SegmentName: "segmentName" * }, - * "StartoverWindowSeconds": 300, - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * StartoverWindowSeconds: 300, + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class CreateOriginEndpointCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/DeleteChannelCommand.ts b/clients/client-mediapackagev2/src/commands/DeleteChannelCommand.ts index 6d37004ea550f..f2302e3de50b2 100644 --- a/clients/client-mediapackagev2/src/commands/DeleteChannelCommand.ts +++ b/clients/client-mediapackagev2/src/commands/DeleteChannelCommand.ts @@ -69,19 +69,22 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Deleting a Channel * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel" * }; * const command = new DeleteChannelCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteChannelCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/DeleteChannelGroupCommand.ts b/clients/client-mediapackagev2/src/commands/DeleteChannelGroupCommand.ts index ffbe12bd39791..f4dcdeeb1afc6 100644 --- a/clients/client-mediapackagev2/src/commands/DeleteChannelGroupCommand.ts +++ b/clients/client-mediapackagev2/src/commands/DeleteChannelGroupCommand.ts @@ -68,18 +68,21 @@ export interface DeleteChannelGroupCommandOutput extends DeleteChannelGroupRespo * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Deleting a Channel Group * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup" + * ChannelGroupName: "exampleChannelGroup" * }; * const command = new DeleteChannelGroupCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteChannelGroupCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/DeleteChannelPolicyCommand.ts b/clients/client-mediapackagev2/src/commands/DeleteChannelPolicyCommand.ts index 71a957375fd17..0897bab171f9d 100644 --- a/clients/client-mediapackagev2/src/commands/DeleteChannelPolicyCommand.ts +++ b/clients/client-mediapackagev2/src/commands/DeleteChannelPolicyCommand.ts @@ -69,19 +69,22 @@ export interface DeleteChannelPolicyCommandOutput extends DeleteChannelPolicyRes * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Deleting a Channel Policy * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel" * }; * const command = new DeleteChannelPolicyCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteChannelPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointCommand.ts b/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointCommand.ts index 911766b564fb9..1110b2e943a68 100644 --- a/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointCommand.ts +++ b/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointCommand.ts @@ -67,20 +67,23 @@ export interface DeleteOriginEndpointCommandOutput extends DeleteOriginEndpointR * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Deleting an OriginEndpoint * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "OriginEndpointName": "exampleOriginEndpointTS" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * OriginEndpointName: "exampleOriginEndpointTS" * }; * const command = new DeleteOriginEndpointCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteOriginEndpointCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointPolicyCommand.ts b/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointPolicyCommand.ts index 45d1bbfdeb07d..00fdc522a9dda 100644 --- a/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointPolicyCommand.ts +++ b/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointPolicyCommand.ts @@ -70,20 +70,23 @@ export interface DeleteOriginEndpointPolicyCommandOutput extends DeleteOriginEnd * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Deleting an Origin Endpoint Policy * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "OriginEndpointName": "exampleOriginEndpoint" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * OriginEndpointName: "exampleOriginEndpoint" * }; * const command = new DeleteOriginEndpointPolicyCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteOriginEndpointPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/GetChannelCommand.ts b/clients/client-mediapackagev2/src/commands/GetChannelCommand.ts index 426a740b48b82..8933d95f1e138 100644 --- a/clients/client-mediapackagev2/src/commands/GetChannelCommand.ts +++ b/clients/client-mediapackagev2/src/commands/GetChannelCommand.ts @@ -94,45 +94,45 @@ export interface GetChannelCommandOutput extends GetChannelResponse, __MetadataB * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Getting a Channel * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel" * }; * const command = new GetChannelCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "CreatedAt": "2022-10-18T09:36:00.00Z", - * "Description": "Description for exampleChannel", - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "IngestEndpoints": [ + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * CreatedAt: "2022-10-18T09:36:00.00Z", + * Description: "Description for exampleChannel", + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * IngestEndpoints: [ * { - * "Id": "1", - * "Url": "https://abcde-1.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index" + * Id: "1", + * Url: "https://abcde-1.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index" * }, * { - * "Id": "2", - * "Url": "https://abcde-2.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index" + * Id: "2", + * Url: "https://abcde-2.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index" * } * ], - * "InputType": "HLS", - * "ModifiedAt": "2022-10-18T09:36:00.00Z", - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * InputType: "HLS", + * ModifiedAt: "2022-10-18T09:36:00.00Z", + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetChannelCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/GetChannelGroupCommand.ts b/clients/client-mediapackagev2/src/commands/GetChannelGroupCommand.ts index 7c5ec4f5a3b96..26d6797270b8e 100644 --- a/clients/client-mediapackagev2/src/commands/GetChannelGroupCommand.ts +++ b/clients/client-mediapackagev2/src/commands/GetChannelGroupCommand.ts @@ -79,33 +79,33 @@ export interface GetChannelGroupCommandOutput extends GetChannelGroupResponse, _ * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Getting a Channel Group * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup" + * ChannelGroupName: "exampleChannelGroup" * }; * const command = new GetChannelGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup", - * "ChannelGroupName": "exampleChannelGroup", - * "CreatedAt": "2022-10-18T09:36:00.00Z", - * "Description": "Description for exampleChannelGroup", - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "EgressDomain": "abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com", - * "ModifiedAt": "2022-10-18T09:36:00.00Z", - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup", + * ChannelGroupName: "exampleChannelGroup", + * CreatedAt: "2022-10-18T09:36:00.00Z", + * Description: "Description for exampleChannelGroup", + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * EgressDomain: "abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com", + * ModifiedAt: "2022-10-18T09:36:00.00Z", + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetChannelGroupCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/GetChannelPolicyCommand.ts b/clients/client-mediapackagev2/src/commands/GetChannelPolicyCommand.ts index 4b426a3cc31ae..f3bb4b25b613f 100644 --- a/clients/client-mediapackagev2/src/commands/GetChannelPolicyCommand.ts +++ b/clients/client-mediapackagev2/src/commands/GetChannelPolicyCommand.ts @@ -73,26 +73,26 @@ export interface GetChannelPolicyCommandOutput extends GetChannelPolicyResponse, * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Getting a Channel Policy * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel" * }; * const command = new GetChannelPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "Policy": "{...}" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * Policy: "{...}" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetChannelPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/GetHarvestJobCommand.ts b/clients/client-mediapackagev2/src/commands/GetHarvestJobCommand.ts index 0c49bfa3dd0e1..693e042c67f3a 100644 --- a/clients/client-mediapackagev2/src/commands/GetHarvestJobCommand.ts +++ b/clients/client-mediapackagev2/src/commands/GetHarvestJobCommand.ts @@ -113,66 +113,66 @@ export interface GetHarvestJobCommandOutput extends GetHarvestJobResponse, __Met * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Getting a Harvest Job * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName", - * "HarvestJobName": "HarvestJobName", - * "OriginEndpointName": "exampleOriginEndpointName" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName", + * HarvestJobName: "HarvestJobName", + * OriginEndpointName: "exampleOriginEndpointName" * }; * const command = new GetHarvestJobCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName", - * "CreatedAt": "2024-05-28T09:36:00.00Z", - * "Description": "Example HarvestJob description", - * "Destination": { - * "S3Destination": { - * "BucketName": "harvestJobS3DestinationBucket", - * "DestinationPath": "manifests" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName", + * CreatedAt: "2024-05-28T09:36:00.00Z", + * Description: "Example HarvestJob description", + * Destination: { + * S3Destination: { + * BucketName: "harvestJobS3DestinationBucket", + * DestinationPath: "manifests" * } * }, - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "HarvestJobName": "HarvestJobName", - * "HarvestedManifests": { - * "DashManifests": [ + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * HarvestJobName: "HarvestJobName", + * HarvestedManifests: { + * DashManifests: [ * { - * "ManifestName": "DashManifest" + * ManifestName: "DashManifest" * } * ], - * "HlsManifests": [ + * HlsManifests: [ * { - * "ManifestName": "HlsManifest" + * ManifestName: "HlsManifest" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ManifestName": "LowLatencyHlsManifest" + * ManifestName: "LowLatencyHlsManifest" * } * ] * }, - * "ModifiedAt": "2024-05-28T09:36:00.00Z", - * "OriginEndpointName": "exampleOriginEndpointName", - * "ScheduleConfiguration": { - * "EndTime": "2024-05-28T12:00:00.00Z", - * "StartTime": "2024-05-28T06:00:00.00Z" + * ModifiedAt: "2024-05-28T09:36:00.00Z", + * OriginEndpointName: "exampleOriginEndpointName", + * ScheduleConfiguration: { + * EndTime: "2024-05-28T12:00:00.00Z", + * StartTime: "2024-05-28T06:00:00.00Z" * }, - * "Status": "QUEUED", - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * Status: "QUEUED", + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetHarvestJobCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/GetOriginEndpointCommand.ts b/clients/client-mediapackagev2/src/commands/GetOriginEndpointCommand.ts index 4a40cf720399b..ab6a499ed3932 100644 --- a/clients/client-mediapackagev2/src/commands/GetOriginEndpointCommand.ts +++ b/clients/client-mediapackagev2/src/commands/GetOriginEndpointCommand.ts @@ -199,122 +199,122 @@ export interface GetOriginEndpointCommandOutput extends GetOriginEndpointRespons * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Getting an OriginEndpoint * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "OriginEndpointName": "exampleOriginEndpointTS" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * OriginEndpointName: "exampleOriginEndpointTS" * }; * const command = new GetOriginEndpointCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointTS", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "ContainerType": "TS", - * "CreatedAt": "2022-10-18T09:36:00.00Z", - * "Description": "Description for exampleOriginEndpointTS", - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "ForceEndpointErrorConfiguration": { - * "EndpointErrorConditions": [ + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointTS", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * ContainerType: "TS", + * CreatedAt: "2022-10-18T09:36:00.00Z", + * Description: "Description for exampleOriginEndpointTS", + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * ForceEndpointErrorConfiguration: { + * EndpointErrorConditions: [ * "STALE_MANIFEST", * "INCOMPLETE_MANIFEST", * "MISSING_DRM_KEY", * "SLATE_INPUT" * ] * }, - * "HlsManifests": [ + * HlsManifests: [ * { - * "ChildManifestName": "exampleChildManifest1", - * "ManifestName": "exampleManifest1", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleChildManifest1", + * ManifestName: "exampleManifest1", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest1.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest1.m3u8" * }, * { - * "ChildManifestName": "exampleManifest2", - * "ManifestName": "exampleManifest2", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleManifest2", + * ManifestName: "exampleManifest2", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest2.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest2.m3u8" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ChildManifestName": "exampleLLChildManifest1", - * "ManifestName": "exampleLLManifest1", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleLLChildManifest1", + * ManifestName: "exampleLLManifest1", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest1.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest1.m3u8" * }, * { - * "ChildManifestName": "exampleLLManifest2", - * "ManifestName": "exampleLLManifest2", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleLLManifest2", + * ManifestName: "exampleLLManifest2", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest2.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest2.m3u8" * } * ], - * "ModifiedAt": "2022-10-18T09:36:00.00Z", - * "OriginEndpointName": "exampleOriginEndpointTS", - * "Segment": { - * "Encryption": { - * "ConstantInitializationVector": "A382A901F3C1F7718512266CFFBB0B7E", - * "EncryptionMethod": { - * "TsEncryptionMethod": "AES_128" + * ModifiedAt: "2022-10-18T09:36:00.00Z", + * OriginEndpointName: "exampleOriginEndpointTS", + * Segment: { + * Encryption: { + * ConstantInitializationVector: "A382A901F3C1F7718512266CFFBB0B7E", + * EncryptionMethod: { + * TsEncryptionMethod: "AES_128" * }, - * "KeyRotationIntervalSeconds": 300, - * "SpekeKeyProvider": { - * "DrmSystems": [ + * KeyRotationIntervalSeconds: 300, + * SpekeKeyProvider: { + * DrmSystems: [ * "CLEAR_KEY_AES_128" * ], - * "EncryptionContractConfiguration": { - * "PresetSpeke20Audio": "SHARED", - * "PresetSpeke20Video": "SHARED" + * EncryptionContractConfiguration: { + * PresetSpeke20Audio: "SHARED", + * PresetSpeke20Video: "SHARED" * }, - * "ResourceId": "ResourceId", - * "RoleArn": "arn:aws:iam::123456789012:role/empRole", - * "Url": "https://foo.com" + * ResourceId: "ResourceId", + * RoleArn: "arn:aws:iam::123456789012:role/empRole", + * Url: "https://foo.com" * } * }, - * "IncludeIframeOnlyStreams": true, - * "Scte": { - * "ScteFilter": [ + * IncludeIframeOnlyStreams: true, + * Scte: { + * ScteFilter: [ * "SPLICE_INSERT", * "BREAK" * ] * }, - * "SegmentDurationSeconds": 6, - * "SegmentName": "segmentName", - * "TsIncludeDvbSubtitles": true, - * "TsUseAudioRenditionGroup": true + * SegmentDurationSeconds: 6, + * SegmentName: "segmentName", + * TsIncludeDvbSubtitles: true, + * TsUseAudioRenditionGroup: true * }, - * "StartoverWindowSeconds": 300, - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * StartoverWindowSeconds: 300, + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetOriginEndpointCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/GetOriginEndpointPolicyCommand.ts b/clients/client-mediapackagev2/src/commands/GetOriginEndpointPolicyCommand.ts index 3cfe09406104e..65d5b7a193aac 100644 --- a/clients/client-mediapackagev2/src/commands/GetOriginEndpointPolicyCommand.ts +++ b/clients/client-mediapackagev2/src/commands/GetOriginEndpointPolicyCommand.ts @@ -75,28 +75,28 @@ export interface GetOriginEndpointPolicyCommandOutput extends GetOriginEndpointP * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Getting an Origin Endpoint Policy * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "OriginEndpointName": "exampleOriginEndpoint" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * OriginEndpointName: "exampleOriginEndpoint" * }; * const command = new GetOriginEndpointPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "OriginEndpointName": "exampleOriginEndpoint", - * "Policy": "{...}" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * OriginEndpointName: "exampleOriginEndpoint", + * Policy: "{...}" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetOriginEndpointPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/ListChannelGroupsCommand.ts b/clients/client-mediapackagev2/src/commands/ListChannelGroupsCommand.ts index da0c82684bb4d..75c06e800444a 100644 --- a/clients/client-mediapackagev2/src/commands/ListChannelGroupsCommand.ts +++ b/clients/client-mediapackagev2/src/commands/ListChannelGroupsCommand.ts @@ -77,35 +77,35 @@ export interface ListChannelGroupsCommandOutput extends ListChannelGroupsRespons * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Listing all Channel Groups * ```javascript * // - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListChannelGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Items": [ + * Items: [ * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup", - * "ChannelGroupName": "exampleChannelGroup", - * "CreatedAt": "2022-10-18T09:36:00.00Z", - * "Description": "Description for exampleChannelGroup", - * "ModifiedAt": "2022-10-18T09:36:00.00Z" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup", + * ChannelGroupName: "exampleChannelGroup", + * CreatedAt: "2022-10-18T09:36:00.00Z", + * Description: "Description for exampleChannelGroup", + * ModifiedAt: "2022-10-18T09:36:00.00Z" * }, * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/anotherExampleChannelGroup", - * "ChannelGroupName": "anotherExampleChannelGroup", - * "CreatedAt": "2022-10-18T10:36:00.00Z", - * "ModifiedAt": "2022-10-18T10:36:00.00Z" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/anotherExampleChannelGroup", + * ChannelGroupName: "anotherExampleChannelGroup", + * CreatedAt: "2022-10-18T10:36:00.00Z", + * ModifiedAt: "2022-10-18T10:36:00.00Z" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListChannelGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/ListChannelsCommand.ts b/clients/client-mediapackagev2/src/commands/ListChannelsCommand.ts index 72bbe1047145f..fd56953f0595a 100644 --- a/clients/client-mediapackagev2/src/commands/ListChannelsCommand.ts +++ b/clients/client-mediapackagev2/src/commands/ListChannelsCommand.ts @@ -83,39 +83,39 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Listing all Channels * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup" + * ChannelGroupName: "exampleChannelGroup" * }; * const command = new ListChannelsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Items": [ + * Items: [ * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "CreatedAt": "2022-10-18T09:36:00.00Z", - * "Description": "Description for exampleChannel", - * "ModifiedAt": "2022-10-18T09:36:00.00Z" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * CreatedAt: "2022-10-18T09:36:00.00Z", + * Description: "Description for exampleChannel", + * ModifiedAt: "2022-10-18T09:36:00.00Z" * }, * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/anotherExampleChannel", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "anotherExampleChannel", - * "CreatedAt": "2022-10-18T10:36:00.00Z", - * "ModifiedAt": "2022-10-18T10:36:00.00Z" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/anotherExampleChannel", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "anotherExampleChannel", + * CreatedAt: "2022-10-18T10:36:00.00Z", + * ModifiedAt: "2022-10-18T10:36:00.00Z" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListChannelsCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/ListHarvestJobsCommand.ts b/clients/client-mediapackagev2/src/commands/ListHarvestJobsCommand.ts index 8410da782fd3a..5bc0270f57ffa 100644 --- a/clients/client-mediapackagev2/src/commands/ListHarvestJobsCommand.ts +++ b/clients/client-mediapackagev2/src/commands/ListHarvestJobsCommand.ts @@ -117,347 +117,346 @@ export interface ListHarvestJobsCommandOutput extends ListHarvestJobsResponse, _ * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example ListHarvestJobs: Specify ChannelGroup only * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup" + * ChannelGroupName: "exampleChannelGroup" * }; * const command = new ListHarvestJobsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Items": [ + * Items: [ * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName", - * "CreatedAt": "2024-05-28T09:36:00.00Z", - * "Description": "Example HarvestJob description", - * "Destination": { - * "S3Destination": { - * "BucketName": "harvestJobS3DestinationBucket", - * "DestinationPath": "manifests" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName", + * CreatedAt: "2024-05-28T09:36:00.00Z", + * Description: "Example HarvestJob description", + * Destination: { + * S3Destination: { + * BucketName: "harvestJobS3DestinationBucket", + * DestinationPath: "manifests" * } * }, - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "HarvestJobName": "HarvestJobName", - * "HarvestedManifests": { - * "DashManifests": [ + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * HarvestJobName: "HarvestJobName", + * HarvestedManifests: { + * DashManifests: [ * { - * "ManifestName": "DashManifest" + * ManifestName: "DashManifest" * } * ], - * "HlsManifests": [ + * HlsManifests: [ * { - * "ManifestName": "HlsManifest" + * ManifestName: "HlsManifest" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ManifestName": "LowLatencyHlsManifest" + * ManifestName: "LowLatencyHlsManifest" * } * ] * }, - * "ModifiedAt": "2024-05-28T09:36:00.00Z", - * "OriginEndpointName": "exampleOriginEndpointName", - * "ScheduleConfiguration": { - * "EndTime": "2024-05-28T12:00:00.00Z", - * "StartTime": "2024-05-28T06:00:00.00Z" + * ModifiedAt: "2024-05-28T09:36:00.00Z", + * OriginEndpointName: "exampleOriginEndpointName", + * ScheduleConfiguration: { + * EndTime: "2024-05-28T12:00:00.00Z", + * StartTime: "2024-05-28T06:00:00.00Z" * }, - * "Status": "QUEUED", - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * Status: "QUEUED", + * Tags: { + * key1: "value1", + * key2: "value2" * } * }, * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName2/originEndpoint/exampleOriginEndpointName2/harvestJob/HarvestJobName2", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName2", - * "CreatedAt": "2024-05-28T15:30:00.00Z", - * "Description": "Example HarvestJob2 description", - * "Destination": { - * "S3Destination": { - * "BucketName": "harvestJobS3DestinationBucket", - * "DestinationPath": "manifests" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName2/originEndpoint/exampleOriginEndpointName2/harvestJob/HarvestJobName2", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName2", + * CreatedAt: "2024-05-28T15:30:00.00Z", + * Description: "Example HarvestJob2 description", + * Destination: { + * S3Destination: { + * BucketName: "harvestJobS3DestinationBucket", + * DestinationPath: "manifests" * } * }, - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "HarvestJobName": "HarvestJobName2", - * "HarvestedManifests": { - * "DashManifests": [ + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * HarvestJobName: "HarvestJobName2", + * HarvestedManifests: { + * DashManifests: [ * { - * "ManifestName": "DashManifest" + * ManifestName: "DashManifest" * } * ], - * "HlsManifests": [ + * HlsManifests: [ * { - * "ManifestName": "HlsManifest" + * ManifestName: "HlsManifest" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ManifestName": "LowLatencyHlsManifest" + * ManifestName: "LowLatencyHlsManifest" * } * ] * }, - * "ModifiedAt": "2024-05-28T15:30:00.00Z", - * "OriginEndpointName": "exampleOriginEndpointName2", - * "ScheduleConfiguration": { - * "EndTime": "2024-05-28T12:00:00.00Z", - * "StartTime": "2024-05-28T02:00:00.00Z" + * ModifiedAt: "2024-05-28T15:30:00.00Z", + * OriginEndpointName: "exampleOriginEndpointName2", + * ScheduleConfiguration: { + * EndTime: "2024-05-28T12:00:00.00Z", + * StartTime: "2024-05-28T02:00:00.00Z" * }, - * "Status": "IN_PROGRESS", - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * Status: "IN_PROGRESS", + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * ], - * "NextToken": "someTokenValue" + * NextToken: "someTokenValue" * } * *\/ - * // example id: example-1 * ``` * * @example ListHarvestJobs: Specify ChannelGroup, Channel only * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName" * }; * const command = new ListHarvestJobsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Items": [ + * Items: [ * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName", - * "CreatedAt": "2024-05-28T09:36:00.00Z", - * "Description": "Example HarvestJob description", - * "Destination": { - * "S3Destination": { - * "BucketName": "harvestJobS3DestinationBucket", - * "DestinationPath": "manifests" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName", + * CreatedAt: "2024-05-28T09:36:00.00Z", + * Description: "Example HarvestJob description", + * Destination: { + * S3Destination: { + * BucketName: "harvestJobS3DestinationBucket", + * DestinationPath: "manifests" * } * }, - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "HarvestJobName": "HarvestJobName", - * "HarvestedManifests": { - * "DashManifests": [ + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * HarvestJobName: "HarvestJobName", + * HarvestedManifests: { + * DashManifests: [ * { - * "ManifestName": "DashManifest" + * ManifestName: "DashManifest" * } * ], - * "HlsManifests": [ + * HlsManifests: [ * { - * "ManifestName": "HlsManifest" + * ManifestName: "HlsManifest" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ManifestName": "LowLatencyHlsManifest" + * ManifestName: "LowLatencyHlsManifest" * } * ] * }, - * "ModifiedAt": "2024-05-28T09:36:00.00Z", - * "OriginEndpointName": "exampleOriginEndpointName", - * "ScheduleConfiguration": { - * "EndTime": "2024-05-28T12:00:00.00Z", - * "StartTime": "2024-05-28T06:00:00.00Z" + * ModifiedAt: "2024-05-28T09:36:00.00Z", + * OriginEndpointName: "exampleOriginEndpointName", + * ScheduleConfiguration: { + * EndTime: "2024-05-28T12:00:00.00Z", + * StartTime: "2024-05-28T06:00:00.00Z" * }, - * "Status": "QUEUED", - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * Status: "QUEUED", + * Tags: { + * key1: "value1", + * key2: "value2" * } * }, * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName2/harvestJob/HarvestJobName2", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName", - * "CreatedAt": "2024-05-28T15:30:00.00Z", - * "Description": "Example HarvestJob2 description", - * "Destination": { - * "S3Destination": { - * "BucketName": "harvestJobS3DestinationBucket", - * "DestinationPath": "manifests" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName2/harvestJob/HarvestJobName2", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName", + * CreatedAt: "2024-05-28T15:30:00.00Z", + * Description: "Example HarvestJob2 description", + * Destination: { + * S3Destination: { + * BucketName: "harvestJobS3DestinationBucket", + * DestinationPath: "manifests" * } * }, - * "HarvestJobName": "HarvestJobName2", - * "HarvestedManifests": { - * "DashManifests": [ + * HarvestJobName: "HarvestJobName2", + * HarvestedManifests: { + * DashManifests: [ * { - * "ManifestName": "DashManifest" + * ManifestName: "DashManifest" * } * ], - * "HlsManifests": [ + * HlsManifests: [ * { - * "ManifestName": "HlsManifest" + * ManifestName: "HlsManifest" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ManifestName": "LowLatencyHlsManifest" + * ManifestName: "LowLatencyHlsManifest" * } * ] * }, - * "ModifiedAt": "2024-05-28T15:30:00.00Z", - * "OriginEndpointName": "exampleOriginEndpointName2", - * "ScheduleConfiguration": { - * "EndTime": "2024-05-28T12:00:00.00Z", - * "StartTime": "2024-05-28T02:00:00.00Z" + * ModifiedAt: "2024-05-28T15:30:00.00Z", + * OriginEndpointName: "exampleOriginEndpointName2", + * ScheduleConfiguration: { + * EndTime: "2024-05-28T12:00:00.00Z", + * StartTime: "2024-05-28T02:00:00.00Z" * }, - * "Status": "IN_PROGRESS", - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * Status: "IN_PROGRESS", + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * ], - * "NextToken": "someTokenValue" + * NextToken: "someTokenValue" * } * *\/ - * // example id: example-2 * ``` * * @example ListHarvestJobs: Specify ChannelGroup, Channel, OriginEndpoint * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName", - * "OriginEndpointName": "exampleOriginEndpointName" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName", + * OriginEndpointName: "exampleOriginEndpointName" * }; * const command = new ListHarvestJobsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Items": [ + * Items: [ * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName", - * "CreatedAt": "2024-05-28T09:36:00.00Z", - * "Description": "Example HarvestJob description", - * "Destination": { - * "S3Destination": { - * "BucketName": "harvestJobS3DestinationBucket", - * "DestinationPath": "manifests" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName", + * CreatedAt: "2024-05-28T09:36:00.00Z", + * Description: "Example HarvestJob description", + * Destination: { + * S3Destination: { + * BucketName: "harvestJobS3DestinationBucket", + * DestinationPath: "manifests" * } * }, - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "HarvestJobName": "HarvestJobName", - * "HarvestedManifests": { - * "DashManifests": [ + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * HarvestJobName: "HarvestJobName", + * HarvestedManifests: { + * DashManifests: [ * { - * "ManifestName": "DashManifest" + * ManifestName: "DashManifest" * } * ], - * "HlsManifests": [ + * HlsManifests: [ * { - * "ManifestName": "HlsManifest" + * ManifestName: "HlsManifest" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ManifestName": "LowLatencyHlsManifest" + * ManifestName: "LowLatencyHlsManifest" * } * ] * }, - * "ModifiedAt": "2024-05-28T09:36:00.00Z", - * "OriginEndpointName": "exampleOriginEndpointName", - * "ScheduleConfiguration": { - * "EndTime": "2024-05-28T12:00:00.00Z", - * "StartTime": "2024-05-28T06:00:00.00Z" + * ModifiedAt: "2024-05-28T09:36:00.00Z", + * OriginEndpointName: "exampleOriginEndpointName", + * ScheduleConfiguration: { + * EndTime: "2024-05-28T12:00:00.00Z", + * StartTime: "2024-05-28T06:00:00.00Z" * }, - * "Status": "QUEUED" + * Status: "QUEUED" * } * ], - * "NextToken": "someTokenValue" + * NextToken: "someTokenValue" * } * *\/ - * // example id: example-3 * ``` * * @example ListHarvestJobs: Specify ChannelGroup, Channel, OriginEndpoint + Status filter * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName", - * "OriginEndpointName": "exampleOriginEndpointName", - * "Status": "QUEUED" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName", + * OriginEndpointName: "exampleOriginEndpointName", + * Status: "QUEUED" * }; * const command = new ListHarvestJobsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Items": [ + * Items: [ * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName", - * "CreatedAt": "2024-05-28T09:36:00.00Z", - * "Description": "Example HarvestJob description", - * "Destination": { - * "S3Destination": { - * "BucketName": "harvestJobS3DestinationBucket", - * "DestinationPath": "manifests" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName", + * CreatedAt: "2024-05-28T09:36:00.00Z", + * Description: "Example HarvestJob description", + * Destination: { + * S3Destination: { + * BucketName: "harvestJobS3DestinationBucket", + * DestinationPath: "manifests" * } * }, - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "HarvestJobName": "HarvestJobName", - * "HarvestedManifests": { - * "DashManifests": [ + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * HarvestJobName: "HarvestJobName", + * HarvestedManifests: { + * DashManifests: [ * { - * "ManifestName": "DashManifest" + * ManifestName: "DashManifest" * } * ], - * "HlsManifests": [ + * HlsManifests: [ * { - * "ManifestName": "HlsManifest" + * ManifestName: "HlsManifest" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ManifestName": "LowLatencyHlsManifest" + * ManifestName: "LowLatencyHlsManifest" * } * ] * }, - * "ModifiedAt": "2024-05-28T09:36:00.00Z", - * "OriginEndpointName": "exampleOriginEndpointName", - * "ScheduleConfiguration": { - * "EndTime": "2024-05-28T12:00:00.00Z", - * "StartTime": "2024-05-28T06:00:00.00Z" + * ModifiedAt: "2024-05-28T09:36:00.00Z", + * OriginEndpointName: "exampleOriginEndpointName", + * ScheduleConfiguration: { + * EndTime: "2024-05-28T12:00:00.00Z", + * StartTime: "2024-05-28T06:00:00.00Z" * }, - * "Status": "QUEUED" + * Status: "QUEUED" * } * ], - * "NextToken": "someTokenValue" + * NextToken: "someTokenValue" * } * *\/ - * // example id: example-4 * ``` * * @example ListHarvestJobs: Empty response * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannelName", - * "OriginEndpointName": "exampleOriginEndpointName" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannelName", + * OriginEndpointName: "exampleOriginEndpointName" * }; * const command = new ListHarvestJobsCommand(input); - * await client.send(command); - * // example id: example-5 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class ListHarvestJobsCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/ListOriginEndpointsCommand.ts b/clients/client-mediapackagev2/src/commands/ListOriginEndpointsCommand.ts index 8ca2b95990c0c..e0d4f95c280a0 100644 --- a/clients/client-mediapackagev2/src/commands/ListOriginEndpointsCommand.ts +++ b/clients/client-mediapackagev2/src/commands/ListOriginEndpointsCommand.ts @@ -110,118 +110,118 @@ export interface ListOriginEndpointsCommandOutput extends ListOriginEndpointsRes * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Listing all OriginEndpoints * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel" * }; * const command = new ListOriginEndpointsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Items": [ + * Items: [ * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointTS", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "ContainerType": "TS", - * "CreatedAt": "2022-10-18T09:36:00.00Z", - * "Description": "Description for exampleOriginEndpointTS", - * "ForceEndpointErrorConfiguration": { - * "EndpointErrorConditions": [ + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointTS", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * ContainerType: "TS", + * CreatedAt: "2022-10-18T09:36:00.00Z", + * Description: "Description for exampleOriginEndpointTS", + * ForceEndpointErrorConfiguration: { + * EndpointErrorConditions: [ * "STALE_MANIFEST", * "INCOMPLETE_MANIFEST", * "MISSING_DRM_KEY", * "SLATE_INPUT" * ] * }, - * "HlsManifests": [ + * HlsManifests: [ * { - * "ChildManifestName": "exampleChildManifest1", - * "ManifestName": "exampleManifest1", - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest1.m3u8" + * ChildManifestName: "exampleChildManifest1", + * ManifestName: "exampleManifest1", + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest1.m3u8" * }, * { - * "ChildManifestName": "exampleManifest2", - * "ManifestName": "exampleManifest2", - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest2.m3u8" + * ChildManifestName: "exampleManifest2", + * ManifestName: "exampleManifest2", + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest2.m3u8" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ChildManifestName": "exampleLLChildManifest1", - * "ManifestName": "exampleLLManifest1", - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest1.m3u8" + * ChildManifestName: "exampleLLChildManifest1", + * ManifestName: "exampleLLManifest1", + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest1.m3u8" * }, * { - * "ChildManifestName": "exampleLLManifest2", - * "ManifestName": "exampleLLManifest2", - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest2.m3u8" + * ChildManifestName: "exampleLLManifest2", + * ManifestName: "exampleLLManifest2", + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest2.m3u8" * } * ], - * "ModifiedAt": "2022-10-18T09:36:00.00Z", - * "OriginEndpointName": "exampleOriginEndpointTS" + * ModifiedAt: "2022-10-18T09:36:00.00Z", + * OriginEndpointName: "exampleOriginEndpointTS" * }, * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointCMAF", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "ContainerType": "CMAF", - * "CreatedAt": "2022-10-18T09:36:00.00Z", - * "DashManifests": [ + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointCMAF", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * ContainerType: "CMAF", + * CreatedAt: "2022-10-18T09:36:00.00Z", + * DashManifests: [ * { - * "ManifestName": "exampleDashManifest1", - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleDashManifest1.mpd" + * ManifestName: "exampleDashManifest1", + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleDashManifest1.mpd" * }, * { - * "ManifestName": "exampleDashManifest2", - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleDashManifest2.mpd" + * ManifestName: "exampleDashManifest2", + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleDashManifest2.mpd" * } * ], - * "ForceEndpointErrorConfiguration": { - * "EndpointErrorConditions": [ + * ForceEndpointErrorConfiguration: { + * EndpointErrorConditions: [ * "STALE_MANIFEST", * "INCOMPLETE_MANIFEST", * "MISSING_DRM_KEY", * "SLATE_INPUT" * ] * }, - * "HlsManifests": [ + * HlsManifests: [ * { - * "ChildManifestName": "exampleChildManifest1", - * "ManifestName": "exampleManifest1", - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleManifest1.m3u8" + * ChildManifestName: "exampleChildManifest1", + * ManifestName: "exampleManifest1", + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleManifest1.m3u8" * }, * { - * "ChildManifestName": "exampleManifest2", - * "ManifestName": "exampleManifest2", - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleManifest2.m3u8" + * ChildManifestName: "exampleManifest2", + * ManifestName: "exampleManifest2", + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleManifest2.m3u8" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ChildManifestName": "exampleLLChildManifest1", - * "ManifestName": "exampleLLManifest1", - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleLLManifest1.m3u8" + * ChildManifestName: "exampleLLChildManifest1", + * ManifestName: "exampleLLManifest1", + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleLLManifest1.m3u8" * }, * { - * "ChildManifestName": "exampleLLManifest2", - * "ManifestName": "exampleLLManifest2", - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleLLManifest2.m3u8" + * ChildManifestName: "exampleLLManifest2", + * ManifestName: "exampleLLManifest2", + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointCMAF/exampleLLManifest2.m3u8" * } * ], - * "ModifiedAt": "2022-10-18T09:36:00.00Z", - * "OriginEndpointName": "exampleOriginEndpointCMAF" + * ModifiedAt: "2022-10-18T09:36:00.00Z", + * OriginEndpointName: "exampleOriginEndpointCMAF" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListOriginEndpointsCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/ListTagsForResourceCommand.ts b/clients/client-mediapackagev2/src/commands/ListTagsForResourceCommand.ts index 9f9caa145cf91..a6dd362349b9e 100644 --- a/clients/client-mediapackagev2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mediapackagev2/src/commands/ListTagsForResourceCommand.ts @@ -60,26 +60,26 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example List all tags for a resource * ```javascript * // * const input = { - * "ResourceArn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel" + * ResourceArn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/PutChannelPolicyCommand.ts b/clients/client-mediapackagev2/src/commands/PutChannelPolicyCommand.ts index 544b07ad9f7de..20146871d54bc 100644 --- a/clients/client-mediapackagev2/src/commands/PutChannelPolicyCommand.ts +++ b/clients/client-mediapackagev2/src/commands/PutChannelPolicyCommand.ts @@ -73,20 +73,23 @@ export interface PutChannelPolicyCommandOutput extends PutChannelPolicyResponse, * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Creating a Channel Policy * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "Policy": "{...}" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * Policy: "{...}" * }; * const command = new PutChannelPolicyCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class PutChannelPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/PutOriginEndpointPolicyCommand.ts b/clients/client-mediapackagev2/src/commands/PutOriginEndpointPolicyCommand.ts index b1a4d199eed49..c10ffc8feaaf8 100644 --- a/clients/client-mediapackagev2/src/commands/PutOriginEndpointPolicyCommand.ts +++ b/clients/client-mediapackagev2/src/commands/PutOriginEndpointPolicyCommand.ts @@ -74,21 +74,24 @@ export interface PutOriginEndpointPolicyCommandOutput extends PutOriginEndpointP * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Creating an Origin Endpoint Policy * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "OriginEndpointName": "exampleOriginEndpoint", - * "Policy": "{...}" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * OriginEndpointName: "exampleOriginEndpoint", + * Policy: "{...}" * }; * const command = new PutOriginEndpointPolicyCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class PutOriginEndpointPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/ResetChannelStateCommand.ts b/clients/client-mediapackagev2/src/commands/ResetChannelStateCommand.ts index e968a3296b6df..5394d242da67b 100644 --- a/clients/client-mediapackagev2/src/commands/ResetChannelStateCommand.ts +++ b/clients/client-mediapackagev2/src/commands/ResetChannelStateCommand.ts @@ -78,27 +78,27 @@ export interface ResetChannelStateCommandOutput extends ResetChannelStateRespons * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Reset a Channel * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel" * }; * const command = new ResetChannelStateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "ResetAt": "2024-10-09T09:36:00.00Z" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * ResetAt: "2024-10-09T09:36:00.00Z" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ResetChannelStateCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/ResetOriginEndpointStateCommand.ts b/clients/client-mediapackagev2/src/commands/ResetOriginEndpointStateCommand.ts index b3f874fdfd6ac..063623b19e8ce 100644 --- a/clients/client-mediapackagev2/src/commands/ResetOriginEndpointStateCommand.ts +++ b/clients/client-mediapackagev2/src/commands/ResetOriginEndpointStateCommand.ts @@ -80,29 +80,29 @@ export interface ResetOriginEndpointStateCommandOutput extends ResetOriginEndpoi * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Reset an OriginEndpoint * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "OriginEndpointName": "exampleOriginEndpoint" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * OriginEndpointName: "exampleOriginEndpoint" * }; * const command = new ResetOriginEndpointStateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpoint", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "OriginEndpointName": "exampleOriginEndpoint", - * "ResetAt": "2024-10-09T09:36:00.00Z" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpoint", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * OriginEndpointName: "exampleOriginEndpoint", + * ResetAt: "2024-10-09T09:36:00.00Z" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ResetOriginEndpointStateCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/TagResourceCommand.ts b/clients/client-mediapackagev2/src/commands/TagResourceCommand.ts index 2ac2e7da2cba5..73193bc4888ea 100644 --- a/clients/client-mediapackagev2/src/commands/TagResourceCommand.ts +++ b/clients/client-mediapackagev2/src/commands/TagResourceCommand.ts @@ -64,22 +64,25 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Add tags to a resource * ```javascript * // * const input = { - * "ResourceArn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel", - * "Tags": { - * "key3": "value3", - * "key4": "value4" + * ResourceArn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel", + * Tags: { + * key3: "value3", + * key4: "value4" * } * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/UntagResourceCommand.ts b/clients/client-mediapackagev2/src/commands/UntagResourceCommand.ts index 8b653226c3342..0033558a7bb76 100644 --- a/clients/client-mediapackagev2/src/commands/UntagResourceCommand.ts +++ b/clients/client-mediapackagev2/src/commands/UntagResourceCommand.ts @@ -59,22 +59,25 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Remove tags from a resource * ```javascript * // * const input = { - * "ResourceArn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel", - * "TagKeys": [ + * ResourceArn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel", + * TagKeys: [ * "key3", * "key4" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/UpdateChannelCommand.ts b/clients/client-mediapackagev2/src/commands/UpdateChannelCommand.ts index 52a293343716f..46b073aa651aa 100644 --- a/clients/client-mediapackagev2/src/commands/UpdateChannelCommand.ts +++ b/clients/client-mediapackagev2/src/commands/UpdateChannelCommand.ts @@ -105,46 +105,46 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Updating a Channel * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "Description": "Updated description for exampleChannel" + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * Description: "Updated description for exampleChannel" * }; * const command = new UpdateChannelCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "CreatedAt": "2022-10-18T09:36:00.00Z", - * "Description": "Updated description for exampleChannel", - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "IngestEndpoints": [ + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * CreatedAt: "2022-10-18T09:36:00.00Z", + * Description: "Updated description for exampleChannel", + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * IngestEndpoints: [ * { - * "Id": "1", - * "Url": "https://abcde-1.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index" + * Id: "1", + * Url: "https://abcde-1.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index" * }, * { - * "Id": "2", - * "Url": "https://abcde-2.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index" + * Id: "2", + * Url: "https://abcde-2.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index" * } * ], - * "InputType": "HLS", - * "ModifiedAt": "2022-10-18T10:36:00.00Z", - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * InputType: "HLS", + * ModifiedAt: "2022-10-18T10:36:00.00Z", + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateChannelCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/UpdateChannelGroupCommand.ts b/clients/client-mediapackagev2/src/commands/UpdateChannelGroupCommand.ts index 3ce2ce1947c40..96a8699a8153f 100644 --- a/clients/client-mediapackagev2/src/commands/UpdateChannelGroupCommand.ts +++ b/clients/client-mediapackagev2/src/commands/UpdateChannelGroupCommand.ts @@ -85,34 +85,34 @@ export interface UpdateChannelGroupCommandOutput extends UpdateChannelGroupRespo * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Updating a Channel Group * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "Description": "Updated description for exampleChannelGroup" + * ChannelGroupName: "exampleChannelGroup", + * Description: "Updated description for exampleChannelGroup" * }; * const command = new UpdateChannelGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup", - * "ChannelGroupName": "exampleChannelGroup", - * "CreatedAt": "2022-10-18T09:36:00.00Z", - * "Description": "Updated description for exampleChannelGroup", - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "EgressDomain": "abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com", - * "ModifiedAt": "2022-10-18T10:36:00.00Z", - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup", + * ChannelGroupName: "exampleChannelGroup", + * CreatedAt: "2022-10-18T09:36:00.00Z", + * Description: "Updated description for exampleChannelGroup", + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * EgressDomain: "abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com", + * ModifiedAt: "2022-10-18T10:36:00.00Z", + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateChannelGroupCommand extends $Command .classBuilder< diff --git a/clients/client-mediapackagev2/src/commands/UpdateOriginEndpointCommand.ts b/clients/client-mediapackagev2/src/commands/UpdateOriginEndpointCommand.ts index 0153f96591c88..66e9a939405d5 100644 --- a/clients/client-mediapackagev2/src/commands/UpdateOriginEndpointCommand.ts +++ b/clients/client-mediapackagev2/src/commands/UpdateOriginEndpointCommand.ts @@ -320,203 +320,203 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR * @throws {@link MediaPackageV2ServiceException} *

Base exception class for all service exceptions from MediaPackageV2 service.

* - * @public + * * @example Updating an OriginEndpoint * ```javascript * // * const input = { - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "ContainerType": "TS", - * "Description": "Updated description for exampleOriginEndpointTS", - * "ForceEndpointErrorConfiguration": { - * "EndpointErrorConditions": [ + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * ContainerType: "TS", + * Description: "Updated description for exampleOriginEndpointTS", + * ForceEndpointErrorConfiguration: { + * EndpointErrorConditions: [ * "STALE_MANIFEST", * "INCOMPLETE_MANIFEST", * "MISSING_DRM_KEY", * "SLATE_INPUT" * ] * }, - * "HlsManifests": [ + * HlsManifests: [ * { - * "ChildManifestName": "exampleChildManifest1", - * "ManifestName": "exampleManifest1", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleChildManifest1", + * ManifestName: "exampleManifest1", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * } * }, * { - * "ChildManifestName": "exampleManifest2", - * "ManifestName": "exampleManifest2", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleManifest2", + * ManifestName: "exampleManifest2", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * } * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ChildManifestName": "exampleLLChildManifest1", - * "ManifestName": "exampleLLManifest1", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleLLChildManifest1", + * ManifestName: "exampleLLManifest1", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * } * }, * { - * "ChildManifestName": "exampleLLManifest2", - * "ManifestName": "exampleLLManifest2", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleLLManifest2", + * ManifestName: "exampleLLManifest2", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * } * } * ], - * "OriginEndpointName": "exampleOriginEndpointTS", - * "Segment": { - * "Encryption": { - * "ConstantInitializationVector": "A382A901F3C1F7718512266CFFBB0B7E", - * "EncryptionMethod": { - * "TsEncryptionMethod": "AES_128" + * OriginEndpointName: "exampleOriginEndpointTS", + * Segment: { + * Encryption: { + * ConstantInitializationVector: "A382A901F3C1F7718512266CFFBB0B7E", + * EncryptionMethod: { + * TsEncryptionMethod: "AES_128" * }, - * "KeyRotationIntervalSeconds": 300, - * "SpekeKeyProvider": { - * "DrmSystems": [ + * KeyRotationIntervalSeconds: 300, + * SpekeKeyProvider: { + * DrmSystems: [ * "CLEAR_KEY_AES_128" * ], - * "EncryptionContractConfiguration": { - * "PresetSpeke20Audio": "SHARED", - * "PresetSpeke20Video": "SHARED" + * EncryptionContractConfiguration: { + * PresetSpeke20Audio: "SHARED", + * PresetSpeke20Video: "SHARED" * }, - * "ResourceId": "ResourceId", - * "RoleArn": "arn:aws:iam::123456789012:role/empRole", - * "Url": "https://foo.com" + * ResourceId: "ResourceId", + * RoleArn: "arn:aws:iam::123456789012:role/empRole", + * Url: "https://foo.com" * } * }, - * "IncludeIframeOnlyStreams": false, - * "Scte": { - * "ScteFilter": [ + * IncludeIframeOnlyStreams: false, + * Scte: { + * ScteFilter: [ * "SPLICE_INSERT" * ] * }, - * "SegmentDurationSeconds": 7, - * "SegmentName": "segmentName2", - * "TsIncludeDvbSubtitles": false, - * "TsUseAudioRenditionGroup": true + * SegmentDurationSeconds: 7, + * SegmentName: "segmentName2", + * TsIncludeDvbSubtitles: false, + * TsUseAudioRenditionGroup: true * }, - * "StartoverWindowSeconds": 600 + * StartoverWindowSeconds: 600 * }; * const command = new UpdateOriginEndpointCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointTS", - * "ChannelGroupName": "exampleChannelGroup", - * "ChannelName": "exampleChannel", - * "ContainerType": "TS", - * "CreatedAt": "2022-10-18T09:36:00.00Z", - * "Description": "Updated description for exampleOriginEndpointTS", - * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", - * "ForceEndpointErrorConfiguration": { - * "EndpointErrorConditions": [ + * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointTS", + * ChannelGroupName: "exampleChannelGroup", + * ChannelName: "exampleChannel", + * ContainerType: "TS", + * CreatedAt: "2022-10-18T09:36:00.00Z", + * Description: "Updated description for exampleOriginEndpointTS", + * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=", + * ForceEndpointErrorConfiguration: { + * EndpointErrorConditions: [ * "STALE_MANIFEST", * "INCOMPLETE_MANIFEST", * "MISSING_DRM_KEY", * "SLATE_INPUT" * ] * }, - * "HlsManifests": [ + * HlsManifests: [ * { - * "ChildManifestName": "exampleChildManifest1", - * "ManifestName": "exampleManifest1", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleChildManifest1", + * ManifestName: "exampleManifest1", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest1.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest1.m3u8" * }, * { - * "ChildManifestName": "exampleManifest2", - * "ManifestName": "exampleManifest2", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleManifest2", + * ManifestName: "exampleManifest2", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest2.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest2.m3u8" * } * ], - * "LowLatencyHlsManifests": [ + * LowLatencyHlsManifests: [ * { - * "ChildManifestName": "exampleLLChildManifest1", - * "ManifestName": "exampleLLManifest1", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleLLChildManifest1", + * ManifestName: "exampleLLManifest1", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest1.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest1.m3u8" * }, * { - * "ChildManifestName": "exampleLLManifest2", - * "ManifestName": "exampleLLManifest2", - * "ManifestWindowSeconds": 30, - * "ProgramDateTimeIntervalSeconds": 60, - * "ScteHls": { - * "AdMarkerHls": "DATERANGE" + * ChildManifestName: "exampleLLManifest2", + * ManifestName: "exampleLLManifest2", + * ManifestWindowSeconds: 30, + * ProgramDateTimeIntervalSeconds: 60, + * ScteHls: { + * AdMarkerHls: "DATERANGE" * }, - * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest2.m3u8" + * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest2.m3u8" * } * ], - * "ModifiedAt": "2022-10-18T09:36:00.00Z", - * "OriginEndpointName": "exampleOriginEndpointTS", - * "Segment": { - * "Encryption": { - * "ConstantInitializationVector": "A382A901F3C1F7718512266CFFBB0B7E", - * "EncryptionMethod": { - * "TsEncryptionMethod": "AES_128" + * ModifiedAt: "2022-10-18T09:36:00.00Z", + * OriginEndpointName: "exampleOriginEndpointTS", + * Segment: { + * Encryption: { + * ConstantInitializationVector: "A382A901F3C1F7718512266CFFBB0B7E", + * EncryptionMethod: { + * TsEncryptionMethod: "AES_128" * }, - * "KeyRotationIntervalSeconds": 300, - * "SpekeKeyProvider": { - * "DrmSystems": [ + * KeyRotationIntervalSeconds: 300, + * SpekeKeyProvider: { + * DrmSystems: [ * "CLEAR_KEY_AES_128" * ], - * "EncryptionContractConfiguration": { - * "PresetSpeke20Audio": "SHARED", - * "PresetSpeke20Video": "SHARED" + * EncryptionContractConfiguration: { + * PresetSpeke20Audio: "SHARED", + * PresetSpeke20Video: "SHARED" * }, - * "ResourceId": "ResourceId", - * "RoleArn": "arn:aws:iam::123456789012:role/empRole", - * "Url": "https://foo.com" + * ResourceId: "ResourceId", + * RoleArn: "arn:aws:iam::123456789012:role/empRole", + * Url: "https://foo.com" * } * }, - * "IncludeIframeOnlyStreams": false, - * "Scte": { - * "ScteFilter": [ + * IncludeIframeOnlyStreams: false, + * Scte: { + * ScteFilter: [ * "SPLICE_INSERT" * ] * }, - * "SegmentDurationSeconds": 7, - * "SegmentName": "segmentName2", - * "TsIncludeDvbSubtitles": false, - * "TsUseAudioRenditionGroup": true + * SegmentDurationSeconds: 7, + * SegmentName: "segmentName2", + * TsIncludeDvbSubtitles: false, + * TsUseAudioRenditionGroup: true * }, - * "StartoverWindowSeconds": 600, - * "Tags": { - * "key1": "value1", - * "key2": "value2" + * StartoverWindowSeconds: 600, + * Tags: { + * key1: "value1", + * key2: "value2" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateOriginEndpointCommand extends $Command .classBuilder< diff --git a/clients/client-mediastore-data/src/commands/DeleteObjectCommand.ts b/clients/client-mediastore-data/src/commands/DeleteObjectCommand.ts index b24eb1f0ccbd8..c59745b8b6e17 100644 --- a/clients/client-mediastore-data/src/commands/DeleteObjectCommand.ts +++ b/clients/client-mediastore-data/src/commands/DeleteObjectCommand.ts @@ -62,6 +62,7 @@ export interface DeleteObjectCommandOutput extends DeleteObjectResponse, __Metad * @throws {@link MediaStoreDataServiceException} *

Base exception class for all service exceptions from MediaStoreData service.

* + * * @public */ export class DeleteObjectCommand extends $Command diff --git a/clients/client-mediastore-data/src/commands/DescribeObjectCommand.ts b/clients/client-mediastore-data/src/commands/DescribeObjectCommand.ts index 0906aaa013c10..be6e2bbb05aa4 100644 --- a/clients/client-mediastore-data/src/commands/DescribeObjectCommand.ts +++ b/clients/client-mediastore-data/src/commands/DescribeObjectCommand.ts @@ -68,6 +68,7 @@ export interface DescribeObjectCommandOutput extends DescribeObjectResponse, __M * @throws {@link MediaStoreDataServiceException} *

Base exception class for all service exceptions from MediaStoreData service.

* + * * @public */ export class DescribeObjectCommand extends $Command diff --git a/clients/client-mediastore-data/src/commands/GetObjectCommand.ts b/clients/client-mediastore-data/src/commands/GetObjectCommand.ts index 5e5c535dc9eeb..bfbe7c3f9cfbe 100644 --- a/clients/client-mediastore-data/src/commands/GetObjectCommand.ts +++ b/clients/client-mediastore-data/src/commands/GetObjectCommand.ts @@ -43,6 +43,11 @@ export interface GetObjectCommandOutput extends Omit, * }; * const command = new GetObjectCommand(input); * const response = await client.send(command); + * // consume or destroy the stream to free the socket. + * const bytes = await response.Body.transformToByteArray(); + * // const str = await response.Body.transformToString(); + * // response.Body.destroy(); // only applicable to Node.js Readable streams. + * * // { // GetObjectResponse * // Body: "", // see \@smithy/types -> StreamingBlobPayloadOutputTypes * // CacheControl: "STRING_VALUE", @@ -77,6 +82,7 @@ export interface GetObjectCommandOutput extends Omit, * @throws {@link MediaStoreDataServiceException} *

Base exception class for all service exceptions from MediaStoreData service.

* + * * @public */ export class GetObjectCommand extends $Command diff --git a/clients/client-mediastore-data/src/commands/ListItemsCommand.ts b/clients/client-mediastore-data/src/commands/ListItemsCommand.ts index ec7fb9d1980b4..012dd052846a1 100644 --- a/clients/client-mediastore-data/src/commands/ListItemsCommand.ts +++ b/clients/client-mediastore-data/src/commands/ListItemsCommand.ts @@ -74,6 +74,7 @@ export interface ListItemsCommandOutput extends ListItemsResponse, __MetadataBea * @throws {@link MediaStoreDataServiceException} *

Base exception class for all service exceptions from MediaStoreData service.

* + * * @public */ export class ListItemsCommand extends $Command diff --git a/clients/client-mediastore-data/src/commands/PutObjectCommand.ts b/clients/client-mediastore-data/src/commands/PutObjectCommand.ts index 69155132fbb0c..eadeb44c1995d 100644 --- a/clients/client-mediastore-data/src/commands/PutObjectCommand.ts +++ b/clients/client-mediastore-data/src/commands/PutObjectCommand.ts @@ -71,6 +71,7 @@ export interface PutObjectCommandOutput extends PutObjectResponse, __MetadataBea * @throws {@link MediaStoreDataServiceException} *

Base exception class for all service exceptions from MediaStoreData service.

* + * * @public */ export class PutObjectCommand extends $Command diff --git a/clients/client-mediastore/src/commands/CreateContainerCommand.ts b/clients/client-mediastore/src/commands/CreateContainerCommand.ts index 02cd290b6e11f..ea656c70512ed 100644 --- a/clients/client-mediastore/src/commands/CreateContainerCommand.ts +++ b/clients/client-mediastore/src/commands/CreateContainerCommand.ts @@ -79,6 +79,7 @@ export interface CreateContainerCommandOutput extends CreateContainerOutput, __M * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class CreateContainerCommand extends $Command diff --git a/clients/client-mediastore/src/commands/DeleteContainerCommand.ts b/clients/client-mediastore/src/commands/DeleteContainerCommand.ts index 86daddbb3d9d1..d3540b14c2b63 100644 --- a/clients/client-mediastore/src/commands/DeleteContainerCommand.ts +++ b/clients/client-mediastore/src/commands/DeleteContainerCommand.ts @@ -65,6 +65,7 @@ export interface DeleteContainerCommandOutput extends DeleteContainerOutput, __M * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class DeleteContainerCommand extends $Command diff --git a/clients/client-mediastore/src/commands/DeleteContainerPolicyCommand.ts b/clients/client-mediastore/src/commands/DeleteContainerPolicyCommand.ts index 617d23955ccd8..a15112b8a0517 100644 --- a/clients/client-mediastore/src/commands/DeleteContainerPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/DeleteContainerPolicyCommand.ts @@ -66,6 +66,7 @@ export interface DeleteContainerPolicyCommandOutput extends DeleteContainerPolic * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class DeleteContainerPolicyCommand extends $Command diff --git a/clients/client-mediastore/src/commands/DeleteCorsPolicyCommand.ts b/clients/client-mediastore/src/commands/DeleteCorsPolicyCommand.ts index 35da2acb0202d..d71376b6b321d 100644 --- a/clients/client-mediastore/src/commands/DeleteCorsPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/DeleteCorsPolicyCommand.ts @@ -70,6 +70,7 @@ export interface DeleteCorsPolicyCommandOutput extends DeleteCorsPolicyOutput, _ * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class DeleteCorsPolicyCommand extends $Command diff --git a/clients/client-mediastore/src/commands/DeleteLifecyclePolicyCommand.ts b/clients/client-mediastore/src/commands/DeleteLifecyclePolicyCommand.ts index 82070fdb324d9..9936d7dcfbb3a 100644 --- a/clients/client-mediastore/src/commands/DeleteLifecyclePolicyCommand.ts +++ b/clients/client-mediastore/src/commands/DeleteLifecyclePolicyCommand.ts @@ -66,6 +66,7 @@ export interface DeleteLifecyclePolicyCommandOutput extends DeleteLifecyclePolic * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class DeleteLifecyclePolicyCommand extends $Command diff --git a/clients/client-mediastore/src/commands/DeleteMetricPolicyCommand.ts b/clients/client-mediastore/src/commands/DeleteMetricPolicyCommand.ts index e5ca53449d25a..b5b36cc962182 100644 --- a/clients/client-mediastore/src/commands/DeleteMetricPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/DeleteMetricPolicyCommand.ts @@ -66,6 +66,7 @@ export interface DeleteMetricPolicyCommandOutput extends DeleteMetricPolicyOutpu * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class DeleteMetricPolicyCommand extends $Command diff --git a/clients/client-mediastore/src/commands/DescribeContainerCommand.ts b/clients/client-mediastore/src/commands/DescribeContainerCommand.ts index 69766620020a8..881b9f09115d7 100644 --- a/clients/client-mediastore/src/commands/DescribeContainerCommand.ts +++ b/clients/client-mediastore/src/commands/DescribeContainerCommand.ts @@ -74,6 +74,7 @@ export interface DescribeContainerCommandOutput extends DescribeContainerOutput, * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class DescribeContainerCommand extends $Command diff --git a/clients/client-mediastore/src/commands/GetContainerPolicyCommand.ts b/clients/client-mediastore/src/commands/GetContainerPolicyCommand.ts index c8f784ce206dd..88c580071cc91 100644 --- a/clients/client-mediastore/src/commands/GetContainerPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/GetContainerPolicyCommand.ts @@ -70,6 +70,7 @@ export interface GetContainerPolicyCommandOutput extends GetContainerPolicyOutpu * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class GetContainerPolicyCommand extends $Command diff --git a/clients/client-mediastore/src/commands/GetCorsPolicyCommand.ts b/clients/client-mediastore/src/commands/GetCorsPolicyCommand.ts index 0f3fc56d110d1..62e542fada544 100644 --- a/clients/client-mediastore/src/commands/GetCorsPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/GetCorsPolicyCommand.ts @@ -88,6 +88,7 @@ export interface GetCorsPolicyCommandOutput extends GetCorsPolicyOutput, __Metad * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class GetCorsPolicyCommand extends $Command diff --git a/clients/client-mediastore/src/commands/GetLifecyclePolicyCommand.ts b/clients/client-mediastore/src/commands/GetLifecyclePolicyCommand.ts index fc112794a683c..4676e362c201f 100644 --- a/clients/client-mediastore/src/commands/GetLifecyclePolicyCommand.ts +++ b/clients/client-mediastore/src/commands/GetLifecyclePolicyCommand.ts @@ -68,6 +68,7 @@ export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyOutpu * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class GetLifecyclePolicyCommand extends $Command diff --git a/clients/client-mediastore/src/commands/GetMetricPolicyCommand.ts b/clients/client-mediastore/src/commands/GetMetricPolicyCommand.ts index 2977127cf28fa..0af9d56bdc6d7 100644 --- a/clients/client-mediastore/src/commands/GetMetricPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/GetMetricPolicyCommand.ts @@ -76,6 +76,7 @@ export interface GetMetricPolicyCommandOutput extends GetMetricPolicyOutput, __M * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class GetMetricPolicyCommand extends $Command diff --git a/clients/client-mediastore/src/commands/ListContainersCommand.ts b/clients/client-mediastore/src/commands/ListContainersCommand.ts index 83379def5782a..c325dfe9f4c6b 100644 --- a/clients/client-mediastore/src/commands/ListContainersCommand.ts +++ b/clients/client-mediastore/src/commands/ListContainersCommand.ts @@ -77,6 +77,7 @@ export interface ListContainersCommandOutput extends ListContainersOutput, __Met * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class ListContainersCommand extends $Command diff --git a/clients/client-mediastore/src/commands/ListTagsForResourceCommand.ts b/clients/client-mediastore/src/commands/ListTagsForResourceCommand.ts index 29137b203d3b8..3fa7d69333291 100644 --- a/clients/client-mediastore/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mediastore/src/commands/ListTagsForResourceCommand.ts @@ -70,6 +70,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-mediastore/src/commands/PutContainerPolicyCommand.ts b/clients/client-mediastore/src/commands/PutContainerPolicyCommand.ts index 09c1767cbd187..f3eb8cd3dbf7d 100644 --- a/clients/client-mediastore/src/commands/PutContainerPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/PutContainerPolicyCommand.ts @@ -70,6 +70,7 @@ export interface PutContainerPolicyCommandOutput extends PutContainerPolicyOutpu * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class PutContainerPolicyCommand extends $Command diff --git a/clients/client-mediastore/src/commands/PutCorsPolicyCommand.ts b/clients/client-mediastore/src/commands/PutCorsPolicyCommand.ts index 34bc3c868a53f..fa0ae23b58091 100644 --- a/clients/client-mediastore/src/commands/PutCorsPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/PutCorsPolicyCommand.ts @@ -90,6 +90,7 @@ export interface PutCorsPolicyCommandOutput extends PutCorsPolicyOutput, __Metad * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class PutCorsPolicyCommand extends $Command diff --git a/clients/client-mediastore/src/commands/PutLifecyclePolicyCommand.ts b/clients/client-mediastore/src/commands/PutLifecyclePolicyCommand.ts index 99ec6ce21f3a0..4192c8f3ad004 100644 --- a/clients/client-mediastore/src/commands/PutLifecyclePolicyCommand.ts +++ b/clients/client-mediastore/src/commands/PutLifecyclePolicyCommand.ts @@ -65,6 +65,7 @@ export interface PutLifecyclePolicyCommandOutput extends PutLifecyclePolicyOutpu * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class PutLifecyclePolicyCommand extends $Command diff --git a/clients/client-mediastore/src/commands/PutMetricPolicyCommand.ts b/clients/client-mediastore/src/commands/PutMetricPolicyCommand.ts index 73790f3b5b22f..3315f56ff03f9 100644 --- a/clients/client-mediastore/src/commands/PutMetricPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/PutMetricPolicyCommand.ts @@ -72,6 +72,7 @@ export interface PutMetricPolicyCommandOutput extends PutMetricPolicyOutput, __M * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class PutMetricPolicyCommand extends $Command diff --git a/clients/client-mediastore/src/commands/StartAccessLoggingCommand.ts b/clients/client-mediastore/src/commands/StartAccessLoggingCommand.ts index a1c6aa26dad4f..f76d7bd38a5a7 100644 --- a/clients/client-mediastore/src/commands/StartAccessLoggingCommand.ts +++ b/clients/client-mediastore/src/commands/StartAccessLoggingCommand.ts @@ -63,6 +63,7 @@ export interface StartAccessLoggingCommandOutput extends StartAccessLoggingOutpu * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class StartAccessLoggingCommand extends $Command diff --git a/clients/client-mediastore/src/commands/StopAccessLoggingCommand.ts b/clients/client-mediastore/src/commands/StopAccessLoggingCommand.ts index f9a5879478a02..1343ba15a7472 100644 --- a/clients/client-mediastore/src/commands/StopAccessLoggingCommand.ts +++ b/clients/client-mediastore/src/commands/StopAccessLoggingCommand.ts @@ -63,6 +63,7 @@ export interface StopAccessLoggingCommandOutput extends StopAccessLoggingOutput, * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class StopAccessLoggingCommand extends $Command diff --git a/clients/client-mediastore/src/commands/TagResourceCommand.ts b/clients/client-mediastore/src/commands/TagResourceCommand.ts index fdea4ca15fbaa..1a35f1bc3b7b9 100644 --- a/clients/client-mediastore/src/commands/TagResourceCommand.ts +++ b/clients/client-mediastore/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-mediastore/src/commands/UntagResourceCommand.ts b/clients/client-mediastore/src/commands/UntagResourceCommand.ts index b78b32dbbe2a0..ee1dc5f87d207 100644 --- a/clients/client-mediastore/src/commands/UntagResourceCommand.ts +++ b/clients/client-mediastore/src/commands/UntagResourceCommand.ts @@ -66,6 +66,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/ConfigureLogsForChannelCommand.ts b/clients/client-mediatailor/src/commands/ConfigureLogsForChannelCommand.ts index 2e693b286b59e..4bbc7773889c7 100644 --- a/clients/client-mediatailor/src/commands/ConfigureLogsForChannelCommand.ts +++ b/clients/client-mediatailor/src/commands/ConfigureLogsForChannelCommand.ts @@ -61,6 +61,7 @@ export interface ConfigureLogsForChannelCommandOutput extends ConfigureLogsForCh * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class ConfigureLogsForChannelCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/ConfigureLogsForPlaybackConfigurationCommand.ts b/clients/client-mediatailor/src/commands/ConfigureLogsForPlaybackConfigurationCommand.ts index 3dea7f5be33f7..90b8f5ffcd223 100644 --- a/clients/client-mediatailor/src/commands/ConfigureLogsForPlaybackConfigurationCommand.ts +++ b/clients/client-mediatailor/src/commands/ConfigureLogsForPlaybackConfigurationCommand.ts @@ -98,6 +98,7 @@ export interface ConfigureLogsForPlaybackConfigurationCommandOutput * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class ConfigureLogsForPlaybackConfigurationCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/CreateChannelCommand.ts b/clients/client-mediatailor/src/commands/CreateChannelCommand.ts index 30141146bf7f9..ed7afb4789fec 100644 --- a/clients/client-mediatailor/src/commands/CreateChannelCommand.ts +++ b/clients/client-mediatailor/src/commands/CreateChannelCommand.ts @@ -126,6 +126,7 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class CreateChannelCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/CreateLiveSourceCommand.ts b/clients/client-mediatailor/src/commands/CreateLiveSourceCommand.ts index 9daf2614336d8..aff69b826f7f5 100644 --- a/clients/client-mediatailor/src/commands/CreateLiveSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/CreateLiveSourceCommand.ts @@ -80,6 +80,7 @@ export interface CreateLiveSourceCommandOutput extends CreateLiveSourceResponse, * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class CreateLiveSourceCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/CreatePrefetchScheduleCommand.ts b/clients/client-mediatailor/src/commands/CreatePrefetchScheduleCommand.ts index c5648a088cb7c..d3521c18f7d13 100644 --- a/clients/client-mediatailor/src/commands/CreatePrefetchScheduleCommand.ts +++ b/clients/client-mediatailor/src/commands/CreatePrefetchScheduleCommand.ts @@ -94,6 +94,7 @@ export interface CreatePrefetchScheduleCommandOutput extends CreatePrefetchSched * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class CreatePrefetchScheduleCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/CreateProgramCommand.ts b/clients/client-mediatailor/src/commands/CreateProgramCommand.ts index 2b08d85438924..0d0abc815a440 100644 --- a/clients/client-mediatailor/src/commands/CreateProgramCommand.ts +++ b/clients/client-mediatailor/src/commands/CreateProgramCommand.ts @@ -264,6 +264,7 @@ export interface CreateProgramCommandOutput extends CreateProgramResponse, __Met * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class CreateProgramCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/CreateSourceLocationCommand.ts b/clients/client-mediatailor/src/commands/CreateSourceLocationCommand.ts index 1f2e9f8c8279d..64d5f26d17e37 100644 --- a/clients/client-mediatailor/src/commands/CreateSourceLocationCommand.ts +++ b/clients/client-mediatailor/src/commands/CreateSourceLocationCommand.ts @@ -104,6 +104,7 @@ export interface CreateSourceLocationCommandOutput extends CreateSourceLocationR * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class CreateSourceLocationCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/CreateVodSourceCommand.ts b/clients/client-mediatailor/src/commands/CreateVodSourceCommand.ts index 567866c6861f9..3d1dcc80df80a 100644 --- a/clients/client-mediatailor/src/commands/CreateVodSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/CreateVodSourceCommand.ts @@ -80,6 +80,7 @@ export interface CreateVodSourceCommandOutput extends CreateVodSourceResponse, _ * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class CreateVodSourceCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/DeleteChannelCommand.ts b/clients/client-mediatailor/src/commands/DeleteChannelCommand.ts index 88ce5b967a79d..519b8a9ba1261 100644 --- a/clients/client-mediatailor/src/commands/DeleteChannelCommand.ts +++ b/clients/client-mediatailor/src/commands/DeleteChannelCommand.ts @@ -53,6 +53,7 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class DeleteChannelCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/DeleteChannelPolicyCommand.ts b/clients/client-mediatailor/src/commands/DeleteChannelPolicyCommand.ts index cbb4208d7cba8..d04d49a7f044b 100644 --- a/clients/client-mediatailor/src/commands/DeleteChannelPolicyCommand.ts +++ b/clients/client-mediatailor/src/commands/DeleteChannelPolicyCommand.ts @@ -53,6 +53,7 @@ export interface DeleteChannelPolicyCommandOutput extends DeleteChannelPolicyRes * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class DeleteChannelPolicyCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/DeleteLiveSourceCommand.ts b/clients/client-mediatailor/src/commands/DeleteLiveSourceCommand.ts index bfbf9800530ec..30b4ceca8abf1 100644 --- a/clients/client-mediatailor/src/commands/DeleteLiveSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/DeleteLiveSourceCommand.ts @@ -54,6 +54,7 @@ export interface DeleteLiveSourceCommandOutput extends DeleteLiveSourceResponse, * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class DeleteLiveSourceCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/DeletePlaybackConfigurationCommand.ts b/clients/client-mediatailor/src/commands/DeletePlaybackConfigurationCommand.ts index 83ffd64d3dcd6..d6febcbef1455 100644 --- a/clients/client-mediatailor/src/commands/DeletePlaybackConfigurationCommand.ts +++ b/clients/client-mediatailor/src/commands/DeletePlaybackConfigurationCommand.ts @@ -58,6 +58,7 @@ export interface DeletePlaybackConfigurationCommandOutput * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class DeletePlaybackConfigurationCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/DeletePrefetchScheduleCommand.ts b/clients/client-mediatailor/src/commands/DeletePrefetchScheduleCommand.ts index 9fbdd14d086b6..2cce0c7abed0b 100644 --- a/clients/client-mediatailor/src/commands/DeletePrefetchScheduleCommand.ts +++ b/clients/client-mediatailor/src/commands/DeletePrefetchScheduleCommand.ts @@ -54,6 +54,7 @@ export interface DeletePrefetchScheduleCommandOutput extends DeletePrefetchSched * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class DeletePrefetchScheduleCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/DeleteProgramCommand.ts b/clients/client-mediatailor/src/commands/DeleteProgramCommand.ts index cabb309c6b3a6..c28a85290d163 100644 --- a/clients/client-mediatailor/src/commands/DeleteProgramCommand.ts +++ b/clients/client-mediatailor/src/commands/DeleteProgramCommand.ts @@ -54,6 +54,7 @@ export interface DeleteProgramCommandOutput extends DeleteProgramResponse, __Met * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class DeleteProgramCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/DeleteSourceLocationCommand.ts b/clients/client-mediatailor/src/commands/DeleteSourceLocationCommand.ts index 04e03f9069642..065b20790cd23 100644 --- a/clients/client-mediatailor/src/commands/DeleteSourceLocationCommand.ts +++ b/clients/client-mediatailor/src/commands/DeleteSourceLocationCommand.ts @@ -53,6 +53,7 @@ export interface DeleteSourceLocationCommandOutput extends DeleteSourceLocationR * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class DeleteSourceLocationCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/DeleteVodSourceCommand.ts b/clients/client-mediatailor/src/commands/DeleteVodSourceCommand.ts index 76306685f3abb..13574a82238c6 100644 --- a/clients/client-mediatailor/src/commands/DeleteVodSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/DeleteVodSourceCommand.ts @@ -54,6 +54,7 @@ export interface DeleteVodSourceCommandOutput extends DeleteVodSourceResponse, _ * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class DeleteVodSourceCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/DescribeChannelCommand.ts b/clients/client-mediatailor/src/commands/DescribeChannelCommand.ts index 5c38e7837803e..f32d9c56a301f 100644 --- a/clients/client-mediatailor/src/commands/DescribeChannelCommand.ts +++ b/clients/client-mediatailor/src/commands/DescribeChannelCommand.ts @@ -98,6 +98,7 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _ * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class DescribeChannelCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/DescribeLiveSourceCommand.ts b/clients/client-mediatailor/src/commands/DescribeLiveSourceCommand.ts index 2fb321884bef5..9e8db7285f6b9 100644 --- a/clients/client-mediatailor/src/commands/DescribeLiveSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/DescribeLiveSourceCommand.ts @@ -70,6 +70,7 @@ export interface DescribeLiveSourceCommandOutput extends DescribeLiveSourceRespo * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class DescribeLiveSourceCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/DescribeProgramCommand.ts b/clients/client-mediatailor/src/commands/DescribeProgramCommand.ts index a6f325dd7c0d1..a058a8c1be3b1 100644 --- a/clients/client-mediatailor/src/commands/DescribeProgramCommand.ts +++ b/clients/client-mediatailor/src/commands/DescribeProgramCommand.ts @@ -158,6 +158,7 @@ export interface DescribeProgramCommandOutput extends DescribeProgramResponse, _ * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class DescribeProgramCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/DescribeSourceLocationCommand.ts b/clients/client-mediatailor/src/commands/DescribeSourceLocationCommand.ts index 0e944a73c1ec0..99a6345abb115 100644 --- a/clients/client-mediatailor/src/commands/DescribeSourceLocationCommand.ts +++ b/clients/client-mediatailor/src/commands/DescribeSourceLocationCommand.ts @@ -81,6 +81,7 @@ export interface DescribeSourceLocationCommandOutput extends DescribeSourceLocat * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class DescribeSourceLocationCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/DescribeVodSourceCommand.ts b/clients/client-mediatailor/src/commands/DescribeVodSourceCommand.ts index e8e98c8fa63ac..2e30b7945c05d 100644 --- a/clients/client-mediatailor/src/commands/DescribeVodSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/DescribeVodSourceCommand.ts @@ -75,6 +75,7 @@ export interface DescribeVodSourceCommandOutput extends DescribeVodSourceRespons * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class DescribeVodSourceCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/GetChannelPolicyCommand.ts b/clients/client-mediatailor/src/commands/GetChannelPolicyCommand.ts index cc3ac78aa6aa3..b7bb16a3d3ae4 100644 --- a/clients/client-mediatailor/src/commands/GetChannelPolicyCommand.ts +++ b/clients/client-mediatailor/src/commands/GetChannelPolicyCommand.ts @@ -55,6 +55,7 @@ export interface GetChannelPolicyCommandOutput extends GetChannelPolicyResponse, * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class GetChannelPolicyCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/GetChannelScheduleCommand.ts b/clients/client-mediatailor/src/commands/GetChannelScheduleCommand.ts index da090fd516a90..a38b5b0598a38 100644 --- a/clients/client-mediatailor/src/commands/GetChannelScheduleCommand.ts +++ b/clients/client-mediatailor/src/commands/GetChannelScheduleCommand.ts @@ -83,6 +83,7 @@ export interface GetChannelScheduleCommandOutput extends GetChannelScheduleRespo * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class GetChannelScheduleCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/GetPlaybackConfigurationCommand.ts b/clients/client-mediatailor/src/commands/GetPlaybackConfigurationCommand.ts index 94aad711934c5..87993666c2b5e 100644 --- a/clients/client-mediatailor/src/commands/GetPlaybackConfigurationCommand.ts +++ b/clients/client-mediatailor/src/commands/GetPlaybackConfigurationCommand.ts @@ -124,6 +124,7 @@ export interface GetPlaybackConfigurationCommandOutput extends GetPlaybackConfig * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class GetPlaybackConfigurationCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/GetPrefetchScheduleCommand.ts b/clients/client-mediatailor/src/commands/GetPrefetchScheduleCommand.ts index 2b88a50f42b9c..93415280a76f5 100644 --- a/clients/client-mediatailor/src/commands/GetPrefetchScheduleCommand.ts +++ b/clients/client-mediatailor/src/commands/GetPrefetchScheduleCommand.ts @@ -76,6 +76,7 @@ export interface GetPrefetchScheduleCommandOutput extends GetPrefetchScheduleRes * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class GetPrefetchScheduleCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/ListAlertsCommand.ts b/clients/client-mediatailor/src/commands/ListAlertsCommand.ts index 3eb4959d3bdec..ac47c8862b873 100644 --- a/clients/client-mediatailor/src/commands/ListAlertsCommand.ts +++ b/clients/client-mediatailor/src/commands/ListAlertsCommand.ts @@ -69,6 +69,7 @@ export interface ListAlertsCommandOutput extends ListAlertsResponse, __MetadataB * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class ListAlertsCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/ListChannelsCommand.ts b/clients/client-mediatailor/src/commands/ListChannelsCommand.ts index 556a43886f2d7..fe929679f7f64 100644 --- a/clients/client-mediatailor/src/commands/ListChannelsCommand.ts +++ b/clients/client-mediatailor/src/commands/ListChannelsCommand.ts @@ -101,6 +101,7 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class ListChannelsCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/ListLiveSourcesCommand.ts b/clients/client-mediatailor/src/commands/ListLiveSourcesCommand.ts index 93d072e55138f..fd66d04af9660 100644 --- a/clients/client-mediatailor/src/commands/ListLiveSourcesCommand.ts +++ b/clients/client-mediatailor/src/commands/ListLiveSourcesCommand.ts @@ -76,6 +76,7 @@ export interface ListLiveSourcesCommandOutput extends ListLiveSourcesResponse, _ * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class ListLiveSourcesCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/ListPlaybackConfigurationsCommand.ts b/clients/client-mediatailor/src/commands/ListPlaybackConfigurationsCommand.ts index 4407a3a290f8a..1e596cde3b13f 100644 --- a/clients/client-mediatailor/src/commands/ListPlaybackConfigurationsCommand.ts +++ b/clients/client-mediatailor/src/commands/ListPlaybackConfigurationsCommand.ts @@ -130,6 +130,7 @@ export interface ListPlaybackConfigurationsCommandOutput extends ListPlaybackCon * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class ListPlaybackConfigurationsCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/ListPrefetchSchedulesCommand.ts b/clients/client-mediatailor/src/commands/ListPrefetchSchedulesCommand.ts index ec08ed2f4d51c..c77607a36e85b 100644 --- a/clients/client-mediatailor/src/commands/ListPrefetchSchedulesCommand.ts +++ b/clients/client-mediatailor/src/commands/ListPrefetchSchedulesCommand.ts @@ -83,6 +83,7 @@ export interface ListPrefetchSchedulesCommandOutput extends ListPrefetchSchedule * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class ListPrefetchSchedulesCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/ListSourceLocationsCommand.ts b/clients/client-mediatailor/src/commands/ListSourceLocationsCommand.ts index b7b469b6ee56b..b2926167f54f6 100644 --- a/clients/client-mediatailor/src/commands/ListSourceLocationsCommand.ts +++ b/clients/client-mediatailor/src/commands/ListSourceLocationsCommand.ts @@ -87,6 +87,7 @@ export interface ListSourceLocationsCommandOutput extends ListSourceLocationsRes * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class ListSourceLocationsCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/ListTagsForResourceCommand.ts b/clients/client-mediatailor/src/commands/ListTagsForResourceCommand.ts index 5d160d9b6be4c..2db81d8d46823 100644 --- a/clients/client-mediatailor/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mediatailor/src/commands/ListTagsForResourceCommand.ts @@ -60,6 +60,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/ListVodSourcesCommand.ts b/clients/client-mediatailor/src/commands/ListVodSourcesCommand.ts index 261f7b5ee8f72..171ee398d86e4 100644 --- a/clients/client-mediatailor/src/commands/ListVodSourcesCommand.ts +++ b/clients/client-mediatailor/src/commands/ListVodSourcesCommand.ts @@ -76,6 +76,7 @@ export interface ListVodSourcesCommandOutput extends ListVodSourcesResponse, __M * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class ListVodSourcesCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/PutChannelPolicyCommand.ts b/clients/client-mediatailor/src/commands/PutChannelPolicyCommand.ts index f67b3758414bf..611a2e63485e0 100644 --- a/clients/client-mediatailor/src/commands/PutChannelPolicyCommand.ts +++ b/clients/client-mediatailor/src/commands/PutChannelPolicyCommand.ts @@ -54,6 +54,7 @@ export interface PutChannelPolicyCommandOutput extends PutChannelPolicyResponse, * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class PutChannelPolicyCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/PutPlaybackConfigurationCommand.ts b/clients/client-mediatailor/src/commands/PutPlaybackConfigurationCommand.ts index c50de00b253ce..4d0e467b7c4d0 100644 --- a/clients/client-mediatailor/src/commands/PutPlaybackConfigurationCommand.ts +++ b/clients/client-mediatailor/src/commands/PutPlaybackConfigurationCommand.ts @@ -167,6 +167,7 @@ export interface PutPlaybackConfigurationCommandOutput extends PutPlaybackConfig * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class PutPlaybackConfigurationCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/StartChannelCommand.ts b/clients/client-mediatailor/src/commands/StartChannelCommand.ts index 53d649c9eba56..f50696ab29cd3 100644 --- a/clients/client-mediatailor/src/commands/StartChannelCommand.ts +++ b/clients/client-mediatailor/src/commands/StartChannelCommand.ts @@ -53,6 +53,7 @@ export interface StartChannelCommandOutput extends StartChannelResponse, __Metad * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class StartChannelCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/StopChannelCommand.ts b/clients/client-mediatailor/src/commands/StopChannelCommand.ts index 75b8da55b4fd0..e629ad67598c4 100644 --- a/clients/client-mediatailor/src/commands/StopChannelCommand.ts +++ b/clients/client-mediatailor/src/commands/StopChannelCommand.ts @@ -53,6 +53,7 @@ export interface StopChannelCommandOutput extends StopChannelResponse, __Metadat * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class StopChannelCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/TagResourceCommand.ts b/clients/client-mediatailor/src/commands/TagResourceCommand.ts index 1f30d93c88738..214bcc5aae52c 100644 --- a/clients/client-mediatailor/src/commands/TagResourceCommand.ts +++ b/clients/client-mediatailor/src/commands/TagResourceCommand.ts @@ -59,6 +59,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/UntagResourceCommand.ts b/clients/client-mediatailor/src/commands/UntagResourceCommand.ts index 526c15dcd0f26..802bdce5f3537 100644 --- a/clients/client-mediatailor/src/commands/UntagResourceCommand.ts +++ b/clients/client-mediatailor/src/commands/UntagResourceCommand.ts @@ -59,6 +59,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/UpdateChannelCommand.ts b/clients/client-mediatailor/src/commands/UpdateChannelCommand.ts index 18116a6b1430e..eda3335d0a833 100644 --- a/clients/client-mediatailor/src/commands/UpdateChannelCommand.ts +++ b/clients/client-mediatailor/src/commands/UpdateChannelCommand.ts @@ -121,6 +121,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class UpdateChannelCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/UpdateLiveSourceCommand.ts b/clients/client-mediatailor/src/commands/UpdateLiveSourceCommand.ts index d878f43ca6a5d..177764b4fd7e2 100644 --- a/clients/client-mediatailor/src/commands/UpdateLiveSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/UpdateLiveSourceCommand.ts @@ -77,6 +77,7 @@ export interface UpdateLiveSourceCommandOutput extends UpdateLiveSourceResponse, * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class UpdateLiveSourceCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/UpdateProgramCommand.ts b/clients/client-mediatailor/src/commands/UpdateProgramCommand.ts index db35d266f77cd..dfb8e96d5cbd5 100644 --- a/clients/client-mediatailor/src/commands/UpdateProgramCommand.ts +++ b/clients/client-mediatailor/src/commands/UpdateProgramCommand.ts @@ -258,6 +258,7 @@ export interface UpdateProgramCommandOutput extends UpdateProgramResponse, __Met * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class UpdateProgramCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/UpdateSourceLocationCommand.ts b/clients/client-mediatailor/src/commands/UpdateSourceLocationCommand.ts index e9667419dbedd..14dfa5fa32aa0 100644 --- a/clients/client-mediatailor/src/commands/UpdateSourceLocationCommand.ts +++ b/clients/client-mediatailor/src/commands/UpdateSourceLocationCommand.ts @@ -101,6 +101,7 @@ export interface UpdateSourceLocationCommandOutput extends UpdateSourceLocationR * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class UpdateSourceLocationCommand extends $Command diff --git a/clients/client-mediatailor/src/commands/UpdateVodSourceCommand.ts b/clients/client-mediatailor/src/commands/UpdateVodSourceCommand.ts index 46d6b506bc8ac..f4ed864d37251 100644 --- a/clients/client-mediatailor/src/commands/UpdateVodSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/UpdateVodSourceCommand.ts @@ -77,6 +77,7 @@ export interface UpdateVodSourceCommandOutput extends UpdateVodSourceResponse, _ * @throws {@link MediaTailorServiceException} *

Base exception class for all service exceptions from MediaTailor service.

* + * * @public */ export class UpdateVodSourceCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/CopyImageSetCommand.ts b/clients/client-medical-imaging/src/commands/CopyImageSetCommand.ts index 0643de372f156..da9e6d3bdb3af 100644 --- a/clients/client-medical-imaging/src/commands/CopyImageSetCommand.ts +++ b/clients/client-medical-imaging/src/commands/CopyImageSetCommand.ts @@ -108,6 +108,7 @@ export interface CopyImageSetCommandOutput extends CopyImageSetResponse, __Metad * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class CopyImageSetCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/CreateDatastoreCommand.ts b/clients/client-medical-imaging/src/commands/CreateDatastoreCommand.ts index 8ae3ca8f4a56c..cb4de9b17c3ac 100644 --- a/clients/client-medical-imaging/src/commands/CreateDatastoreCommand.ts +++ b/clients/client-medical-imaging/src/commands/CreateDatastoreCommand.ts @@ -79,6 +79,7 @@ export interface CreateDatastoreCommandOutput extends CreateDatastoreResponse, _ * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class CreateDatastoreCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/DeleteDatastoreCommand.ts b/clients/client-medical-imaging/src/commands/DeleteDatastoreCommand.ts index 3366b92a5aa3b..e2ea91fa20be2 100644 --- a/clients/client-medical-imaging/src/commands/DeleteDatastoreCommand.ts +++ b/clients/client-medical-imaging/src/commands/DeleteDatastoreCommand.ts @@ -77,6 +77,7 @@ export interface DeleteDatastoreCommandOutput extends DeleteDatastoreResponse, _ * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class DeleteDatastoreCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/DeleteImageSetCommand.ts b/clients/client-medical-imaging/src/commands/DeleteImageSetCommand.ts index a49a231eafb2b..5f217efbd650e 100644 --- a/clients/client-medical-imaging/src/commands/DeleteImageSetCommand.ts +++ b/clients/client-medical-imaging/src/commands/DeleteImageSetCommand.ts @@ -77,6 +77,7 @@ export interface DeleteImageSetCommandOutput extends DeleteImageSetResponse, __M * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class DeleteImageSetCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/GetDICOMImportJobCommand.ts b/clients/client-medical-imaging/src/commands/GetDICOMImportJobCommand.ts index f6b3bd2b164e5..9f8f1e57aa344 100644 --- a/clients/client-medical-imaging/src/commands/GetDICOMImportJobCommand.ts +++ b/clients/client-medical-imaging/src/commands/GetDICOMImportJobCommand.ts @@ -91,6 +91,7 @@ export interface GetDICOMImportJobCommandOutput extends GetDICOMImportJobRespons * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class GetDICOMImportJobCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/GetDatastoreCommand.ts b/clients/client-medical-imaging/src/commands/GetDatastoreCommand.ts index a88e90066d224..6f2028c5d8ef4 100644 --- a/clients/client-medical-imaging/src/commands/GetDatastoreCommand.ts +++ b/clients/client-medical-imaging/src/commands/GetDatastoreCommand.ts @@ -78,6 +78,7 @@ export interface GetDatastoreCommandOutput extends GetDatastoreResponse, __Metad * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class GetDatastoreCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/GetImageFrameCommand.ts b/clients/client-medical-imaging/src/commands/GetImageFrameCommand.ts index 659720920ce12..ec85f77b7da1c 100644 --- a/clients/client-medical-imaging/src/commands/GetImageFrameCommand.ts +++ b/clients/client-medical-imaging/src/commands/GetImageFrameCommand.ts @@ -50,6 +50,11 @@ export interface GetImageFrameCommandOutput extends Omit", // see \@smithy/types -> StreamingBlobPayloadOutputTypes // required * // contentType: "STRING_VALUE", @@ -84,6 +89,7 @@ export interface GetImageFrameCommandOutput extends OmitBase exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class GetImageFrameCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/GetImageSetCommand.ts b/clients/client-medical-imaging/src/commands/GetImageSetCommand.ts index 9376c96bcfb7a..801af399432af 100644 --- a/clients/client-medical-imaging/src/commands/GetImageSetCommand.ts +++ b/clients/client-medical-imaging/src/commands/GetImageSetCommand.ts @@ -87,6 +87,7 @@ export interface GetImageSetCommandOutput extends GetImageSetResponse, __Metadat * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class GetImageSetCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/GetImageSetMetadataCommand.ts b/clients/client-medical-imaging/src/commands/GetImageSetMetadataCommand.ts index 7b303f508b5e1..732937f7958ea 100644 --- a/clients/client-medical-imaging/src/commands/GetImageSetMetadataCommand.ts +++ b/clients/client-medical-imaging/src/commands/GetImageSetMetadataCommand.ts @@ -50,6 +50,11 @@ export interface GetImageSetMetadataCommandOutput * }; * const command = new GetImageSetMetadataCommand(input); * const response = await client.send(command); + * // consume or destroy the stream to free the socket. + * const bytes = await response.imageSetMetadataBlob.transformToByteArray(); + * // const str = await response.imageSetMetadataBlob.transformToString(); + * // response.imageSetMetadataBlob.destroy(); // only applicable to Node.js Readable streams. + * * // { // GetImageSetMetadataResponse * // imageSetMetadataBlob: "", // see \@smithy/types -> StreamingBlobPayloadOutputTypes // required * // contentType: "STRING_VALUE", @@ -85,6 +90,7 @@ export interface GetImageSetMetadataCommandOutput * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class GetImageSetMetadataCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/ListDICOMImportJobsCommand.ts b/clients/client-medical-imaging/src/commands/ListDICOMImportJobsCommand.ts index 3536e79b47393..96de63ed0d961 100644 --- a/clients/client-medical-imaging/src/commands/ListDICOMImportJobsCommand.ts +++ b/clients/client-medical-imaging/src/commands/ListDICOMImportJobsCommand.ts @@ -88,6 +88,7 @@ export interface ListDICOMImportJobsCommandOutput extends ListDICOMImportJobsRes * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class ListDICOMImportJobsCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/ListDatastoresCommand.ts b/clients/client-medical-imaging/src/commands/ListDatastoresCommand.ts index 88144c57b96cb..a2bdb4f6694e0 100644 --- a/clients/client-medical-imaging/src/commands/ListDatastoresCommand.ts +++ b/clients/client-medical-imaging/src/commands/ListDatastoresCommand.ts @@ -79,6 +79,7 @@ export interface ListDatastoresCommandOutput extends ListDatastoresResponse, __M * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class ListDatastoresCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/ListImageSetVersionsCommand.ts b/clients/client-medical-imaging/src/commands/ListImageSetVersionsCommand.ts index 7582c95b54600..a36f22929bb3d 100644 --- a/clients/client-medical-imaging/src/commands/ListImageSetVersionsCommand.ts +++ b/clients/client-medical-imaging/src/commands/ListImageSetVersionsCommand.ts @@ -91,6 +91,7 @@ export interface ListImageSetVersionsCommandOutput extends ListImageSetVersionsR * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class ListImageSetVersionsCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/ListTagsForResourceCommand.ts b/clients/client-medical-imaging/src/commands/ListTagsForResourceCommand.ts index 7e96afecf3fa3..45e8623012f44 100644 --- a/clients/client-medical-imaging/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-medical-imaging/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/SearchImageSetsCommand.ts b/clients/client-medical-imaging/src/commands/SearchImageSetsCommand.ts index 8506138ab123c..7daf666ff221d 100644 --- a/clients/client-medical-imaging/src/commands/SearchImageSetsCommand.ts +++ b/clients/client-medical-imaging/src/commands/SearchImageSetsCommand.ts @@ -144,6 +144,7 @@ export interface SearchImageSetsCommandOutput extends SearchImageSetsResponse, _ * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class SearchImageSetsCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/StartDICOMImportJobCommand.ts b/clients/client-medical-imaging/src/commands/StartDICOMImportJobCommand.ts index d25e160881ede..8030221da61c4 100644 --- a/clients/client-medical-imaging/src/commands/StartDICOMImportJobCommand.ts +++ b/clients/client-medical-imaging/src/commands/StartDICOMImportJobCommand.ts @@ -87,6 +87,7 @@ export interface StartDICOMImportJobCommandOutput extends StartDICOMImportJobRes * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class StartDICOMImportJobCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/TagResourceCommand.ts b/clients/client-medical-imaging/src/commands/TagResourceCommand.ts index 73b1989eae2f1..3a036a5b2433c 100644 --- a/clients/client-medical-imaging/src/commands/TagResourceCommand.ts +++ b/clients/client-medical-imaging/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/UntagResourceCommand.ts b/clients/client-medical-imaging/src/commands/UntagResourceCommand.ts index 8eb495d9ed55f..939b87189f9c5 100644 --- a/clients/client-medical-imaging/src/commands/UntagResourceCommand.ts +++ b/clients/client-medical-imaging/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-medical-imaging/src/commands/UpdateImageSetMetadataCommand.ts b/clients/client-medical-imaging/src/commands/UpdateImageSetMetadataCommand.ts index 199b35806876a..8ed978c9bf6b0 100644 --- a/clients/client-medical-imaging/src/commands/UpdateImageSetMetadataCommand.ts +++ b/clients/client-medical-imaging/src/commands/UpdateImageSetMetadataCommand.ts @@ -97,6 +97,7 @@ export interface UpdateImageSetMetadataCommandOutput extends UpdateImageSetMetad * @throws {@link MedicalImagingServiceException} *

Base exception class for all service exceptions from MedicalImaging service.

* + * * @public */ export class UpdateImageSetMetadataCommand extends $Command diff --git a/clients/client-memorydb/src/commands/BatchUpdateClusterCommand.ts b/clients/client-memorydb/src/commands/BatchUpdateClusterCommand.ts index e412d58ec2a68..49f687be76b94 100644 --- a/clients/client-memorydb/src/commands/BatchUpdateClusterCommand.ts +++ b/clients/client-memorydb/src/commands/BatchUpdateClusterCommand.ts @@ -146,6 +146,7 @@ export interface BatchUpdateClusterCommandOutput extends BatchUpdateClusterRespo * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class BatchUpdateClusterCommand extends $Command diff --git a/clients/client-memorydb/src/commands/CopySnapshotCommand.ts b/clients/client-memorydb/src/commands/CopySnapshotCommand.ts index 0931ea687843b..ee122b8677eb7 100644 --- a/clients/client-memorydb/src/commands/CopySnapshotCommand.ts +++ b/clients/client-memorydb/src/commands/CopySnapshotCommand.ts @@ -124,6 +124,7 @@ export interface CopySnapshotCommandOutput extends CopySnapshotResponse, __Metad * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class CopySnapshotCommand extends $Command diff --git a/clients/client-memorydb/src/commands/CreateACLCommand.ts b/clients/client-memorydb/src/commands/CreateACLCommand.ts index 241878603ff7b..44b8c09cbaf17 100644 --- a/clients/client-memorydb/src/commands/CreateACLCommand.ts +++ b/clients/client-memorydb/src/commands/CreateACLCommand.ts @@ -104,6 +104,7 @@ export interface CreateACLCommandOutput extends CreateACLResponse, __MetadataBea * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class CreateACLCommand extends $Command diff --git a/clients/client-memorydb/src/commands/CreateClusterCommand.ts b/clients/client-memorydb/src/commands/CreateClusterCommand.ts index 311c07c5d16fa..54388b4112039 100644 --- a/clients/client-memorydb/src/commands/CreateClusterCommand.ts +++ b/clients/client-memorydb/src/commands/CreateClusterCommand.ts @@ -212,6 +212,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class CreateClusterCommand extends $Command diff --git a/clients/client-memorydb/src/commands/CreateMultiRegionClusterCommand.ts b/clients/client-memorydb/src/commands/CreateMultiRegionClusterCommand.ts index 4cfe65f8e6a97..14b3db2626912 100644 --- a/clients/client-memorydb/src/commands/CreateMultiRegionClusterCommand.ts +++ b/clients/client-memorydb/src/commands/CreateMultiRegionClusterCommand.ts @@ -105,6 +105,7 @@ export interface CreateMultiRegionClusterCommandOutput extends CreateMultiRegion * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class CreateMultiRegionClusterCommand extends $Command diff --git a/clients/client-memorydb/src/commands/CreateParameterGroupCommand.ts b/clients/client-memorydb/src/commands/CreateParameterGroupCommand.ts index 39f97b6c54508..b6883f7895923 100644 --- a/clients/client-memorydb/src/commands/CreateParameterGroupCommand.ts +++ b/clients/client-memorydb/src/commands/CreateParameterGroupCommand.ts @@ -92,6 +92,7 @@ export interface CreateParameterGroupCommandOutput extends CreateParameterGroupR * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class CreateParameterGroupCommand extends $Command diff --git a/clients/client-memorydb/src/commands/CreateSnapshotCommand.ts b/clients/client-memorydb/src/commands/CreateSnapshotCommand.ts index 5828d1b59e99b..8227837289aaf 100644 --- a/clients/client-memorydb/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-memorydb/src/commands/CreateSnapshotCommand.ts @@ -123,6 +123,7 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class CreateSnapshotCommand extends $Command diff --git a/clients/client-memorydb/src/commands/CreateSubnetGroupCommand.ts b/clients/client-memorydb/src/commands/CreateSubnetGroupCommand.ts index 93a33096914b7..a35345e411718 100644 --- a/clients/client-memorydb/src/commands/CreateSubnetGroupCommand.ts +++ b/clients/client-memorydb/src/commands/CreateSubnetGroupCommand.ts @@ -102,6 +102,7 @@ export interface CreateSubnetGroupCommandOutput extends CreateSubnetGroupRespons * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class CreateSubnetGroupCommand extends $Command diff --git a/clients/client-memorydb/src/commands/CreateUserCommand.ts b/clients/client-memorydb/src/commands/CreateUserCommand.ts index 507a26feb9460..13474076d1ced 100644 --- a/clients/client-memorydb/src/commands/CreateUserCommand.ts +++ b/clients/client-memorydb/src/commands/CreateUserCommand.ts @@ -99,6 +99,7 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class CreateUserCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DeleteACLCommand.ts b/clients/client-memorydb/src/commands/DeleteACLCommand.ts index 0f88f0558d7f5..99a026ff4ab6a 100644 --- a/clients/client-memorydb/src/commands/DeleteACLCommand.ts +++ b/clients/client-memorydb/src/commands/DeleteACLCommand.ts @@ -83,6 +83,7 @@ export interface DeleteACLCommandOutput extends DeleteACLResponse, __MetadataBea * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DeleteACLCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DeleteClusterCommand.ts b/clients/client-memorydb/src/commands/DeleteClusterCommand.ts index b07020268634a..760ec80ff79e5 100644 --- a/clients/client-memorydb/src/commands/DeleteClusterCommand.ts +++ b/clients/client-memorydb/src/commands/DeleteClusterCommand.ts @@ -151,6 +151,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DeleteClusterCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DeleteMultiRegionClusterCommand.ts b/clients/client-memorydb/src/commands/DeleteMultiRegionClusterCommand.ts index ce199c9bf2d36..7ce3255ea4780 100644 --- a/clients/client-memorydb/src/commands/DeleteMultiRegionClusterCommand.ts +++ b/clients/client-memorydb/src/commands/DeleteMultiRegionClusterCommand.ts @@ -83,6 +83,7 @@ export interface DeleteMultiRegionClusterCommandOutput extends DeleteMultiRegion * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DeleteMultiRegionClusterCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DeleteParameterGroupCommand.ts b/clients/client-memorydb/src/commands/DeleteParameterGroupCommand.ts index 0d6c5878a8662..e741135fdcf93 100644 --- a/clients/client-memorydb/src/commands/DeleteParameterGroupCommand.ts +++ b/clients/client-memorydb/src/commands/DeleteParameterGroupCommand.ts @@ -76,6 +76,7 @@ export interface DeleteParameterGroupCommandOutput extends DeleteParameterGroupR * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DeleteParameterGroupCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DeleteSnapshotCommand.ts b/clients/client-memorydb/src/commands/DeleteSnapshotCommand.ts index 74af0682d6829..f5adeee80ea5e 100644 --- a/clients/client-memorydb/src/commands/DeleteSnapshotCommand.ts +++ b/clients/client-memorydb/src/commands/DeleteSnapshotCommand.ts @@ -106,6 +106,7 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __M * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DeleteSnapshotCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DeleteSubnetGroupCommand.ts b/clients/client-memorydb/src/commands/DeleteSubnetGroupCommand.ts index b281a21d152cc..a7085306da3b5 100644 --- a/clients/client-memorydb/src/commands/DeleteSubnetGroupCommand.ts +++ b/clients/client-memorydb/src/commands/DeleteSubnetGroupCommand.ts @@ -77,6 +77,7 @@ export interface DeleteSubnetGroupCommandOutput extends DeleteSubnetGroupRespons * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DeleteSubnetGroupCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DeleteUserCommand.ts b/clients/client-memorydb/src/commands/DeleteUserCommand.ts index e53d20e8a8b86..febd4c4fc43d8 100644 --- a/clients/client-memorydb/src/commands/DeleteUserCommand.ts +++ b/clients/client-memorydb/src/commands/DeleteUserCommand.ts @@ -77,6 +77,7 @@ export interface DeleteUserCommandOutput extends DeleteUserResponse, __MetadataB * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DeleteUserCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DescribeACLsCommand.ts b/clients/client-memorydb/src/commands/DescribeACLsCommand.ts index 653ce53f6cd91..e72a1682dea46 100644 --- a/clients/client-memorydb/src/commands/DescribeACLsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeACLsCommand.ts @@ -85,6 +85,7 @@ export interface DescribeACLsCommandOutput extends DescribeACLsResponse, __Metad * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DescribeACLsCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DescribeClustersCommand.ts b/clients/client-memorydb/src/commands/DescribeClustersCommand.ts index c8af1e57e6a38..5897c493cbf6b 100644 --- a/clients/client-memorydb/src/commands/DescribeClustersCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeClustersCommand.ts @@ -144,6 +144,7 @@ export interface DescribeClustersCommandOutput extends DescribeClustersResponse, * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DescribeClustersCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DescribeEngineVersionsCommand.ts b/clients/client-memorydb/src/commands/DescribeEngineVersionsCommand.ts index 91a00c10bf0ea..081d43afebb04 100644 --- a/clients/client-memorydb/src/commands/DescribeEngineVersionsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeEngineVersionsCommand.ts @@ -77,6 +77,7 @@ export interface DescribeEngineVersionsCommandOutput extends DescribeEngineVersi * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DescribeEngineVersionsCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DescribeEventsCommand.ts b/clients/client-memorydb/src/commands/DescribeEventsCommand.ts index 4174d1aff5ebd..72a66b8ce171e 100644 --- a/clients/client-memorydb/src/commands/DescribeEventsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeEventsCommand.ts @@ -80,6 +80,7 @@ export interface DescribeEventsCommandOutput extends DescribeEventsResponse, __M * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DescribeEventsCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DescribeMultiRegionClustersCommand.ts b/clients/client-memorydb/src/commands/DescribeMultiRegionClustersCommand.ts index 77fabb24f5702..0518f8cee0b12 100644 --- a/clients/client-memorydb/src/commands/DescribeMultiRegionClustersCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeMultiRegionClustersCommand.ts @@ -94,6 +94,7 @@ export interface DescribeMultiRegionClustersCommandOutput * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DescribeMultiRegionClustersCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DescribeParameterGroupsCommand.ts b/clients/client-memorydb/src/commands/DescribeParameterGroupsCommand.ts index 2a42927c25686..6f32ae54c9073 100644 --- a/clients/client-memorydb/src/commands/DescribeParameterGroupsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeParameterGroupsCommand.ts @@ -77,6 +77,7 @@ export interface DescribeParameterGroupsCommandOutput extends DescribeParameterG * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DescribeParameterGroupsCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DescribeParametersCommand.ts b/clients/client-memorydb/src/commands/DescribeParametersCommand.ts index ae9b22ef5f454..808058f776f0d 100644 --- a/clients/client-memorydb/src/commands/DescribeParametersCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeParametersCommand.ts @@ -79,6 +79,7 @@ export interface DescribeParametersCommandOutput extends DescribeParametersRespo * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DescribeParametersCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DescribeReservedNodesCommand.ts b/clients/client-memorydb/src/commands/DescribeReservedNodesCommand.ts index 192e54c8fcbaf..ce7e40c45944d 100644 --- a/clients/client-memorydb/src/commands/DescribeReservedNodesCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeReservedNodesCommand.ts @@ -93,6 +93,7 @@ export interface DescribeReservedNodesCommandOutput extends DescribeReservedNode * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DescribeReservedNodesCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DescribeReservedNodesOfferingsCommand.ts b/clients/client-memorydb/src/commands/DescribeReservedNodesOfferingsCommand.ts index bb93f457bc367..85c91a906fbf9 100644 --- a/clients/client-memorydb/src/commands/DescribeReservedNodesOfferingsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeReservedNodesOfferingsCommand.ts @@ -94,6 +94,7 @@ export interface DescribeReservedNodesOfferingsCommandOutput * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DescribeReservedNodesOfferingsCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DescribeServiceUpdatesCommand.ts b/clients/client-memorydb/src/commands/DescribeServiceUpdatesCommand.ts index b5d0ec02a1848..bff8f49bad887 100644 --- a/clients/client-memorydb/src/commands/DescribeServiceUpdatesCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeServiceUpdatesCommand.ts @@ -82,6 +82,7 @@ export interface DescribeServiceUpdatesCommandOutput extends DescribeServiceUpda * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DescribeServiceUpdatesCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DescribeSnapshotsCommand.ts b/clients/client-memorydb/src/commands/DescribeSnapshotsCommand.ts index 6625561e493d9..5bc78b956669e 100644 --- a/clients/client-memorydb/src/commands/DescribeSnapshotsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeSnapshotsCommand.ts @@ -112,6 +112,7 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsRespons * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DescribeSnapshotsCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DescribeSubnetGroupsCommand.ts b/clients/client-memorydb/src/commands/DescribeSubnetGroupsCommand.ts index c931ba735cea3..ee8a32a06873f 100644 --- a/clients/client-memorydb/src/commands/DescribeSubnetGroupsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeSubnetGroupsCommand.ts @@ -79,6 +79,7 @@ export interface DescribeSubnetGroupsCommandOutput extends DescribeSubnetGroupsR * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DescribeSubnetGroupsCommand extends $Command diff --git a/clients/client-memorydb/src/commands/DescribeUsersCommand.ts b/clients/client-memorydb/src/commands/DescribeUsersCommand.ts index 4a11c61c31d04..ece251bed401e 100644 --- a/clients/client-memorydb/src/commands/DescribeUsersCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeUsersCommand.ts @@ -87,6 +87,7 @@ export interface DescribeUsersCommandOutput extends DescribeUsersResponse, __Met * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class DescribeUsersCommand extends $Command diff --git a/clients/client-memorydb/src/commands/FailoverShardCommand.ts b/clients/client-memorydb/src/commands/FailoverShardCommand.ts index 0fe24fca6d919..68f894811311a 100644 --- a/clients/client-memorydb/src/commands/FailoverShardCommand.ts +++ b/clients/client-memorydb/src/commands/FailoverShardCommand.ts @@ -152,6 +152,7 @@ export interface FailoverShardCommandOutput extends FailoverShardResponse, __Met * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class FailoverShardCommand extends $Command diff --git a/clients/client-memorydb/src/commands/ListAllowedMultiRegionClusterUpdatesCommand.ts b/clients/client-memorydb/src/commands/ListAllowedMultiRegionClusterUpdatesCommand.ts index 2a064849b6a80..8f9fcbd42ec8f 100644 --- a/clients/client-memorydb/src/commands/ListAllowedMultiRegionClusterUpdatesCommand.ts +++ b/clients/client-memorydb/src/commands/ListAllowedMultiRegionClusterUpdatesCommand.ts @@ -77,6 +77,7 @@ export interface ListAllowedMultiRegionClusterUpdatesCommandOutput * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class ListAllowedMultiRegionClusterUpdatesCommand extends $Command diff --git a/clients/client-memorydb/src/commands/ListAllowedNodeTypeUpdatesCommand.ts b/clients/client-memorydb/src/commands/ListAllowedNodeTypeUpdatesCommand.ts index f260de5543765..47b8b9f7543a3 100644 --- a/clients/client-memorydb/src/commands/ListAllowedNodeTypeUpdatesCommand.ts +++ b/clients/client-memorydb/src/commands/ListAllowedNodeTypeUpdatesCommand.ts @@ -74,6 +74,7 @@ export interface ListAllowedNodeTypeUpdatesCommandOutput extends ListAllowedNode * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class ListAllowedNodeTypeUpdatesCommand extends $Command diff --git a/clients/client-memorydb/src/commands/ListTagsCommand.ts b/clients/client-memorydb/src/commands/ListTagsCommand.ts index f08b9aac0df2b..d3b75fd594f16 100644 --- a/clients/client-memorydb/src/commands/ListTagsCommand.ts +++ b/clients/client-memorydb/src/commands/ListTagsCommand.ts @@ -96,6 +96,7 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class ListTagsCommand extends $Command diff --git a/clients/client-memorydb/src/commands/PurchaseReservedNodesOfferingCommand.ts b/clients/client-memorydb/src/commands/PurchaseReservedNodesOfferingCommand.ts index f23a3ab10a58d..4cbd98c8f863d 100644 --- a/clients/client-memorydb/src/commands/PurchaseReservedNodesOfferingCommand.ts +++ b/clients/client-memorydb/src/commands/PurchaseReservedNodesOfferingCommand.ts @@ -108,6 +108,7 @@ export interface PurchaseReservedNodesOfferingCommandOutput * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class PurchaseReservedNodesOfferingCommand extends $Command diff --git a/clients/client-memorydb/src/commands/ResetParameterGroupCommand.ts b/clients/client-memorydb/src/commands/ResetParameterGroupCommand.ts index f25f98f2db293..4027e18c450bf 100644 --- a/clients/client-memorydb/src/commands/ResetParameterGroupCommand.ts +++ b/clients/client-memorydb/src/commands/ResetParameterGroupCommand.ts @@ -79,6 +79,7 @@ export interface ResetParameterGroupCommandOutput extends ResetParameterGroupRes * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class ResetParameterGroupCommand extends $Command diff --git a/clients/client-memorydb/src/commands/TagResourceCommand.ts b/clients/client-memorydb/src/commands/TagResourceCommand.ts index 1ddd1d6516fcc..ec4d4d1fe0bc9 100644 --- a/clients/client-memorydb/src/commands/TagResourceCommand.ts +++ b/clients/client-memorydb/src/commands/TagResourceCommand.ts @@ -114,6 +114,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-memorydb/src/commands/UntagResourceCommand.ts b/clients/client-memorydb/src/commands/UntagResourceCommand.ts index d165c5cf32f8f..c93b694f139fb 100644 --- a/clients/client-memorydb/src/commands/UntagResourceCommand.ts +++ b/clients/client-memorydb/src/commands/UntagResourceCommand.ts @@ -102,6 +102,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-memorydb/src/commands/UpdateACLCommand.ts b/clients/client-memorydb/src/commands/UpdateACLCommand.ts index d0d20fd2a7d32..3012e7f4315a8 100644 --- a/clients/client-memorydb/src/commands/UpdateACLCommand.ts +++ b/clients/client-memorydb/src/commands/UpdateACLCommand.ts @@ -101,6 +101,7 @@ export interface UpdateACLCommandOutput extends UpdateACLResponse, __MetadataBea * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class UpdateACLCommand extends $Command diff --git a/clients/client-memorydb/src/commands/UpdateClusterCommand.ts b/clients/client-memorydb/src/commands/UpdateClusterCommand.ts index a65019553ba18..e113c760e4098 100644 --- a/clients/client-memorydb/src/commands/UpdateClusterCommand.ts +++ b/clients/client-memorydb/src/commands/UpdateClusterCommand.ts @@ -194,6 +194,7 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class UpdateClusterCommand extends $Command diff --git a/clients/client-memorydb/src/commands/UpdateMultiRegionClusterCommand.ts b/clients/client-memorydb/src/commands/UpdateMultiRegionClusterCommand.ts index 524a5ca3938d0..9dbeee1ab96f6 100644 --- a/clients/client-memorydb/src/commands/UpdateMultiRegionClusterCommand.ts +++ b/clients/client-memorydb/src/commands/UpdateMultiRegionClusterCommand.ts @@ -97,6 +97,7 @@ export interface UpdateMultiRegionClusterCommandOutput extends UpdateMultiRegion * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class UpdateMultiRegionClusterCommand extends $Command diff --git a/clients/client-memorydb/src/commands/UpdateParameterGroupCommand.ts b/clients/client-memorydb/src/commands/UpdateParameterGroupCommand.ts index 36186e4e8ada8..bf76869c4e380 100644 --- a/clients/client-memorydb/src/commands/UpdateParameterGroupCommand.ts +++ b/clients/client-memorydb/src/commands/UpdateParameterGroupCommand.ts @@ -81,6 +81,7 @@ export interface UpdateParameterGroupCommandOutput extends UpdateParameterGroupR * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class UpdateParameterGroupCommand extends $Command diff --git a/clients/client-memorydb/src/commands/UpdateSubnetGroupCommand.ts b/clients/client-memorydb/src/commands/UpdateSubnetGroupCommand.ts index 8a7e0c2233b7f..7d1130b82ef04 100644 --- a/clients/client-memorydb/src/commands/UpdateSubnetGroupCommand.ts +++ b/clients/client-memorydb/src/commands/UpdateSubnetGroupCommand.ts @@ -91,6 +91,7 @@ export interface UpdateSubnetGroupCommandOutput extends UpdateSubnetGroupRespons * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class UpdateSubnetGroupCommand extends $Command diff --git a/clients/client-memorydb/src/commands/UpdateUserCommand.ts b/clients/client-memorydb/src/commands/UpdateUserCommand.ts index 0029c246fad90..296fb9c3bd1eb 100644 --- a/clients/client-memorydb/src/commands/UpdateUserCommand.ts +++ b/clients/client-memorydb/src/commands/UpdateUserCommand.ts @@ -87,6 +87,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB * @throws {@link MemoryDBServiceException} *

Base exception class for all service exceptions from MemoryDB service.

* + * * @public */ export class UpdateUserCommand extends $Command diff --git a/clients/client-mgn/src/commands/ArchiveApplicationCommand.ts b/clients/client-mgn/src/commands/ArchiveApplicationCommand.ts index c312020d483e8..71fc9ff541c29 100644 --- a/clients/client-mgn/src/commands/ArchiveApplicationCommand.ts +++ b/clients/client-mgn/src/commands/ArchiveApplicationCommand.ts @@ -84,6 +84,7 @@ export interface ArchiveApplicationCommandOutput extends Application, __Metadata * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ArchiveApplicationCommand extends $Command diff --git a/clients/client-mgn/src/commands/ArchiveWaveCommand.ts b/clients/client-mgn/src/commands/ArchiveWaveCommand.ts index 9383d7ccd1903..3f9034eb9ae91 100644 --- a/clients/client-mgn/src/commands/ArchiveWaveCommand.ts +++ b/clients/client-mgn/src/commands/ArchiveWaveCommand.ts @@ -84,6 +84,7 @@ export interface ArchiveWaveCommandOutput extends Wave, __MetadataBearer {} * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ArchiveWaveCommand extends $Command diff --git a/clients/client-mgn/src/commands/AssociateApplicationsCommand.ts b/clients/client-mgn/src/commands/AssociateApplicationsCommand.ts index fa8b30db3701d..d1d1636cec3b5 100644 --- a/clients/client-mgn/src/commands/AssociateApplicationsCommand.ts +++ b/clients/client-mgn/src/commands/AssociateApplicationsCommand.ts @@ -69,6 +69,7 @@ export interface AssociateApplicationsCommandOutput extends AssociateApplication * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class AssociateApplicationsCommand extends $Command diff --git a/clients/client-mgn/src/commands/AssociateSourceServersCommand.ts b/clients/client-mgn/src/commands/AssociateSourceServersCommand.ts index f36f5448dc5c0..09a6d6325c3d4 100644 --- a/clients/client-mgn/src/commands/AssociateSourceServersCommand.ts +++ b/clients/client-mgn/src/commands/AssociateSourceServersCommand.ts @@ -69,6 +69,7 @@ export interface AssociateSourceServersCommandOutput extends AssociateSourceServ * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class AssociateSourceServersCommand extends $Command diff --git a/clients/client-mgn/src/commands/ChangeServerLifeCycleStateCommand.ts b/clients/client-mgn/src/commands/ChangeServerLifeCycleStateCommand.ts index 0458c2a2ace16..f798d24a4eda4 100644 --- a/clients/client-mgn/src/commands/ChangeServerLifeCycleStateCommand.ts +++ b/clients/client-mgn/src/commands/ChangeServerLifeCycleStateCommand.ts @@ -186,6 +186,7 @@ export interface ChangeServerLifeCycleStateCommandOutput extends SourceServer, _ * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ChangeServerLifeCycleStateCommand extends $Command diff --git a/clients/client-mgn/src/commands/CreateApplicationCommand.ts b/clients/client-mgn/src/commands/CreateApplicationCommand.ts index 2939a037291a9..5aff459b3e4ba 100644 --- a/clients/client-mgn/src/commands/CreateApplicationCommand.ts +++ b/clients/client-mgn/src/commands/CreateApplicationCommand.ts @@ -90,6 +90,7 @@ export interface CreateApplicationCommandOutput extends Application, __MetadataB * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-mgn/src/commands/CreateConnectorCommand.ts b/clients/client-mgn/src/commands/CreateConnectorCommand.ts index ecde2f01cb07e..22fe8dc15d09a 100644 --- a/clients/client-mgn/src/commands/CreateConnectorCommand.ts +++ b/clients/client-mgn/src/commands/CreateConnectorCommand.ts @@ -88,6 +88,7 @@ export interface CreateConnectorCommandOutput extends Connector, __MetadataBeare * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class CreateConnectorCommand extends $Command diff --git a/clients/client-mgn/src/commands/CreateLaunchConfigurationTemplateCommand.ts b/clients/client-mgn/src/commands/CreateLaunchConfigurationTemplateCommand.ts index 5b92ea0dc4170..03b73f0f47688 100644 --- a/clients/client-mgn/src/commands/CreateLaunchConfigurationTemplateCommand.ts +++ b/clients/client-mgn/src/commands/CreateLaunchConfigurationTemplateCommand.ts @@ -177,6 +177,7 @@ export interface CreateLaunchConfigurationTemplateCommandOutput extends LaunchCo * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class CreateLaunchConfigurationTemplateCommand extends $Command diff --git a/clients/client-mgn/src/commands/CreateReplicationConfigurationTemplateCommand.ts b/clients/client-mgn/src/commands/CreateReplicationConfigurationTemplateCommand.ts index be669597b4c54..1ac7bd6d91217 100644 --- a/clients/client-mgn/src/commands/CreateReplicationConfigurationTemplateCommand.ts +++ b/clients/client-mgn/src/commands/CreateReplicationConfigurationTemplateCommand.ts @@ -115,6 +115,7 @@ export interface CreateReplicationConfigurationTemplateCommandOutput * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class CreateReplicationConfigurationTemplateCommand extends $Command diff --git a/clients/client-mgn/src/commands/CreateWaveCommand.ts b/clients/client-mgn/src/commands/CreateWaveCommand.ts index fa5d997f6fa5f..ef287ffc40603 100644 --- a/clients/client-mgn/src/commands/CreateWaveCommand.ts +++ b/clients/client-mgn/src/commands/CreateWaveCommand.ts @@ -90,6 +90,7 @@ export interface CreateWaveCommandOutput extends Wave, __MetadataBearer {} * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class CreateWaveCommand extends $Command diff --git a/clients/client-mgn/src/commands/DeleteApplicationCommand.ts b/clients/client-mgn/src/commands/DeleteApplicationCommand.ts index 367a98e09bccc..3b2ce301d1271 100644 --- a/clients/client-mgn/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-mgn/src/commands/DeleteApplicationCommand.ts @@ -63,6 +63,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-mgn/src/commands/DeleteConnectorCommand.ts b/clients/client-mgn/src/commands/DeleteConnectorCommand.ts index 9817246c16737..e902a57ad0d12 100644 --- a/clients/client-mgn/src/commands/DeleteConnectorCommand.ts +++ b/clients/client-mgn/src/commands/DeleteConnectorCommand.ts @@ -62,6 +62,7 @@ export interface DeleteConnectorCommandOutput extends __MetadataBearer {} * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DeleteConnectorCommand extends $Command diff --git a/clients/client-mgn/src/commands/DeleteJobCommand.ts b/clients/client-mgn/src/commands/DeleteJobCommand.ts index 3b351fc10a2ab..11f0337f8b5f1 100644 --- a/clients/client-mgn/src/commands/DeleteJobCommand.ts +++ b/clients/client-mgn/src/commands/DeleteJobCommand.ts @@ -63,6 +63,7 @@ export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBea * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DeleteJobCommand extends $Command diff --git a/clients/client-mgn/src/commands/DeleteLaunchConfigurationTemplateCommand.ts b/clients/client-mgn/src/commands/DeleteLaunchConfigurationTemplateCommand.ts index f4ff0beef0baf..6bd49723a948e 100644 --- a/clients/client-mgn/src/commands/DeleteLaunchConfigurationTemplateCommand.ts +++ b/clients/client-mgn/src/commands/DeleteLaunchConfigurationTemplateCommand.ts @@ -70,6 +70,7 @@ export interface DeleteLaunchConfigurationTemplateCommandOutput * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DeleteLaunchConfigurationTemplateCommand extends $Command diff --git a/clients/client-mgn/src/commands/DeleteReplicationConfigurationTemplateCommand.ts b/clients/client-mgn/src/commands/DeleteReplicationConfigurationTemplateCommand.ts index 45ea6aae97684..a0686716aefbf 100644 --- a/clients/client-mgn/src/commands/DeleteReplicationConfigurationTemplateCommand.ts +++ b/clients/client-mgn/src/commands/DeleteReplicationConfigurationTemplateCommand.ts @@ -71,6 +71,7 @@ export interface DeleteReplicationConfigurationTemplateCommandOutput * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DeleteReplicationConfigurationTemplateCommand extends $Command diff --git a/clients/client-mgn/src/commands/DeleteSourceServerCommand.ts b/clients/client-mgn/src/commands/DeleteSourceServerCommand.ts index 4446c4472e039..f56793aaa0989 100644 --- a/clients/client-mgn/src/commands/DeleteSourceServerCommand.ts +++ b/clients/client-mgn/src/commands/DeleteSourceServerCommand.ts @@ -63,6 +63,7 @@ export interface DeleteSourceServerCommandOutput extends DeleteSourceServerRespo * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DeleteSourceServerCommand extends $Command diff --git a/clients/client-mgn/src/commands/DeleteVcenterClientCommand.ts b/clients/client-mgn/src/commands/DeleteVcenterClientCommand.ts index b03ded31e2f10..4ba417bb45d1b 100644 --- a/clients/client-mgn/src/commands/DeleteVcenterClientCommand.ts +++ b/clients/client-mgn/src/commands/DeleteVcenterClientCommand.ts @@ -62,6 +62,7 @@ export interface DeleteVcenterClientCommandOutput extends __MetadataBearer {} * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DeleteVcenterClientCommand extends $Command diff --git a/clients/client-mgn/src/commands/DeleteWaveCommand.ts b/clients/client-mgn/src/commands/DeleteWaveCommand.ts index 1a2a8faa51788..23511e08cf168 100644 --- a/clients/client-mgn/src/commands/DeleteWaveCommand.ts +++ b/clients/client-mgn/src/commands/DeleteWaveCommand.ts @@ -63,6 +63,7 @@ export interface DeleteWaveCommandOutput extends DeleteWaveResponse, __MetadataB * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DeleteWaveCommand extends $Command diff --git a/clients/client-mgn/src/commands/DescribeJobLogItemsCommand.ts b/clients/client-mgn/src/commands/DescribeJobLogItemsCommand.ts index 585706de39402..8a6af62f1169f 100644 --- a/clients/client-mgn/src/commands/DescribeJobLogItemsCommand.ts +++ b/clients/client-mgn/src/commands/DescribeJobLogItemsCommand.ts @@ -76,6 +76,7 @@ export interface DescribeJobLogItemsCommandOutput extends DescribeJobLogItemsRes * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DescribeJobLogItemsCommand extends $Command diff --git a/clients/client-mgn/src/commands/DescribeJobsCommand.ts b/clients/client-mgn/src/commands/DescribeJobsCommand.ts index 82251f36c692c..e09571acae210 100644 --- a/clients/client-mgn/src/commands/DescribeJobsCommand.ts +++ b/clients/client-mgn/src/commands/DescribeJobsCommand.ts @@ -121,6 +121,7 @@ export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __Metad * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DescribeJobsCommand extends $Command diff --git a/clients/client-mgn/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts b/clients/client-mgn/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts index 633b78abc12de..a5368f115ee28 100644 --- a/clients/client-mgn/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts +++ b/clients/client-mgn/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts @@ -136,6 +136,7 @@ export interface DescribeLaunchConfigurationTemplatesCommandOutput * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DescribeLaunchConfigurationTemplatesCommand extends $Command diff --git a/clients/client-mgn/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts b/clients/client-mgn/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts index dda0a7f0bf889..20f39339c7add 100644 --- a/clients/client-mgn/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts +++ b/clients/client-mgn/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts @@ -104,6 +104,7 @@ export interface DescribeReplicationConfigurationTemplatesCommandOutput * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DescribeReplicationConfigurationTemplatesCommand extends $Command diff --git a/clients/client-mgn/src/commands/DescribeSourceServersCommand.ts b/clients/client-mgn/src/commands/DescribeSourceServersCommand.ts index e31c95ecae60e..6a2d8cf02c4da 100644 --- a/clients/client-mgn/src/commands/DescribeSourceServersCommand.ts +++ b/clients/client-mgn/src/commands/DescribeSourceServersCommand.ts @@ -202,6 +202,7 @@ export interface DescribeSourceServersCommandOutput extends DescribeSourceServer * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DescribeSourceServersCommand extends $Command diff --git a/clients/client-mgn/src/commands/DescribeVcenterClientsCommand.ts b/clients/client-mgn/src/commands/DescribeVcenterClientsCommand.ts index 03a69ceb1496b..f93841ff42ea6 100644 --- a/clients/client-mgn/src/commands/DescribeVcenterClientsCommand.ts +++ b/clients/client-mgn/src/commands/DescribeVcenterClientsCommand.ts @@ -85,6 +85,7 @@ export interface DescribeVcenterClientsCommandOutput extends DescribeVcenterClie * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DescribeVcenterClientsCommand extends $Command diff --git a/clients/client-mgn/src/commands/DisassociateApplicationsCommand.ts b/clients/client-mgn/src/commands/DisassociateApplicationsCommand.ts index e8d4e0ab05854..ab461700cd755 100644 --- a/clients/client-mgn/src/commands/DisassociateApplicationsCommand.ts +++ b/clients/client-mgn/src/commands/DisassociateApplicationsCommand.ts @@ -66,6 +66,7 @@ export interface DisassociateApplicationsCommandOutput extends DisassociateAppli * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DisassociateApplicationsCommand extends $Command diff --git a/clients/client-mgn/src/commands/DisassociateSourceServersCommand.ts b/clients/client-mgn/src/commands/DisassociateSourceServersCommand.ts index f71014c307819..2bdf7a33b1dc7 100644 --- a/clients/client-mgn/src/commands/DisassociateSourceServersCommand.ts +++ b/clients/client-mgn/src/commands/DisassociateSourceServersCommand.ts @@ -66,6 +66,7 @@ export interface DisassociateSourceServersCommandOutput extends DisassociateSour * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DisassociateSourceServersCommand extends $Command diff --git a/clients/client-mgn/src/commands/DisconnectFromServiceCommand.ts b/clients/client-mgn/src/commands/DisconnectFromServiceCommand.ts index d7c2700344485..bf48adfd0541d 100644 --- a/clients/client-mgn/src/commands/DisconnectFromServiceCommand.ts +++ b/clients/client-mgn/src/commands/DisconnectFromServiceCommand.ts @@ -180,6 +180,7 @@ export interface DisconnectFromServiceCommandOutput extends SourceServer, __Meta * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class DisconnectFromServiceCommand extends $Command diff --git a/clients/client-mgn/src/commands/FinalizeCutoverCommand.ts b/clients/client-mgn/src/commands/FinalizeCutoverCommand.ts index f255d36045d74..4f3dfd540de00 100644 --- a/clients/client-mgn/src/commands/FinalizeCutoverCommand.ts +++ b/clients/client-mgn/src/commands/FinalizeCutoverCommand.ts @@ -183,6 +183,7 @@ export interface FinalizeCutoverCommandOutput extends SourceServer, __MetadataBe * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class FinalizeCutoverCommand extends $Command diff --git a/clients/client-mgn/src/commands/GetLaunchConfigurationCommand.ts b/clients/client-mgn/src/commands/GetLaunchConfigurationCommand.ts index 815c3095f6d19..36b3e160a93c8 100644 --- a/clients/client-mgn/src/commands/GetLaunchConfigurationCommand.ts +++ b/clients/client-mgn/src/commands/GetLaunchConfigurationCommand.ts @@ -101,6 +101,7 @@ export interface GetLaunchConfigurationCommandOutput extends LaunchConfiguration * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class GetLaunchConfigurationCommand extends $Command diff --git a/clients/client-mgn/src/commands/GetReplicationConfigurationCommand.ts b/clients/client-mgn/src/commands/GetReplicationConfigurationCommand.ts index 8fc5abfc57869..72e336ff14c6d 100644 --- a/clients/client-mgn/src/commands/GetReplicationConfigurationCommand.ts +++ b/clients/client-mgn/src/commands/GetReplicationConfigurationCommand.ts @@ -96,6 +96,7 @@ export interface GetReplicationConfigurationCommandOutput extends ReplicationCon * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class GetReplicationConfigurationCommand extends $Command diff --git a/clients/client-mgn/src/commands/InitializeServiceCommand.ts b/clients/client-mgn/src/commands/InitializeServiceCommand.ts index 6465f678f9770..5ffb995535e92 100644 --- a/clients/client-mgn/src/commands/InitializeServiceCommand.ts +++ b/clients/client-mgn/src/commands/InitializeServiceCommand.ts @@ -57,6 +57,7 @@ export interface InitializeServiceCommandOutput extends InitializeServiceRespons * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class InitializeServiceCommand extends $Command diff --git a/clients/client-mgn/src/commands/ListApplicationsCommand.ts b/clients/client-mgn/src/commands/ListApplicationsCommand.ts index 25a8165dab2a0..1bd7497b6da42 100644 --- a/clients/client-mgn/src/commands/ListApplicationsCommand.ts +++ b/clients/client-mgn/src/commands/ListApplicationsCommand.ts @@ -94,6 +94,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-mgn/src/commands/ListConnectorsCommand.ts b/clients/client-mgn/src/commands/ListConnectorsCommand.ts index 030570b7d6ef2..3a83317c4c62a 100644 --- a/clients/client-mgn/src/commands/ListConnectorsCommand.ts +++ b/clients/client-mgn/src/commands/ListConnectorsCommand.ts @@ -88,6 +88,7 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ListConnectorsCommand extends $Command diff --git a/clients/client-mgn/src/commands/ListExportErrorsCommand.ts b/clients/client-mgn/src/commands/ListExportErrorsCommand.ts index 718e14f01c8d8..50d4171e53a62 100644 --- a/clients/client-mgn/src/commands/ListExportErrorsCommand.ts +++ b/clients/client-mgn/src/commands/ListExportErrorsCommand.ts @@ -71,6 +71,7 @@ export interface ListExportErrorsCommandOutput extends ListExportErrorsResponse, * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ListExportErrorsCommand extends $Command diff --git a/clients/client-mgn/src/commands/ListExportsCommand.ts b/clients/client-mgn/src/commands/ListExportsCommand.ts index 47cb2527de269..0fbb610b043a8 100644 --- a/clients/client-mgn/src/commands/ListExportsCommand.ts +++ b/clients/client-mgn/src/commands/ListExportsCommand.ts @@ -81,6 +81,7 @@ export interface ListExportsCommandOutput extends ListExportsResponse, __Metadat * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ListExportsCommand extends $Command diff --git a/clients/client-mgn/src/commands/ListImportErrorsCommand.ts b/clients/client-mgn/src/commands/ListImportErrorsCommand.ts index fc0a2263cb225..d2565e030eca8 100644 --- a/clients/client-mgn/src/commands/ListImportErrorsCommand.ts +++ b/clients/client-mgn/src/commands/ListImportErrorsCommand.ts @@ -78,6 +78,7 @@ export interface ListImportErrorsCommandOutput extends ListImportErrorsResponse, * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ListImportErrorsCommand extends $Command diff --git a/clients/client-mgn/src/commands/ListImportsCommand.ts b/clients/client-mgn/src/commands/ListImportsCommand.ts index 7848250e09320..fa164bb1ae854 100644 --- a/clients/client-mgn/src/commands/ListImportsCommand.ts +++ b/clients/client-mgn/src/commands/ListImportsCommand.ts @@ -95,6 +95,7 @@ export interface ListImportsCommandOutput extends ListImportsResponse, __Metadat * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ListImportsCommand extends $Command diff --git a/clients/client-mgn/src/commands/ListManagedAccountsCommand.ts b/clients/client-mgn/src/commands/ListManagedAccountsCommand.ts index 33c85d59bb7e7..87584d4395450 100644 --- a/clients/client-mgn/src/commands/ListManagedAccountsCommand.ts +++ b/clients/client-mgn/src/commands/ListManagedAccountsCommand.ts @@ -67,6 +67,7 @@ export interface ListManagedAccountsCommandOutput extends ListManagedAccountsRes * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ListManagedAccountsCommand extends $Command diff --git a/clients/client-mgn/src/commands/ListSourceServerActionsCommand.ts b/clients/client-mgn/src/commands/ListSourceServerActionsCommand.ts index cb61b68a00c03..cafe1f8b78eee 100644 --- a/clients/client-mgn/src/commands/ListSourceServerActionsCommand.ts +++ b/clients/client-mgn/src/commands/ListSourceServerActionsCommand.ts @@ -96,6 +96,7 @@ export interface ListSourceServerActionsCommandOutput extends ListSourceServerAc * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ListSourceServerActionsCommand extends $Command diff --git a/clients/client-mgn/src/commands/ListTagsForResourceCommand.ts b/clients/client-mgn/src/commands/ListTagsForResourceCommand.ts index 55cc713246c37..19320d1ea69e0 100644 --- a/clients/client-mgn/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mgn/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-mgn/src/commands/ListTemplateActionsCommand.ts b/clients/client-mgn/src/commands/ListTemplateActionsCommand.ts index 85ebdd4a8780e..92dc5c40f7ad1 100644 --- a/clients/client-mgn/src/commands/ListTemplateActionsCommand.ts +++ b/clients/client-mgn/src/commands/ListTemplateActionsCommand.ts @@ -96,6 +96,7 @@ export interface ListTemplateActionsCommandOutput extends ListTemplateActionsRes * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ListTemplateActionsCommand extends $Command diff --git a/clients/client-mgn/src/commands/ListWavesCommand.ts b/clients/client-mgn/src/commands/ListWavesCommand.ts index c7ed90bfa9e43..b9ee62af9dffc 100644 --- a/clients/client-mgn/src/commands/ListWavesCommand.ts +++ b/clients/client-mgn/src/commands/ListWavesCommand.ts @@ -87,6 +87,7 @@ export interface ListWavesCommandOutput extends ListWavesResponse, __MetadataBea * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ListWavesCommand extends $Command diff --git a/clients/client-mgn/src/commands/MarkAsArchivedCommand.ts b/clients/client-mgn/src/commands/MarkAsArchivedCommand.ts index 8763b9fafbbdc..5dce493f58765 100644 --- a/clients/client-mgn/src/commands/MarkAsArchivedCommand.ts +++ b/clients/client-mgn/src/commands/MarkAsArchivedCommand.ts @@ -180,6 +180,7 @@ export interface MarkAsArchivedCommandOutput extends SourceServer, __MetadataBea * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class MarkAsArchivedCommand extends $Command diff --git a/clients/client-mgn/src/commands/PauseReplicationCommand.ts b/clients/client-mgn/src/commands/PauseReplicationCommand.ts index 1ba05984f56bc..aef4f5cd836db 100644 --- a/clients/client-mgn/src/commands/PauseReplicationCommand.ts +++ b/clients/client-mgn/src/commands/PauseReplicationCommand.ts @@ -186,6 +186,7 @@ export interface PauseReplicationCommandOutput extends SourceServer, __MetadataB * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class PauseReplicationCommand extends $Command diff --git a/clients/client-mgn/src/commands/PutSourceServerActionCommand.ts b/clients/client-mgn/src/commands/PutSourceServerActionCommand.ts index d141f30840a3d..8cdba22f8302c 100644 --- a/clients/client-mgn/src/commands/PutSourceServerActionCommand.ts +++ b/clients/client-mgn/src/commands/PutSourceServerActionCommand.ts @@ -113,6 +113,7 @@ export interface PutSourceServerActionCommandOutput extends SourceServerActionDo * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class PutSourceServerActionCommand extends $Command diff --git a/clients/client-mgn/src/commands/PutTemplateActionCommand.ts b/clients/client-mgn/src/commands/PutTemplateActionCommand.ts index 4a7161f4f6b71..12ca34e8881f1 100644 --- a/clients/client-mgn/src/commands/PutTemplateActionCommand.ts +++ b/clients/client-mgn/src/commands/PutTemplateActionCommand.ts @@ -114,6 +114,7 @@ export interface PutTemplateActionCommandOutput extends TemplateActionDocument, * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class PutTemplateActionCommand extends $Command diff --git a/clients/client-mgn/src/commands/RemoveSourceServerActionCommand.ts b/clients/client-mgn/src/commands/RemoveSourceServerActionCommand.ts index d36f891b52ea5..af8d5706448c8 100644 --- a/clients/client-mgn/src/commands/RemoveSourceServerActionCommand.ts +++ b/clients/client-mgn/src/commands/RemoveSourceServerActionCommand.ts @@ -64,6 +64,7 @@ export interface RemoveSourceServerActionCommandOutput extends RemoveSourceServe * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class RemoveSourceServerActionCommand extends $Command diff --git a/clients/client-mgn/src/commands/RemoveTemplateActionCommand.ts b/clients/client-mgn/src/commands/RemoveTemplateActionCommand.ts index af8221823da6e..5e67303ee87fe 100644 --- a/clients/client-mgn/src/commands/RemoveTemplateActionCommand.ts +++ b/clients/client-mgn/src/commands/RemoveTemplateActionCommand.ts @@ -63,6 +63,7 @@ export interface RemoveTemplateActionCommandOutput extends RemoveTemplateActionR * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class RemoveTemplateActionCommand extends $Command diff --git a/clients/client-mgn/src/commands/ResumeReplicationCommand.ts b/clients/client-mgn/src/commands/ResumeReplicationCommand.ts index 5925765271043..7bd819966efec 100644 --- a/clients/client-mgn/src/commands/ResumeReplicationCommand.ts +++ b/clients/client-mgn/src/commands/ResumeReplicationCommand.ts @@ -186,6 +186,7 @@ export interface ResumeReplicationCommandOutput extends SourceServer, __Metadata * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class ResumeReplicationCommand extends $Command diff --git a/clients/client-mgn/src/commands/RetryDataReplicationCommand.ts b/clients/client-mgn/src/commands/RetryDataReplicationCommand.ts index 4d505dd7cdd8e..b6d05ed546d16 100644 --- a/clients/client-mgn/src/commands/RetryDataReplicationCommand.ts +++ b/clients/client-mgn/src/commands/RetryDataReplicationCommand.ts @@ -180,6 +180,7 @@ export interface RetryDataReplicationCommandOutput extends SourceServer, __Metad * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class RetryDataReplicationCommand extends $Command diff --git a/clients/client-mgn/src/commands/StartCutoverCommand.ts b/clients/client-mgn/src/commands/StartCutoverCommand.ts index 04d60d51c0f85..159749350536e 100644 --- a/clients/client-mgn/src/commands/StartCutoverCommand.ts +++ b/clients/client-mgn/src/commands/StartCutoverCommand.ts @@ -123,6 +123,7 @@ export interface StartCutoverCommandOutput extends StartCutoverResponse, __Metad * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class StartCutoverCommand extends $Command diff --git a/clients/client-mgn/src/commands/StartExportCommand.ts b/clients/client-mgn/src/commands/StartExportCommand.ts index dfd3b640a9006..cd033c049380f 100644 --- a/clients/client-mgn/src/commands/StartExportCommand.ts +++ b/clients/client-mgn/src/commands/StartExportCommand.ts @@ -80,6 +80,7 @@ export interface StartExportCommandOutput extends StartExportResponse, __Metadat * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class StartExportCommand extends $Command diff --git a/clients/client-mgn/src/commands/StartImportCommand.ts b/clients/client-mgn/src/commands/StartImportCommand.ts index ca982118eaf45..eb31db4745ce9 100644 --- a/clients/client-mgn/src/commands/StartImportCommand.ts +++ b/clients/client-mgn/src/commands/StartImportCommand.ts @@ -100,6 +100,7 @@ export interface StartImportCommandOutput extends StartImportResponse, __Metadat * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class StartImportCommand extends $Command diff --git a/clients/client-mgn/src/commands/StartReplicationCommand.ts b/clients/client-mgn/src/commands/StartReplicationCommand.ts index f9282cb37eb80..0766f0036e4e9 100644 --- a/clients/client-mgn/src/commands/StartReplicationCommand.ts +++ b/clients/client-mgn/src/commands/StartReplicationCommand.ts @@ -186,6 +186,7 @@ export interface StartReplicationCommandOutput extends SourceServer, __MetadataB * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class StartReplicationCommand extends $Command diff --git a/clients/client-mgn/src/commands/StartTestCommand.ts b/clients/client-mgn/src/commands/StartTestCommand.ts index ed4dcef84fd3e..de7f5be084bfb 100644 --- a/clients/client-mgn/src/commands/StartTestCommand.ts +++ b/clients/client-mgn/src/commands/StartTestCommand.ts @@ -123,6 +123,7 @@ export interface StartTestCommandOutput extends StartTestResponse, __MetadataBea * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class StartTestCommand extends $Command diff --git a/clients/client-mgn/src/commands/StopReplicationCommand.ts b/clients/client-mgn/src/commands/StopReplicationCommand.ts index 17e6ad3b50fd1..17840df039a47 100644 --- a/clients/client-mgn/src/commands/StopReplicationCommand.ts +++ b/clients/client-mgn/src/commands/StopReplicationCommand.ts @@ -186,6 +186,7 @@ export interface StopReplicationCommandOutput extends SourceServer, __MetadataBe * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class StopReplicationCommand extends $Command diff --git a/clients/client-mgn/src/commands/TagResourceCommand.ts b/clients/client-mgn/src/commands/TagResourceCommand.ts index 271ad17375be3..8ecec799636d2 100644 --- a/clients/client-mgn/src/commands/TagResourceCommand.ts +++ b/clients/client-mgn/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-mgn/src/commands/TerminateTargetInstancesCommand.ts b/clients/client-mgn/src/commands/TerminateTargetInstancesCommand.ts index eebecf0ec32b1..d96771a3022e9 100644 --- a/clients/client-mgn/src/commands/TerminateTargetInstancesCommand.ts +++ b/clients/client-mgn/src/commands/TerminateTargetInstancesCommand.ts @@ -123,6 +123,7 @@ export interface TerminateTargetInstancesCommandOutput extends TerminateTargetIn * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class TerminateTargetInstancesCommand extends $Command diff --git a/clients/client-mgn/src/commands/UnarchiveApplicationCommand.ts b/clients/client-mgn/src/commands/UnarchiveApplicationCommand.ts index 4d5a268dd9414..68ec6960c775d 100644 --- a/clients/client-mgn/src/commands/UnarchiveApplicationCommand.ts +++ b/clients/client-mgn/src/commands/UnarchiveApplicationCommand.ts @@ -81,6 +81,7 @@ export interface UnarchiveApplicationCommandOutput extends Application, __Metada * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class UnarchiveApplicationCommand extends $Command diff --git a/clients/client-mgn/src/commands/UnarchiveWaveCommand.ts b/clients/client-mgn/src/commands/UnarchiveWaveCommand.ts index 8d48c0a229b83..7ca9e46dff66d 100644 --- a/clients/client-mgn/src/commands/UnarchiveWaveCommand.ts +++ b/clients/client-mgn/src/commands/UnarchiveWaveCommand.ts @@ -81,6 +81,7 @@ export interface UnarchiveWaveCommandOutput extends Wave, __MetadataBearer {} * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class UnarchiveWaveCommand extends $Command diff --git a/clients/client-mgn/src/commands/UntagResourceCommand.ts b/clients/client-mgn/src/commands/UntagResourceCommand.ts index 17867bfbc6d68..d99fab834e713 100644 --- a/clients/client-mgn/src/commands/UntagResourceCommand.ts +++ b/clients/client-mgn/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-mgn/src/commands/UpdateApplicationCommand.ts b/clients/client-mgn/src/commands/UpdateApplicationCommand.ts index bf5d34d7cb521..0a2b8225dcd97 100644 --- a/clients/client-mgn/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-mgn/src/commands/UpdateApplicationCommand.ts @@ -83,6 +83,7 @@ export interface UpdateApplicationCommandOutput extends Application, __MetadataB * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-mgn/src/commands/UpdateConnectorCommand.ts b/clients/client-mgn/src/commands/UpdateConnectorCommand.ts index 3d9f30d5f897a..f4790c057e21e 100644 --- a/clients/client-mgn/src/commands/UpdateConnectorCommand.ts +++ b/clients/client-mgn/src/commands/UpdateConnectorCommand.ts @@ -83,6 +83,7 @@ export interface UpdateConnectorCommandOutput extends Connector, __MetadataBeare * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class UpdateConnectorCommand extends $Command diff --git a/clients/client-mgn/src/commands/UpdateLaunchConfigurationCommand.ts b/clients/client-mgn/src/commands/UpdateLaunchConfigurationCommand.ts index 412f14b9a4280..9c686752a729d 100644 --- a/clients/client-mgn/src/commands/UpdateLaunchConfigurationCommand.ts +++ b/clients/client-mgn/src/commands/UpdateLaunchConfigurationCommand.ts @@ -149,6 +149,7 @@ export interface UpdateLaunchConfigurationCommandOutput extends LaunchConfigurat * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class UpdateLaunchConfigurationCommand extends $Command diff --git a/clients/client-mgn/src/commands/UpdateLaunchConfigurationTemplateCommand.ts b/clients/client-mgn/src/commands/UpdateLaunchConfigurationTemplateCommand.ts index caaea7e000542..0fd03adfde4f7 100644 --- a/clients/client-mgn/src/commands/UpdateLaunchConfigurationTemplateCommand.ts +++ b/clients/client-mgn/src/commands/UpdateLaunchConfigurationTemplateCommand.ts @@ -177,6 +177,7 @@ export interface UpdateLaunchConfigurationTemplateCommandOutput extends LaunchCo * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class UpdateLaunchConfigurationTemplateCommand extends $Command diff --git a/clients/client-mgn/src/commands/UpdateReplicationConfigurationCommand.ts b/clients/client-mgn/src/commands/UpdateReplicationConfigurationCommand.ts index b25899ed788f7..9ab89ce46907a 100644 --- a/clients/client-mgn/src/commands/UpdateReplicationConfigurationCommand.ts +++ b/clients/client-mgn/src/commands/UpdateReplicationConfigurationCommand.ts @@ -133,6 +133,7 @@ export interface UpdateReplicationConfigurationCommandOutput extends Replication * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class UpdateReplicationConfigurationCommand extends $Command diff --git a/clients/client-mgn/src/commands/UpdateReplicationConfigurationTemplateCommand.ts b/clients/client-mgn/src/commands/UpdateReplicationConfigurationTemplateCommand.ts index 675703497d47b..2aef1ca5c190a 100644 --- a/clients/client-mgn/src/commands/UpdateReplicationConfigurationTemplateCommand.ts +++ b/clients/client-mgn/src/commands/UpdateReplicationConfigurationTemplateCommand.ts @@ -117,6 +117,7 @@ export interface UpdateReplicationConfigurationTemplateCommandOutput * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class UpdateReplicationConfigurationTemplateCommand extends $Command diff --git a/clients/client-mgn/src/commands/UpdateSourceServerCommand.ts b/clients/client-mgn/src/commands/UpdateSourceServerCommand.ts index 96eea03814dfc..ee6804fff6296 100644 --- a/clients/client-mgn/src/commands/UpdateSourceServerCommand.ts +++ b/clients/client-mgn/src/commands/UpdateSourceServerCommand.ts @@ -184,6 +184,7 @@ export interface UpdateSourceServerCommandOutput extends SourceServer, __Metadat * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class UpdateSourceServerCommand extends $Command diff --git a/clients/client-mgn/src/commands/UpdateSourceServerReplicationTypeCommand.ts b/clients/client-mgn/src/commands/UpdateSourceServerReplicationTypeCommand.ts index bfa961fba6590..26ffd8f4ce595 100644 --- a/clients/client-mgn/src/commands/UpdateSourceServerReplicationTypeCommand.ts +++ b/clients/client-mgn/src/commands/UpdateSourceServerReplicationTypeCommand.ts @@ -191,6 +191,7 @@ export interface UpdateSourceServerReplicationTypeCommandOutput extends SourceSe * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class UpdateSourceServerReplicationTypeCommand extends $Command diff --git a/clients/client-mgn/src/commands/UpdateWaveCommand.ts b/clients/client-mgn/src/commands/UpdateWaveCommand.ts index 79ae970766e3b..094584602f62b 100644 --- a/clients/client-mgn/src/commands/UpdateWaveCommand.ts +++ b/clients/client-mgn/src/commands/UpdateWaveCommand.ts @@ -83,6 +83,7 @@ export interface UpdateWaveCommandOutput extends Wave, __MetadataBearer {} * @throws {@link MgnServiceException} *

Base exception class for all service exceptions from Mgn service.

* + * * @public */ export class UpdateWaveCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/CreateApplicationCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/CreateApplicationCommand.ts index 12839155c8cc9..773817fa760b1 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/CreateApplicationCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/CreateApplicationCommand.ts @@ -122,6 +122,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/CreateEnvironmentCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/CreateEnvironmentCommand.ts index 5f07217a58714..3e0263a0af88b 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/CreateEnvironmentCommand.ts @@ -112,6 +112,7 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentRespons * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class CreateEnvironmentCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/CreateRouteCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/CreateRouteCommand.ts index 567e7899a005c..78870c0ffdb60 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/CreateRouteCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/CreateRouteCommand.ts @@ -197,6 +197,7 @@ export interface CreateRouteCommandOutput extends CreateRouteResponse, __Metadat * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class CreateRouteCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/CreateServiceCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/CreateServiceCommand.ts index 58b831de6531b..6f3a0bb8a8537 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/CreateServiceCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/CreateServiceCommand.ts @@ -133,6 +133,7 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class CreateServiceCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteApplicationCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteApplicationCommand.ts index c23305350e1ac..25cfd79858040 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteApplicationCommand.ts @@ -85,6 +85,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteEnvironmentCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteEnvironmentCommand.ts index 22d9434962167..8260de4a28a1e 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteEnvironmentCommand.ts @@ -83,6 +83,7 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentRespons * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class DeleteEnvironmentCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteResourcePolicyCommand.ts index 03032c84d92cf..a9d56ba6231ec 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteResourcePolicyCommand.ts @@ -73,6 +73,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteRouteCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteRouteCommand.ts index d446d6e94f679..8d8644e780101 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteRouteCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteRouteCommand.ts @@ -85,6 +85,7 @@ export interface DeleteRouteCommandOutput extends DeleteRouteResponse, __Metadat * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class DeleteRouteCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteServiceCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteServiceCommand.ts index 7af537eb81435..741d3d7d40786 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteServiceCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteServiceCommand.ts @@ -86,6 +86,7 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class DeleteServiceCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/GetApplicationCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/GetApplicationCommand.ts index 5eee3baa9653a..a488b7f297c7f 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/GetApplicationCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/GetApplicationCommand.ts @@ -112,6 +112,7 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class GetApplicationCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/GetEnvironmentCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/GetEnvironmentCommand.ts index d1debc30997f8..fa024596a3942 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/GetEnvironmentCommand.ts @@ -101,6 +101,7 @@ export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __M * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class GetEnvironmentCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/GetResourcePolicyCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/GetResourcePolicyCommand.ts index c69b903acc9f5..19a4f6883ebfa 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/GetResourcePolicyCommand.ts @@ -75,6 +75,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/GetRouteCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/GetRouteCommand.ts index d26e6a904e579..3def6a8d57aaf 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/GetRouteCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/GetRouteCommand.ts @@ -109,6 +109,7 @@ export interface GetRouteCommandOutput extends GetRouteResponse, __MetadataBeare * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class GetRouteCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/GetServiceCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/GetServiceCommand.ts index 1aacf41638b80..84b50417c1dcf 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/GetServiceCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/GetServiceCommand.ts @@ -109,6 +109,7 @@ export interface GetServiceCommandOutput extends GetServiceResponse, __MetadataB * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class GetServiceCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/ListApplicationsCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/ListApplicationsCommand.ts index f6b3822f9c0b7..7067c3dae68fe 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/ListApplicationsCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/ListApplicationsCommand.ts @@ -124,6 +124,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentVpcsCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentVpcsCommand.ts index 6b86cdd3a382a..e36ac33c90b30 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentVpcsCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentVpcsCommand.ts @@ -91,6 +91,7 @@ export interface ListEnvironmentVpcsCommandOutput extends ListEnvironmentVpcsRes * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class ListEnvironmentVpcsCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentsCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentsCommand.ts index 9b0c939b5cb03..2d98459bbc890 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentsCommand.ts @@ -108,6 +108,7 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResponse, * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class ListEnvironmentsCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/ListRoutesCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/ListRoutesCommand.ts index f7c3127c99d66..6548601fc8df0 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/ListRoutesCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/ListRoutesCommand.ts @@ -121,6 +121,7 @@ export interface ListRoutesCommandOutput extends ListRoutesResponse, __MetadataB * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class ListRoutesCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/ListServicesCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/ListServicesCommand.ts index 3b1d3e2296f09..7b658d994cb40 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/ListServicesCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/ListServicesCommand.ts @@ -121,6 +121,7 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class ListServicesCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/ListTagsForResourceCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/ListTagsForResourceCommand.ts index ffcb3ffacc66c..3c1f8c1e596a8 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/PutResourcePolicyCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/PutResourcePolicyCommand.ts index 37ad5cb225032..c12825471ca2d 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/PutResourcePolicyCommand.ts @@ -81,6 +81,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/TagResourceCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/TagResourceCommand.ts index 600683753ddc0..94360890c93af 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/TagResourceCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/TagResourceCommand.ts @@ -76,6 +76,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/UntagResourceCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/UntagResourceCommand.ts index 3f0c891fd5cd3..83014bcad7e30 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/UntagResourceCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/UntagResourceCommand.ts @@ -76,6 +76,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/UpdateRouteCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/UpdateRouteCommand.ts index 8d73d20279e70..72b17536a7aed 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/UpdateRouteCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/UpdateRouteCommand.ts @@ -83,6 +83,7 @@ export interface UpdateRouteCommandOutput extends UpdateRouteResponse, __Metadat * @throws {@link MigrationHubRefactorSpacesServiceException} *

Base exception class for all service exceptions from MigrationHubRefactorSpaces service.

* + * * @public */ export class UpdateRouteCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/AssociateCreatedArtifactCommand.ts b/clients/client-migration-hub/src/commands/AssociateCreatedArtifactCommand.ts index 041040fa13d67..bb3ae87e9cc2c 100644 --- a/clients/client-migration-hub/src/commands/AssociateCreatedArtifactCommand.ts +++ b/clients/client-migration-hub/src/commands/AssociateCreatedArtifactCommand.ts @@ -110,6 +110,7 @@ export interface AssociateCreatedArtifactCommandOutput extends AssociateCreatedA * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class AssociateCreatedArtifactCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/AssociateDiscoveredResourceCommand.ts b/clients/client-migration-hub/src/commands/AssociateDiscoveredResourceCommand.ts index fbce2d4a97f39..e932e07af00ec 100644 --- a/clients/client-migration-hub/src/commands/AssociateDiscoveredResourceCommand.ts +++ b/clients/client-migration-hub/src/commands/AssociateDiscoveredResourceCommand.ts @@ -99,6 +99,7 @@ export interface AssociateDiscoveredResourceCommandOutput extends AssociateDisco * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class AssociateDiscoveredResourceCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/AssociateSourceResourceCommand.ts b/clients/client-migration-hub/src/commands/AssociateSourceResourceCommand.ts index 67da411a4cba7..391be3a63c38f 100644 --- a/clients/client-migration-hub/src/commands/AssociateSourceResourceCommand.ts +++ b/clients/client-migration-hub/src/commands/AssociateSourceResourceCommand.ts @@ -92,6 +92,7 @@ export interface AssociateSourceResourceCommandOutput extends AssociateSourceRes * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class AssociateSourceResourceCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/CreateProgressUpdateStreamCommand.ts b/clients/client-migration-hub/src/commands/CreateProgressUpdateStreamCommand.ts index f8ab40d0a404c..5b9aa6d17afa1 100644 --- a/clients/client-migration-hub/src/commands/CreateProgressUpdateStreamCommand.ts +++ b/clients/client-migration-hub/src/commands/CreateProgressUpdateStreamCommand.ts @@ -87,6 +87,7 @@ export interface CreateProgressUpdateStreamCommandOutput extends CreateProgressU * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class CreateProgressUpdateStreamCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/DeleteProgressUpdateStreamCommand.ts b/clients/client-migration-hub/src/commands/DeleteProgressUpdateStreamCommand.ts index e5221d7838346..ec666ecee20e2 100644 --- a/clients/client-migration-hub/src/commands/DeleteProgressUpdateStreamCommand.ts +++ b/clients/client-migration-hub/src/commands/DeleteProgressUpdateStreamCommand.ts @@ -118,6 +118,7 @@ export interface DeleteProgressUpdateStreamCommandOutput extends DeleteProgressU * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class DeleteProgressUpdateStreamCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/DescribeApplicationStateCommand.ts b/clients/client-migration-hub/src/commands/DescribeApplicationStateCommand.ts index a7aafe15f548d..3c2097d2f5bf4 100644 --- a/clients/client-migration-hub/src/commands/DescribeApplicationStateCommand.ts +++ b/clients/client-migration-hub/src/commands/DescribeApplicationStateCommand.ts @@ -87,6 +87,7 @@ export interface DescribeApplicationStateCommandOutput extends DescribeApplicati * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class DescribeApplicationStateCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/DescribeMigrationTaskCommand.ts b/clients/client-migration-hub/src/commands/DescribeMigrationTaskCommand.ts index 0cd5c3c5029e4..3c5e0525520cd 100644 --- a/clients/client-migration-hub/src/commands/DescribeMigrationTaskCommand.ts +++ b/clients/client-migration-hub/src/commands/DescribeMigrationTaskCommand.ts @@ -97,6 +97,7 @@ export interface DescribeMigrationTaskCommandOutput extends DescribeMigrationTas * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class DescribeMigrationTaskCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/DisassociateCreatedArtifactCommand.ts b/clients/client-migration-hub/src/commands/DisassociateCreatedArtifactCommand.ts index 0711d5a3cf6c5..4025fe90377e0 100644 --- a/clients/client-migration-hub/src/commands/DisassociateCreatedArtifactCommand.ts +++ b/clients/client-migration-hub/src/commands/DisassociateCreatedArtifactCommand.ts @@ -106,6 +106,7 @@ export interface DisassociateCreatedArtifactCommandOutput extends DisassociateCr * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class DisassociateCreatedArtifactCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/DisassociateDiscoveredResourceCommand.ts b/clients/client-migration-hub/src/commands/DisassociateDiscoveredResourceCommand.ts index 6417f462552b3..00f901ab7ff77 100644 --- a/clients/client-migration-hub/src/commands/DisassociateDiscoveredResourceCommand.ts +++ b/clients/client-migration-hub/src/commands/DisassociateDiscoveredResourceCommand.ts @@ -96,6 +96,7 @@ export interface DisassociateDiscoveredResourceCommandOutput * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class DisassociateDiscoveredResourceCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/DisassociateSourceResourceCommand.ts b/clients/client-migration-hub/src/commands/DisassociateSourceResourceCommand.ts index 1f71ff6762818..e27f3cbd26d89 100644 --- a/clients/client-migration-hub/src/commands/DisassociateSourceResourceCommand.ts +++ b/clients/client-migration-hub/src/commands/DisassociateSourceResourceCommand.ts @@ -87,6 +87,7 @@ export interface DisassociateSourceResourceCommandOutput extends DisassociateSou * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class DisassociateSourceResourceCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/ImportMigrationTaskCommand.ts b/clients/client-migration-hub/src/commands/ImportMigrationTaskCommand.ts index 0149130d1fa7b..945d5b8b7a614 100644 --- a/clients/client-migration-hub/src/commands/ImportMigrationTaskCommand.ts +++ b/clients/client-migration-hub/src/commands/ImportMigrationTaskCommand.ts @@ -92,6 +92,7 @@ export interface ImportMigrationTaskCommandOutput extends ImportMigrationTaskRes * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class ImportMigrationTaskCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/ListApplicationStatesCommand.ts b/clients/client-migration-hub/src/commands/ListApplicationStatesCommand.ts index 7a7b2d732ebae..896791c8469e2 100644 --- a/clients/client-migration-hub/src/commands/ListApplicationStatesCommand.ts +++ b/clients/client-migration-hub/src/commands/ListApplicationStatesCommand.ts @@ -89,6 +89,7 @@ export interface ListApplicationStatesCommandOutput extends ListApplicationState * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class ListApplicationStatesCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/ListCreatedArtifactsCommand.ts b/clients/client-migration-hub/src/commands/ListCreatedArtifactsCommand.ts index 24946e062666e..a0e3395f7ccf4 100644 --- a/clients/client-migration-hub/src/commands/ListCreatedArtifactsCommand.ts +++ b/clients/client-migration-hub/src/commands/ListCreatedArtifactsCommand.ts @@ -104,6 +104,7 @@ export interface ListCreatedArtifactsCommandOutput extends ListCreatedArtifactsR * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class ListCreatedArtifactsCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/ListDiscoveredResourcesCommand.ts b/clients/client-migration-hub/src/commands/ListDiscoveredResourcesCommand.ts index 0fb0c587aaa9c..f1f6ea4f8b9ff 100644 --- a/clients/client-migration-hub/src/commands/ListDiscoveredResourcesCommand.ts +++ b/clients/client-migration-hub/src/commands/ListDiscoveredResourcesCommand.ts @@ -90,6 +90,7 @@ export interface ListDiscoveredResourcesCommandOutput extends ListDiscoveredReso * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class ListDiscoveredResourcesCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/ListMigrationTaskUpdatesCommand.ts b/clients/client-migration-hub/src/commands/ListMigrationTaskUpdatesCommand.ts index 559fba000e7c0..ed3c197d1c557 100644 --- a/clients/client-migration-hub/src/commands/ListMigrationTaskUpdatesCommand.ts +++ b/clients/client-migration-hub/src/commands/ListMigrationTaskUpdatesCommand.ts @@ -93,6 +93,7 @@ export interface ListMigrationTaskUpdatesCommandOutput extends ListMigrationTask * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class ListMigrationTaskUpdatesCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/ListMigrationTasksCommand.ts b/clients/client-migration-hub/src/commands/ListMigrationTasksCommand.ts index 04509b1295d2d..4ee96864cdac1 100644 --- a/clients/client-migration-hub/src/commands/ListMigrationTasksCommand.ts +++ b/clients/client-migration-hub/src/commands/ListMigrationTasksCommand.ts @@ -111,6 +111,7 @@ export interface ListMigrationTasksCommandOutput extends ListMigrationTasksResul * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class ListMigrationTasksCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/ListProgressUpdateStreamsCommand.ts b/clients/client-migration-hub/src/commands/ListProgressUpdateStreamsCommand.ts index d04b00e2cee2c..4af71d1cbbb2b 100644 --- a/clients/client-migration-hub/src/commands/ListProgressUpdateStreamsCommand.ts +++ b/clients/client-migration-hub/src/commands/ListProgressUpdateStreamsCommand.ts @@ -82,6 +82,7 @@ export interface ListProgressUpdateStreamsCommandOutput extends ListProgressUpda * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class ListProgressUpdateStreamsCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/ListSourceResourcesCommand.ts b/clients/client-migration-hub/src/commands/ListSourceResourcesCommand.ts index faaa4bdca0e66..896224d174f48 100644 --- a/clients/client-migration-hub/src/commands/ListSourceResourcesCommand.ts +++ b/clients/client-migration-hub/src/commands/ListSourceResourcesCommand.ts @@ -89,6 +89,7 @@ export interface ListSourceResourcesCommandOutput extends ListSourceResourcesRes * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class ListSourceResourcesCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/NotifyApplicationStateCommand.ts b/clients/client-migration-hub/src/commands/NotifyApplicationStateCommand.ts index 74323d8ee2d16..92da6505e6cfd 100644 --- a/clients/client-migration-hub/src/commands/NotifyApplicationStateCommand.ts +++ b/clients/client-migration-hub/src/commands/NotifyApplicationStateCommand.ts @@ -98,6 +98,7 @@ export interface NotifyApplicationStateCommandOutput extends NotifyApplicationSt * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class NotifyApplicationStateCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/NotifyMigrationTaskStateCommand.ts b/clients/client-migration-hub/src/commands/NotifyMigrationTaskStateCommand.ts index 0a00eb24dbd36..6361f56049f88 100644 --- a/clients/client-migration-hub/src/commands/NotifyMigrationTaskStateCommand.ts +++ b/clients/client-migration-hub/src/commands/NotifyMigrationTaskStateCommand.ts @@ -113,6 +113,7 @@ export interface NotifyMigrationTaskStateCommandOutput extends NotifyMigrationTa * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class NotifyMigrationTaskStateCommand extends $Command diff --git a/clients/client-migration-hub/src/commands/PutResourceAttributesCommand.ts b/clients/client-migration-hub/src/commands/PutResourceAttributesCommand.ts index 81b7d28595149..d9c07ddbf375e 100644 --- a/clients/client-migration-hub/src/commands/PutResourceAttributesCommand.ts +++ b/clients/client-migration-hub/src/commands/PutResourceAttributesCommand.ts @@ -119,6 +119,7 @@ export interface PutResourceAttributesCommandOutput extends PutResourceAttribute * @throws {@link MigrationHubServiceException} *

Base exception class for all service exceptions from MigrationHub service.

* + * * @public */ export class PutResourceAttributesCommand extends $Command diff --git a/clients/client-migrationhub-config/src/commands/CreateHomeRegionControlCommand.ts b/clients/client-migrationhub-config/src/commands/CreateHomeRegionControlCommand.ts index a9a991b34d917..212cd39e269b0 100644 --- a/clients/client-migrationhub-config/src/commands/CreateHomeRegionControlCommand.ts +++ b/clients/client-migrationhub-config/src/commands/CreateHomeRegionControlCommand.ts @@ -94,6 +94,7 @@ export interface CreateHomeRegionControlCommandOutput extends CreateHomeRegionCo * @throws {@link MigrationHubConfigServiceException} *

Base exception class for all service exceptions from MigrationHubConfig service.

* + * * @public */ export class CreateHomeRegionControlCommand extends $Command diff --git a/clients/client-migrationhub-config/src/commands/DeleteHomeRegionControlCommand.ts b/clients/client-migrationhub-config/src/commands/DeleteHomeRegionControlCommand.ts index 9ccc87dd5ed7b..c78c99f5e2092 100644 --- a/clients/client-migrationhub-config/src/commands/DeleteHomeRegionControlCommand.ts +++ b/clients/client-migrationhub-config/src/commands/DeleteHomeRegionControlCommand.ts @@ -75,6 +75,7 @@ export interface DeleteHomeRegionControlCommandOutput extends DeleteHomeRegionCo * @throws {@link MigrationHubConfigServiceException} *

Base exception class for all service exceptions from MigrationHubConfig service.

* + * * @public */ export class DeleteHomeRegionControlCommand extends $Command diff --git a/clients/client-migrationhub-config/src/commands/DescribeHomeRegionControlsCommand.ts b/clients/client-migrationhub-config/src/commands/DescribeHomeRegionControlsCommand.ts index 1e4105fe1b45b..71a8722c50d02 100644 --- a/clients/client-migrationhub-config/src/commands/DescribeHomeRegionControlsCommand.ts +++ b/clients/client-migrationhub-config/src/commands/DescribeHomeRegionControlsCommand.ts @@ -96,6 +96,7 @@ export interface DescribeHomeRegionControlsCommandOutput extends DescribeHomeReg * @throws {@link MigrationHubConfigServiceException} *

Base exception class for all service exceptions from MigrationHubConfig service.

* + * * @public */ export class DescribeHomeRegionControlsCommand extends $Command diff --git a/clients/client-migrationhub-config/src/commands/GetHomeRegionCommand.ts b/clients/client-migrationhub-config/src/commands/GetHomeRegionCommand.ts index a1c30badda639..defa09b5b9630 100644 --- a/clients/client-migrationhub-config/src/commands/GetHomeRegionCommand.ts +++ b/clients/client-migrationhub-config/src/commands/GetHomeRegionCommand.ts @@ -79,6 +79,7 @@ export interface GetHomeRegionCommandOutput extends GetHomeRegionResult, __Metad * @throws {@link MigrationHubConfigServiceException} *

Base exception class for all service exceptions from MigrationHubConfig service.

* + * * @public */ export class GetHomeRegionCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/CreateTemplateCommand.ts b/clients/client-migrationhuborchestrator/src/commands/CreateTemplateCommand.ts index 6af64dd8ccb46..eb0fff8a34cea 100644 --- a/clients/client-migrationhuborchestrator/src/commands/CreateTemplateCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/CreateTemplateCommand.ts @@ -87,6 +87,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class CreateTemplateCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowCommand.ts b/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowCommand.ts index c16a3fb1a6372..056956cfa5be1 100644 --- a/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowCommand.ts @@ -122,6 +122,7 @@ export interface CreateWorkflowCommandOutput extends CreateMigrationWorkflowResp * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class CreateWorkflowCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepCommand.ts b/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepCommand.ts index de2be41429e0c..fbc37f95f35ab 100644 --- a/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepCommand.ts @@ -114,6 +114,7 @@ export interface CreateWorkflowStepCommandOutput extends CreateWorkflowStepRespo * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class CreateWorkflowStepCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepGroupCommand.ts b/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepGroupCommand.ts index e810fb6406abe..6bbc8c4ed2de4 100644 --- a/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepGroupCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepGroupCommand.ts @@ -95,6 +95,7 @@ export interface CreateWorkflowStepGroupCommandOutput extends CreateWorkflowStep * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class CreateWorkflowStepGroupCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/DeleteTemplateCommand.ts b/clients/client-migrationhuborchestrator/src/commands/DeleteTemplateCommand.ts index 12e1d0fb87acc..176b2988140bd 100644 --- a/clients/client-migrationhuborchestrator/src/commands/DeleteTemplateCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/DeleteTemplateCommand.ts @@ -72,6 +72,7 @@ export interface DeleteTemplateCommandOutput extends DeleteTemplateResponse, __M * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class DeleteTemplateCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowCommand.ts b/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowCommand.ts index eebf5dbe0d266..10069f10d6c4e 100644 --- a/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowCommand.ts @@ -77,6 +77,7 @@ export interface DeleteWorkflowCommandOutput extends DeleteMigrationWorkflowResp * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class DeleteWorkflowCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepCommand.ts b/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepCommand.ts index c0b035423cb39..71391c8711a1a 100644 --- a/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepCommand.ts @@ -75,6 +75,7 @@ export interface DeleteWorkflowStepCommandOutput extends DeleteWorkflowStepRespo * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class DeleteWorkflowStepCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepGroupCommand.ts b/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepGroupCommand.ts index b0e31b8f6332e..3fd961d9c0fd1 100644 --- a/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepGroupCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepGroupCommand.ts @@ -73,6 +73,7 @@ export interface DeleteWorkflowStepGroupCommandOutput extends DeleteWorkflowStep * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class DeleteWorkflowStepGroupCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/GetTemplateCommand.ts b/clients/client-migrationhuborchestrator/src/commands/GetTemplateCommand.ts index 5abccad26d685..95b1e24a0e31f 100644 --- a/clients/client-migrationhuborchestrator/src/commands/GetTemplateCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/GetTemplateCommand.ts @@ -95,6 +95,7 @@ export interface GetTemplateCommandOutput extends GetMigrationWorkflowTemplateRe * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class GetTemplateCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepCommand.ts b/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepCommand.ts index 4c7486fec8218..edf0e17f3746f 100644 --- a/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepCommand.ts @@ -108,6 +108,7 @@ export interface GetTemplateStepCommandOutput extends GetTemplateStepResponse, _ * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class GetTemplateStepCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepGroupCommand.ts b/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepGroupCommand.ts index 238da553bb6fa..1a74e3314995f 100644 --- a/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepGroupCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepGroupCommand.ts @@ -93,6 +93,7 @@ export interface GetTemplateStepGroupCommandOutput extends GetTemplateStepGroupR * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class GetTemplateStepGroupCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/GetWorkflowCommand.ts b/clients/client-migrationhuborchestrator/src/commands/GetWorkflowCommand.ts index 1f4fc05fc343f..21e83221d5748 100644 --- a/clients/client-migrationhuborchestrator/src/commands/GetWorkflowCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/GetWorkflowCommand.ts @@ -115,6 +115,7 @@ export interface GetWorkflowCommandOutput extends GetMigrationWorkflowResponse, * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class GetWorkflowCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepCommand.ts b/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepCommand.ts index 8efe1afb9b50e..415a9ef98c535 100644 --- a/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepCommand.ts @@ -124,6 +124,7 @@ export interface GetWorkflowStepCommandOutput extends GetWorkflowStepResponse, _ * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class GetWorkflowStepCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepGroupCommand.ts b/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepGroupCommand.ts index 1c1f532679b08..e40327ed9f1ed 100644 --- a/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepGroupCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepGroupCommand.ts @@ -95,6 +95,7 @@ export interface GetWorkflowStepGroupCommandOutput extends GetWorkflowStepGroupR * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class GetWorkflowStepGroupCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/ListPluginsCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListPluginsCommand.ts index ac643ebea484a..849f57623909c 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListPluginsCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListPluginsCommand.ts @@ -79,6 +79,7 @@ export interface ListPluginsCommandOutput extends ListPluginsResponse, __Metadat * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class ListPluginsCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/ListTagsForResourceCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListTagsForResourceCommand.ts index 11f7a83a23620..fc6ee400b49a9 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepGroupsCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepGroupsCommand.ts index d43359f9afc07..262ca9f981e25 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepGroupsCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepGroupsCommand.ts @@ -85,6 +85,7 @@ export interface ListTemplateStepGroupsCommandOutput extends ListTemplateStepGro * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class ListTemplateStepGroupsCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepsCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepsCommand.ts index f5230e1effb1f..91a2c18ad97d4 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepsCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepsCommand.ts @@ -94,6 +94,7 @@ export interface ListTemplateStepsCommandOutput extends ListTemplateStepsRespons * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class ListTemplateStepsCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/ListTemplatesCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListTemplatesCommand.ts index d4df30bb9536d..06e80c7fc6244 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListTemplatesCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListTemplatesCommand.ts @@ -78,6 +78,7 @@ export interface ListTemplatesCommandOutput extends ListMigrationWorkflowTemplat * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class ListTemplatesCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepGroupsCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepGroupsCommand.ts index b20a9a01d4027..f9c9467ae2879 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepGroupsCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepGroupsCommand.ts @@ -90,6 +90,7 @@ export interface ListWorkflowStepGroupsCommandOutput extends ListWorkflowStepGro * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class ListWorkflowStepGroupsCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepsCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepsCommand.ts index 7944c275f9299..384e69ddb64f1 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepsCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepsCommand.ts @@ -95,6 +95,7 @@ export interface ListWorkflowStepsCommandOutput extends ListWorkflowStepsRespons * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class ListWorkflowStepsCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/ListWorkflowsCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListWorkflowsCommand.ts index 1e0939f4773af..92c6cf6e3c533 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListWorkflowsCommand.ts @@ -93,6 +93,7 @@ export interface ListWorkflowsCommandOutput extends ListMigrationWorkflowsRespon * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class ListWorkflowsCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/RetryWorkflowStepCommand.ts b/clients/client-migrationhuborchestrator/src/commands/RetryWorkflowStepCommand.ts index 8e0d4d0c2bd00..be90a914fb306 100644 --- a/clients/client-migrationhuborchestrator/src/commands/RetryWorkflowStepCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/RetryWorkflowStepCommand.ts @@ -76,6 +76,7 @@ export interface RetryWorkflowStepCommandOutput extends RetryWorkflowStepRespons * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class RetryWorkflowStepCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/StartWorkflowCommand.ts b/clients/client-migrationhuborchestrator/src/commands/StartWorkflowCommand.ts index 64d9ea7d4d784..0e316f85e5b30 100644 --- a/clients/client-migrationhuborchestrator/src/commands/StartWorkflowCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/StartWorkflowCommand.ts @@ -78,6 +78,7 @@ export interface StartWorkflowCommandOutput extends StartMigrationWorkflowRespon * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class StartWorkflowCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/StopWorkflowCommand.ts b/clients/client-migrationhuborchestrator/src/commands/StopWorkflowCommand.ts index 8c0ef5b43bdca..0e802898c73b4 100644 --- a/clients/client-migrationhuborchestrator/src/commands/StopWorkflowCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/StopWorkflowCommand.ts @@ -78,6 +78,7 @@ export interface StopWorkflowCommandOutput extends StopMigrationWorkflowResponse * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class StopWorkflowCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/TagResourceCommand.ts b/clients/client-migrationhuborchestrator/src/commands/TagResourceCommand.ts index 6e238e44d90f5..eea5b68a0c8c4 100644 --- a/clients/client-migrationhuborchestrator/src/commands/TagResourceCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/TagResourceCommand.ts @@ -66,6 +66,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/UntagResourceCommand.ts b/clients/client-migrationhuborchestrator/src/commands/UntagResourceCommand.ts index 5ce6efcbcf2b2..d4000ff81d2d5 100644 --- a/clients/client-migrationhuborchestrator/src/commands/UntagResourceCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/UntagResourceCommand.ts @@ -66,6 +66,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/UpdateTemplateCommand.ts b/clients/client-migrationhuborchestrator/src/commands/UpdateTemplateCommand.ts index 78265610b9063..943cd0b7da668 100644 --- a/clients/client-migrationhuborchestrator/src/commands/UpdateTemplateCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/UpdateTemplateCommand.ts @@ -81,6 +81,7 @@ export interface UpdateTemplateCommandOutput extends UpdateTemplateResponse, __M * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class UpdateTemplateCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowCommand.ts b/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowCommand.ts index 5b3002dc0657f..a7569d12d5ec8 100644 --- a/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowCommand.ts @@ -122,6 +122,7 @@ export interface UpdateWorkflowCommandOutput extends UpdateMigrationWorkflowResp * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class UpdateWorkflowCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepCommand.ts b/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepCommand.ts index 612c9b63786b3..48e49583d85b2 100644 --- a/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepCommand.ts @@ -116,6 +116,7 @@ export interface UpdateWorkflowStepCommandOutput extends UpdateWorkflowStepRespo * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class UpdateWorkflowStepCommand extends $Command diff --git a/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepGroupCommand.ts b/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepGroupCommand.ts index 9b4e918e12535..819d3e180b472 100644 --- a/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepGroupCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepGroupCommand.ts @@ -99,6 +99,7 @@ export interface UpdateWorkflowStepGroupCommandOutput extends UpdateWorkflowStep * @throws {@link MigrationHubOrchestratorServiceException} *

Base exception class for all service exceptions from MigrationHubOrchestrator service.

* + * * @public */ export class UpdateWorkflowStepGroupCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentDetailsCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentDetailsCommand.ts index b2c217d282419..ef026d3f9ee4a 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentDetailsCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentDetailsCommand.ts @@ -158,6 +158,7 @@ export interface GetApplicationComponentDetailsCommandOutput * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class GetApplicationComponentDetailsCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentStrategiesCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentStrategiesCommand.ts index c7cd52bd5221b..f82b690ac7d15 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentStrategiesCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentStrategiesCommand.ts @@ -91,6 +91,7 @@ export interface GetApplicationComponentStrategiesCommandOutput * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class GetApplicationComponentStrategiesCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/GetAssessmentCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetAssessmentCommand.ts index e78896e962789..2d0a551bc344a 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetAssessmentCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetAssessmentCommand.ts @@ -91,6 +91,7 @@ export interface GetAssessmentCommandOutput extends GetAssessmentResponse, __Met * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class GetAssessmentCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/GetImportFileTaskCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetImportFileTaskCommand.ts index fbc58bdd07cc9..7635a0644ca20 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetImportFileTaskCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetImportFileTaskCommand.ts @@ -85,6 +85,7 @@ export interface GetImportFileTaskCommandOutput extends GetImportFileTaskRespons * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class GetImportFileTaskCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/GetLatestAssessmentIdCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetLatestAssessmentIdCommand.ts index ff119a8441f3e..b250f38598896 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetLatestAssessmentIdCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetLatestAssessmentIdCommand.ts @@ -70,6 +70,7 @@ export interface GetLatestAssessmentIdCommandOutput extends GetLatestAssessmentI * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class GetLatestAssessmentIdCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/GetPortfolioPreferencesCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetPortfolioPreferencesCommand.ts index 0eb20f5c038cc..4bcd5e5ea91c4 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetPortfolioPreferencesCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetPortfolioPreferencesCommand.ts @@ -117,6 +117,7 @@ export interface GetPortfolioPreferencesCommandOutput extends GetPortfolioPrefer * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class GetPortfolioPreferencesCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/GetPortfolioSummaryCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetPortfolioSummaryCommand.ts index 5714318f84ba2..8c5d40d2dacd7 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetPortfolioSummaryCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetPortfolioSummaryCommand.ts @@ -118,6 +118,7 @@ export interface GetPortfolioSummaryCommandOutput extends GetPortfolioSummaryRes * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class GetPortfolioSummaryCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/GetRecommendationReportDetailsCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetRecommendationReportDetailsCommand.ts index 47b7ab3baada3..85cc1548f3435 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetRecommendationReportDetailsCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetRecommendationReportDetailsCommand.ts @@ -90,6 +90,7 @@ export interface GetRecommendationReportDetailsCommandOutput * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class GetRecommendationReportDetailsCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/GetServerDetailsCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetServerDetailsCommand.ts index eb64c6b422c5c..04e0de4614cf8 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetServerDetailsCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetServerDetailsCommand.ts @@ -137,6 +137,7 @@ export interface GetServerDetailsCommandOutput extends GetServerDetailsResponse, * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class GetServerDetailsCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/GetServerStrategiesCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetServerStrategiesCommand.ts index b6c9b2aa1147f..57e7191a17120 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetServerStrategiesCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetServerStrategiesCommand.ts @@ -90,6 +90,7 @@ export interface GetServerStrategiesCommandOutput extends GetServerStrategiesRes * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class GetServerStrategiesCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/ListAnalyzableServersCommand.ts b/clients/client-migrationhubstrategy/src/commands/ListAnalyzableServersCommand.ts index 08d0f50209296..ce19ca477bd31 100644 --- a/clients/client-migrationhubstrategy/src/commands/ListAnalyzableServersCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/ListAnalyzableServersCommand.ts @@ -82,6 +82,30 @@ export interface ListAnalyzableServersCommandOutput extends ListAnalyzableServer * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * + * @example Invoke ListAnalyzableServers + * ```javascript + * // + * const input = { + * maxResults: 100, + * sort: "ASC" + * }; + * const command = new ListAnalyzableServersCommand(input); + * const response = await client.send(command); + * /* response is + * { + * analyzableServers: [ + * { + * hostname: "Ubuntu 1", + * ipAddress: "1.1.1.1", + * source: "Application Discover Service", + * vmId: "vm-1" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListAnalyzableServersCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/ListApplicationComponentsCommand.ts b/clients/client-migrationhubstrategy/src/commands/ListApplicationComponentsCommand.ts index f09a720a075f0..f32c4a5c449a7 100644 --- a/clients/client-migrationhubstrategy/src/commands/ListApplicationComponentsCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/ListApplicationComponentsCommand.ts @@ -160,6 +160,7 @@ export interface ListApplicationComponentsCommandOutput extends ListApplicationC * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class ListApplicationComponentsCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/ListCollectorsCommand.ts b/clients/client-migrationhubstrategy/src/commands/ListCollectorsCommand.ts index 110762d4e3996..fb7cc032288a4 100644 --- a/clients/client-migrationhubstrategy/src/commands/ListCollectorsCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/ListCollectorsCommand.ts @@ -114,6 +114,7 @@ export interface ListCollectorsCommandOutput extends ListCollectorsResponse, __M * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class ListCollectorsCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/ListImportFileTaskCommand.ts b/clients/client-migrationhubstrategy/src/commands/ListImportFileTaskCommand.ts index 90ca34bb94a8d..6a6f8be0dcaf6 100644 --- a/clients/client-migrationhubstrategy/src/commands/ListImportFileTaskCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/ListImportFileTaskCommand.ts @@ -88,6 +88,7 @@ export interface ListImportFileTaskCommandOutput extends ListImportFileTaskRespo * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class ListImportFileTaskCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/ListServersCommand.ts b/clients/client-migrationhubstrategy/src/commands/ListServersCommand.ts index 8fdb12e8646ad..8ac3456d1c184 100644 --- a/clients/client-migrationhubstrategy/src/commands/ListServersCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/ListServersCommand.ts @@ -138,6 +138,7 @@ export interface ListServersCommandOutput extends ListServersResponse, __Metadat * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class ListServersCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/PutPortfolioPreferencesCommand.ts b/clients/client-migrationhubstrategy/src/commands/PutPortfolioPreferencesCommand.ts index 8076fa3bd7729..21646930baeaa 100644 --- a/clients/client-migrationhubstrategy/src/commands/PutPortfolioPreferencesCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/PutPortfolioPreferencesCommand.ts @@ -121,6 +121,7 @@ export interface PutPortfolioPreferencesCommandOutput extends PutPortfolioPrefer * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class PutPortfolioPreferencesCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/StartAssessmentCommand.ts b/clients/client-migrationhubstrategy/src/commands/StartAssessmentCommand.ts index 7c64d94087185..04caf2090e4eb 100644 --- a/clients/client-migrationhubstrategy/src/commands/StartAssessmentCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/StartAssessmentCommand.ts @@ -84,6 +84,7 @@ export interface StartAssessmentCommandOutput extends StartAssessmentResponse, _ * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class StartAssessmentCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/StartImportFileTaskCommand.ts b/clients/client-migrationhubstrategy/src/commands/StartImportFileTaskCommand.ts index d0d6230bd8b59..c8063c8d9d35a 100644 --- a/clients/client-migrationhubstrategy/src/commands/StartImportFileTaskCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/StartImportFileTaskCommand.ts @@ -86,6 +86,7 @@ export interface StartImportFileTaskCommandOutput extends StartImportFileTaskRes * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class StartImportFileTaskCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/StartRecommendationReportGenerationCommand.ts b/clients/client-migrationhubstrategy/src/commands/StartRecommendationReportGenerationCommand.ts index dac48b78abcac..d85a4aa97da98 100644 --- a/clients/client-migrationhubstrategy/src/commands/StartRecommendationReportGenerationCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/StartRecommendationReportGenerationCommand.ts @@ -90,6 +90,7 @@ export interface StartRecommendationReportGenerationCommandOutput * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class StartRecommendationReportGenerationCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/StopAssessmentCommand.ts b/clients/client-migrationhubstrategy/src/commands/StopAssessmentCommand.ts index f67e7030a3a7b..fc37db9126e7d 100644 --- a/clients/client-migrationhubstrategy/src/commands/StopAssessmentCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/StopAssessmentCommand.ts @@ -70,6 +70,7 @@ export interface StopAssessmentCommandOutput extends StopAssessmentResponse, __M * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class StopAssessmentCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/UpdateApplicationComponentConfigCommand.ts b/clients/client-migrationhubstrategy/src/commands/UpdateApplicationComponentConfigCommand.ts index 67fc30199fd69..b86a9e7e2ad69 100644 --- a/clients/client-migrationhubstrategy/src/commands/UpdateApplicationComponentConfigCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/UpdateApplicationComponentConfigCommand.ts @@ -96,6 +96,7 @@ export interface UpdateApplicationComponentConfigCommandOutput * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class UpdateApplicationComponentConfigCommand extends $Command diff --git a/clients/client-migrationhubstrategy/src/commands/UpdateServerConfigCommand.ts b/clients/client-migrationhubstrategy/src/commands/UpdateServerConfigCommand.ts index 3314e385501dc..620eabd4d1816 100644 --- a/clients/client-migrationhubstrategy/src/commands/UpdateServerConfigCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/UpdateServerConfigCommand.ts @@ -75,6 +75,7 @@ export interface UpdateServerConfigCommandOutput extends UpdateServerConfigRespo * @throws {@link MigrationHubStrategyServiceException} *

Base exception class for all service exceptions from MigrationHubStrategy service.

* + * * @public */ export class UpdateServerConfigCommand extends $Command diff --git a/clients/client-mq/src/commands/CreateBrokerCommand.ts b/clients/client-mq/src/commands/CreateBrokerCommand.ts index 13fc03055fa2d..1cfee44184206 100644 --- a/clients/client-mq/src/commands/CreateBrokerCommand.ts +++ b/clients/client-mq/src/commands/CreateBrokerCommand.ts @@ -132,6 +132,7 @@ export interface CreateBrokerCommandOutput extends CreateBrokerResponse, __Metad * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class CreateBrokerCommand extends $Command diff --git a/clients/client-mq/src/commands/CreateConfigurationCommand.ts b/clients/client-mq/src/commands/CreateConfigurationCommand.ts index 17d44d24d9f7d..d82c7e45dd425 100644 --- a/clients/client-mq/src/commands/CreateConfigurationCommand.ts +++ b/clients/client-mq/src/commands/CreateConfigurationCommand.ts @@ -82,6 +82,7 @@ export interface CreateConfigurationCommandOutput extends CreateConfigurationRes * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class CreateConfigurationCommand extends $Command diff --git a/clients/client-mq/src/commands/CreateTagsCommand.ts b/clients/client-mq/src/commands/CreateTagsCommand.ts index bf160c8656849..ea3391325ef7c 100644 --- a/clients/client-mq/src/commands/CreateTagsCommand.ts +++ b/clients/client-mq/src/commands/CreateTagsCommand.ts @@ -68,6 +68,7 @@ export interface CreateTagsCommandOutput extends __MetadataBearer {} * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class CreateTagsCommand extends $Command diff --git a/clients/client-mq/src/commands/CreateUserCommand.ts b/clients/client-mq/src/commands/CreateUserCommand.ts index 7bdfbf7fdbe0e..5340c213aaf94 100644 --- a/clients/client-mq/src/commands/CreateUserCommand.ts +++ b/clients/client-mq/src/commands/CreateUserCommand.ts @@ -75,6 +75,7 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class CreateUserCommand extends $Command diff --git a/clients/client-mq/src/commands/DeleteBrokerCommand.ts b/clients/client-mq/src/commands/DeleteBrokerCommand.ts index d37ad9ba57374..7bf16b33da998 100644 --- a/clients/client-mq/src/commands/DeleteBrokerCommand.ts +++ b/clients/client-mq/src/commands/DeleteBrokerCommand.ts @@ -67,6 +67,7 @@ export interface DeleteBrokerCommandOutput extends DeleteBrokerResponse, __Metad * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class DeleteBrokerCommand extends $Command diff --git a/clients/client-mq/src/commands/DeleteTagsCommand.ts b/clients/client-mq/src/commands/DeleteTagsCommand.ts index e7f23f7116495..b299fc97c8ed8 100644 --- a/clients/client-mq/src/commands/DeleteTagsCommand.ts +++ b/clients/client-mq/src/commands/DeleteTagsCommand.ts @@ -68,6 +68,7 @@ export interface DeleteTagsCommandOutput extends __MetadataBearer {} * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class DeleteTagsCommand extends $Command diff --git a/clients/client-mq/src/commands/DeleteUserCommand.ts b/clients/client-mq/src/commands/DeleteUserCommand.ts index 98acdc737a930..066a89bf5cbae 100644 --- a/clients/client-mq/src/commands/DeleteUserCommand.ts +++ b/clients/client-mq/src/commands/DeleteUserCommand.ts @@ -66,6 +66,7 @@ export interface DeleteUserCommandOutput extends DeleteUserResponse, __MetadataB * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class DeleteUserCommand extends $Command diff --git a/clients/client-mq/src/commands/DescribeBrokerCommand.ts b/clients/client-mq/src/commands/DescribeBrokerCommand.ts index 0de556160f3af..cf8ef41d299ad 100644 --- a/clients/client-mq/src/commands/DescribeBrokerCommand.ts +++ b/clients/client-mq/src/commands/DescribeBrokerCommand.ts @@ -188,6 +188,7 @@ export interface DescribeBrokerCommandOutput extends DescribeBrokerResponse, __M * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class DescribeBrokerCommand extends $Command diff --git a/clients/client-mq/src/commands/DescribeBrokerEngineTypesCommand.ts b/clients/client-mq/src/commands/DescribeBrokerEngineTypesCommand.ts index fa539d68d96f3..29d0a30cf6445 100644 --- a/clients/client-mq/src/commands/DescribeBrokerEngineTypesCommand.ts +++ b/clients/client-mq/src/commands/DescribeBrokerEngineTypesCommand.ts @@ -77,6 +77,7 @@ export interface DescribeBrokerEngineTypesCommandOutput extends DescribeBrokerEn * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class DescribeBrokerEngineTypesCommand extends $Command diff --git a/clients/client-mq/src/commands/DescribeBrokerInstanceOptionsCommand.ts b/clients/client-mq/src/commands/DescribeBrokerInstanceOptionsCommand.ts index 8b23104f43464..84196067f4db4 100644 --- a/clients/client-mq/src/commands/DescribeBrokerInstanceOptionsCommand.ts +++ b/clients/client-mq/src/commands/DescribeBrokerInstanceOptionsCommand.ts @@ -92,6 +92,7 @@ export interface DescribeBrokerInstanceOptionsCommandOutput * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class DescribeBrokerInstanceOptionsCommand extends $Command diff --git a/clients/client-mq/src/commands/DescribeConfigurationCommand.ts b/clients/client-mq/src/commands/DescribeConfigurationCommand.ts index bb16795e6d871..45e43b59f279a 100644 --- a/clients/client-mq/src/commands/DescribeConfigurationCommand.ts +++ b/clients/client-mq/src/commands/DescribeConfigurationCommand.ts @@ -82,6 +82,7 @@ export interface DescribeConfigurationCommandOutput extends DescribeConfiguratio * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class DescribeConfigurationCommand extends $Command diff --git a/clients/client-mq/src/commands/DescribeConfigurationRevisionCommand.ts b/clients/client-mq/src/commands/DescribeConfigurationRevisionCommand.ts index 7dffd7e8bd558..4386a21b4f5f3 100644 --- a/clients/client-mq/src/commands/DescribeConfigurationRevisionCommand.ts +++ b/clients/client-mq/src/commands/DescribeConfigurationRevisionCommand.ts @@ -76,6 +76,7 @@ export interface DescribeConfigurationRevisionCommandOutput * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class DescribeConfigurationRevisionCommand extends $Command diff --git a/clients/client-mq/src/commands/DescribeUserCommand.ts b/clients/client-mq/src/commands/DescribeUserCommand.ts index 1f9c3cd04b660..daa27bfc5324d 100644 --- a/clients/client-mq/src/commands/DescribeUserCommand.ts +++ b/clients/client-mq/src/commands/DescribeUserCommand.ts @@ -81,6 +81,7 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class DescribeUserCommand extends $Command diff --git a/clients/client-mq/src/commands/ListBrokersCommand.ts b/clients/client-mq/src/commands/ListBrokersCommand.ts index f67cd3e31f789..52a9184a7e00d 100644 --- a/clients/client-mq/src/commands/ListBrokersCommand.ts +++ b/clients/client-mq/src/commands/ListBrokersCommand.ts @@ -77,6 +77,7 @@ export interface ListBrokersCommandOutput extends ListBrokersResponse, __Metadat * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class ListBrokersCommand extends $Command diff --git a/clients/client-mq/src/commands/ListConfigurationRevisionsCommand.ts b/clients/client-mq/src/commands/ListConfigurationRevisionsCommand.ts index 13331a3efd26d..393cb5a476545 100644 --- a/clients/client-mq/src/commands/ListConfigurationRevisionsCommand.ts +++ b/clients/client-mq/src/commands/ListConfigurationRevisionsCommand.ts @@ -78,6 +78,7 @@ export interface ListConfigurationRevisionsCommandOutput extends ListConfigurati * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class ListConfigurationRevisionsCommand extends $Command diff --git a/clients/client-mq/src/commands/ListConfigurationsCommand.ts b/clients/client-mq/src/commands/ListConfigurationsCommand.ts index 4d63772098545..7a6c22296e487 100644 --- a/clients/client-mq/src/commands/ListConfigurationsCommand.ts +++ b/clients/client-mq/src/commands/ListConfigurationsCommand.ts @@ -86,6 +86,7 @@ export interface ListConfigurationsCommandOutput extends ListConfigurationsRespo * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class ListConfigurationsCommand extends $Command diff --git a/clients/client-mq/src/commands/ListTagsCommand.ts b/clients/client-mq/src/commands/ListTagsCommand.ts index b8629847c102f..c991fe653079e 100644 --- a/clients/client-mq/src/commands/ListTagsCommand.ts +++ b/clients/client-mq/src/commands/ListTagsCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class ListTagsCommand extends $Command diff --git a/clients/client-mq/src/commands/ListUsersCommand.ts b/clients/client-mq/src/commands/ListUsersCommand.ts index e1e8629b58d86..2cd463130cc9b 100644 --- a/clients/client-mq/src/commands/ListUsersCommand.ts +++ b/clients/client-mq/src/commands/ListUsersCommand.ts @@ -77,6 +77,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class ListUsersCommand extends $Command diff --git a/clients/client-mq/src/commands/PromoteCommand.ts b/clients/client-mq/src/commands/PromoteCommand.ts index 02aea520228c5..4ab492eb201ec 100644 --- a/clients/client-mq/src/commands/PromoteCommand.ts +++ b/clients/client-mq/src/commands/PromoteCommand.ts @@ -68,6 +68,7 @@ export interface PromoteCommandOutput extends PromoteResponse, __MetadataBearer * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class PromoteCommand extends $Command diff --git a/clients/client-mq/src/commands/RebootBrokerCommand.ts b/clients/client-mq/src/commands/RebootBrokerCommand.ts index 61b25f6fbcd25..9fe8ebd9728de 100644 --- a/clients/client-mq/src/commands/RebootBrokerCommand.ts +++ b/clients/client-mq/src/commands/RebootBrokerCommand.ts @@ -65,6 +65,7 @@ export interface RebootBrokerCommandOutput extends RebootBrokerResponse, __Metad * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class RebootBrokerCommand extends $Command diff --git a/clients/client-mq/src/commands/UpdateBrokerCommand.ts b/clients/client-mq/src/commands/UpdateBrokerCommand.ts index 4c3f31f131549..99d6f6906c62f 100644 --- a/clients/client-mq/src/commands/UpdateBrokerCommand.ts +++ b/clients/client-mq/src/commands/UpdateBrokerCommand.ts @@ -156,6 +156,7 @@ export interface UpdateBrokerCommandOutput extends UpdateBrokerResponse, __Metad * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class UpdateBrokerCommand extends $Command diff --git a/clients/client-mq/src/commands/UpdateConfigurationCommand.ts b/clients/client-mq/src/commands/UpdateConfigurationCommand.ts index bd9745ba64d53..86ff6acca95f9 100644 --- a/clients/client-mq/src/commands/UpdateConfigurationCommand.ts +++ b/clients/client-mq/src/commands/UpdateConfigurationCommand.ts @@ -87,6 +87,7 @@ export interface UpdateConfigurationCommandOutput extends UpdateConfigurationRes * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class UpdateConfigurationCommand extends $Command diff --git a/clients/client-mq/src/commands/UpdateUserCommand.ts b/clients/client-mq/src/commands/UpdateUserCommand.ts index d3529d8d66567..56b83d0297e47 100644 --- a/clients/client-mq/src/commands/UpdateUserCommand.ts +++ b/clients/client-mq/src/commands/UpdateUserCommand.ts @@ -75,6 +75,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* + * * @public */ export class UpdateUserCommand extends $Command diff --git a/clients/client-mturk/src/commands/AcceptQualificationRequestCommand.ts b/clients/client-mturk/src/commands/AcceptQualificationRequestCommand.ts index 797d7c818d798..5246cb36f19fe 100644 --- a/clients/client-mturk/src/commands/AcceptQualificationRequestCommand.ts +++ b/clients/client-mturk/src/commands/AcceptQualificationRequestCommand.ts @@ -69,6 +69,7 @@ export interface AcceptQualificationRequestCommandOutput extends AcceptQualifica * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class AcceptQualificationRequestCommand extends $Command diff --git a/clients/client-mturk/src/commands/ApproveAssignmentCommand.ts b/clients/client-mturk/src/commands/ApproveAssignmentCommand.ts index b063822f77917..1f782e8d63a7d 100644 --- a/clients/client-mturk/src/commands/ApproveAssignmentCommand.ts +++ b/clients/client-mturk/src/commands/ApproveAssignmentCommand.ts @@ -90,6 +90,7 @@ export interface ApproveAssignmentCommandOutput extends ApproveAssignmentRespons * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class ApproveAssignmentCommand extends $Command diff --git a/clients/client-mturk/src/commands/AssociateQualificationWithWorkerCommand.ts b/clients/client-mturk/src/commands/AssociateQualificationWithWorkerCommand.ts index b6918877a71db..30d16a4c37771 100644 --- a/clients/client-mturk/src/commands/AssociateQualificationWithWorkerCommand.ts +++ b/clients/client-mturk/src/commands/AssociateQualificationWithWorkerCommand.ts @@ -87,6 +87,7 @@ export interface AssociateQualificationWithWorkerCommandOutput * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class AssociateQualificationWithWorkerCommand extends $Command diff --git a/clients/client-mturk/src/commands/CreateAdditionalAssignmentsForHITCommand.ts b/clients/client-mturk/src/commands/CreateAdditionalAssignmentsForHITCommand.ts index 1e29216213dc1..34d48a0de3d79 100644 --- a/clients/client-mturk/src/commands/CreateAdditionalAssignmentsForHITCommand.ts +++ b/clients/client-mturk/src/commands/CreateAdditionalAssignmentsForHITCommand.ts @@ -91,6 +91,7 @@ export interface CreateAdditionalAssignmentsForHITCommandOutput * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class CreateAdditionalAssignmentsForHITCommand extends $Command diff --git a/clients/client-mturk/src/commands/CreateHITCommand.ts b/clients/client-mturk/src/commands/CreateHITCommand.ts index bfc29294d3a76..35ca9776b5b95 100644 --- a/clients/client-mturk/src/commands/CreateHITCommand.ts +++ b/clients/client-mturk/src/commands/CreateHITCommand.ts @@ -187,6 +187,7 @@ export interface CreateHITCommandOutput extends CreateHITResponse, __MetadataBea * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class CreateHITCommand extends $Command diff --git a/clients/client-mturk/src/commands/CreateHITTypeCommand.ts b/clients/client-mturk/src/commands/CreateHITTypeCommand.ts index 64ef67f047343..4985ddc65da75 100644 --- a/clients/client-mturk/src/commands/CreateHITTypeCommand.ts +++ b/clients/client-mturk/src/commands/CreateHITTypeCommand.ts @@ -88,6 +88,7 @@ export interface CreateHITTypeCommandOutput extends CreateHITTypeResponse, __Met * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class CreateHITTypeCommand extends $Command diff --git a/clients/client-mturk/src/commands/CreateHITWithHITTypeCommand.ts b/clients/client-mturk/src/commands/CreateHITWithHITTypeCommand.ts index 308400be0e087..49e4e7f34ba62 100644 --- a/clients/client-mturk/src/commands/CreateHITWithHITTypeCommand.ts +++ b/clients/client-mturk/src/commands/CreateHITWithHITTypeCommand.ts @@ -166,6 +166,7 @@ export interface CreateHITWithHITTypeCommandOutput extends CreateHITWithHITTypeR * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class CreateHITWithHITTypeCommand extends $Command diff --git a/clients/client-mturk/src/commands/CreateQualificationTypeCommand.ts b/clients/client-mturk/src/commands/CreateQualificationTypeCommand.ts index baeec1f0391ce..9f32d3b5f4ad6 100644 --- a/clients/client-mturk/src/commands/CreateQualificationTypeCommand.ts +++ b/clients/client-mturk/src/commands/CreateQualificationTypeCommand.ts @@ -90,6 +90,7 @@ export interface CreateQualificationTypeCommandOutput extends CreateQualificatio * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class CreateQualificationTypeCommand extends $Command diff --git a/clients/client-mturk/src/commands/CreateWorkerBlockCommand.ts b/clients/client-mturk/src/commands/CreateWorkerBlockCommand.ts index 5c1ef6bbedb2a..907d96b989935 100644 --- a/clients/client-mturk/src/commands/CreateWorkerBlockCommand.ts +++ b/clients/client-mturk/src/commands/CreateWorkerBlockCommand.ts @@ -60,6 +60,7 @@ export interface CreateWorkerBlockCommandOutput extends CreateWorkerBlockRespons * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class CreateWorkerBlockCommand extends $Command diff --git a/clients/client-mturk/src/commands/DeleteHITCommand.ts b/clients/client-mturk/src/commands/DeleteHITCommand.ts index c4f498df768e7..c3e2b65c0ddf3 100644 --- a/clients/client-mturk/src/commands/DeleteHITCommand.ts +++ b/clients/client-mturk/src/commands/DeleteHITCommand.ts @@ -94,6 +94,7 @@ export interface DeleteHITCommandOutput extends DeleteHITResponse, __MetadataBea * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class DeleteHITCommand extends $Command diff --git a/clients/client-mturk/src/commands/DeleteQualificationTypeCommand.ts b/clients/client-mturk/src/commands/DeleteQualificationTypeCommand.ts index e9aa92782ec9f..b5dd42716ef4c 100644 --- a/clients/client-mturk/src/commands/DeleteQualificationTypeCommand.ts +++ b/clients/client-mturk/src/commands/DeleteQualificationTypeCommand.ts @@ -77,6 +77,7 @@ export interface DeleteQualificationTypeCommandOutput extends DeleteQualificatio * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class DeleteQualificationTypeCommand extends $Command diff --git a/clients/client-mturk/src/commands/DeleteWorkerBlockCommand.ts b/clients/client-mturk/src/commands/DeleteWorkerBlockCommand.ts index c5f23471fd134..8a35161470b3b 100644 --- a/clients/client-mturk/src/commands/DeleteWorkerBlockCommand.ts +++ b/clients/client-mturk/src/commands/DeleteWorkerBlockCommand.ts @@ -60,6 +60,7 @@ export interface DeleteWorkerBlockCommandOutput extends DeleteWorkerBlockRespons * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class DeleteWorkerBlockCommand extends $Command diff --git a/clients/client-mturk/src/commands/DisassociateQualificationFromWorkerCommand.ts b/clients/client-mturk/src/commands/DisassociateQualificationFromWorkerCommand.ts index 73c9ec14ecb6d..06a536877aeff 100644 --- a/clients/client-mturk/src/commands/DisassociateQualificationFromWorkerCommand.ts +++ b/clients/client-mturk/src/commands/DisassociateQualificationFromWorkerCommand.ts @@ -76,6 +76,7 @@ export interface DisassociateQualificationFromWorkerCommandOutput * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class DisassociateQualificationFromWorkerCommand extends $Command diff --git a/clients/client-mturk/src/commands/GetAccountBalanceCommand.ts b/clients/client-mturk/src/commands/GetAccountBalanceCommand.ts index 53ac56418866a..414ea1f53075c 100644 --- a/clients/client-mturk/src/commands/GetAccountBalanceCommand.ts +++ b/clients/client-mturk/src/commands/GetAccountBalanceCommand.ts @@ -62,6 +62,7 @@ export interface GetAccountBalanceCommandOutput extends GetAccountBalanceRespons * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class GetAccountBalanceCommand extends $Command diff --git a/clients/client-mturk/src/commands/GetAssignmentCommand.ts b/clients/client-mturk/src/commands/GetAssignmentCommand.ts index cea6dff22a70e..e9f98d70ae718 100644 --- a/clients/client-mturk/src/commands/GetAssignmentCommand.ts +++ b/clients/client-mturk/src/commands/GetAssignmentCommand.ts @@ -115,6 +115,7 @@ export interface GetAssignmentCommandOutput extends GetAssignmentResponse, __Met * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class GetAssignmentCommand extends $Command diff --git a/clients/client-mturk/src/commands/GetFileUploadURLCommand.ts b/clients/client-mturk/src/commands/GetFileUploadURLCommand.ts index 374064d460d7c..759e637da1de2 100644 --- a/clients/client-mturk/src/commands/GetFileUploadURLCommand.ts +++ b/clients/client-mturk/src/commands/GetFileUploadURLCommand.ts @@ -79,6 +79,7 @@ export interface GetFileUploadURLCommandOutput extends GetFileUploadURLResponse, * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class GetFileUploadURLCommand extends $Command diff --git a/clients/client-mturk/src/commands/GetHITCommand.ts b/clients/client-mturk/src/commands/GetHITCommand.ts index 1c261fe4aee50..625685f45dcfc 100644 --- a/clients/client-mturk/src/commands/GetHITCommand.ts +++ b/clients/client-mturk/src/commands/GetHITCommand.ts @@ -101,6 +101,7 @@ export interface GetHITCommandOutput extends GetHITResponse, __MetadataBearer {} * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class GetHITCommand extends $Command diff --git a/clients/client-mturk/src/commands/GetQualificationScoreCommand.ts b/clients/client-mturk/src/commands/GetQualificationScoreCommand.ts index db4dc5fb94745..07287f87f7488 100644 --- a/clients/client-mturk/src/commands/GetQualificationScoreCommand.ts +++ b/clients/client-mturk/src/commands/GetQualificationScoreCommand.ts @@ -85,6 +85,7 @@ export interface GetQualificationScoreCommandOutput extends GetQualificationScor * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class GetQualificationScoreCommand extends $Command diff --git a/clients/client-mturk/src/commands/GetQualificationTypeCommand.ts b/clients/client-mturk/src/commands/GetQualificationTypeCommand.ts index 7d69bc86bf109..bd1d3289ee2c0 100644 --- a/clients/client-mturk/src/commands/GetQualificationTypeCommand.ts +++ b/clients/client-mturk/src/commands/GetQualificationTypeCommand.ts @@ -77,6 +77,7 @@ export interface GetQualificationTypeCommandOutput extends GetQualificationTypeR * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class GetQualificationTypeCommand extends $Command diff --git a/clients/client-mturk/src/commands/ListAssignmentsForHITCommand.ts b/clients/client-mturk/src/commands/ListAssignmentsForHITCommand.ts index 347e3f20ffb4e..cd0b7786f0c92 100644 --- a/clients/client-mturk/src/commands/ListAssignmentsForHITCommand.ts +++ b/clients/client-mturk/src/commands/ListAssignmentsForHITCommand.ts @@ -109,6 +109,7 @@ export interface ListAssignmentsForHITCommandOutput extends ListAssignmentsForHI * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class ListAssignmentsForHITCommand extends $Command diff --git a/clients/client-mturk/src/commands/ListBonusPaymentsCommand.ts b/clients/client-mturk/src/commands/ListBonusPaymentsCommand.ts index 016ab94c76087..b21258fff0e13 100644 --- a/clients/client-mturk/src/commands/ListBonusPaymentsCommand.ts +++ b/clients/client-mturk/src/commands/ListBonusPaymentsCommand.ts @@ -79,6 +79,7 @@ export interface ListBonusPaymentsCommandOutput extends ListBonusPaymentsRespons * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class ListBonusPaymentsCommand extends $Command diff --git a/clients/client-mturk/src/commands/ListHITsCommand.ts b/clients/client-mturk/src/commands/ListHITsCommand.ts index f25a6d41c1c84..2dfc829433907 100644 --- a/clients/client-mturk/src/commands/ListHITsCommand.ts +++ b/clients/client-mturk/src/commands/ListHITsCommand.ts @@ -110,6 +110,7 @@ export interface ListHITsCommandOutput extends ListHITsResponse, __MetadataBeare * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class ListHITsCommand extends $Command diff --git a/clients/client-mturk/src/commands/ListHITsForQualificationTypeCommand.ts b/clients/client-mturk/src/commands/ListHITsForQualificationTypeCommand.ts index 9a26426c8a0a1..71c6c9dd52a5b 100644 --- a/clients/client-mturk/src/commands/ListHITsForQualificationTypeCommand.ts +++ b/clients/client-mturk/src/commands/ListHITsForQualificationTypeCommand.ts @@ -115,6 +115,7 @@ export interface ListHITsForQualificationTypeCommandOutput * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class ListHITsForQualificationTypeCommand extends $Command diff --git a/clients/client-mturk/src/commands/ListQualificationRequestsCommand.ts b/clients/client-mturk/src/commands/ListQualificationRequestsCommand.ts index 25213c06af4be..a8b0a83119486 100644 --- a/clients/client-mturk/src/commands/ListQualificationRequestsCommand.ts +++ b/clients/client-mturk/src/commands/ListQualificationRequestsCommand.ts @@ -81,6 +81,7 @@ export interface ListQualificationRequestsCommandOutput extends ListQualificatio * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class ListQualificationRequestsCommand extends $Command diff --git a/clients/client-mturk/src/commands/ListQualificationTypesCommand.ts b/clients/client-mturk/src/commands/ListQualificationTypesCommand.ts index b868c7becc610..a167f621567c4 100644 --- a/clients/client-mturk/src/commands/ListQualificationTypesCommand.ts +++ b/clients/client-mturk/src/commands/ListQualificationTypesCommand.ts @@ -88,6 +88,7 @@ export interface ListQualificationTypesCommandOutput extends ListQualificationTy * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class ListQualificationTypesCommand extends $Command diff --git a/clients/client-mturk/src/commands/ListReviewPolicyResultsForHITCommand.ts b/clients/client-mturk/src/commands/ListReviewPolicyResultsForHITCommand.ts index 26d5cdff6d4e9..223686bf2c6dd 100644 --- a/clients/client-mturk/src/commands/ListReviewPolicyResultsForHITCommand.ts +++ b/clients/client-mturk/src/commands/ListReviewPolicyResultsForHITCommand.ts @@ -166,6 +166,7 @@ export interface ListReviewPolicyResultsForHITCommandOutput * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class ListReviewPolicyResultsForHITCommand extends $Command diff --git a/clients/client-mturk/src/commands/ListReviewableHITsCommand.ts b/clients/client-mturk/src/commands/ListReviewableHITsCommand.ts index 12659f5ae4992..07ef33685e9bc 100644 --- a/clients/client-mturk/src/commands/ListReviewableHITsCommand.ts +++ b/clients/client-mturk/src/commands/ListReviewableHITsCommand.ts @@ -109,6 +109,7 @@ export interface ListReviewableHITsCommandOutput extends ListReviewableHITsRespo * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class ListReviewableHITsCommand extends $Command diff --git a/clients/client-mturk/src/commands/ListWorkerBlocksCommand.ts b/clients/client-mturk/src/commands/ListWorkerBlocksCommand.ts index f237b98e586cc..964f9d5b1f308 100644 --- a/clients/client-mturk/src/commands/ListWorkerBlocksCommand.ts +++ b/clients/client-mturk/src/commands/ListWorkerBlocksCommand.ts @@ -69,6 +69,7 @@ export interface ListWorkerBlocksCommandOutput extends ListWorkerBlocksResponse, * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class ListWorkerBlocksCommand extends $Command diff --git a/clients/client-mturk/src/commands/ListWorkersWithQualificationTypeCommand.ts b/clients/client-mturk/src/commands/ListWorkersWithQualificationTypeCommand.ts index 64b46d33a5482..9ff2d72946cc4 100644 --- a/clients/client-mturk/src/commands/ListWorkersWithQualificationTypeCommand.ts +++ b/clients/client-mturk/src/commands/ListWorkersWithQualificationTypeCommand.ts @@ -86,6 +86,7 @@ export interface ListWorkersWithQualificationTypeCommandOutput * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class ListWorkersWithQualificationTypeCommand extends $Command diff --git a/clients/client-mturk/src/commands/NotifyWorkersCommand.ts b/clients/client-mturk/src/commands/NotifyWorkersCommand.ts index f55dd7b748ce7..8c60435fbc18c 100644 --- a/clients/client-mturk/src/commands/NotifyWorkersCommand.ts +++ b/clients/client-mturk/src/commands/NotifyWorkersCommand.ts @@ -80,6 +80,7 @@ export interface NotifyWorkersCommandOutput extends NotifyWorkersResponse, __Met * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class NotifyWorkersCommand extends $Command diff --git a/clients/client-mturk/src/commands/RejectAssignmentCommand.ts b/clients/client-mturk/src/commands/RejectAssignmentCommand.ts index ed2bc655b4bca..616c3fb4858d4 100644 --- a/clients/client-mturk/src/commands/RejectAssignmentCommand.ts +++ b/clients/client-mturk/src/commands/RejectAssignmentCommand.ts @@ -72,6 +72,7 @@ export interface RejectAssignmentCommandOutput extends RejectAssignmentResponse, * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class RejectAssignmentCommand extends $Command diff --git a/clients/client-mturk/src/commands/RejectQualificationRequestCommand.ts b/clients/client-mturk/src/commands/RejectQualificationRequestCommand.ts index 91dc1c95e1fbe..e961d52d11d37 100644 --- a/clients/client-mturk/src/commands/RejectQualificationRequestCommand.ts +++ b/clients/client-mturk/src/commands/RejectQualificationRequestCommand.ts @@ -66,6 +66,7 @@ export interface RejectQualificationRequestCommandOutput extends RejectQualifica * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class RejectQualificationRequestCommand extends $Command diff --git a/clients/client-mturk/src/commands/SendBonusCommand.ts b/clients/client-mturk/src/commands/SendBonusCommand.ts index 92fd0b8e685d3..a97e7df298df1 100644 --- a/clients/client-mturk/src/commands/SendBonusCommand.ts +++ b/clients/client-mturk/src/commands/SendBonusCommand.ts @@ -76,6 +76,7 @@ export interface SendBonusCommandOutput extends SendBonusResponse, __MetadataBea * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class SendBonusCommand extends $Command diff --git a/clients/client-mturk/src/commands/SendTestEventNotificationCommand.ts b/clients/client-mturk/src/commands/SendTestEventNotificationCommand.ts index 1c28e6d22862a..4ac64273ff299 100644 --- a/clients/client-mturk/src/commands/SendTestEventNotificationCommand.ts +++ b/clients/client-mturk/src/commands/SendTestEventNotificationCommand.ts @@ -73,6 +73,7 @@ export interface SendTestEventNotificationCommandOutput extends SendTestEventNot * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class SendTestEventNotificationCommand extends $Command diff --git a/clients/client-mturk/src/commands/UpdateExpirationForHITCommand.ts b/clients/client-mturk/src/commands/UpdateExpirationForHITCommand.ts index 9f4ecd3f28702..2b9b53d03f48c 100644 --- a/clients/client-mturk/src/commands/UpdateExpirationForHITCommand.ts +++ b/clients/client-mturk/src/commands/UpdateExpirationForHITCommand.ts @@ -63,6 +63,7 @@ export interface UpdateExpirationForHITCommandOutput extends UpdateExpirationFor * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class UpdateExpirationForHITCommand extends $Command diff --git a/clients/client-mturk/src/commands/UpdateHITReviewStatusCommand.ts b/clients/client-mturk/src/commands/UpdateHITReviewStatusCommand.ts index 937daa2363351..2e3129f542726 100644 --- a/clients/client-mturk/src/commands/UpdateHITReviewStatusCommand.ts +++ b/clients/client-mturk/src/commands/UpdateHITReviewStatusCommand.ts @@ -64,6 +64,7 @@ export interface UpdateHITReviewStatusCommandOutput extends UpdateHITReviewStatu * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class UpdateHITReviewStatusCommand extends $Command diff --git a/clients/client-mturk/src/commands/UpdateHITTypeOfHITCommand.ts b/clients/client-mturk/src/commands/UpdateHITTypeOfHITCommand.ts index 53235997fc3d0..213aad44d68dd 100644 --- a/clients/client-mturk/src/commands/UpdateHITTypeOfHITCommand.ts +++ b/clients/client-mturk/src/commands/UpdateHITTypeOfHITCommand.ts @@ -67,6 +67,7 @@ export interface UpdateHITTypeOfHITCommandOutput extends UpdateHITTypeOfHITRespo * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class UpdateHITTypeOfHITCommand extends $Command diff --git a/clients/client-mturk/src/commands/UpdateNotificationSettingsCommand.ts b/clients/client-mturk/src/commands/UpdateNotificationSettingsCommand.ts index e0e97d6838b80..afef59f4ebb27 100644 --- a/clients/client-mturk/src/commands/UpdateNotificationSettingsCommand.ts +++ b/clients/client-mturk/src/commands/UpdateNotificationSettingsCommand.ts @@ -79,6 +79,7 @@ export interface UpdateNotificationSettingsCommandOutput extends UpdateNotificat * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class UpdateNotificationSettingsCommand extends $Command diff --git a/clients/client-mturk/src/commands/UpdateQualificationTypeCommand.ts b/clients/client-mturk/src/commands/UpdateQualificationTypeCommand.ts index 153f83a040024..a6fdf9e8f6cd9 100644 --- a/clients/client-mturk/src/commands/UpdateQualificationTypeCommand.ts +++ b/clients/client-mturk/src/commands/UpdateQualificationTypeCommand.ts @@ -115,6 +115,7 @@ export interface UpdateQualificationTypeCommandOutput extends UpdateQualificatio * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* + * * @public */ export class UpdateQualificationTypeCommand extends $Command diff --git a/clients/client-mwaa/src/commands/CreateCliTokenCommand.ts b/clients/client-mwaa/src/commands/CreateCliTokenCommand.ts index 891e1f29c56d8..9bfaf5cf154b6 100644 --- a/clients/client-mwaa/src/commands/CreateCliTokenCommand.ts +++ b/clients/client-mwaa/src/commands/CreateCliTokenCommand.ts @@ -63,6 +63,7 @@ export interface CreateCliTokenCommandOutput extends CreateCliTokenResponse, __M * @throws {@link MWAAServiceException} *

Base exception class for all service exceptions from MWAA service.

* + * * @public */ export class CreateCliTokenCommand extends $Command diff --git a/clients/client-mwaa/src/commands/CreateEnvironmentCommand.ts b/clients/client-mwaa/src/commands/CreateEnvironmentCommand.ts index 3117de4a38c46..95b5e2a34a2de 100644 --- a/clients/client-mwaa/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-mwaa/src/commands/CreateEnvironmentCommand.ts @@ -121,6 +121,7 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentOutput, * @throws {@link MWAAServiceException} *

Base exception class for all service exceptions from MWAA service.

* + * * @public */ export class CreateEnvironmentCommand extends $Command diff --git a/clients/client-mwaa/src/commands/CreateWebLoginTokenCommand.ts b/clients/client-mwaa/src/commands/CreateWebLoginTokenCommand.ts index 1b59ff11dd844..de049fd831573 100644 --- a/clients/client-mwaa/src/commands/CreateWebLoginTokenCommand.ts +++ b/clients/client-mwaa/src/commands/CreateWebLoginTokenCommand.ts @@ -74,6 +74,7 @@ export interface CreateWebLoginTokenCommandOutput extends CreateWebLoginTokenRes * @throws {@link MWAAServiceException} *

Base exception class for all service exceptions from MWAA service.

* + * * @public */ export class CreateWebLoginTokenCommand extends $Command diff --git a/clients/client-mwaa/src/commands/DeleteEnvironmentCommand.ts b/clients/client-mwaa/src/commands/DeleteEnvironmentCommand.ts index 7f97153098970..f704d1993bc3e 100644 --- a/clients/client-mwaa/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-mwaa/src/commands/DeleteEnvironmentCommand.ts @@ -62,6 +62,7 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentOutput, * @throws {@link MWAAServiceException} *

Base exception class for all service exceptions from MWAA service.

* + * * @public */ export class DeleteEnvironmentCommand extends $Command diff --git a/clients/client-mwaa/src/commands/GetEnvironmentCommand.ts b/clients/client-mwaa/src/commands/GetEnvironmentCommand.ts index 310db5aa7868b..03decb278ff93 100644 --- a/clients/client-mwaa/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-mwaa/src/commands/GetEnvironmentCommand.ts @@ -144,6 +144,7 @@ export interface GetEnvironmentCommandOutput extends GetEnvironmentOutput, __Met * @throws {@link MWAAServiceException} *

Base exception class for all service exceptions from MWAA service.

* + * * @public */ export class GetEnvironmentCommand extends $Command diff --git a/clients/client-mwaa/src/commands/InvokeRestApiCommand.ts b/clients/client-mwaa/src/commands/InvokeRestApiCommand.ts index 1f6d4fe2af353..5c8927e6feac1 100644 --- a/clients/client-mwaa/src/commands/InvokeRestApiCommand.ts +++ b/clients/client-mwaa/src/commands/InvokeRestApiCommand.ts @@ -87,35 +87,35 @@ export interface InvokeRestApiCommandOutput extends InvokeRestApiResponse, __Met * @throws {@link MWAAServiceException} *

Base exception class for all service exceptions from MWAA service.

* - * @public + * * @example Listing Airflow variables. * ```javascript * // * const input = { - * "Method": "GET", - * "Name": "MyEnvironment", - * "Path": "/variables" + * Method: "GET", + * Name: "MyEnvironment", + * Path: "/variables" * }; * const command = new InvokeRestApiCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RestApiResponse": { - * "total_entries": 1, - * "variables": [ + * RestApiResponse: { + * total_entries: 1, + * variables: [ * { - * "key": "test-variable", - * "value": "123", - * "description": "Example variable" + * description: "Example variable", + * key: "test-variable", + * value: "123" * } * ] * }, - * "RestApiStatusCode": 200 + * RestApiStatusCode: 200 * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class InvokeRestApiCommand extends $Command .classBuilder< diff --git a/clients/client-mwaa/src/commands/ListEnvironmentsCommand.ts b/clients/client-mwaa/src/commands/ListEnvironmentsCommand.ts index 92c0084860601..05cbc8fac9762 100644 --- a/clients/client-mwaa/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-mwaa/src/commands/ListEnvironmentsCommand.ts @@ -65,6 +65,7 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsOutput, _ * @throws {@link MWAAServiceException} *

Base exception class for all service exceptions from MWAA service.

* + * * @public */ export class ListEnvironmentsCommand extends $Command diff --git a/clients/client-mwaa/src/commands/ListTagsForResourceCommand.ts b/clients/client-mwaa/src/commands/ListTagsForResourceCommand.ts index fc3a73b15e718..a8686274d114a 100644 --- a/clients/client-mwaa/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mwaa/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link MWAAServiceException} *

Base exception class for all service exceptions from MWAA service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-mwaa/src/commands/PublishMetricsCommand.ts b/clients/client-mwaa/src/commands/PublishMetricsCommand.ts index c6c2bbbe52cde..4b7531ac8658f 100644 --- a/clients/client-mwaa/src/commands/PublishMetricsCommand.ts +++ b/clients/client-mwaa/src/commands/PublishMetricsCommand.ts @@ -82,6 +82,7 @@ export interface PublishMetricsCommandOutput extends PublishMetricsOutput, __Met * @throws {@link MWAAServiceException} *

Base exception class for all service exceptions from MWAA service.

* + * * @public */ export class PublishMetricsCommand extends $Command diff --git a/clients/client-mwaa/src/commands/TagResourceCommand.ts b/clients/client-mwaa/src/commands/TagResourceCommand.ts index c068e795c87b6..67f0a416c1174 100644 --- a/clients/client-mwaa/src/commands/TagResourceCommand.ts +++ b/clients/client-mwaa/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link MWAAServiceException} *

Base exception class for all service exceptions from MWAA service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-mwaa/src/commands/UntagResourceCommand.ts b/clients/client-mwaa/src/commands/UntagResourceCommand.ts index aab20dd286aa1..1051090607813 100644 --- a/clients/client-mwaa/src/commands/UntagResourceCommand.ts +++ b/clients/client-mwaa/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link MWAAServiceException} *

Base exception class for all service exceptions from MWAA service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-mwaa/src/commands/UpdateEnvironmentCommand.ts b/clients/client-mwaa/src/commands/UpdateEnvironmentCommand.ts index c5f0e7374ac8b..77739887e3388 100644 --- a/clients/client-mwaa/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-mwaa/src/commands/UpdateEnvironmentCommand.ts @@ -116,6 +116,7 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentOutput, * @throws {@link MWAAServiceException} *

Base exception class for all service exceptions from MWAA service.

* + * * @public */ export class UpdateEnvironmentCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/CancelExportTaskCommand.ts b/clients/client-neptune-graph/src/commands/CancelExportTaskCommand.ts index df32612b70f31..725eb2a9710b6 100644 --- a/clients/client-neptune-graph/src/commands/CancelExportTaskCommand.ts +++ b/clients/client-neptune-graph/src/commands/CancelExportTaskCommand.ts @@ -78,6 +78,7 @@ export interface CancelExportTaskCommandOutput extends CancelExportTaskOutput, _ * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class CancelExportTaskCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/CancelImportTaskCommand.ts b/clients/client-neptune-graph/src/commands/CancelImportTaskCommand.ts index 000290e5606ea..13faf3f846e1d 100644 --- a/clients/client-neptune-graph/src/commands/CancelImportTaskCommand.ts +++ b/clients/client-neptune-graph/src/commands/CancelImportTaskCommand.ts @@ -76,6 +76,7 @@ export interface CancelImportTaskCommandOutput extends CancelImportTaskOutput, _ * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class CancelImportTaskCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/CancelQueryCommand.ts b/clients/client-neptune-graph/src/commands/CancelQueryCommand.ts index 51c516fe4df87..4693cee166ad8 100644 --- a/clients/client-neptune-graph/src/commands/CancelQueryCommand.ts +++ b/clients/client-neptune-graph/src/commands/CancelQueryCommand.ts @@ -69,6 +69,7 @@ export interface CancelQueryCommandOutput extends __MetadataBearer {} * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class CancelQueryCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/CreateGraphCommand.ts b/clients/client-neptune-graph/src/commands/CreateGraphCommand.ts index 074f030f7db4c..0d66deb0cf835 100644 --- a/clients/client-neptune-graph/src/commands/CreateGraphCommand.ts +++ b/clients/client-neptune-graph/src/commands/CreateGraphCommand.ts @@ -97,6 +97,7 @@ export interface CreateGraphCommandOutput extends CreateGraphOutput, __MetadataB * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class CreateGraphCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/CreateGraphSnapshotCommand.ts b/clients/client-neptune-graph/src/commands/CreateGraphSnapshotCommand.ts index 188ff9f878019..cf569d0b7fbb9 100644 --- a/clients/client-neptune-graph/src/commands/CreateGraphSnapshotCommand.ts +++ b/clients/client-neptune-graph/src/commands/CreateGraphSnapshotCommand.ts @@ -83,6 +83,7 @@ export interface CreateGraphSnapshotCommandOutput extends CreateGraphSnapshotOut * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class CreateGraphSnapshotCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/CreateGraphUsingImportTaskCommand.ts b/clients/client-neptune-graph/src/commands/CreateGraphUsingImportTaskCommand.ts index ef5360b670cc9..e41b6bc8fba66 100644 --- a/clients/client-neptune-graph/src/commands/CreateGraphUsingImportTaskCommand.ts +++ b/clients/client-neptune-graph/src/commands/CreateGraphUsingImportTaskCommand.ts @@ -114,6 +114,7 @@ export interface CreateGraphUsingImportTaskCommandOutput extends CreateGraphUsin * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class CreateGraphUsingImportTaskCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/CreatePrivateGraphEndpointCommand.ts b/clients/client-neptune-graph/src/commands/CreatePrivateGraphEndpointCommand.ts index 526c7983e9658..500ff4112e6ae 100644 --- a/clients/client-neptune-graph/src/commands/CreatePrivateGraphEndpointCommand.ts +++ b/clients/client-neptune-graph/src/commands/CreatePrivateGraphEndpointCommand.ts @@ -89,6 +89,7 @@ export interface CreatePrivateGraphEndpointCommandOutput extends CreatePrivateGr * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class CreatePrivateGraphEndpointCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/DeleteGraphCommand.ts b/clients/client-neptune-graph/src/commands/DeleteGraphCommand.ts index a3b29c60c041e..61afb5c191636 100644 --- a/clients/client-neptune-graph/src/commands/DeleteGraphCommand.ts +++ b/clients/client-neptune-graph/src/commands/DeleteGraphCommand.ts @@ -87,6 +87,7 @@ export interface DeleteGraphCommandOutput extends DeleteGraphOutput, __MetadataB * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class DeleteGraphCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/DeleteGraphSnapshotCommand.ts b/clients/client-neptune-graph/src/commands/DeleteGraphSnapshotCommand.ts index b9c4afe50b5a5..b057f96f44f8e 100644 --- a/clients/client-neptune-graph/src/commands/DeleteGraphSnapshotCommand.ts +++ b/clients/client-neptune-graph/src/commands/DeleteGraphSnapshotCommand.ts @@ -76,6 +76,7 @@ export interface DeleteGraphSnapshotCommandOutput extends DeleteGraphSnapshotOut * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class DeleteGraphSnapshotCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/DeletePrivateGraphEndpointCommand.ts b/clients/client-neptune-graph/src/commands/DeletePrivateGraphEndpointCommand.ts index 80d43cab4bf23..c5338d4c2c1da 100644 --- a/clients/client-neptune-graph/src/commands/DeletePrivateGraphEndpointCommand.ts +++ b/clients/client-neptune-graph/src/commands/DeletePrivateGraphEndpointCommand.ts @@ -76,6 +76,7 @@ export interface DeletePrivateGraphEndpointCommandOutput extends DeletePrivateGr * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class DeletePrivateGraphEndpointCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/ExecuteQueryCommand.ts b/clients/client-neptune-graph/src/commands/ExecuteQueryCommand.ts index c616a886333a0..e74487a058ce6 100644 --- a/clients/client-neptune-graph/src/commands/ExecuteQueryCommand.ts +++ b/clients/client-neptune-graph/src/commands/ExecuteQueryCommand.ts @@ -65,6 +65,11 @@ export interface ExecuteQueryCommandOutput extends Omit", // see \@smithy/types -> StreamingBlobPayloadOutputTypes // required * // }; @@ -98,6 +103,7 @@ export interface ExecuteQueryCommandOutput extends OmitBase exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class ExecuteQueryCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/GetExportTaskCommand.ts b/clients/client-neptune-graph/src/commands/GetExportTaskCommand.ts index ac9363f1ad2e5..d794d10436d35 100644 --- a/clients/client-neptune-graph/src/commands/GetExportTaskCommand.ts +++ b/clients/client-neptune-graph/src/commands/GetExportTaskCommand.ts @@ -106,6 +106,7 @@ export interface GetExportTaskCommandOutput extends GetExportTaskOutput, __Metad * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class GetExportTaskCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/GetGraphCommand.ts b/clients/client-neptune-graph/src/commands/GetGraphCommand.ts index f1bd5fdaf0cad..9366e3d15c376 100644 --- a/clients/client-neptune-graph/src/commands/GetGraphCommand.ts +++ b/clients/client-neptune-graph/src/commands/GetGraphCommand.ts @@ -83,6 +83,7 @@ export interface GetGraphCommandOutput extends GetGraphOutput, __MetadataBearer * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class GetGraphCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/GetGraphSnapshotCommand.ts b/clients/client-neptune-graph/src/commands/GetGraphSnapshotCommand.ts index 65ecb61d1a1b0..260348539f67b 100644 --- a/clients/client-neptune-graph/src/commands/GetGraphSnapshotCommand.ts +++ b/clients/client-neptune-graph/src/commands/GetGraphSnapshotCommand.ts @@ -73,6 +73,7 @@ export interface GetGraphSnapshotCommandOutput extends GetGraphSnapshotOutput, _ * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class GetGraphSnapshotCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/GetGraphSummaryCommand.ts b/clients/client-neptune-graph/src/commands/GetGraphSummaryCommand.ts index b2e353a5af315..1e9ffed8c8b95 100644 --- a/clients/client-neptune-graph/src/commands/GetGraphSummaryCommand.ts +++ b/clients/client-neptune-graph/src/commands/GetGraphSummaryCommand.ts @@ -117,6 +117,7 @@ export interface GetGraphSummaryCommandOutput extends GetGraphSummaryOutput, __M * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class GetGraphSummaryCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/GetImportTaskCommand.ts b/clients/client-neptune-graph/src/commands/GetImportTaskCommand.ts index 883cdcb398a81..db11a94bd7185 100644 --- a/clients/client-neptune-graph/src/commands/GetImportTaskCommand.ts +++ b/clients/client-neptune-graph/src/commands/GetImportTaskCommand.ts @@ -93,6 +93,7 @@ export interface GetImportTaskCommandOutput extends GetImportTaskOutput, __Metad * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class GetImportTaskCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/GetPrivateGraphEndpointCommand.ts b/clients/client-neptune-graph/src/commands/GetPrivateGraphEndpointCommand.ts index dc28fb12a330a..d5d94f21c8110 100644 --- a/clients/client-neptune-graph/src/commands/GetPrivateGraphEndpointCommand.ts +++ b/clients/client-neptune-graph/src/commands/GetPrivateGraphEndpointCommand.ts @@ -73,6 +73,7 @@ export interface GetPrivateGraphEndpointCommandOutput extends GetPrivateGraphEnd * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class GetPrivateGraphEndpointCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/GetQueryCommand.ts b/clients/client-neptune-graph/src/commands/GetQueryCommand.ts index d433bdcefbf65..9f24d2086e091 100644 --- a/clients/client-neptune-graph/src/commands/GetQueryCommand.ts +++ b/clients/client-neptune-graph/src/commands/GetQueryCommand.ts @@ -81,6 +81,7 @@ export interface GetQueryCommandOutput extends GetQueryOutput, __MetadataBearer * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class GetQueryCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/ListExportTasksCommand.ts b/clients/client-neptune-graph/src/commands/ListExportTasksCommand.ts index b81d73931f3ee..87c5334d70351 100644 --- a/clients/client-neptune-graph/src/commands/ListExportTasksCommand.ts +++ b/clients/client-neptune-graph/src/commands/ListExportTasksCommand.ts @@ -82,6 +82,7 @@ export interface ListExportTasksCommandOutput extends ListExportTasksOutput, __M * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class ListExportTasksCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/ListGraphSnapshotsCommand.ts b/clients/client-neptune-graph/src/commands/ListGraphSnapshotsCommand.ts index 677e526c8d56f..e586f4f7da2c4 100644 --- a/clients/client-neptune-graph/src/commands/ListGraphSnapshotsCommand.ts +++ b/clients/client-neptune-graph/src/commands/ListGraphSnapshotsCommand.ts @@ -80,6 +80,7 @@ export interface ListGraphSnapshotsCommandOutput extends ListGraphSnapshotsOutpu * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class ListGraphSnapshotsCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/ListGraphsCommand.ts b/clients/client-neptune-graph/src/commands/ListGraphsCommand.ts index 13aa417010849..650e1e7237931 100644 --- a/clients/client-neptune-graph/src/commands/ListGraphsCommand.ts +++ b/clients/client-neptune-graph/src/commands/ListGraphsCommand.ts @@ -79,6 +79,7 @@ export interface ListGraphsCommandOutput extends ListGraphsOutput, __MetadataBea * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class ListGraphsCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/ListImportTasksCommand.ts b/clients/client-neptune-graph/src/commands/ListImportTasksCommand.ts index 447d45c75bc46..1992e83fd908d 100644 --- a/clients/client-neptune-graph/src/commands/ListImportTasksCommand.ts +++ b/clients/client-neptune-graph/src/commands/ListImportTasksCommand.ts @@ -79,6 +79,7 @@ export interface ListImportTasksCommandOutput extends ListImportTasksOutput, __M * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class ListImportTasksCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/ListPrivateGraphEndpointsCommand.ts b/clients/client-neptune-graph/src/commands/ListPrivateGraphEndpointsCommand.ts index 12d79bc6fbf1a..c963d6e051ab6 100644 --- a/clients/client-neptune-graph/src/commands/ListPrivateGraphEndpointsCommand.ts +++ b/clients/client-neptune-graph/src/commands/ListPrivateGraphEndpointsCommand.ts @@ -79,6 +79,7 @@ export interface ListPrivateGraphEndpointsCommandOutput extends ListPrivateGraph * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class ListPrivateGraphEndpointsCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/ListQueriesCommand.ts b/clients/client-neptune-graph/src/commands/ListQueriesCommand.ts index df639a6e5e55f..e4bd15ceaac4f 100644 --- a/clients/client-neptune-graph/src/commands/ListQueriesCommand.ts +++ b/clients/client-neptune-graph/src/commands/ListQueriesCommand.ts @@ -77,6 +77,7 @@ export interface ListQueriesCommandOutput extends ListQueriesOutput, __MetadataB * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class ListQueriesCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/ListTagsForResourceCommand.ts b/clients/client-neptune-graph/src/commands/ListTagsForResourceCommand.ts index 3eb689dc8859b..a0b620899413f 100644 --- a/clients/client-neptune-graph/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-neptune-graph/src/commands/ListTagsForResourceCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/ResetGraphCommand.ts b/clients/client-neptune-graph/src/commands/ResetGraphCommand.ts index 522ee35155948..769b60eb605aa 100644 --- a/clients/client-neptune-graph/src/commands/ResetGraphCommand.ts +++ b/clients/client-neptune-graph/src/commands/ResetGraphCommand.ts @@ -87,6 +87,7 @@ export interface ResetGraphCommandOutput extends ResetGraphOutput, __MetadataBea * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class ResetGraphCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/RestoreGraphFromSnapshotCommand.ts b/clients/client-neptune-graph/src/commands/RestoreGraphFromSnapshotCommand.ts index ef8c11076fd7b..984eab1c5f3a0 100644 --- a/clients/client-neptune-graph/src/commands/RestoreGraphFromSnapshotCommand.ts +++ b/clients/client-neptune-graph/src/commands/RestoreGraphFromSnapshotCommand.ts @@ -97,6 +97,7 @@ export interface RestoreGraphFromSnapshotCommandOutput extends RestoreGraphFromS * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class RestoreGraphFromSnapshotCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/StartExportTaskCommand.ts b/clients/client-neptune-graph/src/commands/StartExportTaskCommand.ts index 8e61751454dde..94865f6f58491 100644 --- a/clients/client-neptune-graph/src/commands/StartExportTaskCommand.ts +++ b/clients/client-neptune-graph/src/commands/StartExportTaskCommand.ts @@ -134,6 +134,7 @@ export interface StartExportTaskCommandOutput extends StartExportTaskOutput, __M * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class StartExportTaskCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/StartImportTaskCommand.ts b/clients/client-neptune-graph/src/commands/StartImportTaskCommand.ts index 7880fc4317d25..0945b7f40360b 100644 --- a/clients/client-neptune-graph/src/commands/StartImportTaskCommand.ts +++ b/clients/client-neptune-graph/src/commands/StartImportTaskCommand.ts @@ -98,6 +98,7 @@ export interface StartImportTaskCommandOutput extends StartImportTaskOutput, __M * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class StartImportTaskCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/TagResourceCommand.ts b/clients/client-neptune-graph/src/commands/TagResourceCommand.ts index 963c213563441..79284316750eb 100644 --- a/clients/client-neptune-graph/src/commands/TagResourceCommand.ts +++ b/clients/client-neptune-graph/src/commands/TagResourceCommand.ts @@ -68,6 +68,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/UntagResourceCommand.ts b/clients/client-neptune-graph/src/commands/UntagResourceCommand.ts index b8d348929362c..abc50a0fb9757 100644 --- a/clients/client-neptune-graph/src/commands/UntagResourceCommand.ts +++ b/clients/client-neptune-graph/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-neptune-graph/src/commands/UpdateGraphCommand.ts b/clients/client-neptune-graph/src/commands/UpdateGraphCommand.ts index 4d331dd6d2732..dc17a77806fe0 100644 --- a/clients/client-neptune-graph/src/commands/UpdateGraphCommand.ts +++ b/clients/client-neptune-graph/src/commands/UpdateGraphCommand.ts @@ -89,6 +89,7 @@ export interface UpdateGraphCommandOutput extends UpdateGraphOutput, __MetadataB * @throws {@link NeptuneGraphServiceException} *

Base exception class for all service exceptions from NeptuneGraph service.

* + * * @public */ export class UpdateGraphCommand extends $Command diff --git a/clients/client-neptune/src/commands/AddRoleToDBClusterCommand.ts b/clients/client-neptune/src/commands/AddRoleToDBClusterCommand.ts index f2afa35672d68..a763d056abefa 100644 --- a/clients/client-neptune/src/commands/AddRoleToDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/AddRoleToDBClusterCommand.ts @@ -69,6 +69,7 @@ export interface AddRoleToDBClusterCommandOutput extends __MetadataBearer {} * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class AddRoleToDBClusterCommand extends $Command diff --git a/clients/client-neptune/src/commands/AddSourceIdentifierToSubscriptionCommand.ts b/clients/client-neptune/src/commands/AddSourceIdentifierToSubscriptionCommand.ts index 1450b89c3861c..d2d88535cbf09 100644 --- a/clients/client-neptune/src/commands/AddSourceIdentifierToSubscriptionCommand.ts +++ b/clients/client-neptune/src/commands/AddSourceIdentifierToSubscriptionCommand.ts @@ -82,6 +82,7 @@ export interface AddSourceIdentifierToSubscriptionCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class AddSourceIdentifierToSubscriptionCommand extends $Command diff --git a/clients/client-neptune/src/commands/AddTagsToResourceCommand.ts b/clients/client-neptune/src/commands/AddTagsToResourceCommand.ts index 6c9611243bd7c..2f73aac117247 100644 --- a/clients/client-neptune/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-neptune/src/commands/AddTagsToResourceCommand.ts @@ -73,6 +73,7 @@ export interface AddTagsToResourceCommandOutput extends __MetadataBearer {} * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class AddTagsToResourceCommand extends $Command diff --git a/clients/client-neptune/src/commands/ApplyPendingMaintenanceActionCommand.ts b/clients/client-neptune/src/commands/ApplyPendingMaintenanceActionCommand.ts index dc1f39722cb20..feb8da4851b27 100644 --- a/clients/client-neptune/src/commands/ApplyPendingMaintenanceActionCommand.ts +++ b/clients/client-neptune/src/commands/ApplyPendingMaintenanceActionCommand.ts @@ -77,6 +77,7 @@ export interface ApplyPendingMaintenanceActionCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class ApplyPendingMaintenanceActionCommand extends $Command diff --git a/clients/client-neptune/src/commands/CopyDBClusterParameterGroupCommand.ts b/clients/client-neptune/src/commands/CopyDBClusterParameterGroupCommand.ts index 644b0d9ed10ac..316efee5b7b7b 100644 --- a/clients/client-neptune/src/commands/CopyDBClusterParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/CopyDBClusterParameterGroupCommand.ts @@ -79,6 +79,7 @@ export interface CopyDBClusterParameterGroupCommandOutput extends CopyDBClusterP * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class CopyDBClusterParameterGroupCommand extends $Command diff --git a/clients/client-neptune/src/commands/CopyDBClusterSnapshotCommand.ts b/clients/client-neptune/src/commands/CopyDBClusterSnapshotCommand.ts index a136a7571d348..b8dc334876f88 100644 --- a/clients/client-neptune/src/commands/CopyDBClusterSnapshotCommand.ts +++ b/clients/client-neptune/src/commands/CopyDBClusterSnapshotCommand.ts @@ -113,6 +113,7 @@ export interface CopyDBClusterSnapshotCommandOutput extends CopyDBClusterSnapsho * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class CopyDBClusterSnapshotCommand extends $Command diff --git a/clients/client-neptune/src/commands/CopyDBParameterGroupCommand.ts b/clients/client-neptune/src/commands/CopyDBParameterGroupCommand.ts index bcd451e5d6943..84c623f46a859 100644 --- a/clients/client-neptune/src/commands/CopyDBParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/CopyDBParameterGroupCommand.ts @@ -79,6 +79,7 @@ export interface CopyDBParameterGroupCommandOutput extends CopyDBParameterGroupR * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class CopyDBParameterGroupCommand extends $Command diff --git a/clients/client-neptune/src/commands/CreateDBClusterCommand.ts b/clients/client-neptune/src/commands/CreateDBClusterCommand.ts index 46996e2fa1deb..12b02f858e701 100644 --- a/clients/client-neptune/src/commands/CreateDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/CreateDBClusterCommand.ts @@ -259,6 +259,7 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class CreateDBClusterCommand extends $Command diff --git a/clients/client-neptune/src/commands/CreateDBClusterEndpointCommand.ts b/clients/client-neptune/src/commands/CreateDBClusterEndpointCommand.ts index 170364b6289a8..75dcefc529d2c 100644 --- a/clients/client-neptune/src/commands/CreateDBClusterEndpointCommand.ts +++ b/clients/client-neptune/src/commands/CreateDBClusterEndpointCommand.ts @@ -102,6 +102,7 @@ export interface CreateDBClusterEndpointCommandOutput extends CreateDBClusterEnd * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class CreateDBClusterEndpointCommand extends $Command diff --git a/clients/client-neptune/src/commands/CreateDBClusterParameterGroupCommand.ts b/clients/client-neptune/src/commands/CreateDBClusterParameterGroupCommand.ts index 6e553a1179100..1466d300b901b 100644 --- a/clients/client-neptune/src/commands/CreateDBClusterParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/CreateDBClusterParameterGroupCommand.ts @@ -103,6 +103,7 @@ export interface CreateDBClusterParameterGroupCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class CreateDBClusterParameterGroupCommand extends $Command diff --git a/clients/client-neptune/src/commands/CreateDBClusterSnapshotCommand.ts b/clients/client-neptune/src/commands/CreateDBClusterSnapshotCommand.ts index 53f3d71dc6bd1..fdd77a77e9bcf 100644 --- a/clients/client-neptune/src/commands/CreateDBClusterSnapshotCommand.ts +++ b/clients/client-neptune/src/commands/CreateDBClusterSnapshotCommand.ts @@ -102,6 +102,7 @@ export interface CreateDBClusterSnapshotCommandOutput extends CreateDBClusterSna * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class CreateDBClusterSnapshotCommand extends $Command diff --git a/clients/client-neptune/src/commands/CreateDBInstanceCommand.ts b/clients/client-neptune/src/commands/CreateDBInstanceCommand.ts index cd28f675b1eb7..6089b82cb8688 100644 --- a/clients/client-neptune/src/commands/CreateDBInstanceCommand.ts +++ b/clients/client-neptune/src/commands/CreateDBInstanceCommand.ts @@ -314,6 +314,7 @@ export interface CreateDBInstanceCommandOutput extends CreateDBInstanceResult, _ * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class CreateDBInstanceCommand extends $Command diff --git a/clients/client-neptune/src/commands/CreateDBParameterGroupCommand.ts b/clients/client-neptune/src/commands/CreateDBParameterGroupCommand.ts index acac64a2b22b3..934dd7adc4303 100644 --- a/clients/client-neptune/src/commands/CreateDBParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/CreateDBParameterGroupCommand.ts @@ -93,6 +93,7 @@ export interface CreateDBParameterGroupCommandOutput extends CreateDBParameterGr * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class CreateDBParameterGroupCommand extends $Command diff --git a/clients/client-neptune/src/commands/CreateDBSubnetGroupCommand.ts b/clients/client-neptune/src/commands/CreateDBSubnetGroupCommand.ts index 50e9357eb6d08..8f4f7638d290a 100644 --- a/clients/client-neptune/src/commands/CreateDBSubnetGroupCommand.ts +++ b/clients/client-neptune/src/commands/CreateDBSubnetGroupCommand.ts @@ -99,6 +99,7 @@ export interface CreateDBSubnetGroupCommandOutput extends CreateDBSubnetGroupRes * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class CreateDBSubnetGroupCommand extends $Command diff --git a/clients/client-neptune/src/commands/CreateEventSubscriptionCommand.ts b/clients/client-neptune/src/commands/CreateEventSubscriptionCommand.ts index c5588e7e9fce0..58f22ee4426ab 100644 --- a/clients/client-neptune/src/commands/CreateEventSubscriptionCommand.ts +++ b/clients/client-neptune/src/commands/CreateEventSubscriptionCommand.ts @@ -120,6 +120,7 @@ export interface CreateEventSubscriptionCommandOutput extends CreateEventSubscri * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class CreateEventSubscriptionCommand extends $Command diff --git a/clients/client-neptune/src/commands/CreateGlobalClusterCommand.ts b/clients/client-neptune/src/commands/CreateGlobalClusterCommand.ts index 1e69ec5ea93f2..47b3424153e37 100644 --- a/clients/client-neptune/src/commands/CreateGlobalClusterCommand.ts +++ b/clients/client-neptune/src/commands/CreateGlobalClusterCommand.ts @@ -99,6 +99,7 @@ export interface CreateGlobalClusterCommandOutput extends CreateGlobalClusterRes * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class CreateGlobalClusterCommand extends $Command diff --git a/clients/client-neptune/src/commands/DeleteDBClusterCommand.ts b/clients/client-neptune/src/commands/DeleteDBClusterCommand.ts index 2632ddccba5fe..f8865b9bba654 100644 --- a/clients/client-neptune/src/commands/DeleteDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/DeleteDBClusterCommand.ts @@ -172,6 +172,7 @@ export interface DeleteDBClusterCommandOutput extends DeleteDBClusterResult, __M * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DeleteDBClusterCommand extends $Command diff --git a/clients/client-neptune/src/commands/DeleteDBClusterEndpointCommand.ts b/clients/client-neptune/src/commands/DeleteDBClusterEndpointCommand.ts index d33d2c1f3132a..072ce1ef23809 100644 --- a/clients/client-neptune/src/commands/DeleteDBClusterEndpointCommand.ts +++ b/clients/client-neptune/src/commands/DeleteDBClusterEndpointCommand.ts @@ -77,6 +77,7 @@ export interface DeleteDBClusterEndpointCommandOutput extends DeleteDBClusterEnd * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DeleteDBClusterEndpointCommand extends $Command diff --git a/clients/client-neptune/src/commands/DeleteDBClusterParameterGroupCommand.ts b/clients/client-neptune/src/commands/DeleteDBClusterParameterGroupCommand.ts index 7507681dfee8d..ad07bc950bf41 100644 --- a/clients/client-neptune/src/commands/DeleteDBClusterParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/DeleteDBClusterParameterGroupCommand.ts @@ -66,6 +66,7 @@ export interface DeleteDBClusterParameterGroupCommandOutput extends __MetadataBe * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DeleteDBClusterParameterGroupCommand extends $Command diff --git a/clients/client-neptune/src/commands/DeleteDBClusterSnapshotCommand.ts b/clients/client-neptune/src/commands/DeleteDBClusterSnapshotCommand.ts index 5a67a31298408..223cbb8b353d0 100644 --- a/clients/client-neptune/src/commands/DeleteDBClusterSnapshotCommand.ts +++ b/clients/client-neptune/src/commands/DeleteDBClusterSnapshotCommand.ts @@ -92,6 +92,7 @@ export interface DeleteDBClusterSnapshotCommandOutput extends DeleteDBClusterSna * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DeleteDBClusterSnapshotCommand extends $Command diff --git a/clients/client-neptune/src/commands/DeleteDBInstanceCommand.ts b/clients/client-neptune/src/commands/DeleteDBInstanceCommand.ts index 96fa3d93a8faf..1b03a6ca598f2 100644 --- a/clients/client-neptune/src/commands/DeleteDBInstanceCommand.ts +++ b/clients/client-neptune/src/commands/DeleteDBInstanceCommand.ts @@ -222,6 +222,7 @@ export interface DeleteDBInstanceCommandOutput extends DeleteDBInstanceResult, _ * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DeleteDBInstanceCommand extends $Command diff --git a/clients/client-neptune/src/commands/DeleteDBParameterGroupCommand.ts b/clients/client-neptune/src/commands/DeleteDBParameterGroupCommand.ts index b20c7171afc5c..2b103ff70099d 100644 --- a/clients/client-neptune/src/commands/DeleteDBParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/DeleteDBParameterGroupCommand.ts @@ -63,6 +63,7 @@ export interface DeleteDBParameterGroupCommandOutput extends __MetadataBearer {} * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DeleteDBParameterGroupCommand extends $Command diff --git a/clients/client-neptune/src/commands/DeleteDBSubnetGroupCommand.ts b/clients/client-neptune/src/commands/DeleteDBSubnetGroupCommand.ts index 7df5cf9ecfda0..bcdc207f61a24 100644 --- a/clients/client-neptune/src/commands/DeleteDBSubnetGroupCommand.ts +++ b/clients/client-neptune/src/commands/DeleteDBSubnetGroupCommand.ts @@ -67,6 +67,7 @@ export interface DeleteDBSubnetGroupCommandOutput extends __MetadataBearer {} * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DeleteDBSubnetGroupCommand extends $Command diff --git a/clients/client-neptune/src/commands/DeleteEventSubscriptionCommand.ts b/clients/client-neptune/src/commands/DeleteEventSubscriptionCommand.ts index d3595968f4e34..62005b1d93348 100644 --- a/clients/client-neptune/src/commands/DeleteEventSubscriptionCommand.ts +++ b/clients/client-neptune/src/commands/DeleteEventSubscriptionCommand.ts @@ -76,6 +76,7 @@ export interface DeleteEventSubscriptionCommandOutput extends DeleteEventSubscri * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DeleteEventSubscriptionCommand extends $Command diff --git a/clients/client-neptune/src/commands/DeleteGlobalClusterCommand.ts b/clients/client-neptune/src/commands/DeleteGlobalClusterCommand.ts index f9728eac4cd1d..21ab270c09926 100644 --- a/clients/client-neptune/src/commands/DeleteGlobalClusterCommand.ts +++ b/clients/client-neptune/src/commands/DeleteGlobalClusterCommand.ts @@ -80,6 +80,7 @@ export interface DeleteGlobalClusterCommandOutput extends DeleteGlobalClusterRes * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DeleteGlobalClusterCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeDBClusterEndpointsCommand.ts b/clients/client-neptune/src/commands/DescribeDBClusterEndpointsCommand.ts index c37df7929fa66..4387f9cf8badb 100644 --- a/clients/client-neptune/src/commands/DescribeDBClusterEndpointsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBClusterEndpointsCommand.ts @@ -92,6 +92,7 @@ export interface DescribeDBClusterEndpointsCommandOutput extends DBClusterEndpoi * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeDBClusterEndpointsCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeDBClusterParameterGroupsCommand.ts b/clients/client-neptune/src/commands/DescribeDBClusterParameterGroupsCommand.ts index 0c00eb9d587e5..4d6ef11fae237 100644 --- a/clients/client-neptune/src/commands/DescribeDBClusterParameterGroupsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBClusterParameterGroupsCommand.ts @@ -85,6 +85,7 @@ export interface DescribeDBClusterParameterGroupsCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeDBClusterParameterGroupsCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeDBClusterParametersCommand.ts b/clients/client-neptune/src/commands/DescribeDBClusterParametersCommand.ts index 4e113127cdfbb..748b33fc9b748 100644 --- a/clients/client-neptune/src/commands/DescribeDBClusterParametersCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBClusterParametersCommand.ts @@ -85,6 +85,7 @@ export interface DescribeDBClusterParametersCommandOutput extends DBClusterParam * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeDBClusterParametersCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts b/clients/client-neptune/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts index 098c840124a2f..3d063d4fb6431 100644 --- a/clients/client-neptune/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts @@ -87,6 +87,7 @@ export interface DescribeDBClusterSnapshotAttributesCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeDBClusterSnapshotAttributesCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeDBClusterSnapshotsCommand.ts b/clients/client-neptune/src/commands/DescribeDBClusterSnapshotsCommand.ts index 1b62eb158a05f..5132a9176f7f7 100644 --- a/clients/client-neptune/src/commands/DescribeDBClusterSnapshotsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBClusterSnapshotsCommand.ts @@ -102,6 +102,7 @@ export interface DescribeDBClusterSnapshotsCommandOutput extends DBClusterSnapsh * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeDBClusterSnapshotsCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeDBClustersCommand.ts b/clients/client-neptune/src/commands/DescribeDBClustersCommand.ts index 7f0bcc440b102..61360a8c217e3 100644 --- a/clients/client-neptune/src/commands/DescribeDBClustersCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBClustersCommand.ts @@ -171,6 +171,7 @@ export interface DescribeDBClustersCommandOutput extends DBClusterMessage, __Met * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeDBClustersCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeDBEngineVersionsCommand.ts b/clients/client-neptune/src/commands/DescribeDBEngineVersionsCommand.ts index 650bdac2ed61e..4baf4a1e83bc8 100644 --- a/clients/client-neptune/src/commands/DescribeDBEngineVersionsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBEngineVersionsCommand.ts @@ -110,6 +110,7 @@ export interface DescribeDBEngineVersionsCommandOutput extends DBEngineVersionMe * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeDBEngineVersionsCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeDBInstancesCommand.ts b/clients/client-neptune/src/commands/DescribeDBInstancesCommand.ts index 43975fc2f5404..3f9bc936d692c 100644 --- a/clients/client-neptune/src/commands/DescribeDBInstancesCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBInstancesCommand.ts @@ -211,6 +211,7 @@ export interface DescribeDBInstancesCommandOutput extends DBInstanceMessage, __M * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeDBInstancesCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeDBParameterGroupsCommand.ts b/clients/client-neptune/src/commands/DescribeDBParameterGroupsCommand.ts index 0b8856e6e94da..bceb0e1ed90d1 100644 --- a/clients/client-neptune/src/commands/DescribeDBParameterGroupsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBParameterGroupsCommand.ts @@ -80,6 +80,7 @@ export interface DescribeDBParameterGroupsCommandOutput extends DBParameterGroup * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeDBParameterGroupsCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeDBParametersCommand.ts b/clients/client-neptune/src/commands/DescribeDBParametersCommand.ts index f931bafbcea8d..92acc661cb970 100644 --- a/clients/client-neptune/src/commands/DescribeDBParametersCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBParametersCommand.ts @@ -85,6 +85,7 @@ export interface DescribeDBParametersCommandOutput extends DBParameterGroupDetai * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeDBParametersCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeDBSubnetGroupsCommand.ts b/clients/client-neptune/src/commands/DescribeDBSubnetGroupsCommand.ts index c94b610a6ad89..c7a7f87907c73 100644 --- a/clients/client-neptune/src/commands/DescribeDBSubnetGroupsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBSubnetGroupsCommand.ts @@ -90,6 +90,7 @@ export interface DescribeDBSubnetGroupsCommandOutput extends DBSubnetGroupMessag * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeDBSubnetGroupsCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeEngineDefaultClusterParametersCommand.ts b/clients/client-neptune/src/commands/DescribeEngineDefaultClusterParametersCommand.ts index e418f80943bc0..d163be99fe4a4 100644 --- a/clients/client-neptune/src/commands/DescribeEngineDefaultClusterParametersCommand.ts +++ b/clients/client-neptune/src/commands/DescribeEngineDefaultClusterParametersCommand.ts @@ -92,6 +92,7 @@ export interface DescribeEngineDefaultClusterParametersCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeEngineDefaultClusterParametersCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeEngineDefaultParametersCommand.ts b/clients/client-neptune/src/commands/DescribeEngineDefaultParametersCommand.ts index 196c41125d0eb..5783b046e52ff 100644 --- a/clients/client-neptune/src/commands/DescribeEngineDefaultParametersCommand.ts +++ b/clients/client-neptune/src/commands/DescribeEngineDefaultParametersCommand.ts @@ -88,6 +88,7 @@ export interface DescribeEngineDefaultParametersCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeEngineDefaultParametersCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeEventCategoriesCommand.ts b/clients/client-neptune/src/commands/DescribeEventCategoriesCommand.ts index 6356890e7665f..b3c40fc4f67f5 100644 --- a/clients/client-neptune/src/commands/DescribeEventCategoriesCommand.ts +++ b/clients/client-neptune/src/commands/DescribeEventCategoriesCommand.ts @@ -71,6 +71,7 @@ export interface DescribeEventCategoriesCommandOutput extends EventCategoriesMes * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeEventCategoriesCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeEventSubscriptionsCommand.ts b/clients/client-neptune/src/commands/DescribeEventSubscriptionsCommand.ts index 7058a512e197a..92c2f5e245837 100644 --- a/clients/client-neptune/src/commands/DescribeEventSubscriptionsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeEventSubscriptionsCommand.ts @@ -89,6 +89,7 @@ export interface DescribeEventSubscriptionsCommandOutput extends EventSubscripti * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeEventSubscriptionsCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeEventsCommand.ts b/clients/client-neptune/src/commands/DescribeEventsCommand.ts index 13968f97bc672..eb0de2ea7cf87 100644 --- a/clients/client-neptune/src/commands/DescribeEventsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeEventsCommand.ts @@ -87,6 +87,7 @@ export interface DescribeEventsCommandOutput extends EventsMessage, __MetadataBe * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeEventsCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeGlobalClustersCommand.ts b/clients/client-neptune/src/commands/DescribeGlobalClustersCommand.ts index e448f81bf5817..c58cb8fc30270 100644 --- a/clients/client-neptune/src/commands/DescribeGlobalClustersCommand.ts +++ b/clients/client-neptune/src/commands/DescribeGlobalClustersCommand.ts @@ -82,6 +82,7 @@ export interface DescribeGlobalClustersCommandOutput extends GlobalClustersMessa * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeGlobalClustersCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts b/clients/client-neptune/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts index c267947d59f12..188d0211ead16 100644 --- a/clients/client-neptune/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts @@ -103,6 +103,7 @@ export interface DescribeOrderableDBInstanceOptionsCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeOrderableDBInstanceOptionsCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribePendingMaintenanceActionsCommand.ts b/clients/client-neptune/src/commands/DescribePendingMaintenanceActionsCommand.ts index 15e7388f87479..320f41b4147ce 100644 --- a/clients/client-neptune/src/commands/DescribePendingMaintenanceActionsCommand.ts +++ b/clients/client-neptune/src/commands/DescribePendingMaintenanceActionsCommand.ts @@ -89,6 +89,7 @@ export interface DescribePendingMaintenanceActionsCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribePendingMaintenanceActionsCommand extends $Command diff --git a/clients/client-neptune/src/commands/DescribeValidDBInstanceModificationsCommand.ts b/clients/client-neptune/src/commands/DescribeValidDBInstanceModificationsCommand.ts index c30a77498e346..b7bcccb71c69b 100644 --- a/clients/client-neptune/src/commands/DescribeValidDBInstanceModificationsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeValidDBInstanceModificationsCommand.ts @@ -98,6 +98,7 @@ export interface DescribeValidDBInstanceModificationsCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class DescribeValidDBInstanceModificationsCommand extends $Command diff --git a/clients/client-neptune/src/commands/FailoverDBClusterCommand.ts b/clients/client-neptune/src/commands/FailoverDBClusterCommand.ts index f36802254c0fa..8a6e0af2f3aa3 100644 --- a/clients/client-neptune/src/commands/FailoverDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/FailoverDBClusterCommand.ts @@ -167,6 +167,7 @@ export interface FailoverDBClusterCommandOutput extends FailoverDBClusterResult, * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class FailoverDBClusterCommand extends $Command diff --git a/clients/client-neptune/src/commands/FailoverGlobalClusterCommand.ts b/clients/client-neptune/src/commands/FailoverGlobalClusterCommand.ts index 96c22f7b94b03..65a56f11d6eec 100644 --- a/clients/client-neptune/src/commands/FailoverGlobalClusterCommand.ts +++ b/clients/client-neptune/src/commands/FailoverGlobalClusterCommand.ts @@ -100,6 +100,7 @@ export interface FailoverGlobalClusterCommandOutput extends FailoverGlobalCluste * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class FailoverGlobalClusterCommand extends $Command diff --git a/clients/client-neptune/src/commands/ListTagsForResourceCommand.ts b/clients/client-neptune/src/commands/ListTagsForResourceCommand.ts index e4a67b09235f6..2d5b9e6b65782 100644 --- a/clients/client-neptune/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-neptune/src/commands/ListTagsForResourceCommand.ts @@ -80,6 +80,7 @@ export interface ListTagsForResourceCommandOutput extends TagListMessage, __Meta * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-neptune/src/commands/ModifyDBClusterCommand.ts b/clients/client-neptune/src/commands/ModifyDBClusterCommand.ts index 64f3e330bbffa..4166a9a005748 100644 --- a/clients/client-neptune/src/commands/ModifyDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/ModifyDBClusterCommand.ts @@ -225,6 +225,7 @@ export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __M * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class ModifyDBClusterCommand extends $Command diff --git a/clients/client-neptune/src/commands/ModifyDBClusterEndpointCommand.ts b/clients/client-neptune/src/commands/ModifyDBClusterEndpointCommand.ts index cd730f5181d8e..7cd67c56b257f 100644 --- a/clients/client-neptune/src/commands/ModifyDBClusterEndpointCommand.ts +++ b/clients/client-neptune/src/commands/ModifyDBClusterEndpointCommand.ts @@ -91,6 +91,7 @@ export interface ModifyDBClusterEndpointCommandOutput extends ModifyDBClusterEnd * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class ModifyDBClusterEndpointCommand extends $Command diff --git a/clients/client-neptune/src/commands/ModifyDBClusterParameterGroupCommand.ts b/clients/client-neptune/src/commands/ModifyDBClusterParameterGroupCommand.ts index 9511203510f09..d36c0533cf86e 100644 --- a/clients/client-neptune/src/commands/ModifyDBClusterParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/ModifyDBClusterParameterGroupCommand.ts @@ -102,6 +102,7 @@ export interface ModifyDBClusterParameterGroupCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class ModifyDBClusterParameterGroupCommand extends $Command diff --git a/clients/client-neptune/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts b/clients/client-neptune/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts index 719e76806079c..522afacd6e240 100644 --- a/clients/client-neptune/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts +++ b/clients/client-neptune/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts @@ -101,6 +101,7 @@ export interface ModifyDBClusterSnapshotAttributeCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class ModifyDBClusterSnapshotAttributeCommand extends $Command diff --git a/clients/client-neptune/src/commands/ModifyDBInstanceCommand.ts b/clients/client-neptune/src/commands/ModifyDBInstanceCommand.ts index 27be2affaf902..1cac88ec822c7 100644 --- a/clients/client-neptune/src/commands/ModifyDBInstanceCommand.ts +++ b/clients/client-neptune/src/commands/ModifyDBInstanceCommand.ts @@ -301,6 +301,7 @@ export interface ModifyDBInstanceCommandOutput extends ModifyDBInstanceResult, _ * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class ModifyDBInstanceCommand extends $Command diff --git a/clients/client-neptune/src/commands/ModifyDBParameterGroupCommand.ts b/clients/client-neptune/src/commands/ModifyDBParameterGroupCommand.ts index 7123d4dd8d5ca..b4864b7b217d5 100644 --- a/clients/client-neptune/src/commands/ModifyDBParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/ModifyDBParameterGroupCommand.ts @@ -97,6 +97,7 @@ export interface ModifyDBParameterGroupCommandOutput extends DBParameterGroupNam * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class ModifyDBParameterGroupCommand extends $Command diff --git a/clients/client-neptune/src/commands/ModifyDBSubnetGroupCommand.ts b/clients/client-neptune/src/commands/ModifyDBSubnetGroupCommand.ts index 2e50d1e26b23f..34b46f37be459 100644 --- a/clients/client-neptune/src/commands/ModifyDBSubnetGroupCommand.ts +++ b/clients/client-neptune/src/commands/ModifyDBSubnetGroupCommand.ts @@ -94,6 +94,7 @@ export interface ModifyDBSubnetGroupCommandOutput extends ModifyDBSubnetGroupRes * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class ModifyDBSubnetGroupCommand extends $Command diff --git a/clients/client-neptune/src/commands/ModifyEventSubscriptionCommand.ts b/clients/client-neptune/src/commands/ModifyEventSubscriptionCommand.ts index 9764caf735864..42815856a38e8 100644 --- a/clients/client-neptune/src/commands/ModifyEventSubscriptionCommand.ts +++ b/clients/client-neptune/src/commands/ModifyEventSubscriptionCommand.ts @@ -98,6 +98,7 @@ export interface ModifyEventSubscriptionCommandOutput extends ModifyEventSubscri * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class ModifyEventSubscriptionCommand extends $Command diff --git a/clients/client-neptune/src/commands/ModifyGlobalClusterCommand.ts b/clients/client-neptune/src/commands/ModifyGlobalClusterCommand.ts index 62acd6d7fb4e0..f0269a0d0f7ec 100644 --- a/clients/client-neptune/src/commands/ModifyGlobalClusterCommand.ts +++ b/clients/client-neptune/src/commands/ModifyGlobalClusterCommand.ts @@ -85,6 +85,7 @@ export interface ModifyGlobalClusterCommandOutput extends ModifyGlobalClusterRes * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class ModifyGlobalClusterCommand extends $Command diff --git a/clients/client-neptune/src/commands/PromoteReadReplicaDBClusterCommand.ts b/clients/client-neptune/src/commands/PromoteReadReplicaDBClusterCommand.ts index a927f9bc3edef..fa6718ad17444 100644 --- a/clients/client-neptune/src/commands/PromoteReadReplicaDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/PromoteReadReplicaDBClusterCommand.ts @@ -156,6 +156,7 @@ export interface PromoteReadReplicaDBClusterCommandOutput extends PromoteReadRep * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class PromoteReadReplicaDBClusterCommand extends $Command diff --git a/clients/client-neptune/src/commands/RebootDBInstanceCommand.ts b/clients/client-neptune/src/commands/RebootDBInstanceCommand.ts index 4d886fe239560..35199501227f8 100644 --- a/clients/client-neptune/src/commands/RebootDBInstanceCommand.ts +++ b/clients/client-neptune/src/commands/RebootDBInstanceCommand.ts @@ -202,6 +202,7 @@ export interface RebootDBInstanceCommandOutput extends RebootDBInstanceResult, _ * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class RebootDBInstanceCommand extends $Command diff --git a/clients/client-neptune/src/commands/RemoveFromGlobalClusterCommand.ts b/clients/client-neptune/src/commands/RemoveFromGlobalClusterCommand.ts index 2a845687a5a9e..b695c93718bd5 100644 --- a/clients/client-neptune/src/commands/RemoveFromGlobalClusterCommand.ts +++ b/clients/client-neptune/src/commands/RemoveFromGlobalClusterCommand.ts @@ -87,6 +87,7 @@ export interface RemoveFromGlobalClusterCommandOutput extends RemoveFromGlobalCl * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class RemoveFromGlobalClusterCommand extends $Command diff --git a/clients/client-neptune/src/commands/RemoveRoleFromDBClusterCommand.ts b/clients/client-neptune/src/commands/RemoveRoleFromDBClusterCommand.ts index 4a6cebfcc76d2..5f0070efccb36 100644 --- a/clients/client-neptune/src/commands/RemoveRoleFromDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/RemoveRoleFromDBClusterCommand.ts @@ -65,6 +65,7 @@ export interface RemoveRoleFromDBClusterCommandOutput extends __MetadataBearer { * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class RemoveRoleFromDBClusterCommand extends $Command diff --git a/clients/client-neptune/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts b/clients/client-neptune/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts index 6435a021835b3..1d2ce1b90b4c9 100644 --- a/clients/client-neptune/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts +++ b/clients/client-neptune/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts @@ -86,6 +86,7 @@ export interface RemoveSourceIdentifierFromSubscriptionCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class RemoveSourceIdentifierFromSubscriptionCommand extends $Command diff --git a/clients/client-neptune/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-neptune/src/commands/RemoveTagsFromResourceCommand.ts index 34eb4e01155bc..b7b2b98cb05e8 100644 --- a/clients/client-neptune/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-neptune/src/commands/RemoveTagsFromResourceCommand.ts @@ -68,6 +68,7 @@ export interface RemoveTagsFromResourceCommandOutput extends __MetadataBearer {} * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class RemoveTagsFromResourceCommand extends $Command diff --git a/clients/client-neptune/src/commands/ResetDBClusterParameterGroupCommand.ts b/clients/client-neptune/src/commands/ResetDBClusterParameterGroupCommand.ts index c0ade90d9b048..553907dcadb83 100644 --- a/clients/client-neptune/src/commands/ResetDBClusterParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/ResetDBClusterParameterGroupCommand.ts @@ -88,6 +88,7 @@ export interface ResetDBClusterParameterGroupCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class ResetDBClusterParameterGroupCommand extends $Command diff --git a/clients/client-neptune/src/commands/ResetDBParameterGroupCommand.ts b/clients/client-neptune/src/commands/ResetDBParameterGroupCommand.ts index 586e6504fa107..9401a5471021c 100644 --- a/clients/client-neptune/src/commands/ResetDBParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/ResetDBParameterGroupCommand.ts @@ -85,6 +85,7 @@ export interface ResetDBParameterGroupCommandOutput extends DBParameterGroupName * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class ResetDBParameterGroupCommand extends $Command diff --git a/clients/client-neptune/src/commands/RestoreDBClusterFromSnapshotCommand.ts b/clients/client-neptune/src/commands/RestoreDBClusterFromSnapshotCommand.ts index 42cba352a76cd..4277c53177374 100644 --- a/clients/client-neptune/src/commands/RestoreDBClusterFromSnapshotCommand.ts +++ b/clients/client-neptune/src/commands/RestoreDBClusterFromSnapshotCommand.ts @@ -247,6 +247,7 @@ export interface RestoreDBClusterFromSnapshotCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class RestoreDBClusterFromSnapshotCommand extends $Command diff --git a/clients/client-neptune/src/commands/RestoreDBClusterToPointInTimeCommand.ts b/clients/client-neptune/src/commands/RestoreDBClusterToPointInTimeCommand.ts index e3ba730b18357..b703dd761e33a 100644 --- a/clients/client-neptune/src/commands/RestoreDBClusterToPointInTimeCommand.ts +++ b/clients/client-neptune/src/commands/RestoreDBClusterToPointInTimeCommand.ts @@ -256,6 +256,7 @@ export interface RestoreDBClusterToPointInTimeCommandOutput * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class RestoreDBClusterToPointInTimeCommand extends $Command diff --git a/clients/client-neptune/src/commands/StartDBClusterCommand.ts b/clients/client-neptune/src/commands/StartDBClusterCommand.ts index acd4474149fb2..dace0e60e1bc4 100644 --- a/clients/client-neptune/src/commands/StartDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/StartDBClusterCommand.ts @@ -160,6 +160,7 @@ export interface StartDBClusterCommandOutput extends StartDBClusterResult, __Met * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class StartDBClusterCommand extends $Command diff --git a/clients/client-neptune/src/commands/StopDBClusterCommand.ts b/clients/client-neptune/src/commands/StopDBClusterCommand.ts index 07328d6b91d58..cc45d0d9ce7a2 100644 --- a/clients/client-neptune/src/commands/StopDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/StopDBClusterCommand.ts @@ -163,6 +163,7 @@ export interface StopDBClusterCommandOutput extends StopDBClusterResult, __Metad * @throws {@link NeptuneServiceException} *

Base exception class for all service exceptions from Neptune service.

* + * * @public */ export class StopDBClusterCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/CancelGremlinQueryCommand.ts b/clients/client-neptunedata/src/commands/CancelGremlinQueryCommand.ts index 720eaa6b862d9..5a3d3ec409f50 100644 --- a/clients/client-neptunedata/src/commands/CancelGremlinQueryCommand.ts +++ b/clients/client-neptunedata/src/commands/CancelGremlinQueryCommand.ts @@ -103,6 +103,7 @@ export interface CancelGremlinQueryCommandOutput extends CancelGremlinQueryOutpu * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class CancelGremlinQueryCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/CancelLoaderJobCommand.ts b/clients/client-neptunedata/src/commands/CancelLoaderJobCommand.ts index e6987c9a81e2b..af766df3a85cc 100644 --- a/clients/client-neptunedata/src/commands/CancelLoaderJobCommand.ts +++ b/clients/client-neptunedata/src/commands/CancelLoaderJobCommand.ts @@ -100,6 +100,7 @@ export interface CancelLoaderJobCommandOutput extends CancelLoaderJobOutput, __M * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class CancelLoaderJobCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/CancelMLDataProcessingJobCommand.ts b/clients/client-neptunedata/src/commands/CancelMLDataProcessingJobCommand.ts index a59fac98e13f7..bccdf374a1308 100644 --- a/clients/client-neptunedata/src/commands/CancelMLDataProcessingJobCommand.ts +++ b/clients/client-neptunedata/src/commands/CancelMLDataProcessingJobCommand.ts @@ -95,6 +95,7 @@ export interface CancelMLDataProcessingJobCommandOutput extends CancelMLDataProc * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class CancelMLDataProcessingJobCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/CancelMLModelTrainingJobCommand.ts b/clients/client-neptunedata/src/commands/CancelMLModelTrainingJobCommand.ts index f68aede061364..5ac937dd90a46 100644 --- a/clients/client-neptunedata/src/commands/CancelMLModelTrainingJobCommand.ts +++ b/clients/client-neptunedata/src/commands/CancelMLModelTrainingJobCommand.ts @@ -95,6 +95,7 @@ export interface CancelMLModelTrainingJobCommandOutput extends CancelMLModelTrai * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class CancelMLModelTrainingJobCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/CancelMLModelTransformJobCommand.ts b/clients/client-neptunedata/src/commands/CancelMLModelTransformJobCommand.ts index fee02e5eeab51..3216cc24ae651 100644 --- a/clients/client-neptunedata/src/commands/CancelMLModelTransformJobCommand.ts +++ b/clients/client-neptunedata/src/commands/CancelMLModelTransformJobCommand.ts @@ -95,6 +95,7 @@ export interface CancelMLModelTransformJobCommandOutput extends CancelMLModelTra * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class CancelMLModelTransformJobCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/CancelOpenCypherQueryCommand.ts b/clients/client-neptunedata/src/commands/CancelOpenCypherQueryCommand.ts index 21e01ace9cd4f..e7b30751a9b52 100644 --- a/clients/client-neptunedata/src/commands/CancelOpenCypherQueryCommand.ts +++ b/clients/client-neptunedata/src/commands/CancelOpenCypherQueryCommand.ts @@ -108,6 +108,7 @@ export interface CancelOpenCypherQueryCommandOutput extends CancelOpenCypherQuer * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class CancelOpenCypherQueryCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/CreateMLEndpointCommand.ts b/clients/client-neptunedata/src/commands/CreateMLEndpointCommand.ts index 74d4107d1bd08..a579c81cbc34c 100644 --- a/clients/client-neptunedata/src/commands/CreateMLEndpointCommand.ts +++ b/clients/client-neptunedata/src/commands/CreateMLEndpointCommand.ts @@ -105,6 +105,7 @@ export interface CreateMLEndpointCommandOutput extends CreateMLEndpointOutput, _ * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class CreateMLEndpointCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/DeleteMLEndpointCommand.ts b/clients/client-neptunedata/src/commands/DeleteMLEndpointCommand.ts index e33f677e7c62a..9c9e9f75e790f 100644 --- a/clients/client-neptunedata/src/commands/DeleteMLEndpointCommand.ts +++ b/clients/client-neptunedata/src/commands/DeleteMLEndpointCommand.ts @@ -96,6 +96,7 @@ export interface DeleteMLEndpointCommandOutput extends DeleteMLEndpointOutput, _ * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class DeleteMLEndpointCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/DeletePropertygraphStatisticsCommand.ts b/clients/client-neptunedata/src/commands/DeletePropertygraphStatisticsCommand.ts index f3c57d70d5666..ba583a877dc85 100644 --- a/clients/client-neptunedata/src/commands/DeletePropertygraphStatisticsCommand.ts +++ b/clients/client-neptunedata/src/commands/DeletePropertygraphStatisticsCommand.ts @@ -107,6 +107,7 @@ export interface DeletePropertygraphStatisticsCommandOutput * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class DeletePropertygraphStatisticsCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/DeleteSparqlStatisticsCommand.ts b/clients/client-neptunedata/src/commands/DeleteSparqlStatisticsCommand.ts index 448d850e23944..ff78427524ef7 100644 --- a/clients/client-neptunedata/src/commands/DeleteSparqlStatisticsCommand.ts +++ b/clients/client-neptunedata/src/commands/DeleteSparqlStatisticsCommand.ts @@ -101,6 +101,7 @@ export interface DeleteSparqlStatisticsCommandOutput extends DeleteSparqlStatist * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class DeleteSparqlStatisticsCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ExecuteFastResetCommand.ts b/clients/client-neptunedata/src/commands/ExecuteFastResetCommand.ts index 09aecd8a6d28f..5c1d878e3eb4e 100644 --- a/clients/client-neptunedata/src/commands/ExecuteFastResetCommand.ts +++ b/clients/client-neptunedata/src/commands/ExecuteFastResetCommand.ts @@ -109,6 +109,7 @@ export interface ExecuteFastResetCommandOutput extends ExecuteFastResetOutput, _ * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ExecuteFastResetCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ExecuteGremlinExplainQueryCommand.ts b/clients/client-neptunedata/src/commands/ExecuteGremlinExplainQueryCommand.ts index 2263c09abc072..f5f2d5f3c25af 100644 --- a/clients/client-neptunedata/src/commands/ExecuteGremlinExplainQueryCommand.ts +++ b/clients/client-neptunedata/src/commands/ExecuteGremlinExplainQueryCommand.ts @@ -165,6 +165,7 @@ export interface ExecuteGremlinExplainQueryCommandOutput * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ExecuteGremlinExplainQueryCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ExecuteGremlinProfileQueryCommand.ts b/clients/client-neptunedata/src/commands/ExecuteGremlinProfileQueryCommand.ts index 2948794a66231..5ec26a2fe5e98 100644 --- a/clients/client-neptunedata/src/commands/ExecuteGremlinProfileQueryCommand.ts +++ b/clients/client-neptunedata/src/commands/ExecuteGremlinProfileQueryCommand.ts @@ -144,6 +144,7 @@ export interface ExecuteGremlinProfileQueryCommandOutput * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ExecuteGremlinProfileQueryCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ExecuteGremlinQueryCommand.ts b/clients/client-neptunedata/src/commands/ExecuteGremlinQueryCommand.ts index 15b2a02563058..1942551b552ea 100644 --- a/clients/client-neptunedata/src/commands/ExecuteGremlinQueryCommand.ts +++ b/clients/client-neptunedata/src/commands/ExecuteGremlinQueryCommand.ts @@ -157,6 +157,7 @@ export interface ExecuteGremlinQueryCommandOutput extends ExecuteGremlinQueryOut * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ExecuteGremlinQueryCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ExecuteOpenCypherExplainQueryCommand.ts b/clients/client-neptunedata/src/commands/ExecuteOpenCypherExplainQueryCommand.ts index 62b3ccdcf0b1c..a2876e6b95c67 100644 --- a/clients/client-neptunedata/src/commands/ExecuteOpenCypherExplainQueryCommand.ts +++ b/clients/client-neptunedata/src/commands/ExecuteOpenCypherExplainQueryCommand.ts @@ -147,6 +147,7 @@ export interface ExecuteOpenCypherExplainQueryCommandOutput * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ExecuteOpenCypherExplainQueryCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ExecuteOpenCypherQueryCommand.ts b/clients/client-neptunedata/src/commands/ExecuteOpenCypherQueryCommand.ts index ae326d2bc9d2c..fafc6ac8704ae 100644 --- a/clients/client-neptunedata/src/commands/ExecuteOpenCypherQueryCommand.ts +++ b/clients/client-neptunedata/src/commands/ExecuteOpenCypherQueryCommand.ts @@ -158,6 +158,7 @@ export interface ExecuteOpenCypherQueryCommandOutput extends ExecuteOpenCypherQu * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ExecuteOpenCypherQueryCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/GetEngineStatusCommand.ts b/clients/client-neptunedata/src/commands/GetEngineStatusCommand.ts index 2787715be9d38..69dd6b6d0f489 100644 --- a/clients/client-neptunedata/src/commands/GetEngineStatusCommand.ts +++ b/clients/client-neptunedata/src/commands/GetEngineStatusCommand.ts @@ -105,6 +105,7 @@ export interface GetEngineStatusCommandOutput extends GetEngineStatusOutput, __M * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class GetEngineStatusCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/GetGremlinQueryStatusCommand.ts b/clients/client-neptunedata/src/commands/GetGremlinQueryStatusCommand.ts index 99b1a0e2dd0ce..38433da6cb176 100644 --- a/clients/client-neptunedata/src/commands/GetGremlinQueryStatusCommand.ts +++ b/clients/client-neptunedata/src/commands/GetGremlinQueryStatusCommand.ts @@ -119,6 +119,7 @@ export interface GetGremlinQueryStatusCommandOutput extends GetGremlinQueryStatu * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class GetGremlinQueryStatusCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/GetLoaderJobStatusCommand.ts b/clients/client-neptunedata/src/commands/GetLoaderJobStatusCommand.ts index 250d689234183..bd9debf93f980 100644 --- a/clients/client-neptunedata/src/commands/GetLoaderJobStatusCommand.ts +++ b/clients/client-neptunedata/src/commands/GetLoaderJobStatusCommand.ts @@ -107,6 +107,7 @@ export interface GetLoaderJobStatusCommandOutput extends GetLoaderJobStatusOutpu * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class GetLoaderJobStatusCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/GetMLDataProcessingJobCommand.ts b/clients/client-neptunedata/src/commands/GetMLDataProcessingJobCommand.ts index c74ff105e41ec..d5ad0805a26c0 100644 --- a/clients/client-neptunedata/src/commands/GetMLDataProcessingJobCommand.ts +++ b/clients/client-neptunedata/src/commands/GetMLDataProcessingJobCommand.ts @@ -103,6 +103,7 @@ export interface GetMLDataProcessingJobCommandOutput extends GetMLDataProcessing * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class GetMLDataProcessingJobCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/GetMLEndpointCommand.ts b/clients/client-neptunedata/src/commands/GetMLEndpointCommand.ts index 7fa0be9962f5c..1d2665d700e46 100644 --- a/clients/client-neptunedata/src/commands/GetMLEndpointCommand.ts +++ b/clients/client-neptunedata/src/commands/GetMLEndpointCommand.ts @@ -107,6 +107,7 @@ export interface GetMLEndpointCommandOutput extends GetMLEndpointOutput, __Metad * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class GetMLEndpointCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/GetMLModelTrainingJobCommand.ts b/clients/client-neptunedata/src/commands/GetMLModelTrainingJobCommand.ts index a41f09dbd4db1..0d2b46c8f96f0 100644 --- a/clients/client-neptunedata/src/commands/GetMLModelTrainingJobCommand.ts +++ b/clients/client-neptunedata/src/commands/GetMLModelTrainingJobCommand.ts @@ -125,6 +125,7 @@ export interface GetMLModelTrainingJobCommandOutput extends GetMLModelTrainingJo * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class GetMLModelTrainingJobCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/GetMLModelTransformJobCommand.ts b/clients/client-neptunedata/src/commands/GetMLModelTransformJobCommand.ts index ce90fb03827e5..c06ddb499ea2d 100644 --- a/clients/client-neptunedata/src/commands/GetMLModelTransformJobCommand.ts +++ b/clients/client-neptunedata/src/commands/GetMLModelTransformJobCommand.ts @@ -117,6 +117,7 @@ export interface GetMLModelTransformJobCommandOutput extends GetMLModelTransform * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class GetMLModelTransformJobCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/GetOpenCypherQueryStatusCommand.ts b/clients/client-neptunedata/src/commands/GetOpenCypherQueryStatusCommand.ts index cad21b9e1f757..6399cb9fc513e 100644 --- a/clients/client-neptunedata/src/commands/GetOpenCypherQueryStatusCommand.ts +++ b/clients/client-neptunedata/src/commands/GetOpenCypherQueryStatusCommand.ts @@ -122,6 +122,7 @@ export interface GetOpenCypherQueryStatusCommandOutput extends GetOpenCypherQuer * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class GetOpenCypherQueryStatusCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/GetPropertygraphStatisticsCommand.ts b/clients/client-neptunedata/src/commands/GetPropertygraphStatisticsCommand.ts index 1cc4cc18cf7ad..0da37a6f405e1 100644 --- a/clients/client-neptunedata/src/commands/GetPropertygraphStatisticsCommand.ts +++ b/clients/client-neptunedata/src/commands/GetPropertygraphStatisticsCommand.ts @@ -108,6 +108,7 @@ export interface GetPropertygraphStatisticsCommandOutput extends GetPropertygrap * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class GetPropertygraphStatisticsCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/GetPropertygraphStreamCommand.ts b/clients/client-neptunedata/src/commands/GetPropertygraphStreamCommand.ts index 83d664b7c6d3a..1ea43bab5fd25 100644 --- a/clients/client-neptunedata/src/commands/GetPropertygraphStreamCommand.ts +++ b/clients/client-neptunedata/src/commands/GetPropertygraphStreamCommand.ts @@ -153,6 +153,7 @@ export interface GetPropertygraphStreamCommandOutput extends GetPropertygraphStr * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class GetPropertygraphStreamCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/GetPropertygraphSummaryCommand.ts b/clients/client-neptunedata/src/commands/GetPropertygraphSummaryCommand.ts index 26771efaa5ac2..94476ac5398e9 100644 --- a/clients/client-neptunedata/src/commands/GetPropertygraphSummaryCommand.ts +++ b/clients/client-neptunedata/src/commands/GetPropertygraphSummaryCommand.ts @@ -147,6 +147,7 @@ export interface GetPropertygraphSummaryCommandOutput extends GetPropertygraphSu * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class GetPropertygraphSummaryCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/GetRDFGraphSummaryCommand.ts b/clients/client-neptunedata/src/commands/GetRDFGraphSummaryCommand.ts index f9e757e3ef435..a67a722f14a46 100644 --- a/clients/client-neptunedata/src/commands/GetRDFGraphSummaryCommand.ts +++ b/clients/client-neptunedata/src/commands/GetRDFGraphSummaryCommand.ts @@ -124,6 +124,7 @@ export interface GetRDFGraphSummaryCommandOutput extends GetRDFGraphSummaryOutpu * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class GetRDFGraphSummaryCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/GetSparqlStatisticsCommand.ts b/clients/client-neptunedata/src/commands/GetSparqlStatisticsCommand.ts index 36c07f9616e92..8a1981af05eab 100644 --- a/clients/client-neptunedata/src/commands/GetSparqlStatisticsCommand.ts +++ b/clients/client-neptunedata/src/commands/GetSparqlStatisticsCommand.ts @@ -104,6 +104,7 @@ export interface GetSparqlStatisticsCommandOutput extends GetSparqlStatisticsOut * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class GetSparqlStatisticsCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/GetSparqlStreamCommand.ts b/clients/client-neptunedata/src/commands/GetSparqlStreamCommand.ts index b2290d845b823..8f503818af718 100644 --- a/clients/client-neptunedata/src/commands/GetSparqlStreamCommand.ts +++ b/clients/client-neptunedata/src/commands/GetSparqlStreamCommand.ts @@ -132,6 +132,7 @@ export interface GetSparqlStreamCommandOutput extends GetSparqlStreamOutput, __M * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class GetSparqlStreamCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ListGremlinQueriesCommand.ts b/clients/client-neptunedata/src/commands/ListGremlinQueriesCommand.ts index 208ab99087557..896dae10435aa 100644 --- a/clients/client-neptunedata/src/commands/ListGremlinQueriesCommand.ts +++ b/clients/client-neptunedata/src/commands/ListGremlinQueriesCommand.ts @@ -126,6 +126,7 @@ export interface ListGremlinQueriesCommandOutput extends ListGremlinQueriesOutpu * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ListGremlinQueriesCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ListLoaderJobsCommand.ts b/clients/client-neptunedata/src/commands/ListLoaderJobsCommand.ts index ebca0310f78f5..8e12710f3295b 100644 --- a/clients/client-neptunedata/src/commands/ListLoaderJobsCommand.ts +++ b/clients/client-neptunedata/src/commands/ListLoaderJobsCommand.ts @@ -102,6 +102,7 @@ export interface ListLoaderJobsCommandOutput extends ListLoaderJobsOutput, __Met * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ListLoaderJobsCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ListMLDataProcessingJobsCommand.ts b/clients/client-neptunedata/src/commands/ListMLDataProcessingJobsCommand.ts index 7ecf7607722ed..76c721d990251 100644 --- a/clients/client-neptunedata/src/commands/ListMLDataProcessingJobsCommand.ts +++ b/clients/client-neptunedata/src/commands/ListMLDataProcessingJobsCommand.ts @@ -96,6 +96,7 @@ export interface ListMLDataProcessingJobsCommandOutput extends ListMLDataProcess * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ListMLDataProcessingJobsCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ListMLEndpointsCommand.ts b/clients/client-neptunedata/src/commands/ListMLEndpointsCommand.ts index c8736b7382493..7f520fa612cb9 100644 --- a/clients/client-neptunedata/src/commands/ListMLEndpointsCommand.ts +++ b/clients/client-neptunedata/src/commands/ListMLEndpointsCommand.ts @@ -96,6 +96,7 @@ export interface ListMLEndpointsCommandOutput extends ListMLEndpointsOutput, __M * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ListMLEndpointsCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ListMLModelTrainingJobsCommand.ts b/clients/client-neptunedata/src/commands/ListMLModelTrainingJobsCommand.ts index 074bd3efcad4e..7844ecc2801de 100644 --- a/clients/client-neptunedata/src/commands/ListMLModelTrainingJobsCommand.ts +++ b/clients/client-neptunedata/src/commands/ListMLModelTrainingJobsCommand.ts @@ -96,6 +96,7 @@ export interface ListMLModelTrainingJobsCommandOutput extends ListMLModelTrainin * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ListMLModelTrainingJobsCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ListMLModelTransformJobsCommand.ts b/clients/client-neptunedata/src/commands/ListMLModelTransformJobsCommand.ts index 71ebb0ec980c5..44d39bd6562dd 100644 --- a/clients/client-neptunedata/src/commands/ListMLModelTransformJobsCommand.ts +++ b/clients/client-neptunedata/src/commands/ListMLModelTransformJobsCommand.ts @@ -96,6 +96,7 @@ export interface ListMLModelTransformJobsCommandOutput extends ListMLModelTransf * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ListMLModelTransformJobsCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ListOpenCypherQueriesCommand.ts b/clients/client-neptunedata/src/commands/ListOpenCypherQueriesCommand.ts index bc3f62abae894..f6015c06d2690 100644 --- a/clients/client-neptunedata/src/commands/ListOpenCypherQueriesCommand.ts +++ b/clients/client-neptunedata/src/commands/ListOpenCypherQueriesCommand.ts @@ -129,6 +129,7 @@ export interface ListOpenCypherQueriesCommandOutput extends ListOpenCypherQuerie * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ListOpenCypherQueriesCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ManagePropertygraphStatisticsCommand.ts b/clients/client-neptunedata/src/commands/ManagePropertygraphStatisticsCommand.ts index 479c9963fce57..84181a0a80fc6 100644 --- a/clients/client-neptunedata/src/commands/ManagePropertygraphStatisticsCommand.ts +++ b/clients/client-neptunedata/src/commands/ManagePropertygraphStatisticsCommand.ts @@ -106,6 +106,7 @@ export interface ManagePropertygraphStatisticsCommandOutput * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ManagePropertygraphStatisticsCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/ManageSparqlStatisticsCommand.ts b/clients/client-neptunedata/src/commands/ManageSparqlStatisticsCommand.ts index 9a6469f047be1..77893806c236b 100644 --- a/clients/client-neptunedata/src/commands/ManageSparqlStatisticsCommand.ts +++ b/clients/client-neptunedata/src/commands/ManageSparqlStatisticsCommand.ts @@ -101,6 +101,7 @@ export interface ManageSparqlStatisticsCommandOutput extends ManageSparqlStatist * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class ManageSparqlStatisticsCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/StartLoaderJobCommand.ts b/clients/client-neptunedata/src/commands/StartLoaderJobCommand.ts index 71e63c07f137a..2bbc106540e47 100644 --- a/clients/client-neptunedata/src/commands/StartLoaderJobCommand.ts +++ b/clients/client-neptunedata/src/commands/StartLoaderJobCommand.ts @@ -121,6 +121,7 @@ export interface StartLoaderJobCommandOutput extends StartLoaderJobOutput, __Met * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class StartLoaderJobCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/StartMLDataProcessingJobCommand.ts b/clients/client-neptunedata/src/commands/StartMLDataProcessingJobCommand.ts index 223fda5afab2a..da0a0be758e99 100644 --- a/clients/client-neptunedata/src/commands/StartMLDataProcessingJobCommand.ts +++ b/clients/client-neptunedata/src/commands/StartMLDataProcessingJobCommand.ts @@ -114,6 +114,7 @@ export interface StartMLDataProcessingJobCommandOutput extends StartMLDataProces * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class StartMLDataProcessingJobCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/StartMLModelTrainingJobCommand.ts b/clients/client-neptunedata/src/commands/StartMLModelTrainingJobCommand.ts index 531f7d235967e..351abc3f907cb 100644 --- a/clients/client-neptunedata/src/commands/StartMLModelTrainingJobCommand.ts +++ b/clients/client-neptunedata/src/commands/StartMLModelTrainingJobCommand.ts @@ -120,6 +120,7 @@ export interface StartMLModelTrainingJobCommandOutput extends StartMLModelTraini * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class StartMLModelTrainingJobCommand extends $Command diff --git a/clients/client-neptunedata/src/commands/StartMLModelTransformJobCommand.ts b/clients/client-neptunedata/src/commands/StartMLModelTransformJobCommand.ts index 27ed24fab283d..53c2d5a989e5e 100644 --- a/clients/client-neptunedata/src/commands/StartMLModelTransformJobCommand.ts +++ b/clients/client-neptunedata/src/commands/StartMLModelTransformJobCommand.ts @@ -115,6 +115,7 @@ export interface StartMLModelTransformJobCommandOutput extends StartMLModelTrans * @throws {@link NeptunedataServiceException} *

Base exception class for all service exceptions from Neptunedata service.

* + * * @public */ export class StartMLModelTransformJobCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/AssociateFirewallPolicyCommand.ts b/clients/client-network-firewall/src/commands/AssociateFirewallPolicyCommand.ts index 7192f1cdee509..f21ce055de118 100644 --- a/clients/client-network-firewall/src/commands/AssociateFirewallPolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/AssociateFirewallPolicyCommand.ts @@ -98,6 +98,7 @@ export interface AssociateFirewallPolicyCommandOutput extends AssociateFirewallP * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class AssociateFirewallPolicyCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/AssociateSubnetsCommand.ts b/clients/client-network-firewall/src/commands/AssociateSubnetsCommand.ts index 0ee81f70e2a2a..60d11599284ca 100644 --- a/clients/client-network-firewall/src/commands/AssociateSubnetsCommand.ts +++ b/clients/client-network-firewall/src/commands/AssociateSubnetsCommand.ts @@ -113,6 +113,7 @@ export interface AssociateSubnetsCommandOutput extends AssociateSubnetsResponse, * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class AssociateSubnetsCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/CreateFirewallCommand.ts b/clients/client-network-firewall/src/commands/CreateFirewallCommand.ts index a930781103776..5320f7fe1553d 100644 --- a/clients/client-network-firewall/src/commands/CreateFirewallCommand.ts +++ b/clients/client-network-firewall/src/commands/CreateFirewallCommand.ts @@ -181,6 +181,7 @@ export interface CreateFirewallCommandOutput extends CreateFirewallResponse, __M * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class CreateFirewallCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/CreateFirewallPolicyCommand.ts b/clients/client-network-firewall/src/commands/CreateFirewallPolicyCommand.ts index 1ad1ba1e66dce..05edd0a5a0b7a 100644 --- a/clients/client-network-firewall/src/commands/CreateFirewallPolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/CreateFirewallPolicyCommand.ts @@ -178,6 +178,7 @@ export interface CreateFirewallPolicyCommandOutput extends CreateFirewallPolicyR * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class CreateFirewallPolicyCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/CreateRuleGroupCommand.ts b/clients/client-network-firewall/src/commands/CreateRuleGroupCommand.ts index 3e8d9737e963a..6c95fae4ff950 100644 --- a/clients/client-network-firewall/src/commands/CreateRuleGroupCommand.ts +++ b/clients/client-network-firewall/src/commands/CreateRuleGroupCommand.ts @@ -268,6 +268,7 @@ export interface CreateRuleGroupCommandOutput extends CreateRuleGroupResponse, _ * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class CreateRuleGroupCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/CreateTLSInspectionConfigurationCommand.ts b/clients/client-network-firewall/src/commands/CreateTLSInspectionConfigurationCommand.ts index 065e2bf0eb410..c2d8819b2fe22 100644 --- a/clients/client-network-firewall/src/commands/CreateTLSInspectionConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/CreateTLSInspectionConfigurationCommand.ts @@ -186,6 +186,7 @@ export interface CreateTLSInspectionConfigurationCommandOutput * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class CreateTLSInspectionConfigurationCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/DeleteFirewallCommand.ts b/clients/client-network-firewall/src/commands/DeleteFirewallCommand.ts index 2b6ba459ce758..9003ce04cb2c8 100644 --- a/clients/client-network-firewall/src/commands/DeleteFirewallCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteFirewallCommand.ts @@ -159,6 +159,7 @@ export interface DeleteFirewallCommandOutput extends DeleteFirewallResponse, __M * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class DeleteFirewallCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/DeleteFirewallPolicyCommand.ts b/clients/client-network-firewall/src/commands/DeleteFirewallPolicyCommand.ts index 902471f21b486..f0ca2828df693 100644 --- a/clients/client-network-firewall/src/commands/DeleteFirewallPolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteFirewallPolicyCommand.ts @@ -109,6 +109,7 @@ export interface DeleteFirewallPolicyCommandOutput extends DeleteFirewallPolicyR * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class DeleteFirewallPolicyCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-network-firewall/src/commands/DeleteResourcePolicyCommand.ts index eefbec61338e0..f8e5c7e2124fc 100644 --- a/clients/client-network-firewall/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteResourcePolicyCommand.ts @@ -82,6 +82,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/DeleteRuleGroupCommand.ts b/clients/client-network-firewall/src/commands/DeleteRuleGroupCommand.ts index d871a135280fb..14c81eeb65452 100644 --- a/clients/client-network-firewall/src/commands/DeleteRuleGroupCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteRuleGroupCommand.ts @@ -125,6 +125,7 @@ export interface DeleteRuleGroupCommandOutput extends DeleteRuleGroupResponse, _ * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class DeleteRuleGroupCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/DeleteTLSInspectionConfigurationCommand.ts b/clients/client-network-firewall/src/commands/DeleteTLSInspectionConfigurationCommand.ts index 470ceb4b3e928..3a980c9d0085e 100644 --- a/clients/client-network-firewall/src/commands/DeleteTLSInspectionConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteTLSInspectionConfigurationCommand.ts @@ -123,6 +123,7 @@ export interface DeleteTLSInspectionConfigurationCommandOutput * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class DeleteTLSInspectionConfigurationCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/DescribeFirewallCommand.ts b/clients/client-network-firewall/src/commands/DescribeFirewallCommand.ts index 722583c557232..687dbe50fdf6d 100644 --- a/clients/client-network-firewall/src/commands/DescribeFirewallCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeFirewallCommand.ts @@ -143,6 +143,7 @@ export interface DescribeFirewallCommandOutput extends DescribeFirewallResponse, * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class DescribeFirewallCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/DescribeFirewallPolicyCommand.ts b/clients/client-network-firewall/src/commands/DescribeFirewallPolicyCommand.ts index b0932f593488c..3e3778eb50def 100644 --- a/clients/client-network-firewall/src/commands/DescribeFirewallPolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeFirewallPolicyCommand.ts @@ -160,6 +160,7 @@ export interface DescribeFirewallPolicyCommandOutput extends DescribeFirewallPol * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class DescribeFirewallPolicyCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/DescribeFlowOperationCommand.ts b/clients/client-network-firewall/src/commands/DescribeFlowOperationCommand.ts index ef66e0bfe9478..59767c8c2ca72 100644 --- a/clients/client-network-firewall/src/commands/DescribeFlowOperationCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeFlowOperationCommand.ts @@ -107,6 +107,7 @@ export interface DescribeFlowOperationCommandOutput extends DescribeFlowOperatio * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class DescribeFlowOperationCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/DescribeLoggingConfigurationCommand.ts b/clients/client-network-firewall/src/commands/DescribeLoggingConfigurationCommand.ts index badcc056f753b..2cfc76ad2c391 100644 --- a/clients/client-network-firewall/src/commands/DescribeLoggingConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeLoggingConfigurationCommand.ts @@ -98,6 +98,7 @@ export interface DescribeLoggingConfigurationCommandOutput * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class DescribeLoggingConfigurationCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/DescribeResourcePolicyCommand.ts b/clients/client-network-firewall/src/commands/DescribeResourcePolicyCommand.ts index 5d73102f58910..cf4368461b4c6 100644 --- a/clients/client-network-firewall/src/commands/DescribeResourcePolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeResourcePolicyCommand.ts @@ -81,6 +81,7 @@ export interface DescribeResourcePolicyCommandOutput extends DescribeResourcePol * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class DescribeResourcePolicyCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/DescribeRuleGroupCommand.ts b/clients/client-network-firewall/src/commands/DescribeRuleGroupCommand.ts index eab4e852eee62..296b7785a232e 100644 --- a/clients/client-network-firewall/src/commands/DescribeRuleGroupCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeRuleGroupCommand.ts @@ -244,6 +244,7 @@ export interface DescribeRuleGroupCommandOutput extends DescribeRuleGroupRespons * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class DescribeRuleGroupCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/DescribeRuleGroupMetadataCommand.ts b/clients/client-network-firewall/src/commands/DescribeRuleGroupMetadataCommand.ts index 6bb8693a16e68..e46bcad0448d4 100644 --- a/clients/client-network-firewall/src/commands/DescribeRuleGroupMetadataCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeRuleGroupMetadataCommand.ts @@ -94,6 +94,7 @@ export interface DescribeRuleGroupMetadataCommandOutput extends DescribeRuleGrou * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class DescribeRuleGroupMetadataCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/DescribeTLSInspectionConfigurationCommand.ts b/clients/client-network-firewall/src/commands/DescribeTLSInspectionConfigurationCommand.ts index cb822b4d6fc8b..bae803a1a0543 100644 --- a/clients/client-network-firewall/src/commands/DescribeTLSInspectionConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeTLSInspectionConfigurationCommand.ts @@ -168,6 +168,7 @@ export interface DescribeTLSInspectionConfigurationCommandOutput * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class DescribeTLSInspectionConfigurationCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/DisassociateSubnetsCommand.ts b/clients/client-network-firewall/src/commands/DisassociateSubnetsCommand.ts index d70ef9edaec8d..c773fb6df065f 100644 --- a/clients/client-network-firewall/src/commands/DisassociateSubnetsCommand.ts +++ b/clients/client-network-firewall/src/commands/DisassociateSubnetsCommand.ts @@ -104,6 +104,7 @@ export interface DisassociateSubnetsCommandOutput extends DisassociateSubnetsRes * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class DisassociateSubnetsCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/GetAnalysisReportResultsCommand.ts b/clients/client-network-firewall/src/commands/GetAnalysisReportResultsCommand.ts index a2ab01c0b9520..27ede839dcb25 100644 --- a/clients/client-network-firewall/src/commands/GetAnalysisReportResultsCommand.ts +++ b/clients/client-network-firewall/src/commands/GetAnalysisReportResultsCommand.ts @@ -105,6 +105,7 @@ export interface GetAnalysisReportResultsCommandOutput extends GetAnalysisReport * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class GetAnalysisReportResultsCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/ListAnalysisReportsCommand.ts b/clients/client-network-firewall/src/commands/ListAnalysisReportsCommand.ts index e54f32fe2ae14..04711bc44ec1e 100644 --- a/clients/client-network-firewall/src/commands/ListAnalysisReportsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListAnalysisReportsCommand.ts @@ -92,6 +92,7 @@ export interface ListAnalysisReportsCommandOutput extends ListAnalysisReportsRes * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class ListAnalysisReportsCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/ListFirewallPoliciesCommand.ts b/clients/client-network-firewall/src/commands/ListFirewallPoliciesCommand.ts index 1e055b8cb0878..824e4874fcc52 100644 --- a/clients/client-network-firewall/src/commands/ListFirewallPoliciesCommand.ts +++ b/clients/client-network-firewall/src/commands/ListFirewallPoliciesCommand.ts @@ -87,6 +87,7 @@ export interface ListFirewallPoliciesCommandOutput extends ListFirewallPoliciesR * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class ListFirewallPoliciesCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/ListFirewallsCommand.ts b/clients/client-network-firewall/src/commands/ListFirewallsCommand.ts index 24a12871100d8..8b9a747dd0f18 100644 --- a/clients/client-network-firewall/src/commands/ListFirewallsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListFirewallsCommand.ts @@ -91,6 +91,7 @@ export interface ListFirewallsCommandOutput extends ListFirewallsResponse, __Met * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class ListFirewallsCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/ListFlowOperationResultsCommand.ts b/clients/client-network-firewall/src/commands/ListFlowOperationResultsCommand.ts index 87a92ce5ae0d5..96429325e773f 100644 --- a/clients/client-network-firewall/src/commands/ListFlowOperationResultsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListFlowOperationResultsCommand.ts @@ -110,6 +110,7 @@ export interface ListFlowOperationResultsCommandOutput extends ListFlowOperation * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class ListFlowOperationResultsCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/ListFlowOperationsCommand.ts b/clients/client-network-firewall/src/commands/ListFlowOperationsCommand.ts index 84818fc5077e2..c4e2f60e4b8ae 100644 --- a/clients/client-network-firewall/src/commands/ListFlowOperationsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListFlowOperationsCommand.ts @@ -97,6 +97,7 @@ export interface ListFlowOperationsCommandOutput extends ListFlowOperationsRespo * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class ListFlowOperationsCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/ListRuleGroupsCommand.ts b/clients/client-network-firewall/src/commands/ListRuleGroupsCommand.ts index 3fa94bb4dfe76..0148438efd9ef 100644 --- a/clients/client-network-firewall/src/commands/ListRuleGroupsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListRuleGroupsCommand.ts @@ -90,6 +90,7 @@ export interface ListRuleGroupsCommandOutput extends ListRuleGroupsResponse, __M * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class ListRuleGroupsCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/ListTLSInspectionConfigurationsCommand.ts b/clients/client-network-firewall/src/commands/ListTLSInspectionConfigurationsCommand.ts index 05a5d35c1b8e3..2ae7c9544ecc9 100644 --- a/clients/client-network-firewall/src/commands/ListTLSInspectionConfigurationsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListTLSInspectionConfigurationsCommand.ts @@ -90,6 +90,7 @@ export interface ListTLSInspectionConfigurationsCommandOutput * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class ListTLSInspectionConfigurationsCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/ListTagsForResourceCommand.ts b/clients/client-network-firewall/src/commands/ListTagsForResourceCommand.ts index afee14eedbfd3..131f1afba93e0 100644 --- a/clients/client-network-firewall/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-network-firewall/src/commands/ListTagsForResourceCommand.ts @@ -95,6 +95,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/PutResourcePolicyCommand.ts b/clients/client-network-firewall/src/commands/PutResourcePolicyCommand.ts index 5a5d0987c6cec..24cae5f9df95f 100644 --- a/clients/client-network-firewall/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/PutResourcePolicyCommand.ts @@ -97,6 +97,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/StartAnalysisReportCommand.ts b/clients/client-network-firewall/src/commands/StartAnalysisReportCommand.ts index 4ae5f63b94e7a..c35d4be2f6162 100644 --- a/clients/client-network-firewall/src/commands/StartAnalysisReportCommand.ts +++ b/clients/client-network-firewall/src/commands/StartAnalysisReportCommand.ts @@ -84,6 +84,7 @@ export interface StartAnalysisReportCommandOutput extends StartAnalysisReportRes * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class StartAnalysisReportCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/StartFlowCaptureCommand.ts b/clients/client-network-firewall/src/commands/StartFlowCaptureCommand.ts index aa7bd881d0344..da5d2eb3ed5c3 100644 --- a/clients/client-network-firewall/src/commands/StartFlowCaptureCommand.ts +++ b/clients/client-network-firewall/src/commands/StartFlowCaptureCommand.ts @@ -108,6 +108,7 @@ export interface StartFlowCaptureCommandOutput extends StartFlowCaptureResponse, * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class StartFlowCaptureCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/StartFlowFlushCommand.ts b/clients/client-network-firewall/src/commands/StartFlowFlushCommand.ts index 702d05b6fd2aa..3e775dfafa46a 100644 --- a/clients/client-network-firewall/src/commands/StartFlowFlushCommand.ts +++ b/clients/client-network-firewall/src/commands/StartFlowFlushCommand.ts @@ -107,6 +107,7 @@ export interface StartFlowFlushCommandOutput extends StartFlowFlushResponse, __M * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class StartFlowFlushCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/TagResourceCommand.ts b/clients/client-network-firewall/src/commands/TagResourceCommand.ts index d3eb5c3707e51..39e2ea02f5353 100644 --- a/clients/client-network-firewall/src/commands/TagResourceCommand.ts +++ b/clients/client-network-firewall/src/commands/TagResourceCommand.ts @@ -90,6 +90,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/UntagResourceCommand.ts b/clients/client-network-firewall/src/commands/UntagResourceCommand.ts index ad75005debdd5..1e26636381aa0 100644 --- a/clients/client-network-firewall/src/commands/UntagResourceCommand.ts +++ b/clients/client-network-firewall/src/commands/UntagResourceCommand.ts @@ -88,6 +88,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/UpdateFirewallAnalysisSettingsCommand.ts b/clients/client-network-firewall/src/commands/UpdateFirewallAnalysisSettingsCommand.ts index 51493a81edfd2..36e7d8600c4a4 100644 --- a/clients/client-network-firewall/src/commands/UpdateFirewallAnalysisSettingsCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateFirewallAnalysisSettingsCommand.ts @@ -96,6 +96,7 @@ export interface UpdateFirewallAnalysisSettingsCommandOutput * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class UpdateFirewallAnalysisSettingsCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/UpdateFirewallDeleteProtectionCommand.ts b/clients/client-network-firewall/src/commands/UpdateFirewallDeleteProtectionCommand.ts index c5b939fde3f93..15ae68e18ac50 100644 --- a/clients/client-network-firewall/src/commands/UpdateFirewallDeleteProtectionCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateFirewallDeleteProtectionCommand.ts @@ -101,6 +101,7 @@ export interface UpdateFirewallDeleteProtectionCommandOutput * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class UpdateFirewallDeleteProtectionCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/UpdateFirewallDescriptionCommand.ts b/clients/client-network-firewall/src/commands/UpdateFirewallDescriptionCommand.ts index 514ba06baa905..ec56deb653053 100644 --- a/clients/client-network-firewall/src/commands/UpdateFirewallDescriptionCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateFirewallDescriptionCommand.ts @@ -91,6 +91,7 @@ export interface UpdateFirewallDescriptionCommandOutput extends UpdateFirewallDe * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class UpdateFirewallDescriptionCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/UpdateFirewallEncryptionConfigurationCommand.ts b/clients/client-network-firewall/src/commands/UpdateFirewallEncryptionConfigurationCommand.ts index df8a41dccaf89..72d0fd71414ab 100644 --- a/clients/client-network-firewall/src/commands/UpdateFirewallEncryptionConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateFirewallEncryptionConfigurationCommand.ts @@ -108,6 +108,7 @@ export interface UpdateFirewallEncryptionConfigurationCommandOutput * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class UpdateFirewallEncryptionConfigurationCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/UpdateFirewallPolicyChangeProtectionCommand.ts b/clients/client-network-firewall/src/commands/UpdateFirewallPolicyChangeProtectionCommand.ts index 6b6da0c3b2789..c6b3ba5bdba1c 100644 --- a/clients/client-network-firewall/src/commands/UpdateFirewallPolicyChangeProtectionCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateFirewallPolicyChangeProtectionCommand.ts @@ -103,6 +103,7 @@ export interface UpdateFirewallPolicyChangeProtectionCommandOutput * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class UpdateFirewallPolicyChangeProtectionCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/UpdateFirewallPolicyCommand.ts b/clients/client-network-firewall/src/commands/UpdateFirewallPolicyCommand.ts index e6773b33f4461..2e92e8a08103b 100644 --- a/clients/client-network-firewall/src/commands/UpdateFirewallPolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateFirewallPolicyCommand.ts @@ -170,6 +170,7 @@ export interface UpdateFirewallPolicyCommandOutput extends UpdateFirewallPolicyR * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class UpdateFirewallPolicyCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/UpdateLoggingConfigurationCommand.ts b/clients/client-network-firewall/src/commands/UpdateLoggingConfigurationCommand.ts index a66b1a91d4c8a..09c42997d914c 100644 --- a/clients/client-network-firewall/src/commands/UpdateLoggingConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateLoggingConfigurationCommand.ts @@ -136,6 +136,7 @@ export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingCo * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class UpdateLoggingConfigurationCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/UpdateRuleGroupCommand.ts b/clients/client-network-firewall/src/commands/UpdateRuleGroupCommand.ts index 1eec7fd892074..07f51957fe28a 100644 --- a/clients/client-network-firewall/src/commands/UpdateRuleGroupCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateRuleGroupCommand.ts @@ -264,6 +264,7 @@ export interface UpdateRuleGroupCommandOutput extends UpdateRuleGroupResponse, _ * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class UpdateRuleGroupCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/UpdateSubnetChangeProtectionCommand.ts b/clients/client-network-firewall/src/commands/UpdateSubnetChangeProtectionCommand.ts index 1e19c3212288b..80f5c46b9b795 100644 --- a/clients/client-network-firewall/src/commands/UpdateSubnetChangeProtectionCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateSubnetChangeProtectionCommand.ts @@ -98,6 +98,7 @@ export interface UpdateSubnetChangeProtectionCommandOutput * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class UpdateSubnetChangeProtectionCommand extends $Command diff --git a/clients/client-network-firewall/src/commands/UpdateTLSInspectionConfigurationCommand.ts b/clients/client-network-firewall/src/commands/UpdateTLSInspectionConfigurationCommand.ts index a73c84cf87026..0ef0fbab65624 100644 --- a/clients/client-network-firewall/src/commands/UpdateTLSInspectionConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateTLSInspectionConfigurationCommand.ts @@ -179,6 +179,7 @@ export interface UpdateTLSInspectionConfigurationCommandOutput * @throws {@link NetworkFirewallServiceException} *

Base exception class for all service exceptions from NetworkFirewall service.

* + * * @public */ export class UpdateTLSInspectionConfigurationCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/CreateMonitorCommand.ts b/clients/client-networkflowmonitor/src/commands/CreateMonitorCommand.ts index 83e9ecf80ffbb..6b469952f87ee 100644 --- a/clients/client-networkflowmonitor/src/commands/CreateMonitorCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/CreateMonitorCommand.ts @@ -117,6 +117,7 @@ export interface CreateMonitorCommandOutput extends CreateMonitorOutput, __Metad * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class CreateMonitorCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/CreateScopeCommand.ts b/clients/client-networkflowmonitor/src/commands/CreateScopeCommand.ts index 79e11075d9d2e..c72dacb7ab8f2 100644 --- a/clients/client-networkflowmonitor/src/commands/CreateScopeCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/CreateScopeCommand.ts @@ -100,6 +100,7 @@ export interface CreateScopeCommandOutput extends CreateScopeOutput, __MetadataB * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class CreateScopeCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/DeleteMonitorCommand.ts b/clients/client-networkflowmonitor/src/commands/DeleteMonitorCommand.ts index ea282aa92a932..dfa8d57c71220 100644 --- a/clients/client-networkflowmonitor/src/commands/DeleteMonitorCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/DeleteMonitorCommand.ts @@ -72,6 +72,7 @@ export interface DeleteMonitorCommandOutput extends DeleteMonitorOutput, __Metad * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class DeleteMonitorCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/DeleteScopeCommand.ts b/clients/client-networkflowmonitor/src/commands/DeleteScopeCommand.ts index 513fc70cbd42b..7571b4aa0e155 100644 --- a/clients/client-networkflowmonitor/src/commands/DeleteScopeCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/DeleteScopeCommand.ts @@ -75,6 +75,7 @@ export interface DeleteScopeCommandOutput extends DeleteScopeOutput, __MetadataB * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class DeleteScopeCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/GetMonitorCommand.ts b/clients/client-networkflowmonitor/src/commands/GetMonitorCommand.ts index b344f2cbf1ec7..bf02f53c6895c 100644 --- a/clients/client-networkflowmonitor/src/commands/GetMonitorCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetMonitorCommand.ts @@ -94,6 +94,7 @@ export interface GetMonitorCommandOutput extends GetMonitorOutput, __MetadataBea * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class GetMonitorCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/GetQueryResultsMonitorTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/GetQueryResultsMonitorTopContributorsCommand.ts index 6a90c2c598781..f4c2e8e04abd9 100644 --- a/clients/client-networkflowmonitor/src/commands/GetQueryResultsMonitorTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetQueryResultsMonitorTopContributorsCommand.ts @@ -139,6 +139,7 @@ export interface GetQueryResultsMonitorTopContributorsCommandOutput * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class GetQueryResultsMonitorTopContributorsCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsCommand.ts index 107ae17d0acd6..dfe932e5d2e0e 100644 --- a/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsCommand.ts @@ -112,6 +112,7 @@ export interface GetQueryResultsWorkloadInsightsTopContributorsCommandOutput * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class GetQueryResultsWorkloadInsightsTopContributorsCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsDataCommand.ts b/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsDataCommand.ts index 17987e3a5438e..1641c5b0b689a 100644 --- a/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsDataCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsDataCommand.ts @@ -113,6 +113,7 @@ export interface GetQueryResultsWorkloadInsightsTopContributorsDataCommandOutput * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class GetQueryResultsWorkloadInsightsTopContributorsDataCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/GetQueryStatusMonitorTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/GetQueryStatusMonitorTopContributorsCommand.ts index e6a17e3fb92f5..5c5fc9fbf3b11 100644 --- a/clients/client-networkflowmonitor/src/commands/GetQueryStatusMonitorTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetQueryStatusMonitorTopContributorsCommand.ts @@ -89,6 +89,7 @@ export interface GetQueryStatusMonitorTopContributorsCommandOutput * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class GetQueryStatusMonitorTopContributorsCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsCommand.ts index b59ba5e6b5039..489e601d1ed9d 100644 --- a/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsCommand.ts @@ -91,6 +91,7 @@ export interface GetQueryStatusWorkloadInsightsTopContributorsCommandOutput * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class GetQueryStatusWorkloadInsightsTopContributorsCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsDataCommand.ts b/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsDataCommand.ts index 94a2754b23cb5..1522799423109 100644 --- a/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsDataCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsDataCommand.ts @@ -92,6 +92,7 @@ export interface GetQueryStatusWorkloadInsightsTopContributorsDataCommandOutput * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class GetQueryStatusWorkloadInsightsTopContributorsDataCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/GetScopeCommand.ts b/clients/client-networkflowmonitor/src/commands/GetScopeCommand.ts index 5851e584dc206..eec825dc2f851 100644 --- a/clients/client-networkflowmonitor/src/commands/GetScopeCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetScopeCommand.ts @@ -94,6 +94,7 @@ export interface GetScopeCommandOutput extends GetScopeOutput, __MetadataBearer * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class GetScopeCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/ListMonitorsCommand.ts b/clients/client-networkflowmonitor/src/commands/ListMonitorsCommand.ts index b7d2916804c3a..7d8aef05f24da 100644 --- a/clients/client-networkflowmonitor/src/commands/ListMonitorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/ListMonitorsCommand.ts @@ -81,6 +81,7 @@ export interface ListMonitorsCommandOutput extends ListMonitorsOutput, __Metadat * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class ListMonitorsCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/ListScopesCommand.ts b/clients/client-networkflowmonitor/src/commands/ListScopesCommand.ts index 719c8065ce567..b817860396178 100644 --- a/clients/client-networkflowmonitor/src/commands/ListScopesCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/ListScopesCommand.ts @@ -82,6 +82,7 @@ export interface ListScopesCommandOutput extends ListScopesOutput, __MetadataBea * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class ListScopesCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/ListTagsForResourceCommand.ts b/clients/client-networkflowmonitor/src/commands/ListTagsForResourceCommand.ts index 704febf05968b..0e9653b24b50a 100644 --- a/clients/client-networkflowmonitor/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/ListTagsForResourceCommand.ts @@ -79,6 +79,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/StartQueryMonitorTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/StartQueryMonitorTopContributorsCommand.ts index 36da6ed3e7393..aed27fe4bbd7a 100644 --- a/clients/client-networkflowmonitor/src/commands/StartQueryMonitorTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/StartQueryMonitorTopContributorsCommand.ts @@ -88,6 +88,7 @@ export interface StartQueryMonitorTopContributorsCommandOutput * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class StartQueryMonitorTopContributorsCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsCommand.ts index e29172d64893f..551c821b371a6 100644 --- a/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsCommand.ts @@ -92,6 +92,7 @@ export interface StartQueryWorkloadInsightsTopContributorsCommandOutput * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class StartQueryWorkloadInsightsTopContributorsCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsDataCommand.ts b/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsDataCommand.ts index c2fc88aa3440a..6255e87810e12 100644 --- a/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsDataCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsDataCommand.ts @@ -91,6 +91,7 @@ export interface StartQueryWorkloadInsightsTopContributorsDataCommandOutput * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class StartQueryWorkloadInsightsTopContributorsDataCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/StopQueryMonitorTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/StopQueryMonitorTopContributorsCommand.ts index aa1e074c2e7a3..c91cef3fc92c3 100644 --- a/clients/client-networkflowmonitor/src/commands/StopQueryMonitorTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/StopQueryMonitorTopContributorsCommand.ts @@ -82,6 +82,7 @@ export interface StopQueryMonitorTopContributorsCommandOutput * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class StopQueryMonitorTopContributorsCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsCommand.ts index 9c940545bcc59..283a6136c2f09 100644 --- a/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsCommand.ts @@ -86,6 +86,7 @@ export interface StopQueryWorkloadInsightsTopContributorsCommandOutput * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class StopQueryWorkloadInsightsTopContributorsCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsDataCommand.ts b/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsDataCommand.ts index 183b87e7384ec..f1e2da7bea112 100644 --- a/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsDataCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsDataCommand.ts @@ -90,6 +90,7 @@ export interface StopQueryWorkloadInsightsTopContributorsDataCommandOutput * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class StopQueryWorkloadInsightsTopContributorsDataCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/TagResourceCommand.ts b/clients/client-networkflowmonitor/src/commands/TagResourceCommand.ts index da9a967caf8dd..2060da7b96ad0 100644 --- a/clients/client-networkflowmonitor/src/commands/TagResourceCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/UntagResourceCommand.ts b/clients/client-networkflowmonitor/src/commands/UntagResourceCommand.ts index 1ded9e5155b42..7b4e18ea455b8 100644 --- a/clients/client-networkflowmonitor/src/commands/UntagResourceCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/UntagResourceCommand.ts @@ -78,6 +78,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/UpdateMonitorCommand.ts b/clients/client-networkflowmonitor/src/commands/UpdateMonitorCommand.ts index b82658a7bad06..cfeeb91a86ae4 100644 --- a/clients/client-networkflowmonitor/src/commands/UpdateMonitorCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/UpdateMonitorCommand.ts @@ -118,6 +118,7 @@ export interface UpdateMonitorCommandOutput extends UpdateMonitorOutput, __Metad * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class UpdateMonitorCommand extends $Command diff --git a/clients/client-networkflowmonitor/src/commands/UpdateScopeCommand.ts b/clients/client-networkflowmonitor/src/commands/UpdateScopeCommand.ts index 40119a1b33326..5b63e49383996 100644 --- a/clients/client-networkflowmonitor/src/commands/UpdateScopeCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/UpdateScopeCommand.ts @@ -105,6 +105,7 @@ export interface UpdateScopeCommandOutput extends UpdateScopeOutput, __MetadataB * @throws {@link NetworkFlowMonitorServiceException} *

Base exception class for all service exceptions from NetworkFlowMonitor service.

* + * * @public */ export class UpdateScopeCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/AcceptAttachmentCommand.ts b/clients/client-networkmanager/src/commands/AcceptAttachmentCommand.ts index 1396287225d7d..38c41c3d37d76 100644 --- a/clients/client-networkmanager/src/commands/AcceptAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/AcceptAttachmentCommand.ts @@ -127,6 +127,7 @@ export interface AcceptAttachmentCommandOutput extends AcceptAttachmentResponse, * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class AcceptAttachmentCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/AssociateConnectPeerCommand.ts b/clients/client-networkmanager/src/commands/AssociateConnectPeerCommand.ts index 90c478db21cf9..18b6810248002 100644 --- a/clients/client-networkmanager/src/commands/AssociateConnectPeerCommand.ts +++ b/clients/client-networkmanager/src/commands/AssociateConnectPeerCommand.ts @@ -89,6 +89,7 @@ export interface AssociateConnectPeerCommandOutput extends AssociateConnectPeerR * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class AssociateConnectPeerCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/AssociateCustomerGatewayCommand.ts b/clients/client-networkmanager/src/commands/AssociateCustomerGatewayCommand.ts index c633f44af8a2f..fa3a9973ace26 100644 --- a/clients/client-networkmanager/src/commands/AssociateCustomerGatewayCommand.ts +++ b/clients/client-networkmanager/src/commands/AssociateCustomerGatewayCommand.ts @@ -94,6 +94,7 @@ export interface AssociateCustomerGatewayCommandOutput extends AssociateCustomer * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class AssociateCustomerGatewayCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/AssociateLinkCommand.ts b/clients/client-networkmanager/src/commands/AssociateLinkCommand.ts index dee746091c91f..c6c897f3c86ba 100644 --- a/clients/client-networkmanager/src/commands/AssociateLinkCommand.ts +++ b/clients/client-networkmanager/src/commands/AssociateLinkCommand.ts @@ -84,6 +84,7 @@ export interface AssociateLinkCommandOutput extends AssociateLinkResponse, __Met * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class AssociateLinkCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/AssociateTransitGatewayConnectPeerCommand.ts b/clients/client-networkmanager/src/commands/AssociateTransitGatewayConnectPeerCommand.ts index a42bf52a273a0..d99c3df01e2a0 100644 --- a/clients/client-networkmanager/src/commands/AssociateTransitGatewayConnectPeerCommand.ts +++ b/clients/client-networkmanager/src/commands/AssociateTransitGatewayConnectPeerCommand.ts @@ -98,6 +98,7 @@ export interface AssociateTransitGatewayConnectPeerCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class AssociateTransitGatewayConnectPeerCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/CreateConnectAttachmentCommand.ts b/clients/client-networkmanager/src/commands/CreateConnectAttachmentCommand.ts index 60e0822172b11..e10d160c9e8ff 100644 --- a/clients/client-networkmanager/src/commands/CreateConnectAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateConnectAttachmentCommand.ts @@ -146,6 +146,7 @@ export interface CreateConnectAttachmentCommandOutput extends CreateConnectAttac * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class CreateConnectAttachmentCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/CreateConnectPeerCommand.ts b/clients/client-networkmanager/src/commands/CreateConnectPeerCommand.ts index 3798ae9cea8f3..004a69b5808e6 100644 --- a/clients/client-networkmanager/src/commands/CreateConnectPeerCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateConnectPeerCommand.ts @@ -129,6 +129,7 @@ export interface CreateConnectPeerCommandOutput extends CreateConnectPeerRespons * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class CreateConnectPeerCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/CreateConnectionCommand.ts b/clients/client-networkmanager/src/commands/CreateConnectionCommand.ts index 0b3b6ee0600fd..0315e46f7b61b 100644 --- a/clients/client-networkmanager/src/commands/CreateConnectionCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateConnectionCommand.ts @@ -102,6 +102,7 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse, * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class CreateConnectionCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/CreateCoreNetworkCommand.ts b/clients/client-networkmanager/src/commands/CreateCoreNetworkCommand.ts index 0e16bc1ad1e81..d3011942bd96f 100644 --- a/clients/client-networkmanager/src/commands/CreateCoreNetworkCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateCoreNetworkCommand.ts @@ -135,6 +135,7 @@ export interface CreateCoreNetworkCommandOutput extends CreateCoreNetworkRespons * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class CreateCoreNetworkCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/CreateDeviceCommand.ts b/clients/client-networkmanager/src/commands/CreateDeviceCommand.ts index 0642cf1c2ca0b..ac53f94040a89 100644 --- a/clients/client-networkmanager/src/commands/CreateDeviceCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateDeviceCommand.ts @@ -131,6 +131,7 @@ export interface CreateDeviceCommandOutput extends CreateDeviceResponse, __Metad * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class CreateDeviceCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/CreateDirectConnectGatewayAttachmentCommand.ts b/clients/client-networkmanager/src/commands/CreateDirectConnectGatewayAttachmentCommand.ts index 674f985b9525e..c95bcc33962f7 100644 --- a/clients/client-networkmanager/src/commands/CreateDirectConnectGatewayAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateDirectConnectGatewayAttachmentCommand.ts @@ -147,6 +147,7 @@ export interface CreateDirectConnectGatewayAttachmentCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class CreateDirectConnectGatewayAttachmentCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/CreateGlobalNetworkCommand.ts b/clients/client-networkmanager/src/commands/CreateGlobalNetworkCommand.ts index 205b6d0697cef..e53f004854f81 100644 --- a/clients/client-networkmanager/src/commands/CreateGlobalNetworkCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateGlobalNetworkCommand.ts @@ -92,6 +92,7 @@ export interface CreateGlobalNetworkCommandOutput extends CreateGlobalNetworkRes * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class CreateGlobalNetworkCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/CreateLinkCommand.ts b/clients/client-networkmanager/src/commands/CreateLinkCommand.ts index 830766fc9a05b..6b7efc4542e3e 100644 --- a/clients/client-networkmanager/src/commands/CreateLinkCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateLinkCommand.ts @@ -111,6 +111,7 @@ export interface CreateLinkCommandOutput extends CreateLinkResponse, __MetadataB * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class CreateLinkCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/CreateSiteCommand.ts b/clients/client-networkmanager/src/commands/CreateSiteCommand.ts index d1327c611a338..28053a4631aaa 100644 --- a/clients/client-networkmanager/src/commands/CreateSiteCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateSiteCommand.ts @@ -112,6 +112,7 @@ export interface CreateSiteCommandOutput extends CreateSiteResponse, __MetadataB * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class CreateSiteCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/CreateSiteToSiteVpnAttachmentCommand.ts b/clients/client-networkmanager/src/commands/CreateSiteToSiteVpnAttachmentCommand.ts index 271b269b2d321..d2263a27aadcd 100644 --- a/clients/client-networkmanager/src/commands/CreateSiteToSiteVpnAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateSiteToSiteVpnAttachmentCommand.ts @@ -141,6 +141,7 @@ export interface CreateSiteToSiteVpnAttachmentCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class CreateSiteToSiteVpnAttachmentCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/CreateTransitGatewayPeeringCommand.ts b/clients/client-networkmanager/src/commands/CreateTransitGatewayPeeringCommand.ts index 862a1e0872ed4..237e2c29b2000 100644 --- a/clients/client-networkmanager/src/commands/CreateTransitGatewayPeeringCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateTransitGatewayPeeringCommand.ts @@ -118,6 +118,7 @@ export interface CreateTransitGatewayPeeringCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class CreateTransitGatewayPeeringCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/CreateTransitGatewayRouteTableAttachmentCommand.ts b/clients/client-networkmanager/src/commands/CreateTransitGatewayRouteTableAttachmentCommand.ts index 599af5319591f..7eb07d1c3297b 100644 --- a/clients/client-networkmanager/src/commands/CreateTransitGatewayRouteTableAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateTransitGatewayRouteTableAttachmentCommand.ts @@ -146,6 +146,7 @@ export interface CreateTransitGatewayRouteTableAttachmentCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class CreateTransitGatewayRouteTableAttachmentCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/CreateVpcAttachmentCommand.ts b/clients/client-networkmanager/src/commands/CreateVpcAttachmentCommand.ts index 437ca31f98e76..8537730457069 100644 --- a/clients/client-networkmanager/src/commands/CreateVpcAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateVpcAttachmentCommand.ts @@ -149,6 +149,7 @@ export interface CreateVpcAttachmentCommandOutput extends CreateVpcAttachmentRes * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class CreateVpcAttachmentCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DeleteAttachmentCommand.ts b/clients/client-networkmanager/src/commands/DeleteAttachmentCommand.ts index a498ff9a3fc4a..6ea49a27612f6 100644 --- a/clients/client-networkmanager/src/commands/DeleteAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteAttachmentCommand.ts @@ -125,6 +125,7 @@ export interface DeleteAttachmentCommandOutput extends DeleteAttachmentResponse, * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DeleteAttachmentCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DeleteConnectPeerCommand.ts b/clients/client-networkmanager/src/commands/DeleteConnectPeerCommand.ts index 72ef11551bdcf..1230c191fe982 100644 --- a/clients/client-networkmanager/src/commands/DeleteConnectPeerCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteConnectPeerCommand.ts @@ -112,6 +112,7 @@ export interface DeleteConnectPeerCommandOutput extends DeleteConnectPeerRespons * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DeleteConnectPeerCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DeleteConnectionCommand.ts b/clients/client-networkmanager/src/commands/DeleteConnectionCommand.ts index f5041b3083b3a..6d5475e27c834 100644 --- a/clients/client-networkmanager/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteConnectionCommand.ts @@ -92,6 +92,7 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse, * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DeleteConnectionCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DeleteCoreNetworkCommand.ts b/clients/client-networkmanager/src/commands/DeleteCoreNetworkCommand.ts index 540a5ca761d8d..7e2411e575d19 100644 --- a/clients/client-networkmanager/src/commands/DeleteCoreNetworkCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteCoreNetworkCommand.ts @@ -123,6 +123,7 @@ export interface DeleteCoreNetworkCommandOutput extends DeleteCoreNetworkRespons * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DeleteCoreNetworkCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DeleteCoreNetworkPolicyVersionCommand.ts b/clients/client-networkmanager/src/commands/DeleteCoreNetworkPolicyVersionCommand.ts index 25851b3729332..8241392f03c39 100644 --- a/clients/client-networkmanager/src/commands/DeleteCoreNetworkPolicyVersionCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteCoreNetworkPolicyVersionCommand.ts @@ -95,6 +95,7 @@ export interface DeleteCoreNetworkPolicyVersionCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DeleteCoreNetworkPolicyVersionCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DeleteDeviceCommand.ts b/clients/client-networkmanager/src/commands/DeleteDeviceCommand.ts index c376432dbb958..29bd90e7966b0 100644 --- a/clients/client-networkmanager/src/commands/DeleteDeviceCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteDeviceCommand.ts @@ -103,6 +103,7 @@ export interface DeleteDeviceCommandOutput extends DeleteDeviceResponse, __Metad * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DeleteDeviceCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DeleteGlobalNetworkCommand.ts b/clients/client-networkmanager/src/commands/DeleteGlobalNetworkCommand.ts index fa9d10568a1a8..d463c7908affc 100644 --- a/clients/client-networkmanager/src/commands/DeleteGlobalNetworkCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteGlobalNetworkCommand.ts @@ -87,6 +87,7 @@ export interface DeleteGlobalNetworkCommandOutput extends DeleteGlobalNetworkRes * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DeleteGlobalNetworkCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DeleteLinkCommand.ts b/clients/client-networkmanager/src/commands/DeleteLinkCommand.ts index 622e169f13ddb..6b5af50a539e7 100644 --- a/clients/client-networkmanager/src/commands/DeleteLinkCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteLinkCommand.ts @@ -96,6 +96,7 @@ export interface DeleteLinkCommandOutput extends DeleteLinkResponse, __MetadataB * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DeleteLinkCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DeletePeeringCommand.ts b/clients/client-networkmanager/src/commands/DeletePeeringCommand.ts index 71d505a551a6d..0e24b447deeaf 100644 --- a/clients/client-networkmanager/src/commands/DeletePeeringCommand.ts +++ b/clients/client-networkmanager/src/commands/DeletePeeringCommand.ts @@ -101,6 +101,7 @@ export interface DeletePeeringCommandOutput extends DeletePeeringResponse, __Met * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DeletePeeringCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-networkmanager/src/commands/DeleteResourcePolicyCommand.ts index 269982376476d..d4040fb578887 100644 --- a/clients/client-networkmanager/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteResourcePolicyCommand.ts @@ -69,6 +69,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DeleteSiteCommand.ts b/clients/client-networkmanager/src/commands/DeleteSiteCommand.ts index b8da4212932c4..c96704c5e4bed 100644 --- a/clients/client-networkmanager/src/commands/DeleteSiteCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteSiteCommand.ts @@ -93,6 +93,7 @@ export interface DeleteSiteCommandOutput extends DeleteSiteResponse, __MetadataB * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DeleteSiteCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DeregisterTransitGatewayCommand.ts b/clients/client-networkmanager/src/commands/DeregisterTransitGatewayCommand.ts index 3df446f80e46b..d2386fdd71aee 100644 --- a/clients/client-networkmanager/src/commands/DeregisterTransitGatewayCommand.ts +++ b/clients/client-networkmanager/src/commands/DeregisterTransitGatewayCommand.ts @@ -83,6 +83,7 @@ export interface DeregisterTransitGatewayCommandOutput extends DeregisterTransit * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DeregisterTransitGatewayCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DescribeGlobalNetworksCommand.ts b/clients/client-networkmanager/src/commands/DescribeGlobalNetworksCommand.ts index 10f62bc61ff99..2e50eafb7c12a 100644 --- a/clients/client-networkmanager/src/commands/DescribeGlobalNetworksCommand.ts +++ b/clients/client-networkmanager/src/commands/DescribeGlobalNetworksCommand.ts @@ -92,6 +92,7 @@ export interface DescribeGlobalNetworksCommandOutput extends DescribeGlobalNetwo * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DescribeGlobalNetworksCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DisassociateConnectPeerCommand.ts b/clients/client-networkmanager/src/commands/DisassociateConnectPeerCommand.ts index 4165a0ab120f6..7de5ac7950aa2 100644 --- a/clients/client-networkmanager/src/commands/DisassociateConnectPeerCommand.ts +++ b/clients/client-networkmanager/src/commands/DisassociateConnectPeerCommand.ts @@ -81,6 +81,7 @@ export interface DisassociateConnectPeerCommandOutput extends DisassociateConnec * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DisassociateConnectPeerCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DisassociateCustomerGatewayCommand.ts b/clients/client-networkmanager/src/commands/DisassociateCustomerGatewayCommand.ts index 8bf6ee787651c..dc4e14bca087c 100644 --- a/clients/client-networkmanager/src/commands/DisassociateCustomerGatewayCommand.ts +++ b/clients/client-networkmanager/src/commands/DisassociateCustomerGatewayCommand.ts @@ -86,6 +86,7 @@ export interface DisassociateCustomerGatewayCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DisassociateCustomerGatewayCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DisassociateLinkCommand.ts b/clients/client-networkmanager/src/commands/DisassociateLinkCommand.ts index c0437c2815da5..f7fde99fd7deb 100644 --- a/clients/client-networkmanager/src/commands/DisassociateLinkCommand.ts +++ b/clients/client-networkmanager/src/commands/DisassociateLinkCommand.ts @@ -82,6 +82,7 @@ export interface DisassociateLinkCommandOutput extends DisassociateLinkResponse, * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DisassociateLinkCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/DisassociateTransitGatewayConnectPeerCommand.ts b/clients/client-networkmanager/src/commands/DisassociateTransitGatewayConnectPeerCommand.ts index 8ef03e38fad90..2e33a7fab34ab 100644 --- a/clients/client-networkmanager/src/commands/DisassociateTransitGatewayConnectPeerCommand.ts +++ b/clients/client-networkmanager/src/commands/DisassociateTransitGatewayConnectPeerCommand.ts @@ -90,6 +90,7 @@ export interface DisassociateTransitGatewayConnectPeerCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class DisassociateTransitGatewayConnectPeerCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/ExecuteCoreNetworkChangeSetCommand.ts b/clients/client-networkmanager/src/commands/ExecuteCoreNetworkChangeSetCommand.ts index 4b3f97e18362b..29040da50a79e 100644 --- a/clients/client-networkmanager/src/commands/ExecuteCoreNetworkChangeSetCommand.ts +++ b/clients/client-networkmanager/src/commands/ExecuteCoreNetworkChangeSetCommand.ts @@ -78,6 +78,7 @@ export interface ExecuteCoreNetworkChangeSetCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class ExecuteCoreNetworkChangeSetCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetConnectAttachmentCommand.ts b/clients/client-networkmanager/src/commands/GetConnectAttachmentCommand.ts index f92f6a23f05e7..b1c4c89c963f2 100644 --- a/clients/client-networkmanager/src/commands/GetConnectAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/GetConnectAttachmentCommand.ts @@ -127,6 +127,7 @@ export interface GetConnectAttachmentCommandOutput extends GetConnectAttachmentR * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetConnectAttachmentCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetConnectPeerAssociationsCommand.ts b/clients/client-networkmanager/src/commands/GetConnectPeerAssociationsCommand.ts index 68e8a1e3033e3..a1fdd33f88bc1 100644 --- a/clients/client-networkmanager/src/commands/GetConnectPeerAssociationsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetConnectPeerAssociationsCommand.ts @@ -88,6 +88,7 @@ export interface GetConnectPeerAssociationsCommandOutput extends GetConnectPeerA * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetConnectPeerAssociationsCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetConnectPeerCommand.ts b/clients/client-networkmanager/src/commands/GetConnectPeerCommand.ts index b5cd5be0b2ad7..c865e13b027ae 100644 --- a/clients/client-networkmanager/src/commands/GetConnectPeerCommand.ts +++ b/clients/client-networkmanager/src/commands/GetConnectPeerCommand.ts @@ -108,6 +108,7 @@ export interface GetConnectPeerCommandOutput extends GetConnectPeerResponse, __M * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetConnectPeerCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetConnectionsCommand.ts b/clients/client-networkmanager/src/commands/GetConnectionsCommand.ts index d8ddd99870be3..84804cbd9ee5e 100644 --- a/clients/client-networkmanager/src/commands/GetConnectionsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetConnectionsCommand.ts @@ -96,6 +96,7 @@ export interface GetConnectionsCommandOutput extends GetConnectionsResponse, __M * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetConnectionsCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetCoreNetworkChangeEventsCommand.ts b/clients/client-networkmanager/src/commands/GetCoreNetworkChangeEventsCommand.ts index 2459ac6f2bfe4..4e6e5cac72f92 100644 --- a/clients/client-networkmanager/src/commands/GetCoreNetworkChangeEventsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetCoreNetworkChangeEventsCommand.ts @@ -89,6 +89,7 @@ export interface GetCoreNetworkChangeEventsCommandOutput extends GetCoreNetworkC * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetCoreNetworkChangeEventsCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetCoreNetworkChangeSetCommand.ts b/clients/client-networkmanager/src/commands/GetCoreNetworkChangeSetCommand.ts index c994e96bbe722..f595f3bbc94bf 100644 --- a/clients/client-networkmanager/src/commands/GetCoreNetworkChangeSetCommand.ts +++ b/clients/client-networkmanager/src/commands/GetCoreNetworkChangeSetCommand.ts @@ -169,6 +169,7 @@ export interface GetCoreNetworkChangeSetCommandOutput extends GetCoreNetworkChan * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetCoreNetworkChangeSetCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetCoreNetworkCommand.ts b/clients/client-networkmanager/src/commands/GetCoreNetworkCommand.ts index 6814b67dd83e9..11a1d24fac532 100644 --- a/clients/client-networkmanager/src/commands/GetCoreNetworkCommand.ts +++ b/clients/client-networkmanager/src/commands/GetCoreNetworkCommand.ts @@ -119,6 +119,7 @@ export interface GetCoreNetworkCommandOutput extends GetCoreNetworkResponse, __M * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetCoreNetworkCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetCoreNetworkPolicyCommand.ts b/clients/client-networkmanager/src/commands/GetCoreNetworkPolicyCommand.ts index 7471ca568ac05..c010f6c40b561 100644 --- a/clients/client-networkmanager/src/commands/GetCoreNetworkPolicyCommand.ts +++ b/clients/client-networkmanager/src/commands/GetCoreNetworkPolicyCommand.ts @@ -87,6 +87,7 @@ export interface GetCoreNetworkPolicyCommandOutput extends GetCoreNetworkPolicyR * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetCoreNetworkPolicyCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetCustomerGatewayAssociationsCommand.ts b/clients/client-networkmanager/src/commands/GetCustomerGatewayAssociationsCommand.ts index 8f08c0f400168..cb5200d628289 100644 --- a/clients/client-networkmanager/src/commands/GetCustomerGatewayAssociationsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetCustomerGatewayAssociationsCommand.ts @@ -94,6 +94,7 @@ export interface GetCustomerGatewayAssociationsCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetCustomerGatewayAssociationsCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetDevicesCommand.ts b/clients/client-networkmanager/src/commands/GetDevicesCommand.ts index b58de1ab0772c..1c3cb228fad79 100644 --- a/clients/client-networkmanager/src/commands/GetDevicesCommand.ts +++ b/clients/client-networkmanager/src/commands/GetDevicesCommand.ts @@ -106,6 +106,7 @@ export interface GetDevicesCommandOutput extends GetDevicesResponse, __MetadataB * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetDevicesCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetDirectConnectGatewayAttachmentCommand.ts b/clients/client-networkmanager/src/commands/GetDirectConnectGatewayAttachmentCommand.ts index 50af18bc39c36..cacae3632f48f 100644 --- a/clients/client-networkmanager/src/commands/GetDirectConnectGatewayAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/GetDirectConnectGatewayAttachmentCommand.ts @@ -132,6 +132,7 @@ export interface GetDirectConnectGatewayAttachmentCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetDirectConnectGatewayAttachmentCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetLinkAssociationsCommand.ts b/clients/client-networkmanager/src/commands/GetLinkAssociationsCommand.ts index 8639602a88fc6..c3e2093faaf4a 100644 --- a/clients/client-networkmanager/src/commands/GetLinkAssociationsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetLinkAssociationsCommand.ts @@ -83,6 +83,7 @@ export interface GetLinkAssociationsCommandOutput extends GetLinkAssociationsRes * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetLinkAssociationsCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetLinksCommand.ts b/clients/client-networkmanager/src/commands/GetLinksCommand.ts index 06ef87c683769..50c311eda0cdb 100644 --- a/clients/client-networkmanager/src/commands/GetLinksCommand.ts +++ b/clients/client-networkmanager/src/commands/GetLinksCommand.ts @@ -102,6 +102,7 @@ export interface GetLinksCommandOutput extends GetLinksResponse, __MetadataBeare * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetLinksCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetNetworkResourceCountsCommand.ts b/clients/client-networkmanager/src/commands/GetNetworkResourceCountsCommand.ts index 0dbe6f98dfe36..7183544731216 100644 --- a/clients/client-networkmanager/src/commands/GetNetworkResourceCountsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetNetworkResourceCountsCommand.ts @@ -76,6 +76,7 @@ export interface GetNetworkResourceCountsCommandOutput extends GetNetworkResourc * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetNetworkResourceCountsCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetNetworkResourceRelationshipsCommand.ts b/clients/client-networkmanager/src/commands/GetNetworkResourceRelationshipsCommand.ts index 83d568756ecf3..dd320aad9ea7f 100644 --- a/clients/client-networkmanager/src/commands/GetNetworkResourceRelationshipsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetNetworkResourceRelationshipsCommand.ts @@ -89,6 +89,7 @@ export interface GetNetworkResourceRelationshipsCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetNetworkResourceRelationshipsCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetNetworkResourcesCommand.ts b/clients/client-networkmanager/src/commands/GetNetworkResourcesCommand.ts index ffadf58cfe245..93810d1b348bb 100644 --- a/clients/client-networkmanager/src/commands/GetNetworkResourcesCommand.ts +++ b/clients/client-networkmanager/src/commands/GetNetworkResourcesCommand.ts @@ -101,6 +101,7 @@ export interface GetNetworkResourcesCommandOutput extends GetNetworkResourcesRes * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetNetworkResourcesCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetNetworkRoutesCommand.ts b/clients/client-networkmanager/src/commands/GetNetworkRoutesCommand.ts index a8c14285e9503..64b6dc69b86d0 100644 --- a/clients/client-networkmanager/src/commands/GetNetworkRoutesCommand.ts +++ b/clients/client-networkmanager/src/commands/GetNetworkRoutesCommand.ts @@ -135,6 +135,7 @@ export interface GetNetworkRoutesCommandOutput extends GetNetworkRoutesResponse, * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetNetworkRoutesCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetNetworkTelemetryCommand.ts b/clients/client-networkmanager/src/commands/GetNetworkTelemetryCommand.ts index 653f44dd3eb9c..c83266fa73676 100644 --- a/clients/client-networkmanager/src/commands/GetNetworkTelemetryCommand.ts +++ b/clients/client-networkmanager/src/commands/GetNetworkTelemetryCommand.ts @@ -95,6 +95,7 @@ export interface GetNetworkTelemetryCommandOutput extends GetNetworkTelemetryRes * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetNetworkTelemetryCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetResourcePolicyCommand.ts b/clients/client-networkmanager/src/commands/GetResourcePolicyCommand.ts index ff95444b99aba..a714f65696d22 100644 --- a/clients/client-networkmanager/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-networkmanager/src/commands/GetResourcePolicyCommand.ts @@ -67,6 +67,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetRouteAnalysisCommand.ts b/clients/client-networkmanager/src/commands/GetRouteAnalysisCommand.ts index 776dd1e474cc9..0e89e54ecacc7 100644 --- a/clients/client-networkmanager/src/commands/GetRouteAnalysisCommand.ts +++ b/clients/client-networkmanager/src/commands/GetRouteAnalysisCommand.ts @@ -135,6 +135,7 @@ export interface GetRouteAnalysisCommandOutput extends GetRouteAnalysisResponse, * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetRouteAnalysisCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetSiteToSiteVpnAttachmentCommand.ts b/clients/client-networkmanager/src/commands/GetSiteToSiteVpnAttachmentCommand.ts index 8ebbf4baa48e3..cb022feeae128 100644 --- a/clients/client-networkmanager/src/commands/GetSiteToSiteVpnAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/GetSiteToSiteVpnAttachmentCommand.ts @@ -124,6 +124,7 @@ export interface GetSiteToSiteVpnAttachmentCommandOutput extends GetSiteToSiteVp * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetSiteToSiteVpnAttachmentCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetSitesCommand.ts b/clients/client-networkmanager/src/commands/GetSitesCommand.ts index 3b3f0d084aa1c..3f4d72bb7b8a3 100644 --- a/clients/client-networkmanager/src/commands/GetSitesCommand.ts +++ b/clients/client-networkmanager/src/commands/GetSitesCommand.ts @@ -96,6 +96,7 @@ export interface GetSitesCommandOutput extends GetSitesResponse, __MetadataBeare * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetSitesCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetTransitGatewayConnectPeerAssociationsCommand.ts b/clients/client-networkmanager/src/commands/GetTransitGatewayConnectPeerAssociationsCommand.ts index c5bbfb85851ce..6d00ec12c7e83 100644 --- a/clients/client-networkmanager/src/commands/GetTransitGatewayConnectPeerAssociationsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetTransitGatewayConnectPeerAssociationsCommand.ts @@ -97,6 +97,7 @@ export interface GetTransitGatewayConnectPeerAssociationsCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetTransitGatewayConnectPeerAssociationsCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetTransitGatewayPeeringCommand.ts b/clients/client-networkmanager/src/commands/GetTransitGatewayPeeringCommand.ts index 85d0ea1ff31d8..8bb6b6fa91cd7 100644 --- a/clients/client-networkmanager/src/commands/GetTransitGatewayPeeringCommand.ts +++ b/clients/client-networkmanager/src/commands/GetTransitGatewayPeeringCommand.ts @@ -101,6 +101,7 @@ export interface GetTransitGatewayPeeringCommandOutput extends GetTransitGateway * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetTransitGatewayPeeringCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetTransitGatewayRegistrationsCommand.ts b/clients/client-networkmanager/src/commands/GetTransitGatewayRegistrationsCommand.ts index d3322564c347d..82140347eabf7 100644 --- a/clients/client-networkmanager/src/commands/GetTransitGatewayRegistrationsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetTransitGatewayRegistrationsCommand.ts @@ -91,6 +91,7 @@ export interface GetTransitGatewayRegistrationsCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetTransitGatewayRegistrationsCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetTransitGatewayRouteTableAttachmentCommand.ts b/clients/client-networkmanager/src/commands/GetTransitGatewayRouteTableAttachmentCommand.ts index 326068bb1cb1b..7fb389252cb59 100644 --- a/clients/client-networkmanager/src/commands/GetTransitGatewayRouteTableAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/GetTransitGatewayRouteTableAttachmentCommand.ts @@ -134,6 +134,7 @@ export interface GetTransitGatewayRouteTableAttachmentCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetTransitGatewayRouteTableAttachmentCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/GetVpcAttachmentCommand.ts b/clients/client-networkmanager/src/commands/GetVpcAttachmentCommand.ts index 90c413201c00f..a299026d6c7ad 100644 --- a/clients/client-networkmanager/src/commands/GetVpcAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/GetVpcAttachmentCommand.ts @@ -130,6 +130,7 @@ export interface GetVpcAttachmentCommandOutput extends GetVpcAttachmentResponse, * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class GetVpcAttachmentCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/ListAttachmentsCommand.ts b/clients/client-networkmanager/src/commands/ListAttachmentsCommand.ts index 295a1a6f39728..b3db5966482f6 100644 --- a/clients/client-networkmanager/src/commands/ListAttachmentsCommand.ts +++ b/clients/client-networkmanager/src/commands/ListAttachmentsCommand.ts @@ -126,6 +126,7 @@ export interface ListAttachmentsCommandOutput extends ListAttachmentsResponse, _ * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class ListAttachmentsCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/ListConnectPeersCommand.ts b/clients/client-networkmanager/src/commands/ListConnectPeersCommand.ts index ac4079f6021a7..dc0d5bee54d42 100644 --- a/clients/client-networkmanager/src/commands/ListConnectPeersCommand.ts +++ b/clients/client-networkmanager/src/commands/ListConnectPeersCommand.ts @@ -87,6 +87,7 @@ export interface ListConnectPeersCommandOutput extends ListConnectPeersResponse, * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class ListConnectPeersCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/ListCoreNetworkPolicyVersionsCommand.ts b/clients/client-networkmanager/src/commands/ListCoreNetworkPolicyVersionsCommand.ts index 8663d3cb07e1e..e34b80dfaec11 100644 --- a/clients/client-networkmanager/src/commands/ListCoreNetworkPolicyVersionsCommand.ts +++ b/clients/client-networkmanager/src/commands/ListCoreNetworkPolicyVersionsCommand.ts @@ -87,6 +87,7 @@ export interface ListCoreNetworkPolicyVersionsCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class ListCoreNetworkPolicyVersionsCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/ListCoreNetworksCommand.ts b/clients/client-networkmanager/src/commands/ListCoreNetworksCommand.ts index 968cbd9b4797f..81e957e4df757 100644 --- a/clients/client-networkmanager/src/commands/ListCoreNetworksCommand.ts +++ b/clients/client-networkmanager/src/commands/ListCoreNetworksCommand.ts @@ -84,6 +84,7 @@ export interface ListCoreNetworksCommandOutput extends ListCoreNetworksResponse, * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class ListCoreNetworksCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/ListOrganizationServiceAccessStatusCommand.ts b/clients/client-networkmanager/src/commands/ListOrganizationServiceAccessStatusCommand.ts index a4c30422ec0b1..103cf74af7b73 100644 --- a/clients/client-networkmanager/src/commands/ListOrganizationServiceAccessStatusCommand.ts +++ b/clients/client-networkmanager/src/commands/ListOrganizationServiceAccessStatusCommand.ts @@ -75,6 +75,7 @@ export interface ListOrganizationServiceAccessStatusCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class ListOrganizationServiceAccessStatusCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/ListPeeringsCommand.ts b/clients/client-networkmanager/src/commands/ListPeeringsCommand.ts index c770677e388a6..4452700c7a99f 100644 --- a/clients/client-networkmanager/src/commands/ListPeeringsCommand.ts +++ b/clients/client-networkmanager/src/commands/ListPeeringsCommand.ts @@ -102,6 +102,7 @@ export interface ListPeeringsCommandOutput extends ListPeeringsResponse, __Metad * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class ListPeeringsCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/ListTagsForResourceCommand.ts b/clients/client-networkmanager/src/commands/ListTagsForResourceCommand.ts index 9607e1c92d485..a8b061c41a7b0 100644 --- a/clients/client-networkmanager/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-networkmanager/src/commands/ListTagsForResourceCommand.ts @@ -75,6 +75,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/PutCoreNetworkPolicyCommand.ts b/clients/client-networkmanager/src/commands/PutCoreNetworkPolicyCommand.ts index bf68642f20a35..c84ef00cc77da 100644 --- a/clients/client-networkmanager/src/commands/PutCoreNetworkPolicyCommand.ts +++ b/clients/client-networkmanager/src/commands/PutCoreNetworkPolicyCommand.ts @@ -96,6 +96,7 @@ export interface PutCoreNetworkPolicyCommandOutput extends PutCoreNetworkPolicyR * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class PutCoreNetworkPolicyCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/PutResourcePolicyCommand.ts b/clients/client-networkmanager/src/commands/PutResourcePolicyCommand.ts index dbea40bfe5b91..3c12a4c316349 100644 --- a/clients/client-networkmanager/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-networkmanager/src/commands/PutResourcePolicyCommand.ts @@ -73,6 +73,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/RegisterTransitGatewayCommand.ts b/clients/client-networkmanager/src/commands/RegisterTransitGatewayCommand.ts index 5efa47d428618..e75a86e6c6b8c 100644 --- a/clients/client-networkmanager/src/commands/RegisterTransitGatewayCommand.ts +++ b/clients/client-networkmanager/src/commands/RegisterTransitGatewayCommand.ts @@ -86,6 +86,7 @@ export interface RegisterTransitGatewayCommandOutput extends RegisterTransitGate * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class RegisterTransitGatewayCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/RejectAttachmentCommand.ts b/clients/client-networkmanager/src/commands/RejectAttachmentCommand.ts index 335de214e7992..0e1ed86c3c8f7 100644 --- a/clients/client-networkmanager/src/commands/RejectAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/RejectAttachmentCommand.ts @@ -125,6 +125,7 @@ export interface RejectAttachmentCommandOutput extends RejectAttachmentResponse, * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class RejectAttachmentCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/RestoreCoreNetworkPolicyVersionCommand.ts b/clients/client-networkmanager/src/commands/RestoreCoreNetworkPolicyVersionCommand.ts index e102e5a4541ec..2efb573e87349 100644 --- a/clients/client-networkmanager/src/commands/RestoreCoreNetworkPolicyVersionCommand.ts +++ b/clients/client-networkmanager/src/commands/RestoreCoreNetworkPolicyVersionCommand.ts @@ -95,6 +95,7 @@ export interface RestoreCoreNetworkPolicyVersionCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class RestoreCoreNetworkPolicyVersionCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/StartOrganizationServiceAccessUpdateCommand.ts b/clients/client-networkmanager/src/commands/StartOrganizationServiceAccessUpdateCommand.ts index 1c28ea968bfeb..c7cd206e52d16 100644 --- a/clients/client-networkmanager/src/commands/StartOrganizationServiceAccessUpdateCommand.ts +++ b/clients/client-networkmanager/src/commands/StartOrganizationServiceAccessUpdateCommand.ts @@ -92,6 +92,7 @@ export interface StartOrganizationServiceAccessUpdateCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class StartOrganizationServiceAccessUpdateCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/StartRouteAnalysisCommand.ts b/clients/client-networkmanager/src/commands/StartRouteAnalysisCommand.ts index d53ca735bedfa..7281ef38c680e 100644 --- a/clients/client-networkmanager/src/commands/StartRouteAnalysisCommand.ts +++ b/clients/client-networkmanager/src/commands/StartRouteAnalysisCommand.ts @@ -149,6 +149,7 @@ export interface StartRouteAnalysisCommandOutput extends StartRouteAnalysisRespo * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class StartRouteAnalysisCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/TagResourceCommand.ts b/clients/client-networkmanager/src/commands/TagResourceCommand.ts index 3a2e5f1d93f60..2be9f14cdd630 100644 --- a/clients/client-networkmanager/src/commands/TagResourceCommand.ts +++ b/clients/client-networkmanager/src/commands/TagResourceCommand.ts @@ -81,6 +81,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/UntagResourceCommand.ts b/clients/client-networkmanager/src/commands/UntagResourceCommand.ts index 396667ec39d9e..1f279ad50aea1 100644 --- a/clients/client-networkmanager/src/commands/UntagResourceCommand.ts +++ b/clients/client-networkmanager/src/commands/UntagResourceCommand.ts @@ -75,6 +75,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/UpdateConnectionCommand.ts b/clients/client-networkmanager/src/commands/UpdateConnectionCommand.ts index 3a1a185d6a5e8..73818775daf96 100644 --- a/clients/client-networkmanager/src/commands/UpdateConnectionCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateConnectionCommand.ts @@ -96,6 +96,7 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse, * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class UpdateConnectionCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/UpdateCoreNetworkCommand.ts b/clients/client-networkmanager/src/commands/UpdateCoreNetworkCommand.ts index 497cf6971b7d5..9c6aff96dfecd 100644 --- a/clients/client-networkmanager/src/commands/UpdateCoreNetworkCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateCoreNetworkCommand.ts @@ -124,6 +124,7 @@ export interface UpdateCoreNetworkCommandOutput extends UpdateCoreNetworkRespons * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class UpdateCoreNetworkCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/UpdateDeviceCommand.ts b/clients/client-networkmanager/src/commands/UpdateDeviceCommand.ts index 67ba45112234a..958ccc727ba73 100644 --- a/clients/client-networkmanager/src/commands/UpdateDeviceCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateDeviceCommand.ts @@ -123,6 +123,7 @@ export interface UpdateDeviceCommandOutput extends UpdateDeviceResponse, __Metad * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class UpdateDeviceCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/UpdateDirectConnectGatewayAttachmentCommand.ts b/clients/client-networkmanager/src/commands/UpdateDirectConnectGatewayAttachmentCommand.ts index e2a24df487aac..bfd3dc36249f1 100644 --- a/clients/client-networkmanager/src/commands/UpdateDirectConnectGatewayAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateDirectConnectGatewayAttachmentCommand.ts @@ -139,6 +139,7 @@ export interface UpdateDirectConnectGatewayAttachmentCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class UpdateDirectConnectGatewayAttachmentCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/UpdateGlobalNetworkCommand.ts b/clients/client-networkmanager/src/commands/UpdateGlobalNetworkCommand.ts index 6ae4bd116c8cb..3ad217a881847 100644 --- a/clients/client-networkmanager/src/commands/UpdateGlobalNetworkCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateGlobalNetworkCommand.ts @@ -88,6 +88,7 @@ export interface UpdateGlobalNetworkCommandOutput extends UpdateGlobalNetworkRes * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class UpdateGlobalNetworkCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/UpdateLinkCommand.ts b/clients/client-networkmanager/src/commands/UpdateLinkCommand.ts index e623128f02cfa..04d5abf1f0d54 100644 --- a/clients/client-networkmanager/src/commands/UpdateLinkCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateLinkCommand.ts @@ -106,6 +106,7 @@ export interface UpdateLinkCommandOutput extends UpdateLinkResponse, __MetadataB * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class UpdateLinkCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/UpdateNetworkResourceMetadataCommand.ts b/clients/client-networkmanager/src/commands/UpdateNetworkResourceMetadataCommand.ts index cda3391a51477..13bdb890aed5b 100644 --- a/clients/client-networkmanager/src/commands/UpdateNetworkResourceMetadataCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateNetworkResourceMetadataCommand.ts @@ -86,6 +86,7 @@ export interface UpdateNetworkResourceMetadataCommandOutput * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class UpdateNetworkResourceMetadataCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/UpdateSiteCommand.ts b/clients/client-networkmanager/src/commands/UpdateSiteCommand.ts index 7b99bf2964713..ab3de71833961 100644 --- a/clients/client-networkmanager/src/commands/UpdateSiteCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateSiteCommand.ts @@ -105,6 +105,7 @@ export interface UpdateSiteCommandOutput extends UpdateSiteResponse, __MetadataB * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class UpdateSiteCommand extends $Command diff --git a/clients/client-networkmanager/src/commands/UpdateVpcAttachmentCommand.ts b/clients/client-networkmanager/src/commands/UpdateVpcAttachmentCommand.ts index 13c05c3f7bc93..8d3c3de5159a9 100644 --- a/clients/client-networkmanager/src/commands/UpdateVpcAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateVpcAttachmentCommand.ts @@ -144,6 +144,7 @@ export interface UpdateVpcAttachmentCommandOutput extends UpdateVpcAttachmentRes * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* + * * @public */ export class UpdateVpcAttachmentCommand extends $Command diff --git a/clients/client-networkmonitor/src/commands/CreateMonitorCommand.ts b/clients/client-networkmonitor/src/commands/CreateMonitorCommand.ts index 011774337d0d0..5e338d1eb2928 100644 --- a/clients/client-networkmonitor/src/commands/CreateMonitorCommand.ts +++ b/clients/client-networkmonitor/src/commands/CreateMonitorCommand.ts @@ -128,6 +128,7 @@ export interface CreateMonitorCommandOutput extends CreateMonitorOutput, __Metad * @throws {@link NetworkMonitorServiceException} *

Base exception class for all service exceptions from NetworkMonitor service.

* + * * @public */ export class CreateMonitorCommand extends $Command diff --git a/clients/client-networkmonitor/src/commands/CreateProbeCommand.ts b/clients/client-networkmonitor/src/commands/CreateProbeCommand.ts index f148dedba57b7..b655b2feb4644 100644 --- a/clients/client-networkmonitor/src/commands/CreateProbeCommand.ts +++ b/clients/client-networkmonitor/src/commands/CreateProbeCommand.ts @@ -105,6 +105,7 @@ export interface CreateProbeCommandOutput extends CreateProbeOutput, __MetadataB * @throws {@link NetworkMonitorServiceException} *

Base exception class for all service exceptions from NetworkMonitor service.

* + * * @public */ export class CreateProbeCommand extends $Command diff --git a/clients/client-networkmonitor/src/commands/DeleteMonitorCommand.ts b/clients/client-networkmonitor/src/commands/DeleteMonitorCommand.ts index 4b30a8df857c5..04522b5a7f76d 100644 --- a/clients/client-networkmonitor/src/commands/DeleteMonitorCommand.ts +++ b/clients/client-networkmonitor/src/commands/DeleteMonitorCommand.ts @@ -70,6 +70,7 @@ export interface DeleteMonitorCommandOutput extends DeleteMonitorOutput, __Metad * @throws {@link NetworkMonitorServiceException} *

Base exception class for all service exceptions from NetworkMonitor service.

* + * * @public */ export class DeleteMonitorCommand extends $Command diff --git a/clients/client-networkmonitor/src/commands/DeleteProbeCommand.ts b/clients/client-networkmonitor/src/commands/DeleteProbeCommand.ts index d4398ba3aa20f..6c471faedadf1 100644 --- a/clients/client-networkmonitor/src/commands/DeleteProbeCommand.ts +++ b/clients/client-networkmonitor/src/commands/DeleteProbeCommand.ts @@ -77,6 +77,7 @@ export interface DeleteProbeCommandOutput extends DeleteProbeOutput, __MetadataB * @throws {@link NetworkMonitorServiceException} *

Base exception class for all service exceptions from NetworkMonitor service.

* + * * @public */ export class DeleteProbeCommand extends $Command diff --git a/clients/client-networkmonitor/src/commands/GetMonitorCommand.ts b/clients/client-networkmonitor/src/commands/GetMonitorCommand.ts index 46c04f48569d0..dd246802d64bc 100644 --- a/clients/client-networkmonitor/src/commands/GetMonitorCommand.ts +++ b/clients/client-networkmonitor/src/commands/GetMonitorCommand.ts @@ -99,6 +99,7 @@ export interface GetMonitorCommandOutput extends GetMonitorOutput, __MetadataBea * @throws {@link NetworkMonitorServiceException} *

Base exception class for all service exceptions from NetworkMonitor service.

* + * * @public */ export class GetMonitorCommand extends $Command diff --git a/clients/client-networkmonitor/src/commands/GetProbeCommand.ts b/clients/client-networkmonitor/src/commands/GetProbeCommand.ts index b0430d311dbab..e10e8f5722d3b 100644 --- a/clients/client-networkmonitor/src/commands/GetProbeCommand.ts +++ b/clients/client-networkmonitor/src/commands/GetProbeCommand.ts @@ -88,6 +88,7 @@ export interface GetProbeCommandOutput extends GetProbeOutput, __MetadataBearer * @throws {@link NetworkMonitorServiceException} *

Base exception class for all service exceptions from NetworkMonitor service.

* + * * @public */ export class GetProbeCommand extends $Command diff --git a/clients/client-networkmonitor/src/commands/ListMonitorsCommand.ts b/clients/client-networkmonitor/src/commands/ListMonitorsCommand.ts index ed6838f0f6de9..73e34b5941f7c 100644 --- a/clients/client-networkmonitor/src/commands/ListMonitorsCommand.ts +++ b/clients/client-networkmonitor/src/commands/ListMonitorsCommand.ts @@ -80,6 +80,7 @@ export interface ListMonitorsCommandOutput extends ListMonitorsOutput, __Metadat * @throws {@link NetworkMonitorServiceException} *

Base exception class for all service exceptions from NetworkMonitor service.

* + * * @public */ export class ListMonitorsCommand extends $Command diff --git a/clients/client-networkmonitor/src/commands/ListTagsForResourceCommand.ts b/clients/client-networkmonitor/src/commands/ListTagsForResourceCommand.ts index fa902d1ccde81..65d3bd8556ec1 100644 --- a/clients/client-networkmonitor/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-networkmonitor/src/commands/ListTagsForResourceCommand.ts @@ -75,6 +75,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link NetworkMonitorServiceException} *

Base exception class for all service exceptions from NetworkMonitor service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-networkmonitor/src/commands/TagResourceCommand.ts b/clients/client-networkmonitor/src/commands/TagResourceCommand.ts index d74fad3658eee..689f3d1235948 100644 --- a/clients/client-networkmonitor/src/commands/TagResourceCommand.ts +++ b/clients/client-networkmonitor/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link NetworkMonitorServiceException} *

Base exception class for all service exceptions from NetworkMonitor service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-networkmonitor/src/commands/UntagResourceCommand.ts b/clients/client-networkmonitor/src/commands/UntagResourceCommand.ts index 2285b89decec6..443137d0c903e 100644 --- a/clients/client-networkmonitor/src/commands/UntagResourceCommand.ts +++ b/clients/client-networkmonitor/src/commands/UntagResourceCommand.ts @@ -74,6 +74,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link NetworkMonitorServiceException} *

Base exception class for all service exceptions from NetworkMonitor service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-networkmonitor/src/commands/UpdateMonitorCommand.ts b/clients/client-networkmonitor/src/commands/UpdateMonitorCommand.ts index 40a18368ff615..8ea7f269d78f9 100644 --- a/clients/client-networkmonitor/src/commands/UpdateMonitorCommand.ts +++ b/clients/client-networkmonitor/src/commands/UpdateMonitorCommand.ts @@ -83,6 +83,7 @@ export interface UpdateMonitorCommandOutput extends UpdateMonitorOutput, __Metad * @throws {@link NetworkMonitorServiceException} *

Base exception class for all service exceptions from NetworkMonitor service.

* + * * @public */ export class UpdateMonitorCommand extends $Command diff --git a/clients/client-networkmonitor/src/commands/UpdateProbeCommand.ts b/clients/client-networkmonitor/src/commands/UpdateProbeCommand.ts index 0064bcd6c0a8a..0bc5c96beb57e 100644 --- a/clients/client-networkmonitor/src/commands/UpdateProbeCommand.ts +++ b/clients/client-networkmonitor/src/commands/UpdateProbeCommand.ts @@ -125,6 +125,7 @@ export interface UpdateProbeCommandOutput extends UpdateProbeOutput, __MetadataB * @throws {@link NetworkMonitorServiceException} *

Base exception class for all service exceptions from NetworkMonitor service.

* + * * @public */ export class UpdateProbeCommand extends $Command diff --git a/clients/client-notifications/src/commands/AssociateChannelCommand.ts b/clients/client-notifications/src/commands/AssociateChannelCommand.ts index 4665310ff9c9b..0b0e0fbae8af5 100644 --- a/clients/client-notifications/src/commands/AssociateChannelCommand.ts +++ b/clients/client-notifications/src/commands/AssociateChannelCommand.ts @@ -76,6 +76,7 @@ export interface AssociateChannelCommandOutput extends AssociateChannelResponse, * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class AssociateChannelCommand extends $Command diff --git a/clients/client-notifications/src/commands/AssociateManagedNotificationAccountContactCommand.ts b/clients/client-notifications/src/commands/AssociateManagedNotificationAccountContactCommand.ts index d084215d092df..a2e96f192573c 100644 --- a/clients/client-notifications/src/commands/AssociateManagedNotificationAccountContactCommand.ts +++ b/clients/client-notifications/src/commands/AssociateManagedNotificationAccountContactCommand.ts @@ -84,6 +84,7 @@ export interface AssociateManagedNotificationAccountContactCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class AssociateManagedNotificationAccountContactCommand extends $Command diff --git a/clients/client-notifications/src/commands/AssociateManagedNotificationAdditionalChannelCommand.ts b/clients/client-notifications/src/commands/AssociateManagedNotificationAdditionalChannelCommand.ts index 87a8ca3ba4b15..10da91975c369 100644 --- a/clients/client-notifications/src/commands/AssociateManagedNotificationAdditionalChannelCommand.ts +++ b/clients/client-notifications/src/commands/AssociateManagedNotificationAdditionalChannelCommand.ts @@ -85,6 +85,7 @@ export interface AssociateManagedNotificationAdditionalChannelCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class AssociateManagedNotificationAdditionalChannelCommand extends $Command diff --git a/clients/client-notifications/src/commands/CreateEventRuleCommand.ts b/clients/client-notifications/src/commands/CreateEventRuleCommand.ts index ae5ae498d2f8e..b888cd885cf1f 100644 --- a/clients/client-notifications/src/commands/CreateEventRuleCommand.ts +++ b/clients/client-notifications/src/commands/CreateEventRuleCommand.ts @@ -92,6 +92,7 @@ export interface CreateEventRuleCommandOutput extends CreateEventRuleResponse, _ * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class CreateEventRuleCommand extends $Command diff --git a/clients/client-notifications/src/commands/CreateNotificationConfigurationCommand.ts b/clients/client-notifications/src/commands/CreateNotificationConfigurationCommand.ts index 31d8d5b1cd800..84232972e2490 100644 --- a/clients/client-notifications/src/commands/CreateNotificationConfigurationCommand.ts +++ b/clients/client-notifications/src/commands/CreateNotificationConfigurationCommand.ts @@ -84,6 +84,7 @@ export interface CreateNotificationConfigurationCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class CreateNotificationConfigurationCommand extends $Command diff --git a/clients/client-notifications/src/commands/DeleteEventRuleCommand.ts b/clients/client-notifications/src/commands/DeleteEventRuleCommand.ts index 479c597e6f7b1..175f649af5b06 100644 --- a/clients/client-notifications/src/commands/DeleteEventRuleCommand.ts +++ b/clients/client-notifications/src/commands/DeleteEventRuleCommand.ts @@ -71,6 +71,7 @@ export interface DeleteEventRuleCommandOutput extends DeleteEventRuleResponse, _ * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class DeleteEventRuleCommand extends $Command diff --git a/clients/client-notifications/src/commands/DeleteNotificationConfigurationCommand.ts b/clients/client-notifications/src/commands/DeleteNotificationConfigurationCommand.ts index 97e46420cfeda..ae0326190316d 100644 --- a/clients/client-notifications/src/commands/DeleteNotificationConfigurationCommand.ts +++ b/clients/client-notifications/src/commands/DeleteNotificationConfigurationCommand.ts @@ -76,6 +76,7 @@ export interface DeleteNotificationConfigurationCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class DeleteNotificationConfigurationCommand extends $Command diff --git a/clients/client-notifications/src/commands/DeregisterNotificationHubCommand.ts b/clients/client-notifications/src/commands/DeregisterNotificationHubCommand.ts index 65fb86dcdbc20..932856be7665a 100644 --- a/clients/client-notifications/src/commands/DeregisterNotificationHubCommand.ts +++ b/clients/client-notifications/src/commands/DeregisterNotificationHubCommand.ts @@ -83,6 +83,7 @@ export interface DeregisterNotificationHubCommandOutput extends DeregisterNotifi * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class DeregisterNotificationHubCommand extends $Command diff --git a/clients/client-notifications/src/commands/DisableNotificationsAccessForOrganizationCommand.ts b/clients/client-notifications/src/commands/DisableNotificationsAccessForOrganizationCommand.ts index ef0968bd063bd..aac26865b3a93 100644 --- a/clients/client-notifications/src/commands/DisableNotificationsAccessForOrganizationCommand.ts +++ b/clients/client-notifications/src/commands/DisableNotificationsAccessForOrganizationCommand.ts @@ -81,6 +81,7 @@ export interface DisableNotificationsAccessForOrganizationCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class DisableNotificationsAccessForOrganizationCommand extends $Command diff --git a/clients/client-notifications/src/commands/DisassociateChannelCommand.ts b/clients/client-notifications/src/commands/DisassociateChannelCommand.ts index 40e5a8a7c44e1..3985a4913920b 100644 --- a/clients/client-notifications/src/commands/DisassociateChannelCommand.ts +++ b/clients/client-notifications/src/commands/DisassociateChannelCommand.ts @@ -69,6 +69,7 @@ export interface DisassociateChannelCommandOutput extends DisassociateChannelRes * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class DisassociateChannelCommand extends $Command diff --git a/clients/client-notifications/src/commands/DisassociateManagedNotificationAccountContactCommand.ts b/clients/client-notifications/src/commands/DisassociateManagedNotificationAccountContactCommand.ts index ab9af61e2a5d0..f0462d1daca53 100644 --- a/clients/client-notifications/src/commands/DisassociateManagedNotificationAccountContactCommand.ts +++ b/clients/client-notifications/src/commands/DisassociateManagedNotificationAccountContactCommand.ts @@ -81,6 +81,7 @@ export interface DisassociateManagedNotificationAccountContactCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class DisassociateManagedNotificationAccountContactCommand extends $Command diff --git a/clients/client-notifications/src/commands/DisassociateManagedNotificationAdditionalChannelCommand.ts b/clients/client-notifications/src/commands/DisassociateManagedNotificationAdditionalChannelCommand.ts index ae7f4f90fd161..df4b7cf76c5a8 100644 --- a/clients/client-notifications/src/commands/DisassociateManagedNotificationAdditionalChannelCommand.ts +++ b/clients/client-notifications/src/commands/DisassociateManagedNotificationAdditionalChannelCommand.ts @@ -79,6 +79,7 @@ export interface DisassociateManagedNotificationAdditionalChannelCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class DisassociateManagedNotificationAdditionalChannelCommand extends $Command diff --git a/clients/client-notifications/src/commands/EnableNotificationsAccessForOrganizationCommand.ts b/clients/client-notifications/src/commands/EnableNotificationsAccessForOrganizationCommand.ts index 9ed31a63de1ea..bd77c8fa587d9 100644 --- a/clients/client-notifications/src/commands/EnableNotificationsAccessForOrganizationCommand.ts +++ b/clients/client-notifications/src/commands/EnableNotificationsAccessForOrganizationCommand.ts @@ -81,6 +81,7 @@ export interface EnableNotificationsAccessForOrganizationCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class EnableNotificationsAccessForOrganizationCommand extends $Command diff --git a/clients/client-notifications/src/commands/GetEventRuleCommand.ts b/clients/client-notifications/src/commands/GetEventRuleCommand.ts index 8920080df64a5..bf00a9b599f27 100644 --- a/clients/client-notifications/src/commands/GetEventRuleCommand.ts +++ b/clients/client-notifications/src/commands/GetEventRuleCommand.ts @@ -87,6 +87,7 @@ export interface GetEventRuleCommandOutput extends GetEventRuleResponse, __Metad * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class GetEventRuleCommand extends $Command diff --git a/clients/client-notifications/src/commands/GetManagedNotificationChildEventCommand.ts b/clients/client-notifications/src/commands/GetManagedNotificationChildEventCommand.ts index b301010665edf..e7c39f27d13e2 100644 --- a/clients/client-notifications/src/commands/GetManagedNotificationChildEventCommand.ts +++ b/clients/client-notifications/src/commands/GetManagedNotificationChildEventCommand.ts @@ -119,6 +119,7 @@ export interface GetManagedNotificationChildEventCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class GetManagedNotificationChildEventCommand extends $Command diff --git a/clients/client-notifications/src/commands/GetManagedNotificationConfigurationCommand.ts b/clients/client-notifications/src/commands/GetManagedNotificationConfigurationCommand.ts index ae801dc830ee0..93eca356e98cb 100644 --- a/clients/client-notifications/src/commands/GetManagedNotificationConfigurationCommand.ts +++ b/clients/client-notifications/src/commands/GetManagedNotificationConfigurationCommand.ts @@ -82,6 +82,7 @@ export interface GetManagedNotificationConfigurationCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class GetManagedNotificationConfigurationCommand extends $Command diff --git a/clients/client-notifications/src/commands/GetManagedNotificationEventCommand.ts b/clients/client-notifications/src/commands/GetManagedNotificationEventCommand.ts index c17ce8b6cc168..edb6e6bac3e78 100644 --- a/clients/client-notifications/src/commands/GetManagedNotificationEventCommand.ts +++ b/clients/client-notifications/src/commands/GetManagedNotificationEventCommand.ts @@ -150,6 +150,7 @@ export interface GetManagedNotificationEventCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class GetManagedNotificationEventCommand extends $Command diff --git a/clients/client-notifications/src/commands/GetNotificationConfigurationCommand.ts b/clients/client-notifications/src/commands/GetNotificationConfigurationCommand.ts index edff0d7c01b06..655980352f030 100644 --- a/clients/client-notifications/src/commands/GetNotificationConfigurationCommand.ts +++ b/clients/client-notifications/src/commands/GetNotificationConfigurationCommand.ts @@ -80,6 +80,7 @@ export interface GetNotificationConfigurationCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class GetNotificationConfigurationCommand extends $Command diff --git a/clients/client-notifications/src/commands/GetNotificationEventCommand.ts b/clients/client-notifications/src/commands/GetNotificationEventCommand.ts index f4cb78697b6b6..8397ab7decf08 100644 --- a/clients/client-notifications/src/commands/GetNotificationEventCommand.ts +++ b/clients/client-notifications/src/commands/GetNotificationEventCommand.ts @@ -177,6 +177,7 @@ export interface GetNotificationEventCommandOutput extends GetNotificationEventR * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class GetNotificationEventCommand extends $Command diff --git a/clients/client-notifications/src/commands/GetNotificationsAccessForOrganizationCommand.ts b/clients/client-notifications/src/commands/GetNotificationsAccessForOrganizationCommand.ts index ab39e19a7193c..06f7076e3b58f 100644 --- a/clients/client-notifications/src/commands/GetNotificationsAccessForOrganizationCommand.ts +++ b/clients/client-notifications/src/commands/GetNotificationsAccessForOrganizationCommand.ts @@ -76,6 +76,7 @@ export interface GetNotificationsAccessForOrganizationCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class GetNotificationsAccessForOrganizationCommand extends $Command diff --git a/clients/client-notifications/src/commands/ListChannelsCommand.ts b/clients/client-notifications/src/commands/ListChannelsCommand.ts index a5093d43b8ce2..91f9477e5ff19 100644 --- a/clients/client-notifications/src/commands/ListChannelsCommand.ts +++ b/clients/client-notifications/src/commands/ListChannelsCommand.ts @@ -75,6 +75,7 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class ListChannelsCommand extends $Command diff --git a/clients/client-notifications/src/commands/ListEventRulesCommand.ts b/clients/client-notifications/src/commands/ListEventRulesCommand.ts index 1520d85f4fe3e..5d21434c5215c 100644 --- a/clients/client-notifications/src/commands/ListEventRulesCommand.ts +++ b/clients/client-notifications/src/commands/ListEventRulesCommand.ts @@ -94,6 +94,7 @@ export interface ListEventRulesCommandOutput extends ListEventRulesResponse, __M * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class ListEventRulesCommand extends $Command diff --git a/clients/client-notifications/src/commands/ListManagedNotificationChannelAssociationsCommand.ts b/clients/client-notifications/src/commands/ListManagedNotificationChannelAssociationsCommand.ts index 8beeaeac7aca7..e986a752769a7 100644 --- a/clients/client-notifications/src/commands/ListManagedNotificationChannelAssociationsCommand.ts +++ b/clients/client-notifications/src/commands/ListManagedNotificationChannelAssociationsCommand.ts @@ -88,6 +88,7 @@ export interface ListManagedNotificationChannelAssociationsCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class ListManagedNotificationChannelAssociationsCommand extends $Command diff --git a/clients/client-notifications/src/commands/ListManagedNotificationChildEventsCommand.ts b/clients/client-notifications/src/commands/ListManagedNotificationChildEventsCommand.ts index 7a0b9d1031096..eac77104a965a 100644 --- a/clients/client-notifications/src/commands/ListManagedNotificationChildEventsCommand.ts +++ b/clients/client-notifications/src/commands/ListManagedNotificationChildEventsCommand.ts @@ -113,6 +113,7 @@ export interface ListManagedNotificationChildEventsCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class ListManagedNotificationChildEventsCommand extends $Command diff --git a/clients/client-notifications/src/commands/ListManagedNotificationConfigurationsCommand.ts b/clients/client-notifications/src/commands/ListManagedNotificationConfigurationsCommand.ts index 8cc59b77065c5..cdabf8df90959 100644 --- a/clients/client-notifications/src/commands/ListManagedNotificationConfigurationsCommand.ts +++ b/clients/client-notifications/src/commands/ListManagedNotificationConfigurationsCommand.ts @@ -85,6 +85,7 @@ export interface ListManagedNotificationConfigurationsCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class ListManagedNotificationConfigurationsCommand extends $Command diff --git a/clients/client-notifications/src/commands/ListManagedNotificationEventsCommand.ts b/clients/client-notifications/src/commands/ListManagedNotificationEventsCommand.ts index 7afb92bfdd47b..0cfd2dd3b3852 100644 --- a/clients/client-notifications/src/commands/ListManagedNotificationEventsCommand.ts +++ b/clients/client-notifications/src/commands/ListManagedNotificationEventsCommand.ts @@ -144,6 +144,7 @@ export interface ListManagedNotificationEventsCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class ListManagedNotificationEventsCommand extends $Command diff --git a/clients/client-notifications/src/commands/ListNotificationConfigurationsCommand.ts b/clients/client-notifications/src/commands/ListNotificationConfigurationsCommand.ts index ce45522f063f8..ca5a98fd75801 100644 --- a/clients/client-notifications/src/commands/ListNotificationConfigurationsCommand.ts +++ b/clients/client-notifications/src/commands/ListNotificationConfigurationsCommand.ts @@ -87,6 +87,7 @@ export interface ListNotificationConfigurationsCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class ListNotificationConfigurationsCommand extends $Command diff --git a/clients/client-notifications/src/commands/ListNotificationEventsCommand.ts b/clients/client-notifications/src/commands/ListNotificationEventsCommand.ts index c6d377bd451b0..1ef411f0acc4f 100644 --- a/clients/client-notifications/src/commands/ListNotificationEventsCommand.ts +++ b/clients/client-notifications/src/commands/ListNotificationEventsCommand.ts @@ -141,6 +141,7 @@ export interface ListNotificationEventsCommandOutput extends ListNotificationEve * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class ListNotificationEventsCommand extends $Command diff --git a/clients/client-notifications/src/commands/ListNotificationHubsCommand.ts b/clients/client-notifications/src/commands/ListNotificationHubsCommand.ts index 60c6d3bc45502..da9fa019c15a4 100644 --- a/clients/client-notifications/src/commands/ListNotificationHubsCommand.ts +++ b/clients/client-notifications/src/commands/ListNotificationHubsCommand.ts @@ -79,6 +79,7 @@ export interface ListNotificationHubsCommandOutput extends ListNotificationHubsR * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class ListNotificationHubsCommand extends $Command diff --git a/clients/client-notifications/src/commands/ListTagsForResourceCommand.ts b/clients/client-notifications/src/commands/ListTagsForResourceCommand.ts index 65da3a87fb667..58fad3d44b462 100644 --- a/clients/client-notifications/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-notifications/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-notifications/src/commands/RegisterNotificationHubCommand.ts b/clients/client-notifications/src/commands/RegisterNotificationHubCommand.ts index c318b54a0110c..ebc24fed1fd47 100644 --- a/clients/client-notifications/src/commands/RegisterNotificationHubCommand.ts +++ b/clients/client-notifications/src/commands/RegisterNotificationHubCommand.ts @@ -81,6 +81,7 @@ export interface RegisterNotificationHubCommandOutput extends RegisterNotificati * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class RegisterNotificationHubCommand extends $Command diff --git a/clients/client-notifications/src/commands/TagResourceCommand.ts b/clients/client-notifications/src/commands/TagResourceCommand.ts index 94a84407c0a99..95abf5ce7fb77 100644 --- a/clients/client-notifications/src/commands/TagResourceCommand.ts +++ b/clients/client-notifications/src/commands/TagResourceCommand.ts @@ -75,6 +75,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-notifications/src/commands/UntagResourceCommand.ts b/clients/client-notifications/src/commands/UntagResourceCommand.ts index a9c6c38d439eb..ad278f7e00dac 100644 --- a/clients/client-notifications/src/commands/UntagResourceCommand.ts +++ b/clients/client-notifications/src/commands/UntagResourceCommand.ts @@ -72,6 +72,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-notifications/src/commands/UpdateEventRuleCommand.ts b/clients/client-notifications/src/commands/UpdateEventRuleCommand.ts index 5c96412f04c66..3549913f60d43 100644 --- a/clients/client-notifications/src/commands/UpdateEventRuleCommand.ts +++ b/clients/client-notifications/src/commands/UpdateEventRuleCommand.ts @@ -84,6 +84,7 @@ export interface UpdateEventRuleCommandOutput extends UpdateEventRuleResponse, _ * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class UpdateEventRuleCommand extends $Command diff --git a/clients/client-notifications/src/commands/UpdateNotificationConfigurationCommand.ts b/clients/client-notifications/src/commands/UpdateNotificationConfigurationCommand.ts index 90b1714fd3d17..739477dbe7864 100644 --- a/clients/client-notifications/src/commands/UpdateNotificationConfigurationCommand.ts +++ b/clients/client-notifications/src/commands/UpdateNotificationConfigurationCommand.ts @@ -81,6 +81,7 @@ export interface UpdateNotificationConfigurationCommandOutput * @throws {@link NotificationsServiceException} *

Base exception class for all service exceptions from Notifications service.

* + * * @public */ export class UpdateNotificationConfigurationCommand extends $Command diff --git a/clients/client-notificationscontacts/src/commands/ActivateEmailContactCommand.ts b/clients/client-notificationscontacts/src/commands/ActivateEmailContactCommand.ts index 7817771842ca8..d771cf4e79630 100644 --- a/clients/client-notificationscontacts/src/commands/ActivateEmailContactCommand.ts +++ b/clients/client-notificationscontacts/src/commands/ActivateEmailContactCommand.ts @@ -80,6 +80,7 @@ export interface ActivateEmailContactCommandOutput extends ActivateEmailContactR * @throws {@link NotificationsContactsServiceException} *

Base exception class for all service exceptions from NotificationsContacts service.

* + * * @public */ export class ActivateEmailContactCommand extends $Command diff --git a/clients/client-notificationscontacts/src/commands/CreateEmailContactCommand.ts b/clients/client-notificationscontacts/src/commands/CreateEmailContactCommand.ts index ec88124e5c5fd..36e25d06dc83d 100644 --- a/clients/client-notificationscontacts/src/commands/CreateEmailContactCommand.ts +++ b/clients/client-notificationscontacts/src/commands/CreateEmailContactCommand.ts @@ -85,6 +85,7 @@ export interface CreateEmailContactCommandOutput extends CreateEmailContactRespo * @throws {@link NotificationsContactsServiceException} *

Base exception class for all service exceptions from NotificationsContacts service.

* + * * @public */ export class CreateEmailContactCommand extends $Command diff --git a/clients/client-notificationscontacts/src/commands/DeleteEmailContactCommand.ts b/clients/client-notificationscontacts/src/commands/DeleteEmailContactCommand.ts index 56b5c5a1e9725..99c8280d11c01 100644 --- a/clients/client-notificationscontacts/src/commands/DeleteEmailContactCommand.ts +++ b/clients/client-notificationscontacts/src/commands/DeleteEmailContactCommand.ts @@ -78,6 +78,7 @@ export interface DeleteEmailContactCommandOutput extends DeleteEmailContactRespo * @throws {@link NotificationsContactsServiceException} *

Base exception class for all service exceptions from NotificationsContacts service.

* + * * @public */ export class DeleteEmailContactCommand extends $Command diff --git a/clients/client-notificationscontacts/src/commands/GetEmailContactCommand.ts b/clients/client-notificationscontacts/src/commands/GetEmailContactCommand.ts index deb0c3c556176..37449b1e9bb94 100644 --- a/clients/client-notificationscontacts/src/commands/GetEmailContactCommand.ts +++ b/clients/client-notificationscontacts/src/commands/GetEmailContactCommand.ts @@ -85,6 +85,7 @@ export interface GetEmailContactCommandOutput extends GetEmailContactResponse, _ * @throws {@link NotificationsContactsServiceException} *

Base exception class for all service exceptions from NotificationsContacts service.

* + * * @public */ export class GetEmailContactCommand extends $Command diff --git a/clients/client-notificationscontacts/src/commands/ListEmailContactsCommand.ts b/clients/client-notificationscontacts/src/commands/ListEmailContactsCommand.ts index 45c8169eb4349..dac60ba384131 100644 --- a/clients/client-notificationscontacts/src/commands/ListEmailContactsCommand.ts +++ b/clients/client-notificationscontacts/src/commands/ListEmailContactsCommand.ts @@ -86,6 +86,7 @@ export interface ListEmailContactsCommandOutput extends ListEmailContactsRespons * @throws {@link NotificationsContactsServiceException} *

Base exception class for all service exceptions from NotificationsContacts service.

* + * * @public */ export class ListEmailContactsCommand extends $Command diff --git a/clients/client-notificationscontacts/src/commands/ListTagsForResourceCommand.ts b/clients/client-notificationscontacts/src/commands/ListTagsForResourceCommand.ts index 6f55298ee9b0f..30810d1d11d38 100644 --- a/clients/client-notificationscontacts/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-notificationscontacts/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link NotificationsContactsServiceException} *

Base exception class for all service exceptions from NotificationsContacts service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-notificationscontacts/src/commands/SendActivationCodeCommand.ts b/clients/client-notificationscontacts/src/commands/SendActivationCodeCommand.ts index 07c16fd113916..9a10548c66797 100644 --- a/clients/client-notificationscontacts/src/commands/SendActivationCodeCommand.ts +++ b/clients/client-notificationscontacts/src/commands/SendActivationCodeCommand.ts @@ -78,6 +78,7 @@ export interface SendActivationCodeCommandOutput extends SendActivationCodeRespo * @throws {@link NotificationsContactsServiceException} *

Base exception class for all service exceptions from NotificationsContacts service.

* + * * @public */ export class SendActivationCodeCommand extends $Command diff --git a/clients/client-notificationscontacts/src/commands/TagResourceCommand.ts b/clients/client-notificationscontacts/src/commands/TagResourceCommand.ts index 2be1b5d468db0..f3dc7e75d2d65 100644 --- a/clients/client-notificationscontacts/src/commands/TagResourceCommand.ts +++ b/clients/client-notificationscontacts/src/commands/TagResourceCommand.ts @@ -75,6 +75,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link NotificationsContactsServiceException} *

Base exception class for all service exceptions from NotificationsContacts service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-notificationscontacts/src/commands/UntagResourceCommand.ts b/clients/client-notificationscontacts/src/commands/UntagResourceCommand.ts index cdc4835b2db18..b0377ba04deea 100644 --- a/clients/client-notificationscontacts/src/commands/UntagResourceCommand.ts +++ b/clients/client-notificationscontacts/src/commands/UntagResourceCommand.ts @@ -75,6 +75,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link NotificationsContactsServiceException} *

Base exception class for all service exceptions from NotificationsContacts service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-oam/src/commands/CreateLinkCommand.ts b/clients/client-oam/src/commands/CreateLinkCommand.ts index 959bc55036e02..42006576a8f21 100644 --- a/clients/client-oam/src/commands/CreateLinkCommand.ts +++ b/clients/client-oam/src/commands/CreateLinkCommand.ts @@ -114,6 +114,7 @@ export interface CreateLinkCommandOutput extends CreateLinkOutput, __MetadataBea * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class CreateLinkCommand extends $Command diff --git a/clients/client-oam/src/commands/CreateSinkCommand.ts b/clients/client-oam/src/commands/CreateSinkCommand.ts index a80591d363537..36352342e95fd 100644 --- a/clients/client-oam/src/commands/CreateSinkCommand.ts +++ b/clients/client-oam/src/commands/CreateSinkCommand.ts @@ -84,6 +84,7 @@ export interface CreateSinkCommandOutput extends CreateSinkOutput, __MetadataBea * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class CreateSinkCommand extends $Command diff --git a/clients/client-oam/src/commands/DeleteLinkCommand.ts b/clients/client-oam/src/commands/DeleteLinkCommand.ts index bc4d12f787801..b6b593a13a5f5 100644 --- a/clients/client-oam/src/commands/DeleteLinkCommand.ts +++ b/clients/client-oam/src/commands/DeleteLinkCommand.ts @@ -66,6 +66,7 @@ export interface DeleteLinkCommandOutput extends DeleteLinkOutput, __MetadataBea * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class DeleteLinkCommand extends $Command diff --git a/clients/client-oam/src/commands/DeleteSinkCommand.ts b/clients/client-oam/src/commands/DeleteSinkCommand.ts index 65327297e265d..8e05872866cd6 100644 --- a/clients/client-oam/src/commands/DeleteSinkCommand.ts +++ b/clients/client-oam/src/commands/DeleteSinkCommand.ts @@ -68,6 +68,7 @@ export interface DeleteSinkCommandOutput extends DeleteSinkOutput, __MetadataBea * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class DeleteSinkCommand extends $Command diff --git a/clients/client-oam/src/commands/GetLinkCommand.ts b/clients/client-oam/src/commands/GetLinkCommand.ts index 4c652cdb04337..8b4746de5f33e 100644 --- a/clients/client-oam/src/commands/GetLinkCommand.ts +++ b/clients/client-oam/src/commands/GetLinkCommand.ts @@ -86,6 +86,7 @@ export interface GetLinkCommandOutput extends GetLinkOutput, __MetadataBearer {} * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class GetLinkCommand extends $Command diff --git a/clients/client-oam/src/commands/GetSinkCommand.ts b/clients/client-oam/src/commands/GetSinkCommand.ts index 73509e04d70a4..b8ec16baa77ab 100644 --- a/clients/client-oam/src/commands/GetSinkCommand.ts +++ b/clients/client-oam/src/commands/GetSinkCommand.ts @@ -73,6 +73,7 @@ export interface GetSinkCommandOutput extends GetSinkOutput, __MetadataBearer {} * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class GetSinkCommand extends $Command diff --git a/clients/client-oam/src/commands/GetSinkPolicyCommand.ts b/clients/client-oam/src/commands/GetSinkPolicyCommand.ts index 5bff4bed3410d..08bb00f066605 100644 --- a/clients/client-oam/src/commands/GetSinkPolicyCommand.ts +++ b/clients/client-oam/src/commands/GetSinkPolicyCommand.ts @@ -70,6 +70,7 @@ export interface GetSinkPolicyCommandOutput extends GetSinkPolicyOutput, __Metad * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class GetSinkPolicyCommand extends $Command diff --git a/clients/client-oam/src/commands/ListAttachedLinksCommand.ts b/clients/client-oam/src/commands/ListAttachedLinksCommand.ts index 4193c6924daf6..4126c49e2cc59 100644 --- a/clients/client-oam/src/commands/ListAttachedLinksCommand.ts +++ b/clients/client-oam/src/commands/ListAttachedLinksCommand.ts @@ -80,6 +80,7 @@ export interface ListAttachedLinksCommandOutput extends ListAttachedLinksOutput, * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class ListAttachedLinksCommand extends $Command diff --git a/clients/client-oam/src/commands/ListLinksCommand.ts b/clients/client-oam/src/commands/ListLinksCommand.ts index 41f82cddf2d4b..0e46d449a7ed9 100644 --- a/clients/client-oam/src/commands/ListLinksCommand.ts +++ b/clients/client-oam/src/commands/ListLinksCommand.ts @@ -78,6 +78,7 @@ export interface ListLinksCommandOutput extends ListLinksOutput, __MetadataBeare * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class ListLinksCommand extends $Command diff --git a/clients/client-oam/src/commands/ListSinksCommand.ts b/clients/client-oam/src/commands/ListSinksCommand.ts index 52046075ddadd..09efff6e099b5 100644 --- a/clients/client-oam/src/commands/ListSinksCommand.ts +++ b/clients/client-oam/src/commands/ListSinksCommand.ts @@ -72,6 +72,7 @@ export interface ListSinksCommandOutput extends ListSinksOutput, __MetadataBeare * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class ListSinksCommand extends $Command diff --git a/clients/client-oam/src/commands/ListTagsForResourceCommand.ts b/clients/client-oam/src/commands/ListTagsForResourceCommand.ts index 6ea5b4d11b5ed..4e7609226f913 100644 --- a/clients/client-oam/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-oam/src/commands/ListTagsForResourceCommand.ts @@ -63,6 +63,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-oam/src/commands/PutSinkPolicyCommand.ts b/clients/client-oam/src/commands/PutSinkPolicyCommand.ts index 78819ee631a6f..659897af83aa1 100644 --- a/clients/client-oam/src/commands/PutSinkPolicyCommand.ts +++ b/clients/client-oam/src/commands/PutSinkPolicyCommand.ts @@ -98,6 +98,7 @@ export interface PutSinkPolicyCommandOutput extends PutSinkPolicyOutput, __Metad * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class PutSinkPolicyCommand extends $Command diff --git a/clients/client-oam/src/commands/TagResourceCommand.ts b/clients/client-oam/src/commands/TagResourceCommand.ts index 1b81bcbb1b1b4..b5c2aa12e5928 100644 --- a/clients/client-oam/src/commands/TagResourceCommand.ts +++ b/clients/client-oam/src/commands/TagResourceCommand.ts @@ -81,6 +81,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-oam/src/commands/UntagResourceCommand.ts b/clients/client-oam/src/commands/UntagResourceCommand.ts index 8c5b73e7fb1ee..6c5d85245124d 100644 --- a/clients/client-oam/src/commands/UntagResourceCommand.ts +++ b/clients/client-oam/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-oam/src/commands/UpdateLinkCommand.ts b/clients/client-oam/src/commands/UpdateLinkCommand.ts index a25d827ae4456..d9bb7ff44d825 100644 --- a/clients/client-oam/src/commands/UpdateLinkCommand.ts +++ b/clients/client-oam/src/commands/UpdateLinkCommand.ts @@ -101,6 +101,7 @@ export interface UpdateLinkCommandOutput extends UpdateLinkOutput, __MetadataBea * @throws {@link OAMServiceException} *

Base exception class for all service exceptions from OAM service.

* + * * @public */ export class UpdateLinkCommand extends $Command diff --git a/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusCommand.ts b/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusCommand.ts index 6a6b318b155b7..f3b000110a1f9 100644 --- a/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusCommand.ts +++ b/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusCommand.ts @@ -75,6 +75,7 @@ export interface GetTelemetryEvaluationStatusCommandOutput * @throws {@link ObservabilityAdminServiceException} *

Base exception class for all service exceptions from ObservabilityAdmin service.

* + * * @public */ export class GetTelemetryEvaluationStatusCommand extends $Command diff --git a/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusForOrganizationCommand.ts index 4d3856015a4d8..89ef7a747658f 100644 --- a/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusForOrganizationCommand.ts @@ -80,6 +80,7 @@ export interface GetTelemetryEvaluationStatusForOrganizationCommandOutput * @throws {@link ObservabilityAdminServiceException} *

Base exception class for all service exceptions from ObservabilityAdmin service.

* + * * @public */ export class GetTelemetryEvaluationStatusForOrganizationCommand extends $Command diff --git a/clients/client-observabilityadmin/src/commands/ListResourceTelemetryCommand.ts b/clients/client-observabilityadmin/src/commands/ListResourceTelemetryCommand.ts index 346208c9c38fa..d2869dc7c663e 100644 --- a/clients/client-observabilityadmin/src/commands/ListResourceTelemetryCommand.ts +++ b/clients/client-observabilityadmin/src/commands/ListResourceTelemetryCommand.ts @@ -101,6 +101,7 @@ export interface ListResourceTelemetryCommandOutput extends ListResourceTelemetr * @throws {@link ObservabilityAdminServiceException} *

Base exception class for all service exceptions from ObservabilityAdmin service.

* + * * @public */ export class ListResourceTelemetryCommand extends $Command diff --git a/clients/client-observabilityadmin/src/commands/ListResourceTelemetryForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/ListResourceTelemetryForOrganizationCommand.ts index eb570b8db122d..167224224175a 100644 --- a/clients/client-observabilityadmin/src/commands/ListResourceTelemetryForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/ListResourceTelemetryForOrganizationCommand.ts @@ -112,6 +112,7 @@ export interface ListResourceTelemetryForOrganizationCommandOutput * @throws {@link ObservabilityAdminServiceException} *

Base exception class for all service exceptions from ObservabilityAdmin service.

* + * * @public */ export class ListResourceTelemetryForOrganizationCommand extends $Command diff --git a/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationCommand.ts b/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationCommand.ts index c99423c3bec2e..6140e17d7dd45 100644 --- a/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationCommand.ts @@ -71,6 +71,7 @@ export interface StartTelemetryEvaluationCommandOutput extends __MetadataBearer * @throws {@link ObservabilityAdminServiceException} *

Base exception class for all service exceptions from ObservabilityAdmin service.

* + * * @public */ export class StartTelemetryEvaluationCommand extends $Command diff --git a/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationForOrganizationCommand.ts index 10ac0ceed49dd..59f8a392d5224 100644 --- a/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationForOrganizationCommand.ts @@ -74,6 +74,7 @@ export interface StartTelemetryEvaluationForOrganizationCommandOutput extends __ * @throws {@link ObservabilityAdminServiceException} *

Base exception class for all service exceptions from ObservabilityAdmin service.

* + * * @public */ export class StartTelemetryEvaluationForOrganizationCommand extends $Command diff --git a/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationCommand.ts b/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationCommand.ts index fea8c7f5ce7e9..6b2f8609e6b08 100644 --- a/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationCommand.ts @@ -71,6 +71,7 @@ export interface StopTelemetryEvaluationCommandOutput extends __MetadataBearer { * @throws {@link ObservabilityAdminServiceException} *

Base exception class for all service exceptions from ObservabilityAdmin service.

* + * * @public */ export class StopTelemetryEvaluationCommand extends $Command diff --git a/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationForOrganizationCommand.ts index 0a820f3983c34..c719696d3bc06 100644 --- a/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationForOrganizationCommand.ts @@ -74,6 +74,7 @@ export interface StopTelemetryEvaluationForOrganizationCommandOutput extends __M * @throws {@link ObservabilityAdminServiceException} *

Base exception class for all service exceptions from ObservabilityAdmin service.

* + * * @public */ export class StopTelemetryEvaluationForOrganizationCommand extends $Command diff --git a/clients/client-omics/src/commands/AbortMultipartReadSetUploadCommand.ts b/clients/client-omics/src/commands/AbortMultipartReadSetUploadCommand.ts index b2f898d37f492..9e1cbc168092a 100644 --- a/clients/client-omics/src/commands/AbortMultipartReadSetUploadCommand.ts +++ b/clients/client-omics/src/commands/AbortMultipartReadSetUploadCommand.ts @@ -85,6 +85,7 @@ export interface AbortMultipartReadSetUploadCommandOutput * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class AbortMultipartReadSetUploadCommand extends $Command diff --git a/clients/client-omics/src/commands/AcceptShareCommand.ts b/clients/client-omics/src/commands/AcceptShareCommand.ts index 9c161ab9ddd7e..fb23ca47153c9 100644 --- a/clients/client-omics/src/commands/AcceptShareCommand.ts +++ b/clients/client-omics/src/commands/AcceptShareCommand.ts @@ -76,6 +76,7 @@ export interface AcceptShareCommandOutput extends AcceptShareResponse, __Metadat * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class AcceptShareCommand extends $Command diff --git a/clients/client-omics/src/commands/BatchDeleteReadSetCommand.ts b/clients/client-omics/src/commands/BatchDeleteReadSetCommand.ts index 73494a6fa8170..33c9c8005984a 100644 --- a/clients/client-omics/src/commands/BatchDeleteReadSetCommand.ts +++ b/clients/client-omics/src/commands/BatchDeleteReadSetCommand.ts @@ -82,6 +82,7 @@ export interface BatchDeleteReadSetCommandOutput extends BatchDeleteReadSetRespo * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class BatchDeleteReadSetCommand extends $Command diff --git a/clients/client-omics/src/commands/CancelAnnotationImportJobCommand.ts b/clients/client-omics/src/commands/CancelAnnotationImportJobCommand.ts index 4e0b3890b1abe..d7bc96b90e73c 100644 --- a/clients/client-omics/src/commands/CancelAnnotationImportJobCommand.ts +++ b/clients/client-omics/src/commands/CancelAnnotationImportJobCommand.ts @@ -68,6 +68,7 @@ export interface CancelAnnotationImportJobCommandOutput extends CancelAnnotation * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class CancelAnnotationImportJobCommand extends $Command diff --git a/clients/client-omics/src/commands/CancelRunCommand.ts b/clients/client-omics/src/commands/CancelRunCommand.ts index d0d62f5fee99b..1bc6639cb3d2a 100644 --- a/clients/client-omics/src/commands/CancelRunCommand.ts +++ b/clients/client-omics/src/commands/CancelRunCommand.ts @@ -77,6 +77,7 @@ export interface CancelRunCommandOutput extends __MetadataBearer {} * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class CancelRunCommand extends $Command diff --git a/clients/client-omics/src/commands/CancelVariantImportJobCommand.ts b/clients/client-omics/src/commands/CancelVariantImportJobCommand.ts index 8a19ffa06ad16..05d67a2af9c5d 100644 --- a/clients/client-omics/src/commands/CancelVariantImportJobCommand.ts +++ b/clients/client-omics/src/commands/CancelVariantImportJobCommand.ts @@ -68,6 +68,7 @@ export interface CancelVariantImportJobCommandOutput extends CancelVariantImport * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class CancelVariantImportJobCommand extends $Command diff --git a/clients/client-omics/src/commands/CompleteMultipartReadSetUploadCommand.ts b/clients/client-omics/src/commands/CompleteMultipartReadSetUploadCommand.ts index 8ab024f8e66ea..7be2cc1d8c8d5 100644 --- a/clients/client-omics/src/commands/CompleteMultipartReadSetUploadCommand.ts +++ b/clients/client-omics/src/commands/CompleteMultipartReadSetUploadCommand.ts @@ -94,6 +94,7 @@ export interface CompleteMultipartReadSetUploadCommandOutput * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class CompleteMultipartReadSetUploadCommand extends $Command diff --git a/clients/client-omics/src/commands/CreateAnnotationStoreCommand.ts b/clients/client-omics/src/commands/CreateAnnotationStoreCommand.ts index 3ea163b230a17..7e5d5385c0fbf 100644 --- a/clients/client-omics/src/commands/CreateAnnotationStoreCommand.ts +++ b/clients/client-omics/src/commands/CreateAnnotationStoreCommand.ts @@ -123,6 +123,7 @@ export interface CreateAnnotationStoreCommandOutput extends CreateAnnotationStor * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class CreateAnnotationStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/CreateAnnotationStoreVersionCommand.ts b/clients/client-omics/src/commands/CreateAnnotationStoreVersionCommand.ts index f8668a7677b2c..15518ce5844d8 100644 --- a/clients/client-omics/src/commands/CreateAnnotationStoreVersionCommand.ts +++ b/clients/client-omics/src/commands/CreateAnnotationStoreVersionCommand.ts @@ -119,6 +119,7 @@ export interface CreateAnnotationStoreVersionCommandOutput * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class CreateAnnotationStoreVersionCommand extends $Command diff --git a/clients/client-omics/src/commands/CreateMultipartReadSetUploadCommand.ts b/clients/client-omics/src/commands/CreateMultipartReadSetUploadCommand.ts index 8c43cac239887..411a9e001a8e2 100644 --- a/clients/client-omics/src/commands/CreateMultipartReadSetUploadCommand.ts +++ b/clients/client-omics/src/commands/CreateMultipartReadSetUploadCommand.ts @@ -109,6 +109,7 @@ export interface CreateMultipartReadSetUploadCommandOutput * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class CreateMultipartReadSetUploadCommand extends $Command diff --git a/clients/client-omics/src/commands/CreateReferenceStoreCommand.ts b/clients/client-omics/src/commands/CreateReferenceStoreCommand.ts index 1478ef063e545..4b43aff90b70c 100644 --- a/clients/client-omics/src/commands/CreateReferenceStoreCommand.ts +++ b/clients/client-omics/src/commands/CreateReferenceStoreCommand.ts @@ -90,6 +90,7 @@ export interface CreateReferenceStoreCommandOutput extends CreateReferenceStoreR * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class CreateReferenceStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/CreateRunCacheCommand.ts b/clients/client-omics/src/commands/CreateRunCacheCommand.ts index 1c9b0507196bb..6237247917eca 100644 --- a/clients/client-omics/src/commands/CreateRunCacheCommand.ts +++ b/clients/client-omics/src/commands/CreateRunCacheCommand.ts @@ -96,6 +96,7 @@ export interface CreateRunCacheCommandOutput extends CreateRunCacheResponse, __M * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class CreateRunCacheCommand extends $Command diff --git a/clients/client-omics/src/commands/CreateRunGroupCommand.ts b/clients/client-omics/src/commands/CreateRunGroupCommand.ts index 8d5c16f38309b..7a49f9bfc969f 100644 --- a/clients/client-omics/src/commands/CreateRunGroupCommand.ts +++ b/clients/client-omics/src/commands/CreateRunGroupCommand.ts @@ -91,6 +91,7 @@ export interface CreateRunGroupCommandOutput extends CreateRunGroupResponse, __M * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class CreateRunGroupCommand extends $Command diff --git a/clients/client-omics/src/commands/CreateSequenceStoreCommand.ts b/clients/client-omics/src/commands/CreateSequenceStoreCommand.ts index c130a2bcee30e..4603195a015fb 100644 --- a/clients/client-omics/src/commands/CreateSequenceStoreCommand.ts +++ b/clients/client-omics/src/commands/CreateSequenceStoreCommand.ts @@ -110,6 +110,7 @@ export interface CreateSequenceStoreCommandOutput extends CreateSequenceStoreRes * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class CreateSequenceStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/CreateShareCommand.ts b/clients/client-omics/src/commands/CreateShareCommand.ts index 640a38f7e334a..4031de486f012 100644 --- a/clients/client-omics/src/commands/CreateShareCommand.ts +++ b/clients/client-omics/src/commands/CreateShareCommand.ts @@ -93,6 +93,7 @@ export interface CreateShareCommandOutput extends CreateShareResponse, __Metadat * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class CreateShareCommand extends $Command diff --git a/clients/client-omics/src/commands/CreateVariantStoreCommand.ts b/clients/client-omics/src/commands/CreateVariantStoreCommand.ts index f42ce107a4f88..b4c5ae04a1e30 100644 --- a/clients/client-omics/src/commands/CreateVariantStoreCommand.ts +++ b/clients/client-omics/src/commands/CreateVariantStoreCommand.ts @@ -93,6 +93,7 @@ export interface CreateVariantStoreCommandOutput extends CreateVariantStoreRespo * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class CreateVariantStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/CreateWorkflowCommand.ts b/clients/client-omics/src/commands/CreateWorkflowCommand.ts index b4110db2444b9..64d27b9bdb00f 100644 --- a/clients/client-omics/src/commands/CreateWorkflowCommand.ts +++ b/clients/client-omics/src/commands/CreateWorkflowCommand.ts @@ -101,6 +101,7 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class CreateWorkflowCommand extends $Command diff --git a/clients/client-omics/src/commands/DeleteAnnotationStoreCommand.ts b/clients/client-omics/src/commands/DeleteAnnotationStoreCommand.ts index ea7cb4f4649cd..28a417e9e7d33 100644 --- a/clients/client-omics/src/commands/DeleteAnnotationStoreCommand.ts +++ b/clients/client-omics/src/commands/DeleteAnnotationStoreCommand.ts @@ -74,6 +74,7 @@ export interface DeleteAnnotationStoreCommandOutput extends DeleteAnnotationStor * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class DeleteAnnotationStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/DeleteAnnotationStoreVersionsCommand.ts b/clients/client-omics/src/commands/DeleteAnnotationStoreVersionsCommand.ts index 6235dc90b90dd..3e798ebe6b61c 100644 --- a/clients/client-omics/src/commands/DeleteAnnotationStoreVersionsCommand.ts +++ b/clients/client-omics/src/commands/DeleteAnnotationStoreVersionsCommand.ts @@ -89,6 +89,7 @@ export interface DeleteAnnotationStoreVersionsCommandOutput * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class DeleteAnnotationStoreVersionsCommand extends $Command diff --git a/clients/client-omics/src/commands/DeleteReferenceCommand.ts b/clients/client-omics/src/commands/DeleteReferenceCommand.ts index 3bda1edf85b66..40e2a9dbe6873 100644 --- a/clients/client-omics/src/commands/DeleteReferenceCommand.ts +++ b/clients/client-omics/src/commands/DeleteReferenceCommand.ts @@ -75,6 +75,7 @@ export interface DeleteReferenceCommandOutput extends DeleteReferenceResponse, _ * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class DeleteReferenceCommand extends $Command diff --git a/clients/client-omics/src/commands/DeleteReferenceStoreCommand.ts b/clients/client-omics/src/commands/DeleteReferenceStoreCommand.ts index 2809862cc1eb1..a6b7e73a96b9b 100644 --- a/clients/client-omics/src/commands/DeleteReferenceStoreCommand.ts +++ b/clients/client-omics/src/commands/DeleteReferenceStoreCommand.ts @@ -74,6 +74,7 @@ export interface DeleteReferenceStoreCommandOutput extends DeleteReferenceStoreR * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class DeleteReferenceStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/DeleteRunCacheCommand.ts b/clients/client-omics/src/commands/DeleteRunCacheCommand.ts index e1e41e100dfab..e4de780a5a025 100644 --- a/clients/client-omics/src/commands/DeleteRunCacheCommand.ts +++ b/clients/client-omics/src/commands/DeleteRunCacheCommand.ts @@ -82,6 +82,7 @@ export interface DeleteRunCacheCommandOutput extends __MetadataBearer {} * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class DeleteRunCacheCommand extends $Command diff --git a/clients/client-omics/src/commands/DeleteRunCommand.ts b/clients/client-omics/src/commands/DeleteRunCommand.ts index 5a0e772434636..c91d0437409d0 100644 --- a/clients/client-omics/src/commands/DeleteRunCommand.ts +++ b/clients/client-omics/src/commands/DeleteRunCommand.ts @@ -77,6 +77,7 @@ export interface DeleteRunCommandOutput extends __MetadataBearer {} * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class DeleteRunCommand extends $Command diff --git a/clients/client-omics/src/commands/DeleteRunGroupCommand.ts b/clients/client-omics/src/commands/DeleteRunGroupCommand.ts index 9794973a23933..29a6649ce6bd0 100644 --- a/clients/client-omics/src/commands/DeleteRunGroupCommand.ts +++ b/clients/client-omics/src/commands/DeleteRunGroupCommand.ts @@ -77,6 +77,7 @@ export interface DeleteRunGroupCommandOutput extends __MetadataBearer {} * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class DeleteRunGroupCommand extends $Command diff --git a/clients/client-omics/src/commands/DeleteS3AccessPolicyCommand.ts b/clients/client-omics/src/commands/DeleteS3AccessPolicyCommand.ts index c0679ec9bd554..1999189f039f0 100644 --- a/clients/client-omics/src/commands/DeleteS3AccessPolicyCommand.ts +++ b/clients/client-omics/src/commands/DeleteS3AccessPolicyCommand.ts @@ -76,6 +76,7 @@ export interface DeleteS3AccessPolicyCommandOutput extends DeleteS3AccessPolicyR * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class DeleteS3AccessPolicyCommand extends $Command diff --git a/clients/client-omics/src/commands/DeleteSequenceStoreCommand.ts b/clients/client-omics/src/commands/DeleteSequenceStoreCommand.ts index e5e72298fed45..bb7b2f0b90200 100644 --- a/clients/client-omics/src/commands/DeleteSequenceStoreCommand.ts +++ b/clients/client-omics/src/commands/DeleteSequenceStoreCommand.ts @@ -74,6 +74,7 @@ export interface DeleteSequenceStoreCommandOutput extends DeleteSequenceStoreRes * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class DeleteSequenceStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/DeleteShareCommand.ts b/clients/client-omics/src/commands/DeleteShareCommand.ts index 2a0392d0ac94a..2127e2b2089d5 100644 --- a/clients/client-omics/src/commands/DeleteShareCommand.ts +++ b/clients/client-omics/src/commands/DeleteShareCommand.ts @@ -77,6 +77,7 @@ export interface DeleteShareCommandOutput extends DeleteShareResponse, __Metadat * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class DeleteShareCommand extends $Command diff --git a/clients/client-omics/src/commands/DeleteVariantStoreCommand.ts b/clients/client-omics/src/commands/DeleteVariantStoreCommand.ts index d6080d75b3088..7e8d35c43a8d3 100644 --- a/clients/client-omics/src/commands/DeleteVariantStoreCommand.ts +++ b/clients/client-omics/src/commands/DeleteVariantStoreCommand.ts @@ -74,6 +74,7 @@ export interface DeleteVariantStoreCommandOutput extends DeleteVariantStoreRespo * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class DeleteVariantStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/DeleteWorkflowCommand.ts b/clients/client-omics/src/commands/DeleteWorkflowCommand.ts index 83aa3230f56be..e13ff0cae4e78 100644 --- a/clients/client-omics/src/commands/DeleteWorkflowCommand.ts +++ b/clients/client-omics/src/commands/DeleteWorkflowCommand.ts @@ -77,6 +77,7 @@ export interface DeleteWorkflowCommandOutput extends __MetadataBearer {} * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class DeleteWorkflowCommand extends $Command diff --git a/clients/client-omics/src/commands/GetAnnotationImportJobCommand.ts b/clients/client-omics/src/commands/GetAnnotationImportJobCommand.ts index 2a4f4e9b3efdc..fe567821a7825 100644 --- a/clients/client-omics/src/commands/GetAnnotationImportJobCommand.ts +++ b/clients/client-omics/src/commands/GetAnnotationImportJobCommand.ts @@ -107,6 +107,7 @@ export interface GetAnnotationImportJobCommandOutput extends GetAnnotationImport * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetAnnotationImportJobCommand extends $Command diff --git a/clients/client-omics/src/commands/GetAnnotationStoreCommand.ts b/clients/client-omics/src/commands/GetAnnotationStoreCommand.ts index 5d5b80ae90562..8cb778286c282 100644 --- a/clients/client-omics/src/commands/GetAnnotationStoreCommand.ts +++ b/clients/client-omics/src/commands/GetAnnotationStoreCommand.ts @@ -103,6 +103,7 @@ export interface GetAnnotationStoreCommandOutput extends GetAnnotationStoreRespo * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetAnnotationStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/GetAnnotationStoreVersionCommand.ts b/clients/client-omics/src/commands/GetAnnotationStoreVersionCommand.ts index 848e656c1572d..fcf4b2706ff88 100644 --- a/clients/client-omics/src/commands/GetAnnotationStoreVersionCommand.ts +++ b/clients/client-omics/src/commands/GetAnnotationStoreVersionCommand.ts @@ -99,6 +99,7 @@ export interface GetAnnotationStoreVersionCommandOutput extends GetAnnotationSto * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetAnnotationStoreVersionCommand extends $Command diff --git a/clients/client-omics/src/commands/GetReadSetActivationJobCommand.ts b/clients/client-omics/src/commands/GetReadSetActivationJobCommand.ts index 57bdf3e9d944e..7d7518745b4f5 100644 --- a/clients/client-omics/src/commands/GetReadSetActivationJobCommand.ts +++ b/clients/client-omics/src/commands/GetReadSetActivationJobCommand.ts @@ -86,6 +86,7 @@ export interface GetReadSetActivationJobCommandOutput extends GetReadSetActivati * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetReadSetActivationJobCommand extends $Command diff --git a/clients/client-omics/src/commands/GetReadSetCommand.ts b/clients/client-omics/src/commands/GetReadSetCommand.ts index a01f4d9f97b5f..c0d6a30f9d880 100644 --- a/clients/client-omics/src/commands/GetReadSetCommand.ts +++ b/clients/client-omics/src/commands/GetReadSetCommand.ts @@ -45,6 +45,11 @@ export interface GetReadSetCommandOutput extends Omit", // see \@smithy/types -> StreamingBlobPayloadOutputTypes * // }; @@ -84,6 +89,7 @@ export interface GetReadSetCommandOutput extends OmitBase exception class for all service exceptions from Omics service.

* + * * @public */ export class GetReadSetCommand extends $Command diff --git a/clients/client-omics/src/commands/GetReadSetExportJobCommand.ts b/clients/client-omics/src/commands/GetReadSetExportJobCommand.ts index 5fdf3a81c9e9d..6ff3accbaf33d 100644 --- a/clients/client-omics/src/commands/GetReadSetExportJobCommand.ts +++ b/clients/client-omics/src/commands/GetReadSetExportJobCommand.ts @@ -87,6 +87,7 @@ export interface GetReadSetExportJobCommandOutput extends GetReadSetExportJobRes * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetReadSetExportJobCommand extends $Command diff --git a/clients/client-omics/src/commands/GetReadSetImportJobCommand.ts b/clients/client-omics/src/commands/GetReadSetImportJobCommand.ts index 8fb7906843776..1806e9ec751a1 100644 --- a/clients/client-omics/src/commands/GetReadSetImportJobCommand.ts +++ b/clients/client-omics/src/commands/GetReadSetImportJobCommand.ts @@ -101,6 +101,7 @@ export interface GetReadSetImportJobCommandOutput extends GetReadSetImportJobRes * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetReadSetImportJobCommand extends $Command diff --git a/clients/client-omics/src/commands/GetReadSetMetadataCommand.ts b/clients/client-omics/src/commands/GetReadSetMetadataCommand.ts index d1f588ed2775b..5bc7f7c7ec348 100644 --- a/clients/client-omics/src/commands/GetReadSetMetadataCommand.ts +++ b/clients/client-omics/src/commands/GetReadSetMetadataCommand.ts @@ -124,6 +124,7 @@ export interface GetReadSetMetadataCommandOutput extends GetReadSetMetadataRespo * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetReadSetMetadataCommand extends $Command diff --git a/clients/client-omics/src/commands/GetReferenceCommand.ts b/clients/client-omics/src/commands/GetReferenceCommand.ts index cd520ac951a2a..f4e859071fa3e 100644 --- a/clients/client-omics/src/commands/GetReferenceCommand.ts +++ b/clients/client-omics/src/commands/GetReferenceCommand.ts @@ -46,6 +46,11 @@ export interface GetReferenceCommandOutput extends Omit", // see \@smithy/types -> StreamingBlobPayloadOutputTypes * // }; @@ -82,6 +87,7 @@ export interface GetReferenceCommandOutput extends OmitBase exception class for all service exceptions from Omics service.

* + * * @public */ export class GetReferenceCommand extends $Command diff --git a/clients/client-omics/src/commands/GetReferenceImportJobCommand.ts b/clients/client-omics/src/commands/GetReferenceImportJobCommand.ts index fed643177c4c6..4f04e58beeb7a 100644 --- a/clients/client-omics/src/commands/GetReferenceImportJobCommand.ts +++ b/clients/client-omics/src/commands/GetReferenceImportJobCommand.ts @@ -93,6 +93,7 @@ export interface GetReferenceImportJobCommandOutput extends GetReferenceImportJo * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetReferenceImportJobCommand extends $Command diff --git a/clients/client-omics/src/commands/GetReferenceMetadataCommand.ts b/clients/client-omics/src/commands/GetReferenceMetadataCommand.ts index f5d3b1fed06e9..ffccf12770f60 100644 --- a/clients/client-omics/src/commands/GetReferenceMetadataCommand.ts +++ b/clients/client-omics/src/commands/GetReferenceMetadataCommand.ts @@ -102,6 +102,7 @@ export interface GetReferenceMetadataCommandOutput extends GetReferenceMetadataR * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetReferenceMetadataCommand extends $Command diff --git a/clients/client-omics/src/commands/GetReferenceStoreCommand.ts b/clients/client-omics/src/commands/GetReferenceStoreCommand.ts index cbd3fcfc49071..446a8a9e472bc 100644 --- a/clients/client-omics/src/commands/GetReferenceStoreCommand.ts +++ b/clients/client-omics/src/commands/GetReferenceStoreCommand.ts @@ -81,6 +81,7 @@ export interface GetReferenceStoreCommandOutput extends GetReferenceStoreRespons * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetReferenceStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/GetRunCacheCommand.ts b/clients/client-omics/src/commands/GetRunCacheCommand.ts index 73634529f4693..ea2680a0a25d2 100644 --- a/clients/client-omics/src/commands/GetRunCacheCommand.ts +++ b/clients/client-omics/src/commands/GetRunCacheCommand.ts @@ -91,6 +91,7 @@ export interface GetRunCacheCommandOutput extends GetRunCacheResponse, __Metadat * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetRunCacheCommand extends $Command diff --git a/clients/client-omics/src/commands/GetRunCommand.ts b/clients/client-omics/src/commands/GetRunCommand.ts index 79adc0e151155..5d0c10bb5bc06 100644 --- a/clients/client-omics/src/commands/GetRunCommand.ts +++ b/clients/client-omics/src/commands/GetRunCommand.ts @@ -127,6 +127,7 @@ export interface GetRunCommandOutput extends GetRunResponse, __MetadataBearer {} * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetRunCommand extends $Command diff --git a/clients/client-omics/src/commands/GetRunGroupCommand.ts b/clients/client-omics/src/commands/GetRunGroupCommand.ts index 438cebfa0782e..01260474a244f 100644 --- a/clients/client-omics/src/commands/GetRunGroupCommand.ts +++ b/clients/client-omics/src/commands/GetRunGroupCommand.ts @@ -89,6 +89,7 @@ export interface GetRunGroupCommandOutput extends GetRunGroupResponse, __Metadat * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetRunGroupCommand extends $Command diff --git a/clients/client-omics/src/commands/GetRunTaskCommand.ts b/clients/client-omics/src/commands/GetRunTaskCommand.ts index 88d833e405d77..510ad9da925f0 100644 --- a/clients/client-omics/src/commands/GetRunTaskCommand.ts +++ b/clients/client-omics/src/commands/GetRunTaskCommand.ts @@ -94,6 +94,7 @@ export interface GetRunTaskCommandOutput extends GetRunTaskResponse, __MetadataB * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetRunTaskCommand extends $Command diff --git a/clients/client-omics/src/commands/GetS3AccessPolicyCommand.ts b/clients/client-omics/src/commands/GetS3AccessPolicyCommand.ts index c63a4fd03e6bc..e84a490cfc7b3 100644 --- a/clients/client-omics/src/commands/GetS3AccessPolicyCommand.ts +++ b/clients/client-omics/src/commands/GetS3AccessPolicyCommand.ts @@ -85,6 +85,7 @@ export interface GetS3AccessPolicyCommandOutput extends GetS3AccessPolicyRespons * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetS3AccessPolicyCommand extends $Command diff --git a/clients/client-omics/src/commands/GetSequenceStoreCommand.ts b/clients/client-omics/src/commands/GetSequenceStoreCommand.ts index 4857cb1fc40cc..bdac2f00bc510 100644 --- a/clients/client-omics/src/commands/GetSequenceStoreCommand.ts +++ b/clients/client-omics/src/commands/GetSequenceStoreCommand.ts @@ -94,6 +94,7 @@ export interface GetSequenceStoreCommandOutput extends GetSequenceStoreResponse, * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetSequenceStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/GetShareCommand.ts b/clients/client-omics/src/commands/GetShareCommand.ts index 1860afd6de921..eb7c37f642933 100644 --- a/clients/client-omics/src/commands/GetShareCommand.ts +++ b/clients/client-omics/src/commands/GetShareCommand.ts @@ -87,6 +87,7 @@ export interface GetShareCommandOutput extends GetShareResponse, __MetadataBeare * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetShareCommand extends $Command diff --git a/clients/client-omics/src/commands/GetVariantImportJobCommand.ts b/clients/client-omics/src/commands/GetVariantImportJobCommand.ts index bf46cb87a612e..ba63cf3be64f9 100644 --- a/clients/client-omics/src/commands/GetVariantImportJobCommand.ts +++ b/clients/client-omics/src/commands/GetVariantImportJobCommand.ts @@ -88,6 +88,7 @@ export interface GetVariantImportJobCommandOutput extends GetVariantImportRespon * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetVariantImportJobCommand extends $Command diff --git a/clients/client-omics/src/commands/GetVariantStoreCommand.ts b/clients/client-omics/src/commands/GetVariantStoreCommand.ts index e3b04c3f65cb6..ffe6ad3e43cc6 100644 --- a/clients/client-omics/src/commands/GetVariantStoreCommand.ts +++ b/clients/client-omics/src/commands/GetVariantStoreCommand.ts @@ -88,6 +88,7 @@ export interface GetVariantStoreCommandOutput extends GetVariantStoreResponse, _ * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetVariantStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/GetWorkflowCommand.ts b/clients/client-omics/src/commands/GetWorkflowCommand.ts index 66151a501ee69..2e8d2a209f27f 100644 --- a/clients/client-omics/src/commands/GetWorkflowCommand.ts +++ b/clients/client-omics/src/commands/GetWorkflowCommand.ts @@ -110,6 +110,7 @@ export interface GetWorkflowCommandOutput extends GetWorkflowResponse, __Metadat * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class GetWorkflowCommand extends $Command diff --git a/clients/client-omics/src/commands/ListAnnotationImportJobsCommand.ts b/clients/client-omics/src/commands/ListAnnotationImportJobsCommand.ts index 503c637929f9f..11a6c4cb6359b 100644 --- a/clients/client-omics/src/commands/ListAnnotationImportJobsCommand.ts +++ b/clients/client-omics/src/commands/ListAnnotationImportJobsCommand.ts @@ -94,6 +94,7 @@ export interface ListAnnotationImportJobsCommandOutput extends ListAnnotationImp * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListAnnotationImportJobsCommand extends $Command diff --git a/clients/client-omics/src/commands/ListAnnotationStoreVersionsCommand.ts b/clients/client-omics/src/commands/ListAnnotationStoreVersionsCommand.ts index ec3d610e16783..9634285721ce1 100644 --- a/clients/client-omics/src/commands/ListAnnotationStoreVersionsCommand.ts +++ b/clients/client-omics/src/commands/ListAnnotationStoreVersionsCommand.ts @@ -97,6 +97,7 @@ export interface ListAnnotationStoreVersionsCommandOutput * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListAnnotationStoreVersionsCommand extends $Command diff --git a/clients/client-omics/src/commands/ListAnnotationStoresCommand.ts b/clients/client-omics/src/commands/ListAnnotationStoresCommand.ts index 1ccd87fb7f286..b40528d12aeb4 100644 --- a/clients/client-omics/src/commands/ListAnnotationStoresCommand.ts +++ b/clients/client-omics/src/commands/ListAnnotationStoresCommand.ts @@ -98,6 +98,7 @@ export interface ListAnnotationStoresCommandOutput extends ListAnnotationStoresR * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListAnnotationStoresCommand extends $Command diff --git a/clients/client-omics/src/commands/ListMultipartReadSetUploadsCommand.ts b/clients/client-omics/src/commands/ListMultipartReadSetUploadsCommand.ts index d3b345afa0446..c24e26b0d2443 100644 --- a/clients/client-omics/src/commands/ListMultipartReadSetUploadsCommand.ts +++ b/clients/client-omics/src/commands/ListMultipartReadSetUploadsCommand.ts @@ -106,6 +106,7 @@ export interface ListMultipartReadSetUploadsCommandOutput * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListMultipartReadSetUploadsCommand extends $Command diff --git a/clients/client-omics/src/commands/ListReadSetActivationJobsCommand.ts b/clients/client-omics/src/commands/ListReadSetActivationJobsCommand.ts index ada500a480787..d48ecf0f0d339 100644 --- a/clients/client-omics/src/commands/ListReadSetActivationJobsCommand.ts +++ b/clients/client-omics/src/commands/ListReadSetActivationJobsCommand.ts @@ -89,6 +89,7 @@ export interface ListReadSetActivationJobsCommandOutput extends ListReadSetActiv * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListReadSetActivationJobsCommand extends $Command diff --git a/clients/client-omics/src/commands/ListReadSetExportJobsCommand.ts b/clients/client-omics/src/commands/ListReadSetExportJobsCommand.ts index 18f7bca7eb897..2c3477161ad75 100644 --- a/clients/client-omics/src/commands/ListReadSetExportJobsCommand.ts +++ b/clients/client-omics/src/commands/ListReadSetExportJobsCommand.ts @@ -90,6 +90,7 @@ export interface ListReadSetExportJobsCommandOutput extends ListReadSetExportJob * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListReadSetExportJobsCommand extends $Command diff --git a/clients/client-omics/src/commands/ListReadSetImportJobsCommand.ts b/clients/client-omics/src/commands/ListReadSetImportJobsCommand.ts index 93f341ac13dd5..4cb7839cf6e3d 100644 --- a/clients/client-omics/src/commands/ListReadSetImportJobsCommand.ts +++ b/clients/client-omics/src/commands/ListReadSetImportJobsCommand.ts @@ -90,6 +90,7 @@ export interface ListReadSetImportJobsCommandOutput extends ListReadSetImportJob * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListReadSetImportJobsCommand extends $Command diff --git a/clients/client-omics/src/commands/ListReadSetUploadPartsCommand.ts b/clients/client-omics/src/commands/ListReadSetUploadPartsCommand.ts index b8cf256b4f530..9f3d5f5e37ea6 100644 --- a/clients/client-omics/src/commands/ListReadSetUploadPartsCommand.ts +++ b/clients/client-omics/src/commands/ListReadSetUploadPartsCommand.ts @@ -99,6 +99,7 @@ export interface ListReadSetUploadPartsCommandOutput extends ListReadSetUploadPa * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListReadSetUploadPartsCommand extends $Command diff --git a/clients/client-omics/src/commands/ListReadSetsCommand.ts b/clients/client-omics/src/commands/ListReadSetsCommand.ts index a14dff4da1fc7..8783b5573864b 100644 --- a/clients/client-omics/src/commands/ListReadSetsCommand.ts +++ b/clients/client-omics/src/commands/ListReadSetsCommand.ts @@ -114,6 +114,7 @@ export interface ListReadSetsCommandOutput extends ListReadSetsResponse, __Metad * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListReadSetsCommand extends $Command diff --git a/clients/client-omics/src/commands/ListReferenceImportJobsCommand.ts b/clients/client-omics/src/commands/ListReferenceImportJobsCommand.ts index 6abd2af24cc6c..24b06dda29861 100644 --- a/clients/client-omics/src/commands/ListReferenceImportJobsCommand.ts +++ b/clients/client-omics/src/commands/ListReferenceImportJobsCommand.ts @@ -90,6 +90,7 @@ export interface ListReferenceImportJobsCommandOutput extends ListReferenceImpor * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListReferenceImportJobsCommand extends $Command diff --git a/clients/client-omics/src/commands/ListReferenceStoresCommand.ts b/clients/client-omics/src/commands/ListReferenceStoresCommand.ts index 53c87111b0269..1263a2f0f209f 100644 --- a/clients/client-omics/src/commands/ListReferenceStoresCommand.ts +++ b/clients/client-omics/src/commands/ListReferenceStoresCommand.ts @@ -89,6 +89,7 @@ export interface ListReferenceStoresCommandOutput extends ListReferenceStoresRes * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListReferenceStoresCommand extends $Command diff --git a/clients/client-omics/src/commands/ListReferencesCommand.ts b/clients/client-omics/src/commands/ListReferencesCommand.ts index d4a6c3c550979..58d61dfd6cfea 100644 --- a/clients/client-omics/src/commands/ListReferencesCommand.ts +++ b/clients/client-omics/src/commands/ListReferencesCommand.ts @@ -94,6 +94,7 @@ export interface ListReferencesCommandOutput extends ListReferencesResponse, __M * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListReferencesCommand extends $Command diff --git a/clients/client-omics/src/commands/ListRunCachesCommand.ts b/clients/client-omics/src/commands/ListRunCachesCommand.ts index 31885cf8de281..121e75abed630 100644 --- a/clients/client-omics/src/commands/ListRunCachesCommand.ts +++ b/clients/client-omics/src/commands/ListRunCachesCommand.ts @@ -91,6 +91,7 @@ export interface ListRunCachesCommandOutput extends ListRunCachesResponse, __Met * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListRunCachesCommand extends $Command diff --git a/clients/client-omics/src/commands/ListRunGroupsCommand.ts b/clients/client-omics/src/commands/ListRunGroupsCommand.ts index 2d1421b54c1f3..374269c0f51b6 100644 --- a/clients/client-omics/src/commands/ListRunGroupsCommand.ts +++ b/clients/client-omics/src/commands/ListRunGroupsCommand.ts @@ -93,6 +93,7 @@ export interface ListRunGroupsCommandOutput extends ListRunGroupsResponse, __Met * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListRunGroupsCommand extends $Command diff --git a/clients/client-omics/src/commands/ListRunTasksCommand.ts b/clients/client-omics/src/commands/ListRunTasksCommand.ts index 8503d76283dd9..eccf43cc48c53 100644 --- a/clients/client-omics/src/commands/ListRunTasksCommand.ts +++ b/clients/client-omics/src/commands/ListRunTasksCommand.ts @@ -98,6 +98,7 @@ export interface ListRunTasksCommandOutput extends ListRunTasksResponse, __Metad * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListRunTasksCommand extends $Command diff --git a/clients/client-omics/src/commands/ListRunsCommand.ts b/clients/client-omics/src/commands/ListRunsCommand.ts index bf1ff4b679f30..7c6c3e65ef4d2 100644 --- a/clients/client-omics/src/commands/ListRunsCommand.ts +++ b/clients/client-omics/src/commands/ListRunsCommand.ts @@ -102,6 +102,7 @@ export interface ListRunsCommandOutput extends ListRunsResponse, __MetadataBeare * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListRunsCommand extends $Command diff --git a/clients/client-omics/src/commands/ListSequenceStoresCommand.ts b/clients/client-omics/src/commands/ListSequenceStoresCommand.ts index 2099ba8ca769a..696010850e678 100644 --- a/clients/client-omics/src/commands/ListSequenceStoresCommand.ts +++ b/clients/client-omics/src/commands/ListSequenceStoresCommand.ts @@ -97,6 +97,7 @@ export interface ListSequenceStoresCommandOutput extends ListSequenceStoresRespo * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListSequenceStoresCommand extends $Command diff --git a/clients/client-omics/src/commands/ListSharesCommand.ts b/clients/client-omics/src/commands/ListSharesCommand.ts index 9162544e883ee..193f036a7730e 100644 --- a/clients/client-omics/src/commands/ListSharesCommand.ts +++ b/clients/client-omics/src/commands/ListSharesCommand.ts @@ -104,6 +104,7 @@ export interface ListSharesCommandOutput extends ListSharesResponse, __MetadataB * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListSharesCommand extends $Command diff --git a/clients/client-omics/src/commands/ListTagsForResourceCommand.ts b/clients/client-omics/src/commands/ListTagsForResourceCommand.ts index 9da87189c16f4..3e27e2a353b74 100644 --- a/clients/client-omics/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-omics/src/commands/ListTagsForResourceCommand.ts @@ -81,6 +81,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-omics/src/commands/ListVariantImportJobsCommand.ts b/clients/client-omics/src/commands/ListVariantImportJobsCommand.ts index 3ce2ce82b4893..f73440a502d99 100644 --- a/clients/client-omics/src/commands/ListVariantImportJobsCommand.ts +++ b/clients/client-omics/src/commands/ListVariantImportJobsCommand.ts @@ -93,6 +93,7 @@ export interface ListVariantImportJobsCommandOutput extends ListVariantImportJob * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListVariantImportJobsCommand extends $Command diff --git a/clients/client-omics/src/commands/ListVariantStoresCommand.ts b/clients/client-omics/src/commands/ListVariantStoresCommand.ts index 8e8daaabcde98..f1c7aa176b7a0 100644 --- a/clients/client-omics/src/commands/ListVariantStoresCommand.ts +++ b/clients/client-omics/src/commands/ListVariantStoresCommand.ts @@ -97,6 +97,7 @@ export interface ListVariantStoresCommandOutput extends ListVariantStoresRespons * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListVariantStoresCommand extends $Command diff --git a/clients/client-omics/src/commands/ListWorkflowsCommand.ts b/clients/client-omics/src/commands/ListWorkflowsCommand.ts index 20e947ae91717..767efde906f89 100644 --- a/clients/client-omics/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-omics/src/commands/ListWorkflowsCommand.ts @@ -96,6 +96,7 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class ListWorkflowsCommand extends $Command diff --git a/clients/client-omics/src/commands/PutS3AccessPolicyCommand.ts b/clients/client-omics/src/commands/PutS3AccessPolicyCommand.ts index fe26706ac8fb4..7a625909c8b88 100644 --- a/clients/client-omics/src/commands/PutS3AccessPolicyCommand.ts +++ b/clients/client-omics/src/commands/PutS3AccessPolicyCommand.ts @@ -81,6 +81,7 @@ export interface PutS3AccessPolicyCommandOutput extends PutS3AccessPolicyRespons * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class PutS3AccessPolicyCommand extends $Command diff --git a/clients/client-omics/src/commands/StartAnnotationImportJobCommand.ts b/clients/client-omics/src/commands/StartAnnotationImportJobCommand.ts index 38746f1863401..cdf0b0ba95dce 100644 --- a/clients/client-omics/src/commands/StartAnnotationImportJobCommand.ts +++ b/clients/client-omics/src/commands/StartAnnotationImportJobCommand.ts @@ -103,6 +103,7 @@ export interface StartAnnotationImportJobCommandOutput extends StartAnnotationIm * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class StartAnnotationImportJobCommand extends $Command diff --git a/clients/client-omics/src/commands/StartReadSetActivationJobCommand.ts b/clients/client-omics/src/commands/StartReadSetActivationJobCommand.ts index 7ce0f3fcbb218..265fffef5575a 100644 --- a/clients/client-omics/src/commands/StartReadSetActivationJobCommand.ts +++ b/clients/client-omics/src/commands/StartReadSetActivationJobCommand.ts @@ -86,6 +86,7 @@ export interface StartReadSetActivationJobCommandOutput extends StartReadSetActi * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class StartReadSetActivationJobCommand extends $Command diff --git a/clients/client-omics/src/commands/StartReadSetExportJobCommand.ts b/clients/client-omics/src/commands/StartReadSetExportJobCommand.ts index d27bd079267b5..2153ac05da11e 100644 --- a/clients/client-omics/src/commands/StartReadSetExportJobCommand.ts +++ b/clients/client-omics/src/commands/StartReadSetExportJobCommand.ts @@ -88,6 +88,7 @@ export interface StartReadSetExportJobCommandOutput extends StartReadSetExportJo * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class StartReadSetExportJobCommand extends $Command diff --git a/clients/client-omics/src/commands/StartReadSetImportJobCommand.ts b/clients/client-omics/src/commands/StartReadSetImportJobCommand.ts index c1bab35c6b01f..eab6975306e6c 100644 --- a/clients/client-omics/src/commands/StartReadSetImportJobCommand.ts +++ b/clients/client-omics/src/commands/StartReadSetImportJobCommand.ts @@ -100,6 +100,7 @@ export interface StartReadSetImportJobCommandOutput extends StartReadSetImportJo * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class StartReadSetImportJobCommand extends $Command diff --git a/clients/client-omics/src/commands/StartReferenceImportJobCommand.ts b/clients/client-omics/src/commands/StartReferenceImportJobCommand.ts index 4dd6ccc43a0c5..b5dfce53f9103 100644 --- a/clients/client-omics/src/commands/StartReferenceImportJobCommand.ts +++ b/clients/client-omics/src/commands/StartReferenceImportJobCommand.ts @@ -92,6 +92,7 @@ export interface StartReferenceImportJobCommandOutput extends StartReferenceImpo * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class StartReferenceImportJobCommand extends $Command diff --git a/clients/client-omics/src/commands/StartRunCommand.ts b/clients/client-omics/src/commands/StartRunCommand.ts index d15f8aa69d86e..b470d6c459e8d 100644 --- a/clients/client-omics/src/commands/StartRunCommand.ts +++ b/clients/client-omics/src/commands/StartRunCommand.ts @@ -116,6 +116,7 @@ export interface StartRunCommandOutput extends StartRunResponse, __MetadataBeare * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class StartRunCommand extends $Command diff --git a/clients/client-omics/src/commands/StartVariantImportJobCommand.ts b/clients/client-omics/src/commands/StartVariantImportJobCommand.ts index b66c84275a44a..887d87ce3fc11 100644 --- a/clients/client-omics/src/commands/StartVariantImportJobCommand.ts +++ b/clients/client-omics/src/commands/StartVariantImportJobCommand.ts @@ -83,6 +83,7 @@ export interface StartVariantImportJobCommandOutput extends StartVariantImportRe * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class StartVariantImportJobCommand extends $Command diff --git a/clients/client-omics/src/commands/TagResourceCommand.ts b/clients/client-omics/src/commands/TagResourceCommand.ts index 5325d253cf150..882713fa15797 100644 --- a/clients/client-omics/src/commands/TagResourceCommand.ts +++ b/clients/client-omics/src/commands/TagResourceCommand.ts @@ -80,6 +80,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-omics/src/commands/UntagResourceCommand.ts b/clients/client-omics/src/commands/UntagResourceCommand.ts index 20aa4a561bfe1..0d040c2466299 100644 --- a/clients/client-omics/src/commands/UntagResourceCommand.ts +++ b/clients/client-omics/src/commands/UntagResourceCommand.ts @@ -80,6 +80,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-omics/src/commands/UpdateAnnotationStoreCommand.ts b/clients/client-omics/src/commands/UpdateAnnotationStoreCommand.ts index 62fbe6a0861ce..0e9ca21dd7bbc 100644 --- a/clients/client-omics/src/commands/UpdateAnnotationStoreCommand.ts +++ b/clients/client-omics/src/commands/UpdateAnnotationStoreCommand.ts @@ -93,6 +93,7 @@ export interface UpdateAnnotationStoreCommandOutput extends UpdateAnnotationStor * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class UpdateAnnotationStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/UpdateAnnotationStoreVersionCommand.ts b/clients/client-omics/src/commands/UpdateAnnotationStoreVersionCommand.ts index deaf1eea1dfcf..fb8e54ade3041 100644 --- a/clients/client-omics/src/commands/UpdateAnnotationStoreVersionCommand.ts +++ b/clients/client-omics/src/commands/UpdateAnnotationStoreVersionCommand.ts @@ -86,6 +86,7 @@ export interface UpdateAnnotationStoreVersionCommandOutput * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class UpdateAnnotationStoreVersionCommand extends $Command diff --git a/clients/client-omics/src/commands/UpdateRunCacheCommand.ts b/clients/client-omics/src/commands/UpdateRunCacheCommand.ts index 8e207dd7467ba..a6d8002b6acb4 100644 --- a/clients/client-omics/src/commands/UpdateRunCacheCommand.ts +++ b/clients/client-omics/src/commands/UpdateRunCacheCommand.ts @@ -80,6 +80,7 @@ export interface UpdateRunCacheCommandOutput extends __MetadataBearer {} * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class UpdateRunCacheCommand extends $Command diff --git a/clients/client-omics/src/commands/UpdateRunGroupCommand.ts b/clients/client-omics/src/commands/UpdateRunGroupCommand.ts index 02b386e25611e..644d29cb94524 100644 --- a/clients/client-omics/src/commands/UpdateRunGroupCommand.ts +++ b/clients/client-omics/src/commands/UpdateRunGroupCommand.ts @@ -82,6 +82,7 @@ export interface UpdateRunGroupCommandOutput extends __MetadataBearer {} * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class UpdateRunGroupCommand extends $Command diff --git a/clients/client-omics/src/commands/UpdateSequenceStoreCommand.ts b/clients/client-omics/src/commands/UpdateSequenceStoreCommand.ts index b518509b925a3..1927d693393e1 100644 --- a/clients/client-omics/src/commands/UpdateSequenceStoreCommand.ts +++ b/clients/client-omics/src/commands/UpdateSequenceStoreCommand.ts @@ -107,6 +107,7 @@ export interface UpdateSequenceStoreCommandOutput extends UpdateSequenceStoreRes * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class UpdateSequenceStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/UpdateVariantStoreCommand.ts b/clients/client-omics/src/commands/UpdateVariantStoreCommand.ts index 06c55e0ad973b..5cbc39aa132d5 100644 --- a/clients/client-omics/src/commands/UpdateVariantStoreCommand.ts +++ b/clients/client-omics/src/commands/UpdateVariantStoreCommand.ts @@ -79,6 +79,7 @@ export interface UpdateVariantStoreCommandOutput extends UpdateVariantStoreRespo * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class UpdateVariantStoreCommand extends $Command diff --git a/clients/client-omics/src/commands/UpdateWorkflowCommand.ts b/clients/client-omics/src/commands/UpdateWorkflowCommand.ts index 610409caaa0b2..d3780a232060f 100644 --- a/clients/client-omics/src/commands/UpdateWorkflowCommand.ts +++ b/clients/client-omics/src/commands/UpdateWorkflowCommand.ts @@ -79,6 +79,7 @@ export interface UpdateWorkflowCommandOutput extends __MetadataBearer {} * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class UpdateWorkflowCommand extends $Command diff --git a/clients/client-omics/src/commands/UploadReadSetPartCommand.ts b/clients/client-omics/src/commands/UploadReadSetPartCommand.ts index d06c41b2e552a..628eeef151ee1 100644 --- a/clients/client-omics/src/commands/UploadReadSetPartCommand.ts +++ b/clients/client-omics/src/commands/UploadReadSetPartCommand.ts @@ -93,6 +93,7 @@ export interface UploadReadSetPartCommandOutput extends UploadReadSetPartRespons * @throws {@link OmicsServiceException} *

Base exception class for all service exceptions from Omics service.

* + * * @public */ export class UploadReadSetPartCommand extends $Command diff --git a/clients/client-opensearch/src/commands/AcceptInboundConnectionCommand.ts b/clients/client-opensearch/src/commands/AcceptInboundConnectionCommand.ts index 0008945450b6a..0f7036680d61f 100644 --- a/clients/client-opensearch/src/commands/AcceptInboundConnectionCommand.ts +++ b/clients/client-opensearch/src/commands/AcceptInboundConnectionCommand.ts @@ -87,6 +87,7 @@ export interface AcceptInboundConnectionCommandOutput extends AcceptInboundConne * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class AcceptInboundConnectionCommand extends $Command diff --git a/clients/client-opensearch/src/commands/AddDataSourceCommand.ts b/clients/client-opensearch/src/commands/AddDataSourceCommand.ts index befbe88052804..93351607fcf54 100644 --- a/clients/client-opensearch/src/commands/AddDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/AddDataSourceCommand.ts @@ -84,6 +84,7 @@ export interface AddDataSourceCommandOutput extends AddDataSourceResponse, __Met * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class AddDataSourceCommand extends $Command diff --git a/clients/client-opensearch/src/commands/AddDirectQueryDataSourceCommand.ts b/clients/client-opensearch/src/commands/AddDirectQueryDataSourceCommand.ts index d8f7b32692ee9..467515948074e 100644 --- a/clients/client-opensearch/src/commands/AddDirectQueryDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/AddDirectQueryDataSourceCommand.ts @@ -94,6 +94,7 @@ export interface AddDirectQueryDataSourceCommandOutput extends AddDirectQueryDat * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class AddDirectQueryDataSourceCommand extends $Command diff --git a/clients/client-opensearch/src/commands/AddTagsCommand.ts b/clients/client-opensearch/src/commands/AddTagsCommand.ts index 4d9683e7a33c5..13bdbd48c7894 100644 --- a/clients/client-opensearch/src/commands/AddTagsCommand.ts +++ b/clients/client-opensearch/src/commands/AddTagsCommand.ts @@ -74,6 +74,7 @@ export interface AddTagsCommandOutput extends __MetadataBearer {} * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class AddTagsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/AssociatePackageCommand.ts b/clients/client-opensearch/src/commands/AssociatePackageCommand.ts index 252ee4db45031..22cfe975870be 100644 --- a/clients/client-opensearch/src/commands/AssociatePackageCommand.ts +++ b/clients/client-opensearch/src/commands/AssociatePackageCommand.ts @@ -107,6 +107,7 @@ export interface AssociatePackageCommandOutput extends AssociatePackageResponse, * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class AssociatePackageCommand extends $Command diff --git a/clients/client-opensearch/src/commands/AssociatePackagesCommand.ts b/clients/client-opensearch/src/commands/AssociatePackagesCommand.ts index fd6f387b89de1..b5a3ef3c71f65 100644 --- a/clients/client-opensearch/src/commands/AssociatePackagesCommand.ts +++ b/clients/client-opensearch/src/commands/AssociatePackagesCommand.ts @@ -111,6 +111,7 @@ export interface AssociatePackagesCommandOutput extends AssociatePackagesRespons * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class AssociatePackagesCommand extends $Command diff --git a/clients/client-opensearch/src/commands/AuthorizeVpcEndpointAccessCommand.ts b/clients/client-opensearch/src/commands/AuthorizeVpcEndpointAccessCommand.ts index 227ce5989440d..ca672d509a3a2 100644 --- a/clients/client-opensearch/src/commands/AuthorizeVpcEndpointAccessCommand.ts +++ b/clients/client-opensearch/src/commands/AuthorizeVpcEndpointAccessCommand.ts @@ -79,6 +79,7 @@ export interface AuthorizeVpcEndpointAccessCommandOutput extends AuthorizeVpcEnd * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class AuthorizeVpcEndpointAccessCommand extends $Command diff --git a/clients/client-opensearch/src/commands/CancelDomainConfigChangeCommand.ts b/clients/client-opensearch/src/commands/CancelDomainConfigChangeCommand.ts index 3da9ca300593e..a5e93d61c954c 100644 --- a/clients/client-opensearch/src/commands/CancelDomainConfigChangeCommand.ts +++ b/clients/client-opensearch/src/commands/CancelDomainConfigChangeCommand.ts @@ -81,6 +81,7 @@ export interface CancelDomainConfigChangeCommandOutput extends CancelDomainConfi * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class CancelDomainConfigChangeCommand extends $Command diff --git a/clients/client-opensearch/src/commands/CancelServiceSoftwareUpdateCommand.ts b/clients/client-opensearch/src/commands/CancelServiceSoftwareUpdateCommand.ts index 5c1a0742b6f47..391a879db9604 100644 --- a/clients/client-opensearch/src/commands/CancelServiceSoftwareUpdateCommand.ts +++ b/clients/client-opensearch/src/commands/CancelServiceSoftwareUpdateCommand.ts @@ -83,6 +83,7 @@ export interface CancelServiceSoftwareUpdateCommandOutput * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class CancelServiceSoftwareUpdateCommand extends $Command diff --git a/clients/client-opensearch/src/commands/CreateApplicationCommand.ts b/clients/client-opensearch/src/commands/CreateApplicationCommand.ts index e9b0a881cba04..818e12801b446 100644 --- a/clients/client-opensearch/src/commands/CreateApplicationCommand.ts +++ b/clients/client-opensearch/src/commands/CreateApplicationCommand.ts @@ -124,6 +124,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-opensearch/src/commands/CreateDomainCommand.ts b/clients/client-opensearch/src/commands/CreateDomainCommand.ts index 9422e2a9eb7a7..a91d4b3c922c1 100644 --- a/clients/client-opensearch/src/commands/CreateDomainCommand.ts +++ b/clients/client-opensearch/src/commands/CreateDomainCommand.ts @@ -401,6 +401,7 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class CreateDomainCommand extends $Command diff --git a/clients/client-opensearch/src/commands/CreateOutboundConnectionCommand.ts b/clients/client-opensearch/src/commands/CreateOutboundConnectionCommand.ts index 19b33fe7d1eb4..f810f00aa6f73 100644 --- a/clients/client-opensearch/src/commands/CreateOutboundConnectionCommand.ts +++ b/clients/client-opensearch/src/commands/CreateOutboundConnectionCommand.ts @@ -116,6 +116,7 @@ export interface CreateOutboundConnectionCommandOutput extends CreateOutboundCon * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class CreateOutboundConnectionCommand extends $Command diff --git a/clients/client-opensearch/src/commands/CreatePackageCommand.ts b/clients/client-opensearch/src/commands/CreatePackageCommand.ts index 9129fff63a128..91a7359a6f23e 100644 --- a/clients/client-opensearch/src/commands/CreatePackageCommand.ts +++ b/clients/client-opensearch/src/commands/CreatePackageCommand.ts @@ -135,6 +135,7 @@ export interface CreatePackageCommandOutput extends CreatePackageResponse, __Met * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class CreatePackageCommand extends $Command diff --git a/clients/client-opensearch/src/commands/CreateVpcEndpointCommand.ts b/clients/client-opensearch/src/commands/CreateVpcEndpointCommand.ts index 8a3ac55e9c0de..4fd8f82cd1f4b 100644 --- a/clients/client-opensearch/src/commands/CreateVpcEndpointCommand.ts +++ b/clients/client-opensearch/src/commands/CreateVpcEndpointCommand.ts @@ -100,6 +100,7 @@ export interface CreateVpcEndpointCommandOutput extends CreateVpcEndpointRespons * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class CreateVpcEndpointCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DeleteApplicationCommand.ts b/clients/client-opensearch/src/commands/DeleteApplicationCommand.ts index b653b79d751c2..989efc014eeba 100644 --- a/clients/client-opensearch/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteApplicationCommand.ts @@ -74,6 +74,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DeleteDataSourceCommand.ts b/clients/client-opensearch/src/commands/DeleteDataSourceCommand.ts index 1936901be8186..ed84385bb29ee 100644 --- a/clients/client-opensearch/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteDataSourceCommand.ts @@ -74,6 +74,7 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceResponse, * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DeleteDataSourceCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DeleteDirectQueryDataSourceCommand.ts b/clients/client-opensearch/src/commands/DeleteDirectQueryDataSourceCommand.ts index 4b2362860c23f..5642415a0fda0 100644 --- a/clients/client-opensearch/src/commands/DeleteDirectQueryDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteDirectQueryDataSourceCommand.ts @@ -74,6 +74,7 @@ export interface DeleteDirectQueryDataSourceCommandOutput extends __MetadataBear * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DeleteDirectQueryDataSourceCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DeleteDomainCommand.ts b/clients/client-opensearch/src/commands/DeleteDomainCommand.ts index b4faaefe83c19..05e45b7e0c900 100644 --- a/clients/client-opensearch/src/commands/DeleteDomainCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteDomainCommand.ts @@ -244,6 +244,7 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __Metad * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DeleteDomainCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DeleteInboundConnectionCommand.ts b/clients/client-opensearch/src/commands/DeleteInboundConnectionCommand.ts index f55ac86ebda80..4ac51b86a2033 100644 --- a/clients/client-opensearch/src/commands/DeleteInboundConnectionCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteInboundConnectionCommand.ts @@ -84,6 +84,7 @@ export interface DeleteInboundConnectionCommandOutput extends DeleteInboundConne * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DeleteInboundConnectionCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DeleteOutboundConnectionCommand.ts b/clients/client-opensearch/src/commands/DeleteOutboundConnectionCommand.ts index f10110a00f948..2d354709d66b2 100644 --- a/clients/client-opensearch/src/commands/DeleteOutboundConnectionCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteOutboundConnectionCommand.ts @@ -91,6 +91,7 @@ export interface DeleteOutboundConnectionCommandOutput extends DeleteOutboundCon * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DeleteOutboundConnectionCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DeletePackageCommand.ts b/clients/client-opensearch/src/commands/DeletePackageCommand.ts index 01d49f2103131..d6936efdf5cc1 100644 --- a/clients/client-opensearch/src/commands/DeletePackageCommand.ts +++ b/clients/client-opensearch/src/commands/DeletePackageCommand.ts @@ -112,6 +112,7 @@ export interface DeletePackageCommandOutput extends DeletePackageResponse, __Met * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DeletePackageCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DeleteVpcEndpointCommand.ts b/clients/client-opensearch/src/commands/DeleteVpcEndpointCommand.ts index ed54141c1a751..814c29c93d881 100644 --- a/clients/client-opensearch/src/commands/DeleteVpcEndpointCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteVpcEndpointCommand.ts @@ -72,6 +72,7 @@ export interface DeleteVpcEndpointCommandOutput extends DeleteVpcEndpointRespons * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DeleteVpcEndpointCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribeDomainAutoTunesCommand.ts b/clients/client-opensearch/src/commands/DescribeDomainAutoTunesCommand.ts index d89bfab305fbe..3173029ac2ae6 100644 --- a/clients/client-opensearch/src/commands/DescribeDomainAutoTunesCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDomainAutoTunesCommand.ts @@ -84,6 +84,7 @@ export interface DescribeDomainAutoTunesCommandOutput extends DescribeDomainAuto * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribeDomainAutoTunesCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribeDomainChangeProgressCommand.ts b/clients/client-opensearch/src/commands/DescribeDomainChangeProgressCommand.ts index b778a170cd84d..6ac5dc89e863a 100644 --- a/clients/client-opensearch/src/commands/DescribeDomainChangeProgressCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDomainChangeProgressCommand.ts @@ -96,6 +96,7 @@ export interface DescribeDomainChangeProgressCommandOutput * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribeDomainChangeProgressCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribeDomainCommand.ts b/clients/client-opensearch/src/commands/DescribeDomainCommand.ts index 2a110956b55b1..2a89cdce8bbda 100644 --- a/clients/client-opensearch/src/commands/DescribeDomainCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDomainCommand.ts @@ -244,6 +244,7 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResponse, __M * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribeDomainCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribeDomainConfigCommand.ts b/clients/client-opensearch/src/commands/DescribeDomainConfigCommand.ts index bb7f41544e79b..2277f027a1c65 100644 --- a/clients/client-opensearch/src/commands/DescribeDomainConfigCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDomainConfigCommand.ts @@ -323,6 +323,7 @@ export interface DescribeDomainConfigCommandOutput extends DescribeDomainConfigR * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribeDomainConfigCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribeDomainHealthCommand.ts b/clients/client-opensearch/src/commands/DescribeDomainHealthCommand.ts index 1d06b7adcc46b..84c32e4c98bee 100644 --- a/clients/client-opensearch/src/commands/DescribeDomainHealthCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDomainHealthCommand.ts @@ -95,6 +95,7 @@ export interface DescribeDomainHealthCommandOutput extends DescribeDomainHealthR * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribeDomainHealthCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribeDomainNodesCommand.ts b/clients/client-opensearch/src/commands/DescribeDomainNodesCommand.ts index 3e4be52f8f009..fd333f764cd99 100644 --- a/clients/client-opensearch/src/commands/DescribeDomainNodesCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDomainNodesCommand.ts @@ -85,6 +85,7 @@ export interface DescribeDomainNodesCommandOutput extends DescribeDomainNodesRes * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribeDomainNodesCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribeDomainsCommand.ts b/clients/client-opensearch/src/commands/DescribeDomainsCommand.ts index 1686c46644615..63cfa103a84a7 100644 --- a/clients/client-opensearch/src/commands/DescribeDomainsCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDomainsCommand.ts @@ -245,6 +245,7 @@ export interface DescribeDomainsCommandOutput extends DescribeDomainsResponse, _ * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribeDomainsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribeDryRunProgressCommand.ts b/clients/client-opensearch/src/commands/DescribeDryRunProgressCommand.ts index 2cfa899d5b11d..e7cd507508f99 100644 --- a/clients/client-opensearch/src/commands/DescribeDryRunProgressCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDryRunProgressCommand.ts @@ -265,6 +265,7 @@ export interface DescribeDryRunProgressCommandOutput extends DescribeDryRunProgr * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribeDryRunProgressCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribeInboundConnectionsCommand.ts b/clients/client-opensearch/src/commands/DescribeInboundConnectionsCommand.ts index 4732f2065aed5..f8a32c873fce3 100644 --- a/clients/client-opensearch/src/commands/DescribeInboundConnectionsCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeInboundConnectionsCommand.ts @@ -96,6 +96,7 @@ export interface DescribeInboundConnectionsCommandOutput extends DescribeInbound * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribeInboundConnectionsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribeInstanceTypeLimitsCommand.ts b/clients/client-opensearch/src/commands/DescribeInstanceTypeLimitsCommand.ts index 66bd2f53e15dd..9576e2975c5d2 100644 --- a/clients/client-opensearch/src/commands/DescribeInstanceTypeLimitsCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeInstanceTypeLimitsCommand.ts @@ -107,6 +107,7 @@ export interface DescribeInstanceTypeLimitsCommandOutput extends DescribeInstanc * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribeInstanceTypeLimitsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribeOutboundConnectionsCommand.ts b/clients/client-opensearch/src/commands/DescribeOutboundConnectionsCommand.ts index 29a9573da3400..b1096b2543ecb 100644 --- a/clients/client-opensearch/src/commands/DescribeOutboundConnectionsCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeOutboundConnectionsCommand.ts @@ -108,6 +108,7 @@ export interface DescribeOutboundConnectionsCommandOutput * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribeOutboundConnectionsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribePackagesCommand.ts b/clients/client-opensearch/src/commands/DescribePackagesCommand.ts index a087f2d0152bd..159b16e47c3dd 100644 --- a/clients/client-opensearch/src/commands/DescribePackagesCommand.ts +++ b/clients/client-opensearch/src/commands/DescribePackagesCommand.ts @@ -121,6 +121,7 @@ export interface DescribePackagesCommandOutput extends DescribePackagesResponse, * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribePackagesCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribeReservedInstanceOfferingsCommand.ts b/clients/client-opensearch/src/commands/DescribeReservedInstanceOfferingsCommand.ts index f5a8bddeb0057..f09e5ea509bba 100644 --- a/clients/client-opensearch/src/commands/DescribeReservedInstanceOfferingsCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeReservedInstanceOfferingsCommand.ts @@ -95,6 +95,7 @@ export interface DescribeReservedInstanceOfferingsCommandOutput * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribeReservedInstanceOfferingsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribeReservedInstancesCommand.ts b/clients/client-opensearch/src/commands/DescribeReservedInstancesCommand.ts index 4b5ca69daae95..284118c99a290 100644 --- a/clients/client-opensearch/src/commands/DescribeReservedInstancesCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeReservedInstancesCommand.ts @@ -94,6 +94,7 @@ export interface DescribeReservedInstancesCommandOutput extends DescribeReserved * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribeReservedInstancesCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DescribeVpcEndpointsCommand.ts b/clients/client-opensearch/src/commands/DescribeVpcEndpointsCommand.ts index 4ad6cb4f77d13..97d0aad917835 100644 --- a/clients/client-opensearch/src/commands/DescribeVpcEndpointsCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeVpcEndpointsCommand.ts @@ -96,6 +96,7 @@ export interface DescribeVpcEndpointsCommandOutput extends DescribeVpcEndpointsR * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DescribeVpcEndpointsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DissociatePackageCommand.ts b/clients/client-opensearch/src/commands/DissociatePackageCommand.ts index 6594b1bd5a0f4..4369a0f6e47fc 100644 --- a/clients/client-opensearch/src/commands/DissociatePackageCommand.ts +++ b/clients/client-opensearch/src/commands/DissociatePackageCommand.ts @@ -99,6 +99,7 @@ export interface DissociatePackageCommandOutput extends DissociatePackageRespons * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DissociatePackageCommand extends $Command diff --git a/clients/client-opensearch/src/commands/DissociatePackagesCommand.ts b/clients/client-opensearch/src/commands/DissociatePackagesCommand.ts index 3fb17adf440d0..4ef4e94431e2a 100644 --- a/clients/client-opensearch/src/commands/DissociatePackagesCommand.ts +++ b/clients/client-opensearch/src/commands/DissociatePackagesCommand.ts @@ -100,6 +100,7 @@ export interface DissociatePackagesCommandOutput extends DissociatePackagesRespo * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class DissociatePackagesCommand extends $Command diff --git a/clients/client-opensearch/src/commands/GetApplicationCommand.ts b/clients/client-opensearch/src/commands/GetApplicationCommand.ts index 39aa0c1de321c..96e97922c7d5e 100644 --- a/clients/client-opensearch/src/commands/GetApplicationCommand.ts +++ b/clients/client-opensearch/src/commands/GetApplicationCommand.ts @@ -97,6 +97,7 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class GetApplicationCommand extends $Command diff --git a/clients/client-opensearch/src/commands/GetCompatibleVersionsCommand.ts b/clients/client-opensearch/src/commands/GetCompatibleVersionsCommand.ts index 5635ed1db89b0..392523906a2ca 100644 --- a/clients/client-opensearch/src/commands/GetCompatibleVersionsCommand.ts +++ b/clients/client-opensearch/src/commands/GetCompatibleVersionsCommand.ts @@ -78,6 +78,7 @@ export interface GetCompatibleVersionsCommandOutput extends GetCompatibleVersion * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class GetCompatibleVersionsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/GetDataSourceCommand.ts b/clients/client-opensearch/src/commands/GetDataSourceCommand.ts index 09f36cbfb96aa..0d624f329b1b0 100644 --- a/clients/client-opensearch/src/commands/GetDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/GetDataSourceCommand.ts @@ -81,6 +81,7 @@ export interface GetDataSourceCommandOutput extends GetDataSourceResponse, __Met * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class GetDataSourceCommand extends $Command diff --git a/clients/client-opensearch/src/commands/GetDirectQueryDataSourceCommand.ts b/clients/client-opensearch/src/commands/GetDirectQueryDataSourceCommand.ts index 245c3ad23a404..4c73b9be55de9 100644 --- a/clients/client-opensearch/src/commands/GetDirectQueryDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/GetDirectQueryDataSourceCommand.ts @@ -86,6 +86,7 @@ export interface GetDirectQueryDataSourceCommandOutput extends GetDirectQueryDat * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class GetDirectQueryDataSourceCommand extends $Command diff --git a/clients/client-opensearch/src/commands/GetDomainMaintenanceStatusCommand.ts b/clients/client-opensearch/src/commands/GetDomainMaintenanceStatusCommand.ts index de11e05a270e9..ac492c6267644 100644 --- a/clients/client-opensearch/src/commands/GetDomainMaintenanceStatusCommand.ts +++ b/clients/client-opensearch/src/commands/GetDomainMaintenanceStatusCommand.ts @@ -76,6 +76,7 @@ export interface GetDomainMaintenanceStatusCommandOutput extends GetDomainMainte * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class GetDomainMaintenanceStatusCommand extends $Command diff --git a/clients/client-opensearch/src/commands/GetPackageVersionHistoryCommand.ts b/clients/client-opensearch/src/commands/GetPackageVersionHistoryCommand.ts index ca3db434d3502..22fa977cdfa89 100644 --- a/clients/client-opensearch/src/commands/GetPackageVersionHistoryCommand.ts +++ b/clients/client-opensearch/src/commands/GetPackageVersionHistoryCommand.ts @@ -95,6 +95,7 @@ export interface GetPackageVersionHistoryCommandOutput extends GetPackageVersion * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class GetPackageVersionHistoryCommand extends $Command diff --git a/clients/client-opensearch/src/commands/GetUpgradeHistoryCommand.ts b/clients/client-opensearch/src/commands/GetUpgradeHistoryCommand.ts index 4a7af04781571..7d91789a1b073 100644 --- a/clients/client-opensearch/src/commands/GetUpgradeHistoryCommand.ts +++ b/clients/client-opensearch/src/commands/GetUpgradeHistoryCommand.ts @@ -90,6 +90,7 @@ export interface GetUpgradeHistoryCommandOutput extends GetUpgradeHistoryRespons * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class GetUpgradeHistoryCommand extends $Command diff --git a/clients/client-opensearch/src/commands/GetUpgradeStatusCommand.ts b/clients/client-opensearch/src/commands/GetUpgradeStatusCommand.ts index e2be4b0147acb..56fef6d877c78 100644 --- a/clients/client-opensearch/src/commands/GetUpgradeStatusCommand.ts +++ b/clients/client-opensearch/src/commands/GetUpgradeStatusCommand.ts @@ -73,6 +73,7 @@ export interface GetUpgradeStatusCommandOutput extends GetUpgradeStatusResponse, * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class GetUpgradeStatusCommand extends $Command diff --git a/clients/client-opensearch/src/commands/ListApplicationsCommand.ts b/clients/client-opensearch/src/commands/ListApplicationsCommand.ts index e6ee4ea070392..e69c56eed8c7b 100644 --- a/clients/client-opensearch/src/commands/ListApplicationsCommand.ts +++ b/clients/client-opensearch/src/commands/ListApplicationsCommand.ts @@ -88,6 +88,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/ListDataSourcesCommand.ts b/clients/client-opensearch/src/commands/ListDataSourcesCommand.ts index 0c8d12ddd5d06..8e0aefd56f1a7 100644 --- a/clients/client-opensearch/src/commands/ListDataSourcesCommand.ts +++ b/clients/client-opensearch/src/commands/ListDataSourcesCommand.ts @@ -86,6 +86,7 @@ export interface ListDataSourcesCommandOutput extends ListDataSourcesResponse, _ * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class ListDataSourcesCommand extends $Command diff --git a/clients/client-opensearch/src/commands/ListDirectQueryDataSourcesCommand.ts b/clients/client-opensearch/src/commands/ListDirectQueryDataSourcesCommand.ts index 2bdb480d07698..4e3c225c4f71e 100644 --- a/clients/client-opensearch/src/commands/ListDirectQueryDataSourcesCommand.ts +++ b/clients/client-opensearch/src/commands/ListDirectQueryDataSourcesCommand.ts @@ -97,6 +97,7 @@ export interface ListDirectQueryDataSourcesCommandOutput extends ListDirectQuery * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class ListDirectQueryDataSourcesCommand extends $Command diff --git a/clients/client-opensearch/src/commands/ListDomainMaintenancesCommand.ts b/clients/client-opensearch/src/commands/ListDomainMaintenancesCommand.ts index 2ac6a35ea9024..42210440fdd46 100644 --- a/clients/client-opensearch/src/commands/ListDomainMaintenancesCommand.ts +++ b/clients/client-opensearch/src/commands/ListDomainMaintenancesCommand.ts @@ -86,6 +86,7 @@ export interface ListDomainMaintenancesCommandOutput extends ListDomainMaintenan * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class ListDomainMaintenancesCommand extends $Command diff --git a/clients/client-opensearch/src/commands/ListDomainNamesCommand.ts b/clients/client-opensearch/src/commands/ListDomainNamesCommand.ts index 7d99046d3132b..03c263291d2de 100644 --- a/clients/client-opensearch/src/commands/ListDomainNamesCommand.ts +++ b/clients/client-opensearch/src/commands/ListDomainNamesCommand.ts @@ -67,6 +67,7 @@ export interface ListDomainNamesCommandOutput extends ListDomainNamesResponse, _ * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class ListDomainNamesCommand extends $Command diff --git a/clients/client-opensearch/src/commands/ListDomainsForPackageCommand.ts b/clients/client-opensearch/src/commands/ListDomainsForPackageCommand.ts index c374bfcff6540..ba6f99d545a92 100644 --- a/clients/client-opensearch/src/commands/ListDomainsForPackageCommand.ts +++ b/clients/client-opensearch/src/commands/ListDomainsForPackageCommand.ts @@ -99,6 +99,7 @@ export interface ListDomainsForPackageCommandOutput extends ListDomainsForPackag * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class ListDomainsForPackageCommand extends $Command diff --git a/clients/client-opensearch/src/commands/ListInstanceTypeDetailsCommand.ts b/clients/client-opensearch/src/commands/ListInstanceTypeDetailsCommand.ts index e8a52e6194aa3..b7af9a5fadc22 100644 --- a/clients/client-opensearch/src/commands/ListInstanceTypeDetailsCommand.ts +++ b/clients/client-opensearch/src/commands/ListInstanceTypeDetailsCommand.ts @@ -89,6 +89,7 @@ export interface ListInstanceTypeDetailsCommandOutput extends ListInstanceTypeDe * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class ListInstanceTypeDetailsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/ListPackagesForDomainCommand.ts b/clients/client-opensearch/src/commands/ListPackagesForDomainCommand.ts index 1d5d5549133ce..38b58d8134743 100644 --- a/clients/client-opensearch/src/commands/ListPackagesForDomainCommand.ts +++ b/clients/client-opensearch/src/commands/ListPackagesForDomainCommand.ts @@ -99,6 +99,7 @@ export interface ListPackagesForDomainCommandOutput extends ListPackagesForDomai * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class ListPackagesForDomainCommand extends $Command diff --git a/clients/client-opensearch/src/commands/ListScheduledActionsCommand.ts b/clients/client-opensearch/src/commands/ListScheduledActionsCommand.ts index 18513f0d4c7ff..6d5891271183d 100644 --- a/clients/client-opensearch/src/commands/ListScheduledActionsCommand.ts +++ b/clients/client-opensearch/src/commands/ListScheduledActionsCommand.ts @@ -88,6 +88,7 @@ export interface ListScheduledActionsCommandOutput extends ListScheduledActionsR * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class ListScheduledActionsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/ListTagsCommand.ts b/clients/client-opensearch/src/commands/ListTagsCommand.ts index 07c29e5e37908..fd8cf31db0340 100644 --- a/clients/client-opensearch/src/commands/ListTagsCommand.ts +++ b/clients/client-opensearch/src/commands/ListTagsCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class ListTagsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/ListVersionsCommand.ts b/clients/client-opensearch/src/commands/ListVersionsCommand.ts index bca3211074612..85b064cb7e44b 100644 --- a/clients/client-opensearch/src/commands/ListVersionsCommand.ts +++ b/clients/client-opensearch/src/commands/ListVersionsCommand.ts @@ -72,6 +72,7 @@ export interface ListVersionsCommandOutput extends ListVersionsResponse, __Metad * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class ListVersionsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/ListVpcEndpointAccessCommand.ts b/clients/client-opensearch/src/commands/ListVpcEndpointAccessCommand.ts index a716d43e1d64f..223cab0db30c9 100644 --- a/clients/client-opensearch/src/commands/ListVpcEndpointAccessCommand.ts +++ b/clients/client-opensearch/src/commands/ListVpcEndpointAccessCommand.ts @@ -75,6 +75,7 @@ export interface ListVpcEndpointAccessCommandOutput extends ListVpcEndpointAcces * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class ListVpcEndpointAccessCommand extends $Command diff --git a/clients/client-opensearch/src/commands/ListVpcEndpointsCommand.ts b/clients/client-opensearch/src/commands/ListVpcEndpointsCommand.ts index 51110fbfe4df2..d0cca880ca2dd 100644 --- a/clients/client-opensearch/src/commands/ListVpcEndpointsCommand.ts +++ b/clients/client-opensearch/src/commands/ListVpcEndpointsCommand.ts @@ -72,6 +72,7 @@ export interface ListVpcEndpointsCommandOutput extends ListVpcEndpointsResponse, * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class ListVpcEndpointsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/ListVpcEndpointsForDomainCommand.ts b/clients/client-opensearch/src/commands/ListVpcEndpointsForDomainCommand.ts index 41353c0d00057..86e3f48a2c826 100644 --- a/clients/client-opensearch/src/commands/ListVpcEndpointsForDomainCommand.ts +++ b/clients/client-opensearch/src/commands/ListVpcEndpointsForDomainCommand.ts @@ -77,6 +77,7 @@ export interface ListVpcEndpointsForDomainCommandOutput extends ListVpcEndpoints * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class ListVpcEndpointsForDomainCommand extends $Command diff --git a/clients/client-opensearch/src/commands/PurchaseReservedInstanceOfferingCommand.ts b/clients/client-opensearch/src/commands/PurchaseReservedInstanceOfferingCommand.ts index cb04a457f13af..1bc40554b60a6 100644 --- a/clients/client-opensearch/src/commands/PurchaseReservedInstanceOfferingCommand.ts +++ b/clients/client-opensearch/src/commands/PurchaseReservedInstanceOfferingCommand.ts @@ -81,6 +81,7 @@ export interface PurchaseReservedInstanceOfferingCommandOutput * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class PurchaseReservedInstanceOfferingCommand extends $Command diff --git a/clients/client-opensearch/src/commands/RejectInboundConnectionCommand.ts b/clients/client-opensearch/src/commands/RejectInboundConnectionCommand.ts index 0adbdd4032fcf..1d05ef6a35da4 100644 --- a/clients/client-opensearch/src/commands/RejectInboundConnectionCommand.ts +++ b/clients/client-opensearch/src/commands/RejectInboundConnectionCommand.ts @@ -83,6 +83,7 @@ export interface RejectInboundConnectionCommandOutput extends RejectInboundConne * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class RejectInboundConnectionCommand extends $Command diff --git a/clients/client-opensearch/src/commands/RemoveTagsCommand.ts b/clients/client-opensearch/src/commands/RemoveTagsCommand.ts index 17a18a4b6c7f2..314d37026134e 100644 --- a/clients/client-opensearch/src/commands/RemoveTagsCommand.ts +++ b/clients/client-opensearch/src/commands/RemoveTagsCommand.ts @@ -66,6 +66,7 @@ export interface RemoveTagsCommandOutput extends __MetadataBearer {} * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class RemoveTagsCommand extends $Command diff --git a/clients/client-opensearch/src/commands/RevokeVpcEndpointAccessCommand.ts b/clients/client-opensearch/src/commands/RevokeVpcEndpointAccessCommand.ts index 58d9a055da17c..0f6e2a8c6c259 100644 --- a/clients/client-opensearch/src/commands/RevokeVpcEndpointAccessCommand.ts +++ b/clients/client-opensearch/src/commands/RevokeVpcEndpointAccessCommand.ts @@ -71,6 +71,7 @@ export interface RevokeVpcEndpointAccessCommandOutput extends RevokeVpcEndpointA * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class RevokeVpcEndpointAccessCommand extends $Command diff --git a/clients/client-opensearch/src/commands/StartDomainMaintenanceCommand.ts b/clients/client-opensearch/src/commands/StartDomainMaintenanceCommand.ts index 3ecbeb4c9a0cb..6cccae4917cd5 100644 --- a/clients/client-opensearch/src/commands/StartDomainMaintenanceCommand.ts +++ b/clients/client-opensearch/src/commands/StartDomainMaintenanceCommand.ts @@ -73,6 +73,7 @@ export interface StartDomainMaintenanceCommandOutput extends StartDomainMaintena * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class StartDomainMaintenanceCommand extends $Command diff --git a/clients/client-opensearch/src/commands/StartServiceSoftwareUpdateCommand.ts b/clients/client-opensearch/src/commands/StartServiceSoftwareUpdateCommand.ts index 6942e55290ac6..e195f24cfe297 100644 --- a/clients/client-opensearch/src/commands/StartServiceSoftwareUpdateCommand.ts +++ b/clients/client-opensearch/src/commands/StartServiceSoftwareUpdateCommand.ts @@ -80,6 +80,7 @@ export interface StartServiceSoftwareUpdateCommandOutput extends StartServiceSof * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class StartServiceSoftwareUpdateCommand extends $Command diff --git a/clients/client-opensearch/src/commands/UpdateApplicationCommand.ts b/clients/client-opensearch/src/commands/UpdateApplicationCommand.ts index 531fb3af51c2e..acf013bcd0979 100644 --- a/clients/client-opensearch/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-opensearch/src/commands/UpdateApplicationCommand.ts @@ -110,6 +110,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-opensearch/src/commands/UpdateDataSourceCommand.ts b/clients/client-opensearch/src/commands/UpdateDataSourceCommand.ts index 4cb62120df554..97da0165ec954 100644 --- a/clients/client-opensearch/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/UpdateDataSourceCommand.ts @@ -82,6 +82,7 @@ export interface UpdateDataSourceCommandOutput extends UpdateDataSourceResponse, * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class UpdateDataSourceCommand extends $Command diff --git a/clients/client-opensearch/src/commands/UpdateDirectQueryDataSourceCommand.ts b/clients/client-opensearch/src/commands/UpdateDirectQueryDataSourceCommand.ts index b72877aa25992..51c8d6adbd264 100644 --- a/clients/client-opensearch/src/commands/UpdateDirectQueryDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/UpdateDirectQueryDataSourceCommand.ts @@ -90,6 +90,7 @@ export interface UpdateDirectQueryDataSourceCommandOutput * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class UpdateDirectQueryDataSourceCommand extends $Command diff --git a/clients/client-opensearch/src/commands/UpdateDomainConfigCommand.ts b/clients/client-opensearch/src/commands/UpdateDomainConfigCommand.ts index 23a2bb5856a99..07a0579af4493 100644 --- a/clients/client-opensearch/src/commands/UpdateDomainConfigCommand.ts +++ b/clients/client-opensearch/src/commands/UpdateDomainConfigCommand.ts @@ -495,6 +495,7 @@ export interface UpdateDomainConfigCommandOutput extends UpdateDomainConfigRespo * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class UpdateDomainConfigCommand extends $Command diff --git a/clients/client-opensearch/src/commands/UpdatePackageCommand.ts b/clients/client-opensearch/src/commands/UpdatePackageCommand.ts index f06a0f38c6928..49e9bcab170a5 100644 --- a/clients/client-opensearch/src/commands/UpdatePackageCommand.ts +++ b/clients/client-opensearch/src/commands/UpdatePackageCommand.ts @@ -128,6 +128,7 @@ export interface UpdatePackageCommandOutput extends UpdatePackageResponse, __Met * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class UpdatePackageCommand extends $Command diff --git a/clients/client-opensearch/src/commands/UpdatePackageScopeCommand.ts b/clients/client-opensearch/src/commands/UpdatePackageScopeCommand.ts index c8eaf7bd8023f..79f5b51dc42ad 100644 --- a/clients/client-opensearch/src/commands/UpdatePackageScopeCommand.ts +++ b/clients/client-opensearch/src/commands/UpdatePackageScopeCommand.ts @@ -78,6 +78,7 @@ export interface UpdatePackageScopeCommandOutput extends UpdatePackageScopeRespo * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class UpdatePackageScopeCommand extends $Command diff --git a/clients/client-opensearch/src/commands/UpdateScheduledActionCommand.ts b/clients/client-opensearch/src/commands/UpdateScheduledActionCommand.ts index eeaa6840303fa..e00bbc7c58ef4 100644 --- a/clients/client-opensearch/src/commands/UpdateScheduledActionCommand.ts +++ b/clients/client-opensearch/src/commands/UpdateScheduledActionCommand.ts @@ -93,6 +93,7 @@ export interface UpdateScheduledActionCommandOutput extends UpdateScheduledActio * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class UpdateScheduledActionCommand extends $Command diff --git a/clients/client-opensearch/src/commands/UpdateVpcEndpointCommand.ts b/clients/client-opensearch/src/commands/UpdateVpcEndpointCommand.ts index 475c1b3cfd92b..bd837a1f50f8b 100644 --- a/clients/client-opensearch/src/commands/UpdateVpcEndpointCommand.ts +++ b/clients/client-opensearch/src/commands/UpdateVpcEndpointCommand.ts @@ -99,6 +99,7 @@ export interface UpdateVpcEndpointCommandOutput extends UpdateVpcEndpointRespons * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class UpdateVpcEndpointCommand extends $Command diff --git a/clients/client-opensearch/src/commands/UpgradeDomainCommand.ts b/clients/client-opensearch/src/commands/UpgradeDomainCommand.ts index fe42078301ebb..6c3f87e26b895 100644 --- a/clients/client-opensearch/src/commands/UpgradeDomainCommand.ts +++ b/clients/client-opensearch/src/commands/UpgradeDomainCommand.ts @@ -93,6 +93,7 @@ export interface UpgradeDomainCommandOutput extends UpgradeDomainResponse, __Met * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* + * * @public */ export class UpgradeDomainCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/BatchGetCollectionCommand.ts b/clients/client-opensearchserverless/src/commands/BatchGetCollectionCommand.ts index 04795f433ffe6..e5b5ddd62c612 100644 --- a/clients/client-opensearchserverless/src/commands/BatchGetCollectionCommand.ts +++ b/clients/client-opensearchserverless/src/commands/BatchGetCollectionCommand.ts @@ -98,6 +98,7 @@ export interface BatchGetCollectionCommandOutput extends BatchGetCollectionRespo * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class BatchGetCollectionCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/BatchGetEffectiveLifecyclePolicyCommand.ts b/clients/client-opensearchserverless/src/commands/BatchGetEffectiveLifecyclePolicyCommand.ts index 6ce082620c08f..58c3c901addb8 100644 --- a/clients/client-opensearchserverless/src/commands/BatchGetEffectiveLifecyclePolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/BatchGetEffectiveLifecyclePolicyCommand.ts @@ -93,6 +93,7 @@ export interface BatchGetEffectiveLifecyclePolicyCommandOutput * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class BatchGetEffectiveLifecyclePolicyCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/BatchGetLifecyclePolicyCommand.ts b/clients/client-opensearchserverless/src/commands/BatchGetLifecyclePolicyCommand.ts index 6b36d548dcf55..69ae92f63aa0b 100644 --- a/clients/client-opensearchserverless/src/commands/BatchGetLifecyclePolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/BatchGetLifecyclePolicyCommand.ts @@ -89,6 +89,7 @@ export interface BatchGetLifecyclePolicyCommandOutput extends BatchGetLifecycleP * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class BatchGetLifecyclePolicyCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/BatchGetVpcEndpointCommand.ts b/clients/client-opensearchserverless/src/commands/BatchGetVpcEndpointCommand.ts index 328e0652c01c6..df985ce4d68f0 100644 --- a/clients/client-opensearchserverless/src/commands/BatchGetVpcEndpointCommand.ts +++ b/clients/client-opensearchserverless/src/commands/BatchGetVpcEndpointCommand.ts @@ -93,6 +93,7 @@ export interface BatchGetVpcEndpointCommandOutput extends BatchGetVpcEndpointRes * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class BatchGetVpcEndpointCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/CreateAccessPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/CreateAccessPolicyCommand.ts index 6652587d5bb6c..2492ce74f5eda 100644 --- a/clients/client-opensearchserverless/src/commands/CreateAccessPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/CreateAccessPolicyCommand.ts @@ -89,6 +89,7 @@ export interface CreateAccessPolicyCommandOutput extends CreateAccessPolicyRespo * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class CreateAccessPolicyCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/CreateCollectionCommand.ts b/clients/client-opensearchserverless/src/commands/CreateCollectionCommand.ts index e6ac6ab7dd10a..3c41efb379aea 100644 --- a/clients/client-opensearchserverless/src/commands/CreateCollectionCommand.ts +++ b/clients/client-opensearchserverless/src/commands/CreateCollectionCommand.ts @@ -99,6 +99,7 @@ export interface CreateCollectionCommandOutput extends CreateCollectionResponse, * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class CreateCollectionCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/CreateLifecyclePolicyCommand.ts b/clients/client-opensearchserverless/src/commands/CreateLifecyclePolicyCommand.ts index 2957a9e712d7c..b2c56ddb0ab8f 100644 --- a/clients/client-opensearchserverless/src/commands/CreateLifecyclePolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/CreateLifecyclePolicyCommand.ts @@ -87,6 +87,7 @@ export interface CreateLifecyclePolicyCommandOutput extends CreateLifecyclePolic * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class CreateLifecyclePolicyCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/CreateSecurityConfigCommand.ts b/clients/client-opensearchserverless/src/commands/CreateSecurityConfigCommand.ts index 4567f590b2113..537cd9179b6b8 100644 --- a/clients/client-opensearchserverless/src/commands/CreateSecurityConfigCommand.ts +++ b/clients/client-opensearchserverless/src/commands/CreateSecurityConfigCommand.ts @@ -113,6 +113,7 @@ export interface CreateSecurityConfigCommandOutput extends CreateSecurityConfigR * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class CreateSecurityConfigCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/CreateSecurityPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/CreateSecurityPolicyCommand.ts index a897e40af4462..90ee2e7626d6f 100644 --- a/clients/client-opensearchserverless/src/commands/CreateSecurityPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/CreateSecurityPolicyCommand.ts @@ -91,6 +91,7 @@ export interface CreateSecurityPolicyCommandOutput extends CreateSecurityPolicyR * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class CreateSecurityPolicyCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/CreateVpcEndpointCommand.ts b/clients/client-opensearchserverless/src/commands/CreateVpcEndpointCommand.ts index 0fae36c69c6ba..d533924d9a357 100644 --- a/clients/client-opensearchserverless/src/commands/CreateVpcEndpointCommand.ts +++ b/clients/client-opensearchserverless/src/commands/CreateVpcEndpointCommand.ts @@ -87,6 +87,7 @@ export interface CreateVpcEndpointCommandOutput extends CreateVpcEndpointRespons * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class CreateVpcEndpointCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/DeleteAccessPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/DeleteAccessPolicyCommand.ts index 85913adbed53c..949e4fdd3a074 100644 --- a/clients/client-opensearchserverless/src/commands/DeleteAccessPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/DeleteAccessPolicyCommand.ts @@ -75,6 +75,7 @@ export interface DeleteAccessPolicyCommandOutput extends DeleteAccessPolicyRespo * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class DeleteAccessPolicyCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/DeleteCollectionCommand.ts b/clients/client-opensearchserverless/src/commands/DeleteCollectionCommand.ts index 89f35e9433cdd..9c352b89c9b26 100644 --- a/clients/client-opensearchserverless/src/commands/DeleteCollectionCommand.ts +++ b/clients/client-opensearchserverless/src/commands/DeleteCollectionCommand.ts @@ -80,6 +80,7 @@ export interface DeleteCollectionCommandOutput extends DeleteCollectionResponse, * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class DeleteCollectionCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/DeleteLifecyclePolicyCommand.ts b/clients/client-opensearchserverless/src/commands/DeleteLifecyclePolicyCommand.ts index 799aa45f112d2..78b0a81b8c87c 100644 --- a/clients/client-opensearchserverless/src/commands/DeleteLifecyclePolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/DeleteLifecyclePolicyCommand.ts @@ -74,6 +74,7 @@ export interface DeleteLifecyclePolicyCommandOutput extends DeleteLifecyclePolic * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class DeleteLifecyclePolicyCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/DeleteSecurityConfigCommand.ts b/clients/client-opensearchserverless/src/commands/DeleteSecurityConfigCommand.ts index b9a71c95e4055..f4e8b1d62a3f7 100644 --- a/clients/client-opensearchserverless/src/commands/DeleteSecurityConfigCommand.ts +++ b/clients/client-opensearchserverless/src/commands/DeleteSecurityConfigCommand.ts @@ -75,6 +75,7 @@ export interface DeleteSecurityConfigCommandOutput extends DeleteSecurityConfigR * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class DeleteSecurityConfigCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/DeleteSecurityPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/DeleteSecurityPolicyCommand.ts index 199131ef0f6f2..3fdf22df8e3d1 100644 --- a/clients/client-opensearchserverless/src/commands/DeleteSecurityPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/DeleteSecurityPolicyCommand.ts @@ -74,6 +74,7 @@ export interface DeleteSecurityPolicyCommandOutput extends DeleteSecurityPolicyR * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class DeleteSecurityPolicyCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/DeleteVpcEndpointCommand.ts b/clients/client-opensearchserverless/src/commands/DeleteVpcEndpointCommand.ts index 2724e1b3c5267..878b1874d4f27 100644 --- a/clients/client-opensearchserverless/src/commands/DeleteVpcEndpointCommand.ts +++ b/clients/client-opensearchserverless/src/commands/DeleteVpcEndpointCommand.ts @@ -80,6 +80,7 @@ export interface DeleteVpcEndpointCommandOutput extends DeleteVpcEndpointRespons * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class DeleteVpcEndpointCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/GetAccessPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/GetAccessPolicyCommand.ts index 01ae67f272662..cb26aaeaf7ca0 100644 --- a/clients/client-opensearchserverless/src/commands/GetAccessPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/GetAccessPolicyCommand.ts @@ -79,6 +79,7 @@ export interface GetAccessPolicyCommandOutput extends GetAccessPolicyResponse, _ * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class GetAccessPolicyCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/GetAccountSettingsCommand.ts b/clients/client-opensearchserverless/src/commands/GetAccountSettingsCommand.ts index 26aee9054a946..ea851169a195e 100644 --- a/clients/client-opensearchserverless/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-opensearchserverless/src/commands/GetAccountSettingsCommand.ts @@ -69,6 +69,7 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsRespo * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class GetAccountSettingsCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/GetPoliciesStatsCommand.ts b/clients/client-opensearchserverless/src/commands/GetPoliciesStatsCommand.ts index 3e0cff00852bb..00f138b8570c4 100644 --- a/clients/client-opensearchserverless/src/commands/GetPoliciesStatsCommand.ts +++ b/clients/client-opensearchserverless/src/commands/GetPoliciesStatsCommand.ts @@ -74,6 +74,7 @@ export interface GetPoliciesStatsCommandOutput extends GetPoliciesStatsResponse, * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class GetPoliciesStatsCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/GetSecurityConfigCommand.ts b/clients/client-opensearchserverless/src/commands/GetSecurityConfigCommand.ts index 6e212633eca29..f386ffc7084bc 100644 --- a/clients/client-opensearchserverless/src/commands/GetSecurityConfigCommand.ts +++ b/clients/client-opensearchserverless/src/commands/GetSecurityConfigCommand.ts @@ -93,6 +93,7 @@ export interface GetSecurityConfigCommandOutput extends GetSecurityConfigRespons * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class GetSecurityConfigCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/GetSecurityPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/GetSecurityPolicyCommand.ts index 9d74ccc56929f..de736e14f566e 100644 --- a/clients/client-opensearchserverless/src/commands/GetSecurityPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/GetSecurityPolicyCommand.ts @@ -80,6 +80,7 @@ export interface GetSecurityPolicyCommandOutput extends GetSecurityPolicyRespons * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class GetSecurityPolicyCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/ListAccessPoliciesCommand.ts b/clients/client-opensearchserverless/src/commands/ListAccessPoliciesCommand.ts index 997bbdda4886f..bcce6a94ec973 100644 --- a/clients/client-opensearchserverless/src/commands/ListAccessPoliciesCommand.ts +++ b/clients/client-opensearchserverless/src/commands/ListAccessPoliciesCommand.ts @@ -81,6 +81,7 @@ export interface ListAccessPoliciesCommandOutput extends ListAccessPoliciesRespo * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class ListAccessPoliciesCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/ListCollectionsCommand.ts b/clients/client-opensearchserverless/src/commands/ListCollectionsCommand.ts index c539d5b63e137..e89cd7a66b84f 100644 --- a/clients/client-opensearchserverless/src/commands/ListCollectionsCommand.ts +++ b/clients/client-opensearchserverless/src/commands/ListCollectionsCommand.ts @@ -84,6 +84,7 @@ export interface ListCollectionsCommandOutput extends ListCollectionsResponse, _ * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class ListCollectionsCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/ListLifecyclePoliciesCommand.ts b/clients/client-opensearchserverless/src/commands/ListLifecyclePoliciesCommand.ts index 3dcd7206b7b1c..62766bb1ef3aa 100644 --- a/clients/client-opensearchserverless/src/commands/ListLifecyclePoliciesCommand.ts +++ b/clients/client-opensearchserverless/src/commands/ListLifecyclePoliciesCommand.ts @@ -81,6 +81,7 @@ export interface ListLifecyclePoliciesCommandOutput extends ListLifecyclePolicie * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class ListLifecyclePoliciesCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/ListSecurityConfigsCommand.ts b/clients/client-opensearchserverless/src/commands/ListSecurityConfigsCommand.ts index 68439abb024f8..3891d90e08bb4 100644 --- a/clients/client-opensearchserverless/src/commands/ListSecurityConfigsCommand.ts +++ b/clients/client-opensearchserverless/src/commands/ListSecurityConfigsCommand.ts @@ -80,6 +80,7 @@ export interface ListSecurityConfigsCommandOutput extends ListSecurityConfigsRes * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class ListSecurityConfigsCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/ListSecurityPoliciesCommand.ts b/clients/client-opensearchserverless/src/commands/ListSecurityPoliciesCommand.ts index 2ce632a70e1d0..6c0c04bd08b20 100644 --- a/clients/client-opensearchserverless/src/commands/ListSecurityPoliciesCommand.ts +++ b/clients/client-opensearchserverless/src/commands/ListSecurityPoliciesCommand.ts @@ -81,6 +81,7 @@ export interface ListSecurityPoliciesCommandOutput extends ListSecurityPoliciesR * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class ListSecurityPoliciesCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/ListTagsForResourceCommand.ts b/clients/client-opensearchserverless/src/commands/ListTagsForResourceCommand.ts index 2af87cede94bb..93bf249f01511 100644 --- a/clients/client-opensearchserverless/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-opensearchserverless/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/ListVpcEndpointsCommand.ts b/clients/client-opensearchserverless/src/commands/ListVpcEndpointsCommand.ts index 26919469d323b..d0bd810cbcd5b 100644 --- a/clients/client-opensearchserverless/src/commands/ListVpcEndpointsCommand.ts +++ b/clients/client-opensearchserverless/src/commands/ListVpcEndpointsCommand.ts @@ -79,6 +79,7 @@ export interface ListVpcEndpointsCommandOutput extends ListVpcEndpointsResponse, * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class ListVpcEndpointsCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/TagResourceCommand.ts b/clients/client-opensearchserverless/src/commands/TagResourceCommand.ts index dc0080ded0c5b..94df734353bfc 100644 --- a/clients/client-opensearchserverless/src/commands/TagResourceCommand.ts +++ b/clients/client-opensearchserverless/src/commands/TagResourceCommand.ts @@ -81,6 +81,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/UntagResourceCommand.ts b/clients/client-opensearchserverless/src/commands/UntagResourceCommand.ts index e7c78c7023a9d..d4746e838afb8 100644 --- a/clients/client-opensearchserverless/src/commands/UntagResourceCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UntagResourceCommand.ts @@ -75,6 +75,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/UpdateAccessPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateAccessPolicyCommand.ts index 548d6f055d387..b54d97d9bc14f 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateAccessPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateAccessPolicyCommand.ts @@ -88,6 +88,7 @@ export interface UpdateAccessPolicyCommandOutput extends UpdateAccessPolicyRespo * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class UpdateAccessPolicyCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateAccountSettingsCommand.ts index d13e6b23ec38e..8902b8e543f8b 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateAccountSettingsCommand.ts @@ -75,6 +75,7 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class UpdateAccountSettingsCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/UpdateCollectionCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateCollectionCommand.ts index bb69b75a76a3c..c054f2c865b9d 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateCollectionCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateCollectionCommand.ts @@ -82,6 +82,7 @@ export interface UpdateCollectionCommandOutput extends UpdateCollectionResponse, * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class UpdateCollectionCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/UpdateLifecyclePolicyCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateLifecyclePolicyCommand.ts index 6d7e382c50636..0e61567f85c95 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateLifecyclePolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateLifecyclePolicyCommand.ts @@ -90,6 +90,7 @@ export interface UpdateLifecyclePolicyCommandOutput extends UpdateLifecyclePolic * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class UpdateLifecyclePolicyCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/UpdateSecurityConfigCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateSecurityConfigCommand.ts index eecf44abedb7c..8dd8a3e16f43f 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateSecurityConfigCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateSecurityConfigCommand.ts @@ -112,6 +112,7 @@ export interface UpdateSecurityConfigCommandOutput extends UpdateSecurityConfigR * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class UpdateSecurityConfigCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/UpdateSecurityPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateSecurityPolicyCommand.ts index f2902a8651aca..93fbc75dcfde0 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateSecurityPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateSecurityPolicyCommand.ts @@ -92,6 +92,7 @@ export interface UpdateSecurityPolicyCommandOutput extends UpdateSecurityPolicyR * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class UpdateSecurityPolicyCommand extends $Command diff --git a/clients/client-opensearchserverless/src/commands/UpdateVpcEndpointCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateVpcEndpointCommand.ts index be366843602d5..83441d87582dc 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateVpcEndpointCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateVpcEndpointCommand.ts @@ -96,6 +96,7 @@ export interface UpdateVpcEndpointCommandOutput extends UpdateVpcEndpointRespons * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* + * * @public */ export class UpdateVpcEndpointCommand extends $Command diff --git a/clients/client-opsworks/src/commands/AssignInstanceCommand.ts b/clients/client-opsworks/src/commands/AssignInstanceCommand.ts index acfaeb48a0276..134d4e713e93f 100644 --- a/clients/client-opsworks/src/commands/AssignInstanceCommand.ts +++ b/clients/client-opsworks/src/commands/AssignInstanceCommand.ts @@ -79,6 +79,7 @@ export interface AssignInstanceCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class AssignInstanceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/AssignVolumeCommand.ts b/clients/client-opsworks/src/commands/AssignVolumeCommand.ts index d999ed87f9b6f..f29d7037f4413 100644 --- a/clients/client-opsworks/src/commands/AssignVolumeCommand.ts +++ b/clients/client-opsworks/src/commands/AssignVolumeCommand.ts @@ -69,6 +69,7 @@ export interface AssignVolumeCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class AssignVolumeCommand extends $Command diff --git a/clients/client-opsworks/src/commands/AssociateElasticIpCommand.ts b/clients/client-opsworks/src/commands/AssociateElasticIpCommand.ts index feae556d0e4b5..152147e98b709 100644 --- a/clients/client-opsworks/src/commands/AssociateElasticIpCommand.ts +++ b/clients/client-opsworks/src/commands/AssociateElasticIpCommand.ts @@ -69,6 +69,7 @@ export interface AssociateElasticIpCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class AssociateElasticIpCommand extends $Command diff --git a/clients/client-opsworks/src/commands/AttachElasticLoadBalancerCommand.ts b/clients/client-opsworks/src/commands/AttachElasticLoadBalancerCommand.ts index 0937576104564..3d07e22876c4d 100644 --- a/clients/client-opsworks/src/commands/AttachElasticLoadBalancerCommand.ts +++ b/clients/client-opsworks/src/commands/AttachElasticLoadBalancerCommand.ts @@ -72,6 +72,7 @@ export interface AttachElasticLoadBalancerCommandOutput extends __MetadataBearer * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class AttachElasticLoadBalancerCommand extends $Command diff --git a/clients/client-opsworks/src/commands/CloneStackCommand.ts b/clients/client-opsworks/src/commands/CloneStackCommand.ts index 368037a9157b8..8dc3e2d8d06c1 100644 --- a/clients/client-opsworks/src/commands/CloneStackCommand.ts +++ b/clients/client-opsworks/src/commands/CloneStackCommand.ts @@ -104,6 +104,7 @@ export interface CloneStackCommandOutput extends CloneStackResult, __MetadataBea * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class CloneStackCommand extends $Command diff --git a/clients/client-opsworks/src/commands/CreateAppCommand.ts b/clients/client-opsworks/src/commands/CreateAppCommand.ts index c6facb04c0afd..79c97482d9e0e 100644 --- a/clients/client-opsworks/src/commands/CreateAppCommand.ts +++ b/clients/client-opsworks/src/commands/CreateAppCommand.ts @@ -105,6 +105,7 @@ export interface CreateAppCommandOutput extends CreateAppResult, __MetadataBeare * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class CreateAppCommand extends $Command diff --git a/clients/client-opsworks/src/commands/CreateDeploymentCommand.ts b/clients/client-opsworks/src/commands/CreateDeploymentCommand.ts index af3865d66f705..2517673d3a3a4 100644 --- a/clients/client-opsworks/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-opsworks/src/commands/CreateDeploymentCommand.ts @@ -84,6 +84,7 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResult, _ * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class CreateDeploymentCommand extends $Command diff --git a/clients/client-opsworks/src/commands/CreateInstanceCommand.ts b/clients/client-opsworks/src/commands/CreateInstanceCommand.ts index 56f9196b1a933..3fffa96d07db8 100644 --- a/clients/client-opsworks/src/commands/CreateInstanceCommand.ts +++ b/clients/client-opsworks/src/commands/CreateInstanceCommand.ts @@ -99,6 +99,7 @@ export interface CreateInstanceCommandOutput extends CreateInstanceResult, __Met * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class CreateInstanceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/CreateLayerCommand.ts b/clients/client-opsworks/src/commands/CreateLayerCommand.ts index a401acb35b9f9..414d2f27319c8 100644 --- a/clients/client-opsworks/src/commands/CreateLayerCommand.ts +++ b/clients/client-opsworks/src/commands/CreateLayerCommand.ts @@ -143,6 +143,7 @@ export interface CreateLayerCommandOutput extends CreateLayerResult, __MetadataB * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class CreateLayerCommand extends $Command diff --git a/clients/client-opsworks/src/commands/CreateStackCommand.ts b/clients/client-opsworks/src/commands/CreateStackCommand.ts index fc891094d81c4..cf1429dc741d4 100644 --- a/clients/client-opsworks/src/commands/CreateStackCommand.ts +++ b/clients/client-opsworks/src/commands/CreateStackCommand.ts @@ -96,6 +96,7 @@ export interface CreateStackCommandOutput extends CreateStackResult, __MetadataB * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class CreateStackCommand extends $Command diff --git a/clients/client-opsworks/src/commands/CreateUserProfileCommand.ts b/clients/client-opsworks/src/commands/CreateUserProfileCommand.ts index 40746b525db6d..fa092541457a5 100644 --- a/clients/client-opsworks/src/commands/CreateUserProfileCommand.ts +++ b/clients/client-opsworks/src/commands/CreateUserProfileCommand.ts @@ -65,6 +65,7 @@ export interface CreateUserProfileCommandOutput extends CreateUserProfileResult, * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class CreateUserProfileCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DeleteAppCommand.ts b/clients/client-opsworks/src/commands/DeleteAppCommand.ts index 1556bb2d207a4..b9e5d60670233 100644 --- a/clients/client-opsworks/src/commands/DeleteAppCommand.ts +++ b/clients/client-opsworks/src/commands/DeleteAppCommand.ts @@ -65,6 +65,7 @@ export interface DeleteAppCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DeleteAppCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DeleteInstanceCommand.ts b/clients/client-opsworks/src/commands/DeleteInstanceCommand.ts index afbb402f47502..2bca91ee89c45 100644 --- a/clients/client-opsworks/src/commands/DeleteInstanceCommand.ts +++ b/clients/client-opsworks/src/commands/DeleteInstanceCommand.ts @@ -70,6 +70,7 @@ export interface DeleteInstanceCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DeleteInstanceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DeleteLayerCommand.ts b/clients/client-opsworks/src/commands/DeleteLayerCommand.ts index 7a921a86dce32..3db3d20778655 100644 --- a/clients/client-opsworks/src/commands/DeleteLayerCommand.ts +++ b/clients/client-opsworks/src/commands/DeleteLayerCommand.ts @@ -67,6 +67,7 @@ export interface DeleteLayerCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DeleteLayerCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DeleteStackCommand.ts b/clients/client-opsworks/src/commands/DeleteStackCommand.ts index ee608557ebc80..7255d0883322d 100644 --- a/clients/client-opsworks/src/commands/DeleteStackCommand.ts +++ b/clients/client-opsworks/src/commands/DeleteStackCommand.ts @@ -66,6 +66,7 @@ export interface DeleteStackCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DeleteStackCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DeleteUserProfileCommand.ts b/clients/client-opsworks/src/commands/DeleteUserProfileCommand.ts index b90755b4ae817..8faed9aed04cd 100644 --- a/clients/client-opsworks/src/commands/DeleteUserProfileCommand.ts +++ b/clients/client-opsworks/src/commands/DeleteUserProfileCommand.ts @@ -64,6 +64,7 @@ export interface DeleteUserProfileCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DeleteUserProfileCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DeregisterEcsClusterCommand.ts b/clients/client-opsworks/src/commands/DeregisterEcsClusterCommand.ts index 14bcd4b7fb6b0..d35cfe0e831dd 100644 --- a/clients/client-opsworks/src/commands/DeregisterEcsClusterCommand.ts +++ b/clients/client-opsworks/src/commands/DeregisterEcsClusterCommand.ts @@ -67,6 +67,7 @@ export interface DeregisterEcsClusterCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DeregisterEcsClusterCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DeregisterElasticIpCommand.ts b/clients/client-opsworks/src/commands/DeregisterElasticIpCommand.ts index 53d15a533e3be..3dc09fe00330d 100644 --- a/clients/client-opsworks/src/commands/DeregisterElasticIpCommand.ts +++ b/clients/client-opsworks/src/commands/DeregisterElasticIpCommand.ts @@ -65,6 +65,7 @@ export interface DeregisterElasticIpCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DeregisterElasticIpCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DeregisterInstanceCommand.ts b/clients/client-opsworks/src/commands/DeregisterInstanceCommand.ts index 0493a272098b6..71c26fddfc933 100644 --- a/clients/client-opsworks/src/commands/DeregisterInstanceCommand.ts +++ b/clients/client-opsworks/src/commands/DeregisterInstanceCommand.ts @@ -65,6 +65,7 @@ export interface DeregisterInstanceCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DeregisterInstanceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DeregisterRdsDbInstanceCommand.ts b/clients/client-opsworks/src/commands/DeregisterRdsDbInstanceCommand.ts index ff4b1ef209554..ae02be8308f05 100644 --- a/clients/client-opsworks/src/commands/DeregisterRdsDbInstanceCommand.ts +++ b/clients/client-opsworks/src/commands/DeregisterRdsDbInstanceCommand.ts @@ -64,6 +64,7 @@ export interface DeregisterRdsDbInstanceCommandOutput extends __MetadataBearer { * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DeregisterRdsDbInstanceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DeregisterVolumeCommand.ts b/clients/client-opsworks/src/commands/DeregisterVolumeCommand.ts index 62fc7421cb0b5..3b1733c0f06e8 100644 --- a/clients/client-opsworks/src/commands/DeregisterVolumeCommand.ts +++ b/clients/client-opsworks/src/commands/DeregisterVolumeCommand.ts @@ -66,6 +66,7 @@ export interface DeregisterVolumeCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DeregisterVolumeCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeAgentVersionsCommand.ts b/clients/client-opsworks/src/commands/DescribeAgentVersionsCommand.ts index c29de4653ee6e..f2158b5da53b4 100644 --- a/clients/client-opsworks/src/commands/DescribeAgentVersionsCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeAgentVersionsCommand.ts @@ -75,6 +75,7 @@ export interface DescribeAgentVersionsCommandOutput extends DescribeAgentVersion * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeAgentVersionsCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeAppsCommand.ts b/clients/client-opsworks/src/commands/DescribeAppsCommand.ts index bfcd36950c9fe..2b008f85bc648 100644 --- a/clients/client-opsworks/src/commands/DescribeAppsCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeAppsCommand.ts @@ -117,6 +117,7 @@ export interface DescribeAppsCommandOutput extends DescribeAppsResult, __Metadat * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeAppsCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeCommandsCommand.ts b/clients/client-opsworks/src/commands/DescribeCommandsCommand.ts index 787368019b6d0..cf944b9b98ef4 100644 --- a/clients/client-opsworks/src/commands/DescribeCommandsCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeCommandsCommand.ts @@ -86,6 +86,7 @@ export interface DescribeCommandsCommandOutput extends DescribeCommandsResult, _ * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeCommandsCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeDeploymentsCommand.ts b/clients/client-opsworks/src/commands/DescribeDeploymentsCommand.ts index 898ec825476c7..a9426029f4432 100644 --- a/clients/client-opsworks/src/commands/DescribeDeploymentsCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeDeploymentsCommand.ts @@ -97,6 +97,7 @@ export interface DescribeDeploymentsCommandOutput extends DescribeDeploymentsRes * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeDeploymentsCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeEcsClustersCommand.ts b/clients/client-opsworks/src/commands/DescribeEcsClustersCommand.ts index af36d3bcb979d..708b236cd3fed 100644 --- a/clients/client-opsworks/src/commands/DescribeEcsClustersCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeEcsClustersCommand.ts @@ -83,6 +83,7 @@ export interface DescribeEcsClustersCommandOutput extends DescribeEcsClustersRes * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeEcsClustersCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeElasticIpsCommand.ts b/clients/client-opsworks/src/commands/DescribeElasticIpsCommand.ts index 9e1441df68b20..80ce9467d10b5 100644 --- a/clients/client-opsworks/src/commands/DescribeElasticIpsCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeElasticIpsCommand.ts @@ -81,6 +81,7 @@ export interface DescribeElasticIpsCommandOutput extends DescribeElasticIpsResul * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeElasticIpsCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeElasticLoadBalancersCommand.ts b/clients/client-opsworks/src/commands/DescribeElasticLoadBalancersCommand.ts index b5443ed9dde0d..1b9d0bcb2706b 100644 --- a/clients/client-opsworks/src/commands/DescribeElasticLoadBalancersCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeElasticLoadBalancersCommand.ts @@ -95,6 +95,7 @@ export interface DescribeElasticLoadBalancersCommandOutput * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeElasticLoadBalancersCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeInstancesCommand.ts b/clients/client-opsworks/src/commands/DescribeInstancesCommand.ts index 3044cefabb7fa..5723af645254b 100644 --- a/clients/client-opsworks/src/commands/DescribeInstancesCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeInstancesCommand.ts @@ -138,6 +138,7 @@ export interface DescribeInstancesCommandOutput extends DescribeInstancesResult, * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeInstancesCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeLayersCommand.ts b/clients/client-opsworks/src/commands/DescribeLayersCommand.ts index 76025487d2bfd..0e8dda0c81e66 100644 --- a/clients/client-opsworks/src/commands/DescribeLayersCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeLayersCommand.ts @@ -154,6 +154,7 @@ export interface DescribeLayersCommandOutput extends DescribeLayersResult, __Met * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeLayersCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeLoadBasedAutoScalingCommand.ts b/clients/client-opsworks/src/commands/DescribeLoadBasedAutoScalingCommand.ts index 909295dcefa0c..8ac0f069207de 100644 --- a/clients/client-opsworks/src/commands/DescribeLoadBasedAutoScalingCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeLoadBasedAutoScalingCommand.ts @@ -103,6 +103,7 @@ export interface DescribeLoadBasedAutoScalingCommandOutput * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeLoadBasedAutoScalingCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeMyUserProfileCommand.ts b/clients/client-opsworks/src/commands/DescribeMyUserProfileCommand.ts index 2cd4f6721ecfe..65e3a3fc948a3 100644 --- a/clients/client-opsworks/src/commands/DescribeMyUserProfileCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeMyUserProfileCommand.ts @@ -63,6 +63,7 @@ export interface DescribeMyUserProfileCommandOutput extends DescribeMyUserProfil * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeMyUserProfileCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeOperatingSystemsCommand.ts b/clients/client-opsworks/src/commands/DescribeOperatingSystemsCommand.ts index c8990cec1089f..414d908469ff2 100644 --- a/clients/client-opsworks/src/commands/DescribeOperatingSystemsCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeOperatingSystemsCommand.ts @@ -68,6 +68,7 @@ export interface DescribeOperatingSystemsCommandOutput extends DescribeOperating * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeOperatingSystemsCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribePermissionsCommand.ts b/clients/client-opsworks/src/commands/DescribePermissionsCommand.ts index 32b435831b2d2..7796ba4f9b54a 100644 --- a/clients/client-opsworks/src/commands/DescribePermissionsCommand.ts +++ b/clients/client-opsworks/src/commands/DescribePermissionsCommand.ts @@ -75,6 +75,7 @@ export interface DescribePermissionsCommandOutput extends DescribePermissionsRes * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribePermissionsCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeRaidArraysCommand.ts b/clients/client-opsworks/src/commands/DescribeRaidArraysCommand.ts index 49acb76570c74..a2595bd8371cb 100644 --- a/clients/client-opsworks/src/commands/DescribeRaidArraysCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeRaidArraysCommand.ts @@ -89,6 +89,7 @@ export interface DescribeRaidArraysCommandOutput extends DescribeRaidArraysResul * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeRaidArraysCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeRdsDbInstancesCommand.ts b/clients/client-opsworks/src/commands/DescribeRdsDbInstancesCommand.ts index 6f3868c266457..012705f51636e 100644 --- a/clients/client-opsworks/src/commands/DescribeRdsDbInstancesCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeRdsDbInstancesCommand.ts @@ -82,6 +82,7 @@ export interface DescribeRdsDbInstancesCommandOutput extends DescribeRdsDbInstan * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeRdsDbInstancesCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeServiceErrorsCommand.ts b/clients/client-opsworks/src/commands/DescribeServiceErrorsCommand.ts index e870097bb08a9..489a57f0bd333 100644 --- a/clients/client-opsworks/src/commands/DescribeServiceErrorsCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeServiceErrorsCommand.ts @@ -80,6 +80,7 @@ export interface DescribeServiceErrorsCommandOutput extends DescribeServiceError * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeServiceErrorsCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeStackProvisioningParametersCommand.ts b/clients/client-opsworks/src/commands/DescribeStackProvisioningParametersCommand.ts index f42822d51c4d1..708833d1a8fe4 100644 --- a/clients/client-opsworks/src/commands/DescribeStackProvisioningParametersCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeStackProvisioningParametersCommand.ts @@ -77,6 +77,7 @@ export interface DescribeStackProvisioningParametersCommandOutput * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeStackProvisioningParametersCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeStackSummaryCommand.ts b/clients/client-opsworks/src/commands/DescribeStackSummaryCommand.ts index fde1c66b0b167..c0c3ba36bc295 100644 --- a/clients/client-opsworks/src/commands/DescribeStackSummaryCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeStackSummaryCommand.ts @@ -95,6 +95,7 @@ export interface DescribeStackSummaryCommandOutput extends DescribeStackSummaryR * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeStackSummaryCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeStacksCommand.ts b/clients/client-opsworks/src/commands/DescribeStacksCommand.ts index 0e2089ac975f5..fa9c54b92100f 100644 --- a/clients/client-opsworks/src/commands/DescribeStacksCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeStacksCommand.ts @@ -108,6 +108,7 @@ export interface DescribeStacksCommandOutput extends DescribeStacksResult, __Met * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeStacksCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeTimeBasedAutoScalingCommand.ts b/clients/client-opsworks/src/commands/DescribeTimeBasedAutoScalingCommand.ts index 8857f3eac0041..213353a002998 100644 --- a/clients/client-opsworks/src/commands/DescribeTimeBasedAutoScalingCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeTimeBasedAutoScalingCommand.ts @@ -99,6 +99,7 @@ export interface DescribeTimeBasedAutoScalingCommandOutput * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeTimeBasedAutoScalingCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeUserProfilesCommand.ts b/clients/client-opsworks/src/commands/DescribeUserProfilesCommand.ts index be10807e3382d..4aac3e86281e3 100644 --- a/clients/client-opsworks/src/commands/DescribeUserProfilesCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeUserProfilesCommand.ts @@ -75,6 +75,7 @@ export interface DescribeUserProfilesCommandOutput extends DescribeUserProfilesR * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeUserProfilesCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DescribeVolumesCommand.ts b/clients/client-opsworks/src/commands/DescribeVolumesCommand.ts index 26d20b6545f64..cc30252541469 100644 --- a/clients/client-opsworks/src/commands/DescribeVolumesCommand.ts +++ b/clients/client-opsworks/src/commands/DescribeVolumesCommand.ts @@ -91,6 +91,7 @@ export interface DescribeVolumesCommandOutput extends DescribeVolumesResult, __M * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DescribeVolumesCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DetachElasticLoadBalancerCommand.ts b/clients/client-opsworks/src/commands/DetachElasticLoadBalancerCommand.ts index 69f41c1deef17..539e238962956 100644 --- a/clients/client-opsworks/src/commands/DetachElasticLoadBalancerCommand.ts +++ b/clients/client-opsworks/src/commands/DetachElasticLoadBalancerCommand.ts @@ -63,6 +63,7 @@ export interface DetachElasticLoadBalancerCommandOutput extends __MetadataBearer * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DetachElasticLoadBalancerCommand extends $Command diff --git a/clients/client-opsworks/src/commands/DisassociateElasticIpCommand.ts b/clients/client-opsworks/src/commands/DisassociateElasticIpCommand.ts index 7d8ae6cefbcba..449b8cfde11ca 100644 --- a/clients/client-opsworks/src/commands/DisassociateElasticIpCommand.ts +++ b/clients/client-opsworks/src/commands/DisassociateElasticIpCommand.ts @@ -65,6 +65,7 @@ export interface DisassociateElasticIpCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class DisassociateElasticIpCommand extends $Command diff --git a/clients/client-opsworks/src/commands/GetHostnameSuggestionCommand.ts b/clients/client-opsworks/src/commands/GetHostnameSuggestionCommand.ts index e07b753a6026b..77626a1579064 100644 --- a/clients/client-opsworks/src/commands/GetHostnameSuggestionCommand.ts +++ b/clients/client-opsworks/src/commands/GetHostnameSuggestionCommand.ts @@ -67,6 +67,7 @@ export interface GetHostnameSuggestionCommandOutput extends GetHostnameSuggestio * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class GetHostnameSuggestionCommand extends $Command diff --git a/clients/client-opsworks/src/commands/GrantAccessCommand.ts b/clients/client-opsworks/src/commands/GrantAccessCommand.ts index 3ecaf1c95174b..2dee7887f64d5 100644 --- a/clients/client-opsworks/src/commands/GrantAccessCommand.ts +++ b/clients/client-opsworks/src/commands/GrantAccessCommand.ts @@ -70,6 +70,7 @@ export interface GrantAccessCommandOutput extends GrantAccessResult, __MetadataB * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class GrantAccessCommand extends $Command diff --git a/clients/client-opsworks/src/commands/ListTagsCommand.ts b/clients/client-opsworks/src/commands/ListTagsCommand.ts index e75ec7099f174..d9d5721cbfb8e 100644 --- a/clients/client-opsworks/src/commands/ListTagsCommand.ts +++ b/clients/client-opsworks/src/commands/ListTagsCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsCommandOutput extends ListTagsResult, __MetadataBearer * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class ListTagsCommand extends $Command diff --git a/clients/client-opsworks/src/commands/RebootInstanceCommand.ts b/clients/client-opsworks/src/commands/RebootInstanceCommand.ts index 220b241442305..1ccf317d42bf6 100644 --- a/clients/client-opsworks/src/commands/RebootInstanceCommand.ts +++ b/clients/client-opsworks/src/commands/RebootInstanceCommand.ts @@ -65,6 +65,7 @@ export interface RebootInstanceCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class RebootInstanceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/RegisterEcsClusterCommand.ts b/clients/client-opsworks/src/commands/RegisterEcsClusterCommand.ts index 0096d0a626bf6..a980da26177fc 100644 --- a/clients/client-opsworks/src/commands/RegisterEcsClusterCommand.ts +++ b/clients/client-opsworks/src/commands/RegisterEcsClusterCommand.ts @@ -72,6 +72,7 @@ export interface RegisterEcsClusterCommandOutput extends RegisterEcsClusterResul * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class RegisterEcsClusterCommand extends $Command diff --git a/clients/client-opsworks/src/commands/RegisterElasticIpCommand.ts b/clients/client-opsworks/src/commands/RegisterElasticIpCommand.ts index 9ff71896e1b19..e9344cc576dd5 100644 --- a/clients/client-opsworks/src/commands/RegisterElasticIpCommand.ts +++ b/clients/client-opsworks/src/commands/RegisterElasticIpCommand.ts @@ -69,6 +69,7 @@ export interface RegisterElasticIpCommandOutput extends RegisterElasticIpResult, * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class RegisterElasticIpCommand extends $Command diff --git a/clients/client-opsworks/src/commands/RegisterInstanceCommand.ts b/clients/client-opsworks/src/commands/RegisterInstanceCommand.ts index 0954cc7889fa3..92c3b8cdd2b55 100644 --- a/clients/client-opsworks/src/commands/RegisterInstanceCommand.ts +++ b/clients/client-opsworks/src/commands/RegisterInstanceCommand.ts @@ -89,6 +89,7 @@ export interface RegisterInstanceCommandOutput extends RegisterInstanceResult, _ * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class RegisterInstanceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/RegisterRdsDbInstanceCommand.ts b/clients/client-opsworks/src/commands/RegisterRdsDbInstanceCommand.ts index 2346225687ac7..b9280959bb5b9 100644 --- a/clients/client-opsworks/src/commands/RegisterRdsDbInstanceCommand.ts +++ b/clients/client-opsworks/src/commands/RegisterRdsDbInstanceCommand.ts @@ -67,6 +67,7 @@ export interface RegisterRdsDbInstanceCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class RegisterRdsDbInstanceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/RegisterVolumeCommand.ts b/clients/client-opsworks/src/commands/RegisterVolumeCommand.ts index a5190be9990ba..d8d3dbc791e4f 100644 --- a/clients/client-opsworks/src/commands/RegisterVolumeCommand.ts +++ b/clients/client-opsworks/src/commands/RegisterVolumeCommand.ts @@ -69,6 +69,7 @@ export interface RegisterVolumeCommandOutput extends RegisterVolumeResult, __Met * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class RegisterVolumeCommand extends $Command diff --git a/clients/client-opsworks/src/commands/SetLoadBasedAutoScalingCommand.ts b/clients/client-opsworks/src/commands/SetLoadBasedAutoScalingCommand.ts index c3e34192a010e..43539cbc27986 100644 --- a/clients/client-opsworks/src/commands/SetLoadBasedAutoScalingCommand.ts +++ b/clients/client-opsworks/src/commands/SetLoadBasedAutoScalingCommand.ts @@ -94,6 +94,7 @@ export interface SetLoadBasedAutoScalingCommandOutput extends __MetadataBearer { * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class SetLoadBasedAutoScalingCommand extends $Command diff --git a/clients/client-opsworks/src/commands/SetPermissionCommand.ts b/clients/client-opsworks/src/commands/SetPermissionCommand.ts index 56da7b6cd4b17..eb84177c5b036 100644 --- a/clients/client-opsworks/src/commands/SetPermissionCommand.ts +++ b/clients/client-opsworks/src/commands/SetPermissionCommand.ts @@ -70,6 +70,7 @@ export interface SetPermissionCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class SetPermissionCommand extends $Command diff --git a/clients/client-opsworks/src/commands/SetTimeBasedAutoScalingCommand.ts b/clients/client-opsworks/src/commands/SetTimeBasedAutoScalingCommand.ts index 82e646413c422..ae848d784c490 100644 --- a/clients/client-opsworks/src/commands/SetTimeBasedAutoScalingCommand.ts +++ b/clients/client-opsworks/src/commands/SetTimeBasedAutoScalingCommand.ts @@ -85,6 +85,7 @@ export interface SetTimeBasedAutoScalingCommandOutput extends __MetadataBearer { * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class SetTimeBasedAutoScalingCommand extends $Command diff --git a/clients/client-opsworks/src/commands/StartInstanceCommand.ts b/clients/client-opsworks/src/commands/StartInstanceCommand.ts index 8b50bde21a854..fc8d293504444 100644 --- a/clients/client-opsworks/src/commands/StartInstanceCommand.ts +++ b/clients/client-opsworks/src/commands/StartInstanceCommand.ts @@ -65,6 +65,7 @@ export interface StartInstanceCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class StartInstanceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/StartStackCommand.ts b/clients/client-opsworks/src/commands/StartStackCommand.ts index 8cea634c0b791..91227b93684ab 100644 --- a/clients/client-opsworks/src/commands/StartStackCommand.ts +++ b/clients/client-opsworks/src/commands/StartStackCommand.ts @@ -64,6 +64,7 @@ export interface StartStackCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class StartStackCommand extends $Command diff --git a/clients/client-opsworks/src/commands/StopInstanceCommand.ts b/clients/client-opsworks/src/commands/StopInstanceCommand.ts index e3dcef1af7e91..ec45360b86272 100644 --- a/clients/client-opsworks/src/commands/StopInstanceCommand.ts +++ b/clients/client-opsworks/src/commands/StopInstanceCommand.ts @@ -68,6 +68,7 @@ export interface StopInstanceCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class StopInstanceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/StopStackCommand.ts b/clients/client-opsworks/src/commands/StopStackCommand.ts index 619e418d9fb7e..9387327d7afa8 100644 --- a/clients/client-opsworks/src/commands/StopStackCommand.ts +++ b/clients/client-opsworks/src/commands/StopStackCommand.ts @@ -64,6 +64,7 @@ export interface StopStackCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class StopStackCommand extends $Command diff --git a/clients/client-opsworks/src/commands/TagResourceCommand.ts b/clients/client-opsworks/src/commands/TagResourceCommand.ts index e62a04beabddf..54fb9c27c02af 100644 --- a/clients/client-opsworks/src/commands/TagResourceCommand.ts +++ b/clients/client-opsworks/src/commands/TagResourceCommand.ts @@ -63,6 +63,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/UnassignInstanceCommand.ts b/clients/client-opsworks/src/commands/UnassignInstanceCommand.ts index f42eca7dd6900..50c279203d550 100644 --- a/clients/client-opsworks/src/commands/UnassignInstanceCommand.ts +++ b/clients/client-opsworks/src/commands/UnassignInstanceCommand.ts @@ -67,6 +67,7 @@ export interface UnassignInstanceCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class UnassignInstanceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/UnassignVolumeCommand.ts b/clients/client-opsworks/src/commands/UnassignVolumeCommand.ts index 29fd4a31c2cd7..7de7320545ab2 100644 --- a/clients/client-opsworks/src/commands/UnassignVolumeCommand.ts +++ b/clients/client-opsworks/src/commands/UnassignVolumeCommand.ts @@ -66,6 +66,7 @@ export interface UnassignVolumeCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class UnassignVolumeCommand extends $Command diff --git a/clients/client-opsworks/src/commands/UntagResourceCommand.ts b/clients/client-opsworks/src/commands/UntagResourceCommand.ts index a53eeb0df254b..c83e2f4690da4 100644 --- a/clients/client-opsworks/src/commands/UntagResourceCommand.ts +++ b/clients/client-opsworks/src/commands/UntagResourceCommand.ts @@ -62,6 +62,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/UpdateAppCommand.ts b/clients/client-opsworks/src/commands/UpdateAppCommand.ts index bb87d135e2dd8..efa962334bb22 100644 --- a/clients/client-opsworks/src/commands/UpdateAppCommand.ts +++ b/clients/client-opsworks/src/commands/UpdateAppCommand.ts @@ -101,6 +101,7 @@ export interface UpdateAppCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class UpdateAppCommand extends $Command diff --git a/clients/client-opsworks/src/commands/UpdateElasticIpCommand.ts b/clients/client-opsworks/src/commands/UpdateElasticIpCommand.ts index 536a85b7ed296..50a1849817f9b 100644 --- a/clients/client-opsworks/src/commands/UpdateElasticIpCommand.ts +++ b/clients/client-opsworks/src/commands/UpdateElasticIpCommand.ts @@ -65,6 +65,7 @@ export interface UpdateElasticIpCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class UpdateElasticIpCommand extends $Command diff --git a/clients/client-opsworks/src/commands/UpdateInstanceCommand.ts b/clients/client-opsworks/src/commands/UpdateInstanceCommand.ts index cb494b9b6aeeb..c9c8b5478988b 100644 --- a/clients/client-opsworks/src/commands/UpdateInstanceCommand.ts +++ b/clients/client-opsworks/src/commands/UpdateInstanceCommand.ts @@ -77,6 +77,7 @@ export interface UpdateInstanceCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class UpdateInstanceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/UpdateLayerCommand.ts b/clients/client-opsworks/src/commands/UpdateLayerCommand.ts index 351fd563a9ee9..8b5caa02c0726 100644 --- a/clients/client-opsworks/src/commands/UpdateLayerCommand.ts +++ b/clients/client-opsworks/src/commands/UpdateLayerCommand.ts @@ -130,6 +130,7 @@ export interface UpdateLayerCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class UpdateLayerCommand extends $Command diff --git a/clients/client-opsworks/src/commands/UpdateMyUserProfileCommand.ts b/clients/client-opsworks/src/commands/UpdateMyUserProfileCommand.ts index d8f282238a9a0..9ec217894bd70 100644 --- a/clients/client-opsworks/src/commands/UpdateMyUserProfileCommand.ts +++ b/clients/client-opsworks/src/commands/UpdateMyUserProfileCommand.ts @@ -61,6 +61,7 @@ export interface UpdateMyUserProfileCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class UpdateMyUserProfileCommand extends $Command diff --git a/clients/client-opsworks/src/commands/UpdateRdsDbInstanceCommand.ts b/clients/client-opsworks/src/commands/UpdateRdsDbInstanceCommand.ts index c94ad96fbb699..f959c3ebaab82 100644 --- a/clients/client-opsworks/src/commands/UpdateRdsDbInstanceCommand.ts +++ b/clients/client-opsworks/src/commands/UpdateRdsDbInstanceCommand.ts @@ -66,6 +66,7 @@ export interface UpdateRdsDbInstanceCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class UpdateRdsDbInstanceCommand extends $Command diff --git a/clients/client-opsworks/src/commands/UpdateStackCommand.ts b/clients/client-opsworks/src/commands/UpdateStackCommand.ts index 78749a2f51933..809d394521f5f 100644 --- a/clients/client-opsworks/src/commands/UpdateStackCommand.ts +++ b/clients/client-opsworks/src/commands/UpdateStackCommand.ts @@ -96,6 +96,7 @@ export interface UpdateStackCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class UpdateStackCommand extends $Command diff --git a/clients/client-opsworks/src/commands/UpdateUserProfileCommand.ts b/clients/client-opsworks/src/commands/UpdateUserProfileCommand.ts index ac993cb7b9d57..4e555734c3ac5 100644 --- a/clients/client-opsworks/src/commands/UpdateUserProfileCommand.ts +++ b/clients/client-opsworks/src/commands/UpdateUserProfileCommand.ts @@ -66,6 +66,7 @@ export interface UpdateUserProfileCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class UpdateUserProfileCommand extends $Command diff --git a/clients/client-opsworks/src/commands/UpdateVolumeCommand.ts b/clients/client-opsworks/src/commands/UpdateVolumeCommand.ts index a6b64ecd7479f..3b2af2d213546 100644 --- a/clients/client-opsworks/src/commands/UpdateVolumeCommand.ts +++ b/clients/client-opsworks/src/commands/UpdateVolumeCommand.ts @@ -67,6 +67,7 @@ export interface UpdateVolumeCommandOutput extends __MetadataBearer {} * @throws {@link OpsWorksServiceException} *

Base exception class for all service exceptions from OpsWorks service.

* + * * @public */ export class UpdateVolumeCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/AssociateNodeCommand.ts b/clients/client-opsworkscm/src/commands/AssociateNodeCommand.ts index 6dcdf39320c32..6e9df4d865478 100644 --- a/clients/client-opsworkscm/src/commands/AssociateNodeCommand.ts +++ b/clients/client-opsworkscm/src/commands/AssociateNodeCommand.ts @@ -94,6 +94,7 @@ export interface AssociateNodeCommandOutput extends AssociateNodeResponse, __Met * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class AssociateNodeCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/CreateBackupCommand.ts b/clients/client-opsworkscm/src/commands/CreateBackupCommand.ts index 6399ee0b2907d..fe1a8569d2cf4 100644 --- a/clients/client-opsworkscm/src/commands/CreateBackupCommand.ts +++ b/clients/client-opsworkscm/src/commands/CreateBackupCommand.ts @@ -124,6 +124,7 @@ export interface CreateBackupCommandOutput extends CreateBackupResponse, __Metad * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class CreateBackupCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/CreateServerCommand.ts b/clients/client-opsworkscm/src/commands/CreateServerCommand.ts index 0ea5ed63e353e..241bacf9b09b1 100644 --- a/clients/client-opsworkscm/src/commands/CreateServerCommand.ts +++ b/clients/client-opsworkscm/src/commands/CreateServerCommand.ts @@ -171,6 +171,7 @@ export interface CreateServerCommandOutput extends CreateServerResponse, __Metad * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class CreateServerCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/DeleteBackupCommand.ts b/clients/client-opsworkscm/src/commands/DeleteBackupCommand.ts index e05a990e2d7dd..7a0fd5d505b54 100644 --- a/clients/client-opsworkscm/src/commands/DeleteBackupCommand.ts +++ b/clients/client-opsworkscm/src/commands/DeleteBackupCommand.ts @@ -72,6 +72,7 @@ export interface DeleteBackupCommandOutput extends DeleteBackupResponse, __Metad * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class DeleteBackupCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/DeleteServerCommand.ts b/clients/client-opsworkscm/src/commands/DeleteServerCommand.ts index a2b13ba4b8eab..a0fd8812cebfc 100644 --- a/clients/client-opsworkscm/src/commands/DeleteServerCommand.ts +++ b/clients/client-opsworkscm/src/commands/DeleteServerCommand.ts @@ -80,6 +80,7 @@ export interface DeleteServerCommandOutput extends DeleteServerResponse, __Metad * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class DeleteServerCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-opsworkscm/src/commands/DescribeAccountAttributesCommand.ts index 7c8053a3a09d8..6171e98494fe6 100644 --- a/clients/client-opsworkscm/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-opsworkscm/src/commands/DescribeAccountAttributesCommand.ts @@ -64,6 +64,7 @@ export interface DescribeAccountAttributesCommandOutput extends DescribeAccountA * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class DescribeAccountAttributesCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/DescribeBackupsCommand.ts b/clients/client-opsworkscm/src/commands/DescribeBackupsCommand.ts index 1a4f615ddbf0b..6d9dda5aadd7e 100644 --- a/clients/client-opsworkscm/src/commands/DescribeBackupsCommand.ts +++ b/clients/client-opsworkscm/src/commands/DescribeBackupsCommand.ts @@ -112,6 +112,7 @@ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, _ * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class DescribeBackupsCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/DescribeEventsCommand.ts b/clients/client-opsworkscm/src/commands/DescribeEventsCommand.ts index 2218948d6885f..b6c4467dde58b 100644 --- a/clients/client-opsworkscm/src/commands/DescribeEventsCommand.ts +++ b/clients/client-opsworkscm/src/commands/DescribeEventsCommand.ts @@ -86,6 +86,7 @@ export interface DescribeEventsCommandOutput extends DescribeEventsResponse, __M * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class DescribeEventsCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/DescribeNodeAssociationStatusCommand.ts b/clients/client-opsworkscm/src/commands/DescribeNodeAssociationStatusCommand.ts index 7814b9b7942c5..516ebb124ca2e 100644 --- a/clients/client-opsworkscm/src/commands/DescribeNodeAssociationStatusCommand.ts +++ b/clients/client-opsworkscm/src/commands/DescribeNodeAssociationStatusCommand.ts @@ -85,6 +85,7 @@ export interface DescribeNodeAssociationStatusCommandOutput * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class DescribeNodeAssociationStatusCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/DescribeServersCommand.ts b/clients/client-opsworkscm/src/commands/DescribeServersCommand.ts index 14519520f552b..64d53d8a21958 100644 --- a/clients/client-opsworkscm/src/commands/DescribeServersCommand.ts +++ b/clients/client-opsworkscm/src/commands/DescribeServersCommand.ts @@ -121,6 +121,7 @@ export interface DescribeServersCommandOutput extends DescribeServersResponse, _ * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class DescribeServersCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/DisassociateNodeCommand.ts b/clients/client-opsworkscm/src/commands/DisassociateNodeCommand.ts index 7a84fd6f15aca..54cd31d3898ca 100644 --- a/clients/client-opsworkscm/src/commands/DisassociateNodeCommand.ts +++ b/clients/client-opsworkscm/src/commands/DisassociateNodeCommand.ts @@ -85,6 +85,7 @@ export interface DisassociateNodeCommandOutput extends DisassociateNodeResponse, * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class DisassociateNodeCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/ExportServerEngineAttributeCommand.ts b/clients/client-opsworkscm/src/commands/ExportServerEngineAttributeCommand.ts index afc5e66fc0c4e..1d91049dd6256 100644 --- a/clients/client-opsworkscm/src/commands/ExportServerEngineAttributeCommand.ts +++ b/clients/client-opsworkscm/src/commands/ExportServerEngineAttributeCommand.ts @@ -96,6 +96,7 @@ export interface ExportServerEngineAttributeCommandOutput * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class ExportServerEngineAttributeCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/ListTagsForResourceCommand.ts b/clients/client-opsworkscm/src/commands/ListTagsForResourceCommand.ts index 028cc7a532c6a..3b83dc1d13903 100644 --- a/clients/client-opsworkscm/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-opsworkscm/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/RestoreServerCommand.ts b/clients/client-opsworkscm/src/commands/RestoreServerCommand.ts index ca53c173c1a22..e3e984dab9508 100644 --- a/clients/client-opsworkscm/src/commands/RestoreServerCommand.ts +++ b/clients/client-opsworkscm/src/commands/RestoreServerCommand.ts @@ -122,6 +122,7 @@ export interface RestoreServerCommandOutput extends RestoreServerResponse, __Met * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class RestoreServerCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/StartMaintenanceCommand.ts b/clients/client-opsworkscm/src/commands/StartMaintenanceCommand.ts index 09858e98af22d..c24aab42cdda4 100644 --- a/clients/client-opsworkscm/src/commands/StartMaintenanceCommand.ts +++ b/clients/client-opsworkscm/src/commands/StartMaintenanceCommand.ts @@ -119,6 +119,7 @@ export interface StartMaintenanceCommandOutput extends StartMaintenanceResponse, * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class StartMaintenanceCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/TagResourceCommand.ts b/clients/client-opsworkscm/src/commands/TagResourceCommand.ts index 5d3b2cf247be8..8a0220359500d 100644 --- a/clients/client-opsworkscm/src/commands/TagResourceCommand.ts +++ b/clients/client-opsworkscm/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/UntagResourceCommand.ts b/clients/client-opsworkscm/src/commands/UntagResourceCommand.ts index f7beba9d8e4f9..8b3153909a783 100644 --- a/clients/client-opsworkscm/src/commands/UntagResourceCommand.ts +++ b/clients/client-opsworkscm/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/UpdateServerCommand.ts b/clients/client-opsworkscm/src/commands/UpdateServerCommand.ts index 06ee8d170eb03..9e3197dea689b 100644 --- a/clients/client-opsworkscm/src/commands/UpdateServerCommand.ts +++ b/clients/client-opsworkscm/src/commands/UpdateServerCommand.ts @@ -110,6 +110,7 @@ export interface UpdateServerCommandOutput extends UpdateServerResponse, __Metad * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class UpdateServerCommand extends $Command diff --git a/clients/client-opsworkscm/src/commands/UpdateServerEngineAttributesCommand.ts b/clients/client-opsworkscm/src/commands/UpdateServerEngineAttributesCommand.ts index 5c32b2ba2bbe9..39aa53ec0752e 100644 --- a/clients/client-opsworkscm/src/commands/UpdateServerEngineAttributesCommand.ts +++ b/clients/client-opsworkscm/src/commands/UpdateServerEngineAttributesCommand.ts @@ -125,6 +125,7 @@ export interface UpdateServerEngineAttributesCommandOutput * @throws {@link OpsWorksCMServiceException} *

Base exception class for all service exceptions from OpsWorksCM service.

* + * * @public */ export class UpdateServerEngineAttributesCommand extends $Command diff --git a/clients/client-organizations/src/commands/AcceptHandshakeCommand.ts b/clients/client-organizations/src/commands/AcceptHandshakeCommand.ts index 150888b5779c6..028a50cbe9292 100644 --- a/clients/client-organizations/src/commands/AcceptHandshakeCommand.ts +++ b/clients/client-organizations/src/commands/AcceptHandshakeCommand.ts @@ -326,64 +326,8 @@ export interface AcceptHandshakeCommandOutput extends AcceptHandshakeResponse, _ * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public - * @example To accept a handshake from another account - * ```javascript - * // Bill is the owner of an organization, and he invites Juan's account (222222222222) to join his organization. The following example shows Juan's account accepting the handshake and thus agreeing to the invitation. - * const input = { - * "HandshakeId": "h-examplehandshakeid111" - * }; - * const command = new AcceptHandshakeCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Handshake": { - * "Action": "INVITE", - * "Arn": "arn:aws:organizations::111111111111:handshake/o-exampleorgid/invite/h-examplehandshakeid111", - * "ExpirationTimestamp": "20170228T1215Z", - * "Id": "h-examplehandshakeid111", - * "Parties": [ - * { - * "Id": "o-exampleorgid", - * "Type": "ORGANIZATION" - * }, - * { - * "Id": "juan@example.com", - * "Type": "EMAIL" - * } - * ], - * "RequestedTimestamp": "20170214T1215Z", - * "Resources": [ - * { - * "Resources": [ - * { - * "Type": "MASTER_EMAIL", - * "Value": "bill@amazon.com" - * }, - * { - * "Type": "MASTER_NAME", - * "Value": "Org Master Account" - * }, - * { - * "Type": "ORGANIZATION_FEATURE_SET", - * "Value": "ALL" - * } - * ], - * "Type": "ORGANIZATION", - * "Value": "o-exampleorgid" - * }, - * { - * "Type": "ACCOUNT", - * "Value": "222222222222" - * } - * ], - * "State": "ACCEPTED" - * } - * } - * *\/ - * // example id: to-accept-a-handshake-from-another-account-1472500561150 - * ``` * + * @public */ export class AcceptHandshakeCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/AttachPolicyCommand.ts b/clients/client-organizations/src/commands/AttachPolicyCommand.ts index 4866f53ddff57..9166e059b783f 100644 --- a/clients/client-organizations/src/commands/AttachPolicyCommand.ts +++ b/clients/client-organizations/src/commands/AttachPolicyCommand.ts @@ -452,33 +452,38 @@ export interface AttachPolicyCommandOutput extends __MetadataBearer {} * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public - * @example To attach a policy to an OU + * + * @example To attach a policy to an account * ```javascript - * // The following example shows how to attach a service control policy (SCP) to an OU: - * // + * // The following example shows how to attach a service control policy (SCP) to an account: + * * const input = { - * "PolicyId": "p-examplepolicyid111", - * "TargetId": "ou-examplerootid111-exampleouid111" + * PolicyId: "p-examplepolicyid111", + * TargetId: "333333333333" * }; * const command = new AttachPolicyCommand(input); - * await client.send(command); - * // example id: to-attach-a-policy-to-an-ou + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * - * @example To attach a policy to an account + * @example To attach a policy to an OU * ```javascript - * // The following example shows how to attach a service control policy (SCP) to an account: - * // + * // The following example shows how to attach a service control policy (SCP) to an OU: + * * const input = { - * "PolicyId": "p-examplepolicyid111", - * "TargetId": "333333333333" + * PolicyId: "p-examplepolicyid111", + * TargetId: "ou-examplerootid111-exampleouid111" * }; * const command = new AttachPolicyCommand(input); - * await client.send(command); - * // example id: to-attach-a-policy-to-an-account + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AttachPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/CancelHandshakeCommand.ts b/clients/client-organizations/src/commands/CancelHandshakeCommand.ts index a4aa4ad596805..94e3d68fe722a 100644 --- a/clients/client-organizations/src/commands/CancelHandshakeCommand.ts +++ b/clients/client-organizations/src/commands/CancelHandshakeCommand.ts @@ -232,69 +232,8 @@ export interface CancelHandshakeCommandOutput extends CancelHandshakeResponse, _ * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public - * @example To cancel a handshake sent to a member account - * ```javascript - * // Bill previously sent an invitation to Susan's account to join his organization. He changes his mind and decides to cancel the invitation before Susan accepts it. The following example shows Bill's cancellation: - * // - * const input = { - * "HandshakeId": "h-examplehandshakeid111" - * }; - * const command = new CancelHandshakeCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Handshake": { - * "Action": "INVITE", - * "Arn": "arn:aws:organizations::111111111111:handshake/o-exampleorgid/invite/h-examplehandshakeid111", - * "ExpirationTimestamp": "20170228T1215Z", - * "Id": "h-examplehandshakeid111", - * "Parties": [ - * { - * "Id": "o-exampleorgid", - * "Type": "ORGANIZATION" - * }, - * { - * "Id": "susan@example.com", - * "Type": "EMAIL" - * } - * ], - * "RequestedTimestamp": "20170214T1215Z", - * "Resources": [ - * { - * "Resources": [ - * { - * "Type": "MASTER_EMAIL", - * "Value": "bill@example.com" - * }, - * { - * "Type": "MASTER_NAME", - * "Value": "Master Account" - * }, - * { - * "Type": "ORGANIZATION_FEATURE_SET", - * "Value": "CONSOLIDATED_BILLING" - * } - * ], - * "Type": "ORGANIZATION", - * "Value": "o-exampleorgid" - * }, - * { - * "Type": "ACCOUNT", - * "Value": "222222222222" - * }, - * { - * "Type": "NOTES", - * "Value": "This is a request for Susan's account to join Bob's organization." - * } - * ], - * "State": "CANCELED" - * } - * } - * *\/ - * // example id: to-cancel-a-handshake-sent-to-a-member-account-1472501320506 - * ``` * + * @public */ export class CancelHandshakeCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/CloseAccountCommand.ts b/clients/client-organizations/src/commands/CloseAccountCommand.ts index 1bc933956a35e..8e082421d0510 100644 --- a/clients/client-organizations/src/commands/CloseAccountCommand.ts +++ b/clients/client-organizations/src/commands/CloseAccountCommand.ts @@ -448,6 +448,7 @@ export interface CloseAccountCommandOutput extends __MetadataBearer {} * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class CloseAccountCommand extends $Command diff --git a/clients/client-organizations/src/commands/CreateAccountCommand.ts b/clients/client-organizations/src/commands/CreateAccountCommand.ts index 16d7fbcff85db..a5de107d27928 100644 --- a/clients/client-organizations/src/commands/CreateAccountCommand.ts +++ b/clients/client-organizations/src/commands/CreateAccountCommand.ts @@ -491,29 +491,29 @@ export interface CreateAccountCommandOutput extends CreateAccountResponse, __Met * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To create a new account that is automatically part of the organization * ```javascript * // The owner of an organization creates a member account in the organization. The following example shows that when the organization owner creates the member account, the account is preconfigured with the name "Production Account" and an owner email address of susan@example.com. An IAM role is automatically created using the default name because the roleName parameter is not used. AWS Organizations sends Susan a "Welcome to AWS" email: - * // - * // + * + * * const input = { - * "AccountName": "Production Account", - * "Email": "susan@example.com" + * AccountName: "Production Account", + * Email: "susan@example.com" * }; * const command = new CreateAccountCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CreateAccountStatus": { - * "Id": "car-examplecreateaccountrequestid111", - * "State": "IN_PROGRESS" + * CreateAccountStatus: { + * Id: "car-examplecreateaccountrequestid111", + * State: "IN_PROGRESS" * } * } * *\/ - * // example id: to-create-a-new-account-that-is-automatically-part-of-the-organization-1472501463507 * ``` * + * @public */ export class CreateAccountCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/CreateGovCloudAccountCommand.ts b/clients/client-organizations/src/commands/CreateGovCloudAccountCommand.ts index f1a2dab50e36e..493227c1ff793 100644 --- a/clients/client-organizations/src/commands/CreateGovCloudAccountCommand.ts +++ b/clients/client-organizations/src/commands/CreateGovCloudAccountCommand.ts @@ -545,6 +545,7 @@ export interface CreateGovCloudAccountCommandOutput extends CreateGovCloudAccoun * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class CreateGovCloudAccountCommand extends $Command diff --git a/clients/client-organizations/src/commands/CreateOrganizationCommand.ts b/clients/client-organizations/src/commands/CreateOrganizationCommand.ts index 955162f78d559..e11513777c253 100644 --- a/clients/client-organizations/src/commands/CreateOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/CreateOrganizationCommand.ts @@ -422,62 +422,61 @@ export interface CreateOrganizationCommandOutput extends CreateOrganizationRespo * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To create a new organization with all features enabled * ```javascript * // Bill wants to create an organization using credentials from account 111111111111. The following example shows that the account becomes the master account in the new organization. Because he does not specify a feature set, the new organization defaults to all features enabled and service control policies enabled on the root: - * // - * // - * const input = {}; + * + * + * const input = { /* empty *\/ }; * const command = new CreateOrganizationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Organization": { - * "Arn": "arn:aws:organizations::111111111111:organization/o-exampleorgid", - * "AvailablePolicyTypes": [ + * Organization: { + * Arn: "arn:aws:organizations::111111111111:organization/o-exampleorgid", + * AvailablePolicyTypes: [ * { - * "Status": "ENABLED", - * "Type": "SERVICE_CONTROL_POLICY" + * Status: "ENABLED", + * Type: "SERVICE_CONTROL_POLICY" * } * ], - * "FeatureSet": "ALL", - * "Id": "o-exampleorgid", - * "MasterAccountArn": "arn:aws:organizations::111111111111:account/o-exampleorgid/111111111111", - * "MasterAccountEmail": "bill@example.com", - * "MasterAccountId": "111111111111" + * FeatureSet: "ALL", + * Id: "o-exampleorgid", + * MasterAccountArn: "arn:aws:organizations::111111111111:account/o-exampleorgid/111111111111", + * MasterAccountEmail: "bill@example.com", + * MasterAccountId: "111111111111" * } * } * *\/ - * // example id: to-create-a-new-organization-with-all-features enabled * ``` * * @example To create a new organization with consolidated billing features only * ```javascript * // In the following example, Bill creates an organization using credentials from account 111111111111, and configures the organization to support only the consolidated billing feature set: - * // - * // + * + * * const input = { - * "FeatureSet": "CONSOLIDATED_BILLING" + * FeatureSet: "CONSOLIDATED_BILLING" * }; * const command = new CreateOrganizationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Organization": { - * "Arn": "arn:aws:organizations::111111111111:organization/o-exampleorgid", - * "AvailablePolicyTypes": [], - * "FeatureSet": "CONSOLIDATED_BILLING", - * "Id": "o-exampleorgid", - * "MasterAccountArn": "arn:aws:organizations::111111111111:account/o-exampleorgid/111111111111", - * "MasterAccountEmail": "bill@example.com", - * "MasterAccountId": "111111111111" + * Organization: { + * Arn: "arn:aws:organizations::111111111111:organization/o-exampleorgid", + * AvailablePolicyTypes: [], + * FeatureSet: "CONSOLIDATED_BILLING", + * Id: "o-exampleorgid", + * MasterAccountArn: "arn:aws:organizations::111111111111:account/o-exampleorgid/111111111111", + * MasterAccountEmail: "bill@example.com", + * MasterAccountId: "111111111111" * } * } * *\/ - * // example id: to-create-a-new-organization-with-consolidated-billing-features-only * ``` * + * @public */ export class CreateOrganizationCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/CreateOrganizationalUnitCommand.ts b/clients/client-organizations/src/commands/CreateOrganizationalUnitCommand.ts index c2e55f0c11223..dcc7927bcac91 100644 --- a/clients/client-organizations/src/commands/CreateOrganizationalUnitCommand.ts +++ b/clients/client-organizations/src/commands/CreateOrganizationalUnitCommand.ts @@ -415,30 +415,30 @@ export interface CreateOrganizationalUnitCommandOutput extends CreateOrganizatio * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To create a new organization unit * ```javascript * // The following example shows how to create an OU that is named AccountingOU. The new OU is directly under the root.: - * // - * // + * + * * const input = { - * "Name": "AccountingOU", - * "ParentId": "r-examplerootid111" + * Name: "AccountingOU", + * ParentId: "r-examplerootid111" * }; * const command = new CreateOrganizationalUnitCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OrganizationalUnit": { - * "Arn": "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examplerootid111-exampleouid111", - * "Id": "ou-examplerootid111-exampleouid111", - * "Name": "AccountingOU" + * OrganizationalUnit: { + * Arn: "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examplerootid111-exampleouid111", + * Id: "ou-examplerootid111-exampleouid111", + * Name: "AccountingOU" * } * } * *\/ - * // example id: to-create-a-new-organizational-unit * ``` * + * @public */ export class CreateOrganizationalUnitCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/CreatePolicyCommand.ts b/clients/client-organizations/src/commands/CreatePolicyCommand.ts index a0183931cbcd4..2ffc067c0e3a3 100644 --- a/clients/client-organizations/src/commands/CreatePolicyCommand.ts +++ b/clients/client-organizations/src/commands/CreatePolicyCommand.ts @@ -433,36 +433,36 @@ export interface CreatePolicyCommandOutput extends CreatePolicyResponse, __Metad * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To create a service control policy * ```javascript * // The following example shows how to create a service control policy (SCP) that is named AllowAllS3Actions. The JSON string in the content parameter specifies the content in the policy. The parameter string is escaped with backslashes to ensure that the embedded double quotes in the JSON policy are treated as literals in the parameter, which itself is surrounded by double quotes: - * // - * // + * + * * const input = { - * "Content": "{\\\"Version\\\":\\\"2012-10-17\\\",\\\"Statement\\\":{\\\"Effect\\\":\\\"Allow\\\",\\\"Action\\\":\\\"s3:*\\\"}}", - * "Description": "Enables admins of attached accounts to delegate all S3 permissions", - * "Name": "AllowAllS3Actions", - * "Type": "SERVICE_CONTROL_POLICY" + * Content: `{\"Version\":\"2012-10-17\",\"Statement\":{\"Effect\":\"Allow\",\"Action\":\"s3:*\"}}`, + * Description: "Enables admins of attached accounts to delegate all S3 permissions", + * Name: "AllowAllS3Actions", + * Type: "SERVICE_CONTROL_POLICY" * }; * const command = new CreatePolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Policy": { - * "Content": "{\"Version\":\"2012-10-17\",\"Statement\":{\"Effect\":\"Allow\",\"Action\":\"s3:*\"}}", - * "PolicySummary": { - * "Arn": "arn:aws:organizations::111111111111:policy/o-exampleorgid/service_control_policy/p-examplepolicyid111", - * "Description": "Allows delegation of all S3 actions", - * "Name": "AllowAllS3Actions", - * "Type": "SERVICE_CONTROL_POLICY" + * Policy: { + * Content: `{"Version":"2012-10-17","Statement":{"Effect":"Allow","Action":"s3:*"}}`, + * PolicySummary: { + * Arn: "arn:aws:organizations::111111111111:policy/o-exampleorgid/service_control_policy/p-examplepolicyid111", + * Description: "Allows delegation of all S3 actions", + * Name: "AllowAllS3Actions", + * Type: "SERVICE_CONTROL_POLICY" * } * } * } * *\/ - * // example id: to-create-a-service-control-policy * ``` * + * @public */ export class CreatePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/DeclineHandshakeCommand.ts b/clients/client-organizations/src/commands/DeclineHandshakeCommand.ts index f1d88539e7c42..489eac0c0db4e 100644 --- a/clients/client-organizations/src/commands/DeclineHandshakeCommand.ts +++ b/clients/client-organizations/src/commands/DeclineHandshakeCommand.ts @@ -233,64 +233,64 @@ export interface DeclineHandshakeCommandOutput extends DeclineHandshakeResponse, * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To decline a handshake sent from the master account * ```javascript * // The following example shows Susan declining an invitation to join Bill's organization. The DeclineHandshake operation returns a handshake object, showing that the state is now DECLINED: * const input = { - * "HandshakeId": "h-examplehandshakeid111" + * HandshakeId: "h-examplehandshakeid111" * }; * const command = new DeclineHandshakeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Handshake": { - * "Action": "INVITE", - * "Arn": "arn:aws:organizations::111111111111:handshake/o-exampleorgid/invite/h-examplehandshakeid111", - * "ExpirationTimestamp": "2016-12-15T19:27:58Z", - * "Id": "h-examplehandshakeid111", - * "Parties": [ + * Handshake: { + * Action: "INVITE", + * Arn: "arn:aws:organizations::111111111111:handshake/o-exampleorgid/invite/h-examplehandshakeid111", + * ExpirationTimestamp: "2016-12-15T19:27:58Z", + * Id: "h-examplehandshakeid111", + * Parties: [ * { - * "Id": "222222222222", - * "Type": "ACCOUNT" + * Id: "222222222222", + * Type: "ACCOUNT" * }, * { - * "Id": "o-exampleorgid", - * "Type": "ORGANIZATION" + * Id: "o-exampleorgid", + * Type: "ORGANIZATION" * } * ], - * "RequestedTimestamp": "2016-11-30T19:27:58Z", - * "Resources": [ + * RequestedTimestamp: "2016-11-30T19:27:58Z", + * Resources: [ * { - * "Resources": [ + * Resources: [ * { - * "Type": "MASTER_EMAIL", - * "Value": "bill@example.com" + * Type: "MASTER_EMAIL", + * Value: "bill@example.com" * }, * { - * "Type": "MASTER_NAME", - * "Value": "Master Account" + * Type: "MASTER_NAME", + * Value: "Master Account" * } * ], - * "Type": "ORGANIZATION", - * "Value": "o-exampleorgid" + * Type: "ORGANIZATION", + * Value: "o-exampleorgid" * }, * { - * "Type": "ACCOUNT", - * "Value": "222222222222" + * Type: "ACCOUNT", + * Value: "222222222222" * }, * { - * "Type": "NOTES", - * "Value": "This is an invitation to Susan's account to join the Bill's organization." + * Type: "NOTES", + * Value: "This is an invitation to Susan's account to join the Bill's organization." * } * ], - * "State": "DECLINED" + * State: "DECLINED" * } * } * *\/ - * // example id: to-decline-a-handshake-sent-from-the-master-account-1472502666967 * ``` * + * @public */ export class DeclineHandshakeCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/DeleteOrganizationCommand.ts b/clients/client-organizations/src/commands/DeleteOrganizationCommand.ts index 63c10aacae8a6..99c9099a5d0f1 100644 --- a/clients/client-organizations/src/commands/DeleteOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/DeleteOrganizationCommand.ts @@ -189,6 +189,7 @@ export interface DeleteOrganizationCommandOutput extends __MetadataBearer {} * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class DeleteOrganizationCommand extends $Command diff --git a/clients/client-organizations/src/commands/DeleteOrganizationalUnitCommand.ts b/clients/client-organizations/src/commands/DeleteOrganizationalUnitCommand.ts index 7612fae97254d..eff42854b6db1 100644 --- a/clients/client-organizations/src/commands/DeleteOrganizationalUnitCommand.ts +++ b/clients/client-organizations/src/commands/DeleteOrganizationalUnitCommand.ts @@ -197,20 +197,23 @@ export interface DeleteOrganizationalUnitCommandOutput extends __MetadataBearer * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To delete an organization unit * ```javascript * // The following example shows how to delete an OU. The example assumes that you previously removed all accounts and other OUs from the OU: - * // - * // + * + * * const input = { - * "OrganizationalUnitId": "ou-examplerootid111-exampleouid111" + * OrganizationalUnitId: "ou-examplerootid111-exampleouid111" * }; * const command = new DeleteOrganizationalUnitCommand(input); - * await client.send(command); - * // example id: to-delete-an-organizational-unit + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteOrganizationalUnitCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/DeletePolicyCommand.ts b/clients/client-organizations/src/commands/DeletePolicyCommand.ts index e3677eeb0c70c..b9391cda2a515 100644 --- a/clients/client-organizations/src/commands/DeletePolicyCommand.ts +++ b/clients/client-organizations/src/commands/DeletePolicyCommand.ts @@ -201,20 +201,23 @@ export interface DeletePolicyCommandOutput extends __MetadataBearer {} * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To delete a policy * ```javascript * // The following example shows how to delete a policy from an organization. The example assumes that you previously detached the policy from all entities: - * // - * // + * + * * const input = { - * "PolicyId": "p-examplepolicyid111" + * PolicyId: "p-examplepolicyid111" * }; * const command = new DeletePolicyCommand(input); - * await client.send(command); - * // example id: to-delete-a-policy + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeletePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-organizations/src/commands/DeleteResourcePolicyCommand.ts index 6342a66818bad..b03670a884dfd 100644 --- a/clients/client-organizations/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-organizations/src/commands/DeleteResourcePolicyCommand.ts @@ -281,6 +281,7 @@ export interface DeleteResourcePolicyCommandOutput extends __MetadataBearer {} * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-organizations/src/commands/DeregisterDelegatedAdministratorCommand.ts b/clients/client-organizations/src/commands/DeregisterDelegatedAdministratorCommand.ts index 1367f85d3251c..349da237f5382 100644 --- a/clients/client-organizations/src/commands/DeregisterDelegatedAdministratorCommand.ts +++ b/clients/client-organizations/src/commands/DeregisterDelegatedAdministratorCommand.ts @@ -415,6 +415,7 @@ export interface DeregisterDelegatedAdministratorCommandOutput extends __Metadat * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class DeregisterDelegatedAdministratorCommand extends $Command diff --git a/clients/client-organizations/src/commands/DescribeAccountCommand.ts b/clients/client-organizations/src/commands/DescribeAccountCommand.ts index f05137b474af0..742b007860344 100644 --- a/clients/client-organizations/src/commands/DescribeAccountCommand.ts +++ b/clients/client-organizations/src/commands/DescribeAccountCommand.ts @@ -204,28 +204,28 @@ export interface DescribeAccountCommandOutput extends DescribeAccountResponse, _ * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To get the details about an account * ```javascript * // The following example shows a user in the master account (111111111111) asking for details about account 555555555555: * const input = { - * "AccountId": "555555555555" + * AccountId: "555555555555" * }; * const command = new DescribeAccountCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Account": { - * "Arn": "arn:aws:organizations::111111111111:account/o-exampleorgid/555555555555", - * "Email": "anika@example.com", - * "Id": "555555555555", - * "Name": "Beta Account" + * Account: { + * Arn: "arn:aws:organizations::111111111111:account/o-exampleorgid/555555555555", + * Email: "anika@example.com", + * Id: "555555555555", + * Name: "Beta Account" * } * } * *\/ - * // example id: to-get-the-details-about-an-account-1472503166868 * ``` * + * @public */ export class DescribeAccountCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/DescribeCreateAccountStatusCommand.ts b/clients/client-organizations/src/commands/DescribeCreateAccountStatusCommand.ts index e267a146066e2..05f7360e81f5e 100644 --- a/clients/client-organizations/src/commands/DescribeCreateAccountStatusCommand.ts +++ b/clients/client-organizations/src/commands/DescribeCreateAccountStatusCommand.ts @@ -209,27 +209,27 @@ export interface DescribeCreateAccountStatusCommandOutput * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To get information about a request to create an account * ```javascript * // The following example shows how to request the status about a previous request to create an account in an organization. This operation can be called only by a principal from the organization's master account. In the example, the specified "createAccountRequestId" comes from the response of the original call to "CreateAccount": * const input = { - * "CreateAccountRequestId": "car-exampleaccountcreationrequestid" + * CreateAccountRequestId: "car-exampleaccountcreationrequestid" * }; * const command = new DescribeCreateAccountStatusCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CreateAccountStatus": { - * "AccountId": "333333333333", - * "Id": "car-exampleaccountcreationrequestid", - * "State": "SUCCEEDED" + * CreateAccountStatus: { + * AccountId: "333333333333", + * Id: "car-exampleaccountcreationrequestid", + * State: "SUCCEEDED" * } * } * *\/ - * // example id: to-get-information-about-a-request-to-create-an-account-1472503727223 * ``` * + * @public */ export class DescribeCreateAccountStatusCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/DescribeEffectivePolicyCommand.ts b/clients/client-organizations/src/commands/DescribeEffectivePolicyCommand.ts index d1c131566e037..077b5d44ac1ac 100644 --- a/clients/client-organizations/src/commands/DescribeEffectivePolicyCommand.ts +++ b/clients/client-organizations/src/commands/DescribeEffectivePolicyCommand.ts @@ -413,6 +413,7 @@ export interface DescribeEffectivePolicyCommandOutput extends DescribeEffectiveP * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class DescribeEffectivePolicyCommand extends $Command diff --git a/clients/client-organizations/src/commands/DescribeHandshakeCommand.ts b/clients/client-organizations/src/commands/DescribeHandshakeCommand.ts index f74f20fc153dc..e354f23446f73 100644 --- a/clients/client-organizations/src/commands/DescribeHandshakeCommand.ts +++ b/clients/client-organizations/src/commands/DescribeHandshakeCommand.ts @@ -224,60 +224,60 @@ export interface DescribeHandshakeCommandOutput extends DescribeHandshakeRespons * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To get information about a handshake * ```javascript * // The following example shows you how to request details about a handshake. The handshake ID comes either from the original call to "InviteAccountToOrganization", or from a call to "ListHandshakesForAccount" or "ListHandshakesForOrganization": * const input = { - * "HandshakeId": "h-examplehandshakeid111" + * HandshakeId: "h-examplehandshakeid111" * }; * const command = new DescribeHandshakeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Handshake": { - * "Action": "INVITE", - * "Arn": "arn:aws:organizations::111111111111:handshake/o-exampleorgid/invite/h-examplehandshakeid111", - * "ExpirationTimestamp": "2016-11-30T17:24:58.046Z", - * "Id": "h-examplehandshakeid111", - * "Parties": [ + * Handshake: { + * Action: "INVITE", + * Arn: "arn:aws:organizations::111111111111:handshake/o-exampleorgid/invite/h-examplehandshakeid111", + * ExpirationTimestamp: "2016-11-30T17:24:58.046Z", + * Id: "h-examplehandshakeid111", + * Parties: [ * { - * "Id": "o-exampleorgid", - * "Type": "ORGANIZATION" + * Id: "o-exampleorgid", + * Type: "ORGANIZATION" * }, * { - * "Id": "333333333333", - * "Type": "ACCOUNT" + * Id: "333333333333", + * Type: "ACCOUNT" * } * ], - * "RequestedTimestamp": "2016-11-30T17:24:58.046Z", - * "Resources": [ + * RequestedTimestamp: "2016-11-30T17:24:58.046Z", + * Resources: [ * { - * "Resources": [ + * Resources: [ * { - * "Type": "MASTER_EMAIL", - * "Value": "bill@example.com" + * Type: "MASTER_EMAIL", + * Value: "bill@example.com" * }, * { - * "Type": "MASTER_NAME", - * "Value": "Master Account" + * Type: "MASTER_NAME", + * Value: "Master Account" * } * ], - * "Type": "ORGANIZATION", - * "Value": "o-exampleorgid" + * Type: "ORGANIZATION", + * Value: "o-exampleorgid" * }, * { - * "Type": "ACCOUNT", - * "Value": "333333333333" + * Type: "ACCOUNT", + * Value: "333333333333" * } * ], - * "State": "OPEN" + * State: "OPEN" * } * } * *\/ - * // example id: to-get-information-about-a-handshake-1472503400505 * ``` * + * @public */ export class DescribeHandshakeCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/DescribeOrganizationCommand.ts b/clients/client-organizations/src/commands/DescribeOrganizationCommand.ts index e84056614a5c1..6da216e252f1a 100644 --- a/clients/client-organizations/src/commands/DescribeOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/DescribeOrganizationCommand.ts @@ -97,33 +97,33 @@ export interface DescribeOrganizationCommandOutput extends DescribeOrganizationR * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To get information about an organization * ```javascript * // The following example shows how to request information about the current user's organization:/n/n - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeOrganizationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Organization": { - * "Arn": "arn:aws:organizations::111111111111:organization/o-exampleorgid", - * "AvailablePolicyTypes": [ + * Organization: { + * Arn: "arn:aws:organizations::111111111111:organization/o-exampleorgid", + * AvailablePolicyTypes: [ * { - * "Status": "ENABLED", - * "Type": "SERVICE_CONTROL_POLICY" + * Status: "ENABLED", + * Type: "SERVICE_CONTROL_POLICY" * } * ], - * "FeatureSet": "ALL", - * "Id": "o-exampleorgid", - * "MasterAccountArn": "arn:aws:organizations::111111111111:account/o-exampleorgid/111111111111", - * "MasterAccountEmail": "bill@example.com" + * FeatureSet: "ALL", + * Id: "o-exampleorgid", + * MasterAccountArn: "arn:aws:organizations::111111111111:account/o-exampleorgid/111111111111", + * MasterAccountEmail: "bill@example.com" * } * } * *\/ - * // example id: to-get-information-about-an-organization-1472503400505 * ``` * + * @public */ export class DescribeOrganizationCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/DescribeOrganizationalUnitCommand.ts b/clients/client-organizations/src/commands/DescribeOrganizationalUnitCommand.ts index 7e3de49989d11..db72c1fc2e0c3 100644 --- a/clients/client-organizations/src/commands/DescribeOrganizationalUnitCommand.ts +++ b/clients/client-organizations/src/commands/DescribeOrganizationalUnitCommand.ts @@ -195,27 +195,27 @@ export interface DescribeOrganizationalUnitCommandOutput extends DescribeOrganiz * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To get information about an organizational unit * ```javascript * // The following example shows how to request details about an OU: * const input = { - * "OrganizationalUnitId": "ou-examplerootid111-exampleouid111" + * OrganizationalUnitId: "ou-examplerootid111-exampleouid111" * }; * const command = new DescribeOrganizationalUnitCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OrganizationalUnit": { - * "Arn": "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examplerootid111-exampleouid111", - * "Id": "ou-examplerootid111-exampleouid111", - * "Name": "Accounting Group" + * OrganizationalUnit: { + * Arn: "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examplerootid111-exampleouid111", + * Id: "ou-examplerootid111-exampleouid111", + * Name: "Accounting Group" * } * } * *\/ - * // example id: to-get-information-about-an-organizational-unit * ``` * + * @public */ export class DescribeOrganizationalUnitCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/DescribePolicyCommand.ts b/clients/client-organizations/src/commands/DescribePolicyCommand.ts index db53ed1dfcf4a..0959729a83948 100644 --- a/clients/client-organizations/src/commands/DescribePolicyCommand.ts +++ b/clients/client-organizations/src/commands/DescribePolicyCommand.ts @@ -203,33 +203,33 @@ export interface DescribePolicyCommandOutput extends DescribePolicyResponse, __M * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To get information about a policy * ```javascript * // The following example shows how to request information about a policy:/n/n * const input = { - * "PolicyId": "p-examplepolicyid111" + * PolicyId: "p-examplepolicyid111" * }; * const command = new DescribePolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Policy": { - * "Content": "{\\n \\\"Version\\\": \\\"2012-10-17\\\",\\n \\\"Statement\\\": [\\n {\\n \\\"Effect\\\": \\\"Allow\\\",\\n \\\"Action\\\": \\\"*\\\",\\n \\\"Resource\\\": \\\"*\\\"\\n }\\n ]\\n}", - * "PolicySummary": { - * "Arn": "arn:aws:organizations::111111111111:policy/o-exampleorgid/service_control_policy/p-examplepolicyid111", - * "AwsManaged": false, - * "Description": "Enables admins to delegate S3 permissions", - * "Id": "p-examplepolicyid111", - * "Name": "AllowAllS3Actions", - * "Type": "SERVICE_CONTROL_POLICY" + * Policy: { + * Content: `{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Effect\": \"Allow\",\n \"Action\": \"*\",\n \"Resource\": \"*\"\n }\n ]\n}`, + * PolicySummary: { + * Arn: "arn:aws:organizations::111111111111:policy/o-exampleorgid/service_control_policy/p-examplepolicyid111", + * AwsManaged: false, + * Description: "Enables admins to delegate S3 permissions", + * Id: "p-examplepolicyid111", + * Name: "AllowAllS3Actions", + * Type: "SERVICE_CONTROL_POLICY" * } * } * } * *\/ - * // example id: to-get-information-about-a-policy * ``` * + * @public */ export class DescribePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/DescribeResourcePolicyCommand.ts b/clients/client-organizations/src/commands/DescribeResourcePolicyCommand.ts index ffee391f8fa3b..d90deccc10a8e 100644 --- a/clients/client-organizations/src/commands/DescribeResourcePolicyCommand.ts +++ b/clients/client-organizations/src/commands/DescribeResourcePolicyCommand.ts @@ -287,6 +287,7 @@ export interface DescribeResourcePolicyCommandOutput extends DescribeResourcePol * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class DescribeResourcePolicyCommand extends $Command diff --git a/clients/client-organizations/src/commands/DetachPolicyCommand.ts b/clients/client-organizations/src/commands/DetachPolicyCommand.ts index c68f10b4ba441..215c21cf06472 100644 --- a/clients/client-organizations/src/commands/DetachPolicyCommand.ts +++ b/clients/client-organizations/src/commands/DetachPolicyCommand.ts @@ -420,19 +420,22 @@ export interface DetachPolicyCommandOutput extends __MetadataBearer {} * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To detach a policy from a root, OU, or account * ```javascript * // The following example shows how to detach a policy from an OU:/n/n * const input = { - * "PolicyId": "p-examplepolicyid111", - * "TargetId": "ou-examplerootid111-exampleouid111" + * PolicyId: "p-examplepolicyid111", + * TargetId: "ou-examplerootid111-exampleouid111" * }; * const command = new DetachPolicyCommand(input); - * await client.send(command); - * // example id: to-detach-a-policy-from-a-root-ou-or-account + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DetachPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/DisableAWSServiceAccessCommand.ts b/clients/client-organizations/src/commands/DisableAWSServiceAccessCommand.ts index e19db0d6a4da3..f6b0a55a26d58 100644 --- a/clients/client-organizations/src/commands/DisableAWSServiceAccessCommand.ts +++ b/clients/client-organizations/src/commands/DisableAWSServiceAccessCommand.ts @@ -444,6 +444,7 @@ export interface DisableAWSServiceAccessCommandOutput extends __MetadataBearer { * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class DisableAWSServiceAccessCommand extends $Command diff --git a/clients/client-organizations/src/commands/DisablePolicyTypeCommand.ts b/clients/client-organizations/src/commands/DisablePolicyTypeCommand.ts index 5939169841a0b..1a1b344e0c69a 100644 --- a/clients/client-organizations/src/commands/DisablePolicyTypeCommand.ts +++ b/clients/client-organizations/src/commands/DisablePolicyTypeCommand.ts @@ -427,29 +427,29 @@ export interface DisablePolicyTypeCommandOutput extends DisablePolicyTypeRespons * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To disable a policy type in a root * ```javascript * // The following example shows how to disable the service control policy (SCP) policy type in a root. The response shows that the PolicyTypes response element no longer includes SERVICE_CONTROL_POLICY:/n/n * const input = { - * "PolicyType": "SERVICE_CONTROL_POLICY", - * "RootId": "r-examplerootid111" + * PolicyType: "SERVICE_CONTROL_POLICY", + * RootId: "r-examplerootid111" * }; * const command = new DisablePolicyTypeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Root": { - * "Arn": "arn:aws:organizations::111111111111:root/o-exampleorgid/r-examplerootid111", - * "Id": "r-examplerootid111", - * "Name": "Root", - * "PolicyTypes": [] + * Root: { + * Arn: "arn:aws:organizations::111111111111:root/o-exampleorgid/r-examplerootid111", + * Id: "r-examplerootid111", + * Name: "Root", + * PolicyTypes: [] * } * } * *\/ - * // example id: to-disable-a-policy-type-in-a-root * ``` * + * @public */ export class DisablePolicyTypeCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/EnableAWSServiceAccessCommand.ts b/clients/client-organizations/src/commands/EnableAWSServiceAccessCommand.ts index 8c8aa5288aaa9..f9ecfb7d30128 100644 --- a/clients/client-organizations/src/commands/EnableAWSServiceAccessCommand.ts +++ b/clients/client-organizations/src/commands/EnableAWSServiceAccessCommand.ts @@ -409,6 +409,7 @@ export interface EnableAWSServiceAccessCommandOutput extends __MetadataBearer {} * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class EnableAWSServiceAccessCommand extends $Command diff --git a/clients/client-organizations/src/commands/EnableAllFeaturesCommand.ts b/clients/client-organizations/src/commands/EnableAllFeaturesCommand.ts index 06c479aa3068e..245a3b79e5d33 100644 --- a/clients/client-organizations/src/commands/EnableAllFeaturesCommand.ts +++ b/clients/client-organizations/src/commands/EnableAllFeaturesCommand.ts @@ -501,40 +501,40 @@ export interface EnableAllFeaturesCommandOutput extends EnableAllFeaturesRespons * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To enable all features in an organization * ```javascript * // This example shows the administrator asking all the invited accounts in the organization to approve enabling all features in the organization. AWS Organizations sends an email to the address that is registered with every invited member account asking the owner to approve the change by accepting the handshake that is sent. After all invited member accounts accept the handshake, the organization administrator can finalize the change to enable all features, and those with appropriate permissions can create policies and apply them to roots, OUs, and accounts:/n/n - * const input = {}; + * const input = { /* empty *\/ }; * const command = new EnableAllFeaturesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Handshake": { - * "Action": "ENABLE_ALL_FEATURES", - * "Arn": "arn:aws:organizations::111111111111:handshake/o-exampleorgid/enable_all_features/h-examplehandshakeid111", - * "ExpirationTimestamp": "2017-02-28T09:35:40.05Z", - * "Id": "h-examplehandshakeid111", - * "Parties": [ + * Handshake: { + * Action: "ENABLE_ALL_FEATURES", + * Arn: "arn:aws:organizations::111111111111:handshake/o-exampleorgid/enable_all_features/h-examplehandshakeid111", + * ExpirationTimestamp: "2017-02-28T09:35:40.05Z", + * Id: "h-examplehandshakeid111", + * Parties: [ * { - * "Id": "o-exampleorgid", - * "Type": "ORGANIZATION" + * Id: "o-exampleorgid", + * Type: "ORGANIZATION" * } * ], - * "RequestedTimestamp": "2017-02-13T09:35:40.05Z", - * "Resources": [ + * RequestedTimestamp: "2017-02-13T09:35:40.05Z", + * Resources: [ * { - * "Type": "ORGANIZATION", - * "Value": "o-exampleorgid" + * Type: "ORGANIZATION", + * Value: "o-exampleorgid" * } * ], - * "State": "REQUESTED" + * State: "REQUESTED" * } * } * *\/ - * // example id: to-enable-all-features-in-an-organization * ``` * + * @public */ export class EnableAllFeaturesCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/EnablePolicyTypeCommand.ts b/clients/client-organizations/src/commands/EnablePolicyTypeCommand.ts index f365087ddcdb1..8e6615c53f238 100644 --- a/clients/client-organizations/src/commands/EnablePolicyTypeCommand.ts +++ b/clients/client-organizations/src/commands/EnablePolicyTypeCommand.ts @@ -430,34 +430,34 @@ export interface EnablePolicyTypeCommandOutput extends EnablePolicyTypeResponse, * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To enable a policy type in a root * ```javascript * // The following example shows how to enable the service control policy (SCP) policy type in a root. The output shows a root object with a PolicyTypes response element showing that SCPs are now enabled:/n/n * const input = { - * "PolicyType": "SERVICE_CONTROL_POLICY", - * "RootId": "r-examplerootid111" + * PolicyType: "SERVICE_CONTROL_POLICY", + * RootId: "r-examplerootid111" * }; * const command = new EnablePolicyTypeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Root": { - * "Arn": "arn:aws:organizations::111111111111:root/o-exampleorgid/r-examplerootid111", - * "Id": "r-examplerootid111", - * "Name": "Root", - * "PolicyTypes": [ + * Root: { + * Arn: "arn:aws:organizations::111111111111:root/o-exampleorgid/r-examplerootid111", + * Id: "r-examplerootid111", + * Name: "Root", + * PolicyTypes: [ * { - * "Status": "ENABLED", - * "Type": "SERVICE_CONTROL_POLICY" + * Status: "ENABLED", + * Type: "SERVICE_CONTROL_POLICY" * } * ] * } * } * *\/ - * // example id: to-enable-a-policy-type-in-a-root * ``` * + * @public */ export class EnablePolicyTypeCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/InviteAccountToOrganizationCommand.ts b/clients/client-organizations/src/commands/InviteAccountToOrganizationCommand.ts index c832ea4b4c9d6..3bdff71c6d36e 100644 --- a/clients/client-organizations/src/commands/InviteAccountToOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/InviteAccountToOrganizationCommand.ts @@ -535,68 +535,68 @@ export interface InviteAccountToOrganizationCommandOutput * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To invite an account to join an organization * ```javascript * // The following example shows the admin of the master account owned by bill@example.com inviting the account owned by juan@example.com to join an organization. * const input = { - * "Notes": "This is a request for Juan's account to join Bill's organization", - * "Target": { - * "Id": "juan@example.com", - * "Type": "EMAIL" + * Notes: "This is a request for Juan's account to join Bill's organization", + * Target: { + * Id: "juan@example.com", + * Type: "EMAIL" * } * }; * const command = new InviteAccountToOrganizationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Handshake": { - * "Action": "INVITE", - * "Arn": "arn:aws:organizations::111111111111:handshake/o-exampleorgid/invite/h-examplehandshakeid111", - * "ExpirationTimestamp": "2017-02-16T09:36:05.02Z", - * "Id": "h-examplehandshakeid111", - * "Parties": [ + * Handshake: { + * Action: "INVITE", + * Arn: "arn:aws:organizations::111111111111:handshake/o-exampleorgid/invite/h-examplehandshakeid111", + * ExpirationTimestamp: "2017-02-16T09:36:05.02Z", + * Id: "h-examplehandshakeid111", + * Parties: [ * { - * "Id": "o-exampleorgid", - * "Type": "ORGANIZATION" + * Id: "o-exampleorgid", + * Type: "ORGANIZATION" * }, * { - * "Id": "juan@example.com", - * "Type": "EMAIL" + * Id: "juan@example.com", + * Type: "EMAIL" * } * ], - * "RequestedTimestamp": "2017-02-01T09:36:05.02Z", - * "Resources": [ + * RequestedTimestamp: "2017-02-01T09:36:05.02Z", + * Resources: [ * { - * "Resources": [ + * Resources: [ * { - * "Type": "MASTER_EMAIL", - * "Value": "bill@amazon.com" + * Type: "MASTER_EMAIL", + * Value: "bill@amazon.com" * }, * { - * "Type": "MASTER_NAME", - * "Value": "Org Master Account" + * Type: "MASTER_NAME", + * Value: "Org Master Account" * }, * { - * "Type": "ORGANIZATION_FEATURE_SET", - * "Value": "FULL" + * Type: "ORGANIZATION_FEATURE_SET", + * Value: "FULL" * } * ], - * "Type": "ORGANIZATION", - * "Value": "o-exampleorgid" + * Type: "ORGANIZATION", + * Value: "o-exampleorgid" * }, * { - * "Type": "EMAIL", - * "Value": "juan@example.com" + * Type: "EMAIL", + * Value: "juan@example.com" * } * ], - * "State": "OPEN" + * State: "OPEN" * } * } * *\/ - * // example id: to-invite-an-account-to-join-an-organization-1472508594110 * ``` * + * @public */ export class InviteAccountToOrganizationCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/LeaveOrganizationCommand.ts b/clients/client-organizations/src/commands/LeaveOrganizationCommand.ts index 84a12cdf5db55..bfdf0176b5017 100644 --- a/clients/client-organizations/src/commands/LeaveOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/LeaveOrganizationCommand.ts @@ -460,16 +460,19 @@ export interface LeaveOrganizationCommandOutput extends __MetadataBearer {} * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To leave an organization as a member account * ```javascript * // TThe following example shows how to remove your member account from an organization: - * const input = {}; + * const input = { /* empty *\/ }; * const command = new LeaveOrganizationCommand(input); - * await client.send(command); - * // example id: to-leave-an-organization-as-a-member-account-1472508784736 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class LeaveOrganizationCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/ListAWSServiceAccessForOrganizationCommand.ts b/clients/client-organizations/src/commands/ListAWSServiceAccessForOrganizationCommand.ts index a1a37b1a6253c..db96153478a40 100644 --- a/clients/client-organizations/src/commands/ListAWSServiceAccessForOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/ListAWSServiceAccessForOrganizationCommand.ts @@ -410,6 +410,7 @@ export interface ListAWSServiceAccessForOrganizationCommandOutput * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class ListAWSServiceAccessForOrganizationCommand extends $Command diff --git a/clients/client-organizations/src/commands/ListAccountsCommand.ts b/clients/client-organizations/src/commands/ListAccountsCommand.ts index 4e73b5ec70bb6..318b3156ce363 100644 --- a/clients/client-organizations/src/commands/ListAccountsCommand.ts +++ b/clients/client-organizations/src/commands/ListAccountsCommand.ts @@ -208,58 +208,8 @@ export interface ListAccountsCommandOutput extends ListAccountsResponse, __Metad * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public - * @example To retrieve a list of all of the accounts in an organization - * ```javascript - * // The following example shows you how to request a list of the accounts in an organization: - * const input = {}; - * const command = new ListAccountsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Accounts": [ - * { - * "Arn": "arn:aws:organizations::111111111111:account/o-exampleorgid/111111111111", - * "Email": "bill@example.com", - * "Id": "111111111111", - * "JoinedMethod": "INVITED", - * "JoinedTimestamp": "20161215T193015Z", - * "Name": "Master Account", - * "Status": "ACTIVE" - * }, - * { - * "Arn": "arn:aws:organizations::111111111111:account/o-exampleorgid/222222222222", - * "Email": "alice@example.com", - * "Id": "222222222222", - * "JoinedMethod": "INVITED", - * "JoinedTimestamp": "20161215T210221Z", - * "Name": "Developer Account", - * "Status": "ACTIVE" - * }, - * { - * "Arn": "arn:aws:organizations::111111111111:account/o-exampleorgid/333333333333", - * "Email": "juan@example.com", - * "Id": "333333333333", - * "JoinedMethod": "INVITED", - * "JoinedTimestamp": "20161215T210347Z", - * "Name": "Test Account", - * "Status": "ACTIVE" - * }, - * { - * "Arn": "arn:aws:organizations::111111111111:account/o-exampleorgid/444444444444", - * "Email": "anika@example.com", - * "Id": "444444444444", - * "JoinedMethod": "INVITED", - * "JoinedTimestamp": "20161215T210332Z", - * "Name": "Production Account", - * "Status": "ACTIVE" - * } - * ] - * } - * *\/ - * // example id: to-retrieve-a-list-of-all-of-the-accounts-in-an-organization-1472509590974 - * ``` * + * @public */ export class ListAccountsCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/ListAccountsForParentCommand.ts b/clients/client-organizations/src/commands/ListAccountsForParentCommand.ts index 141f5e16a2aa6..25b9b81bfbade 100644 --- a/clients/client-organizations/src/commands/ListAccountsForParentCommand.ts +++ b/clients/client-organizations/src/commands/ListAccountsForParentCommand.ts @@ -219,42 +219,42 @@ export interface ListAccountsForParentCommandOutput extends ListAccountsForParen * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To retrieve a list of all of the accounts in a root or OU * ```javascript * // The following example shows how to request a list of the accounts in an OU:/n/n * const input = { - * "ParentId": "ou-examplerootid111-exampleouid111" + * ParentId: "ou-examplerootid111-exampleouid111" * }; * const command = new ListAccountsForParentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Accounts": [ + * Accounts: [ * { - * "Arn": "arn:aws:organizations::111111111111:account/o-exampleorgid/333333333333", - * "Email": "juan@example.com", - * "Id": "333333333333", - * "JoinedMethod": "INVITED", - * "JoinedTimestamp": 1481835795.536, - * "Name": "Development Account", - * "Status": "ACTIVE" + * Arn: "arn:aws:organizations::111111111111:account/o-exampleorgid/333333333333", + * Email: "juan@example.com", + * Id: "333333333333", + * JoinedMethod: "INVITED", + * JoinedTimestamp: 1.481835795536E9, + * Name: "Development Account", + * Status: "ACTIVE" * }, * { - * "Arn": "arn:aws:organizations::111111111111:account/o-exampleorgid/444444444444", - * "Email": "anika@example.com", - * "Id": "444444444444", - * "JoinedMethod": "INVITED", - * "JoinedTimestamp": 1481835812.143, - * "Name": "Test Account", - * "Status": "ACTIVE" + * Arn: "arn:aws:organizations::111111111111:account/o-exampleorgid/444444444444", + * Email: "anika@example.com", + * Id: "444444444444", + * JoinedMethod: "INVITED", + * JoinedTimestamp: 1.481835812143E9, + * Name: "Test Account", + * Status: "ACTIVE" * } * ] * } * *\/ - * // example id: to-retrieve-a-list-of-all-of-the-accounts-in-a-root-or-ou-1472509590974 * ``` * + * @public */ export class ListAccountsForParentCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/ListChildrenCommand.ts b/clients/client-organizations/src/commands/ListChildrenCommand.ts index 6bf94f1f74bd6..2dfdfde9af1ea 100644 --- a/clients/client-organizations/src/commands/ListChildrenCommand.ts +++ b/clients/client-organizations/src/commands/ListChildrenCommand.ts @@ -209,33 +209,33 @@ export interface ListChildrenCommandOutput extends ListChildrenResponse, __Metad * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To retrieve a list of all of the child accounts and OUs in a parent root or OU * ```javascript * // The following example shows how to request a list of the child OUs in a parent root or OU:/n/n * const input = { - * "ChildType": "ORGANIZATIONAL_UNIT", - * "ParentId": "ou-examplerootid111-exampleouid111" + * ChildType: "ORGANIZATIONAL_UNIT", + * ParentId: "ou-examplerootid111-exampleouid111" * }; * const command = new ListChildrenCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Children": [ + * Children: [ * { - * "Id": "ou-examplerootid111-exampleouid111", - * "Type": "ORGANIZATIONAL_UNIT" + * Id: "ou-examplerootid111-exampleouid111", + * Type: "ORGANIZATIONAL_UNIT" * }, * { - * "Id": "ou-examplerootid111-exampleouid222", - * "Type": "ORGANIZATIONAL_UNIT" + * Id: "ou-examplerootid111-exampleouid222", + * Type: "ORGANIZATIONAL_UNIT" * } * ] * } * *\/ - * // example id: to-retrieve-a-list-of-all-of-the-child-accounts-and-OUs-in-a-parent-container * ``` * + * @public */ export class ListChildrenCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/ListCreateAccountStatusCommand.ts b/clients/client-organizations/src/commands/ListCreateAccountStatusCommand.ts index fbedc9e6df474..63b09906fb817 100644 --- a/clients/client-organizations/src/commands/ListCreateAccountStatusCommand.ts +++ b/clients/client-organizations/src/commands/ListCreateAccountStatusCommand.ts @@ -219,59 +219,58 @@ export interface ListCreateAccountStatusCommandOutput extends ListCreateAccountS * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public - * @example To get a list of completed account creation requests made in the organization + * + * @example To get a list of all account creation requests made in the organization * ```javascript - * // The following example shows a user requesting a list of only the completed account creation requests made for the current organization: + * // The following example shows a user requesting a list of only the in-progress account creation requests made for the current organization: * const input = { - * "States": [ - * "SUCCEEDED" + * States: [ + * "IN_PROGRESS" * ] * }; * const command = new ListCreateAccountStatusCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CreateAccountStatuses": [ + * CreateAccountStatuses: [ * { - * "AccountId": "444444444444", - * "AccountName": "Developer Test Account", - * "CompletedTimestamp": "2017-01-15T13:45:23.6Z", - * "Id": "car-exampleaccountcreationrequestid1", - * "RequestedTimestamp": "2017-01-15T13:45:23.01Z", - * "State": "SUCCEEDED" + * AccountName: "Production Account", + * Id: "car-exampleaccountcreationrequestid2", + * RequestedTimestamp: "2017-01-15T13:45:23.01Z", + * State: "IN_PROGRESS" * } * ] * } * *\/ - * // example id: to-get-a-list-of-completed-account-creation-requests-made-in-the-organization * ``` * - * @example To get a list of all account creation requests made in the organization + * @example To get a list of completed account creation requests made in the organization * ```javascript - * // The following example shows a user requesting a list of only the in-progress account creation requests made for the current organization: + * // The following example shows a user requesting a list of only the completed account creation requests made for the current organization: * const input = { - * "States": [ - * "IN_PROGRESS" + * States: [ + * "SUCCEEDED" * ] * }; * const command = new ListCreateAccountStatusCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CreateAccountStatuses": [ + * CreateAccountStatuses: [ * { - * "AccountName": "Production Account", - * "Id": "car-exampleaccountcreationrequestid2", - * "RequestedTimestamp": "2017-01-15T13:45:23.01Z", - * "State": "IN_PROGRESS" + * AccountId: "444444444444", + * AccountName: "Developer Test Account", + * CompletedTimestamp: "2017-01-15T13:45:23.6Z", + * Id: "car-exampleaccountcreationrequestid1", + * RequestedTimestamp: "2017-01-15T13:45:23.01Z", + * State: "SUCCEEDED" * } * ] * } * *\/ - * // example id: to-get-a-list-of-all-account-creation-requests-made-in-the-organization-1472509174532 * ``` * + * @public */ export class ListCreateAccountStatusCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/ListDelegatedAdministratorsCommand.ts b/clients/client-organizations/src/commands/ListDelegatedAdministratorsCommand.ts index b99a98da9401a..0f86ec7ceed7b 100644 --- a/clients/client-organizations/src/commands/ListDelegatedAdministratorsCommand.ts +++ b/clients/client-organizations/src/commands/ListDelegatedAdministratorsCommand.ts @@ -411,6 +411,7 @@ export interface ListDelegatedAdministratorsCommandOutput * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class ListDelegatedAdministratorsCommand extends $Command diff --git a/clients/client-organizations/src/commands/ListDelegatedServicesForAccountCommand.ts b/clients/client-organizations/src/commands/ListDelegatedServicesForAccountCommand.ts index 3e6eded2cec37..71c8f159e372d 100644 --- a/clients/client-organizations/src/commands/ListDelegatedServicesForAccountCommand.ts +++ b/clients/client-organizations/src/commands/ListDelegatedServicesForAccountCommand.ts @@ -412,6 +412,7 @@ export interface ListDelegatedServicesForAccountCommandOutput * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class ListDelegatedServicesForAccountCommand extends $Command diff --git a/clients/client-organizations/src/commands/ListHandshakesForAccountCommand.ts b/clients/client-organizations/src/commands/ListHandshakesForAccountCommand.ts index 39f763b90b3f2..dccaaa2f519f9 100644 --- a/clients/client-organizations/src/commands/ListHandshakesForAccountCommand.ts +++ b/clients/client-organizations/src/commands/ListHandshakesForAccountCommand.ts @@ -237,64 +237,64 @@ export interface ListHandshakesForAccountCommandOutput extends ListHandshakesFor * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To retrieve a list of the handshakes sent to an account * ```javascript * // The following example shows you how to get a list of handshakes that are associated with the account of the credentials used to call the operation: - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListHandshakesForAccountCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Handshakes": [ + * Handshakes: [ * { - * "Action": "INVITE", - * "Arn": "arn:aws:organizations::111111111111:handshake/o-exampleorgid/invite/h-examplehandshakeid111", - * "ExpirationTimestamp": "2017-01-28T14:35:23.3Z", - * "Id": "h-examplehandshakeid111", - * "Parties": [ + * Action: "INVITE", + * Arn: "arn:aws:organizations::111111111111:handshake/o-exampleorgid/invite/h-examplehandshakeid111", + * ExpirationTimestamp: "2017-01-28T14:35:23.3Z", + * Id: "h-examplehandshakeid111", + * Parties: [ * { - * "Id": "o-exampleorgid", - * "Type": "ORGANIZATION" + * Id: "o-exampleorgid", + * Type: "ORGANIZATION" * }, * { - * "Id": "juan@example.com", - * "Type": "EMAIL" + * Id: "juan@example.com", + * Type: "EMAIL" * } * ], - * "RequestedTimestamp": "2017-01-13T14:35:23.3Z", - * "Resources": [ + * RequestedTimestamp: "2017-01-13T14:35:23.3Z", + * Resources: [ * { - * "Resources": [ + * Resources: [ * { - * "Type": "MASTER_EMAIL", - * "Value": "bill@amazon.com" + * Type: "MASTER_EMAIL", + * Value: "bill@amazon.com" * }, * { - * "Type": "MASTER_NAME", - * "Value": "Org Master Account" + * Type: "MASTER_NAME", + * Value: "Org Master Account" * }, * { - * "Type": "ORGANIZATION_FEATURE_SET", - * "Value": "FULL" + * Type: "ORGANIZATION_FEATURE_SET", + * Value: "FULL" * } * ], - * "Type": "ORGANIZATION", - * "Value": "o-exampleorgid" + * Type: "ORGANIZATION", + * Value: "o-exampleorgid" * }, * { - * "Type": "EMAIL", - * "Value": "juan@example.com" + * Type: "EMAIL", + * Value: "juan@example.com" * } * ], - * "State": "OPEN" + * State: "OPEN" * } * ] * } * *\/ - * // example id: to-retrieve-a-list-of-the-handshakes-sent-to-an-account-1472510214747 * ``` * + * @public */ export class ListHandshakesForAccountCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/ListHandshakesForOrganizationCommand.ts b/clients/client-organizations/src/commands/ListHandshakesForOrganizationCommand.ts index b730d8d47193a..66f9477528521 100644 --- a/clients/client-organizations/src/commands/ListHandshakesForOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/ListHandshakesForOrganizationCommand.ts @@ -249,106 +249,106 @@ export interface ListHandshakesForOrganizationCommandOutput * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To retrieve a list of the handshakes associated with an organization * ```javascript * // The following example shows you how to get a list of handshakes associated with the current organization: - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListHandshakesForOrganizationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Handshakes": [ + * Handshakes: [ * { - * "Action": "INVITE", - * "Arn": "arn:aws:organizations::111111111111:handshake/o-exampleorgid/invite/h-examplehandshakeid111", - * "ExpirationTimestamp": "2017-01-28T14:35:23.3Z", - * "Id": "h-examplehandshakeid111", - * "Parties": [ + * Action: "INVITE", + * Arn: "arn:aws:organizations::111111111111:handshake/o-exampleorgid/invite/h-examplehandshakeid111", + * ExpirationTimestamp: "2017-01-28T14:35:23.3Z", + * Id: "h-examplehandshakeid111", + * Parties: [ * { - * "Id": "o-exampleorgid", - * "Type": "ORGANIZATION" + * Id: "o-exampleorgid", + * Type: "ORGANIZATION" * }, * { - * "Id": "juan@example.com", - * "Type": "EMAIL" + * Id: "juan@example.com", + * Type: "EMAIL" * } * ], - * "RequestedTimestamp": "2017-01-13T14:35:23.3Z", - * "Resources": [ + * RequestedTimestamp: "2017-01-13T14:35:23.3Z", + * Resources: [ * { - * "Resources": [ + * Resources: [ * { - * "Type": "MASTER_EMAIL", - * "Value": "bill@amazon.com" + * Type: "MASTER_EMAIL", + * Value: "bill@amazon.com" * }, * { - * "Type": "MASTER_NAME", - * "Value": "Org Master Account" + * Type: "MASTER_NAME", + * Value: "Org Master Account" * }, * { - * "Type": "ORGANIZATION_FEATURE_SET", - * "Value": "FULL" + * Type: "ORGANIZATION_FEATURE_SET", + * Value: "FULL" * } * ], - * "Type": "ORGANIZATION", - * "Value": "o-exampleorgid" + * Type: "ORGANIZATION", + * Value: "o-exampleorgid" * }, * { - * "Type": "EMAIL", - * "Value": "juan@example.com" + * Type: "EMAIL", + * Value: "juan@example.com" * } * ], - * "State": "OPEN" + * State: "OPEN" * }, * { - * "Action": "INVITE", - * "Arn": "arn:aws:organizations::111111111111:handshake/o-exampleorgid/invite/h-examplehandshakeid111", - * "ExpirationTimestamp": "2017-01-28T14:35:23.3Z", - * "Id": "h-examplehandshakeid222", - * "Parties": [ + * Action: "INVITE", + * Arn: "arn:aws:organizations::111111111111:handshake/o-exampleorgid/invite/h-examplehandshakeid111", + * ExpirationTimestamp: "2017-01-28T14:35:23.3Z", + * Id: "h-examplehandshakeid222", + * Parties: [ * { - * "Id": "o-exampleorgid", - * "Type": "ORGANIZATION" + * Id: "o-exampleorgid", + * Type: "ORGANIZATION" * }, * { - * "Id": "anika@example.com", - * "Type": "EMAIL" + * Id: "anika@example.com", + * Type: "EMAIL" * } * ], - * "RequestedTimestamp": "2017-01-13T14:35:23.3Z", - * "Resources": [ + * RequestedTimestamp: "2017-01-13T14:35:23.3Z", + * Resources: [ * { - * "Resources": [ + * Resources: [ * { - * "Type": "MASTER_EMAIL", - * "Value": "bill@example.com" + * Type: "MASTER_EMAIL", + * Value: "bill@example.com" * }, * { - * "Type": "MASTER_NAME", - * "Value": "Master Account" + * Type: "MASTER_NAME", + * Value: "Master Account" * } * ], - * "Type": "ORGANIZATION", - * "Value": "o-exampleorgid" + * Type: "ORGANIZATION", + * Value: "o-exampleorgid" * }, * { - * "Type": "EMAIL", - * "Value": "anika@example.com" + * Type: "EMAIL", + * Value: "anika@example.com" * }, * { - * "Type": "NOTES", - * "Value": "This is an invitation to Anika's account to join Bill's organization." + * Type: "NOTES", + * Value: "This is an invitation to Anika's account to join Bill's organization." * } * ], - * "State": "ACCEPTED" + * State: "ACCEPTED" * } * ] * } * *\/ - * // example id: to-retrieve-a-list-of-the-handshakes-associated-with-an-organization-1472511206653 * ``` * + * @public */ export class ListHandshakesForOrganizationCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/ListOrganizationalUnitsForParentCommand.ts b/clients/client-organizations/src/commands/ListOrganizationalUnitsForParentCommand.ts index ccc74a95991df..f42a48df94f27 100644 --- a/clients/client-organizations/src/commands/ListOrganizationalUnitsForParentCommand.ts +++ b/clients/client-organizations/src/commands/ListOrganizationalUnitsForParentCommand.ts @@ -212,34 +212,34 @@ export interface ListOrganizationalUnitsForParentCommandOutput * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To retrieve a list of all of the child OUs in a parent root or OU * ```javascript * // The following example shows how to get a list of OUs in a specified root:/n/n * const input = { - * "ParentId": "r-examplerootid111" + * ParentId: "r-examplerootid111" * }; * const command = new ListOrganizationalUnitsForParentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OrganizationalUnits": [ + * OrganizationalUnits: [ * { - * "Arn": "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examlerootid111-exampleouid111", - * "Id": "ou-examplerootid111-exampleouid111", - * "Name": "Development" + * Arn: "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examlerootid111-exampleouid111", + * Id: "ou-examplerootid111-exampleouid111", + * Name: "Development" * }, * { - * "Arn": "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examlerootid111-exampleouid222", - * "Id": "ou-examplerootid111-exampleouid222", - * "Name": "Production" + * Arn: "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examlerootid111-exampleouid222", + * Id: "ou-examplerootid111-exampleouid222", + * Name: "Production" * } * ] * } * *\/ - * // example id: to-retrieve-a-list-of-all-of-the-OUs-in-a-parent-container * ``` * + * @public */ export class ListOrganizationalUnitsForParentCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/ListParentsCommand.ts b/clients/client-organizations/src/commands/ListParentsCommand.ts index 84048194b348c..f8bc9cb898ed5 100644 --- a/clients/client-organizations/src/commands/ListParentsCommand.ts +++ b/clients/client-organizations/src/commands/ListParentsCommand.ts @@ -212,28 +212,28 @@ export interface ListParentsCommandOutput extends ListParentsResponse, __Metadat * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To retrieve a list of all of the parents of a child OU or account * ```javascript * // The following example shows how to list the root or OUs that contain account 444444444444:/n/n * const input = { - * "ChildId": "444444444444" + * ChildId: "444444444444" * }; * const command = new ListParentsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Parents": [ + * Parents: [ * { - * "Id": "ou-examplerootid111-exampleouid111", - * "Type": "ORGANIZATIONAL_UNIT" + * Id: "ou-examplerootid111-exampleouid111", + * Type: "ORGANIZATIONAL_UNIT" * } * ] * } * *\/ - * // example id: to-retrieve-a-list-of-all-of-the-parents-of-a-child-ou-or-account * ``` * + * @public */ export class ListParentsCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/ListPoliciesCommand.ts b/clients/client-organizations/src/commands/ListPoliciesCommand.ts index 83060c35df26c..0b0248cd69aba 100644 --- a/clients/client-organizations/src/commands/ListPoliciesCommand.ts +++ b/clients/client-organizations/src/commands/ListPoliciesCommand.ts @@ -210,48 +210,48 @@ export interface ListPoliciesCommandOutput extends ListPoliciesResponse, __Metad * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To retrieve a list policies in the organization * ```javascript * // The following example shows how to get a list of service control policies (SCPs):/n/n * const input = { - * "Filter": "SERVICE_CONTROL_POLICY" + * Filter: "SERVICE_CONTROL_POLICY" * }; * const command = new ListPoliciesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Policies": [ + * Policies: [ * { - * "Arn": "arn:aws:organizations::111111111111:policy/o-exampleorgid/service_control_policy/p-examplepolicyid111", - * "AwsManaged": false, - * "Description": "Enables account admins to delegate permissions for any S3 actions to users and roles in their accounts.", - * "Id": "p-examplepolicyid111", - * "Name": "AllowAllS3Actions", - * "Type": "SERVICE_CONTROL_POLICY" + * Arn: "arn:aws:organizations::111111111111:policy/o-exampleorgid/service_control_policy/p-examplepolicyid111", + * AwsManaged: false, + * Description: "Enables account admins to delegate permissions for any S3 actions to users and roles in their accounts.", + * Id: "p-examplepolicyid111", + * Name: "AllowAllS3Actions", + * Type: "SERVICE_CONTROL_POLICY" * }, * { - * "Arn": "arn:aws:organizations::111111111111:policy/o-exampleorgid/service_control_policy/p-examplepolicyid222", - * "AwsManaged": false, - * "Description": "Enables account admins to delegate permissions for any EC2 actions to users and roles in their accounts.", - * "Id": "p-examplepolicyid222", - * "Name": "AllowAllEC2Actions", - * "Type": "SERVICE_CONTROL_POLICY" + * Arn: "arn:aws:organizations::111111111111:policy/o-exampleorgid/service_control_policy/p-examplepolicyid222", + * AwsManaged: false, + * Description: "Enables account admins to delegate permissions for any EC2 actions to users and roles in their accounts.", + * Id: "p-examplepolicyid222", + * Name: "AllowAllEC2Actions", + * Type: "SERVICE_CONTROL_POLICY" * }, * { - * "Arn": "arn:aws:organizations::aws:policy/service_control_policy/p-FullAWSAccess", - * "AwsManaged": true, - * "Description": "Allows access to every operation", - * "Id": "p-FullAWSAccess", - * "Name": "FullAWSAccess", - * "Type": "SERVICE_CONTROL_POLICY" + * Arn: "arn:aws:organizations::aws:policy/service_control_policy/p-FullAWSAccess", + * AwsManaged: true, + * Description: "Allows access to every operation", + * Id: "p-FullAWSAccess", + * Name: "FullAWSAccess", + * Type: "SERVICE_CONTROL_POLICY" * } * ] * } * *\/ - * // example id: to-retrieve-a-list-of--policies-in-the-organization * ``` * + * @public */ export class ListPoliciesCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/ListPoliciesForTargetCommand.ts b/clients/client-organizations/src/commands/ListPoliciesForTargetCommand.ts index 1e75a41f05eed..b702944374717 100644 --- a/clients/client-organizations/src/commands/ListPoliciesForTargetCommand.ts +++ b/clients/client-organizations/src/commands/ListPoliciesForTargetCommand.ts @@ -217,33 +217,33 @@ export interface ListPoliciesForTargetCommandOutput extends ListPoliciesForTarge * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To retrieve a list policies attached to a root, OU, or account * ```javascript * // The following example shows how to get a list of all service control policies (SCPs) of the type specified by the Filter parameter, that are directly attached to an account. The returned list does not include policies that apply to the account because of inheritance from its location in an OU hierarchy:/n/n * const input = { - * "Filter": "SERVICE_CONTROL_POLICY", - * "TargetId": "444444444444" + * Filter: "SERVICE_CONTROL_POLICY", + * TargetId: "444444444444" * }; * const command = new ListPoliciesForTargetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Policies": [ + * Policies: [ * { - * "Arn": "arn:aws:organizations::111111111111:policy/o-exampleorgid/service_control_policy/p-examplepolicyid222", - * "AwsManaged": false, - * "Description": "Enables account admins to delegate permissions for any EC2 actions to users and roles in their accounts.", - * "Id": "p-examplepolicyid222", - * "Name": "AllowAllEC2Actions", - * "Type": "SERVICE_CONTROL_POLICY" + * Arn: "arn:aws:organizations::111111111111:policy/o-exampleorgid/service_control_policy/p-examplepolicyid222", + * AwsManaged: false, + * Description: "Enables account admins to delegate permissions for any EC2 actions to users and roles in their accounts.", + * Id: "p-examplepolicyid222", + * Name: "AllowAllEC2Actions", + * Type: "SERVICE_CONTROL_POLICY" * } * ] * } * *\/ - * // example id: to-retrieve-a-list-of-policies-attached-to-a-root-ou-or-account * ``` * + * @public */ export class ListPoliciesForTargetCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/ListRootsCommand.ts b/clients/client-organizations/src/commands/ListRootsCommand.ts index 9e9c9f2cd89f4..067836cff7131 100644 --- a/clients/client-organizations/src/commands/ListRootsCommand.ts +++ b/clients/client-organizations/src/commands/ListRootsCommand.ts @@ -216,33 +216,33 @@ export interface ListRootsCommandOutput extends ListRootsResponse, __MetadataBea * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To retrieve a list of roots in the organization * ```javascript * // The following example shows how to get the list of the roots in the current organization:/n/n - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListRootsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Roots": [ + * Roots: [ * { - * "Arn": "arn:aws:organizations::111111111111:root/o-exampleorgid/r-examplerootid111", - * "Id": "r-examplerootid111", - * "Name": "Root", - * "PolicyTypes": [ + * Arn: "arn:aws:organizations::111111111111:root/o-exampleorgid/r-examplerootid111", + * Id: "r-examplerootid111", + * Name: "Root", + * PolicyTypes: [ * { - * "Status": "ENABLED", - * "Type": "SERVICE_CONTROL_POLICY" + * Status: "ENABLED", + * Type: "SERVICE_CONTROL_POLICY" * } * ] * } * ] * } * *\/ - * // example id: to-retrieve-a-list-of-roots-in-the-organization * ``` * + * @public */ export class ListRootsCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/ListTagsForResourceCommand.ts b/clients/client-organizations/src/commands/ListTagsForResourceCommand.ts index 5f6afde87797b..d8c583e0a5cdb 100644 --- a/clients/client-organizations/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-organizations/src/commands/ListTagsForResourceCommand.ts @@ -213,6 +213,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-organizations/src/commands/ListTargetsForPolicyCommand.ts b/clients/client-organizations/src/commands/ListTargetsForPolicyCommand.ts index 89837c50790ea..a44bfe618ee24 100644 --- a/clients/client-organizations/src/commands/ListTargetsForPolicyCommand.ts +++ b/clients/client-organizations/src/commands/ListTargetsForPolicyCommand.ts @@ -212,42 +212,42 @@ export interface ListTargetsForPolicyCommandOutput extends ListTargetsForPolicyR * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To retrieve a list of roots, OUs, and accounts to which a policy is attached * ```javascript * // The following example shows how to get the list of roots, OUs, and accounts to which the specified policy is attached:/n/n * const input = { - * "PolicyId": "p-FullAWSAccess" + * PolicyId: "p-FullAWSAccess" * }; * const command = new ListTargetsForPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Targets": [ + * Targets: [ * { - * "Arn": "arn:aws:organizations::111111111111:root/o-exampleorgid/r-examplerootid111", - * "Name": "Root", - * "TargetId": "r-examplerootid111", - * "Type": "ROOT" + * Arn: "arn:aws:organizations::111111111111:root/o-exampleorgid/r-examplerootid111", + * Name: "Root", + * TargetId: "r-examplerootid111", + * Type: "ROOT" * }, * { - * "Arn": "arn:aws:organizations::111111111111:account/o-exampleorgid/333333333333;", - * "Name": "Developer Test Account", - * "TargetId": "333333333333", - * "Type": "ACCOUNT" + * Arn: "arn:aws:organizations::111111111111:account/o-exampleorgid/333333333333;", + * Name: "Developer Test Account", + * TargetId: "333333333333", + * Type: "ACCOUNT" * }, * { - * "Arn": "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examplerootid111-exampleouid111", - * "Name": "Accounting", - * "TargetId": "ou-examplerootid111-exampleouid111", - * "Type": "ORGANIZATIONAL_UNIT" + * Arn: "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examplerootid111-exampleouid111", + * Name: "Accounting", + * TargetId: "ou-examplerootid111-exampleouid111", + * Type: "ORGANIZATIONAL_UNIT" * } * ] * } * *\/ - * // example id: to-retrieve-a-list-of-roots-ous-and-accounts-to-which-a-policy-is-attached * ``` * + * @public */ export class ListTargetsForPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/MoveAccountCommand.ts b/clients/client-organizations/src/commands/MoveAccountCommand.ts index 9360f1f1b0fe7..dbcad67b356b8 100644 --- a/clients/client-organizations/src/commands/MoveAccountCommand.ts +++ b/clients/client-organizations/src/commands/MoveAccountCommand.ts @@ -207,20 +207,23 @@ export interface MoveAccountCommandOutput extends __MetadataBearer {} * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To move an OU or account to another OU or the root * ```javascript * // The following example shows how to move a member account from the root to an OU:/n/n * const input = { - * "AccountId": "333333333333", - * "DestinationParentId": "ou-examplerootid111-exampleouid111", - * "SourceParentId": "r-examplerootid111" + * AccountId: "333333333333", + * DestinationParentId: "ou-examplerootid111-exampleouid111", + * SourceParentId: "r-examplerootid111" * }; * const command = new MoveAccountCommand(input); - * await client.send(command); - * // example id: to-move-an-ou-or-account-to-another-ou-or-the-root + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class MoveAccountCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/PutResourcePolicyCommand.ts b/clients/client-organizations/src/commands/PutResourcePolicyCommand.ts index e81c67a2fec35..d560f0f7f548a 100644 --- a/clients/client-organizations/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-organizations/src/commands/PutResourcePolicyCommand.ts @@ -405,6 +405,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-organizations/src/commands/RegisterDelegatedAdministratorCommand.ts b/clients/client-organizations/src/commands/RegisterDelegatedAdministratorCommand.ts index f0c73c864bada..2cf72e6405b37 100644 --- a/clients/client-organizations/src/commands/RegisterDelegatedAdministratorCommand.ts +++ b/clients/client-organizations/src/commands/RegisterDelegatedAdministratorCommand.ts @@ -411,6 +411,7 @@ export interface RegisterDelegatedAdministratorCommandOutput extends __MetadataB * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class RegisterDelegatedAdministratorCommand extends $Command diff --git a/clients/client-organizations/src/commands/RemoveAccountFromOrganizationCommand.ts b/clients/client-organizations/src/commands/RemoveAccountFromOrganizationCommand.ts index faced3f9d93a0..1ad7d0de6637b 100644 --- a/clients/client-organizations/src/commands/RemoveAccountFromOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/RemoveAccountFromOrganizationCommand.ts @@ -430,18 +430,21 @@ export interface RemoveAccountFromOrganizationCommandOutput extends __MetadataBe * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To remove an account from an organization as the master account * ```javascript * // The following example shows you how to remove an account from an organization: * const input = { - * "AccountId": "333333333333" + * AccountId: "333333333333" * }; * const command = new RemoveAccountFromOrganizationCommand(input); - * await client.send(command); - * // example id: to-remove-an-account-from-an-organization-as-the-master-account + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RemoveAccountFromOrganizationCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/TagResourceCommand.ts b/clients/client-organizations/src/commands/TagResourceCommand.ts index 725e87856a6e5..f9be11938804d 100644 --- a/clients/client-organizations/src/commands/TagResourceCommand.ts +++ b/clients/client-organizations/src/commands/TagResourceCommand.ts @@ -414,6 +414,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-organizations/src/commands/UntagResourceCommand.ts b/clients/client-organizations/src/commands/UntagResourceCommand.ts index b8320b3d90320..f1848bfcd5724 100644 --- a/clients/client-organizations/src/commands/UntagResourceCommand.ts +++ b/clients/client-organizations/src/commands/UntagResourceCommand.ts @@ -411,6 +411,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-organizations/src/commands/UpdateOrganizationalUnitCommand.ts b/clients/client-organizations/src/commands/UpdateOrganizationalUnitCommand.ts index ff6a3627ccc25..50191980ddef0 100644 --- a/clients/client-organizations/src/commands/UpdateOrganizationalUnitCommand.ts +++ b/clients/client-organizations/src/commands/UpdateOrganizationalUnitCommand.ts @@ -204,28 +204,28 @@ export interface UpdateOrganizationalUnitCommandOutput extends UpdateOrganizatio * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public + * * @example To rename an organizational unit * ```javascript * // The following example shows how to rename an OU. The output confirms the new name:/n/n * const input = { - * "Name": "AccountingOU", - * "OrganizationalUnitId": "ou-examplerootid111-exampleouid111" + * Name: "AccountingOU", + * OrganizationalUnitId: "ou-examplerootid111-exampleouid111" * }; * const command = new UpdateOrganizationalUnitCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OrganizationalUnit": { - * "Arn": "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examplerootid111-exampleouid111", - * "Id": "ou-examplerootid111-exampleouid111", - * "Name": "AccountingOU" + * OrganizationalUnit: { + * Arn: "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examplerootid111-exampleouid111", + * Id: "ou-examplerootid111-exampleouid111", + * Name: "AccountingOU" * } * } * *\/ - * // example id: to-rename-an-organizational-unit * ``` * + * @public */ export class UpdateOrganizationalUnitCommand extends $Command .classBuilder< diff --git a/clients/client-organizations/src/commands/UpdatePolicyCommand.ts b/clients/client-organizations/src/commands/UpdatePolicyCommand.ts index ba467cfd121f6..c31d45cb725fb 100644 --- a/clients/client-organizations/src/commands/UpdatePolicyCommand.ts +++ b/clients/client-organizations/src/commands/UpdatePolicyCommand.ts @@ -425,62 +425,61 @@ export interface UpdatePolicyCommandOutput extends UpdatePolicyResponse, __Metad * @throws {@link OrganizationsServiceException} *

Base exception class for all service exceptions from Organizations service.

* - * @public - * @example To update the details of a policy + * + * @example To update the content of a policy * ```javascript - * // The following example shows how to rename a policy and give it a new description and new content. The output confirms the new name and description text:/n/n + * // The following example shows how to replace the JSON text of the SCP from the preceding example with a new JSON policy text string that allows S3 actions instead of EC2 actions:/n/n * const input = { - * "Description": "This description replaces the original.", - * "Name": "Renamed-Policy", - * "PolicyId": "p-examplepolicyid111" + * Content: `{ \"Version\": \"2012-10-17\", \"Statement\": {\"Effect\": \"Allow\", \"Action\": \"s3:*\", \"Resource\": \"*\" } }`, + * PolicyId: "p-examplepolicyid111" * }; * const command = new UpdatePolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Policy": { - * "Content": "{ \"Version\": \"2012-10-17\", \"Statement\": { \"Effect\": \"Allow\", \"Action\": \"ec2:*\", \"Resource\": \"*\" } }", - * "PolicySummary": { - * "Arn": "arn:aws:organizations::111111111111:policy/o-exampleorgid/service_control_policy/p-examplepolicyid111", - * "AwsManaged": false, - * "Description": "This description replaces the original.", - * "Id": "p-examplepolicyid111", - * "Name": "Renamed-Policy", - * "Type": "SERVICE_CONTROL_POLICY" + * Policy: { + * Content: `{ \"Version\": \"2012-10-17\", \"Statement\": { \"Effect\": \"Allow\", \"Action\": \"s3:*\", \"Resource\": \"*\" } }`, + * PolicySummary: { + * Arn: "arn:aws:organizations::111111111111:policy/o-exampleorgid/service_control_policy/p-examplepolicyid111", + * AwsManaged: false, + * Description: "This description replaces the original.", + * Id: "p-examplepolicyid111", + * Name: "Renamed-Policy", + * Type: "SERVICE_CONTROL_POLICY" * } * } * } * *\/ - * // example id: to-update-the-details-of-a-policy * ``` * - * @example To update the content of a policy + * @example To update the details of a policy * ```javascript - * // The following example shows how to replace the JSON text of the SCP from the preceding example with a new JSON policy text string that allows S3 actions instead of EC2 actions:/n/n + * // The following example shows how to rename a policy and give it a new description and new content. The output confirms the new name and description text:/n/n * const input = { - * "Content": "{ \\\"Version\\\": \\\"2012-10-17\\\", \\\"Statement\\\": {\\\"Effect\\\": \\\"Allow\\\", \\\"Action\\\": \\\"s3:*\\\", \\\"Resource\\\": \\\"*\\\" } }", - * "PolicyId": "p-examplepolicyid111" + * Description: "This description replaces the original.", + * Name: "Renamed-Policy", + * PolicyId: "p-examplepolicyid111" * }; * const command = new UpdatePolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Policy": { - * "Content": "{ \\\"Version\\\": \\\"2012-10-17\\\", \\\"Statement\\\": { \\\"Effect\\\": \\\"Allow\\\", \\\"Action\\\": \\\"s3:*\\\", \\\"Resource\\\": \\\"*\\\" } }", - * "PolicySummary": { - * "Arn": "arn:aws:organizations::111111111111:policy/o-exampleorgid/service_control_policy/p-examplepolicyid111", - * "AwsManaged": false, - * "Description": "This description replaces the original.", - * "Id": "p-examplepolicyid111", - * "Name": "Renamed-Policy", - * "Type": "SERVICE_CONTROL_POLICY" + * Policy: { + * Content: `{ "Version": "2012-10-17", "Statement": { "Effect": "Allow", "Action": "ec2:*", "Resource": "*" } }`, + * PolicySummary: { + * Arn: "arn:aws:organizations::111111111111:policy/o-exampleorgid/service_control_policy/p-examplepolicyid111", + * AwsManaged: false, + * Description: "This description replaces the original.", + * Id: "p-examplepolicyid111", + * Name: "Renamed-Policy", + * Type: "SERVICE_CONTROL_POLICY" * } * } * } * *\/ - * // example id: to-update-the-content-of-a-policy * ``` * + * @public */ export class UpdatePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-osis/src/commands/CreatePipelineCommand.ts b/clients/client-osis/src/commands/CreatePipelineCommand.ts index eec1b987e255a..9a356d6f348b7 100644 --- a/clients/client-osis/src/commands/CreatePipelineCommand.ts +++ b/clients/client-osis/src/commands/CreatePipelineCommand.ts @@ -176,6 +176,7 @@ export interface CreatePipelineCommandOutput extends CreatePipelineResponse, __M * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* + * * @public */ export class CreatePipelineCommand extends $Command diff --git a/clients/client-osis/src/commands/DeletePipelineCommand.ts b/clients/client-osis/src/commands/DeletePipelineCommand.ts index 4e637976788c9..51fb3f79db1db 100644 --- a/clients/client-osis/src/commands/DeletePipelineCommand.ts +++ b/clients/client-osis/src/commands/DeletePipelineCommand.ts @@ -72,6 +72,7 @@ export interface DeletePipelineCommandOutput extends DeletePipelineResponse, __M * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* + * * @public */ export class DeletePipelineCommand extends $Command diff --git a/clients/client-osis/src/commands/GetPipelineBlueprintCommand.ts b/clients/client-osis/src/commands/GetPipelineBlueprintCommand.ts index 97feae57d5f8f..92f1bb14771f6 100644 --- a/clients/client-osis/src/commands/GetPipelineBlueprintCommand.ts +++ b/clients/client-osis/src/commands/GetPipelineBlueprintCommand.ts @@ -83,6 +83,7 @@ export interface GetPipelineBlueprintCommandOutput extends GetPipelineBlueprintR * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* + * * @public */ export class GetPipelineBlueprintCommand extends $Command diff --git a/clients/client-osis/src/commands/GetPipelineChangeProgressCommand.ts b/clients/client-osis/src/commands/GetPipelineChangeProgressCommand.ts index c003c914504be..359a73993c3ad 100644 --- a/clients/client-osis/src/commands/GetPipelineChangeProgressCommand.ts +++ b/clients/client-osis/src/commands/GetPipelineChangeProgressCommand.ts @@ -88,6 +88,7 @@ export interface GetPipelineChangeProgressCommandOutput extends GetPipelineChang * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* + * * @public */ export class GetPipelineChangeProgressCommand extends $Command diff --git a/clients/client-osis/src/commands/GetPipelineCommand.ts b/clients/client-osis/src/commands/GetPipelineCommand.ts index 0dfa6cda3fa86..ca98acecaee55 100644 --- a/clients/client-osis/src/commands/GetPipelineCommand.ts +++ b/clients/client-osis/src/commands/GetPipelineCommand.ts @@ -136,6 +136,7 @@ export interface GetPipelineCommandOutput extends GetPipelineResponse, __Metadat * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* + * * @public */ export class GetPipelineCommand extends $Command diff --git a/clients/client-osis/src/commands/ListPipelineBlueprintsCommand.ts b/clients/client-osis/src/commands/ListPipelineBlueprintsCommand.ts index 24358d791ffa0..2085f44e14d2c 100644 --- a/clients/client-osis/src/commands/ListPipelineBlueprintsCommand.ts +++ b/clients/client-osis/src/commands/ListPipelineBlueprintsCommand.ts @@ -78,6 +78,7 @@ export interface ListPipelineBlueprintsCommandOutput extends ListPipelineBluepri * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* + * * @public */ export class ListPipelineBlueprintsCommand extends $Command diff --git a/clients/client-osis/src/commands/ListPipelinesCommand.ts b/clients/client-osis/src/commands/ListPipelinesCommand.ts index d4ddaa558d9f1..cbb0b29434d9f 100644 --- a/clients/client-osis/src/commands/ListPipelinesCommand.ts +++ b/clients/client-osis/src/commands/ListPipelinesCommand.ts @@ -99,6 +99,7 @@ export interface ListPipelinesCommandOutput extends ListPipelinesResponse, __Met * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* + * * @public */ export class ListPipelinesCommand extends $Command diff --git a/clients/client-osis/src/commands/ListTagsForResourceCommand.ts b/clients/client-osis/src/commands/ListTagsForResourceCommand.ts index 30961777d03e4..4f61f64b4fd90 100644 --- a/clients/client-osis/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-osis/src/commands/ListTagsForResourceCommand.ts @@ -77,6 +77,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-osis/src/commands/StartPipelineCommand.ts b/clients/client-osis/src/commands/StartPipelineCommand.ts index af5223c33b5af..11a217efd59db 100644 --- a/clients/client-osis/src/commands/StartPipelineCommand.ts +++ b/clients/client-osis/src/commands/StartPipelineCommand.ts @@ -139,6 +139,7 @@ export interface StartPipelineCommandOutput extends StartPipelineResponse, __Met * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* + * * @public */ export class StartPipelineCommand extends $Command diff --git a/clients/client-osis/src/commands/StopPipelineCommand.ts b/clients/client-osis/src/commands/StopPipelineCommand.ts index a342aad67d463..a8a6675d94a78 100644 --- a/clients/client-osis/src/commands/StopPipelineCommand.ts +++ b/clients/client-osis/src/commands/StopPipelineCommand.ts @@ -139,6 +139,7 @@ export interface StopPipelineCommandOutput extends StopPipelineResponse, __Metad * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* + * * @public */ export class StopPipelineCommand extends $Command diff --git a/clients/client-osis/src/commands/TagResourceCommand.ts b/clients/client-osis/src/commands/TagResourceCommand.ts index bd1ce3e517b23..b647ced9de6d8 100644 --- a/clients/client-osis/src/commands/TagResourceCommand.ts +++ b/clients/client-osis/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-osis/src/commands/UntagResourceCommand.ts b/clients/client-osis/src/commands/UntagResourceCommand.ts index 78c22463c322b..1e65cc1ad1638 100644 --- a/clients/client-osis/src/commands/UntagResourceCommand.ts +++ b/clients/client-osis/src/commands/UntagResourceCommand.ts @@ -73,6 +73,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-osis/src/commands/UpdatePipelineCommand.ts b/clients/client-osis/src/commands/UpdatePipelineCommand.ts index 23eb068dd062d..a349b3e739edf 100644 --- a/clients/client-osis/src/commands/UpdatePipelineCommand.ts +++ b/clients/client-osis/src/commands/UpdatePipelineCommand.ts @@ -154,6 +154,7 @@ export interface UpdatePipelineCommandOutput extends UpdatePipelineResponse, __M * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* + * * @public */ export class UpdatePipelineCommand extends $Command diff --git a/clients/client-osis/src/commands/ValidatePipelineCommand.ts b/clients/client-osis/src/commands/ValidatePipelineCommand.ts index 980cb544bd8f3..5a33cce7a74e5 100644 --- a/clients/client-osis/src/commands/ValidatePipelineCommand.ts +++ b/clients/client-osis/src/commands/ValidatePipelineCommand.ts @@ -75,6 +75,7 @@ export interface ValidatePipelineCommandOutput extends ValidatePipelineResponse, * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* + * * @public */ export class ValidatePipelineCommand extends $Command diff --git a/clients/client-outposts/src/commands/CancelCapacityTaskCommand.ts b/clients/client-outposts/src/commands/CancelCapacityTaskCommand.ts index 40915fb324538..51545fcc42b56 100644 --- a/clients/client-outposts/src/commands/CancelCapacityTaskCommand.ts +++ b/clients/client-outposts/src/commands/CancelCapacityTaskCommand.ts @@ -69,6 +69,7 @@ export interface CancelCapacityTaskCommandOutput extends CancelCapacityTaskOutpu * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class CancelCapacityTaskCommand extends $Command diff --git a/clients/client-outposts/src/commands/CancelOrderCommand.ts b/clients/client-outposts/src/commands/CancelOrderCommand.ts index c84fd0499b9cf..f26e51096f621 100644 --- a/clients/client-outposts/src/commands/CancelOrderCommand.ts +++ b/clients/client-outposts/src/commands/CancelOrderCommand.ts @@ -68,6 +68,7 @@ export interface CancelOrderCommandOutput extends CancelOrderOutput, __MetadataB * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class CancelOrderCommand extends $Command diff --git a/clients/client-outposts/src/commands/CreateOrderCommand.ts b/clients/client-outposts/src/commands/CreateOrderCommand.ts index 9f81b49c252d6..9afcf46043aaf 100644 --- a/clients/client-outposts/src/commands/CreateOrderCommand.ts +++ b/clients/client-outposts/src/commands/CreateOrderCommand.ts @@ -112,6 +112,7 @@ export interface CreateOrderCommandOutput extends CreateOrderOutput, __MetadataB * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class CreateOrderCommand extends $Command diff --git a/clients/client-outposts/src/commands/CreateOutpostCommand.ts b/clients/client-outposts/src/commands/CreateOutpostCommand.ts index 1acc5462135fe..27ca333d37490 100644 --- a/clients/client-outposts/src/commands/CreateOutpostCommand.ts +++ b/clients/client-outposts/src/commands/CreateOutpostCommand.ts @@ -97,6 +97,7 @@ export interface CreateOutpostCommandOutput extends CreateOutpostOutput, __Metad * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class CreateOutpostCommand extends $Command diff --git a/clients/client-outposts/src/commands/CreateSiteCommand.ts b/clients/client-outposts/src/commands/CreateSiteCommand.ts index f3feed0f8e4f8..026880ecd8a54 100644 --- a/clients/client-outposts/src/commands/CreateSiteCommand.ts +++ b/clients/client-outposts/src/commands/CreateSiteCommand.ts @@ -136,6 +136,7 @@ export interface CreateSiteCommandOutput extends CreateSiteOutput, __MetadataBea * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class CreateSiteCommand extends $Command diff --git a/clients/client-outposts/src/commands/DeleteOutpostCommand.ts b/clients/client-outposts/src/commands/DeleteOutpostCommand.ts index 56e5798c92509..bd87bd2a0f968 100644 --- a/clients/client-outposts/src/commands/DeleteOutpostCommand.ts +++ b/clients/client-outposts/src/commands/DeleteOutpostCommand.ts @@ -68,6 +68,7 @@ export interface DeleteOutpostCommandOutput extends DeleteOutpostOutput, __Metad * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class DeleteOutpostCommand extends $Command diff --git a/clients/client-outposts/src/commands/DeleteSiteCommand.ts b/clients/client-outposts/src/commands/DeleteSiteCommand.ts index 81685aa172628..8d68326f3056d 100644 --- a/clients/client-outposts/src/commands/DeleteSiteCommand.ts +++ b/clients/client-outposts/src/commands/DeleteSiteCommand.ts @@ -68,6 +68,7 @@ export interface DeleteSiteCommandOutput extends DeleteSiteOutput, __MetadataBea * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class DeleteSiteCommand extends $Command diff --git a/clients/client-outposts/src/commands/GetCapacityTaskCommand.ts b/clients/client-outposts/src/commands/GetCapacityTaskCommand.ts index f01be08153cea..8040408f92327 100644 --- a/clients/client-outposts/src/commands/GetCapacityTaskCommand.ts +++ b/clients/client-outposts/src/commands/GetCapacityTaskCommand.ts @@ -97,6 +97,7 @@ export interface GetCapacityTaskCommandOutput extends GetCapacityTaskOutput, __M * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class GetCapacityTaskCommand extends $Command diff --git a/clients/client-outposts/src/commands/GetCatalogItemCommand.ts b/clients/client-outposts/src/commands/GetCatalogItemCommand.ts index 1162a84b12b8a..960d99138849a 100644 --- a/clients/client-outposts/src/commands/GetCatalogItemCommand.ts +++ b/clients/client-outposts/src/commands/GetCatalogItemCommand.ts @@ -82,6 +82,7 @@ export interface GetCatalogItemCommandOutput extends GetCatalogItemOutput, __Met * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class GetCatalogItemCommand extends $Command diff --git a/clients/client-outposts/src/commands/GetConnectionCommand.ts b/clients/client-outposts/src/commands/GetConnectionCommand.ts index a13cd35a8c260..9aefbe69150cd 100644 --- a/clients/client-outposts/src/commands/GetConnectionCommand.ts +++ b/clients/client-outposts/src/commands/GetConnectionCommand.ts @@ -87,6 +87,7 @@ export interface GetConnectionCommandOutput extends GetConnectionResponse, __Met * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class GetConnectionCommand extends $Command diff --git a/clients/client-outposts/src/commands/GetOrderCommand.ts b/clients/client-outposts/src/commands/GetOrderCommand.ts index 9eefa49327168..f1eefbb8e3f2f 100644 --- a/clients/client-outposts/src/commands/GetOrderCommand.ts +++ b/clients/client-outposts/src/commands/GetOrderCommand.ts @@ -95,6 +95,7 @@ export interface GetOrderCommandOutput extends GetOrderOutput, __MetadataBearer * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class GetOrderCommand extends $Command diff --git a/clients/client-outposts/src/commands/GetOutpostCommand.ts b/clients/client-outposts/src/commands/GetOutpostCommand.ts index 70ea65fb45e83..23a97313270d8 100644 --- a/clients/client-outposts/src/commands/GetOutpostCommand.ts +++ b/clients/client-outposts/src/commands/GetOutpostCommand.ts @@ -82,6 +82,7 @@ export interface GetOutpostCommandOutput extends GetOutpostOutput, __MetadataBea * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class GetOutpostCommand extends $Command diff --git a/clients/client-outposts/src/commands/GetOutpostInstanceTypesCommand.ts b/clients/client-outposts/src/commands/GetOutpostInstanceTypesCommand.ts index 503e10d7c53d9..895739b1faf45 100644 --- a/clients/client-outposts/src/commands/GetOutpostInstanceTypesCommand.ts +++ b/clients/client-outposts/src/commands/GetOutpostInstanceTypesCommand.ts @@ -77,6 +77,7 @@ export interface GetOutpostInstanceTypesCommandOutput extends GetOutpostInstance * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class GetOutpostInstanceTypesCommand extends $Command diff --git a/clients/client-outposts/src/commands/GetOutpostSupportedInstanceTypesCommand.ts b/clients/client-outposts/src/commands/GetOutpostSupportedInstanceTypesCommand.ts index a89dfc69ef27b..4339d4a293848 100644 --- a/clients/client-outposts/src/commands/GetOutpostSupportedInstanceTypesCommand.ts +++ b/clients/client-outposts/src/commands/GetOutpostSupportedInstanceTypesCommand.ts @@ -83,6 +83,7 @@ export interface GetOutpostSupportedInstanceTypesCommandOutput * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class GetOutpostSupportedInstanceTypesCommand extends $Command diff --git a/clients/client-outposts/src/commands/GetSiteAddressCommand.ts b/clients/client-outposts/src/commands/GetSiteAddressCommand.ts index 1801b26a45357..9fd4374f39c90 100644 --- a/clients/client-outposts/src/commands/GetSiteAddressCommand.ts +++ b/clients/client-outposts/src/commands/GetSiteAddressCommand.ts @@ -82,6 +82,7 @@ export interface GetSiteAddressCommandOutput extends GetSiteAddressOutput, __Met * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class GetSiteAddressCommand extends $Command diff --git a/clients/client-outposts/src/commands/GetSiteCommand.ts b/clients/client-outposts/src/commands/GetSiteCommand.ts index dcc8305f08378..a27672d62589a 100644 --- a/clients/client-outposts/src/commands/GetSiteCommand.ts +++ b/clients/client-outposts/src/commands/GetSiteCommand.ts @@ -91,6 +91,7 @@ export interface GetSiteCommandOutput extends GetSiteOutput, __MetadataBearer {} * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class GetSiteCommand extends $Command diff --git a/clients/client-outposts/src/commands/ListAssetInstancesCommand.ts b/clients/client-outposts/src/commands/ListAssetInstancesCommand.ts index 7d4f188e153ed..1a5141ecaebfa 100644 --- a/clients/client-outposts/src/commands/ListAssetInstancesCommand.ts +++ b/clients/client-outposts/src/commands/ListAssetInstancesCommand.ts @@ -91,6 +91,7 @@ export interface ListAssetInstancesCommandOutput extends ListAssetInstancesOutpu * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class ListAssetInstancesCommand extends $Command diff --git a/clients/client-outposts/src/commands/ListAssetsCommand.ts b/clients/client-outposts/src/commands/ListAssetsCommand.ts index 8ce2df1a18dce..fef3dedb52e3b 100644 --- a/clients/client-outposts/src/commands/ListAssetsCommand.ts +++ b/clients/client-outposts/src/commands/ListAssetsCommand.ts @@ -102,6 +102,7 @@ export interface ListAssetsCommandOutput extends ListAssetsOutput, __MetadataBea * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class ListAssetsCommand extends $Command diff --git a/clients/client-outposts/src/commands/ListBlockingInstancesForCapacityTaskCommand.ts b/clients/client-outposts/src/commands/ListBlockingInstancesForCapacityTaskCommand.ts index e4a3b81970c7b..8ffa05267286d 100644 --- a/clients/client-outposts/src/commands/ListBlockingInstancesForCapacityTaskCommand.ts +++ b/clients/client-outposts/src/commands/ListBlockingInstancesForCapacityTaskCommand.ts @@ -87,6 +87,7 @@ export interface ListBlockingInstancesForCapacityTaskCommandOutput * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class ListBlockingInstancesForCapacityTaskCommand extends $Command diff --git a/clients/client-outposts/src/commands/ListCapacityTasksCommand.ts b/clients/client-outposts/src/commands/ListCapacityTasksCommand.ts index e305622a64345..837d3d413ea9c 100644 --- a/clients/client-outposts/src/commands/ListCapacityTasksCommand.ts +++ b/clients/client-outposts/src/commands/ListCapacityTasksCommand.ts @@ -86,6 +86,7 @@ export interface ListCapacityTasksCommandOutput extends ListCapacityTasksOutput, * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class ListCapacityTasksCommand extends $Command diff --git a/clients/client-outposts/src/commands/ListCatalogItemsCommand.ts b/clients/client-outposts/src/commands/ListCatalogItemsCommand.ts index 7d6aca5ed03ea..35c0b3572e925 100644 --- a/clients/client-outposts/src/commands/ListCatalogItemsCommand.ts +++ b/clients/client-outposts/src/commands/ListCatalogItemsCommand.ts @@ -98,6 +98,7 @@ export interface ListCatalogItemsCommandOutput extends ListCatalogItemsOutput, _ * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class ListCatalogItemsCommand extends $Command diff --git a/clients/client-outposts/src/commands/ListOrdersCommand.ts b/clients/client-outposts/src/commands/ListOrdersCommand.ts index 8af082aaef396..896ff78f854db 100644 --- a/clients/client-outposts/src/commands/ListOrdersCommand.ts +++ b/clients/client-outposts/src/commands/ListOrdersCommand.ts @@ -82,6 +82,7 @@ export interface ListOrdersCommandOutput extends ListOrdersOutput, __MetadataBea * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class ListOrdersCommand extends $Command diff --git a/clients/client-outposts/src/commands/ListOutpostsCommand.ts b/clients/client-outposts/src/commands/ListOutpostsCommand.ts index ccbce3023565e..fd750343f7a37 100644 --- a/clients/client-outposts/src/commands/ListOutpostsCommand.ts +++ b/clients/client-outposts/src/commands/ListOutpostsCommand.ts @@ -95,6 +95,7 @@ export interface ListOutpostsCommandOutput extends ListOutpostsOutput, __Metadat * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class ListOutpostsCommand extends $Command diff --git a/clients/client-outposts/src/commands/ListSitesCommand.ts b/clients/client-outposts/src/commands/ListSitesCommand.ts index 901cbc10c92bf..3d748241c5f06 100644 --- a/clients/client-outposts/src/commands/ListSitesCommand.ts +++ b/clients/client-outposts/src/commands/ListSitesCommand.ts @@ -105,6 +105,7 @@ export interface ListSitesCommandOutput extends ListSitesOutput, __MetadataBeare * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class ListSitesCommand extends $Command diff --git a/clients/client-outposts/src/commands/ListTagsForResourceCommand.ts b/clients/client-outposts/src/commands/ListTagsForResourceCommand.ts index e8a553171af23..82ee2d89a9d47 100644 --- a/clients/client-outposts/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-outposts/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-outposts/src/commands/StartCapacityTaskCommand.ts b/clients/client-outposts/src/commands/StartCapacityTaskCommand.ts index 0d6204aab1d25..1b190ca651c3a 100644 --- a/clients/client-outposts/src/commands/StartCapacityTaskCommand.ts +++ b/clients/client-outposts/src/commands/StartCapacityTaskCommand.ts @@ -119,6 +119,7 @@ export interface StartCapacityTaskCommandOutput extends StartCapacityTaskOutput, * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class StartCapacityTaskCommand extends $Command diff --git a/clients/client-outposts/src/commands/StartConnectionCommand.ts b/clients/client-outposts/src/commands/StartConnectionCommand.ts index 0c0283b23816a..e5500540a793e 100644 --- a/clients/client-outposts/src/commands/StartConnectionCommand.ts +++ b/clients/client-outposts/src/commands/StartConnectionCommand.ts @@ -81,6 +81,7 @@ export interface StartConnectionCommandOutput extends StartConnectionResponse, _ * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class StartConnectionCommand extends $Command diff --git a/clients/client-outposts/src/commands/TagResourceCommand.ts b/clients/client-outposts/src/commands/TagResourceCommand.ts index 6a3366049a56e..402bd877c43ed 100644 --- a/clients/client-outposts/src/commands/TagResourceCommand.ts +++ b/clients/client-outposts/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-outposts/src/commands/UntagResourceCommand.ts b/clients/client-outposts/src/commands/UntagResourceCommand.ts index 9b041a9d78a6b..784a9ba63d196 100644 --- a/clients/client-outposts/src/commands/UntagResourceCommand.ts +++ b/clients/client-outposts/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-outposts/src/commands/UpdateOutpostCommand.ts b/clients/client-outposts/src/commands/UpdateOutpostCommand.ts index 97481fb31babc..4cd2924bc9ad3 100644 --- a/clients/client-outposts/src/commands/UpdateOutpostCommand.ts +++ b/clients/client-outposts/src/commands/UpdateOutpostCommand.ts @@ -88,6 +88,7 @@ export interface UpdateOutpostCommandOutput extends UpdateOutpostOutput, __Metad * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class UpdateOutpostCommand extends $Command diff --git a/clients/client-outposts/src/commands/UpdateSiteAddressCommand.ts b/clients/client-outposts/src/commands/UpdateSiteAddressCommand.ts index 927a3cdd011ad..1f98674100900 100644 --- a/clients/client-outposts/src/commands/UpdateSiteAddressCommand.ts +++ b/clients/client-outposts/src/commands/UpdateSiteAddressCommand.ts @@ -101,6 +101,7 @@ export interface UpdateSiteAddressCommandOutput extends UpdateSiteAddressOutput, * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class UpdateSiteAddressCommand extends $Command diff --git a/clients/client-outposts/src/commands/UpdateSiteCommand.ts b/clients/client-outposts/src/commands/UpdateSiteCommand.ts index a2264bd4e6b81..09057c99605a9 100644 --- a/clients/client-outposts/src/commands/UpdateSiteCommand.ts +++ b/clients/client-outposts/src/commands/UpdateSiteCommand.ts @@ -97,6 +97,7 @@ export interface UpdateSiteCommandOutput extends UpdateSiteOutput, __MetadataBea * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class UpdateSiteCommand extends $Command diff --git a/clients/client-outposts/src/commands/UpdateSiteRackPhysicalPropertiesCommand.ts b/clients/client-outposts/src/commands/UpdateSiteRackPhysicalPropertiesCommand.ts index 7998e7de89799..035e28395782b 100644 --- a/clients/client-outposts/src/commands/UpdateSiteRackPhysicalPropertiesCommand.ts +++ b/clients/client-outposts/src/commands/UpdateSiteRackPhysicalPropertiesCommand.ts @@ -113,6 +113,7 @@ export interface UpdateSiteRackPhysicalPropertiesCommandOutput * @throws {@link OutpostsServiceException} *

Base exception class for all service exceptions from Outposts service.

* + * * @public */ export class UpdateSiteRackPhysicalPropertiesCommand extends $Command diff --git a/clients/client-panorama/src/commands/CreateApplicationInstanceCommand.ts b/clients/client-panorama/src/commands/CreateApplicationInstanceCommand.ts index 3c054894a988c..f1560ec6240d1 100644 --- a/clients/client-panorama/src/commands/CreateApplicationInstanceCommand.ts +++ b/clients/client-panorama/src/commands/CreateApplicationInstanceCommand.ts @@ -80,6 +80,7 @@ export interface CreateApplicationInstanceCommandOutput extends CreateApplicatio * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class CreateApplicationInstanceCommand extends $Command diff --git a/clients/client-panorama/src/commands/CreateJobForDevicesCommand.ts b/clients/client-panorama/src/commands/CreateJobForDevicesCommand.ts index f2fdf4a37b0ee..f25b6c5edc565 100644 --- a/clients/client-panorama/src/commands/CreateJobForDevicesCommand.ts +++ b/clients/client-panorama/src/commands/CreateJobForDevicesCommand.ts @@ -84,6 +84,7 @@ export interface CreateJobForDevicesCommandOutput extends CreateJobForDevicesRes * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class CreateJobForDevicesCommand extends $Command diff --git a/clients/client-panorama/src/commands/CreateNodeFromTemplateJobCommand.ts b/clients/client-panorama/src/commands/CreateNodeFromTemplateJobCommand.ts index 731dcfd7104bf..4faba6097ff8d 100644 --- a/clients/client-panorama/src/commands/CreateNodeFromTemplateJobCommand.ts +++ b/clients/client-panorama/src/commands/CreateNodeFromTemplateJobCommand.ts @@ -86,6 +86,7 @@ export interface CreateNodeFromTemplateJobCommandOutput extends CreateNodeFromTe * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class CreateNodeFromTemplateJobCommand extends $Command diff --git a/clients/client-panorama/src/commands/CreatePackageCommand.ts b/clients/client-panorama/src/commands/CreatePackageCommand.ts index 9a8d7a5f3e6bf..78db643bc5fad 100644 --- a/clients/client-panorama/src/commands/CreatePackageCommand.ts +++ b/clients/client-panorama/src/commands/CreatePackageCommand.ts @@ -78,6 +78,7 @@ export interface CreatePackageCommandOutput extends CreatePackageResponse, __Met * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class CreatePackageCommand extends $Command diff --git a/clients/client-panorama/src/commands/CreatePackageImportJobCommand.ts b/clients/client-panorama/src/commands/CreatePackageImportJobCommand.ts index 97182bc94e605..d90df7ad92fbe 100644 --- a/clients/client-panorama/src/commands/CreatePackageImportJobCommand.ts +++ b/clients/client-panorama/src/commands/CreatePackageImportJobCommand.ts @@ -92,6 +92,7 @@ export interface CreatePackageImportJobCommandOutput extends CreatePackageImport * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class CreatePackageImportJobCommand extends $Command diff --git a/clients/client-panorama/src/commands/DeleteDeviceCommand.ts b/clients/client-panorama/src/commands/DeleteDeviceCommand.ts index 86fe14578c0ca..c1eceff5101db 100644 --- a/clients/client-panorama/src/commands/DeleteDeviceCommand.ts +++ b/clients/client-panorama/src/commands/DeleteDeviceCommand.ts @@ -70,6 +70,7 @@ export interface DeleteDeviceCommandOutput extends DeleteDeviceResponse, __Metad * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class DeleteDeviceCommand extends $Command diff --git a/clients/client-panorama/src/commands/DeletePackageCommand.ts b/clients/client-panorama/src/commands/DeletePackageCommand.ts index 3f0e09334f47f..44062ed377422 100644 --- a/clients/client-panorama/src/commands/DeletePackageCommand.ts +++ b/clients/client-panorama/src/commands/DeletePackageCommand.ts @@ -73,6 +73,7 @@ export interface DeletePackageCommandOutput extends DeletePackageResponse, __Met * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class DeletePackageCommand extends $Command diff --git a/clients/client-panorama/src/commands/DeregisterPackageVersionCommand.ts b/clients/client-panorama/src/commands/DeregisterPackageVersionCommand.ts index efa4cf943d78e..9d56bf0ea203a 100644 --- a/clients/client-panorama/src/commands/DeregisterPackageVersionCommand.ts +++ b/clients/client-panorama/src/commands/DeregisterPackageVersionCommand.ts @@ -72,6 +72,7 @@ export interface DeregisterPackageVersionCommandOutput extends DeregisterPackage * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class DeregisterPackageVersionCommand extends $Command diff --git a/clients/client-panorama/src/commands/DescribeApplicationInstanceCommand.ts b/clients/client-panorama/src/commands/DescribeApplicationInstanceCommand.ts index fbf5345a4dc0c..8c2d50e08c44d 100644 --- a/clients/client-panorama/src/commands/DescribeApplicationInstanceCommand.ts +++ b/clients/client-panorama/src/commands/DescribeApplicationInstanceCommand.ts @@ -98,6 +98,7 @@ export interface DescribeApplicationInstanceCommandOutput * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class DescribeApplicationInstanceCommand extends $Command diff --git a/clients/client-panorama/src/commands/DescribeApplicationInstanceDetailsCommand.ts b/clients/client-panorama/src/commands/DescribeApplicationInstanceDetailsCommand.ts index 79cd0a885adf9..5d12d980fe7cc 100644 --- a/clients/client-panorama/src/commands/DescribeApplicationInstanceDetailsCommand.ts +++ b/clients/client-panorama/src/commands/DescribeApplicationInstanceDetailsCommand.ts @@ -89,6 +89,7 @@ export interface DescribeApplicationInstanceDetailsCommandOutput * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class DescribeApplicationInstanceDetailsCommand extends $Command diff --git a/clients/client-panorama/src/commands/DescribeDeviceCommand.ts b/clients/client-panorama/src/commands/DescribeDeviceCommand.ts index a3cdc32289e75..7ec84a7e99b66 100644 --- a/clients/client-panorama/src/commands/DescribeDeviceCommand.ts +++ b/clients/client-panorama/src/commands/DescribeDeviceCommand.ts @@ -141,6 +141,7 @@ export interface DescribeDeviceCommandOutput extends DescribeDeviceResponse, __M * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class DescribeDeviceCommand extends $Command diff --git a/clients/client-panorama/src/commands/DescribeDeviceJobCommand.ts b/clients/client-panorama/src/commands/DescribeDeviceJobCommand.ts index 20bd5188cc269..912eaa12db94f 100644 --- a/clients/client-panorama/src/commands/DescribeDeviceJobCommand.ts +++ b/clients/client-panorama/src/commands/DescribeDeviceJobCommand.ts @@ -78,6 +78,7 @@ export interface DescribeDeviceJobCommandOutput extends DescribeDeviceJobRespons * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class DescribeDeviceJobCommand extends $Command diff --git a/clients/client-panorama/src/commands/DescribeNodeCommand.ts b/clients/client-panorama/src/commands/DescribeNodeCommand.ts index 92344d5fcda84..338da5ed5cd8a 100644 --- a/clients/client-panorama/src/commands/DescribeNodeCommand.ts +++ b/clients/client-panorama/src/commands/DescribeNodeCommand.ts @@ -101,6 +101,7 @@ export interface DescribeNodeCommandOutput extends DescribeNodeResponse, __Metad * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class DescribeNodeCommand extends $Command diff --git a/clients/client-panorama/src/commands/DescribeNodeFromTemplateJobCommand.ts b/clients/client-panorama/src/commands/DescribeNodeFromTemplateJobCommand.ts index c2027ebe4fc22..b0b914d00ac17 100644 --- a/clients/client-panorama/src/commands/DescribeNodeFromTemplateJobCommand.ts +++ b/clients/client-panorama/src/commands/DescribeNodeFromTemplateJobCommand.ts @@ -96,6 +96,7 @@ export interface DescribeNodeFromTemplateJobCommandOutput * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class DescribeNodeFromTemplateJobCommand extends $Command diff --git a/clients/client-panorama/src/commands/DescribePackageCommand.ts b/clients/client-panorama/src/commands/DescribePackageCommand.ts index 68bde59e33afa..3bdb10f2bcbdb 100644 --- a/clients/client-panorama/src/commands/DescribePackageCommand.ts +++ b/clients/client-panorama/src/commands/DescribePackageCommand.ts @@ -89,6 +89,7 @@ export interface DescribePackageCommandOutput extends DescribePackageResponse, _ * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class DescribePackageCommand extends $Command diff --git a/clients/client-panorama/src/commands/DescribePackageImportJobCommand.ts b/clients/client-panorama/src/commands/DescribePackageImportJobCommand.ts index 4452bb9af90ea..8fd73b68867b3 100644 --- a/clients/client-panorama/src/commands/DescribePackageImportJobCommand.ts +++ b/clients/client-panorama/src/commands/DescribePackageImportJobCommand.ts @@ -106,6 +106,7 @@ export interface DescribePackageImportJobCommandOutput extends DescribePackageIm * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class DescribePackageImportJobCommand extends $Command diff --git a/clients/client-panorama/src/commands/DescribePackageVersionCommand.ts b/clients/client-panorama/src/commands/DescribePackageVersionCommand.ts index 6ab34eb52297a..129f1a7b5ad2b 100644 --- a/clients/client-panorama/src/commands/DescribePackageVersionCommand.ts +++ b/clients/client-panorama/src/commands/DescribePackageVersionCommand.ts @@ -82,6 +82,7 @@ export interface DescribePackageVersionCommandOutput extends DescribePackageVers * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class DescribePackageVersionCommand extends $Command diff --git a/clients/client-panorama/src/commands/ListApplicationInstanceDependenciesCommand.ts b/clients/client-panorama/src/commands/ListApplicationInstanceDependenciesCommand.ts index fd8041b791868..4f75396e38a03 100644 --- a/clients/client-panorama/src/commands/ListApplicationInstanceDependenciesCommand.ts +++ b/clients/client-panorama/src/commands/ListApplicationInstanceDependenciesCommand.ts @@ -78,6 +78,7 @@ export interface ListApplicationInstanceDependenciesCommandOutput * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class ListApplicationInstanceDependenciesCommand extends $Command diff --git a/clients/client-panorama/src/commands/ListApplicationInstanceNodeInstancesCommand.ts b/clients/client-panorama/src/commands/ListApplicationInstanceNodeInstancesCommand.ts index ce7b5a8264a29..9251aa33e3ca1 100644 --- a/clients/client-panorama/src/commands/ListApplicationInstanceNodeInstancesCommand.ts +++ b/clients/client-panorama/src/commands/ListApplicationInstanceNodeInstancesCommand.ts @@ -82,6 +82,7 @@ export interface ListApplicationInstanceNodeInstancesCommandOutput * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class ListApplicationInstanceNodeInstancesCommand extends $Command diff --git a/clients/client-panorama/src/commands/ListApplicationInstancesCommand.ts b/clients/client-panorama/src/commands/ListApplicationInstancesCommand.ts index 53427e8c21026..8613dde15549d 100644 --- a/clients/client-panorama/src/commands/ListApplicationInstancesCommand.ts +++ b/clients/client-panorama/src/commands/ListApplicationInstancesCommand.ts @@ -89,6 +89,7 @@ export interface ListApplicationInstancesCommandOutput extends ListApplicationIn * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class ListApplicationInstancesCommand extends $Command diff --git a/clients/client-panorama/src/commands/ListDevicesCommand.ts b/clients/client-panorama/src/commands/ListDevicesCommand.ts index 7f5cf3e832962..674d613eda49b 100644 --- a/clients/client-panorama/src/commands/ListDevicesCommand.ts +++ b/clients/client-panorama/src/commands/ListDevicesCommand.ts @@ -95,6 +95,7 @@ export interface ListDevicesCommandOutput extends ListDevicesResponse, __Metadat * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class ListDevicesCommand extends $Command diff --git a/clients/client-panorama/src/commands/ListDevicesJobsCommand.ts b/clients/client-panorama/src/commands/ListDevicesJobsCommand.ts index fadbe7a776ceb..5f9f8d6c1c4cb 100644 --- a/clients/client-panorama/src/commands/ListDevicesJobsCommand.ts +++ b/clients/client-panorama/src/commands/ListDevicesJobsCommand.ts @@ -81,6 +81,7 @@ export interface ListDevicesJobsCommandOutput extends ListDevicesJobsResponse, _ * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class ListDevicesJobsCommand extends $Command diff --git a/clients/client-panorama/src/commands/ListNodeFromTemplateJobsCommand.ts b/clients/client-panorama/src/commands/ListNodeFromTemplateJobsCommand.ts index 7b2674c955f34..f1e2f5ce0a4ed 100644 --- a/clients/client-panorama/src/commands/ListNodeFromTemplateJobsCommand.ts +++ b/clients/client-panorama/src/commands/ListNodeFromTemplateJobsCommand.ts @@ -78,6 +78,7 @@ export interface ListNodeFromTemplateJobsCommandOutput extends ListNodeFromTempl * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class ListNodeFromTemplateJobsCommand extends $Command diff --git a/clients/client-panorama/src/commands/ListNodesCommand.ts b/clients/client-panorama/src/commands/ListNodesCommand.ts index 6a08fc484cb81..323776606b231 100644 --- a/clients/client-panorama/src/commands/ListNodesCommand.ts +++ b/clients/client-panorama/src/commands/ListNodesCommand.ts @@ -85,6 +85,7 @@ export interface ListNodesCommandOutput extends ListNodesResponse, __MetadataBea * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class ListNodesCommand extends $Command diff --git a/clients/client-panorama/src/commands/ListPackageImportJobsCommand.ts b/clients/client-panorama/src/commands/ListPackageImportJobsCommand.ts index 51aa5c33e939f..fed9cc09588dc 100644 --- a/clients/client-panorama/src/commands/ListPackageImportJobsCommand.ts +++ b/clients/client-panorama/src/commands/ListPackageImportJobsCommand.ts @@ -78,6 +78,7 @@ export interface ListPackageImportJobsCommandOutput extends ListPackageImportJob * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class ListPackageImportJobsCommand extends $Command diff --git a/clients/client-panorama/src/commands/ListPackagesCommand.ts b/clients/client-panorama/src/commands/ListPackagesCommand.ts index de15deca2e27e..ca7c0bdd3b410 100644 --- a/clients/client-panorama/src/commands/ListPackagesCommand.ts +++ b/clients/client-panorama/src/commands/ListPackagesCommand.ts @@ -82,6 +82,7 @@ export interface ListPackagesCommandOutput extends ListPackagesResponse, __Metad * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class ListPackagesCommand extends $Command diff --git a/clients/client-panorama/src/commands/ListTagsForResourceCommand.ts b/clients/client-panorama/src/commands/ListTagsForResourceCommand.ts index b8a2b061b1914..58fd51d41a1ae 100644 --- a/clients/client-panorama/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-panorama/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-panorama/src/commands/ProvisionDeviceCommand.ts b/clients/client-panorama/src/commands/ProvisionDeviceCommand.ts index 299746b5fd9db..db91167d045e6 100644 --- a/clients/client-panorama/src/commands/ProvisionDeviceCommand.ts +++ b/clients/client-panorama/src/commands/ProvisionDeviceCommand.ts @@ -110,6 +110,7 @@ export interface ProvisionDeviceCommandOutput extends ProvisionDeviceResponse, _ * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class ProvisionDeviceCommand extends $Command diff --git a/clients/client-panorama/src/commands/RegisterPackageVersionCommand.ts b/clients/client-panorama/src/commands/RegisterPackageVersionCommand.ts index e0a6db3d318bf..4c470c608874d 100644 --- a/clients/client-panorama/src/commands/RegisterPackageVersionCommand.ts +++ b/clients/client-panorama/src/commands/RegisterPackageVersionCommand.ts @@ -69,6 +69,7 @@ export interface RegisterPackageVersionCommandOutput extends RegisterPackageVers * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class RegisterPackageVersionCommand extends $Command diff --git a/clients/client-panorama/src/commands/RemoveApplicationInstanceCommand.ts b/clients/client-panorama/src/commands/RemoveApplicationInstanceCommand.ts index 1885bf8941fd2..a31ce5c57d625 100644 --- a/clients/client-panorama/src/commands/RemoveApplicationInstanceCommand.ts +++ b/clients/client-panorama/src/commands/RemoveApplicationInstanceCommand.ts @@ -68,6 +68,7 @@ export interface RemoveApplicationInstanceCommandOutput extends RemoveApplicatio * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class RemoveApplicationInstanceCommand extends $Command diff --git a/clients/client-panorama/src/commands/SignalApplicationInstanceNodeInstancesCommand.ts b/clients/client-panorama/src/commands/SignalApplicationInstanceNodeInstancesCommand.ts index 97f3e6f2876af..963bbfd408487 100644 --- a/clients/client-panorama/src/commands/SignalApplicationInstanceNodeInstancesCommand.ts +++ b/clients/client-panorama/src/commands/SignalApplicationInstanceNodeInstancesCommand.ts @@ -82,6 +82,7 @@ export interface SignalApplicationInstanceNodeInstancesCommandOutput * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class SignalApplicationInstanceNodeInstancesCommand extends $Command diff --git a/clients/client-panorama/src/commands/TagResourceCommand.ts b/clients/client-panorama/src/commands/TagResourceCommand.ts index 1e535ccb6e032..1c48655af88b6 100644 --- a/clients/client-panorama/src/commands/TagResourceCommand.ts +++ b/clients/client-panorama/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-panorama/src/commands/UntagResourceCommand.ts b/clients/client-panorama/src/commands/UntagResourceCommand.ts index d4c6e4e299ffe..2f0c8553008bb 100644 --- a/clients/client-panorama/src/commands/UntagResourceCommand.ts +++ b/clients/client-panorama/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-panorama/src/commands/UpdateDeviceMetadataCommand.ts b/clients/client-panorama/src/commands/UpdateDeviceMetadataCommand.ts index d26f3bf7ef28c..5087ef38f77e2 100644 --- a/clients/client-panorama/src/commands/UpdateDeviceMetadataCommand.ts +++ b/clients/client-panorama/src/commands/UpdateDeviceMetadataCommand.ts @@ -71,6 +71,7 @@ export interface UpdateDeviceMetadataCommandOutput extends UpdateDeviceMetadataR * @throws {@link PanoramaServiceException} *

Base exception class for all service exceptions from Panorama service.

* + * * @public */ export class UpdateDeviceMetadataCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/AcceptEngagementInvitationCommand.ts b/clients/client-partnercentral-selling/src/commands/AcceptEngagementInvitationCommand.ts index 0def3b58e63d0..39037b3f060bb 100644 --- a/clients/client-partnercentral-selling/src/commands/AcceptEngagementInvitationCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/AcceptEngagementInvitationCommand.ts @@ -97,6 +97,7 @@ export interface AcceptEngagementInvitationCommandOutput extends __MetadataBeare * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class AcceptEngagementInvitationCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/AssignOpportunityCommand.ts b/clients/client-partnercentral-selling/src/commands/AssignOpportunityCommand.ts index 3b2568e52cf05..1a4fef487ed0a 100644 --- a/clients/client-partnercentral-selling/src/commands/AssignOpportunityCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/AssignOpportunityCommand.ts @@ -100,6 +100,7 @@ export interface AssignOpportunityCommandOutput extends __MetadataBearer {} * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class AssignOpportunityCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/AssociateOpportunityCommand.ts b/clients/client-partnercentral-selling/src/commands/AssociateOpportunityCommand.ts index 1c924bf0868f7..901c7ddc46e46 100644 --- a/clients/client-partnercentral-selling/src/commands/AssociateOpportunityCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/AssociateOpportunityCommand.ts @@ -127,6 +127,7 @@ export interface AssociateOpportunityCommandOutput extends __MetadataBearer {} * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class AssociateOpportunityCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/CreateEngagementCommand.ts b/clients/client-partnercentral-selling/src/commands/CreateEngagementCommand.ts index 49863a7f366fe..254553f701c8e 100644 --- a/clients/client-partnercentral-selling/src/commands/CreateEngagementCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/CreateEngagementCommand.ts @@ -128,6 +128,7 @@ export interface CreateEngagementCommandOutput extends CreateEngagementResponse, * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class CreateEngagementCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/CreateEngagementInvitationCommand.ts b/clients/client-partnercentral-selling/src/commands/CreateEngagementInvitationCommand.ts index b7f18c70b220a..482f3805368a4 100644 --- a/clients/client-partnercentral-selling/src/commands/CreateEngagementInvitationCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/CreateEngagementInvitationCommand.ts @@ -149,6 +149,7 @@ export interface CreateEngagementInvitationCommandOutput extends CreateEngagemen * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class CreateEngagementInvitationCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/CreateOpportunityCommand.ts b/clients/client-partnercentral-selling/src/commands/CreateOpportunityCommand.ts index 40fce97960d88..da9959822426c 100644 --- a/clients/client-partnercentral-selling/src/commands/CreateOpportunityCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/CreateOpportunityCommand.ts @@ -230,6 +230,7 @@ export interface CreateOpportunityCommandOutput extends CreateOpportunityRespons * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class CreateOpportunityCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotCommand.ts b/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotCommand.ts index ffdb63d391d7a..ae4044b4f528d 100644 --- a/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotCommand.ts @@ -104,6 +104,7 @@ export interface CreateResourceSnapshotCommandOutput extends CreateResourceSnaps * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class CreateResourceSnapshotCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotJobCommand.ts b/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotJobCommand.ts index 135886c0e9804..002dc0eaed0cd 100644 --- a/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotJobCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotJobCommand.ts @@ -112,6 +112,7 @@ export interface CreateResourceSnapshotJobCommandOutput extends CreateResourceSn * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class CreateResourceSnapshotJobCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/DeleteResourceSnapshotJobCommand.ts b/clients/client-partnercentral-selling/src/commands/DeleteResourceSnapshotJobCommand.ts index ea8aa36201f90..8eb9006a3aba4 100644 --- a/clients/client-partnercentral-selling/src/commands/DeleteResourceSnapshotJobCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/DeleteResourceSnapshotJobCommand.ts @@ -89,6 +89,7 @@ export interface DeleteResourceSnapshotJobCommandOutput extends __MetadataBearer * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class DeleteResourceSnapshotJobCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/DisassociateOpportunityCommand.ts b/clients/client-partnercentral-selling/src/commands/DisassociateOpportunityCommand.ts index 903e5d103fa44..9f3aac965c48b 100644 --- a/clients/client-partnercentral-selling/src/commands/DisassociateOpportunityCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/DisassociateOpportunityCommand.ts @@ -98,6 +98,7 @@ export interface DisassociateOpportunityCommandOutput extends __MetadataBearer { * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class DisassociateOpportunityCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/GetAwsOpportunitySummaryCommand.ts b/clients/client-partnercentral-selling/src/commands/GetAwsOpportunitySummaryCommand.ts index 1fe0062e91bfc..548b2cf811d29 100644 --- a/clients/client-partnercentral-selling/src/commands/GetAwsOpportunitySummaryCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/GetAwsOpportunitySummaryCommand.ts @@ -155,6 +155,7 @@ export interface GetAwsOpportunitySummaryCommandOutput extends GetAwsOpportunity * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class GetAwsOpportunitySummaryCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/GetEngagementCommand.ts b/clients/client-partnercentral-selling/src/commands/GetEngagementCommand.ts index d5d0f40c468fb..67070fceb5dc5 100644 --- a/clients/client-partnercentral-selling/src/commands/GetEngagementCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/GetEngagementCommand.ts @@ -114,6 +114,7 @@ export interface GetEngagementCommandOutput extends GetEngagementResponse, __Met * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class GetEngagementCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/GetEngagementInvitationCommand.ts b/clients/client-partnercentral-selling/src/commands/GetEngagementInvitationCommand.ts index bddbbfb67321f..b383e7415e284 100644 --- a/clients/client-partnercentral-selling/src/commands/GetEngagementInvitationCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/GetEngagementInvitationCommand.ts @@ -158,6 +158,7 @@ export interface GetEngagementInvitationCommandOutput extends GetEngagementInvit * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class GetEngagementInvitationCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/GetOpportunityCommand.ts b/clients/client-partnercentral-selling/src/commands/GetOpportunityCommand.ts index 342d9027b74e5..d119823f8093c 100644 --- a/clients/client-partnercentral-selling/src/commands/GetOpportunityCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/GetOpportunityCommand.ts @@ -214,6 +214,7 @@ export interface GetOpportunityCommandOutput extends GetOpportunityResponse, __M * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class GetOpportunityCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotCommand.ts b/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotCommand.ts index 71207bfdcb2a4..7c8e5412cc9ff 100644 --- a/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotCommand.ts @@ -178,6 +178,7 @@ export interface GetResourceSnapshotCommandOutput extends GetResourceSnapshotRes * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class GetResourceSnapshotCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotJobCommand.ts b/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotJobCommand.ts index d8079c80a5165..2d4562d578c05 100644 --- a/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotJobCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotJobCommand.ts @@ -95,6 +95,7 @@ export interface GetResourceSnapshotJobCommandOutput extends GetResourceSnapshot * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class GetResourceSnapshotJobCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/GetSellingSystemSettingsCommand.ts b/clients/client-partnercentral-selling/src/commands/GetSellingSystemSettingsCommand.ts index 1f32f493d4b0b..8cef6dda7ef5b 100644 --- a/clients/client-partnercentral-selling/src/commands/GetSellingSystemSettingsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/GetSellingSystemSettingsCommand.ts @@ -84,6 +84,7 @@ export interface GetSellingSystemSettingsCommandOutput extends GetSellingSystemS * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class GetSellingSystemSettingsCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/ListEngagementByAcceptingInvitationTasksCommand.ts b/clients/client-partnercentral-selling/src/commands/ListEngagementByAcceptingInvitationTasksCommand.ts index f52c92a61bc14..e9db9c62988f8 100644 --- a/clients/client-partnercentral-selling/src/commands/ListEngagementByAcceptingInvitationTasksCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListEngagementByAcceptingInvitationTasksCommand.ts @@ -123,6 +123,7 @@ export interface ListEngagementByAcceptingInvitationTasksCommandOutput * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class ListEngagementByAcceptingInvitationTasksCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/ListEngagementFromOpportunityTasksCommand.ts b/clients/client-partnercentral-selling/src/commands/ListEngagementFromOpportunityTasksCommand.ts index 1508848fcf1a2..4a13247e8e1d4 100644 --- a/clients/client-partnercentral-selling/src/commands/ListEngagementFromOpportunityTasksCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListEngagementFromOpportunityTasksCommand.ts @@ -123,6 +123,7 @@ export interface ListEngagementFromOpportunityTasksCommandOutput * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class ListEngagementFromOpportunityTasksCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/ListEngagementInvitationsCommand.ts b/clients/client-partnercentral-selling/src/commands/ListEngagementInvitationsCommand.ts index 20f87f12bcd7f..c3331f1c50049 100644 --- a/clients/client-partnercentral-selling/src/commands/ListEngagementInvitationsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListEngagementInvitationsCommand.ts @@ -136,6 +136,7 @@ export interface ListEngagementInvitationsCommandOutput extends ListEngagementIn * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class ListEngagementInvitationsCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/ListEngagementMembersCommand.ts b/clients/client-partnercentral-selling/src/commands/ListEngagementMembersCommand.ts index a6639153088c6..dd2139c84fa11 100644 --- a/clients/client-partnercentral-selling/src/commands/ListEngagementMembersCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListEngagementMembersCommand.ts @@ -99,6 +99,7 @@ export interface ListEngagementMembersCommandOutput extends ListEngagementMember * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class ListEngagementMembersCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/ListEngagementResourceAssociationsCommand.ts b/clients/client-partnercentral-selling/src/commands/ListEngagementResourceAssociationsCommand.ts index 0ddfbf72d83f9..ea470975b8856 100644 --- a/clients/client-partnercentral-selling/src/commands/ListEngagementResourceAssociationsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListEngagementResourceAssociationsCommand.ts @@ -108,6 +108,7 @@ export interface ListEngagementResourceAssociationsCommandOutput * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class ListEngagementResourceAssociationsCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/ListEngagementsCommand.ts b/clients/client-partnercentral-selling/src/commands/ListEngagementsCommand.ts index 84033f9d9de82..00abb28a2c944 100644 --- a/clients/client-partnercentral-selling/src/commands/ListEngagementsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListEngagementsCommand.ts @@ -114,6 +114,7 @@ export interface ListEngagementsCommandOutput extends ListEngagementsResponse, _ * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class ListEngagementsCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/ListOpportunitiesCommand.ts b/clients/client-partnercentral-selling/src/commands/ListOpportunitiesCommand.ts index d58cb4bb62793..32e121eba4a9a 100644 --- a/clients/client-partnercentral-selling/src/commands/ListOpportunitiesCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListOpportunitiesCommand.ts @@ -184,6 +184,7 @@ export interface ListOpportunitiesCommandOutput extends ListOpportunitiesRespons * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class ListOpportunitiesCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotJobsCommand.ts b/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotJobsCommand.ts index 00116f8366a1d..e719735a11c91 100644 --- a/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotJobsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotJobsCommand.ts @@ -100,6 +100,7 @@ export interface ListResourceSnapshotJobsCommandOutput extends ListResourceSnaps * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class ListResourceSnapshotJobsCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotsCommand.ts b/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotsCommand.ts index d4e2500e48303..6f7a3bebbea35 100644 --- a/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotsCommand.ts @@ -123,6 +123,7 @@ export interface ListResourceSnapshotsCommandOutput extends ListResourceSnapshot * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class ListResourceSnapshotsCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/ListSolutionsCommand.ts b/clients/client-partnercentral-selling/src/commands/ListSolutionsCommand.ts index 1c1f91e927282..ffee6bbcade24 100644 --- a/clients/client-partnercentral-selling/src/commands/ListSolutionsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListSolutionsCommand.ts @@ -111,6 +111,7 @@ export interface ListSolutionsCommandOutput extends ListSolutionsResponse, __Met * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class ListSolutionsCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/ListTagsForResourceCommand.ts b/clients/client-partnercentral-selling/src/commands/ListTagsForResourceCommand.ts index 2fde0f448e6d1..e73cb29ffab2d 100644 --- a/clients/client-partnercentral-selling/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListTagsForResourceCommand.ts @@ -93,6 +93,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/PutSellingSystemSettingsCommand.ts b/clients/client-partnercentral-selling/src/commands/PutSellingSystemSettingsCommand.ts index 881d518777fc5..fad480a91ddd7 100644 --- a/clients/client-partnercentral-selling/src/commands/PutSellingSystemSettingsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/PutSellingSystemSettingsCommand.ts @@ -85,6 +85,7 @@ export interface PutSellingSystemSettingsCommandOutput extends PutSellingSystemS * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class PutSellingSystemSettingsCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/RejectEngagementInvitationCommand.ts b/clients/client-partnercentral-selling/src/commands/RejectEngagementInvitationCommand.ts index c7ac7ac417750..34fb63037516f 100644 --- a/clients/client-partnercentral-selling/src/commands/RejectEngagementInvitationCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/RejectEngagementInvitationCommand.ts @@ -97,6 +97,7 @@ export interface RejectEngagementInvitationCommandOutput extends __MetadataBeare * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class RejectEngagementInvitationCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/StartEngagementByAcceptingInvitationTaskCommand.ts b/clients/client-partnercentral-selling/src/commands/StartEngagementByAcceptingInvitationTaskCommand.ts index 07f54fbfad2f1..839679de3cd95 100644 --- a/clients/client-partnercentral-selling/src/commands/StartEngagementByAcceptingInvitationTaskCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/StartEngagementByAcceptingInvitationTaskCommand.ts @@ -132,6 +132,7 @@ export interface StartEngagementByAcceptingInvitationTaskCommandOutput * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class StartEngagementByAcceptingInvitationTaskCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/StartEngagementFromOpportunityTaskCommand.ts b/clients/client-partnercentral-selling/src/commands/StartEngagementFromOpportunityTaskCommand.ts index 1286fd8444272..f9add6f10c737 100644 --- a/clients/client-partnercentral-selling/src/commands/StartEngagementFromOpportunityTaskCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/StartEngagementFromOpportunityTaskCommand.ts @@ -134,6 +134,7 @@ export interface StartEngagementFromOpportunityTaskCommandOutput * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class StartEngagementFromOpportunityTaskCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/StartResourceSnapshotJobCommand.ts b/clients/client-partnercentral-selling/src/commands/StartResourceSnapshotJobCommand.ts index b8d578e76568b..b68b89273439f 100644 --- a/clients/client-partnercentral-selling/src/commands/StartResourceSnapshotJobCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/StartResourceSnapshotJobCommand.ts @@ -81,6 +81,7 @@ export interface StartResourceSnapshotJobCommandOutput extends __MetadataBearer * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class StartResourceSnapshotJobCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/StopResourceSnapshotJobCommand.ts b/clients/client-partnercentral-selling/src/commands/StopResourceSnapshotJobCommand.ts index 8641bbbbf8f8d..4cf472e1d7671 100644 --- a/clients/client-partnercentral-selling/src/commands/StopResourceSnapshotJobCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/StopResourceSnapshotJobCommand.ts @@ -81,6 +81,7 @@ export interface StopResourceSnapshotJobCommandOutput extends __MetadataBearer { * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class StopResourceSnapshotJobCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/SubmitOpportunityCommand.ts b/clients/client-partnercentral-selling/src/commands/SubmitOpportunityCommand.ts index 47d20b80a073e..07aedf144e2e0 100644 --- a/clients/client-partnercentral-selling/src/commands/SubmitOpportunityCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/SubmitOpportunityCommand.ts @@ -92,6 +92,7 @@ export interface SubmitOpportunityCommandOutput extends __MetadataBearer {} * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class SubmitOpportunityCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/TagResourceCommand.ts b/clients/client-partnercentral-selling/src/commands/TagResourceCommand.ts index 84c8115093b4d..d3d40b925419d 100644 --- a/clients/client-partnercentral-selling/src/commands/TagResourceCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/TagResourceCommand.ts @@ -99,6 +99,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/UntagResourceCommand.ts b/clients/client-partnercentral-selling/src/commands/UntagResourceCommand.ts index f1d1e91442649..e7ce7535967db 100644 --- a/clients/client-partnercentral-selling/src/commands/UntagResourceCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/UntagResourceCommand.ts @@ -96,6 +96,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-partnercentral-selling/src/commands/UpdateOpportunityCommand.ts b/clients/client-partnercentral-selling/src/commands/UpdateOpportunityCommand.ts index 123a355856303..258f99df5b1a2 100644 --- a/clients/client-partnercentral-selling/src/commands/UpdateOpportunityCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/UpdateOpportunityCommand.ts @@ -204,6 +204,7 @@ export interface UpdateOpportunityCommandOutput extends UpdateOpportunityRespons * @throws {@link PartnerCentralSellingServiceException} *

Base exception class for all service exceptions from PartnerCentralSelling service.

* + * * @public */ export class UpdateOpportunityCommand extends $Command diff --git a/clients/client-payment-cryptography-data/src/commands/DecryptDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/DecryptDataCommand.ts index 3d82f5b629005..e360fffcb8d6a 100644 --- a/clients/client-payment-cryptography-data/src/commands/DecryptDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/DecryptDataCommand.ts @@ -148,6 +148,7 @@ export interface DecryptDataCommandOutput extends DecryptDataOutput, __MetadataB * @throws {@link PaymentCryptographyDataServiceException} *

Base exception class for all service exceptions from PaymentCryptographyData service.

* + * * @public */ export class DecryptDataCommand extends $Command diff --git a/clients/client-payment-cryptography-data/src/commands/EncryptDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/EncryptDataCommand.ts index 6b6d535c1400d..9b7addd056af8 100644 --- a/clients/client-payment-cryptography-data/src/commands/EncryptDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/EncryptDataCommand.ts @@ -155,6 +155,7 @@ export interface EncryptDataCommandOutput extends EncryptDataOutput, __MetadataB * @throws {@link PaymentCryptographyDataServiceException} *

Base exception class for all service exceptions from PaymentCryptographyData service.

* + * * @public */ export class EncryptDataCommand extends $Command diff --git a/clients/client-payment-cryptography-data/src/commands/GenerateCardValidationDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/GenerateCardValidationDataCommand.ts index b53e34e18bb63..3f9ce1a9d3f10 100644 --- a/clients/client-payment-cryptography-data/src/commands/GenerateCardValidationDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/GenerateCardValidationDataCommand.ts @@ -135,6 +135,7 @@ export interface GenerateCardValidationDataCommandOutput extends GenerateCardVal * @throws {@link PaymentCryptographyDataServiceException} *

Base exception class for all service exceptions from PaymentCryptographyData service.

* + * * @public */ export class GenerateCardValidationDataCommand extends $Command diff --git a/clients/client-payment-cryptography-data/src/commands/GenerateMacCommand.ts b/clients/client-payment-cryptography-data/src/commands/GenerateMacCommand.ts index e5bae0e47690e..5ef994b7fc88c 100644 --- a/clients/client-payment-cryptography-data/src/commands/GenerateMacCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/GenerateMacCommand.ts @@ -126,6 +126,7 @@ export interface GenerateMacCommandOutput extends GenerateMacOutput, __MetadataB * @throws {@link PaymentCryptographyDataServiceException} *

Base exception class for all service exceptions from PaymentCryptographyData service.

* + * * @public */ export class GenerateMacCommand extends $Command diff --git a/clients/client-payment-cryptography-data/src/commands/GenerateMacEmvPinChangeCommand.ts b/clients/client-payment-cryptography-data/src/commands/GenerateMacEmvPinChangeCommand.ts index 416d989933903..61a5ea1a1e221 100644 --- a/clients/client-payment-cryptography-data/src/commands/GenerateMacEmvPinChangeCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/GenerateMacEmvPinChangeCommand.ts @@ -166,6 +166,7 @@ export interface GenerateMacEmvPinChangeCommandOutput extends GenerateMacEmvPinC * @throws {@link PaymentCryptographyDataServiceException} *

Base exception class for all service exceptions from PaymentCryptographyData service.

* + * * @public */ export class GenerateMacEmvPinChangeCommand extends $Command diff --git a/clients/client-payment-cryptography-data/src/commands/GeneratePinDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/GeneratePinDataCommand.ts index 6857ce1d39988..1fc6788409cb5 100644 --- a/clients/client-payment-cryptography-data/src/commands/GeneratePinDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/GeneratePinDataCommand.ts @@ -161,6 +161,7 @@ export interface GeneratePinDataCommandOutput extends GeneratePinDataOutput, __M * @throws {@link PaymentCryptographyDataServiceException} *

Base exception class for all service exceptions from PaymentCryptographyData service.

* + * * @public */ export class GeneratePinDataCommand extends $Command diff --git a/clients/client-payment-cryptography-data/src/commands/ReEncryptDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/ReEncryptDataCommand.ts index 82b779b6bf529..b80ef17dc5001 100644 --- a/clients/client-payment-cryptography-data/src/commands/ReEncryptDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/ReEncryptDataCommand.ts @@ -170,6 +170,7 @@ export interface ReEncryptDataCommandOutput extends ReEncryptDataOutput, __Metad * @throws {@link PaymentCryptographyDataServiceException} *

Base exception class for all service exceptions from PaymentCryptographyData service.

* + * * @public */ export class ReEncryptDataCommand extends $Command diff --git a/clients/client-payment-cryptography-data/src/commands/TranslatePinDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/TranslatePinDataCommand.ts index 8c2cdcc25172f..1a678cd78b02e 100644 --- a/clients/client-payment-cryptography-data/src/commands/TranslatePinDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/TranslatePinDataCommand.ts @@ -169,6 +169,7 @@ export interface TranslatePinDataCommandOutput extends TranslatePinDataOutput, _ * @throws {@link PaymentCryptographyDataServiceException} *

Base exception class for all service exceptions from PaymentCryptographyData service.

* + * * @public */ export class TranslatePinDataCommand extends $Command diff --git a/clients/client-payment-cryptography-data/src/commands/VerifyAuthRequestCryptogramCommand.ts b/clients/client-payment-cryptography-data/src/commands/VerifyAuthRequestCryptogramCommand.ts index f18e02da04456..9ce071a823012 100644 --- a/clients/client-payment-cryptography-data/src/commands/VerifyAuthRequestCryptogramCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/VerifyAuthRequestCryptogramCommand.ts @@ -144,6 +144,7 @@ export interface VerifyAuthRequestCryptogramCommandOutput extends VerifyAuthRequ * @throws {@link PaymentCryptographyDataServiceException} *

Base exception class for all service exceptions from PaymentCryptographyData service.

* + * * @public */ export class VerifyAuthRequestCryptogramCommand extends $Command diff --git a/clients/client-payment-cryptography-data/src/commands/VerifyCardValidationDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/VerifyCardValidationDataCommand.ts index 5dae9cee55c23..cf9396887d27b 100644 --- a/clients/client-payment-cryptography-data/src/commands/VerifyCardValidationDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/VerifyCardValidationDataCommand.ts @@ -146,6 +146,7 @@ export interface VerifyCardValidationDataCommandOutput extends VerifyCardValidat * @throws {@link PaymentCryptographyDataServiceException} *

Base exception class for all service exceptions from PaymentCryptographyData service.

* + * * @public */ export class VerifyCardValidationDataCommand extends $Command diff --git a/clients/client-payment-cryptography-data/src/commands/VerifyMacCommand.ts b/clients/client-payment-cryptography-data/src/commands/VerifyMacCommand.ts index f1c49ba449c8d..43a51f132de38 100644 --- a/clients/client-payment-cryptography-data/src/commands/VerifyMacCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/VerifyMacCommand.ts @@ -123,6 +123,7 @@ export interface VerifyMacCommandOutput extends VerifyMacOutput, __MetadataBeare * @throws {@link PaymentCryptographyDataServiceException} *

Base exception class for all service exceptions from PaymentCryptographyData service.

* + * * @public */ export class VerifyMacCommand extends $Command diff --git a/clients/client-payment-cryptography-data/src/commands/VerifyPinDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/VerifyPinDataCommand.ts index f1df2c8da747f..a7c0cea68617b 100644 --- a/clients/client-payment-cryptography-data/src/commands/VerifyPinDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/VerifyPinDataCommand.ts @@ -134,6 +134,7 @@ export interface VerifyPinDataCommandOutput extends VerifyPinDataOutput, __Metad * @throws {@link PaymentCryptographyDataServiceException} *

Base exception class for all service exceptions from PaymentCryptographyData service.

* + * * @public */ export class VerifyPinDataCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/CreateAliasCommand.ts b/clients/client-payment-cryptography/src/commands/CreateAliasCommand.ts index d54e48dd146bd..08b099ea411fe 100644 --- a/clients/client-payment-cryptography/src/commands/CreateAliasCommand.ts +++ b/clients/client-payment-cryptography/src/commands/CreateAliasCommand.ts @@ -116,6 +116,7 @@ export interface CreateAliasCommandOutput extends CreateAliasOutput, __MetadataB * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class CreateAliasCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/CreateKeyCommand.ts b/clients/client-payment-cryptography/src/commands/CreateKeyCommand.ts index 780d2a4b11a81..3f6217f287e72 100644 --- a/clients/client-payment-cryptography/src/commands/CreateKeyCommand.ts +++ b/clients/client-payment-cryptography/src/commands/CreateKeyCommand.ts @@ -161,6 +161,7 @@ export interface CreateKeyCommandOutput extends CreateKeyOutput, __MetadataBeare * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class CreateKeyCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/DeleteAliasCommand.ts b/clients/client-payment-cryptography/src/commands/DeleteAliasCommand.ts index 93fc33ffa682b..61ee9130c1ccb 100644 --- a/clients/client-payment-cryptography/src/commands/DeleteAliasCommand.ts +++ b/clients/client-payment-cryptography/src/commands/DeleteAliasCommand.ts @@ -106,6 +106,7 @@ export interface DeleteAliasCommandOutput extends DeleteAliasOutput, __MetadataB * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class DeleteAliasCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/DeleteKeyCommand.ts b/clients/client-payment-cryptography/src/commands/DeleteKeyCommand.ts index 4fc5447f73af8..8ec45ea48442e 100644 --- a/clients/client-payment-cryptography/src/commands/DeleteKeyCommand.ts +++ b/clients/client-payment-cryptography/src/commands/DeleteKeyCommand.ts @@ -134,6 +134,7 @@ export interface DeleteKeyCommandOutput extends DeleteKeyOutput, __MetadataBeare * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class DeleteKeyCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/ExportKeyCommand.ts b/clients/client-payment-cryptography/src/commands/ExportKeyCommand.ts index 736ff11f5f1ad..1975d2b92cbae 100644 --- a/clients/client-payment-cryptography/src/commands/ExportKeyCommand.ts +++ b/clients/client-payment-cryptography/src/commands/ExportKeyCommand.ts @@ -250,6 +250,7 @@ export interface ExportKeyCommandOutput extends ExportKeyOutput, __MetadataBeare * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class ExportKeyCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/GetAliasCommand.ts b/clients/client-payment-cryptography/src/commands/GetAliasCommand.ts index c13ddbcbd29c7..832177436d1f0 100644 --- a/clients/client-payment-cryptography/src/commands/GetAliasCommand.ts +++ b/clients/client-payment-cryptography/src/commands/GetAliasCommand.ts @@ -107,6 +107,7 @@ export interface GetAliasCommandOutput extends GetAliasOutput, __MetadataBearer * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class GetAliasCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/GetKeyCommand.ts b/clients/client-payment-cryptography/src/commands/GetKeyCommand.ts index d568ac0850f80..2cafe00782a03 100644 --- a/clients/client-payment-cryptography/src/commands/GetKeyCommand.ts +++ b/clients/client-payment-cryptography/src/commands/GetKeyCommand.ts @@ -128,6 +128,7 @@ export interface GetKeyCommandOutput extends GetKeyOutput, __MetadataBearer {} * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class GetKeyCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/GetParametersForExportCommand.ts b/clients/client-payment-cryptography/src/commands/GetParametersForExportCommand.ts index fb12c533c8ff7..b88baa16d9892 100644 --- a/clients/client-payment-cryptography/src/commands/GetParametersForExportCommand.ts +++ b/clients/client-payment-cryptography/src/commands/GetParametersForExportCommand.ts @@ -110,6 +110,7 @@ export interface GetParametersForExportCommandOutput extends GetParametersForExp * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class GetParametersForExportCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/GetParametersForImportCommand.ts b/clients/client-payment-cryptography/src/commands/GetParametersForImportCommand.ts index 3cfc1f633c68a..4bd29aa41d40a 100644 --- a/clients/client-payment-cryptography/src/commands/GetParametersForImportCommand.ts +++ b/clients/client-payment-cryptography/src/commands/GetParametersForImportCommand.ts @@ -110,6 +110,7 @@ export interface GetParametersForImportCommandOutput extends GetParametersForImp * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class GetParametersForImportCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/GetPublicKeyCertificateCommand.ts b/clients/client-payment-cryptography/src/commands/GetPublicKeyCertificateCommand.ts index f4a4a71212a9b..d23e9d5ad7f7f 100644 --- a/clients/client-payment-cryptography/src/commands/GetPublicKeyCertificateCommand.ts +++ b/clients/client-payment-cryptography/src/commands/GetPublicKeyCertificateCommand.ts @@ -85,6 +85,7 @@ export interface GetPublicKeyCertificateCommandOutput extends GetPublicKeyCertif * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class GetPublicKeyCertificateCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/ImportKeyCommand.ts b/clients/client-payment-cryptography/src/commands/ImportKeyCommand.ts index dfe3b3d0f4bd9..791f9c48338b4 100644 --- a/clients/client-payment-cryptography/src/commands/ImportKeyCommand.ts +++ b/clients/client-payment-cryptography/src/commands/ImportKeyCommand.ts @@ -325,6 +325,7 @@ export interface ImportKeyCommandOutput extends ImportKeyOutput, __MetadataBeare * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class ImportKeyCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/ListAliasesCommand.ts b/clients/client-payment-cryptography/src/commands/ListAliasesCommand.ts index c69304736f563..23814f172c778 100644 --- a/clients/client-payment-cryptography/src/commands/ListAliasesCommand.ts +++ b/clients/client-payment-cryptography/src/commands/ListAliasesCommand.ts @@ -114,6 +114,7 @@ export interface ListAliasesCommandOutput extends ListAliasesOutput, __MetadataB * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class ListAliasesCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/ListKeysCommand.ts b/clients/client-payment-cryptography/src/commands/ListKeysCommand.ts index 6ee4d42476c11..9fe0f5bf2ab9b 100644 --- a/clients/client-payment-cryptography/src/commands/ListKeysCommand.ts +++ b/clients/client-payment-cryptography/src/commands/ListKeysCommand.ts @@ -129,6 +129,7 @@ export interface ListKeysCommandOutput extends ListKeysOutput, __MetadataBearer * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class ListKeysCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/ListTagsForResourceCommand.ts b/clients/client-payment-cryptography/src/commands/ListTagsForResourceCommand.ts index 4bc8dfe626617..2e225abc2816c 100644 --- a/clients/client-payment-cryptography/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-payment-cryptography/src/commands/ListTagsForResourceCommand.ts @@ -105,6 +105,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/RestoreKeyCommand.ts b/clients/client-payment-cryptography/src/commands/RestoreKeyCommand.ts index 2e24ff0a2ca56..3efbd2d1a8a34 100644 --- a/clients/client-payment-cryptography/src/commands/RestoreKeyCommand.ts +++ b/clients/client-payment-cryptography/src/commands/RestoreKeyCommand.ts @@ -136,6 +136,7 @@ export interface RestoreKeyCommandOutput extends RestoreKeyOutput, __MetadataBea * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class RestoreKeyCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/StartKeyUsageCommand.ts b/clients/client-payment-cryptography/src/commands/StartKeyUsageCommand.ts index 6ac4bc83e72c6..af7c6ae846ce9 100644 --- a/clients/client-payment-cryptography/src/commands/StartKeyUsageCommand.ts +++ b/clients/client-payment-cryptography/src/commands/StartKeyUsageCommand.ts @@ -124,6 +124,7 @@ export interface StartKeyUsageCommandOutput extends StartKeyUsageOutput, __Metad * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class StartKeyUsageCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/StopKeyUsageCommand.ts b/clients/client-payment-cryptography/src/commands/StopKeyUsageCommand.ts index 86aedddcd3bc2..089acbdcd9ce8 100644 --- a/clients/client-payment-cryptography/src/commands/StopKeyUsageCommand.ts +++ b/clients/client-payment-cryptography/src/commands/StopKeyUsageCommand.ts @@ -130,6 +130,7 @@ export interface StopKeyUsageCommandOutput extends StopKeyUsageOutput, __Metadat * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class StopKeyUsageCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/TagResourceCommand.ts b/clients/client-payment-cryptography/src/commands/TagResourceCommand.ts index 62390de269133..f0c4670e7a368 100644 --- a/clients/client-payment-cryptography/src/commands/TagResourceCommand.ts +++ b/clients/client-payment-cryptography/src/commands/TagResourceCommand.ts @@ -108,6 +108,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/UntagResourceCommand.ts b/clients/client-payment-cryptography/src/commands/UntagResourceCommand.ts index ab7bab2742ae2..cee8f1689455b 100644 --- a/clients/client-payment-cryptography/src/commands/UntagResourceCommand.ts +++ b/clients/client-payment-cryptography/src/commands/UntagResourceCommand.ts @@ -101,6 +101,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-payment-cryptography/src/commands/UpdateAliasCommand.ts b/clients/client-payment-cryptography/src/commands/UpdateAliasCommand.ts index a6c9cbdffdc89..86bd30d39dd6b 100644 --- a/clients/client-payment-cryptography/src/commands/UpdateAliasCommand.ts +++ b/clients/client-payment-cryptography/src/commands/UpdateAliasCommand.ts @@ -111,6 +111,7 @@ export interface UpdateAliasCommandOutput extends UpdateAliasOutput, __MetadataB * @throws {@link PaymentCryptographyServiceException} *

Base exception class for all service exceptions from PaymentCryptography service.

* + * * @public */ export class UpdateAliasCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/CreateConnectorCommand.ts b/clients/client-pca-connector-ad/src/commands/CreateConnectorCommand.ts index ad440518b7f90..309bee16f396c 100644 --- a/clients/client-pca-connector-ad/src/commands/CreateConnectorCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/CreateConnectorCommand.ts @@ -96,6 +96,7 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _ * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class CreateConnectorCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/CreateDirectoryRegistrationCommand.ts b/clients/client-pca-connector-ad/src/commands/CreateDirectoryRegistrationCommand.ts index 3d80d4346019f..939f0b44e98d2 100644 --- a/clients/client-pca-connector-ad/src/commands/CreateDirectoryRegistrationCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/CreateDirectoryRegistrationCommand.ts @@ -91,6 +91,7 @@ export interface CreateDirectoryRegistrationCommandOutput * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class CreateDirectoryRegistrationCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/CreateServicePrincipalNameCommand.ts b/clients/client-pca-connector-ad/src/commands/CreateServicePrincipalNameCommand.ts index d81c4b7206205..cbfb233d1dafd 100644 --- a/clients/client-pca-connector-ad/src/commands/CreateServicePrincipalNameCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/CreateServicePrincipalNameCommand.ts @@ -83,6 +83,7 @@ export interface CreateServicePrincipalNameCommandOutput extends __MetadataBeare * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class CreateServicePrincipalNameCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/CreateTemplateCommand.ts b/clients/client-pca-connector-ad/src/commands/CreateTemplateCommand.ts index a29194485ed43..0b100fda26eed 100644 --- a/clients/client-pca-connector-ad/src/commands/CreateTemplateCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/CreateTemplateCommand.ts @@ -326,6 +326,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class CreateTemplateCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/CreateTemplateGroupAccessControlEntryCommand.ts b/clients/client-pca-connector-ad/src/commands/CreateTemplateGroupAccessControlEntryCommand.ts index 06e1dca96b279..3d778a84df311 100644 --- a/clients/client-pca-connector-ad/src/commands/CreateTemplateGroupAccessControlEntryCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/CreateTemplateGroupAccessControlEntryCommand.ts @@ -94,6 +94,7 @@ export interface CreateTemplateGroupAccessControlEntryCommandOutput extends __Me * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class CreateTemplateGroupAccessControlEntryCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/DeleteConnectorCommand.ts b/clients/client-pca-connector-ad/src/commands/DeleteConnectorCommand.ts index 72f131f13d4a8..1896222015088 100644 --- a/clients/client-pca-connector-ad/src/commands/DeleteConnectorCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/DeleteConnectorCommand.ts @@ -83,6 +83,7 @@ export interface DeleteConnectorCommandOutput extends __MetadataBearer {} * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class DeleteConnectorCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/DeleteDirectoryRegistrationCommand.ts b/clients/client-pca-connector-ad/src/commands/DeleteDirectoryRegistrationCommand.ts index ef4a54f0c8aed..8e79305f0fae5 100644 --- a/clients/client-pca-connector-ad/src/commands/DeleteDirectoryRegistrationCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/DeleteDirectoryRegistrationCommand.ts @@ -79,6 +79,7 @@ export interface DeleteDirectoryRegistrationCommandOutput extends __MetadataBear * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class DeleteDirectoryRegistrationCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/DeleteServicePrincipalNameCommand.ts b/clients/client-pca-connector-ad/src/commands/DeleteServicePrincipalNameCommand.ts index c6f54c3d15502..35b418bdd80c0 100644 --- a/clients/client-pca-connector-ad/src/commands/DeleteServicePrincipalNameCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/DeleteServicePrincipalNameCommand.ts @@ -77,6 +77,7 @@ export interface DeleteServicePrincipalNameCommandOutput extends __MetadataBeare * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class DeleteServicePrincipalNameCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/DeleteTemplateCommand.ts b/clients/client-pca-connector-ad/src/commands/DeleteTemplateCommand.ts index b1229cb0b1def..4c50a99b845a5 100644 --- a/clients/client-pca-connector-ad/src/commands/DeleteTemplateCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/DeleteTemplateCommand.ts @@ -80,6 +80,7 @@ export interface DeleteTemplateCommandOutput extends __MetadataBearer {} * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class DeleteTemplateCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/DeleteTemplateGroupAccessControlEntryCommand.ts b/clients/client-pca-connector-ad/src/commands/DeleteTemplateGroupAccessControlEntryCommand.ts index c569cca1c732a..d690ae2e59d64 100644 --- a/clients/client-pca-connector-ad/src/commands/DeleteTemplateGroupAccessControlEntryCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/DeleteTemplateGroupAccessControlEntryCommand.ts @@ -84,6 +84,7 @@ export interface DeleteTemplateGroupAccessControlEntryCommandOutput extends __Me * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class DeleteTemplateGroupAccessControlEntryCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/GetConnectorCommand.ts b/clients/client-pca-connector-ad/src/commands/GetConnectorCommand.ts index 612a02f457bc7..a84d9cb37b3c1 100644 --- a/clients/client-pca-connector-ad/src/commands/GetConnectorCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/GetConnectorCommand.ts @@ -93,6 +93,7 @@ export interface GetConnectorCommandOutput extends GetConnectorResponse, __Metad * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class GetConnectorCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/GetDirectoryRegistrationCommand.ts b/clients/client-pca-connector-ad/src/commands/GetDirectoryRegistrationCommand.ts index 6ca146464cc91..503dda83fa6e1 100644 --- a/clients/client-pca-connector-ad/src/commands/GetDirectoryRegistrationCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/GetDirectoryRegistrationCommand.ts @@ -84,6 +84,7 @@ export interface GetDirectoryRegistrationCommandOutput extends GetDirectoryRegis * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class GetDirectoryRegistrationCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/GetServicePrincipalNameCommand.ts b/clients/client-pca-connector-ad/src/commands/GetServicePrincipalNameCommand.ts index 837745313195e..d0677e3dac6a8 100644 --- a/clients/client-pca-connector-ad/src/commands/GetServicePrincipalNameCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/GetServicePrincipalNameCommand.ts @@ -86,6 +86,7 @@ export interface GetServicePrincipalNameCommandOutput extends GetServicePrincipa * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class GetServicePrincipalNameCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/GetTemplateCommand.ts b/clients/client-pca-connector-ad/src/commands/GetTemplateCommand.ts index d2378570987f1..bf4acc22539e4 100644 --- a/clients/client-pca-connector-ad/src/commands/GetTemplateCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/GetTemplateCommand.ts @@ -327,6 +327,7 @@ export interface GetTemplateCommandOutput extends GetTemplateResponse, __Metadat * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class GetTemplateCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/GetTemplateGroupAccessControlEntryCommand.ts b/clients/client-pca-connector-ad/src/commands/GetTemplateGroupAccessControlEntryCommand.ts index 87536367ae4bb..2ba8b55ae6aa3 100644 --- a/clients/client-pca-connector-ad/src/commands/GetTemplateGroupAccessControlEntryCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/GetTemplateGroupAccessControlEntryCommand.ts @@ -96,6 +96,7 @@ export interface GetTemplateGroupAccessControlEntryCommandOutput * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class GetTemplateGroupAccessControlEntryCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/ListConnectorsCommand.ts b/clients/client-pca-connector-ad/src/commands/ListConnectorsCommand.ts index a1439f0b9b880..88eeaa14786f4 100644 --- a/clients/client-pca-connector-ad/src/commands/ListConnectorsCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/ListConnectorsCommand.ts @@ -92,6 +92,7 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class ListConnectorsCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/ListDirectoryRegistrationsCommand.ts b/clients/client-pca-connector-ad/src/commands/ListDirectoryRegistrationsCommand.ts index 12490b935c224..6c1b0aea83725 100644 --- a/clients/client-pca-connector-ad/src/commands/ListDirectoryRegistrationsCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/ListDirectoryRegistrationsCommand.ts @@ -85,6 +85,7 @@ export interface ListDirectoryRegistrationsCommandOutput extends ListDirectoryRe * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class ListDirectoryRegistrationsCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/ListServicePrincipalNamesCommand.ts b/clients/client-pca-connector-ad/src/commands/ListServicePrincipalNamesCommand.ts index 10c7f382aeaff..878b4d8e0a9d8 100644 --- a/clients/client-pca-connector-ad/src/commands/ListServicePrincipalNamesCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/ListServicePrincipalNamesCommand.ts @@ -90,6 +90,7 @@ export interface ListServicePrincipalNamesCommandOutput extends ListServicePrinc * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class ListServicePrincipalNamesCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/ListTagsForResourceCommand.ts b/clients/client-pca-connector-ad/src/commands/ListTagsForResourceCommand.ts index d4885510fbf5b..31556d8a9d669 100644 --- a/clients/client-pca-connector-ad/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/ListTagsForResourceCommand.ts @@ -79,6 +79,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/ListTemplateGroupAccessControlEntriesCommand.ts b/clients/client-pca-connector-ad/src/commands/ListTemplateGroupAccessControlEntriesCommand.ts index 73c28adf6c3c2..e92df8e943568 100644 --- a/clients/client-pca-connector-ad/src/commands/ListTemplateGroupAccessControlEntriesCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/ListTemplateGroupAccessControlEntriesCommand.ts @@ -101,6 +101,7 @@ export interface ListTemplateGroupAccessControlEntriesCommandOutput * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class ListTemplateGroupAccessControlEntriesCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/ListTemplatesCommand.ts b/clients/client-pca-connector-ad/src/commands/ListTemplatesCommand.ts index 269612f7648e2..ddb0e3e7f1e96 100644 --- a/clients/client-pca-connector-ad/src/commands/ListTemplatesCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/ListTemplatesCommand.ts @@ -331,6 +331,7 @@ export interface ListTemplatesCommandOutput extends ListTemplatesResponse, __Met * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class ListTemplatesCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/TagResourceCommand.ts b/clients/client-pca-connector-ad/src/commands/TagResourceCommand.ts index 09044dee115e3..68d5994eba46b 100644 --- a/clients/client-pca-connector-ad/src/commands/TagResourceCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/UntagResourceCommand.ts b/clients/client-pca-connector-ad/src/commands/UntagResourceCommand.ts index 9c134f4daec60..5aef2f00d6625 100644 --- a/clients/client-pca-connector-ad/src/commands/UntagResourceCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/UntagResourceCommand.ts @@ -78,6 +78,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/UpdateTemplateCommand.ts b/clients/client-pca-connector-ad/src/commands/UpdateTemplateCommand.ts index ac3e0bb5012d4..b9165ecc1e77f 100644 --- a/clients/client-pca-connector-ad/src/commands/UpdateTemplateCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/UpdateTemplateCommand.ts @@ -316,6 +316,7 @@ export interface UpdateTemplateCommandOutput extends __MetadataBearer {} * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class UpdateTemplateCommand extends $Command diff --git a/clients/client-pca-connector-ad/src/commands/UpdateTemplateGroupAccessControlEntryCommand.ts b/clients/client-pca-connector-ad/src/commands/UpdateTemplateGroupAccessControlEntryCommand.ts index 503ee1b80d7f5..90727975fea28 100644 --- a/clients/client-pca-connector-ad/src/commands/UpdateTemplateGroupAccessControlEntryCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/UpdateTemplateGroupAccessControlEntryCommand.ts @@ -89,6 +89,7 @@ export interface UpdateTemplateGroupAccessControlEntryCommandOutput extends __Me * @throws {@link PcaConnectorAdServiceException} *

Base exception class for all service exceptions from PcaConnectorAd service.

* + * * @public */ export class UpdateTemplateGroupAccessControlEntryCommand extends $Command diff --git a/clients/client-pca-connector-scep/src/commands/CreateChallengeCommand.ts b/clients/client-pca-connector-scep/src/commands/CreateChallengeCommand.ts index 9dafa0db898f6..66a363fab4c0a 100644 --- a/clients/client-pca-connector-scep/src/commands/CreateChallengeCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/CreateChallengeCommand.ts @@ -100,6 +100,7 @@ export interface CreateChallengeCommandOutput extends CreateChallengeResponse, _ * @throws {@link PcaConnectorScepServiceException} *

Base exception class for all service exceptions from PcaConnectorScep service.

* + * * @public */ export class CreateChallengeCommand extends $Command diff --git a/clients/client-pca-connector-scep/src/commands/CreateConnectorCommand.ts b/clients/client-pca-connector-scep/src/commands/CreateConnectorCommand.ts index 7e12f66da7624..436f3391e69fd 100644 --- a/clients/client-pca-connector-scep/src/commands/CreateConnectorCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/CreateConnectorCommand.ts @@ -92,6 +92,7 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _ * @throws {@link PcaConnectorScepServiceException} *

Base exception class for all service exceptions from PcaConnectorScep service.

* + * * @public */ export class CreateConnectorCommand extends $Command diff --git a/clients/client-pca-connector-scep/src/commands/DeleteChallengeCommand.ts b/clients/client-pca-connector-scep/src/commands/DeleteChallengeCommand.ts index 375a45141f779..daddd5038be6a 100644 --- a/clients/client-pca-connector-scep/src/commands/DeleteChallengeCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/DeleteChallengeCommand.ts @@ -77,6 +77,7 @@ export interface DeleteChallengeCommandOutput extends __MetadataBearer {} * @throws {@link PcaConnectorScepServiceException} *

Base exception class for all service exceptions from PcaConnectorScep service.

* + * * @public */ export class DeleteChallengeCommand extends $Command diff --git a/clients/client-pca-connector-scep/src/commands/DeleteConnectorCommand.ts b/clients/client-pca-connector-scep/src/commands/DeleteConnectorCommand.ts index cf7f481505545..93d4a67d34ccd 100644 --- a/clients/client-pca-connector-scep/src/commands/DeleteConnectorCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/DeleteConnectorCommand.ts @@ -77,6 +77,7 @@ export interface DeleteConnectorCommandOutput extends __MetadataBearer {} * @throws {@link PcaConnectorScepServiceException} *

Base exception class for all service exceptions from PcaConnectorScep service.

* + * * @public */ export class DeleteConnectorCommand extends $Command diff --git a/clients/client-pca-connector-scep/src/commands/GetChallengeMetadataCommand.ts b/clients/client-pca-connector-scep/src/commands/GetChallengeMetadataCommand.ts index acd43a4c62f74..bfa40ae000e2c 100644 --- a/clients/client-pca-connector-scep/src/commands/GetChallengeMetadataCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/GetChallengeMetadataCommand.ts @@ -80,6 +80,7 @@ export interface GetChallengeMetadataCommandOutput extends GetChallengeMetadataR * @throws {@link PcaConnectorScepServiceException} *

Base exception class for all service exceptions from PcaConnectorScep service.

* + * * @public */ export class GetChallengeMetadataCommand extends $Command diff --git a/clients/client-pca-connector-scep/src/commands/GetChallengePasswordCommand.ts b/clients/client-pca-connector-scep/src/commands/GetChallengePasswordCommand.ts index 5efd243921715..723aa24cedca2 100644 --- a/clients/client-pca-connector-scep/src/commands/GetChallengePasswordCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/GetChallengePasswordCommand.ts @@ -79,6 +79,7 @@ export interface GetChallengePasswordCommandOutput extends GetChallengePasswordR * @throws {@link PcaConnectorScepServiceException} *

Base exception class for all service exceptions from PcaConnectorScep service.

* + * * @public */ export class GetChallengePasswordCommand extends $Command diff --git a/clients/client-pca-connector-scep/src/commands/GetConnectorCommand.ts b/clients/client-pca-connector-scep/src/commands/GetConnectorCommand.ts index 4198e2d19f7ae..5a385751bfb57 100644 --- a/clients/client-pca-connector-scep/src/commands/GetConnectorCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/GetConnectorCommand.ts @@ -95,6 +95,7 @@ export interface GetConnectorCommandOutput extends GetConnectorResponse, __Metad * @throws {@link PcaConnectorScepServiceException} *

Base exception class for all service exceptions from PcaConnectorScep service.

* + * * @public */ export class GetConnectorCommand extends $Command diff --git a/clients/client-pca-connector-scep/src/commands/ListChallengeMetadataCommand.ts b/clients/client-pca-connector-scep/src/commands/ListChallengeMetadataCommand.ts index 713bed609c304..b0ae3f62764dd 100644 --- a/clients/client-pca-connector-scep/src/commands/ListChallengeMetadataCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/ListChallengeMetadataCommand.ts @@ -85,6 +85,7 @@ export interface ListChallengeMetadataCommandOutput extends ListChallengeMetadat * @throws {@link PcaConnectorScepServiceException} *

Base exception class for all service exceptions from PcaConnectorScep service.

* + * * @public */ export class ListChallengeMetadataCommand extends $Command diff --git a/clients/client-pca-connector-scep/src/commands/ListConnectorsCommand.ts b/clients/client-pca-connector-scep/src/commands/ListConnectorsCommand.ts index c33f7c5f21d7a..7f1e7526f5b9e 100644 --- a/clients/client-pca-connector-scep/src/commands/ListConnectorsCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/ListConnectorsCommand.ts @@ -96,6 +96,7 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M * @throws {@link PcaConnectorScepServiceException} *

Base exception class for all service exceptions from PcaConnectorScep service.

* + * * @public */ export class ListConnectorsCommand extends $Command diff --git a/clients/client-pca-connector-scep/src/commands/ListTagsForResourceCommand.ts b/clients/client-pca-connector-scep/src/commands/ListTagsForResourceCommand.ts index 8fecf26552d04..d85259aaa2cba 100644 --- a/clients/client-pca-connector-scep/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/ListTagsForResourceCommand.ts @@ -81,6 +81,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link PcaConnectorScepServiceException} *

Base exception class for all service exceptions from PcaConnectorScep service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-pca-connector-scep/src/commands/TagResourceCommand.ts b/clients/client-pca-connector-scep/src/commands/TagResourceCommand.ts index 7617b15a4fa51..594ee08c802c7 100644 --- a/clients/client-pca-connector-scep/src/commands/TagResourceCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/TagResourceCommand.ts @@ -76,6 +76,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link PcaConnectorScepServiceException} *

Base exception class for all service exceptions from PcaConnectorScep service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-pca-connector-scep/src/commands/UntagResourceCommand.ts b/clients/client-pca-connector-scep/src/commands/UntagResourceCommand.ts index 1be95124b672b..1323a9511168a 100644 --- a/clients/client-pca-connector-scep/src/commands/UntagResourceCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/UntagResourceCommand.ts @@ -76,6 +76,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link PcaConnectorScepServiceException} *

Base exception class for all service exceptions from PcaConnectorScep service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-pcs/src/commands/CreateClusterCommand.ts b/clients/client-pcs/src/commands/CreateClusterCommand.ts index baa7a1dfdf4ba..ff1a96e4922cd 100644 --- a/clients/client-pcs/src/commands/CreateClusterCommand.ts +++ b/clients/client-pcs/src/commands/CreateClusterCommand.ts @@ -232,6 +232,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class CreateClusterCommand extends $Command diff --git a/clients/client-pcs/src/commands/CreateComputeNodeGroupCommand.ts b/clients/client-pcs/src/commands/CreateComputeNodeGroupCommand.ts index cef070bff9d20..77dcfe52b36ea 100644 --- a/clients/client-pcs/src/commands/CreateComputeNodeGroupCommand.ts +++ b/clients/client-pcs/src/commands/CreateComputeNodeGroupCommand.ts @@ -242,6 +242,7 @@ export interface CreateComputeNodeGroupCommandOutput extends CreateComputeNodeGr * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class CreateComputeNodeGroupCommand extends $Command diff --git a/clients/client-pcs/src/commands/CreateQueueCommand.ts b/clients/client-pcs/src/commands/CreateQueueCommand.ts index 1532d41a3ab1b..f2f5b6018eff6 100644 --- a/clients/client-pcs/src/commands/CreateQueueCommand.ts +++ b/clients/client-pcs/src/commands/CreateQueueCommand.ts @@ -185,6 +185,7 @@ export interface CreateQueueCommandOutput extends CreateQueueResponse, __Metadat * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class CreateQueueCommand extends $Command diff --git a/clients/client-pcs/src/commands/DeleteClusterCommand.ts b/clients/client-pcs/src/commands/DeleteClusterCommand.ts index 60d9d962fbc85..dd462ef06a6dd 100644 --- a/clients/client-pcs/src/commands/DeleteClusterCommand.ts +++ b/clients/client-pcs/src/commands/DeleteClusterCommand.ts @@ -132,6 +132,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class DeleteClusterCommand extends $Command diff --git a/clients/client-pcs/src/commands/DeleteComputeNodeGroupCommand.ts b/clients/client-pcs/src/commands/DeleteComputeNodeGroupCommand.ts index f179dd1fb3456..5249f5a787c5f 100644 --- a/clients/client-pcs/src/commands/DeleteComputeNodeGroupCommand.ts +++ b/clients/client-pcs/src/commands/DeleteComputeNodeGroupCommand.ts @@ -133,6 +133,7 @@ export interface DeleteComputeNodeGroupCommandOutput extends DeleteComputeNodeGr * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class DeleteComputeNodeGroupCommand extends $Command diff --git a/clients/client-pcs/src/commands/DeleteQueueCommand.ts b/clients/client-pcs/src/commands/DeleteQueueCommand.ts index 6b5bbc48546a9..2f1e9af0c82e4 100644 --- a/clients/client-pcs/src/commands/DeleteQueueCommand.ts +++ b/clients/client-pcs/src/commands/DeleteQueueCommand.ts @@ -134,6 +134,7 @@ export interface DeleteQueueCommandOutput extends DeleteQueueResponse, __Metadat * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class DeleteQueueCommand extends $Command diff --git a/clients/client-pcs/src/commands/GetClusterCommand.ts b/clients/client-pcs/src/commands/GetClusterCommand.ts index a24d255263dfe..fa8f5084721d0 100644 --- a/clients/client-pcs/src/commands/GetClusterCommand.ts +++ b/clients/client-pcs/src/commands/GetClusterCommand.ts @@ -181,6 +181,7 @@ export interface GetClusterCommandOutput extends GetClusterResponse, __MetadataB * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class GetClusterCommand extends $Command diff --git a/clients/client-pcs/src/commands/GetComputeNodeGroupCommand.ts b/clients/client-pcs/src/commands/GetComputeNodeGroupCommand.ts index 3154ad7c6ea56..4c223a8377441 100644 --- a/clients/client-pcs/src/commands/GetComputeNodeGroupCommand.ts +++ b/clients/client-pcs/src/commands/GetComputeNodeGroupCommand.ts @@ -179,6 +179,7 @@ export interface GetComputeNodeGroupCommandOutput extends GetComputeNodeGroupRes * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class GetComputeNodeGroupCommand extends $Command diff --git a/clients/client-pcs/src/commands/GetQueueCommand.ts b/clients/client-pcs/src/commands/GetQueueCommand.ts index 6066da21f41af..e39fe51cbd72e 100644 --- a/clients/client-pcs/src/commands/GetQueueCommand.ts +++ b/clients/client-pcs/src/commands/GetQueueCommand.ts @@ -153,6 +153,7 @@ export interface GetQueueCommandOutput extends GetQueueResponse, __MetadataBeare * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class GetQueueCommand extends $Command diff --git a/clients/client-pcs/src/commands/ListClustersCommand.ts b/clients/client-pcs/src/commands/ListClustersCommand.ts index ac729b1a6909d..b96e7decde365 100644 --- a/clients/client-pcs/src/commands/ListClustersCommand.ts +++ b/clients/client-pcs/src/commands/ListClustersCommand.ts @@ -143,6 +143,7 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class ListClustersCommand extends $Command diff --git a/clients/client-pcs/src/commands/ListComputeNodeGroupsCommand.ts b/clients/client-pcs/src/commands/ListComputeNodeGroupsCommand.ts index 773f3a3f6d0ab..52dc0cfde984c 100644 --- a/clients/client-pcs/src/commands/ListComputeNodeGroupsCommand.ts +++ b/clients/client-pcs/src/commands/ListComputeNodeGroupsCommand.ts @@ -145,6 +145,7 @@ export interface ListComputeNodeGroupsCommandOutput extends ListComputeNodeGroup * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class ListComputeNodeGroupsCommand extends $Command diff --git a/clients/client-pcs/src/commands/ListQueuesCommand.ts b/clients/client-pcs/src/commands/ListQueuesCommand.ts index 106212b3916ea..43188bb140327 100644 --- a/clients/client-pcs/src/commands/ListQueuesCommand.ts +++ b/clients/client-pcs/src/commands/ListQueuesCommand.ts @@ -145,6 +145,7 @@ export interface ListQueuesCommandOutput extends ListQueuesResponse, __MetadataB * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class ListQueuesCommand extends $Command diff --git a/clients/client-pcs/src/commands/ListTagsForResourceCommand.ts b/clients/client-pcs/src/commands/ListTagsForResourceCommand.ts index 1573cd8018051..e8778249eb96f 100644 --- a/clients/client-pcs/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pcs/src/commands/ListTagsForResourceCommand.ts @@ -64,6 +64,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-pcs/src/commands/RegisterComputeNodeGroupInstanceCommand.ts b/clients/client-pcs/src/commands/RegisterComputeNodeGroupInstanceCommand.ts index 88ae23a4a4ed7..9b2a3747d70d1 100644 --- a/clients/client-pcs/src/commands/RegisterComputeNodeGroupInstanceCommand.ts +++ b/clients/client-pcs/src/commands/RegisterComputeNodeGroupInstanceCommand.ts @@ -101,6 +101,7 @@ export interface RegisterComputeNodeGroupInstanceCommandOutput * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class RegisterComputeNodeGroupInstanceCommand extends $Command diff --git a/clients/client-pcs/src/commands/TagResourceCommand.ts b/clients/client-pcs/src/commands/TagResourceCommand.ts index 1304587ebc77f..666368c27cd0a 100644 --- a/clients/client-pcs/src/commands/TagResourceCommand.ts +++ b/clients/client-pcs/src/commands/TagResourceCommand.ts @@ -89,6 +89,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-pcs/src/commands/UntagResourceCommand.ts b/clients/client-pcs/src/commands/UntagResourceCommand.ts index c24c82da7c8f3..11aff80510adf 100644 --- a/clients/client-pcs/src/commands/UntagResourceCommand.ts +++ b/clients/client-pcs/src/commands/UntagResourceCommand.ts @@ -64,6 +64,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-pcs/src/commands/UpdateComputeNodeGroupCommand.ts b/clients/client-pcs/src/commands/UpdateComputeNodeGroupCommand.ts index 16cbb1ddf6ae2..8ec46698e92d8 100644 --- a/clients/client-pcs/src/commands/UpdateComputeNodeGroupCommand.ts +++ b/clients/client-pcs/src/commands/UpdateComputeNodeGroupCommand.ts @@ -228,6 +228,7 @@ export interface UpdateComputeNodeGroupCommandOutput extends UpdateComputeNodeGr * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class UpdateComputeNodeGroupCommand extends $Command diff --git a/clients/client-pcs/src/commands/UpdateQueueCommand.ts b/clients/client-pcs/src/commands/UpdateQueueCommand.ts index c4fb7bc221cae..800c627ae3348 100644 --- a/clients/client-pcs/src/commands/UpdateQueueCommand.ts +++ b/clients/client-pcs/src/commands/UpdateQueueCommand.ts @@ -182,6 +182,7 @@ export interface UpdateQueueCommandOutput extends UpdateQueueResponse, __Metadat * @throws {@link PCSServiceException} *

Base exception class for all service exceptions from PCS service.

* + * * @public */ export class UpdateQueueCommand extends $Command diff --git a/clients/client-personalize-events/src/commands/PutActionInteractionsCommand.ts b/clients/client-personalize-events/src/commands/PutActionInteractionsCommand.ts index 6b495bde39e73..07305ee8b57df 100644 --- a/clients/client-personalize-events/src/commands/PutActionInteractionsCommand.ts +++ b/clients/client-personalize-events/src/commands/PutActionInteractionsCommand.ts @@ -85,6 +85,7 @@ export interface PutActionInteractionsCommandOutput extends __MetadataBearer {} * @throws {@link PersonalizeEventsServiceException} *

Base exception class for all service exceptions from PersonalizeEvents service.

* + * * @public */ export class PutActionInteractionsCommand extends $Command diff --git a/clients/client-personalize-events/src/commands/PutActionsCommand.ts b/clients/client-personalize-events/src/commands/PutActionsCommand.ts index e799e8eefeaa2..99de83e7ffe30 100644 --- a/clients/client-personalize-events/src/commands/PutActionsCommand.ts +++ b/clients/client-personalize-events/src/commands/PutActionsCommand.ts @@ -74,6 +74,7 @@ export interface PutActionsCommandOutput extends __MetadataBearer {} * @throws {@link PersonalizeEventsServiceException} *

Base exception class for all service exceptions from PersonalizeEvents service.

* + * * @public */ export class PutActionsCommand extends $Command diff --git a/clients/client-personalize-events/src/commands/PutEventsCommand.ts b/clients/client-personalize-events/src/commands/PutEventsCommand.ts index ccd20ac9a75bc..a1c4e6ed1ce1e 100644 --- a/clients/client-personalize-events/src/commands/PutEventsCommand.ts +++ b/clients/client-personalize-events/src/commands/PutEventsCommand.ts @@ -80,6 +80,7 @@ export interface PutEventsCommandOutput extends __MetadataBearer {} * @throws {@link PersonalizeEventsServiceException} *

Base exception class for all service exceptions from PersonalizeEvents service.

* + * * @public */ export class PutEventsCommand extends $Command diff --git a/clients/client-personalize-events/src/commands/PutItemsCommand.ts b/clients/client-personalize-events/src/commands/PutItemsCommand.ts index 85d6182d60e9f..784e1dfb11b13 100644 --- a/clients/client-personalize-events/src/commands/PutItemsCommand.ts +++ b/clients/client-personalize-events/src/commands/PutItemsCommand.ts @@ -74,6 +74,7 @@ export interface PutItemsCommandOutput extends __MetadataBearer {} * @throws {@link PersonalizeEventsServiceException} *

Base exception class for all service exceptions from PersonalizeEvents service.

* + * * @public */ export class PutItemsCommand extends $Command diff --git a/clients/client-personalize-events/src/commands/PutUsersCommand.ts b/clients/client-personalize-events/src/commands/PutUsersCommand.ts index 7f80c79667351..a4a815a503c0f 100644 --- a/clients/client-personalize-events/src/commands/PutUsersCommand.ts +++ b/clients/client-personalize-events/src/commands/PutUsersCommand.ts @@ -73,6 +73,7 @@ export interface PutUsersCommandOutput extends __MetadataBearer {} * @throws {@link PersonalizeEventsServiceException} *

Base exception class for all service exceptions from PersonalizeEvents service.

* + * * @public */ export class PutUsersCommand extends $Command diff --git a/clients/client-personalize-runtime/src/commands/GetActionRecommendationsCommand.ts b/clients/client-personalize-runtime/src/commands/GetActionRecommendationsCommand.ts index 3267e76ff1ec0..0b4af5f49dee3 100644 --- a/clients/client-personalize-runtime/src/commands/GetActionRecommendationsCommand.ts +++ b/clients/client-personalize-runtime/src/commands/GetActionRecommendationsCommand.ts @@ -86,6 +86,7 @@ export interface GetActionRecommendationsCommandOutput extends GetActionRecommen * @throws {@link PersonalizeRuntimeServiceException} *

Base exception class for all service exceptions from PersonalizeRuntime service.

* + * * @public */ export class GetActionRecommendationsCommand extends $Command diff --git a/clients/client-personalize-runtime/src/commands/GetPersonalizedRankingCommand.ts b/clients/client-personalize-runtime/src/commands/GetPersonalizedRankingCommand.ts index 03814ba96a521..696cfbdd58d9b 100644 --- a/clients/client-personalize-runtime/src/commands/GetPersonalizedRankingCommand.ts +++ b/clients/client-personalize-runtime/src/commands/GetPersonalizedRankingCommand.ts @@ -104,6 +104,7 @@ export interface GetPersonalizedRankingCommandOutput extends GetPersonalizedRank * @throws {@link PersonalizeRuntimeServiceException} *

Base exception class for all service exceptions from PersonalizeRuntime service.

* + * * @public */ export class GetPersonalizedRankingCommand extends $Command diff --git a/clients/client-personalize-runtime/src/commands/GetRecommendationsCommand.ts b/clients/client-personalize-runtime/src/commands/GetRecommendationsCommand.ts index 01360fed249a1..ea576dd895e3b 100644 --- a/clients/client-personalize-runtime/src/commands/GetRecommendationsCommand.ts +++ b/clients/client-personalize-runtime/src/commands/GetRecommendationsCommand.ts @@ -126,6 +126,7 @@ export interface GetRecommendationsCommandOutput extends GetRecommendationsRespo * @throws {@link PersonalizeRuntimeServiceException} *

Base exception class for all service exceptions from PersonalizeRuntime service.

* + * * @public */ export class GetRecommendationsCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateBatchInferenceJobCommand.ts b/clients/client-personalize/src/commands/CreateBatchInferenceJobCommand.ts index af9e341c08bec..e2eb2fb8a6b95 100644 --- a/clients/client-personalize/src/commands/CreateBatchInferenceJobCommand.ts +++ b/clients/client-personalize/src/commands/CreateBatchInferenceJobCommand.ts @@ -123,6 +123,7 @@ export interface CreateBatchInferenceJobCommandOutput extends CreateBatchInferen * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateBatchInferenceJobCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateBatchSegmentJobCommand.ts b/clients/client-personalize/src/commands/CreateBatchSegmentJobCommand.ts index 7559c1d94f51b..84b96c3e414ba 100644 --- a/clients/client-personalize/src/commands/CreateBatchSegmentJobCommand.ts +++ b/clients/client-personalize/src/commands/CreateBatchSegmentJobCommand.ts @@ -97,6 +97,7 @@ export interface CreateBatchSegmentJobCommandOutput extends CreateBatchSegmentJo * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateBatchSegmentJobCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateCampaignCommand.ts b/clients/client-personalize/src/commands/CreateCampaignCommand.ts index 2c4dddd663b03..29173dd4e8e63 100644 --- a/clients/client-personalize/src/commands/CreateCampaignCommand.ts +++ b/clients/client-personalize/src/commands/CreateCampaignCommand.ts @@ -162,6 +162,7 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateCampaignCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateDataDeletionJobCommand.ts b/clients/client-personalize/src/commands/CreateDataDeletionJobCommand.ts index b0104f15ba384..da9f96f7a8a16 100644 --- a/clients/client-personalize/src/commands/CreateDataDeletionJobCommand.ts +++ b/clients/client-personalize/src/commands/CreateDataDeletionJobCommand.ts @@ -134,6 +134,7 @@ export interface CreateDataDeletionJobCommandOutput extends CreateDataDeletionJo * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateDataDeletionJobCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateDatasetCommand.ts b/clients/client-personalize/src/commands/CreateDatasetCommand.ts index 02735b7f14a2f..84fe5dcc9578e 100644 --- a/clients/client-personalize/src/commands/CreateDatasetCommand.ts +++ b/clients/client-personalize/src/commands/CreateDatasetCommand.ts @@ -141,6 +141,7 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateDatasetCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateDatasetExportJobCommand.ts b/clients/client-personalize/src/commands/CreateDatasetExportJobCommand.ts index 00800993c922b..95c56d873fbf4 100644 --- a/clients/client-personalize/src/commands/CreateDatasetExportJobCommand.ts +++ b/clients/client-personalize/src/commands/CreateDatasetExportJobCommand.ts @@ -106,6 +106,7 @@ export interface CreateDatasetExportJobCommandOutput extends CreateDatasetExport * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateDatasetExportJobCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateDatasetGroupCommand.ts b/clients/client-personalize/src/commands/CreateDatasetGroupCommand.ts index 312d98ee3ef2a..d3f14b86d45b1 100644 --- a/clients/client-personalize/src/commands/CreateDatasetGroupCommand.ts +++ b/clients/client-personalize/src/commands/CreateDatasetGroupCommand.ts @@ -163,6 +163,7 @@ export interface CreateDatasetGroupCommandOutput extends CreateDatasetGroupRespo * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateDatasetGroupCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateDatasetImportJobCommand.ts b/clients/client-personalize/src/commands/CreateDatasetImportJobCommand.ts index 7ec4aaf3946a3..0d8e1add8db5f 100644 --- a/clients/client-personalize/src/commands/CreateDatasetImportJobCommand.ts +++ b/clients/client-personalize/src/commands/CreateDatasetImportJobCommand.ts @@ -135,6 +135,7 @@ export interface CreateDatasetImportJobCommandOutput extends CreateDatasetImport * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateDatasetImportJobCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateEventTrackerCommand.ts b/clients/client-personalize/src/commands/CreateEventTrackerCommand.ts index 8fed3037b410d..31b18c2f923f5 100644 --- a/clients/client-personalize/src/commands/CreateEventTrackerCommand.ts +++ b/clients/client-personalize/src/commands/CreateEventTrackerCommand.ts @@ -126,6 +126,7 @@ export interface CreateEventTrackerCommandOutput extends CreateEventTrackerRespo * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateEventTrackerCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateFilterCommand.ts b/clients/client-personalize/src/commands/CreateFilterCommand.ts index 048b1671df744..da5f0aeb18b41 100644 --- a/clients/client-personalize/src/commands/CreateFilterCommand.ts +++ b/clients/client-personalize/src/commands/CreateFilterCommand.ts @@ -78,6 +78,7 @@ export interface CreateFilterCommandOutput extends CreateFilterResponse, __Metad * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateFilterCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateMetricAttributionCommand.ts b/clients/client-personalize/src/commands/CreateMetricAttributionCommand.ts index 95dfc52bc1474..8b7dd8df8906d 100644 --- a/clients/client-personalize/src/commands/CreateMetricAttributionCommand.ts +++ b/clients/client-personalize/src/commands/CreateMetricAttributionCommand.ts @@ -87,6 +87,7 @@ export interface CreateMetricAttributionCommandOutput extends CreateMetricAttrib * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateMetricAttributionCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateRecommenderCommand.ts b/clients/client-personalize/src/commands/CreateRecommenderCommand.ts index 05792763727e9..c3ed71b33d14f 100644 --- a/clients/client-personalize/src/commands/CreateRecommenderCommand.ts +++ b/clients/client-personalize/src/commands/CreateRecommenderCommand.ts @@ -172,6 +172,7 @@ export interface CreateRecommenderCommandOutput extends CreateRecommenderRespons * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateRecommenderCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateSchemaCommand.ts b/clients/client-personalize/src/commands/CreateSchemaCommand.ts index 0a18a23fd8440..a59c585c16347 100644 --- a/clients/client-personalize/src/commands/CreateSchemaCommand.ts +++ b/clients/client-personalize/src/commands/CreateSchemaCommand.ts @@ -91,6 +91,7 @@ export interface CreateSchemaCommandOutput extends CreateSchemaResponse, __Metad * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateSchemaCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateSolutionCommand.ts b/clients/client-personalize/src/commands/CreateSolutionCommand.ts index 5cd90cc563c05..1a2d43fb73256 100644 --- a/clients/client-personalize/src/commands/CreateSolutionCommand.ts +++ b/clients/client-personalize/src/commands/CreateSolutionCommand.ts @@ -236,6 +236,7 @@ export interface CreateSolutionCommandOutput extends CreateSolutionResponse, __M * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateSolutionCommand extends $Command diff --git a/clients/client-personalize/src/commands/CreateSolutionVersionCommand.ts b/clients/client-personalize/src/commands/CreateSolutionVersionCommand.ts index 50e5ec3581327..2bab70bd10a77 100644 --- a/clients/client-personalize/src/commands/CreateSolutionVersionCommand.ts +++ b/clients/client-personalize/src/commands/CreateSolutionVersionCommand.ts @@ -147,6 +147,7 @@ export interface CreateSolutionVersionCommandOutput extends CreateSolutionVersio * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class CreateSolutionVersionCommand extends $Command diff --git a/clients/client-personalize/src/commands/DeleteCampaignCommand.ts b/clients/client-personalize/src/commands/DeleteCampaignCommand.ts index 3c96989252a82..ae1cde0cfd9b4 100644 --- a/clients/client-personalize/src/commands/DeleteCampaignCommand.ts +++ b/clients/client-personalize/src/commands/DeleteCampaignCommand.ts @@ -67,6 +67,7 @@ export interface DeleteCampaignCommandOutput extends __MetadataBearer {} * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DeleteCampaignCommand extends $Command diff --git a/clients/client-personalize/src/commands/DeleteDatasetCommand.ts b/clients/client-personalize/src/commands/DeleteDatasetCommand.ts index 70a6abfd4a520..f806a5b2b162c 100644 --- a/clients/client-personalize/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-personalize/src/commands/DeleteDatasetCommand.ts @@ -65,6 +65,7 @@ export interface DeleteDatasetCommandOutput extends __MetadataBearer {} * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DeleteDatasetCommand extends $Command diff --git a/clients/client-personalize/src/commands/DeleteDatasetGroupCommand.ts b/clients/client-personalize/src/commands/DeleteDatasetGroupCommand.ts index ed0e1918db8c1..cafb87954ad12 100644 --- a/clients/client-personalize/src/commands/DeleteDatasetGroupCommand.ts +++ b/clients/client-personalize/src/commands/DeleteDatasetGroupCommand.ts @@ -74,6 +74,7 @@ export interface DeleteDatasetGroupCommandOutput extends __MetadataBearer {} * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DeleteDatasetGroupCommand extends $Command diff --git a/clients/client-personalize/src/commands/DeleteEventTrackerCommand.ts b/clients/client-personalize/src/commands/DeleteEventTrackerCommand.ts index 5ea6f31c0e6c0..596406e0004d5 100644 --- a/clients/client-personalize/src/commands/DeleteEventTrackerCommand.ts +++ b/clients/client-personalize/src/commands/DeleteEventTrackerCommand.ts @@ -64,6 +64,7 @@ export interface DeleteEventTrackerCommandOutput extends __MetadataBearer {} * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DeleteEventTrackerCommand extends $Command diff --git a/clients/client-personalize/src/commands/DeleteFilterCommand.ts b/clients/client-personalize/src/commands/DeleteFilterCommand.ts index 772ac08d7221c..49b12e33e4d76 100644 --- a/clients/client-personalize/src/commands/DeleteFilterCommand.ts +++ b/clients/client-personalize/src/commands/DeleteFilterCommand.ts @@ -62,6 +62,7 @@ export interface DeleteFilterCommandOutput extends __MetadataBearer {} * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DeleteFilterCommand extends $Command diff --git a/clients/client-personalize/src/commands/DeleteMetricAttributionCommand.ts b/clients/client-personalize/src/commands/DeleteMetricAttributionCommand.ts index 82ae7b8b54668..9640965f0bcc1 100644 --- a/clients/client-personalize/src/commands/DeleteMetricAttributionCommand.ts +++ b/clients/client-personalize/src/commands/DeleteMetricAttributionCommand.ts @@ -62,6 +62,7 @@ export interface DeleteMetricAttributionCommandOutput extends __MetadataBearer { * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DeleteMetricAttributionCommand extends $Command diff --git a/clients/client-personalize/src/commands/DeleteRecommenderCommand.ts b/clients/client-personalize/src/commands/DeleteRecommenderCommand.ts index a24186d523a7c..fec851c15cbe3 100644 --- a/clients/client-personalize/src/commands/DeleteRecommenderCommand.ts +++ b/clients/client-personalize/src/commands/DeleteRecommenderCommand.ts @@ -63,6 +63,7 @@ export interface DeleteRecommenderCommandOutput extends __MetadataBearer {} * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DeleteRecommenderCommand extends $Command diff --git a/clients/client-personalize/src/commands/DeleteSchemaCommand.ts b/clients/client-personalize/src/commands/DeleteSchemaCommand.ts index f43e4d54c911f..e10226cde9ffb 100644 --- a/clients/client-personalize/src/commands/DeleteSchemaCommand.ts +++ b/clients/client-personalize/src/commands/DeleteSchemaCommand.ts @@ -64,6 +64,7 @@ export interface DeleteSchemaCommandOutput extends __MetadataBearer {} * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DeleteSchemaCommand extends $Command diff --git a/clients/client-personalize/src/commands/DeleteSolutionCommand.ts b/clients/client-personalize/src/commands/DeleteSolutionCommand.ts index 71821fe903a1d..4a17a515a78a2 100644 --- a/clients/client-personalize/src/commands/DeleteSolutionCommand.ts +++ b/clients/client-personalize/src/commands/DeleteSolutionCommand.ts @@ -68,6 +68,7 @@ export interface DeleteSolutionCommandOutput extends __MetadataBearer {} * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DeleteSolutionCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeAlgorithmCommand.ts b/clients/client-personalize/src/commands/DescribeAlgorithmCommand.ts index 69296c260b667..22a884b525f4e 100644 --- a/clients/client-personalize/src/commands/DescribeAlgorithmCommand.ts +++ b/clients/client-personalize/src/commands/DescribeAlgorithmCommand.ts @@ -105,6 +105,7 @@ export interface DescribeAlgorithmCommandOutput extends DescribeAlgorithmRespons * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeAlgorithmCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeBatchInferenceJobCommand.ts b/clients/client-personalize/src/commands/DescribeBatchInferenceJobCommand.ts index 37abd61a776a4..dc8ef0382f8d8 100644 --- a/clients/client-personalize/src/commands/DescribeBatchInferenceJobCommand.ts +++ b/clients/client-personalize/src/commands/DescribeBatchInferenceJobCommand.ts @@ -97,6 +97,7 @@ export interface DescribeBatchInferenceJobCommandOutput extends DescribeBatchInf * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeBatchInferenceJobCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeBatchSegmentJobCommand.ts b/clients/client-personalize/src/commands/DescribeBatchSegmentJobCommand.ts index 5bf95e872d789..4404b73fda9b7 100644 --- a/clients/client-personalize/src/commands/DescribeBatchSegmentJobCommand.ts +++ b/clients/client-personalize/src/commands/DescribeBatchSegmentJobCommand.ts @@ -86,6 +86,7 @@ export interface DescribeBatchSegmentJobCommandOutput extends DescribeBatchSegme * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeBatchSegmentJobCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeCampaignCommand.ts b/clients/client-personalize/src/commands/DescribeCampaignCommand.ts index 9be61f60bf6fb..c1a3eb9ba3ba1 100644 --- a/clients/client-personalize/src/commands/DescribeCampaignCommand.ts +++ b/clients/client-personalize/src/commands/DescribeCampaignCommand.ts @@ -104,6 +104,7 @@ export interface DescribeCampaignCommandOutput extends DescribeCampaignResponse, * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeCampaignCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeDataDeletionJobCommand.ts b/clients/client-personalize/src/commands/DescribeDataDeletionJobCommand.ts index 48caf73a9fb3f..ecc934775a760 100644 --- a/clients/client-personalize/src/commands/DescribeDataDeletionJobCommand.ts +++ b/clients/client-personalize/src/commands/DescribeDataDeletionJobCommand.ts @@ -74,6 +74,7 @@ export interface DescribeDataDeletionJobCommandOutput extends DescribeDataDeleti * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeDataDeletionJobCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeDatasetCommand.ts b/clients/client-personalize/src/commands/DescribeDatasetCommand.ts index 7b12f3e62828d..3748f5abad8b6 100644 --- a/clients/client-personalize/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-personalize/src/commands/DescribeDatasetCommand.ts @@ -79,6 +79,7 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _ * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeDatasetCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeDatasetExportJobCommand.ts b/clients/client-personalize/src/commands/DescribeDatasetExportJobCommand.ts index 36d388c4bbf71..85836e181c0ab 100644 --- a/clients/client-personalize/src/commands/DescribeDatasetExportJobCommand.ts +++ b/clients/client-personalize/src/commands/DescribeDatasetExportJobCommand.ts @@ -77,6 +77,7 @@ export interface DescribeDatasetExportJobCommandOutput extends DescribeDatasetEx * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeDatasetExportJobCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeDatasetGroupCommand.ts b/clients/client-personalize/src/commands/DescribeDatasetGroupCommand.ts index e1001c51f529f..662082319f9b0 100644 --- a/clients/client-personalize/src/commands/DescribeDatasetGroupCommand.ts +++ b/clients/client-personalize/src/commands/DescribeDatasetGroupCommand.ts @@ -72,6 +72,7 @@ export interface DescribeDatasetGroupCommandOutput extends DescribeDatasetGroupR * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeDatasetGroupCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeDatasetImportJobCommand.ts b/clients/client-personalize/src/commands/DescribeDatasetImportJobCommand.ts index a1731381f96ae..1993a2a331f39 100644 --- a/clients/client-personalize/src/commands/DescribeDatasetImportJobCommand.ts +++ b/clients/client-personalize/src/commands/DescribeDatasetImportJobCommand.ts @@ -75,6 +75,7 @@ export interface DescribeDatasetImportJobCommandOutput extends DescribeDatasetIm * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeDatasetImportJobCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeEventTrackerCommand.ts b/clients/client-personalize/src/commands/DescribeEventTrackerCommand.ts index 15f52b6013eaf..ce37369f50343 100644 --- a/clients/client-personalize/src/commands/DescribeEventTrackerCommand.ts +++ b/clients/client-personalize/src/commands/DescribeEventTrackerCommand.ts @@ -72,6 +72,7 @@ export interface DescribeEventTrackerCommandOutput extends DescribeEventTrackerR * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeEventTrackerCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeFeatureTransformationCommand.ts b/clients/client-personalize/src/commands/DescribeFeatureTransformationCommand.ts index fbdea80b2eda1..f21e6cd6d76a2 100644 --- a/clients/client-personalize/src/commands/DescribeFeatureTransformationCommand.ts +++ b/clients/client-personalize/src/commands/DescribeFeatureTransformationCommand.ts @@ -75,6 +75,7 @@ export interface DescribeFeatureTransformationCommandOutput * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeFeatureTransformationCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeFilterCommand.ts b/clients/client-personalize/src/commands/DescribeFilterCommand.ts index a159a53fdde37..08358dab3c920 100644 --- a/clients/client-personalize/src/commands/DescribeFilterCommand.ts +++ b/clients/client-personalize/src/commands/DescribeFilterCommand.ts @@ -74,6 +74,7 @@ export interface DescribeFilterCommandOutput extends DescribeFilterResponse, __M * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeFilterCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeMetricAttributionCommand.ts b/clients/client-personalize/src/commands/DescribeMetricAttributionCommand.ts index 831f7415e3a5a..10ae7e74fd1f8 100644 --- a/clients/client-personalize/src/commands/DescribeMetricAttributionCommand.ts +++ b/clients/client-personalize/src/commands/DescribeMetricAttributionCommand.ts @@ -76,6 +76,7 @@ export interface DescribeMetricAttributionCommandOutput extends DescribeMetricAt * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeMetricAttributionCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeRecipeCommand.ts b/clients/client-personalize/src/commands/DescribeRecipeCommand.ts index 4f19ad74f9f16..a488ab434a1a3 100644 --- a/clients/client-personalize/src/commands/DescribeRecipeCommand.ts +++ b/clients/client-personalize/src/commands/DescribeRecipeCommand.ts @@ -89,6 +89,7 @@ export interface DescribeRecipeCommandOutput extends DescribeRecipeResponse, __M * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeRecipeCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeRecommenderCommand.ts b/clients/client-personalize/src/commands/DescribeRecommenderCommand.ts index c488842d637c6..ea1e88bc5a2aa 100644 --- a/clients/client-personalize/src/commands/DescribeRecommenderCommand.ts +++ b/clients/client-personalize/src/commands/DescribeRecommenderCommand.ts @@ -124,6 +124,7 @@ export interface DescribeRecommenderCommandOutput extends DescribeRecommenderRes * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeRecommenderCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeSchemaCommand.ts b/clients/client-personalize/src/commands/DescribeSchemaCommand.ts index f6d9597a44ad0..683db54d32dce 100644 --- a/clients/client-personalize/src/commands/DescribeSchemaCommand.ts +++ b/clients/client-personalize/src/commands/DescribeSchemaCommand.ts @@ -69,6 +69,7 @@ export interface DescribeSchemaCommandOutput extends DescribeSchemaResponse, __M * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeSchemaCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeSolutionCommand.ts b/clients/client-personalize/src/commands/DescribeSolutionCommand.ts index 1dc555cd39bab..abc9c6c847cd4 100644 --- a/clients/client-personalize/src/commands/DescribeSolutionCommand.ts +++ b/clients/client-personalize/src/commands/DescribeSolutionCommand.ts @@ -162,6 +162,7 @@ export interface DescribeSolutionCommandOutput extends DescribeSolutionResponse, * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeSolutionCommand extends $Command diff --git a/clients/client-personalize/src/commands/DescribeSolutionVersionCommand.ts b/clients/client-personalize/src/commands/DescribeSolutionVersionCommand.ts index baa437dc2e427..615b45c6acddc 100644 --- a/clients/client-personalize/src/commands/DescribeSolutionVersionCommand.ts +++ b/clients/client-personalize/src/commands/DescribeSolutionVersionCommand.ts @@ -147,6 +147,7 @@ export interface DescribeSolutionVersionCommandOutput extends DescribeSolutionVe * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class DescribeSolutionVersionCommand extends $Command diff --git a/clients/client-personalize/src/commands/GetSolutionMetricsCommand.ts b/clients/client-personalize/src/commands/GetSolutionMetricsCommand.ts index 591f4572e46d9..e647b4b6e0fae 100644 --- a/clients/client-personalize/src/commands/GetSolutionMetricsCommand.ts +++ b/clients/client-personalize/src/commands/GetSolutionMetricsCommand.ts @@ -67,6 +67,7 @@ export interface GetSolutionMetricsCommandOutput extends GetSolutionMetricsRespo * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class GetSolutionMetricsCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListBatchInferenceJobsCommand.ts b/clients/client-personalize/src/commands/ListBatchInferenceJobsCommand.ts index c6996f6351466..04761c240a666 100644 --- a/clients/client-personalize/src/commands/ListBatchInferenceJobsCommand.ts +++ b/clients/client-personalize/src/commands/ListBatchInferenceJobsCommand.ts @@ -76,6 +76,7 @@ export interface ListBatchInferenceJobsCommandOutput extends ListBatchInferenceJ * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListBatchInferenceJobsCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListBatchSegmentJobsCommand.ts b/clients/client-personalize/src/commands/ListBatchSegmentJobsCommand.ts index 07f79603d8f77..a825dcff3b4e5 100644 --- a/clients/client-personalize/src/commands/ListBatchSegmentJobsCommand.ts +++ b/clients/client-personalize/src/commands/ListBatchSegmentJobsCommand.ts @@ -75,6 +75,7 @@ export interface ListBatchSegmentJobsCommandOutput extends ListBatchSegmentJobsR * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListBatchSegmentJobsCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListCampaignsCommand.ts b/clients/client-personalize/src/commands/ListCampaignsCommand.ts index f1eb79c64cc24..a01c3129eca11 100644 --- a/clients/client-personalize/src/commands/ListCampaignsCommand.ts +++ b/clients/client-personalize/src/commands/ListCampaignsCommand.ts @@ -76,6 +76,7 @@ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __Met * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListCampaignsCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListDataDeletionJobsCommand.ts b/clients/client-personalize/src/commands/ListDataDeletionJobsCommand.ts index c67615a3bd033..a344acc0db960 100644 --- a/clients/client-personalize/src/commands/ListDataDeletionJobsCommand.ts +++ b/clients/client-personalize/src/commands/ListDataDeletionJobsCommand.ts @@ -80,6 +80,7 @@ export interface ListDataDeletionJobsCommandOutput extends ListDataDeletionJobsR * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListDataDeletionJobsCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListDatasetExportJobsCommand.ts b/clients/client-personalize/src/commands/ListDatasetExportJobsCommand.ts index 9efc63a44ff42..dda59118f19cb 100644 --- a/clients/client-personalize/src/commands/ListDatasetExportJobsCommand.ts +++ b/clients/client-personalize/src/commands/ListDatasetExportJobsCommand.ts @@ -78,6 +78,7 @@ export interface ListDatasetExportJobsCommandOutput extends ListDatasetExportJob * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListDatasetExportJobsCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListDatasetGroupsCommand.ts b/clients/client-personalize/src/commands/ListDatasetGroupsCommand.ts index 37d1e2e1278ba..025c393788851 100644 --- a/clients/client-personalize/src/commands/ListDatasetGroupsCommand.ts +++ b/clients/client-personalize/src/commands/ListDatasetGroupsCommand.ts @@ -72,6 +72,7 @@ export interface ListDatasetGroupsCommandOutput extends ListDatasetGroupsRespons * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListDatasetGroupsCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListDatasetImportJobsCommand.ts b/clients/client-personalize/src/commands/ListDatasetImportJobsCommand.ts index fa5ac39d2de3d..d8bdef933204a 100644 --- a/clients/client-personalize/src/commands/ListDatasetImportJobsCommand.ts +++ b/clients/client-personalize/src/commands/ListDatasetImportJobsCommand.ts @@ -79,6 +79,7 @@ export interface ListDatasetImportJobsCommandOutput extends ListDatasetImportJob * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListDatasetImportJobsCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListDatasetsCommand.ts b/clients/client-personalize/src/commands/ListDatasetsCommand.ts index 27c0a6e41fdfa..a2b94c54cec53 100644 --- a/clients/client-personalize/src/commands/ListDatasetsCommand.ts +++ b/clients/client-personalize/src/commands/ListDatasetsCommand.ts @@ -75,6 +75,7 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListDatasetsCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListEventTrackersCommand.ts b/clients/client-personalize/src/commands/ListEventTrackersCommand.ts index 52090a985f9bb..fddb35e9e5748 100644 --- a/clients/client-personalize/src/commands/ListEventTrackersCommand.ts +++ b/clients/client-personalize/src/commands/ListEventTrackersCommand.ts @@ -75,6 +75,7 @@ export interface ListEventTrackersCommandOutput extends ListEventTrackersRespons * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListEventTrackersCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListFiltersCommand.ts b/clients/client-personalize/src/commands/ListFiltersCommand.ts index 604d0fd25401f..eced6604faeba 100644 --- a/clients/client-personalize/src/commands/ListFiltersCommand.ts +++ b/clients/client-personalize/src/commands/ListFiltersCommand.ts @@ -74,6 +74,7 @@ export interface ListFiltersCommandOutput extends ListFiltersResponse, __Metadat * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListFiltersCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListMetricAttributionMetricsCommand.ts b/clients/client-personalize/src/commands/ListMetricAttributionMetricsCommand.ts index 97bbd7386b8a2..6c6df73af9f27 100644 --- a/clients/client-personalize/src/commands/ListMetricAttributionMetricsCommand.ts +++ b/clients/client-personalize/src/commands/ListMetricAttributionMetricsCommand.ts @@ -75,6 +75,7 @@ export interface ListMetricAttributionMetricsCommandOutput * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListMetricAttributionMetricsCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListMetricAttributionsCommand.ts b/clients/client-personalize/src/commands/ListMetricAttributionsCommand.ts index c855d01f3ebe4..c9de5322b629a 100644 --- a/clients/client-personalize/src/commands/ListMetricAttributionsCommand.ts +++ b/clients/client-personalize/src/commands/ListMetricAttributionsCommand.ts @@ -73,6 +73,7 @@ export interface ListMetricAttributionsCommandOutput extends ListMetricAttributi * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListMetricAttributionsCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListRecipesCommand.ts b/clients/client-personalize/src/commands/ListRecipesCommand.ts index 65725394d6546..4d3457037142e 100644 --- a/clients/client-personalize/src/commands/ListRecipesCommand.ts +++ b/clients/client-personalize/src/commands/ListRecipesCommand.ts @@ -75,6 +75,7 @@ export interface ListRecipesCommandOutput extends ListRecipesResponse, __Metadat * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListRecipesCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListRecommendersCommand.ts b/clients/client-personalize/src/commands/ListRecommendersCommand.ts index d4ca553ff5b22..0c78b71180849 100644 --- a/clients/client-personalize/src/commands/ListRecommendersCommand.ts +++ b/clients/client-personalize/src/commands/ListRecommendersCommand.ts @@ -91,6 +91,7 @@ export interface ListRecommendersCommandOutput extends ListRecommendersResponse, * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListRecommendersCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListSchemasCommand.ts b/clients/client-personalize/src/commands/ListSchemasCommand.ts index 968e03e740629..0217e473f9dd4 100644 --- a/clients/client-personalize/src/commands/ListSchemasCommand.ts +++ b/clients/client-personalize/src/commands/ListSchemasCommand.ts @@ -70,6 +70,7 @@ export interface ListSchemasCommandOutput extends ListSchemasResponse, __Metadat * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListSchemasCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListSolutionVersionsCommand.ts b/clients/client-personalize/src/commands/ListSolutionVersionsCommand.ts index cc58a31f6b350..ce157896bd01e 100644 --- a/clients/client-personalize/src/commands/ListSolutionVersionsCommand.ts +++ b/clients/client-personalize/src/commands/ListSolutionVersionsCommand.ts @@ -79,6 +79,7 @@ export interface ListSolutionVersionsCommandOutput extends ListSolutionVersionsR * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListSolutionVersionsCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListSolutionsCommand.ts b/clients/client-personalize/src/commands/ListSolutionsCommand.ts index 341ef923bd778..51b41b8daf80f 100644 --- a/clients/client-personalize/src/commands/ListSolutionsCommand.ts +++ b/clients/client-personalize/src/commands/ListSolutionsCommand.ts @@ -76,6 +76,7 @@ export interface ListSolutionsCommandOutput extends ListSolutionsResponse, __Met * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListSolutionsCommand extends $Command diff --git a/clients/client-personalize/src/commands/ListTagsForResourceCommand.ts b/clients/client-personalize/src/commands/ListTagsForResourceCommand.ts index d34d464b23150..0d30c4a98bfc0 100644 --- a/clients/client-personalize/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-personalize/src/commands/ListTagsForResourceCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-personalize/src/commands/StartRecommenderCommand.ts b/clients/client-personalize/src/commands/StartRecommenderCommand.ts index c0ae78f09fcd2..33e2de46f37d4 100644 --- a/clients/client-personalize/src/commands/StartRecommenderCommand.ts +++ b/clients/client-personalize/src/commands/StartRecommenderCommand.ts @@ -65,6 +65,7 @@ export interface StartRecommenderCommandOutput extends StartRecommenderResponse, * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class StartRecommenderCommand extends $Command diff --git a/clients/client-personalize/src/commands/StopRecommenderCommand.ts b/clients/client-personalize/src/commands/StopRecommenderCommand.ts index e877e7a1e4a2d..198cee4f21ec7 100644 --- a/clients/client-personalize/src/commands/StopRecommenderCommand.ts +++ b/clients/client-personalize/src/commands/StopRecommenderCommand.ts @@ -64,6 +64,7 @@ export interface StopRecommenderCommandOutput extends StopRecommenderResponse, _ * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class StopRecommenderCommand extends $Command diff --git a/clients/client-personalize/src/commands/StopSolutionVersionCreationCommand.ts b/clients/client-personalize/src/commands/StopSolutionVersionCreationCommand.ts index ef870ff0f4d63..633d626e356ab 100644 --- a/clients/client-personalize/src/commands/StopSolutionVersionCreationCommand.ts +++ b/clients/client-personalize/src/commands/StopSolutionVersionCreationCommand.ts @@ -75,6 +75,7 @@ export interface StopSolutionVersionCreationCommandOutput extends __MetadataBear * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class StopSolutionVersionCreationCommand extends $Command diff --git a/clients/client-personalize/src/commands/TagResourceCommand.ts b/clients/client-personalize/src/commands/TagResourceCommand.ts index 9bcc689c77800..d8de7b5b58408 100644 --- a/clients/client-personalize/src/commands/TagResourceCommand.ts +++ b/clients/client-personalize/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-personalize/src/commands/UntagResourceCommand.ts b/clients/client-personalize/src/commands/UntagResourceCommand.ts index 739363902dff5..fff38f75eb8e3 100644 --- a/clients/client-personalize/src/commands/UntagResourceCommand.ts +++ b/clients/client-personalize/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-personalize/src/commands/UpdateCampaignCommand.ts b/clients/client-personalize/src/commands/UpdateCampaignCommand.ts index 894b9a56bd880..3e8fc12e3583b 100644 --- a/clients/client-personalize/src/commands/UpdateCampaignCommand.ts +++ b/clients/client-personalize/src/commands/UpdateCampaignCommand.ts @@ -96,6 +96,7 @@ export interface UpdateCampaignCommandOutput extends UpdateCampaignResponse, __M * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class UpdateCampaignCommand extends $Command diff --git a/clients/client-personalize/src/commands/UpdateDatasetCommand.ts b/clients/client-personalize/src/commands/UpdateDatasetCommand.ts index cea58e38064b6..4fa5f0e6fcbaa 100644 --- a/clients/client-personalize/src/commands/UpdateDatasetCommand.ts +++ b/clients/client-personalize/src/commands/UpdateDatasetCommand.ts @@ -65,6 +65,7 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class UpdateDatasetCommand extends $Command diff --git a/clients/client-personalize/src/commands/UpdateMetricAttributionCommand.ts b/clients/client-personalize/src/commands/UpdateMetricAttributionCommand.ts index ab61243311e37..c9ba73803f7f5 100644 --- a/clients/client-personalize/src/commands/UpdateMetricAttributionCommand.ts +++ b/clients/client-personalize/src/commands/UpdateMetricAttributionCommand.ts @@ -84,6 +84,7 @@ export interface UpdateMetricAttributionCommandOutput extends UpdateMetricAttrib * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class UpdateMetricAttributionCommand extends $Command diff --git a/clients/client-personalize/src/commands/UpdateRecommenderCommand.ts b/clients/client-personalize/src/commands/UpdateRecommenderCommand.ts index 6905fa85cf875..ec32e655b3384 100644 --- a/clients/client-personalize/src/commands/UpdateRecommenderCommand.ts +++ b/clients/client-personalize/src/commands/UpdateRecommenderCommand.ts @@ -85,6 +85,7 @@ export interface UpdateRecommenderCommandOutput extends UpdateRecommenderRespons * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class UpdateRecommenderCommand extends $Command diff --git a/clients/client-personalize/src/commands/UpdateSolutionCommand.ts b/clients/client-personalize/src/commands/UpdateSolutionCommand.ts index 5a4b483fa35db..7e1e88d4499bd 100644 --- a/clients/client-personalize/src/commands/UpdateSolutionCommand.ts +++ b/clients/client-personalize/src/commands/UpdateSolutionCommand.ts @@ -82,6 +82,7 @@ export interface UpdateSolutionCommandOutput extends UpdateSolutionResponse, __M * @throws {@link PersonalizeServiceException} *

Base exception class for all service exceptions from Personalize service.

* + * * @public */ export class UpdateSolutionCommand extends $Command diff --git a/clients/client-pi/src/commands/CreatePerformanceAnalysisReportCommand.ts b/clients/client-pi/src/commands/CreatePerformanceAnalysisReportCommand.ts index e27a13d915e90..c5acde16a7417 100644 --- a/clients/client-pi/src/commands/CreatePerformanceAnalysisReportCommand.ts +++ b/clients/client-pi/src/commands/CreatePerformanceAnalysisReportCommand.ts @@ -79,6 +79,7 @@ export interface CreatePerformanceAnalysisReportCommandOutput * @throws {@link PIServiceException} *

Base exception class for all service exceptions from PI service.

* + * * @public */ export class CreatePerformanceAnalysisReportCommand extends $Command diff --git a/clients/client-pi/src/commands/DeletePerformanceAnalysisReportCommand.ts b/clients/client-pi/src/commands/DeletePerformanceAnalysisReportCommand.ts index a8a146ea54390..e40637a0e8eec 100644 --- a/clients/client-pi/src/commands/DeletePerformanceAnalysisReportCommand.ts +++ b/clients/client-pi/src/commands/DeletePerformanceAnalysisReportCommand.ts @@ -69,6 +69,7 @@ export interface DeletePerformanceAnalysisReportCommandOutput * @throws {@link PIServiceException} *

Base exception class for all service exceptions from PI service.

* + * * @public */ export class DeletePerformanceAnalysisReportCommand extends $Command diff --git a/clients/client-pi/src/commands/DescribeDimensionKeysCommand.ts b/clients/client-pi/src/commands/DescribeDimensionKeysCommand.ts index e516c4fa10b6d..be3db775ffd7e 100644 --- a/clients/client-pi/src/commands/DescribeDimensionKeysCommand.ts +++ b/clients/client-pi/src/commands/DescribeDimensionKeysCommand.ts @@ -119,6 +119,7 @@ export interface DescribeDimensionKeysCommandOutput extends DescribeDimensionKey * @throws {@link PIServiceException} *

Base exception class for all service exceptions from PI service.

* + * * @public */ export class DescribeDimensionKeysCommand extends $Command diff --git a/clients/client-pi/src/commands/GetDimensionKeyDetailsCommand.ts b/clients/client-pi/src/commands/GetDimensionKeyDetailsCommand.ts index a1d2174402c67..3506d7ce1f586 100644 --- a/clients/client-pi/src/commands/GetDimensionKeyDetailsCommand.ts +++ b/clients/client-pi/src/commands/GetDimensionKeyDetailsCommand.ts @@ -79,6 +79,7 @@ export interface GetDimensionKeyDetailsCommandOutput extends GetDimensionKeyDeta * @throws {@link PIServiceException} *

Base exception class for all service exceptions from PI service.

* + * * @public */ export class GetDimensionKeyDetailsCommand extends $Command diff --git a/clients/client-pi/src/commands/GetPerformanceAnalysisReportCommand.ts b/clients/client-pi/src/commands/GetPerformanceAnalysisReportCommand.ts index a0db9d337893d..0a88b96c15982 100644 --- a/clients/client-pi/src/commands/GetPerformanceAnalysisReportCommand.ts +++ b/clients/client-pi/src/commands/GetPerformanceAnalysisReportCommand.ts @@ -177,6 +177,7 @@ export interface GetPerformanceAnalysisReportCommandOutput * @throws {@link PIServiceException} *

Base exception class for all service exceptions from PI service.

* + * * @public */ export class GetPerformanceAnalysisReportCommand extends $Command diff --git a/clients/client-pi/src/commands/GetResourceMetadataCommand.ts b/clients/client-pi/src/commands/GetResourceMetadataCommand.ts index ca5196c63b505..272cd98af6229 100644 --- a/clients/client-pi/src/commands/GetResourceMetadataCommand.ts +++ b/clients/client-pi/src/commands/GetResourceMetadataCommand.ts @@ -72,6 +72,7 @@ export interface GetResourceMetadataCommandOutput extends GetResourceMetadataRes * @throws {@link PIServiceException} *

Base exception class for all service exceptions from PI service.

* + * * @public */ export class GetResourceMetadataCommand extends $Command diff --git a/clients/client-pi/src/commands/GetResourceMetricsCommand.ts b/clients/client-pi/src/commands/GetResourceMetricsCommand.ts index 4c5a5ed29caea..354b716d0ab6b 100644 --- a/clients/client-pi/src/commands/GetResourceMetricsCommand.ts +++ b/clients/client-pi/src/commands/GetResourceMetricsCommand.ts @@ -111,6 +111,7 @@ export interface GetResourceMetricsCommandOutput extends GetResourceMetricsRespo * @throws {@link PIServiceException} *

Base exception class for all service exceptions from PI service.

* + * * @public */ export class GetResourceMetricsCommand extends $Command diff --git a/clients/client-pi/src/commands/ListAvailableResourceDimensionsCommand.ts b/clients/client-pi/src/commands/ListAvailableResourceDimensionsCommand.ts index cafa4af60af5b..31afeb3d79e85 100644 --- a/clients/client-pi/src/commands/ListAvailableResourceDimensionsCommand.ts +++ b/clients/client-pi/src/commands/ListAvailableResourceDimensionsCommand.ts @@ -93,6 +93,7 @@ export interface ListAvailableResourceDimensionsCommandOutput * @throws {@link PIServiceException} *

Base exception class for all service exceptions from PI service.

* + * * @public */ export class ListAvailableResourceDimensionsCommand extends $Command diff --git a/clients/client-pi/src/commands/ListAvailableResourceMetricsCommand.ts b/clients/client-pi/src/commands/ListAvailableResourceMetricsCommand.ts index b9e090c450d17..17b71362b1ee3 100644 --- a/clients/client-pi/src/commands/ListAvailableResourceMetricsCommand.ts +++ b/clients/client-pi/src/commands/ListAvailableResourceMetricsCommand.ts @@ -83,6 +83,7 @@ export interface ListAvailableResourceMetricsCommandOutput * @throws {@link PIServiceException} *

Base exception class for all service exceptions from PI service.

* + * * @public */ export class ListAvailableResourceMetricsCommand extends $Command diff --git a/clients/client-pi/src/commands/ListPerformanceAnalysisReportsCommand.ts b/clients/client-pi/src/commands/ListPerformanceAnalysisReportsCommand.ts index 44c170fb5349c..93c083b6d1caa 100644 --- a/clients/client-pi/src/commands/ListPerformanceAnalysisReportsCommand.ts +++ b/clients/client-pi/src/commands/ListPerformanceAnalysisReportsCommand.ts @@ -88,6 +88,7 @@ export interface ListPerformanceAnalysisReportsCommandOutput * @throws {@link PIServiceException} *

Base exception class for all service exceptions from PI service.

* + * * @public */ export class ListPerformanceAnalysisReportsCommand extends $Command diff --git a/clients/client-pi/src/commands/ListTagsForResourceCommand.ts b/clients/client-pi/src/commands/ListTagsForResourceCommand.ts index 63eddd33ee7e9..d773ce7b643e7 100644 --- a/clients/client-pi/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pi/src/commands/ListTagsForResourceCommand.ts @@ -70,6 +70,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link PIServiceException} *

Base exception class for all service exceptions from PI service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-pi/src/commands/TagResourceCommand.ts b/clients/client-pi/src/commands/TagResourceCommand.ts index bebd15ef17ae4..5ef0b464cecca 100644 --- a/clients/client-pi/src/commands/TagResourceCommand.ts +++ b/clients/client-pi/src/commands/TagResourceCommand.ts @@ -69,6 +69,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link PIServiceException} *

Base exception class for all service exceptions from PI service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-pi/src/commands/UntagResourceCommand.ts b/clients/client-pi/src/commands/UntagResourceCommand.ts index b4e82f294fa76..ef8dce8f8dc85 100644 --- a/clients/client-pi/src/commands/UntagResourceCommand.ts +++ b/clients/client-pi/src/commands/UntagResourceCommand.ts @@ -66,6 +66,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link PIServiceException} *

Base exception class for all service exceptions from PI service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/CreateConfigurationSetCommand.ts b/clients/client-pinpoint-email/src/commands/CreateConfigurationSetCommand.ts index e43cbbe590048..80e09ddf65dd6 100644 --- a/clients/client-pinpoint-email/src/commands/CreateConfigurationSetCommand.ts +++ b/clients/client-pinpoint-email/src/commands/CreateConfigurationSetCommand.ts @@ -95,6 +95,7 @@ export interface CreateConfigurationSetCommandOutput extends CreateConfiguration * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class CreateConfigurationSetCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/CreateConfigurationSetEventDestinationCommand.ts b/clients/client-pinpoint-email/src/commands/CreateConfigurationSetEventDestinationCommand.ts index b0e6c72df58bd..3a8350e699e6f 100644 --- a/clients/client-pinpoint-email/src/commands/CreateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-pinpoint-email/src/commands/CreateConfigurationSetEventDestinationCommand.ts @@ -109,6 +109,7 @@ export interface CreateConfigurationSetEventDestinationCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class CreateConfigurationSetEventDestinationCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/CreateDedicatedIpPoolCommand.ts b/clients/client-pinpoint-email/src/commands/CreateDedicatedIpPoolCommand.ts index 83e77b1747b5b..9290b392e5c81 100644 --- a/clients/client-pinpoint-email/src/commands/CreateDedicatedIpPoolCommand.ts +++ b/clients/client-pinpoint-email/src/commands/CreateDedicatedIpPoolCommand.ts @@ -77,6 +77,7 @@ export interface CreateDedicatedIpPoolCommandOutput extends CreateDedicatedIpPoo * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class CreateDedicatedIpPoolCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/CreateDeliverabilityTestReportCommand.ts b/clients/client-pinpoint-email/src/commands/CreateDeliverabilityTestReportCommand.ts index 3112b29b44059..60b8b8598b9eb 100644 --- a/clients/client-pinpoint-email/src/commands/CreateDeliverabilityTestReportCommand.ts +++ b/clients/client-pinpoint-email/src/commands/CreateDeliverabilityTestReportCommand.ts @@ -128,6 +128,7 @@ export interface CreateDeliverabilityTestReportCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class CreateDeliverabilityTestReportCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/CreateEmailIdentityCommand.ts b/clients/client-pinpoint-email/src/commands/CreateEmailIdentityCommand.ts index 081d8f0284e98..7074e0d35116f 100644 --- a/clients/client-pinpoint-email/src/commands/CreateEmailIdentityCommand.ts +++ b/clients/client-pinpoint-email/src/commands/CreateEmailIdentityCommand.ts @@ -94,6 +94,7 @@ export interface CreateEmailIdentityCommandOutput extends CreateEmailIdentityRes * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class CreateEmailIdentityCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetCommand.ts b/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetCommand.ts index 18e7ac93125be..d8dc2deedd7aa 100644 --- a/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetCommand.ts +++ b/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetCommand.ts @@ -70,6 +70,7 @@ export interface DeleteConfigurationSetCommandOutput extends DeleteConfiguration * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class DeleteConfigurationSetCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetEventDestinationCommand.ts b/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetEventDestinationCommand.ts index 62ea03e68272f..bab0fa71cecc9 100644 --- a/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetEventDestinationCommand.ts +++ b/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetEventDestinationCommand.ts @@ -77,6 +77,7 @@ export interface DeleteConfigurationSetEventDestinationCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class DeleteConfigurationSetEventDestinationCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/DeleteDedicatedIpPoolCommand.ts b/clients/client-pinpoint-email/src/commands/DeleteDedicatedIpPoolCommand.ts index 5737ff4e96329..83618131f32bf 100644 --- a/clients/client-pinpoint-email/src/commands/DeleteDedicatedIpPoolCommand.ts +++ b/clients/client-pinpoint-email/src/commands/DeleteDedicatedIpPoolCommand.ts @@ -65,6 +65,7 @@ export interface DeleteDedicatedIpPoolCommandOutput extends DeleteDedicatedIpPoo * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class DeleteDedicatedIpPoolCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/DeleteEmailIdentityCommand.ts b/clients/client-pinpoint-email/src/commands/DeleteEmailIdentityCommand.ts index 840b451c7f387..f188a77325c8e 100644 --- a/clients/client-pinpoint-email/src/commands/DeleteEmailIdentityCommand.ts +++ b/clients/client-pinpoint-email/src/commands/DeleteEmailIdentityCommand.ts @@ -66,6 +66,7 @@ export interface DeleteEmailIdentityCommandOutput extends DeleteEmailIdentityRes * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class DeleteEmailIdentityCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/GetAccountCommand.ts b/clients/client-pinpoint-email/src/commands/GetAccountCommand.ts index a39ae121c7092..53671fccc0e92 100644 --- a/clients/client-pinpoint-email/src/commands/GetAccountCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetAccountCommand.ts @@ -68,6 +68,7 @@ export interface GetAccountCommandOutput extends GetAccountResponse, __MetadataB * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class GetAccountCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/GetBlacklistReportsCommand.ts b/clients/client-pinpoint-email/src/commands/GetBlacklistReportsCommand.ts index 2aa507bc66ba2..45db8b7388a3e 100644 --- a/clients/client-pinpoint-email/src/commands/GetBlacklistReportsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetBlacklistReportsCommand.ts @@ -74,6 +74,7 @@ export interface GetBlacklistReportsCommandOutput extends GetBlacklistReportsRes * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class GetBlacklistReportsCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/GetConfigurationSetCommand.ts b/clients/client-pinpoint-email/src/commands/GetConfigurationSetCommand.ts index 30d6b518ef15a..286f9b9419cd1 100644 --- a/clients/client-pinpoint-email/src/commands/GetConfigurationSetCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetConfigurationSetCommand.ts @@ -91,6 +91,7 @@ export interface GetConfigurationSetCommandOutput extends GetConfigurationSetRes * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class GetConfigurationSetCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/GetConfigurationSetEventDestinationsCommand.ts b/clients/client-pinpoint-email/src/commands/GetConfigurationSetEventDestinationsCommand.ts index dbeb0612222e9..59a04cf098d33 100644 --- a/clients/client-pinpoint-email/src/commands/GetConfigurationSetEventDestinationsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetConfigurationSetEventDestinationsCommand.ts @@ -105,6 +105,7 @@ export interface GetConfigurationSetEventDestinationsCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class GetConfigurationSetEventDestinationsCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/GetDedicatedIpCommand.ts b/clients/client-pinpoint-email/src/commands/GetDedicatedIpCommand.ts index b4563c5953ac6..4d370131535b3 100644 --- a/clients/client-pinpoint-email/src/commands/GetDedicatedIpCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetDedicatedIpCommand.ts @@ -71,6 +71,7 @@ export interface GetDedicatedIpCommandOutput extends GetDedicatedIpResponse, __M * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class GetDedicatedIpCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/GetDedicatedIpsCommand.ts b/clients/client-pinpoint-email/src/commands/GetDedicatedIpsCommand.ts index b6e4baf096adb..2a6a96b2231b1 100644 --- a/clients/client-pinpoint-email/src/commands/GetDedicatedIpsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetDedicatedIpsCommand.ts @@ -75,6 +75,7 @@ export interface GetDedicatedIpsCommandOutput extends GetDedicatedIpsResponse, _ * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class GetDedicatedIpsCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/GetDeliverabilityDashboardOptionsCommand.ts b/clients/client-pinpoint-email/src/commands/GetDeliverabilityDashboardOptionsCommand.ts index 2832dd7947c05..97d7fa27b8842 100644 --- a/clients/client-pinpoint-email/src/commands/GetDeliverabilityDashboardOptionsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetDeliverabilityDashboardOptionsCommand.ts @@ -102,6 +102,7 @@ export interface GetDeliverabilityDashboardOptionsCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class GetDeliverabilityDashboardOptionsCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/GetDeliverabilityTestReportCommand.ts b/clients/client-pinpoint-email/src/commands/GetDeliverabilityTestReportCommand.ts index e65bf3d9cb7d1..42ac0f1915153 100644 --- a/clients/client-pinpoint-email/src/commands/GetDeliverabilityTestReportCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetDeliverabilityTestReportCommand.ts @@ -102,6 +102,7 @@ export interface GetDeliverabilityTestReportCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class GetDeliverabilityTestReportCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/GetDomainDeliverabilityCampaignCommand.ts b/clients/client-pinpoint-email/src/commands/GetDomainDeliverabilityCampaignCommand.ts index aa50657242b66..bf1491f31c8a7 100644 --- a/clients/client-pinpoint-email/src/commands/GetDomainDeliverabilityCampaignCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetDomainDeliverabilityCampaignCommand.ts @@ -91,6 +91,7 @@ export interface GetDomainDeliverabilityCampaignCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class GetDomainDeliverabilityCampaignCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/GetDomainStatisticsReportCommand.ts b/clients/client-pinpoint-email/src/commands/GetDomainStatisticsReportCommand.ts index 63ee67ab08722..cf1426106ee85 100644 --- a/clients/client-pinpoint-email/src/commands/GetDomainStatisticsReportCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetDomainStatisticsReportCommand.ts @@ -104,6 +104,7 @@ export interface GetDomainStatisticsReportCommandOutput extends GetDomainStatist * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class GetDomainStatisticsReportCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/GetEmailIdentityCommand.ts b/clients/client-pinpoint-email/src/commands/GetEmailIdentityCommand.ts index d937f54ca6a61..758362949a527 100644 --- a/clients/client-pinpoint-email/src/commands/GetEmailIdentityCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetEmailIdentityCommand.ts @@ -86,6 +86,7 @@ export interface GetEmailIdentityCommandOutput extends GetEmailIdentityResponse, * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class GetEmailIdentityCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/ListConfigurationSetsCommand.ts b/clients/client-pinpoint-email/src/commands/ListConfigurationSetsCommand.ts index 04c2b5a1f7b26..bc8d4c8e205e6 100644 --- a/clients/client-pinpoint-email/src/commands/ListConfigurationSetsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/ListConfigurationSetsCommand.ts @@ -71,6 +71,7 @@ export interface ListConfigurationSetsCommandOutput extends ListConfigurationSet * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class ListConfigurationSetsCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/ListDedicatedIpPoolsCommand.ts b/clients/client-pinpoint-email/src/commands/ListDedicatedIpPoolsCommand.ts index 6953185f3f683..4dd23997dec09 100644 --- a/clients/client-pinpoint-email/src/commands/ListDedicatedIpPoolsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/ListDedicatedIpPoolsCommand.ts @@ -66,6 +66,7 @@ export interface ListDedicatedIpPoolsCommandOutput extends ListDedicatedIpPoolsR * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class ListDedicatedIpPoolsCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/ListDeliverabilityTestReportsCommand.ts b/clients/client-pinpoint-email/src/commands/ListDeliverabilityTestReportsCommand.ts index fa3d378a19e54..6626546d3afe9 100644 --- a/clients/client-pinpoint-email/src/commands/ListDeliverabilityTestReportsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/ListDeliverabilityTestReportsCommand.ts @@ -82,6 +82,7 @@ export interface ListDeliverabilityTestReportsCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class ListDeliverabilityTestReportsCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/ListDomainDeliverabilityCampaignsCommand.ts b/clients/client-pinpoint-email/src/commands/ListDomainDeliverabilityCampaignsCommand.ts index 7dc562d8b2abf..5b0f3a562630d 100644 --- a/clients/client-pinpoint-email/src/commands/ListDomainDeliverabilityCampaignsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/ListDomainDeliverabilityCampaignsCommand.ts @@ -101,6 +101,7 @@ export interface ListDomainDeliverabilityCampaignsCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class ListDomainDeliverabilityCampaignsCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/ListEmailIdentitiesCommand.ts b/clients/client-pinpoint-email/src/commands/ListEmailIdentitiesCommand.ts index 4c6fd9f875d0a..a769460998fec 100644 --- a/clients/client-pinpoint-email/src/commands/ListEmailIdentitiesCommand.ts +++ b/clients/client-pinpoint-email/src/commands/ListEmailIdentitiesCommand.ts @@ -71,6 +71,7 @@ export interface ListEmailIdentitiesCommandOutput extends ListEmailIdentitiesRes * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class ListEmailIdentitiesCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/ListTagsForResourceCommand.ts b/clients/client-pinpoint-email/src/commands/ListTagsForResourceCommand.ts index 1e460b6ac48b5..67d5ff73f76bc 100644 --- a/clients/client-pinpoint-email/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pinpoint-email/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts b/clients/client-pinpoint-email/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts index 45ad187d1aa62..9025dc0f5eb67 100644 --- a/clients/client-pinpoint-email/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts @@ -68,6 +68,7 @@ export interface PutAccountDedicatedIpWarmupAttributesCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class PutAccountDedicatedIpWarmupAttributesCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/PutAccountSendingAttributesCommand.ts b/clients/client-pinpoint-email/src/commands/PutAccountSendingAttributesCommand.ts index 1f25df6ac7ef0..8f68b1757c686 100644 --- a/clients/client-pinpoint-email/src/commands/PutAccountSendingAttributesCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutAccountSendingAttributesCommand.ts @@ -64,6 +64,7 @@ export interface PutAccountSendingAttributesCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class PutAccountSendingAttributesCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts b/clients/client-pinpoint-email/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts index b68c059c6475d..81840c5e4b7e7 100644 --- a/clients/client-pinpoint-email/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts @@ -73,6 +73,7 @@ export interface PutConfigurationSetDeliveryOptionsCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class PutConfigurationSetDeliveryOptionsCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/PutConfigurationSetReputationOptionsCommand.ts b/clients/client-pinpoint-email/src/commands/PutConfigurationSetReputationOptionsCommand.ts index 5e2d7ce628f90..6f52fbae708e5 100644 --- a/clients/client-pinpoint-email/src/commands/PutConfigurationSetReputationOptionsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutConfigurationSetReputationOptionsCommand.ts @@ -72,6 +72,7 @@ export interface PutConfigurationSetReputationOptionsCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class PutConfigurationSetReputationOptionsCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/PutConfigurationSetSendingOptionsCommand.ts b/clients/client-pinpoint-email/src/commands/PutConfigurationSetSendingOptionsCommand.ts index 893f995d83997..83e048e3284fe 100644 --- a/clients/client-pinpoint-email/src/commands/PutConfigurationSetSendingOptionsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutConfigurationSetSendingOptionsCommand.ts @@ -72,6 +72,7 @@ export interface PutConfigurationSetSendingOptionsCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class PutConfigurationSetSendingOptionsCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/PutConfigurationSetTrackingOptionsCommand.ts b/clients/client-pinpoint-email/src/commands/PutConfigurationSetTrackingOptionsCommand.ts index 04abcf968fa8f..878ba11d1a9ac 100644 --- a/clients/client-pinpoint-email/src/commands/PutConfigurationSetTrackingOptionsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutConfigurationSetTrackingOptionsCommand.ts @@ -72,6 +72,7 @@ export interface PutConfigurationSetTrackingOptionsCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class PutConfigurationSetTrackingOptionsCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/PutDedicatedIpInPoolCommand.ts b/clients/client-pinpoint-email/src/commands/PutDedicatedIpInPoolCommand.ts index d077fd08ecdca..9b2543faab3f1 100644 --- a/clients/client-pinpoint-email/src/commands/PutDedicatedIpInPoolCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutDedicatedIpInPoolCommand.ts @@ -72,6 +72,7 @@ export interface PutDedicatedIpInPoolCommandOutput extends PutDedicatedIpInPoolR * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class PutDedicatedIpInPoolCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/PutDedicatedIpWarmupAttributesCommand.ts b/clients/client-pinpoint-email/src/commands/PutDedicatedIpWarmupAttributesCommand.ts index 3abaaa80460cd..63ac20c98c47a 100644 --- a/clients/client-pinpoint-email/src/commands/PutDedicatedIpWarmupAttributesCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutDedicatedIpWarmupAttributesCommand.ts @@ -68,6 +68,7 @@ export interface PutDedicatedIpWarmupAttributesCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class PutDedicatedIpWarmupAttributesCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/PutDeliverabilityDashboardOptionCommand.ts b/clients/client-pinpoint-email/src/commands/PutDeliverabilityDashboardOptionCommand.ts index e5605441b24df..0ec11e75ddc31 100644 --- a/clients/client-pinpoint-email/src/commands/PutDeliverabilityDashboardOptionCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutDeliverabilityDashboardOptionCommand.ts @@ -91,6 +91,7 @@ export interface PutDeliverabilityDashboardOptionCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class PutDeliverabilityDashboardOptionCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/PutEmailIdentityDkimAttributesCommand.ts b/clients/client-pinpoint-email/src/commands/PutEmailIdentityDkimAttributesCommand.ts index 7986c13fc1376..d53df77bc3518 100644 --- a/clients/client-pinpoint-email/src/commands/PutEmailIdentityDkimAttributesCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutEmailIdentityDkimAttributesCommand.ts @@ -68,6 +68,7 @@ export interface PutEmailIdentityDkimAttributesCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class PutEmailIdentityDkimAttributesCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts b/clients/client-pinpoint-email/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts index 1ddbd3151a8ab..9948686f54513 100644 --- a/clients/client-pinpoint-email/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts @@ -81,6 +81,7 @@ export interface PutEmailIdentityFeedbackAttributesCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class PutEmailIdentityFeedbackAttributesCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/PutEmailIdentityMailFromAttributesCommand.ts b/clients/client-pinpoint-email/src/commands/PutEmailIdentityMailFromAttributesCommand.ts index c5449b22712ad..dbb404e0254f9 100644 --- a/clients/client-pinpoint-email/src/commands/PutEmailIdentityMailFromAttributesCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutEmailIdentityMailFromAttributesCommand.ts @@ -73,6 +73,7 @@ export interface PutEmailIdentityMailFromAttributesCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class PutEmailIdentityMailFromAttributesCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/SendEmailCommand.ts b/clients/client-pinpoint-email/src/commands/SendEmailCommand.ts index f489c03f1a46e..20766e375fee8 100644 --- a/clients/client-pinpoint-email/src/commands/SendEmailCommand.ts +++ b/clients/client-pinpoint-email/src/commands/SendEmailCommand.ts @@ -145,6 +145,7 @@ export interface SendEmailCommandOutput extends SendEmailResponse, __MetadataBea * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class SendEmailCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/TagResourceCommand.ts b/clients/client-pinpoint-email/src/commands/TagResourceCommand.ts index 8d1ad3a376da1..32bebee194fd6 100644 --- a/clients/client-pinpoint-email/src/commands/TagResourceCommand.ts +++ b/clients/client-pinpoint-email/src/commands/TagResourceCommand.ts @@ -79,6 +79,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/UntagResourceCommand.ts b/clients/client-pinpoint-email/src/commands/UntagResourceCommand.ts index 2e3a563908e80..243c230b7bd84 100644 --- a/clients/client-pinpoint-email/src/commands/UntagResourceCommand.ts +++ b/clients/client-pinpoint-email/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-pinpoint-email/src/commands/UpdateConfigurationSetEventDestinationCommand.ts b/clients/client-pinpoint-email/src/commands/UpdateConfigurationSetEventDestinationCommand.ts index 3260386151e74..aa250ddc64016 100644 --- a/clients/client-pinpoint-email/src/commands/UpdateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-pinpoint-email/src/commands/UpdateConfigurationSetEventDestinationCommand.ts @@ -102,6 +102,7 @@ export interface UpdateConfigurationSetEventDestinationCommandOutput * @throws {@link PinpointEmailServiceException} *

Base exception class for all service exceptions from PinpointEmail service.

* + * * @public */ export class UpdateConfigurationSetEventDestinationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateOriginationIdentityCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateOriginationIdentityCommand.ts index ea4700465fac2..87d0b59c71411 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateOriginationIdentityCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateOriginationIdentityCommand.ts @@ -102,6 +102,7 @@ export interface AssociateOriginationIdentityCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class AssociateOriginationIdentityCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateProtectConfigurationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateProtectConfigurationCommand.ts index d9db704053962..72df41d85edbb 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateProtectConfigurationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateProtectConfigurationCommand.ts @@ -95,6 +95,7 @@ export interface AssociateProtectConfigurationCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class AssociateProtectConfigurationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateConfigurationSetCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateConfigurationSetCommand.ts index ac019f54ebafb..5d02e02cef18f 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateConfigurationSetCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateConfigurationSetCommand.ts @@ -102,6 +102,7 @@ export interface CreateConfigurationSetCommandOutput extends CreateConfiguration * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class CreateConfigurationSetCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateEventDestinationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateEventDestinationCommand.ts index 26628de924e46..2dea9543e8b28 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateEventDestinationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateEventDestinationCommand.ts @@ -129,6 +129,7 @@ export interface CreateEventDestinationCommandOutput extends CreateEventDestinat * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class CreateEventDestinationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateOptOutListCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateOptOutListCommand.ts index 019e599150b12..40c99323cd989 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateOptOutListCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateOptOutListCommand.ts @@ -105,6 +105,7 @@ export interface CreateOptOutListCommandOutput extends CreateOptOutListResult, _ * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class CreateOptOutListCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreatePoolCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreatePoolCommand.ts index 5c5f39a14dbd3..9c1bad1ac5491 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreatePoolCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreatePoolCommand.ts @@ -121,6 +121,7 @@ export interface CreatePoolCommandOutput extends CreatePoolResult, __MetadataBea * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class CreatePoolCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateProtectConfigurationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateProtectConfigurationCommand.ts index cfc3a81663d15..d5b5b4b52c6c8 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateProtectConfigurationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateProtectConfigurationCommand.ts @@ -94,6 +94,7 @@ export interface CreateProtectConfigurationCommandOutput extends CreateProtectCo * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class CreateProtectConfigurationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAssociationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAssociationCommand.ts index a55a9925b22f2..9e4d662d841b6 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAssociationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAssociationCommand.ts @@ -99,6 +99,7 @@ export interface CreateRegistrationAssociationCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class CreateRegistrationAssociationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAttachmentCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAttachmentCommand.ts index ca12cc6c332bf..a6fff27fc9d21 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAttachmentCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAttachmentCommand.ts @@ -109,6 +109,7 @@ export interface CreateRegistrationAttachmentCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class CreateRegistrationAttachmentCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationCommand.ts index 15b77175d0d7a..98d6178dfbd68 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationCommand.ts @@ -104,6 +104,7 @@ export interface CreateRegistrationCommandOutput extends CreateRegistrationResul * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class CreateRegistrationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationVersionCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationVersionCommand.ts index ab7e4af1fe78e..47b3c8fd7bdc7 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationVersionCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationVersionCommand.ts @@ -100,6 +100,7 @@ export interface CreateRegistrationVersionCommandOutput extends CreateRegistrati * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class CreateRegistrationVersionCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateVerifiedDestinationNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateVerifiedDestinationNumberCommand.ts index 0321d7a7548ba..addbacc94640c 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateVerifiedDestinationNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateVerifiedDestinationNumberCommand.ts @@ -106,6 +106,7 @@ export interface CreateVerifiedDestinationNumberCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class CreateVerifiedDestinationNumberCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteAccountDefaultProtectConfigurationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteAccountDefaultProtectConfigurationCommand.ts index 57b82a1a41728..289c2cb1bde21 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteAccountDefaultProtectConfigurationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteAccountDefaultProtectConfigurationCommand.ts @@ -85,6 +85,7 @@ export interface DeleteAccountDefaultProtectConfigurationCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteAccountDefaultProtectConfigurationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteConfigurationSetCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteConfigurationSetCommand.ts index 30f67743e65e7..1acb5b8ccf6dd 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteConfigurationSetCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteConfigurationSetCommand.ts @@ -105,6 +105,7 @@ export interface DeleteConfigurationSetCommandOutput extends DeleteConfiguration * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteConfigurationSetCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultMessageTypeCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultMessageTypeCommand.ts index 93aba47206c6f..cd0a5e48e582f 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultMessageTypeCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultMessageTypeCommand.ts @@ -84,6 +84,7 @@ export interface DeleteDefaultMessageTypeCommandOutput extends DeleteDefaultMess * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteDefaultMessageTypeCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultSenderIdCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultSenderIdCommand.ts index 80fd9d1b4f87f..4e258014d8124 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultSenderIdCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultSenderIdCommand.ts @@ -82,6 +82,7 @@ export interface DeleteDefaultSenderIdCommandOutput extends DeleteDefaultSenderI * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteDefaultSenderIdCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteEventDestinationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteEventDestinationCommand.ts index 0d0088011835c..dfa4effa53b78 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteEventDestinationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteEventDestinationCommand.ts @@ -101,6 +101,7 @@ export interface DeleteEventDestinationCommandOutput extends DeleteEventDestinat * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteEventDestinationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteKeywordCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteKeywordCommand.ts index a5c5955ee20a0..074260ea0697c 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteKeywordCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteKeywordCommand.ts @@ -94,6 +94,7 @@ export interface DeleteKeywordCommandOutput extends DeleteKeywordResult, __Metad * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteKeywordCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteMediaMessageSpendLimitOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteMediaMessageSpendLimitOverrideCommand.ts index e39c5fd58d95e..d1728206b1e95 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteMediaMessageSpendLimitOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteMediaMessageSpendLimitOverrideCommand.ts @@ -84,6 +84,7 @@ export interface DeleteMediaMessageSpendLimitOverrideCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteMediaMessageSpendLimitOverrideCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptOutListCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptOutListCommand.ts index ae7246fc4658e..6f98f7e9e0717 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptOutListCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptOutListCommand.ts @@ -88,6 +88,7 @@ export interface DeleteOptOutListCommandOutput extends DeleteOptOutListResult, _ * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteOptOutListCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptedOutNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptedOutNumberCommand.ts index 3d1b91d87d46f..152ed38c1da84 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptedOutNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptedOutNumberCommand.ts @@ -92,6 +92,7 @@ export interface DeleteOptedOutNumberCommandOutput extends DeleteOptedOutNumberR * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteOptedOutNumberCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeletePoolCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeletePoolCommand.ts index 2d469b219d42d..7a8ca85b3178a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeletePoolCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeletePoolCommand.ts @@ -99,6 +99,7 @@ export interface DeletePoolCommandOutput extends DeletePoolResult, __MetadataBea * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeletePoolCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationCommand.ts index f113aef9ab739..c166958957cef 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationCommand.ts @@ -87,6 +87,7 @@ export interface DeleteProtectConfigurationCommandOutput extends DeleteProtectCo * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteProtectConfigurationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationRuleSetNumberOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationRuleSetNumberOverrideCommand.ts index 466a06285b4e9..ce19319b61f7e 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationRuleSetNumberOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationRuleSetNumberOverrideCommand.ts @@ -93,6 +93,7 @@ export interface DeleteProtectConfigurationRuleSetNumberOverrideCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteProtectConfigurationRuleSetNumberOverrideCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationAttachmentCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationAttachmentCommand.ts index d908a6d385109..b878c0ba61ffb 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationAttachmentCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationAttachmentCommand.ts @@ -92,6 +92,7 @@ export interface DeleteRegistrationAttachmentCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteRegistrationAttachmentCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationCommand.ts index 4324e0c183d0e..9a815a6777fd7 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationCommand.ts @@ -93,6 +93,7 @@ export interface DeleteRegistrationCommandOutput extends DeleteRegistrationResul * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteRegistrationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationFieldValueCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationFieldValueCommand.ts index ff0aba2e06b4c..c21325dea0fbf 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationFieldValueCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationFieldValueCommand.ts @@ -97,6 +97,7 @@ export interface DeleteRegistrationFieldValueCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteRegistrationFieldValueCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteResourcePolicyCommand.ts index 6f0fa48a0a46d..e042a59822e45 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteResourcePolicyCommand.ts @@ -79,6 +79,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteTextMessageSpendLimitOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteTextMessageSpendLimitOverrideCommand.ts index b3b612aa93405..72c8ef9674acb 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteTextMessageSpendLimitOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteTextMessageSpendLimitOverrideCommand.ts @@ -84,6 +84,7 @@ export interface DeleteTextMessageSpendLimitOverrideCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteTextMessageSpendLimitOverrideCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVerifiedDestinationNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVerifiedDestinationNumberCommand.ts index 8e87791e8b2b8..3f2063a4469f5 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVerifiedDestinationNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVerifiedDestinationNumberCommand.ts @@ -91,6 +91,7 @@ export interface DeleteVerifiedDestinationNumberCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteVerifiedDestinationNumberCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVoiceMessageSpendLimitOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVoiceMessageSpendLimitOverrideCommand.ts index aac92712e0788..9c9b6ac0b1823 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVoiceMessageSpendLimitOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVoiceMessageSpendLimitOverrideCommand.ts @@ -84,6 +84,7 @@ export interface DeleteVoiceMessageSpendLimitOverrideCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DeleteVoiceMessageSpendLimitOverrideCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountAttributesCommand.ts index a94671ebd8042..f36d3e368ce86 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountAttributesCommand.ts @@ -87,6 +87,7 @@ export interface DescribeAccountAttributesCommandOutput extends DescribeAccountA * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeAccountAttributesCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountLimitsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountLimitsCommand.ts index 50341a861972d..4068f0cd90841 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountLimitsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountLimitsCommand.ts @@ -88,6 +88,7 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeAccountLimitsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeConfigurationSetsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeConfigurationSetsCommand.ts index 3927fe2d8828b..3ba5d6c8f58a7 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeConfigurationSetsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeConfigurationSetsCommand.ts @@ -126,6 +126,7 @@ export interface DescribeConfigurationSetsCommandOutput extends DescribeConfigur * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeConfigurationSetsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeKeywordsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeKeywordsCommand.ts index eec971ec6a366..62dd14741791a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeKeywordsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeKeywordsCommand.ts @@ -106,6 +106,7 @@ export interface DescribeKeywordsCommandOutput extends DescribeKeywordsResult, _ * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeKeywordsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptOutListsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptOutListsCommand.ts index 17434070f609c..fceabc3af408b 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptOutListsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptOutListsCommand.ts @@ -94,6 +94,7 @@ export interface DescribeOptOutListsCommandOutput extends DescribeOptOutListsRes * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeOptOutListsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptedOutNumbersCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptedOutNumbersCommand.ts index 9abce9bca5d39..3c8191b89d253 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptedOutNumbersCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptedOutNumbersCommand.ts @@ -106,6 +106,7 @@ export interface DescribeOptedOutNumbersCommandOutput extends DescribeOptedOutNu * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeOptedOutNumbersCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePhoneNumbersCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePhoneNumbersCommand.ts index be9a52ecf1d93..a46615b636859 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePhoneNumbersCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePhoneNumbersCommand.ts @@ -120,6 +120,7 @@ export interface DescribePhoneNumbersCommandOutput extends DescribePhoneNumbersR * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribePhoneNumbersCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePoolsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePoolsCommand.ts index b88d8754eb684..b0f9eb3a13ed9 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePoolsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePoolsCommand.ts @@ -115,6 +115,7 @@ export interface DescribePoolsCommandOutput extends DescribePoolsResult, __Metad * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribePoolsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeProtectConfigurationsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeProtectConfigurationsCommand.ts index ae27080d86f32..9cb9594e3de68 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeProtectConfigurationsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeProtectConfigurationsCommand.ts @@ -103,6 +103,7 @@ export interface DescribeProtectConfigurationsCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeProtectConfigurationsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationAttachmentsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationAttachmentsCommand.ts index a50f342a66fcb..0bdbae1836de5 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationAttachmentsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationAttachmentsCommand.ts @@ -103,6 +103,7 @@ export interface DescribeRegistrationAttachmentsCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeRegistrationAttachmentsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldDefinitionsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldDefinitionsCommand.ts index 68c8205bf1f81..1d0230abe9b65 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldDefinitionsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldDefinitionsCommand.ts @@ -125,6 +125,7 @@ export interface DescribeRegistrationFieldDefinitionsCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeRegistrationFieldDefinitionsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldValuesCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldValuesCommand.ts index b9d0dde6bbb1b..6ffbbb5a47e54 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldValuesCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldValuesCommand.ts @@ -103,6 +103,7 @@ export interface DescribeRegistrationFieldValuesCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeRegistrationFieldValuesCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationSectionDefinitionsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationSectionDefinitionsCommand.ts index b75b6d44b5cd4..0db5869ea0f19 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationSectionDefinitionsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationSectionDefinitionsCommand.ts @@ -101,6 +101,7 @@ export interface DescribeRegistrationSectionDefinitionsCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeRegistrationSectionDefinitionsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationTypeDefinitionsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationTypeDefinitionsCommand.ts index ee7cf3223bc75..fd9a84ba67ca5 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationTypeDefinitionsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationTypeDefinitionsCommand.ts @@ -114,6 +114,7 @@ export interface DescribeRegistrationTypeDefinitionsCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeRegistrationTypeDefinitionsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationVersionsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationVersionsCommand.ts index e436a9c090048..ba4b85250823a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationVersionsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationVersionsCommand.ts @@ -123,6 +123,7 @@ export interface DescribeRegistrationVersionsCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeRegistrationVersionsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationsCommand.ts index 709a12f5e89f1..61967d97571bc 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationsCommand.ts @@ -104,6 +104,7 @@ export interface DescribeRegistrationsCommandOutput extends DescribeRegistration * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeRegistrationsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSenderIdsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSenderIdsCommand.ts index 424fdbc38d5ea..7b30543b9528d 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSenderIdsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSenderIdsCommand.ts @@ -112,6 +112,7 @@ export interface DescribeSenderIdsCommandOutput extends DescribeSenderIdsResult, * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeSenderIdsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSpendLimitsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSpendLimitsCommand.ts index 20526ef0c6b65..510fbe4c34fd2 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSpendLimitsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSpendLimitsCommand.ts @@ -89,6 +89,7 @@ export interface DescribeSpendLimitsCommandOutput extends DescribeSpendLimitsRes * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeSpendLimitsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeVerifiedDestinationNumbersCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeVerifiedDestinationNumbersCommand.ts index f0c5d7becbe82..1c05766313dc6 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeVerifiedDestinationNumbersCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeVerifiedDestinationNumbersCommand.ts @@ -109,6 +109,7 @@ export interface DescribeVerifiedDestinationNumbersCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DescribeVerifiedDestinationNumbersCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateOriginationIdentityCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateOriginationIdentityCommand.ts index 95ff6d4cdc0de..92d9b3ac2df0a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateOriginationIdentityCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateOriginationIdentityCommand.ts @@ -97,6 +97,7 @@ export interface DisassociateOriginationIdentityCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DisassociateOriginationIdentityCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateProtectConfigurationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateProtectConfigurationCommand.ts index ecc9912ecb529..6cfdee0fed4f1 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateProtectConfigurationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateProtectConfigurationCommand.ts @@ -92,6 +92,7 @@ export interface DisassociateProtectConfigurationCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DisassociateProtectConfigurationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DiscardRegistrationVersionCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DiscardRegistrationVersionCommand.ts index dca35c18a5eb5..132e23dfd1200 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DiscardRegistrationVersionCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DiscardRegistrationVersionCommand.ts @@ -97,6 +97,7 @@ export interface DiscardRegistrationVersionCommandOutput extends DiscardRegistra * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class DiscardRegistrationVersionCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/GetProtectConfigurationCountryRuleSetCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/GetProtectConfigurationCountryRuleSetCommand.ts index 09c55cb3ff98d..de983e30be0d1 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/GetProtectConfigurationCountryRuleSetCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/GetProtectConfigurationCountryRuleSetCommand.ts @@ -94,6 +94,7 @@ export interface GetProtectConfigurationCountryRuleSetCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class GetProtectConfigurationCountryRuleSetCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/GetResourcePolicyCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/GetResourcePolicyCommand.ts index fa9df53d5d86c..84f63fe2f4059 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/GetResourcePolicyCommand.ts @@ -79,6 +79,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyResult, * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/ListPoolOriginationIdentitiesCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/ListPoolOriginationIdentitiesCommand.ts index 28e3a79b78fe4..ad11fb7819854 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/ListPoolOriginationIdentitiesCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/ListPoolOriginationIdentitiesCommand.ts @@ -107,6 +107,7 @@ export interface ListPoolOriginationIdentitiesCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class ListPoolOriginationIdentitiesCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/ListProtectConfigurationRuleSetNumberOverridesCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/ListProtectConfigurationRuleSetNumberOverridesCommand.ts index 90713c3a16180..0602bf8c4cd88 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/ListProtectConfigurationRuleSetNumberOverridesCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/ListProtectConfigurationRuleSetNumberOverridesCommand.ts @@ -107,6 +107,7 @@ export interface ListProtectConfigurationRuleSetNumberOverridesCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class ListProtectConfigurationRuleSetNumberOverridesCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/ListRegistrationAssociationsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/ListRegistrationAssociationsCommand.ts index dae0b120c3291..5cede9852bfce 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/ListRegistrationAssociationsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/ListRegistrationAssociationsCommand.ts @@ -104,6 +104,7 @@ export interface ListRegistrationAssociationsCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class ListRegistrationAssociationsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/ListTagsForResourceCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/ListTagsForResourceCommand.ts index 3a2e17389262e..1675f14a49393 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/ListTagsForResourceCommand.ts @@ -83,6 +83,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/PutKeywordCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/PutKeywordCommand.ts index 79a53afee79e4..be7156bd01edd 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/PutKeywordCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/PutKeywordCommand.ts @@ -100,6 +100,7 @@ export interface PutKeywordCommandOutput extends PutKeywordResult, __MetadataBea * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class PutKeywordCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/PutMessageFeedbackCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/PutMessageFeedbackCommand.ts index 389ad99db965f..3541c5338a9cd 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/PutMessageFeedbackCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/PutMessageFeedbackCommand.ts @@ -84,6 +84,7 @@ export interface PutMessageFeedbackCommandOutput extends PutMessageFeedbackResul * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class PutMessageFeedbackCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/PutOptedOutNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/PutOptedOutNumberCommand.ts index ad6b2f6a55f23..44cab2ff4dcca 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/PutOptedOutNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/PutOptedOutNumberCommand.ts @@ -84,6 +84,7 @@ export interface PutOptedOutNumberCommandOutput extends PutOptedOutNumberResult, * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class PutOptedOutNumberCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/PutProtectConfigurationRuleSetNumberOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/PutProtectConfigurationRuleSetNumberOverrideCommand.ts index 19b0eacfcc646..b5899f6f2267d 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/PutProtectConfigurationRuleSetNumberOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/PutProtectConfigurationRuleSetNumberOverrideCommand.ts @@ -102,6 +102,7 @@ export interface PutProtectConfigurationRuleSetNumberOverrideCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class PutProtectConfigurationRuleSetNumberOverrideCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/PutRegistrationFieldValueCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/PutRegistrationFieldValueCommand.ts index e7d3db1d601ff..459b2f997d5d1 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/PutRegistrationFieldValueCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/PutRegistrationFieldValueCommand.ts @@ -97,6 +97,7 @@ export interface PutRegistrationFieldValueCommandOutput extends PutRegistrationF * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class PutRegistrationFieldValueCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/PutResourcePolicyCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/PutResourcePolicyCommand.ts index 50c8d6a0eb250..bffdcb63dd4d7 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/PutResourcePolicyCommand.ts @@ -82,6 +82,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyResult, * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/ReleasePhoneNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/ReleasePhoneNumberCommand.ts index 4df6e572ea344..6a81db58e43f5 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/ReleasePhoneNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/ReleasePhoneNumberCommand.ts @@ -103,6 +103,7 @@ export interface ReleasePhoneNumberCommandOutput extends ReleasePhoneNumberResul * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class ReleasePhoneNumberCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/ReleaseSenderIdCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/ReleaseSenderIdCommand.ts index 561a1f7030858..13a124aea890c 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/ReleaseSenderIdCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/ReleaseSenderIdCommand.ts @@ -92,6 +92,7 @@ export interface ReleaseSenderIdCommandOutput extends ReleaseSenderIdResult, __M * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class ReleaseSenderIdCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/RequestPhoneNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/RequestPhoneNumberCommand.ts index 96e42cb1b2fdb..5623f3084c3a4 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/RequestPhoneNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/RequestPhoneNumberCommand.ts @@ -128,6 +128,7 @@ export interface RequestPhoneNumberCommandOutput extends RequestPhoneNumberResul * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class RequestPhoneNumberCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/RequestSenderIdCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/RequestSenderIdCommand.ts index abe2a1387a67f..4504bdf3f8ea8 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/RequestSenderIdCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/RequestSenderIdCommand.ts @@ -109,6 +109,7 @@ export interface RequestSenderIdCommandOutput extends RequestSenderIdResult, __M * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class RequestSenderIdCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SendDestinationNumberVerificationCodeCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SendDestinationNumberVerificationCodeCommand.ts index ff889cbe49717..ab1d0b86bde26 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SendDestinationNumberVerificationCodeCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SendDestinationNumberVerificationCodeCommand.ts @@ -107,6 +107,7 @@ export interface SendDestinationNumberVerificationCodeCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class SendDestinationNumberVerificationCodeCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SendMediaMessageCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SendMediaMessageCommand.ts index 01a24c494187c..1346eb79cebe8 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SendMediaMessageCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SendMediaMessageCommand.ts @@ -100,6 +100,7 @@ export interface SendMediaMessageCommandOutput extends SendMediaMessageResult, _ * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class SendMediaMessageCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SendTextMessageCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SendTextMessageCommand.ts index b42b29f35cf8f..61508e314b6ee 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SendTextMessageCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SendTextMessageCommand.ts @@ -106,6 +106,7 @@ export interface SendTextMessageCommandOutput extends SendTextMessageResult, __M * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class SendTextMessageCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SendVoiceMessageCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SendVoiceMessageCommand.ts index cc48b8d4bb932..2eef442df67dc 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SendVoiceMessageCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SendVoiceMessageCommand.ts @@ -101,6 +101,7 @@ export interface SendVoiceMessageCommandOutput extends SendVoiceMessageResult, _ * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class SendVoiceMessageCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SetAccountDefaultProtectConfigurationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SetAccountDefaultProtectConfigurationCommand.ts index d0f7ff711f774..4840f7af1c1ca 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SetAccountDefaultProtectConfigurationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SetAccountDefaultProtectConfigurationCommand.ts @@ -88,6 +88,7 @@ export interface SetAccountDefaultProtectConfigurationCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class SetAccountDefaultProtectConfigurationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageFeedbackEnabledCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageFeedbackEnabledCommand.ts index 4fc3e03ee1066..d0ab84f417d4f 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageFeedbackEnabledCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageFeedbackEnabledCommand.ts @@ -85,6 +85,7 @@ export interface SetDefaultMessageFeedbackEnabledCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class SetDefaultMessageFeedbackEnabledCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageTypeCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageTypeCommand.ts index 46546936c5d43..dd69e72fb93eb 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageTypeCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageTypeCommand.ts @@ -85,6 +85,7 @@ export interface SetDefaultMessageTypeCommandOutput extends SetDefaultMessageTyp * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class SetDefaultMessageTypeCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultSenderIdCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultSenderIdCommand.ts index 66762199088f8..697c70ce8655b 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultSenderIdCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultSenderIdCommand.ts @@ -83,6 +83,7 @@ export interface SetDefaultSenderIdCommandOutput extends SetDefaultSenderIdResul * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class SetDefaultSenderIdCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SetMediaMessageSpendLimitOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SetMediaMessageSpendLimitOverrideCommand.ts index 7184ba1d58b72..6d756adc67aa4 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SetMediaMessageSpendLimitOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SetMediaMessageSpendLimitOverrideCommand.ts @@ -81,6 +81,7 @@ export interface SetMediaMessageSpendLimitOverrideCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class SetMediaMessageSpendLimitOverrideCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SetTextMessageSpendLimitOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SetTextMessageSpendLimitOverrideCommand.ts index 78c3b02f7d28e..0de785b15bd72 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SetTextMessageSpendLimitOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SetTextMessageSpendLimitOverrideCommand.ts @@ -81,6 +81,7 @@ export interface SetTextMessageSpendLimitOverrideCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class SetTextMessageSpendLimitOverrideCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SetVoiceMessageSpendLimitOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SetVoiceMessageSpendLimitOverrideCommand.ts index 0be2b6f2a2be4..80bc3b9e8e2b8 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SetVoiceMessageSpendLimitOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SetVoiceMessageSpendLimitOverrideCommand.ts @@ -81,6 +81,7 @@ export interface SetVoiceMessageSpendLimitOverrideCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class SetVoiceMessageSpendLimitOverrideCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SubmitRegistrationVersionCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SubmitRegistrationVersionCommand.ts index f1c1d0257f55b..cacae0177f091 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SubmitRegistrationVersionCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SubmitRegistrationVersionCommand.ts @@ -97,6 +97,7 @@ export interface SubmitRegistrationVersionCommandOutput extends SubmitRegistrati * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class SubmitRegistrationVersionCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/TagResourceCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/TagResourceCommand.ts index 3f2cc6d3bdc02..46854cfeea284 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/TagResourceCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/TagResourceCommand.ts @@ -87,6 +87,7 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/UntagResourceCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/UntagResourceCommand.ts index 70f357c15a52e..f543affaf9830 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/UntagResourceCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/UntagResourceCommand.ts @@ -79,6 +79,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResult, __Metad * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateEventDestinationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateEventDestinationCommand.ts index 25bbfd52ac44a..76110b5a6342a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateEventDestinationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateEventDestinationCommand.ts @@ -123,6 +123,7 @@ export interface UpdateEventDestinationCommandOutput extends UpdateEventDestinat * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class UpdateEventDestinationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePhoneNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePhoneNumberCommand.ts index b85bdaa37bedd..59df2a730b0eb 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePhoneNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePhoneNumberCommand.ts @@ -111,6 +111,7 @@ export interface UpdatePhoneNumberCommandOutput extends UpdatePhoneNumberResult, * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class UpdatePhoneNumberCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePoolCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePoolCommand.ts index 43e75d9f6c91b..b5f5d8c8079e6 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePoolCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePoolCommand.ts @@ -104,6 +104,7 @@ export interface UpdatePoolCommandOutput extends UpdatePoolResult, __MetadataBea * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class UpdatePoolCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCommand.ts index ba69f3a9cb44b..0c80233f921db 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCommand.ts @@ -82,6 +82,7 @@ export interface UpdateProtectConfigurationCommandOutput extends UpdateProtectCo * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class UpdateProtectConfigurationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCountryRuleSetCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCountryRuleSetCommand.ts index eb09297beb732..81ac3ef06f530 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCountryRuleSetCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCountryRuleSetCommand.ts @@ -99,6 +99,7 @@ export interface UpdateProtectConfigurationCountryRuleSetCommandOutput * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class UpdateProtectConfigurationCountryRuleSetCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateSenderIdCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateSenderIdCommand.ts index 6816c2be8d031..58b1727c42860 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateSenderIdCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateSenderIdCommand.ts @@ -88,6 +88,7 @@ export interface UpdateSenderIdCommandOutput extends UpdateSenderIdResult, __Met * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class UpdateSenderIdCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/VerifyDestinationNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/VerifyDestinationNumberCommand.ts index fe1a25d6c37fe..f9ee5f2539e1a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/VerifyDestinationNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/VerifyDestinationNumberCommand.ts @@ -88,6 +88,7 @@ export interface VerifyDestinationNumberCommandOutput extends VerifyDestinationN * @throws {@link PinpointSMSVoiceV2ServiceException} *

Base exception class for all service exceptions from PinpointSMSVoiceV2 service.

* + * * @public */ export class VerifyDestinationNumberCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetCommand.ts index eb0bc438dfd8c..5074ded2fdb62 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetCommand.ts @@ -68,6 +68,7 @@ export interface CreateConfigurationSetCommandOutput extends CreateConfiguration * @throws {@link PinpointSMSVoiceServiceException} *

Base exception class for all service exceptions from PinpointSMSVoice service.

* + * * @public */ export class CreateConfigurationSetCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetEventDestinationCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetEventDestinationCommand.ts index 463b0ae66909b..33a21256ba316 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetEventDestinationCommand.ts @@ -98,6 +98,7 @@ export interface CreateConfigurationSetEventDestinationCommandOutput * @throws {@link PinpointSMSVoiceServiceException} *

Base exception class for all service exceptions from PinpointSMSVoice service.

* + * * @public */ export class CreateConfigurationSetEventDestinationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetCommand.ts index d6e4a6bf5a124..617533bb6b91b 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetCommand.ts @@ -65,6 +65,7 @@ export interface DeleteConfigurationSetCommandOutput extends DeleteConfiguration * @throws {@link PinpointSMSVoiceServiceException} *

Base exception class for all service exceptions from PinpointSMSVoice service.

* + * * @public */ export class DeleteConfigurationSetCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetEventDestinationCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetEventDestinationCommand.ts index c835eebca0ff3..15c387c21520b 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetEventDestinationCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetEventDestinationCommand.ts @@ -75,6 +75,7 @@ export interface DeleteConfigurationSetEventDestinationCommandOutput * @throws {@link PinpointSMSVoiceServiceException} *

Base exception class for all service exceptions from PinpointSMSVoice service.

* + * * @public */ export class DeleteConfigurationSetEventDestinationCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice/src/commands/GetConfigurationSetEventDestinationsCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/GetConfigurationSetEventDestinationsCommand.ts index 6520780cdb40f..fd675402efdee 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/GetConfigurationSetEventDestinationsCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/GetConfigurationSetEventDestinationsCommand.ts @@ -94,6 +94,7 @@ export interface GetConfigurationSetEventDestinationsCommandOutput * @throws {@link PinpointSMSVoiceServiceException} *

Base exception class for all service exceptions from PinpointSMSVoice service.

* + * * @public */ export class GetConfigurationSetEventDestinationsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice/src/commands/ListConfigurationSetsCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/ListConfigurationSetsCommand.ts index 265a4a7a135d7..a459f078a5732 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/ListConfigurationSetsCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/ListConfigurationSetsCommand.ts @@ -68,6 +68,7 @@ export interface ListConfigurationSetsCommandOutput extends ListConfigurationSet * @throws {@link PinpointSMSVoiceServiceException} *

Base exception class for all service exceptions from PinpointSMSVoice service.

* + * * @public */ export class ListConfigurationSetsCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice/src/commands/SendVoiceMessageCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/SendVoiceMessageCommand.ts index 0a09d88ed69ef..dcee015907090 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/SendVoiceMessageCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/SendVoiceMessageCommand.ts @@ -82,6 +82,7 @@ export interface SendVoiceMessageCommandOutput extends SendVoiceMessageResponse, * @throws {@link PinpointSMSVoiceServiceException} *

Base exception class for all service exceptions from PinpointSMSVoice service.

* + * * @public */ export class SendVoiceMessageCommand extends $Command diff --git a/clients/client-pinpoint-sms-voice/src/commands/UpdateConfigurationSetEventDestinationCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/UpdateConfigurationSetEventDestinationCommand.ts index 83a5d5d8aeffe..b8e7137b79e19 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/UpdateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/UpdateConfigurationSetEventDestinationCommand.ts @@ -92,6 +92,7 @@ export interface UpdateConfigurationSetEventDestinationCommandOutput * @throws {@link PinpointSMSVoiceServiceException} *

Base exception class for all service exceptions from PinpointSMSVoice service.

* + * * @public */ export class UpdateConfigurationSetEventDestinationCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/CreateAppCommand.ts b/clients/client-pinpoint/src/commands/CreateAppCommand.ts index eeaea9544421c..a710302ba9b83 100644 --- a/clients/client-pinpoint/src/commands/CreateAppCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateAppCommand.ts @@ -89,6 +89,7 @@ export interface CreateAppCommandOutput extends CreateAppResponse, __MetadataBea * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class CreateAppCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/CreateCampaignCommand.ts b/clients/client-pinpoint/src/commands/CreateCampaignCommand.ts index 6b954ca26db32..6e88ca2dff160 100644 --- a/clients/client-pinpoint/src/commands/CreateCampaignCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateCampaignCommand.ts @@ -847,6 +847,7 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class CreateCampaignCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/CreateEmailTemplateCommand.ts b/clients/client-pinpoint/src/commands/CreateEmailTemplateCommand.ts index 4bcbfe36a803a..a0dc215d4abf9 100644 --- a/clients/client-pinpoint/src/commands/CreateEmailTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateEmailTemplateCommand.ts @@ -91,6 +91,7 @@ export interface CreateEmailTemplateCommandOutput extends CreateEmailTemplateRes * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class CreateEmailTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/CreateExportJobCommand.ts b/clients/client-pinpoint/src/commands/CreateExportJobCommand.ts index 21e0325e42227..626494b3c586a 100644 --- a/clients/client-pinpoint/src/commands/CreateExportJobCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateExportJobCommand.ts @@ -103,6 +103,7 @@ export interface CreateExportJobCommandOutput extends CreateExportJobResponse, _ * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class CreateExportJobCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/CreateImportJobCommand.ts b/clients/client-pinpoint/src/commands/CreateImportJobCommand.ts index 9cffc20c9e267..78d071e2eed08 100644 --- a/clients/client-pinpoint/src/commands/CreateImportJobCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateImportJobCommand.ts @@ -111,6 +111,7 @@ export interface CreateImportJobCommandOutput extends CreateImportJobResponse, _ * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class CreateImportJobCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/CreateInAppTemplateCommand.ts b/clients/client-pinpoint/src/commands/CreateInAppTemplateCommand.ts index 9ac046ca5b9a7..63822f9fd714f 100644 --- a/clients/client-pinpoint/src/commands/CreateInAppTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateInAppTemplateCommand.ts @@ -141,6 +141,7 @@ export interface CreateInAppTemplateCommandOutput extends CreateInAppTemplateRes * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class CreateInAppTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/CreateJourneyCommand.ts b/clients/client-pinpoint/src/commands/CreateJourneyCommand.ts index 2e72184b94c90..b7766dcb0798b 100644 --- a/clients/client-pinpoint/src/commands/CreateJourneyCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateJourneyCommand.ts @@ -842,6 +842,7 @@ export interface CreateJourneyCommandOutput extends CreateJourneyResponse, __Met * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class CreateJourneyCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/CreatePushTemplateCommand.ts b/clients/client-pinpoint/src/commands/CreatePushTemplateCommand.ts index ce4ee13767dd6..539a303cf3956 100644 --- a/clients/client-pinpoint/src/commands/CreatePushTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/CreatePushTemplateCommand.ts @@ -131,6 +131,7 @@ export interface CreatePushTemplateCommandOutput extends CreatePushTemplateRespo * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class CreatePushTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/CreateRecommenderConfigurationCommand.ts b/clients/client-pinpoint/src/commands/CreateRecommenderConfigurationCommand.ts index 83a1af17fa3c8..8a34963542af9 100644 --- a/clients/client-pinpoint/src/commands/CreateRecommenderConfigurationCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateRecommenderConfigurationCommand.ts @@ -108,6 +108,7 @@ export interface CreateRecommenderConfigurationCommandOutput * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class CreateRecommenderConfigurationCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/CreateSegmentCommand.ts b/clients/client-pinpoint/src/commands/CreateSegmentCommand.ts index ad7be283b2912..aedea7f776e19 100644 --- a/clients/client-pinpoint/src/commands/CreateSegmentCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateSegmentCommand.ts @@ -364,6 +364,7 @@ export interface CreateSegmentCommandOutput extends CreateSegmentResponse, __Met * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class CreateSegmentCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/CreateSmsTemplateCommand.ts b/clients/client-pinpoint/src/commands/CreateSmsTemplateCommand.ts index 3ef2edfe5913a..cf5b61e4510e8 100644 --- a/clients/client-pinpoint/src/commands/CreateSmsTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateSmsTemplateCommand.ts @@ -83,6 +83,7 @@ export interface CreateSmsTemplateCommandOutput extends CreateSmsTemplateRespons * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class CreateSmsTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/CreateVoiceTemplateCommand.ts b/clients/client-pinpoint/src/commands/CreateVoiceTemplateCommand.ts index e66a6073a3901..b332fac42c6dd 100644 --- a/clients/client-pinpoint/src/commands/CreateVoiceTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateVoiceTemplateCommand.ts @@ -84,6 +84,7 @@ export interface CreateVoiceTemplateCommandOutput extends CreateVoiceTemplateRes * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class CreateVoiceTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteAdmChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteAdmChannelCommand.ts index efb373cd0ac90..3209db69126b0 100644 --- a/clients/client-pinpoint/src/commands/DeleteAdmChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteAdmChannelCommand.ts @@ -87,6 +87,7 @@ export interface DeleteAdmChannelCommandOutput extends DeleteAdmChannelResponse, * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteAdmChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteApnsChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteApnsChannelCommand.ts index 9899a3eb60c26..868495a94c3fa 100644 --- a/clients/client-pinpoint/src/commands/DeleteApnsChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteApnsChannelCommand.ts @@ -89,6 +89,7 @@ export interface DeleteApnsChannelCommandOutput extends DeleteApnsChannelRespons * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteApnsChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteApnsSandboxChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteApnsSandboxChannelCommand.ts index d6cefe433cd20..77fb10574aaea 100644 --- a/clients/client-pinpoint/src/commands/DeleteApnsSandboxChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteApnsSandboxChannelCommand.ts @@ -89,6 +89,7 @@ export interface DeleteApnsSandboxChannelCommandOutput extends DeleteApnsSandbox * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteApnsSandboxChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteApnsVoipChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteApnsVoipChannelCommand.ts index f4059b96f5a35..b8d0a62510283 100644 --- a/clients/client-pinpoint/src/commands/DeleteApnsVoipChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteApnsVoipChannelCommand.ts @@ -89,6 +89,7 @@ export interface DeleteApnsVoipChannelCommandOutput extends DeleteApnsVoipChanne * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteApnsVoipChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteApnsVoipSandboxChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteApnsVoipSandboxChannelCommand.ts index 3527d62a051ff..7209eb8cdfdb8 100644 --- a/clients/client-pinpoint/src/commands/DeleteApnsVoipSandboxChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteApnsVoipSandboxChannelCommand.ts @@ -94,6 +94,7 @@ export interface DeleteApnsVoipSandboxChannelCommandOutput * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteApnsVoipSandboxChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteAppCommand.ts b/clients/client-pinpoint/src/commands/DeleteAppCommand.ts index fe905fbd3dc6d..558bfbb020f1d 100644 --- a/clients/client-pinpoint/src/commands/DeleteAppCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteAppCommand.ts @@ -84,6 +84,7 @@ export interface DeleteAppCommandOutput extends DeleteAppResponse, __MetadataBea * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteAppCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteBaiduChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteBaiduChannelCommand.ts index 23c4bc2d13d0b..32de3d559b4f9 100644 --- a/clients/client-pinpoint/src/commands/DeleteBaiduChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteBaiduChannelCommand.ts @@ -88,6 +88,7 @@ export interface DeleteBaiduChannelCommandOutput extends DeleteBaiduChannelRespo * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteBaiduChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteCampaignCommand.ts b/clients/client-pinpoint/src/commands/DeleteCampaignCommand.ts index 04d074c2e3e73..c107e1952a7cd 100644 --- a/clients/client-pinpoint/src/commands/DeleteCampaignCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteCampaignCommand.ts @@ -470,6 +470,7 @@ export interface DeleteCampaignCommandOutput extends DeleteCampaignResponse, __M * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteCampaignCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteEmailChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteEmailChannelCommand.ts index 48be7569b51f8..9dd82f5c89d19 100644 --- a/clients/client-pinpoint/src/commands/DeleteEmailChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteEmailChannelCommand.ts @@ -93,6 +93,7 @@ export interface DeleteEmailChannelCommandOutput extends DeleteEmailChannelRespo * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteEmailChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteEmailTemplateCommand.ts b/clients/client-pinpoint/src/commands/DeleteEmailTemplateCommand.ts index a9a95a7ffaa31..04921fe1b53b8 100644 --- a/clients/client-pinpoint/src/commands/DeleteEmailTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteEmailTemplateCommand.ts @@ -80,6 +80,7 @@ export interface DeleteEmailTemplateCommandOutput extends DeleteEmailTemplateRes * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteEmailTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteEndpointCommand.ts b/clients/client-pinpoint/src/commands/DeleteEndpointCommand.ts index ab7a9843d8708..fe6158b5e2c0f 100644 --- a/clients/client-pinpoint/src/commands/DeleteEndpointCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteEndpointCommand.ts @@ -122,6 +122,7 @@ export interface DeleteEndpointCommandOutput extends DeleteEndpointResponse, __M * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteEndpointCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteEventStreamCommand.ts b/clients/client-pinpoint/src/commands/DeleteEventStreamCommand.ts index 2b20e9a806a5d..d2780061e574c 100644 --- a/clients/client-pinpoint/src/commands/DeleteEventStreamCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteEventStreamCommand.ts @@ -83,6 +83,7 @@ export interface DeleteEventStreamCommandOutput extends DeleteEventStreamRespons * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteEventStreamCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteGcmChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteGcmChannelCommand.ts index 32a29ad697c6d..30eeecbeee512 100644 --- a/clients/client-pinpoint/src/commands/DeleteGcmChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteGcmChannelCommand.ts @@ -90,6 +90,7 @@ export interface DeleteGcmChannelCommandOutput extends DeleteGcmChannelResponse, * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteGcmChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteInAppTemplateCommand.ts b/clients/client-pinpoint/src/commands/DeleteInAppTemplateCommand.ts index 2d86bf2dbf2ba..47d58442f834b 100644 --- a/clients/client-pinpoint/src/commands/DeleteInAppTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteInAppTemplateCommand.ts @@ -80,6 +80,7 @@ export interface DeleteInAppTemplateCommandOutput extends DeleteInAppTemplateRes * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteInAppTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteJourneyCommand.ts b/clients/client-pinpoint/src/commands/DeleteJourneyCommand.ts index aaf0e8b65cf90..2a22f435d1a33 100644 --- a/clients/client-pinpoint/src/commands/DeleteJourneyCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteJourneyCommand.ts @@ -462,6 +462,7 @@ export interface DeleteJourneyCommandOutput extends DeleteJourneyResponse, __Met * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteJourneyCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeletePushTemplateCommand.ts b/clients/client-pinpoint/src/commands/DeletePushTemplateCommand.ts index 52764185aa82e..33b9cbafddd92 100644 --- a/clients/client-pinpoint/src/commands/DeletePushTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/DeletePushTemplateCommand.ts @@ -80,6 +80,7 @@ export interface DeletePushTemplateCommandOutput extends DeletePushTemplateRespo * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeletePushTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteRecommenderConfigurationCommand.ts b/clients/client-pinpoint/src/commands/DeleteRecommenderConfigurationCommand.ts index 4bc8c287705d6..87caa1012d019 100644 --- a/clients/client-pinpoint/src/commands/DeleteRecommenderConfigurationCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteRecommenderConfigurationCommand.ts @@ -96,6 +96,7 @@ export interface DeleteRecommenderConfigurationCommandOutput * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteRecommenderConfigurationCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteSegmentCommand.ts b/clients/client-pinpoint/src/commands/DeleteSegmentCommand.ts index 50fb7df94adf8..0c4bdfd6f4c02 100644 --- a/clients/client-pinpoint/src/commands/DeleteSegmentCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteSegmentCommand.ts @@ -229,6 +229,7 @@ export interface DeleteSegmentCommandOutput extends DeleteSegmentResponse, __Met * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteSegmentCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteSmsChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteSmsChannelCommand.ts index 6c4d299770fd5..ee8a652c80115 100644 --- a/clients/client-pinpoint/src/commands/DeleteSmsChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteSmsChannelCommand.ts @@ -91,6 +91,7 @@ export interface DeleteSmsChannelCommandOutput extends DeleteSmsChannelResponse, * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteSmsChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteSmsTemplateCommand.ts b/clients/client-pinpoint/src/commands/DeleteSmsTemplateCommand.ts index d70e890df44c7..76e85ce8a6b02 100644 --- a/clients/client-pinpoint/src/commands/DeleteSmsTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteSmsTemplateCommand.ts @@ -80,6 +80,7 @@ export interface DeleteSmsTemplateCommandOutput extends DeleteSmsTemplateRespons * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteSmsTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteUserEndpointsCommand.ts b/clients/client-pinpoint/src/commands/DeleteUserEndpointsCommand.ts index fa2effd358a07..59c6afe0388d5 100644 --- a/clients/client-pinpoint/src/commands/DeleteUserEndpointsCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteUserEndpointsCommand.ts @@ -126,6 +126,7 @@ export interface DeleteUserEndpointsCommandOutput extends DeleteUserEndpointsRes * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteUserEndpointsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteVoiceChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteVoiceChannelCommand.ts index 88a7cdb6282c2..0010dfa39789f 100644 --- a/clients/client-pinpoint/src/commands/DeleteVoiceChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteVoiceChannelCommand.ts @@ -87,6 +87,7 @@ export interface DeleteVoiceChannelCommandOutput extends DeleteVoiceChannelRespo * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteVoiceChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/DeleteVoiceTemplateCommand.ts b/clients/client-pinpoint/src/commands/DeleteVoiceTemplateCommand.ts index a36299498e55c..7ab6395668d1e 100644 --- a/clients/client-pinpoint/src/commands/DeleteVoiceTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteVoiceTemplateCommand.ts @@ -80,6 +80,7 @@ export interface DeleteVoiceTemplateCommandOutput extends DeleteVoiceTemplateRes * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class DeleteVoiceTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetAdmChannelCommand.ts b/clients/client-pinpoint/src/commands/GetAdmChannelCommand.ts index cd162419963cd..9d331a4ae13ef 100644 --- a/clients/client-pinpoint/src/commands/GetAdmChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetAdmChannelCommand.ts @@ -87,6 +87,7 @@ export interface GetAdmChannelCommandOutput extends GetAdmChannelResponse, __Met * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetAdmChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetApnsChannelCommand.ts b/clients/client-pinpoint/src/commands/GetApnsChannelCommand.ts index b9b18db1ca8ac..5efcf8e419d59 100644 --- a/clients/client-pinpoint/src/commands/GetApnsChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetApnsChannelCommand.ts @@ -89,6 +89,7 @@ export interface GetApnsChannelCommandOutput extends GetApnsChannelResponse, __M * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetApnsChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetApnsSandboxChannelCommand.ts b/clients/client-pinpoint/src/commands/GetApnsSandboxChannelCommand.ts index 7c68697b68529..a9c8e9d3439f7 100644 --- a/clients/client-pinpoint/src/commands/GetApnsSandboxChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetApnsSandboxChannelCommand.ts @@ -89,6 +89,7 @@ export interface GetApnsSandboxChannelCommandOutput extends GetApnsSandboxChanne * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetApnsSandboxChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetApnsVoipChannelCommand.ts b/clients/client-pinpoint/src/commands/GetApnsVoipChannelCommand.ts index 43e31c0540b56..19118ded4b66e 100644 --- a/clients/client-pinpoint/src/commands/GetApnsVoipChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetApnsVoipChannelCommand.ts @@ -89,6 +89,7 @@ export interface GetApnsVoipChannelCommandOutput extends GetApnsVoipChannelRespo * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetApnsVoipChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetApnsVoipSandboxChannelCommand.ts b/clients/client-pinpoint/src/commands/GetApnsVoipSandboxChannelCommand.ts index 4ca5df295d4f4..454379e7e6255 100644 --- a/clients/client-pinpoint/src/commands/GetApnsVoipSandboxChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetApnsVoipSandboxChannelCommand.ts @@ -89,6 +89,7 @@ export interface GetApnsVoipSandboxChannelCommandOutput extends GetApnsVoipSandb * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetApnsVoipSandboxChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetAppCommand.ts b/clients/client-pinpoint/src/commands/GetAppCommand.ts index 5c9de785653b4..06cf50eb9c27a 100644 --- a/clients/client-pinpoint/src/commands/GetAppCommand.ts +++ b/clients/client-pinpoint/src/commands/GetAppCommand.ts @@ -84,6 +84,7 @@ export interface GetAppCommandOutput extends GetAppResponse, __MetadataBearer {} * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetAppCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetApplicationDateRangeKpiCommand.ts b/clients/client-pinpoint/src/commands/GetApplicationDateRangeKpiCommand.ts index 12b73236d40d5..3968cd022ddbf 100644 --- a/clients/client-pinpoint/src/commands/GetApplicationDateRangeKpiCommand.ts +++ b/clients/client-pinpoint/src/commands/GetApplicationDateRangeKpiCommand.ts @@ -107,6 +107,7 @@ export interface GetApplicationDateRangeKpiCommandOutput extends GetApplicationD * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetApplicationDateRangeKpiCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetApplicationSettingsCommand.ts b/clients/client-pinpoint/src/commands/GetApplicationSettingsCommand.ts index e6c786d8e6b07..f1702ca89038c 100644 --- a/clients/client-pinpoint/src/commands/GetApplicationSettingsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetApplicationSettingsCommand.ts @@ -103,6 +103,7 @@ export interface GetApplicationSettingsCommandOutput extends GetApplicationSetti * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetApplicationSettingsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetAppsCommand.ts b/clients/client-pinpoint/src/commands/GetAppsCommand.ts index 0afe45a2d2aeb..e71b79dc6f6a9 100644 --- a/clients/client-pinpoint/src/commands/GetAppsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetAppsCommand.ts @@ -90,6 +90,7 @@ export interface GetAppsCommandOutput extends GetAppsResponse, __MetadataBearer * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetAppsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetBaiduChannelCommand.ts b/clients/client-pinpoint/src/commands/GetBaiduChannelCommand.ts index 44bdc51f1e4c1..3e76a74e01577 100644 --- a/clients/client-pinpoint/src/commands/GetBaiduChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetBaiduChannelCommand.ts @@ -88,6 +88,7 @@ export interface GetBaiduChannelCommandOutput extends GetBaiduChannelResponse, _ * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetBaiduChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetCampaignActivitiesCommand.ts b/clients/client-pinpoint/src/commands/GetCampaignActivitiesCommand.ts index 0ed4e6dfcd477..620149678b9e8 100644 --- a/clients/client-pinpoint/src/commands/GetCampaignActivitiesCommand.ts +++ b/clients/client-pinpoint/src/commands/GetCampaignActivitiesCommand.ts @@ -101,6 +101,7 @@ export interface GetCampaignActivitiesCommandOutput extends GetCampaignActivitie * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetCampaignActivitiesCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetCampaignCommand.ts b/clients/client-pinpoint/src/commands/GetCampaignCommand.ts index b1a2225b93bfb..d38b48ccc2e53 100644 --- a/clients/client-pinpoint/src/commands/GetCampaignCommand.ts +++ b/clients/client-pinpoint/src/commands/GetCampaignCommand.ts @@ -470,6 +470,7 @@ export interface GetCampaignCommandOutput extends GetCampaignResponse, __Metadat * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetCampaignCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetCampaignDateRangeKpiCommand.ts b/clients/client-pinpoint/src/commands/GetCampaignDateRangeKpiCommand.ts index a69e1d322ac39..0d2f0ef6f0483 100644 --- a/clients/client-pinpoint/src/commands/GetCampaignDateRangeKpiCommand.ts +++ b/clients/client-pinpoint/src/commands/GetCampaignDateRangeKpiCommand.ts @@ -109,6 +109,7 @@ export interface GetCampaignDateRangeKpiCommandOutput extends GetCampaignDateRan * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetCampaignDateRangeKpiCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetCampaignVersionCommand.ts b/clients/client-pinpoint/src/commands/GetCampaignVersionCommand.ts index 5953f478ab256..1e8abf6578247 100644 --- a/clients/client-pinpoint/src/commands/GetCampaignVersionCommand.ts +++ b/clients/client-pinpoint/src/commands/GetCampaignVersionCommand.ts @@ -471,6 +471,7 @@ export interface GetCampaignVersionCommandOutput extends GetCampaignVersionRespo * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetCampaignVersionCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetCampaignVersionsCommand.ts b/clients/client-pinpoint/src/commands/GetCampaignVersionsCommand.ts index 285051a0c803e..4123aa4795a06 100644 --- a/clients/client-pinpoint/src/commands/GetCampaignVersionsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetCampaignVersionsCommand.ts @@ -477,6 +477,7 @@ export interface GetCampaignVersionsCommandOutput extends GetCampaignVersionsRes * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetCampaignVersionsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetCampaignsCommand.ts b/clients/client-pinpoint/src/commands/GetCampaignsCommand.ts index 8877fb4b3e6a9..3216db292adea 100644 --- a/clients/client-pinpoint/src/commands/GetCampaignsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetCampaignsCommand.ts @@ -476,6 +476,7 @@ export interface GetCampaignsCommandOutput extends GetCampaignsResponse, __Metad * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetCampaignsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetChannelsCommand.ts b/clients/client-pinpoint/src/commands/GetChannelsCommand.ts index 09408491f8f17..55b8b4a1ba25c 100644 --- a/clients/client-pinpoint/src/commands/GetChannelsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetChannelsCommand.ts @@ -90,6 +90,7 @@ export interface GetChannelsCommandOutput extends GetChannelsResponse, __Metadat * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetChannelsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetEmailChannelCommand.ts b/clients/client-pinpoint/src/commands/GetEmailChannelCommand.ts index 9fd3a27f2a9d5..be8244ad14299 100644 --- a/clients/client-pinpoint/src/commands/GetEmailChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetEmailChannelCommand.ts @@ -93,6 +93,7 @@ export interface GetEmailChannelCommandOutput extends GetEmailChannelResponse, _ * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetEmailChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetEmailTemplateCommand.ts b/clients/client-pinpoint/src/commands/GetEmailTemplateCommand.ts index 5d1c52c0f1172..7e285b983b502 100644 --- a/clients/client-pinpoint/src/commands/GetEmailTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/GetEmailTemplateCommand.ts @@ -99,6 +99,7 @@ export interface GetEmailTemplateCommandOutput extends GetEmailTemplateResponse, * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetEmailTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetEndpointCommand.ts b/clients/client-pinpoint/src/commands/GetEndpointCommand.ts index ac2e10820f563..dfdf11e148c39 100644 --- a/clients/client-pinpoint/src/commands/GetEndpointCommand.ts +++ b/clients/client-pinpoint/src/commands/GetEndpointCommand.ts @@ -122,6 +122,7 @@ export interface GetEndpointCommandOutput extends GetEndpointResponse, __Metadat * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetEndpointCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetEventStreamCommand.ts b/clients/client-pinpoint/src/commands/GetEventStreamCommand.ts index 525bdf1275e31..2dcd649d09f9c 100644 --- a/clients/client-pinpoint/src/commands/GetEventStreamCommand.ts +++ b/clients/client-pinpoint/src/commands/GetEventStreamCommand.ts @@ -83,6 +83,7 @@ export interface GetEventStreamCommandOutput extends GetEventStreamResponse, __M * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetEventStreamCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetExportJobCommand.ts b/clients/client-pinpoint/src/commands/GetExportJobCommand.ts index e7474bf4dd4e6..16c68b0a44f3d 100644 --- a/clients/client-pinpoint/src/commands/GetExportJobCommand.ts +++ b/clients/client-pinpoint/src/commands/GetExportJobCommand.ts @@ -98,6 +98,7 @@ export interface GetExportJobCommandOutput extends GetExportJobResponse, __Metad * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetExportJobCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetExportJobsCommand.ts b/clients/client-pinpoint/src/commands/GetExportJobsCommand.ts index c2fc90909bf83..a5221703715c7 100644 --- a/clients/client-pinpoint/src/commands/GetExportJobsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetExportJobsCommand.ts @@ -104,6 +104,7 @@ export interface GetExportJobsCommandOutput extends GetExportJobsResponse, __Met * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetExportJobsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetGcmChannelCommand.ts b/clients/client-pinpoint/src/commands/GetGcmChannelCommand.ts index fd91a0a31c31e..64b194187d96e 100644 --- a/clients/client-pinpoint/src/commands/GetGcmChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetGcmChannelCommand.ts @@ -90,6 +90,7 @@ export interface GetGcmChannelCommandOutput extends GetGcmChannelResponse, __Met * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetGcmChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetImportJobCommand.ts b/clients/client-pinpoint/src/commands/GetImportJobCommand.ts index 1976315b26a3c..7ff60855cb806 100644 --- a/clients/client-pinpoint/src/commands/GetImportJobCommand.ts +++ b/clients/client-pinpoint/src/commands/GetImportJobCommand.ts @@ -102,6 +102,7 @@ export interface GetImportJobCommandOutput extends GetImportJobResponse, __Metad * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetImportJobCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetImportJobsCommand.ts b/clients/client-pinpoint/src/commands/GetImportJobsCommand.ts index 3a36135543b5e..d14b4f0134f84 100644 --- a/clients/client-pinpoint/src/commands/GetImportJobsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetImportJobsCommand.ts @@ -108,6 +108,7 @@ export interface GetImportJobsCommandOutput extends GetImportJobsResponse, __Met * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetImportJobsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetInAppMessagesCommand.ts b/clients/client-pinpoint/src/commands/GetInAppMessagesCommand.ts index b2ca37d3809e2..656916396c92b 100644 --- a/clients/client-pinpoint/src/commands/GetInAppMessagesCommand.ts +++ b/clients/client-pinpoint/src/commands/GetInAppMessagesCommand.ts @@ -183,6 +183,7 @@ export interface GetInAppMessagesCommandOutput extends GetInAppMessagesResponse, * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetInAppMessagesCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetInAppTemplateCommand.ts b/clients/client-pinpoint/src/commands/GetInAppTemplateCommand.ts index da257b55aaa20..0ceea37096528 100644 --- a/clients/client-pinpoint/src/commands/GetInAppTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/GetInAppTemplateCommand.ts @@ -149,6 +149,7 @@ export interface GetInAppTemplateCommandOutput extends GetInAppTemplateResponse, * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetInAppTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetJourneyCommand.ts b/clients/client-pinpoint/src/commands/GetJourneyCommand.ts index f5afaa963163d..2ef2240e5c6e1 100644 --- a/clients/client-pinpoint/src/commands/GetJourneyCommand.ts +++ b/clients/client-pinpoint/src/commands/GetJourneyCommand.ts @@ -462,6 +462,7 @@ export interface GetJourneyCommandOutput extends GetJourneyResponse, __MetadataB * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetJourneyCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetJourneyDateRangeKpiCommand.ts b/clients/client-pinpoint/src/commands/GetJourneyDateRangeKpiCommand.ts index 521f4f0d6a54c..95cee0ac19765 100644 --- a/clients/client-pinpoint/src/commands/GetJourneyDateRangeKpiCommand.ts +++ b/clients/client-pinpoint/src/commands/GetJourneyDateRangeKpiCommand.ts @@ -109,6 +109,7 @@ export interface GetJourneyDateRangeKpiCommandOutput extends GetJourneyDateRange * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetJourneyDateRangeKpiCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetJourneyExecutionActivityMetricsCommand.ts b/clients/client-pinpoint/src/commands/GetJourneyExecutionActivityMetricsCommand.ts index ffef3c98f3e2f..774b664c94f21 100644 --- a/clients/client-pinpoint/src/commands/GetJourneyExecutionActivityMetricsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetJourneyExecutionActivityMetricsCommand.ts @@ -97,6 +97,7 @@ export interface GetJourneyExecutionActivityMetricsCommandOutput * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetJourneyExecutionActivityMetricsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetJourneyExecutionMetricsCommand.ts b/clients/client-pinpoint/src/commands/GetJourneyExecutionMetricsCommand.ts index 65363cc48cb03..12e13444ba2ae 100644 --- a/clients/client-pinpoint/src/commands/GetJourneyExecutionMetricsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetJourneyExecutionMetricsCommand.ts @@ -86,6 +86,7 @@ export interface GetJourneyExecutionMetricsCommandOutput extends GetJourneyExecu * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetJourneyExecutionMetricsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetJourneyRunExecutionActivityMetricsCommand.ts b/clients/client-pinpoint/src/commands/GetJourneyRunExecutionActivityMetricsCommand.ts index ec4127a57821b..d730e93bb4128 100644 --- a/clients/client-pinpoint/src/commands/GetJourneyRunExecutionActivityMetricsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetJourneyRunExecutionActivityMetricsCommand.ts @@ -100,36 +100,36 @@ export interface GetJourneyRunExecutionActivityMetricsCommandOutput * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* - * @public + * * @example To get the activity execution metrics for a journey run * ```javascript * // The following example gets activity execution metrics for a single run of a journey. * const input = { - * "ApplicationId": "11111111112222222222333333333344", - * "JourneyId": "aaaaaaaaaabbbbbbbbbbccccccccccdd", - * "RunId": "99999999998888888888777777777766", - * "JourneyActivityId": "AAAAAAAAAA" + * ApplicationId: "11111111112222222222333333333344", + * JourneyActivityId: "AAAAAAAAAA", + * JourneyId: "aaaaaaaaaabbbbbbbbbbccccccccccdd", + * RunId: "99999999998888888888777777777766" * }; * const command = new GetJourneyRunExecutionActivityMetricsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "JourneyRunExecutionActivityMetricsResponse": { - * "ApplicationId": "11111111112222222222333333333344", - * "JourneyId": "aaaaaaaaaabbbbbbbbbbccccccccccdd", - * "RunId": "99999999998888888888777777777766", - * "JourneyActivityId": "AAAAAAAAAA", - * "ActivityType": "EMAIL", - * "LastEvaluatedTime": "2000-01-01T00:00:05.000Z", - * "Metrics": { - * "SUCCESS": "1" - * } + * JourneyRunExecutionActivityMetricsResponse: { + * ActivityType: "EMAIL", + * ApplicationId: "11111111112222222222333333333344", + * JourneyActivityId: "AAAAAAAAAA", + * JourneyId: "aaaaaaaaaabbbbbbbbbbccccccccccdd", + * LastEvaluatedTime: "2000-01-01T00:00:05.000Z", + * Metrics: { + * SUCCESS: "1" + * }, + * RunId: "99999999998888888888777777777766" * } * } * *\/ - * // example id: to-get-the-activity-execution-metrics-for-a-journey-run * ``` * + * @public */ export class GetJourneyRunExecutionActivityMetricsCommand extends $Command .classBuilder< diff --git a/clients/client-pinpoint/src/commands/GetJourneyRunExecutionMetricsCommand.ts b/clients/client-pinpoint/src/commands/GetJourneyRunExecutionMetricsCommand.ts index fb0beaa8d0590..04c3b543416f8 100644 --- a/clients/client-pinpoint/src/commands/GetJourneyRunExecutionMetricsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetJourneyRunExecutionMetricsCommand.ts @@ -93,35 +93,35 @@ export interface GetJourneyRunExecutionMetricsCommandOutput * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* - * @public + * * @example To get the execution metrics for a journey run * ```javascript * // The following example gets execution metrics for a single run of a journey. * const input = { - * "ApplicationId": "11111111112222222222333333333344", - * "JourneyId": "aaaaaaaaaabbbbbbbbbbccccccccccdd", - * "RunId": "99999999998888888888777777777766" + * ApplicationId: "11111111112222222222333333333344", + * JourneyId: "aaaaaaaaaabbbbbbbbbbccccccccccdd", + * RunId: "99999999998888888888777777777766" * }; * const command = new GetJourneyRunExecutionMetricsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "JourneyRunExecutionMetricsResponse": { - * "ApplicationId": "11111111112222222222333333333344", - * "JourneyId": "aaaaaaaaaabbbbbbbbbbccccccccccdd", - * "RunId": "99999999998888888888777777777766", - * "LastEvaluatedTime": "2000-01-01T00:00:05.000Z", - * "Metrics": { - * "ENDPOINT_PRODUCED": "1", - * "ENDPOINT_ENTERED": "1", - * "ENDPOINT_LEFT": "1" - * } + * JourneyRunExecutionMetricsResponse: { + * ApplicationId: "11111111112222222222333333333344", + * JourneyId: "aaaaaaaaaabbbbbbbbbbccccccccccdd", + * LastEvaluatedTime: "2000-01-01T00:00:05.000Z", + * Metrics: { + * ENDPOINT_ENTERED: "1", + * ENDPOINT_LEFT: "1", + * ENDPOINT_PRODUCED: "1" + * }, + * RunId: "99999999998888888888777777777766" * } * } * *\/ - * // example id: to-get-the-execution-metrics-for-a-journey-run * ``` * + * @public */ export class GetJourneyRunExecutionMetricsCommand extends $Command .classBuilder< diff --git a/clients/client-pinpoint/src/commands/GetJourneyRunsCommand.ts b/clients/client-pinpoint/src/commands/GetJourneyRunsCommand.ts index 83465d82f09d8..3a3745bc307db 100644 --- a/clients/client-pinpoint/src/commands/GetJourneyRunsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetJourneyRunsCommand.ts @@ -89,39 +89,39 @@ export interface GetJourneyRunsCommandOutput extends GetJourneyRunsResponse, __M * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* - * @public + * * @example To get the runs of a journey * ```javascript * // The following example gets the runs of a journey. * const input = { - * "ApplicationId": "11111111112222222222333333333344", - * "JourneyId": "aaaaaaaaaabbbbbbbbbbccccccccccdd" + * ApplicationId: "11111111112222222222333333333344", + * JourneyId: "aaaaaaaaaabbbbbbbbbbccccccccccdd" * }; * const command = new GetJourneyRunsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "JourneyRunsResponse": { - * "Item": [ + * JourneyRunsResponse: { + * Item: [ * { - * "RunId": "99999999998888888888777777777766", - * "CreationTime": "2000-01-01T00:00:00.000Z", - * "LastUpdateTime": "2000-01-01T00:00:05.000Z", - * "Status": "COMPLETED" + * CreationTime: "2000-01-01T00:00:00.000Z", + * LastUpdateTime: "2000-01-01T00:00:05.000Z", + * RunId: "99999999998888888888777777777766", + * Status: "COMPLETED" * }, * { - * "RunId": "ffffffffffeeeeeeeeeeddddddddddcc", - * "CreationTime": "2000-01-01T00:00:10.000Z", - * "LastUpdateTime": "2000-01-01T00:00:10.000Z", - * "Status": "SCHEDULED" + * CreationTime: "2000-01-01T00:00:10.000Z", + * LastUpdateTime: "2000-01-01T00:00:10.000Z", + * RunId: "ffffffffffeeeeeeeeeeddddddddddcc", + * Status: "SCHEDULED" * } * ] * } * } * *\/ - * // example id: to-get-the-runs-of-a-journey * ``` * + * @public */ export class GetJourneyRunsCommand extends $Command .classBuilder< diff --git a/clients/client-pinpoint/src/commands/GetPushTemplateCommand.ts b/clients/client-pinpoint/src/commands/GetPushTemplateCommand.ts index a8ef2b1eefb17..495b7cf7e2c30 100644 --- a/clients/client-pinpoint/src/commands/GetPushTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/GetPushTemplateCommand.ts @@ -139,6 +139,7 @@ export interface GetPushTemplateCommandOutput extends GetPushTemplateResponse, _ * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetPushTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetRecommenderConfigurationCommand.ts b/clients/client-pinpoint/src/commands/GetRecommenderConfigurationCommand.ts index e99cb9964c958..28286aab17793 100644 --- a/clients/client-pinpoint/src/commands/GetRecommenderConfigurationCommand.ts +++ b/clients/client-pinpoint/src/commands/GetRecommenderConfigurationCommand.ts @@ -96,6 +96,7 @@ export interface GetRecommenderConfigurationCommandOutput * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetRecommenderConfigurationCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetRecommenderConfigurationsCommand.ts b/clients/client-pinpoint/src/commands/GetRecommenderConfigurationsCommand.ts index 6155c67ee8203..36978c9839272 100644 --- a/clients/client-pinpoint/src/commands/GetRecommenderConfigurationsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetRecommenderConfigurationsCommand.ts @@ -102,6 +102,7 @@ export interface GetRecommenderConfigurationsCommandOutput * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetRecommenderConfigurationsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetSegmentCommand.ts b/clients/client-pinpoint/src/commands/GetSegmentCommand.ts index d70a0a9b568fc..5fef1340b872b 100644 --- a/clients/client-pinpoint/src/commands/GetSegmentCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSegmentCommand.ts @@ -229,6 +229,7 @@ export interface GetSegmentCommandOutput extends GetSegmentResponse, __MetadataB * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetSegmentCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetSegmentExportJobsCommand.ts b/clients/client-pinpoint/src/commands/GetSegmentExportJobsCommand.ts index 820f6311f0bf5..65aee3f6af740 100644 --- a/clients/client-pinpoint/src/commands/GetSegmentExportJobsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSegmentExportJobsCommand.ts @@ -105,6 +105,7 @@ export interface GetSegmentExportJobsCommandOutput extends GetSegmentExportJobsR * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetSegmentExportJobsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetSegmentImportJobsCommand.ts b/clients/client-pinpoint/src/commands/GetSegmentImportJobsCommand.ts index b6da7d03b70dd..d89eb79629b77 100644 --- a/clients/client-pinpoint/src/commands/GetSegmentImportJobsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSegmentImportJobsCommand.ts @@ -109,6 +109,7 @@ export interface GetSegmentImportJobsCommandOutput extends GetSegmentImportJobsR * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetSegmentImportJobsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetSegmentVersionCommand.ts b/clients/client-pinpoint/src/commands/GetSegmentVersionCommand.ts index 29f6606be4784..1370a784a7ffe 100644 --- a/clients/client-pinpoint/src/commands/GetSegmentVersionCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSegmentVersionCommand.ts @@ -230,6 +230,7 @@ export interface GetSegmentVersionCommandOutput extends GetSegmentVersionRespons * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetSegmentVersionCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetSegmentVersionsCommand.ts b/clients/client-pinpoint/src/commands/GetSegmentVersionsCommand.ts index 7c86a29cd9e49..3ac60a8dc5c61 100644 --- a/clients/client-pinpoint/src/commands/GetSegmentVersionsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSegmentVersionsCommand.ts @@ -236,6 +236,7 @@ export interface GetSegmentVersionsCommandOutput extends GetSegmentVersionsRespo * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetSegmentVersionsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetSegmentsCommand.ts b/clients/client-pinpoint/src/commands/GetSegmentsCommand.ts index 32bba258b8a1e..3d30d00d317f1 100644 --- a/clients/client-pinpoint/src/commands/GetSegmentsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSegmentsCommand.ts @@ -235,6 +235,7 @@ export interface GetSegmentsCommandOutput extends GetSegmentsResponse, __Metadat * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetSegmentsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetSmsChannelCommand.ts b/clients/client-pinpoint/src/commands/GetSmsChannelCommand.ts index 3b582ef3d5588..307c18319ff54 100644 --- a/clients/client-pinpoint/src/commands/GetSmsChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSmsChannelCommand.ts @@ -91,6 +91,7 @@ export interface GetSmsChannelCommandOutput extends GetSmsChannelResponse, __Met * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetSmsChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetSmsTemplateCommand.ts b/clients/client-pinpoint/src/commands/GetSmsTemplateCommand.ts index 43414d5ad83af..e628ea9472f1e 100644 --- a/clients/client-pinpoint/src/commands/GetSmsTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSmsTemplateCommand.ts @@ -91,6 +91,7 @@ export interface GetSmsTemplateCommandOutput extends GetSmsTemplateResponse, __M * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetSmsTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetUserEndpointsCommand.ts b/clients/client-pinpoint/src/commands/GetUserEndpointsCommand.ts index e3af661395e9a..07af2b25a1b78 100644 --- a/clients/client-pinpoint/src/commands/GetUserEndpointsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetUserEndpointsCommand.ts @@ -126,6 +126,7 @@ export interface GetUserEndpointsCommandOutput extends GetUserEndpointsResponse, * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetUserEndpointsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetVoiceChannelCommand.ts b/clients/client-pinpoint/src/commands/GetVoiceChannelCommand.ts index caa0aaef124f9..a6e7a67c1f6b6 100644 --- a/clients/client-pinpoint/src/commands/GetVoiceChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetVoiceChannelCommand.ts @@ -87,6 +87,7 @@ export interface GetVoiceChannelCommandOutput extends GetVoiceChannelResponse, _ * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetVoiceChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/GetVoiceTemplateCommand.ts b/clients/client-pinpoint/src/commands/GetVoiceTemplateCommand.ts index 38632e8324a93..50f6870078d39 100644 --- a/clients/client-pinpoint/src/commands/GetVoiceTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/GetVoiceTemplateCommand.ts @@ -92,6 +92,7 @@ export interface GetVoiceTemplateCommandOutput extends GetVoiceTemplateResponse, * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class GetVoiceTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/ListJourneysCommand.ts b/clients/client-pinpoint/src/commands/ListJourneysCommand.ts index cf7a8dfeef87e..7b875e12d9afd 100644 --- a/clients/client-pinpoint/src/commands/ListJourneysCommand.ts +++ b/clients/client-pinpoint/src/commands/ListJourneysCommand.ts @@ -468,6 +468,7 @@ export interface ListJourneysCommandOutput extends ListJourneysResponse, __Metad * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class ListJourneysCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/ListTagsForResourceCommand.ts b/clients/client-pinpoint/src/commands/ListTagsForResourceCommand.ts index 161d4d62ab517..73f6f6a2059e5 100644 --- a/clients/client-pinpoint/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pinpoint/src/commands/ListTagsForResourceCommand.ts @@ -59,6 +59,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/ListTemplateVersionsCommand.ts b/clients/client-pinpoint/src/commands/ListTemplateVersionsCommand.ts index 0dc2bde540304..b96d20e90689d 100644 --- a/clients/client-pinpoint/src/commands/ListTemplateVersionsCommand.ts +++ b/clients/client-pinpoint/src/commands/ListTemplateVersionsCommand.ts @@ -94,6 +94,7 @@ export interface ListTemplateVersionsCommandOutput extends ListTemplateVersionsR * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class ListTemplateVersionsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/ListTemplatesCommand.ts b/clients/client-pinpoint/src/commands/ListTemplatesCommand.ts index de6cae542c35c..bd95ea0d80eaf 100644 --- a/clients/client-pinpoint/src/commands/ListTemplatesCommand.ts +++ b/clients/client-pinpoint/src/commands/ListTemplatesCommand.ts @@ -90,6 +90,7 @@ export interface ListTemplatesCommandOutput extends ListTemplatesResponse, __Met * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class ListTemplatesCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/PhoneNumberValidateCommand.ts b/clients/client-pinpoint/src/commands/PhoneNumberValidateCommand.ts index a5f6b33fbc365..a35c747eebeec 100644 --- a/clients/client-pinpoint/src/commands/PhoneNumberValidateCommand.ts +++ b/clients/client-pinpoint/src/commands/PhoneNumberValidateCommand.ts @@ -94,6 +94,7 @@ export interface PhoneNumberValidateCommandOutput extends PhoneNumberValidateRes * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class PhoneNumberValidateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/PutEventStreamCommand.ts b/clients/client-pinpoint/src/commands/PutEventStreamCommand.ts index 99d603c26aef9..b90b7007b8a75 100644 --- a/clients/client-pinpoint/src/commands/PutEventStreamCommand.ts +++ b/clients/client-pinpoint/src/commands/PutEventStreamCommand.ts @@ -87,6 +87,7 @@ export interface PutEventStreamCommandOutput extends PutEventStreamResponse, __M * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class PutEventStreamCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/PutEventsCommand.ts b/clients/client-pinpoint/src/commands/PutEventsCommand.ts index 3b707637af9cd..373c6f0df75da 100644 --- a/clients/client-pinpoint/src/commands/PutEventsCommand.ts +++ b/clients/client-pinpoint/src/commands/PutEventsCommand.ts @@ -162,6 +162,7 @@ export interface PutEventsCommandOutput extends PutEventsResponse, __MetadataBea * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class PutEventsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/RemoveAttributesCommand.ts b/clients/client-pinpoint/src/commands/RemoveAttributesCommand.ts index ba816dba65ee3..65840957ea061 100644 --- a/clients/client-pinpoint/src/commands/RemoveAttributesCommand.ts +++ b/clients/client-pinpoint/src/commands/RemoveAttributesCommand.ts @@ -88,6 +88,7 @@ export interface RemoveAttributesCommandOutput extends RemoveAttributesResponse, * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class RemoveAttributesCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/SendMessagesCommand.ts b/clients/client-pinpoint/src/commands/SendMessagesCommand.ts index e2f9d8c26c84f..26cb390811670 100644 --- a/clients/client-pinpoint/src/commands/SendMessagesCommand.ts +++ b/clients/client-pinpoint/src/commands/SendMessagesCommand.ts @@ -310,6 +310,7 @@ export interface SendMessagesCommandOutput extends SendMessagesResponse, __Metad * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class SendMessagesCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/SendOTPMessageCommand.ts b/clients/client-pinpoint/src/commands/SendOTPMessageCommand.ts index 9f87ea59c59b5..ae73341a9667c 100644 --- a/clients/client-pinpoint/src/commands/SendOTPMessageCommand.ts +++ b/clients/client-pinpoint/src/commands/SendOTPMessageCommand.ts @@ -111,6 +111,7 @@ export interface SendOTPMessageCommandOutput extends SendOTPMessageResponse, __M * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class SendOTPMessageCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/SendUsersMessagesCommand.ts b/clients/client-pinpoint/src/commands/SendUsersMessagesCommand.ts index e003d218674bd..f9fc4aff7045e 100644 --- a/clients/client-pinpoint/src/commands/SendUsersMessagesCommand.ts +++ b/clients/client-pinpoint/src/commands/SendUsersMessagesCommand.ts @@ -293,6 +293,7 @@ export interface SendUsersMessagesCommandOutput extends SendUsersMessagesRespons * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class SendUsersMessagesCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/TagResourceCommand.ts b/clients/client-pinpoint/src/commands/TagResourceCommand.ts index 9ea2605caee2d..07f3356171b41 100644 --- a/clients/client-pinpoint/src/commands/TagResourceCommand.ts +++ b/clients/client-pinpoint/src/commands/TagResourceCommand.ts @@ -58,6 +58,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UntagResourceCommand.ts b/clients/client-pinpoint/src/commands/UntagResourceCommand.ts index 8e2da524576bf..396df0263c017 100644 --- a/clients/client-pinpoint/src/commands/UntagResourceCommand.ts +++ b/clients/client-pinpoint/src/commands/UntagResourceCommand.ts @@ -56,6 +56,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateAdmChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateAdmChannelCommand.ts index 4c6c3fcdc6b4d..120d4bbe777a3 100644 --- a/clients/client-pinpoint/src/commands/UpdateAdmChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateAdmChannelCommand.ts @@ -92,6 +92,7 @@ export interface UpdateAdmChannelCommandOutput extends UpdateAdmChannelResponse, * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateAdmChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateApnsChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateApnsChannelCommand.ts index 2fe3b27da98a6..59cb68d1128cb 100644 --- a/clients/client-pinpoint/src/commands/UpdateApnsChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateApnsChannelCommand.ts @@ -99,6 +99,7 @@ export interface UpdateApnsChannelCommandOutput extends UpdateApnsChannelRespons * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateApnsChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateApnsSandboxChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateApnsSandboxChannelCommand.ts index e58701f0ebf79..0a9aaec79cbef 100644 --- a/clients/client-pinpoint/src/commands/UpdateApnsSandboxChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateApnsSandboxChannelCommand.ts @@ -99,6 +99,7 @@ export interface UpdateApnsSandboxChannelCommandOutput extends UpdateApnsSandbox * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateApnsSandboxChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateApnsVoipChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateApnsVoipChannelCommand.ts index 5c064577b84e7..8c0181802a743 100644 --- a/clients/client-pinpoint/src/commands/UpdateApnsVoipChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateApnsVoipChannelCommand.ts @@ -99,6 +99,7 @@ export interface UpdateApnsVoipChannelCommandOutput extends UpdateApnsVoipChanne * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateApnsVoipChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateApnsVoipSandboxChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateApnsVoipSandboxChannelCommand.ts index 306188d1b4004..901862740fb1f 100644 --- a/clients/client-pinpoint/src/commands/UpdateApnsVoipSandboxChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateApnsVoipSandboxChannelCommand.ts @@ -104,6 +104,7 @@ export interface UpdateApnsVoipSandboxChannelCommandOutput * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateApnsVoipSandboxChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateApplicationSettingsCommand.ts b/clients/client-pinpoint/src/commands/UpdateApplicationSettingsCommand.ts index e34eeb0167ad6..e3c897336b8dc 100644 --- a/clients/client-pinpoint/src/commands/UpdateApplicationSettingsCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateApplicationSettingsCommand.ts @@ -131,6 +131,7 @@ export interface UpdateApplicationSettingsCommandOutput extends UpdateApplicatio * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateApplicationSettingsCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateBaiduChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateBaiduChannelCommand.ts index e2ecbf1925ce3..0a6e2beaac7ee 100644 --- a/clients/client-pinpoint/src/commands/UpdateBaiduChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateBaiduChannelCommand.ts @@ -93,6 +93,7 @@ export interface UpdateBaiduChannelCommandOutput extends UpdateBaiduChannelRespo * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateBaiduChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateCampaignCommand.ts b/clients/client-pinpoint/src/commands/UpdateCampaignCommand.ts index 7b0b6a5a6f0f1..ff892b4555fd5 100644 --- a/clients/client-pinpoint/src/commands/UpdateCampaignCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateCampaignCommand.ts @@ -848,6 +848,7 @@ export interface UpdateCampaignCommandOutput extends UpdateCampaignResponse, __M * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateCampaignCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateEmailChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateEmailChannelCommand.ts index 74bf03a1d2a04..5f03980666b6d 100644 --- a/clients/client-pinpoint/src/commands/UpdateEmailChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateEmailChannelCommand.ts @@ -101,6 +101,7 @@ export interface UpdateEmailChannelCommandOutput extends UpdateEmailChannelRespo * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateEmailChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateEmailTemplateCommand.ts b/clients/client-pinpoint/src/commands/UpdateEmailTemplateCommand.ts index 3a545e3560120..0bc3f4fd6875c 100644 --- a/clients/client-pinpoint/src/commands/UpdateEmailTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateEmailTemplateCommand.ts @@ -98,6 +98,7 @@ export interface UpdateEmailTemplateCommandOutput extends UpdateEmailTemplateRes * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateEmailTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateEndpointCommand.ts b/clients/client-pinpoint/src/commands/UpdateEndpointCommand.ts index d09821acb7d37..8b15a02de6504 100644 --- a/clients/client-pinpoint/src/commands/UpdateEndpointCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateEndpointCommand.ts @@ -122,6 +122,7 @@ export interface UpdateEndpointCommandOutput extends UpdateEndpointResponse, __M * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateEndpointCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateEndpointsBatchCommand.ts b/clients/client-pinpoint/src/commands/UpdateEndpointsBatchCommand.ts index 70a4d92b29e76..6374c438f7899 100644 --- a/clients/client-pinpoint/src/commands/UpdateEndpointsBatchCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateEndpointsBatchCommand.ts @@ -126,6 +126,7 @@ export interface UpdateEndpointsBatchCommandOutput extends UpdateEndpointsBatchR * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateEndpointsBatchCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateGcmChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateGcmChannelCommand.ts index a8ddd5fd89873..507f0178e8843 100644 --- a/clients/client-pinpoint/src/commands/UpdateGcmChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateGcmChannelCommand.ts @@ -96,6 +96,7 @@ export interface UpdateGcmChannelCommandOutput extends UpdateGcmChannelResponse, * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateGcmChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateInAppTemplateCommand.ts b/clients/client-pinpoint/src/commands/UpdateInAppTemplateCommand.ts index fb42c2101a489..25c468be4a7cb 100644 --- a/clients/client-pinpoint/src/commands/UpdateInAppTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateInAppTemplateCommand.ts @@ -148,6 +148,7 @@ export interface UpdateInAppTemplateCommandOutput extends UpdateInAppTemplateRes * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateInAppTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateJourneyCommand.ts b/clients/client-pinpoint/src/commands/UpdateJourneyCommand.ts index 3b772a8c88123..5609b1ccc909a 100644 --- a/clients/client-pinpoint/src/commands/UpdateJourneyCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateJourneyCommand.ts @@ -846,6 +846,7 @@ export interface UpdateJourneyCommandOutput extends UpdateJourneyResponse, __Met * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateJourneyCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateJourneyStateCommand.ts b/clients/client-pinpoint/src/commands/UpdateJourneyStateCommand.ts index ff6598e4f0028..6fa76a68f166e 100644 --- a/clients/client-pinpoint/src/commands/UpdateJourneyStateCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateJourneyStateCommand.ts @@ -465,6 +465,7 @@ export interface UpdateJourneyStateCommandOutput extends UpdateJourneyStateRespo * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateJourneyStateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdatePushTemplateCommand.ts b/clients/client-pinpoint/src/commands/UpdatePushTemplateCommand.ts index dd44d6c9c8a6d..bbbc0e08c7a4f 100644 --- a/clients/client-pinpoint/src/commands/UpdatePushTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdatePushTemplateCommand.ts @@ -138,6 +138,7 @@ export interface UpdatePushTemplateCommandOutput extends UpdatePushTemplateRespo * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdatePushTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateRecommenderConfigurationCommand.ts b/clients/client-pinpoint/src/commands/UpdateRecommenderConfigurationCommand.ts index 40be66ce88e17..b6f23bc9e9561 100644 --- a/clients/client-pinpoint/src/commands/UpdateRecommenderConfigurationCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateRecommenderConfigurationCommand.ts @@ -109,6 +109,7 @@ export interface UpdateRecommenderConfigurationCommandOutput * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateRecommenderConfigurationCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateSegmentCommand.ts b/clients/client-pinpoint/src/commands/UpdateSegmentCommand.ts index 0fb1ae10532ce..8bd9a32f17575 100644 --- a/clients/client-pinpoint/src/commands/UpdateSegmentCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateSegmentCommand.ts @@ -365,6 +365,7 @@ export interface UpdateSegmentCommandOutput extends UpdateSegmentResponse, __Met * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateSegmentCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateSmsChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateSmsChannelCommand.ts index 68a3176cfc05e..1f9c01f68db42 100644 --- a/clients/client-pinpoint/src/commands/UpdateSmsChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateSmsChannelCommand.ts @@ -96,6 +96,7 @@ export interface UpdateSmsChannelCommandOutput extends UpdateSmsChannelResponse, * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateSmsChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateSmsTemplateCommand.ts b/clients/client-pinpoint/src/commands/UpdateSmsTemplateCommand.ts index 82caeb649443f..3f84fd07a5d83 100644 --- a/clients/client-pinpoint/src/commands/UpdateSmsTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateSmsTemplateCommand.ts @@ -90,6 +90,7 @@ export interface UpdateSmsTemplateCommandOutput extends UpdateSmsTemplateRespons * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateSmsTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateTemplateActiveVersionCommand.ts b/clients/client-pinpoint/src/commands/UpdateTemplateActiveVersionCommand.ts index 69e275ba025d2..466256ea22d87 100644 --- a/clients/client-pinpoint/src/commands/UpdateTemplateActiveVersionCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateTemplateActiveVersionCommand.ts @@ -88,6 +88,7 @@ export interface UpdateTemplateActiveVersionCommandOutput * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateTemplateActiveVersionCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateVoiceChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateVoiceChannelCommand.ts index 36c2bfcf48bbe..cafd9a8621209 100644 --- a/clients/client-pinpoint/src/commands/UpdateVoiceChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateVoiceChannelCommand.ts @@ -90,6 +90,7 @@ export interface UpdateVoiceChannelCommandOutput extends UpdateVoiceChannelRespo * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateVoiceChannelCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/UpdateVoiceTemplateCommand.ts b/clients/client-pinpoint/src/commands/UpdateVoiceTemplateCommand.ts index cd4358de2fc84..56a1859e2d3b4 100644 --- a/clients/client-pinpoint/src/commands/UpdateVoiceTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateVoiceTemplateCommand.ts @@ -91,6 +91,7 @@ export interface UpdateVoiceTemplateCommandOutput extends UpdateVoiceTemplateRes * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class UpdateVoiceTemplateCommand extends $Command diff --git a/clients/client-pinpoint/src/commands/VerifyOTPMessageCommand.ts b/clients/client-pinpoint/src/commands/VerifyOTPMessageCommand.ts index af9251016f654..616c29fccab0b 100644 --- a/clients/client-pinpoint/src/commands/VerifyOTPMessageCommand.ts +++ b/clients/client-pinpoint/src/commands/VerifyOTPMessageCommand.ts @@ -83,6 +83,7 @@ export interface VerifyOTPMessageCommandOutput extends VerifyOTPMessageResponse, * @throws {@link PinpointServiceException} *

Base exception class for all service exceptions from Pinpoint service.

* + * * @public */ export class VerifyOTPMessageCommand extends $Command diff --git a/clients/client-pipes/src/commands/CreatePipeCommand.ts b/clients/client-pipes/src/commands/CreatePipeCommand.ts index 9ca3bb9574bf5..c9aa3e444b643 100644 --- a/clients/client-pipes/src/commands/CreatePipeCommand.ts +++ b/clients/client-pipes/src/commands/CreatePipeCommand.ts @@ -431,6 +431,7 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB * @throws {@link PipesServiceException} *

Base exception class for all service exceptions from Pipes service.

* + * * @public */ export class CreatePipeCommand extends $Command diff --git a/clients/client-pipes/src/commands/DeletePipeCommand.ts b/clients/client-pipes/src/commands/DeletePipeCommand.ts index f2c1e836a90d0..dff41a1c032d1 100644 --- a/clients/client-pipes/src/commands/DeletePipeCommand.ts +++ b/clients/client-pipes/src/commands/DeletePipeCommand.ts @@ -75,6 +75,7 @@ export interface DeletePipeCommandOutput extends DeletePipeResponse, __MetadataB * @throws {@link PipesServiceException} *

Base exception class for all service exceptions from Pipes service.

* + * * @public */ export class DeletePipeCommand extends $Command diff --git a/clients/client-pipes/src/commands/DescribePipeCommand.ts b/clients/client-pipes/src/commands/DescribePipeCommand.ts index 763f2fa2d06de..a4ce76e8e6f48 100644 --- a/clients/client-pipes/src/commands/DescribePipeCommand.ts +++ b/clients/client-pipes/src/commands/DescribePipeCommand.ts @@ -424,6 +424,7 @@ export interface DescribePipeCommandOutput extends DescribePipeResponse, __Metad * @throws {@link PipesServiceException} *

Base exception class for all service exceptions from Pipes service.

* + * * @public */ export class DescribePipeCommand extends $Command diff --git a/clients/client-pipes/src/commands/ListPipesCommand.ts b/clients/client-pipes/src/commands/ListPipesCommand.ts index 4fcf9abe482db..fcd0f72456abb 100644 --- a/clients/client-pipes/src/commands/ListPipesCommand.ts +++ b/clients/client-pipes/src/commands/ListPipesCommand.ts @@ -89,6 +89,7 @@ export interface ListPipesCommandOutput extends ListPipesResponse, __MetadataBea * @throws {@link PipesServiceException} *

Base exception class for all service exceptions from Pipes service.

* + * * @public */ export class ListPipesCommand extends $Command diff --git a/clients/client-pipes/src/commands/ListTagsForResourceCommand.ts b/clients/client-pipes/src/commands/ListTagsForResourceCommand.ts index 873cc39926352..7d81c78b7935f 100644 --- a/clients/client-pipes/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pipes/src/commands/ListTagsForResourceCommand.ts @@ -70,6 +70,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link PipesServiceException} *

Base exception class for all service exceptions from Pipes service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-pipes/src/commands/StartPipeCommand.ts b/clients/client-pipes/src/commands/StartPipeCommand.ts index 5332f91d42314..c6cf2accbb1d5 100644 --- a/clients/client-pipes/src/commands/StartPipeCommand.ts +++ b/clients/client-pipes/src/commands/StartPipeCommand.ts @@ -75,6 +75,7 @@ export interface StartPipeCommandOutput extends StartPipeResponse, __MetadataBea * @throws {@link PipesServiceException} *

Base exception class for all service exceptions from Pipes service.

* + * * @public */ export class StartPipeCommand extends $Command diff --git a/clients/client-pipes/src/commands/StopPipeCommand.ts b/clients/client-pipes/src/commands/StopPipeCommand.ts index 341fb900a00f7..7501310f90d90 100644 --- a/clients/client-pipes/src/commands/StopPipeCommand.ts +++ b/clients/client-pipes/src/commands/StopPipeCommand.ts @@ -75,6 +75,7 @@ export interface StopPipeCommandOutput extends StopPipeResponse, __MetadataBeare * @throws {@link PipesServiceException} *

Base exception class for all service exceptions from Pipes service.

* + * * @public */ export class StopPipeCommand extends $Command diff --git a/clients/client-pipes/src/commands/TagResourceCommand.ts b/clients/client-pipes/src/commands/TagResourceCommand.ts index 26332639ce0ce..41eea0ffa8f0c 100644 --- a/clients/client-pipes/src/commands/TagResourceCommand.ts +++ b/clients/client-pipes/src/commands/TagResourceCommand.ts @@ -75,6 +75,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link PipesServiceException} *

Base exception class for all service exceptions from Pipes service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-pipes/src/commands/UntagResourceCommand.ts b/clients/client-pipes/src/commands/UntagResourceCommand.ts index 09f33aa30b815..9f4863551e869 100644 --- a/clients/client-pipes/src/commands/UntagResourceCommand.ts +++ b/clients/client-pipes/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link PipesServiceException} *

Base exception class for all service exceptions from Pipes service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-pipes/src/commands/UpdatePipeCommand.ts b/clients/client-pipes/src/commands/UpdatePipeCommand.ts index 5c19cb74ddf5a..66f618987d27c 100644 --- a/clients/client-pipes/src/commands/UpdatePipeCommand.ts +++ b/clients/client-pipes/src/commands/UpdatePipeCommand.ts @@ -419,6 +419,7 @@ export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataB * @throws {@link PipesServiceException} *

Base exception class for all service exceptions from Pipes service.

* + * * @public */ export class UpdatePipeCommand extends $Command diff --git a/clients/client-polly/src/commands/DeleteLexiconCommand.ts b/clients/client-polly/src/commands/DeleteLexiconCommand.ts index 1710cf10554fa..9d171414d8772 100644 --- a/clients/client-polly/src/commands/DeleteLexiconCommand.ts +++ b/clients/client-polly/src/commands/DeleteLexiconCommand.ts @@ -66,18 +66,21 @@ export interface DeleteLexiconCommandOutput extends DeleteLexiconOutput, __Metad * @throws {@link PollyServiceException} *

Base exception class for all service exceptions from Polly service.

* - * @public + * * @example To delete a lexicon * ```javascript * // Deletes a specified pronunciation lexicon stored in an AWS Region. * const input = { - * "Name": "example" + * Name: "example" * }; * const command = new DeleteLexiconCommand(input); - * await client.send(command); - * // example id: to-delete-a-lexicon-1481922498332 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteLexiconCommand extends $Command .classBuilder< diff --git a/clients/client-polly/src/commands/DescribeVoicesCommand.ts b/clients/client-polly/src/commands/DescribeVoicesCommand.ts index c02cdb6812f95..5881c57d255f2 100644 --- a/clients/client-polly/src/commands/DescribeVoicesCommand.ts +++ b/clients/client-polly/src/commands/DescribeVoicesCommand.ts @@ -95,45 +95,45 @@ export interface DescribeVoicesCommandOutput extends DescribeVoicesOutput, __Met * @throws {@link PollyServiceException} *

Base exception class for all service exceptions from Polly service.

* - * @public + * * @example To describe available voices * ```javascript * // Returns the list of voices that are available for use when requesting speech synthesis. Displayed languages are those within the specified language code. If no language code is specified, voices for all available languages are displayed. * const input = { - * "LanguageCode": "en-GB" + * LanguageCode: "en-GB" * }; * const command = new DescribeVoicesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Voices": [ + * Voices: [ * { - * "Gender": "Female", - * "Id": "Emma", - * "LanguageCode": "en-GB", - * "LanguageName": "British English", - * "Name": "Emma" + * Gender: "Female", + * Id: "Emma", + * LanguageCode: "en-GB", + * LanguageName: "British English", + * Name: "Emma" * }, * { - * "Gender": "Male", - * "Id": "Brian", - * "LanguageCode": "en-GB", - * "LanguageName": "British English", - * "Name": "Brian" + * Gender: "Male", + * Id: "Brian", + * LanguageCode: "en-GB", + * LanguageName: "British English", + * Name: "Brian" * }, * { - * "Gender": "Female", - * "Id": "Amy", - * "LanguageCode": "en-GB", - * "LanguageName": "British English", - * "Name": "Amy" + * Gender: "Female", + * Id: "Amy", + * LanguageCode: "en-GB", + * LanguageName: "British English", + * Name: "Amy" * } * ] * } * *\/ - * // example id: to-describe-available-voices-1482180557753 * ``` * + * @public */ export class DescribeVoicesCommand extends $Command .classBuilder< diff --git a/clients/client-polly/src/commands/GetLexiconCommand.ts b/clients/client-polly/src/commands/GetLexiconCommand.ts index ada3e643c24ff..9bb17999752e8 100644 --- a/clients/client-polly/src/commands/GetLexiconCommand.ts +++ b/clients/client-polly/src/commands/GetLexiconCommand.ts @@ -77,34 +77,8 @@ export interface GetLexiconCommandOutput extends GetLexiconOutput, __MetadataBea * @throws {@link PollyServiceException} *

Base exception class for all service exceptions from Polly service.

* - * @public - * @example To retrieve a lexicon - * ```javascript - * // Returns the content of the specified pronunciation lexicon stored in an AWS Region. - * const input = { - * "Name": "" - * }; - * const command = new GetLexiconCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Lexicon": { - * "Content": "\r\n\r\n \r\n W3C\r\n World Wide Web Consortium\r\n \r\n", - * "Name": "example" - * }, - * "LexiconAttributes": { - * "Alphabet": "ipa", - * "LanguageCode": "en-US", - * "LastModified": 1478542980.117, - * "LexemesCount": 1, - * "LexiconArn": "arn:aws:polly:us-east-1:123456789012:lexicon/example", - * "Size": 503 - * } - * } - * *\/ - * // example id: to-retrieve-a-lexicon-1481912870836 - * ``` * + * @public */ export class GetLexiconCommand extends $Command .classBuilder< diff --git a/clients/client-polly/src/commands/GetSpeechSynthesisTaskCommand.ts b/clients/client-polly/src/commands/GetSpeechSynthesisTaskCommand.ts index 76583d5dc1763..d46db50645d55 100644 --- a/clients/client-polly/src/commands/GetSpeechSynthesisTaskCommand.ts +++ b/clients/client-polly/src/commands/GetSpeechSynthesisTaskCommand.ts @@ -89,6 +89,7 @@ export interface GetSpeechSynthesisTaskCommandOutput extends GetSpeechSynthesisT * @throws {@link PollyServiceException} *

Base exception class for all service exceptions from Polly service.

* + * * @public */ export class GetSpeechSynthesisTaskCommand extends $Command diff --git a/clients/client-polly/src/commands/ListLexiconsCommand.ts b/clients/client-polly/src/commands/ListLexiconsCommand.ts index 2ee0a73149edf..b8da93b3ba88f 100644 --- a/clients/client-polly/src/commands/ListLexiconsCommand.ts +++ b/clients/client-polly/src/commands/ListLexiconsCommand.ts @@ -75,33 +75,33 @@ export interface ListLexiconsCommandOutput extends ListLexiconsOutput, __Metadat * @throws {@link PollyServiceException} *

Base exception class for all service exceptions from Polly service.

* - * @public + * * @example To list all lexicons in a region * ```javascript * // Returns a list of pronunciation lexicons stored in an AWS Region. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListLexiconsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Lexicons": [ + * Lexicons: [ * { - * "Attributes": { - * "Alphabet": "ipa", - * "LanguageCode": "en-US", - * "LastModified": 1478542980.117, - * "LexemesCount": 1, - * "LexiconArn": "arn:aws:polly:us-east-1:123456789012:lexicon/example", - * "Size": 503 + * Attributes: { + * Alphabet: "ipa", + * LanguageCode: "en-US", + * LastModified: 1.478542980117E9, + * LexemesCount: 1, + * LexiconArn: "arn:aws:polly:us-east-1:123456789012:lexicon/example", + * Size: 503 * }, - * "Name": "example" + * Name: "example" * } * ] * } * *\/ - * // example id: to-list-all-lexicons-in-a-region-1481842106487 * ``` * + * @public */ export class ListLexiconsCommand extends $Command .classBuilder< diff --git a/clients/client-polly/src/commands/ListSpeechSynthesisTasksCommand.ts b/clients/client-polly/src/commands/ListSpeechSynthesisTasksCommand.ts index 5752a75f65b61..71145b898a13f 100644 --- a/clients/client-polly/src/commands/ListSpeechSynthesisTasksCommand.ts +++ b/clients/client-polly/src/commands/ListSpeechSynthesisTasksCommand.ts @@ -89,6 +89,7 @@ export interface ListSpeechSynthesisTasksCommandOutput extends ListSpeechSynthes * @throws {@link PollyServiceException} *

Base exception class for all service exceptions from Polly service.

* + * * @public */ export class ListSpeechSynthesisTasksCommand extends $Command diff --git a/clients/client-polly/src/commands/PutLexiconCommand.ts b/clients/client-polly/src/commands/PutLexiconCommand.ts index 0bfbf54e80f53..9530c994dc18a 100644 --- a/clients/client-polly/src/commands/PutLexiconCommand.ts +++ b/clients/client-polly/src/commands/PutLexiconCommand.ts @@ -86,19 +86,22 @@ export interface PutLexiconCommandOutput extends PutLexiconOutput, __MetadataBea * @throws {@link PollyServiceException} *

Base exception class for all service exceptions from Polly service.

* - * @public + * * @example To save a lexicon * ```javascript * // Stores a pronunciation lexicon in an AWS Region. * const input = { - * "Content": "", - * "Name": "W3C" + * Content: "", + * Name: "W3C" * }; * const command = new PutLexiconCommand(input); - * await client.send(command); - * // example id: to-save-a-lexicon-1482272584088 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class PutLexiconCommand extends $Command .classBuilder< diff --git a/clients/client-polly/src/commands/StartSpeechSynthesisTaskCommand.ts b/clients/client-polly/src/commands/StartSpeechSynthesisTaskCommand.ts index 27593bfce433a..b73ef1b2b879c 100644 --- a/clients/client-polly/src/commands/StartSpeechSynthesisTaskCommand.ts +++ b/clients/client-polly/src/commands/StartSpeechSynthesisTaskCommand.ts @@ -155,6 +155,7 @@ export interface StartSpeechSynthesisTaskCommandOutput extends StartSpeechSynthe * @throws {@link PollyServiceException} *

Base exception class for all service exceptions from Polly service.

* + * * @public */ export class StartSpeechSynthesisTaskCommand extends $Command diff --git a/clients/client-polly/src/commands/SynthesizeSpeechCommand.ts b/clients/client-polly/src/commands/SynthesizeSpeechCommand.ts index 66ac66edec514..beda0f9c4448f 100644 --- a/clients/client-polly/src/commands/SynthesizeSpeechCommand.ts +++ b/clients/client-polly/src/commands/SynthesizeSpeechCommand.ts @@ -62,6 +62,11 @@ export interface SynthesizeSpeechCommandOutput extends Omit", // see \@smithy/types -> StreamingBlobPayloadOutputTypes * // ContentType: "STRING_VALUE", @@ -123,32 +128,37 @@ export interface SynthesizeSpeechCommandOutput extends OmitBase exception class for all service exceptions from Polly service.

* - * @public + * * @example To synthesize speech * ```javascript * // Synthesizes plain text or SSML into a file of human-like speech. * const input = { - * "LexiconNames": [ + * LexiconNames: [ * "example" * ], - * "OutputFormat": "mp3", - * "SampleRate": "8000", - * "Text": "All Gaul is divided into three parts", - * "TextType": "text", - * "VoiceId": "Joanna" + * OutputFormat: "mp3", + * SampleRate: "8000", + * Text: "All Gaul is divided into three parts", + * TextType: "text", + * VoiceId: "Joanna" * }; * const command = new SynthesizeSpeechCommand(input); * const response = await client.send(command); - * /* response == + * // consume or destroy the stream to free the socket. + * const bytes = await response.AudioStream.transformToByteArray(); + * // const str = await response.AudioStream.transformToString(); + * // response.AudioStream.destroy(); // only applicable to Node.js Readable streams. + * + * /* response is * { - * "AudioStream": "TEXT", - * "ContentType": "audio/mpeg", - * "RequestCharacters": 37 + * AudioStream: "TEXT", + * ContentType: "audio/mpeg", + * RequestCharacters: 37 * } * *\/ - * // example id: to-synthesize-speech-1482186064046 * ``` * + * @public */ export class SynthesizeSpeechCommand extends $Command .classBuilder< diff --git a/clients/client-pricing/src/commands/DescribeServicesCommand.ts b/clients/client-pricing/src/commands/DescribeServicesCommand.ts index a42edb119d20b..fa25b7b27500b 100644 --- a/clients/client-pricing/src/commands/DescribeServicesCommand.ts +++ b/clients/client-pricing/src/commands/DescribeServicesCommand.ts @@ -92,38 +92,38 @@ export interface DescribeServicesCommandOutput extends DescribeServicesResponse, * @throws {@link PricingServiceException} *

Base exception class for all service exceptions from Pricing service.

* - * @public + * * @example To retrieve a list of services and service codes * ```javascript * // Retrieves the service for the given Service Code. * const input = { - * "FormatVersion": "aws_v1", - * "MaxResults": 1, - * "ServiceCode": "AmazonEC2" + * FormatVersion: "aws_v1", + * MaxResults: 1, + * ServiceCode: "AmazonEC2" * }; * const command = new DescribeServicesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FormatVersion": "aws_v1", - * "NextToken": "abcdefg123", - * "Services": [ + * FormatVersion: "aws_v1", + * NextToken: "abcdefg123", + * Services: [ * { - * "AttributeNames": [ + * AttributeNames: [ * "volumeType", * "maxIopsvolume", * "instanceCapacity10xlarge", * "locationType", * "operation" * ], - * "ServiceCode": "AmazonEC2" + * ServiceCode: "AmazonEC2" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class DescribeServicesCommand extends $Command .classBuilder< diff --git a/clients/client-pricing/src/commands/GetAttributeValuesCommand.ts b/clients/client-pricing/src/commands/GetAttributeValuesCommand.ts index 3d43b80067d62..4e2df6e36e173 100644 --- a/clients/client-pricing/src/commands/GetAttributeValuesCommand.ts +++ b/clients/client-pricing/src/commands/GetAttributeValuesCommand.ts @@ -85,33 +85,33 @@ export interface GetAttributeValuesCommandOutput extends GetAttributeValuesRespo * @throws {@link PricingServiceException} *

Base exception class for all service exceptions from Pricing service.

* - * @public + * * @example To retrieve a list of attribute values * ```javascript * // This operation returns a list of values available for the given attribute. * const input = { - * "AttributeName": "volumeType", - * "MaxResults": 2, - * "ServiceCode": "AmazonEC2" + * AttributeName: "volumeType", + * MaxResults: 2, + * ServiceCode: "AmazonEC2" * }; * const command = new GetAttributeValuesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AttributeValues": [ + * AttributeValues: [ * { - * "Value": "Throughput Optimized HDD" + * Value: "Throughput Optimized HDD" * }, * { - * "Value": "Provisioned IOPS" + * Value: "Provisioned IOPS" * } * ], - * "NextToken": "GpgauEXAMPLEezucl5LV0w==:7GzYJ0nw0DBTJ2J66EoTIIynE6O1uXwQtTRqioJzQadBnDVgHPzI1en4BUQnPCLpzeBk9RQQAWaFieA4+DapFAGLgk+Z/9/cTw9GldnPOHN98+FdmJP7wKU3QQpQ8MQr5KOeBkIsAqvAQYdL0DkL7tHwPtE5iCEByAmg9gcC/yBU1vAOsf7R3VaNN4M5jMDv3woSWqASSIlBVB6tgW78YL22KhssoItM/jWW+aP6Jqtq4mldxp/ct6DWAl+xLFwHU/CbketimPPXyqHF3/UXDw==" + * NextToken: "GpgauEXAMPLEezucl5LV0w==:7GzYJ0nw0DBTJ2J66EoTIIynE6O1uXwQtTRqioJzQadBnDVgHPzI1en4BUQnPCLpzeBk9RQQAWaFieA4+DapFAGLgk+Z/9/cTw9GldnPOHN98+FdmJP7wKU3QQpQ8MQr5KOeBkIsAqvAQYdL0DkL7tHwPtE5iCEByAmg9gcC/yBU1vAOsf7R3VaNN4M5jMDv3woSWqASSIlBVB6tgW78YL22KhssoItM/jWW+aP6Jqtq4mldxp/ct6DWAl+xLFwHU/CbketimPPXyqHF3/UXDw==" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetAttributeValuesCommand extends $Command .classBuilder< diff --git a/clients/client-pricing/src/commands/GetPriceListFileUrlCommand.ts b/clients/client-pricing/src/commands/GetPriceListFileUrlCommand.ts index fdda47ab035e5..ff5bf26037af7 100644 --- a/clients/client-pricing/src/commands/GetPriceListFileUrlCommand.ts +++ b/clients/client-pricing/src/commands/GetPriceListFileUrlCommand.ts @@ -82,6 +82,7 @@ export interface GetPriceListFileUrlCommandOutput extends GetPriceListFileUrlRes * @throws {@link PricingServiceException} *

Base exception class for all service exceptions from Pricing service.

* + * * @public */ export class GetPriceListFileUrlCommand extends $Command diff --git a/clients/client-pricing/src/commands/GetProductsCommand.ts b/clients/client-pricing/src/commands/GetProductsCommand.ts index ca91c531116e7..2b959ae2b1e24 100644 --- a/clients/client-pricing/src/commands/GetProductsCommand.ts +++ b/clients/client-pricing/src/commands/GetProductsCommand.ts @@ -88,6 +88,7 @@ export interface GetProductsCommandOutput extends GetProductsResponse, __Metadat * @throws {@link PricingServiceException} *

Base exception class for all service exceptions from Pricing service.

* + * * @public */ export class GetProductsCommand extends $Command diff --git a/clients/client-pricing/src/commands/ListPriceListsCommand.ts b/clients/client-pricing/src/commands/ListPriceListsCommand.ts index 433710a67c6b5..2beb6da266855 100644 --- a/clients/client-pricing/src/commands/ListPriceListsCommand.ts +++ b/clients/client-pricing/src/commands/ListPriceListsCommand.ts @@ -106,6 +106,7 @@ export interface ListPriceListsCommandOutput extends ListPriceListsResponse, __M * @throws {@link PricingServiceException} *

Base exception class for all service exceptions from Pricing service.

* + * * @public */ export class ListPriceListsCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/AcknowledgeOrderReceiptCommand.ts b/clients/client-privatenetworks/src/commands/AcknowledgeOrderReceiptCommand.ts index e0dfcd23f9a31..0106741d68e63 100644 --- a/clients/client-privatenetworks/src/commands/AcknowledgeOrderReceiptCommand.ts +++ b/clients/client-privatenetworks/src/commands/AcknowledgeOrderReceiptCommand.ts @@ -102,6 +102,7 @@ export interface AcknowledgeOrderReceiptCommandOutput extends AcknowledgeOrderRe * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class AcknowledgeOrderReceiptCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/ActivateDeviceIdentifierCommand.ts b/clients/client-privatenetworks/src/commands/ActivateDeviceIdentifierCommand.ts index 51d5aee3e614f..9f3e99b1a74e7 100644 --- a/clients/client-privatenetworks/src/commands/ActivateDeviceIdentifierCommand.ts +++ b/clients/client-privatenetworks/src/commands/ActivateDeviceIdentifierCommand.ts @@ -82,6 +82,7 @@ export interface ActivateDeviceIdentifierCommandOutput extends ActivateDeviceIde * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class ActivateDeviceIdentifierCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/ActivateNetworkSiteCommand.ts b/clients/client-privatenetworks/src/commands/ActivateNetworkSiteCommand.ts index 4d1ea95c71a5a..37700c01954f3 100644 --- a/clients/client-privatenetworks/src/commands/ActivateNetworkSiteCommand.ts +++ b/clients/client-privatenetworks/src/commands/ActivateNetworkSiteCommand.ts @@ -136,6 +136,7 @@ export interface ActivateNetworkSiteCommandOutput extends ActivateNetworkSiteRes * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class ActivateNetworkSiteCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/ConfigureAccessPointCommand.ts b/clients/client-privatenetworks/src/commands/ConfigureAccessPointCommand.ts index d527e9865b0cc..b743ace6e517c 100644 --- a/clients/client-privatenetworks/src/commands/ConfigureAccessPointCommand.ts +++ b/clients/client-privatenetworks/src/commands/ConfigureAccessPointCommand.ts @@ -137,6 +137,7 @@ export interface ConfigureAccessPointCommandOutput extends ConfigureAccessPointR * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class ConfigureAccessPointCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/CreateNetworkCommand.ts b/clients/client-privatenetworks/src/commands/CreateNetworkCommand.ts index b79627b67dbe4..ba90cf5c9d722 100644 --- a/clients/client-privatenetworks/src/commands/CreateNetworkCommand.ts +++ b/clients/client-privatenetworks/src/commands/CreateNetworkCommand.ts @@ -84,6 +84,7 @@ export interface CreateNetworkCommandOutput extends CreateNetworkResponse, __Met * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class CreateNetworkCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/CreateNetworkSiteCommand.ts b/clients/client-privatenetworks/src/commands/CreateNetworkSiteCommand.ts index 3d5686251cac3..24d78a0d4edaf 100644 --- a/clients/client-privatenetworks/src/commands/CreateNetworkSiteCommand.ts +++ b/clients/client-privatenetworks/src/commands/CreateNetworkSiteCommand.ts @@ -150,6 +150,7 @@ export interface CreateNetworkSiteCommandOutput extends CreateNetworkSiteRespons * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class CreateNetworkSiteCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/DeactivateDeviceIdentifierCommand.ts b/clients/client-privatenetworks/src/commands/DeactivateDeviceIdentifierCommand.ts index cb809ee75d62d..4540c7121f6c6 100644 --- a/clients/client-privatenetworks/src/commands/DeactivateDeviceIdentifierCommand.ts +++ b/clients/client-privatenetworks/src/commands/DeactivateDeviceIdentifierCommand.ts @@ -79,6 +79,7 @@ export interface DeactivateDeviceIdentifierCommandOutput extends DeactivateDevic * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class DeactivateDeviceIdentifierCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/DeleteNetworkCommand.ts b/clients/client-privatenetworks/src/commands/DeleteNetworkCommand.ts index 46cddab622568..664f0b6cb34a6 100644 --- a/clients/client-privatenetworks/src/commands/DeleteNetworkCommand.ts +++ b/clients/client-privatenetworks/src/commands/DeleteNetworkCommand.ts @@ -77,6 +77,7 @@ export interface DeleteNetworkCommandOutput extends DeleteNetworkResponse, __Met * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class DeleteNetworkCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/DeleteNetworkSiteCommand.ts b/clients/client-privatenetworks/src/commands/DeleteNetworkSiteCommand.ts index 8e37fb3bbe3d0..c33339351ac17 100644 --- a/clients/client-privatenetworks/src/commands/DeleteNetworkSiteCommand.ts +++ b/clients/client-privatenetworks/src/commands/DeleteNetworkSiteCommand.ts @@ -121,6 +121,7 @@ export interface DeleteNetworkSiteCommandOutput extends DeleteNetworkSiteRespons * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class DeleteNetworkSiteCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/GetDeviceIdentifierCommand.ts b/clients/client-privatenetworks/src/commands/GetDeviceIdentifierCommand.ts index 7520cc7568e71..b0231c53025e3 100644 --- a/clients/client-privatenetworks/src/commands/GetDeviceIdentifierCommand.ts +++ b/clients/client-privatenetworks/src/commands/GetDeviceIdentifierCommand.ts @@ -81,6 +81,7 @@ export interface GetDeviceIdentifierCommandOutput extends GetDeviceIdentifierRes * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class GetDeviceIdentifierCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/GetNetworkCommand.ts b/clients/client-privatenetworks/src/commands/GetNetworkCommand.ts index 47f15fe5fc975..b0d61547f9d6d 100644 --- a/clients/client-privatenetworks/src/commands/GetNetworkCommand.ts +++ b/clients/client-privatenetworks/src/commands/GetNetworkCommand.ts @@ -74,6 +74,7 @@ export interface GetNetworkCommandOutput extends GetNetworkResponse, __MetadataB * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class GetNetworkCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/GetNetworkResourceCommand.ts b/clients/client-privatenetworks/src/commands/GetNetworkResourceCommand.ts index cf762008a23f3..0b20f0639b67c 100644 --- a/clients/client-privatenetworks/src/commands/GetNetworkResourceCommand.ts +++ b/clients/client-privatenetworks/src/commands/GetNetworkResourceCommand.ts @@ -124,6 +124,7 @@ export interface GetNetworkResourceCommandOutput extends GetNetworkResourceRespo * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class GetNetworkResourceCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/GetNetworkSiteCommand.ts b/clients/client-privatenetworks/src/commands/GetNetworkSiteCommand.ts index 11824ffe303fc..aca2f448901b7 100644 --- a/clients/client-privatenetworks/src/commands/GetNetworkSiteCommand.ts +++ b/clients/client-privatenetworks/src/commands/GetNetworkSiteCommand.ts @@ -121,6 +121,7 @@ export interface GetNetworkSiteCommandOutput extends GetNetworkSiteResponse, __M * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class GetNetworkSiteCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/GetOrderCommand.ts b/clients/client-privatenetworks/src/commands/GetOrderCommand.ts index 4cec55d3d28d3..356a7936fc10f 100644 --- a/clients/client-privatenetworks/src/commands/GetOrderCommand.ts +++ b/clients/client-privatenetworks/src/commands/GetOrderCommand.ts @@ -101,6 +101,7 @@ export interface GetOrderCommandOutput extends GetOrderResponse, __MetadataBeare * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class GetOrderCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/ListDeviceIdentifiersCommand.ts b/clients/client-privatenetworks/src/commands/ListDeviceIdentifiersCommand.ts index e8af315e39b7f..a60e3caaa7c49 100644 --- a/clients/client-privatenetworks/src/commands/ListDeviceIdentifiersCommand.ts +++ b/clients/client-privatenetworks/src/commands/ListDeviceIdentifiersCommand.ts @@ -92,6 +92,7 @@ export interface ListDeviceIdentifiersCommandOutput extends ListDeviceIdentifier * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class ListDeviceIdentifiersCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/ListNetworkResourcesCommand.ts b/clients/client-privatenetworks/src/commands/ListNetworkResourcesCommand.ts index c68163edc14f1..37fd643740db0 100644 --- a/clients/client-privatenetworks/src/commands/ListNetworkResourcesCommand.ts +++ b/clients/client-privatenetworks/src/commands/ListNetworkResourcesCommand.ts @@ -135,6 +135,7 @@ export interface ListNetworkResourcesCommandOutput extends ListNetworkResourcesR * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class ListNetworkResourcesCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/ListNetworkSitesCommand.ts b/clients/client-privatenetworks/src/commands/ListNetworkSitesCommand.ts index 5ac2808b76666..88a441ec58f22 100644 --- a/clients/client-privatenetworks/src/commands/ListNetworkSitesCommand.ts +++ b/clients/client-privatenetworks/src/commands/ListNetworkSitesCommand.ts @@ -125,6 +125,7 @@ export interface ListNetworkSitesCommandOutput extends ListNetworkSitesResponse, * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class ListNetworkSitesCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/ListNetworksCommand.ts b/clients/client-privatenetworks/src/commands/ListNetworksCommand.ts index d5e3ba7d10e3c..50d979a20968a 100644 --- a/clients/client-privatenetworks/src/commands/ListNetworksCommand.ts +++ b/clients/client-privatenetworks/src/commands/ListNetworksCommand.ts @@ -81,6 +81,7 @@ export interface ListNetworksCommandOutput extends ListNetworksResponse, __Metad * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class ListNetworksCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/ListOrdersCommand.ts b/clients/client-privatenetworks/src/commands/ListOrdersCommand.ts index ecebe417a5d8a..f7a9312e686b1 100644 --- a/clients/client-privatenetworks/src/commands/ListOrdersCommand.ts +++ b/clients/client-privatenetworks/src/commands/ListOrdersCommand.ts @@ -112,6 +112,7 @@ export interface ListOrdersCommandOutput extends ListOrdersResponse, __MetadataB * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class ListOrdersCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/ListTagsForResourceCommand.ts b/clients/client-privatenetworks/src/commands/ListTagsForResourceCommand.ts index f5b64542bc644..2c88a597a6953 100644 --- a/clients/client-privatenetworks/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-privatenetworks/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/PingCommand.ts b/clients/client-privatenetworks/src/commands/PingCommand.ts index 8b16617d5f9ea..70ea34b05340d 100644 --- a/clients/client-privatenetworks/src/commands/PingCommand.ts +++ b/clients/client-privatenetworks/src/commands/PingCommand.ts @@ -56,6 +56,7 @@ export interface PingCommandOutput extends PingResponse, __MetadataBearer {} * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class PingCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/StartNetworkResourceUpdateCommand.ts b/clients/client-privatenetworks/src/commands/StartNetworkResourceUpdateCommand.ts index dc7b45ccaf11d..b50849c5b77b8 100644 --- a/clients/client-privatenetworks/src/commands/StartNetworkResourceUpdateCommand.ts +++ b/clients/client-privatenetworks/src/commands/StartNetworkResourceUpdateCommand.ts @@ -158,6 +158,7 @@ export interface StartNetworkResourceUpdateCommandOutput extends StartNetworkRes * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class StartNetworkResourceUpdateCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/TagResourceCommand.ts b/clients/client-privatenetworks/src/commands/TagResourceCommand.ts index e204a181066eb..8a9826ec91aa9 100644 --- a/clients/client-privatenetworks/src/commands/TagResourceCommand.ts +++ b/clients/client-privatenetworks/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/UntagResourceCommand.ts b/clients/client-privatenetworks/src/commands/UntagResourceCommand.ts index 639a935c7c1ec..d124dc74157ec 100644 --- a/clients/client-privatenetworks/src/commands/UntagResourceCommand.ts +++ b/clients/client-privatenetworks/src/commands/UntagResourceCommand.ts @@ -75,6 +75,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/UpdateNetworkSiteCommand.ts b/clients/client-privatenetworks/src/commands/UpdateNetworkSiteCommand.ts index eababff2be192..cca04c84b54f8 100644 --- a/clients/client-privatenetworks/src/commands/UpdateNetworkSiteCommand.ts +++ b/clients/client-privatenetworks/src/commands/UpdateNetworkSiteCommand.ts @@ -123,6 +123,7 @@ export interface UpdateNetworkSiteCommandOutput extends UpdateNetworkSiteRespons * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class UpdateNetworkSiteCommand extends $Command diff --git a/clients/client-privatenetworks/src/commands/UpdateNetworkSitePlanCommand.ts b/clients/client-privatenetworks/src/commands/UpdateNetworkSitePlanCommand.ts index 5001951ce68f0..8b53d1007c8f1 100644 --- a/clients/client-privatenetworks/src/commands/UpdateNetworkSitePlanCommand.ts +++ b/clients/client-privatenetworks/src/commands/UpdateNetworkSitePlanCommand.ts @@ -142,6 +142,7 @@ export interface UpdateNetworkSitePlanCommandOutput extends UpdateNetworkSiteRes * @throws {@link PrivateNetworksServiceException} *

Base exception class for all service exceptions from PrivateNetworks service.

* + * * @public */ export class UpdateNetworkSitePlanCommand extends $Command diff --git a/clients/client-proton/src/commands/AcceptEnvironmentAccountConnectionCommand.ts b/clients/client-proton/src/commands/AcceptEnvironmentAccountConnectionCommand.ts index d76ebb9883a08..ae24bf76217b1 100644 --- a/clients/client-proton/src/commands/AcceptEnvironmentAccountConnectionCommand.ts +++ b/clients/client-proton/src/commands/AcceptEnvironmentAccountConnectionCommand.ts @@ -93,6 +93,7 @@ export interface AcceptEnvironmentAccountConnectionCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class AcceptEnvironmentAccountConnectionCommand extends $Command diff --git a/clients/client-proton/src/commands/CancelComponentDeploymentCommand.ts b/clients/client-proton/src/commands/CancelComponentDeploymentCommand.ts index 14d1dea49cf44..f0c516371e203 100644 --- a/clients/client-proton/src/commands/CancelComponentDeploymentCommand.ts +++ b/clients/client-proton/src/commands/CancelComponentDeploymentCommand.ts @@ -97,6 +97,7 @@ export interface CancelComponentDeploymentCommandOutput extends CancelComponentD * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CancelComponentDeploymentCommand extends $Command diff --git a/clients/client-proton/src/commands/CancelEnvironmentDeploymentCommand.ts b/clients/client-proton/src/commands/CancelEnvironmentDeploymentCommand.ts index 7d1cbb9b5430e..794fb6c808bae 100644 --- a/clients/client-proton/src/commands/CancelEnvironmentDeploymentCommand.ts +++ b/clients/client-proton/src/commands/CancelEnvironmentDeploymentCommand.ts @@ -119,6 +119,7 @@ export interface CancelEnvironmentDeploymentCommandOutput extends CancelEnvironm * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CancelEnvironmentDeploymentCommand extends $Command diff --git a/clients/client-proton/src/commands/CancelServiceInstanceDeploymentCommand.ts b/clients/client-proton/src/commands/CancelServiceInstanceDeploymentCommand.ts index 37d4650d36b31..8957af9b634c9 100644 --- a/clients/client-proton/src/commands/CancelServiceInstanceDeploymentCommand.ts +++ b/clients/client-proton/src/commands/CancelServiceInstanceDeploymentCommand.ts @@ -118,6 +118,7 @@ export interface CancelServiceInstanceDeploymentCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CancelServiceInstanceDeploymentCommand extends $Command diff --git a/clients/client-proton/src/commands/CancelServicePipelineDeploymentCommand.ts b/clients/client-proton/src/commands/CancelServicePipelineDeploymentCommand.ts index 37b4f11f3c6ae..d093487b49907 100644 --- a/clients/client-proton/src/commands/CancelServicePipelineDeploymentCommand.ts +++ b/clients/client-proton/src/commands/CancelServicePipelineDeploymentCommand.ts @@ -113,6 +113,7 @@ export interface CancelServicePipelineDeploymentCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CancelServicePipelineDeploymentCommand extends $Command diff --git a/clients/client-proton/src/commands/CreateComponentCommand.ts b/clients/client-proton/src/commands/CreateComponentCommand.ts index 716cf0cd9cece..f2b7993f25286 100644 --- a/clients/client-proton/src/commands/CreateComponentCommand.ts +++ b/clients/client-proton/src/commands/CreateComponentCommand.ts @@ -116,6 +116,7 @@ export interface CreateComponentCommandOutput extends CreateComponentOutput, __M * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CreateComponentCommand extends $Command diff --git a/clients/client-proton/src/commands/CreateEnvironmentAccountConnectionCommand.ts b/clients/client-proton/src/commands/CreateEnvironmentAccountConnectionCommand.ts index 65fcb4a695140..d5906253c3149 100644 --- a/clients/client-proton/src/commands/CreateEnvironmentAccountConnectionCommand.ts +++ b/clients/client-proton/src/commands/CreateEnvironmentAccountConnectionCommand.ts @@ -106,6 +106,7 @@ export interface CreateEnvironmentAccountConnectionCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CreateEnvironmentAccountConnectionCommand extends $Command diff --git a/clients/client-proton/src/commands/CreateEnvironmentCommand.ts b/clients/client-proton/src/commands/CreateEnvironmentCommand.ts index f15dedb676e9b..abab9d85c9a2f 100644 --- a/clients/client-proton/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-proton/src/commands/CreateEnvironmentCommand.ts @@ -144,6 +144,7 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentOutput, * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CreateEnvironmentCommand extends $Command diff --git a/clients/client-proton/src/commands/CreateEnvironmentTemplateCommand.ts b/clients/client-proton/src/commands/CreateEnvironmentTemplateCommand.ts index dd5e06bb8b65a..c8e7f5bc63367 100644 --- a/clients/client-proton/src/commands/CreateEnvironmentTemplateCommand.ts +++ b/clients/client-proton/src/commands/CreateEnvironmentTemplateCommand.ts @@ -113,6 +113,7 @@ export interface CreateEnvironmentTemplateCommandOutput extends CreateEnvironmen * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CreateEnvironmentTemplateCommand extends $Command diff --git a/clients/client-proton/src/commands/CreateEnvironmentTemplateVersionCommand.ts b/clients/client-proton/src/commands/CreateEnvironmentTemplateVersionCommand.ts index 7d2335a0bb07e..5da8613538ef1 100644 --- a/clients/client-proton/src/commands/CreateEnvironmentTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/CreateEnvironmentTemplateVersionCommand.ts @@ -116,6 +116,7 @@ export interface CreateEnvironmentTemplateVersionCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CreateEnvironmentTemplateVersionCommand extends $Command diff --git a/clients/client-proton/src/commands/CreateRepositoryCommand.ts b/clients/client-proton/src/commands/CreateRepositoryCommand.ts index 46f42eb25a191..07e0b34391523 100644 --- a/clients/client-proton/src/commands/CreateRepositoryCommand.ts +++ b/clients/client-proton/src/commands/CreateRepositoryCommand.ts @@ -94,6 +94,7 @@ export interface CreateRepositoryCommandOutput extends CreateRepositoryOutput, _ * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CreateRepositoryCommand extends $Command diff --git a/clients/client-proton/src/commands/CreateServiceCommand.ts b/clients/client-proton/src/commands/CreateServiceCommand.ts index 9b03a12aea688..b4ba9aa387eca 100644 --- a/clients/client-proton/src/commands/CreateServiceCommand.ts +++ b/clients/client-proton/src/commands/CreateServiceCommand.ts @@ -126,6 +126,7 @@ export interface CreateServiceCommandOutput extends CreateServiceOutput, __Metad * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CreateServiceCommand extends $Command diff --git a/clients/client-proton/src/commands/CreateServiceInstanceCommand.ts b/clients/client-proton/src/commands/CreateServiceInstanceCommand.ts index f09c684f85682..5aced4a2cf6ba 100644 --- a/clients/client-proton/src/commands/CreateServiceInstanceCommand.ts +++ b/clients/client-proton/src/commands/CreateServiceInstanceCommand.ts @@ -106,6 +106,7 @@ export interface CreateServiceInstanceCommandOutput extends CreateServiceInstanc * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CreateServiceInstanceCommand extends $Command diff --git a/clients/client-proton/src/commands/CreateServiceSyncConfigCommand.ts b/clients/client-proton/src/commands/CreateServiceSyncConfigCommand.ts index 324ae79bc2c96..8d0b8d7919c0a 100644 --- a/clients/client-proton/src/commands/CreateServiceSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/CreateServiceSyncConfigCommand.ts @@ -84,6 +84,7 @@ export interface CreateServiceSyncConfigCommandOutput extends CreateServiceSyncC * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CreateServiceSyncConfigCommand extends $Command diff --git a/clients/client-proton/src/commands/CreateServiceTemplateCommand.ts b/clients/client-proton/src/commands/CreateServiceTemplateCommand.ts index 9b6df0b8f05e2..8e661794032e1 100644 --- a/clients/client-proton/src/commands/CreateServiceTemplateCommand.ts +++ b/clients/client-proton/src/commands/CreateServiceTemplateCommand.ts @@ -104,6 +104,7 @@ export interface CreateServiceTemplateCommandOutput extends CreateServiceTemplat * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CreateServiceTemplateCommand extends $Command diff --git a/clients/client-proton/src/commands/CreateServiceTemplateVersionCommand.ts b/clients/client-proton/src/commands/CreateServiceTemplateVersionCommand.ts index 8fd5f8bd1b522..b9976248e06d0 100644 --- a/clients/client-proton/src/commands/CreateServiceTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/CreateServiceTemplateVersionCommand.ts @@ -134,6 +134,7 @@ export interface CreateServiceTemplateVersionCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CreateServiceTemplateVersionCommand extends $Command diff --git a/clients/client-proton/src/commands/CreateTemplateSyncConfigCommand.ts b/clients/client-proton/src/commands/CreateTemplateSyncConfigCommand.ts index a6c8bba8dd021..7ef88c9de914e 100644 --- a/clients/client-proton/src/commands/CreateTemplateSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/CreateTemplateSyncConfigCommand.ts @@ -90,6 +90,7 @@ export interface CreateTemplateSyncConfigCommandOutput extends CreateTemplateSyn * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class CreateTemplateSyncConfigCommand extends $Command diff --git a/clients/client-proton/src/commands/DeleteComponentCommand.ts b/clients/client-proton/src/commands/DeleteComponentCommand.ts index fcefe465ec526..d09b3c72fb659 100644 --- a/clients/client-proton/src/commands/DeleteComponentCommand.ts +++ b/clients/client-proton/src/commands/DeleteComponentCommand.ts @@ -97,6 +97,7 @@ export interface DeleteComponentCommandOutput extends DeleteComponentOutput, __M * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class DeleteComponentCommand extends $Command diff --git a/clients/client-proton/src/commands/DeleteDeploymentCommand.ts b/clients/client-proton/src/commands/DeleteDeploymentCommand.ts index 82061197a1b51..4781e48be3819 100644 --- a/clients/client-proton/src/commands/DeleteDeploymentCommand.ts +++ b/clients/client-proton/src/commands/DeleteDeploymentCommand.ts @@ -153,6 +153,7 @@ export interface DeleteDeploymentCommandOutput extends DeleteDeploymentOutput, _ * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class DeleteDeploymentCommand extends $Command diff --git a/clients/client-proton/src/commands/DeleteEnvironmentAccountConnectionCommand.ts b/clients/client-proton/src/commands/DeleteEnvironmentAccountConnectionCommand.ts index e9a008378a9c6..0303c80c135a1 100644 --- a/clients/client-proton/src/commands/DeleteEnvironmentAccountConnectionCommand.ts +++ b/clients/client-proton/src/commands/DeleteEnvironmentAccountConnectionCommand.ts @@ -95,6 +95,7 @@ export interface DeleteEnvironmentAccountConnectionCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class DeleteEnvironmentAccountConnectionCommand extends $Command diff --git a/clients/client-proton/src/commands/DeleteEnvironmentCommand.ts b/clients/client-proton/src/commands/DeleteEnvironmentCommand.ts index ea84030f6252c..43ee9903cc3d4 100644 --- a/clients/client-proton/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-proton/src/commands/DeleteEnvironmentCommand.ts @@ -104,6 +104,7 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentOutput, * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class DeleteEnvironmentCommand extends $Command diff --git a/clients/client-proton/src/commands/DeleteEnvironmentTemplateCommand.ts b/clients/client-proton/src/commands/DeleteEnvironmentTemplateCommand.ts index dfff0f0ceece7..6a54ffc456e6e 100644 --- a/clients/client-proton/src/commands/DeleteEnvironmentTemplateCommand.ts +++ b/clients/client-proton/src/commands/DeleteEnvironmentTemplateCommand.ts @@ -87,6 +87,7 @@ export interface DeleteEnvironmentTemplateCommandOutput extends DeleteEnvironmen * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class DeleteEnvironmentTemplateCommand extends $Command diff --git a/clients/client-proton/src/commands/DeleteEnvironmentTemplateVersionCommand.ts b/clients/client-proton/src/commands/DeleteEnvironmentTemplateVersionCommand.ts index 02016e7b8a59e..828dce9ec3740 100644 --- a/clients/client-proton/src/commands/DeleteEnvironmentTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/DeleteEnvironmentTemplateVersionCommand.ts @@ -101,6 +101,7 @@ export interface DeleteEnvironmentTemplateVersionCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class DeleteEnvironmentTemplateVersionCommand extends $Command diff --git a/clients/client-proton/src/commands/DeleteRepositoryCommand.ts b/clients/client-proton/src/commands/DeleteRepositoryCommand.ts index 65e37373c7c3a..2e23264368a60 100644 --- a/clients/client-proton/src/commands/DeleteRepositoryCommand.ts +++ b/clients/client-proton/src/commands/DeleteRepositoryCommand.ts @@ -80,6 +80,7 @@ export interface DeleteRepositoryCommandOutput extends DeleteRepositoryOutput, _ * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class DeleteRepositoryCommand extends $Command diff --git a/clients/client-proton/src/commands/DeleteServiceCommand.ts b/clients/client-proton/src/commands/DeleteServiceCommand.ts index 509e984115db9..9cd949fb40b04 100644 --- a/clients/client-proton/src/commands/DeleteServiceCommand.ts +++ b/clients/client-proton/src/commands/DeleteServiceCommand.ts @@ -107,6 +107,7 @@ export interface DeleteServiceCommandOutput extends DeleteServiceOutput, __Metad * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class DeleteServiceCommand extends $Command diff --git a/clients/client-proton/src/commands/DeleteServiceSyncConfigCommand.ts b/clients/client-proton/src/commands/DeleteServiceSyncConfigCommand.ts index a3b7ab278bc61..19aa3d901360e 100644 --- a/clients/client-proton/src/commands/DeleteServiceSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/DeleteServiceSyncConfigCommand.ts @@ -79,6 +79,7 @@ export interface DeleteServiceSyncConfigCommandOutput extends DeleteServiceSyncC * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class DeleteServiceSyncConfigCommand extends $Command diff --git a/clients/client-proton/src/commands/DeleteServiceTemplateCommand.ts b/clients/client-proton/src/commands/DeleteServiceTemplateCommand.ts index 6dc8f5b340e73..775aef4951cc8 100644 --- a/clients/client-proton/src/commands/DeleteServiceTemplateCommand.ts +++ b/clients/client-proton/src/commands/DeleteServiceTemplateCommand.ts @@ -88,6 +88,7 @@ export interface DeleteServiceTemplateCommandOutput extends DeleteServiceTemplat * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class DeleteServiceTemplateCommand extends $Command diff --git a/clients/client-proton/src/commands/DeleteServiceTemplateVersionCommand.ts b/clients/client-proton/src/commands/DeleteServiceTemplateVersionCommand.ts index c715d869e4591..5096f28710a3c 100644 --- a/clients/client-proton/src/commands/DeleteServiceTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/DeleteServiceTemplateVersionCommand.ts @@ -113,6 +113,7 @@ export interface DeleteServiceTemplateVersionCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class DeleteServiceTemplateVersionCommand extends $Command diff --git a/clients/client-proton/src/commands/DeleteTemplateSyncConfigCommand.ts b/clients/client-proton/src/commands/DeleteTemplateSyncConfigCommand.ts index bf7078527c3de..a23ec82c3c380 100644 --- a/clients/client-proton/src/commands/DeleteTemplateSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/DeleteTemplateSyncConfigCommand.ts @@ -81,6 +81,7 @@ export interface DeleteTemplateSyncConfigCommandOutput extends DeleteTemplateSyn * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class DeleteTemplateSyncConfigCommand extends $Command diff --git a/clients/client-proton/src/commands/GetAccountSettingsCommand.ts b/clients/client-proton/src/commands/GetAccountSettingsCommand.ts index 1376d6352922b..8770c7da108d1 100644 --- a/clients/client-proton/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-proton/src/commands/GetAccountSettingsCommand.ts @@ -77,6 +77,7 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsOutpu * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetAccountSettingsCommand extends $Command diff --git a/clients/client-proton/src/commands/GetComponentCommand.ts b/clients/client-proton/src/commands/GetComponentCommand.ts index d8c86ecdff4fb..5db1ef2e50911 100644 --- a/clients/client-proton/src/commands/GetComponentCommand.ts +++ b/clients/client-proton/src/commands/GetComponentCommand.ts @@ -90,6 +90,7 @@ export interface GetComponentCommandOutput extends GetComponentOutput, __Metadat * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetComponentCommand extends $Command diff --git a/clients/client-proton/src/commands/GetDeploymentCommand.ts b/clients/client-proton/src/commands/GetDeploymentCommand.ts index b34311e091b90..9a4de506319a2 100644 --- a/clients/client-proton/src/commands/GetDeploymentCommand.ts +++ b/clients/client-proton/src/commands/GetDeploymentCommand.ts @@ -153,6 +153,7 @@ export interface GetDeploymentCommandOutput extends GetDeploymentOutput, __Metad * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetDeploymentCommand extends $Command diff --git a/clients/client-proton/src/commands/GetEnvironmentAccountConnectionCommand.ts b/clients/client-proton/src/commands/GetEnvironmentAccountConnectionCommand.ts index a2df63e1a502c..2eacaa826c466 100644 --- a/clients/client-proton/src/commands/GetEnvironmentAccountConnectionCommand.ts +++ b/clients/client-proton/src/commands/GetEnvironmentAccountConnectionCommand.ts @@ -89,6 +89,7 @@ export interface GetEnvironmentAccountConnectionCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetEnvironmentAccountConnectionCommand extends $Command diff --git a/clients/client-proton/src/commands/GetEnvironmentCommand.ts b/clients/client-proton/src/commands/GetEnvironmentCommand.ts index a01c9461fb789..b48c417f51919 100644 --- a/clients/client-proton/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-proton/src/commands/GetEnvironmentCommand.ts @@ -97,6 +97,7 @@ export interface GetEnvironmentCommandOutput extends GetEnvironmentOutput, __Met * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetEnvironmentCommand extends $Command diff --git a/clients/client-proton/src/commands/GetEnvironmentTemplateCommand.ts b/clients/client-proton/src/commands/GetEnvironmentTemplateCommand.ts index 15664d7015d70..39e41fcac4953 100644 --- a/clients/client-proton/src/commands/GetEnvironmentTemplateCommand.ts +++ b/clients/client-proton/src/commands/GetEnvironmentTemplateCommand.ts @@ -84,6 +84,7 @@ export interface GetEnvironmentTemplateCommandOutput extends GetEnvironmentTempl * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetEnvironmentTemplateCommand extends $Command diff --git a/clients/client-proton/src/commands/GetEnvironmentTemplateVersionCommand.ts b/clients/client-proton/src/commands/GetEnvironmentTemplateVersionCommand.ts index 0a231785633fe..b6839d5c9df4f 100644 --- a/clients/client-proton/src/commands/GetEnvironmentTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/GetEnvironmentTemplateVersionCommand.ts @@ -93,6 +93,7 @@ export interface GetEnvironmentTemplateVersionCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetEnvironmentTemplateVersionCommand extends $Command diff --git a/clients/client-proton/src/commands/GetRepositoryCommand.ts b/clients/client-proton/src/commands/GetRepositoryCommand.ts index be056888f8b75..9cf5ef6d7dae2 100644 --- a/clients/client-proton/src/commands/GetRepositoryCommand.ts +++ b/clients/client-proton/src/commands/GetRepositoryCommand.ts @@ -77,6 +77,7 @@ export interface GetRepositoryCommandOutput extends GetRepositoryOutput, __Metad * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetRepositoryCommand extends $Command diff --git a/clients/client-proton/src/commands/GetRepositorySyncStatusCommand.ts b/clients/client-proton/src/commands/GetRepositorySyncStatusCommand.ts index b3496a68a5021..f4a920e2ff0ac 100644 --- a/clients/client-proton/src/commands/GetRepositorySyncStatusCommand.ts +++ b/clients/client-proton/src/commands/GetRepositorySyncStatusCommand.ts @@ -91,6 +91,7 @@ export interface GetRepositorySyncStatusCommandOutput extends GetRepositorySyncS * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetRepositorySyncStatusCommand extends $Command diff --git a/clients/client-proton/src/commands/GetResourcesSummaryCommand.ts b/clients/client-proton/src/commands/GetResourcesSummaryCommand.ts index a4af43e191bc4..f2d0fed4ec534 100644 --- a/clients/client-proton/src/commands/GetResourcesSummaryCommand.ts +++ b/clients/client-proton/src/commands/GetResourcesSummaryCommand.ts @@ -112,6 +112,7 @@ export interface GetResourcesSummaryCommandOutput extends GetResourcesSummaryOut * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetResourcesSummaryCommand extends $Command diff --git a/clients/client-proton/src/commands/GetServiceCommand.ts b/clients/client-proton/src/commands/GetServiceCommand.ts index 312a61faa015b..64e2f6d487fd7 100644 --- a/clients/client-proton/src/commands/GetServiceCommand.ts +++ b/clients/client-proton/src/commands/GetServiceCommand.ts @@ -97,6 +97,7 @@ export interface GetServiceCommandOutput extends GetServiceOutput, __MetadataBea * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetServiceCommand extends $Command diff --git a/clients/client-proton/src/commands/GetServiceInstanceCommand.ts b/clients/client-proton/src/commands/GetServiceInstanceCommand.ts index 0664af2e854ac..81218ff79039b 100644 --- a/clients/client-proton/src/commands/GetServiceInstanceCommand.ts +++ b/clients/client-proton/src/commands/GetServiceInstanceCommand.ts @@ -93,6 +93,7 @@ export interface GetServiceInstanceCommandOutput extends GetServiceInstanceOutpu * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetServiceInstanceCommand extends $Command diff --git a/clients/client-proton/src/commands/GetServiceInstanceSyncStatusCommand.ts b/clients/client-proton/src/commands/GetServiceInstanceSyncStatusCommand.ts index b49a157cbce0c..126aab372cac8 100644 --- a/clients/client-proton/src/commands/GetServiceInstanceSyncStatusCommand.ts +++ b/clients/client-proton/src/commands/GetServiceInstanceSyncStatusCommand.ts @@ -136,6 +136,7 @@ export interface GetServiceInstanceSyncStatusCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetServiceInstanceSyncStatusCommand extends $Command diff --git a/clients/client-proton/src/commands/GetServiceSyncBlockerSummaryCommand.ts b/clients/client-proton/src/commands/GetServiceSyncBlockerSummaryCommand.ts index 03b2fe1f02282..466c71df2fb14 100644 --- a/clients/client-proton/src/commands/GetServiceSyncBlockerSummaryCommand.ts +++ b/clients/client-proton/src/commands/GetServiceSyncBlockerSummaryCommand.ts @@ -96,6 +96,7 @@ export interface GetServiceSyncBlockerSummaryCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetServiceSyncBlockerSummaryCommand extends $Command diff --git a/clients/client-proton/src/commands/GetServiceSyncConfigCommand.ts b/clients/client-proton/src/commands/GetServiceSyncConfigCommand.ts index f466223f5eba3..11e0faa9eeb40 100644 --- a/clients/client-proton/src/commands/GetServiceSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/GetServiceSyncConfigCommand.ts @@ -76,6 +76,7 @@ export interface GetServiceSyncConfigCommandOutput extends GetServiceSyncConfigO * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetServiceSyncConfigCommand extends $Command diff --git a/clients/client-proton/src/commands/GetServiceTemplateCommand.ts b/clients/client-proton/src/commands/GetServiceTemplateCommand.ts index 9c38f61f4611f..45d6e5580e6a2 100644 --- a/clients/client-proton/src/commands/GetServiceTemplateCommand.ts +++ b/clients/client-proton/src/commands/GetServiceTemplateCommand.ts @@ -84,6 +84,7 @@ export interface GetServiceTemplateCommandOutput extends GetServiceTemplateOutpu * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetServiceTemplateCommand extends $Command diff --git a/clients/client-proton/src/commands/GetServiceTemplateVersionCommand.ts b/clients/client-proton/src/commands/GetServiceTemplateVersionCommand.ts index 8eaa6b1fe76e4..9b01d756b01cc 100644 --- a/clients/client-proton/src/commands/GetServiceTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/GetServiceTemplateVersionCommand.ts @@ -97,6 +97,7 @@ export interface GetServiceTemplateVersionCommandOutput extends GetServiceTempla * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetServiceTemplateVersionCommand extends $Command diff --git a/clients/client-proton/src/commands/GetTemplateSyncConfigCommand.ts b/clients/client-proton/src/commands/GetTemplateSyncConfigCommand.ts index 524ec2ddfb10c..a22c452cb68b8 100644 --- a/clients/client-proton/src/commands/GetTemplateSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/GetTemplateSyncConfigCommand.ts @@ -78,6 +78,7 @@ export interface GetTemplateSyncConfigCommandOutput extends GetTemplateSyncConfi * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetTemplateSyncConfigCommand extends $Command diff --git a/clients/client-proton/src/commands/GetTemplateSyncStatusCommand.ts b/clients/client-proton/src/commands/GetTemplateSyncStatusCommand.ts index a016171ddb715..dcbea9795f027 100644 --- a/clients/client-proton/src/commands/GetTemplateSyncStatusCommand.ts +++ b/clients/client-proton/src/commands/GetTemplateSyncStatusCommand.ts @@ -132,6 +132,7 @@ export interface GetTemplateSyncStatusCommandOutput extends GetTemplateSyncStatu * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class GetTemplateSyncStatusCommand extends $Command diff --git a/clients/client-proton/src/commands/ListComponentOutputsCommand.ts b/clients/client-proton/src/commands/ListComponentOutputsCommand.ts index c037fa350bd81..64e0cddba837e 100644 --- a/clients/client-proton/src/commands/ListComponentOutputsCommand.ts +++ b/clients/client-proton/src/commands/ListComponentOutputsCommand.ts @@ -85,6 +85,7 @@ export interface ListComponentOutputsCommandOutput extends ListComponentOutputsO * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListComponentOutputsCommand extends $Command diff --git a/clients/client-proton/src/commands/ListComponentProvisionedResourcesCommand.ts b/clients/client-proton/src/commands/ListComponentProvisionedResourcesCommand.ts index 04c6754fa0870..1de888b32c62a 100644 --- a/clients/client-proton/src/commands/ListComponentProvisionedResourcesCommand.ts +++ b/clients/client-proton/src/commands/ListComponentProvisionedResourcesCommand.ts @@ -86,6 +86,7 @@ export interface ListComponentProvisionedResourcesCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListComponentProvisionedResourcesCommand extends $Command diff --git a/clients/client-proton/src/commands/ListComponentsCommand.ts b/clients/client-proton/src/commands/ListComponentsCommand.ts index 672ef83483ed5..1438af82b337c 100644 --- a/clients/client-proton/src/commands/ListComponentsCommand.ts +++ b/clients/client-proton/src/commands/ListComponentsCommand.ts @@ -91,6 +91,7 @@ export interface ListComponentsCommandOutput extends ListComponentsOutput, __Met * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListComponentsCommand extends $Command diff --git a/clients/client-proton/src/commands/ListDeploymentsCommand.ts b/clients/client-proton/src/commands/ListDeploymentsCommand.ts index d70b246eec86c..d2b3714715229 100644 --- a/clients/client-proton/src/commands/ListDeploymentsCommand.ts +++ b/clients/client-proton/src/commands/ListDeploymentsCommand.ts @@ -94,6 +94,7 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsOutput, __M * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListDeploymentsCommand extends $Command diff --git a/clients/client-proton/src/commands/ListEnvironmentAccountConnectionsCommand.ts b/clients/client-proton/src/commands/ListEnvironmentAccountConnectionsCommand.ts index 101cdafd078f8..3ad918672901a 100644 --- a/clients/client-proton/src/commands/ListEnvironmentAccountConnectionsCommand.ts +++ b/clients/client-proton/src/commands/ListEnvironmentAccountConnectionsCommand.ts @@ -94,6 +94,7 @@ export interface ListEnvironmentAccountConnectionsCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListEnvironmentAccountConnectionsCommand extends $Command diff --git a/clients/client-proton/src/commands/ListEnvironmentOutputsCommand.ts b/clients/client-proton/src/commands/ListEnvironmentOutputsCommand.ts index 9becc6af65165..709223ef16717 100644 --- a/clients/client-proton/src/commands/ListEnvironmentOutputsCommand.ts +++ b/clients/client-proton/src/commands/ListEnvironmentOutputsCommand.ts @@ -82,6 +82,7 @@ export interface ListEnvironmentOutputsCommandOutput extends ListEnvironmentOutp * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListEnvironmentOutputsCommand extends $Command diff --git a/clients/client-proton/src/commands/ListEnvironmentProvisionedResourcesCommand.ts b/clients/client-proton/src/commands/ListEnvironmentProvisionedResourcesCommand.ts index 4fd35f67c0c09..2cccbd35163ad 100644 --- a/clients/client-proton/src/commands/ListEnvironmentProvisionedResourcesCommand.ts +++ b/clients/client-proton/src/commands/ListEnvironmentProvisionedResourcesCommand.ts @@ -86,6 +86,7 @@ export interface ListEnvironmentProvisionedResourcesCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListEnvironmentProvisionedResourcesCommand extends $Command diff --git a/clients/client-proton/src/commands/ListEnvironmentTemplateVersionsCommand.ts b/clients/client-proton/src/commands/ListEnvironmentTemplateVersionsCommand.ts index 93ae1f9babe51..0ff9a9f69d6af 100644 --- a/clients/client-proton/src/commands/ListEnvironmentTemplateVersionsCommand.ts +++ b/clients/client-proton/src/commands/ListEnvironmentTemplateVersionsCommand.ts @@ -96,6 +96,7 @@ export interface ListEnvironmentTemplateVersionsCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListEnvironmentTemplateVersionsCommand extends $Command diff --git a/clients/client-proton/src/commands/ListEnvironmentTemplatesCommand.ts b/clients/client-proton/src/commands/ListEnvironmentTemplatesCommand.ts index 3dd7a07508f20..1db1563d44f20 100644 --- a/clients/client-proton/src/commands/ListEnvironmentTemplatesCommand.ts +++ b/clients/client-proton/src/commands/ListEnvironmentTemplatesCommand.ts @@ -84,6 +84,7 @@ export interface ListEnvironmentTemplatesCommandOutput extends ListEnvironmentTe * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListEnvironmentTemplatesCommand extends $Command diff --git a/clients/client-proton/src/commands/ListEnvironmentsCommand.ts b/clients/client-proton/src/commands/ListEnvironmentsCommand.ts index ce158711c4ad0..9a6eebd7412aa 100644 --- a/clients/client-proton/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-proton/src/commands/ListEnvironmentsCommand.ts @@ -103,6 +103,7 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsOutput, _ * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListEnvironmentsCommand extends $Command diff --git a/clients/client-proton/src/commands/ListRepositoriesCommand.ts b/clients/client-proton/src/commands/ListRepositoriesCommand.ts index 7214ca98c7203..c5338e3b79cc8 100644 --- a/clients/client-proton/src/commands/ListRepositoriesCommand.ts +++ b/clients/client-proton/src/commands/ListRepositoriesCommand.ts @@ -79,6 +79,7 @@ export interface ListRepositoriesCommandOutput extends ListRepositoriesOutput, _ * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListRepositoriesCommand extends $Command diff --git a/clients/client-proton/src/commands/ListRepositorySyncDefinitionsCommand.ts b/clients/client-proton/src/commands/ListRepositorySyncDefinitionsCommand.ts index fa267e00ee8a5..cb9c72fe5e36b 100644 --- a/clients/client-proton/src/commands/ListRepositorySyncDefinitionsCommand.ts +++ b/clients/client-proton/src/commands/ListRepositorySyncDefinitionsCommand.ts @@ -83,6 +83,7 @@ export interface ListRepositorySyncDefinitionsCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListRepositorySyncDefinitionsCommand extends $Command diff --git a/clients/client-proton/src/commands/ListServiceInstanceOutputsCommand.ts b/clients/client-proton/src/commands/ListServiceInstanceOutputsCommand.ts index 854eec0c3b4a1..88767632c1b19 100644 --- a/clients/client-proton/src/commands/ListServiceInstanceOutputsCommand.ts +++ b/clients/client-proton/src/commands/ListServiceInstanceOutputsCommand.ts @@ -83,6 +83,7 @@ export interface ListServiceInstanceOutputsCommandOutput extends ListServiceInst * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListServiceInstanceOutputsCommand extends $Command diff --git a/clients/client-proton/src/commands/ListServiceInstanceProvisionedResourcesCommand.ts b/clients/client-proton/src/commands/ListServiceInstanceProvisionedResourcesCommand.ts index 377aaf18df269..ee899545e9a92 100644 --- a/clients/client-proton/src/commands/ListServiceInstanceProvisionedResourcesCommand.ts +++ b/clients/client-proton/src/commands/ListServiceInstanceProvisionedResourcesCommand.ts @@ -88,6 +88,7 @@ export interface ListServiceInstanceProvisionedResourcesCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListServiceInstanceProvisionedResourcesCommand extends $Command diff --git a/clients/client-proton/src/commands/ListServiceInstancesCommand.ts b/clients/client-proton/src/commands/ListServiceInstancesCommand.ts index 55dfd5b1cd239..c5a4d06041ba5 100644 --- a/clients/client-proton/src/commands/ListServiceInstancesCommand.ts +++ b/clients/client-proton/src/commands/ListServiceInstancesCommand.ts @@ -103,6 +103,7 @@ export interface ListServiceInstancesCommandOutput extends ListServiceInstancesO * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListServiceInstancesCommand extends $Command diff --git a/clients/client-proton/src/commands/ListServicePipelineOutputsCommand.ts b/clients/client-proton/src/commands/ListServicePipelineOutputsCommand.ts index ab67a2a4531c1..b8508405f0cbe 100644 --- a/clients/client-proton/src/commands/ListServicePipelineOutputsCommand.ts +++ b/clients/client-proton/src/commands/ListServicePipelineOutputsCommand.ts @@ -82,6 +82,7 @@ export interface ListServicePipelineOutputsCommandOutput extends ListServicePipe * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListServicePipelineOutputsCommand extends $Command diff --git a/clients/client-proton/src/commands/ListServicePipelineProvisionedResourcesCommand.ts b/clients/client-proton/src/commands/ListServicePipelineProvisionedResourcesCommand.ts index 114f12b678b15..3cee9c14f6ef8 100644 --- a/clients/client-proton/src/commands/ListServicePipelineProvisionedResourcesCommand.ts +++ b/clients/client-proton/src/commands/ListServicePipelineProvisionedResourcesCommand.ts @@ -87,6 +87,7 @@ export interface ListServicePipelineProvisionedResourcesCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListServicePipelineProvisionedResourcesCommand extends $Command diff --git a/clients/client-proton/src/commands/ListServiceTemplateVersionsCommand.ts b/clients/client-proton/src/commands/ListServiceTemplateVersionsCommand.ts index 687b0001edcee..dfae4f9df2735 100644 --- a/clients/client-proton/src/commands/ListServiceTemplateVersionsCommand.ts +++ b/clients/client-proton/src/commands/ListServiceTemplateVersionsCommand.ts @@ -91,6 +91,7 @@ export interface ListServiceTemplateVersionsCommandOutput extends ListServiceTem * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListServiceTemplateVersionsCommand extends $Command diff --git a/clients/client-proton/src/commands/ListServiceTemplatesCommand.ts b/clients/client-proton/src/commands/ListServiceTemplatesCommand.ts index 05309e38ac97f..99950ed586ad8 100644 --- a/clients/client-proton/src/commands/ListServiceTemplatesCommand.ts +++ b/clients/client-proton/src/commands/ListServiceTemplatesCommand.ts @@ -84,6 +84,7 @@ export interface ListServiceTemplatesCommandOutput extends ListServiceTemplatesO * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListServiceTemplatesCommand extends $Command diff --git a/clients/client-proton/src/commands/ListServicesCommand.ts b/clients/client-proton/src/commands/ListServicesCommand.ts index a37fc786260b1..5d7cced69c8e0 100644 --- a/clients/client-proton/src/commands/ListServicesCommand.ts +++ b/clients/client-proton/src/commands/ListServicesCommand.ts @@ -80,6 +80,7 @@ export interface ListServicesCommandOutput extends ListServicesOutput, __Metadat * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListServicesCommand extends $Command diff --git a/clients/client-proton/src/commands/ListTagsForResourceCommand.ts b/clients/client-proton/src/commands/ListTagsForResourceCommand.ts index ad37e750faa43..edd770e7a5227 100644 --- a/clients/client-proton/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-proton/src/commands/ListTagsForResourceCommand.ts @@ -79,6 +79,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-proton/src/commands/NotifyResourceDeploymentStatusChangeCommand.ts b/clients/client-proton/src/commands/NotifyResourceDeploymentStatusChangeCommand.ts index 370375716ade3..8228e497b99c1 100644 --- a/clients/client-proton/src/commands/NotifyResourceDeploymentStatusChangeCommand.ts +++ b/clients/client-proton/src/commands/NotifyResourceDeploymentStatusChangeCommand.ts @@ -94,6 +94,7 @@ export interface NotifyResourceDeploymentStatusChangeCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class NotifyResourceDeploymentStatusChangeCommand extends $Command diff --git a/clients/client-proton/src/commands/RejectEnvironmentAccountConnectionCommand.ts b/clients/client-proton/src/commands/RejectEnvironmentAccountConnectionCommand.ts index a63ab3678f966..f2e88a5deed45 100644 --- a/clients/client-proton/src/commands/RejectEnvironmentAccountConnectionCommand.ts +++ b/clients/client-proton/src/commands/RejectEnvironmentAccountConnectionCommand.ts @@ -95,6 +95,7 @@ export interface RejectEnvironmentAccountConnectionCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class RejectEnvironmentAccountConnectionCommand extends $Command diff --git a/clients/client-proton/src/commands/TagResourceCommand.ts b/clients/client-proton/src/commands/TagResourceCommand.ts index baf6442a1cdda..6705179481ee6 100644 --- a/clients/client-proton/src/commands/TagResourceCommand.ts +++ b/clients/client-proton/src/commands/TagResourceCommand.ts @@ -79,6 +79,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-proton/src/commands/UntagResourceCommand.ts b/clients/client-proton/src/commands/UntagResourceCommand.ts index 40230a530907b..90704a3379d83 100644 --- a/clients/client-proton/src/commands/UntagResourceCommand.ts +++ b/clients/client-proton/src/commands/UntagResourceCommand.ts @@ -76,6 +76,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-proton/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-proton/src/commands/UpdateAccountSettingsCommand.ts index 6b6ddf8343cb1..09ef0b1422703 100644 --- a/clients/client-proton/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-proton/src/commands/UpdateAccountSettingsCommand.ts @@ -86,6 +86,7 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UpdateAccountSettingsCommand extends $Command diff --git a/clients/client-proton/src/commands/UpdateComponentCommand.ts b/clients/client-proton/src/commands/UpdateComponentCommand.ts index 1e13895bf90a4..5594cc334676b 100644 --- a/clients/client-proton/src/commands/UpdateComponentCommand.ts +++ b/clients/client-proton/src/commands/UpdateComponentCommand.ts @@ -114,6 +114,7 @@ export interface UpdateComponentCommandOutput extends UpdateComponentOutput, __M * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UpdateComponentCommand extends $Command diff --git a/clients/client-proton/src/commands/UpdateEnvironmentAccountConnectionCommand.ts b/clients/client-proton/src/commands/UpdateEnvironmentAccountConnectionCommand.ts index 66c7150aea7c0..89d8b2efd8463 100644 --- a/clients/client-proton/src/commands/UpdateEnvironmentAccountConnectionCommand.ts +++ b/clients/client-proton/src/commands/UpdateEnvironmentAccountConnectionCommand.ts @@ -95,6 +95,7 @@ export interface UpdateEnvironmentAccountConnectionCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UpdateEnvironmentAccountConnectionCommand extends $Command diff --git a/clients/client-proton/src/commands/UpdateEnvironmentCommand.ts b/clients/client-proton/src/commands/UpdateEnvironmentCommand.ts index 05f3b3d81c8a6..46d76582416ac 100644 --- a/clients/client-proton/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-proton/src/commands/UpdateEnvironmentCommand.ts @@ -167,6 +167,7 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentOutput, * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UpdateEnvironmentCommand extends $Command diff --git a/clients/client-proton/src/commands/UpdateEnvironmentTemplateCommand.ts b/clients/client-proton/src/commands/UpdateEnvironmentTemplateCommand.ts index cd1dfc16de486..1f0535315bdaf 100644 --- a/clients/client-proton/src/commands/UpdateEnvironmentTemplateCommand.ts +++ b/clients/client-proton/src/commands/UpdateEnvironmentTemplateCommand.ts @@ -90,6 +90,7 @@ export interface UpdateEnvironmentTemplateCommandOutput extends UpdateEnvironmen * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UpdateEnvironmentTemplateCommand extends $Command diff --git a/clients/client-proton/src/commands/UpdateEnvironmentTemplateVersionCommand.ts b/clients/client-proton/src/commands/UpdateEnvironmentTemplateVersionCommand.ts index 51d5b7750a6d8..342a284c07484 100644 --- a/clients/client-proton/src/commands/UpdateEnvironmentTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/UpdateEnvironmentTemplateVersionCommand.ts @@ -99,6 +99,7 @@ export interface UpdateEnvironmentTemplateVersionCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UpdateEnvironmentTemplateVersionCommand extends $Command diff --git a/clients/client-proton/src/commands/UpdateServiceCommand.ts b/clients/client-proton/src/commands/UpdateServiceCommand.ts index f4b2594acf4ad..4080ced181352 100644 --- a/clients/client-proton/src/commands/UpdateServiceCommand.ts +++ b/clients/client-proton/src/commands/UpdateServiceCommand.ts @@ -124,6 +124,7 @@ export interface UpdateServiceCommandOutput extends UpdateServiceOutput, __Metad * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UpdateServiceCommand extends $Command diff --git a/clients/client-proton/src/commands/UpdateServiceInstanceCommand.ts b/clients/client-proton/src/commands/UpdateServiceInstanceCommand.ts index ae5011092ac8a..e0d8d2381a7fd 100644 --- a/clients/client-proton/src/commands/UpdateServiceInstanceCommand.ts +++ b/clients/client-proton/src/commands/UpdateServiceInstanceCommand.ts @@ -110,6 +110,7 @@ export interface UpdateServiceInstanceCommandOutput extends UpdateServiceInstanc * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UpdateServiceInstanceCommand extends $Command diff --git a/clients/client-proton/src/commands/UpdateServicePipelineCommand.ts b/clients/client-proton/src/commands/UpdateServicePipelineCommand.ts index a221d55ccad7e..9d462216723ea 100644 --- a/clients/client-proton/src/commands/UpdateServicePipelineCommand.ts +++ b/clients/client-proton/src/commands/UpdateServicePipelineCommand.ts @@ -135,6 +135,7 @@ export interface UpdateServicePipelineCommandOutput extends UpdateServicePipelin * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UpdateServicePipelineCommand extends $Command diff --git a/clients/client-proton/src/commands/UpdateServiceSyncBlockerCommand.ts b/clients/client-proton/src/commands/UpdateServiceSyncBlockerCommand.ts index 6df1e3c899867..97b8b89ef9839 100644 --- a/clients/client-proton/src/commands/UpdateServiceSyncBlockerCommand.ts +++ b/clients/client-proton/src/commands/UpdateServiceSyncBlockerCommand.ts @@ -90,6 +90,7 @@ export interface UpdateServiceSyncBlockerCommandOutput extends UpdateServiceSync * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UpdateServiceSyncBlockerCommand extends $Command diff --git a/clients/client-proton/src/commands/UpdateServiceSyncConfigCommand.ts b/clients/client-proton/src/commands/UpdateServiceSyncConfigCommand.ts index ee9a77f7c2232..0d891986b2960 100644 --- a/clients/client-proton/src/commands/UpdateServiceSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/UpdateServiceSyncConfigCommand.ts @@ -83,6 +83,7 @@ export interface UpdateServiceSyncConfigCommandOutput extends UpdateServiceSyncC * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UpdateServiceSyncConfigCommand extends $Command diff --git a/clients/client-proton/src/commands/UpdateServiceTemplateCommand.ts b/clients/client-proton/src/commands/UpdateServiceTemplateCommand.ts index 01d79bd3acb30..6307d507a7860 100644 --- a/clients/client-proton/src/commands/UpdateServiceTemplateCommand.ts +++ b/clients/client-proton/src/commands/UpdateServiceTemplateCommand.ts @@ -90,6 +90,7 @@ export interface UpdateServiceTemplateCommandOutput extends UpdateServiceTemplat * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UpdateServiceTemplateCommand extends $Command diff --git a/clients/client-proton/src/commands/UpdateServiceTemplateVersionCommand.ts b/clients/client-proton/src/commands/UpdateServiceTemplateVersionCommand.ts index 62f76b82fb5aa..31564f5c7d6e1 100644 --- a/clients/client-proton/src/commands/UpdateServiceTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/UpdateServiceTemplateVersionCommand.ts @@ -117,6 +117,7 @@ export interface UpdateServiceTemplateVersionCommandOutput * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UpdateServiceTemplateVersionCommand extends $Command diff --git a/clients/client-proton/src/commands/UpdateTemplateSyncConfigCommand.ts b/clients/client-proton/src/commands/UpdateTemplateSyncConfigCommand.ts index 167e8d0cfc7e3..38ff6acd43607 100644 --- a/clients/client-proton/src/commands/UpdateTemplateSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/UpdateTemplateSyncConfigCommand.ts @@ -87,6 +87,7 @@ export interface UpdateTemplateSyncConfigCommandOutput extends UpdateTemplateSyn * @throws {@link ProtonServiceException} *

Base exception class for all service exceptions from Proton service.

* + * * @public */ export class UpdateTemplateSyncConfigCommand extends $Command diff --git a/clients/client-qapps/src/commands/AssociateLibraryItemReviewCommand.ts b/clients/client-qapps/src/commands/AssociateLibraryItemReviewCommand.ts index caba37ead0a64..09b5d99318dff 100644 --- a/clients/client-qapps/src/commands/AssociateLibraryItemReviewCommand.ts +++ b/clients/client-qapps/src/commands/AssociateLibraryItemReviewCommand.ts @@ -82,19 +82,22 @@ export interface AssociateLibraryItemReviewCommandOutput extends __MetadataBeare * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Increase the rating counter by 1 for the related app for this user * ```javascript * // * const input = { - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "libraryItemId": "cb9ecf72-8563-450d-9db9-994f98297316" + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * libraryItemId: "cb9ecf72-8563-450d-9db9-994f98297316" * }; * const command = new AssociateLibraryItemReviewCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AssociateLibraryItemReviewCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/AssociateQAppWithUserCommand.ts b/clients/client-qapps/src/commands/AssociateQAppWithUserCommand.ts index f1ac42866b7a6..2c5ac120fd5c2 100644 --- a/clients/client-qapps/src/commands/AssociateQAppWithUserCommand.ts +++ b/clients/client-qapps/src/commands/AssociateQAppWithUserCommand.ts @@ -80,19 +80,22 @@ export interface AssociateQAppWithUserCommandOutput extends __MetadataBearer {} * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Links an Amazon Q App to the invoker's list of apps * ```javascript * // * const input = { - * "appId": "393e77fb-0a30-4f47-ad30-75d71aeaed8a", - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" + * appId: "393e77fb-0a30-4f47-ad30-75d71aeaed8a", + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" * }; * const command = new AssociateQAppWithUserCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AssociateQAppWithUserCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/BatchCreateCategoryCommand.ts b/clients/client-qapps/src/commands/BatchCreateCategoryCommand.ts index d65a0f2ae7586..676e9809d971d 100644 --- a/clients/client-qapps/src/commands/BatchCreateCategoryCommand.ts +++ b/clients/client-qapps/src/commands/BatchCreateCategoryCommand.ts @@ -85,28 +85,31 @@ export interface BatchCreateCategoryCommandOutput extends __MetadataBearer {} * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Creates the categories for the library * ```javascript * // * const input = { - * "categories": [ + * categories: [ * { - * "id": "549abfe0-f5c4-45a2-bb9b-c05987a49c6d", - * "title": "HR" + * id: "549abfe0-f5c4-45a2-bb9b-c05987a49c6d", + * title: "HR" * }, * { - * "id": "18cbebaa-196a-4aa5-a840-88d548e07f8f", - * "title": "Marketing" + * id: "18cbebaa-196a-4aa5-a840-88d548e07f8f", + * title: "Marketing" * } * ], - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" * }; * const command = new BatchCreateCategoryCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class BatchCreateCategoryCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/BatchDeleteCategoryCommand.ts b/clients/client-qapps/src/commands/BatchDeleteCategoryCommand.ts index 71d3767b11bec..7330a6bf7230c 100644 --- a/clients/client-qapps/src/commands/BatchDeleteCategoryCommand.ts +++ b/clients/client-qapps/src/commands/BatchDeleteCategoryCommand.ts @@ -81,21 +81,24 @@ export interface BatchDeleteCategoryCommandOutput extends __MetadataBearer {} * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Deletes the categories in the library * ```javascript * // * const input = { - * "categories": [ + * categories: [ * "9c871ed4-1c41-4065-aefe-321cd4b61cf8" * ], - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" * }; * const command = new BatchDeleteCategoryCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class BatchDeleteCategoryCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/BatchUpdateCategoryCommand.ts b/clients/client-qapps/src/commands/BatchUpdateCategoryCommand.ts index df415851d9efd..e4c342c7d03b8 100644 --- a/clients/client-qapps/src/commands/BatchUpdateCategoryCommand.ts +++ b/clients/client-qapps/src/commands/BatchUpdateCategoryCommand.ts @@ -85,28 +85,31 @@ export interface BatchUpdateCategoryCommandOutput extends __MetadataBearer {} * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Updates the categories in the library * ```javascript * // * const input = { - * "categories": [ + * categories: [ * { - * "id": "549abfe0-f5c4-45a2-bb9b-c05987a49c6d", - * "title": "HR Management" + * id: "549abfe0-f5c4-45a2-bb9b-c05987a49c6d", + * title: "HR Management" * }, * { - * "id": "18cbebaa-196a-4aa5-a840-88d548e07f8f", - * "title": "Sales" + * id: "18cbebaa-196a-4aa5-a840-88d548e07f8f", + * title: "Sales" * } * ], - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" * }; * const command = new BatchUpdateCategoryCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class BatchUpdateCategoryCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/CreateLibraryItemCommand.ts b/clients/client-qapps/src/commands/CreateLibraryItemCommand.ts index 7487f47cf73b3..ceab351323506 100644 --- a/clients/client-qapps/src/commands/CreateLibraryItemCommand.ts +++ b/clients/client-qapps/src/commands/CreateLibraryItemCommand.ts @@ -91,35 +91,35 @@ export interface CreateLibraryItemCommandOutput extends CreateLibraryItemOutput, * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Create a Library Item * ```javascript * // * const input = { - * "appId": "7a11f34b-42d4-4bc8-b668-ae4a788dae1e", - * "appVersion": 6, - * "categories": [ + * appId: "7a11f34b-42d4-4bc8-b668-ae4a788dae1e", + * appVersion: 6, + * categories: [ * "9c871ed4-1c41-4065-aefe-321cd4b61cf8" * ], - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" * }; * const command = new CreateLibraryItemCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "createdAt": "2024-05-21T23:17:27.350Z", - * "createdBy": "a841e300-40c1-7062-fa34-5b46dadbbaac", - * "isVerified": false, - * "libraryItemId": "cb9ecf72-8563-450d-9db9-994f98297316", - * "ratingCount": 0, - * "status": "PUBLISHED", - * "updatedAt": "2024-05-21T23:17:27.350Z", - * "updatedBy": "a841e300-40c1-7062-fa34-5b46dadbbaac" + * createdAt: "2024-05-21T23:17:27.350Z", + * createdBy: "a841e300-40c1-7062-fa34-5b46dadbbaac", + * isVerified: false, + * libraryItemId: "cb9ecf72-8563-450d-9db9-994f98297316", + * ratingCount: 0, + * status: "PUBLISHED", + * updatedAt: "2024-05-21T23:17:27.350Z", + * updatedBy: "a841e300-40c1-7062-fa34-5b46dadbbaac" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateLibraryItemCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/CreatePresignedUrlCommand.ts b/clients/client-qapps/src/commands/CreatePresignedUrlCommand.ts index 11b8c7f239b1f..c870593570822 100644 --- a/clients/client-qapps/src/commands/CreatePresignedUrlCommand.ts +++ b/clients/client-qapps/src/commands/CreatePresignedUrlCommand.ts @@ -85,66 +85,65 @@ export interface CreatePresignedUrlCommandOutput extends CreatePresignedUrlOutpu * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Upload a file to a specific session * ```javascript * // * const input = { - * "appId": "4263767c-d889-4cb2-a8f6-8b649bc66af0", - * "cardId": "82f69028-22a9-4bea-8727-0eabf58e9fed", - * "fileContentsSha256": "wXY7GD8m4fmHhdtuQyBdXzNQpdCseVwBcOBIlzfm+kg=", - * "fileName": "myFile.txt", - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "scope": "SESSION", - * "sessionId": "4f0e5b87-9d38-41cd-9eb4-ebce2f2917cc" + * appId: "4263767c-d889-4cb2-a8f6-8b649bc66af0", + * cardId: "82f69028-22a9-4bea-8727-0eabf58e9fed", + * fileContentsSha256: "wXY7GD8m4fmHhdtuQyBdXzNQpdCseVwBcOBIlzfm+kg=", + * fileName: "myFile.txt", + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * scope: "SESSION", + * sessionId: "4f0e5b87-9d38-41cd-9eb4-ebce2f2917cc" * }; * const command = new CreatePresignedUrlCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "fileId": "412aa1b4-341c-45af-936d-da52f8a1a3b4", - * "presignedUrl": "https://qapps-uploaded-files-us-east-1-c819fab7cf78c9205158297913deb9e0.s3.us-east-1.amazonaws.com/", - * "presignedUrlExpiration": "2024-09-14T00:11:54.232Z", - * "presignedUrlFields": { - * "x-amz-checksum-sha256": "wXY7GD8m4fmHhdtuQyBdXzNQpdCseVwBcOBIlzfm+kg=", - * "x-amz-server-side-encryption": "aws:kms", - * "x-amz-server-side-encryption-aws-kms-key-id": "0a6a474b-f2ca-46ea-9e72-deea9077d92f", - * "x-amz-server-side-encryption-context": "eyJBUFBMSUNBVElPTl9JRCI6IjAxMjM0NTY3ODkwMSJ9" + * fileId: "412aa1b4-341c-45af-936d-da52f8a1a3b4", + * presignedUrl: "https://qapps-uploaded-files-us-east-1-c819fab7cf78c9205158297913deb9e0.s3.us-east-1.amazonaws.com/", + * presignedUrlExpiration: "2024-09-14T00:11:54.232Z", + * presignedUrlFields: { + * x-amz-checksum-sha256: "wXY7GD8m4fmHhdtuQyBdXzNQpdCseVwBcOBIlzfm+kg=", + * x-amz-server-side-encryption: "aws:kms", + * x-amz-server-side-encryption-aws-kms-key-id: "0a6a474b-f2ca-46ea-9e72-deea9077d92f", + * x-amz-server-side-encryption-context: "eyJBUFBMSUNBVElPTl9JRCI6IjAxMjM0NTY3ODkwMSJ9" * } * } * *\/ - * // example id: example-1 * ``` * * @example Upload a file into a application * ```javascript * // * const input = { - * "appId": "4263767c-d889-4cb2-a8f6-8b649bc66af0", - * "cardId": "7a11f34b-42d4-4bc8-b668-ae4a788dae1e", - * "fileContentsSha256": "wXY7GD8m4fmHhdtuQyBdXzNQpdCseVwBcOBIlzfm+kg=", - * "fileName": "anApplicationFile.txt", - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "scope": "APPLICATION" + * appId: "4263767c-d889-4cb2-a8f6-8b649bc66af0", + * cardId: "7a11f34b-42d4-4bc8-b668-ae4a788dae1e", + * fileContentsSha256: "wXY7GD8m4fmHhdtuQyBdXzNQpdCseVwBcOBIlzfm+kg=", + * fileName: "anApplicationFile.txt", + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * scope: "APPLICATION" * }; * const command = new CreatePresignedUrlCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "fileId": "412aa1b4-341c-45af-936d-da52f8a1a3b4", - * "presignedUrl": "https://qapps-uploaded-files-us-east-1-c819fab7cf78c9205158297913deb9e0.s3.us-east-1.amazonaws.com/", - * "presignedUrlExpiration": "2024-09-14T00:11:54.232Z", - * "presignedUrlFields": { - * "x-amz-checksum-sha256": "wXY7GD8m4fmHhdtuQyBdXzNQpdCseVwBcOBIlzfm+kg=", - * "x-amz-server-side-encryption": "aws:kms", - * "x-amz-server-side-encryption-aws-kms-key-id": "0a6a474b-f2ca-46ea-9e72-deea9077d92f", - * "x-amz-server-side-encryption-context": "eyJBUFBMSUNBVElPTl9JRCI6IjAxMjM0NTY3ODkwMSJ9" + * fileId: "412aa1b4-341c-45af-936d-da52f8a1a3b4", + * presignedUrl: "https://qapps-uploaded-files-us-east-1-c819fab7cf78c9205158297913deb9e0.s3.us-east-1.amazonaws.com/", + * presignedUrlExpiration: "2024-09-14T00:11:54.232Z", + * presignedUrlFields: { + * x-amz-checksum-sha256: "wXY7GD8m4fmHhdtuQyBdXzNQpdCseVwBcOBIlzfm+kg=", + * x-amz-server-side-encryption: "aws:kms", + * x-amz-server-side-encryption-aws-kms-key-id: "0a6a474b-f2ca-46ea-9e72-deea9077d92f", + * x-amz-server-side-encryption-context: "eyJBUFBMSUNBVElPTl9JRCI6IjAxMjM0NTY3ODkwMSJ9" * } * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class CreatePresignedUrlCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/CreateQAppCommand.ts b/clients/client-qapps/src/commands/CreateQAppCommand.ts index edde3475256f3..a7e616ef22d06 100644 --- a/clients/client-qapps/src/commands/CreateQAppCommand.ts +++ b/clients/client-qapps/src/commands/CreateQAppCommand.ts @@ -230,56 +230,56 @@ export interface CreateQAppCommandOutput extends CreateQAppOutput, __MetadataBea * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example A basic application with 1 text input card and 1 output card * ```javascript * // * const input = { - * "appDefinition": { - * "cards": [ + * appDefinition: { + * cards: [ * { - * "textInput": { - * "type": "text-input", - * "id": "4cf94d96-8819-45c2-98cc-58c56b35c72f", - * "title": "Color Base" + * textInput: { + * id: "4cf94d96-8819-45c2-98cc-58c56b35c72f", + * title: "Color Base", + * type: "text-input" * } * }, * { - * "qQuery": { - * "type": "q-query", - * "id": "18870b94-1e63-40e0-8c12-669c90ac5acc", - * "prompt": "Recommend me a list of colors that go well with @4cf94d96-8819-45c2-98cc-58c56b35c72f", - * "title": "Recommended Palette" + * qQuery: { + * id: "18870b94-1e63-40e0-8c12-669c90ac5acc", + * prompt: "Recommend me a list of colors that go well with @4cf94d96-8819-45c2-98cc-58c56b35c72f", + * title: "Recommended Palette", + * type: "q-query" * } * } * ], - * "initialPrompt": "Create an app that recommend a list of colors based on input." + * initialPrompt: "Create an app that recommend a list of colors based on input." * }, - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "title": "Color Palette Generator" + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * title: "Color Palette Generator" * }; * const command = new CreateQAppCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "appArn": "arn:aws:qapps:us-west-2:123456789012:app/7212ff04-de7b-4831-bd80-45d6975ba1b0", - * "appId": "7212ff04-de7b-4831-bd80-45d6975ba1b0", - * "appVersion": 1, - * "createdAt": "2024-05-14T00:11:54.232Z", - * "createdBy": "a841e300-40c1-7062-fa34-5b46dadbbaac", - * "initialPrompt": "Create an app that recommend a list of colors based on input.", - * "requiredCapabilities": [ + * appArn: "arn:aws:qapps:us-west-2:123456789012:app/7212ff04-de7b-4831-bd80-45d6975ba1b0", + * appId: "7212ff04-de7b-4831-bd80-45d6975ba1b0", + * appVersion: 1, + * createdAt: "2024-05-14T00:11:54.232Z", + * createdBy: "a841e300-40c1-7062-fa34-5b46dadbbaac", + * initialPrompt: "Create an app that recommend a list of colors based on input.", + * requiredCapabilities: [ * "CreatorMode" * ], - * "status": "DRAFT", - * "title": "Color Palette Generator", - * "updatedAt": "2024-05-14T00:13:26.168Z", - * "updatedBy": "a841e300-40c1-7062-fa34-5b46dadbbaac" + * status: "DRAFT", + * title: "Color Palette Generator", + * updatedAt: "2024-05-14T00:13:26.168Z", + * updatedBy: "a841e300-40c1-7062-fa34-5b46dadbbaac" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateQAppCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/DeleteLibraryItemCommand.ts b/clients/client-qapps/src/commands/DeleteLibraryItemCommand.ts index 80a877aa88dd8..74a76d802c34b 100644 --- a/clients/client-qapps/src/commands/DeleteLibraryItemCommand.ts +++ b/clients/client-qapps/src/commands/DeleteLibraryItemCommand.ts @@ -78,19 +78,22 @@ export interface DeleteLibraryItemCommandOutput extends __MetadataBearer {} * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Delete a library item * ```javascript * // * const input = { - * "instanceId": "3642ba81-344c-42fd-a480-9119a5a5f26b", - * "libraryItemId": "72088fd4-78b6-43da-bfb8-8621323c3cfb" + * instanceId: "3642ba81-344c-42fd-a480-9119a5a5f26b", + * libraryItemId: "72088fd4-78b6-43da-bfb8-8621323c3cfb" * }; * const command = new DeleteLibraryItemCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteLibraryItemCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/DeleteQAppCommand.ts b/clients/client-qapps/src/commands/DeleteQAppCommand.ts index f4adefe25c949..19531050a3bde 100644 --- a/clients/client-qapps/src/commands/DeleteQAppCommand.ts +++ b/clients/client-qapps/src/commands/DeleteQAppCommand.ts @@ -74,19 +74,22 @@ export interface DeleteQAppCommandOutput extends __MetadataBearer {} * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Delete an Amazon Q App * ```javascript * // * const input = { - * "appId": "393e77fb-0a30-4f47-ad30-75d71aeaed8a", - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" + * appId: "393e77fb-0a30-4f47-ad30-75d71aeaed8a", + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" * }; * const command = new DeleteQAppCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteQAppCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/DescribeQAppPermissionsCommand.ts b/clients/client-qapps/src/commands/DescribeQAppPermissionsCommand.ts index 0c9d3ee7df62f..2238332600049 100644 --- a/clients/client-qapps/src/commands/DescribeQAppPermissionsCommand.ts +++ b/clients/client-qapps/src/commands/DescribeQAppPermissionsCommand.ts @@ -86,41 +86,41 @@ export interface DescribeQAppPermissionsCommandOutput extends DescribeQAppPermis * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Describe permissions for the app * ```javascript * // * const input = { - * "appId": "fe0acf86-49e5-4def-a0c2-40ce0cafee14", - * "instanceId": "01793661-ad73-4c7d-8eaa-1c95a10151c2" + * appId: "fe0acf86-49e5-4def-a0c2-40ce0cafee14", + * instanceId: "01793661-ad73-4c7d-8eaa-1c95a10151c2" * }; * const command = new DescribeQAppPermissionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "appId": "fe0acf86-49e5-4def-a0c2-40ce0cafee14", - * "permissions": [ + * appId: "fe0acf86-49e5-4def-a0c2-40ce0cafee14", + * permissions: [ * { - * "action": "write", - * "principal": { - * "email": "user1@example.com", - * "userId": "f8f15330-b091-708b-d46e-adb0d914b699" + * action: "write", + * principal: { + * email: "user1@example.com", + * userId: "f8f15330-b091-708b-d46e-adb0d914b699" * } * }, * { - * "action": "read", - * "principal": { - * "email": "user2@example.com", - * "userId": "c81133d0-10d1-70eb-aaa3-d427ea6fc0f3" + * action: "read", + * principal: { + * email: "user2@example.com", + * userId: "c81133d0-10d1-70eb-aaa3-d427ea6fc0f3" * } * } * ], - * "resourceArn": "arn:aws:qapps:us-west-2:111111111111:application/01793661-ad73-4c7d-8eaa-1c95a10151c2/qapp/fe0acf86-49e5-4def-a0c2-40ce0cafee14" + * resourceArn: "arn:aws:qapps:us-west-2:111111111111:application/01793661-ad73-4c7d-8eaa-1c95a10151c2/qapp/fe0acf86-49e5-4def-a0c2-40ce0cafee14" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class DescribeQAppPermissionsCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/DisassociateLibraryItemReviewCommand.ts b/clients/client-qapps/src/commands/DisassociateLibraryItemReviewCommand.ts index 749b23afc110b..61d7ffaf06303 100644 --- a/clients/client-qapps/src/commands/DisassociateLibraryItemReviewCommand.ts +++ b/clients/client-qapps/src/commands/DisassociateLibraryItemReviewCommand.ts @@ -84,19 +84,22 @@ export interface DisassociateLibraryItemReviewCommandOutput extends __MetadataBe * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Decrease the rating counter by 1 for the related app for this user * ```javascript * // * const input = { - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "libraryItemId": "cb9ecf72-8563-450d-9db9-994f98297316" + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * libraryItemId: "cb9ecf72-8563-450d-9db9-994f98297316" * }; * const command = new DisassociateLibraryItemReviewCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DisassociateLibraryItemReviewCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/DisassociateQAppFromUserCommand.ts b/clients/client-qapps/src/commands/DisassociateQAppFromUserCommand.ts index 1e842652a0a5d..ce2e96b36c837 100644 --- a/clients/client-qapps/src/commands/DisassociateQAppFromUserCommand.ts +++ b/clients/client-qapps/src/commands/DisassociateQAppFromUserCommand.ts @@ -73,19 +73,22 @@ export interface DisassociateQAppFromUserCommandOutput extends __MetadataBearer * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Unlinks an Amazon Q App from the invoker's list of apps * ```javascript * // * const input = { - * "appId": "393e77fb-0a30-4f47-ad30-75d71aeaed8a", - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" + * appId: "393e77fb-0a30-4f47-ad30-75d71aeaed8a", + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" * }; * const command = new DisassociateQAppFromUserCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DisassociateQAppFromUserCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/ExportQAppSessionDataCommand.ts b/clients/client-qapps/src/commands/ExportQAppSessionDataCommand.ts index fc9bc5f91fbe0..0d3a849dbe269 100644 --- a/clients/client-qapps/src/commands/ExportQAppSessionDataCommand.ts +++ b/clients/client-qapps/src/commands/ExportQAppSessionDataCommand.ts @@ -85,6 +85,7 @@ export interface ExportQAppSessionDataCommandOutput extends ExportQAppSessionDat * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* + * * @public */ export class ExportQAppSessionDataCommand extends $Command diff --git a/clients/client-qapps/src/commands/GetLibraryItemCommand.ts b/clients/client-qapps/src/commands/GetLibraryItemCommand.ts index de769e6a7d48b..60c813160eedd 100644 --- a/clients/client-qapps/src/commands/GetLibraryItemCommand.ts +++ b/clients/client-qapps/src/commands/GetLibraryItemCommand.ts @@ -96,49 +96,49 @@ export interface GetLibraryItemCommandOutput extends GetLibraryItemOutput, __Met * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Retrieve a library item * ```javascript * // * const input = { - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "libraryItemId": "18cbebaa-196a-4aa5-a840-88d548e07f8f" + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * libraryItemId: "18cbebaa-196a-4aa5-a840-88d548e07f8f" * }; * const command = new GetLibraryItemCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "appId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "appVersion": 1, - * "categories": [ + * appId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * appVersion: 1, + * categories: [ * { - * "id": "9c871ed4-1c41-4065-aefe-321cd4b61cf8", - * "title": "HR" + * id: "9c871ed4-1c41-4065-aefe-321cd4b61cf8", + * title: "HR" * }, * { - * "id": "fdc4b483-c4e2-44c9-b4b2-6c850bbdb579", - * "title": "General" + * id: "fdc4b483-c4e2-44c9-b4b2-6c850bbdb579", + * title: "General" * }, * { - * "id": "c1c4e374-118c-446f-81fb-cba6225d88da", - * "title": "IT" + * id: "c1c4e374-118c-446f-81fb-cba6225d88da", + * title: "IT" * } * ], - * "createdAt": "2024-05-08T16:09:56.080Z", - * "createdBy": "a841e300-40c1-7062-fa34-5b46dadbbaac", - * "isRatedByUser": false, - * "isVerified": false, - * "libraryItemId": "18cbebaa-196a-4aa5-a840-88d548e07f8f", - * "ratingCount": 0, - * "status": "PUBLISHED", - * "updatedAt": "2024-05-08T16:09:56.080Z", - * "updatedBy": "a841e300-40c1-7062-fa34-5b46dadbbaac", - * "userCount": 1 + * createdAt: "2024-05-08T16:09:56.080Z", + * createdBy: "a841e300-40c1-7062-fa34-5b46dadbbaac", + * isRatedByUser: false, + * isVerified: false, + * libraryItemId: "18cbebaa-196a-4aa5-a840-88d548e07f8f", + * ratingCount: 0, + * status: "PUBLISHED", + * updatedAt: "2024-05-08T16:09:56.080Z", + * updatedBy: "a841e300-40c1-7062-fa34-5b46dadbbaac", + * userCount: 1 * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetLibraryItemCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/GetQAppCommand.ts b/clients/client-qapps/src/commands/GetQAppCommand.ts index f73e192570903..3c928a3fc03b1 100644 --- a/clients/client-qapps/src/commands/GetQAppCommand.ts +++ b/clients/client-qapps/src/commands/GetQAppCommand.ts @@ -237,57 +237,57 @@ export interface GetQAppCommandOutput extends GetQAppOutput, __MetadataBearer {} * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example A basic application with 1 text input card and 1 output card * ```javascript * // * const input = { - * "appId": "3d110749-efc3-427c-87e8-15e966e5c168", - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" + * appId: "3d110749-efc3-427c-87e8-15e966e5c168", + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" * }; * const command = new GetQAppCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "appArn": "arn:aws:qapps:us-west-2:123456789012:app/7212ff04-de7b-4831-bd80-45d6975ba1b0", - * "appDefinition": { - * "appDefinitionVersion": "1", - * "cards": [ + * appArn: "arn:aws:qapps:us-west-2:123456789012:app/7212ff04-de7b-4831-bd80-45d6975ba1b0", + * appDefinition: { + * appDefinitionVersion: "1", + * cards: [ * { - * "textInput": { - * "type": "text-input", - * "dependencies": [], - * "id": "4cf94d96-8819-45c2-98cc-58c56b35c72f", - * "title": "Color Base" + * textInput: { + * dependencies: [], + * id: "4cf94d96-8819-45c2-98cc-58c56b35c72f", + * title: "Color Base", + * type: "text-input" * } * }, * { - * "qQuery": { - * "type": "q-query", - * "dependencies": [ + * qQuery: { + * dependencies: [ * "91e4513d-6981-454a-9329-329c9302eef4" * ], - * "id": "18870b94-1e63-40e0-8c12-669c90ac5acc", - * "outputSource": "llm", - * "prompt": "Recommend me a list of colors that go well with @91e4513d-6981-454a-9329-329c9302eef4 ", - * "title": "Recommended Palette" + * id: "18870b94-1e63-40e0-8c12-669c90ac5acc", + * outputSource: "llm", + * prompt: "Recommend me a list of colors that go well with @91e4513d-6981-454a-9329-329c9302eef4 ", + * title: "Recommended Palette", + * type: "q-query" * } * } * ] * }, - * "appId": "7212ff04-de7b-4831-bd80-45d6975ba1b0", - * "appVersion": 1, - * "createdAt": "2024-05-14T00:11:54.232Z", - * "createdBy": "a841e300-40c1-7062-fa34-5b46dadbbaac", - * "status": "DRAFT", - * "title": "Color Palette Generator", - * "updatedAt": "2024-05-14T00:13:26.168Z", - * "updatedBy": "a841e300-40c1-7062-fa34-5b46dadbbaac" + * appId: "7212ff04-de7b-4831-bd80-45d6975ba1b0", + * appVersion: 1, + * createdAt: "2024-05-14T00:11:54.232Z", + * createdBy: "a841e300-40c1-7062-fa34-5b46dadbbaac", + * status: "DRAFT", + * title: "Color Palette Generator", + * updatedAt: "2024-05-14T00:13:26.168Z", + * updatedBy: "a841e300-40c1-7062-fa34-5b46dadbbaac" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetQAppCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/GetQAppSessionCommand.ts b/clients/client-qapps/src/commands/GetQAppSessionCommand.ts index b7a5f27bad0be..2fc963ea88390 100644 --- a/clients/client-qapps/src/commands/GetQAppSessionCommand.ts +++ b/clients/client-qapps/src/commands/GetQAppSessionCommand.ts @@ -98,46 +98,46 @@ export interface GetQAppSessionCommandOutput extends GetQAppSessionOutput, __Met * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Retrieves an existing session for an Amazon Q App * ```javascript * // * const input = { - * "instanceId": "288ae830-1df2-4871-b6c0-4314d74dadef", - * "sessionId": "1fca878e-64c5-4dc4-b1d9-c93effed4e82" + * instanceId: "288ae830-1df2-4871-b6c0-4314d74dadef", + * sessionId: "1fca878e-64c5-4dc4-b1d9-c93effed4e82" * }; * const command = new GetQAppSessionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "cardStatus": { - * "1e6caeac-b481-45ff-a082-8b9a4a0b72e8": { - * "currentState": "COMPLETED", - * "currentValue": "Based on the responses, the most popular color is red, with 1 vote from the user \"user1\"." + * cardStatus: { + * 1e6caeac-b481-45ff-a082-8b9a4a0b72e8: { + * currentState: "COMPLETED", + * currentValue: `Based on the responses, the most popular color is red, with 1 vote from the user "user1".` * }, - * "6fb5b404-3b7b-48a4-8a8b-56406922a606": { - * "currentState": "COMPLETED", - * "currentValue": "", - * "submissions": [ + * 6fb5b404-3b7b-48a4-8a8b-56406922a606: { + * currentState: "COMPLETED", + * currentValue: "", + * submissions: [ * { - * "value": { - * "18cee4cb-253e-4f87-9154-849fbb98e482": "user1", - * "d52030f9-6c4b-47a9-a946-377f632c77cc": "red" - * }, - * "submissionId": "f47ac10b-58cc-4372-a567-0e02b2c3d479", - * "timestamp": "2023-06-15T14:30:45Z" + * submissionId: "f47ac10b-58cc-4372-a567-0e02b2c3d479", + * timestamp: "2023-06-15T14:30:45Z", + * value: { + * 18cee4cb-253e-4f87-9154-849fbb98e482: "user1", + * d52030f9-6c4b-47a9-a946-377f632c77cc: "red" + * } * } * ] * } * }, - * "sessionArn": "arn:aws:qapps:us-west-2:0123456789012:application/a929ecd6-5765-4ec7-bd3e-2ca90098b18e/qapp/65e7dce7-226a-47f9-b689-22850becef89/session/1fca878e-64c5-4dc4-b1d9-c93effed4e82", - * "sessionId": "1fca878e-64c5-4dc4-b1d9-c93effed4e82", - * "status": "COMPLETED" + * sessionArn: "arn:aws:qapps:us-west-2:0123456789012:application/a929ecd6-5765-4ec7-bd3e-2ca90098b18e/qapp/65e7dce7-226a-47f9-b689-22850becef89/session/1fca878e-64c5-4dc4-b1d9-c93effed4e82", + * sessionId: "1fca878e-64c5-4dc4-b1d9-c93effed4e82", + * status: "COMPLETED" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetQAppSessionCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/GetQAppSessionMetadataCommand.ts b/clients/client-qapps/src/commands/GetQAppSessionMetadataCommand.ts index 9c4804b4740dd..163fdb6235f2b 100644 --- a/clients/client-qapps/src/commands/GetQAppSessionMetadataCommand.ts +++ b/clients/client-qapps/src/commands/GetQAppSessionMetadataCommand.ts @@ -87,32 +87,32 @@ export interface GetQAppSessionMetadataCommandOutput extends GetQAppSessionMetad * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Retrieves an existing session metadata for an Amazon Q App * ```javascript * // * const input = { - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "sessionId": "56ae47c3-10bc-4c2c-8b27-9b9fe23b3edb" + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * sessionId: "56ae47c3-10bc-4c2c-8b27-9b9fe23b3edb" * }; * const command = new GetQAppSessionMetadataCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "sessionArn": "arn:aws:qapps:us-west-2:0123456789012:application/cbea8329-41c0-4566-a112-19250921a220/qapp/387ccac9-4717-489f-841f-729b7d7de355/session/56ae47c3-10bc-4c2c-8b27-9b9fe23b3edb", - * "sessionId": "56ae47c3-10bc-4c2c-8b27-9b9fe23b3edb", - * "sessionName": "Trip itinerary collection session", - * "sessionOwner": true, - * "sharingConfiguration": { - * "acceptResponses": true, - * "enabled": true, - * "revealCards": false + * sessionArn: "arn:aws:qapps:us-west-2:0123456789012:application/cbea8329-41c0-4566-a112-19250921a220/qapp/387ccac9-4717-489f-841f-729b7d7de355/session/56ae47c3-10bc-4c2c-8b27-9b9fe23b3edb", + * sessionId: "56ae47c3-10bc-4c2c-8b27-9b9fe23b3edb", + * sessionName: "Trip itinerary collection session", + * sessionOwner: true, + * sharingConfiguration: { + * acceptResponses: true, + * enabled: true, + * revealCards: false * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetQAppSessionMetadataCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/ImportDocumentCommand.ts b/clients/client-qapps/src/commands/ImportDocumentCommand.ts index 7688d5f8290e0..94fe218179685 100644 --- a/clients/client-qapps/src/commands/ImportDocumentCommand.ts +++ b/clients/client-qapps/src/commands/ImportDocumentCommand.ts @@ -91,50 +91,49 @@ export interface ImportDocumentCommandOutput extends ImportDocumentOutput, __Met * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Upload a file to a specific session * ```javascript * // * const input = { - * "appId": "4263767c-d889-4cb2-a8f6-8b649bc66af0", - * "cardId": "82f69028-22a9-4bea-8727-0eabf58e9fed", - * "fileContentsBase64": "data:text/plain;base64,SomeFileEncodedInBase64", - * "fileName": "myFile.txt", - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "scope": "SESSION", - * "sessionId": "4f0e5b87-9d38-41cd-9eb4-ebce2f2917cc" + * appId: "4263767c-d889-4cb2-a8f6-8b649bc66af0", + * cardId: "82f69028-22a9-4bea-8727-0eabf58e9fed", + * fileContentsBase64: "data:text/plain;base64,SomeFileEncodedInBase64", + * fileName: "myFile.txt", + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * scope: "SESSION", + * sessionId: "4f0e5b87-9d38-41cd-9eb4-ebce2f2917cc" * }; * const command = new ImportDocumentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "fileId": "412aa1b4-341c-45af-936d-da52f8a1a3b4" + * fileId: "412aa1b4-341c-45af-936d-da52f8a1a3b4" * } * *\/ - * // example id: example-1 * ``` * * @example Upload a file into a application * ```javascript * // * const input = { - * "appId": "4263767c-d889-4cb2-a8f6-8b649bc66af0", - * "cardId": "7a11f34b-42d4-4bc8-b668-ae4a788dae1e", - * "fileContentsBase64": "data:text/plain;base64,SomeFileEncodedInBase64", - * "fileName": "anApplicationFile.txt", - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "scope": "APPLICATION" + * appId: "4263767c-d889-4cb2-a8f6-8b649bc66af0", + * cardId: "7a11f34b-42d4-4bc8-b668-ae4a788dae1e", + * fileContentsBase64: "data:text/plain;base64,SomeFileEncodedInBase64", + * fileName: "anApplicationFile.txt", + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * scope: "APPLICATION" * }; * const command = new ImportDocumentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "fileId": "bc1a0cc9-076a-4e82-9a6c-f4d2d8a22489" + * fileId: "bc1a0cc9-076a-4e82-9a6c-f4d2d8a22489" * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class ImportDocumentCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/ListCategoriesCommand.ts b/clients/client-qapps/src/commands/ListCategoriesCommand.ts index fc1aed7490213..077d6090c26a2 100644 --- a/clients/client-qapps/src/commands/ListCategoriesCommand.ts +++ b/clients/client-qapps/src/commands/ListCategoriesCommand.ts @@ -82,36 +82,36 @@ export interface ListCategoriesCommandOutput extends ListCategoriesOutput, __Met * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example List categories available for the library items in this instance * ```javascript * // * const input = { - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" * }; * const command = new ListCategoriesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "categories": [ + * categories: [ * { - * "appCount": 10, - * "color": "#FF6600", - * "id": "549abfe0-f5c4-45a2-bb9b-c05987a49c6d", - * "title": "HR" + * appCount: 10, + * color: "#FF6600", + * id: "549abfe0-f5c4-45a2-bb9b-c05987a49c6d", + * title: "HR" * }, * { - * "appCount": 11, - * "color": "#FFFF00", - * "id": "18cbebaa-196a-4aa5-a840-88d548e07f8f", - * "title": "Marketing" + * appCount: 11, + * color: "#FFFF00", + * id: "18cbebaa-196a-4aa5-a840-88d548e07f8f", + * title: "Marketing" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListCategoriesCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/ListLibraryItemsCommand.ts b/clients/client-qapps/src/commands/ListLibraryItemsCommand.ts index fecc0707f3215..24e1bca404b28 100644 --- a/clients/client-qapps/src/commands/ListLibraryItemsCommand.ts +++ b/clients/client-qapps/src/commands/ListLibraryItemsCommand.ts @@ -102,90 +102,90 @@ export interface ListLibraryItemsCommandOutput extends ListLibraryItemsOutput, _ * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example List at most 3 library items for this instance * ```javascript * // * const input = { - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "limit": 3 + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * limit: 3 * }; * const command = new ListLibraryItemsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "libraryItems": [ + * libraryItems: [ * { - * "appId": "7a11f34b-42d4-4bc8-b668-ae4a788dae1e", - * "appVersion": 6, - * "categories": [ + * appId: "7a11f34b-42d4-4bc8-b668-ae4a788dae1e", + * appVersion: 6, + * categories: [ * { - * "id": "9c871ed4-1c41-4065-aefe-321cd4b61cf8", - * "title": "HR" + * id: "9c871ed4-1c41-4065-aefe-321cd4b61cf8", + * title: "HR" * }, * { - * "id": "c1c4e374-118c-446f-81fb-cba6225d88da", - * "title": "IT" + * id: "c1c4e374-118c-446f-81fb-cba6225d88da", + * title: "IT" * } * ], - * "createdAt": "2024-05-21T23:17:27.350Z", - * "createdBy": "a841e300-40c1-7062-fa34-5b46dadbbaac", - * "isRatedByUser": true, - * "isVerified": false, - * "libraryItemId": "cb9ecf72-8563-450d-9db9-994f98297316", - * "ratingCount": 3, - * "status": "PUBLISHED", - * "updatedAt": "2024-05-21T23:17:27.350Z", - * "updatedBy": "a841e300-40c1-7062-fa34-5b46dadbbaac", - * "userCount": 5 + * createdAt: "2024-05-21T23:17:27.350Z", + * createdBy: "a841e300-40c1-7062-fa34-5b46dadbbaac", + * isRatedByUser: true, + * isVerified: false, + * libraryItemId: "cb9ecf72-8563-450d-9db9-994f98297316", + * ratingCount: 3, + * status: "PUBLISHED", + * updatedAt: "2024-05-21T23:17:27.350Z", + * updatedBy: "a841e300-40c1-7062-fa34-5b46dadbbaac", + * userCount: 5 * }, * { - * "appId": "201272ac-d474-4a97-991c-5520dae04026", - * "appVersion": 1, - * "categories": [ + * appId: "201272ac-d474-4a97-991c-5520dae04026", + * appVersion: 1, + * categories: [ * { - * "id": "fdc4b483-c4e2-44c9-b4b2-6c850bbdb579", - * "title": "General" + * id: "fdc4b483-c4e2-44c9-b4b2-6c850bbdb579", + * title: "General" * } * ], - * "createdAt": "2024-05-08T16:09:56.080Z", - * "createdBy": "a841e300-40c1-7062-fa34-5b46dadbbaac", - * "isRatedByUser": false, - * "isVerified": false, - * "libraryItemId": "18cbebaa-196a-4aa5-a840-88d548e07f8f", - * "ratingCount": 5, - * "status": "PUBLISHED", - * "updatedAt": "2024-05-08T16:09:56.080Z", - * "updatedBy": "a841e300-40c1-7062-fa34-5b46dadbbaac", - * "userCount": 8 + * createdAt: "2024-05-08T16:09:56.080Z", + * createdBy: "a841e300-40c1-7062-fa34-5b46dadbbaac", + * isRatedByUser: false, + * isVerified: false, + * libraryItemId: "18cbebaa-196a-4aa5-a840-88d548e07f8f", + * ratingCount: 5, + * status: "PUBLISHED", + * updatedAt: "2024-05-08T16:09:56.080Z", + * updatedBy: "a841e300-40c1-7062-fa34-5b46dadbbaac", + * userCount: 8 * }, * { - * "appId": "1802f57f-079a-4b5b-839a-79bbe2e21b3c", - * "appVersion": 1, - * "categories": [ + * appId: "1802f57f-079a-4b5b-839a-79bbe2e21b3c", + * appVersion: 1, + * categories: [ * { - * "id": "fdc4b483-c4e2-44c9-b4b2-6c850bbdb579", - * "title": "General" + * id: "fdc4b483-c4e2-44c9-b4b2-6c850bbdb579", + * title: "General" * } * ], - * "createdAt": "2024-05-07T22:57:59.327Z", - * "createdBy": "a841e300-40c1-7062-fa34-5b46dadbbaac", - * "isRatedByUser": false, - * "isVerified": false, - * "libraryItemId": "549abfe0-f5c4-45a2-bb9b-c05987a49c6d", - * "ratingCount": 8, - * "status": "PUBLISHED", - * "updatedAt": "2024-05-07T22:57:59.327Z", - * "updatedBy": "a841e300-40c1-7062-fa34-5b46dadbbaac", - * "userCount": 12 + * createdAt: "2024-05-07T22:57:59.327Z", + * createdBy: "a841e300-40c1-7062-fa34-5b46dadbbaac", + * isRatedByUser: false, + * isVerified: false, + * libraryItemId: "549abfe0-f5c4-45a2-bb9b-c05987a49c6d", + * ratingCount: 8, + * status: "PUBLISHED", + * updatedAt: "2024-05-07T22:57:59.327Z", + * updatedBy: "a841e300-40c1-7062-fa34-5b46dadbbaac", + * userCount: 12 * } * ], - * "nextToken": "YW5vdGhlclRva2VuIQ==" + * nextToken: "YW5vdGhlclRva2VuIQ==" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListLibraryItemsCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/ListQAppSessionDataCommand.ts b/clients/client-qapps/src/commands/ListQAppSessionDataCommand.ts index 9143a6a6376a4..d58ca444008bc 100644 --- a/clients/client-qapps/src/commands/ListQAppSessionDataCommand.ts +++ b/clients/client-qapps/src/commands/ListQAppSessionDataCommand.ts @@ -92,6 +92,7 @@ export interface ListQAppSessionDataCommandOutput extends ListQAppSessionDataOut * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* + * * @public */ export class ListQAppSessionDataCommand extends $Command diff --git a/clients/client-qapps/src/commands/ListQAppsCommand.ts b/clients/client-qapps/src/commands/ListQAppsCommand.ts index 321fb053874ee..0df320f187665 100644 --- a/clients/client-qapps/src/commands/ListQAppsCommand.ts +++ b/clients/client-qapps/src/commands/ListQAppsCommand.ts @@ -87,100 +87,99 @@ export interface ListQAppsCommandOutput extends ListQAppsOutput, __MetadataBeare * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example List at most 3 Amazon Q Apps in an Q Business application * ```javascript * // * const input = { - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "limit": 3 + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * limit: 3 * }; * const command = new ListQAppsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "apps": [ + * apps: [ * { - * "appArn": "arn:aws:qapps:us-west-2:..../7b9fe303-18bb-4643-952c-bfcf9f4c427f", - * "appId": "7b9fe303-18bb-4643-952c-bfcf9f4c427f", - * "createdAt": "2024-05-21T04:09:10.401Z", - * "description": "Description 1", - * "isVerified": false, - * "status": "DRAFT", - * "title": "App 1" + * appArn: "arn:aws:qapps:us-west-2:..../7b9fe303-18bb-4643-952c-bfcf9f4c427f", + * appId: "7b9fe303-18bb-4643-952c-bfcf9f4c427f", + * createdAt: "2024-05-21T04:09:10.401Z", + * description: "Description 1", + * isVerified: false, + * status: "DRAFT", + * title: "App 1" * }, * { - * "appArn": "arn:aws:qapps:us-west-2:..../dd178fd6-ad3d-49b3-a32d-e915cf423e37", - * "appId": "dd178fd6-ad3d-49b3-a32d-e915cf423e37", - * "createdAt": "2024-05-21T04:09:10.401Z", - * "description": "Description 2", - * "isVerified": true, - * "status": "PUBLISHED", - * "title": "App 2" + * appArn: "arn:aws:qapps:us-west-2:..../dd178fd6-ad3d-49b3-a32d-e915cf423e37", + * appId: "dd178fd6-ad3d-49b3-a32d-e915cf423e37", + * createdAt: "2024-05-21T04:09:10.401Z", + * description: "Description 2", + * isVerified: true, + * status: "PUBLISHED", + * title: "App 2" * }, * { - * "appArn": "arn:aws:qapps:us-west-2:..../3274b744-1a13-4aad-953f-eda2e4149e6e", - * "appId": "3274b744-1a13-4aad-953f-eda2e4149e6e", - * "createdAt": "2024-05-21T04:09:10.401Z", - * "description": "Description 3", - * "isVerified": false, - * "status": "DRAFT", - * "title": "App 3" + * appArn: "arn:aws:qapps:us-west-2:..../3274b744-1a13-4aad-953f-eda2e4149e6e", + * appId: "3274b744-1a13-4aad-953f-eda2e4149e6e", + * createdAt: "2024-05-21T04:09:10.401Z", + * description: "Description 3", + * isVerified: false, + * status: "DRAFT", + * title: "App 3" * } * ], - * "nextToken": "bXlzdGVyaW91c1BhZ2luYXRpb25Ub2tlbg==" + * nextToken: "bXlzdGVyaW91c1BhZ2luYXRpb25Ub2tlbg==" * } * *\/ - * // example id: example-1 * ``` * * @example Retrieve the next page of Amazon Q Apps * ```javascript * // * const input = { - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "limit": 3, - * "nextToken": "bXlzdGVyaW91c1BhZ2luYXRpb25Ub2tlbg==" + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * limit: 3, + * nextToken: "bXlzdGVyaW91c1BhZ2luYXRpb25Ub2tlbg==" * }; * const command = new ListQAppsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "apps": [ + * apps: [ * { - * "appArn": "arn:aws:qapps:us-west-2:..../bec8ee64-2635-41e8-aace-e1e418f4f295", - * "appId": "bec8ee64-2635-41e8-aace-e1e418f4f295", - * "createdAt": "2024-05-21T04:09:10.401Z", - * "description": "Description 4", - * "isVerified": true, - * "status": "PUBLISHED", - * "title": "App 4" + * appArn: "arn:aws:qapps:us-west-2:..../bec8ee64-2635-41e8-aace-e1e418f4f295", + * appId: "bec8ee64-2635-41e8-aace-e1e418f4f295", + * createdAt: "2024-05-21T04:09:10.401Z", + * description: "Description 4", + * isVerified: true, + * status: "PUBLISHED", + * title: "App 4" * }, * { - * "appArn": "arn:aws:qapps:us-west-2:..../c380a45d-bd77-45b0-a0e5-8a266c1d8bc4", - * "appId": "c380a45d-bd77-45b0-a0e5-8a266c1d8bc4", - * "createdAt": "2024-05-21T04:09:10.401Z", - * "description": "Description 5", - * "isVerified": false, - * "status": "PUBLISHED", - * "title": "App 5" + * appArn: "arn:aws:qapps:us-west-2:..../c380a45d-bd77-45b0-a0e5-8a266c1d8bc4", + * appId: "c380a45d-bd77-45b0-a0e5-8a266c1d8bc4", + * createdAt: "2024-05-21T04:09:10.401Z", + * description: "Description 5", + * isVerified: false, + * status: "PUBLISHED", + * title: "App 5" * }, * { - * "appArn": "arn:aws:qapps:us-west-2:..../afc4ee80-9722-4396-85a6-7aeaff52c177", - * "appId": "afc4ee80-9722-4396-85a6-7aeaff52c177", - * "createdAt": "2024-05-21T04:09:10.401Z", - * "description": "Description 6", - * "isVerified": false, - * "status": "PUBLISHED", - * "title": "App 6" + * appArn: "arn:aws:qapps:us-west-2:..../afc4ee80-9722-4396-85a6-7aeaff52c177", + * appId: "afc4ee80-9722-4396-85a6-7aeaff52c177", + * createdAt: "2024-05-21T04:09:10.401Z", + * description: "Description 6", + * isVerified: false, + * status: "PUBLISHED", + * title: "App 6" * } * ], - * "nextToken": "YW5vdGhlclRva2VuIQ==" + * nextToken: "YW5vdGhlclRva2VuIQ==" * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class ListQAppsCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/ListTagsForResourceCommand.ts b/clients/client-qapps/src/commands/ListTagsForResourceCommand.ts index e9ffe9fa3a054..480641c5e95ac 100644 --- a/clients/client-qapps/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-qapps/src/commands/ListTagsForResourceCommand.ts @@ -73,25 +73,25 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example A call to list tags for a resource * ```javascript * // * const input = { - * "resourceARN": "arn:aws:qapps:us-west-2:123456789012:application/3642ba81-344c-42fd-a480-9119a5a5f26b/qapp/7212ff04-de7b-4831-bd80-45d6975ba1b0" + * resourceARN: "arn:aws:qapps:us-west-2:123456789012:application/3642ba81-344c-42fd-a480-9119a5a5f26b/qapp/7212ff04-de7b-4831-bd80-45d6975ba1b0" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "tags": { - * "department": "HR" + * tags: { + * department: "HR" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/PredictQAppCommand.ts b/clients/client-qapps/src/commands/PredictQAppCommand.ts index b4e6097289ff8..07b49a03c2ae8 100644 --- a/clients/client-qapps/src/commands/PredictQAppCommand.ts +++ b/clients/client-qapps/src/commands/PredictQAppCommand.ts @@ -213,6 +213,7 @@ export interface PredictQAppCommandOutput extends PredictQAppOutput, __MetadataB * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* + * * @public */ export class PredictQAppCommand extends $Command diff --git a/clients/client-qapps/src/commands/StartQAppSessionCommand.ts b/clients/client-qapps/src/commands/StartQAppSessionCommand.ts index b8d33baa85a8b..17f23714f0671 100644 --- a/clients/client-qapps/src/commands/StartQAppSessionCommand.ts +++ b/clients/client-qapps/src/commands/StartQAppSessionCommand.ts @@ -100,32 +100,32 @@ export interface StartQAppSessionCommandOutput extends StartQAppSessionOutput, _ * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Start a session for an Amazon Q App using version 1, passing in initial values for one card * ```javascript * // * const input = { - * "appId": "65e7dce7-226a-47f9-b689-22850becef89", - * "appVersion": 1, - * "initialValues": [ + * appId: "65e7dce7-226a-47f9-b689-22850becef89", + * appVersion: 1, + * initialValues: [ * { - * "value": "What is the circumference of Earth?", - * "cardId": "6fb5b404-3b7b-48a4-8a8b-56406922a606" + * cardId: "6fb5b404-3b7b-48a4-8a8b-56406922a606", + * value: "What is the circumference of Earth?" * } * ], - * "instanceId": "4cc5e4c2-d2a2-4188-a114-9ca125b4aedc" + * instanceId: "4cc5e4c2-d2a2-4188-a114-9ca125b4aedc" * }; * const command = new StartQAppSessionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "sessionArn": "arn:aws:qapps:us-west-2:0123456789012:application/a929ecd6-5765-4ec7-bd3e-2ca90098b18e/qapp/65e7dce7-226a-47f9-b689-22850becef89/session/1fca878e-64c5-4dc4-b1d9-c93effed4e82", - * "sessionId": "1fca878e-64c5-4dc4-b1d9-c93effed4e82" + * sessionArn: "arn:aws:qapps:us-west-2:0123456789012:application/a929ecd6-5765-4ec7-bd3e-2ca90098b18e/qapp/65e7dce7-226a-47f9-b689-22850becef89/session/1fca878e-64c5-4dc4-b1d9-c93effed4e82", + * sessionId: "1fca878e-64c5-4dc4-b1d9-c93effed4e82" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class StartQAppSessionCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/StopQAppSessionCommand.ts b/clients/client-qapps/src/commands/StopQAppSessionCommand.ts index dc4d5c5883595..3aca9ac802659 100644 --- a/clients/client-qapps/src/commands/StopQAppSessionCommand.ts +++ b/clients/client-qapps/src/commands/StopQAppSessionCommand.ts @@ -79,6 +79,7 @@ export interface StopQAppSessionCommandOutput extends __MetadataBearer {} * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* + * * @public */ export class StopQAppSessionCommand extends $Command diff --git a/clients/client-qapps/src/commands/TagResourceCommand.ts b/clients/client-qapps/src/commands/TagResourceCommand.ts index aace20636c39e..bafeaa8899db1 100644 --- a/clients/client-qapps/src/commands/TagResourceCommand.ts +++ b/clients/client-qapps/src/commands/TagResourceCommand.ts @@ -76,21 +76,24 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example A call to tag a resource * ```javascript * // * const input = { - * "resourceARN": "arn:aws:qapps:us-west-2:123456789012:application/3642ba81-344c-42fd-a480-9119a5a5f26b/qapp/7212ff04-de7b-4831-bd80-45d6975ba1b0", - * "tags": { - * "department": "HR" + * resourceARN: "arn:aws:qapps:us-west-2:123456789012:application/3642ba81-344c-42fd-a480-9119a5a5f26b/qapp/7212ff04-de7b-4831-bd80-45d6975ba1b0", + * tags: { + * department: "HR" * } * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/UntagResourceCommand.ts b/clients/client-qapps/src/commands/UntagResourceCommand.ts index fbf500a698fe0..3ec4dfce22830 100644 --- a/clients/client-qapps/src/commands/UntagResourceCommand.ts +++ b/clients/client-qapps/src/commands/UntagResourceCommand.ts @@ -72,21 +72,24 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example A call to untag a resource * ```javascript * // * const input = { - * "resourceARN": "arn:aws:qapps:us-west-2:123456789012:application/3642ba81-344c-42fd-a480-9119a5a5f26b/qapp/7212ff04-de7b-4831-bd80-45d6975ba1b0", - * "tagKeys": [ + * resourceARN: "arn:aws:qapps:us-west-2:123456789012:application/3642ba81-344c-42fd-a480-9119a5a5f26b/qapp/7212ff04-de7b-4831-bd80-45d6975ba1b0", + * tagKeys: [ * "department" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/UpdateLibraryItemCommand.ts b/clients/client-qapps/src/commands/UpdateLibraryItemCommand.ts index 98f03a6f62b00..7b39d4a0e6c59 100644 --- a/clients/client-qapps/src/commands/UpdateLibraryItemCommand.ts +++ b/clients/client-qapps/src/commands/UpdateLibraryItemCommand.ts @@ -102,48 +102,48 @@ export interface UpdateLibraryItemCommandOutput extends UpdateLibraryItemOutput, * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Sets the status of a library item to DISABLED * ```javascript * // * const input = { - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "libraryItemId": "cb9ecf72-8563-450d-9db9-994f98297316", - * "status": "DISABLED" + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * libraryItemId: "cb9ecf72-8563-450d-9db9-994f98297316", + * status: "DISABLED" * }; * const command = new UpdateLibraryItemCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "appId": "7a11f34b-42d4-4bc8-b668-ae4a788dae1e", - * "appVersion": 6, - * "categories": [ + * appId: "7a11f34b-42d4-4bc8-b668-ae4a788dae1e", + * appVersion: 6, + * categories: [ * { - * "id": "9c871ed4-1c41-4065-aefe-321cd4b61cf8", - * "title": "HR" + * id: "9c871ed4-1c41-4065-aefe-321cd4b61cf8", + * title: "HR" * }, * { - * "id": "fdc4b483-c4e2-44c9-b4b2-6c850bbdb579", - * "title": "General" + * id: "fdc4b483-c4e2-44c9-b4b2-6c850bbdb579", + * title: "General" * }, * { - * "id": "c1c4e374-118c-446f-81fb-cba6225d88da", - * "title": "IT" + * id: "c1c4e374-118c-446f-81fb-cba6225d88da", + * title: "IT" * } * ], - * "createdAt": "2024-05-21T23:17:27.350Z", - * "createdBy": "a841e300-40c1-7062-fa34-5b46dadbbaac", - * "isVerified": false, - * "libraryItemId": "cb9ecf72-8563-450d-9db9-994f98297316", - * "ratingCount": 24, - * "status": "DISABLED", - * "updatedAt": "2024-05-28T19:43:48.577Z", - * "updatedBy": "a841e300-40c1-7062-fa34-5b46dadbbaac" + * createdAt: "2024-05-21T23:17:27.350Z", + * createdBy: "a841e300-40c1-7062-fa34-5b46dadbbaac", + * isVerified: false, + * libraryItemId: "cb9ecf72-8563-450d-9db9-994f98297316", + * ratingCount: 24, + * status: "DISABLED", + * updatedAt: "2024-05-28T19:43:48.577Z", + * updatedBy: "a841e300-40c1-7062-fa34-5b46dadbbaac" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateLibraryItemCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/UpdateLibraryItemMetadataCommand.ts b/clients/client-qapps/src/commands/UpdateLibraryItemMetadataCommand.ts index 40f3bf3e52ce4..76f3310f153e4 100644 --- a/clients/client-qapps/src/commands/UpdateLibraryItemMetadataCommand.ts +++ b/clients/client-qapps/src/commands/UpdateLibraryItemMetadataCommand.ts @@ -78,20 +78,23 @@ export interface UpdateLibraryItemMetadataCommandOutput extends __MetadataBearer * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Update a library item to be verified * ```javascript * // * const input = { - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "isVerified": true, - * "libraryItemId": "cb9ecf72-8563-450d-9db9-994f98297316" + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * isVerified: true, + * libraryItemId: "cb9ecf72-8563-450d-9db9-994f98297316" * }; * const command = new UpdateLibraryItemMetadataCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateLibraryItemMetadataCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/UpdateQAppCommand.ts b/clients/client-qapps/src/commands/UpdateQAppCommand.ts index ba76187c308e7..677c7147119e4 100644 --- a/clients/client-qapps/src/commands/UpdateQAppCommand.ts +++ b/clients/client-qapps/src/commands/UpdateQAppCommand.ts @@ -222,76 +222,75 @@ export interface UpdateQAppCommandOutput extends UpdateQAppOutput, __MetadataBea * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Updating the title of an app * ```javascript * // * const input = { - * "appId": "7212ff04-de7b-4831-bd80-45d6975ba1b0", - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "title": "This is the new title" + * appId: "7212ff04-de7b-4831-bd80-45d6975ba1b0", + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * title: "This is the new title" * }; * const command = new UpdateQAppCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "appArn": "arn:aws:qapps:us-west-2:123456789012:app/7212ff04-de7b-4831-bd80-45d6975ba1b0", - * "appId": "7212ff04-de7b-4831-bd80-45d6975ba1b0", - * "appVersion": 2, - * "createdAt": "2024-05-14T00:11:54.232Z", - * "createdBy": "a841e300-40c1-7062-fa34-5b46dadbbaac", - * "requiredCapabilities": [ + * appArn: "arn:aws:qapps:us-west-2:123456789012:app/7212ff04-de7b-4831-bd80-45d6975ba1b0", + * appId: "7212ff04-de7b-4831-bd80-45d6975ba1b0", + * appVersion: 2, + * createdAt: "2024-05-14T00:11:54.232Z", + * createdBy: "a841e300-40c1-7062-fa34-5b46dadbbaac", + * requiredCapabilities: [ * "CreatorMode" * ], - * "status": "DRAFT", - * "title": "This is the new title", - * "updatedAt": "2024-05-17T23:15:08.571Z", - * "updatedBy": "a841e300-40c1-7062-fa34-5b46dadbbaac" + * status: "DRAFT", + * title: "This is the new title", + * updatedAt: "2024-05-17T23:15:08.571Z", + * updatedBy: "a841e300-40c1-7062-fa34-5b46dadbbaac" * } * *\/ - * // example id: example-1 * ``` * * @example Updating the app so it has a single q-query card * ```javascript * // * const input = { - * "appDefinition": { - * "cards": [ + * appDefinition: { + * cards: [ * { - * "qQuery": { - * "type": "q-query", - * "id": "18870b94-1e63-40e0-8c12-669c90ac5acc", - * "prompt": "Recommend me an itinerary for a trip", - * "title": "Trip Ideas" + * qQuery: { + * id: "18870b94-1e63-40e0-8c12-669c90ac5acc", + * prompt: "Recommend me an itinerary for a trip", + * title: "Trip Ideas", + * type: "q-query" * } * } * ] * }, - * "appId": "7212ff04-de7b-4831-bd80-45d6975ba1b0", - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" + * appId: "7212ff04-de7b-4831-bd80-45d6975ba1b0", + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f" * }; * const command = new UpdateQAppCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "appArn": "arn:aws:qapps:us-west-2:123456789012:app/7212ff04-de7b-4831-bd80-45d6975ba1b0", - * "appId": "7212ff04-de7b-4831-bd80-45d6975ba1b0", - * "appVersion": 99, - * "createdAt": "2024-05-14T00:11:54.232Z", - * "createdBy": "a841e300-40c1-7062-fa34-5b46dadbbaac", - * "requiredCapabilities": [ + * appArn: "arn:aws:qapps:us-west-2:123456789012:app/7212ff04-de7b-4831-bd80-45d6975ba1b0", + * appId: "7212ff04-de7b-4831-bd80-45d6975ba1b0", + * appVersion: 99, + * createdAt: "2024-05-14T00:11:54.232Z", + * createdBy: "a841e300-40c1-7062-fa34-5b46dadbbaac", + * requiredCapabilities: [ * "CreatorMode" * ], - * "status": "DRAFT", - * "title": "Previous Title Stays the Same", - * "updatedAt": "2024-05-17T23:15:08.571Z", - * "updatedBy": "a841e300-40c1-7062-fa34-5b46dadbbaac" + * status: "DRAFT", + * title: "Previous Title Stays the Same", + * updatedAt: "2024-05-17T23:15:08.571Z", + * updatedBy: "a841e300-40c1-7062-fa34-5b46dadbbaac" * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class UpdateQAppCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/UpdateQAppPermissionsCommand.ts b/clients/client-qapps/src/commands/UpdateQAppPermissionsCommand.ts index 4c6221121686f..f4753701663fd 100644 --- a/clients/client-qapps/src/commands/UpdateQAppPermissionsCommand.ts +++ b/clients/client-qapps/src/commands/UpdateQAppPermissionsCommand.ts @@ -98,80 +98,79 @@ export interface UpdateQAppPermissionsCommandOutput extends UpdateQAppPermission * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Grant permissions for the app * ```javascript * // * const input = { - * "appId": "fe0acf86-49e5-4def-a0c2-40ce0cafee14", - * "grantPermissions": [ + * appId: "fe0acf86-49e5-4def-a0c2-40ce0cafee14", + * grantPermissions: [ * { - * "action": "read", - * "principal": "user2@example.com" + * action: "read", + * principal: "user2@example.com" * } * ], - * "instanceId": "01793661-ad73-4c7d-8eaa-1c95a10151c2" + * instanceId: "01793661-ad73-4c7d-8eaa-1c95a10151c2" * }; * const command = new UpdateQAppPermissionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "appId": "fe0acf86-49e5-4def-a0c2-40ce0cafee14", - * "permissions": [ + * appId: "fe0acf86-49e5-4def-a0c2-40ce0cafee14", + * permissions: [ * { - * "action": "write", - * "principal": { - * "email": "user1@example.com", - * "userId": "f8f15330-b091-708b-d46e-adb0d914b699" + * action: "write", + * principal: { + * email: "user1@example.com", + * userId: "f8f15330-b091-708b-d46e-adb0d914b699" * } * }, * { - * "action": "read", - * "principal": { - * "email": "user2@example.com", - * "userId": "c81133d0-10d1-70eb-aaa3-d427ea6fc0f3" + * action: "read", + * principal: { + * email: "user2@example.com", + * userId: "c81133d0-10d1-70eb-aaa3-d427ea6fc0f3" * } * } * ], - * "resourceArn": "arn:aws:qapps:us-west-2:111111111111:application/01793661-ad73-4c7d-8eaa-1c95a10151c2/qapp/fe0acf86-49e5-4def-a0c2-40ce0cafee14" + * resourceArn: "arn:aws:qapps:us-west-2:111111111111:application/01793661-ad73-4c7d-8eaa-1c95a10151c2/qapp/fe0acf86-49e5-4def-a0c2-40ce0cafee14" * } * *\/ - * // example id: example-1 * ``` * * @example Revoke permissions for the app * ```javascript * // * const input = { - * "appId": "fe0acf86-49e5-4def-a0c2-40ce0cafee14", - * "instanceId": "01793661-ad73-4c7d-8eaa-1c95a10151c2", - * "revokePermissions": [ + * appId: "fe0acf86-49e5-4def-a0c2-40ce0cafee14", + * instanceId: "01793661-ad73-4c7d-8eaa-1c95a10151c2", + * revokePermissions: [ * { - * "action": "read", - * "principal": "user2@example.com" + * action: "read", + * principal: "user2@example.com" * } * ] * }; * const command = new UpdateQAppPermissionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "appId": "fe0acf86-49e5-4def-a0c2-40ce0cafee14", - * "permissions": [ + * appId: "fe0acf86-49e5-4def-a0c2-40ce0cafee14", + * permissions: [ * { - * "action": "write", - * "principal": { - * "email": "user1@example.com", - * "userId": "f8f15330-b091-708b-d46e-adb0d914b699" + * action: "write", + * principal: { + * email: "user1@example.com", + * userId: "f8f15330-b091-708b-d46e-adb0d914b699" * } * } * ], - * "resourceArn": "arn:aws:qapps:us-west-2:111111111111:application/01793661-ad73-4c7d-8eaa-1c95a10151c2/qapp/fe0acf86-49e5-4def-a0c2-40ce0cafee14" + * resourceArn: "arn:aws:qapps:us-west-2:111111111111:application/01793661-ad73-4c7d-8eaa-1c95a10151c2/qapp/fe0acf86-49e5-4def-a0c2-40ce0cafee14" * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class UpdateQAppPermissionsCommand extends $Command .classBuilder< diff --git a/clients/client-qapps/src/commands/UpdateQAppSessionCommand.ts b/clients/client-qapps/src/commands/UpdateQAppSessionCommand.ts index 21bcc7dd36bea..71a4b18d1a58a 100644 --- a/clients/client-qapps/src/commands/UpdateQAppSessionCommand.ts +++ b/clients/client-qapps/src/commands/UpdateQAppSessionCommand.ts @@ -94,6 +94,7 @@ export interface UpdateQAppSessionCommandOutput extends UpdateQAppSessionOutput, * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* + * * @public */ export class UpdateQAppSessionCommand extends $Command diff --git a/clients/client-qapps/src/commands/UpdateQAppSessionMetadataCommand.ts b/clients/client-qapps/src/commands/UpdateQAppSessionMetadataCommand.ts index 8a3c0c1be44be..ea25b4496536b 100644 --- a/clients/client-qapps/src/commands/UpdateQAppSessionMetadataCommand.ts +++ b/clients/client-qapps/src/commands/UpdateQAppSessionMetadataCommand.ts @@ -93,37 +93,37 @@ export interface UpdateQAppSessionMetadataCommandOutput extends UpdateQAppSessio * @throws {@link QAppsServiceException} *

Base exception class for all service exceptions from QApps service.

* - * @public + * * @example Updates an existing session metadata for an Amazon Q App * ```javascript * // * const input = { - * "instanceId": "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", - * "sessionId": "56ae47c3-10bc-4c2c-8b27-9b9fe23b3edb", - * "sessionName": "Trip itinerary collection session", - * "sharingConfiguration": { - * "acceptResponses": true, - * "enabled": true, - * "revealCards": false + * instanceId: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f", + * sessionId: "56ae47c3-10bc-4c2c-8b27-9b9fe23b3edb", + * sessionName: "Trip itinerary collection session", + * sharingConfiguration: { + * acceptResponses: true, + * enabled: true, + * revealCards: false * } * }; * const command = new UpdateQAppSessionMetadataCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "sessionArn": "arn:aws:qapps:us-west-2:0123456789012:application/cbea8329-41c0-4566-a112-19250921a220/qapp/387ccac9-4717-489f-841f-729b7d7de355/session/56ae47c3-10bc-4c2c-8b27-9b9fe23b3edb", - * "sessionId": "56ae47c3-10bc-4c2c-8b27-9b9fe23b3edb", - * "sessionName": "Trip itinerary collection session", - * "sharingConfiguration": { - * "acceptResponses": true, - * "enabled": true, - * "revealCards": false + * sessionArn: "arn:aws:qapps:us-west-2:0123456789012:application/cbea8329-41c0-4566-a112-19250921a220/qapp/387ccac9-4717-489f-841f-729b7d7de355/session/56ae47c3-10bc-4c2c-8b27-9b9fe23b3edb", + * sessionId: "56ae47c3-10bc-4c2c-8b27-9b9fe23b3edb", + * sessionName: "Trip itinerary collection session", + * sharingConfiguration: { + * acceptResponses: true, + * enabled: true, + * revealCards: false * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateQAppSessionMetadataCommand extends $Command .classBuilder< diff --git a/clients/client-qbusiness/src/commands/AssociatePermissionCommand.ts b/clients/client-qbusiness/src/commands/AssociatePermissionCommand.ts index 41c953d909ad4..ca05ca48577de 100644 --- a/clients/client-qbusiness/src/commands/AssociatePermissionCommand.ts +++ b/clients/client-qbusiness/src/commands/AssociatePermissionCommand.ts @@ -89,6 +89,7 @@ export interface AssociatePermissionCommandOutput extends AssociatePermissionRes * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class AssociatePermissionCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/BatchDeleteDocumentCommand.ts b/clients/client-qbusiness/src/commands/BatchDeleteDocumentCommand.ts index 454331859ca9b..241b519e16124 100644 --- a/clients/client-qbusiness/src/commands/BatchDeleteDocumentCommand.ts +++ b/clients/client-qbusiness/src/commands/BatchDeleteDocumentCommand.ts @@ -98,6 +98,7 @@ export interface BatchDeleteDocumentCommandOutput extends BatchDeleteDocumentRes * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class BatchDeleteDocumentCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/BatchPutDocumentCommand.ts b/clients/client-qbusiness/src/commands/BatchPutDocumentCommand.ts index 4907b9b49d5e6..f1e8b05aa93b8 100644 --- a/clients/client-qbusiness/src/commands/BatchPutDocumentCommand.ts +++ b/clients/client-qbusiness/src/commands/BatchPutDocumentCommand.ts @@ -221,6 +221,7 @@ export interface BatchPutDocumentCommandOutput extends BatchPutDocumentResponse, * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class BatchPutDocumentCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/CancelSubscriptionCommand.ts b/clients/client-qbusiness/src/commands/CancelSubscriptionCommand.ts index 3858d803b3ac3..6fcf5c6451f33 100644 --- a/clients/client-qbusiness/src/commands/CancelSubscriptionCommand.ts +++ b/clients/client-qbusiness/src/commands/CancelSubscriptionCommand.ts @@ -84,6 +84,7 @@ export interface CancelSubscriptionCommandOutput extends CancelSubscriptionRespo * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class CancelSubscriptionCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ChatCommand.ts b/clients/client-qbusiness/src/commands/ChatCommand.ts index adf8a5bab51bf..92b2c429d5283 100644 --- a/clients/client-qbusiness/src/commands/ChatCommand.ts +++ b/clients/client-qbusiness/src/commands/ChatCommand.ts @@ -315,6 +315,7 @@ export interface ChatCommandOutput extends ChatOutput, __MetadataBearer {} * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ChatCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ChatSyncCommand.ts b/clients/client-qbusiness/src/commands/ChatSyncCommand.ts index 4844e7e9d87f6..b2ca1e429a3d0 100644 --- a/clients/client-qbusiness/src/commands/ChatSyncCommand.ts +++ b/clients/client-qbusiness/src/commands/ChatSyncCommand.ts @@ -291,6 +291,7 @@ export interface ChatSyncCommandOutput extends ChatSyncOutput, __MetadataBearer * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ChatSyncCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/CreateApplicationCommand.ts b/clients/client-qbusiness/src/commands/CreateApplicationCommand.ts index d0b10a2361207..2f9265dc59a9d 100644 --- a/clients/client-qbusiness/src/commands/CreateApplicationCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateApplicationCommand.ts @@ -131,6 +131,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/CreateDataAccessorCommand.ts b/clients/client-qbusiness/src/commands/CreateDataAccessorCommand.ts index 7c5b69665dd49..a3f659ad71475 100644 --- a/clients/client-qbusiness/src/commands/CreateDataAccessorCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateDataAccessorCommand.ts @@ -187,6 +187,7 @@ export interface CreateDataAccessorCommandOutput extends CreateDataAccessorRespo * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class CreateDataAccessorCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/CreateDataSourceCommand.ts b/clients/client-qbusiness/src/commands/CreateDataSourceCommand.ts index b525302b8a3b5..9928ff24ed542 100644 --- a/clients/client-qbusiness/src/commands/CreateDataSourceCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateDataSourceCommand.ts @@ -183,6 +183,7 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse, * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class CreateDataSourceCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/CreateIndexCommand.ts b/clients/client-qbusiness/src/commands/CreateIndexCommand.ts index cb05cf73d0142..33cd730319a59 100644 --- a/clients/client-qbusiness/src/commands/CreateIndexCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateIndexCommand.ts @@ -104,6 +104,7 @@ export interface CreateIndexCommandOutput extends CreateIndexResponse, __Metadat * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class CreateIndexCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/CreatePluginCommand.ts b/clients/client-qbusiness/src/commands/CreatePluginCommand.ts index 85861f94c0c87..d377eef5ec4ab 100644 --- a/clients/client-qbusiness/src/commands/CreatePluginCommand.ts +++ b/clients/client-qbusiness/src/commands/CreatePluginCommand.ts @@ -122,6 +122,7 @@ export interface CreatePluginCommandOutput extends CreatePluginResponse, __Metad * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class CreatePluginCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/CreateRetrieverCommand.ts b/clients/client-qbusiness/src/commands/CreateRetrieverCommand.ts index 2d9b37b8b4cb6..08badcdd27bb3 100644 --- a/clients/client-qbusiness/src/commands/CreateRetrieverCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateRetrieverCommand.ts @@ -122,6 +122,7 @@ export interface CreateRetrieverCommandOutput extends CreateRetrieverResponse, _ * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class CreateRetrieverCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/CreateSubscriptionCommand.ts b/clients/client-qbusiness/src/commands/CreateSubscriptionCommand.ts index 22c0752c940cd..3f9f3b52c066f 100644 --- a/clients/client-qbusiness/src/commands/CreateSubscriptionCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateSubscriptionCommand.ts @@ -97,6 +97,7 @@ export interface CreateSubscriptionCommandOutput extends CreateSubscriptionRespo * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class CreateSubscriptionCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/CreateUserCommand.ts b/clients/client-qbusiness/src/commands/CreateUserCommand.ts index 4c19d77a80127..a1c6d091a2937 100644 --- a/clients/client-qbusiness/src/commands/CreateUserCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateUserCommand.ts @@ -90,6 +90,7 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class CreateUserCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/CreateWebExperienceCommand.ts b/clients/client-qbusiness/src/commands/CreateWebExperienceCommand.ts index 941e008789381..3121d242b2e7b 100644 --- a/clients/client-qbusiness/src/commands/CreateWebExperienceCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateWebExperienceCommand.ts @@ -118,6 +118,7 @@ export interface CreateWebExperienceCommandOutput extends CreateWebExperienceRes * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class CreateWebExperienceCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/DeleteApplicationCommand.ts b/clients/client-qbusiness/src/commands/DeleteApplicationCommand.ts index 91431de7912c4..6e9ee642798c3 100644 --- a/clients/client-qbusiness/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteApplicationCommand.ts @@ -77,6 +77,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/DeleteAttachmentCommand.ts b/clients/client-qbusiness/src/commands/DeleteAttachmentCommand.ts index aa277b879079f..e895a7cfcb703 100644 --- a/clients/client-qbusiness/src/commands/DeleteAttachmentCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteAttachmentCommand.ts @@ -80,6 +80,7 @@ export interface DeleteAttachmentCommandOutput extends DeleteAttachmentResponse, * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class DeleteAttachmentCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/DeleteChatControlsConfigurationCommand.ts b/clients/client-qbusiness/src/commands/DeleteChatControlsConfigurationCommand.ts index 38194ad97b831..d47bad57ed317 100644 --- a/clients/client-qbusiness/src/commands/DeleteChatControlsConfigurationCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteChatControlsConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface DeleteChatControlsConfigurationCommandOutput * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class DeleteChatControlsConfigurationCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/DeleteConversationCommand.ts b/clients/client-qbusiness/src/commands/DeleteConversationCommand.ts index 6e1dee41b4aaf..266270f3e7d3f 100644 --- a/clients/client-qbusiness/src/commands/DeleteConversationCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteConversationCommand.ts @@ -79,6 +79,7 @@ export interface DeleteConversationCommandOutput extends DeleteConversationRespo * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class DeleteConversationCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/DeleteDataAccessorCommand.ts b/clients/client-qbusiness/src/commands/DeleteDataAccessorCommand.ts index 321211cab228a..58738b3808968 100644 --- a/clients/client-qbusiness/src/commands/DeleteDataAccessorCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteDataAccessorCommand.ts @@ -79,6 +79,7 @@ export interface DeleteDataAccessorCommandOutput extends DeleteDataAccessorRespo * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class DeleteDataAccessorCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/DeleteDataSourceCommand.ts b/clients/client-qbusiness/src/commands/DeleteDataSourceCommand.ts index 84c8581e40ba6..7aa53b59c8736 100644 --- a/clients/client-qbusiness/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteDataSourceCommand.ts @@ -81,6 +81,7 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceResponse, * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class DeleteDataSourceCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/DeleteGroupCommand.ts b/clients/client-qbusiness/src/commands/DeleteGroupCommand.ts index b49a1cd6ef84b..3af072816ef58 100644 --- a/clients/client-qbusiness/src/commands/DeleteGroupCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteGroupCommand.ts @@ -88,6 +88,7 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __Metadat * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class DeleteGroupCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/DeleteIndexCommand.ts b/clients/client-qbusiness/src/commands/DeleteIndexCommand.ts index 9422c8dde955a..d3186d830ff20 100644 --- a/clients/client-qbusiness/src/commands/DeleteIndexCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteIndexCommand.ts @@ -78,6 +78,7 @@ export interface DeleteIndexCommandOutput extends DeleteIndexResponse, __Metadat * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class DeleteIndexCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/DeletePluginCommand.ts b/clients/client-qbusiness/src/commands/DeletePluginCommand.ts index 7dc57e19c31ab..9ac823f4de322 100644 --- a/clients/client-qbusiness/src/commands/DeletePluginCommand.ts +++ b/clients/client-qbusiness/src/commands/DeletePluginCommand.ts @@ -78,6 +78,7 @@ export interface DeletePluginCommandOutput extends DeletePluginResponse, __Metad * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class DeletePluginCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/DeleteRetrieverCommand.ts b/clients/client-qbusiness/src/commands/DeleteRetrieverCommand.ts index 050f13ce78eef..ef05e2bfe8fb4 100644 --- a/clients/client-qbusiness/src/commands/DeleteRetrieverCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteRetrieverCommand.ts @@ -78,6 +78,7 @@ export interface DeleteRetrieverCommandOutput extends DeleteRetrieverResponse, _ * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class DeleteRetrieverCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/DeleteUserCommand.ts b/clients/client-qbusiness/src/commands/DeleteUserCommand.ts index 4e277e40a9baa..e549f56fc58f3 100644 --- a/clients/client-qbusiness/src/commands/DeleteUserCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteUserCommand.ts @@ -78,6 +78,7 @@ export interface DeleteUserCommandOutput extends DeleteUserResponse, __MetadataB * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class DeleteUserCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/DeleteWebExperienceCommand.ts b/clients/client-qbusiness/src/commands/DeleteWebExperienceCommand.ts index fc76a3759bfdb..230d628b5b93b 100644 --- a/clients/client-qbusiness/src/commands/DeleteWebExperienceCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteWebExperienceCommand.ts @@ -78,6 +78,7 @@ export interface DeleteWebExperienceCommandOutput extends DeleteWebExperienceRes * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class DeleteWebExperienceCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/DisassociatePermissionCommand.ts b/clients/client-qbusiness/src/commands/DisassociatePermissionCommand.ts index 696c4b829ab59..f329603b8937d 100644 --- a/clients/client-qbusiness/src/commands/DisassociatePermissionCommand.ts +++ b/clients/client-qbusiness/src/commands/DisassociatePermissionCommand.ts @@ -79,6 +79,7 @@ export interface DisassociatePermissionCommandOutput extends DisassociatePermiss * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class DisassociatePermissionCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/GetApplicationCommand.ts b/clients/client-qbusiness/src/commands/GetApplicationCommand.ts index 2151fea9e56f0..5581f3c2efa81 100644 --- a/clients/client-qbusiness/src/commands/GetApplicationCommand.ts +++ b/clients/client-qbusiness/src/commands/GetApplicationCommand.ts @@ -115,6 +115,7 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class GetApplicationCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/GetChatControlsConfigurationCommand.ts b/clients/client-qbusiness/src/commands/GetChatControlsConfigurationCommand.ts index ddaebf3ca5153..ee03ebed12e55 100644 --- a/clients/client-qbusiness/src/commands/GetChatControlsConfigurationCommand.ts +++ b/clients/client-qbusiness/src/commands/GetChatControlsConfigurationCommand.ts @@ -139,6 +139,7 @@ export interface GetChatControlsConfigurationCommandOutput * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class GetChatControlsConfigurationCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/GetDataAccessorCommand.ts b/clients/client-qbusiness/src/commands/GetDataAccessorCommand.ts index 785a79721ec7f..2b5bbc2ba5ddb 100644 --- a/clients/client-qbusiness/src/commands/GetDataAccessorCommand.ts +++ b/clients/client-qbusiness/src/commands/GetDataAccessorCommand.ts @@ -175,6 +175,7 @@ export interface GetDataAccessorCommandOutput extends GetDataAccessorResponse, _ * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class GetDataAccessorCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/GetDataSourceCommand.ts b/clients/client-qbusiness/src/commands/GetDataSourceCommand.ts index 7637fe9e66296..63dc80af132c2 100644 --- a/clients/client-qbusiness/src/commands/GetDataSourceCommand.ts +++ b/clients/client-qbusiness/src/commands/GetDataSourceCommand.ts @@ -177,6 +177,7 @@ export interface GetDataSourceCommandOutput extends GetDataSourceResponse, __Met * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class GetDataSourceCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/GetGroupCommand.ts b/clients/client-qbusiness/src/commands/GetGroupCommand.ts index 418cd98d06b2c..4720ff0835b70 100644 --- a/clients/client-qbusiness/src/commands/GetGroupCommand.ts +++ b/clients/client-qbusiness/src/commands/GetGroupCommand.ts @@ -99,6 +99,7 @@ export interface GetGroupCommandOutput extends GetGroupResponse, __MetadataBeare * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class GetGroupCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/GetIndexCommand.ts b/clients/client-qbusiness/src/commands/GetIndexCommand.ts index ea5910233776d..cda1304066746 100644 --- a/clients/client-qbusiness/src/commands/GetIndexCommand.ts +++ b/clients/client-qbusiness/src/commands/GetIndexCommand.ts @@ -104,6 +104,7 @@ export interface GetIndexCommandOutput extends GetIndexResponse, __MetadataBeare * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class GetIndexCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/GetMediaCommand.ts b/clients/client-qbusiness/src/commands/GetMediaCommand.ts index 7a807011ad643..59f21369a8f90 100644 --- a/clients/client-qbusiness/src/commands/GetMediaCommand.ts +++ b/clients/client-qbusiness/src/commands/GetMediaCommand.ts @@ -89,6 +89,7 @@ export interface GetMediaCommandOutput extends GetMediaResponse, __MetadataBeare * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class GetMediaCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/GetPluginCommand.ts b/clients/client-qbusiness/src/commands/GetPluginCommand.ts index 2e6caeebd379c..6d6bffabb7c41 100644 --- a/clients/client-qbusiness/src/commands/GetPluginCommand.ts +++ b/clients/client-qbusiness/src/commands/GetPluginCommand.ts @@ -113,6 +113,7 @@ export interface GetPluginCommandOutput extends GetPluginResponse, __MetadataBea * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class GetPluginCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/GetPolicyCommand.ts b/clients/client-qbusiness/src/commands/GetPolicyCommand.ts index 4e666fe654a12..b994c6f55290b 100644 --- a/clients/client-qbusiness/src/commands/GetPolicyCommand.ts +++ b/clients/client-qbusiness/src/commands/GetPolicyCommand.ts @@ -76,6 +76,7 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class GetPolicyCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/GetRetrieverCommand.ts b/clients/client-qbusiness/src/commands/GetRetrieverCommand.ts index 14a92d3eb21ca..fb6186e288f9b 100644 --- a/clients/client-qbusiness/src/commands/GetRetrieverCommand.ts +++ b/clients/client-qbusiness/src/commands/GetRetrieverCommand.ts @@ -114,6 +114,7 @@ export interface GetRetrieverCommandOutput extends GetRetrieverResponse, __Metad * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class GetRetrieverCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/GetUserCommand.ts b/clients/client-qbusiness/src/commands/GetUserCommand.ts index 33fd053a3c4f3..6ddc9d061ee9b 100644 --- a/clients/client-qbusiness/src/commands/GetUserCommand.ts +++ b/clients/client-qbusiness/src/commands/GetUserCommand.ts @@ -87,6 +87,7 @@ export interface GetUserCommandOutput extends GetUserResponse, __MetadataBearer * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class GetUserCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/GetWebExperienceCommand.ts b/clients/client-qbusiness/src/commands/GetWebExperienceCommand.ts index 4a6bb63c2b952..5c0644d13fee1 100644 --- a/clients/client-qbusiness/src/commands/GetWebExperienceCommand.ts +++ b/clients/client-qbusiness/src/commands/GetWebExperienceCommand.ts @@ -122,6 +122,7 @@ export interface GetWebExperienceCommandOutput extends GetWebExperienceResponse, * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class GetWebExperienceCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListApplicationsCommand.ts b/clients/client-qbusiness/src/commands/ListApplicationsCommand.ts index 771602e98ff57..9f57d59d45480 100644 --- a/clients/client-qbusiness/src/commands/ListApplicationsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListApplicationsCommand.ts @@ -91,6 +91,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListAttachmentsCommand.ts b/clients/client-qbusiness/src/commands/ListAttachmentsCommand.ts index cbb4a60985226..0399527a831d8 100644 --- a/clients/client-qbusiness/src/commands/ListAttachmentsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListAttachmentsCommand.ts @@ -105,6 +105,7 @@ export interface ListAttachmentsCommandOutput extends ListAttachmentsResponse, _ * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListAttachmentsCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListConversationsCommand.ts b/clients/client-qbusiness/src/commands/ListConversationsCommand.ts index 633e30cee790f..5b089ae136aeb 100644 --- a/clients/client-qbusiness/src/commands/ListConversationsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListConversationsCommand.ts @@ -89,6 +89,7 @@ export interface ListConversationsCommandOutput extends ListConversationsRespons * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListConversationsCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListDataAccessorsCommand.ts b/clients/client-qbusiness/src/commands/ListDataAccessorsCommand.ts index bb9aff767d142..d38becb646a70 100644 --- a/clients/client-qbusiness/src/commands/ListDataAccessorsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListDataAccessorsCommand.ts @@ -94,6 +94,7 @@ export interface ListDataAccessorsCommandOutput extends ListDataAccessorsRespons * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListDataAccessorsCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListDataSourceSyncJobsCommand.ts b/clients/client-qbusiness/src/commands/ListDataSourceSyncJobsCommand.ts index 05d73b0b567fc..13f5214b8af03 100644 --- a/clients/client-qbusiness/src/commands/ListDataSourceSyncJobsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListDataSourceSyncJobsCommand.ts @@ -106,6 +106,7 @@ export interface ListDataSourceSyncJobsCommandOutput extends ListDataSourceSyncJ * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListDataSourceSyncJobsCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListDataSourcesCommand.ts b/clients/client-qbusiness/src/commands/ListDataSourcesCommand.ts index 6964eecb973c6..0386c6845bd8a 100644 --- a/clients/client-qbusiness/src/commands/ListDataSourcesCommand.ts +++ b/clients/client-qbusiness/src/commands/ListDataSourcesCommand.ts @@ -88,6 +88,7 @@ export interface ListDataSourcesCommandOutput extends ListDataSourcesResponse, _ * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListDataSourcesCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListDocumentsCommand.ts b/clients/client-qbusiness/src/commands/ListDocumentsCommand.ts index e7846fecd2258..88f08a4c4bac7 100644 --- a/clients/client-qbusiness/src/commands/ListDocumentsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListDocumentsCommand.ts @@ -93,6 +93,7 @@ export interface ListDocumentsCommandOutput extends ListDocumentsResponse, __Met * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListDocumentsCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListGroupsCommand.ts b/clients/client-qbusiness/src/commands/ListGroupsCommand.ts index 3bca64586e68d..d2b04b3eaa40e 100644 --- a/clients/client-qbusiness/src/commands/ListGroupsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListGroupsCommand.ts @@ -89,6 +89,7 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListGroupsCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListIndicesCommand.ts b/clients/client-qbusiness/src/commands/ListIndicesCommand.ts index 0a542822a3971..b7b7dad541414 100644 --- a/clients/client-qbusiness/src/commands/ListIndicesCommand.ts +++ b/clients/client-qbusiness/src/commands/ListIndicesCommand.ts @@ -86,6 +86,7 @@ export interface ListIndicesCommandOutput extends ListIndicesResponse, __Metadat * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListIndicesCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListMessagesCommand.ts b/clients/client-qbusiness/src/commands/ListMessagesCommand.ts index 2b457141ed58d..c94341023a571 100644 --- a/clients/client-qbusiness/src/commands/ListMessagesCommand.ts +++ b/clients/client-qbusiness/src/commands/ListMessagesCommand.ts @@ -175,6 +175,7 @@ export interface ListMessagesCommandOutput extends ListMessagesResponse, __Metad * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListMessagesCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListPluginActionsCommand.ts b/clients/client-qbusiness/src/commands/ListPluginActionsCommand.ts index 31dca5d3281e2..b97e70f65d924 100644 --- a/clients/client-qbusiness/src/commands/ListPluginActionsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListPluginActionsCommand.ts @@ -86,6 +86,7 @@ export interface ListPluginActionsCommandOutput extends ListPluginActionsRespons * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListPluginActionsCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListPluginTypeActionsCommand.ts b/clients/client-qbusiness/src/commands/ListPluginTypeActionsCommand.ts index 87351a4184c80..0cd3eec477277 100644 --- a/clients/client-qbusiness/src/commands/ListPluginTypeActionsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListPluginTypeActionsCommand.ts @@ -82,6 +82,7 @@ export interface ListPluginTypeActionsCommandOutput extends ListPluginTypeAction * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListPluginTypeActionsCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListPluginTypeMetadataCommand.ts b/clients/client-qbusiness/src/commands/ListPluginTypeMetadataCommand.ts index 1c29705c14168..85a9f04d655fa 100644 --- a/clients/client-qbusiness/src/commands/ListPluginTypeMetadataCommand.ts +++ b/clients/client-qbusiness/src/commands/ListPluginTypeMetadataCommand.ts @@ -79,6 +79,7 @@ export interface ListPluginTypeMetadataCommandOutput extends ListPluginTypeMetad * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListPluginTypeMetadataCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListPluginsCommand.ts b/clients/client-qbusiness/src/commands/ListPluginsCommand.ts index 97291894727f4..fca8ad3aa4167 100644 --- a/clients/client-qbusiness/src/commands/ListPluginsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListPluginsCommand.ts @@ -89,6 +89,7 @@ export interface ListPluginsCommandOutput extends ListPluginsResponse, __Metadat * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListPluginsCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListRetrieversCommand.ts b/clients/client-qbusiness/src/commands/ListRetrieversCommand.ts index 4fe465cd64de4..773bc8de2fbee 100644 --- a/clients/client-qbusiness/src/commands/ListRetrieversCommand.ts +++ b/clients/client-qbusiness/src/commands/ListRetrieversCommand.ts @@ -86,6 +86,7 @@ export interface ListRetrieversCommandOutput extends ListRetrieversResponse, __M * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListRetrieversCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListSubscriptionsCommand.ts b/clients/client-qbusiness/src/commands/ListSubscriptionsCommand.ts index 3ab36603551c6..4d886cd0e0768 100644 --- a/clients/client-qbusiness/src/commands/ListSubscriptionsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListSubscriptionsCommand.ts @@ -97,6 +97,7 @@ export interface ListSubscriptionsCommandOutput extends ListSubscriptionsRespons * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListSubscriptionsCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListTagsForResourceCommand.ts b/clients/client-qbusiness/src/commands/ListTagsForResourceCommand.ts index 132c15161be06..317e0173585a2 100644 --- a/clients/client-qbusiness/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-qbusiness/src/commands/ListTagsForResourceCommand.ts @@ -81,6 +81,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/ListWebExperiencesCommand.ts b/clients/client-qbusiness/src/commands/ListWebExperiencesCommand.ts index fb03781bc1534..d72517c115d15 100644 --- a/clients/client-qbusiness/src/commands/ListWebExperiencesCommand.ts +++ b/clients/client-qbusiness/src/commands/ListWebExperiencesCommand.ts @@ -86,6 +86,7 @@ export interface ListWebExperiencesCommandOutput extends ListWebExperiencesRespo * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class ListWebExperiencesCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/PutFeedbackCommand.ts b/clients/client-qbusiness/src/commands/PutFeedbackCommand.ts index 49835c94869b9..3d9185f3f5089 100644 --- a/clients/client-qbusiness/src/commands/PutFeedbackCommand.ts +++ b/clients/client-qbusiness/src/commands/PutFeedbackCommand.ts @@ -84,6 +84,7 @@ export interface PutFeedbackCommandOutput extends __MetadataBearer {} * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class PutFeedbackCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/PutGroupCommand.ts b/clients/client-qbusiness/src/commands/PutGroupCommand.ts index c1309bb064014..3aad3e8eb987c 100644 --- a/clients/client-qbusiness/src/commands/PutGroupCommand.ts +++ b/clients/client-qbusiness/src/commands/PutGroupCommand.ts @@ -113,6 +113,7 @@ export interface PutGroupCommandOutput extends PutGroupResponse, __MetadataBeare * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class PutGroupCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/SearchRelevantContentCommand.ts b/clients/client-qbusiness/src/commands/SearchRelevantContentCommand.ts index 03b5219e1e745..bed9625b37465 100644 --- a/clients/client-qbusiness/src/commands/SearchRelevantContentCommand.ts +++ b/clients/client-qbusiness/src/commands/SearchRelevantContentCommand.ts @@ -197,6 +197,7 @@ export interface SearchRelevantContentCommandOutput extends SearchRelevantConten * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class SearchRelevantContentCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/StartDataSourceSyncJobCommand.ts b/clients/client-qbusiness/src/commands/StartDataSourceSyncJobCommand.ts index 7caa75e9272d7..5ec6f839ac763 100644 --- a/clients/client-qbusiness/src/commands/StartDataSourceSyncJobCommand.ts +++ b/clients/client-qbusiness/src/commands/StartDataSourceSyncJobCommand.ts @@ -85,6 +85,7 @@ export interface StartDataSourceSyncJobCommandOutput extends StartDataSourceSync * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class StartDataSourceSyncJobCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/StopDataSourceSyncJobCommand.ts b/clients/client-qbusiness/src/commands/StopDataSourceSyncJobCommand.ts index e252db8e946e7..8e0e44f07b0d3 100644 --- a/clients/client-qbusiness/src/commands/StopDataSourceSyncJobCommand.ts +++ b/clients/client-qbusiness/src/commands/StopDataSourceSyncJobCommand.ts @@ -80,6 +80,7 @@ export interface StopDataSourceSyncJobCommandOutput extends StopDataSourceSyncJo * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class StopDataSourceSyncJobCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/TagResourceCommand.ts b/clients/client-qbusiness/src/commands/TagResourceCommand.ts index fde84fe26bf75..16d968bd3b38a 100644 --- a/clients/client-qbusiness/src/commands/TagResourceCommand.ts +++ b/clients/client-qbusiness/src/commands/TagResourceCommand.ts @@ -85,6 +85,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/UntagResourceCommand.ts b/clients/client-qbusiness/src/commands/UntagResourceCommand.ts index cc058cd16e8b2..e2a8de311cfa5 100644 --- a/clients/client-qbusiness/src/commands/UntagResourceCommand.ts +++ b/clients/client-qbusiness/src/commands/UntagResourceCommand.ts @@ -76,6 +76,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/UpdateApplicationCommand.ts b/clients/client-qbusiness/src/commands/UpdateApplicationCommand.ts index c318a441f1052..e062e43e37c2a 100644 --- a/clients/client-qbusiness/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateApplicationCommand.ts @@ -106,6 +106,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/UpdateChatControlsConfigurationCommand.ts b/clients/client-qbusiness/src/commands/UpdateChatControlsConfigurationCommand.ts index 8f00eade30cec..27b1c706afb94 100644 --- a/clients/client-qbusiness/src/commands/UpdateChatControlsConfigurationCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateChatControlsConfigurationCommand.ts @@ -189,6 +189,7 @@ export interface UpdateChatControlsConfigurationCommandOutput * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class UpdateChatControlsConfigurationCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/UpdateDataAccessorCommand.ts b/clients/client-qbusiness/src/commands/UpdateDataAccessorCommand.ts index c1d9a7cb4d54b..fbdffa0b79112 100644 --- a/clients/client-qbusiness/src/commands/UpdateDataAccessorCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateDataAccessorCommand.ts @@ -170,6 +170,7 @@ export interface UpdateDataAccessorCommandOutput extends UpdateDataAccessorRespo * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class UpdateDataAccessorCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/UpdateDataSourceCommand.ts b/clients/client-qbusiness/src/commands/UpdateDataSourceCommand.ts index bf408c25d0cad..3a9edc4c98c73 100644 --- a/clients/client-qbusiness/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateDataSourceCommand.ts @@ -168,6 +168,7 @@ export interface UpdateDataSourceCommandOutput extends UpdateDataSourceResponse, * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class UpdateDataSourceCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/UpdateIndexCommand.ts b/clients/client-qbusiness/src/commands/UpdateIndexCommand.ts index c039ef6e09fbe..1f384589dc14c 100644 --- a/clients/client-qbusiness/src/commands/UpdateIndexCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateIndexCommand.ts @@ -93,6 +93,7 @@ export interface UpdateIndexCommandOutput extends UpdateIndexResponse, __Metadat * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class UpdateIndexCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/UpdatePluginCommand.ts b/clients/client-qbusiness/src/commands/UpdatePluginCommand.ts index 2aa459fec6f4c..bac975901c977 100644 --- a/clients/client-qbusiness/src/commands/UpdatePluginCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdatePluginCommand.ts @@ -112,6 +112,7 @@ export interface UpdatePluginCommandOutput extends UpdatePluginResponse, __Metad * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class UpdatePluginCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/UpdateRetrieverCommand.ts b/clients/client-qbusiness/src/commands/UpdateRetrieverCommand.ts index 481417a151781..9ad460c4b1aea 100644 --- a/clients/client-qbusiness/src/commands/UpdateRetrieverCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateRetrieverCommand.ts @@ -112,6 +112,7 @@ export interface UpdateRetrieverCommandOutput extends UpdateRetrieverResponse, _ * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class UpdateRetrieverCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/UpdateSubscriptionCommand.ts b/clients/client-qbusiness/src/commands/UpdateSubscriptionCommand.ts index 3009d343d9055..6a7b7a83a9f04 100644 --- a/clients/client-qbusiness/src/commands/UpdateSubscriptionCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateSubscriptionCommand.ts @@ -90,6 +90,7 @@ export interface UpdateSubscriptionCommandOutput extends UpdateSubscriptionRespo * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class UpdateSubscriptionCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/UpdateUserCommand.ts b/clients/client-qbusiness/src/commands/UpdateUserCommand.ts index aab6bb1838139..2b04d48429ca2 100644 --- a/clients/client-qbusiness/src/commands/UpdateUserCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateUserCommand.ts @@ -113,6 +113,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class UpdateUserCommand extends $Command diff --git a/clients/client-qbusiness/src/commands/UpdateWebExperienceCommand.ts b/clients/client-qbusiness/src/commands/UpdateWebExperienceCommand.ts index 43e9bd2f5741c..9a59f9f7f22db 100644 --- a/clients/client-qbusiness/src/commands/UpdateWebExperienceCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateWebExperienceCommand.ts @@ -114,6 +114,7 @@ export interface UpdateWebExperienceCommandOutput extends UpdateWebExperienceRes * @throws {@link QBusinessServiceException} *

Base exception class for all service exceptions from QBusiness service.

* + * * @public */ export class UpdateWebExperienceCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ActivateMessageTemplateCommand.ts b/clients/client-qconnect/src/commands/ActivateMessageTemplateCommand.ts index c9d7abab76832..22612d0fbfc8b 100644 --- a/clients/client-qconnect/src/commands/ActivateMessageTemplateCommand.ts +++ b/clients/client-qconnect/src/commands/ActivateMessageTemplateCommand.ts @@ -80,6 +80,7 @@ export interface ActivateMessageTemplateCommandOutput extends ActivateMessageTem * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ActivateMessageTemplateCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateAIAgentCommand.ts b/clients/client-qconnect/src/commands/CreateAIAgentCommand.ts index 3e8f103599f0d..d36a728a1f595 100644 --- a/clients/client-qconnect/src/commands/CreateAIAgentCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAIAgentCommand.ts @@ -302,6 +302,7 @@ export interface CreateAIAgentCommandOutput extends CreateAIAgentResponse, __Met * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateAIAgentCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateAIAgentVersionCommand.ts b/clients/client-qconnect/src/commands/CreateAIAgentVersionCommand.ts index 9a08bcf16db13..e6a8bb871db54 100644 --- a/clients/client-qconnect/src/commands/CreateAIAgentVersionCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAIAgentVersionCommand.ts @@ -197,6 +197,7 @@ export interface CreateAIAgentVersionCommandOutput extends CreateAIAgentVersionR * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateAIAgentVersionCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateAIGuardrailCommand.ts b/clients/client-qconnect/src/commands/CreateAIGuardrailCommand.ts index 53747dd7e9afa..263c11e55e9a1 100644 --- a/clients/client-qconnect/src/commands/CreateAIGuardrailCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAIGuardrailCommand.ts @@ -220,6 +220,7 @@ export interface CreateAIGuardrailCommandOutput extends CreateAIGuardrailRespons * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateAIGuardrailCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateAIGuardrailVersionCommand.ts b/clients/client-qconnect/src/commands/CreateAIGuardrailVersionCommand.ts index d076556e4abd0..e56182d1fcb09 100644 --- a/clients/client-qconnect/src/commands/CreateAIGuardrailVersionCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAIGuardrailVersionCommand.ts @@ -157,6 +157,7 @@ export interface CreateAIGuardrailVersionCommandOutput extends CreateAIGuardrail * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateAIGuardrailVersionCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateAIPromptCommand.ts b/clients/client-qconnect/src/commands/CreateAIPromptCommand.ts index 85a7ed8d89b32..2e6446855a176 100644 --- a/clients/client-qconnect/src/commands/CreateAIPromptCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAIPromptCommand.ts @@ -121,6 +121,7 @@ export interface CreateAIPromptCommandOutput extends CreateAIPromptResponse, __M * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateAIPromptCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateAIPromptVersionCommand.ts b/clients/client-qconnect/src/commands/CreateAIPromptVersionCommand.ts index 71b883e753bb0..69577af04de08 100644 --- a/clients/client-qconnect/src/commands/CreateAIPromptVersionCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAIPromptVersionCommand.ts @@ -108,6 +108,7 @@ export interface CreateAIPromptVersionCommandOutput extends CreateAIPromptVersio * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateAIPromptVersionCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateAssistantAssociationCommand.ts b/clients/client-qconnect/src/commands/CreateAssistantAssociationCommand.ts index fa3ab451ade01..db26d55c5f761 100644 --- a/clients/client-qconnect/src/commands/CreateAssistantAssociationCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAssistantAssociationCommand.ts @@ -99,6 +99,7 @@ export interface CreateAssistantAssociationCommandOutput extends CreateAssistant * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateAssistantAssociationCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateAssistantCommand.ts b/clients/client-qconnect/src/commands/CreateAssistantCommand.ts index 8b2dfa0c8b112..a749659b27672 100644 --- a/clients/client-qconnect/src/commands/CreateAssistantCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAssistantCommand.ts @@ -104,6 +104,7 @@ export interface CreateAssistantCommandOutput extends CreateAssistantResponse, _ * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateAssistantCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateContentAssociationCommand.ts b/clients/client-qconnect/src/commands/CreateContentAssociationCommand.ts index 194a4a82e03e1..f5aec0423e9b9 100644 --- a/clients/client-qconnect/src/commands/CreateContentAssociationCommand.ts +++ b/clients/client-qconnect/src/commands/CreateContentAssociationCommand.ts @@ -122,6 +122,7 @@ export interface CreateContentAssociationCommandOutput extends CreateContentAsso * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateContentAssociationCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateContentCommand.ts b/clients/client-qconnect/src/commands/CreateContentCommand.ts index 548fd212aca38..cf2efaf1224bf 100644 --- a/clients/client-qconnect/src/commands/CreateContentCommand.ts +++ b/clients/client-qconnect/src/commands/CreateContentCommand.ts @@ -108,6 +108,7 @@ export interface CreateContentCommandOutput extends CreateContentResponse, __Met * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateContentCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateKnowledgeBaseCommand.ts b/clients/client-qconnect/src/commands/CreateKnowledgeBaseCommand.ts index 8768afd4af59e..64f4603c289f8 100644 --- a/clients/client-qconnect/src/commands/CreateKnowledgeBaseCommand.ts +++ b/clients/client-qconnect/src/commands/CreateKnowledgeBaseCommand.ts @@ -252,6 +252,7 @@ export interface CreateKnowledgeBaseCommandOutput extends CreateKnowledgeBaseRes * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateKnowledgeBaseCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateMessageTemplateAttachmentCommand.ts b/clients/client-qconnect/src/commands/CreateMessageTemplateAttachmentCommand.ts index 57dc64ee5208e..25115f5c080e6 100644 --- a/clients/client-qconnect/src/commands/CreateMessageTemplateAttachmentCommand.ts +++ b/clients/client-qconnect/src/commands/CreateMessageTemplateAttachmentCommand.ts @@ -103,6 +103,7 @@ export interface CreateMessageTemplateAttachmentCommandOutput * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateMessageTemplateAttachmentCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateMessageTemplateCommand.ts b/clients/client-qconnect/src/commands/CreateMessageTemplateCommand.ts index 080c76e28daa9..d43a2d7447cab 100644 --- a/clients/client-qconnect/src/commands/CreateMessageTemplateCommand.ts +++ b/clients/client-qconnect/src/commands/CreateMessageTemplateCommand.ts @@ -336,6 +336,7 @@ export interface CreateMessageTemplateCommandOutput extends CreateMessageTemplat * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateMessageTemplateCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateMessageTemplateVersionCommand.ts b/clients/client-qconnect/src/commands/CreateMessageTemplateVersionCommand.ts index 16ea4c45d4aba..ce4ab905f51cc 100644 --- a/clients/client-qconnect/src/commands/CreateMessageTemplateVersionCommand.ts +++ b/clients/client-qconnect/src/commands/CreateMessageTemplateVersionCommand.ts @@ -240,6 +240,7 @@ export interface CreateMessageTemplateVersionCommandOutput * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateMessageTemplateVersionCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateQuickResponseCommand.ts b/clients/client-qconnect/src/commands/CreateQuickResponseCommand.ts index 763cdca110bd6..4dd8168f0d81d 100644 --- a/clients/client-qconnect/src/commands/CreateQuickResponseCommand.ts +++ b/clients/client-qconnect/src/commands/CreateQuickResponseCommand.ts @@ -136,6 +136,7 @@ export interface CreateQuickResponseCommandOutput extends CreateQuickResponseRes * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateQuickResponseCommand extends $Command diff --git a/clients/client-qconnect/src/commands/CreateSessionCommand.ts b/clients/client-qconnect/src/commands/CreateSessionCommand.ts index b1a2d671c6b2e..b751fb38d688a 100644 --- a/clients/client-qconnect/src/commands/CreateSessionCommand.ts +++ b/clients/client-qconnect/src/commands/CreateSessionCommand.ts @@ -139,6 +139,7 @@ export interface CreateSessionCommandOutput extends CreateSessionResponse, __Met * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class CreateSessionCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeactivateMessageTemplateCommand.ts b/clients/client-qconnect/src/commands/DeactivateMessageTemplateCommand.ts index 5a86ad6ca1ee0..b7ee846d6c877 100644 --- a/clients/client-qconnect/src/commands/DeactivateMessageTemplateCommand.ts +++ b/clients/client-qconnect/src/commands/DeactivateMessageTemplateCommand.ts @@ -79,6 +79,7 @@ export interface DeactivateMessageTemplateCommandOutput extends DeactivateMessag * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeactivateMessageTemplateCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteAIAgentCommand.ts b/clients/client-qconnect/src/commands/DeleteAIAgentCommand.ts index dc34c81dbdfca..aec8ca6ee4737 100644 --- a/clients/client-qconnect/src/commands/DeleteAIAgentCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAIAgentCommand.ts @@ -66,6 +66,7 @@ export interface DeleteAIAgentCommandOutput extends DeleteAIAgentResponse, __Met * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteAIAgentCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteAIAgentVersionCommand.ts b/clients/client-qconnect/src/commands/DeleteAIAgentVersionCommand.ts index 2996e9fabb577..89fe507fe2822 100644 --- a/clients/client-qconnect/src/commands/DeleteAIAgentVersionCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAIAgentVersionCommand.ts @@ -73,6 +73,7 @@ export interface DeleteAIAgentVersionCommandOutput extends DeleteAIAgentVersionR * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteAIAgentVersionCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteAIGuardrailCommand.ts b/clients/client-qconnect/src/commands/DeleteAIGuardrailCommand.ts index edfa6aee34822..f10421ef5ddb2 100644 --- a/clients/client-qconnect/src/commands/DeleteAIGuardrailCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAIGuardrailCommand.ts @@ -72,6 +72,7 @@ export interface DeleteAIGuardrailCommandOutput extends DeleteAIGuardrailRespons * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteAIGuardrailCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteAIGuardrailVersionCommand.ts b/clients/client-qconnect/src/commands/DeleteAIGuardrailVersionCommand.ts index f78e2e1f8874a..77e47be693f4a 100644 --- a/clients/client-qconnect/src/commands/DeleteAIGuardrailVersionCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAIGuardrailVersionCommand.ts @@ -73,6 +73,7 @@ export interface DeleteAIGuardrailVersionCommandOutput extends DeleteAIGuardrail * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteAIGuardrailVersionCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteAIPromptCommand.ts b/clients/client-qconnect/src/commands/DeleteAIPromptCommand.ts index 28ab62176d561..9164706a70047 100644 --- a/clients/client-qconnect/src/commands/DeleteAIPromptCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAIPromptCommand.ts @@ -66,6 +66,7 @@ export interface DeleteAIPromptCommandOutput extends DeleteAIPromptResponse, __M * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteAIPromptCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteAIPromptVersionCommand.ts b/clients/client-qconnect/src/commands/DeleteAIPromptVersionCommand.ts index 757690b32e2d0..a56d516b62608 100644 --- a/clients/client-qconnect/src/commands/DeleteAIPromptVersionCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAIPromptVersionCommand.ts @@ -73,6 +73,7 @@ export interface DeleteAIPromptVersionCommandOutput extends DeleteAIPromptVersio * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteAIPromptVersionCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteAssistantAssociationCommand.ts b/clients/client-qconnect/src/commands/DeleteAssistantAssociationCommand.ts index bad48c6829b22..ae24290086bb9 100644 --- a/clients/client-qconnect/src/commands/DeleteAssistantAssociationCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAssistantAssociationCommand.ts @@ -63,6 +63,7 @@ export interface DeleteAssistantAssociationCommandOutput extends DeleteAssistant * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteAssistantAssociationCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteAssistantCommand.ts b/clients/client-qconnect/src/commands/DeleteAssistantCommand.ts index c0bea65af6448..c7760c654de7e 100644 --- a/clients/client-qconnect/src/commands/DeleteAssistantCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAssistantCommand.ts @@ -62,6 +62,7 @@ export interface DeleteAssistantCommandOutput extends DeleteAssistantResponse, _ * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteAssistantCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteContentAssociationCommand.ts b/clients/client-qconnect/src/commands/DeleteContentAssociationCommand.ts index b48347c5834ac..d467435775db5 100644 --- a/clients/client-qconnect/src/commands/DeleteContentAssociationCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteContentAssociationCommand.ts @@ -67,6 +67,7 @@ export interface DeleteContentAssociationCommandOutput extends DeleteContentAsso * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteContentAssociationCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteContentCommand.ts b/clients/client-qconnect/src/commands/DeleteContentCommand.ts index 13c123d3dd4fe..6b2074745c49b 100644 --- a/clients/client-qconnect/src/commands/DeleteContentCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteContentCommand.ts @@ -63,6 +63,7 @@ export interface DeleteContentCommandOutput extends DeleteContentResponse, __Met * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteContentCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteImportJobCommand.ts b/clients/client-qconnect/src/commands/DeleteImportJobCommand.ts index cebd2f0d743b4..e2cd3222e207a 100644 --- a/clients/client-qconnect/src/commands/DeleteImportJobCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteImportJobCommand.ts @@ -69,6 +69,7 @@ export interface DeleteImportJobCommandOutput extends DeleteImportJobResponse, _ * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteImportJobCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteKnowledgeBaseCommand.ts b/clients/client-qconnect/src/commands/DeleteKnowledgeBaseCommand.ts index 2328e2a5e7681..b549fabded7fb 100644 --- a/clients/client-qconnect/src/commands/DeleteKnowledgeBaseCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteKnowledgeBaseCommand.ts @@ -76,6 +76,7 @@ export interface DeleteKnowledgeBaseCommandOutput extends DeleteKnowledgeBaseRes * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteKnowledgeBaseCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteMessageTemplateAttachmentCommand.ts b/clients/client-qconnect/src/commands/DeleteMessageTemplateAttachmentCommand.ts index 8f0c673186a59..dd161ee588b27 100644 --- a/clients/client-qconnect/src/commands/DeleteMessageTemplateAttachmentCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteMessageTemplateAttachmentCommand.ts @@ -80,6 +80,7 @@ export interface DeleteMessageTemplateAttachmentCommandOutput * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteMessageTemplateAttachmentCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteMessageTemplateCommand.ts b/clients/client-qconnect/src/commands/DeleteMessageTemplateCommand.ts index f1013521f74f4..e68c17eac7625 100644 --- a/clients/client-qconnect/src/commands/DeleteMessageTemplateCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteMessageTemplateCommand.ts @@ -76,6 +76,7 @@ export interface DeleteMessageTemplateCommandOutput extends DeleteMessageTemplat * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteMessageTemplateCommand extends $Command diff --git a/clients/client-qconnect/src/commands/DeleteQuickResponseCommand.ts b/clients/client-qconnect/src/commands/DeleteQuickResponseCommand.ts index 4aab6c697cea8..b0136306e5638 100644 --- a/clients/client-qconnect/src/commands/DeleteQuickResponseCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteQuickResponseCommand.ts @@ -63,6 +63,7 @@ export interface DeleteQuickResponseCommandOutput extends DeleteQuickResponseRes * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class DeleteQuickResponseCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetAIAgentCommand.ts b/clients/client-qconnect/src/commands/GetAIAgentCommand.ts index 08ae3a5383d76..685c19a0f9f1e 100644 --- a/clients/client-qconnect/src/commands/GetAIAgentCommand.ts +++ b/clients/client-qconnect/src/commands/GetAIAgentCommand.ts @@ -185,6 +185,7 @@ export interface GetAIAgentCommandOutput extends GetAIAgentResponse, __MetadataB * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetAIAgentCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetAIGuardrailCommand.ts b/clients/client-qconnect/src/commands/GetAIGuardrailCommand.ts index 6c18af8598fae..14464b34565f0 100644 --- a/clients/client-qconnect/src/commands/GetAIGuardrailCommand.ts +++ b/clients/client-qconnect/src/commands/GetAIGuardrailCommand.ts @@ -145,6 +145,7 @@ export interface GetAIGuardrailCommandOutput extends GetAIGuardrailResponse, __M * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetAIGuardrailCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetAIPromptCommand.ts b/clients/client-qconnect/src/commands/GetAIPromptCommand.ts index c837d1f54e6f4..d4b685d516c07 100644 --- a/clients/client-qconnect/src/commands/GetAIPromptCommand.ts +++ b/clients/client-qconnect/src/commands/GetAIPromptCommand.ts @@ -92,6 +92,7 @@ export interface GetAIPromptCommandOutput extends GetAIPromptResponse, __Metadat * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetAIPromptCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetAssistantAssociationCommand.ts b/clients/client-qconnect/src/commands/GetAssistantAssociationCommand.ts index d1a63e8115e35..f014d01ffa79a 100644 --- a/clients/client-qconnect/src/commands/GetAssistantAssociationCommand.ts +++ b/clients/client-qconnect/src/commands/GetAssistantAssociationCommand.ts @@ -80,6 +80,7 @@ export interface GetAssistantAssociationCommandOutput extends GetAssistantAssoci * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetAssistantAssociationCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetAssistantCommand.ts b/clients/client-qconnect/src/commands/GetAssistantCommand.ts index 430ae0d0757f4..1fc0dd6bec9a8 100644 --- a/clients/client-qconnect/src/commands/GetAssistantCommand.ts +++ b/clients/client-qconnect/src/commands/GetAssistantCommand.ts @@ -88,6 +88,7 @@ export interface GetAssistantCommandOutput extends GetAssistantResponse, __Metad * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetAssistantCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetContentAssociationCommand.ts b/clients/client-qconnect/src/commands/GetContentAssociationCommand.ts index 64e274d6314f9..38513be9ba65f 100644 --- a/clients/client-qconnect/src/commands/GetContentAssociationCommand.ts +++ b/clients/client-qconnect/src/commands/GetContentAssociationCommand.ts @@ -85,6 +85,7 @@ export interface GetContentAssociationCommandOutput extends GetContentAssociatio * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetContentAssociationCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetContentCommand.ts b/clients/client-qconnect/src/commands/GetContentCommand.ts index 1eecabb86679e..9b826ffb2ff61 100644 --- a/clients/client-qconnect/src/commands/GetContentCommand.ts +++ b/clients/client-qconnect/src/commands/GetContentCommand.ts @@ -84,6 +84,7 @@ export interface GetContentCommandOutput extends GetContentResponse, __MetadataB * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetContentCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetContentSummaryCommand.ts b/clients/client-qconnect/src/commands/GetContentSummaryCommand.ts index a737e46984eaf..bd80c85894ef4 100644 --- a/clients/client-qconnect/src/commands/GetContentSummaryCommand.ts +++ b/clients/client-qconnect/src/commands/GetContentSummaryCommand.ts @@ -81,6 +81,7 @@ export interface GetContentSummaryCommandOutput extends GetContentSummaryRespons * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetContentSummaryCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetImportJobCommand.ts b/clients/client-qconnect/src/commands/GetImportJobCommand.ts index 1783c9b746c04..77e77a70510d9 100644 --- a/clients/client-qconnect/src/commands/GetImportJobCommand.ts +++ b/clients/client-qconnect/src/commands/GetImportJobCommand.ts @@ -88,6 +88,7 @@ export interface GetImportJobCommandOutput extends GetImportJobResponse, __Metad * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetImportJobCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetKnowledgeBaseCommand.ts b/clients/client-qconnect/src/commands/GetKnowledgeBaseCommand.ts index f4f3d8e9ad982..56d815b09bd46 100644 --- a/clients/client-qconnect/src/commands/GetKnowledgeBaseCommand.ts +++ b/clients/client-qconnect/src/commands/GetKnowledgeBaseCommand.ts @@ -149,6 +149,7 @@ export interface GetKnowledgeBaseCommandOutput extends GetKnowledgeBaseResponse, * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetKnowledgeBaseCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetMessageTemplateCommand.ts b/clients/client-qconnect/src/commands/GetMessageTemplateCommand.ts index 2c6175ba931fd..13ad69d58d2e1 100644 --- a/clients/client-qconnect/src/commands/GetMessageTemplateCommand.ts +++ b/clients/client-qconnect/src/commands/GetMessageTemplateCommand.ts @@ -220,6 +220,7 @@ export interface GetMessageTemplateCommandOutput extends GetMessageTemplateRespo * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetMessageTemplateCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetNextMessageCommand.ts b/clients/client-qconnect/src/commands/GetNextMessageCommand.ts index bc44520024233..e6b358d48ef60 100644 --- a/clients/client-qconnect/src/commands/GetNextMessageCommand.ts +++ b/clients/client-qconnect/src/commands/GetNextMessageCommand.ts @@ -94,6 +94,7 @@ export interface GetNextMessageCommandOutput extends GetNextMessageResponse, __M * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetNextMessageCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetQuickResponseCommand.ts b/clients/client-qconnect/src/commands/GetQuickResponseCommand.ts index 97eea15271077..594351f1fbf3b 100644 --- a/clients/client-qconnect/src/commands/GetQuickResponseCommand.ts +++ b/clients/client-qconnect/src/commands/GetQuickResponseCommand.ts @@ -104,6 +104,7 @@ export interface GetQuickResponseCommandOutput extends GetQuickResponseResponse, * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetQuickResponseCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetRecommendationsCommand.ts b/clients/client-qconnect/src/commands/GetRecommendationsCommand.ts index c8f50c8d54004..99a6461352d20 100644 --- a/clients/client-qconnect/src/commands/GetRecommendationsCommand.ts +++ b/clients/client-qconnect/src/commands/GetRecommendationsCommand.ts @@ -250,6 +250,7 @@ export interface GetRecommendationsCommandOutput extends GetRecommendationsRespo * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetRecommendationsCommand extends $Command diff --git a/clients/client-qconnect/src/commands/GetSessionCommand.ts b/clients/client-qconnect/src/commands/GetSessionCommand.ts index 1e15972c7c02b..5ca3f42843bcc 100644 --- a/clients/client-qconnect/src/commands/GetSessionCommand.ts +++ b/clients/client-qconnect/src/commands/GetSessionCommand.ts @@ -101,6 +101,7 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class GetSessionCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListAIAgentVersionsCommand.ts b/clients/client-qconnect/src/commands/ListAIAgentVersionsCommand.ts index 66c91b7fe55a5..268476579a52b 100644 --- a/clients/client-qconnect/src/commands/ListAIAgentVersionsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAIAgentVersionsCommand.ts @@ -193,6 +193,7 @@ export interface ListAIAgentVersionsCommandOutput extends ListAIAgentVersionsRes * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListAIAgentVersionsCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListAIAgentsCommand.ts b/clients/client-qconnect/src/commands/ListAIAgentsCommand.ts index dedd98e28e802..8953eac054157 100644 --- a/clients/client-qconnect/src/commands/ListAIAgentsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAIAgentsCommand.ts @@ -189,6 +189,7 @@ export interface ListAIAgentsCommandOutput extends ListAIAgentsResponse, __Metad * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListAIAgentsCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListAIGuardrailVersionsCommand.ts b/clients/client-qconnect/src/commands/ListAIGuardrailVersionsCommand.ts index a0fe40d103a7a..54a62fc7459c6 100644 --- a/clients/client-qconnect/src/commands/ListAIGuardrailVersionsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAIGuardrailVersionsCommand.ts @@ -93,6 +93,7 @@ export interface ListAIGuardrailVersionsCommandOutput extends ListAIGuardrailVer * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListAIGuardrailVersionsCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListAIGuardrailsCommand.ts b/clients/client-qconnect/src/commands/ListAIGuardrailsCommand.ts index 2335371226b39..9243a29a29ea6 100644 --- a/clients/client-qconnect/src/commands/ListAIGuardrailsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAIGuardrailsCommand.ts @@ -89,6 +89,7 @@ export interface ListAIGuardrailsCommandOutput extends ListAIGuardrailsResponse, * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListAIGuardrailsCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListAIPromptVersionsCommand.ts b/clients/client-qconnect/src/commands/ListAIPromptVersionsCommand.ts index 125d5bbd3d13d..1be3fdae68c2a 100644 --- a/clients/client-qconnect/src/commands/ListAIPromptVersionsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAIPromptVersionsCommand.ts @@ -95,6 +95,7 @@ export interface ListAIPromptVersionsCommandOutput extends ListAIPromptVersionsR * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListAIPromptVersionsCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListAIPromptsCommand.ts b/clients/client-qconnect/src/commands/ListAIPromptsCommand.ts index 26fc16ac1f4ae..15dbb2f17c4cd 100644 --- a/clients/client-qconnect/src/commands/ListAIPromptsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAIPromptsCommand.ts @@ -91,6 +91,7 @@ export interface ListAIPromptsCommandOutput extends ListAIPromptsResponse, __Met * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListAIPromptsCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListAssistantAssociationsCommand.ts b/clients/client-qconnect/src/commands/ListAssistantAssociationsCommand.ts index efc7f11ef00fe..f5422906e5e10 100644 --- a/clients/client-qconnect/src/commands/ListAssistantAssociationsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAssistantAssociationsCommand.ts @@ -84,6 +84,7 @@ export interface ListAssistantAssociationsCommandOutput extends ListAssistantAss * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListAssistantAssociationsCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListAssistantsCommand.ts b/clients/client-qconnect/src/commands/ListAssistantsCommand.ts index 304e9bba62d9f..13444fc11866a 100644 --- a/clients/client-qconnect/src/commands/ListAssistantsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAssistantsCommand.ts @@ -89,6 +89,7 @@ export interface ListAssistantsCommandOutput extends ListAssistantsResponse, __M * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListAssistantsCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListContentAssociationsCommand.ts b/clients/client-qconnect/src/commands/ListContentAssociationsCommand.ts index d55de64a76d2d..cdfc252fd3065 100644 --- a/clients/client-qconnect/src/commands/ListContentAssociationsCommand.ts +++ b/clients/client-qconnect/src/commands/ListContentAssociationsCommand.ts @@ -89,6 +89,7 @@ export interface ListContentAssociationsCommandOutput extends ListContentAssocia * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListContentAssociationsCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListContentsCommand.ts b/clients/client-qconnect/src/commands/ListContentsCommand.ts index b5ab75e90412f..fde90e38dd7c2 100644 --- a/clients/client-qconnect/src/commands/ListContentsCommand.ts +++ b/clients/client-qconnect/src/commands/ListContentsCommand.ts @@ -85,6 +85,7 @@ export interface ListContentsCommandOutput extends ListContentsResponse, __Metad * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListContentsCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListImportJobsCommand.ts b/clients/client-qconnect/src/commands/ListImportJobsCommand.ts index 7082271e86343..a3b2e5bef4c15 100644 --- a/clients/client-qconnect/src/commands/ListImportJobsCommand.ts +++ b/clients/client-qconnect/src/commands/ListImportJobsCommand.ts @@ -86,6 +86,7 @@ export interface ListImportJobsCommandOutput extends ListImportJobsResponse, __M * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListImportJobsCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListKnowledgeBasesCommand.ts b/clients/client-qconnect/src/commands/ListKnowledgeBasesCommand.ts index 3e4ca6f7d0832..18e30bf702cc7 100644 --- a/clients/client-qconnect/src/commands/ListKnowledgeBasesCommand.ts +++ b/clients/client-qconnect/src/commands/ListKnowledgeBasesCommand.ts @@ -145,6 +145,7 @@ export interface ListKnowledgeBasesCommandOutput extends ListKnowledgeBasesRespo * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListKnowledgeBasesCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListMessageTemplateVersionsCommand.ts b/clients/client-qconnect/src/commands/ListMessageTemplateVersionsCommand.ts index 353c1b47d603f..1ec15b1f23675 100644 --- a/clients/client-qconnect/src/commands/ListMessageTemplateVersionsCommand.ts +++ b/clients/client-qconnect/src/commands/ListMessageTemplateVersionsCommand.ts @@ -88,6 +88,7 @@ export interface ListMessageTemplateVersionsCommandOutput * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListMessageTemplateVersionsCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListMessageTemplatesCommand.ts b/clients/client-qconnect/src/commands/ListMessageTemplatesCommand.ts index 713957ed5d184..b31f3c1c24cae 100644 --- a/clients/client-qconnect/src/commands/ListMessageTemplatesCommand.ts +++ b/clients/client-qconnect/src/commands/ListMessageTemplatesCommand.ts @@ -88,6 +88,7 @@ export interface ListMessageTemplatesCommandOutput extends ListMessageTemplatesR * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListMessageTemplatesCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListMessagesCommand.ts b/clients/client-qconnect/src/commands/ListMessagesCommand.ts index 695c17ad9c8c8..4d4666e4a7e46 100644 --- a/clients/client-qconnect/src/commands/ListMessagesCommand.ts +++ b/clients/client-qconnect/src/commands/ListMessagesCommand.ts @@ -79,6 +79,7 @@ export interface ListMessagesCommandOutput extends ListMessagesResponse, __Metad * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListMessagesCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListQuickResponsesCommand.ts b/clients/client-qconnect/src/commands/ListQuickResponsesCommand.ts index c08dd78c683f5..afa8289ad67bf 100644 --- a/clients/client-qconnect/src/commands/ListQuickResponsesCommand.ts +++ b/clients/client-qconnect/src/commands/ListQuickResponsesCommand.ts @@ -92,6 +92,7 @@ export interface ListQuickResponsesCommandOutput extends ListQuickResponsesRespo * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListQuickResponsesCommand extends $Command diff --git a/clients/client-qconnect/src/commands/ListTagsForResourceCommand.ts b/clients/client-qconnect/src/commands/ListTagsForResourceCommand.ts index 52e04556d7347..f16ade9da3482 100644 --- a/clients/client-qconnect/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-qconnect/src/commands/ListTagsForResourceCommand.ts @@ -60,6 +60,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-qconnect/src/commands/NotifyRecommendationsReceivedCommand.ts b/clients/client-qconnect/src/commands/NotifyRecommendationsReceivedCommand.ts index aa6319fd5b53e..997f7eb795562 100644 --- a/clients/client-qconnect/src/commands/NotifyRecommendationsReceivedCommand.ts +++ b/clients/client-qconnect/src/commands/NotifyRecommendationsReceivedCommand.ts @@ -83,6 +83,7 @@ export interface NotifyRecommendationsReceivedCommandOutput * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class NotifyRecommendationsReceivedCommand extends $Command diff --git a/clients/client-qconnect/src/commands/PutFeedbackCommand.ts b/clients/client-qconnect/src/commands/PutFeedbackCommand.ts index 85da51d573c8d..8870b3b9e67bd 100644 --- a/clients/client-qconnect/src/commands/PutFeedbackCommand.ts +++ b/clients/client-qconnect/src/commands/PutFeedbackCommand.ts @@ -80,6 +80,7 @@ export interface PutFeedbackCommandOutput extends PutFeedbackResponse, __Metadat * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class PutFeedbackCommand extends $Command diff --git a/clients/client-qconnect/src/commands/QueryAssistantCommand.ts b/clients/client-qconnect/src/commands/QueryAssistantCommand.ts index ad16e5b8789b9..3c864c2827bd2 100644 --- a/clients/client-qconnect/src/commands/QueryAssistantCommand.ts +++ b/clients/client-qconnect/src/commands/QueryAssistantCommand.ts @@ -257,6 +257,7 @@ export interface QueryAssistantCommandOutput extends QueryAssistantResponse, __M * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class QueryAssistantCommand extends $Command diff --git a/clients/client-qconnect/src/commands/RemoveAssistantAIAgentCommand.ts b/clients/client-qconnect/src/commands/RemoveAssistantAIAgentCommand.ts index 8a925acd4fcb6..938b234026f34 100644 --- a/clients/client-qconnect/src/commands/RemoveAssistantAIAgentCommand.ts +++ b/clients/client-qconnect/src/commands/RemoveAssistantAIAgentCommand.ts @@ -67,6 +67,7 @@ export interface RemoveAssistantAIAgentCommandOutput extends RemoveAssistantAIAg * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class RemoveAssistantAIAgentCommand extends $Command diff --git a/clients/client-qconnect/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts b/clients/client-qconnect/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts index 7f0cebcaa2da1..29c681cea8447 100644 --- a/clients/client-qconnect/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts +++ b/clients/client-qconnect/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts @@ -67,6 +67,7 @@ export interface RemoveKnowledgeBaseTemplateUriCommandOutput * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class RemoveKnowledgeBaseTemplateUriCommand extends $Command diff --git a/clients/client-qconnect/src/commands/RenderMessageTemplateCommand.ts b/clients/client-qconnect/src/commands/RenderMessageTemplateCommand.ts index 1a14daa36c95c..7e1fb0f9ddec9 100644 --- a/clients/client-qconnect/src/commands/RenderMessageTemplateCommand.ts +++ b/clients/client-qconnect/src/commands/RenderMessageTemplateCommand.ts @@ -195,6 +195,7 @@ export interface RenderMessageTemplateCommandOutput extends RenderMessageTemplat * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class RenderMessageTemplateCommand extends $Command diff --git a/clients/client-qconnect/src/commands/SearchContentCommand.ts b/clients/client-qconnect/src/commands/SearchContentCommand.ts index e44ce77d62704..08b0f896f3068 100644 --- a/clients/client-qconnect/src/commands/SearchContentCommand.ts +++ b/clients/client-qconnect/src/commands/SearchContentCommand.ts @@ -95,6 +95,7 @@ export interface SearchContentCommandOutput extends SearchContentResponse, __Met * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class SearchContentCommand extends $Command diff --git a/clients/client-qconnect/src/commands/SearchMessageTemplatesCommand.ts b/clients/client-qconnect/src/commands/SearchMessageTemplatesCommand.ts index 3fa7d6d771694..78af3e71369e7 100644 --- a/clients/client-qconnect/src/commands/SearchMessageTemplatesCommand.ts +++ b/clients/client-qconnect/src/commands/SearchMessageTemplatesCommand.ts @@ -126,6 +126,7 @@ export interface SearchMessageTemplatesCommandOutput extends SearchMessageTempla * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class SearchMessageTemplatesCommand extends $Command diff --git a/clients/client-qconnect/src/commands/SearchQuickResponsesCommand.ts b/clients/client-qconnect/src/commands/SearchQuickResponsesCommand.ts index 57d901ced83da..c193f699c5e84 100644 --- a/clients/client-qconnect/src/commands/SearchQuickResponsesCommand.ts +++ b/clients/client-qconnect/src/commands/SearchQuickResponsesCommand.ts @@ -150,6 +150,7 @@ export interface SearchQuickResponsesCommandOutput extends SearchQuickResponsesR * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class SearchQuickResponsesCommand extends $Command diff --git a/clients/client-qconnect/src/commands/SearchSessionsCommand.ts b/clients/client-qconnect/src/commands/SearchSessionsCommand.ts index f8cddde415b30..6b2cee496e1f9 100644 --- a/clients/client-qconnect/src/commands/SearchSessionsCommand.ts +++ b/clients/client-qconnect/src/commands/SearchSessionsCommand.ts @@ -83,6 +83,7 @@ export interface SearchSessionsCommandOutput extends SearchSessionsResponse, __M * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class SearchSessionsCommand extends $Command diff --git a/clients/client-qconnect/src/commands/SendMessageCommand.ts b/clients/client-qconnect/src/commands/SendMessageCommand.ts index fb7b701550466..15865c71ed4a0 100644 --- a/clients/client-qconnect/src/commands/SendMessageCommand.ts +++ b/clients/client-qconnect/src/commands/SendMessageCommand.ts @@ -98,6 +98,7 @@ export interface SendMessageCommandOutput extends SendMessageResponse, __Metadat * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class SendMessageCommand extends $Command diff --git a/clients/client-qconnect/src/commands/StartContentUploadCommand.ts b/clients/client-qconnect/src/commands/StartContentUploadCommand.ts index c61b85f094f1c..592da2fe59b5e 100644 --- a/clients/client-qconnect/src/commands/StartContentUploadCommand.ts +++ b/clients/client-qconnect/src/commands/StartContentUploadCommand.ts @@ -80,6 +80,7 @@ export interface StartContentUploadCommandOutput extends StartContentUploadRespo * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class StartContentUploadCommand extends $Command diff --git a/clients/client-qconnect/src/commands/StartImportJobCommand.ts b/clients/client-qconnect/src/commands/StartImportJobCommand.ts index cb878997ec905..7f7920e9e5342 100644 --- a/clients/client-qconnect/src/commands/StartImportJobCommand.ts +++ b/clients/client-qconnect/src/commands/StartImportJobCommand.ts @@ -124,6 +124,7 @@ export interface StartImportJobCommandOutput extends StartImportJobResponse, __M * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class StartImportJobCommand extends $Command diff --git a/clients/client-qconnect/src/commands/TagResourceCommand.ts b/clients/client-qconnect/src/commands/TagResourceCommand.ts index 9b888d666c73d..9588f0665efa5 100644 --- a/clients/client-qconnect/src/commands/TagResourceCommand.ts +++ b/clients/client-qconnect/src/commands/TagResourceCommand.ts @@ -62,6 +62,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-qconnect/src/commands/UntagResourceCommand.ts b/clients/client-qconnect/src/commands/UntagResourceCommand.ts index 6a55fd7e118d3..1358b7ae08fe8 100644 --- a/clients/client-qconnect/src/commands/UntagResourceCommand.ts +++ b/clients/client-qconnect/src/commands/UntagResourceCommand.ts @@ -59,6 +59,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-qconnect/src/commands/UpdateAIAgentCommand.ts b/clients/client-qconnect/src/commands/UpdateAIAgentCommand.ts index 7a885e7519458..acfda3390c059 100644 --- a/clients/client-qconnect/src/commands/UpdateAIAgentCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateAIAgentCommand.ts @@ -294,6 +294,7 @@ export interface UpdateAIAgentCommandOutput extends UpdateAIAgentResponse, __Met * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class UpdateAIAgentCommand extends $Command diff --git a/clients/client-qconnect/src/commands/UpdateAIGuardrailCommand.ts b/clients/client-qconnect/src/commands/UpdateAIGuardrailCommand.ts index 6826fd45c8591..d355a88a38ac9 100644 --- a/clients/client-qconnect/src/commands/UpdateAIGuardrailCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateAIGuardrailCommand.ts @@ -213,6 +213,7 @@ export interface UpdateAIGuardrailCommandOutput extends UpdateAIGuardrailRespons * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class UpdateAIGuardrailCommand extends $Command diff --git a/clients/client-qconnect/src/commands/UpdateAIPromptCommand.ts b/clients/client-qconnect/src/commands/UpdateAIPromptCommand.ts index e129c2ca4183e..9597861ed2314 100644 --- a/clients/client-qconnect/src/commands/UpdateAIPromptCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateAIPromptCommand.ts @@ -110,6 +110,7 @@ export interface UpdateAIPromptCommandOutput extends UpdateAIPromptResponse, __M * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class UpdateAIPromptCommand extends $Command diff --git a/clients/client-qconnect/src/commands/UpdateAssistantAIAgentCommand.ts b/clients/client-qconnect/src/commands/UpdateAssistantAIAgentCommand.ts index b260dcd57f83b..7222bc67d68e8 100644 --- a/clients/client-qconnect/src/commands/UpdateAssistantAIAgentCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateAssistantAIAgentCommand.ts @@ -96,6 +96,7 @@ export interface UpdateAssistantAIAgentCommandOutput extends UpdateAssistantAIAg * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class UpdateAssistantAIAgentCommand extends $Command diff --git a/clients/client-qconnect/src/commands/UpdateContentCommand.ts b/clients/client-qconnect/src/commands/UpdateContentCommand.ts index 35226bcfe088e..c9d8d2ebd01dd 100644 --- a/clients/client-qconnect/src/commands/UpdateContentCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateContentCommand.ts @@ -100,6 +100,7 @@ export interface UpdateContentCommandOutput extends UpdateContentResponse, __Met * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class UpdateContentCommand extends $Command diff --git a/clients/client-qconnect/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts b/clients/client-qconnect/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts index 5717814b79ed4..5bbdfd567061b 100644 --- a/clients/client-qconnect/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts @@ -160,6 +160,7 @@ export interface UpdateKnowledgeBaseTemplateUriCommandOutput * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class UpdateKnowledgeBaseTemplateUriCommand extends $Command diff --git a/clients/client-qconnect/src/commands/UpdateMessageTemplateCommand.ts b/clients/client-qconnect/src/commands/UpdateMessageTemplateCommand.ts index 1c05316a98782..f682e15f4317b 100644 --- a/clients/client-qconnect/src/commands/UpdateMessageTemplateCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateMessageTemplateCommand.ts @@ -321,6 +321,7 @@ export interface UpdateMessageTemplateCommandOutput extends UpdateMessageTemplat * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class UpdateMessageTemplateCommand extends $Command diff --git a/clients/client-qconnect/src/commands/UpdateMessageTemplateMetadataCommand.ts b/clients/client-qconnect/src/commands/UpdateMessageTemplateMetadataCommand.ts index 707756d921f5f..579081c94f974 100644 --- a/clients/client-qconnect/src/commands/UpdateMessageTemplateMetadataCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateMessageTemplateMetadataCommand.ts @@ -227,6 +227,7 @@ export interface UpdateMessageTemplateMetadataCommandOutput * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class UpdateMessageTemplateMetadataCommand extends $Command diff --git a/clients/client-qconnect/src/commands/UpdateQuickResponseCommand.ts b/clients/client-qconnect/src/commands/UpdateQuickResponseCommand.ts index 6cb0c7799182c..d17138563cb7b 100644 --- a/clients/client-qconnect/src/commands/UpdateQuickResponseCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateQuickResponseCommand.ts @@ -136,6 +136,7 @@ export interface UpdateQuickResponseCommandOutput extends UpdateQuickResponseRes * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class UpdateQuickResponseCommand extends $Command diff --git a/clients/client-qconnect/src/commands/UpdateSessionCommand.ts b/clients/client-qconnect/src/commands/UpdateSessionCommand.ts index fd19b647b94b1..9d7a9a1650538 100644 --- a/clients/client-qconnect/src/commands/UpdateSessionCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateSessionCommand.ts @@ -129,6 +129,7 @@ export interface UpdateSessionCommandOutput extends UpdateSessionResponse, __Met * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class UpdateSessionCommand extends $Command diff --git a/clients/client-qconnect/src/commands/UpdateSessionDataCommand.ts b/clients/client-qconnect/src/commands/UpdateSessionDataCommand.ts index 4dd90ec97e6a9..3e114d1c4baaf 100644 --- a/clients/client-qconnect/src/commands/UpdateSessionDataCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateSessionDataCommand.ts @@ -89,6 +89,7 @@ export interface UpdateSessionDataCommandOutput extends UpdateSessionDataRespons * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* + * * @public */ export class UpdateSessionDataCommand extends $Command diff --git a/clients/client-qldb-session/src/commands/SendCommandCommand.ts b/clients/client-qldb-session/src/commands/SendCommandCommand.ts index e7f86f0c21ad5..966300a53202b 100644 --- a/clients/client-qldb-session/src/commands/SendCommandCommand.ts +++ b/clients/client-qldb-session/src/commands/SendCommandCommand.ts @@ -183,6 +183,7 @@ export interface SendCommandCommandOutput extends SendCommandResult, __MetadataB * @throws {@link QLDBSessionServiceException} *

Base exception class for all service exceptions from QLDBSession service.

* + * * @public */ export class SendCommandCommand extends $Command diff --git a/clients/client-qldb/src/commands/CancelJournalKinesisStreamCommand.ts b/clients/client-qldb/src/commands/CancelJournalKinesisStreamCommand.ts index 4d68e96a23239..3ea4f6d35646f 100644 --- a/clients/client-qldb/src/commands/CancelJournalKinesisStreamCommand.ts +++ b/clients/client-qldb/src/commands/CancelJournalKinesisStreamCommand.ts @@ -69,6 +69,7 @@ export interface CancelJournalKinesisStreamCommandOutput extends CancelJournalKi * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class CancelJournalKinesisStreamCommand extends $Command diff --git a/clients/client-qldb/src/commands/CreateLedgerCommand.ts b/clients/client-qldb/src/commands/CreateLedgerCommand.ts index e2e357b18010b..7877fb00fce09 100644 --- a/clients/client-qldb/src/commands/CreateLedgerCommand.ts +++ b/clients/client-qldb/src/commands/CreateLedgerCommand.ts @@ -79,6 +79,7 @@ export interface CreateLedgerCommandOutput extends CreateLedgerResponse, __Metad * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class CreateLedgerCommand extends $Command diff --git a/clients/client-qldb/src/commands/DeleteLedgerCommand.ts b/clients/client-qldb/src/commands/DeleteLedgerCommand.ts index 3a387bbce858e..194fadc3d56a3 100644 --- a/clients/client-qldb/src/commands/DeleteLedgerCommand.ts +++ b/clients/client-qldb/src/commands/DeleteLedgerCommand.ts @@ -67,6 +67,7 @@ export interface DeleteLedgerCommandOutput extends __MetadataBearer {} * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class DeleteLedgerCommand extends $Command diff --git a/clients/client-qldb/src/commands/DescribeJournalKinesisStreamCommand.ts b/clients/client-qldb/src/commands/DescribeJournalKinesisStreamCommand.ts index 628590e0b47d3..1297bdb343fd4 100644 --- a/clients/client-qldb/src/commands/DescribeJournalKinesisStreamCommand.ts +++ b/clients/client-qldb/src/commands/DescribeJournalKinesisStreamCommand.ts @@ -90,6 +90,7 @@ export interface DescribeJournalKinesisStreamCommandOutput * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class DescribeJournalKinesisStreamCommand extends $Command diff --git a/clients/client-qldb/src/commands/DescribeJournalS3ExportCommand.ts b/clients/client-qldb/src/commands/DescribeJournalS3ExportCommand.ts index 6c6f98ac7039d..38c1eaeaf138d 100644 --- a/clients/client-qldb/src/commands/DescribeJournalS3ExportCommand.ts +++ b/clients/client-qldb/src/commands/DescribeJournalS3ExportCommand.ts @@ -84,6 +84,7 @@ export interface DescribeJournalS3ExportCommandOutput extends DescribeJournalS3E * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class DescribeJournalS3ExportCommand extends $Command diff --git a/clients/client-qldb/src/commands/DescribeLedgerCommand.ts b/clients/client-qldb/src/commands/DescribeLedgerCommand.ts index b3ea2c623d11f..448669d6c3cc9 100644 --- a/clients/client-qldb/src/commands/DescribeLedgerCommand.ts +++ b/clients/client-qldb/src/commands/DescribeLedgerCommand.ts @@ -72,6 +72,7 @@ export interface DescribeLedgerCommandOutput extends DescribeLedgerResponse, __M * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class DescribeLedgerCommand extends $Command diff --git a/clients/client-qldb/src/commands/ExportJournalToS3Command.ts b/clients/client-qldb/src/commands/ExportJournalToS3Command.ts index 49cebeb5ad9b7..9b4d539a1cf6d 100644 --- a/clients/client-qldb/src/commands/ExportJournalToS3Command.ts +++ b/clients/client-qldb/src/commands/ExportJournalToS3Command.ts @@ -82,6 +82,7 @@ export interface ExportJournalToS3CommandOutput extends ExportJournalToS3Respons * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class ExportJournalToS3Command extends $Command diff --git a/clients/client-qldb/src/commands/GetBlockCommand.ts b/clients/client-qldb/src/commands/GetBlockCommand.ts index c6c86729a997a..e626884fd4810 100644 --- a/clients/client-qldb/src/commands/GetBlockCommand.ts +++ b/clients/client-qldb/src/commands/GetBlockCommand.ts @@ -89,6 +89,7 @@ export interface GetBlockCommandOutput extends GetBlockResponse, __MetadataBeare * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class GetBlockCommand extends $Command diff --git a/clients/client-qldb/src/commands/GetDigestCommand.ts b/clients/client-qldb/src/commands/GetDigestCommand.ts index 13e9b1b474fe4..f5c7d122593de 100644 --- a/clients/client-qldb/src/commands/GetDigestCommand.ts +++ b/clients/client-qldb/src/commands/GetDigestCommand.ts @@ -68,6 +68,7 @@ export interface GetDigestCommandOutput extends GetDigestResponse, __MetadataBea * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class GetDigestCommand extends $Command diff --git a/clients/client-qldb/src/commands/GetRevisionCommand.ts b/clients/client-qldb/src/commands/GetRevisionCommand.ts index df53cf04ebd69..1dcc6f8a745fd 100644 --- a/clients/client-qldb/src/commands/GetRevisionCommand.ts +++ b/clients/client-qldb/src/commands/GetRevisionCommand.ts @@ -83,6 +83,7 @@ export interface GetRevisionCommandOutput extends GetRevisionResponse, __Metadat * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class GetRevisionCommand extends $Command diff --git a/clients/client-qldb/src/commands/ListJournalKinesisStreamsForLedgerCommand.ts b/clients/client-qldb/src/commands/ListJournalKinesisStreamsForLedgerCommand.ts index 5e5c1611d14fb..e2ac61700627a 100644 --- a/clients/client-qldb/src/commands/ListJournalKinesisStreamsForLedgerCommand.ts +++ b/clients/client-qldb/src/commands/ListJournalKinesisStreamsForLedgerCommand.ts @@ -98,6 +98,7 @@ export interface ListJournalKinesisStreamsForLedgerCommandOutput * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class ListJournalKinesisStreamsForLedgerCommand extends $Command diff --git a/clients/client-qldb/src/commands/ListJournalS3ExportsCommand.ts b/clients/client-qldb/src/commands/ListJournalS3ExportsCommand.ts index de0a99acbfc6f..0666ca3b01434 100644 --- a/clients/client-qldb/src/commands/ListJournalS3ExportsCommand.ts +++ b/clients/client-qldb/src/commands/ListJournalS3ExportsCommand.ts @@ -82,6 +82,7 @@ export interface ListJournalS3ExportsCommandOutput extends ListJournalS3ExportsR * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class ListJournalS3ExportsCommand extends $Command diff --git a/clients/client-qldb/src/commands/ListJournalS3ExportsForLedgerCommand.ts b/clients/client-qldb/src/commands/ListJournalS3ExportsForLedgerCommand.ts index aafeead972d24..59f1a858b82a3 100644 --- a/clients/client-qldb/src/commands/ListJournalS3ExportsForLedgerCommand.ts +++ b/clients/client-qldb/src/commands/ListJournalS3ExportsForLedgerCommand.ts @@ -87,6 +87,7 @@ export interface ListJournalS3ExportsForLedgerCommandOutput * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class ListJournalS3ExportsForLedgerCommand extends $Command diff --git a/clients/client-qldb/src/commands/ListLedgersCommand.ts b/clients/client-qldb/src/commands/ListLedgersCommand.ts index 0fad9b4e8655e..97ee96f120912 100644 --- a/clients/client-qldb/src/commands/ListLedgersCommand.ts +++ b/clients/client-qldb/src/commands/ListLedgersCommand.ts @@ -66,6 +66,7 @@ export interface ListLedgersCommandOutput extends ListLedgersResponse, __Metadat * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class ListLedgersCommand extends $Command diff --git a/clients/client-qldb/src/commands/ListTagsForResourceCommand.ts b/clients/client-qldb/src/commands/ListTagsForResourceCommand.ts index 89928978e514f..22822fcffe64c 100644 --- a/clients/client-qldb/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-qldb/src/commands/ListTagsForResourceCommand.ts @@ -63,6 +63,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-qldb/src/commands/StreamJournalToKinesisCommand.ts b/clients/client-qldb/src/commands/StreamJournalToKinesisCommand.ts index ff72b89309639..0731d65a7c16f 100644 --- a/clients/client-qldb/src/commands/StreamJournalToKinesisCommand.ts +++ b/clients/client-qldb/src/commands/StreamJournalToKinesisCommand.ts @@ -77,6 +77,7 @@ export interface StreamJournalToKinesisCommandOutput extends StreamJournalToKine * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class StreamJournalToKinesisCommand extends $Command diff --git a/clients/client-qldb/src/commands/TagResourceCommand.ts b/clients/client-qldb/src/commands/TagResourceCommand.ts index 65a1e1350099f..af76eb6075631 100644 --- a/clients/client-qldb/src/commands/TagResourceCommand.ts +++ b/clients/client-qldb/src/commands/TagResourceCommand.ts @@ -64,6 +64,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-qldb/src/commands/UntagResourceCommand.ts b/clients/client-qldb/src/commands/UntagResourceCommand.ts index 6a4a837079cd4..3a863a28eca84 100644 --- a/clients/client-qldb/src/commands/UntagResourceCommand.ts +++ b/clients/client-qldb/src/commands/UntagResourceCommand.ts @@ -63,6 +63,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-qldb/src/commands/UpdateLedgerCommand.ts b/clients/client-qldb/src/commands/UpdateLedgerCommand.ts index e54fc6497ff73..af5222e52fba0 100644 --- a/clients/client-qldb/src/commands/UpdateLedgerCommand.ts +++ b/clients/client-qldb/src/commands/UpdateLedgerCommand.ts @@ -72,6 +72,7 @@ export interface UpdateLedgerCommandOutput extends UpdateLedgerResponse, __Metad * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class UpdateLedgerCommand extends $Command diff --git a/clients/client-qldb/src/commands/UpdateLedgerPermissionsModeCommand.ts b/clients/client-qldb/src/commands/UpdateLedgerPermissionsModeCommand.ts index 5189263484603..45c69207115dc 100644 --- a/clients/client-qldb/src/commands/UpdateLedgerPermissionsModeCommand.ts +++ b/clients/client-qldb/src/commands/UpdateLedgerPermissionsModeCommand.ts @@ -75,6 +75,7 @@ export interface UpdateLedgerPermissionsModeCommandOutput * @throws {@link QLDBServiceException} *

Base exception class for all service exceptions from QLDB service.

* + * * @public */ export class UpdateLedgerPermissionsModeCommand extends $Command diff --git a/clients/client-quicksight/src/commands/BatchCreateTopicReviewedAnswerCommand.ts b/clients/client-quicksight/src/commands/BatchCreateTopicReviewedAnswerCommand.ts index 3a2582f28238b..acec50373e75d 100644 --- a/clients/client-quicksight/src/commands/BatchCreateTopicReviewedAnswerCommand.ts +++ b/clients/client-quicksight/src/commands/BatchCreateTopicReviewedAnswerCommand.ts @@ -570,6 +570,7 @@ export interface BatchCreateTopicReviewedAnswerCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class BatchCreateTopicReviewedAnswerCommand extends $Command diff --git a/clients/client-quicksight/src/commands/BatchDeleteTopicReviewedAnswerCommand.ts b/clients/client-quicksight/src/commands/BatchDeleteTopicReviewedAnswerCommand.ts index ec0e0ecc6b08e..f2c6b786f33e7 100644 --- a/clients/client-quicksight/src/commands/BatchDeleteTopicReviewedAnswerCommand.ts +++ b/clients/client-quicksight/src/commands/BatchDeleteTopicReviewedAnswerCommand.ts @@ -99,6 +99,7 @@ export interface BatchDeleteTopicReviewedAnswerCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class BatchDeleteTopicReviewedAnswerCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CancelIngestionCommand.ts b/clients/client-quicksight/src/commands/CancelIngestionCommand.ts index c73a80c37bb1b..4f8e25e002295 100644 --- a/clients/client-quicksight/src/commands/CancelIngestionCommand.ts +++ b/clients/client-quicksight/src/commands/CancelIngestionCommand.ts @@ -81,6 +81,7 @@ export interface CancelIngestionCommandOutput extends CancelIngestionResponse, _ * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CancelIngestionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateAccountCustomizationCommand.ts b/clients/client-quicksight/src/commands/CreateAccountCustomizationCommand.ts index 31ce615e16b15..3adc46339c4b1 100644 --- a/clients/client-quicksight/src/commands/CreateAccountCustomizationCommand.ts +++ b/clients/client-quicksight/src/commands/CreateAccountCustomizationCommand.ts @@ -123,6 +123,7 @@ export interface CreateAccountCustomizationCommandOutput extends CreateAccountCu * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateAccountCustomizationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateAccountSubscriptionCommand.ts b/clients/client-quicksight/src/commands/CreateAccountSubscriptionCommand.ts index 53e96e5db2e40..599cb41f36224 100644 --- a/clients/client-quicksight/src/commands/CreateAccountSubscriptionCommand.ts +++ b/clients/client-quicksight/src/commands/CreateAccountSubscriptionCommand.ts @@ -141,6 +141,7 @@ export interface CreateAccountSubscriptionCommandOutput extends CreateAccountSub * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateAccountSubscriptionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateAnalysisCommand.ts b/clients/client-quicksight/src/commands/CreateAnalysisCommand.ts index 14530c55f86bb..51141a77b0b0e 100644 --- a/clients/client-quicksight/src/commands/CreateAnalysisCommand.ts +++ b/clients/client-quicksight/src/commands/CreateAnalysisCommand.ts @@ -5542,6 +5542,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateAnalysisCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateBrandCommand.ts b/clients/client-quicksight/src/commands/CreateBrandCommand.ts index c57818ceef07c..819b28da37cd5 100644 --- a/clients/client-quicksight/src/commands/CreateBrandCommand.ts +++ b/clients/client-quicksight/src/commands/CreateBrandCommand.ts @@ -252,6 +252,7 @@ export interface CreateBrandCommandOutput extends CreateBrandResponse, __Metadat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateBrandCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateCustomPermissionsCommand.ts b/clients/client-quicksight/src/commands/CreateCustomPermissionsCommand.ts index 36f8ea2538599..3831fafefc00a 100644 --- a/clients/client-quicksight/src/commands/CreateCustomPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/CreateCustomPermissionsCommand.ts @@ -116,6 +116,7 @@ export interface CreateCustomPermissionsCommandOutput extends CreateCustomPermis * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateCustomPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateDashboardCommand.ts b/clients/client-quicksight/src/commands/CreateDashboardCommand.ts index d73fd6e7cb11a..e47aef81af3ab 100644 --- a/clients/client-quicksight/src/commands/CreateDashboardCommand.ts +++ b/clients/client-quicksight/src/commands/CreateDashboardCommand.ts @@ -5597,6 +5597,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _ * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateDashboardCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateDataSetCommand.ts b/clients/client-quicksight/src/commands/CreateDataSetCommand.ts index 0dbac7db06f00..13d35b4228218 100644 --- a/clients/client-quicksight/src/commands/CreateDataSetCommand.ts +++ b/clients/client-quicksight/src/commands/CreateDataSetCommand.ts @@ -360,6 +360,7 @@ export interface CreateDataSetCommandOutput extends CreateDataSetResponse, __Met * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateDataSetCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateDataSourceCommand.ts b/clients/client-quicksight/src/commands/CreateDataSourceCommand.ts index 413c34c0d1191..0d21d882040b2 100644 --- a/clients/client-quicksight/src/commands/CreateDataSourceCommand.ts +++ b/clients/client-quicksight/src/commands/CreateDataSourceCommand.ts @@ -429,6 +429,7 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse, * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateDataSourceCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateFolderCommand.ts b/clients/client-quicksight/src/commands/CreateFolderCommand.ts index 056fae2eeee83..623da02c8cceb 100644 --- a/clients/client-quicksight/src/commands/CreateFolderCommand.ts +++ b/clients/client-quicksight/src/commands/CreateFolderCommand.ts @@ -110,6 +110,7 @@ export interface CreateFolderCommandOutput extends CreateFolderResponse, __Metad * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateFolderCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateFolderMembershipCommand.ts b/clients/client-quicksight/src/commands/CreateFolderMembershipCommand.ts index ae04b11a79cc0..a8c24abc42934 100644 --- a/clients/client-quicksight/src/commands/CreateFolderMembershipCommand.ts +++ b/clients/client-quicksight/src/commands/CreateFolderMembershipCommand.ts @@ -93,6 +93,7 @@ export interface CreateFolderMembershipCommandOutput extends CreateFolderMembers * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateFolderMembershipCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateGroupCommand.ts b/clients/client-quicksight/src/commands/CreateGroupCommand.ts index 8a4ee5f257015..378b1f50b36c9 100644 --- a/clients/client-quicksight/src/commands/CreateGroupCommand.ts +++ b/clients/client-quicksight/src/commands/CreateGroupCommand.ts @@ -99,6 +99,7 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateGroupCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateGroupMembershipCommand.ts b/clients/client-quicksight/src/commands/CreateGroupMembershipCommand.ts index 9cd58c6d77b3f..0f5c31334fe6b 100644 --- a/clients/client-quicksight/src/commands/CreateGroupMembershipCommand.ts +++ b/clients/client-quicksight/src/commands/CreateGroupMembershipCommand.ts @@ -87,6 +87,7 @@ export interface CreateGroupMembershipCommandOutput extends CreateGroupMembershi * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateGroupMembershipCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateIAMPolicyAssignmentCommand.ts b/clients/client-quicksight/src/commands/CreateIAMPolicyAssignmentCommand.ts index 3afe2b40872e2..816c793a1e540 100644 --- a/clients/client-quicksight/src/commands/CreateIAMPolicyAssignmentCommand.ts +++ b/clients/client-quicksight/src/commands/CreateIAMPolicyAssignmentCommand.ts @@ -103,6 +103,7 @@ export interface CreateIAMPolicyAssignmentCommandOutput extends CreateIAMPolicyA * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateIAMPolicyAssignmentCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateIngestionCommand.ts b/clients/client-quicksight/src/commands/CreateIngestionCommand.ts index 1c9c220565c5a..b30984ca3c80e 100644 --- a/clients/client-quicksight/src/commands/CreateIngestionCommand.ts +++ b/clients/client-quicksight/src/commands/CreateIngestionCommand.ts @@ -92,6 +92,7 @@ export interface CreateIngestionCommandOutput extends CreateIngestionResponse, _ * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateIngestionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateNamespaceCommand.ts b/clients/client-quicksight/src/commands/CreateNamespaceCommand.ts index bad8007ecd131..b79b10303340a 100644 --- a/clients/client-quicksight/src/commands/CreateNamespaceCommand.ts +++ b/clients/client-quicksight/src/commands/CreateNamespaceCommand.ts @@ -109,6 +109,7 @@ export interface CreateNamespaceCommandOutput extends CreateNamespaceResponse, _ * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateNamespaceCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/CreateRefreshScheduleCommand.ts index 23c923a1f9281..937c34936c5e8 100644 --- a/clients/client-quicksight/src/commands/CreateRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/CreateRefreshScheduleCommand.ts @@ -101,6 +101,7 @@ export interface CreateRefreshScheduleCommandOutput extends CreateRefreshSchedul * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateRefreshScheduleCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateRoleMembershipCommand.ts b/clients/client-quicksight/src/commands/CreateRoleMembershipCommand.ts index cbfe29693a3d7..dcf7a773f0571 100644 --- a/clients/client-quicksight/src/commands/CreateRoleMembershipCommand.ts +++ b/clients/client-quicksight/src/commands/CreateRoleMembershipCommand.ts @@ -83,6 +83,7 @@ export interface CreateRoleMembershipCommandOutput extends CreateRoleMembershipR * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateRoleMembershipCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateTemplateAliasCommand.ts b/clients/client-quicksight/src/commands/CreateTemplateAliasCommand.ts index 95f08421555c7..1cfa6eba4ef34 100644 --- a/clients/client-quicksight/src/commands/CreateTemplateAliasCommand.ts +++ b/clients/client-quicksight/src/commands/CreateTemplateAliasCommand.ts @@ -88,6 +88,7 @@ export interface CreateTemplateAliasCommandOutput extends CreateTemplateAliasRes * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateTemplateAliasCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateTemplateCommand.ts b/clients/client-quicksight/src/commands/CreateTemplateCommand.ts index 0fe6944c60e68..f59bba1bdc4d5 100644 --- a/clients/client-quicksight/src/commands/CreateTemplateCommand.ts +++ b/clients/client-quicksight/src/commands/CreateTemplateCommand.ts @@ -5540,6 +5540,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateTemplateCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateThemeAliasCommand.ts b/clients/client-quicksight/src/commands/CreateThemeAliasCommand.ts index 29e3500488c72..d5570fe20e0ed 100644 --- a/clients/client-quicksight/src/commands/CreateThemeAliasCommand.ts +++ b/clients/client-quicksight/src/commands/CreateThemeAliasCommand.ts @@ -91,6 +91,7 @@ export interface CreateThemeAliasCommandOutput extends CreateThemeAliasResponse, * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateThemeAliasCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateThemeCommand.ts b/clients/client-quicksight/src/commands/CreateThemeCommand.ts index b53ac6aeb49b4..99905cd8febb6 100644 --- a/clients/client-quicksight/src/commands/CreateThemeCommand.ts +++ b/clients/client-quicksight/src/commands/CreateThemeCommand.ts @@ -162,6 +162,7 @@ export interface CreateThemeCommandOutput extends CreateThemeResponse, __Metadat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateThemeCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateTopicCommand.ts b/clients/client-quicksight/src/commands/CreateTopicCommand.ts index e65579819ddb3..f3b01bd87b63a 100644 --- a/clients/client-quicksight/src/commands/CreateTopicCommand.ts +++ b/clients/client-quicksight/src/commands/CreateTopicCommand.ts @@ -347,6 +347,7 @@ export interface CreateTopicCommandOutput extends CreateTopicResponse, __Metadat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateTopicCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateTopicRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/CreateTopicRefreshScheduleCommand.ts index 27f17e61be184..cf9b9f26722c1 100644 --- a/clients/client-quicksight/src/commands/CreateTopicRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/CreateTopicRefreshScheduleCommand.ts @@ -97,6 +97,7 @@ export interface CreateTopicRefreshScheduleCommandOutput extends CreateTopicRefr * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateTopicRefreshScheduleCommand extends $Command diff --git a/clients/client-quicksight/src/commands/CreateVPCConnectionCommand.ts b/clients/client-quicksight/src/commands/CreateVPCConnectionCommand.ts index 9d8515afdd81c..b3c9fc066cf17 100644 --- a/clients/client-quicksight/src/commands/CreateVPCConnectionCommand.ts +++ b/clients/client-quicksight/src/commands/CreateVPCConnectionCommand.ts @@ -108,6 +108,7 @@ export interface CreateVPCConnectionCommandOutput extends CreateVPCConnectionRes * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class CreateVPCConnectionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteAccountCustomizationCommand.ts b/clients/client-quicksight/src/commands/DeleteAccountCustomizationCommand.ts index 7d998b425c734..c2ffb254b318d 100644 --- a/clients/client-quicksight/src/commands/DeleteAccountCustomizationCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteAccountCustomizationCommand.ts @@ -88,6 +88,7 @@ export interface DeleteAccountCustomizationCommandOutput extends DeleteAccountCu * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteAccountCustomizationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteAccountSubscriptionCommand.ts b/clients/client-quicksight/src/commands/DeleteAccountSubscriptionCommand.ts index 57bc2ccd4efed..b30ecc7237412 100644 --- a/clients/client-quicksight/src/commands/DeleteAccountSubscriptionCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteAccountSubscriptionCommand.ts @@ -80,6 +80,7 @@ export interface DeleteAccountSubscriptionCommandOutput extends DeleteAccountSub * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteAccountSubscriptionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteAnalysisCommand.ts b/clients/client-quicksight/src/commands/DeleteAnalysisCommand.ts index 18bb1653d878f..4d3086efdfc62 100644 --- a/clients/client-quicksight/src/commands/DeleteAnalysisCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteAnalysisCommand.ts @@ -94,6 +94,7 @@ export interface DeleteAnalysisCommandOutput extends DeleteAnalysisResponse, __M * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteAnalysisCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteBrandAssignmentCommand.ts b/clients/client-quicksight/src/commands/DeleteBrandAssignmentCommand.ts index 77388c2268f8a..ede4aee50e038 100644 --- a/clients/client-quicksight/src/commands/DeleteBrandAssignmentCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteBrandAssignmentCommand.ts @@ -76,6 +76,7 @@ export interface DeleteBrandAssignmentCommandOutput extends DeleteBrandAssignmen * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteBrandAssignmentCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteBrandCommand.ts b/clients/client-quicksight/src/commands/DeleteBrandCommand.ts index 474bb39eab90d..03826e33268e8 100644 --- a/clients/client-quicksight/src/commands/DeleteBrandCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteBrandCommand.ts @@ -77,6 +77,7 @@ export interface DeleteBrandCommandOutput extends DeleteBrandResponse, __Metadat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteBrandCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteCustomPermissionsCommand.ts b/clients/client-quicksight/src/commands/DeleteCustomPermissionsCommand.ts index c41cbf0d3109c..1b05cfe77e0ab 100644 --- a/clients/client-quicksight/src/commands/DeleteCustomPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteCustomPermissionsCommand.ts @@ -88,6 +88,7 @@ export interface DeleteCustomPermissionsCommandOutput extends DeleteCustomPermis * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteCustomPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteDashboardCommand.ts b/clients/client-quicksight/src/commands/DeleteDashboardCommand.ts index ad12aac876f89..8b956c883614b 100644 --- a/clients/client-quicksight/src/commands/DeleteDashboardCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteDashboardCommand.ts @@ -81,6 +81,7 @@ export interface DeleteDashboardCommandOutput extends DeleteDashboardResponse, _ * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteDashboardCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteDataSetCommand.ts b/clients/client-quicksight/src/commands/DeleteDataSetCommand.ts index 3bbd9ef1f49e0..c51663b36cdf9 100644 --- a/clients/client-quicksight/src/commands/DeleteDataSetCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteDataSetCommand.ts @@ -77,6 +77,7 @@ export interface DeleteDataSetCommandOutput extends DeleteDataSetResponse, __Met * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteDataSetCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteDataSetRefreshPropertiesCommand.ts b/clients/client-quicksight/src/commands/DeleteDataSetRefreshPropertiesCommand.ts index 04d6442f4a9ec..93362207c7f39 100644 --- a/clients/client-quicksight/src/commands/DeleteDataSetRefreshPropertiesCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteDataSetRefreshPropertiesCommand.ts @@ -86,6 +86,7 @@ export interface DeleteDataSetRefreshPropertiesCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteDataSetRefreshPropertiesCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteDataSourceCommand.ts b/clients/client-quicksight/src/commands/DeleteDataSourceCommand.ts index 4c94e5c6877a9..6cdf3966eb2db 100644 --- a/clients/client-quicksight/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteDataSourceCommand.ts @@ -78,6 +78,7 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceResponse, * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteDataSourceCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteDefaultQBusinessApplicationCommand.ts b/clients/client-quicksight/src/commands/DeleteDefaultQBusinessApplicationCommand.ts index 2fdef0d42a940..1a8c1e79e8b3f 100644 --- a/clients/client-quicksight/src/commands/DeleteDefaultQBusinessApplicationCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteDefaultQBusinessApplicationCommand.ts @@ -83,6 +83,7 @@ export interface DeleteDefaultQBusinessApplicationCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteDefaultQBusinessApplicationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteFolderCommand.ts b/clients/client-quicksight/src/commands/DeleteFolderCommand.ts index bb84e19f73b55..4f272b8b41fb4 100644 --- a/clients/client-quicksight/src/commands/DeleteFolderCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteFolderCommand.ts @@ -89,6 +89,7 @@ export interface DeleteFolderCommandOutput extends DeleteFolderResponse, __Metad * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteFolderCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteFolderMembershipCommand.ts b/clients/client-quicksight/src/commands/DeleteFolderMembershipCommand.ts index 46ce2a0eccb00..b1b8bcba233e7 100644 --- a/clients/client-quicksight/src/commands/DeleteFolderMembershipCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteFolderMembershipCommand.ts @@ -83,6 +83,7 @@ export interface DeleteFolderMembershipCommandOutput extends DeleteFolderMembers * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteFolderMembershipCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteGroupCommand.ts b/clients/client-quicksight/src/commands/DeleteGroupCommand.ts index 7491b0fe0b3d2..184b5c17e454a 100644 --- a/clients/client-quicksight/src/commands/DeleteGroupCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteGroupCommand.ts @@ -82,6 +82,7 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __Metadat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteGroupCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteGroupMembershipCommand.ts b/clients/client-quicksight/src/commands/DeleteGroupMembershipCommand.ts index 25c6aebbe450a..27c103ce7af34 100644 --- a/clients/client-quicksight/src/commands/DeleteGroupMembershipCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteGroupMembershipCommand.ts @@ -83,6 +83,7 @@ export interface DeleteGroupMembershipCommandOutput extends DeleteGroupMembershi * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteGroupMembershipCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteIAMPolicyAssignmentCommand.ts b/clients/client-quicksight/src/commands/DeleteIAMPolicyAssignmentCommand.ts index 64ca81710e9ba..81e65961b78a5 100644 --- a/clients/client-quicksight/src/commands/DeleteIAMPolicyAssignmentCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteIAMPolicyAssignmentCommand.ts @@ -84,6 +84,7 @@ export interface DeleteIAMPolicyAssignmentCommandOutput extends DeleteIAMPolicyA * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteIAMPolicyAssignmentCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteIdentityPropagationConfigCommand.ts b/clients/client-quicksight/src/commands/DeleteIdentityPropagationConfigCommand.ts index 3da0fb206ff0b..6d83b1dfe5fb4 100644 --- a/clients/client-quicksight/src/commands/DeleteIdentityPropagationConfigCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteIdentityPropagationConfigCommand.ts @@ -81,6 +81,7 @@ export interface DeleteIdentityPropagationConfigCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteIdentityPropagationConfigCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteNamespaceCommand.ts b/clients/client-quicksight/src/commands/DeleteNamespaceCommand.ts index 9ad248156c423..82c1d1e6b71da 100644 --- a/clients/client-quicksight/src/commands/DeleteNamespaceCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteNamespaceCommand.ts @@ -83,6 +83,7 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _ * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteNamespaceCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/DeleteRefreshScheduleCommand.ts index 829027f717ab7..056abefdb7ab0 100644 --- a/clients/client-quicksight/src/commands/DeleteRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteRefreshScheduleCommand.ts @@ -81,6 +81,7 @@ export interface DeleteRefreshScheduleCommandOutput extends DeleteRefreshSchedul * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteRefreshScheduleCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteRoleCustomPermissionCommand.ts b/clients/client-quicksight/src/commands/DeleteRoleCustomPermissionCommand.ts index 62c3853349c44..e5ac687bc0308 100644 --- a/clients/client-quicksight/src/commands/DeleteRoleCustomPermissionCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteRoleCustomPermissionCommand.ts @@ -82,6 +82,7 @@ export interface DeleteRoleCustomPermissionCommandOutput extends DeleteRoleCusto * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteRoleCustomPermissionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteRoleMembershipCommand.ts b/clients/client-quicksight/src/commands/DeleteRoleMembershipCommand.ts index e48b130faee9d..577b04cae9cec 100644 --- a/clients/client-quicksight/src/commands/DeleteRoleMembershipCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteRoleMembershipCommand.ts @@ -83,6 +83,7 @@ export interface DeleteRoleMembershipCommandOutput extends DeleteRoleMembershipR * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteRoleMembershipCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteTemplateAliasCommand.ts b/clients/client-quicksight/src/commands/DeleteTemplateAliasCommand.ts index 508f48bbf5926..6cc803f076968 100644 --- a/clients/client-quicksight/src/commands/DeleteTemplateAliasCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteTemplateAliasCommand.ts @@ -80,6 +80,7 @@ export interface DeleteTemplateAliasCommandOutput extends DeleteTemplateAliasRes * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteTemplateAliasCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteTemplateCommand.ts b/clients/client-quicksight/src/commands/DeleteTemplateCommand.ts index 35bfb91ed59a3..f8afb0cd21def 100644 --- a/clients/client-quicksight/src/commands/DeleteTemplateCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteTemplateCommand.ts @@ -84,6 +84,7 @@ export interface DeleteTemplateCommandOutput extends DeleteTemplateResponse, __M * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteTemplateCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteThemeAliasCommand.ts b/clients/client-quicksight/src/commands/DeleteThemeAliasCommand.ts index f1f5a0c1bf3a3..760c9e3edc792 100644 --- a/clients/client-quicksight/src/commands/DeleteThemeAliasCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteThemeAliasCommand.ts @@ -84,6 +84,7 @@ export interface DeleteThemeAliasCommandOutput extends DeleteThemeAliasResponse, * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteThemeAliasCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteThemeCommand.ts b/clients/client-quicksight/src/commands/DeleteThemeCommand.ts index 1de65249e8e90..30479af0328ad 100644 --- a/clients/client-quicksight/src/commands/DeleteThemeCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteThemeCommand.ts @@ -87,6 +87,7 @@ export interface DeleteThemeCommandOutput extends DeleteThemeResponse, __Metadat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteThemeCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteTopicCommand.ts b/clients/client-quicksight/src/commands/DeleteTopicCommand.ts index d1d3e4472c435..5fe9df08df512 100644 --- a/clients/client-quicksight/src/commands/DeleteTopicCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteTopicCommand.ts @@ -80,6 +80,7 @@ export interface DeleteTopicCommandOutput extends DeleteTopicResponse, __Metadat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteTopicCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteTopicRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/DeleteTopicRefreshScheduleCommand.ts index 50cf71e369547..ec4afdc786e9d 100644 --- a/clients/client-quicksight/src/commands/DeleteTopicRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteTopicRefreshScheduleCommand.ts @@ -88,6 +88,7 @@ export interface DeleteTopicRefreshScheduleCommandOutput extends DeleteTopicRefr * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteTopicRefreshScheduleCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteUserByPrincipalIdCommand.ts b/clients/client-quicksight/src/commands/DeleteUserByPrincipalIdCommand.ts index 1e42411f66356..b51514da0bfcf 100644 --- a/clients/client-quicksight/src/commands/DeleteUserByPrincipalIdCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteUserByPrincipalIdCommand.ts @@ -82,6 +82,7 @@ export interface DeleteUserByPrincipalIdCommandOutput extends DeleteUserByPrinci * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteUserByPrincipalIdCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteUserCommand.ts b/clients/client-quicksight/src/commands/DeleteUserCommand.ts index 9295c15f2925a..909a45f020da3 100644 --- a/clients/client-quicksight/src/commands/DeleteUserCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteUserCommand.ts @@ -84,6 +84,7 @@ export interface DeleteUserCommandOutput extends DeleteUserResponse, __MetadataB * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteUserCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteUserCustomPermissionCommand.ts b/clients/client-quicksight/src/commands/DeleteUserCustomPermissionCommand.ts index 3f5be5a820aa7..4ca5b4e785f21 100644 --- a/clients/client-quicksight/src/commands/DeleteUserCustomPermissionCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteUserCustomPermissionCommand.ts @@ -85,6 +85,7 @@ export interface DeleteUserCustomPermissionCommandOutput extends DeleteUserCusto * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteUserCustomPermissionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DeleteVPCConnectionCommand.ts b/clients/client-quicksight/src/commands/DeleteVPCConnectionCommand.ts index 703eaf6ea7996..4bcca7fc3fd25 100644 --- a/clients/client-quicksight/src/commands/DeleteVPCConnectionCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteVPCConnectionCommand.ts @@ -88,6 +88,7 @@ export interface DeleteVPCConnectionCommandOutput extends DeleteVPCConnectionRes * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DeleteVPCConnectionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeAccountCustomizationCommand.ts b/clients/client-quicksight/src/commands/DescribeAccountCustomizationCommand.ts index f514d30174f3c..e8d45e20e4913 100644 --- a/clients/client-quicksight/src/commands/DescribeAccountCustomizationCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAccountCustomizationCommand.ts @@ -147,6 +147,7 @@ export interface DescribeAccountCustomizationCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeAccountCustomizationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeAccountSettingsCommand.ts b/clients/client-quicksight/src/commands/DescribeAccountSettingsCommand.ts index 54d094313e658..80572e5f3332b 100644 --- a/clients/client-quicksight/src/commands/DescribeAccountSettingsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAccountSettingsCommand.ts @@ -86,6 +86,7 @@ export interface DescribeAccountSettingsCommandOutput extends DescribeAccountSet * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeAccountSettingsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeAccountSubscriptionCommand.ts b/clients/client-quicksight/src/commands/DescribeAccountSubscriptionCommand.ts index c6cc19b05c39d..9712a517a882b 100644 --- a/clients/client-quicksight/src/commands/DescribeAccountSubscriptionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAccountSubscriptionCommand.ts @@ -90,6 +90,7 @@ export interface DescribeAccountSubscriptionCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeAccountSubscriptionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeAnalysisCommand.ts b/clients/client-quicksight/src/commands/DescribeAnalysisCommand.ts index bd3034058b857..05c0958d384ff 100644 --- a/clients/client-quicksight/src/commands/DescribeAnalysisCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAnalysisCommand.ts @@ -190,6 +190,7 @@ export interface DescribeAnalysisCommandOutput extends DescribeAnalysisResponse, * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeAnalysisCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeAnalysisDefinitionCommand.ts b/clients/client-quicksight/src/commands/DescribeAnalysisDefinitionCommand.ts index 736e9cf574f10..26f76a87779ed 100644 --- a/clients/client-quicksight/src/commands/DescribeAnalysisDefinitionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAnalysisDefinitionCommand.ts @@ -5498,6 +5498,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeAnalysisDefinitionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeAnalysisPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeAnalysisPermissionsCommand.ts index 39e0019647175..7203d68a6bf7c 100644 --- a/clients/client-quicksight/src/commands/DescribeAnalysisPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAnalysisPermissionsCommand.ts @@ -90,6 +90,7 @@ export interface DescribeAnalysisPermissionsCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeAnalysisPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeAssetBundleExportJobCommand.ts b/clients/client-quicksight/src/commands/DescribeAssetBundleExportJobCommand.ts index 156678452aeef..f6da7810c5d14 100644 --- a/clients/client-quicksight/src/commands/DescribeAssetBundleExportJobCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAssetBundleExportJobCommand.ts @@ -180,6 +180,7 @@ export interface DescribeAssetBundleExportJobCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeAssetBundleExportJobCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeAssetBundleImportJobCommand.ts b/clients/client-quicksight/src/commands/DescribeAssetBundleImportJobCommand.ts index b4a66fff34b92..a7f67ddae2465 100644 --- a/clients/client-quicksight/src/commands/DescribeAssetBundleImportJobCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAssetBundleImportJobCommand.ts @@ -496,6 +496,7 @@ export interface DescribeAssetBundleImportJobCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeAssetBundleImportJobCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeBrandAssignmentCommand.ts b/clients/client-quicksight/src/commands/DescribeBrandAssignmentCommand.ts index c50915e2125ae..ae26d6c9c8412 100644 --- a/clients/client-quicksight/src/commands/DescribeBrandAssignmentCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeBrandAssignmentCommand.ts @@ -77,6 +77,7 @@ export interface DescribeBrandAssignmentCommandOutput extends DescribeBrandAssig * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeBrandAssignmentCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeBrandCommand.ts b/clients/client-quicksight/src/commands/DescribeBrandCommand.ts index dc26bcf923488..574d6320f3f18 100644 --- a/clients/client-quicksight/src/commands/DescribeBrandCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeBrandCommand.ts @@ -188,6 +188,7 @@ export interface DescribeBrandCommandOutput extends DescribeBrandResponse, __Met * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeBrandCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeBrandPublishedVersionCommand.ts b/clients/client-quicksight/src/commands/DescribeBrandPublishedVersionCommand.ts index 4091a910f7d52..090f97bf27642 100644 --- a/clients/client-quicksight/src/commands/DescribeBrandPublishedVersionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeBrandPublishedVersionCommand.ts @@ -192,6 +192,7 @@ export interface DescribeBrandPublishedVersionCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeBrandPublishedVersionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeCustomPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeCustomPermissionsCommand.ts index aa283b8c7c900..4c938f8472e36 100644 --- a/clients/client-quicksight/src/commands/DescribeCustomPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeCustomPermissionsCommand.ts @@ -104,6 +104,7 @@ export interface DescribeCustomPermissionsCommandOutput extends DescribeCustomPe * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeCustomPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeDashboardCommand.ts b/clients/client-quicksight/src/commands/DescribeDashboardCommand.ts index d6b8f5b6dfd0e..4c0b2b16661bb 100644 --- a/clients/client-quicksight/src/commands/DescribeDashboardCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDashboardCommand.ts @@ -206,6 +206,7 @@ export interface DescribeDashboardCommandOutput extends DescribeDashboardRespons * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeDashboardCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeDashboardDefinitionCommand.ts b/clients/client-quicksight/src/commands/DescribeDashboardDefinitionCommand.ts index 891631283b4c6..571c71e2bca0d 100644 --- a/clients/client-quicksight/src/commands/DescribeDashboardDefinitionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDashboardDefinitionCommand.ts @@ -5537,6 +5537,7 @@ export interface DescribeDashboardDefinitionCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeDashboardDefinitionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeDashboardPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeDashboardPermissionsCommand.ts index a10b21e342dcd..a055a0925e960 100644 --- a/clients/client-quicksight/src/commands/DescribeDashboardPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDashboardPermissionsCommand.ts @@ -100,6 +100,7 @@ export interface DescribeDashboardPermissionsCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeDashboardPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobCommand.ts b/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobCommand.ts index 20394a10d340c..6a6d07ec4b7f2 100644 --- a/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobCommand.ts @@ -170,6 +170,7 @@ export interface DescribeDashboardSnapshotJobCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeDashboardSnapshotJobCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobResultCommand.ts b/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobResultCommand.ts index c31f0d347b198..98f9b91f5cb6a 100644 --- a/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobResultCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobResultCommand.ts @@ -146,6 +146,7 @@ export interface DescribeDashboardSnapshotJobResultCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeDashboardSnapshotJobResultCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeDashboardsQAConfigurationCommand.ts b/clients/client-quicksight/src/commands/DescribeDashboardsQAConfigurationCommand.ts index 07bb038a3cfc0..aa6f1db5b4928 100644 --- a/clients/client-quicksight/src/commands/DescribeDashboardsQAConfigurationCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDashboardsQAConfigurationCommand.ts @@ -86,6 +86,7 @@ export interface DescribeDashboardsQAConfigurationCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeDashboardsQAConfigurationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeDataSetCommand.ts b/clients/client-quicksight/src/commands/DescribeDataSetCommand.ts index 22b816671dea2..1de92f7c0fdb8 100644 --- a/clients/client-quicksight/src/commands/DescribeDataSetCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDataSetCommand.ts @@ -339,6 +339,7 @@ export interface DescribeDataSetCommandOutput extends DescribeDataSetResponse, _ * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeDataSetCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeDataSetPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeDataSetPermissionsCommand.ts index 62e73cfc10662..592858a59f82b 100644 --- a/clients/client-quicksight/src/commands/DescribeDataSetPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDataSetPermissionsCommand.ts @@ -86,6 +86,7 @@ export interface DescribeDataSetPermissionsCommandOutput extends DescribeDataSet * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeDataSetPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeDataSetRefreshPropertiesCommand.ts b/clients/client-quicksight/src/commands/DescribeDataSetRefreshPropertiesCommand.ts index 8993885445fda..06e6520374d57 100644 --- a/clients/client-quicksight/src/commands/DescribeDataSetRefreshPropertiesCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDataSetRefreshPropertiesCommand.ts @@ -97,6 +97,7 @@ export interface DescribeDataSetRefreshPropertiesCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeDataSetRefreshPropertiesCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeDataSourceCommand.ts b/clients/client-quicksight/src/commands/DescribeDataSourceCommand.ts index bb0d70a87a121..11ccd6701d283 100644 --- a/clients/client-quicksight/src/commands/DescribeDataSourceCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDataSourceCommand.ts @@ -397,6 +397,7 @@ export interface DescribeDataSourceCommandOutput extends DescribeDataSourceRespo * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeDataSourceCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeDataSourcePermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeDataSourcePermissionsCommand.ts index 99ebe1426e22c..dcbb1b8e17a87 100644 --- a/clients/client-quicksight/src/commands/DescribeDataSourcePermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDataSourcePermissionsCommand.ts @@ -90,6 +90,7 @@ export interface DescribeDataSourcePermissionsCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeDataSourcePermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeDefaultQBusinessApplicationCommand.ts b/clients/client-quicksight/src/commands/DescribeDefaultQBusinessApplicationCommand.ts index 47e3699410769..5619f748b8323 100644 --- a/clients/client-quicksight/src/commands/DescribeDefaultQBusinessApplicationCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDefaultQBusinessApplicationCommand.ts @@ -84,6 +84,7 @@ export interface DescribeDefaultQBusinessApplicationCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeDefaultQBusinessApplicationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeFolderCommand.ts b/clients/client-quicksight/src/commands/DescribeFolderCommand.ts index bfce7ca98b562..54f867f14c15f 100644 --- a/clients/client-quicksight/src/commands/DescribeFolderCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeFolderCommand.ts @@ -93,6 +93,7 @@ export interface DescribeFolderCommandOutput extends DescribeFolderResponse, __M * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeFolderCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeFolderPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeFolderPermissionsCommand.ts index e5ab210ed26d7..ae02ae6637bd5 100644 --- a/clients/client-quicksight/src/commands/DescribeFolderPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeFolderPermissionsCommand.ts @@ -98,6 +98,7 @@ export interface DescribeFolderPermissionsCommandOutput extends DescribeFolderPe * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeFolderPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeFolderResolvedPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeFolderResolvedPermissionsCommand.ts index 638dec0a8f9fb..28f8b6a961777 100644 --- a/clients/client-quicksight/src/commands/DescribeFolderResolvedPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeFolderResolvedPermissionsCommand.ts @@ -106,6 +106,7 @@ export interface DescribeFolderResolvedPermissionsCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeFolderResolvedPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeGroupCommand.ts b/clients/client-quicksight/src/commands/DescribeGroupCommand.ts index dd129dd50d2d9..eff477c097916 100644 --- a/clients/client-quicksight/src/commands/DescribeGroupCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeGroupCommand.ts @@ -88,6 +88,7 @@ export interface DescribeGroupCommandOutput extends DescribeGroupResponse, __Met * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeGroupCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeGroupMembershipCommand.ts b/clients/client-quicksight/src/commands/DescribeGroupMembershipCommand.ts index 17ff7f1d56bcf..d3ac5238cecc7 100644 --- a/clients/client-quicksight/src/commands/DescribeGroupMembershipCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeGroupMembershipCommand.ts @@ -89,6 +89,7 @@ export interface DescribeGroupMembershipCommandOutput extends DescribeGroupMembe * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeGroupMembershipCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeIAMPolicyAssignmentCommand.ts b/clients/client-quicksight/src/commands/DescribeIAMPolicyAssignmentCommand.ts index c0f0e1e690e69..efaa5117bb39a 100644 --- a/clients/client-quicksight/src/commands/DescribeIAMPolicyAssignmentCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeIAMPolicyAssignmentCommand.ts @@ -97,6 +97,7 @@ export interface DescribeIAMPolicyAssignmentCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeIAMPolicyAssignmentCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeIngestionCommand.ts b/clients/client-quicksight/src/commands/DescribeIngestionCommand.ts index e9602b0869cb9..b37638e3cc483 100644 --- a/clients/client-quicksight/src/commands/DescribeIngestionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeIngestionCommand.ts @@ -102,6 +102,7 @@ export interface DescribeIngestionCommandOutput extends DescribeIngestionRespons * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeIngestionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeIpRestrictionCommand.ts b/clients/client-quicksight/src/commands/DescribeIpRestrictionCommand.ts index d264056fdb3dd..867757cb8d4ff 100644 --- a/clients/client-quicksight/src/commands/DescribeIpRestrictionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeIpRestrictionCommand.ts @@ -85,6 +85,7 @@ export interface DescribeIpRestrictionCommandOutput extends DescribeIpRestrictio * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeIpRestrictionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeKeyRegistrationCommand.ts b/clients/client-quicksight/src/commands/DescribeKeyRegistrationCommand.ts index 71fe0b140a1e5..a3643a2bb5832 100644 --- a/clients/client-quicksight/src/commands/DescribeKeyRegistrationCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeKeyRegistrationCommand.ts @@ -79,6 +79,7 @@ export interface DescribeKeyRegistrationCommandOutput extends DescribeKeyRegistr * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeKeyRegistrationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeNamespaceCommand.ts b/clients/client-quicksight/src/commands/DescribeNamespaceCommand.ts index e45af0b4e0346..0bb8e200f8367 100644 --- a/clients/client-quicksight/src/commands/DescribeNamespaceCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeNamespaceCommand.ts @@ -91,6 +91,7 @@ export interface DescribeNamespaceCommandOutput extends DescribeNamespaceRespons * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeNamespaceCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeQPersonalizationConfigurationCommand.ts b/clients/client-quicksight/src/commands/DescribeQPersonalizationConfigurationCommand.ts index aac4d1824938b..ea6e78b07943f 100644 --- a/clients/client-quicksight/src/commands/DescribeQPersonalizationConfigurationCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeQPersonalizationConfigurationCommand.ts @@ -87,6 +87,7 @@ export interface DescribeQPersonalizationConfigurationCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeQPersonalizationConfigurationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeQuickSightQSearchConfigurationCommand.ts b/clients/client-quicksight/src/commands/DescribeQuickSightQSearchConfigurationCommand.ts index f6322e104e798..ead4c78c0da6c 100644 --- a/clients/client-quicksight/src/commands/DescribeQuickSightQSearchConfigurationCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeQuickSightQSearchConfigurationCommand.ts @@ -87,6 +87,7 @@ export interface DescribeQuickSightQSearchConfigurationCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeQuickSightQSearchConfigurationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/DescribeRefreshScheduleCommand.ts index 70532b6839fde..45566bde380a2 100644 --- a/clients/client-quicksight/src/commands/DescribeRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeRefreshScheduleCommand.ts @@ -95,6 +95,7 @@ export interface DescribeRefreshScheduleCommandOutput extends DescribeRefreshSch * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeRefreshScheduleCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeRoleCustomPermissionCommand.ts b/clients/client-quicksight/src/commands/DescribeRoleCustomPermissionCommand.ts index 5d2427d4fb7ab..762c2a9f16c44 100644 --- a/clients/client-quicksight/src/commands/DescribeRoleCustomPermissionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeRoleCustomPermissionCommand.ts @@ -88,6 +88,7 @@ export interface DescribeRoleCustomPermissionCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeRoleCustomPermissionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeTemplateAliasCommand.ts b/clients/client-quicksight/src/commands/DescribeTemplateAliasCommand.ts index 924d146f60dbb..5fa806a6383ee 100644 --- a/clients/client-quicksight/src/commands/DescribeTemplateAliasCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTemplateAliasCommand.ts @@ -78,6 +78,7 @@ export interface DescribeTemplateAliasCommandOutput extends DescribeTemplateAlia * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeTemplateAliasCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeTemplateCommand.ts b/clients/client-quicksight/src/commands/DescribeTemplateCommand.ts index 603a13af7d2e5..42683936f7e90 100644 --- a/clients/client-quicksight/src/commands/DescribeTemplateCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTemplateCommand.ts @@ -228,6 +228,7 @@ export interface DescribeTemplateCommandOutput extends DescribeTemplateResponse, * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeTemplateCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeTemplateDefinitionCommand.ts b/clients/client-quicksight/src/commands/DescribeTemplateDefinitionCommand.ts index aea968ff55493..cb57c2554f9ee 100644 --- a/clients/client-quicksight/src/commands/DescribeTemplateDefinitionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTemplateDefinitionCommand.ts @@ -5518,6 +5518,7 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeTemplateDefinitionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeTemplatePermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeTemplatePermissionsCommand.ts index 738cd4c3f332d..9f13458e1e8dc 100644 --- a/clients/client-quicksight/src/commands/DescribeTemplatePermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTemplatePermissionsCommand.ts @@ -93,6 +93,7 @@ export interface DescribeTemplatePermissionsCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeTemplatePermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeThemeAliasCommand.ts b/clients/client-quicksight/src/commands/DescribeThemeAliasCommand.ts index 4ae88d0875581..83da0cbc5c679 100644 --- a/clients/client-quicksight/src/commands/DescribeThemeAliasCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeThemeAliasCommand.ts @@ -84,6 +84,7 @@ export interface DescribeThemeAliasCommandOutput extends DescribeThemeAliasRespo * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeThemeAliasCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeThemeCommand.ts b/clients/client-quicksight/src/commands/DescribeThemeCommand.ts index d34d6ff39e71b..bdbd3df61e8df 100644 --- a/clients/client-quicksight/src/commands/DescribeThemeCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeThemeCommand.ts @@ -159,6 +159,7 @@ export interface DescribeThemeCommandOutput extends DescribeThemeResponse, __Met * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeThemeCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeThemePermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeThemePermissionsCommand.ts index 69d045502e00b..2ec0c6a64d4de 100644 --- a/clients/client-quicksight/src/commands/DescribeThemePermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeThemePermissionsCommand.ts @@ -91,6 +91,7 @@ export interface DescribeThemePermissionsCommandOutput extends DescribeThemePerm * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeThemePermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeTopicCommand.ts b/clients/client-quicksight/src/commands/DescribeTopicCommand.ts index 52f9fd0ecf00e..6427f35a3490c 100644 --- a/clients/client-quicksight/src/commands/DescribeTopicCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTopicCommand.ts @@ -332,6 +332,7 @@ export interface DescribeTopicCommandOutput extends DescribeTopicResponse, __Met * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeTopicCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeTopicPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeTopicPermissionsCommand.ts index 947b6783d1077..7df68c5a4a0a0 100644 --- a/clients/client-quicksight/src/commands/DescribeTopicPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTopicPermissionsCommand.ts @@ -85,6 +85,7 @@ export interface DescribeTopicPermissionsCommandOutput extends DescribeTopicPerm * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeTopicPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeTopicRefreshCommand.ts b/clients/client-quicksight/src/commands/DescribeTopicRefreshCommand.ts index a7491d4e20676..f2452846ba003 100644 --- a/clients/client-quicksight/src/commands/DescribeTopicRefreshCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTopicRefreshCommand.ts @@ -81,6 +81,7 @@ export interface DescribeTopicRefreshCommandOutput extends DescribeTopicRefreshR * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeTopicRefreshCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeTopicRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/DescribeTopicRefreshScheduleCommand.ts index 8e8a16010e16a..425b364d9c057 100644 --- a/clients/client-quicksight/src/commands/DescribeTopicRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTopicRefreshScheduleCommand.ts @@ -101,6 +101,7 @@ export interface DescribeTopicRefreshScheduleCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeTopicRefreshScheduleCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeUserCommand.ts b/clients/client-quicksight/src/commands/DescribeUserCommand.ts index f91327ec3999e..0f9ab20939da5 100644 --- a/clients/client-quicksight/src/commands/DescribeUserCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeUserCommand.ts @@ -95,6 +95,7 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeUserCommand extends $Command diff --git a/clients/client-quicksight/src/commands/DescribeVPCConnectionCommand.ts b/clients/client-quicksight/src/commands/DescribeVPCConnectionCommand.ts index ff49ce154455d..96f1fa3d56d7c 100644 --- a/clients/client-quicksight/src/commands/DescribeVPCConnectionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeVPCConnectionCommand.ts @@ -107,6 +107,7 @@ export interface DescribeVPCConnectionCommandOutput extends DescribeVPCConnectio * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class DescribeVPCConnectionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/GenerateEmbedUrlForAnonymousUserCommand.ts b/clients/client-quicksight/src/commands/GenerateEmbedUrlForAnonymousUserCommand.ts index 1cdf08b669492..39ee5e7cfdb6a 100644 --- a/clients/client-quicksight/src/commands/GenerateEmbedUrlForAnonymousUserCommand.ts +++ b/clients/client-quicksight/src/commands/GenerateEmbedUrlForAnonymousUserCommand.ts @@ -167,6 +167,7 @@ export interface GenerateEmbedUrlForAnonymousUserCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class GenerateEmbedUrlForAnonymousUserCommand extends $Command diff --git a/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserCommand.ts b/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserCommand.ts index c67253e866f5f..850dee8057bd1 100644 --- a/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserCommand.ts +++ b/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserCommand.ts @@ -175,6 +175,7 @@ export interface GenerateEmbedUrlForRegisteredUserCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class GenerateEmbedUrlForRegisteredUserCommand extends $Command diff --git a/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserWithIdentityCommand.ts b/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserWithIdentityCommand.ts index cf4a47497cd1f..cf9e4f4873109 100644 --- a/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserWithIdentityCommand.ts +++ b/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserWithIdentityCommand.ts @@ -156,6 +156,7 @@ export interface GenerateEmbedUrlForRegisteredUserWithIdentityCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class GenerateEmbedUrlForRegisteredUserWithIdentityCommand extends $Command diff --git a/clients/client-quicksight/src/commands/GetDashboardEmbedUrlCommand.ts b/clients/client-quicksight/src/commands/GetDashboardEmbedUrlCommand.ts index 0c68af2431873..5e017f7cdcfcf 100644 --- a/clients/client-quicksight/src/commands/GetDashboardEmbedUrlCommand.ts +++ b/clients/client-quicksight/src/commands/GetDashboardEmbedUrlCommand.ts @@ -148,6 +148,7 @@ export interface GetDashboardEmbedUrlCommandOutput extends GetDashboardEmbedUrlR * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class GetDashboardEmbedUrlCommand extends $Command diff --git a/clients/client-quicksight/src/commands/GetSessionEmbedUrlCommand.ts b/clients/client-quicksight/src/commands/GetSessionEmbedUrlCommand.ts index 4c34702505d04..12782bdfa6b5d 100644 --- a/clients/client-quicksight/src/commands/GetSessionEmbedUrlCommand.ts +++ b/clients/client-quicksight/src/commands/GetSessionEmbedUrlCommand.ts @@ -125,6 +125,7 @@ export interface GetSessionEmbedUrlCommandOutput extends GetSessionEmbedUrlRespo * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class GetSessionEmbedUrlCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListAnalysesCommand.ts b/clients/client-quicksight/src/commands/ListAnalysesCommand.ts index c77c0e25668c7..eb7dc3120529e 100644 --- a/clients/client-quicksight/src/commands/ListAnalysesCommand.ts +++ b/clients/client-quicksight/src/commands/ListAnalysesCommand.ts @@ -84,6 +84,7 @@ export interface ListAnalysesCommandOutput extends ListAnalysesResponse, __Metad * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListAnalysesCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListAssetBundleExportJobsCommand.ts b/clients/client-quicksight/src/commands/ListAssetBundleExportJobsCommand.ts index 907e641c480e2..ed569767fe817 100644 --- a/clients/client-quicksight/src/commands/ListAssetBundleExportJobsCommand.ts +++ b/clients/client-quicksight/src/commands/ListAssetBundleExportJobsCommand.ts @@ -92,6 +92,7 @@ export interface ListAssetBundleExportJobsCommandOutput extends ListAssetBundleE * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListAssetBundleExportJobsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListAssetBundleImportJobsCommand.ts b/clients/client-quicksight/src/commands/ListAssetBundleImportJobsCommand.ts index 1467e4f1f9fcd..fdc63623de142 100644 --- a/clients/client-quicksight/src/commands/ListAssetBundleImportJobsCommand.ts +++ b/clients/client-quicksight/src/commands/ListAssetBundleImportJobsCommand.ts @@ -89,6 +89,7 @@ export interface ListAssetBundleImportJobsCommandOutput extends ListAssetBundleI * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListAssetBundleImportJobsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListBrandsCommand.ts b/clients/client-quicksight/src/commands/ListBrandsCommand.ts index ada51faa963e1..9952494539890 100644 --- a/clients/client-quicksight/src/commands/ListBrandsCommand.ts +++ b/clients/client-quicksight/src/commands/ListBrandsCommand.ts @@ -83,6 +83,7 @@ export interface ListBrandsCommandOutput extends ListBrandsResponse, __MetadataB * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListBrandsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListCustomPermissionsCommand.ts b/clients/client-quicksight/src/commands/ListCustomPermissionsCommand.ts index a1c2c867c06ff..a48634a4c2179 100644 --- a/clients/client-quicksight/src/commands/ListCustomPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/ListCustomPermissionsCommand.ts @@ -108,6 +108,7 @@ export interface ListCustomPermissionsCommandOutput extends ListCustomPermission * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListCustomPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListDashboardVersionsCommand.ts b/clients/client-quicksight/src/commands/ListDashboardVersionsCommand.ts index 86688d56c9af5..5c32057554c96 100644 --- a/clients/client-quicksight/src/commands/ListDashboardVersionsCommand.ts +++ b/clients/client-quicksight/src/commands/ListDashboardVersionsCommand.ts @@ -91,6 +91,7 @@ export interface ListDashboardVersionsCommandOutput extends ListDashboardVersion * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListDashboardVersionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListDashboardsCommand.ts b/clients/client-quicksight/src/commands/ListDashboardsCommand.ts index 4716ca2c8c534..2607dbac7d7e0 100644 --- a/clients/client-quicksight/src/commands/ListDashboardsCommand.ts +++ b/clients/client-quicksight/src/commands/ListDashboardsCommand.ts @@ -85,6 +85,7 @@ export interface ListDashboardsCommandOutput extends ListDashboardsResponse, __M * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListDashboardsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListDataSetsCommand.ts b/clients/client-quicksight/src/commands/ListDataSetsCommand.ts index fba219aa57d1c..7956d214f8ef1 100644 --- a/clients/client-quicksight/src/commands/ListDataSetsCommand.ts +++ b/clients/client-quicksight/src/commands/ListDataSetsCommand.ts @@ -97,6 +97,7 @@ export interface ListDataSetsCommandOutput extends ListDataSetsResponse, __Metad * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListDataSetsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListDataSourcesCommand.ts b/clients/client-quicksight/src/commands/ListDataSourcesCommand.ts index 934710c509835..002c919b50c1a 100644 --- a/clients/client-quicksight/src/commands/ListDataSourcesCommand.ts +++ b/clients/client-quicksight/src/commands/ListDataSourcesCommand.ts @@ -401,6 +401,7 @@ export interface ListDataSourcesCommandOutput extends ListDataSourcesResponse, _ * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListDataSourcesCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListFolderMembersCommand.ts b/clients/client-quicksight/src/commands/ListFolderMembersCommand.ts index 0aefa8d18875d..6ea6e22b0ae80 100644 --- a/clients/client-quicksight/src/commands/ListFolderMembersCommand.ts +++ b/clients/client-quicksight/src/commands/ListFolderMembersCommand.ts @@ -93,6 +93,7 @@ export interface ListFolderMembersCommandOutput extends ListFolderMembersRespons * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListFolderMembersCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListFoldersCommand.ts b/clients/client-quicksight/src/commands/ListFoldersCommand.ts index 0ebd460b801a4..f5587816104c8 100644 --- a/clients/client-quicksight/src/commands/ListFoldersCommand.ts +++ b/clients/client-quicksight/src/commands/ListFoldersCommand.ts @@ -97,6 +97,7 @@ export interface ListFoldersCommandOutput extends ListFoldersResponse, __Metadat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListFoldersCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListFoldersForResourceCommand.ts b/clients/client-quicksight/src/commands/ListFoldersForResourceCommand.ts index 9538eea75ac24..33b95b000f054 100644 --- a/clients/client-quicksight/src/commands/ListFoldersForResourceCommand.ts +++ b/clients/client-quicksight/src/commands/ListFoldersForResourceCommand.ts @@ -90,6 +90,7 @@ export interface ListFoldersForResourceCommandOutput extends ListFoldersForResou * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListFoldersForResourceCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListGroupMembershipsCommand.ts b/clients/client-quicksight/src/commands/ListGroupMembershipsCommand.ts index 149883a39596b..6c17508ace92a 100644 --- a/clients/client-quicksight/src/commands/ListGroupMembershipsCommand.ts +++ b/clients/client-quicksight/src/commands/ListGroupMembershipsCommand.ts @@ -94,6 +94,7 @@ export interface ListGroupMembershipsCommandOutput extends ListGroupMembershipsR * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListGroupMembershipsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListGroupsCommand.ts b/clients/client-quicksight/src/commands/ListGroupsCommand.ts index 4ca4245e16ca9..9d01142c444cd 100644 --- a/clients/client-quicksight/src/commands/ListGroupsCommand.ts +++ b/clients/client-quicksight/src/commands/ListGroupsCommand.ts @@ -95,6 +95,7 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListGroupsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsCommand.ts b/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsCommand.ts index ce068f523352a..93bacd22a3253 100644 --- a/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsCommand.ts +++ b/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsCommand.ts @@ -90,6 +90,7 @@ export interface ListIAMPolicyAssignmentsCommandOutput extends ListIAMPolicyAssi * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListIAMPolicyAssignmentsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsForUserCommand.ts b/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsForUserCommand.ts index 44ef0597dbba5..0e17c883ee7ec 100644 --- a/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsForUserCommand.ts +++ b/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsForUserCommand.ts @@ -103,6 +103,7 @@ export interface ListIAMPolicyAssignmentsForUserCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListIAMPolicyAssignmentsForUserCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListIdentityPropagationConfigsCommand.ts b/clients/client-quicksight/src/commands/ListIdentityPropagationConfigsCommand.ts index 097419bc57548..0553a458de63f 100644 --- a/clients/client-quicksight/src/commands/ListIdentityPropagationConfigsCommand.ts +++ b/clients/client-quicksight/src/commands/ListIdentityPropagationConfigsCommand.ts @@ -91,6 +91,7 @@ export interface ListIdentityPropagationConfigsCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListIdentityPropagationConfigsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListIngestionsCommand.ts b/clients/client-quicksight/src/commands/ListIngestionsCommand.ts index c4f8c6f134387..2dce79a1ac642 100644 --- a/clients/client-quicksight/src/commands/ListIngestionsCommand.ts +++ b/clients/client-quicksight/src/commands/ListIngestionsCommand.ts @@ -109,6 +109,7 @@ export interface ListIngestionsCommandOutput extends ListIngestionsResponse, __M * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListIngestionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListNamespacesCommand.ts b/clients/client-quicksight/src/commands/ListNamespacesCommand.ts index 02f122c46a9e6..3aff47722cdbf 100644 --- a/clients/client-quicksight/src/commands/ListNamespacesCommand.ts +++ b/clients/client-quicksight/src/commands/ListNamespacesCommand.ts @@ -101,6 +101,7 @@ export interface ListNamespacesCommandOutput extends ListNamespacesResponse, __M * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListNamespacesCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListRefreshSchedulesCommand.ts b/clients/client-quicksight/src/commands/ListRefreshSchedulesCommand.ts index f8153c35099a1..80e29d12bc94a 100644 --- a/clients/client-quicksight/src/commands/ListRefreshSchedulesCommand.ts +++ b/clients/client-quicksight/src/commands/ListRefreshSchedulesCommand.ts @@ -95,6 +95,7 @@ export interface ListRefreshSchedulesCommandOutput extends ListRefreshSchedulesR * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListRefreshSchedulesCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListRoleMembershipsCommand.ts b/clients/client-quicksight/src/commands/ListRoleMembershipsCommand.ts index 61bbbbd72398b..64b1ce9dc5b73 100644 --- a/clients/client-quicksight/src/commands/ListRoleMembershipsCommand.ts +++ b/clients/client-quicksight/src/commands/ListRoleMembershipsCommand.ts @@ -94,6 +94,7 @@ export interface ListRoleMembershipsCommandOutput extends ListRoleMembershipsRes * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListRoleMembershipsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListTagsForResourceCommand.ts b/clients/client-quicksight/src/commands/ListTagsForResourceCommand.ts index a55517007cc77..d9b085d2a1041 100644 --- a/clients/client-quicksight/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-quicksight/src/commands/ListTagsForResourceCommand.ts @@ -80,6 +80,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListTemplateAliasesCommand.ts b/clients/client-quicksight/src/commands/ListTemplateAliasesCommand.ts index 568eeb8ef37ff..a2273f1ea4b6c 100644 --- a/clients/client-quicksight/src/commands/ListTemplateAliasesCommand.ts +++ b/clients/client-quicksight/src/commands/ListTemplateAliasesCommand.ts @@ -85,6 +85,7 @@ export interface ListTemplateAliasesCommandOutput extends ListTemplateAliasesRes * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListTemplateAliasesCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListTemplateVersionsCommand.ts b/clients/client-quicksight/src/commands/ListTemplateVersionsCommand.ts index 258896800dd61..c32cd57f8ea1a 100644 --- a/clients/client-quicksight/src/commands/ListTemplateVersionsCommand.ts +++ b/clients/client-quicksight/src/commands/ListTemplateVersionsCommand.ts @@ -90,6 +90,7 @@ export interface ListTemplateVersionsCommandOutput extends ListTemplateVersionsR * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListTemplateVersionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListTemplatesCommand.ts b/clients/client-quicksight/src/commands/ListTemplatesCommand.ts index dfac9a4d6aed7..ccd84f437f3cc 100644 --- a/clients/client-quicksight/src/commands/ListTemplatesCommand.ts +++ b/clients/client-quicksight/src/commands/ListTemplatesCommand.ts @@ -90,6 +90,7 @@ export interface ListTemplatesCommandOutput extends ListTemplatesResponse, __Met * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListTemplatesCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListThemeAliasesCommand.ts b/clients/client-quicksight/src/commands/ListThemeAliasesCommand.ts index f4c21d852038b..0ffa2f8495a6b 100644 --- a/clients/client-quicksight/src/commands/ListThemeAliasesCommand.ts +++ b/clients/client-quicksight/src/commands/ListThemeAliasesCommand.ts @@ -91,6 +91,7 @@ export interface ListThemeAliasesCommandOutput extends ListThemeAliasesResponse, * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListThemeAliasesCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListThemeVersionsCommand.ts b/clients/client-quicksight/src/commands/ListThemeVersionsCommand.ts index 4b32d5f1ac223..e306ab7e6f7f6 100644 --- a/clients/client-quicksight/src/commands/ListThemeVersionsCommand.ts +++ b/clients/client-quicksight/src/commands/ListThemeVersionsCommand.ts @@ -96,6 +96,7 @@ export interface ListThemeVersionsCommandOutput extends ListThemeVersionsRespons * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListThemeVersionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListThemesCommand.ts b/clients/client-quicksight/src/commands/ListThemesCommand.ts index 7840d72ac7f14..9e0c2d83db9a6 100644 --- a/clients/client-quicksight/src/commands/ListThemesCommand.ts +++ b/clients/client-quicksight/src/commands/ListThemesCommand.ts @@ -97,6 +97,7 @@ export interface ListThemesCommandOutput extends ListThemesResponse, __MetadataB * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListThemesCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListTopicRefreshSchedulesCommand.ts b/clients/client-quicksight/src/commands/ListTopicRefreshSchedulesCommand.ts index 289f9b219f6bf..8c2727113b0b5 100644 --- a/clients/client-quicksight/src/commands/ListTopicRefreshSchedulesCommand.ts +++ b/clients/client-quicksight/src/commands/ListTopicRefreshSchedulesCommand.ts @@ -101,6 +101,7 @@ export interface ListTopicRefreshSchedulesCommandOutput extends ListTopicRefresh * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListTopicRefreshSchedulesCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListTopicReviewedAnswersCommand.ts b/clients/client-quicksight/src/commands/ListTopicReviewedAnswersCommand.ts index f75ea427df66b..f210b07972135 100644 --- a/clients/client-quicksight/src/commands/ListTopicReviewedAnswersCommand.ts +++ b/clients/client-quicksight/src/commands/ListTopicReviewedAnswersCommand.ts @@ -555,6 +555,7 @@ export interface ListTopicReviewedAnswersCommandOutput extends ListTopicReviewed * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListTopicReviewedAnswersCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListTopicsCommand.ts b/clients/client-quicksight/src/commands/ListTopicsCommand.ts index e1104d2fd4a39..db96fb670e7f6 100644 --- a/clients/client-quicksight/src/commands/ListTopicsCommand.ts +++ b/clients/client-quicksight/src/commands/ListTopicsCommand.ts @@ -85,6 +85,7 @@ export interface ListTopicsCommandOutput extends ListTopicsResponse, __MetadataB * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListTopicsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListUserGroupsCommand.ts b/clients/client-quicksight/src/commands/ListUserGroupsCommand.ts index 2e5de2ad10525..a451d3df1144b 100644 --- a/clients/client-quicksight/src/commands/ListUserGroupsCommand.ts +++ b/clients/client-quicksight/src/commands/ListUserGroupsCommand.ts @@ -93,6 +93,7 @@ export interface ListUserGroupsCommandOutput extends ListUserGroupsResponse, __M * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListUserGroupsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListUsersCommand.ts b/clients/client-quicksight/src/commands/ListUsersCommand.ts index 5ab004814d169..d5869a5a5f99b 100644 --- a/clients/client-quicksight/src/commands/ListUsersCommand.ts +++ b/clients/client-quicksight/src/commands/ListUsersCommand.ts @@ -102,6 +102,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListUsersCommand extends $Command diff --git a/clients/client-quicksight/src/commands/ListVPCConnectionsCommand.ts b/clients/client-quicksight/src/commands/ListVPCConnectionsCommand.ts index fa5aff9139050..8f26fbdb192a4 100644 --- a/clients/client-quicksight/src/commands/ListVPCConnectionsCommand.ts +++ b/clients/client-quicksight/src/commands/ListVPCConnectionsCommand.ts @@ -112,6 +112,7 @@ export interface ListVPCConnectionsCommandOutput extends ListVPCConnectionsRespo * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class ListVPCConnectionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/PredictQAResultsCommand.ts b/clients/client-quicksight/src/commands/PredictQAResultsCommand.ts index 3fc994d1f244b..0fb18b8096ae1 100644 --- a/clients/client-quicksight/src/commands/PredictQAResultsCommand.ts +++ b/clients/client-quicksight/src/commands/PredictQAResultsCommand.ts @@ -128,6 +128,7 @@ export interface PredictQAResultsCommandOutput extends PredictQAResultsResponse, * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class PredictQAResultsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/PutDataSetRefreshPropertiesCommand.ts b/clients/client-quicksight/src/commands/PutDataSetRefreshPropertiesCommand.ts index a91d8097f7c79..aeaa805a93aa3 100644 --- a/clients/client-quicksight/src/commands/PutDataSetRefreshPropertiesCommand.ts +++ b/clients/client-quicksight/src/commands/PutDataSetRefreshPropertiesCommand.ts @@ -100,6 +100,7 @@ export interface PutDataSetRefreshPropertiesCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class PutDataSetRefreshPropertiesCommand extends $Command diff --git a/clients/client-quicksight/src/commands/RegisterUserCommand.ts b/clients/client-quicksight/src/commands/RegisterUserCommand.ts index 8f051b3ef09af..f937a54f9f03c 100644 --- a/clients/client-quicksight/src/commands/RegisterUserCommand.ts +++ b/clients/client-quicksight/src/commands/RegisterUserCommand.ts @@ -117,6 +117,7 @@ export interface RegisterUserCommandOutput extends RegisterUserResponse, __Metad * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class RegisterUserCommand extends $Command diff --git a/clients/client-quicksight/src/commands/RestoreAnalysisCommand.ts b/clients/client-quicksight/src/commands/RestoreAnalysisCommand.ts index 0de0d7e75ff4f..fd3e243b0138f 100644 --- a/clients/client-quicksight/src/commands/RestoreAnalysisCommand.ts +++ b/clients/client-quicksight/src/commands/RestoreAnalysisCommand.ts @@ -90,6 +90,7 @@ export interface RestoreAnalysisCommandOutput extends RestoreAnalysisResponse, _ * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class RestoreAnalysisCommand extends $Command diff --git a/clients/client-quicksight/src/commands/SearchAnalysesCommand.ts b/clients/client-quicksight/src/commands/SearchAnalysesCommand.ts index 587e98389ec86..664e420545626 100644 --- a/clients/client-quicksight/src/commands/SearchAnalysesCommand.ts +++ b/clients/client-quicksight/src/commands/SearchAnalysesCommand.ts @@ -100,6 +100,7 @@ export interface SearchAnalysesCommandOutput extends SearchAnalysesResponse, __M * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class SearchAnalysesCommand extends $Command diff --git a/clients/client-quicksight/src/commands/SearchDashboardsCommand.ts b/clients/client-quicksight/src/commands/SearchDashboardsCommand.ts index 4a5999a9675f9..f8dedb10b176b 100644 --- a/clients/client-quicksight/src/commands/SearchDashboardsCommand.ts +++ b/clients/client-quicksight/src/commands/SearchDashboardsCommand.ts @@ -101,6 +101,7 @@ export interface SearchDashboardsCommandOutput extends SearchDashboardsResponse, * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class SearchDashboardsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/SearchDataSetsCommand.ts b/clients/client-quicksight/src/commands/SearchDataSetsCommand.ts index bf33c085f6419..255b37c9702d3 100644 --- a/clients/client-quicksight/src/commands/SearchDataSetsCommand.ts +++ b/clients/client-quicksight/src/commands/SearchDataSetsCommand.ts @@ -106,6 +106,7 @@ export interface SearchDataSetsCommandOutput extends SearchDataSetsResponse, __M * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class SearchDataSetsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/SearchDataSourcesCommand.ts b/clients/client-quicksight/src/commands/SearchDataSourcesCommand.ts index afb69307ae6a7..3d9ac15fc51d7 100644 --- a/clients/client-quicksight/src/commands/SearchDataSourcesCommand.ts +++ b/clients/client-quicksight/src/commands/SearchDataSourcesCommand.ts @@ -97,6 +97,7 @@ export interface SearchDataSourcesCommandOutput extends SearchDataSourcesRespons * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class SearchDataSourcesCommand extends $Command diff --git a/clients/client-quicksight/src/commands/SearchFoldersCommand.ts b/clients/client-quicksight/src/commands/SearchFoldersCommand.ts index c0541fdcda61e..2ae4de3375960 100644 --- a/clients/client-quicksight/src/commands/SearchFoldersCommand.ts +++ b/clients/client-quicksight/src/commands/SearchFoldersCommand.ts @@ -107,6 +107,7 @@ export interface SearchFoldersCommandOutput extends SearchFoldersResponse, __Met * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class SearchFoldersCommand extends $Command diff --git a/clients/client-quicksight/src/commands/SearchGroupsCommand.ts b/clients/client-quicksight/src/commands/SearchGroupsCommand.ts index 231f2d4ad2d0a..f5d923fecbbab 100644 --- a/clients/client-quicksight/src/commands/SearchGroupsCommand.ts +++ b/clients/client-quicksight/src/commands/SearchGroupsCommand.ts @@ -102,6 +102,7 @@ export interface SearchGroupsCommandOutput extends SearchGroupsResponse, __Metad * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class SearchGroupsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/SearchTopicsCommand.ts b/clients/client-quicksight/src/commands/SearchTopicsCommand.ts index a60d76b43bfb9..39663e59e0881 100644 --- a/clients/client-quicksight/src/commands/SearchTopicsCommand.ts +++ b/clients/client-quicksight/src/commands/SearchTopicsCommand.ts @@ -95,6 +95,7 @@ export interface SearchTopicsCommandOutput extends SearchTopicsResponse, __Metad * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class SearchTopicsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/StartAssetBundleExportJobCommand.ts b/clients/client-quicksight/src/commands/StartAssetBundleExportJobCommand.ts index e223f9aba0916..22e6117b14f1c 100644 --- a/clients/client-quicksight/src/commands/StartAssetBundleExportJobCommand.ts +++ b/clients/client-quicksight/src/commands/StartAssetBundleExportJobCommand.ts @@ -169,6 +169,7 @@ export interface StartAssetBundleExportJobCommandOutput extends StartAssetBundle * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class StartAssetBundleExportJobCommand extends $Command diff --git a/clients/client-quicksight/src/commands/StartAssetBundleImportJobCommand.ts b/clients/client-quicksight/src/commands/StartAssetBundleImportJobCommand.ts index 6421ccbfe425d..7cef7ab786f0c 100644 --- a/clients/client-quicksight/src/commands/StartAssetBundleImportJobCommand.ts +++ b/clients/client-quicksight/src/commands/StartAssetBundleImportJobCommand.ts @@ -484,6 +484,7 @@ export interface StartAssetBundleImportJobCommandOutput extends StartAssetBundle * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class StartAssetBundleImportJobCommand extends $Command diff --git a/clients/client-quicksight/src/commands/StartDashboardSnapshotJobCommand.ts b/clients/client-quicksight/src/commands/StartDashboardSnapshotJobCommand.ts index 00b3b74babbfa..9dde566753fb6 100644 --- a/clients/client-quicksight/src/commands/StartDashboardSnapshotJobCommand.ts +++ b/clients/client-quicksight/src/commands/StartDashboardSnapshotJobCommand.ts @@ -241,6 +241,7 @@ export interface StartDashboardSnapshotJobCommandOutput extends StartDashboardSn * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class StartDashboardSnapshotJobCommand extends $Command diff --git a/clients/client-quicksight/src/commands/StartDashboardSnapshotJobScheduleCommand.ts b/clients/client-quicksight/src/commands/StartDashboardSnapshotJobScheduleCommand.ts index 9b26e1a1a3878..f4b9b21a3474b 100644 --- a/clients/client-quicksight/src/commands/StartDashboardSnapshotJobScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/StartDashboardSnapshotJobScheduleCommand.ts @@ -95,6 +95,7 @@ export interface StartDashboardSnapshotJobScheduleCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class StartDashboardSnapshotJobScheduleCommand extends $Command diff --git a/clients/client-quicksight/src/commands/TagResourceCommand.ts b/clients/client-quicksight/src/commands/TagResourceCommand.ts index 743a139e9b3b1..714c97787eec4 100644 --- a/clients/client-quicksight/src/commands/TagResourceCommand.ts +++ b/clients/client-quicksight/src/commands/TagResourceCommand.ts @@ -102,6 +102,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UntagResourceCommand.ts b/clients/client-quicksight/src/commands/UntagResourceCommand.ts index 4da7683a9e84c..992a037c7f750 100644 --- a/clients/client-quicksight/src/commands/UntagResourceCommand.ts +++ b/clients/client-quicksight/src/commands/UntagResourceCommand.ts @@ -77,6 +77,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateAccountCustomizationCommand.ts b/clients/client-quicksight/src/commands/UpdateAccountCustomizationCommand.ts index 0299e0606eb46..b56c51c9f1d3f 100644 --- a/clients/client-quicksight/src/commands/UpdateAccountCustomizationCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateAccountCustomizationCommand.ts @@ -96,6 +96,7 @@ export interface UpdateAccountCustomizationCommandOutput extends UpdateAccountCu * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateAccountCustomizationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-quicksight/src/commands/UpdateAccountSettingsCommand.ts index c8f87d3c441be..018ee8557d2f7 100644 --- a/clients/client-quicksight/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateAccountSettingsCommand.ts @@ -80,6 +80,7 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateAccountSettingsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateAnalysisCommand.ts b/clients/client-quicksight/src/commands/UpdateAnalysisCommand.ts index 7f06604fe3f03..6ae063efa7486 100644 --- a/clients/client-quicksight/src/commands/UpdateAnalysisCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateAnalysisCommand.ts @@ -5522,6 +5522,7 @@ export interface UpdateAnalysisCommandOutput extends UpdateAnalysisResponse, __M * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateAnalysisCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateAnalysisPermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateAnalysisPermissionsCommand.ts index a913731b4547f..1050af84be667 100644 --- a/clients/client-quicksight/src/commands/UpdateAnalysisPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateAnalysisPermissionsCommand.ts @@ -107,6 +107,7 @@ export interface UpdateAnalysisPermissionsCommandOutput extends UpdateAnalysisPe * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateAnalysisPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateApplicationWithTokenExchangeGrantCommand.ts b/clients/client-quicksight/src/commands/UpdateApplicationWithTokenExchangeGrantCommand.ts index b73009279f5ae..9388c33381618 100644 --- a/clients/client-quicksight/src/commands/UpdateApplicationWithTokenExchangeGrantCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateApplicationWithTokenExchangeGrantCommand.ts @@ -90,6 +90,7 @@ export interface UpdateApplicationWithTokenExchangeGrantCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateApplicationWithTokenExchangeGrantCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateBrandAssignmentCommand.ts b/clients/client-quicksight/src/commands/UpdateBrandAssignmentCommand.ts index 3febc29e6475b..c441dfd5215b1 100644 --- a/clients/client-quicksight/src/commands/UpdateBrandAssignmentCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateBrandAssignmentCommand.ts @@ -78,6 +78,7 @@ export interface UpdateBrandAssignmentCommandOutput extends UpdateBrandAssignmen * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateBrandAssignmentCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateBrandCommand.ts b/clients/client-quicksight/src/commands/UpdateBrandCommand.ts index 9d2969de6c50a..c0185126e4473 100644 --- a/clients/client-quicksight/src/commands/UpdateBrandCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateBrandCommand.ts @@ -246,6 +246,7 @@ export interface UpdateBrandCommandOutput extends UpdateBrandResponse, __Metadat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateBrandCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateBrandPublishedVersionCommand.ts b/clients/client-quicksight/src/commands/UpdateBrandPublishedVersionCommand.ts index c02dd3b092461..cdcba05ca0072 100644 --- a/clients/client-quicksight/src/commands/UpdateBrandPublishedVersionCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateBrandPublishedVersionCommand.ts @@ -84,6 +84,7 @@ export interface UpdateBrandPublishedVersionCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateBrandPublishedVersionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateCustomPermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateCustomPermissionsCommand.ts index 5afacdf337b8d..4f96a5b87c8c9 100644 --- a/clients/client-quicksight/src/commands/UpdateCustomPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateCustomPermissionsCommand.ts @@ -104,6 +104,7 @@ export interface UpdateCustomPermissionsCommandOutput extends UpdateCustomPermis * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateCustomPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateDashboardCommand.ts b/clients/client-quicksight/src/commands/UpdateDashboardCommand.ts index c95443213b41d..0ec7c058c2a1c 100644 --- a/clients/client-quicksight/src/commands/UpdateDashboardCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDashboardCommand.ts @@ -5563,6 +5563,7 @@ export interface UpdateDashboardCommandOutput extends UpdateDashboardResponse, _ * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateDashboardCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateDashboardLinksCommand.ts b/clients/client-quicksight/src/commands/UpdateDashboardLinksCommand.ts index 1deb6d2228727..11a1b41d120ed 100644 --- a/clients/client-quicksight/src/commands/UpdateDashboardLinksCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDashboardLinksCommand.ts @@ -91,6 +91,7 @@ export interface UpdateDashboardLinksCommandOutput extends UpdateDashboardLinksR * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateDashboardLinksCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateDashboardPermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateDashboardPermissionsCommand.ts index 39d1362eddcfe..123fa5bbcf61c 100644 --- a/clients/client-quicksight/src/commands/UpdateDashboardPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDashboardPermissionsCommand.ts @@ -133,6 +133,7 @@ export interface UpdateDashboardPermissionsCommandOutput extends UpdateDashboard * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateDashboardPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateDashboardPublishedVersionCommand.ts b/clients/client-quicksight/src/commands/UpdateDashboardPublishedVersionCommand.ts index dcdd5e00d1534..0c90066b97b70 100644 --- a/clients/client-quicksight/src/commands/UpdateDashboardPublishedVersionCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDashboardPublishedVersionCommand.ts @@ -86,6 +86,7 @@ export interface UpdateDashboardPublishedVersionCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateDashboardPublishedVersionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateDashboardsQAConfigurationCommand.ts b/clients/client-quicksight/src/commands/UpdateDashboardsQAConfigurationCommand.ts index 9038b1f3e5ec2..d1a76bbdcb1b3 100644 --- a/clients/client-quicksight/src/commands/UpdateDashboardsQAConfigurationCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDashboardsQAConfigurationCommand.ts @@ -84,6 +84,7 @@ export interface UpdateDashboardsQAConfigurationCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateDashboardsQAConfigurationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateDataSetCommand.ts b/clients/client-quicksight/src/commands/UpdateDataSetCommand.ts index f70b87a644222..57c676d9ac73e 100644 --- a/clients/client-quicksight/src/commands/UpdateDataSetCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDataSetCommand.ts @@ -340,6 +340,7 @@ export interface UpdateDataSetCommandOutput extends UpdateDataSetResponse, __Met * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateDataSetCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateDataSetPermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateDataSetPermissionsCommand.ts index 31cad0ad8cb88..2c0a551289bd9 100644 --- a/clients/client-quicksight/src/commands/UpdateDataSetPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDataSetPermissionsCommand.ts @@ -97,6 +97,7 @@ export interface UpdateDataSetPermissionsCommandOutput extends UpdateDataSetPerm * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateDataSetPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateDataSourceCommand.ts b/clients/client-quicksight/src/commands/UpdateDataSourceCommand.ts index 91975557ab87d..fa9b11802ea7b 100644 --- a/clients/client-quicksight/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDataSourceCommand.ts @@ -405,6 +405,7 @@ export interface UpdateDataSourceCommandOutput extends UpdateDataSourceResponse, * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateDataSourceCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateDataSourcePermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateDataSourcePermissionsCommand.ts index e37c2794a405a..563cbb18d3b88 100644 --- a/clients/client-quicksight/src/commands/UpdateDataSourcePermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDataSourcePermissionsCommand.ts @@ -101,6 +101,7 @@ export interface UpdateDataSourcePermissionsCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateDataSourcePermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateDefaultQBusinessApplicationCommand.ts b/clients/client-quicksight/src/commands/UpdateDefaultQBusinessApplicationCommand.ts index 2fb5bc00ce253..d0d22f76ca66a 100644 --- a/clients/client-quicksight/src/commands/UpdateDefaultQBusinessApplicationCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDefaultQBusinessApplicationCommand.ts @@ -87,6 +87,7 @@ export interface UpdateDefaultQBusinessApplicationCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateDefaultQBusinessApplicationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateFolderCommand.ts b/clients/client-quicksight/src/commands/UpdateFolderCommand.ts index 5245f0859c991..5d062af78ff0c 100644 --- a/clients/client-quicksight/src/commands/UpdateFolderCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateFolderCommand.ts @@ -90,6 +90,7 @@ export interface UpdateFolderCommandOutput extends UpdateFolderResponse, __Metad * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateFolderCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateFolderPermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateFolderPermissionsCommand.ts index 1167abad33cb9..d2433af8f9785 100644 --- a/clients/client-quicksight/src/commands/UpdateFolderPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateFolderPermissionsCommand.ts @@ -110,6 +110,7 @@ export interface UpdateFolderPermissionsCommandOutput extends UpdateFolderPermis * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateFolderPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateGroupCommand.ts b/clients/client-quicksight/src/commands/UpdateGroupCommand.ts index fd2bd7c703aca..4abcc30586a94 100644 --- a/clients/client-quicksight/src/commands/UpdateGroupCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateGroupCommand.ts @@ -89,6 +89,7 @@ export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __Metadat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateGroupCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateIAMPolicyAssignmentCommand.ts b/clients/client-quicksight/src/commands/UpdateIAMPolicyAssignmentCommand.ts index b9257a65e1983..8326d23637701 100644 --- a/clients/client-quicksight/src/commands/UpdateIAMPolicyAssignmentCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateIAMPolicyAssignmentCommand.ts @@ -101,6 +101,7 @@ export interface UpdateIAMPolicyAssignmentCommandOutput extends UpdateIAMPolicyA * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateIAMPolicyAssignmentCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateIdentityPropagationConfigCommand.ts b/clients/client-quicksight/src/commands/UpdateIdentityPropagationConfigCommand.ts index ffdfbbab2cfd4..45d3e562906a4 100644 --- a/clients/client-quicksight/src/commands/UpdateIdentityPropagationConfigCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateIdentityPropagationConfigCommand.ts @@ -84,6 +84,7 @@ export interface UpdateIdentityPropagationConfigCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateIdentityPropagationConfigCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateIpRestrictionCommand.ts b/clients/client-quicksight/src/commands/UpdateIpRestrictionCommand.ts index 7bf4f4976c118..7e87bd7a08ae9 100644 --- a/clients/client-quicksight/src/commands/UpdateIpRestrictionCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateIpRestrictionCommand.ts @@ -88,6 +88,7 @@ export interface UpdateIpRestrictionCommandOutput extends UpdateIpRestrictionRes * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateIpRestrictionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateKeyRegistrationCommand.ts b/clients/client-quicksight/src/commands/UpdateKeyRegistrationCommand.ts index 4ef20583f1097..557c2df09eac5 100644 --- a/clients/client-quicksight/src/commands/UpdateKeyRegistrationCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateKeyRegistrationCommand.ts @@ -90,6 +90,7 @@ export interface UpdateKeyRegistrationCommandOutput extends UpdateKeyRegistratio * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateKeyRegistrationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdatePublicSharingSettingsCommand.ts b/clients/client-quicksight/src/commands/UpdatePublicSharingSettingsCommand.ts index 14b6b539e8f4c..97331ad5f2146 100644 --- a/clients/client-quicksight/src/commands/UpdatePublicSharingSettingsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdatePublicSharingSettingsCommand.ts @@ -99,6 +99,7 @@ export interface UpdatePublicSharingSettingsCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdatePublicSharingSettingsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateQPersonalizationConfigurationCommand.ts b/clients/client-quicksight/src/commands/UpdateQPersonalizationConfigurationCommand.ts index f46b8916403a0..cf70edd5f231b 100644 --- a/clients/client-quicksight/src/commands/UpdateQPersonalizationConfigurationCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateQPersonalizationConfigurationCommand.ts @@ -90,6 +90,7 @@ export interface UpdateQPersonalizationConfigurationCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateQPersonalizationConfigurationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateQuickSightQSearchConfigurationCommand.ts b/clients/client-quicksight/src/commands/UpdateQuickSightQSearchConfigurationCommand.ts index a26fb221f8eb1..dccbc6005c049 100644 --- a/clients/client-quicksight/src/commands/UpdateQuickSightQSearchConfigurationCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateQuickSightQSearchConfigurationCommand.ts @@ -87,6 +87,7 @@ export interface UpdateQuickSightQSearchConfigurationCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateQuickSightQSearchConfigurationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/UpdateRefreshScheduleCommand.ts index 62496eff6e197..f4ee7fac30da8 100644 --- a/clients/client-quicksight/src/commands/UpdateRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateRefreshScheduleCommand.ts @@ -98,6 +98,7 @@ export interface UpdateRefreshScheduleCommandOutput extends UpdateRefreshSchedul * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateRefreshScheduleCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateRoleCustomPermissionCommand.ts b/clients/client-quicksight/src/commands/UpdateRoleCustomPermissionCommand.ts index 1dfcfc51a0e71..38908a6cb9eb8 100644 --- a/clients/client-quicksight/src/commands/UpdateRoleCustomPermissionCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateRoleCustomPermissionCommand.ts @@ -83,6 +83,7 @@ export interface UpdateRoleCustomPermissionCommandOutput extends UpdateRoleCusto * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateRoleCustomPermissionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateSPICECapacityConfigurationCommand.ts b/clients/client-quicksight/src/commands/UpdateSPICECapacityConfigurationCommand.ts index 1c796a7c1aee1..c5ed0f408bf10 100644 --- a/clients/client-quicksight/src/commands/UpdateSPICECapacityConfigurationCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateSPICECapacityConfigurationCommand.ts @@ -80,6 +80,7 @@ export interface UpdateSPICECapacityConfigurationCommandOutput * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateSPICECapacityConfigurationCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateTemplateAliasCommand.ts b/clients/client-quicksight/src/commands/UpdateTemplateAliasCommand.ts index 21d5766fb51dc..1a30479bc06a9 100644 --- a/clients/client-quicksight/src/commands/UpdateTemplateAliasCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateTemplateAliasCommand.ts @@ -82,6 +82,7 @@ export interface UpdateTemplateAliasCommandOutput extends UpdateTemplateAliasRes * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateTemplateAliasCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateTemplateCommand.ts b/clients/client-quicksight/src/commands/UpdateTemplateCommand.ts index 25bbe38040a02..7447bee28aeb4 100644 --- a/clients/client-quicksight/src/commands/UpdateTemplateCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateTemplateCommand.ts @@ -5513,6 +5513,7 @@ export interface UpdateTemplateCommandOutput extends UpdateTemplateResponse, __M * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateTemplateCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateTemplatePermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateTemplatePermissionsCommand.ts index dd31af3a75007..b975fb82cc486 100644 --- a/clients/client-quicksight/src/commands/UpdateTemplatePermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateTemplatePermissionsCommand.ts @@ -107,6 +107,7 @@ export interface UpdateTemplatePermissionsCommandOutput extends UpdateTemplatePe * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateTemplatePermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateThemeAliasCommand.ts b/clients/client-quicksight/src/commands/UpdateThemeAliasCommand.ts index 83e556a6d4d3a..aa9a961bc80c9 100644 --- a/clients/client-quicksight/src/commands/UpdateThemeAliasCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateThemeAliasCommand.ts @@ -88,6 +88,7 @@ export interface UpdateThemeAliasCommandOutput extends UpdateThemeAliasResponse, * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateThemeAliasCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateThemeCommand.ts b/clients/client-quicksight/src/commands/UpdateThemeCommand.ts index 8a021f1e5244a..840f60afcfc13 100644 --- a/clients/client-quicksight/src/commands/UpdateThemeCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateThemeCommand.ts @@ -145,6 +145,7 @@ export interface UpdateThemeCommandOutput extends UpdateThemeResponse, __Metadat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateThemeCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateThemePermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateThemePermissionsCommand.ts index 6be9eba002cd5..783f79dca6f1d 100644 --- a/clients/client-quicksight/src/commands/UpdateThemePermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateThemePermissionsCommand.ts @@ -203,6 +203,7 @@ export interface UpdateThemePermissionsCommandOutput extends UpdateThemePermissi * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateThemePermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateTopicCommand.ts b/clients/client-quicksight/src/commands/UpdateTopicCommand.ts index 3ab15ce4b4350..2afa479487c2f 100644 --- a/clients/client-quicksight/src/commands/UpdateTopicCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateTopicCommand.ts @@ -338,6 +338,7 @@ export interface UpdateTopicCommandOutput extends UpdateTopicResponse, __Metadat * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateTopicCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateTopicPermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateTopicPermissionsCommand.ts index 1f44a95ed0ba0..6a87a6462130d 100644 --- a/clients/client-quicksight/src/commands/UpdateTopicPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateTopicPermissionsCommand.ts @@ -113,6 +113,7 @@ export interface UpdateTopicPermissionsCommandOutput extends UpdateTopicPermissi * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateTopicPermissionsCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateTopicRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/UpdateTopicRefreshScheduleCommand.ts index 9915097ba8572..b61569b223b4a 100644 --- a/clients/client-quicksight/src/commands/UpdateTopicRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateTopicRefreshScheduleCommand.ts @@ -96,6 +96,7 @@ export interface UpdateTopicRefreshScheduleCommandOutput extends UpdateTopicRefr * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateTopicRefreshScheduleCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateUserCommand.ts b/clients/client-quicksight/src/commands/UpdateUserCommand.ts index a217371be07ad..bbb5b0ec0de3c 100644 --- a/clients/client-quicksight/src/commands/UpdateUserCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateUserCommand.ts @@ -102,6 +102,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateUserCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateUserCustomPermissionCommand.ts b/clients/client-quicksight/src/commands/UpdateUserCustomPermissionCommand.ts index 1ee502c2bdabe..8b6f03aae1b07 100644 --- a/clients/client-quicksight/src/commands/UpdateUserCustomPermissionCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateUserCustomPermissionCommand.ts @@ -86,6 +86,7 @@ export interface UpdateUserCustomPermissionCommandOutput extends UpdateUserCusto * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateUserCustomPermissionCommand extends $Command diff --git a/clients/client-quicksight/src/commands/UpdateVPCConnectionCommand.ts b/clients/client-quicksight/src/commands/UpdateVPCConnectionCommand.ts index bc82d25c4c8aa..da274fc6afcdc 100644 --- a/clients/client-quicksight/src/commands/UpdateVPCConnectionCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateVPCConnectionCommand.ts @@ -102,6 +102,7 @@ export interface UpdateVPCConnectionCommandOutput extends UpdateVPCConnectionRes * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* + * * @public */ export class UpdateVPCConnectionCommand extends $Command diff --git a/clients/client-ram/src/commands/AcceptResourceShareInvitationCommand.ts b/clients/client-ram/src/commands/AcceptResourceShareInvitationCommand.ts index aa266fa244526..25b6d11a8fe30 100644 --- a/clients/client-ram/src/commands/AcceptResourceShareInvitationCommand.ts +++ b/clients/client-ram/src/commands/AcceptResourceShareInvitationCommand.ts @@ -122,6 +122,7 @@ export interface AcceptResourceShareInvitationCommandOutput * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class AcceptResourceShareInvitationCommand extends $Command diff --git a/clients/client-ram/src/commands/AssociateResourceShareCommand.ts b/clients/client-ram/src/commands/AssociateResourceShareCommand.ts index 5d02269900320..12941754cffa0 100644 --- a/clients/client-ram/src/commands/AssociateResourceShareCommand.ts +++ b/clients/client-ram/src/commands/AssociateResourceShareCommand.ts @@ -121,6 +121,7 @@ export interface AssociateResourceShareCommandOutput extends AssociateResourceSh * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class AssociateResourceShareCommand extends $Command diff --git a/clients/client-ram/src/commands/AssociateResourceSharePermissionCommand.ts b/clients/client-ram/src/commands/AssociateResourceSharePermissionCommand.ts index 358d90b364f04..4f22fd7a2778b 100644 --- a/clients/client-ram/src/commands/AssociateResourceSharePermissionCommand.ts +++ b/clients/client-ram/src/commands/AssociateResourceSharePermissionCommand.ts @@ -91,6 +91,7 @@ export interface AssociateResourceSharePermissionCommandOutput * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class AssociateResourceSharePermissionCommand extends $Command diff --git a/clients/client-ram/src/commands/CreatePermissionCommand.ts b/clients/client-ram/src/commands/CreatePermissionCommand.ts index f263a67a1f770..3b6512a42e5bb 100644 --- a/clients/client-ram/src/commands/CreatePermissionCommand.ts +++ b/clients/client-ram/src/commands/CreatePermissionCommand.ts @@ -120,6 +120,7 @@ export interface CreatePermissionCommandOutput extends CreatePermissionResponse, * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class CreatePermissionCommand extends $Command diff --git a/clients/client-ram/src/commands/CreatePermissionVersionCommand.ts b/clients/client-ram/src/commands/CreatePermissionVersionCommand.ts index 2b3bb06ba2be1..b9d042f900c5d 100644 --- a/clients/client-ram/src/commands/CreatePermissionVersionCommand.ts +++ b/clients/client-ram/src/commands/CreatePermissionVersionCommand.ts @@ -118,6 +118,7 @@ export interface CreatePermissionVersionCommandOutput extends CreatePermissionVe * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class CreatePermissionVersionCommand extends $Command diff --git a/clients/client-ram/src/commands/CreateResourceShareCommand.ts b/clients/client-ram/src/commands/CreateResourceShareCommand.ts index f196b483313f5..a1400fbce96e0 100644 --- a/clients/client-ram/src/commands/CreateResourceShareCommand.ts +++ b/clients/client-ram/src/commands/CreateResourceShareCommand.ts @@ -144,6 +144,7 @@ export interface CreateResourceShareCommandOutput extends CreateResourceShareRes * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class CreateResourceShareCommand extends $Command diff --git a/clients/client-ram/src/commands/DeletePermissionCommand.ts b/clients/client-ram/src/commands/DeletePermissionCommand.ts index 4d0cb1ee88741..3aa71e04fec18 100644 --- a/clients/client-ram/src/commands/DeletePermissionCommand.ts +++ b/clients/client-ram/src/commands/DeletePermissionCommand.ts @@ -85,6 +85,7 @@ export interface DeletePermissionCommandOutput extends DeletePermissionResponse, * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class DeletePermissionCommand extends $Command diff --git a/clients/client-ram/src/commands/DeletePermissionVersionCommand.ts b/clients/client-ram/src/commands/DeletePermissionVersionCommand.ts index cbbfee6525904..de8aeea4a7c85 100644 --- a/clients/client-ram/src/commands/DeletePermissionVersionCommand.ts +++ b/clients/client-ram/src/commands/DeletePermissionVersionCommand.ts @@ -90,6 +90,7 @@ export interface DeletePermissionVersionCommandOutput extends DeletePermissionVe * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class DeletePermissionVersionCommand extends $Command diff --git a/clients/client-ram/src/commands/DeleteResourceShareCommand.ts b/clients/client-ram/src/commands/DeleteResourceShareCommand.ts index 8a0da94e94e30..da77664b2a7ef 100644 --- a/clients/client-ram/src/commands/DeleteResourceShareCommand.ts +++ b/clients/client-ram/src/commands/DeleteResourceShareCommand.ts @@ -93,6 +93,7 @@ export interface DeleteResourceShareCommandOutput extends DeleteResourceShareRes * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class DeleteResourceShareCommand extends $Command diff --git a/clients/client-ram/src/commands/DisassociateResourceShareCommand.ts b/clients/client-ram/src/commands/DisassociateResourceShareCommand.ts index f19e04b2bebf2..114b3e94eb49c 100644 --- a/clients/client-ram/src/commands/DisassociateResourceShareCommand.ts +++ b/clients/client-ram/src/commands/DisassociateResourceShareCommand.ts @@ -116,6 +116,7 @@ export interface DisassociateResourceShareCommandOutput extends DisassociateReso * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class DisassociateResourceShareCommand extends $Command diff --git a/clients/client-ram/src/commands/DisassociateResourceSharePermissionCommand.ts b/clients/client-ram/src/commands/DisassociateResourceSharePermissionCommand.ts index f925e1facbbdd..c692d69266c2f 100644 --- a/clients/client-ram/src/commands/DisassociateResourceSharePermissionCommand.ts +++ b/clients/client-ram/src/commands/DisassociateResourceSharePermissionCommand.ts @@ -95,6 +95,7 @@ export interface DisassociateResourceSharePermissionCommandOutput * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class DisassociateResourceSharePermissionCommand extends $Command diff --git a/clients/client-ram/src/commands/EnableSharingWithAwsOrganizationCommand.ts b/clients/client-ram/src/commands/EnableSharingWithAwsOrganizationCommand.ts index ec37c6718387d..41aa34bdf5786 100644 --- a/clients/client-ram/src/commands/EnableSharingWithAwsOrganizationCommand.ts +++ b/clients/client-ram/src/commands/EnableSharingWithAwsOrganizationCommand.ts @@ -78,6 +78,7 @@ export interface EnableSharingWithAwsOrganizationCommandOutput * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class EnableSharingWithAwsOrganizationCommand extends $Command diff --git a/clients/client-ram/src/commands/GetPermissionCommand.ts b/clients/client-ram/src/commands/GetPermissionCommand.ts index 82116555ca08d..e3749348bb2cb 100644 --- a/clients/client-ram/src/commands/GetPermissionCommand.ts +++ b/clients/client-ram/src/commands/GetPermissionCommand.ts @@ -95,6 +95,7 @@ export interface GetPermissionCommandOutput extends GetPermissionResponse, __Met * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class GetPermissionCommand extends $Command diff --git a/clients/client-ram/src/commands/GetResourcePoliciesCommand.ts b/clients/client-ram/src/commands/GetResourcePoliciesCommand.ts index 1f304d9869789..a011154245c15 100644 --- a/clients/client-ram/src/commands/GetResourcePoliciesCommand.ts +++ b/clients/client-ram/src/commands/GetResourcePoliciesCommand.ts @@ -86,6 +86,7 @@ export interface GetResourcePoliciesCommandOutput extends GetResourcePoliciesRes * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class GetResourcePoliciesCommand extends $Command diff --git a/clients/client-ram/src/commands/GetResourceShareAssociationsCommand.ts b/clients/client-ram/src/commands/GetResourceShareAssociationsCommand.ts index 9ddbff09a428e..aa3732cdc9ed2 100644 --- a/clients/client-ram/src/commands/GetResourceShareAssociationsCommand.ts +++ b/clients/client-ram/src/commands/GetResourceShareAssociationsCommand.ts @@ -107,6 +107,7 @@ export interface GetResourceShareAssociationsCommandOutput * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class GetResourceShareAssociationsCommand extends $Command diff --git a/clients/client-ram/src/commands/GetResourceShareInvitationsCommand.ts b/clients/client-ram/src/commands/GetResourceShareInvitationsCommand.ts index 6058614f4449b..7e4a48e2db1f2 100644 --- a/clients/client-ram/src/commands/GetResourceShareInvitationsCommand.ts +++ b/clients/client-ram/src/commands/GetResourceShareInvitationsCommand.ts @@ -122,6 +122,7 @@ export interface GetResourceShareInvitationsCommandOutput * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class GetResourceShareInvitationsCommand extends $Command diff --git a/clients/client-ram/src/commands/GetResourceSharesCommand.ts b/clients/client-ram/src/commands/GetResourceSharesCommand.ts index 5863a96dad528..742199ecfe2a2 100644 --- a/clients/client-ram/src/commands/GetResourceSharesCommand.ts +++ b/clients/client-ram/src/commands/GetResourceSharesCommand.ts @@ -113,6 +113,7 @@ export interface GetResourceSharesCommandOutput extends GetResourceSharesRespons * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class GetResourceSharesCommand extends $Command diff --git a/clients/client-ram/src/commands/ListPendingInvitationResourcesCommand.ts b/clients/client-ram/src/commands/ListPendingInvitationResourcesCommand.ts index 6b613d4b7440c..71af05226e7af 100644 --- a/clients/client-ram/src/commands/ListPendingInvitationResourcesCommand.ts +++ b/clients/client-ram/src/commands/ListPendingInvitationResourcesCommand.ts @@ -111,6 +111,7 @@ export interface ListPendingInvitationResourcesCommandOutput * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class ListPendingInvitationResourcesCommand extends $Command diff --git a/clients/client-ram/src/commands/ListPermissionAssociationsCommand.ts b/clients/client-ram/src/commands/ListPermissionAssociationsCommand.ts index 098c8422ceba9..8130aca4e2c90 100644 --- a/clients/client-ram/src/commands/ListPermissionAssociationsCommand.ts +++ b/clients/client-ram/src/commands/ListPermissionAssociationsCommand.ts @@ -95,6 +95,7 @@ export interface ListPermissionAssociationsCommandOutput extends ListPermissionA * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class ListPermissionAssociationsCommand extends $Command diff --git a/clients/client-ram/src/commands/ListPermissionVersionsCommand.ts b/clients/client-ram/src/commands/ListPermissionVersionsCommand.ts index 8308f166aa6eb..16aa497a4f21a 100644 --- a/clients/client-ram/src/commands/ListPermissionVersionsCommand.ts +++ b/clients/client-ram/src/commands/ListPermissionVersionsCommand.ts @@ -103,6 +103,7 @@ export interface ListPermissionVersionsCommandOutput extends ListPermissionVersi * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class ListPermissionVersionsCommand extends $Command diff --git a/clients/client-ram/src/commands/ListPermissionsCommand.ts b/clients/client-ram/src/commands/ListPermissionsCommand.ts index d677a50a7dcd9..949fbeaf467fb 100644 --- a/clients/client-ram/src/commands/ListPermissionsCommand.ts +++ b/clients/client-ram/src/commands/ListPermissionsCommand.ts @@ -98,6 +98,7 @@ export interface ListPermissionsCommandOutput extends ListPermissionsResponse, _ * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class ListPermissionsCommand extends $Command diff --git a/clients/client-ram/src/commands/ListPrincipalsCommand.ts b/clients/client-ram/src/commands/ListPrincipalsCommand.ts index da47c3ce9bf56..4287003a7f962 100644 --- a/clients/client-ram/src/commands/ListPrincipalsCommand.ts +++ b/clients/client-ram/src/commands/ListPrincipalsCommand.ts @@ -97,6 +97,7 @@ export interface ListPrincipalsCommandOutput extends ListPrincipalsResponse, __M * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class ListPrincipalsCommand extends $Command diff --git a/clients/client-ram/src/commands/ListReplacePermissionAssociationsWorkCommand.ts b/clients/client-ram/src/commands/ListReplacePermissionAssociationsWorkCommand.ts index 7963ab0d24412..59a7bf999f053 100644 --- a/clients/client-ram/src/commands/ListReplacePermissionAssociationsWorkCommand.ts +++ b/clients/client-ram/src/commands/ListReplacePermissionAssociationsWorkCommand.ts @@ -98,6 +98,7 @@ export interface ListReplacePermissionAssociationsWorkCommandOutput * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class ListReplacePermissionAssociationsWorkCommand extends $Command diff --git a/clients/client-ram/src/commands/ListResourceSharePermissionsCommand.ts b/clients/client-ram/src/commands/ListResourceSharePermissionsCommand.ts index 9c96a6e6de600..22a84e780c0ff 100644 --- a/clients/client-ram/src/commands/ListResourceSharePermissionsCommand.ts +++ b/clients/client-ram/src/commands/ListResourceSharePermissionsCommand.ts @@ -108,6 +108,7 @@ export interface ListResourceSharePermissionsCommandOutput * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class ListResourceSharePermissionsCommand extends $Command diff --git a/clients/client-ram/src/commands/ListResourceTypesCommand.ts b/clients/client-ram/src/commands/ListResourceTypesCommand.ts index 20035e7539a1c..c47d359fac1cd 100644 --- a/clients/client-ram/src/commands/ListResourceTypesCommand.ts +++ b/clients/client-ram/src/commands/ListResourceTypesCommand.ts @@ -79,6 +79,7 @@ export interface ListResourceTypesCommandOutput extends ListResourceTypesRespons * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class ListResourceTypesCommand extends $Command diff --git a/clients/client-ram/src/commands/ListResourcesCommand.ts b/clients/client-ram/src/commands/ListResourcesCommand.ts index 32eced9f096a7..ac398eebd0ffb 100644 --- a/clients/client-ram/src/commands/ListResourcesCommand.ts +++ b/clients/client-ram/src/commands/ListResourcesCommand.ts @@ -105,6 +105,7 @@ export interface ListResourcesCommandOutput extends ListResourcesResponse, __Met * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class ListResourcesCommand extends $Command diff --git a/clients/client-ram/src/commands/PromotePermissionCreatedFromPolicyCommand.ts b/clients/client-ram/src/commands/PromotePermissionCreatedFromPolicyCommand.ts index 8178039b4f8d2..a788babb141c9 100644 --- a/clients/client-ram/src/commands/PromotePermissionCreatedFromPolicyCommand.ts +++ b/clients/client-ram/src/commands/PromotePermissionCreatedFromPolicyCommand.ts @@ -138,6 +138,7 @@ export interface PromotePermissionCreatedFromPolicyCommandOutput * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class PromotePermissionCreatedFromPolicyCommand extends $Command diff --git a/clients/client-ram/src/commands/PromoteResourceShareCreatedFromPolicyCommand.ts b/clients/client-ram/src/commands/PromoteResourceShareCreatedFromPolicyCommand.ts index c7b178e2e650c..5336cd7eaac80 100644 --- a/clients/client-ram/src/commands/PromoteResourceShareCreatedFromPolicyCommand.ts +++ b/clients/client-ram/src/commands/PromoteResourceShareCreatedFromPolicyCommand.ts @@ -113,6 +113,7 @@ export interface PromoteResourceShareCreatedFromPolicyCommandOutput * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class PromoteResourceShareCreatedFromPolicyCommand extends $Command diff --git a/clients/client-ram/src/commands/RejectResourceShareInvitationCommand.ts b/clients/client-ram/src/commands/RejectResourceShareInvitationCommand.ts index 80dd51c74875c..619cbcf55a6a7 100644 --- a/clients/client-ram/src/commands/RejectResourceShareInvitationCommand.ts +++ b/clients/client-ram/src/commands/RejectResourceShareInvitationCommand.ts @@ -120,6 +120,7 @@ export interface RejectResourceShareInvitationCommandOutput * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class RejectResourceShareInvitationCommand extends $Command diff --git a/clients/client-ram/src/commands/ReplacePermissionAssociationsCommand.ts b/clients/client-ram/src/commands/ReplacePermissionAssociationsCommand.ts index af5e0039042a5..da1526fc5b6d2 100644 --- a/clients/client-ram/src/commands/ReplacePermissionAssociationsCommand.ts +++ b/clients/client-ram/src/commands/ReplacePermissionAssociationsCommand.ts @@ -116,6 +116,7 @@ export interface ReplacePermissionAssociationsCommandOutput * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class ReplacePermissionAssociationsCommand extends $Command diff --git a/clients/client-ram/src/commands/SetDefaultPermissionVersionCommand.ts b/clients/client-ram/src/commands/SetDefaultPermissionVersionCommand.ts index 33d69c427bf86..a3ceddedbc989 100644 --- a/clients/client-ram/src/commands/SetDefaultPermissionVersionCommand.ts +++ b/clients/client-ram/src/commands/SetDefaultPermissionVersionCommand.ts @@ -90,6 +90,7 @@ export interface SetDefaultPermissionVersionCommandOutput * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class SetDefaultPermissionVersionCommand extends $Command diff --git a/clients/client-ram/src/commands/TagResourceCommand.ts b/clients/client-ram/src/commands/TagResourceCommand.ts index ee348f10120a2..afba1fd9ee756 100644 --- a/clients/client-ram/src/commands/TagResourceCommand.ts +++ b/clients/client-ram/src/commands/TagResourceCommand.ts @@ -90,6 +90,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-ram/src/commands/UntagResourceCommand.ts b/clients/client-ram/src/commands/UntagResourceCommand.ts index 0b33407db2bd4..be0443b5d8fb0 100644 --- a/clients/client-ram/src/commands/UntagResourceCommand.ts +++ b/clients/client-ram/src/commands/UntagResourceCommand.ts @@ -74,6 +74,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-ram/src/commands/UpdateResourceShareCommand.ts b/clients/client-ram/src/commands/UpdateResourceShareCommand.ts index 1459cadd50f52..bef1b205a2d61 100644 --- a/clients/client-ram/src/commands/UpdateResourceShareCommand.ts +++ b/clients/client-ram/src/commands/UpdateResourceShareCommand.ts @@ -106,6 +106,7 @@ export interface UpdateResourceShareCommandOutput extends UpdateResourceShareRes * @throws {@link RAMServiceException} *

Base exception class for all service exceptions from RAM service.

* + * * @public */ export class UpdateResourceShareCommand extends $Command diff --git a/clients/client-rbin/src/commands/CreateRuleCommand.ts b/clients/client-rbin/src/commands/CreateRuleCommand.ts index 6d09b9cd38da8..f499681aa8dcd 100644 --- a/clients/client-rbin/src/commands/CreateRuleCommand.ts +++ b/clients/client-rbin/src/commands/CreateRuleCommand.ts @@ -146,6 +146,7 @@ export interface CreateRuleCommandOutput extends CreateRuleResponse, __MetadataB * @throws {@link RbinServiceException} *

Base exception class for all service exceptions from Rbin service.

* + * * @public */ export class CreateRuleCommand extends $Command diff --git a/clients/client-rbin/src/commands/DeleteRuleCommand.ts b/clients/client-rbin/src/commands/DeleteRuleCommand.ts index a7fa55712a6a3..2509784f4a994 100644 --- a/clients/client-rbin/src/commands/DeleteRuleCommand.ts +++ b/clients/client-rbin/src/commands/DeleteRuleCommand.ts @@ -66,6 +66,7 @@ export interface DeleteRuleCommandOutput extends DeleteRuleResponse, __MetadataB * @throws {@link RbinServiceException} *

Base exception class for all service exceptions from Rbin service.

* + * * @public */ export class DeleteRuleCommand extends $Command diff --git a/clients/client-rbin/src/commands/GetRuleCommand.ts b/clients/client-rbin/src/commands/GetRuleCommand.ts index 40e2bd14b7f39..03732d3e5cce1 100644 --- a/clients/client-rbin/src/commands/GetRuleCommand.ts +++ b/clients/client-rbin/src/commands/GetRuleCommand.ts @@ -92,6 +92,7 @@ export interface GetRuleCommandOutput extends GetRuleResponse, __MetadataBearer * @throws {@link RbinServiceException} *

Base exception class for all service exceptions from Rbin service.

* + * * @public */ export class GetRuleCommand extends $Command diff --git a/clients/client-rbin/src/commands/ListRulesCommand.ts b/clients/client-rbin/src/commands/ListRulesCommand.ts index 39ee4197dca84..2bb6553d200ca 100644 --- a/clients/client-rbin/src/commands/ListRulesCommand.ts +++ b/clients/client-rbin/src/commands/ListRulesCommand.ts @@ -88,6 +88,7 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea * @throws {@link RbinServiceException} *

Base exception class for all service exceptions from Rbin service.

* + * * @public */ export class ListRulesCommand extends $Command diff --git a/clients/client-rbin/src/commands/ListTagsForResourceCommand.ts b/clients/client-rbin/src/commands/ListTagsForResourceCommand.ts index 4299939d4bcca..158022dcb6010 100644 --- a/clients/client-rbin/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-rbin/src/commands/ListTagsForResourceCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link RbinServiceException} *

Base exception class for all service exceptions from Rbin service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-rbin/src/commands/LockRuleCommand.ts b/clients/client-rbin/src/commands/LockRuleCommand.ts index fbc2fd7ca4197..ed684005d9b7e 100644 --- a/clients/client-rbin/src/commands/LockRuleCommand.ts +++ b/clients/client-rbin/src/commands/LockRuleCommand.ts @@ -105,6 +105,7 @@ export interface LockRuleCommandOutput extends LockRuleResponse, __MetadataBeare * @throws {@link RbinServiceException} *

Base exception class for all service exceptions from Rbin service.

* + * * @public */ export class LockRuleCommand extends $Command diff --git a/clients/client-rbin/src/commands/TagResourceCommand.ts b/clients/client-rbin/src/commands/TagResourceCommand.ts index 0e8fa77bb689c..bf68dc650fc9b 100644 --- a/clients/client-rbin/src/commands/TagResourceCommand.ts +++ b/clients/client-rbin/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link RbinServiceException} *

Base exception class for all service exceptions from Rbin service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-rbin/src/commands/UnlockRuleCommand.ts b/clients/client-rbin/src/commands/UnlockRuleCommand.ts index 3ccf6de9668b2..c1d3dee7b9590 100644 --- a/clients/client-rbin/src/commands/UnlockRuleCommand.ts +++ b/clients/client-rbin/src/commands/UnlockRuleCommand.ts @@ -96,6 +96,7 @@ export interface UnlockRuleCommandOutput extends UnlockRuleResponse, __MetadataB * @throws {@link RbinServiceException} *

Base exception class for all service exceptions from Rbin service.

* + * * @public */ export class UnlockRuleCommand extends $Command diff --git a/clients/client-rbin/src/commands/UntagResourceCommand.ts b/clients/client-rbin/src/commands/UntagResourceCommand.ts index 7414321c41032..aaf21622df73f 100644 --- a/clients/client-rbin/src/commands/UntagResourceCommand.ts +++ b/clients/client-rbin/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link RbinServiceException} *

Base exception class for all service exceptions from Rbin service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-rbin/src/commands/UpdateRuleCommand.ts b/clients/client-rbin/src/commands/UpdateRuleCommand.ts index 509553c6b1a0c..cad13accccab3 100644 --- a/clients/client-rbin/src/commands/UpdateRuleCommand.ts +++ b/clients/client-rbin/src/commands/UpdateRuleCommand.ts @@ -113,6 +113,7 @@ export interface UpdateRuleCommandOutput extends UpdateRuleResponse, __MetadataB * @throws {@link RbinServiceException} *

Base exception class for all service exceptions from Rbin service.

* + * * @public */ export class UpdateRuleCommand extends $Command diff --git a/clients/client-rds-data/src/commands/BatchExecuteStatementCommand.ts b/clients/client-rds-data/src/commands/BatchExecuteStatementCommand.ts index 42530b42af11b..0d114caf87c30 100644 --- a/clients/client-rds-data/src/commands/BatchExecuteStatementCommand.ts +++ b/clients/client-rds-data/src/commands/BatchExecuteStatementCommand.ts @@ -227,6 +227,7 @@ export interface BatchExecuteStatementCommandOutput extends BatchExecuteStatemen * @throws {@link RDSDataServiceException} *

Base exception class for all service exceptions from RDSData service.

* + * * @public */ export class BatchExecuteStatementCommand extends $Command diff --git a/clients/client-rds-data/src/commands/BeginTransactionCommand.ts b/clients/client-rds-data/src/commands/BeginTransactionCommand.ts index 3dee538511868..4bcb6175088ad 100644 --- a/clients/client-rds-data/src/commands/BeginTransactionCommand.ts +++ b/clients/client-rds-data/src/commands/BeginTransactionCommand.ts @@ -125,6 +125,7 @@ export interface BeginTransactionCommandOutput extends BeginTransactionResponse, * @throws {@link RDSDataServiceException} *

Base exception class for all service exceptions from RDSData service.

* + * * @public */ export class BeginTransactionCommand extends $Command diff --git a/clients/client-rds-data/src/commands/CommitTransactionCommand.ts b/clients/client-rds-data/src/commands/CommitTransactionCommand.ts index 3702c3c20c6f3..5ebefb2a72d53 100644 --- a/clients/client-rds-data/src/commands/CommitTransactionCommand.ts +++ b/clients/client-rds-data/src/commands/CommitTransactionCommand.ts @@ -115,6 +115,7 @@ export interface CommitTransactionCommandOutput extends CommitTransactionRespons * @throws {@link RDSDataServiceException} *

Base exception class for all service exceptions from RDSData service.

* + * * @public */ export class CommitTransactionCommand extends $Command diff --git a/clients/client-rds-data/src/commands/ExecuteSqlCommand.ts b/clients/client-rds-data/src/commands/ExecuteSqlCommand.ts index a37195df95449..05a0ec8cb0c51 100644 --- a/clients/client-rds-data/src/commands/ExecuteSqlCommand.ts +++ b/clients/client-rds-data/src/commands/ExecuteSqlCommand.ts @@ -146,6 +146,7 @@ export interface ExecuteSqlCommandOutput extends ExecuteSqlResponse, __MetadataB * @throws {@link RDSDataServiceException} *

Base exception class for all service exceptions from RDSData service.

* + * * @public */ export class ExecuteSqlCommand extends $Command diff --git a/clients/client-rds-data/src/commands/ExecuteStatementCommand.ts b/clients/client-rds-data/src/commands/ExecuteStatementCommand.ts index 25433d9f54596..87668dfad8347 100644 --- a/clients/client-rds-data/src/commands/ExecuteStatementCommand.ts +++ b/clients/client-rds-data/src/commands/ExecuteStatementCommand.ts @@ -268,6 +268,7 @@ export interface ExecuteStatementCommandOutput extends ExecuteStatementResponse, * @throws {@link RDSDataServiceException} *

Base exception class for all service exceptions from RDSData service.

* + * * @public */ export class ExecuteStatementCommand extends $Command diff --git a/clients/client-rds-data/src/commands/RollbackTransactionCommand.ts b/clients/client-rds-data/src/commands/RollbackTransactionCommand.ts index f04330599b425..0461b92c15b71 100644 --- a/clients/client-rds-data/src/commands/RollbackTransactionCommand.ts +++ b/clients/client-rds-data/src/commands/RollbackTransactionCommand.ts @@ -114,6 +114,7 @@ export interface RollbackTransactionCommandOutput extends RollbackTransactionRes * @throws {@link RDSDataServiceException} *

Base exception class for all service exceptions from RDSData service.

* + * * @public */ export class RollbackTransactionCommand extends $Command diff --git a/clients/client-rds/src/commands/AddRoleToDBClusterCommand.ts b/clients/client-rds/src/commands/AddRoleToDBClusterCommand.ts index c85d26184ac78..5e43617c853bf 100644 --- a/clients/client-rds/src/commands/AddRoleToDBClusterCommand.ts +++ b/clients/client-rds/src/commands/AddRoleToDBClusterCommand.ts @@ -68,19 +68,22 @@ export interface AddRoleToDBClusterCommandOutput extends __MetadataBearer {} * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To associate an AWS Identity and Access Management (IAM) role with a DB cluster * ```javascript * // The following example associates a role with a DB cluster. * const input = { - * "DBClusterIdentifier": "mydbcluster", - * "RoleArn": "arn:aws:iam::123456789012:role/RDSLoadFromS3" + * DBClusterIdentifier: "mydbcluster", + * RoleArn: "arn:aws:iam::123456789012:role/RDSLoadFromS3" * }; * const command = new AddRoleToDBClusterCommand(input); - * await client.send(command); - * // example id: to-associate-an-aws-identity-and-access-management-iam-role-with-a-db-cluster-1679691203006 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AddRoleToDBClusterCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/AddRoleToDBInstanceCommand.ts b/clients/client-rds/src/commands/AddRoleToDBInstanceCommand.ts index 5b77eefbc3580..a78f93d388b50 100644 --- a/clients/client-rds/src/commands/AddRoleToDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/AddRoleToDBInstanceCommand.ts @@ -72,20 +72,23 @@ export interface AddRoleToDBInstanceCommandOutput extends __MetadataBearer {} * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To associate an AWS Identity and Access Management (IAM) role with a DB instance * ```javascript * // The following example adds the role to a DB instance named test-instance. * const input = { - * "DBInstanceIdentifier": "test-instance", - * "FeatureName": "S3_INTEGRATION", - * "RoleArn": "arn:aws:iam::111122223333:role/rds-s3-integration-role" + * DBInstanceIdentifier: "test-instance", + * FeatureName: "S3_INTEGRATION", + * RoleArn: "arn:aws:iam::111122223333:role/rds-s3-integration-role" * }; * const command = new AddRoleToDBInstanceCommand(input); - * await client.send(command); - * // example id: to-associate-an-aws-identity-and-access-management-iam-role-with-a-db-instance-1679691512295 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AddRoleToDBInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/AddSourceIdentifierToSubscriptionCommand.ts b/clients/client-rds/src/commands/AddSourceIdentifierToSubscriptionCommand.ts index 5c50148160fce..37cda7d629744 100644 --- a/clients/client-rds/src/commands/AddSourceIdentifierToSubscriptionCommand.ts +++ b/clients/client-rds/src/commands/AddSourceIdentifierToSubscriptionCommand.ts @@ -82,41 +82,41 @@ export interface AddSourceIdentifierToSubscriptionCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To add a source identifier to a subscription * ```javascript * // The following example adds another source identifier to an existing subscription. * const input = { - * "SourceIdentifier": "test-instance-repl", - * "SubscriptionName": "my-instance-events" + * SourceIdentifier: "test-instance-repl", + * SubscriptionName: "my-instance-events" * }; * const command = new AddSourceIdentifierToSubscriptionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EventSubscription": { - * "CustSubscriptionId": "my-instance-events", - * "CustomerAwsId": "123456789012", - * "Enabled": false, - * "EventCategoriesList": [ + * EventSubscription: { + * CustSubscriptionId: "my-instance-events", + * CustomerAwsId: "123456789012", + * Enabled: false, + * EventCategoriesList: [ * "backup", * "recovery" * ], - * "EventSubscriptionArn": "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", - * "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events", - * "SourceIdsList": [ + * EventSubscriptionArn: "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", + * SnsTopicArn: "arn:aws:sns:us-east-1:123456789012:interesting-events", + * SourceIdsList: [ * "test-instance", * "test-instance-repl" * ], - * "SourceType": "db-instance", - * "Status": "modifying", - * "SubscriptionCreationTime": "Tue Jul 31 23:22:01 UTC 2018" + * SourceType: "db-instance", + * Status: "modifying", + * SubscriptionCreationTime: "Tue Jul 31 23:22:01 UTC 2018" * } * } * *\/ - * // example id: to-add-a-source-identifier-to-a-subscription-1679691771786 * ``` * + * @public */ export class AddSourceIdentifierToSubscriptionCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/AddTagsToResourceCommand.ts b/clients/client-rds/src/commands/AddTagsToResourceCommand.ts index b1224d41f4ec0..5dc44f1374dbe 100644 --- a/clients/client-rds/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-rds/src/commands/AddTagsToResourceCommand.ts @@ -94,24 +94,27 @@ export interface AddTagsToResourceCommandOutput extends __MetadataBearer {} * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To add tags to a resource * ```javascript * // This example adds a tag to an option group. * const input = { - * "ResourceName": "arn:aws:rds:us-east-1:992648334831:og:mymysqloptiongroup", - * "Tags": [ + * ResourceName: "arn:aws:rds:us-east-1:992648334831:og:mymysqloptiongroup", + * Tags: [ * { - * "Key": "Staging", - * "Value": "LocationDB" + * Key: "Staging", + * Value: "LocationDB" * } * ] * }; * const command = new AddTagsToResourceCommand(input); - * await client.send(command); - * // example id: add-tags-to-resource-fa99ef50-228b-449d-b893-ca4d4e9768ab + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AddTagsToResourceCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ApplyPendingMaintenanceActionCommand.ts b/clients/client-rds/src/commands/ApplyPendingMaintenanceActionCommand.ts index da5df31b2899c..af289c2cef71a 100644 --- a/clients/client-rds/src/commands/ApplyPendingMaintenanceActionCommand.ts +++ b/clients/client-rds/src/commands/ApplyPendingMaintenanceActionCommand.ts @@ -83,35 +83,35 @@ export interface ApplyPendingMaintenanceActionCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To apply pending maintenance actions * ```javascript * // The following example applies the pending maintenance actions for a DB cluster. * const input = { - * "ApplyAction": "system-update", - * "OptInType": "immediate", - * "ResourceIdentifier": "arn:aws:rds:us-east-1:123456789012:cluster:my-db-cluster" + * ApplyAction: "system-update", + * OptInType: "immediate", + * ResourceIdentifier: "arn:aws:rds:us-east-1:123456789012:cluster:my-db-cluster" * }; * const command = new ApplyPendingMaintenanceActionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ResourcePendingMaintenanceActions": { - * "PendingMaintenanceActionDetails": [ + * ResourcePendingMaintenanceActions: { + * PendingMaintenanceActionDetails: [ * { - * "Action": "system-update", - * "CurrentApplyDate": "2021-01-23T01:07:36.100Z", - * "Description": "Upgrade to Aurora PostgreSQL 3.3.2", - * "OptInStatus": "immediate" + * Action: "system-update", + * CurrentApplyDate: "2021-01-23T01:07:36.100Z", + * Description: "Upgrade to Aurora PostgreSQL 3.3.2", + * OptInStatus: "immediate" * } * ], - * "ResourceIdentifier": "arn:aws:rds:us-east-1:123456789012:cluster:my-db-cluster" + * ResourceIdentifier: "arn:aws:rds:us-east-1:123456789012:cluster:my-db-cluster" * } * } * *\/ - * // example id: to-apply-pending-maintenance-actions-1679692228896 * ``` * + * @public */ export class ApplyPendingMaintenanceActionCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/AuthorizeDBSecurityGroupIngressCommand.ts b/clients/client-rds/src/commands/AuthorizeDBSecurityGroupIngressCommand.ts index bfdcde29e01ee..0b10e307da88e 100644 --- a/clients/client-rds/src/commands/AuthorizeDBSecurityGroupIngressCommand.ts +++ b/clients/client-rds/src/commands/AuthorizeDBSecurityGroupIngressCommand.ts @@ -113,24 +113,24 @@ export interface AuthorizeDBSecurityGroupIngressCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To authorize DB security group integress * ```javascript * // This example authorizes access to the specified security group by the specified CIDR block. * const input = { - * "CIDRIP": "203.0.113.5/32", - * "DBSecurityGroupName": "mydbsecuritygroup" + * CIDRIP: "203.0.113.5/32", + * DBSecurityGroupName: "mydbsecuritygroup" * }; * const command = new AuthorizeDBSecurityGroupIngressCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBSecurityGroup": {} + * DBSecurityGroup: { /* empty *\/ } * } * *\/ - * // example id: authorize-db-security-group-ingress-ebf9ab91-8912-4b07-a32e-ca150668164f * ``` * + * @public */ export class AuthorizeDBSecurityGroupIngressCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/BacktrackDBClusterCommand.ts b/clients/client-rds/src/commands/BacktrackDBClusterCommand.ts index 2f7d5f744d0de..3a237d798d43c 100644 --- a/clients/client-rds/src/commands/BacktrackDBClusterCommand.ts +++ b/clients/client-rds/src/commands/BacktrackDBClusterCommand.ts @@ -77,6 +77,7 @@ export interface BacktrackDBClusterCommandOutput extends DBClusterBacktrack, __M * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class BacktrackDBClusterCommand extends $Command diff --git a/clients/client-rds/src/commands/CancelExportTaskCommand.ts b/clients/client-rds/src/commands/CancelExportTaskCommand.ts index ef1d24452ead7..70be29e2ae519 100644 --- a/clients/client-rds/src/commands/CancelExportTaskCommand.ts +++ b/clients/client-rds/src/commands/CancelExportTaskCommand.ts @@ -79,32 +79,32 @@ export interface CancelExportTaskCommandOutput extends ExportTask, __MetadataBea * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To cancel a snapshot export to Amazon S3 * ```javascript * // The following example cancels an export task in progress that is exporting a snapshot to Amazon S3. * const input = { - * "ExportTaskIdentifier": "my-s3-export-1" + * ExportTaskIdentifier: "my-s3-export-1" * }; * const command = new CancelExportTaskCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ExportTaskIdentifier": "my-s3-export-1", - * "IamRoleArn": "arn:aws:iam::123456789012:role/service-role/export-snap-S3-role", - * "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/abcd0000-7bfd-4594-af38-aabbccddeeff", - * "PercentProgress": 0, - * "S3Bucket": "mybucket", - * "S3Prefix": "", - * "SnapshotTime": "2019-03-24T20:01:09.815Z", - * "SourceArn": "arn:aws:rds:us-east-1:123456789012:snapshot:publisher-final-snapshot", - * "Status": "CANCELING", - * "TotalExtractedDataInGB": 0 + * ExportTaskIdentifier: "my-s3-export-1", + * IamRoleArn: "arn:aws:iam::123456789012:role/service-role/export-snap-S3-role", + * KmsKeyId: "arn:aws:kms:us-east-1:123456789012:key/abcd0000-7bfd-4594-af38-aabbccddeeff", + * PercentProgress: 0, + * S3Bucket: "mybucket", + * S3Prefix: "", + * SnapshotTime: "2019-03-24T20:01:09.815Z", + * SourceArn: "arn:aws:rds:us-east-1:123456789012:snapshot:publisher-final-snapshot", + * Status: "CANCELING", + * TotalExtractedDataInGB: 0 * } * *\/ - * // example id: to-cancel-a-snapshot-export-to-amazon-s3-1679694286587 * ``` * + * @public */ export class CancelExportTaskCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CopyDBClusterParameterGroupCommand.ts b/clients/client-rds/src/commands/CopyDBClusterParameterGroupCommand.ts index 14ebc729ea98b..5420a174b4750 100644 --- a/clients/client-rds/src/commands/CopyDBClusterParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/CopyDBClusterParameterGroupCommand.ts @@ -84,30 +84,30 @@ export interface CopyDBClusterParameterGroupCommandOutput extends CopyDBClusterP * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To copy a DB cluster parameter group * ```javascript * // This example copies a DB cluster parameter group. * const input = { - * "SourceDBClusterParameterGroupIdentifier": "mydbclusterparametergroup", - * "TargetDBClusterParameterGroupDescription": "My DB cluster parameter group copy", - * "TargetDBClusterParameterGroupIdentifier": "mydbclusterparametergroup-copy" + * SourceDBClusterParameterGroupIdentifier: "mydbclusterparametergroup", + * TargetDBClusterParameterGroupDescription: "My DB cluster parameter group copy", + * TargetDBClusterParameterGroupIdentifier: "mydbclusterparametergroup-copy" * }; * const command = new CopyDBClusterParameterGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusterParameterGroup": { - * "DBClusterParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterparametergroup-copy", - * "DBClusterParameterGroupName": "mydbclusterparametergroup-copy", - * "DBParameterGroupFamily": "aurora-mysql5.7", - * "Description": "My DB cluster parameter group copy" + * DBClusterParameterGroup: { + * DBClusterParameterGroupArn: "arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterparametergroup-copy", + * DBClusterParameterGroupName: "mydbclusterparametergroup-copy", + * DBParameterGroupFamily: "aurora-mysql5.7", + * Description: "My DB cluster parameter group copy" * } * } * *\/ - * // example id: copy-db-cluster-parameter-group-6fefaffe-cde9-4dba-9f0b-d3f593572fe4 * ``` * + * @public */ export class CopyDBClusterParameterGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CopyDBClusterSnapshotCommand.ts b/clients/client-rds/src/commands/CopyDBClusterSnapshotCommand.ts index 261182b042f18..a8c288b04abae 100644 --- a/clients/client-rds/src/commands/CopyDBClusterSnapshotCommand.ts +++ b/clients/client-rds/src/commands/CopyDBClusterSnapshotCommand.ts @@ -156,49 +156,49 @@ export interface CopyDBClusterSnapshotCommandOutput extends CopyDBClusterSnapsho * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To copy a DB cluster snapshot * ```javascript * // The following example creates a copy of a DB cluster snapshot, including its tags. * const input = { - * "CopyTags": true, - * "SourceDBClusterSnapshotIdentifier": "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:rds:myaurora-2019-06-04-09-16", - * "TargetDBClusterSnapshotIdentifier": "myclustersnapshotcopy" + * CopyTags: true, + * SourceDBClusterSnapshotIdentifier: "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:rds:myaurora-2019-06-04-09-16", + * TargetDBClusterSnapshotIdentifier: "myclustersnapshotcopy" * }; * const command = new CopyDBClusterSnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusterSnapshot": { - * "AllocatedStorage": 0, - * "AvailabilityZones": [ + * DBClusterSnapshot: { + * AllocatedStorage: 0, + * AvailabilityZones: [ * "us-east-1a", * "us-east-1b", * "us-east-1e" * ], - * "ClusterCreateTime": "2019-04-15T14:18:42.785Z", - * "DBClusterIdentifier": "myaurora", - * "DBClusterSnapshotArn": "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:myclustersnapshotcopy", - * "DBClusterSnapshotIdentifier": "myclustersnapshotcopy", - * "Engine": "aurora-mysql", - * "EngineVersion": "5.7.mysql_aurora.2.04.2", - * "IAMDatabaseAuthenticationEnabled": false, - * "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", - * "LicenseModel": "aurora-mysql", - * "MasterUsername": "myadmin", - * "PercentProgress": 100, - * "Port": 0, - * "SnapshotCreateTime": "2019-06-04T09:16:42.649Z", - * "SnapshotType": "manual", - * "Status": "available", - * "StorageEncrypted": true, - * "VpcId": "vpc-123example" + * ClusterCreateTime: "2019-04-15T14:18:42.785Z", + * DBClusterIdentifier: "myaurora", + * DBClusterSnapshotArn: "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:myclustersnapshotcopy", + * DBClusterSnapshotIdentifier: "myclustersnapshotcopy", + * Engine: "aurora-mysql", + * EngineVersion: "5.7.mysql_aurora.2.04.2", + * IAMDatabaseAuthenticationEnabled: false, + * KmsKeyId: "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", + * LicenseModel: "aurora-mysql", + * MasterUsername: "myadmin", + * PercentProgress: 100, + * Port: 0, + * SnapshotCreateTime: "2019-06-04T09:16:42.649Z", + * SnapshotType: "manual", + * Status: "available", + * StorageEncrypted: true, + * VpcId: "vpc-123example" * } * } * *\/ - * // example id: to-copy-a-db-cluster-snapshot-1679695109979 * ``` * + * @public */ export class CopyDBClusterSnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CopyDBParameterGroupCommand.ts b/clients/client-rds/src/commands/CopyDBParameterGroupCommand.ts index 9964c7ccb2a08..398953682cc47 100644 --- a/clients/client-rds/src/commands/CopyDBParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/CopyDBParameterGroupCommand.ts @@ -84,30 +84,30 @@ export interface CopyDBParameterGroupCommandOutput extends CopyDBParameterGroupR * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To copy a DB parameter group * ```javascript * // The following example makes a copy of a DB parameter group. * const input = { - * "SourceDBParameterGroupIdentifier": "mydbpg", - * "TargetDBParameterGroupDescription": "Copy of mydbpg parameter group", - * "TargetDBParameterGroupIdentifier": "mydbpgcopy" + * SourceDBParameterGroupIdentifier: "mydbpg", + * TargetDBParameterGroupDescription: "Copy of mydbpg parameter group", + * TargetDBParameterGroupIdentifier: "mydbpgcopy" * }; * const command = new CopyDBParameterGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBParameterGroup": { - * "DBParameterGroupArn": "arn:aws:rds:us-east-1:814387698303:pg:mydbpgcopy", - * "DBParameterGroupFamily": "mysql5.7", - * "DBParameterGroupName": "mydbpgcopy", - * "Description": "Copy of mydbpg parameter group" + * DBParameterGroup: { + * DBParameterGroupArn: "arn:aws:rds:us-east-1:814387698303:pg:mydbpgcopy", + * DBParameterGroupFamily: "mysql5.7", + * DBParameterGroupName: "mydbpgcopy", + * Description: "Copy of mydbpg parameter group" * } * } * *\/ - * // example id: to-copy-a-db-parameter-group-1679695426993 * ``` * + * @public */ export class CopyDBParameterGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CopyDBSnapshotCommand.ts b/clients/client-rds/src/commands/CopyDBSnapshotCommand.ts index d6770658a9e70..59e0298f320c9 100644 --- a/clients/client-rds/src/commands/CopyDBSnapshotCommand.ts +++ b/clients/client-rds/src/commands/CopyDBSnapshotCommand.ts @@ -145,50 +145,50 @@ export interface CopyDBSnapshotCommandOutput extends CopyDBSnapshotResult, __Met * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To copy a DB snapshot * ```javascript * // The following example creates a copy of a DB snapshot. * const input = { - * "SourceDBSnapshotIdentifier": "rds:database-mysql-2019-06-06-08-38", - * "TargetDBSnapshotIdentifier": "mydbsnapshotcopy" + * SourceDBSnapshotIdentifier: "rds:database-mysql-2019-06-06-08-38", + * TargetDBSnapshotIdentifier: "mydbsnapshotcopy" * }; * const command = new CopyDBSnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBSnapshot": { - * "AllocatedStorage": 100, - * "AvailabilityZone": "us-east-1f", - * "DBInstanceIdentifier": "database-mysql", - * "DBSnapshotArn": "arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshotcopy", - * "DBSnapshotIdentifier": "mydbsnapshotcopy", - * "DbiResourceId": "db-ZI7UJ5BLKMBYFGX7FDENCKADC4", - * "Encrypted": true, - * "Engine": "mysql", - * "EngineVersion": "5.6.40", - * "IAMDatabaseAuthenticationEnabled": false, - * "InstanceCreateTime": "2019-04-30T15:45:53.663Z", - * "Iops": 1000, - * "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", - * "LicenseModel": "general-public-license", - * "MasterUsername": "admin", - * "OptionGroupName": "default:mysql-5-6", - * "PercentProgress": 0, - * "Port": 3306, - * "ProcessorFeatures": [], - * "SnapshotType": "manual", - * "SourceDBSnapshotIdentifier": "arn:aws:rds:us-east-1:123456789012:snapshot:rds:database-mysql-2019-06-06-08-38", - * "SourceRegion": "us-east-1", - * "Status": "creating", - * "StorageType": "io1", - * "VpcId": "vpc-6594f31c" + * DBSnapshot: { + * AllocatedStorage: 100, + * AvailabilityZone: "us-east-1f", + * DBInstanceIdentifier: "database-mysql", + * DBSnapshotArn: "arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshotcopy", + * DBSnapshotIdentifier: "mydbsnapshotcopy", + * DbiResourceId: "db-ZI7UJ5BLKMBYFGX7FDENCKADC4", + * Encrypted: true, + * Engine: "mysql", + * EngineVersion: "5.6.40", + * IAMDatabaseAuthenticationEnabled: false, + * InstanceCreateTime: "2019-04-30T15:45:53.663Z", + * Iops: 1000, + * KmsKeyId: "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", + * LicenseModel: "general-public-license", + * MasterUsername: "admin", + * OptionGroupName: "default:mysql-5-6", + * PercentProgress: 0, + * Port: 3306, + * ProcessorFeatures: [], + * SnapshotType: "manual", + * SourceDBSnapshotIdentifier: "arn:aws:rds:us-east-1:123456789012:snapshot:rds:database-mysql-2019-06-06-08-38", + * SourceRegion: "us-east-1", + * Status: "creating", + * StorageType: "io1", + * VpcId: "vpc-6594f31c" * } * } * *\/ - * // example id: to-copy-a-db-snapshot-1679695661487 * ``` * + * @public */ export class CopyDBSnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CopyOptionGroupCommand.ts b/clients/client-rds/src/commands/CopyOptionGroupCommand.ts index 54d59ee96ca7e..f3998cbb38048 100644 --- a/clients/client-rds/src/commands/CopyOptionGroupCommand.ts +++ b/clients/client-rds/src/commands/CopyOptionGroupCommand.ts @@ -118,33 +118,33 @@ export interface CopyOptionGroupCommandOutput extends CopyOptionGroupResult, __M * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To copy an option group * ```javascript * // The following example makes a copy of an option group. * const input = { - * "SourceOptionGroupIdentifier": "myoptiongroup", - * "TargetOptionGroupDescription": "My option group copy", - * "TargetOptionGroupIdentifier": "new-option-group" + * SourceOptionGroupIdentifier: "myoptiongroup", + * TargetOptionGroupDescription: "My option group copy", + * TargetOptionGroupIdentifier: "new-option-group" * }; * const command = new CopyOptionGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OptionGroup": { - * "AllowsVpcAndNonVpcInstanceMemberships": true, - * "EngineName": "oracle-ee", - * "MajorEngineVersion": "11.2", - * "OptionGroupArn": "arn:aws:rds:us-east-1:123456789012:og:new-option-group", - * "OptionGroupDescription": "My option group copy", - * "OptionGroupName": "new-option-group", - * "Options": [] + * OptionGroup: { + * AllowsVpcAndNonVpcInstanceMemberships: true, + * EngineName: "oracle-ee", + * MajorEngineVersion: "11.2", + * OptionGroupArn: "arn:aws:rds:us-east-1:123456789012:og:new-option-group", + * OptionGroupDescription: "My option group copy", + * OptionGroupName: "new-option-group", + * Options: [] * } * } * *\/ - * // example id: to-copy-an-option-group-1679695800102 * ``` * + * @public */ export class CopyOptionGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateBlueGreenDeploymentCommand.ts b/clients/client-rds/src/commands/CreateBlueGreenDeploymentCommand.ts index 539f6bc92da98..31a079b2d3d67 100644 --- a/clients/client-rds/src/commands/CreateBlueGreenDeploymentCommand.ts +++ b/clients/client-rds/src/commands/CreateBlueGreenDeploymentCommand.ts @@ -154,134 +154,8 @@ export interface CreateBlueGreenDeploymentCommandOutput extends CreateBlueGreenD * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public - * @example To create a blue/green deployment for an RDS for MySQL DB instance - * ```javascript - * // The following example creates a blue/green deployment for a MySQL DB instance. - * const input = { - * "BlueGreenDeploymentName": "bgd-test-instance", - * "Source": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", - * "TargetDBParameterGroupName": "mysql-80-group", - * "TargetEngineVersion": "8.0" - * }; - * const command = new CreateBlueGreenDeploymentCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "BlueGreenDeployment": { - * "BlueGreenDeploymentIdentifier": "bgd-v53303651eexfake", - * "BlueGreenDeploymentName": "bgd-cli-test-instance", - * "CreateTime": "2022-02-25T21:18:51.183000+00:00", - * "Source": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", - * "Status": "PROVISIONING", - * "SwitchoverDetails": [ - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3" - * } - * ], - * "Tasks": [ - * { - * "Name": "CREATING_READ_REPLICA_OF_SOURCE", - * "Status": "PENDING" - * }, - * { - * "Name": "DB_ENGINE_VERSION_UPGRADE", - * "Status": "PENDING" - * }, - * { - * "Name": "CONFIGURE_BACKUPS", - * "Status": "PENDING" - * }, - * { - * "Name": "CREATING_TOPOLOGY_OF_SOURCE", - * "Status": "PENDING" - * } - * ] - * } - * } - * *\/ - * // example id: to-create-a-bluegreen-deployment-for-an-rds-for-mysql-db-instance-1679688377231 - * ``` - * - * @example To create a blue/green deployment for an Aurora MySQL DB cluster - * ```javascript - * // The following example creates a blue/green deployment for an Aurora MySQL DB cluster. - * const input = { - * "BlueGreenDeploymentName": "my-blue-green-deployment", - * "Source": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", - * "TargetDBClusterParameterGroupName": "mysql-80-cluster-group", - * "TargetDBParameterGroupName": "ams-80-binlog-enabled", - * "TargetEngineVersion": "8.0" - * }; - * const command = new CreateBlueGreenDeploymentCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "BlueGreenDeployment": { - * "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", - * "BlueGreenDeploymentName": "my-blue-green-deployment", - * "CreateTime": "2022-02-25T21:12:00.288000+00:00", - * "Source": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", - * "Status": "PROVISIONING", - * "SwitchoverDetails": [ - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", - * "Status": "PROVISIONING" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1", - * "Status": "PROVISIONING" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2", - * "Status": "PROVISIONING" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3", - * "Status": "PROVISIONING" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint", - * "Status": "PROVISIONING" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint", - * "Status": "PROVISIONING" - * } - * ], - * "Tasks": [ - * { - * "Name": "CREATING_READ_REPLICA_OF_SOURCE", - * "Status": "PENDING" - * }, - * { - * "Name": "DB_ENGINE_VERSION_UPGRADE", - * "Status": "PENDING" - * }, - * { - * "Name": "CREATE_DB_INSTANCES_FOR_CLUSTER", - * "Status": "PENDING" - * }, - * { - * "Name": "CREATE_CUSTOM_ENDPOINTS", - * "Status": "PENDING" - * } - * ] - * } - * } - * *\/ - * // example id: to-create-a-bluegreen-deployment-for-an-aurora-mysql-db-cluster-1679703605487 - * ``` * + * @public */ export class CreateBlueGreenDeploymentCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateCustomDBEngineVersionCommand.ts b/clients/client-rds/src/commands/CreateCustomDBEngineVersionCommand.ts index 352ec2f3dadbd..af76a62e80f14 100644 --- a/clients/client-rds/src/commands/CreateCustomDBEngineVersionCommand.ts +++ b/clients/client-rds/src/commands/CreateCustomDBEngineVersionCommand.ts @@ -172,6 +172,7 @@ export interface CreateCustomDBEngineVersionCommandOutput extends DBEngineVersio * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class CreateCustomDBEngineVersionCommand extends $Command diff --git a/clients/client-rds/src/commands/CreateDBClusterCommand.ts b/clients/client-rds/src/commands/CreateDBClusterCommand.ts index ff6eb2e59eac9..620a4ebcc7473 100644 --- a/clients/client-rds/src/commands/CreateDBClusterCommand.ts +++ b/clients/client-rds/src/commands/CreateDBClusterCommand.ts @@ -415,134 +415,133 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To create a MySQL 5.7-compatible DB cluster * ```javascript * // The following example creates a MySQL 5.7-compatible Aurora DB cluster. * const input = { - * "DBClusterIdentifier": "sample-cluster", - * "DBSubnetGroupName": "default", - * "Engine": "aurora-mysql", - * "EngineVersion": "5.7.12", - * "MasterUserPassword": "mypassword", - * "MasterUsername": "admin", - * "VpcSecurityGroupIds": [ + * DBClusterIdentifier: "sample-cluster", + * DBSubnetGroupName: "default", + * Engine: "aurora-mysql", + * EngineVersion: "5.7.12", + * MasterUserPassword: "mypassword", + * MasterUsername: "admin", + * VpcSecurityGroupIds: [ * "sg-0b91305example" * ] * }; * const command = new CreateDBClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBCluster": { - * "AllocatedStorage": 1, - * "AssociatedRoles": [], - * "AvailabilityZones": [ + * DBCluster: { + * AllocatedStorage: 1, + * AssociatedRoles: [], + * AvailabilityZones: [ * "us-east-1a", * "us-east-1b", * "us-east-1e" * ], - * "BackupRetentionPeriod": 1, - * "ClusterCreateTime": "2019-06-07T23:21:33.048Z", - * "CopyTagsToSnapshot": false, - * "DBClusterArn": "arn:aws:rds:us-east-1:123456789012:cluster:sample-cluster", - * "DBClusterIdentifier": "sample-cluster", - * "DBClusterMembers": [], - * "DBClusterParameterGroup": "default.aurora-mysql5.7", - * "DBSubnetGroup": "default", - * "DbClusterResourceId": "cluster-ANPAJ4AE5446DAEXAMPLE", - * "DeletionProtection": false, - * "Endpoint": "sample-cluster.cluster-cnpexample.us-east-1.rds.amazonaws.com", - * "Engine": "aurora-mysql", - * "EngineMode": "provisioned", - * "EngineVersion": "5.7.12", - * "HostedZoneId": "Z2R2ITUGPM61AM", - * "HttpEndpointEnabled": false, - * "IAMDatabaseAuthenticationEnabled": false, - * "MasterUsername": "master", - * "MultiAZ": false, - * "Port": 3306, - * "PreferredBackupWindow": "09:12-09:42", - * "PreferredMaintenanceWindow": "mon:04:31-mon:05:01", - * "ReadReplicaIdentifiers": [], - * "ReaderEndpoint": "sample-cluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", - * "Status": "creating", - * "StorageEncrypted": false, - * "VpcSecurityGroups": [ + * BackupRetentionPeriod: 1, + * ClusterCreateTime: "2019-06-07T23:21:33.048Z", + * CopyTagsToSnapshot: false, + * DBClusterArn: "arn:aws:rds:us-east-1:123456789012:cluster:sample-cluster", + * DBClusterIdentifier: "sample-cluster", + * DBClusterMembers: [], + * DBClusterParameterGroup: "default.aurora-mysql5.7", + * DBSubnetGroup: "default", + * DbClusterResourceId: "cluster-ANPAJ4AE5446DAEXAMPLE", + * DeletionProtection: false, + * Endpoint: "sample-cluster.cluster-cnpexample.us-east-1.rds.amazonaws.com", + * Engine: "aurora-mysql", + * EngineMode: "provisioned", + * EngineVersion: "5.7.12", + * HostedZoneId: "Z2R2ITUGPM61AM", + * HttpEndpointEnabled: false, + * IAMDatabaseAuthenticationEnabled: false, + * MasterUsername: "master", + * MultiAZ: false, + * Port: 3306, + * PreferredBackupWindow: "09:12-09:42", + * PreferredMaintenanceWindow: "mon:04:31-mon:05:01", + * ReadReplicaIdentifiers: [], + * ReaderEndpoint: "sample-cluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", + * Status: "creating", + * StorageEncrypted: false, + * VpcSecurityGroups: [ * { - * "Status": "active", - * "VpcSecurityGroupId": "sg-0b91305example" + * Status: "active", + * VpcSecurityGroupId: "sg-0b91305example" * } * ] * } * } * *\/ - * // example id: to-create-a-mysql-57-compatible-db-cluster-1679699416154 * ``` * * @example To create a PostgreSQL-compatible DB cluster * ```javascript * // The following example creates a PostgreSQL-compatible Aurora DB cluster. * const input = { - * "DBClusterIdentifier": "sample-pg-cluster", - * "DBSubnetGroupName": "default", - * "Engine": "aurora-postgresql", - * "MasterUserPassword": "mypassword", - * "MasterUsername": "admin", - * "VpcSecurityGroupIds": [ + * DBClusterIdentifier: "sample-pg-cluster", + * DBSubnetGroupName: "default", + * Engine: "aurora-postgresql", + * MasterUserPassword: "mypassword", + * MasterUsername: "admin", + * VpcSecurityGroupIds: [ * "sg-0b91305example" * ] * }; * const command = new CreateDBClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBCluster": { - * "AllocatedStorage": 1, - * "AssociatedRoles": [], - * "AvailabilityZones": [ + * DBCluster: { + * AllocatedStorage: 1, + * AssociatedRoles: [], + * AvailabilityZones: [ * "us-east-1a", * "us-east-1b", * "us-east-1c" * ], - * "BackupRetentionPeriod": 1, - * "ClusterCreateTime": "2019-06-07T23:26:08.371Z", - * "CopyTagsToSnapshot": false, - * "DBClusterArn": "arn:aws:rds:us-east-1:123456789012:cluster:sample-pg-cluster", - * "DBClusterIdentifier": "sample-pg-cluster", - * "DBClusterMembers": [], - * "DBClusterParameterGroup": "default.aurora-postgresql9.6", - * "DBSubnetGroup": "default", - * "DbClusterResourceId": "cluster-ANPAJ4AE5446DAEXAMPLE", - * "DeletionProtection": false, - * "Endpoint": "sample-pg-cluster.cluster-cnpexample.us-east-1.rds.amazonaws.com", - * "Engine": "aurora-postgresql", - * "EngineMode": "provisioned", - * "EngineVersion": "9.6.9", - * "HostedZoneId": "Z2R2ITUGPM61AM", - * "HttpEndpointEnabled": false, - * "IAMDatabaseAuthenticationEnabled": false, - * "MasterUsername": "master", - * "MultiAZ": false, - * "Port": 5432, - * "PreferredBackupWindow": "09:56-10:26", - * "PreferredMaintenanceWindow": "wed:03:33-wed:04:03", - * "ReadReplicaIdentifiers": [], - * "ReaderEndpoint": "sample-pg-cluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", - * "Status": "creating", - * "StorageEncrypted": false, - * "VpcSecurityGroups": [ + * BackupRetentionPeriod: 1, + * ClusterCreateTime: "2019-06-07T23:26:08.371Z", + * CopyTagsToSnapshot: false, + * DBClusterArn: "arn:aws:rds:us-east-1:123456789012:cluster:sample-pg-cluster", + * DBClusterIdentifier: "sample-pg-cluster", + * DBClusterMembers: [], + * DBClusterParameterGroup: "default.aurora-postgresql9.6", + * DBSubnetGroup: "default", + * DbClusterResourceId: "cluster-ANPAJ4AE5446DAEXAMPLE", + * DeletionProtection: false, + * Endpoint: "sample-pg-cluster.cluster-cnpexample.us-east-1.rds.amazonaws.com", + * Engine: "aurora-postgresql", + * EngineMode: "provisioned", + * EngineVersion: "9.6.9", + * HostedZoneId: "Z2R2ITUGPM61AM", + * HttpEndpointEnabled: false, + * IAMDatabaseAuthenticationEnabled: false, + * MasterUsername: "master", + * MultiAZ: false, + * Port: 5432, + * PreferredBackupWindow: "09:56-10:26", + * PreferredMaintenanceWindow: "wed:03:33-wed:04:03", + * ReadReplicaIdentifiers: [], + * ReaderEndpoint: "sample-pg-cluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", + * Status: "creating", + * StorageEncrypted: false, + * VpcSecurityGroups: [ * { - * "Status": "active", - * "VpcSecurityGroupId": "sg-0b91305example" + * Status: "active", + * VpcSecurityGroupId: "sg-0b91305example" * } * ] * } * } * *\/ - * // example id: to-create-a-postgresql-compatible-db-cluster-1679700161087 * ``` * + * @public */ export class CreateDBClusterCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateDBClusterEndpointCommand.ts b/clients/client-rds/src/commands/CreateDBClusterEndpointCommand.ts index f96473d8780f5..7d8d6a5bd60cd 100644 --- a/clients/client-rds/src/commands/CreateDBClusterEndpointCommand.ts +++ b/clients/client-rds/src/commands/CreateDBClusterEndpointCommand.ts @@ -105,41 +105,41 @@ export interface CreateDBClusterEndpointCommandOutput extends DBClusterEndpoint, * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To create a custom DB cluster endpoint * ```javascript * // The following example creates a custom DB cluster endpoint and associate it with the specified Aurora DB cluster. * const input = { - * "DBClusterEndpointIdentifier": "mycustomendpoint", - * "DBClusterIdentifier": "mydbcluster", - * "EndpointType": "reader", - * "StaticMembers": [ + * DBClusterEndpointIdentifier: "mycustomendpoint", + * DBClusterIdentifier: "mydbcluster", + * EndpointType: "reader", + * StaticMembers: [ * "dbinstance1", * "dbinstance2" * ] * }; * const command = new CreateDBClusterEndpointCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CustomEndpointType": "READER", - * "DBClusterEndpointArn": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:mycustomendpoint", - * "DBClusterEndpointIdentifier": "mycustomendpoint", - * "DBClusterEndpointResourceIdentifier": "cluster-endpoint-ANPAJ4AE5446DAEXAMPLE", - * "DBClusterIdentifier": "mydbcluster", - * "Endpoint": "mycustomendpoint.cluster-custom-cnpexample.us-east-1.rds.amazonaws.com", - * "EndpointType": "CUSTOM", - * "ExcludedMembers": [], - * "StaticMembers": [ + * CustomEndpointType: "READER", + * DBClusterEndpointArn: "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:mycustomendpoint", + * DBClusterEndpointIdentifier: "mycustomendpoint", + * DBClusterEndpointResourceIdentifier: "cluster-endpoint-ANPAJ4AE5446DAEXAMPLE", + * DBClusterIdentifier: "mydbcluster", + * Endpoint: "mycustomendpoint.cluster-custom-cnpexample.us-east-1.rds.amazonaws.com", + * EndpointType: "CUSTOM", + * ExcludedMembers: [], + * StaticMembers: [ * "dbinstance1", * "dbinstance2" * ], - * "Status": "creating" + * Status: "creating" * } * *\/ - * // example id: to-create-a-custom-db-cluster-endpoint-1679701608522 * ``` * + * @public */ export class CreateDBClusterEndpointCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateDBClusterParameterGroupCommand.ts b/clients/client-rds/src/commands/CreateDBClusterParameterGroupCommand.ts index 1043735660811..1b010167f909e 100644 --- a/clients/client-rds/src/commands/CreateDBClusterParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/CreateDBClusterParameterGroupCommand.ts @@ -109,30 +109,30 @@ export interface CreateDBClusterParameterGroupCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To create a DB cluster parameter group * ```javascript * // The following example creates a DB cluster parameter group. * const input = { - * "DBClusterParameterGroupName": "mydbclusterparametergroup", - * "DBParameterGroupFamily": "aurora5.6", - * "Description": "My new cluster parameter group" + * DBClusterParameterGroupName: "mydbclusterparametergroup", + * DBParameterGroupFamily: "aurora5.6", + * Description: "My new cluster parameter group" * }; * const command = new CreateDBClusterParameterGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusterParameterGroup": { - * "DBClusterParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterparametergroup", - * "DBClusterParameterGroupName": "mydbclusterparametergroup", - * "DBParameterGroupFamily": "aurora5.6", - * "Description": "My new cluster parameter group" + * DBClusterParameterGroup: { + * DBClusterParameterGroupArn: "arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterparametergroup", + * DBClusterParameterGroupName: "mydbclusterparametergroup", + * DBParameterGroupFamily: "aurora5.6", + * Description: "My new cluster parameter group" * } * } * *\/ - * // example id: to-create-a-db-cluster-parameter-group-1679702915771 * ``` * + * @public */ export class CreateDBClusterParameterGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateDBClusterSnapshotCommand.ts b/clients/client-rds/src/commands/CreateDBClusterSnapshotCommand.ts index f74896cdc0598..e6de4f5b9520a 100644 --- a/clients/client-rds/src/commands/CreateDBClusterSnapshotCommand.ts +++ b/clients/client-rds/src/commands/CreateDBClusterSnapshotCommand.ts @@ -118,48 +118,48 @@ export interface CreateDBClusterSnapshotCommandOutput extends CreateDBClusterSna * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To create a DB cluster snapshot * ```javascript * // The following example creates a DB cluster snapshot. * const input = { - * "DBClusterIdentifier": "mydbclustersnapshot", - * "DBClusterSnapshotIdentifier": "mydbcluster" + * DBClusterIdentifier: "mydbclustersnapshot", + * DBClusterSnapshotIdentifier: "mydbcluster" * }; * const command = new CreateDBClusterSnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusterSnapshot": { - * "AllocatedStorage": 1, - * "AvailabilityZones": [ + * DBClusterSnapshot: { + * AllocatedStorage: 1, + * AvailabilityZones: [ * "us-east-1a", * "us-east-1b", * "us-east-1e" * ], - * "ClusterCreateTime": "2019-04-15T14:18:42.785Z", - * "DBClusterIdentifier": "mydbcluster", - * "DBClusterSnapshotArn": "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:mydbclustersnapshot", - * "DBClusterSnapshotIdentifier": "mydbclustersnapshot", - * "Engine": "aurora-mysql", - * "EngineVersion": "5.7.mysql_aurora.2.04.2", - * "IAMDatabaseAuthenticationEnabled": false, - * "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", - * "LicenseModel": "aurora-mysql", - * "MasterUsername": "myadmin", - * "PercentProgress": 0, - * "Port": 0, - * "SnapshotCreateTime": "2019-06-18T21:21:00.469Z", - * "SnapshotType": "manual", - * "Status": "creating", - * "StorageEncrypted": true, - * "VpcId": "vpc-6594f31c" + * ClusterCreateTime: "2019-04-15T14:18:42.785Z", + * DBClusterIdentifier: "mydbcluster", + * DBClusterSnapshotArn: "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:mydbclustersnapshot", + * DBClusterSnapshotIdentifier: "mydbclustersnapshot", + * Engine: "aurora-mysql", + * EngineVersion: "5.7.mysql_aurora.2.04.2", + * IAMDatabaseAuthenticationEnabled: false, + * KmsKeyId: "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", + * LicenseModel: "aurora-mysql", + * MasterUsername: "myadmin", + * PercentProgress: 0, + * Port: 0, + * SnapshotCreateTime: "2019-06-18T21:21:00.469Z", + * SnapshotType: "manual", + * Status: "creating", + * StorageEncrypted: true, + * VpcId: "vpc-6594f31c" * } * } * *\/ - * // example id: to-create-a-db-cluster-snapshot-1679703154423 * ``` * + * @public */ export class CreateDBClusterSnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateDBInstanceCommand.ts b/clients/client-rds/src/commands/CreateDBInstanceCommand.ts index e151730f63032..01493a997f881 100644 --- a/clients/client-rds/src/commands/CreateDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/CreateDBInstanceCommand.ts @@ -449,115 +449,115 @@ export interface CreateDBInstanceCommandOutput extends CreateDBInstanceResult, _ * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To create a DB instance * ```javascript * // The following example uses the required options to launch a new DB instance. * const input = { - * "AllocatedStorage": 20, - * "DBInstanceClass": "db.t3.micro", - * "DBInstanceIdentifier": "test-mysql-instance", - * "Engine": "mysql", - * "MasterUserPassword": "secret99", - * "MasterUsername": "admin" + * AllocatedStorage: 20, + * DBInstanceClass: "db.t3.micro", + * DBInstanceIdentifier: "test-mysql-instance", + * Engine: "mysql", + * MasterUserPassword: "secret99", + * MasterUsername: "admin" * }; * const command = new CreateDBInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstance": { - * "AllocatedStorage": 20, - * "AssociatedRoles": [], - * "AutoMinorVersionUpgrade": true, - * "BackupRetentionPeriod": 1, - * "CACertificateIdentifier": "rds-ca-2019", - * "CopyTagsToSnapshot": false, - * "DBInstanceArn": "arn:aws:rds:us-west-2:123456789012:db:test-mysql-instance", - * "DBInstanceClass": "db.t3.micro", - * "DBInstanceIdentifier": "test-mysql-instance", - * "DBInstanceStatus": "creating", - * "DBParameterGroups": [ + * DBInstance: { + * AllocatedStorage: 20, + * AssociatedRoles: [], + * AutoMinorVersionUpgrade: true, + * BackupRetentionPeriod: 1, + * CACertificateIdentifier: "rds-ca-2019", + * CopyTagsToSnapshot: false, + * DBInstanceArn: "arn:aws:rds:us-west-2:123456789012:db:test-mysql-instance", + * DBInstanceClass: "db.t3.micro", + * DBInstanceIdentifier: "test-mysql-instance", + * DBInstanceStatus: "creating", + * DBParameterGroups: [ * { - * "DBParameterGroupName": "default.mysql5.7", - * "ParameterApplyStatus": "in-sync" + * DBParameterGroupName: "default.mysql5.7", + * ParameterApplyStatus: "in-sync" * } * ], - * "DBSecurityGroups": [], - * "DBSubnetGroup": { - * "DBSubnetGroupDescription": "default", - * "DBSubnetGroupName": "default", - * "SubnetGroupStatus": "Complete", - * "Subnets": [ + * DBSecurityGroups: [], + * DBSubnetGroup: { + * DBSubnetGroupDescription: "default", + * DBSubnetGroupName: "default", + * SubnetGroupStatus: "Complete", + * Subnets: [ * { - * "SubnetAvailabilityZone": { - * "Name": "us-west-2c" + * SubnetAvailabilityZone: { + * Name: "us-west-2c" * }, - * "SubnetIdentifier": "subnet-########", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-########", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-west-2d" + * SubnetAvailabilityZone: { + * Name: "us-west-2d" * }, - * "SubnetIdentifier": "subnet-########", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-########", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-west-2a" + * SubnetAvailabilityZone: { + * Name: "us-west-2a" * }, - * "SubnetIdentifier": "subnet-########", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-########", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-west-2b" + * SubnetAvailabilityZone: { + * Name: "us-west-2b" * }, - * "SubnetIdentifier": "subnet-########", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-########", + * SubnetStatus: "Active" * } * ], - * "VpcId": "vpc-2ff2ff2f" + * VpcId: "vpc-2ff2ff2f" * }, - * "DbInstancePort": 0, - * "DbiResourceId": "db-5555EXAMPLE44444444EXAMPLE", - * "DeletionProtection": false, - * "DomainMemberships": [], - * "Engine": "mysql", - * "EngineVersion": "5.7.22", - * "IAMDatabaseAuthenticationEnabled": false, - * "LicenseModel": "general-public-license", - * "MasterUsername": "admin", - * "MonitoringInterval": 0, - * "MultiAZ": false, - * "OptionGroupMemberships": [ + * DbInstancePort: 0, + * DbiResourceId: "db-5555EXAMPLE44444444EXAMPLE", + * DeletionProtection: false, + * DomainMemberships: [], + * Engine: "mysql", + * EngineVersion: "5.7.22", + * IAMDatabaseAuthenticationEnabled: false, + * LicenseModel: "general-public-license", + * MasterUsername: "admin", + * MonitoringInterval: 0, + * MultiAZ: false, + * OptionGroupMemberships: [ * { - * "OptionGroupName": "default:mysql-5-7", - * "Status": "in-sync" + * OptionGroupName: "default:mysql-5-7", + * Status: "in-sync" * } * ], - * "PendingModifiedValues": { - * "MasterUserPassword": "****" + * PendingModifiedValues: { + * MasterUserPassword: "****" * }, - * "PerformanceInsightsEnabled": false, - * "PreferredBackupWindow": "12:55-13:25", - * "PreferredMaintenanceWindow": "sun:08:07-sun:08:37", - * "PubliclyAccessible": true, - * "ReadReplicaDBInstanceIdentifiers": [], - * "StorageEncrypted": false, - * "StorageType": "gp2", - * "VpcSecurityGroups": [ + * PerformanceInsightsEnabled: false, + * PreferredBackupWindow: "12:55-13:25", + * PreferredMaintenanceWindow: "sun:08:07-sun:08:37", + * PubliclyAccessible: true, + * ReadReplicaDBInstanceIdentifiers: [], + * StorageEncrypted: false, + * StorageType: "gp2", + * VpcSecurityGroups: [ * { - * "Status": "active", - * "VpcSecurityGroupId": "sg-12345abc" + * Status: "active", + * VpcSecurityGroupId: "sg-12345abc" * } * ] * } * } * *\/ - * // example id: to-create-a-db-instance-1679703299533 * ``` * + * @public */ export class CreateDBInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateDBInstanceReadReplicaCommand.ts b/clients/client-rds/src/commands/CreateDBInstanceReadReplicaCommand.ts index d01abb292cb3d..968974c21265f 100644 --- a/clients/client-rds/src/commands/CreateDBInstanceReadReplicaCommand.ts +++ b/clients/client-rds/src/commands/CreateDBInstanceReadReplicaCommand.ts @@ -441,30 +441,30 @@ export interface CreateDBInstanceReadReplicaCommandOutput extends CreateDBInstan * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To create a DB instance read replica * ```javascript * // This example creates a read replica of an existing DB instance named test-instance. The read replica is named test-instance-repl. * const input = { - * "DBInstanceIdentifier": "test-instance-repl", - * "SourceDBInstanceIdentifier": "test-instance" + * DBInstanceIdentifier: "test-instance-repl", + * SourceDBInstanceIdentifier: "test-instance" * }; * const command = new CreateDBInstanceReadReplicaCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstance": { - * "DBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:test-instance-repl", - * "DBInstanceIdentifier": "test-instance-repl", - * "IAMDatabaseAuthenticationEnabled": false, - * "MonitoringInterval": 0, - * "ReadReplicaSourceDBInstanceIdentifier": "test-instance" + * DBInstance: { + * DBInstanceArn: "arn:aws:rds:us-east-1:123456789012:db:test-instance-repl", + * DBInstanceIdentifier: "test-instance-repl", + * IAMDatabaseAuthenticationEnabled: false, + * MonitoringInterval: 0, + * ReadReplicaSourceDBInstanceIdentifier: "test-instance" * } * } * *\/ - * // example id: to-create-a-db-instance-read-replica-1680129486105 * ``` * + * @public */ export class CreateDBInstanceReadReplicaCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateDBParameterGroupCommand.ts b/clients/client-rds/src/commands/CreateDBParameterGroupCommand.ts index e008f35b858ad..306fe1b4d8e2e 100644 --- a/clients/client-rds/src/commands/CreateDBParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/CreateDBParameterGroupCommand.ts @@ -83,30 +83,30 @@ export interface CreateDBParameterGroupCommandOutput extends CreateDBParameterGr * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To create a DB parameter group * ```javascript * // The following example creates a DB parameter group. * const input = { - * "DBParameterGroupFamily": "MySQL8.0", - * "DBParameterGroupName": "mydbparametergroup", - * "Description": "My new parameter group" + * DBParameterGroupFamily: "MySQL8.0", + * DBParameterGroupName: "mydbparametergroup", + * Description: "My new parameter group" * }; * const command = new CreateDBParameterGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBParameterGroup": { - * "DBParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:pg:mydbparametergroup", - * "DBParameterGroupFamily": "mysql8.0", - * "DBParameterGroupName": "mydbparametergroup", - * "Description": "My new parameter group" + * DBParameterGroup: { + * DBParameterGroupArn: "arn:aws:rds:us-east-1:123456789012:pg:mydbparametergroup", + * DBParameterGroupFamily: "mysql8.0", + * DBParameterGroupName: "mydbparametergroup", + * Description: "My new parameter group" * } * } * *\/ - * // example id: to-create-a-db-parameter-group-1679939227970 * ``` * + * @public */ export class CreateDBParameterGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateDBProxyCommand.ts b/clients/client-rds/src/commands/CreateDBProxyCommand.ts index c5a623fc33b76..a7271f521499b 100644 --- a/clients/client-rds/src/commands/CreateDBProxyCommand.ts +++ b/clients/client-rds/src/commands/CreateDBProxyCommand.ts @@ -120,6 +120,7 @@ export interface CreateDBProxyCommandOutput extends CreateDBProxyResponse, __Met * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class CreateDBProxyCommand extends $Command diff --git a/clients/client-rds/src/commands/CreateDBProxyEndpointCommand.ts b/clients/client-rds/src/commands/CreateDBProxyEndpointCommand.ts index e6eb0dd4bbe46..09531f0a5e697 100644 --- a/clients/client-rds/src/commands/CreateDBProxyEndpointCommand.ts +++ b/clients/client-rds/src/commands/CreateDBProxyEndpointCommand.ts @@ -102,6 +102,7 @@ export interface CreateDBProxyEndpointCommandOutput extends CreateDBProxyEndpoin * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class CreateDBProxyEndpointCommand extends $Command diff --git a/clients/client-rds/src/commands/CreateDBSecurityGroupCommand.ts b/clients/client-rds/src/commands/CreateDBSecurityGroupCommand.ts index a3f3d9e133b53..608461eb41159 100644 --- a/clients/client-rds/src/commands/CreateDBSecurityGroupCommand.ts +++ b/clients/client-rds/src/commands/CreateDBSecurityGroupCommand.ts @@ -101,24 +101,24 @@ export interface CreateDBSecurityGroupCommandOutput extends CreateDBSecurityGrou * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To create a DB security group. * ```javascript * // This example creates a DB security group. * const input = { - * "DBSecurityGroupDescription": "My DB security group", - * "DBSecurityGroupName": "mydbsecuritygroup" + * DBSecurityGroupDescription: "My DB security group", + * DBSecurityGroupName: "mydbsecuritygroup" * }; * const command = new CreateDBSecurityGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBSecurityGroup": {} + * DBSecurityGroup: { /* empty *\/ } * } * *\/ - * // example id: create-db-security-group-41b6786a-539e-42a5-a645-a8bc3cf99353 * ``` * + * @public */ export class CreateDBSecurityGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateDBShardGroupCommand.ts b/clients/client-rds/src/commands/CreateDBShardGroupCommand.ts index b3aed1e1b8e80..3664619978b3f 100644 --- a/clients/client-rds/src/commands/CreateDBShardGroupCommand.ts +++ b/clients/client-rds/src/commands/CreateDBShardGroupCommand.ts @@ -105,6 +105,7 @@ export interface CreateDBShardGroupCommandOutput extends DBShardGroup, __Metadat * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class CreateDBShardGroupCommand extends $Command diff --git a/clients/client-rds/src/commands/CreateDBSnapshotCommand.ts b/clients/client-rds/src/commands/CreateDBSnapshotCommand.ts index e00fc211e8056..097f75020f148 100644 --- a/clients/client-rds/src/commands/CreateDBSnapshotCommand.ts +++ b/clients/client-rds/src/commands/CreateDBSnapshotCommand.ts @@ -125,48 +125,48 @@ export interface CreateDBSnapshotCommandOutput extends CreateDBSnapshotResult, _ * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To create a DB snapshot * ```javascript * // The following example creates a DB snapshot. * const input = { - * "DBInstanceIdentifier": "mydbsnapshot", - * "DBSnapshotIdentifier": "database-mysql" + * DBInstanceIdentifier: "mydbsnapshot", + * DBSnapshotIdentifier: "database-mysql" * }; * const command = new CreateDBSnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBSnapshot": { - * "AllocatedStorage": 100, - * "AvailabilityZone": "us-east-1b", - * "DBInstanceIdentifier": "database-mysql", - * "DBSnapshotArn": "arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshot", - * "DBSnapshotIdentifier": "mydbsnapshot", - * "DbiResourceId": "db-AKIAIOSFODNN7EXAMPLE", - * "Encrypted": true, - * "Engine": "mysql", - * "EngineVersion": "8.0.32", - * "IAMDatabaseAuthenticationEnabled": false, - * "InstanceCreateTime": "2019-04-30T15:45:53.663Z", - * "Iops": 1000, - * "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", - * "LicenseModel": "general-public-license", - * "MasterUsername": "admin", - * "OptionGroupName": "default:mysql-8-0", - * "PercentProgress": 0, - * "Port": 3306, - * "ProcessorFeatures": [], - * "SnapshotType": "manual", - * "Status": "creating", - * "StorageType": "io1", - * "VpcId": "vpc-6594f31c" + * DBSnapshot: { + * AllocatedStorage: 100, + * AvailabilityZone: "us-east-1b", + * DBInstanceIdentifier: "database-mysql", + * DBSnapshotArn: "arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshot", + * DBSnapshotIdentifier: "mydbsnapshot", + * DbiResourceId: "db-AKIAIOSFODNN7EXAMPLE", + * Encrypted: true, + * Engine: "mysql", + * EngineVersion: "8.0.32", + * IAMDatabaseAuthenticationEnabled: false, + * InstanceCreateTime: "2019-04-30T15:45:53.663Z", + * Iops: 1000, + * KmsKeyId: "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", + * LicenseModel: "general-public-license", + * MasterUsername: "admin", + * OptionGroupName: "default:mysql-8-0", + * PercentProgress: 0, + * Port: 3306, + * ProcessorFeatures: [], + * SnapshotType: "manual", + * Status: "creating", + * StorageType: "io1", + * VpcId: "vpc-6594f31c" * } * } * *\/ - * // example id: to-create-a-db-snapshot-1679939585361 * ``` * + * @public */ export class CreateDBSnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateDBSubnetGroupCommand.ts b/clients/client-rds/src/commands/CreateDBSubnetGroupCommand.ts index 9ab50985f2cb8..b4f5e7655ff1f 100644 --- a/clients/client-rds/src/commands/CreateDBSubnetGroupCommand.ts +++ b/clients/client-rds/src/commands/CreateDBSubnetGroupCommand.ts @@ -104,14 +104,14 @@ export interface CreateDBSubnetGroupCommandOutput extends CreateDBSubnetGroupRes * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To create a DB subnet group * ```javascript * // The following example creates a DB subnet group called mysubnetgroup using existing subnets. * const input = { - * "DBSubnetGroupDescription": "test DB subnet group", - * "DBSubnetGroupName": "mysubnetgroup", - * "SubnetIds": [ + * DBSubnetGroupDescription: "test DB subnet group", + * DBSubnetGroupName: "mysubnetgroup", + * SubnetIds: [ * "subnet-0a1dc4e1a6f123456", * "subnet-070dd7ecb3aaaaaaa", * "subnet-00f5b198bc0abcdef" @@ -119,43 +119,43 @@ export interface CreateDBSubnetGroupCommandOutput extends CreateDBSubnetGroupRes * }; * const command = new CreateDBSubnetGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBSubnetGroup": { - * "DBSubnetGroupArn": "arn:aws:rds:us-west-2:0123456789012:subgrp:mysubnetgroup", - * "DBSubnetGroupDescription": "test DB subnet group", - * "DBSubnetGroupName": "mysubnetgroup", - * "SubnetGroupStatus": "Complete", - * "Subnets": [ + * DBSubnetGroup: { + * DBSubnetGroupArn: "arn:aws:rds:us-west-2:0123456789012:subgrp:mysubnetgroup", + * DBSubnetGroupDescription: "test DB subnet group", + * DBSubnetGroupName: "mysubnetgroup", + * SubnetGroupStatus: "Complete", + * Subnets: [ * { - * "SubnetAvailabilityZone": { - * "Name": "us-west-2b" + * SubnetAvailabilityZone: { + * Name: "us-west-2b" * }, - * "SubnetIdentifier": "subnet-070dd7ecb3aaaaaaa", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-070dd7ecb3aaaaaaa", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-west-2d" + * SubnetAvailabilityZone: { + * Name: "us-west-2d" * }, - * "SubnetIdentifier": "subnet-00f5b198bc0abcdef", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-00f5b198bc0abcdef", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-west-2b" + * SubnetAvailabilityZone: { + * Name: "us-west-2b" * }, - * "SubnetIdentifier": "subnet-0a1dc4e1a6f123456", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-0a1dc4e1a6f123456", + * SubnetStatus: "Active" * } * ], - * "VpcId": "vpc-0f08e7610a1b2c3d4" + * VpcId: "vpc-0f08e7610a1b2c3d4" * } * } * *\/ - * // example id: to-create-a-db-subnet-group-1679942682822 * ``` * + * @public */ export class CreateDBSubnetGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateEventSubscriptionCommand.ts b/clients/client-rds/src/commands/CreateEventSubscriptionCommand.ts index 5b19e0bf02929..7581bd31fd481 100644 --- a/clients/client-rds/src/commands/CreateEventSubscriptionCommand.ts +++ b/clients/client-rds/src/commands/CreateEventSubscriptionCommand.ts @@ -129,42 +129,42 @@ export interface CreateEventSubscriptionCommandOutput extends CreateEventSubscri * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To create an event subscription * ```javascript * // The following example creates a subscription for backup and recovery events for DB instances in the current AWS account. Notifications are sent to an Amazon Simple Notification Service topic. * const input = { - * "EventCategories": [ + * EventCategories: [ * "backup", * "recovery" * ], - * "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events", - * "SourceType": "db-instance", - * "SubscriptionName": "my-instance-events" + * SnsTopicArn: "arn:aws:sns:us-east-1:123456789012:interesting-events", + * SourceType: "db-instance", + * SubscriptionName: "my-instance-events" * }; * const command = new CreateEventSubscriptionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EventSubscription": { - * "CustSubscriptionId": "my-instance-events", - * "CustomerAwsId": "123456789012", - * "Enabled": true, - * "EventCategoriesList": [ + * EventSubscription: { + * CustSubscriptionId: "my-instance-events", + * CustomerAwsId: "123456789012", + * Enabled: true, + * EventCategoriesList: [ * "backup", * "recovery" * ], - * "EventSubscriptionArn": "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", - * "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events", - * "SourceType": "db-instance", - * "Status": "creating", - * "SubscriptionCreationTime": "Tue Jul 31 23:22:01 UTC 2018" + * EventSubscriptionArn: "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", + * SnsTopicArn: "arn:aws:sns:us-east-1:123456789012:interesting-events", + * SourceType: "db-instance", + * Status: "creating", + * SubscriptionCreationTime: "Tue Jul 31 23:22:01 UTC 2018" * } * } * *\/ - * // example id: to-create-an-event-subscription-1679956709288 * ``` * + * @public */ export class CreateEventSubscriptionCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateGlobalClusterCommand.ts b/clients/client-rds/src/commands/CreateGlobalClusterCommand.ts index 93cbc19c02ae0..9b5b4c5a818cf 100644 --- a/clients/client-rds/src/commands/CreateGlobalClusterCommand.ts +++ b/clients/client-rds/src/commands/CreateGlobalClusterCommand.ts @@ -129,34 +129,34 @@ export interface CreateGlobalClusterCommandOutput extends CreateGlobalClusterRes * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To create a global DB cluster * ```javascript * // The following example creates a new Aurora MySQL-compatible global DB cluster. * const input = { - * "Engine": "aurora-mysql", - * "GlobalClusterIdentifier": "myglobalcluster" + * Engine: "aurora-mysql", + * GlobalClusterIdentifier: "myglobalcluster" * }; * const command = new CreateGlobalClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GlobalCluster": { - * "DeletionProtection": false, - * "Engine": "aurora-mysql", - * "EngineVersion": "5.7.mysql_aurora.2.07.2", - * "GlobalClusterArn": "arn:aws:rds::123456789012:global-cluster:myglobalcluster", - * "GlobalClusterIdentifier": "myglobalcluster", - * "GlobalClusterMembers": [], - * "GlobalClusterResourceId": "cluster-f0e523bfe07aabb", - * "Status": "available", - * "StorageEncrypted": false + * GlobalCluster: { + * DeletionProtection: false, + * Engine: "aurora-mysql", + * EngineVersion: "5.7.mysql_aurora.2.07.2", + * GlobalClusterArn: "arn:aws:rds::123456789012:global-cluster:myglobalcluster", + * GlobalClusterIdentifier: "myglobalcluster", + * GlobalClusterMembers: [], + * GlobalClusterResourceId: "cluster-f0e523bfe07aabb", + * Status: "available", + * StorageEncrypted: false * } * } * *\/ - * // example id: to-create-a-global-db-cluster-1679957040413 * ``` * + * @public */ export class CreateGlobalClusterCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateIntegrationCommand.ts b/clients/client-rds/src/commands/CreateIntegrationCommand.ts index b9cf58f7d4852..37a98b202bbe9 100644 --- a/clients/client-rds/src/commands/CreateIntegrationCommand.ts +++ b/clients/client-rds/src/commands/CreateIntegrationCommand.ts @@ -114,32 +114,32 @@ export interface CreateIntegrationCommandOutput extends Integration, __MetadataB * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To create a zero-ETL integration * ```javascript * // The following example creates a zero-ETL integration with Amazon Redshift. * const input = { - * "IntegrationName": "my-integration", - * "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", - * "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" + * IntegrationName: "my-integration", + * SourceArn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", + * TargetArn: "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" * }; * const command = new CreateIntegrationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CreateTime": "2023-12-28T17:20:20.629Z", - * "IntegrationArn": "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231", - * "IntegrationName": "my-integration", - * "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa", - * "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", - * "Status": "creating", - * "Tags": [], - * "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" + * CreateTime: "2023-12-28T17:20:20.629Z", + * IntegrationArn: "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231", + * IntegrationName: "my-integration", + * KMSKeyId: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa", + * SourceArn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", + * Status: "creating", + * Tags: [], + * TargetArn: "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" * } * *\/ - * // example id: to-create-a-zero-etl-integration-1679688377231 * ``` * + * @public */ export class CreateIntegrationCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateOptionGroupCommand.ts b/clients/client-rds/src/commands/CreateOptionGroupCommand.ts index ae1e70b9a645c..d40b9a96e0005 100644 --- a/clients/client-rds/src/commands/CreateOptionGroupCommand.ts +++ b/clients/client-rds/src/commands/CreateOptionGroupCommand.ts @@ -117,34 +117,34 @@ export interface CreateOptionGroupCommandOutput extends CreateOptionGroupResult, * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To Create an Amazon RDS option group * ```javascript * // The following example creates a new Amazon RDS option group for Oracle MySQL version 8,0 named MyOptionGroup. * const input = { - * "EngineName": "mysql", - * "MajorEngineVersion": "8.0", - * "OptionGroupDescription": "MySQL 8.0 option group", - * "OptionGroupName": "MyOptionGroup" + * EngineName: "mysql", + * MajorEngineVersion: "8.0", + * OptionGroupDescription: "MySQL 8.0 option group", + * OptionGroupName: "MyOptionGroup" * }; * const command = new CreateOptionGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OptionGroup": { - * "AllowsVpcAndNonVpcInstanceMemberships": true, - * "EngineName": "mysql", - * "MajorEngineVersion": "8.0", - * "OptionGroupArn": "arn:aws:rds:us-east-1:123456789012:og:myoptiongroup", - * "OptionGroupDescription": "MySQL 8.0 option group", - * "OptionGroupName": "myoptiongroup", - * "Options": [] + * OptionGroup: { + * AllowsVpcAndNonVpcInstanceMemberships: true, + * EngineName: "mysql", + * MajorEngineVersion: "8.0", + * OptionGroupArn: "arn:aws:rds:us-east-1:123456789012:og:myoptiongroup", + * OptionGroupDescription: "MySQL 8.0 option group", + * OptionGroupName: "myoptiongroup", + * Options: [] * } * } * *\/ - * // example id: to-create-an-amazon-rds-option-group-1679958217590 * ``` * + * @public */ export class CreateOptionGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/CreateTenantDatabaseCommand.ts b/clients/client-rds/src/commands/CreateTenantDatabaseCommand.ts index a89b8b28c7e23..3733757abec8a 100644 --- a/clients/client-rds/src/commands/CreateTenantDatabaseCommand.ts +++ b/clients/client-rds/src/commands/CreateTenantDatabaseCommand.ts @@ -109,6 +109,7 @@ export interface CreateTenantDatabaseCommandOutput extends CreateTenantDatabaseR * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class CreateTenantDatabaseCommand extends $Command diff --git a/clients/client-rds/src/commands/DeleteBlueGreenDeploymentCommand.ts b/clients/client-rds/src/commands/DeleteBlueGreenDeploymentCommand.ts index 3a2e54caa35e4..7b1a78e125ed1 100644 --- a/clients/client-rds/src/commands/DeleteBlueGreenDeploymentCommand.ts +++ b/clients/client-rds/src/commands/DeleteBlueGreenDeploymentCommand.ts @@ -97,147 +97,8 @@ export interface DeleteBlueGreenDeploymentCommandOutput extends DeleteBlueGreenD * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public - * @example To delete resources in green environment for an RDS for MySQL DB instance - * ```javascript - * // The following example deletes the resources in a green environment for an RDS for MySQL DB instance. - * const input = { - * "BlueGreenDeploymentIdentifier": "bgd-v53303651eexfake", - * "DeleteTarget": true - * }; - * const command = new DeleteBlueGreenDeploymentCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "BlueGreenDeployment": { - * "BlueGreenDeploymentIdentifier": "bgd-v53303651eexfake", - * "BlueGreenDeploymentName": "bgd-cli-test-instance", - * "CreateTime": "2022-02-25T21:18:51.183000+00:00", - * "DeleteTime": "2022-02-25T22:25:31.331000+00:00", - * "Source": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", - * "Status": "DELETING", - * "SwitchoverDetails": [ - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-rkfbpe" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1-green-j382ha" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2-green-ejv4ao" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3-green-vlpz3t" - * } - * ], - * "Target": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-rkfbpe", - * "Tasks": [ - * { - * "Name": "CREATING_READ_REPLICA_OF_SOURCE", - * "Status": "COMPLETED" - * }, - * { - * "Name": "DB_ENGINE_VERSION_UPGRADE", - * "Status": "COMPLETED" - * }, - * { - * "Name": "CONFIGURE_BACKUPS", - * "Status": "COMPLETED" - * }, - * { - * "Name": "CREATING_TOPOLOGY_OF_SOURCE", - * "Status": "COMPLETED" - * } - * ] - * } - * } - * *\/ - * // example id: to-delete-resources-in-green-environment-for-an-rds-for-mysql-db-instance-1679959961651 - * ``` - * - * @example To delete resources in green environment for an Aurora MySQL DB cluster - * ```javascript - * // The following example deletes the resources in a green environment for an Aurora MySQL DB cluster. - * const input = { - * "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", - * "DeleteTarget": true - * }; - * const command = new DeleteBlueGreenDeploymentCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "BlueGreenDeployment": { - * "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", - * "BlueGreenDeploymentName": "my-blue-green-deployment", - * "CreateTime": "2022-02-25T21:12:00.288000+00:00", - * "DeleteTime": "2022-02-25T22:29:11.336000+00:00", - * "Source": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", - * "Status": "DELETING", - * "SwitchoverDetails": [ - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3rnukl" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1-green-gpmaxf" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2-green-j2oajq" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3-green-mkxies" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint-green-4sqjrq" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint-green-gwwzlg" - * } - * ], - * "Target": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3rnukl", - * "Tasks": [ - * { - * "Name": "CREATING_READ_REPLICA_OF_SOURCE", - * "Status": "COMPLETED" - * }, - * { - * "Name": "DB_ENGINE_VERSION_UPGRADE", - * "Status": "COMPLETED" - * }, - * { - * "Name": "CREATE_DB_INSTANCES_FOR_CLUSTER", - * "Status": "COMPLETED" - * }, - * { - * "Name": "CREATE_CUSTOM_ENDPOINTS", - * "Status": "COMPLETED" - * } - * ] - * } - * } - * *\/ - * // example id: to-delete-resources-in-green-environment-for-an-aurora-mysql-db-cluster-1679960123935 - * ``` * + * @public */ export class DeleteBlueGreenDeploymentCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteCustomDBEngineVersionCommand.ts b/clients/client-rds/src/commands/DeleteCustomDBEngineVersionCommand.ts index 86343757fde1f..c201b85134396 100644 --- a/clients/client-rds/src/commands/DeleteCustomDBEngineVersionCommand.ts +++ b/clients/client-rds/src/commands/DeleteCustomDBEngineVersionCommand.ts @@ -169,6 +169,7 @@ export interface DeleteCustomDBEngineVersionCommandOutput extends DBEngineVersio * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DeleteCustomDBEngineVersionCommand extends $Command diff --git a/clients/client-rds/src/commands/DeleteDBClusterAutomatedBackupCommand.ts b/clients/client-rds/src/commands/DeleteDBClusterAutomatedBackupCommand.ts index 378acd0d3d387..b7001201bf312 100644 --- a/clients/client-rds/src/commands/DeleteDBClusterAutomatedBackupCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBClusterAutomatedBackupCommand.ts @@ -99,6 +99,7 @@ export interface DeleteDBClusterAutomatedBackupCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DeleteDBClusterAutomatedBackupCommand extends $Command diff --git a/clients/client-rds/src/commands/DeleteDBClusterCommand.ts b/clients/client-rds/src/commands/DeleteDBClusterCommand.ts index 1cb93f1270c30..a627c382cb06a 100644 --- a/clients/client-rds/src/commands/DeleteDBClusterCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBClusterCommand.ts @@ -278,37 +278,37 @@ export interface DeleteDBClusterCommandOutput extends DeleteDBClusterResult, __M * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To delete a DB cluster * ```javascript * // The following example deletes the DB cluster named mycluster and takes a final snapshot named mycluster-final-snapshot. The status of the DB cluster is available while the snapshot is being taken. * const input = { - * "DBClusterIdentifier": "mycluster", - * "FinalDBSnapshotIdentifier": "mycluster-final-snapshot", - * "SkipFinalSnapshot": false + * DBClusterIdentifier: "mycluster", + * FinalDBSnapshotIdentifier: "mycluster-final-snapshot", + * SkipFinalSnapshot: false * }; * const command = new DeleteDBClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBCluster": { - * "AllocatedStorage": 20, - * "AvailabilityZones": [ + * DBCluster: { + * AllocatedStorage: 20, + * AvailabilityZones: [ * "eu-central-1b", * "eu-central-1c", * "eu-central-1a" * ], - * "BackupRetentionPeriod": 7, - * "DBClusterIdentifier": "mycluster", - * "DBClusterParameterGroup": "default.aurora-postgresql10", - * "DBSubnetGroup": "default-vpc-aa11bb22", - * "Status": "available" + * BackupRetentionPeriod: 7, + * DBClusterIdentifier: "mycluster", + * DBClusterParameterGroup: "default.aurora-postgresql10", + * DBSubnetGroup: "default-vpc-aa11bb22", + * Status: "available" * } * } * *\/ - * // example id: to-delete-a-db-cluster-1680197141906 * ``` * + * @public */ export class DeleteDBClusterCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteDBClusterEndpointCommand.ts b/clients/client-rds/src/commands/DeleteDBClusterEndpointCommand.ts index eefb50a0a117a..095cabdac026d 100644 --- a/clients/client-rds/src/commands/DeleteDBClusterEndpointCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBClusterEndpointCommand.ts @@ -80,36 +80,36 @@ export interface DeleteDBClusterEndpointCommandOutput extends DBClusterEndpoint, * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To delete a custom DB cluster endpoint * ```javascript * // The following example deletes the specified custom DB cluster endpoint. * const input = { - * "DBClusterEndpointIdentifier": "mycustomendpoint" + * DBClusterEndpointIdentifier: "mycustomendpoint" * }; * const command = new DeleteDBClusterEndpointCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CustomEndpointType": "READER", - * "DBClusterEndpointArn": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:mycustomendpoint", - * "DBClusterEndpointIdentifier": "mycustomendpoint", - * "DBClusterEndpointResourceIdentifier": "cluster-endpoint-ANPAJ4AE5446DAEXAMPLE", - * "DBClusterIdentifier": "mydbcluster", - * "Endpoint": "mycustomendpoint.cluster-custom-cnpexample.us-east-1.rds.amazonaws.com", - * "EndpointType": "CUSTOM", - * "ExcludedMembers": [], - * "StaticMembers": [ + * CustomEndpointType: "READER", + * DBClusterEndpointArn: "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:mycustomendpoint", + * DBClusterEndpointIdentifier: "mycustomendpoint", + * DBClusterEndpointResourceIdentifier: "cluster-endpoint-ANPAJ4AE5446DAEXAMPLE", + * DBClusterIdentifier: "mydbcluster", + * Endpoint: "mycustomendpoint.cluster-custom-cnpexample.us-east-1.rds.amazonaws.com", + * EndpointType: "CUSTOM", + * ExcludedMembers: [], + * StaticMembers: [ * "dbinstance1", * "dbinstance2", * "dbinstance3" * ], - * "Status": "deleting" + * Status: "deleting" * } * *\/ - * // example id: to-delete-a-custom-db-cluster-endpoint-1679960663390 * ``` * + * @public */ export class DeleteDBClusterEndpointCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteDBClusterParameterGroupCommand.ts b/clients/client-rds/src/commands/DeleteDBClusterParameterGroupCommand.ts index 1c6de5dd2aed2..e6d073d340753 100644 --- a/clients/client-rds/src/commands/DeleteDBClusterParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBClusterParameterGroupCommand.ts @@ -72,18 +72,21 @@ export interface DeleteDBClusterParameterGroupCommandOutput extends __MetadataBe * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To delete a DB cluster parameter group * ```javascript * // The following example deletes the specified DB cluster parameter group. * const input = { - * "DBClusterParameterGroupName": "mydbclusterparametergroup" + * DBClusterParameterGroupName: "mydbclusterparametergroup" * }; * const command = new DeleteDBClusterParameterGroupCommand(input); - * await client.send(command); - * // example id: to-delete-a-db-cluster-parameter-group-1679962185718 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteDBClusterParameterGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteDBClusterSnapshotCommand.ts b/clients/client-rds/src/commands/DeleteDBClusterSnapshotCommand.ts index e00de7d9dbf02..2c0c426db2d89 100644 --- a/clients/client-rds/src/commands/DeleteDBClusterSnapshotCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBClusterSnapshotCommand.ts @@ -106,47 +106,47 @@ export interface DeleteDBClusterSnapshotCommandOutput extends DeleteDBClusterSna * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To delete a DB cluster snapshot * ```javascript * // * const input = { - * "DBClusterSnapshotIdentifier": "mydbclustersnapshot" + * DBClusterSnapshotIdentifier: "mydbclustersnapshot" * }; * const command = new DeleteDBClusterSnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusterSnapshot": { - * "AllocatedStorage": 0, - * "AvailabilityZones": [ + * DBClusterSnapshot: { + * AllocatedStorage: 0, + * AvailabilityZones: [ * "us-east-1a", * "us-east-1b", * "us-east-1e" * ], - * "ClusterCreateTime": "2019-04-15T14:18:42.785Z", - * "DBClusterIdentifier": "mydbcluster", - * "DBClusterSnapshotArn": "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:mydbclustersnapshot", - * "DBClusterSnapshotIdentifier": "mydbclustersnapshot", - * "Engine": "aurora-mysql", - * "EngineVersion": "5.7.mysql_aurora.2.04.2", - * "IAMDatabaseAuthenticationEnabled": false, - * "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", - * "LicenseModel": "aurora-mysql", - * "MasterUsername": "myadmin", - * "PercentProgress": 100, - * "Port": 0, - * "SnapshotCreateTime": "2019-06-18T21:21:00.469Z", - * "SnapshotType": "manual", - * "Status": "available", - * "StorageEncrypted": true, - * "VpcId": "vpc-6594f31c" + * ClusterCreateTime: "2019-04-15T14:18:42.785Z", + * DBClusterIdentifier: "mydbcluster", + * DBClusterSnapshotArn: "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:mydbclustersnapshot", + * DBClusterSnapshotIdentifier: "mydbclustersnapshot", + * Engine: "aurora-mysql", + * EngineVersion: "5.7.mysql_aurora.2.04.2", + * IAMDatabaseAuthenticationEnabled: false, + * KmsKeyId: "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", + * LicenseModel: "aurora-mysql", + * MasterUsername: "myadmin", + * PercentProgress: 100, + * Port: 0, + * SnapshotCreateTime: "2019-06-18T21:21:00.469Z", + * SnapshotType: "manual", + * Status: "available", + * StorageEncrypted: true, + * VpcId: "vpc-6594f31c" * } * } * *\/ - * // example id: to-delete-a-db-cluster-snapshot-1679962808509 * ``` * + * @public */ export class DeleteDBClusterSnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteDBInstanceAutomatedBackupCommand.ts b/clients/client-rds/src/commands/DeleteDBInstanceAutomatedBackupCommand.ts index 12ed3c89757d1..02ee04003ff28 100644 --- a/clients/client-rds/src/commands/DeleteDBInstanceAutomatedBackupCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBInstanceAutomatedBackupCommand.ts @@ -107,45 +107,45 @@ export interface DeleteDBInstanceAutomatedBackupCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To delete a replicated automated backup from a Region * ```javascript * // The following example deletes the automated backup with the specified Amazon Resource Name (ARN). * const input = { - * "DBInstanceAutomatedBackupsArn": "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example" + * DBInstanceAutomatedBackupsArn: "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example" * }; * const command = new DeleteDBInstanceAutomatedBackupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstanceAutomatedBackup": { - * "AllocatedStorage": 20, - * "AvailabilityZone": "us-east-1b", - * "BackupRetentionPeriod": 7, - * "DBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db", - * "DBInstanceAutomatedBackupsArn": "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example", - * "DBInstanceIdentifier": "new-orcl-db", - * "DbiResourceId": "db-JKIB2GFQ5RV7REPLZA4EXAMPLE", - * "Encrypted": false, - * "Engine": "oracle-se2", - * "EngineVersion": "12.1.0.2.v21", - * "IAMDatabaseAuthenticationEnabled": false, - * "InstanceCreateTime": "2020-12-04T15:28:31Z", - * "LicenseModel": "bring-your-own-license", - * "MasterUsername": "admin", - * "OptionGroupName": "default:oracle-se2-12-1", - * "Port": 1521, - * "Region": "us-east-1", - * "RestoreWindow": {}, - * "Status": "deleting", - * "StorageType": "gp2", - * "VpcId": "vpc-########" + * DBInstanceAutomatedBackup: { + * AllocatedStorage: 20, + * AvailabilityZone: "us-east-1b", + * BackupRetentionPeriod: 7, + * DBInstanceArn: "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db", + * DBInstanceAutomatedBackupsArn: "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example", + * DBInstanceIdentifier: "new-orcl-db", + * DbiResourceId: "db-JKIB2GFQ5RV7REPLZA4EXAMPLE", + * Encrypted: false, + * Engine: "oracle-se2", + * EngineVersion: "12.1.0.2.v21", + * IAMDatabaseAuthenticationEnabled: false, + * InstanceCreateTime: "2020-12-04T15:28:31Z", + * LicenseModel: "bring-your-own-license", + * MasterUsername: "admin", + * OptionGroupName: "default:oracle-se2-12-1", + * Port: 1521, + * Region: "us-east-1", + * RestoreWindow: { /* empty *\/ }, + * Status: "deleting", + * StorageType: "gp2", + * VpcId: "vpc-########" * } * } * *\/ - * // example id: to-delete-a-replicated-automated-backup-from-a-region-1679963187406 * ``` * + * @public */ export class DeleteDBInstanceAutomatedBackupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteDBInstanceCommand.ts b/clients/client-rds/src/commands/DeleteDBInstanceCommand.ts index 4d720cd751da9..322db694d17b4 100644 --- a/clients/client-rds/src/commands/DeleteDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBInstanceCommand.ts @@ -327,28 +327,28 @@ export interface DeleteDBInstanceCommandOutput extends DeleteDBInstanceResult, _ * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To delete a DB instance * ```javascript * // The following example deletes the specified DB instance after creating a final DB snapshot named test-instance-final-snap. * const input = { - * "DBInstanceIdentifier": "test-instance", - * "FinalDBSnapshotIdentifier": "test-instance-final-snap", - * "SkipFinalSnapshot": false + * DBInstanceIdentifier: "test-instance", + * FinalDBSnapshotIdentifier: "test-instance-final-snap", + * SkipFinalSnapshot: false * }; * const command = new DeleteDBInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstance": { - * "DBInstanceIdentifier": "test-instance", - * "DBInstanceStatus": "deleting" + * DBInstance: { + * DBInstanceIdentifier: "test-instance", + * DBInstanceStatus: "deleting" * } * } * *\/ - * // example id: to-delete-a-db-instance-1680197458232 * ``` * + * @public */ export class DeleteDBInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteDBParameterGroupCommand.ts b/clients/client-rds/src/commands/DeleteDBParameterGroupCommand.ts index 5285f2a95a7da..b5209e0fdef82 100644 --- a/clients/client-rds/src/commands/DeleteDBParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBParameterGroupCommand.ts @@ -63,18 +63,21 @@ export interface DeleteDBParameterGroupCommandOutput extends __MetadataBearer {} * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To delete a DB parameter group * ```javascript * // The following example deletes a DB parameter group. * const input = { - * "DBParameterGroupName": "mydbparametergroup" + * DBParameterGroupName: "mydbparametergroup" * }; * const command = new DeleteDBParameterGroupCommand(input); - * await client.send(command); - * // example id: to-delete-a-db-parameter-group-1679963369020 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteDBParameterGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteDBProxyCommand.ts b/clients/client-rds/src/commands/DeleteDBProxyCommand.ts index ea4ec53599cef..c36b3fe971174 100644 --- a/clients/client-rds/src/commands/DeleteDBProxyCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBProxyCommand.ts @@ -90,6 +90,7 @@ export interface DeleteDBProxyCommandOutput extends DeleteDBProxyResponse, __Met * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DeleteDBProxyCommand extends $Command diff --git a/clients/client-rds/src/commands/DeleteDBProxyEndpointCommand.ts b/clients/client-rds/src/commands/DeleteDBProxyEndpointCommand.ts index efbd1398af9a1..01784e00b7124 100644 --- a/clients/client-rds/src/commands/DeleteDBProxyEndpointCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBProxyEndpointCommand.ts @@ -79,6 +79,7 @@ export interface DeleteDBProxyEndpointCommandOutput extends DeleteDBProxyEndpoin * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DeleteDBProxyEndpointCommand extends $Command diff --git a/clients/client-rds/src/commands/DeleteDBSecurityGroupCommand.ts b/clients/client-rds/src/commands/DeleteDBSecurityGroupCommand.ts index c133fc3498ca3..47af7320568b6 100644 --- a/clients/client-rds/src/commands/DeleteDBSecurityGroupCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBSecurityGroupCommand.ts @@ -68,18 +68,21 @@ export interface DeleteDBSecurityGroupCommandOutput extends __MetadataBearer {} * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To delete a DB security group * ```javascript * // The following example deletes a DB security group. * const input = { - * "DBSecurityGroupName": "mysecgroup" + * DBSecurityGroupName: "mysecgroup" * }; * const command = new DeleteDBSecurityGroupCommand(input); - * await client.send(command); - * // example id: to-delete-a-db-security-group-1473960141889 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteDBSecurityGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteDBShardGroupCommand.ts b/clients/client-rds/src/commands/DeleteDBShardGroupCommand.ts index 6e963f06d84b3..16e67a6d46209 100644 --- a/clients/client-rds/src/commands/DeleteDBShardGroupCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBShardGroupCommand.ts @@ -79,6 +79,7 @@ export interface DeleteDBShardGroupCommandOutput extends DBShardGroup, __Metadat * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DeleteDBShardGroupCommand extends $Command diff --git a/clients/client-rds/src/commands/DeleteDBSnapshotCommand.ts b/clients/client-rds/src/commands/DeleteDBSnapshotCommand.ts index d1d6046cff533..930685fd1360e 100644 --- a/clients/client-rds/src/commands/DeleteDBSnapshotCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBSnapshotCommand.ts @@ -113,48 +113,48 @@ export interface DeleteDBSnapshotCommandOutput extends DeleteDBSnapshotResult, _ * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To delete a DB snapshot * ```javascript * // The following example deletes the specified DB snapshot. * const input = { - * "DBSnapshotIdentifier": "mydbsnapshot" + * DBSnapshotIdentifier: "mydbsnapshot" * }; * const command = new DeleteDBSnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBSnapshot": { - * "AllocatedStorage": 100, - * "AvailabilityZone": "us-east-1b", - * "DBInstanceIdentifier": "database-mysql", - * "DBSnapshotArn": "arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshot", - * "DBSnapshotIdentifier": "mydbsnapshot", - * "DbiResourceId": "db-AKIAIOSFODNN7EXAMPLE", - * "Encrypted": true, - * "Engine": "mysql", - * "EngineVersion": "5.6.40", - * "IAMDatabaseAuthenticationEnabled": false, - * "InstanceCreateTime": "2019-04-30T15:45:53.663Z", - * "Iops": 1000, - * "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", - * "LicenseModel": "general-public-license", - * "MasterUsername": "admin", - * "OptionGroupName": "default:mysql-5-6", - * "PercentProgress": 100, - * "Port": 3306, - * "ProcessorFeatures": [], - * "SnapshotCreateTime": "2019-06-18T22:08:40.702Z", - * "SnapshotType": "manual", - * "Status": "deleted", - * "StorageType": "io1", - * "VpcId": "vpc-6594f31c" + * DBSnapshot: { + * AllocatedStorage: 100, + * AvailabilityZone: "us-east-1b", + * DBInstanceIdentifier: "database-mysql", + * DBSnapshotArn: "arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshot", + * DBSnapshotIdentifier: "mydbsnapshot", + * DbiResourceId: "db-AKIAIOSFODNN7EXAMPLE", + * Encrypted: true, + * Engine: "mysql", + * EngineVersion: "5.6.40", + * IAMDatabaseAuthenticationEnabled: false, + * InstanceCreateTime: "2019-04-30T15:45:53.663Z", + * Iops: 1000, + * KmsKeyId: "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", + * LicenseModel: "general-public-license", + * MasterUsername: "admin", + * OptionGroupName: "default:mysql-5-6", + * PercentProgress: 100, + * Port: 3306, + * ProcessorFeatures: [], + * SnapshotCreateTime: "2019-06-18T22:08:40.702Z", + * SnapshotType: "manual", + * Status: "deleted", + * StorageType: "io1", + * VpcId: "vpc-6594f31c" * } * } * *\/ - * // example id: to-delete-a-db-snapshot-1680111103708 * ``` * + * @public */ export class DeleteDBSnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteDBSubnetGroupCommand.ts b/clients/client-rds/src/commands/DeleteDBSubnetGroupCommand.ts index 21b73dbe7e0e8..f0a3a882f1cd5 100644 --- a/clients/client-rds/src/commands/DeleteDBSubnetGroupCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBSubnetGroupCommand.ts @@ -66,18 +66,21 @@ export interface DeleteDBSubnetGroupCommandOutput extends __MetadataBearer {} * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To delete a DB subnet group * ```javascript * // The following example deletes the DB subnet group called mysubnetgroup. * const input = { - * "DBSubnetGroupName": "mysubnetgroup" + * DBSubnetGroupName: "mysubnetgroup" * }; * const command = new DeleteDBSubnetGroupCommand(input); - * await client.send(command); - * // example id: to-delete-a-db-subnet-group-1680127744982 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteDBSubnetGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteEventSubscriptionCommand.ts b/clients/client-rds/src/commands/DeleteEventSubscriptionCommand.ts index 7e372d5294e2e..102eb73e73619 100644 --- a/clients/client-rds/src/commands/DeleteEventSubscriptionCommand.ts +++ b/clients/client-rds/src/commands/DeleteEventSubscriptionCommand.ts @@ -76,39 +76,39 @@ export interface DeleteEventSubscriptionCommandOutput extends DeleteEventSubscri * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To delete an event subscription * ```javascript * // The following example deletes the specified event subscription. * const input = { - * "SubscriptionName": "my-instance-events" + * SubscriptionName: "my-instance-events" * }; * const command = new DeleteEventSubscriptionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EventSubscription": { - * "CustSubscriptionId": "my-instance-events", - * "CustomerAwsId": "123456789012", - * "Enabled": false, - * "EventCategoriesList": [ + * EventSubscription: { + * CustSubscriptionId: "my-instance-events", + * CustomerAwsId: "123456789012", + * Enabled: false, + * EventCategoriesList: [ * "backup", * "recovery" * ], - * "EventSubscriptionArn": "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", - * "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events", - * "SourceIdsList": [ + * EventSubscriptionArn: "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", + * SnsTopicArn: "arn:aws:sns:us-east-1:123456789012:interesting-events", + * SourceIdsList: [ * "test-instance" * ], - * "SourceType": "db-instance", - * "Status": "deleting", - * "SubscriptionCreationTime": "2018-07-31 23:22:01.893" + * SourceType: "db-instance", + * Status: "deleting", + * SubscriptionCreationTime: "2018-07-31 23:22:01.893" * } * } * *\/ - * // example id: to-delete-an-event-subscription-1680128383147 * ``` * + * @public */ export class DeleteEventSubscriptionCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteGlobalClusterCommand.ts b/clients/client-rds/src/commands/DeleteGlobalClusterCommand.ts index 69337010609cc..d2bcf4fba5fb5 100644 --- a/clients/client-rds/src/commands/DeleteGlobalClusterCommand.ts +++ b/clients/client-rds/src/commands/DeleteGlobalClusterCommand.ts @@ -100,33 +100,33 @@ export interface DeleteGlobalClusterCommandOutput extends DeleteGlobalClusterRes * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To delete a global DB cluster * ```javascript * // The following example deletes an Aurora MySQL-compatible global DB cluster. * const input = { - * "GlobalClusterIdentifier": "myglobalcluster" + * GlobalClusterIdentifier: "myglobalcluster" * }; * const command = new DeleteGlobalClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GlobalCluster": { - * "DeletionProtection": false, - * "Engine": "aurora-mysql", - * "EngineVersion": "5.7.mysql_aurora.2.07.2", - * "GlobalClusterArn": "arn:aws:rds::123456789012:global-cluster:myglobalcluster", - * "GlobalClusterIdentifier": "myglobalcluster", - * "GlobalClusterMembers": [], - * "GlobalClusterResourceId": "cluster-f0e523bfe07aabb", - * "Status": "available", - * "StorageEncrypted": false + * GlobalCluster: { + * DeletionProtection: false, + * Engine: "aurora-mysql", + * EngineVersion: "5.7.mysql_aurora.2.07.2", + * GlobalClusterArn: "arn:aws:rds::123456789012:global-cluster:myglobalcluster", + * GlobalClusterIdentifier: "myglobalcluster", + * GlobalClusterMembers: [], + * GlobalClusterResourceId: "cluster-f0e523bfe07aabb", + * Status: "available", + * StorageEncrypted: false * } * } * *\/ - * // example id: to-delete-a-global-db-cluster-1680128523630 * ``` * + * @public */ export class DeleteGlobalClusterCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteIntegrationCommand.ts b/clients/client-rds/src/commands/DeleteIntegrationCommand.ts index dbfb173b361c1..26adb67c13350 100644 --- a/clients/client-rds/src/commands/DeleteIntegrationCommand.ts +++ b/clients/client-rds/src/commands/DeleteIntegrationCommand.ts @@ -89,30 +89,30 @@ export interface DeleteIntegrationCommandOutput extends Integration, __MetadataB * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To delete a zero-ETL integration * ```javascript * // The following example deletes a zero-ETL integration with Amazon Redshift. * const input = { - * "IntegrationIdentifier": "5b9f3d79-7392-4a3e-896c-58eaa1b53231" + * IntegrationIdentifier: "5b9f3d79-7392-4a3e-896c-58eaa1b53231" * }; * const command = new DeleteIntegrationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CreateTime": "2023-12-28T17:20:20.629Z", - * "IntegrationArn": "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231", - * "IntegrationName": "my-integration", - * "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa", - * "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", - * "Status": "deleting", - * "Tags": [], - * "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" + * CreateTime: "2023-12-28T17:20:20.629Z", + * IntegrationArn: "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231", + * IntegrationName: "my-integration", + * KMSKeyId: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa", + * SourceArn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", + * Status: "deleting", + * Tags: [], + * TargetArn: "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" * } * *\/ - * // example id: to-delete-a-zero-etl-integration-1679688377231 * ``` * + * @public */ export class DeleteIntegrationCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteOptionGroupCommand.ts b/clients/client-rds/src/commands/DeleteOptionGroupCommand.ts index 1bea4f857604e..45def0565d66e 100644 --- a/clients/client-rds/src/commands/DeleteOptionGroupCommand.ts +++ b/clients/client-rds/src/commands/DeleteOptionGroupCommand.ts @@ -59,18 +59,21 @@ export interface DeleteOptionGroupCommandOutput extends __MetadataBearer {} * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To delete an option group * ```javascript * // The following example deletes the specified option group. * const input = { - * "OptionGroupName": "myoptiongroup" + * OptionGroupName: "myoptiongroup" * }; * const command = new DeleteOptionGroupCommand(input); - * await client.send(command); - * // example id: to-delete-an-option-group-1680128894360 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteOptionGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DeleteTenantDatabaseCommand.ts b/clients/client-rds/src/commands/DeleteTenantDatabaseCommand.ts index 112076cbb9384..bd1634cef9aa9 100644 --- a/clients/client-rds/src/commands/DeleteTenantDatabaseCommand.ts +++ b/clients/client-rds/src/commands/DeleteTenantDatabaseCommand.ts @@ -97,6 +97,7 @@ export interface DeleteTenantDatabaseCommandOutput extends DeleteTenantDatabaseR * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DeleteTenantDatabaseCommand extends $Command diff --git a/clients/client-rds/src/commands/DeregisterDBProxyTargetsCommand.ts b/clients/client-rds/src/commands/DeregisterDBProxyTargetsCommand.ts index 9bc9c103195dd..98815a88d2134 100644 --- a/clients/client-rds/src/commands/DeregisterDBProxyTargetsCommand.ts +++ b/clients/client-rds/src/commands/DeregisterDBProxyTargetsCommand.ts @@ -72,6 +72,7 @@ export interface DeregisterDBProxyTargetsCommandOutput extends DeregisterDBProxy * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DeregisterDBProxyTargetsCommand extends $Command diff --git a/clients/client-rds/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-rds/src/commands/DescribeAccountAttributesCommand.ts index bb8bfe5266e1f..516e9fa3fdaa8 100644 --- a/clients/client-rds/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-rds/src/commands/DescribeAccountAttributesCommand.ts @@ -61,97 +61,97 @@ export interface DescribeAccountAttributesCommandOutput extends AccountAttribute * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe account attributes * ```javascript * // The following example retrieves the attributes for the current AWS account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeAccountAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AccountQuotas": [ + * AccountQuotas: [ * { - * "AccountQuotaName": "DBInstances", - * "Max": 40, - * "Used": 4 + * AccountQuotaName: "DBInstances", + * Max: 40, + * Used: 4 * }, * { - * "AccountQuotaName": "ReservedDBInstances", - * "Max": 40, - * "Used": 0 + * AccountQuotaName: "ReservedDBInstances", + * Max: 40, + * Used: 0 * }, * { - * "AccountQuotaName": "AllocatedStorage", - * "Max": 100000, - * "Used": 40 + * AccountQuotaName: "AllocatedStorage", + * Max: 100000, + * Used: 40 * }, * { - * "AccountQuotaName": "DBSecurityGroups", - * "Max": 25, - * "Used": 0 + * AccountQuotaName: "DBSecurityGroups", + * Max: 25, + * Used: 0 * }, * { - * "AccountQuotaName": "AuthorizationsPerDBSecurityGroup", - * "Max": 20, - * "Used": 0 + * AccountQuotaName: "AuthorizationsPerDBSecurityGroup", + * Max: 20, + * Used: 0 * }, * { - * "AccountQuotaName": "DBParameterGroups", - * "Max": 50, - * "Used": 1 + * AccountQuotaName: "DBParameterGroups", + * Max: 50, + * Used: 1 * }, * { - * "AccountQuotaName": "ManualSnapshots", - * "Max": 100, - * "Used": 3 + * AccountQuotaName: "ManualSnapshots", + * Max: 100, + * Used: 3 * }, * { - * "AccountQuotaName": "EventSubscriptions", - * "Max": 20, - * "Used": 0 + * AccountQuotaName: "EventSubscriptions", + * Max: 20, + * Used: 0 * }, * { - * "AccountQuotaName": "DBSubnetGroups", - * "Max": 50, - * "Used": 1 + * AccountQuotaName: "DBSubnetGroups", + * Max: 50, + * Used: 1 * }, * { - * "AccountQuotaName": "OptionGroups", - * "Max": 20, - * "Used": 1 + * AccountQuotaName: "OptionGroups", + * Max: 20, + * Used: 1 * }, * { - * "AccountQuotaName": "SubnetsPerDBSubnetGroup", - * "Max": 20, - * "Used": 6 + * AccountQuotaName: "SubnetsPerDBSubnetGroup", + * Max: 20, + * Used: 6 * }, * { - * "AccountQuotaName": "ReadReplicasPerMaster", - * "Max": 5, - * "Used": 0 + * AccountQuotaName: "ReadReplicasPerMaster", + * Max: 5, + * Used: 0 * }, * { - * "AccountQuotaName": "DBClusters", - * "Max": 40, - * "Used": 1 + * AccountQuotaName: "DBClusters", + * Max: 40, + * Used: 1 * }, * { - * "AccountQuotaName": "DBClusterParameterGroups", - * "Max": 50, - * "Used": 0 + * AccountQuotaName: "DBClusterParameterGroups", + * Max: 50, + * Used: 0 * }, * { - * "AccountQuotaName": "DBClusterRoles", - * "Max": 5, - * "Used": 0 + * AccountQuotaName: "DBClusterRoles", + * Max: 5, + * Used: 0 * } * ] * } * *\/ - * // example id: to-describe-account-attributes-1680210466935 * ``` * + * @public */ export class DescribeAccountAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeBlueGreenDeploymentsCommand.ts b/clients/client-rds/src/commands/DescribeBlueGreenDeploymentsCommand.ts index 8427374c5ca88..443eb8809f440 100644 --- a/clients/client-rds/src/commands/DescribeBlueGreenDeploymentsCommand.ts +++ b/clients/client-rds/src/commands/DescribeBlueGreenDeploymentsCommand.ts @@ -107,222 +107,8 @@ export interface DescribeBlueGreenDeploymentsCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public - * @example To describe a blue/green deployment of an RDS DB instance after creation completes - * ```javascript - * // The following example retrieves the details of a blue/green deployment after creation completes. - * const input = { - * "BlueGreenDeploymentIdentifier": "bgd-v53303651eexfake" - * }; - * const command = new DescribeBlueGreenDeploymentsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "BlueGreenDeployments": [ - * { - * "BlueGreenDeploymentIdentifier": "bgd-v53303651eexfake", - * "BlueGreenDeploymentName": "bgd-cli-test-instance", - * "CreateTime": "2022-02-25T21:18:51.183000+00:00", - * "Source": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", - * "Status": "AVAILABLE", - * "SwitchoverDetails": [ - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-rkfbpe" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1-green-j382ha" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2-green-ejv4ao" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3-green-vlpz3t" - * } - * ], - * "Target": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-rkfbpe", - * "Tasks": [ - * { - * "Name": "CREATING_READ_REPLICA_OF_SOURCE", - * "Status": "COMPLETED" - * }, - * { - * "Name": "DB_ENGINE_VERSION_UPGRADE", - * "Status": "COMPLETED" - * }, - * { - * "Name": "CONFIGURE_BACKUPS", - * "Status": "COMPLETED" - * }, - * { - * "Name": "CREATING_TOPOLOGY_OF_SOURCE", - * "Status": "COMPLETED" - * } - * ] - * } - * ] - * } - * *\/ - * // example id: to-describe-a-bluegreen-deployment-of-an-rds-db-instance-after-creation-completes-1680211143527 - * ``` - * - * @example To describe a blue/green deployment for an Aurora MySQL DB cluster - * ```javascript - * // The following example retrieves the details of a blue/green deployment. - * const input = { - * "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake" - * }; - * const command = new DescribeBlueGreenDeploymentsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "BlueGreenDeployments": [ - * { - * "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", - * "BlueGreenDeploymentName": "my-blue-green-deployment", - * "CreateTime": "2022-02-25T21:12:00.288000+00:00", - * "Source": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", - * "Status": "AVAILABLE", - * "SwitchoverDetails": [ - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3rnukl" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1-green-gpmaxf" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2-green-j2oajq" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3-green-mkxies" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint-green-4sqjrq" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint-green-gwwzlg" - * } - * ], - * "Target": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3rnukl", - * "Tasks": [ - * { - * "Name": "CREATING_READ_REPLICA_OF_SOURCE", - * "Status": "COMPLETED" - * }, - * { - * "Name": "DB_ENGINE_VERSION_UPGRADE", - * "Status": "COMPLETED" - * }, - * { - * "Name": "CREATE_DB_INSTANCES_FOR_CLUSTER", - * "Status": "COMPLETED" - * }, - * { - * "Name": "CREATE_CUSTOM_ENDPOINTS", - * "Status": "COMPLETED" - * } - * ] - * } - * ] - * } - * *\/ - * // example id: to-describe-a-bluegreen-deployment-for-an-aurora-mysql-db-cluster-1680211228214 - * ``` - * - * @example To describe a blue/green deployment for an Aurora MySQL cluster after switchover - * ```javascript - * // The following example retrieves the details about a blue/green deployment after the green environment is promoted to be the production environment. - * const input = { - * "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake" - * }; - * const command = new DescribeBlueGreenDeploymentsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "BlueGreenDeployments": [ - * { - * "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", - * "BlueGreenDeploymentName": "my-blue-green-deployment", - * "CreateTime": "2022-02-25T22:38:49.522000+00:00", - * "Source": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-old1", - * "Status": "SWITCHOVER_COMPLETED", - * "SwitchoverDetails": [ - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-old1", - * "Status": "SWITCHOVER_COMPLETED", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1-old1", - * "Status": "SWITCHOVER_COMPLETED", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2-old1", - * "Status": "SWITCHOVER_COMPLETED", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3-old1", - * "Status": "SWITCHOVER_COMPLETED", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint-old1", - * "Status": "SWITCHOVER_COMPLETED", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint-old1", - * "Status": "SWITCHOVER_COMPLETED", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint" - * } - * ], - * "Target": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", - * "Tasks": [ - * { - * "Name": "CREATING_READ_REPLICA_OF_SOURCE", - * "Status": "COMPLETED" - * }, - * { - * "Name": "DB_ENGINE_VERSION_UPGRADE", - * "Status": "COMPLETED" - * }, - * { - * "Name": "CREATE_DB_INSTANCES_FOR_CLUSTER", - * "Status": "COMPLETED" - * }, - * { - * "Name": "CREATE_CUSTOM_ENDPOINTS", - * "Status": "COMPLETED" - * } - * ] - * } - * ] - * } - * *\/ - * // example id: to-describe-a-bluegreen-deployment-for-an-aurora-mysql-cluster-after-switchover-1680211583831 - * ``` * + * @public */ export class DescribeBlueGreenDeploymentsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeCertificatesCommand.ts b/clients/client-rds/src/commands/DescribeCertificatesCommand.ts index 62b1052767c4e..d4e78d07516cf 100644 --- a/clients/client-rds/src/commands/DescribeCertificatesCommand.ts +++ b/clients/client-rds/src/commands/DescribeCertificatesCommand.ts @@ -88,59 +88,8 @@ export interface DescribeCertificatesCommandOutput extends CertificateMessage, _ * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public - * @example To describe certificates - * ```javascript - * // The following example retrieves the details of the certificate associated with the user's default region. - * const input = {}; - * const command = new DescribeCertificatesCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Certificates": [ - * { - * "CertificateArn": "arn:aws:rds:us-east-1::cert:rds-ca-ecc384-g1", - * "CertificateIdentifier": "rds-ca-ecc384-g1", - * "CertificateType": "CA", - * "CustomerOverride": false, - * "Thumbprint": "24a97b91cbe86911190576c35c36aab4fEXAMPLE", - * "ValidFrom": "2021-05-25T22:41:55+00:00", - * "ValidTill": "2121-05-25T23:41:55+00:00" - * }, - * { - * "CertificateArn": "arn:aws:rds:us-east-1::cert:rds-ca-rsa4096-g1", - * "CertificateIdentifier": "rds-ca-rsa4096-g1", - * "CertificateType": "CA", - * "CustomerOverride": false, - * "Thumbprint": "9da6fa7fd2ec09c569a400d876b01b0c1EXAMPLE", - * "ValidFrom": "2021-05-25T22:38:35+00:00", - * "ValidTill": "2121-05-25T23:38:35+00:00" - * }, - * { - * "CertificateArn": "arn:aws:rds:us-east-1::cert:rds-ca-rsa2048-g1", - * "CertificateIdentifier": "rds-ca-rsa2048-g1", - * "CertificateType": "CA", - * "CustomerOverride": true, - * "CustomerOverrideValidTill": "2061-05-25T23:34:57+00:00", - * "Thumbprint": "2fa77ef894d983ba9d37ad699c84ab0f6EXAMPLE", - * "ValidFrom": "2021-05-25T22:34:57+00:00", - * "ValidTill": "2061-05-25T23:34:57+00:00" - * }, - * { - * "CertificateArn": "arn:aws:rds:us-east-1::cert:rds-ca-2019", - * "CertificateIdentifier": "rds-ca-2019", - * "CertificateType": "CA", - * "CustomerOverride": false, - * "Thumbprint": "f0ed823ed14447bab557fdf3e49274669EXAMPLE", - * "ValidFrom": "2019-09-19T18:16:53+00:00", - * "ValidTill": "2024-08-22T17:08:50+00:00" - * } - * ] - * } - * *\/ - * // example id: to-describe-certificates-1680211777663 - * ``` * + * @public */ export class DescribeCertificatesCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBClusterAutomatedBackupsCommand.ts b/clients/client-rds/src/commands/DescribeDBClusterAutomatedBackupsCommand.ts index d63f53904ffa5..587fdd258ca52 100644 --- a/clients/client-rds/src/commands/DescribeDBClusterAutomatedBackupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClusterAutomatedBackupsCommand.ts @@ -111,6 +111,7 @@ export interface DescribeDBClusterAutomatedBackupsCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DescribeDBClusterAutomatedBackupsCommand extends $Command diff --git a/clients/client-rds/src/commands/DescribeDBClusterBacktracksCommand.ts b/clients/client-rds/src/commands/DescribeDBClusterBacktracksCommand.ts index e65146ed8f421..5e5ac97de5eb6 100644 --- a/clients/client-rds/src/commands/DescribeDBClusterBacktracksCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClusterBacktracksCommand.ts @@ -90,40 +90,40 @@ export interface DescribeDBClusterBacktracksCommandOutput extends DBClusterBackt * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe backtracks for a DB cluster * ```javascript * // The following example retrieves details about the specified DB cluster. * const input = { - * "DBClusterIdentifier": "mydbcluster" + * DBClusterIdentifier: "mydbcluster" * }; * const command = new DescribeDBClusterBacktracksCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusterBacktracks": [ + * DBClusterBacktracks: [ * { - * "BacktrackIdentifier": "2f5f5294-0dd2-44c9-9f50-EXAMPLE", - * "BacktrackRequestCreationTime": "2021-02-12T14:36:18.819Z", - * "BacktrackTo": "2021-02-12T04:59:22Z", - * "BacktrackedFrom": "2021-02-12T14:37:31.640Z", - * "DBClusterIdentifier": "mydbcluster", - * "Status": "COMPLETED" + * BacktrackIdentifier: "2f5f5294-0dd2-44c9-9f50-EXAMPLE", + * BacktrackRequestCreationTime: "2021-02-12T14:36:18.819Z", + * BacktrackTo: "2021-02-12T04:59:22Z", + * BacktrackedFrom: "2021-02-12T14:37:31.640Z", + * DBClusterIdentifier: "mydbcluster", + * Status: "COMPLETED" * }, * { - * "BacktrackIdentifier": "3c7a6421-af2a-4ea3-ae95-EXAMPLE", - * "BacktrackRequestCreationTime": "2021-02-12T00:07:53.487Z", - * "BacktrackTo": "2021-02-11T22:53:46Z", - * "BacktrackedFrom": "2021-02-12T00:09:27.006Z", - * "DBClusterIdentifier": "mydbcluster", - * "Status": "COMPLETED" + * BacktrackIdentifier: "3c7a6421-af2a-4ea3-ae95-EXAMPLE", + * BacktrackRequestCreationTime: "2021-02-12T00:07:53.487Z", + * BacktrackTo: "2021-02-11T22:53:46Z", + * BacktrackedFrom: "2021-02-12T00:09:27.006Z", + * DBClusterIdentifier: "mydbcluster", + * Status: "COMPLETED" * } * ] * } * *\/ - * // example id: to-describe-backtracks-for-a-db-cluster-1680212191454 * ``` * + * @public */ export class DescribeDBClusterBacktracksCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBClusterEndpointsCommand.ts b/clients/client-rds/src/commands/DescribeDBClusterEndpointsCommand.ts index fa5ff99d20fb3..05fe4c5f057fd 100644 --- a/clients/client-rds/src/commands/DescribeDBClusterEndpointsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClusterEndpointsCommand.ts @@ -91,69 +91,68 @@ export interface DescribeDBClusterEndpointsCommandOutput extends DBClusterEndpoi * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe DB cluster endpoints * ```javascript * // The following example retrieves details for your DB cluster endpoints. The most common kinds of Aurora clusters have two endpoints. One endpoint has type WRITER. You can use this endpoint for all SQL statements. The other endpoint has type READER. You can use this endpoint only for SELECT and other read-only SQL statements. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeDBClusterEndpointsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusterEndpoints": [ + * DBClusterEndpoints: [ * { - * "DBClusterIdentifier": "my-database-1", - * "Endpoint": "my-database-1.cluster-cnpexample.us-east-1.rds.amazonaws.com", - * "EndpointType": "WRITER", - * "Status": "creating" + * DBClusterIdentifier: "my-database-1", + * Endpoint: "my-database-1.cluster-cnpexample.us-east-1.rds.amazonaws.com", + * EndpointType: "WRITER", + * Status: "creating" * }, * { - * "DBClusterIdentifier": "my-database-1", - * "Endpoint": "my-database-1.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", - * "EndpointType": "READER", - * "Status": "creating" + * DBClusterIdentifier: "my-database-1", + * Endpoint: "my-database-1.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", + * EndpointType: "READER", + * Status: "creating" * }, * { - * "DBClusterIdentifier": "mydbcluster", - * "Endpoint": "mydbcluster.cluster-cnpexamle.us-east-1.rds.amazonaws.com", - * "EndpointType": "WRITER", - * "Status": "available" + * DBClusterIdentifier: "mydbcluster", + * Endpoint: "mydbcluster.cluster-cnpexamle.us-east-1.rds.amazonaws.com", + * EndpointType: "WRITER", + * Status: "available" * }, * { - * "DBClusterIdentifier": "mydbcluster", - * "Endpoint": "mydbcluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", - * "EndpointType": "READER", - * "Status": "available" + * DBClusterIdentifier: "mydbcluster", + * Endpoint: "mydbcluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", + * EndpointType: "READER", + * Status: "available" * } * ] * } * *\/ - * // example id: to-describe-db-cluster-endpoints-1680212701970 * ``` * * @example To describe DB cluster endpoints of a single DB cluster * ```javascript * // The following example retrieves details for the DB cluster endpoints of a single specified DB cluster. Aurora Serverless clusters have only a single endpoint with a type of WRITER. * const input = { - * "DBClusterIdentifier": "serverless-cluster" + * DBClusterIdentifier: "serverless-cluster" * }; * const command = new DescribeDBClusterEndpointsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusterEndpoints": [ + * DBClusterEndpoints: [ * { - * "DBClusterIdentifier": "serverless-cluster", - * "Endpoint": "serverless-cluster.cluster-cnpexample.us-east-1.rds.amazonaws.com", - * "EndpointType": "WRITER", - * "Status": "available" + * DBClusterIdentifier: "serverless-cluster", + * Endpoint: "serverless-cluster.cluster-cnpexample.us-east-1.rds.amazonaws.com", + * EndpointType: "WRITER", + * Status: "available" * } * ] * } * *\/ - * // example id: to-describe-db-cluster-endpoints-of-a-single-db-cluster-1680212863842 * ``` * + * @public */ export class DescribeDBClusterEndpointsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBClusterParameterGroupsCommand.ts b/clients/client-rds/src/commands/DescribeDBClusterParameterGroupsCommand.ts index 9b437ada9de8f..9e490d80d0a2d 100644 --- a/clients/client-rds/src/commands/DescribeDBClusterParameterGroupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClusterParameterGroupsCommand.ts @@ -91,52 +91,52 @@ export interface DescribeDBClusterParameterGroupsCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe DB cluster parameter groups * ```javascript * // The following example retrieves details for your DB cluster parameter groups. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeDBClusterParameterGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusterParameterGroups": [ + * DBClusterParameterGroups: [ * { - * "DBClusterParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:cluster-pg:default.aurora-mysql5.7", - * "DBClusterParameterGroupName": "default.aurora-mysql5.7", - * "DBParameterGroupFamily": "aurora-mysql5.7", - * "Description": "Default cluster parameter group for aurora-mysql5.7" + * DBClusterParameterGroupArn: "arn:aws:rds:us-east-1:123456789012:cluster-pg:default.aurora-mysql5.7", + * DBClusterParameterGroupName: "default.aurora-mysql5.7", + * DBParameterGroupFamily: "aurora-mysql5.7", + * Description: "Default cluster parameter group for aurora-mysql5.7" * }, * { - * "DBClusterParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:cluster-pg:default.aurora-postgresql9.6", - * "DBClusterParameterGroupName": "default.aurora-postgresql9.6", - * "DBParameterGroupFamily": "aurora-postgresql9.6", - * "Description": "Default cluster parameter group for aurora-postgresql9.6" + * DBClusterParameterGroupArn: "arn:aws:rds:us-east-1:123456789012:cluster-pg:default.aurora-postgresql9.6", + * DBClusterParameterGroupName: "default.aurora-postgresql9.6", + * DBParameterGroupFamily: "aurora-postgresql9.6", + * Description: "Default cluster parameter group for aurora-postgresql9.6" * }, * { - * "DBClusterParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:cluster-pg:default.aurora5.6", - * "DBClusterParameterGroupName": "default.aurora5.6", - * "DBParameterGroupFamily": "aurora5.6", - * "Description": "Default cluster parameter group for aurora5.6" + * DBClusterParameterGroupArn: "arn:aws:rds:us-east-1:123456789012:cluster-pg:default.aurora5.6", + * DBClusterParameterGroupName: "default.aurora5.6", + * DBParameterGroupFamily: "aurora5.6", + * Description: "Default cluster parameter group for aurora5.6" * }, * { - * "DBClusterParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterpg", - * "DBClusterParameterGroupName": "mydbclusterpg", - * "DBParameterGroupFamily": "aurora-mysql5.7", - * "Description": "My DB cluster parameter group" + * DBClusterParameterGroupArn: "arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterpg", + * DBClusterParameterGroupName: "mydbclusterpg", + * DBParameterGroupFamily: "aurora-mysql5.7", + * Description: "My DB cluster parameter group" * }, * { - * "DBClusterParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterpgcopy", - * "DBClusterParameterGroupName": "mydbclusterpgcopy", - * "DBParameterGroupFamily": "aurora-mysql5.7", - * "Description": "Copy of mydbclusterpg parameter group" + * DBClusterParameterGroupArn: "arn:aws:rds:us-east-1:123456789012:cluster-pg:mydbclusterpgcopy", + * DBClusterParameterGroupName: "mydbclusterpgcopy", + * DBParameterGroupFamily: "aurora-mysql5.7", + * Description: "Copy of mydbclusterpg parameter group" * } * ] * } * *\/ - * // example id: to-describe-db-cluster-parameter-groups-1680213090883 * ``` * + * @public */ export class DescribeDBClusterParameterGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBClusterParametersCommand.ts b/clients/client-rds/src/commands/DescribeDBClusterParametersCommand.ts index 55ad38ee8c679..5a0da141eab84 100644 --- a/clients/client-rds/src/commands/DescribeDBClusterParametersCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClusterParametersCommand.ts @@ -94,51 +94,51 @@ export interface DescribeDBClusterParametersCommandOutput extends DBClusterParam * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe the parameters in a DB cluster parameter group * ```javascript * // The following example retrieves details about the parameters in a DB cluster parameter group. * const input = { - * "DBClusterParameterGroupName": "mydbclusterpg" + * DBClusterParameterGroupName: "mydbclusterpg" * }; * const command = new DescribeDBClusterParametersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Parameters": [ + * Parameters: [ * { - * "AllowedValues": "0,1", - * "ApplyMethod": "pending-reboot", - * "ApplyType": "static", - * "DataType": "boolean", - * "Description": "Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded", - * "IsModifiable": false, - * "ParameterName": "allow-suspicious-udfs", - * "Source": "engine-default", - * "SupportedEngineModes": [ + * AllowedValues: "0,1", + * ApplyMethod: "pending-reboot", + * ApplyType: "static", + * DataType: "boolean", + * Description: "Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded", + * IsModifiable: false, + * ParameterName: "allow-suspicious-udfs", + * Source: "engine-default", + * SupportedEngineModes: [ * "provisioned" * ] * }, * { - * "AllowedValues": "0,1", - * "ApplyMethod": "pending-reboot", - * "ApplyType": "static", - * "DataType": "boolean", - * "Description": "Enables new features in the Aurora engine.", - * "IsModifiable": true, - * "ParameterName": "aurora_lab_mode", - * "ParameterValue": "0", - * "Source": "engine-default", - * "SupportedEngineModes": [ + * AllowedValues: "0,1", + * ApplyMethod: "pending-reboot", + * ApplyType: "static", + * DataType: "boolean", + * Description: "Enables new features in the Aurora engine.", + * IsModifiable: true, + * ParameterName: "aurora_lab_mode", + * ParameterValue: "0", + * Source: "engine-default", + * SupportedEngineModes: [ * "provisioned" * ] * } * ] * } * *\/ - * // example id: to-describe-the-parameters-in-a-db-cluster-parameter-group-1680213275624 * ``` * + * @public */ export class DescribeDBClusterParametersCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts b/clients/client-rds/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts index df8002b9dd6fb..145d28761d86c 100644 --- a/clients/client-rds/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts @@ -84,33 +84,33 @@ export interface DescribeDBClusterSnapshotAttributesCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe the attribute names and values for a DB cluster snapshot * ```javascript * // The following example retrieves details of the attribute names and values for the specified DB cluster snapshot. * const input = { - * "DBClusterSnapshotIdentifier": "myclustersnapshot" + * DBClusterSnapshotIdentifier: "myclustersnapshot" * }; * const command = new DescribeDBClusterSnapshotAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusterSnapshotAttributesResult": { - * "DBClusterSnapshotAttributes": [ + * DBClusterSnapshotAttributesResult: { + * DBClusterSnapshotAttributes: [ * { - * "AttributeName": "restore", - * "AttributeValues": [ + * AttributeName: "restore", + * AttributeValues: [ * "123456789012" * ] * } * ], - * "DBClusterSnapshotIdentifier": "myclustersnapshot" + * DBClusterSnapshotIdentifier: "myclustersnapshot" * } * } * *\/ - * // example id: to-describe-the-attribute-names-and-values-for-a-db-cluster-snapshot-1680216238905 * ``` * + * @public */ export class DescribeDBClusterSnapshotAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBClusterSnapshotsCommand.ts b/clients/client-rds/src/commands/DescribeDBClusterSnapshotsCommand.ts index c8a05bb0ec94c..b9ea82d2c969f 100644 --- a/clients/client-rds/src/commands/DescribeDBClusterSnapshotsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClusterSnapshotsCommand.ts @@ -117,74 +117,74 @@ export interface DescribeDBClusterSnapshotsCommandOutput extends DBClusterSnapsh * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe a DB cluster snapshot for a DB cluster * ```javascript * // The following example retrieves the details for the DB cluster snapshots for the specified DB cluster. * const input = { - * "DBClusterIdentifier": "mydbcluster" + * DBClusterIdentifier: "mydbcluster" * }; * const command = new DescribeDBClusterSnapshotsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusterSnapshots": [ + * DBClusterSnapshots: [ * { - * "AllocatedStorage": 0, - * "AvailabilityZones": [ + * AllocatedStorage: 0, + * AvailabilityZones: [ * "us-east-1a", * "us-east-1b", * "us-east-1e" * ], - * "ClusterCreateTime": "2019-04-15T14:18:42.785Z", - * "DBClusterIdentifier": "mydbcluster", - * "DBClusterSnapshotArn": "arn:aws:rds:us-east-1:814387698303:cluster-snapshot:myclustersnapshotcopy", - * "DBClusterSnapshotIdentifier": "myclustersnapshotcopy", - * "Engine": "aurora-mysql", - * "EngineVersion": "5.7.mysql_aurora.2.04.2", - * "IAMDatabaseAuthenticationEnabled": false, - * "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", - * "LicenseModel": "aurora-mysql", - * "MasterUsername": "myadmin", - * "PercentProgress": 100, - * "Port": 0, - * "SnapshotCreateTime": "2019-06-04T09:16:42.649Z", - * "SnapshotType": "manual", - * "Status": "available", - * "StorageEncrypted": true, - * "VpcId": "vpc-6594f31c" + * ClusterCreateTime: "2019-04-15T14:18:42.785Z", + * DBClusterIdentifier: "mydbcluster", + * DBClusterSnapshotArn: "arn:aws:rds:us-east-1:814387698303:cluster-snapshot:myclustersnapshotcopy", + * DBClusterSnapshotIdentifier: "myclustersnapshotcopy", + * Engine: "aurora-mysql", + * EngineVersion: "5.7.mysql_aurora.2.04.2", + * IAMDatabaseAuthenticationEnabled: false, + * KmsKeyId: "arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE", + * LicenseModel: "aurora-mysql", + * MasterUsername: "myadmin", + * PercentProgress: 100, + * Port: 0, + * SnapshotCreateTime: "2019-06-04T09:16:42.649Z", + * SnapshotType: "manual", + * Status: "available", + * StorageEncrypted: true, + * VpcId: "vpc-6594f31c" * }, * { - * "AllocatedStorage": 0, - * "AvailabilityZones": [ + * AllocatedStorage: 0, + * AvailabilityZones: [ * "us-east-1a", * "us-east-1b", * "us-east-1e" * ], - * "ClusterCreateTime": "2019-04-15T14:18:42.785Z", - * "DBClusterIdentifier": "mydbcluster", - * "DBClusterSnapshotArn": "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:rds:mydbcluster-2019-06-20-09-16", - * "DBClusterSnapshotIdentifier": "rds:mydbcluster-2019-06-20-09-16", - * "Engine": "aurora-mysql", - * "EngineVersion": "5.7.mysql_aurora.2.04.2", - * "IAMDatabaseAuthenticationEnabled": false, - * "KmsKeyId": "arn:aws:kms:us-east-1:814387698303:key/AKIAIOSFODNN7EXAMPLE", - * "LicenseModel": "aurora-mysql", - * "MasterUsername": "myadmin", - * "PercentProgress": 100, - * "Port": 0, - * "SnapshotCreateTime": "2019-06-20T09:16:26.569Z", - * "SnapshotType": "automated", - * "Status": "available", - * "StorageEncrypted": true, - * "VpcId": "vpc-6594f31c" + * ClusterCreateTime: "2019-04-15T14:18:42.785Z", + * DBClusterIdentifier: "mydbcluster", + * DBClusterSnapshotArn: "arn:aws:rds:us-east-1:123456789012:cluster-snapshot:rds:mydbcluster-2019-06-20-09-16", + * DBClusterSnapshotIdentifier: "rds:mydbcluster-2019-06-20-09-16", + * Engine: "aurora-mysql", + * EngineVersion: "5.7.mysql_aurora.2.04.2", + * IAMDatabaseAuthenticationEnabled: false, + * KmsKeyId: "arn:aws:kms:us-east-1:814387698303:key/AKIAIOSFODNN7EXAMPLE", + * LicenseModel: "aurora-mysql", + * MasterUsername: "myadmin", + * PercentProgress: 100, + * Port: 0, + * SnapshotCreateTime: "2019-06-20T09:16:26.569Z", + * SnapshotType: "automated", + * Status: "available", + * StorageEncrypted: true, + * VpcId: "vpc-6594f31c" * } * ] * } * *\/ - * // example id: to-describe-a-db-cluster-snapshot-for-a-db-cluster-1680216426182 * ``` * + * @public */ export class DescribeDBClusterSnapshotsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBClustersCommand.ts b/clients/client-rds/src/commands/DescribeDBClustersCommand.ts index 8b2fab45231b8..bccc234c255aa 100644 --- a/clients/client-rds/src/commands/DescribeDBClustersCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClustersCommand.ts @@ -269,105 +269,105 @@ export interface DescribeDBClustersCommandOutput extends DBClusterMessage, __Met * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe a DB cluster * ```javascript * // The following example retrieves the details of the specified DB cluster. * const input = { - * "DBClusterIdentifier": "mydbcluster" + * DBClusterIdentifier: "mydbcluster" * }; * const command = new DescribeDBClustersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusters": [ + * DBClusters: [ * { - * "AllocatedStorage": 1, - * "AssociatedRoles": [], - * "AvailabilityZones": [ + * AllocatedStorage: 1, + * AssociatedRoles: [], + * AvailabilityZones: [ * "us-east-1a", * "us-east-1b", * "us-east-1e" * ], - * "BackupRetentionPeriod": 1, - * "ClusterCreateTime": "2019-04-15T14:18:42.785Z", - * "DBClusterArn": "arn:aws:rds:us-east-1:123456789012:cluster:mydbcluster", - * "DBClusterIdentifier": "mydbcluster", - * "DBClusterMembers": [ + * BackupRetentionPeriod: 1, + * ClusterCreateTime: "2019-04-15T14:18:42.785Z", + * DBClusterArn: "arn:aws:rds:us-east-1:123456789012:cluster:mydbcluster", + * DBClusterIdentifier: "mydbcluster", + * DBClusterMembers: [ * { - * "DBClusterParameterGroupStatus": "in-sync", - * "DBInstanceIdentifier": "dbinstance3", - * "IsClusterWriter": false, - * "PromotionTier": 1 + * DBClusterParameterGroupStatus: "in-sync", + * DBInstanceIdentifier: "dbinstance3", + * IsClusterWriter: false, + * PromotionTier: 1 * }, * { - * "DBClusterParameterGroupStatus": "in-sync", - * "DBInstanceIdentifier": "dbinstance1", - * "IsClusterWriter": false, - * "PromotionTier": 1 + * DBClusterParameterGroupStatus: "in-sync", + * DBInstanceIdentifier: "dbinstance1", + * IsClusterWriter: false, + * PromotionTier: 1 * }, * { - * "DBClusterParameterGroupStatus": "in-sync", - * "DBInstanceIdentifier": "dbinstance2", - * "IsClusterWriter": false, - * "PromotionTier": 1 + * DBClusterParameterGroupStatus: "in-sync", + * DBInstanceIdentifier: "dbinstance2", + * IsClusterWriter: false, + * PromotionTier: 1 * }, * { - * "DBClusterParameterGroupStatus": "in-sync", - * "DBInstanceIdentifier": "mydbcluster", - * "IsClusterWriter": false, - * "PromotionTier": 1 + * DBClusterParameterGroupStatus: "in-sync", + * DBInstanceIdentifier: "mydbcluster", + * IsClusterWriter: false, + * PromotionTier: 1 * }, * { - * "DBClusterParameterGroupStatus": "in-sync", - * "DBInstanceIdentifier": "mydbcluster-us-east-1b", - * "IsClusterWriter": false, - * "PromotionTier": 1 + * DBClusterParameterGroupStatus: "in-sync", + * DBInstanceIdentifier: "mydbcluster-us-east-1b", + * IsClusterWriter: false, + * PromotionTier: 1 * }, * { - * "DBClusterParameterGroupStatus": "in-sync", - * "DBInstanceIdentifier": "mydbcluster", - * "IsClusterWriter": true, - * "PromotionTier": 1 + * DBClusterParameterGroupStatus: "in-sync", + * DBInstanceIdentifier: "mydbcluster", + * IsClusterWriter: true, + * PromotionTier: 1 * } * ], - * "DBClusterParameterGroup": "default.aurora-mysql5.7", - * "DBSubnetGroup": "default", - * "DatabaseName": "mydbcluster", - * "DbClusterResourceId": "cluster-AKIAIOSFODNN7EXAMPLE", - * "DeletionProtection": false, - * "EarliestRestorableTime": "2019-06-19T09:16:28.210Z", - * "Endpoint": "mydbcluster.cluster-cnpexample.us-east-1.rds.amazonaws.com", - * "Engine": "aurora-mysql", - * "EngineMode": "provisioned", - * "EngineVersion": "5.7.mysql_aurora.2.04.2", - * "HostedZoneId": "Z2R2ITUGPM61AM", - * "HttpEndpointEnabled": false, - * "IAMDatabaseAuthenticationEnabled": false, - * "KmsKeyId": "arn:aws:kms:us-east-1:814387698303:key/AKIAIOSFODNN7EXAMPLE", - * "LatestRestorableTime": "2019-06-20T22:38:14.908Z", - * "MasterUsername": "myadmin", - * "MultiAZ": true, - * "Port": 3306, - * "PreferredBackupWindow": "09:09-09:39", - * "PreferredMaintenanceWindow": "sat:04:09-sat:04:39", - * "ReadReplicaIdentifiers": [], - * "ReaderEndpoint": "mydbcluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", - * "Status": "available", - * "StorageEncrypted": true, - * "VpcSecurityGroups": [ + * DBClusterParameterGroup: "default.aurora-mysql5.7", + * DBSubnetGroup: "default", + * DatabaseName: "mydbcluster", + * DbClusterResourceId: "cluster-AKIAIOSFODNN7EXAMPLE", + * DeletionProtection: false, + * EarliestRestorableTime: "2019-06-19T09:16:28.210Z", + * Endpoint: "mydbcluster.cluster-cnpexample.us-east-1.rds.amazonaws.com", + * Engine: "aurora-mysql", + * EngineMode: "provisioned", + * EngineVersion: "5.7.mysql_aurora.2.04.2", + * HostedZoneId: "Z2R2ITUGPM61AM", + * HttpEndpointEnabled: false, + * IAMDatabaseAuthenticationEnabled: false, + * KmsKeyId: "arn:aws:kms:us-east-1:814387698303:key/AKIAIOSFODNN7EXAMPLE", + * LatestRestorableTime: "2019-06-20T22:38:14.908Z", + * MasterUsername: "myadmin", + * MultiAZ: true, + * Port: 3306, + * PreferredBackupWindow: "09:09-09:39", + * PreferredMaintenanceWindow: "sat:04:09-sat:04:39", + * ReadReplicaIdentifiers: [], + * ReaderEndpoint: "mydbcluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", + * Status: "available", + * StorageEncrypted: true, + * VpcSecurityGroups: [ * { - * "Status": "active", - * "VpcSecurityGroupId": "sg-0b9130572daf3dc16" + * Status: "active", + * VpcSecurityGroupId: "sg-0b9130572daf3dc16" * } * ] * } * ] * } * *\/ - * // example id: to-describe-a-db-cluster-1680215000529 * ``` * + * @public */ export class DescribeDBClustersCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBEngineVersionsCommand.ts b/clients/client-rds/src/commands/DescribeDBEngineVersionsCommand.ts index 3934629860672..f8f3dbd983617 100644 --- a/clients/client-rds/src/commands/DescribeDBEngineVersionsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBEngineVersionsCommand.ts @@ -163,47 +163,47 @@ export interface DescribeDBEngineVersionsCommandOutput extends DBEngineVersionMe * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe the DB engine versions for the MySQL DB engine * ```javascript * // The following example displays details about each of the DB engine versions for the specified DB engine. * const input = { - * "Engine": "mysql" + * Engine: "mysql" * }; * const command = new DescribeDBEngineVersionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBEngineVersions": [ + * DBEngineVersions: [ * { - * "DBEngineDescription": "MySQL Community Edition", - * "DBEngineVersionDescription": "MySQL 5.7.33", - * "DBParameterGroupFamily": "mysql5.7", - * "Engine": "mysql", - * "EngineVersion": "5.7.33", - * "ValidUpgradeTarget": [ + * DBEngineDescription: "MySQL Community Edition", + * DBEngineVersionDescription: "MySQL 5.7.33", + * DBParameterGroupFamily: "mysql5.7", + * Engine: "mysql", + * EngineVersion: "5.7.33", + * ValidUpgradeTarget: [ * { - * "AutoUpgrade": false, - * "Description": "MySQL 5.7.34", - * "Engine": "mysql", - * "EngineVersion": "5.7.34", - * "IsMajorVersionUpgrade": false + * AutoUpgrade: false, + * Description: "MySQL 5.7.34", + * Engine: "mysql", + * EngineVersion: "5.7.34", + * IsMajorVersionUpgrade: false * }, * { - * "AutoUpgrade": false, - * "Description": "MySQL 5.7.36", - * "Engine": "mysql", - * "EngineVersion": "5.7.36", - * "IsMajorVersionUpgrade": false + * AutoUpgrade: false, + * Description: "MySQL 5.7.36", + * Engine: "mysql", + * EngineVersion: "5.7.36", + * IsMajorVersionUpgrade: false * } * ] * } * ] * } * *\/ - * // example id: to-describe-the-db-engine-versions-for-the-mysql-db-engine-1680216738909 * ``` * + * @public */ export class DescribeDBEngineVersionsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBInstanceAutomatedBackupsCommand.ts b/clients/client-rds/src/commands/DescribeDBInstanceAutomatedBackupsCommand.ts index a1ff2503f565a..5d3be3a4bca91 100644 --- a/clients/client-rds/src/commands/DescribeDBInstanceAutomatedBackupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBInstanceAutomatedBackupsCommand.ts @@ -123,48 +123,48 @@ export interface DescribeDBInstanceAutomatedBackupsCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe the automated backups for a DB instance * ```javascript * // The following example displays details about the automated backups for the specified DB instance. The details include replicated automated backups in other AWS Regions. * const input = { - * "DBInstanceIdentifier": "new-orcl-db" + * DBInstanceIdentifier: "new-orcl-db" * }; * const command = new DescribeDBInstanceAutomatedBackupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstanceAutomatedBackups": [ + * DBInstanceAutomatedBackups: [ * { - * "AllocatedStorage": 20, - * "BackupRetentionPeriod": 14, - * "DBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db", - * "DBInstanceAutomatedBackupsArn": "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example", - * "DBInstanceIdentifier": "new-orcl-db", - * "DbiResourceId": "db-JKIB2GFQ5RV7REPLZA4EXAMPLE", - * "Encrypted": false, - * "Engine": "oracle-se2", - * "EngineVersion": "12.1.0.2.v21", - * "IAMDatabaseAuthenticationEnabled": false, - * "InstanceCreateTime": "2020-12-04T15:28:31Z", - * "LicenseModel": "bring-your-own-license", - * "MasterUsername": "admin", - * "OptionGroupName": "default:oracle-se2-12-1", - * "Port": 1521, - * "Region": "us-east-1", - * "RestoreWindow": { - * "EarliestTime": "2020-12-07T21:05:20.939Z", - * "LatestTime": "2020-12-07T21:05:20.939Z" + * AllocatedStorage: 20, + * BackupRetentionPeriod: 14, + * DBInstanceArn: "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db", + * DBInstanceAutomatedBackupsArn: "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example", + * DBInstanceIdentifier: "new-orcl-db", + * DbiResourceId: "db-JKIB2GFQ5RV7REPLZA4EXAMPLE", + * Encrypted: false, + * Engine: "oracle-se2", + * EngineVersion: "12.1.0.2.v21", + * IAMDatabaseAuthenticationEnabled: false, + * InstanceCreateTime: "2020-12-04T15:28:31Z", + * LicenseModel: "bring-your-own-license", + * MasterUsername: "admin", + * OptionGroupName: "default:oracle-se2-12-1", + * Port: 1521, + * Region: "us-east-1", + * RestoreWindow: { + * EarliestTime: "2020-12-07T21:05:20.939Z", + * LatestTime: "2020-12-07T21:05:20.939Z" * }, - * "Status": "replicating", - * "StorageType": "gp2" + * Status: "replicating", + * StorageType: "gp2" * } * ] * } * *\/ - * // example id: to-describe-the-automated-backups-for-a-db-instance-1680217198750 * ``` * + * @public */ export class DescribeDBInstanceAutomatedBackupsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBInstancesCommand.ts b/clients/client-rds/src/commands/DescribeDBInstancesCommand.ts index 0f8605fd1ba5c..58c0589cb951d 100644 --- a/clients/client-rds/src/commands/DescribeDBInstancesCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBInstancesCommand.ts @@ -299,36 +299,36 @@ export interface DescribeDBInstancesCommandOutput extends DBInstanceMessage, __M * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe a DB instance * ```javascript * // The following example retrieves details about the specified DB instance. * const input = { - * "DBInstanceIdentifier": "mydbinstancecf" + * DBInstanceIdentifier: "mydbinstancecf" * }; * const command = new DescribeDBInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstances": [ + * DBInstances: [ * { - * "DBInstanceClass": "db.t3.small", - * "DBInstanceIdentifier": "mydbinstancecf", - * "DBInstanceStatus": "available", - * "Endpoint": { - * "Address": "mydbinstancecf.abcexample.us-east-1.rds.amazonaws.com", - * "HostedZoneId": "Z2R2ITUGPM61AM", - * "Port": 3306 + * DBInstanceClass: "db.t3.small", + * DBInstanceIdentifier: "mydbinstancecf", + * DBInstanceStatus: "available", + * Endpoint: { + * Address: "mydbinstancecf.abcexample.us-east-1.rds.amazonaws.com", + * HostedZoneId: "Z2R2ITUGPM61AM", + * Port: 3306 * }, - * "Engine": "mysql", - * "MasterUsername": "admin" + * Engine: "mysql", + * MasterUsername: "admin" * } * ] * } * *\/ - * // example id: to-describe-a-db-instance-1680217544524 * ``` * + * @public */ export class DescribeDBInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBLogFilesCommand.ts b/clients/client-rds/src/commands/DescribeDBLogFilesCommand.ts index ff3cce3b392bb..155dc61661ad6 100644 --- a/clients/client-rds/src/commands/DescribeDBLogFilesCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBLogFilesCommand.ts @@ -83,54 +83,54 @@ export interface DescribeDBLogFilesCommandOutput extends DescribeDBLogFilesRespo * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe the log files for a DB instance * ```javascript * // The following example retrieves details about the log files for the specified DB instance. * const input = { - * "DBInstanceIdentifier": "test-instance" + * DBInstanceIdentifier: "test-instance" * }; * const command = new DescribeDBLogFilesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DescribeDBLogFiles": [ + * DescribeDBLogFiles: [ * { - * "LastWritten": 1533060000000, - * "LogFileName": "error/mysql-error-running.log", - * "Size": 0 + * LastWritten: 1533060000000, + * LogFileName: "error/mysql-error-running.log", + * Size: 0 * }, * { - * "LastWritten": 1532994300000, - * "LogFileName": "error/mysql-error-running.log.0", - * "Size": 2683 + * LastWritten: 1532994300000, + * LogFileName: "error/mysql-error-running.log.0", + * Size: 2683 * }, * { - * "LastWritten": 1533057300000, - * "LogFileName": "error/mysql-error-running.log.18", - * "Size": 107 + * LastWritten: 1533057300000, + * LogFileName: "error/mysql-error-running.log.18", + * Size: 107 * }, * { - * "LastWritten": 1532991000000, - * "LogFileName": "error/mysql-error-running.log.23", - * "Size": 13105 + * LastWritten: 1532991000000, + * LogFileName: "error/mysql-error-running.log.23", + * Size: 13105 * }, * { - * "LastWritten": 1533061200000, - * "LogFileName": "error/mysql-error.log", - * "Size": 0 + * LastWritten: 1533061200000, + * LogFileName: "error/mysql-error.log", + * Size: 0 * }, * { - * "LastWritten": 1532989252000, - * "LogFileName": "mysqlUpgrade", - * "Size": 3519 + * LastWritten: 1532989252000, + * LogFileName: "mysqlUpgrade", + * Size: 3519 * } * ] * } * *\/ - * // example id: to-describe-the-log-files-for-a-db-instance-1680217710149 * ``` * + * @public */ export class DescribeDBLogFilesCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBParameterGroupsCommand.ts b/clients/client-rds/src/commands/DescribeDBParameterGroupsCommand.ts index a9ea155946064..bfd1c0ff59ebd 100644 --- a/clients/client-rds/src/commands/DescribeDBParameterGroupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBParameterGroupsCommand.ts @@ -79,46 +79,46 @@ export interface DescribeDBParameterGroupsCommandOutput extends DBParameterGroup * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe your DB parameter groups * ```javascript * // The following example retrieves details about your DB parameter groups. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeDBParameterGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBParameterGroups": [ + * DBParameterGroups: [ * { - * "DBParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:pg:default.aurora-mysql5.7", - * "DBParameterGroupFamily": "aurora-mysql5.7", - * "DBParameterGroupName": "default.aurora-mysql5.7", - * "Description": "Default parameter group for aurora-mysql5.7" + * DBParameterGroupArn: "arn:aws:rds:us-east-1:123456789012:pg:default.aurora-mysql5.7", + * DBParameterGroupFamily: "aurora-mysql5.7", + * DBParameterGroupName: "default.aurora-mysql5.7", + * Description: "Default parameter group for aurora-mysql5.7" * }, * { - * "DBParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:pg:default.aurora-postgresql9.6", - * "DBParameterGroupFamily": "aurora-postgresql9.6", - * "DBParameterGroupName": "default.aurora-postgresql9.6", - * "Description": "Default parameter group for aurora-postgresql9.6" + * DBParameterGroupArn: "arn:aws:rds:us-east-1:123456789012:pg:default.aurora-postgresql9.6", + * DBParameterGroupFamily: "aurora-postgresql9.6", + * DBParameterGroupName: "default.aurora-postgresql9.6", + * Description: "Default parameter group for aurora-postgresql9.6" * }, * { - * "DBParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:pg:default.aurora5.6", - * "DBParameterGroupFamily": "aurora5.6", - * "DBParameterGroupName": "default.aurora5.6", - * "Description": "Default parameter group for aurora5.6" + * DBParameterGroupArn: "arn:aws:rds:us-east-1:123456789012:pg:default.aurora5.6", + * DBParameterGroupFamily: "aurora5.6", + * DBParameterGroupName: "default.aurora5.6", + * Description: "Default parameter group for aurora5.6" * }, * { - * "DBParameterGroupArn": "arn:aws:rds:us-east-1:123456789012:pg:default.mariadb10.1", - * "DBParameterGroupFamily": "mariadb10.1", - * "DBParameterGroupName": "default.mariadb10.1", - * "Description": "Default parameter group for mariadb10.1" + * DBParameterGroupArn: "arn:aws:rds:us-east-1:123456789012:pg:default.mariadb10.1", + * DBParameterGroupFamily: "mariadb10.1", + * DBParameterGroupName: "default.mariadb10.1", + * Description: "Default parameter group for mariadb10.1" * } * ] * } * *\/ - * // example id: to-describe-your-db-parameter-groups-1680279250598 * ``` * + * @public */ export class DescribeDBParameterGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBParametersCommand.ts b/clients/client-rds/src/commands/DescribeDBParametersCommand.ts index 7558da8ca2286..5af423ac808aa 100644 --- a/clients/client-rds/src/commands/DescribeDBParametersCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBParametersCommand.ts @@ -88,44 +88,44 @@ export interface DescribeDBParametersCommandOutput extends DBParameterGroupDetai * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe the parameters in a DB parameter group * ```javascript * // The following example retrieves the details of the specified DB parameter group. * const input = { - * "DBParameterGroupName": "mydbpg" + * DBParameterGroupName: "mydbpg" * }; * const command = new DescribeDBParametersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Parameters": [ + * Parameters: [ * { - * "AllowedValues": "0,1", - * "ApplyMethod": "pending-reboot", - * "ApplyType": "static", - * "DataType": "boolean", - * "Description": "Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded", - * "IsModifiable": false, - * "ParameterName": "allow-suspicious-udfs", - * "Source": "engine-default" + * AllowedValues: "0,1", + * ApplyMethod: "pending-reboot", + * ApplyType: "static", + * DataType: "boolean", + * Description: "Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded", + * IsModifiable: false, + * ParameterName: "allow-suspicious-udfs", + * Source: "engine-default" * }, * { - * "AllowedValues": "0,1", - * "ApplyMethod": "pending-reboot", - * "ApplyType": "static", - * "DataType": "boolean", - * "Description": "Controls whether the server autogenerates SSL key and certificate files in the data directory, if they do not already exist.", - * "IsModifiable": false, - * "ParameterName": "auto_generate_certs", - * "Source": "engine-default" + * AllowedValues: "0,1", + * ApplyMethod: "pending-reboot", + * ApplyType: "static", + * DataType: "boolean", + * Description: "Controls whether the server autogenerates SSL key and certificate files in the data directory, if they do not already exist.", + * IsModifiable: false, + * ParameterName: "auto_generate_certs", + * Source: "engine-default" * } * ] * } * *\/ - * // example id: to-describe-the-parameters-in-a-db-parameter-group-1680279500600 * ``` * + * @public */ export class DescribeDBParametersCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBProxiesCommand.ts b/clients/client-rds/src/commands/DescribeDBProxiesCommand.ts index 419499e8d256e..af15c02c20e3e 100644 --- a/clients/client-rds/src/commands/DescribeDBProxiesCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBProxiesCommand.ts @@ -100,6 +100,7 @@ export interface DescribeDBProxiesCommandOutput extends DescribeDBProxiesRespons * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DescribeDBProxiesCommand extends $Command diff --git a/clients/client-rds/src/commands/DescribeDBProxyEndpointsCommand.ts b/clients/client-rds/src/commands/DescribeDBProxyEndpointsCommand.ts index ebad3f0cf0306..e5815d36c3c83 100644 --- a/clients/client-rds/src/commands/DescribeDBProxyEndpointsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBProxyEndpointsCommand.ts @@ -91,6 +91,7 @@ export interface DescribeDBProxyEndpointsCommandOutput extends DescribeDBProxyEn * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DescribeDBProxyEndpointsCommand extends $Command diff --git a/clients/client-rds/src/commands/DescribeDBProxyTargetGroupsCommand.ts b/clients/client-rds/src/commands/DescribeDBProxyTargetGroupsCommand.ts index f44f1bffb2969..df918269c85c0 100644 --- a/clients/client-rds/src/commands/DescribeDBProxyTargetGroupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBProxyTargetGroupsCommand.ts @@ -97,6 +97,7 @@ export interface DescribeDBProxyTargetGroupsCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DescribeDBProxyTargetGroupsCommand extends $Command diff --git a/clients/client-rds/src/commands/DescribeDBProxyTargetsCommand.ts b/clients/client-rds/src/commands/DescribeDBProxyTargetsCommand.ts index 8915eeded4f3c..bdab585d7a84e 100644 --- a/clients/client-rds/src/commands/DescribeDBProxyTargetsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBProxyTargetsCommand.ts @@ -94,6 +94,7 @@ export interface DescribeDBProxyTargetsCommandOutput extends DescribeDBProxyTarg * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DescribeDBProxyTargetsCommand extends $Command diff --git a/clients/client-rds/src/commands/DescribeDBRecommendationsCommand.ts b/clients/client-rds/src/commands/DescribeDBRecommendationsCommand.ts index 797ecdacf731f..a77d11f92c29a 100644 --- a/clients/client-rds/src/commands/DescribeDBRecommendationsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBRecommendationsCommand.ts @@ -186,6 +186,7 @@ export interface DescribeDBRecommendationsCommandOutput extends DBRecommendation * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DescribeDBRecommendationsCommand extends $Command diff --git a/clients/client-rds/src/commands/DescribeDBSecurityGroupsCommand.ts b/clients/client-rds/src/commands/DescribeDBSecurityGroupsCommand.ts index 24372421beb5f..dec8d88ce6baa 100644 --- a/clients/client-rds/src/commands/DescribeDBSecurityGroupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBSecurityGroupsCommand.ts @@ -100,18 +100,21 @@ export interface DescribeDBSecurityGroupsCommandOutput extends DBSecurityGroupMe * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To list DB security group settings * ```javascript * // This example lists settings for the specified security group. * const input = { - * "DBSecurityGroupName": "mydbsecuritygroup" + * DBSecurityGroupName: "mydbsecuritygroup" * }; * const command = new DescribeDBSecurityGroupsCommand(input); - * await client.send(command); - * // example id: describe-db-security-groups-66fe9ea1-17dd-4275-b82e-f771cee0c849 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DescribeDBSecurityGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBShardGroupsCommand.ts b/clients/client-rds/src/commands/DescribeDBShardGroupsCommand.ts index 0a614ae43ca73..233592817024b 100644 --- a/clients/client-rds/src/commands/DescribeDBShardGroupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBShardGroupsCommand.ts @@ -92,6 +92,7 @@ export interface DescribeDBShardGroupsCommandOutput extends DescribeDBShardGroup * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DescribeDBShardGroupsCommand extends $Command diff --git a/clients/client-rds/src/commands/DescribeDBSnapshotAttributesCommand.ts b/clients/client-rds/src/commands/DescribeDBSnapshotAttributesCommand.ts index 41c5411ad13bb..e6d396599807a 100644 --- a/clients/client-rds/src/commands/DescribeDBSnapshotAttributesCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBSnapshotAttributesCommand.ts @@ -78,34 +78,34 @@ export interface DescribeDBSnapshotAttributesCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe the attribute names and values for a DB snapshot * ```javascript * // The following example describes the attribute names and values for a DB snapshot. * const input = { - * "DBSnapshotIdentifier": "mydbsnapshot" + * DBSnapshotIdentifier: "mydbsnapshot" * }; * const command = new DescribeDBSnapshotAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBSnapshotAttributesResult": { - * "DBSnapshotAttributes": [ + * DBSnapshotAttributesResult: { + * DBSnapshotAttributes: [ * { - * "AttributeName": "restore", - * "AttributeValues": [ + * AttributeName: "restore", + * AttributeValues: [ * "123456789012", * "210987654321" * ] * } * ], - * "DBSnapshotIdentifier": "mydbsnapshot" + * DBSnapshotIdentifier: "mydbsnapshot" * } * } * *\/ - * // example id: to-describe-the-attribute-names-and-values-for-a-db-snapshot-1680280194370 * ``` * + * @public */ export class DescribeDBSnapshotAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBSnapshotTenantDatabasesCommand.ts b/clients/client-rds/src/commands/DescribeDBSnapshotTenantDatabasesCommand.ts index 4b67cfcc9e0e3..aa73c32029349 100644 --- a/clients/client-rds/src/commands/DescribeDBSnapshotTenantDatabasesCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBSnapshotTenantDatabasesCommand.ts @@ -104,6 +104,7 @@ export interface DescribeDBSnapshotTenantDatabasesCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DescribeDBSnapshotTenantDatabasesCommand extends $Command diff --git a/clients/client-rds/src/commands/DescribeDBSnapshotsCommand.ts b/clients/client-rds/src/commands/DescribeDBSnapshotsCommand.ts index 5a54fe6091cf1..f9381cba143ab 100644 --- a/clients/client-rds/src/commands/DescribeDBSnapshotsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBSnapshotsCommand.ts @@ -124,48 +124,48 @@ export interface DescribeDBSnapshotsCommandOutput extends DBSnapshotMessage, __M * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe a DB snapshot for a DB instance * ```javascript * // The following example retrieves the details of a DB snapshot for a DB instance. * const input = { - * "DBSnapshotIdentifier": "mydbsnapshot" + * DBSnapshotIdentifier: "mydbsnapshot" * }; * const command = new DescribeDBSnapshotsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBSnapshots": [ + * DBSnapshots: [ * { - * "AllocatedStorage": 20, - * "AvailabilityZone": "us-east-1f", - * "DBInstanceIdentifier": "mysqldb", - * "DBSnapshotArn": "arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshot", - * "DBSnapshotIdentifier": "mydbsnapshot", - * "DbiResourceId": "db-AKIAIOSFODNN7EXAMPLE", - * "Encrypted": false, - * "Engine": "mysql", - * "EngineVersion": "5.6.37", - * "IAMDatabaseAuthenticationEnabled": false, - * "InstanceCreateTime": "2018-02-08T22:24:55.973Z", - * "LicenseModel": "general-public-license", - * "MasterUsername": "mysqladmin", - * "OptionGroupName": "default:mysql-5-6", - * "PercentProgress": 100, - * "Port": 3306, - * "ProcessorFeatures": [], - * "SnapshotCreateTime": "2018-02-08T22:28:08.598Z", - * "SnapshotType": "manual", - * "Status": "available", - * "StorageType": "gp2", - * "VpcId": "vpc-6594f31c" + * AllocatedStorage: 20, + * AvailabilityZone: "us-east-1f", + * DBInstanceIdentifier: "mysqldb", + * DBSnapshotArn: "arn:aws:rds:us-east-1:123456789012:snapshot:mydbsnapshot", + * DBSnapshotIdentifier: "mydbsnapshot", + * DbiResourceId: "db-AKIAIOSFODNN7EXAMPLE", + * Encrypted: false, + * Engine: "mysql", + * EngineVersion: "5.6.37", + * IAMDatabaseAuthenticationEnabled: false, + * InstanceCreateTime: "2018-02-08T22:24:55.973Z", + * LicenseModel: "general-public-license", + * MasterUsername: "mysqladmin", + * OptionGroupName: "default:mysql-5-6", + * PercentProgress: 100, + * Port: 3306, + * ProcessorFeatures: [], + * SnapshotCreateTime: "2018-02-08T22:28:08.598Z", + * SnapshotType: "manual", + * Status: "available", + * StorageType: "gp2", + * VpcId: "vpc-6594f31c" * } * ] * } * *\/ - * // example id: to-describe-a-db-snapshot-for-a-db-instance-1680280423239 * ``` * + * @public */ export class DescribeDBSnapshotsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeDBSubnetGroupsCommand.ts b/clients/client-rds/src/commands/DescribeDBSubnetGroupsCommand.ts index 00f17372fc65f..5ebf4f42ccb71 100644 --- a/clients/client-rds/src/commands/DescribeDBSubnetGroupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBSubnetGroupsCommand.ts @@ -95,59 +95,59 @@ export interface DescribeDBSubnetGroupsCommandOutput extends DBSubnetGroupMessag * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe a DB subnet group * ```javascript * // The following example retrieves the details of the specified DB subnet group. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeDBSubnetGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBSubnetGroups": [ + * DBSubnetGroups: [ * { - * "DBSubnetGroupArn": "arn:aws:rds:us-east-1:123456789012:subgrp:mydbsubnetgroup", - * "DBSubnetGroupDescription": "My DB Subnet Group", - * "DBSubnetGroupName": "mydbsubnetgroup", - * "SubnetGroupStatus": "Complete", - * "Subnets": [ + * DBSubnetGroupArn: "arn:aws:rds:us-east-1:123456789012:subgrp:mydbsubnetgroup", + * DBSubnetGroupDescription: "My DB Subnet Group", + * DBSubnetGroupName: "mydbsubnetgroup", + * SubnetGroupStatus: "Complete", + * Subnets: [ * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1a" + * SubnetAvailabilityZone: { + * Name: "us-east-1a" * }, - * "SubnetIdentifier": "subnet-d8c8e7f4", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-d8c8e7f4", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1f" + * SubnetAvailabilityZone: { + * Name: "us-east-1f" * }, - * "SubnetIdentifier": "subnet-718fdc7d", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-718fdc7d", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1a" + * SubnetAvailabilityZone: { + * Name: "us-east-1a" * }, - * "SubnetIdentifier": "subnet-cbc8e7e7", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-cbc8e7e7", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-east-1a" + * SubnetAvailabilityZone: { + * Name: "us-east-1a" * }, - * "SubnetIdentifier": "subnet-0ccde220", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-0ccde220", + * SubnetStatus: "Active" * } * ], - * "VpcId": "vpc-971c12ee" + * VpcId: "vpc-971c12ee" * } * ] * } * *\/ - * // example id: to-describe-a-db-subnet-group-1680280764611 * ``` * + * @public */ export class DescribeDBSubnetGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeEngineDefaultClusterParametersCommand.ts b/clients/client-rds/src/commands/DescribeEngineDefaultClusterParametersCommand.ts index defb6502de728..57f7a63d86009 100644 --- a/clients/client-rds/src/commands/DescribeEngineDefaultClusterParametersCommand.ts +++ b/clients/client-rds/src/commands/DescribeEngineDefaultClusterParametersCommand.ts @@ -97,27 +97,27 @@ export interface DescribeEngineDefaultClusterParametersCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe the default engine and system parameter information for the Aurora database engine * ```javascript * // The following example retrieves the details of the default engine and system parameter information for Aurora DB clusters with MySQL 5.7 compatibility. * const input = { - * "DBParameterGroupFamily": "aurora-mysql5.7" + * DBParameterGroupFamily: "aurora-mysql5.7" * }; * const command = new DescribeEngineDefaultClusterParametersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EngineDefaults": { - * "Parameters": [ + * EngineDefaults: { + * Parameters: [ * { - * "ApplyType": "dynamic", - * "DataType": "string", - * "Description": "IAM role ARN used to load data from AWS S3", - * "IsModifiable": true, - * "ParameterName": "aurora_load_from_s3_role", - * "Source": "engine-default", - * "SupportedEngineModes": [ + * ApplyType: "dynamic", + * DataType: "string", + * Description: "IAM role ARN used to load data from AWS S3", + * IsModifiable: true, + * ParameterName: "aurora_load_from_s3_role", + * Source: "engine-default", + * SupportedEngineModes: [ * "provisioned" * ] * } @@ -125,9 +125,9 @@ export interface DescribeEngineDefaultClusterParametersCommandOutput * } * } * *\/ - * // example id: to-describe-the-default-engine-and-system-parameter-information-for-the-aurora-database-engine-1680280902332 * ``` * + * @public */ export class DescribeEngineDefaultClusterParametersCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeEngineDefaultParametersCommand.ts b/clients/client-rds/src/commands/DescribeEngineDefaultParametersCommand.ts index f3e05b7848ed4..afa12eaf21a9c 100644 --- a/clients/client-rds/src/commands/DescribeEngineDefaultParametersCommand.ts +++ b/clients/client-rds/src/commands/DescribeEngineDefaultParametersCommand.ts @@ -90,35 +90,35 @@ export interface DescribeEngineDefaultParametersCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe the default engine and system parameter information for the database engine * ```javascript * // The following example retrieves details for the default engine and system parameter information for MySQL 5.7 DB instances. * const input = { - * "DBParameterGroupFamily": "mysql5.7" + * DBParameterGroupFamily: "mysql5.7" * }; * const command = new DescribeEngineDefaultParametersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EngineDefaults": { - * "Parameters": [ + * EngineDefaults: { + * Parameters: [ * { - * "AllowedValues": "0,1", - * "ApplyType": "static", - * "DataType": "boolean", - * "Description": "Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded", - * "IsModifiable": false, - * "ParameterName": "allow-suspicious-udfs", - * "Source": "engine-default" + * AllowedValues: "0,1", + * ApplyType: "static", + * DataType: "boolean", + * Description: "Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded", + * IsModifiable: false, + * ParameterName: "allow-suspicious-udfs", + * Source: "engine-default" * } * ] * } * } * *\/ - * // example id: to-describe-the-default-engine-and-system-parameter-information-for-the-database-engine-1680281248217 * ``` * + * @public */ export class DescribeEngineDefaultParametersCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeEventCategoriesCommand.ts b/clients/client-rds/src/commands/DescribeEventCategoriesCommand.ts index f0c7d1583731f..0d72626124147 100644 --- a/clients/client-rds/src/commands/DescribeEventCategoriesCommand.ts +++ b/clients/client-rds/src/commands/DescribeEventCategoriesCommand.ts @@ -76,21 +76,21 @@ export interface DescribeEventCategoriesCommandOutput extends EventCategoriesMes * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe event categories * ```javascript * // The following example retrieves details about the event categories for all available event sources. * const input = { - * "Filters": [], - * "SourceType": "" + * Filters: [], + * SourceType: "" * }; * const command = new DescribeEventCategoriesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EventCategoriesMapList": [ + * EventCategoriesMapList: [ * { - * "EventCategories": [ + * EventCategories: [ * "deletion", * "read replica", * "failover", @@ -106,50 +106,50 @@ export interface DescribeEventCategoriesCommandOutput extends EventCategoriesMes * "backtrack", * "notification" * ], - * "SourceType": "db-instance" + * SourceType: "db-instance" * }, * { - * "EventCategories": [ + * EventCategories: [ * "configuration change", * "failure" * ], - * "SourceType": "db-security-group" + * SourceType: "db-security-group" * }, * { - * "EventCategories": [ + * EventCategories: [ * "configuration change" * ], - * "SourceType": "db-parameter-group" + * SourceType: "db-parameter-group" * }, * { - * "EventCategories": [ + * EventCategories: [ * "deletion", * "creation", * "restoration", * "notification" * ], - * "SourceType": "db-snapshot" + * SourceType: "db-snapshot" * }, * { - * "EventCategories": [ + * EventCategories: [ * "failover", * "failure", * "notification" * ], - * "SourceType": "db-cluster" + * SourceType: "db-cluster" * }, * { - * "EventCategories": [ + * EventCategories: [ * "backup" * ], - * "SourceType": "db-cluster-snapshot" + * SourceType: "db-cluster-snapshot" * } * ] * } * *\/ - * // example id: to-describe-event-categories-1680281431508 * ``` * + * @public */ export class DescribeEventCategoriesCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeEventSubscriptionsCommand.ts b/clients/client-rds/src/commands/DescribeEventSubscriptionsCommand.ts index 0ed7803b200b0..49242c60f3245 100644 --- a/clients/client-rds/src/commands/DescribeEventSubscriptionsCommand.ts +++ b/clients/client-rds/src/commands/DescribeEventSubscriptionsCommand.ts @@ -88,36 +88,36 @@ export interface DescribeEventSubscriptionsCommandOutput extends EventSubscripti * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe event subscriptions * ```javascript * // This example describes all of the Amazon RDS event subscriptions for the current AWS account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeEventSubscriptionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EventSubscriptionsList": [ + * EventSubscriptionsList: [ * { - * "CustSubscriptionId": "my-instance-events", - * "CustomerAwsId": "123456789012", - * "Enabled": true, - * "EventCategoriesList": [ + * CustSubscriptionId: "my-instance-events", + * CustomerAwsId: "123456789012", + * Enabled: true, + * EventCategoriesList: [ * "backup", * "recovery" * ], - * "EventSubscriptionArn": "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", - * "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events", - * "SourceType": "db-instance", - * "Status": "creating", - * "SubscriptionCreationTime": "2018-07-31 23:22:01.893" + * EventSubscriptionArn: "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", + * SnsTopicArn: "arn:aws:sns:us-east-1:123456789012:interesting-events", + * SourceType: "db-instance", + * Status: "creating", + * SubscriptionCreationTime: "2018-07-31 23:22:01.893" * } * ] * } * *\/ - * // example id: to-describe-event-subscriptions-1680281683538 * ``` * + * @public */ export class DescribeEventSubscriptionsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeEventsCommand.ts b/clients/client-rds/src/commands/DescribeEventsCommand.ts index 702373fa7a18d..fd13c4618262f 100644 --- a/clients/client-rds/src/commands/DescribeEventsCommand.ts +++ b/clients/client-rds/src/commands/DescribeEventsCommand.ts @@ -91,45 +91,45 @@ export interface DescribeEventsCommandOutput extends EventsMessage, __MetadataBe * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe events * ```javascript * // The following retrieves details for the events that have occurred for the specified DB instance. * const input = { - * "SourceIdentifier": "test-instance", - * "SourceType": "db-instance" + * SourceIdentifier: "test-instance", + * SourceType: "db-instance" * }; * const command = new DescribeEventsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Events": [ + * Events: [ * { - * "Date": "2018-07-31T23:09:23.983Z", - * "EventCategories": [ + * Date: "2018-07-31T23:09:23.983Z", + * EventCategories: [ * "backup" * ], - * "Message": "Backing up DB instance", - * "SourceArn": "arn:aws:rds:us-east-1:123456789012:db:test-instance", - * "SourceIdentifier": "test-instance", - * "SourceType": "db-instance" + * Message: "Backing up DB instance", + * SourceArn: "arn:aws:rds:us-east-1:123456789012:db:test-instance", + * SourceIdentifier: "test-instance", + * SourceType: "db-instance" * }, * { - * "Date": "2018-07-31T23:15:13.049Z", - * "EventCategories": [ + * Date: "2018-07-31T23:15:13.049Z", + * EventCategories: [ * "backup" * ], - * "Message": "Finished DB Instance backup", - * "SourceArn": "arn:aws:rds:us-east-1:123456789012:db:test-instance", - * "SourceIdentifier": "test-instance", - * "SourceType": "db-instance" + * Message: "Finished DB Instance backup", + * SourceArn: "arn:aws:rds:us-east-1:123456789012:db:test-instance", + * SourceIdentifier: "test-instance", + * SourceType: "db-instance" * } * ] * } * *\/ - * // example id: to-describe-events-1680281559411 * ``` * + * @public */ export class DescribeEventsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeExportTasksCommand.ts b/clients/client-rds/src/commands/DescribeExportTasksCommand.ts index 9af5d3a8dd43c..23fd7f7ff0b53 100644 --- a/clients/client-rds/src/commands/DescribeExportTasksCommand.ts +++ b/clients/client-rds/src/commands/DescribeExportTasksCommand.ts @@ -93,48 +93,48 @@ export interface DescribeExportTasksCommandOutput extends ExportTasksMessage, __ * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe snapshot export tasks * ```javascript * // The following example returns information about snapshot exports to Amazon S3. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeExportTasksCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ExportTasks": [ + * ExportTasks: [ * { - * "ExportTaskIdentifier": "test-snapshot-export", - * "IamRoleArn": "arn:aws:iam::123456789012:role/service-role/ExportRole", - * "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff", - * "PercentProgress": 100, - * "S3Bucket": "mybucket", - * "S3Prefix": "", - * "SnapshotTime": "2020-03-02T18:26:28.163Z", - * "SourceArn": "arn:aws:rds:us-west-2:123456789012:snapshot:test-snapshot", - * "Status": "COMPLETE", - * "TaskEndTime": "2020-03-02T19:10:31.985Z", - * "TaskStartTime": "2020-03-02T18:57:56.896Z", - * "TotalExtractedDataInGB": 0 + * ExportTaskIdentifier: "test-snapshot-export", + * IamRoleArn: "arn:aws:iam::123456789012:role/service-role/ExportRole", + * KmsKeyId: "arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff", + * PercentProgress: 100, + * S3Bucket: "mybucket", + * S3Prefix: "", + * SnapshotTime: "2020-03-02T18:26:28.163Z", + * SourceArn: "arn:aws:rds:us-west-2:123456789012:snapshot:test-snapshot", + * Status: "COMPLETE", + * TaskEndTime: "2020-03-02T19:10:31.985Z", + * TaskStartTime: "2020-03-02T18:57:56.896Z", + * TotalExtractedDataInGB: 0 * }, * { - * "ExportTaskIdentifier": "my-s3-export", - * "IamRoleArn": "arn:aws:iam::123456789012:role/service-role/ExportRole", - * "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff", - * "PercentProgress": 0, - * "S3Bucket": "mybucket", - * "S3Prefix": "", - * "SnapshotTime": "2020-03-27T20:48:42.023Z", - * "SourceArn": "arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-test", - * "Status": "STARTING", - * "TotalExtractedDataInGB": 0 + * ExportTaskIdentifier: "my-s3-export", + * IamRoleArn: "arn:aws:iam::123456789012:role/service-role/ExportRole", + * KmsKeyId: "arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff", + * PercentProgress: 0, + * S3Bucket: "mybucket", + * S3Prefix: "", + * SnapshotTime: "2020-03-27T20:48:42.023Z", + * SourceArn: "arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-test", + * Status: "STARTING", + * TotalExtractedDataInGB: 0 * } * ] * } * *\/ - * // example id: to-describe-snapshot-export-tasks-1680282299489 * ``` * + * @public */ export class DescribeExportTasksCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeGlobalClustersCommand.ts b/clients/client-rds/src/commands/DescribeGlobalClustersCommand.ts index 0f415d4f99e11..7a74c9a2bd79d 100644 --- a/clients/client-rds/src/commands/DescribeGlobalClustersCommand.ts +++ b/clients/client-rds/src/commands/DescribeGlobalClustersCommand.ts @@ -111,33 +111,33 @@ export interface DescribeGlobalClustersCommandOutput extends GlobalClustersMessa * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe global DB clusters * ```javascript * // The following example lists Aurora global DB clusters in the current AWS Region. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeGlobalClustersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GlobalClusters": [ + * GlobalClusters: [ * { - * "DeletionProtection": false, - * "Engine": "aurora-mysql", - * "EngineVersion": "5.7.mysql_aurora.2.07.2", - * "GlobalClusterArn": "arn:aws:rds::123456789012:global-cluster:myglobalcluster", - * "GlobalClusterIdentifier": "myglobalcluster", - * "GlobalClusterMembers": [], - * "GlobalClusterResourceId": "cluster-f5982077e3b5aabb", - * "Status": "available", - * "StorageEncrypted": false + * DeletionProtection: false, + * Engine: "aurora-mysql", + * EngineVersion: "5.7.mysql_aurora.2.07.2", + * GlobalClusterArn: "arn:aws:rds::123456789012:global-cluster:myglobalcluster", + * GlobalClusterIdentifier: "myglobalcluster", + * GlobalClusterMembers: [], + * GlobalClusterResourceId: "cluster-f5982077e3b5aabb", + * Status: "available", + * StorageEncrypted: false * } * ] * } * *\/ - * // example id: to-describe-global-db-clusters-1680282459184 * ``` * + * @public */ export class DescribeGlobalClustersCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeIntegrationsCommand.ts b/clients/client-rds/src/commands/DescribeIntegrationsCommand.ts index 6f5c831bd6e42..b59a17130bdcb 100644 --- a/clients/client-rds/src/commands/DescribeIntegrationsCommand.ts +++ b/clients/client-rds/src/commands/DescribeIntegrationsCommand.ts @@ -96,34 +96,34 @@ export interface DescribeIntegrationsCommandOutput extends DescribeIntegrationsR * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe a zero-ETL integration * ```javascript * // The following example retrieves information about a zero-ETL integration with Amazon Redshift. * const input = { - * "IntegrationIdentifier": "5b9f3d79-7392-4a3e-896c-58eaa1b53231" + * IntegrationIdentifier: "5b9f3d79-7392-4a3e-896c-58eaa1b53231" * }; * const command = new DescribeIntegrationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Integrations": [ + * Integrations: [ * { - * "CreateTime": "2023-12-28T17:20:20.629Z", - * "IntegrationArn": "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231", - * "IntegrationName": "my-integration", - * "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa", - * "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", - * "Status": "active", - * "Tags": [], - * "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" + * CreateTime: "2023-12-28T17:20:20.629Z", + * IntegrationArn: "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231", + * IntegrationName: "my-integration", + * KMSKeyId: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa", + * SourceArn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", + * Status: "active", + * Tags: [], + * TargetArn: "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" * } * ] * } * *\/ - * // example id: to-describe-a-zero-etl-integration-1679688377231 * ``` * + * @public */ export class DescribeIntegrationsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeOptionGroupOptionsCommand.ts b/clients/client-rds/src/commands/DescribeOptionGroupOptionsCommand.ts index a995a4c5aa867..7a233b22ba0ea 100644 --- a/clients/client-rds/src/commands/DescribeOptionGroupOptionsCommand.ts +++ b/clients/client-rds/src/commands/DescribeOptionGroupOptionsCommand.ts @@ -112,57 +112,57 @@ export interface DescribeOptionGroupOptionsCommandOutput extends OptionGroupOpti * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe all available options * ```javascript * // The following example lists the options for an RDS for MySQL version 8.0 DB instance. * const input = { - * "EngineName": "mysql", - * "MajorEngineVersion": "8.0" + * EngineName: "mysql", + * MajorEngineVersion: "8.0" * }; * const command = new DescribeOptionGroupOptionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OptionGroupOptions": [ + * OptionGroupOptions: [ * { - * "Description": "MariaDB Audit Plugin", - * "EngineName": "mysql", - * "MajorEngineVersion": "8.0", - * "MinimumRequiredMinorEngineVersion": "25", - * "Name": "MARIADB_AUDIT_PLUGIN", - * "OptionGroupOptionSettings": [ + * Description: "MariaDB Audit Plugin", + * EngineName: "mysql", + * MajorEngineVersion: "8.0", + * MinimumRequiredMinorEngineVersion: "25", + * Name: "MARIADB_AUDIT_PLUGIN", + * OptionGroupOptionSettings: [ * { - * "ApplyType": "DYNAMIC", - * "IsModifiable": true, - * "IsRequired": false, - * "MinimumEngineVersionPerAllowedValue": [], - * "SettingDescription": "Include specified users", - * "SettingName": "SERVER_AUDIT_INCL_USERS" + * ApplyType: "DYNAMIC", + * IsModifiable: true, + * IsRequired: false, + * MinimumEngineVersionPerAllowedValue: [], + * SettingDescription: "Include specified users", + * SettingName: "SERVER_AUDIT_INCL_USERS" * }, * { - * "ApplyType": "DYNAMIC", - * "IsModifiable": true, - * "IsRequired": false, - * "MinimumEngineVersionPerAllowedValue": [], - * "SettingDescription": "Exclude specified users", - * "SettingName": "SERVER_AUDIT_EXCL_USERS" + * ApplyType: "DYNAMIC", + * IsModifiable: true, + * IsRequired: false, + * MinimumEngineVersionPerAllowedValue: [], + * SettingDescription: "Exclude specified users", + * SettingName: "SERVER_AUDIT_EXCL_USERS" * } * ], - * "OptionsConflictsWith": [], - * "OptionsDependedOn": [], - * "Permanent": false, - * "Persistent": false, - * "PortRequired": false, - * "RequiresAutoMinorEngineVersionUpgrade": false, - * "VpcOnly": false + * OptionsConflictsWith: [], + * OptionsDependedOn: [], + * Permanent: false, + * Persistent: false, + * PortRequired: false, + * RequiresAutoMinorEngineVersionUpgrade: false, + * VpcOnly: false * } * ] * } * *\/ - * // example id: to-describe-all-available-options-1680286049492 * ``` * + * @public */ export class DescribeOptionGroupOptionsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeOptionGroupsCommand.ts b/clients/client-rds/src/commands/DescribeOptionGroupsCommand.ts index 022a686234b04..566b35a05e8e3 100644 --- a/clients/client-rds/src/commands/DescribeOptionGroupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeOptionGroupsCommand.ts @@ -119,34 +119,34 @@ export interface DescribeOptionGroupsCommandOutput extends OptionGroups, __Metad * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe the available option groups * ```javascript * // The following example lists the options groups for an Oracle Database 19c instance. * const input = { - * "EngineName": "oracle-ee", - * "MajorEngineVersion": "19" + * EngineName: "oracle-ee", + * MajorEngineVersion: "19" * }; * const command = new DescribeOptionGroupsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OptionGroupsList": [ + * OptionGroupsList: [ * { - * "AllowsVpcAndNonVpcInstanceMemberships": true, - * "EngineName": "oracle-ee", - * "MajorEngineVersion": "19", - * "OptionGroupArn": "arn:aws:rds:us-west-1:111122223333:og:default:oracle-ee-19", - * "OptionGroupDescription": "Default option group for oracle-ee 19", - * "OptionGroupName": "default:oracle-ee-19", - * "Options": [] + * AllowsVpcAndNonVpcInstanceMemberships: true, + * EngineName: "oracle-ee", + * MajorEngineVersion: "19", + * OptionGroupArn: "arn:aws:rds:us-west-1:111122223333:og:default:oracle-ee-19", + * OptionGroupDescription: "Default option group for oracle-ee 19", + * OptionGroupName: "default:oracle-ee-19", + * Options: [] * } * ] * } * *\/ - * // example id: to-describe-the-available-option-groups-1680283066000 * ``` * + * @public */ export class DescribeOptionGroupsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts b/clients/client-rds/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts index 2c84c1198db6c..175883fbcb7e6 100644 --- a/clients/client-rds/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts +++ b/clients/client-rds/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts @@ -131,55 +131,55 @@ export interface DescribeOrderableDBInstanceOptionsCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe orderable DB instance options * ```javascript * // The following example retrieves details about the orderable options for a DB instances running the MySQL DB engine. * const input = { - * "Engine": "mysql" + * Engine: "mysql" * }; * const command = new DescribeOrderableDBInstanceOptionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OrderableDBInstanceOptions": [ + * OrderableDBInstanceOptions: [ * { - * "AvailabilityZones": [ + * AvailabilityZones: [ * { - * "Name": "us-east-1a" + * Name: "us-east-1a" * }, * { - * "Name": "us-east-1b" + * Name: "us-east-1b" * }, * { - * "Name": "us-east-1c" + * Name: "us-east-1c" * }, * { - * "Name": "us-east-1d" + * Name: "us-east-1d" * }, * { - * "Name": "us-east-1e" + * Name: "us-east-1e" * }, * { - * "Name": "us-east-1f" + * Name: "us-east-1f" * } * ], - * "DBInstanceClass": "db.m4.10xlarge", - * "Engine": "mysql", - * "EngineVersion": "5.7.33", - * "LicenseModel": "general-public-license", - * "MultiAZCapable": true, - * "ReadReplicaCapable": true, - * "StorageType": "gp2", - * "SupportsStorageEncryption": true, - * "Vpc": true + * DBInstanceClass: "db.m4.10xlarge", + * Engine: "mysql", + * EngineVersion: "5.7.33", + * LicenseModel: "general-public-license", + * MultiAZCapable: true, + * ReadReplicaCapable: true, + * StorageType: "gp2", + * SupportsStorageEncryption: true, + * Vpc: true * } * ] * } * *\/ - * // example id: to-describe-orderable-db-instance-options-1680283253165 * ``` * + * @public */ export class DescribeOrderableDBInstanceOptionsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribePendingMaintenanceActionsCommand.ts b/clients/client-rds/src/commands/DescribePendingMaintenanceActionsCommand.ts index e990d083a4217..a500e4113809d 100644 --- a/clients/client-rds/src/commands/DescribePendingMaintenanceActionsCommand.ts +++ b/clients/client-rds/src/commands/DescribePendingMaintenanceActionsCommand.ts @@ -93,31 +93,31 @@ export interface DescribePendingMaintenanceActionsCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To list resources with at least one pending maintenance action * ```javascript * // The following example lists the pending maintenace action for a DB instance. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribePendingMaintenanceActionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "PendingMaintenanceActions": [ + * PendingMaintenanceActions: [ * { - * "PendingMaintenanceActionDetails": [ + * PendingMaintenanceActionDetails: [ * { - * "Action": "system-update", - * "Description": "Upgrade to Aurora PostgreSQL 2.4.2" + * Action: "system-update", + * Description: "Upgrade to Aurora PostgreSQL 2.4.2" * } * ], - * "ResourceIdentifier": "arn:aws:rds:us-west-2:123456789012:cluster:global-db1-cl1" + * ResourceIdentifier: "arn:aws:rds:us-west-2:123456789012:cluster:global-db1-cl1" * } * ] * } * *\/ - * // example id: to-list-resources-with-at-least-one-pending-maintenance-action-1680283544475 * ``` * + * @public */ export class DescribePendingMaintenanceActionsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeReservedDBInstancesCommand.ts b/clients/client-rds/src/commands/DescribeReservedDBInstancesCommand.ts index fbc0b3dbc7c06..32314105fbebc 100644 --- a/clients/client-rds/src/commands/DescribeReservedDBInstancesCommand.ts +++ b/clients/client-rds/src/commands/DescribeReservedDBInstancesCommand.ts @@ -100,45 +100,45 @@ export interface DescribeReservedDBInstancesCommandOutput extends ReservedDBInst * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe reserved DB instances * ```javascript * // The following example retrieves details about any reserved DB instances in the current AWS account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeReservedDBInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReservedDBInstances": [ + * ReservedDBInstances: [ * { - * "CurrencyCode": "USD", - * "DBInstanceClass": "db.t3.micro", - * "DBInstanceCount": 1, - * "Duration": 31536000, - * "FixedPrice": 0, - * "LeaseId": "a1b2c3d4-6b69-4a59-be89-5e11aa446666", - * "MultiAZ": false, - * "OfferingType": "No Upfront", - * "ProductDescription": "sqlserver-ex(li)", - * "RecurringCharges": [ + * CurrencyCode: "USD", + * DBInstanceClass: "db.t3.micro", + * DBInstanceCount: 1, + * Duration: 31536000, + * FixedPrice: 0, + * LeaseId: "a1b2c3d4-6b69-4a59-be89-5e11aa446666", + * MultiAZ: false, + * OfferingType: "No Upfront", + * ProductDescription: "sqlserver-ex(li)", + * RecurringCharges: [ * { - * "RecurringChargeAmount": 0.014, - * "RecurringChargeFrequency": "Hourly" + * RecurringChargeAmount: 0.014, + * RecurringChargeFrequency: "Hourly" * } * ], - * "ReservedDBInstanceArn": "arn:aws:rds:us-west-2:123456789012:ri:myreservedinstance", - * "ReservedDBInstanceId": "myreservedinstance", - * "ReservedDBInstancesOfferingId": "12ab34cd-59af-4b2c-a660-1abcdef23456", - * "StartTime": "2020-06-01T13:44:21.436Z", - * "State": "payment-pending", - * "UsagePrice": 0 + * ReservedDBInstanceArn: "arn:aws:rds:us-west-2:123456789012:ri:myreservedinstance", + * ReservedDBInstanceId: "myreservedinstance", + * ReservedDBInstancesOfferingId: "12ab34cd-59af-4b2c-a660-1abcdef23456", + * StartTime: "2020-06-01T13:44:21.436Z", + * State: "payment-pending", + * UsagePrice: 0 * } * ] * } * *\/ - * // example id: to-describe-reserved-db-instances-1680283668105 * ``` * + * @public */ export class DescribeReservedDBInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeReservedDBInstancesOfferingsCommand.ts b/clients/client-rds/src/commands/DescribeReservedDBInstancesOfferingsCommand.ts index 6b8e57a4229b2..8c96810245e24 100644 --- a/clients/client-rds/src/commands/DescribeReservedDBInstancesOfferingsCommand.ts +++ b/clients/client-rds/src/commands/DescribeReservedDBInstancesOfferingsCommand.ts @@ -97,41 +97,41 @@ export interface DescribeReservedDBInstancesOfferingsCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe reserved DB instance offerings * ```javascript * // The following example retrieves details about reserved DB instance options for RDS for Oracle. * const input = { - * "ProductDescription": "oracle" + * ProductDescription: "oracle" * }; * const command = new DescribeReservedDBInstancesOfferingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReservedDBInstancesOfferings": [ + * ReservedDBInstancesOfferings: [ * { - * "CurrencyCode": "USD", - * "DBInstanceClass": "db.m4.xlarge", - * "Duration": 31536000, - * "FixedPrice": 4089, - * "MultiAZ": true, - * "OfferingType": "Partial Upfront", - * "ProductDescription": "oracle-se2(li)", - * "RecurringCharges": [ + * CurrencyCode: "USD", + * DBInstanceClass: "db.m4.xlarge", + * Duration: 31536000, + * FixedPrice: 4089, + * MultiAZ: true, + * OfferingType: "Partial Upfront", + * ProductDescription: "oracle-se2(li)", + * RecurringCharges: [ * { - * "RecurringChargeAmount": 0.594, - * "RecurringChargeFrequency": "Hourly" + * RecurringChargeAmount: 0.594, + * RecurringChargeFrequency: "Hourly" * } * ], - * "ReservedDBInstancesOfferingId": "005bdee3-9ef4-4182-aa0c-58ef7cb6c2f8", - * "UsagePrice": 0 + * ReservedDBInstancesOfferingId: "005bdee3-9ef4-4182-aa0c-58ef7cb6c2f8", + * UsagePrice: 0 * } * ] * } * *\/ - * // example id: to-describe-reserved-db-instance-offerings-1680283755054 * ``` * + * @public */ export class DescribeReservedDBInstancesOfferingsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeSourceRegionsCommand.ts b/clients/client-rds/src/commands/DescribeSourceRegionsCommand.ts index 4e4b5e0b08d1b..768bcdf1d88f6 100644 --- a/clients/client-rds/src/commands/DescribeSourceRegionsCommand.ts +++ b/clients/client-rds/src/commands/DescribeSourceRegionsCommand.ts @@ -80,150 +80,150 @@ export interface DescribeSourceRegionsCommandOutput extends SourceRegionMessage, * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe source Regions * ```javascript * // The following example retrieves details about all source AWS Regions where the current AWS Region can create a read replica, copy a DB snapshot from, or replicate automated backups from. It also shows that automated backups can be replicated only from US West (Oregon) to the destination AWS Region, US East (N. Virginia). * const input = { - * "RegionName": "us-east-1" + * RegionName: "us-east-1" * }; * const command = new DescribeSourceRegionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SourceRegions": [ + * SourceRegions: [ * { - * "Endpoint": "https://rds.af-south-1.amazonaws.com", - * "RegionName": "af-south-1", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": false + * Endpoint: "https://rds.af-south-1.amazonaws.com", + * RegionName: "af-south-1", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: false * }, * { - * "Endpoint": "https://rds.ap-east-1.amazonaws.com", - * "RegionName": "ap-east-1", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": false + * Endpoint: "https://rds.ap-east-1.amazonaws.com", + * RegionName: "ap-east-1", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: false * }, * { - * "Endpoint": "https://rds.ap-northeast-1.amazonaws.com", - * "RegionName": "ap-northeast-1", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": true + * Endpoint: "https://rds.ap-northeast-1.amazonaws.com", + * RegionName: "ap-northeast-1", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: true * }, * { - * "Endpoint": "https://rds.ap-northeast-2.amazonaws.com", - * "RegionName": "ap-northeast-2", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": true + * Endpoint: "https://rds.ap-northeast-2.amazonaws.com", + * RegionName: "ap-northeast-2", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: true * }, * { - * "Endpoint": "https://rds.ap-northeast-3.amazonaws.com", - * "RegionName": "ap-northeast-3", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": false + * Endpoint: "https://rds.ap-northeast-3.amazonaws.com", + * RegionName: "ap-northeast-3", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: false * }, * { - * "Endpoint": "https://rds.ap-south-1.amazonaws.com", - * "RegionName": "ap-south-1", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": true + * Endpoint: "https://rds.ap-south-1.amazonaws.com", + * RegionName: "ap-south-1", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: true * }, * { - * "Endpoint": "https://rds.ap-southeast-1.amazonaws.com", - * "RegionName": "ap-southeast-1", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": true + * Endpoint: "https://rds.ap-southeast-1.amazonaws.com", + * RegionName: "ap-southeast-1", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: true * }, * { - * "Endpoint": "https://rds.ap-southeast-2.amazonaws.com", - * "RegionName": "ap-southeast-2", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": true + * Endpoint: "https://rds.ap-southeast-2.amazonaws.com", + * RegionName: "ap-southeast-2", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: true * }, * { - * "Endpoint": "https://rds.ap-southeast-3.amazonaws.com", - * "RegionName": "ap-southeast-3", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": false + * Endpoint: "https://rds.ap-southeast-3.amazonaws.com", + * RegionName: "ap-southeast-3", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: false * }, * { - * "Endpoint": "https://rds.ca-central-1.amazonaws.com", - * "RegionName": "ca-central-1", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": true + * Endpoint: "https://rds.ca-central-1.amazonaws.com", + * RegionName: "ca-central-1", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: true * }, * { - * "Endpoint": "https://rds.eu-north-1.amazonaws.com", - * "RegionName": "eu-north-1", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": true + * Endpoint: "https://rds.eu-north-1.amazonaws.com", + * RegionName: "eu-north-1", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: true * }, * { - * "Endpoint": "https://rds.eu-south-1.amazonaws.com", - * "RegionName": "eu-south-1", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": false + * Endpoint: "https://rds.eu-south-1.amazonaws.com", + * RegionName: "eu-south-1", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: false * }, * { - * "Endpoint": "https://rds.eu-west-1.amazonaws.com", - * "RegionName": "eu-west-1", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": true + * Endpoint: "https://rds.eu-west-1.amazonaws.com", + * RegionName: "eu-west-1", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: true * }, * { - * "Endpoint": "https://rds.eu-west-2.amazonaws.com", - * "RegionName": "eu-west-2", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": true + * Endpoint: "https://rds.eu-west-2.amazonaws.com", + * RegionName: "eu-west-2", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: true * }, * { - * "Endpoint": "https://rds.eu-west-3.amazonaws.com", - * "RegionName": "eu-west-3", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": true + * Endpoint: "https://rds.eu-west-3.amazonaws.com", + * RegionName: "eu-west-3", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: true * }, * { - * "Endpoint": "https://rds.me-central-1.amazonaws.com", - * "RegionName": "me-central-1", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": false + * Endpoint: "https://rds.me-central-1.amazonaws.com", + * RegionName: "me-central-1", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: false * }, * { - * "Endpoint": "https://rds.me-south-1.amazonaws.com", - * "RegionName": "me-south-1", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": false + * Endpoint: "https://rds.me-south-1.amazonaws.com", + * RegionName: "me-south-1", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: false * }, * { - * "Endpoint": "https://rds.sa-east-1.amazonaws.com", - * "RegionName": "sa-east-1", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": true + * Endpoint: "https://rds.sa-east-1.amazonaws.com", + * RegionName: "sa-east-1", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: true * }, * { - * "Endpoint": "https://rds.us-east-2.amazonaws.com", - * "RegionName": "us-east-2", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": true + * Endpoint: "https://rds.us-east-2.amazonaws.com", + * RegionName: "us-east-2", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: true * }, * { - * "Endpoint": "https://rds.us-west-1.amazonaws.com", - * "RegionName": "us-west-1", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": true + * Endpoint: "https://rds.us-west-1.amazonaws.com", + * RegionName: "us-west-1", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: true * }, * { - * "Endpoint": "https://rds.us-west-2.amazonaws.com", - * "RegionName": "us-west-2", - * "Status": "available", - * "SupportsDBInstanceAutomatedBackupsReplication": true + * Endpoint: "https://rds.us-west-2.amazonaws.com", + * RegionName: "us-west-2", + * Status: "available", + * SupportsDBInstanceAutomatedBackupsReplication: true * } * ] * } * *\/ - * // example id: to-describe-source-regions-1680283924227 * ``` * + * @public */ export class DescribeSourceRegionsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DescribeTenantDatabasesCommand.ts b/clients/client-rds/src/commands/DescribeTenantDatabasesCommand.ts index d28f5e0b885b9..6fd49b69e39bc 100644 --- a/clients/client-rds/src/commands/DescribeTenantDatabasesCommand.ts +++ b/clients/client-rds/src/commands/DescribeTenantDatabasesCommand.ts @@ -100,6 +100,7 @@ export interface DescribeTenantDatabasesCommandOutput extends TenantDatabasesMes * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DescribeTenantDatabasesCommand extends $Command diff --git a/clients/client-rds/src/commands/DescribeValidDBInstanceModificationsCommand.ts b/clients/client-rds/src/commands/DescribeValidDBInstanceModificationsCommand.ts index 5a72ad81fe643..89be19ae6e711 100644 --- a/clients/client-rds/src/commands/DescribeValidDBInstanceModificationsCommand.ts +++ b/clients/client-rds/src/commands/DescribeValidDBInstanceModificationsCommand.ts @@ -120,41 +120,41 @@ export interface DescribeValidDBInstanceModificationsCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To describe valid modifications for a DB instance * ```javascript * // The following example retrieves details about the valid modifications for the specified DB instance. * const input = { - * "DBInstanceIdentifier": "database-test1" + * DBInstanceIdentifier: "database-test1" * }; * const command = new DescribeValidDBInstanceModificationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ValidDBInstanceModificationsMessage": { - * "Storage": [ + * ValidDBInstanceModificationsMessage: { + * Storage: [ * { - * "StorageSize": [ + * StorageSize: [ * { - * "From": 20, - * "Step": 1, - * "To": 20 + * From: 20, + * Step: 1, + * To: 20 * }, * { - * "From": 22, - * "Step": 1, - * "To": 6144 + * From: 22, + * Step: 1, + * To: 6144 * } * ], - * "StorageType": "gp2" + * StorageType: "gp2" * } * ] * } * } * *\/ - * // example id: to-describe-valid-modifications-for-a-db-instance-1680284230997 * ``` * + * @public */ export class DescribeValidDBInstanceModificationsCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/DisableHttpEndpointCommand.ts b/clients/client-rds/src/commands/DisableHttpEndpointCommand.ts index 7ecb73eb54d6d..945b2900bf887 100644 --- a/clients/client-rds/src/commands/DisableHttpEndpointCommand.ts +++ b/clients/client-rds/src/commands/DisableHttpEndpointCommand.ts @@ -68,6 +68,7 @@ export interface DisableHttpEndpointCommandOutput extends DisableHttpEndpointRes * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class DisableHttpEndpointCommand extends $Command diff --git a/clients/client-rds/src/commands/DownloadDBLogFilePortionCommand.ts b/clients/client-rds/src/commands/DownloadDBLogFilePortionCommand.ts index 928d68402e997..8c394b5722f74 100644 --- a/clients/client-rds/src/commands/DownloadDBLogFilePortionCommand.ts +++ b/clients/client-rds/src/commands/DownloadDBLogFilePortionCommand.ts @@ -72,19 +72,22 @@ export interface DownloadDBLogFilePortionCommandOutput extends DownloadDBLogFile * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To download a DB log file * ```javascript * // The following example downloads only the latest part of your log file. * const input = { - * "DBInstanceIdentifier": "test-instance", - * "LogFileName": "log.txt" + * DBInstanceIdentifier: "test-instance", + * LogFileName: "log.txt" * }; * const command = new DownloadDBLogFilePortionCommand(input); - * await client.send(command); - * // example id: to-download-a-db-log-file-1680284895898 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DownloadDBLogFilePortionCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/EnableHttpEndpointCommand.ts b/clients/client-rds/src/commands/EnableHttpEndpointCommand.ts index 6d7f82e5a20dc..c6a1c458f3763 100644 --- a/clients/client-rds/src/commands/EnableHttpEndpointCommand.ts +++ b/clients/client-rds/src/commands/EnableHttpEndpointCommand.ts @@ -72,6 +72,7 @@ export interface EnableHttpEndpointCommandOutput extends EnableHttpEndpointRespo * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class EnableHttpEndpointCommand extends $Command diff --git a/clients/client-rds/src/commands/FailoverDBClusterCommand.ts b/clients/client-rds/src/commands/FailoverDBClusterCommand.ts index 884114ec671be..dbbefc9f62383 100644 --- a/clients/client-rds/src/commands/FailoverDBClusterCommand.ts +++ b/clients/client-rds/src/commands/FailoverDBClusterCommand.ts @@ -273,24 +273,24 @@ export interface FailoverDBClusterCommandOutput extends FailoverDBClusterResult, * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To perform a failover for a DB cluster * ```javascript * // This example performs a failover for the specified DB cluster to the specified DB instance. * const input = { - * "DBClusterIdentifier": "myaurorainstance-cluster", - * "TargetDBInstanceIdentifier": "myaurorareplica" + * DBClusterIdentifier: "myaurorainstance-cluster", + * TargetDBInstanceIdentifier: "myaurorareplica" * }; * const command = new FailoverDBClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBCluster": {} + * DBCluster: { /* empty *\/ } * } * *\/ - * // example id: failover-db-cluster-9e7f2f93-d98c-42c7-bb0e-d6c485c096d6 * ``` * + * @public */ export class FailoverDBClusterCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/FailoverGlobalClusterCommand.ts b/clients/client-rds/src/commands/FailoverGlobalClusterCommand.ts index 09bc165cda6b3..7cb9b9c47a012 100644 --- a/clients/client-rds/src/commands/FailoverGlobalClusterCommand.ts +++ b/clients/client-rds/src/commands/FailoverGlobalClusterCommand.ts @@ -141,6 +141,7 @@ export interface FailoverGlobalClusterCommandOutput extends FailoverGlobalCluste * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class FailoverGlobalClusterCommand extends $Command diff --git a/clients/client-rds/src/commands/ListTagsForResourceCommand.ts b/clients/client-rds/src/commands/ListTagsForResourceCommand.ts index 543c4181b6adf..dcf5f4fbad3c5 100644 --- a/clients/client-rds/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-rds/src/commands/ListTagsForResourceCommand.ts @@ -102,32 +102,32 @@ export interface ListTagsForResourceCommandOutput extends TagListMessage, __Meta * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To list tags on an Amazon RDS resource * ```javascript * // The following example lists all tags on a DB instance. * const input = { - * "ResourceName": "arn:aws:rds:us-east-1:123456789012:db:orcl1" + * ResourceName: "arn:aws:rds:us-east-1:123456789012:db:orcl1" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TagList": [ + * TagList: [ * { - * "Key": "Environment", - * "Value": "test" + * Key: "Environment", + * Value: "test" * }, * { - * "Key": "Name", - * "Value": "MyDatabase" + * Key: "Name", + * Value: "MyDatabase" * } * ] * } * *\/ - * // example id: to-list-tags-on-an-amazon-rds-resource-1680285113240 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyActivityStreamCommand.ts b/clients/client-rds/src/commands/ModifyActivityStreamCommand.ts index 6eae215837268..bc5981078524a 100644 --- a/clients/client-rds/src/commands/ModifyActivityStreamCommand.ts +++ b/clients/client-rds/src/commands/ModifyActivityStreamCommand.ts @@ -75,6 +75,7 @@ export interface ModifyActivityStreamCommandOutput extends ModifyActivityStreamR * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class ModifyActivityStreamCommand extends $Command diff --git a/clients/client-rds/src/commands/ModifyCertificatesCommand.ts b/clients/client-rds/src/commands/ModifyCertificatesCommand.ts index 2ce2e8c7aafff..2720c2c0fba92 100644 --- a/clients/client-rds/src/commands/ModifyCertificatesCommand.ts +++ b/clients/client-rds/src/commands/ModifyCertificatesCommand.ts @@ -94,32 +94,32 @@ export interface ModifyCertificatesCommandOutput extends ModifyCertificatesResul * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To temporarily override the system-default SSL/TLS certificate for new DB instances * ```javascript * // The following example temporarily overrides the system-default SSL/TLS certificate for new DB instances. * const input = { - * "CertificateIdentifier": "rds-ca-2019" + * CertificateIdentifier: "rds-ca-2019" * }; * const command = new ModifyCertificatesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Certificate": { - * "CertificateArn": "arn:aws:rds:us-east-1::cert:rds-ca-2019", - * "CertificateIdentifier": "rds-ca-2019", - * "CertificateType": "CA", - * "CustomerOverride": true, - * "CustomerOverrideValidTill": "2024-08-22T17:08:50Z", - * "Thumbprint": "EXAMPLE123456789012", - * "ValidFrom": "2019-09-19T18:16:53Z", - * "ValidTill": "2024-08-22T17:08:50Z" + * Certificate: { + * CertificateArn: "arn:aws:rds:us-east-1::cert:rds-ca-2019", + * CertificateIdentifier: "rds-ca-2019", + * CertificateType: "CA", + * CustomerOverride: true, + * CustomerOverrideValidTill: "2024-08-22T17:08:50Z", + * Thumbprint: "EXAMPLE123456789012", + * ValidFrom: "2019-09-19T18:16:53Z", + * ValidTill: "2024-08-22T17:08:50Z" * } * } * *\/ - * // example id: to-temporarily-override-the-system-default-ssltls-certificate-for-new-db-instances-1680306491984 * ``` * + * @public */ export class ModifyCertificatesCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyCurrentDBClusterCapacityCommand.ts b/clients/client-rds/src/commands/ModifyCurrentDBClusterCapacityCommand.ts index 0272842877cb2..d29638c7e6261 100644 --- a/clients/client-rds/src/commands/ModifyCurrentDBClusterCapacityCommand.ts +++ b/clients/client-rds/src/commands/ModifyCurrentDBClusterCapacityCommand.ts @@ -95,28 +95,28 @@ export interface ModifyCurrentDBClusterCapacityCommandOutput extends DBClusterCa * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To scale the capacity of an Aurora Serverless DB cluster * ```javascript * // The following example scales the capacity of an Aurora Serverless DB cluster to 8. * const input = { - * "Capacity": 8, - * "DBClusterIdentifier": "mydbcluster" + * Capacity: 8, + * DBClusterIdentifier: "mydbcluster" * }; * const command = new ModifyCurrentDBClusterCapacityCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CurrentCapacity": 1, - * "DBClusterIdentifier": "mydbcluster", - * "PendingCapacity": 8, - * "SecondsBeforeTimeout": 300, - * "TimeoutAction": "ForceApplyCapacityChange" + * CurrentCapacity: 1, + * DBClusterIdentifier: "mydbcluster", + * PendingCapacity: 8, + * SecondsBeforeTimeout: 300, + * TimeoutAction: "ForceApplyCapacityChange" * } * *\/ - * // example id: to-scale-the-capacity-of-an-aurora-serverless-db-cluster-1680307179599 * ``` * + * @public */ export class ModifyCurrentDBClusterCapacityCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyCustomDBEngineVersionCommand.ts b/clients/client-rds/src/commands/ModifyCustomDBEngineVersionCommand.ts index fe4f6c20adba1..cbb83f0df17ae 100644 --- a/clients/client-rds/src/commands/ModifyCustomDBEngineVersionCommand.ts +++ b/clients/client-rds/src/commands/ModifyCustomDBEngineVersionCommand.ts @@ -162,6 +162,7 @@ export interface ModifyCustomDBEngineVersionCommandOutput extends DBEngineVersio * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class ModifyCustomDBEngineVersionCommand extends $Command diff --git a/clients/client-rds/src/commands/ModifyDBClusterCommand.ts b/clients/client-rds/src/commands/ModifyDBClusterCommand.ts index 40758cd4b97fe..2d7a58c500d0c 100644 --- a/clients/client-rds/src/commands/ModifyDBClusterCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBClusterCommand.ts @@ -370,79 +370,79 @@ export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __M * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To modify a DB cluster * ```javascript * // The following example changes the master user password for the DB cluster named cluster-2 and sets the backup retention period to 14 days. The ApplyImmediately parameter causes the changes to be made immediately, instead of waiting until the next maintenance window. * const input = { - * "ApplyImmediately": true, - * "BackupRetentionPeriod": 14, - * "DBClusterIdentifier": "cluster-2", - * "MasterUserPassword": "newpassword99" + * ApplyImmediately: true, + * BackupRetentionPeriod: 14, + * DBClusterIdentifier: "cluster-2", + * MasterUserPassword: "newpassword99" * }; * const command = new ModifyDBClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBCluster": { - * "AllocatedStorage": 1, - * "AssociatedRoles": [], - * "AvailabilityZones": [ + * DBCluster: { + * AllocatedStorage: 1, + * AssociatedRoles: [], + * AvailabilityZones: [ * "eu-central-1b", * "eu-central-1c", * "eu-central-1a" * ], - * "BackupRetentionPeriod": 14, - * "ClusterCreateTime": "2020-04-03T14:44:02.764Z", - * "CopyTagsToSnapshot": true, - * "CrossAccountClone": false, - * "DBClusterArn": "arn:aws:rds:eu-central-1:123456789012:cluster:cluster-2", - * "DBClusterIdentifier": "cluster-2", - * "DBClusterMembers": [ + * BackupRetentionPeriod: 14, + * ClusterCreateTime: "2020-04-03T14:44:02.764Z", + * CopyTagsToSnapshot: true, + * CrossAccountClone: false, + * DBClusterArn: "arn:aws:rds:eu-central-1:123456789012:cluster:cluster-2", + * DBClusterIdentifier: "cluster-2", + * DBClusterMembers: [ * { - * "DBClusterParameterGroupStatus": "in-sync", - * "DBInstanceIdentifier": "cluster-2-instance-1", - * "IsClusterWriter": true, - * "PromotionTier": 1 + * DBClusterParameterGroupStatus: "in-sync", + * DBInstanceIdentifier: "cluster-2-instance-1", + * IsClusterWriter: true, + * PromotionTier: 1 * } * ], - * "DBClusterParameterGroup": "default.aurora5.6", - * "DBSubnetGroup": "default-vpc-2305ca49", - * "DatabaseName": "", - * "DbClusterResourceId": "cluster-AGJ7XI77XVIS6FUXHU1EXAMPLE", - * "DeletionProtection": false, - * "DomainMemberships": [], - * "EarliestRestorableTime": "2020-06-03T02:07:29.637Z", - * "Endpoint": "cluster-2.cluster-############.eu-central-1.rds.amazonaws.com", - * "Engine": "aurora", - * "EngineMode": "provisioned", - * "EngineVersion": "5.6.10a", - * "HostedZoneId": "Z1RLNU0EXAMPLE", - * "HttpEndpointEnabled": false, - * "IAMDatabaseAuthenticationEnabled": false, - * "KmsKeyId": "arn:aws:kms:eu-central-1:123456789012:key/d1bd7c8f-5cdb-49ca-8a62-a1b2c3d4e5f6", - * "LatestRestorableTime": "2020-06-04T15:11:25.748Z", - * "MasterUsername": "admin", - * "MultiAZ": false, - * "Port": 3306, - * "PreferredBackupWindow": "01:55-02:25", - * "PreferredMaintenanceWindow": "thu:21:14-thu:21:44", - * "ReadReplicaIdentifiers": [], - * "ReaderEndpoint": "cluster-2.cluster-ro-############.eu-central-1.rds.amazonaws.com", - * "Status": "available", - * "StorageEncrypted": true, - * "VpcSecurityGroups": [ + * DBClusterParameterGroup: "default.aurora5.6", + * DBSubnetGroup: "default-vpc-2305ca49", + * DatabaseName: "", + * DbClusterResourceId: "cluster-AGJ7XI77XVIS6FUXHU1EXAMPLE", + * DeletionProtection: false, + * DomainMemberships: [], + * EarliestRestorableTime: "2020-06-03T02:07:29.637Z", + * Endpoint: "cluster-2.cluster-############.eu-central-1.rds.amazonaws.com", + * Engine: "aurora", + * EngineMode: "provisioned", + * EngineVersion: "5.6.10a", + * HostedZoneId: "Z1RLNU0EXAMPLE", + * HttpEndpointEnabled: false, + * IAMDatabaseAuthenticationEnabled: false, + * KmsKeyId: "arn:aws:kms:eu-central-1:123456789012:key/d1bd7c8f-5cdb-49ca-8a62-a1b2c3d4e5f6", + * LatestRestorableTime: "2020-06-04T15:11:25.748Z", + * MasterUsername: "admin", + * MultiAZ: false, + * Port: 3306, + * PreferredBackupWindow: "01:55-02:25", + * PreferredMaintenanceWindow: "thu:21:14-thu:21:44", + * ReadReplicaIdentifiers: [], + * ReaderEndpoint: "cluster-2.cluster-ro-############.eu-central-1.rds.amazonaws.com", + * Status: "available", + * StorageEncrypted: true, + * VpcSecurityGroups: [ * { - * "Status": "active", - * "VpcSecurityGroupId": "sg-20a5c047" + * Status: "active", + * VpcSecurityGroupId: "sg-20a5c047" * } * ] * } * } * *\/ - * // example id: to-modify-a-db-cluster-1680310823999 * ``` * + * @public */ export class ModifyDBClusterCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyDBClusterEndpointCommand.ts b/clients/client-rds/src/commands/ModifyDBClusterEndpointCommand.ts index e96e9677a22a6..81aab1665cf4c 100644 --- a/clients/client-rds/src/commands/ModifyDBClusterEndpointCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBClusterEndpointCommand.ts @@ -95,13 +95,13 @@ export interface ModifyDBClusterEndpointCommandOutput extends DBClusterEndpoint, * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To modify a custom DB cluster endpoint * ```javascript * // The following example modifies the specified custom DB cluster endpoint. * const input = { - * "DBClusterEndpointIdentifier": "mycustomendpoint", - * "StaticMembers": [ + * DBClusterEndpointIdentifier: "mycustomendpoint", + * StaticMembers: [ * "dbinstance1", * "dbinstance2", * "dbinstance3" @@ -109,27 +109,27 @@ export interface ModifyDBClusterEndpointCommandOutput extends DBClusterEndpoint, * }; * const command = new ModifyDBClusterEndpointCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CustomEndpointType": "READER", - * "DBClusterEndpointArn": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:mycustomendpoint", - * "DBClusterEndpointIdentifier": "mycustomendpoint", - * "DBClusterEndpointResourceIdentifier": "cluster-endpoint-ANPAJ4AE5446DAEXAMPLE", - * "DBClusterIdentifier": "mydbcluster", - * "Endpoint": "mycustomendpoint.cluster-custom-cnpexample.us-east-1.rds.amazonaws.com", - * "EndpointType": "CUSTOM", - * "ExcludedMembers": [], - * "StaticMembers": [ + * CustomEndpointType: "READER", + * DBClusterEndpointArn: "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:mycustomendpoint", + * DBClusterEndpointIdentifier: "mycustomendpoint", + * DBClusterEndpointResourceIdentifier: "cluster-endpoint-ANPAJ4AE5446DAEXAMPLE", + * DBClusterIdentifier: "mydbcluster", + * Endpoint: "mycustomendpoint.cluster-custom-cnpexample.us-east-1.rds.amazonaws.com", + * EndpointType: "CUSTOM", + * ExcludedMembers: [], + * StaticMembers: [ * "dbinstance1", * "dbinstance2", * "dbinstance3" * ], - * "Status": "modifying" + * Status: "modifying" * } * *\/ - * // example id: to-modify-a-custom-db-cluster-endpoint-1680307652958 * ``` * + * @public */ export class ModifyDBClusterEndpointCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyDBClusterParameterGroupCommand.ts b/clients/client-rds/src/commands/ModifyDBClusterParameterGroupCommand.ts index 8742abb9b1516..a03ad6d26b425 100644 --- a/clients/client-rds/src/commands/ModifyDBClusterParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBClusterParameterGroupCommand.ts @@ -112,35 +112,35 @@ export interface ModifyDBClusterParameterGroupCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To modify parameters in a DB cluster parameter group * ```javascript * // The following example modifies the values of parameters in a DB cluster parameter group. * const input = { - * "DBClusterParameterGroupName": "mydbclusterpg", - * "Parameters": [ + * DBClusterParameterGroupName: "mydbclusterpg", + * Parameters: [ * { - * "ApplyMethod": "immediate", - * "ParameterName": "server_audit_logging", - * "ParameterValue": "1" + * ApplyMethod: "immediate", + * ParameterName: "server_audit_logging", + * ParameterValue: "1" * }, * { - * "ApplyMethod": "immediate", - * "ParameterName": "server_audit_logs_upload", - * "ParameterValue": "1" + * ApplyMethod: "immediate", + * ParameterName: "server_audit_logs_upload", + * ParameterValue: "1" * } * ] * }; * const command = new ModifyDBClusterParameterGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusterParameterGroupName": "mydbclusterpg" + * DBClusterParameterGroupName: "mydbclusterpg" * } * *\/ - * // example id: to-modify-parameters-in-a-db-cluster-parameter-group-1680377584537 * ``` * + * @public */ export class ModifyDBClusterParameterGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts b/clients/client-rds/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts index d1c2bf7536e9b..702d76c6d7596 100644 --- a/clients/client-rds/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts @@ -105,37 +105,37 @@ export interface ModifyDBClusterSnapshotAttributeCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To modify a DB cluster snapshot attribute * ```javascript * // The following example makes changes to the specified DB cluster snapshot attribute. * const input = { - * "AttributeName": "restore", - * "DBClusterSnapshotIdentifier": "myclustersnapshot", - * "ValuesToAdd": [ + * AttributeName: "restore", + * DBClusterSnapshotIdentifier: "myclustersnapshot", + * ValuesToAdd: [ * "123456789012" * ] * }; * const command = new ModifyDBClusterSnapshotAttributeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusterSnapshotAttributesResult": { - * "DBClusterSnapshotAttributes": [ + * DBClusterSnapshotAttributesResult: { + * DBClusterSnapshotAttributes: [ * { - * "AttributeName": "restore", - * "AttributeValues": [ + * AttributeName: "restore", + * AttributeValues: [ * "123456789012" * ] * } * ], - * "DBClusterSnapshotIdentifier": "myclustersnapshot" + * DBClusterSnapshotIdentifier: "myclustersnapshot" * } * } * *\/ - * // example id: to-modify-a-db-cluster-snapshot-attribute-1680310358770 * ``` * + * @public */ export class ModifyDBClusterSnapshotAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyDBInstanceCommand.ts b/clients/client-rds/src/commands/ModifyDBInstanceCommand.ts index c368fc73728d5..cf5c8a76d6eae 100644 --- a/clients/client-rds/src/commands/ModifyDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBInstanceCommand.ts @@ -438,56 +438,56 @@ export interface ModifyDBInstanceCommandOutput extends ModifyDBInstanceResult, _ * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To modify a DB instance * ```javascript * // The following example associates an option group and a parameter group with a compatible Microsoft SQL Server DB instance. The ApplyImmediately parameter causes the option and parameter groups to be associated immediately, instead of waiting until the next maintenance window. * const input = { - * "ApplyImmediately": true, - * "DBInstanceIdentifier": "database-2", - * "DBParameterGroupName": "test-sqlserver-se-2017", - * "OptionGroupName": "test-se-2017" + * ApplyImmediately: true, + * DBInstanceIdentifier: "database-2", + * DBParameterGroupName: "test-sqlserver-se-2017", + * OptionGroupName: "test-se-2017" * }; * const command = new ModifyDBInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstance": { - * "AssociatedRoles": [], - * "AutoMinorVersionUpgrade": false, - * "AvailabilityZone": "us-west-2d", - * "CharacterSetName": "SQL_Latin1_General_CP1_CI_AS", - * "DBInstanceClass": "db.r4.large", - * "DBInstanceIdentifier": "database-2", - * "DBInstanceStatus": "available", - * "DBParameterGroups": [ + * DBInstance: { + * AssociatedRoles: [], + * AutoMinorVersionUpgrade: false, + * AvailabilityZone: "us-west-2d", + * CharacterSetName: "SQL_Latin1_General_CP1_CI_AS", + * DBInstanceClass: "db.r4.large", + * DBInstanceIdentifier: "database-2", + * DBInstanceStatus: "available", + * DBParameterGroups: [ * { - * "DBParameterGroupName": "test-sqlserver-se-2017", - * "ParameterApplyStatus": "applying" + * DBParameterGroupName: "test-sqlserver-se-2017", + * ParameterApplyStatus: "applying" * } * ], - * "DeletionProtection": false, - * "Engine": "sqlserver-se", - * "EngineVersion": "14.00.3281.6.v1", - * "LicenseModel": "license-included", - * "MaxAllocatedStorage": 1000, - * "MultiAZ": true, - * "OptionGroupMemberships": [ + * DeletionProtection: false, + * Engine: "sqlserver-se", + * EngineVersion: "14.00.3281.6.v1", + * LicenseModel: "license-included", + * MaxAllocatedStorage: 1000, + * MultiAZ: true, + * OptionGroupMemberships: [ * { - * "OptionGroupName": "test-se-2017", - * "Status": "pending-apply" + * OptionGroupName: "test-se-2017", + * Status: "pending-apply" * } * ], - * "PubliclyAccessible": true, - * "ReadReplicaDBInstanceIdentifiers": [], - * "SecondaryAvailabilityZone": "us-west-2c", - * "StorageType": "gp2" + * PubliclyAccessible: true, + * ReadReplicaDBInstanceIdentifiers: [], + * SecondaryAvailabilityZone: "us-west-2c", + * StorageType: "gp2" * } * } * *\/ - * // example id: to-modify-a-db-instance-1680377584537 * ``` * + * @public */ export class ModifyDBInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyDBParameterGroupCommand.ts b/clients/client-rds/src/commands/ModifyDBParameterGroupCommand.ts index 919a7b2e023a4..14436998e7af3 100644 --- a/clients/client-rds/src/commands/ModifyDBParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBParameterGroupCommand.ts @@ -95,30 +95,30 @@ export interface ModifyDBParameterGroupCommandOutput extends DBParameterGroupNam * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To modify a DB parameter group * ```javascript * // The following example changes the value of the clr enabled parameter in a DB parameter group. The value of the ApplyMethod parameter causes the DB parameter group to be modified immediately, instead of waiting until the next maintenance window. * const input = { - * "DBParameterGroupName": "test-sqlserver-se-2017", - * "Parameters": [ + * DBParameterGroupName: "test-sqlserver-se-2017", + * Parameters: [ * { - * "ApplyMethod": "immediate", - * "ParameterName": "clr enabled", - * "ParameterValue": "1" + * ApplyMethod: "immediate", + * ParameterName: "clr enabled", + * ParameterValue: "1" * } * ] * }; * const command = new ModifyDBParameterGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBParameterGroupName": "test-sqlserver-se-2017" + * DBParameterGroupName: "test-sqlserver-se-2017" * } * *\/ - * // example id: to-modify-a-db-parameter-group-1680382937235 * ``` * + * @public */ export class ModifyDBParameterGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyDBProxyCommand.ts b/clients/client-rds/src/commands/ModifyDBProxyCommand.ts index 3d42916b0ecfe..1ca2d20107934 100644 --- a/clients/client-rds/src/commands/ModifyDBProxyCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBProxyCommand.ts @@ -111,6 +111,7 @@ export interface ModifyDBProxyCommandOutput extends ModifyDBProxyResponse, __Met * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class ModifyDBProxyCommand extends $Command diff --git a/clients/client-rds/src/commands/ModifyDBProxyEndpointCommand.ts b/clients/client-rds/src/commands/ModifyDBProxyEndpointCommand.ts index d13e81c9737d5..5d9bb3883b899 100644 --- a/clients/client-rds/src/commands/ModifyDBProxyEndpointCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBProxyEndpointCommand.ts @@ -87,6 +87,7 @@ export interface ModifyDBProxyEndpointCommandOutput extends ModifyDBProxyEndpoin * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class ModifyDBProxyEndpointCommand extends $Command diff --git a/clients/client-rds/src/commands/ModifyDBProxyTargetGroupCommand.ts b/clients/client-rds/src/commands/ModifyDBProxyTargetGroupCommand.ts index 25580f4df0f37..31db5276384a5 100644 --- a/clients/client-rds/src/commands/ModifyDBProxyTargetGroupCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBProxyTargetGroupCommand.ts @@ -92,6 +92,7 @@ export interface ModifyDBProxyTargetGroupCommandOutput extends ModifyDBProxyTarg * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class ModifyDBProxyTargetGroupCommand extends $Command diff --git a/clients/client-rds/src/commands/ModifyDBRecommendationCommand.ts b/clients/client-rds/src/commands/ModifyDBRecommendationCommand.ts index a77860e8c7981..2a1a2aee21b66 100644 --- a/clients/client-rds/src/commands/ModifyDBRecommendationCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBRecommendationCommand.ts @@ -179,6 +179,7 @@ export interface ModifyDBRecommendationCommandOutput extends DBRecommendationMes * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class ModifyDBRecommendationCommand extends $Command diff --git a/clients/client-rds/src/commands/ModifyDBShardGroupCommand.ts b/clients/client-rds/src/commands/ModifyDBShardGroupCommand.ts index 2bbf5ca454ed6..166865ad2161a 100644 --- a/clients/client-rds/src/commands/ModifyDBShardGroupCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBShardGroupCommand.ts @@ -84,6 +84,7 @@ export interface ModifyDBShardGroupCommandOutput extends DBShardGroup, __Metadat * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class ModifyDBShardGroupCommand extends $Command diff --git a/clients/client-rds/src/commands/ModifyDBSnapshotAttributeCommand.ts b/clients/client-rds/src/commands/ModifyDBSnapshotAttributeCommand.ts index ca28e110c492c..78d941c834ca2 100644 --- a/clients/client-rds/src/commands/ModifyDBSnapshotAttributeCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBSnapshotAttributeCommand.ts @@ -98,69 +98,68 @@ export interface ModifyDBSnapshotAttributeCommandOutput extends ModifyDBSnapshot * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To allow two AWS accounts to restore a DB snapshot * ```javascript * // The following example grants permission to two AWS accounts, with the identifiers 111122223333 and 444455556666, to restore the DB snapshot named mydbsnapshot. * const input = { - * "AttributeName": "restore", - * "DBSnapshotIdentifier": "mydbsnapshot", - * "ValuesToAdd": [ + * AttributeName: "restore", + * DBSnapshotIdentifier: "mydbsnapshot", + * ValuesToAdd: [ * "111122223333", * "444455556666" * ] * }; * const command = new ModifyDBSnapshotAttributeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBSnapshotAttributesResult": { - * "DBSnapshotAttributes": [ + * DBSnapshotAttributesResult: { + * DBSnapshotAttributes: [ * { - * "AttributeName": "restore", - * "AttributeValues": [ + * AttributeName: "restore", + * AttributeValues: [ * "111122223333", * "444455556666" * ] * } * ], - * "DBSnapshotIdentifier": "mydbsnapshot" + * DBSnapshotIdentifier: "mydbsnapshot" * } * } * *\/ - * // example id: to-allow-two-aws-accounts-to-restore-a-db-snapshot-1680389647513 * ``` * * @example To prevent an AWS account from restoring a DB snapshot * ```javascript * // The following example removes permission from the AWS account with the identifier 444455556666 to restore the DB snapshot named mydbsnapshot. * const input = { - * "AttributeName": "restore", - * "DBSnapshotIdentifier": "mydbsnapshot", - * "ValuesToRemove": [ + * AttributeName: "restore", + * DBSnapshotIdentifier: "mydbsnapshot", + * ValuesToRemove: [ * "444455556666" * ] * }; * const command = new ModifyDBSnapshotAttributeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBSnapshotAttributesResult": { - * "DBSnapshotAttributes": [ + * DBSnapshotAttributesResult: { + * DBSnapshotAttributes: [ * { - * "AttributeName": "restore", - * "AttributeValues": [ + * AttributeName: "restore", + * AttributeValues: [ * "111122223333" * ] * } * ], - * "DBSnapshotIdentifier": "mydbsnapshot" + * DBSnapshotIdentifier: "mydbsnapshot" * } * } * *\/ - * // example id: to-prevent-an-aws-account-from-restoring-a-db-snapshot-1680389850879 * ``` * + * @public */ export class ModifyDBSnapshotAttributeCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyDBSnapshotCommand.ts b/clients/client-rds/src/commands/ModifyDBSnapshotCommand.ts index 51eb806490cdc..6317fff57a1d7 100644 --- a/clients/client-rds/src/commands/ModifyDBSnapshotCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBSnapshotCommand.ts @@ -113,47 +113,47 @@ export interface ModifyDBSnapshotCommandOutput extends ModifyDBSnapshotResult, _ * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To modify a DB snapshot * ```javascript * // The following example upgrades a PostgeSQL 10.6 snapshot named db5-snapshot-upg-test to PostgreSQL 11.7. The new DB engine version is shown after the snapshot has finished upgrading and its status is available. * const input = { - * "DBSnapshotIdentifier": "db5-snapshot-upg-test", - * "EngineVersion": "11.7" + * DBSnapshotIdentifier: "db5-snapshot-upg-test", + * EngineVersion: "11.7" * }; * const command = new ModifyDBSnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBSnapshot": { - * "AllocatedStorage": 20, - * "AvailabilityZone": "us-west-2a", - * "DBInstanceIdentifier": "database-5", - * "DBSnapshotArn": "arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-upg-test", - * "DBSnapshotIdentifier": "db5-snapshot-upg-test", - * "DbiResourceId": "db-GJMF75LM42IL6BTFRE4UZJ5YM4", - * "Encrypted": false, - * "Engine": "postgres", - * "EngineVersion": "10.6", - * "IAMDatabaseAuthenticationEnabled": false, - * "InstanceCreateTime": "2020-03-27T19:59:04.735Z", - * "LicenseModel": "postgresql-license", - * "MasterUsername": "postgres", - * "OptionGroupName": "default:postgres-11", - * "PercentProgress": 100, - * "Port": 5432, - * "ProcessorFeatures": [], - * "SnapshotCreateTime": "2020-03-27T20:49:17.092Z", - * "SnapshotType": "manual", - * "Status": "upgrading", - * "StorageType": "gp2", - * "VpcId": "vpc-2ff27557" + * DBSnapshot: { + * AllocatedStorage: 20, + * AvailabilityZone: "us-west-2a", + * DBInstanceIdentifier: "database-5", + * DBSnapshotArn: "arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-upg-test", + * DBSnapshotIdentifier: "db5-snapshot-upg-test", + * DbiResourceId: "db-GJMF75LM42IL6BTFRE4UZJ5YM4", + * Encrypted: false, + * Engine: "postgres", + * EngineVersion: "10.6", + * IAMDatabaseAuthenticationEnabled: false, + * InstanceCreateTime: "2020-03-27T19:59:04.735Z", + * LicenseModel: "postgresql-license", + * MasterUsername: "postgres", + * OptionGroupName: "default:postgres-11", + * PercentProgress: 100, + * Port: 5432, + * ProcessorFeatures: [], + * SnapshotCreateTime: "2020-03-27T20:49:17.092Z", + * SnapshotType: "manual", + * Status: "upgrading", + * StorageType: "gp2", + * VpcId: "vpc-2ff27557" * } * } * *\/ - * // example id: to-modify-a-db-snapshot-1680381968028 * ``` * + * @public */ export class ModifyDBSnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyDBSubnetGroupCommand.ts b/clients/client-rds/src/commands/ModifyDBSubnetGroupCommand.ts index cfa469b1cb69b..8f1065f21ce67 100644 --- a/clients/client-rds/src/commands/ModifyDBSubnetGroupCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBSubnetGroupCommand.ts @@ -97,14 +97,14 @@ export interface ModifyDBSubnetGroupCommandOutput extends ModifyDBSubnetGroupRes * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To modify a DB subnet group * ```javascript * // The following example adds a subnet with the ID subnet-08e41f9e230222222 to the DB subnet group named mysubnetgroup. To keep the existing subnets in the subnet group, include their IDs as values in the --subnet-ids option. Make sure to have subnets with at least two different Availability Zones in the DB subnet group. * const input = { - * "DBSubnetGroupDescription": "", - * "DBSubnetGroupName": "mysubnetgroup", - * "SubnetIds": [ + * DBSubnetGroupDescription: "", + * DBSubnetGroupName: "mysubnetgroup", + * SubnetIds: [ * "subnet-0a1dc4e1a6f123456", * "subnet-070dd7ecb3aaaaaaa", * "subnet-00f5b198bc0abcdef", @@ -113,50 +113,50 @@ export interface ModifyDBSubnetGroupCommandOutput extends ModifyDBSubnetGroupRes * }; * const command = new ModifyDBSubnetGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBSubnetGroup": { - * "DBSubnetGroupArn": "arn:aws:rds:us-west-2:123456789012:subgrp:mysubnetgroup", - * "DBSubnetGroupDescription": "test DB subnet group", - * "DBSubnetGroupName": "mysubnetgroup", - * "SubnetGroupStatus": "Complete", - * "Subnets": [ + * DBSubnetGroup: { + * DBSubnetGroupArn: "arn:aws:rds:us-west-2:123456789012:subgrp:mysubnetgroup", + * DBSubnetGroupDescription: "test DB subnet group", + * DBSubnetGroupName: "mysubnetgroup", + * SubnetGroupStatus: "Complete", + * Subnets: [ * { - * "SubnetAvailabilityZone": { - * "Name": "us-west-2a" + * SubnetAvailabilityZone: { + * Name: "us-west-2a" * }, - * "SubnetIdentifier": "subnet-08e41f9e230222222", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-08e41f9e230222222", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-west-2b" + * SubnetAvailabilityZone: { + * Name: "us-west-2b" * }, - * "SubnetIdentifier": "subnet-070dd7ecb3aaaaaaa", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-070dd7ecb3aaaaaaa", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-west-2d" + * SubnetAvailabilityZone: { + * Name: "us-west-2d" * }, - * "SubnetIdentifier": "subnet-00f5b198bc0abcdef", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-00f5b198bc0abcdef", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-west-2b" + * SubnetAvailabilityZone: { + * Name: "us-west-2b" * }, - * "SubnetIdentifier": "subnet-0a1dc4e1a6f123456", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-0a1dc4e1a6f123456", + * SubnetStatus: "Active" * } * ], - * "VpcId": "vpc-0f08e7610a1b2c3d4" + * VpcId: "vpc-0f08e7610a1b2c3d4" * } * } * *\/ - * // example id: to-modify-a-db-subnet-group-1680383300785 * ``` * + * @public */ export class ModifyDBSubnetGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyEventSubscriptionCommand.ts b/clients/client-rds/src/commands/ModifyEventSubscriptionCommand.ts index eec6c6321286b..c7302f0203426 100644 --- a/clients/client-rds/src/commands/ModifyEventSubscriptionCommand.ts +++ b/clients/client-rds/src/commands/ModifyEventSubscriptionCommand.ts @@ -98,37 +98,37 @@ export interface ModifyEventSubscriptionCommandOutput extends ModifyEventSubscri * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To modify an event subscription * ```javascript * // The following example turns off the specified event subscription, so that it no longer publishes notifications to the specified Amazon Simple Notification Service topic. * const input = { - * "Enabled": false, - * "SubscriptionName": "my-instance-events" + * Enabled: false, + * SubscriptionName: "my-instance-events" * }; * const command = new ModifyEventSubscriptionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EventSubscription": { - * "CustSubscriptionId": "my-instance-events", - * "CustomerAwsId": "123456789012", - * "Enabled": false, - * "EventCategoriesList": [ + * EventSubscription: { + * CustSubscriptionId: "my-instance-events", + * CustomerAwsId: "123456789012", + * Enabled: false, + * EventCategoriesList: [ * "backup", * "recovery" * ], - * "EventSubscriptionArn": "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", - * "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events", - * "SourceType": "db-instance", - * "Status": "modifying", - * "SubscriptionCreationTime": "Tue Jul 31 23:22:01 UTC 2018" + * EventSubscriptionArn: "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", + * SnsTopicArn: "arn:aws:sns:us-east-1:123456789012:interesting-events", + * SourceType: "db-instance", + * Status: "modifying", + * SubscriptionCreationTime: "Tue Jul 31 23:22:01 UTC 2018" * } * } * *\/ - * // example id: to-modify-an-event-subscription-1680383930434 * ``` * + * @public */ export class ModifyEventSubscriptionCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyGlobalClusterCommand.ts b/clients/client-rds/src/commands/ModifyGlobalClusterCommand.ts index 43f47e5acfd36..26d5f6eed462b 100644 --- a/clients/client-rds/src/commands/ModifyGlobalClusterCommand.ts +++ b/clients/client-rds/src/commands/ModifyGlobalClusterCommand.ts @@ -116,34 +116,34 @@ export interface ModifyGlobalClusterCommandOutput extends ModifyGlobalClusterRes * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To modify a global database cluster * ```javascript * // The following example enables deletion protection for an Aurora MySQL-based global database cluster. * const input = { - * "DeletionProtection": true, - * "GlobalClusterIdentifier": "myglobalcluster" + * DeletionProtection: true, + * GlobalClusterIdentifier: "myglobalcluster" * }; * const command = new ModifyGlobalClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GlobalCluster": { - * "DeletionProtection": true, - * "Engine": "aurora-mysql", - * "EngineVersion": "5.7.mysql_aurora.2.07.2", - * "GlobalClusterArn": "arn:aws:rds::123456789012:global-cluster:myglobalcluster", - * "GlobalClusterIdentifier": "myglobalcluster", - * "GlobalClusterMembers": [], - * "GlobalClusterResourceId": "cluster-f0e523bfe07aabb", - * "Status": "available", - * "StorageEncrypted": false + * GlobalCluster: { + * DeletionProtection: true, + * Engine: "aurora-mysql", + * EngineVersion: "5.7.mysql_aurora.2.07.2", + * GlobalClusterArn: "arn:aws:rds::123456789012:global-cluster:myglobalcluster", + * GlobalClusterIdentifier: "myglobalcluster", + * GlobalClusterMembers: [], + * GlobalClusterResourceId: "cluster-f0e523bfe07aabb", + * Status: "available", + * StorageEncrypted: false * } * } * *\/ - * // example id: to-modify-a-global-database-cluster-1680385137511 * ``` * + * @public */ export class ModifyGlobalClusterCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyIntegrationCommand.ts b/clients/client-rds/src/commands/ModifyIntegrationCommand.ts index 399d705cac3b4..5ee2dea824c3c 100644 --- a/clients/client-rds/src/commands/ModifyIntegrationCommand.ts +++ b/clients/client-rds/src/commands/ModifyIntegrationCommand.ts @@ -93,32 +93,32 @@ export interface ModifyIntegrationCommandOutput extends Integration, __MetadataB * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To modify a zero-ETL integration * ```javascript * // The following example modifies the name of an existing zero-ETL integration. * const input = { - * "IntegrationIdentifier": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "IntegrationName": "my-renamed-integration" + * IntegrationIdentifier: "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * IntegrationName: "my-renamed-integration" * }; * const command = new ModifyIntegrationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CreateTime": "2023-12-28T17:20:20.629Z", - * "DataFilter": "include: *.*", - * "IntegrationArn": "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231", - * "IntegrationName": "my-renamed-integration", - * "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa", - * "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", - * "Status": "active", - * "Tags": [], - * "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" + * CreateTime: "2023-12-28T17:20:20.629Z", + * DataFilter: "include: *.*", + * IntegrationArn: "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231", + * IntegrationName: "my-renamed-integration", + * KMSKeyId: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa", + * SourceArn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster", + * Status: "active", + * Tags: [], + * TargetArn: "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8" * } * *\/ - * // example id: to-modify-a-zero-etl-integration-1680407173998 * ``` * + * @public */ export class ModifyIntegrationCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyOptionGroupCommand.ts b/clients/client-rds/src/commands/ModifyOptionGroupCommand.ts index cc4ba938f5d76..2d481c91a7622 100644 --- a/clients/client-rds/src/commands/ModifyOptionGroupCommand.ts +++ b/clients/client-rds/src/commands/ModifyOptionGroupCommand.ts @@ -137,32 +137,32 @@ export interface ModifyOptionGroupCommandOutput extends ModifyOptionGroupResult, * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To modify an option group * ```javascript * // The following example adds an option to an option group. * const input = { - * "ApplyImmediately": true, - * "OptionGroupName": "myawsuser-og02", - * "OptionsToInclude": [ + * ApplyImmediately: true, + * OptionGroupName: "myawsuser-og02", + * OptionsToInclude: [ * { - * "DBSecurityGroupMemberships": [ + * DBSecurityGroupMemberships: [ * "default" * ], - * "OptionName": "MEMCACHED" + * OptionName: "MEMCACHED" * } * ] * }; * const command = new ModifyOptionGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OptionGroup": {} + * OptionGroup: { /* empty *\/ } * } * *\/ - * // example id: to-modify-an-option-group-1473890247875 * ``` * + * @public */ export class ModifyOptionGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ModifyTenantDatabaseCommand.ts b/clients/client-rds/src/commands/ModifyTenantDatabaseCommand.ts index 951d9e87015ea..679abac130956 100644 --- a/clients/client-rds/src/commands/ModifyTenantDatabaseCommand.ts +++ b/clients/client-rds/src/commands/ModifyTenantDatabaseCommand.ts @@ -101,6 +101,7 @@ export interface ModifyTenantDatabaseCommandOutput extends ModifyTenantDatabaseR * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class ModifyTenantDatabaseCommand extends $Command diff --git a/clients/client-rds/src/commands/PromoteReadReplicaCommand.ts b/clients/client-rds/src/commands/PromoteReadReplicaCommand.ts index 1775ceff8d2f5..ca632d848a018 100644 --- a/clients/client-rds/src/commands/PromoteReadReplicaCommand.ts +++ b/clients/client-rds/src/commands/PromoteReadReplicaCommand.ts @@ -305,28 +305,28 @@ export interface PromoteReadReplicaCommandOutput extends PromoteReadReplicaResul * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To promote a read replica * ```javascript * // The following example promotes the specified read replica to become a standalone DB instance. * const input = { - * "DBInstanceIdentifier": "test-instance-repl" + * DBInstanceIdentifier: "test-instance-repl" * }; * const command = new PromoteReadReplicaCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstance": { - * "DBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:test-instance-repl", - * "DBInstanceStatus": "modifying", - * "ReadReplicaSourceDBInstanceIdentifier": "test-instance", - * "StorageType": "standard" + * DBInstance: { + * DBInstanceArn: "arn:aws:rds:us-east-1:123456789012:db:test-instance-repl", + * DBInstanceStatus: "modifying", + * ReadReplicaSourceDBInstanceIdentifier: "test-instance", + * StorageType: "standard" * } * } * *\/ - * // example id: to-promote-a-read-replica-1680263877808 * ``` * + * @public */ export class PromoteReadReplicaCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/PromoteReadReplicaDBClusterCommand.ts b/clients/client-rds/src/commands/PromoteReadReplicaDBClusterCommand.ts index f6a0134a270c2..769ad371061fc 100644 --- a/clients/client-rds/src/commands/PromoteReadReplicaDBClusterCommand.ts +++ b/clients/client-rds/src/commands/PromoteReadReplicaDBClusterCommand.ts @@ -251,6 +251,7 @@ export interface PromoteReadReplicaDBClusterCommandOutput extends PromoteReadRep * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class PromoteReadReplicaDBClusterCommand extends $Command diff --git a/clients/client-rds/src/commands/PurchaseReservedDBInstancesOfferingCommand.ts b/clients/client-rds/src/commands/PurchaseReservedDBInstancesOfferingCommand.ts index a0b83ce8abd1b..b6aafcd7bf90d 100644 --- a/clients/client-rds/src/commands/PurchaseReservedDBInstancesOfferingCommand.ts +++ b/clients/client-rds/src/commands/PurchaseReservedDBInstancesOfferingCommand.ts @@ -102,45 +102,45 @@ export interface PurchaseReservedDBInstancesOfferingCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To purchase a reserved DB instance * ```javascript * // The following example shows how to buy the reserved DB instance offering from the previous example. * const input = { - * "ReservedDBInstanceId": "8ba30be1-b9ec-447f-8f23-6114e3f4c7b4", - * "ReservedDBInstancesOfferingId": "" + * ReservedDBInstanceId: "8ba30be1-b9ec-447f-8f23-6114e3f4c7b4", + * ReservedDBInstancesOfferingId: "" * }; * const command = new PurchaseReservedDBInstancesOfferingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReservedDBInstance": { - * "CurrencyCode": "USD", - * "DBInstanceClass": "db.t2.micro", - * "DBInstanceCount": 1, - * "Duration": 31536000, - * "FixedPrice": 51, - * "MultiAZ": false, - * "OfferingType": "Partial Upfront", - * "ProductDescription": "mysql", - * "RecurringCharges": [ + * ReservedDBInstance: { + * CurrencyCode: "USD", + * DBInstanceClass: "db.t2.micro", + * DBInstanceCount: 1, + * Duration: 31536000, + * FixedPrice: 51, + * MultiAZ: false, + * OfferingType: "Partial Upfront", + * ProductDescription: "mysql", + * RecurringCharges: [ * { - * "RecurringChargeAmount": 0.006, - * "RecurringChargeFrequency": "Hourly" + * RecurringChargeAmount: 0.006, + * RecurringChargeFrequency: "Hourly" * } * ], - * "ReservedDBInstanceArn": "arn:aws:rds:us-west-2:123456789012:ri:ri-2020-06-29-16-54-57-670", - * "ReservedDBInstanceId": "ri-2020-06-29-16-54-57-670", - * "ReservedDBInstancesOfferingId": "8ba30be1-b9ec-447f-8f23-6114e3f4c7b4", - * "StartTime": "2020-06-29T16:54:57.670Z", - * "State": "payment-pending", - * "UsagePrice": 0 + * ReservedDBInstanceArn: "arn:aws:rds:us-west-2:123456789012:ri:ri-2020-06-29-16-54-57-670", + * ReservedDBInstanceId: "ri-2020-06-29-16-54-57-670", + * ReservedDBInstancesOfferingId: "8ba30be1-b9ec-447f-8f23-6114e3f4c7b4", + * StartTime: "2020-06-29T16:54:57.670Z", + * State: "payment-pending", + * UsagePrice: 0 * } * } * *\/ - * // example id: to-purchase-a-reserved-db-instance-1680263732858 * ``` * + * @public */ export class PurchaseReservedDBInstancesOfferingCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/RebootDBClusterCommand.ts b/clients/client-rds/src/commands/RebootDBClusterCommand.ts index e88773ebfcc12..7363c41bd3f78 100644 --- a/clients/client-rds/src/commands/RebootDBClusterCommand.ts +++ b/clients/client-rds/src/commands/RebootDBClusterCommand.ts @@ -264,6 +264,7 @@ export interface RebootDBClusterCommandOutput extends RebootDBClusterResult, __M * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class RebootDBClusterCommand extends $Command diff --git a/clients/client-rds/src/commands/RebootDBInstanceCommand.ts b/clients/client-rds/src/commands/RebootDBInstanceCommand.ts index 771fdc2545da0..679e264fa6cb1 100644 --- a/clients/client-rds/src/commands/RebootDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/RebootDBInstanceCommand.ts @@ -296,34 +296,34 @@ export interface RebootDBInstanceCommandOutput extends RebootDBInstanceResult, _ * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To reboot a DB instance * ```javascript * // The following example starts a reboot of the specified DB instance. * const input = { - * "DBInstanceIdentifier": "test-mysql-instance" + * DBInstanceIdentifier: "test-mysql-instance" * }; * const command = new RebootDBInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstance": { - * "DBInstanceClass": "db.t3.micro", - * "DBInstanceIdentifier": "test-mysql-instance", - * "DBInstanceStatus": "rebooting", - * "Endpoint": { - * "Address": "test-mysql-instance.############.us-west-2.rds.amazonaws.com", - * "HostedZoneId": "Z1PVIF0EXAMPLE", - * "Port": 3306 + * DBInstance: { + * DBInstanceClass: "db.t3.micro", + * DBInstanceIdentifier: "test-mysql-instance", + * DBInstanceStatus: "rebooting", + * Endpoint: { + * Address: "test-mysql-instance.############.us-west-2.rds.amazonaws.com", + * HostedZoneId: "Z1PVIF0EXAMPLE", + * Port: 3306 * }, - * "Engine": "mysql", - * "MasterUsername": "admin" + * Engine: "mysql", + * MasterUsername: "admin" * } * } * *\/ - * // example id: to-reboot-a-db-instance-1680072870190 * ``` * + * @public */ export class RebootDBInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/RebootDBShardGroupCommand.ts b/clients/client-rds/src/commands/RebootDBShardGroupCommand.ts index 93dab03871417..045b118f33338 100644 --- a/clients/client-rds/src/commands/RebootDBShardGroupCommand.ts +++ b/clients/client-rds/src/commands/RebootDBShardGroupCommand.ts @@ -79,6 +79,7 @@ export interface RebootDBShardGroupCommandOutput extends DBShardGroup, __Metadat * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class RebootDBShardGroupCommand extends $Command diff --git a/clients/client-rds/src/commands/RegisterDBProxyTargetsCommand.ts b/clients/client-rds/src/commands/RegisterDBProxyTargetsCommand.ts index bc9bc322c68b1..5665adfcac775 100644 --- a/clients/client-rds/src/commands/RegisterDBProxyTargetsCommand.ts +++ b/clients/client-rds/src/commands/RegisterDBProxyTargetsCommand.ts @@ -108,6 +108,7 @@ export interface RegisterDBProxyTargetsCommandOutput extends RegisterDBProxyTarg * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class RegisterDBProxyTargetsCommand extends $Command diff --git a/clients/client-rds/src/commands/RemoveFromGlobalClusterCommand.ts b/clients/client-rds/src/commands/RemoveFromGlobalClusterCommand.ts index 1534870cad681..a5ba8dec43b06 100644 --- a/clients/client-rds/src/commands/RemoveFromGlobalClusterCommand.ts +++ b/clients/client-rds/src/commands/RemoveFromGlobalClusterCommand.ts @@ -106,48 +106,48 @@ export interface RemoveFromGlobalClusterCommandOutput extends RemoveFromGlobalCl * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To detach an Aurora secondary cluster from an Aurora global database cluster * ```javascript * // The following example detaches an Aurora secondary cluster from an Aurora global database cluster. The cluster changes from being read-only to a standalone cluster with read-write capability. * const input = { - * "DbClusterIdentifier": "arn:aws:rds:us-west-2:123456789012:cluster:DB-1", - * "GlobalClusterIdentifier": "myglobalcluster" + * DbClusterIdentifier: "arn:aws:rds:us-west-2:123456789012:cluster:DB-1", + * GlobalClusterIdentifier: "myglobalcluster" * }; * const command = new RemoveFromGlobalClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GlobalCluster": { - * "DeletionProtection": false, - * "Engine": "aurora-postgresql", - * "EngineVersion": "10.11", - * "GlobalClusterArn": "arn:aws:rds::123456789012:global-cluster:myglobalcluster", - * "GlobalClusterIdentifier": "myglobalcluster", - * "GlobalClusterMembers": [ + * GlobalCluster: { + * DeletionProtection: false, + * Engine: "aurora-postgresql", + * EngineVersion: "10.11", + * GlobalClusterArn: "arn:aws:rds::123456789012:global-cluster:myglobalcluster", + * GlobalClusterIdentifier: "myglobalcluster", + * GlobalClusterMembers: [ * { - * "DBClusterArn": "arn:aws:rds:us-east-1:123456789012:cluster:js-global-cluster", - * "IsWriter": true, - * "Readers": [ + * DBClusterArn: "arn:aws:rds:us-east-1:123456789012:cluster:js-global-cluster", + * IsWriter: true, + * Readers: [ * "arn:aws:rds:us-west-2:123456789012:cluster:DB-1" * ] * }, * { - * "DBClusterArn": "arn:aws:rds:us-west-2:123456789012:cluster:DB-1", - * "GlobalWriteForwardingStatus": "disabled", - * "IsWriter": false, - * "Readers": [] + * DBClusterArn: "arn:aws:rds:us-west-2:123456789012:cluster:DB-1", + * GlobalWriteForwardingStatus: "disabled", + * IsWriter: false, + * Readers: [] * } * ], - * "GlobalClusterResourceId": "cluster-abc123def456gh", - * "Status": "available", - * "StorageEncrypted": true + * GlobalClusterResourceId: "cluster-abc123def456gh", + * Status: "available", + * StorageEncrypted: true * } * } * *\/ - * // example id: to-detach-an-aurora-secondary-cluster-from-an-aurora-global-database-cluster-1680072605847 * ``` * + * @public */ export class RemoveFromGlobalClusterCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/RemoveRoleFromDBClusterCommand.ts b/clients/client-rds/src/commands/RemoveRoleFromDBClusterCommand.ts index b6a9ea8166128..6b2c6a49dd71d 100644 --- a/clients/client-rds/src/commands/RemoveRoleFromDBClusterCommand.ts +++ b/clients/client-rds/src/commands/RemoveRoleFromDBClusterCommand.ts @@ -73,19 +73,22 @@ export interface RemoveRoleFromDBClusterCommandOutput extends __MetadataBearer { * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To disassociate an Identity and Access Management (IAM) role from a DB cluster * ```javascript * // The following example removes a role from a DB cluster. * const input = { - * "DBClusterIdentifier": "mydbcluster", - * "RoleArn": "arn:aws:iam::123456789012:role/RDSLoadFromS3" + * DBClusterIdentifier: "mydbcluster", + * RoleArn: "arn:aws:iam::123456789012:role/RDSLoadFromS3" * }; * const command = new RemoveRoleFromDBClusterCommand(input); - * await client.send(command); - * // example id: to-disassociate-an-identity-and-access-management-iam-role-from-a-db-cluster-1680072359521 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RemoveRoleFromDBClusterCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/RemoveRoleFromDBInstanceCommand.ts b/clients/client-rds/src/commands/RemoveRoleFromDBInstanceCommand.ts index 2e2eb639dd852..6213974a01c92 100644 --- a/clients/client-rds/src/commands/RemoveRoleFromDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/RemoveRoleFromDBInstanceCommand.ts @@ -66,6 +66,7 @@ export interface RemoveRoleFromDBInstanceCommandOutput extends __MetadataBearer * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class RemoveRoleFromDBInstanceCommand extends $Command diff --git a/clients/client-rds/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts b/clients/client-rds/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts index 7b40dce60671c..a0f28c62a70ad 100644 --- a/clients/client-rds/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts +++ b/clients/client-rds/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts @@ -86,40 +86,40 @@ export interface RemoveSourceIdentifierFromSubscriptionCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To remove a source identifier from a subscription * ```javascript * // The following example removes the specified source identifier from an existing subscription. * const input = { - * "SourceIdentifier": "test-instance-repl", - * "SubscriptionName": "my-instance-events" + * SourceIdentifier: "test-instance-repl", + * SubscriptionName: "my-instance-events" * }; * const command = new RemoveSourceIdentifierFromSubscriptionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "EventSubscription": { - * "CustSubscriptionId": "my-instance-events", - * "CustomerAwsId": "123456789012", - * "Enabled": false, - * "EventCategoriesList": [ + * EventSubscription: { + * CustSubscriptionId: "my-instance-events", + * CustomerAwsId: "123456789012", + * Enabled: false, + * EventCategoriesList: [ * "backup", * "recovery" * ], - * "EventSubscriptionArn": "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", - * "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events", - * "SourceIdsList": [ + * EventSubscriptionArn: "arn:aws:rds:us-east-1:123456789012:es:my-instance-events", + * SnsTopicArn: "arn:aws:sns:us-east-1:123456789012:interesting-events", + * SourceIdsList: [ * "test-instance" * ], - * "SourceType": "db-instance", - * "Status": "modifying", - * "SubscriptionCreationTime": "Tue Jul 31 23:22:01 UTC 2018" + * SourceType: "db-instance", + * Status: "modifying", + * SubscriptionCreationTime: "Tue Jul 31 23:22:01 UTC 2018" * } * } * *\/ - * // example id: to-remove-a-source-identifier-from-a-subscription-1680072062459 * ``` * + * @public */ export class RemoveSourceIdentifierFromSubscriptionCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-rds/src/commands/RemoveTagsFromResourceCommand.ts index d3db8df126e83..84ca898d9bbce 100644 --- a/clients/client-rds/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-rds/src/commands/RemoveTagsFromResourceCommand.ts @@ -90,22 +90,25 @@ export interface RemoveTagsFromResourceCommandOutput extends __MetadataBearer {} * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To remove tags from a resource * ```javascript * // The following example removes tags from a resource. * const input = { - * "ResourceName": "arn:aws:rds:us-east-1:123456789012:db:mydbinstance", - * "TagKeys": [ + * ResourceName: "arn:aws:rds:us-east-1:123456789012:db:mydbinstance", + * TagKeys: [ * "Name", * "Environment" * ] * }; * const command = new RemoveTagsFromResourceCommand(input); - * await client.send(command); - * // example id: to-remove-tags-from-a-resource-1680070522922 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class RemoveTagsFromResourceCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ResetDBClusterParameterGroupCommand.ts b/clients/client-rds/src/commands/ResetDBClusterParameterGroupCommand.ts index 29e62f79fd0b0..c02b636b21cc1 100644 --- a/clients/client-rds/src/commands/ResetDBClusterParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/ResetDBClusterParameterGroupCommand.ts @@ -100,24 +100,24 @@ export interface ResetDBClusterParameterGroupCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To reset all parameters to their default values * ```javascript * // The following example resets all parameter values in a customer-created DB cluster parameter group to their default values. * const input = { - * "DBClusterParameterGroupName": "mydbclpg", - * "ResetAllParameters": true + * DBClusterParameterGroupName: "mydbclpg", + * ResetAllParameters: true * }; * const command = new ResetDBClusterParameterGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBClusterParameterGroupName": "mydbclpg" + * DBClusterParameterGroupName: "mydbclpg" * } * *\/ - * // example id: to-reset-all-parameters-to-their-default-values-1680070254216 * ``` * + * @public */ export class ResetDBClusterParameterGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/ResetDBParameterGroupCommand.ts b/clients/client-rds/src/commands/ResetDBParameterGroupCommand.ts index 0fa17f63d719e..c5202eb2b0b99 100644 --- a/clients/client-rds/src/commands/ResetDBParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/ResetDBParameterGroupCommand.ts @@ -90,24 +90,24 @@ export interface ResetDBParameterGroupCommandOutput extends DBParameterGroupName * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To reset all parameters to their default values * ```javascript * // The following example resets all parameter values in a customer-created DB parameter group to their default values. * const input = { - * "DBParameterGroupName": "mypg", - * "ResetAllParameters": true + * DBParameterGroupName: "mypg", + * ResetAllParameters: true * }; * const command = new ResetDBParameterGroupCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBParameterGroupName": "mypg" + * DBParameterGroupName: "mypg" * } * *\/ - * // example id: to-reset-all-parameters-to-their-default-values-1680069721142 * ``` * + * @public */ export class ResetDBParameterGroupCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/RestoreDBClusterFromS3Command.ts b/clients/client-rds/src/commands/RestoreDBClusterFromS3Command.ts index 7dcbd360e11ec..b0cc369d17e96 100644 --- a/clients/client-rds/src/commands/RestoreDBClusterFromS3Command.ts +++ b/clients/client-rds/src/commands/RestoreDBClusterFromS3Command.ts @@ -368,73 +368,73 @@ export interface RestoreDBClusterFromS3CommandOutput extends RestoreDBClusterFro * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To restore an Amazon Aurora DB cluster from Amazon S3 * ```javascript * // The following example restores an Amazon Aurora MySQL version 5.7-compatible DB cluster from a MySQL 5.7 DB backup file in Amazon S3. * const input = { - * "DBClusterIdentifier": "cluster-s3-restore", - * "Engine": "aurora-mysql", - * "MasterUserPassword": "mypassword", - * "MasterUsername": "admin", - * "S3BucketName": "mybucket", - * "S3IngestionRoleArn": "arn:aws:iam::123456789012:role/service-role/TestBackup", - * "S3Prefix": "test-backup", - * "SourceEngine": "mysql", - * "SourceEngineVersion": "5.7.28" + * DBClusterIdentifier: "cluster-s3-restore", + * Engine: "aurora-mysql", + * MasterUserPassword: "mypassword", + * MasterUsername: "admin", + * S3BucketName: "mybucket", + * S3IngestionRoleArn: "arn:aws:iam::123456789012:role/service-role/TestBackup", + * S3Prefix: "test-backup", + * SourceEngine: "mysql", + * SourceEngineVersion: "5.7.28" * }; * const command = new RestoreDBClusterFromS3Command(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBCluster": { - * "AllocatedStorage": 1, - * "AssociatedRoles": [], - * "AvailabilityZones": [ + * DBCluster: { + * AllocatedStorage: 1, + * AssociatedRoles: [], + * AvailabilityZones: [ * "us-west-2c", * "us-west-2a", * "us-west-2b" * ], - * "BackupRetentionPeriod": 1, - * "ClusterCreateTime": "2020-07-27T14:22:08.095Z", - * "CopyTagsToSnapshot": false, - * "CrossAccountClone": false, - * "DBClusterArn": "arn:aws:rds:us-west-2:123456789012:cluster:cluster-s3-restore", - * "DBClusterIdentifier": "cluster-s3-restore", - * "DBClusterMembers": [], - * "DBClusterParameterGroup": "default.aurora-mysql5.7", - * "DBSubnetGroup": "default", - * "DbClusterResourceId": "cluster-SU5THYQQHOWCXZZDGXREXAMPLE", - * "DeletionProtection": false, - * "DomainMemberships": [], - * "Endpoint": "cluster-s3-restore.cluster-co3xyzabc123.us-west-2.rds.amazonaws.com", - * "Engine": "aurora-mysql", - * "EngineMode": "provisioned", - * "EngineVersion": "5.7.12", - * "HostedZoneId": "Z1PVIF0EXAMPLE", - * "HttpEndpointEnabled": false, - * "IAMDatabaseAuthenticationEnabled": false, - * "MasterUsername": "admin", - * "MultiAZ": false, - * "Port": 3306, - * "PreferredBackupWindow": "11:15-11:45", - * "PreferredMaintenanceWindow": "thu:12:19-thu:12:49", - * "ReadReplicaIdentifiers": [], - * "ReaderEndpoint": "cluster-s3-restore.cluster-ro-co3xyzabc123.us-west-2.rds.amazonaws.com", - * "Status": "creating", - * "StorageEncrypted": false, - * "VpcSecurityGroups": [ + * BackupRetentionPeriod: 1, + * ClusterCreateTime: "2020-07-27T14:22:08.095Z", + * CopyTagsToSnapshot: false, + * CrossAccountClone: false, + * DBClusterArn: "arn:aws:rds:us-west-2:123456789012:cluster:cluster-s3-restore", + * DBClusterIdentifier: "cluster-s3-restore", + * DBClusterMembers: [], + * DBClusterParameterGroup: "default.aurora-mysql5.7", + * DBSubnetGroup: "default", + * DbClusterResourceId: "cluster-SU5THYQQHOWCXZZDGXREXAMPLE", + * DeletionProtection: false, + * DomainMemberships: [], + * Endpoint: "cluster-s3-restore.cluster-co3xyzabc123.us-west-2.rds.amazonaws.com", + * Engine: "aurora-mysql", + * EngineMode: "provisioned", + * EngineVersion: "5.7.12", + * HostedZoneId: "Z1PVIF0EXAMPLE", + * HttpEndpointEnabled: false, + * IAMDatabaseAuthenticationEnabled: false, + * MasterUsername: "admin", + * MultiAZ: false, + * Port: 3306, + * PreferredBackupWindow: "11:15-11:45", + * PreferredMaintenanceWindow: "thu:12:19-thu:12:49", + * ReadReplicaIdentifiers: [], + * ReaderEndpoint: "cluster-s3-restore.cluster-ro-co3xyzabc123.us-west-2.rds.amazonaws.com", + * Status: "creating", + * StorageEncrypted: false, + * VpcSecurityGroups: [ * { - * "Status": "active", - * "VpcSecurityGroupId": "sg-########" + * Status: "active", + * VpcSecurityGroupId: "sg-########" * } * ] * } * } * *\/ - * // example id: to-restore-an-amazon-aurora-db-cluster-from-amazon-s3-1680069516445 * ``` * + * @public */ export class RestoreDBClusterFromS3Command extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/RestoreDBClusterFromSnapshotCommand.ts b/clients/client-rds/src/commands/RestoreDBClusterFromSnapshotCommand.ts index 01b416bd2a719..d4e08a56b2680 100644 --- a/clients/client-rds/src/commands/RestoreDBClusterFromSnapshotCommand.ts +++ b/clients/client-rds/src/commands/RestoreDBClusterFromSnapshotCommand.ts @@ -396,70 +396,70 @@ export interface RestoreDBClusterFromSnapshotCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To restore a DB cluster from a snapshot * ```javascript * // The following example restores an Aurora PostgreSQL DB cluster compatible with PostgreSQL version 10.7 from a DB cluster snapshot named test-instance-snapshot. * const input = { - * "DBClusterIdentifier": "newdbcluster", - * "Engine": "aurora-postgresql", - * "EngineVersion": "10.7", - * "SnapshotIdentifier": "test-instance-snapshot" + * DBClusterIdentifier: "newdbcluster", + * Engine: "aurora-postgresql", + * EngineVersion: "10.7", + * SnapshotIdentifier: "test-instance-snapshot" * }; * const command = new RestoreDBClusterFromSnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBCluster": { - * "AllocatedStorage": 1, - * "AssociatedRoles": [], - * "AvailabilityZones": [ + * DBCluster: { + * AllocatedStorage: 1, + * AssociatedRoles: [], + * AvailabilityZones: [ * "us-west-2c", * "us-west-2a", * "us-west-2b" * ], - * "BackupRetentionPeriod": 7, - * "ClusterCreateTime": "2020-06-05T15:06:58.634Z", - * "CopyTagsToSnapshot": false, - * "CrossAccountClone": false, - * "DBClusterArn": "arn:aws:rds:us-west-2:123456789012:cluster:newdbcluster", - * "DBClusterIdentifier": "newdbcluster", - * "DBClusterMembers": [], - * "DBClusterParameterGroup": "default.aurora-postgresql10", - * "DBSubnetGroup": "default", - * "DatabaseName": "", - * "DbClusterResourceId": "cluster-5DSB5IFQDDUVAWOUWM1EXAMPLE", - * "DeletionProtection": false, - * "DomainMemberships": [], - * "Endpoint": "newdbcluster.cluster-############.us-west-2.rds.amazonaws.com", - * "Engine": "aurora-postgresql", - * "EngineMode": "provisioned", - * "EngineVersion": "10.7", - * "HostedZoneId": "Z1PVIF0EXAMPLE", - * "HttpEndpointEnabled": false, - * "IAMDatabaseAuthenticationEnabled": false, - * "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/287364e4-33e3-4755-a3b0-a1b2c3d4e5f6", - * "MasterUsername": "postgres", - * "MultiAZ": false, - * "Port": 5432, - * "PreferredBackupWindow": "09:33-10:03", - * "PreferredMaintenanceWindow": "sun:12:22-sun:12:52", - * "ReadReplicaIdentifiers": [], - * "ReaderEndpoint": "newdbcluster.cluster-ro-############.us-west-2.rds.amazonaws.com", - * "Status": "creating", - * "StorageEncrypted": true, - * "VpcSecurityGroups": [ + * BackupRetentionPeriod: 7, + * ClusterCreateTime: "2020-06-05T15:06:58.634Z", + * CopyTagsToSnapshot: false, + * CrossAccountClone: false, + * DBClusterArn: "arn:aws:rds:us-west-2:123456789012:cluster:newdbcluster", + * DBClusterIdentifier: "newdbcluster", + * DBClusterMembers: [], + * DBClusterParameterGroup: "default.aurora-postgresql10", + * DBSubnetGroup: "default", + * DatabaseName: "", + * DbClusterResourceId: "cluster-5DSB5IFQDDUVAWOUWM1EXAMPLE", + * DeletionProtection: false, + * DomainMemberships: [], + * Endpoint: "newdbcluster.cluster-############.us-west-2.rds.amazonaws.com", + * Engine: "aurora-postgresql", + * EngineMode: "provisioned", + * EngineVersion: "10.7", + * HostedZoneId: "Z1PVIF0EXAMPLE", + * HttpEndpointEnabled: false, + * IAMDatabaseAuthenticationEnabled: false, + * KmsKeyId: "arn:aws:kms:us-west-2:123456789012:key/287364e4-33e3-4755-a3b0-a1b2c3d4e5f6", + * MasterUsername: "postgres", + * MultiAZ: false, + * Port: 5432, + * PreferredBackupWindow: "09:33-10:03", + * PreferredMaintenanceWindow: "sun:12:22-sun:12:52", + * ReadReplicaIdentifiers: [], + * ReaderEndpoint: "newdbcluster.cluster-ro-############.us-west-2.rds.amazonaws.com", + * Status: "creating", + * StorageEncrypted: true, + * VpcSecurityGroups: [ * { - * "Status": "active", - * "VpcSecurityGroupId": "sg-########" + * Status: "active", + * VpcSecurityGroupId: "sg-########" * } * ] * } * } * *\/ - * // example id: to-restore-a-db-cluster-from-a-snapshot-1680069287853 * ``` * + * @public */ export class RestoreDBClusterFromSnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/RestoreDBClusterToPointInTimeCommand.ts b/clients/client-rds/src/commands/RestoreDBClusterToPointInTimeCommand.ts index 72a4fa16cbdf8..a39ddbb4f30b7 100644 --- a/clients/client-rds/src/commands/RestoreDBClusterToPointInTimeCommand.ts +++ b/clients/client-rds/src/commands/RestoreDBClusterToPointInTimeCommand.ts @@ -401,70 +401,70 @@ export interface RestoreDBClusterToPointInTimeCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To restore a DB cluster to a specified time * ```javascript * // The following example restores the DB cluster named database-4 to the latest possible time. Using copy-on-write as the restore type restores the new DB cluster as a clone of the source DB cluster. * const input = { - * "DBClusterIdentifier": "sample-cluster-clone", - * "RestoreType": "copy-on-write", - * "SourceDBClusterIdentifier": "database-4", - * "UseLatestRestorableTime": true + * DBClusterIdentifier: "sample-cluster-clone", + * RestoreType: "copy-on-write", + * SourceDBClusterIdentifier: "database-4", + * UseLatestRestorableTime: true * }; * const command = new RestoreDBClusterToPointInTimeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBCluster": { - * "AllocatedStorage": 1, - * "AssociatedRoles": [], - * "AvailabilityZones": [ + * DBCluster: { + * AllocatedStorage: 1, + * AssociatedRoles: [], + * AvailabilityZones: [ * "us-west-2c", * "us-west-2a", * "us-west-2b" * ], - * "BackupRetentionPeriod": 7, - * "CloneGroupId": "8d19331a-099a-45a4-b4aa-11aa22bb33cc44dd", - * "ClusterCreateTime": "2020-03-10T19:57:38.967Z", - * "CopyTagsToSnapshot": false, - * "CrossAccountClone": false, - * "DBClusterArn": "arn:aws:rds:us-west-2:123456789012:cluster:sample-cluster-clone", - * "DBClusterIdentifier": "sample-cluster-clone", - * "DBClusterMembers": [], - * "DBClusterParameterGroup": "default.aurora-postgresql10", - * "DBSubnetGroup": "default", - * "DatabaseName": "", - * "DbClusterResourceId": "cluster-BIZ77GDSA2XBSTNPFW1EXAMPLE", - * "DeletionProtection": false, - * "Endpoint": "sample-cluster-clone.cluster-############.us-west-2.rds.amazonaws.com", - * "Engine": "aurora-postgresql", - * "EngineMode": "provisioned", - * "EngineVersion": "10.7", - * "HostedZoneId": "Z1PVIF0EXAMPLE", - * "HttpEndpointEnabled": false, - * "IAMDatabaseAuthenticationEnabled": false, - * "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/287364e4-33e3-4755-a3b0-a1b2c3d4e5f6", - * "MasterUsername": "postgres", - * "MultiAZ": false, - * "Port": 5432, - * "PreferredBackupWindow": "09:33-10:03", - * "PreferredMaintenanceWindow": "sun:12:22-sun:12:52", - * "ReadReplicaIdentifiers": [], - * "ReaderEndpoint": "sample-cluster-clone.cluster-ro-############.us-west-2.rds.amazonaws.com", - * "Status": "creating", - * "StorageEncrypted": true, - * "VpcSecurityGroups": [ + * BackupRetentionPeriod: 7, + * CloneGroupId: "8d19331a-099a-45a4-b4aa-11aa22bb33cc44dd", + * ClusterCreateTime: "2020-03-10T19:57:38.967Z", + * CopyTagsToSnapshot: false, + * CrossAccountClone: false, + * DBClusterArn: "arn:aws:rds:us-west-2:123456789012:cluster:sample-cluster-clone", + * DBClusterIdentifier: "sample-cluster-clone", + * DBClusterMembers: [], + * DBClusterParameterGroup: "default.aurora-postgresql10", + * DBSubnetGroup: "default", + * DatabaseName: "", + * DbClusterResourceId: "cluster-BIZ77GDSA2XBSTNPFW1EXAMPLE", + * DeletionProtection: false, + * Endpoint: "sample-cluster-clone.cluster-############.us-west-2.rds.amazonaws.com", + * Engine: "aurora-postgresql", + * EngineMode: "provisioned", + * EngineVersion: "10.7", + * HostedZoneId: "Z1PVIF0EXAMPLE", + * HttpEndpointEnabled: false, + * IAMDatabaseAuthenticationEnabled: false, + * KmsKeyId: "arn:aws:kms:us-west-2:123456789012:key/287364e4-33e3-4755-a3b0-a1b2c3d4e5f6", + * MasterUsername: "postgres", + * MultiAZ: false, + * Port: 5432, + * PreferredBackupWindow: "09:33-10:03", + * PreferredMaintenanceWindow: "sun:12:22-sun:12:52", + * ReadReplicaIdentifiers: [], + * ReaderEndpoint: "sample-cluster-clone.cluster-ro-############.us-west-2.rds.amazonaws.com", + * Status: "creating", + * StorageEncrypted: true, + * VpcSecurityGroups: [ * { - * "Status": "active", - * "VpcSecurityGroupId": "sg-########" + * Status: "active", + * VpcSecurityGroupId: "sg-########" * } * ] * } * } * *\/ - * // example id: to-restore-a-db-cluster-to-a-specified-time-1680069105508 * ``` * + * @public */ export class RestoreDBClusterToPointInTimeCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/RestoreDBInstanceFromDBSnapshotCommand.ts b/clients/client-rds/src/commands/RestoreDBInstanceFromDBSnapshotCommand.ts index 6cf3d0123b3fc..bf6d3fcefeec0 100644 --- a/clients/client-rds/src/commands/RestoreDBInstanceFromDBSnapshotCommand.ts +++ b/clients/client-rds/src/commands/RestoreDBInstanceFromDBSnapshotCommand.ts @@ -445,42 +445,42 @@ export interface RestoreDBInstanceFromDBSnapshotCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To restore a DB instance from a DB snapshot * ```javascript * // The following example creates a new DB instance named db7-new-instance with the db.t3.small DB instance class from the specified DB snapshot. The source DB instance from which the snapshot was taken uses a deprecated DB instance class, so you can't upgrade it. * const input = { - * "DBInstanceClass": "db.t3.small", - * "DBInstanceIdentifier": "db7-new-instance", - * "DBSnapshotIdentifier": "db7-test-snapshot" + * DBInstanceClass: "db.t3.small", + * DBInstanceIdentifier: "db7-new-instance", + * DBSnapshotIdentifier: "db7-test-snapshot" * }; * const command = new RestoreDBInstanceFromDBSnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstance": { - * "AssociatedRoles": [], - * "AutoMinorVersionUpgrade": true, - * "DBInstanceArn": "arn:aws:rds:us-west-2:123456789012:db:db7-new-instance", - * "DBInstanceClass": "db.t3.small", - * "DBInstanceIdentifier": "db7-new-instance", - * "DBInstanceStatus": "creating", - * "DeletionProtection": false, - * "Engine": "mysql", - * "EngineVersion": "5.7.22", - * "IAMDatabaseAuthenticationEnabled": false, - * "LicenseModel": "general-public-license", - * "MultiAZ": false, - * "PendingModifiedValues": {}, - * "PerformanceInsightsEnabled": false, - * "PreferredMaintenanceWindow": "mon:07:37-mon:08:07", - * "ReadReplicaDBInstanceIdentifiers": [] + * DBInstance: { + * AssociatedRoles: [], + * AutoMinorVersionUpgrade: true, + * DBInstanceArn: "arn:aws:rds:us-west-2:123456789012:db:db7-new-instance", + * DBInstanceClass: "db.t3.small", + * DBInstanceIdentifier: "db7-new-instance", + * DBInstanceStatus: "creating", + * DeletionProtection: false, + * Engine: "mysql", + * EngineVersion: "5.7.22", + * IAMDatabaseAuthenticationEnabled: false, + * LicenseModel: "general-public-license", + * MultiAZ: false, + * PendingModifiedValues: { /* empty *\/ }, + * PerformanceInsightsEnabled: false, + * PreferredMaintenanceWindow: "mon:07:37-mon:08:07", + * ReadReplicaDBInstanceIdentifiers: [] * } * } * *\/ - * // example id: to-restore-a-db-instance-from-a-db-snapshot-1680093236214 * ``` * + * @public */ export class RestoreDBInstanceFromDBSnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/RestoreDBInstanceFromS3Command.ts b/clients/client-rds/src/commands/RestoreDBInstanceFromS3Command.ts index d7c275003d614..46d1be6bd12fc 100644 --- a/clients/client-rds/src/commands/RestoreDBInstanceFromS3Command.ts +++ b/clients/client-rds/src/commands/RestoreDBInstanceFromS3Command.ts @@ -424,6 +424,7 @@ export interface RestoreDBInstanceFromS3CommandOutput extends RestoreDBInstanceF * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class RestoreDBInstanceFromS3Command extends $Command diff --git a/clients/client-rds/src/commands/RestoreDBInstanceToPointInTimeCommand.ts b/clients/client-rds/src/commands/RestoreDBInstanceToPointInTimeCommand.ts index 4be273730c21a..74946e206b464 100644 --- a/clients/client-rds/src/commands/RestoreDBInstanceToPointInTimeCommand.ts +++ b/clients/client-rds/src/commands/RestoreDBInstanceToPointInTimeCommand.ts @@ -447,101 +447,101 @@ export interface RestoreDBInstanceToPointInTimeCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To restore a DB instance to a point in time * ```javascript * // The following example restores test-instance to a new DB instance named restored-test-instance, as of the specified time. * const input = { - * "RestoreTime": "2018-07-30T23:45:00.000Z", - * "SourceDBInstanceIdentifier": "test-instance", - * "TargetDBInstanceIdentifier": "restored-test-instance" + * RestoreTime: "2018-07-30T23:45:00.000Z", + * SourceDBInstanceIdentifier: "test-instance", + * TargetDBInstanceIdentifier: "restored-test-instance" * }; * const command = new RestoreDBInstanceToPointInTimeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstance": { - * "AllocatedStorage": 200, - * "AutoMinorVersionUpgrade": true, - * "AvailabilityZone": "us-west-2b", - * "BackupRetentionPeriod": 7, - * "CACertificateIdentifier": "rds-ca-2015", - * "CopyTagsToSnapshot": false, - * "DBInstanceArn": "arn:aws:rds:us-west-2:123456789012:db:restored-test-instance", - * "DBInstanceClass": "db.t2.small", - * "DBInstanceIdentifier": "restored-test-instance", - * "DBInstanceStatus": "available", - * "DBName": "sample", - * "DBParameterGroups": [ + * DBInstance: { + * AllocatedStorage: 200, + * AutoMinorVersionUpgrade: true, + * AvailabilityZone: "us-west-2b", + * BackupRetentionPeriod: 7, + * CACertificateIdentifier: "rds-ca-2015", + * CopyTagsToSnapshot: false, + * DBInstanceArn: "arn:aws:rds:us-west-2:123456789012:db:restored-test-instance", + * DBInstanceClass: "db.t2.small", + * DBInstanceIdentifier: "restored-test-instance", + * DBInstanceStatus: "available", + * DBName: "sample", + * DBParameterGroups: [ * { - * "DBParameterGroupName": "default.mysql5.6", - * "ParameterApplyStatus": "in-sync" + * DBParameterGroupName: "default.mysql5.6", + * ParameterApplyStatus: "in-sync" * } * ], - * "DBSecurityGroups": [], - * "DBSubnetGroup": { - * "DBSubnetGroupDescription": "default", - * "DBSubnetGroupName": "default", - * "SubnetGroupStatus": "Complete", - * "Subnets": [ + * DBSecurityGroups: [], + * DBSubnetGroup: { + * DBSubnetGroupDescription: "default", + * DBSubnetGroupName: "default", + * SubnetGroupStatus: "Complete", + * Subnets: [ * { - * "SubnetAvailabilityZone": { - * "Name": "us-west-2a" + * SubnetAvailabilityZone: { + * Name: "us-west-2a" * }, - * "SubnetIdentifier": "subnet-77e8db03", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-77e8db03", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-west-2b" + * SubnetAvailabilityZone: { + * Name: "us-west-2b" * }, - * "SubnetIdentifier": "subnet-c39989a1", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-c39989a1", + * SubnetStatus: "Active" * }, * { - * "SubnetAvailabilityZone": { - * "Name": "us-west-2c" + * SubnetAvailabilityZone: { + * Name: "us-west-2c" * }, - * "SubnetIdentifier": "subnet-4b267b0d", - * "SubnetStatus": "Active" + * SubnetIdentifier: "subnet-4b267b0d", + * SubnetStatus: "Active" * } * ], - * "VpcId": "vpc-c1c5b3a3" + * VpcId: "vpc-c1c5b3a3" * }, - * "DbInstancePort": 0, - * "DbiResourceId": "db-VNZUCCBTEDC4WR7THXNJO72HVQ", - * "DomainMemberships": [], - * "Engine": "mysql", - * "EngineVersion": "5.6.27", - * "LicenseModel": "general-public-license", - * "MasterUsername": "mymasteruser", - * "MonitoringInterval": 0, - * "MultiAZ": false, - * "OptionGroupMemberships": [ + * DbInstancePort: 0, + * DbiResourceId: "db-VNZUCCBTEDC4WR7THXNJO72HVQ", + * DomainMemberships: [], + * Engine: "mysql", + * EngineVersion: "5.6.27", + * LicenseModel: "general-public-license", + * MasterUsername: "mymasteruser", + * MonitoringInterval: 0, + * MultiAZ: false, + * OptionGroupMemberships: [ * { - * "OptionGroupName": "default:mysql-5-6", - * "Status": "in-sync" + * OptionGroupName: "default:mysql-5-6", + * Status: "in-sync" * } * ], - * "PendingModifiedValues": {}, - * "PreferredBackupWindow": "12:58-13:28", - * "PreferredMaintenanceWindow": "tue:10:16-tue:10:46", - * "PubliclyAccessible": true, - * "ReadReplicaDBInstanceIdentifiers": [], - * "StorageEncrypted": false, - * "StorageType": "gp2", - * "VpcSecurityGroups": [ + * PendingModifiedValues: { /* empty *\/ }, + * PreferredBackupWindow: "12:58-13:28", + * PreferredMaintenanceWindow: "tue:10:16-tue:10:46", + * PubliclyAccessible: true, + * ReadReplicaDBInstanceIdentifiers: [], + * StorageEncrypted: false, + * StorageType: "gp2", + * VpcSecurityGroups: [ * { - * "Status": "active", - * "VpcSecurityGroupId": "sg-e5e5b0d2" + * Status: "active", + * VpcSecurityGroupId: "sg-e5e5b0d2" * } * ] * } * } * *\/ - * // example id: to-restore-a-db-instance-to-a-point-in-time-1680036021951 * ``` * + * @public */ export class RestoreDBInstanceToPointInTimeCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/RevokeDBSecurityGroupIngressCommand.ts b/clients/client-rds/src/commands/RevokeDBSecurityGroupIngressCommand.ts index 2686ac6284974..8c87eb514fa24 100644 --- a/clients/client-rds/src/commands/RevokeDBSecurityGroupIngressCommand.ts +++ b/clients/client-rds/src/commands/RevokeDBSecurityGroupIngressCommand.ts @@ -103,24 +103,24 @@ export interface RevokeDBSecurityGroupIngressCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To revoke ingress for a DB security group * ```javascript * // This example revokes ingress for the specified CIDR block associated with the specified DB security group. * const input = { - * "CIDRIP": "203.0.113.5/32", - * "DBSecurityGroupName": "mydbsecuritygroup" + * CIDRIP: "203.0.113.5/32", + * DBSecurityGroupName: "mydbsecuritygroup" * }; * const command = new RevokeDBSecurityGroupIngressCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBSecurityGroup": {} + * DBSecurityGroup: { /* empty *\/ } * } * *\/ - * // example id: revoke-db-security-group-ingress-ce5b2c1c-bd4e-4809-b04a-6d78ec448813 * ``` * + * @public */ export class RevokeDBSecurityGroupIngressCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/StartActivityStreamCommand.ts b/clients/client-rds/src/commands/StartActivityStreamCommand.ts index 9a9adb5f8d73e..b374b26f127a9 100644 --- a/clients/client-rds/src/commands/StartActivityStreamCommand.ts +++ b/clients/client-rds/src/commands/StartActivityStreamCommand.ts @@ -91,30 +91,30 @@ export interface StartActivityStreamCommandOutput extends StartActivityStreamRes * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To start a database activity stream * ```javascript * // The following example starts an asynchronous activity stream to monitor an Aurora cluster named my-pg-cluster. * const input = { - * "ApplyImmediately": true, - * "KmsKeyId": "arn:aws:kms:us-east-1:1234567890123:key/a12c345d-6ef7-890g-h123-456i789jk0l1", - * "Mode": "async", - * "ResourceArn": "arn:aws:rds:us-east-1:1234567890123:cluster:my-pg-cluster" + * ApplyImmediately: true, + * KmsKeyId: "arn:aws:kms:us-east-1:1234567890123:key/a12c345d-6ef7-890g-h123-456i789jk0l1", + * Mode: "async", + * ResourceArn: "arn:aws:rds:us-east-1:1234567890123:cluster:my-pg-cluster" * }; * const command = new StartActivityStreamCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ApplyImmediately": true, - * "KinesisStreamName": "aws-rds-das-cluster-0ABCDEFGHI1JKLM2NOPQ3R4S", - * "KmsKeyId": "arn:aws:kms:us-east-1:1234567890123:key/a12c345d-6ef7-890g-h123-456i789jk0l1", - * "Mode": "async", - * "Status": "starting" + * ApplyImmediately: true, + * KinesisStreamName: "aws-rds-das-cluster-0ABCDEFGHI1JKLM2NOPQ3R4S", + * KmsKeyId: "arn:aws:kms:us-east-1:1234567890123:key/a12c345d-6ef7-890g-h123-456i789jk0l1", + * Mode: "async", + * Status: "starting" * } * *\/ - * // example id: to-start-a-database-activity-stream-1680035656463 * ``` * + * @public */ export class StartActivityStreamCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/StartDBClusterCommand.ts b/clients/client-rds/src/commands/StartDBClusterCommand.ts index 4fc1dc1ca6163..b159b67a6a101 100644 --- a/clients/client-rds/src/commands/StartDBClusterCommand.ts +++ b/clients/client-rds/src/commands/StartDBClusterCommand.ts @@ -261,33 +261,33 @@ export interface StartDBClusterCommandOutput extends StartDBClusterResult, __Met * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To start a DB cluster * ```javascript * // The following example starts a DB cluster and its DB instances. * const input = { - * "DBClusterIdentifier": "mydbcluster" + * DBClusterIdentifier: "mydbcluster" * }; * const command = new StartDBClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBCluster": { - * "AllocatedStorage": 1, - * "AvailabilityZones": [ + * DBCluster: { + * AllocatedStorage: 1, + * AvailabilityZones: [ * "us-east-1a", * "us-east-1e", * "us-east-1b" * ], - * "BackupRetentionPeriod": 1, - * "DBClusterIdentifier": "mydbcluster", - * "DatabaseName": "mydb" + * BackupRetentionPeriod: 1, + * DBClusterIdentifier: "mydbcluster", + * DatabaseName: "mydb" * } * } * *\/ - * // example id: to-start-a-db-cluster-1680035521632 * ``` * + * @public */ export class StartDBClusterCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/StartDBInstanceAutomatedBackupsReplicationCommand.ts b/clients/client-rds/src/commands/StartDBInstanceAutomatedBackupsReplicationCommand.ts index 49d047568ecca..bc16b4f03b778 100644 --- a/clients/client-rds/src/commands/StartDBInstanceAutomatedBackupsReplicationCommand.ts +++ b/clients/client-rds/src/commands/StartDBInstanceAutomatedBackupsReplicationCommand.ts @@ -129,44 +129,44 @@ export interface StartDBInstanceAutomatedBackupsReplicationCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To enable cross-Region automated backups * ```javascript * // The following example replicates automated backups from a DB instance in the US East (N. Virginia) Region. The backup retention period is 14 days. * const input = { - * "BackupRetentionPeriod": 14, - * "SourceDBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db" + * BackupRetentionPeriod: 14, + * SourceDBInstanceArn: "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db" * }; * const command = new StartDBInstanceAutomatedBackupsReplicationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstanceAutomatedBackup": { - * "AllocatedStorage": 20, - * "BackupRetentionPeriod": 14, - * "DBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db", - * "DBInstanceAutomatedBackupsArn": "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example", - * "DBInstanceIdentifier": "new-orcl-db", - * "DbiResourceId": "db-JKIB2GFQ5RV7REPLZA4EXAMPLE", - * "Encrypted": false, - * "Engine": "oracle-se2", - * "EngineVersion": "12.1.0.2.v21", - * "IAMDatabaseAuthenticationEnabled": false, - * "InstanceCreateTime": "2020-12-04T15:28:31Z", - * "LicenseModel": "bring-your-own-license", - * "MasterUsername": "admin", - * "OptionGroupName": "default:oracle-se2-12-1", - * "Port": 1521, - * "Region": "us-east-1", - * "RestoreWindow": {}, - * "Status": "pending", - * "StorageType": "gp2" + * DBInstanceAutomatedBackup: { + * AllocatedStorage: 20, + * BackupRetentionPeriod: 14, + * DBInstanceArn: "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db", + * DBInstanceAutomatedBackupsArn: "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example", + * DBInstanceIdentifier: "new-orcl-db", + * DbiResourceId: "db-JKIB2GFQ5RV7REPLZA4EXAMPLE", + * Encrypted: false, + * Engine: "oracle-se2", + * EngineVersion: "12.1.0.2.v21", + * IAMDatabaseAuthenticationEnabled: false, + * InstanceCreateTime: "2020-12-04T15:28:31Z", + * LicenseModel: "bring-your-own-license", + * MasterUsername: "admin", + * OptionGroupName: "default:oracle-se2-12-1", + * Port: 1521, + * Region: "us-east-1", + * RestoreWindow: { /* empty *\/ }, + * Status: "pending", + * StorageType: "gp2" * } * } * *\/ - * // example id: to-enable-cross-region-automated-backups-1680033438352 * ``` * + * @public */ export class StartDBInstanceAutomatedBackupsReplicationCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/StartDBInstanceCommand.ts b/clients/client-rds/src/commands/StartDBInstanceCommand.ts index b71708f03a3a9..b0a2f737a9daf 100644 --- a/clients/client-rds/src/commands/StartDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/StartDBInstanceCommand.ts @@ -329,25 +329,25 @@ export interface StartDBInstanceCommandOutput extends StartDBInstanceResult, __M * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To start a DB instance * ```javascript * // The following example starts the specified DB instance. * const input = { - * "DBInstanceIdentifier": "test-instance" + * DBInstanceIdentifier: "test-instance" * }; * const command = new StartDBInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstance": { - * "DBInstanceStatus": "starting" + * DBInstance: { + * DBInstanceStatus: "starting" * } * } * *\/ - * // example id: to-start-a-db-instance-1679951967681 * ``` * + * @public */ export class StartDBInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/StartExportTaskCommand.ts b/clients/client-rds/src/commands/StartExportTaskCommand.ts index 25819fc133dae..a666787049fef 100644 --- a/clients/client-rds/src/commands/StartExportTaskCommand.ts +++ b/clients/client-rds/src/commands/StartExportTaskCommand.ts @@ -127,35 +127,35 @@ export interface StartExportTaskCommandOutput extends ExportTask, __MetadataBear * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To export a snapshot to Amazon S3 * ```javascript * // The following example exports a DB snapshot named db5-snapshot-test to the Amazon S3 bucket named mybucket. * const input = { - * "ExportTaskIdentifier": "my-s3-export", - * "IamRoleArn": "arn:aws:iam::123456789012:role/service-role/ExportRole", - * "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff", - * "S3BucketName": "mybucket", - * "SourceArn": "arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-test" + * ExportTaskIdentifier: "my-s3-export", + * IamRoleArn: "arn:aws:iam::123456789012:role/service-role/ExportRole", + * KmsKeyId: "arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff", + * S3BucketName: "mybucket", + * SourceArn: "arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-test" * }; * const command = new StartExportTaskCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ExportTaskIdentifier": "my-s3-export", - * "IamRoleArn": "arn:aws:iam::123456789012:role/service-role/ExportRole", - * "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff", - * "PercentProgress": 0, - * "S3Bucket": "mybucket", - * "SnapshotTime": "2020-03-27T20:48:42.023Z", - * "SourceArn": "arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-test", - * "Status": "STARTING", - * "TotalExtractedDataInGB": 0 + * ExportTaskIdentifier: "my-s3-export", + * IamRoleArn: "arn:aws:iam::123456789012:role/service-role/ExportRole", + * KmsKeyId: "arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff", + * PercentProgress: 0, + * S3Bucket: "mybucket", + * SnapshotTime: "2020-03-27T20:48:42.023Z", + * SourceArn: "arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-test", + * Status: "STARTING", + * TotalExtractedDataInGB: 0 * } * *\/ - * // example id: to-export-a-snapshot-to-amazon-s3-1679950669718 * ``` * + * @public */ export class StartExportTaskCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/StopActivityStreamCommand.ts b/clients/client-rds/src/commands/StopActivityStreamCommand.ts index b5368bb1ebadd..606f6adf0fdff 100644 --- a/clients/client-rds/src/commands/StopActivityStreamCommand.ts +++ b/clients/client-rds/src/commands/StopActivityStreamCommand.ts @@ -83,26 +83,26 @@ export interface StopActivityStreamCommandOutput extends StopActivityStreamRespo * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To stop a database activity stream * ```javascript * // The following example stops an activity stream in an Aurora cluster named my-pg-cluster. * const input = { - * "ApplyImmediately": true, - * "ResourceArn": "arn:aws:rds:us-east-1:1234567890123:cluster:my-pg-cluster" + * ApplyImmediately: true, + * ResourceArn: "arn:aws:rds:us-east-1:1234567890123:cluster:my-pg-cluster" * }; * const command = new StopActivityStreamCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "KinesisStreamName": "aws-rds-das-cluster-0ABCDEFGHI1JKLM2NOPQ3R4S", - * "KmsKeyId": "arn:aws:kms:us-east-1:1234567890123:key/a12c345d-6ef7-890g-h123-456i789jk0l1", - * "Status": "stopping" + * KinesisStreamName: "aws-rds-das-cluster-0ABCDEFGHI1JKLM2NOPQ3R4S", + * KmsKeyId: "arn:aws:kms:us-east-1:1234567890123:key/a12c345d-6ef7-890g-h123-456i789jk0l1", + * Status: "stopping" * } * *\/ - * // example id: to-stop-a-database-activity-stream-1679945843823 * ``` * + * @public */ export class StopActivityStreamCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/StopDBClusterCommand.ts b/clients/client-rds/src/commands/StopDBClusterCommand.ts index 93b827b29e42d..7452c0b228258 100644 --- a/clients/client-rds/src/commands/StopDBClusterCommand.ts +++ b/clients/client-rds/src/commands/StopDBClusterCommand.ts @@ -262,33 +262,33 @@ export interface StopDBClusterCommandOutput extends StopDBClusterResult, __Metad * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To stop a DB cluster * ```javascript * // The following example stops a DB cluster and its DB instances. * const input = { - * "DBClusterIdentifier": "mydbcluster" + * DBClusterIdentifier: "mydbcluster" * }; * const command = new StopDBClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBCluster": { - * "AllocatedStorage": 1, - * "AvailabilityZones": [ + * DBCluster: { + * AllocatedStorage: 1, + * AvailabilityZones: [ * "us-east-1a", * "us-east-1e", * "us-east-1b" * ], - * "BackupRetentionPeriod": 1, - * "DBClusterIdentifier": "mydbcluster", - * "DatabaseName": "mydb" + * BackupRetentionPeriod: 1, + * DBClusterIdentifier: "mydbcluster", + * DatabaseName: "mydb" * } * } * *\/ - * // example id: to-stop-a-db-cluster-1679701988603 * ``` * + * @public */ export class StopDBClusterCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/StopDBInstanceAutomatedBackupsReplicationCommand.ts b/clients/client-rds/src/commands/StopDBInstanceAutomatedBackupsReplicationCommand.ts index 1df24171bb9f9..a0b5781985f31 100644 --- a/clients/client-rds/src/commands/StopDBInstanceAutomatedBackupsReplicationCommand.ts +++ b/clients/client-rds/src/commands/StopDBInstanceAutomatedBackupsReplicationCommand.ts @@ -114,46 +114,46 @@ export interface StopDBInstanceAutomatedBackupsReplicationCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To stop replicating automated backups * ```javascript * // The following example ends replication of automated backups. Replicated backups are retained according to the set backup retention period. * const input = { - * "SourceDBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db" + * SourceDBInstanceArn: "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db" * }; * const command = new StopDBInstanceAutomatedBackupsReplicationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstanceAutomatedBackup": { - * "AllocatedStorage": 20, - * "BackupRetentionPeriod": 7, - * "DBInstanceArn": "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db", - * "DBInstanceAutomatedBackupsArn": "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example", - * "DBInstanceIdentifier": "new-orcl-db", - * "DbiResourceId": "db-JKIB2GFQ5RV7REPLZA4EXAMPLE", - * "Encrypted": false, - * "Engine": "oracle-se2", - * "EngineVersion": "12.1.0.2.v21", - * "IAMDatabaseAuthenticationEnabled": false, - * "InstanceCreateTime": "2020-12-04T15:28:31Z", - * "LicenseModel": "bring-your-own-license", - * "MasterUsername": "admin", - * "OptionGroupName": "default:oracle-se2-12-1", - * "Port": 1521, - * "Region": "us-east-1", - * "RestoreWindow": { - * "EarliestTime": "2020-12-04T23:13:21.030Z", - * "LatestTime": "2020-12-07T19:59:57Z" + * DBInstanceAutomatedBackup: { + * AllocatedStorage: 20, + * BackupRetentionPeriod: 7, + * DBInstanceArn: "arn:aws:rds:us-east-1:123456789012:db:new-orcl-db", + * DBInstanceAutomatedBackupsArn: "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example", + * DBInstanceIdentifier: "new-orcl-db", + * DbiResourceId: "db-JKIB2GFQ5RV7REPLZA4EXAMPLE", + * Encrypted: false, + * Engine: "oracle-se2", + * EngineVersion: "12.1.0.2.v21", + * IAMDatabaseAuthenticationEnabled: false, + * InstanceCreateTime: "2020-12-04T15:28:31Z", + * LicenseModel: "bring-your-own-license", + * MasterUsername: "admin", + * OptionGroupName: "default:oracle-se2-12-1", + * Port: 1521, + * Region: "us-east-1", + * RestoreWindow: { + * EarliestTime: "2020-12-04T23:13:21.030Z", + * LatestTime: "2020-12-07T19:59:57Z" * }, - * "Status": "replicating", - * "StorageType": "gp2" + * Status: "replicating", + * StorageType: "gp2" * } * } * *\/ - * // example id: to-stop-replicating-automated-backups-1679701787115 * ``` * + * @public */ export class StopDBInstanceAutomatedBackupsReplicationCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/StopDBInstanceCommand.ts b/clients/client-rds/src/commands/StopDBInstanceCommand.ts index edacff046748f..a60ebb36ac42c 100644 --- a/clients/client-rds/src/commands/StopDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/StopDBInstanceCommand.ts @@ -310,25 +310,25 @@ export interface StopDBInstanceCommandOutput extends StopDBInstanceResult, __Met * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public + * * @example To stop a DB instance * ```javascript * // The following example stops the specified DB instance. * const input = { - * "DBInstanceIdentifier": "test-instance" + * DBInstanceIdentifier: "test-instance" * }; * const command = new StopDBInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DBInstance": { - * "DBInstanceStatus": "stopping" + * DBInstance: { + * DBInstanceStatus: "stopping" * } * } * *\/ - * // example id: to-stop-a-db-instance-1679701630959 * ``` * + * @public */ export class StopDBInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/SwitchoverBlueGreenDeploymentCommand.ts b/clients/client-rds/src/commands/SwitchoverBlueGreenDeploymentCommand.ts index 96f3977c72e7c..f4c6e6b7ddde5 100644 --- a/clients/client-rds/src/commands/SwitchoverBlueGreenDeploymentCommand.ts +++ b/clients/client-rds/src/commands/SwitchoverBlueGreenDeploymentCommand.ts @@ -104,145 +104,8 @@ export interface SwitchoverBlueGreenDeploymentCommandOutput * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* - * @public - * @example To switch a blue/green deployment for an RDS DB instance - * ```javascript - * // The following example promotes the specified green environment as the new production environment. - * const input = { - * "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", - * "SwitchoverTimeout": 300 - * }; - * const command = new SwitchoverBlueGreenDeploymentCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "BlueGreenDeployment": { - * "BlueGreenDeploymentIdentifier": "bgd-v53303651eexfake", - * "BlueGreenDeploymentName": "bgd-cli-test-instance", - * "CreateTime": "2022-02-25T22:33:22.225000+00:00", - * "Source": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", - * "Status": "SWITCHOVER_IN_PROGRESS", - * "SwitchoverDetails": [ - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-blhi1e" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-1-green-k5fv7u" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-2-green-ggsh8m" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-replica-3-green-o2vwm0" - * } - * ], - * "Target": "arn:aws:rds:us-east-1:123456789012:db:my-db-instance-green-blhi1e", - * "Tasks": [ - * { - * "Name": "CREATING_READ_REPLICA_OF_SOURCE", - * "Status": "COMPLETED" - * }, - * { - * "Name": "DB_ENGINE_VERSION_UPGRADE", - * "Status": "COMPLETED" - * }, - * { - * "Name": "CONFIGURE_BACKUPS", - * "Status": "COMPLETED" - * }, - * { - * "Name": "CREATING_TOPOLOGY_OF_SOURCE", - * "Status": "COMPLETED" - * } - * ] - * } - * } - * *\/ - * // example id: to-switch-a-bluegreen-deployment-for-an-rds-db-instance-1679699425237 - * ``` - * - * @example To promote a blue/green deployment for an Aurora MySQL DB cluster - * ```javascript - * // The following example promotes the specified green environment as the new production environment. - * const input = { - * "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", - * "SwitchoverTimeout": 300 - * }; - * const command = new SwitchoverBlueGreenDeploymentCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "BlueGreenDeployment": { - * "BlueGreenDeploymentIdentifier": "bgd-wi89nwzglccsfake", - * "BlueGreenDeploymentName": "my-blue-green-deployment", - * "CreateTime": "2022-02-25T22:38:49.522000+00:00", - * "Source": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", - * "Status": "SWITCHOVER_IN_PROGRESS", - * "SwitchoverDetails": [ - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3ud8z6" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-1-green-bvxc73" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-2-green-7wc4ie" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:db:my-aurora-mysql-cluster-3-green-p4xxkz" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-excluded-member-endpoint-green-np1ikl" - * }, - * { - * "SourceMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint", - * "Status": "AVAILABLE", - * "TargetMember": "arn:aws:rds:us-east-1:123456789012:cluster-endpoint:my-reader-endpoint-green-miszlf" - * } - * ], - * "Target": "arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster-green-3ud8z6", - * "Tasks": [ - * { - * "Name": "CREATING_READ_REPLICA_OF_SOURCE", - * "Status": "COMPLETED" - * }, - * { - * "Name": "DB_ENGINE_VERSION_UPGRADE", - * "Status": "COMPLETED" - * }, - * { - * "Name": "CREATE_DB_INSTANCES_FOR_CLUSTER", - * "Status": "COMPLETED" - * }, - * { - * "Name": "CREATE_CUSTOM_ENDPOINTS", - * "Status": "COMPLETED" - * } - * ] - * } - * } - * *\/ - * // example id: to-promote-a-bluegreen-deployment-for-an-aurora-mysql-db-cluster-1679700197409 - * ``` * + * @public */ export class SwitchoverBlueGreenDeploymentCommand extends $Command .classBuilder< diff --git a/clients/client-rds/src/commands/SwitchoverGlobalClusterCommand.ts b/clients/client-rds/src/commands/SwitchoverGlobalClusterCommand.ts index e377fce1c5c41..e9aa050245756 100644 --- a/clients/client-rds/src/commands/SwitchoverGlobalClusterCommand.ts +++ b/clients/client-rds/src/commands/SwitchoverGlobalClusterCommand.ts @@ -114,6 +114,7 @@ export interface SwitchoverGlobalClusterCommandOutput extends SwitchoverGlobalCl * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class SwitchoverGlobalClusterCommand extends $Command diff --git a/clients/client-rds/src/commands/SwitchoverReadReplicaCommand.ts b/clients/client-rds/src/commands/SwitchoverReadReplicaCommand.ts index d1c7ee9fda4a0..224b3d3370074 100644 --- a/clients/client-rds/src/commands/SwitchoverReadReplicaCommand.ts +++ b/clients/client-rds/src/commands/SwitchoverReadReplicaCommand.ts @@ -287,6 +287,7 @@ export interface SwitchoverReadReplicaCommandOutput extends SwitchoverReadReplic * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* + * * @public */ export class SwitchoverReadReplicaCommand extends $Command diff --git a/clients/client-redshift-data/src/commands/BatchExecuteStatementCommand.ts b/clients/client-redshift-data/src/commands/BatchExecuteStatementCommand.ts index a6d0b7dedcd62..5f14ce898bab2 100644 --- a/clients/client-redshift-data/src/commands/BatchExecuteStatementCommand.ts +++ b/clients/client-redshift-data/src/commands/BatchExecuteStatementCommand.ts @@ -129,6 +129,7 @@ export interface BatchExecuteStatementCommandOutput extends BatchExecuteStatemen * @throws {@link RedshiftDataServiceException} *

Base exception class for all service exceptions from RedshiftData service.

* + * * @public */ export class BatchExecuteStatementCommand extends $Command diff --git a/clients/client-redshift-data/src/commands/CancelStatementCommand.ts b/clients/client-redshift-data/src/commands/CancelStatementCommand.ts index 21c763c2ea3e9..c0555ad61a4f6 100644 --- a/clients/client-redshift-data/src/commands/CancelStatementCommand.ts +++ b/clients/client-redshift-data/src/commands/CancelStatementCommand.ts @@ -70,6 +70,7 @@ export interface CancelStatementCommandOutput extends CancelStatementResponse, _ * @throws {@link RedshiftDataServiceException} *

Base exception class for all service exceptions from RedshiftData service.

* + * * @public */ export class CancelStatementCommand extends $Command diff --git a/clients/client-redshift-data/src/commands/DescribeStatementCommand.ts b/clients/client-redshift-data/src/commands/DescribeStatementCommand.ts index 385c185074ea3..f05b5f7f5be16 100644 --- a/clients/client-redshift-data/src/commands/DescribeStatementCommand.ts +++ b/clients/client-redshift-data/src/commands/DescribeStatementCommand.ts @@ -108,6 +108,7 @@ export interface DescribeStatementCommandOutput extends DescribeStatementRespons * @throws {@link RedshiftDataServiceException} *

Base exception class for all service exceptions from RedshiftData service.

* + * * @public */ export class DescribeStatementCommand extends $Command diff --git a/clients/client-redshift-data/src/commands/DescribeTableCommand.ts b/clients/client-redshift-data/src/commands/DescribeTableCommand.ts index e47c9225da0fd..634e85c5f1ee9 100644 --- a/clients/client-redshift-data/src/commands/DescribeTableCommand.ts +++ b/clients/client-redshift-data/src/commands/DescribeTableCommand.ts @@ -131,6 +131,7 @@ export interface DescribeTableCommandOutput extends DescribeTableResponse, __Met * @throws {@link RedshiftDataServiceException} *

Base exception class for all service exceptions from RedshiftData service.

* + * * @public */ export class DescribeTableCommand extends $Command diff --git a/clients/client-redshift-data/src/commands/ExecuteStatementCommand.ts b/clients/client-redshift-data/src/commands/ExecuteStatementCommand.ts index 9bc89925ec06e..a3ba26feb20de 100644 --- a/clients/client-redshift-data/src/commands/ExecuteStatementCommand.ts +++ b/clients/client-redshift-data/src/commands/ExecuteStatementCommand.ts @@ -133,6 +133,7 @@ export interface ExecuteStatementCommandOutput extends ExecuteStatementOutput, _ * @throws {@link RedshiftDataServiceException} *

Base exception class for all service exceptions from RedshiftData service.

* + * * @public */ export class ExecuteStatementCommand extends $Command diff --git a/clients/client-redshift-data/src/commands/GetStatementResultCommand.ts b/clients/client-redshift-data/src/commands/GetStatementResultCommand.ts index 311d516f5f3ac..9693e9d695bd9 100644 --- a/clients/client-redshift-data/src/commands/GetStatementResultCommand.ts +++ b/clients/client-redshift-data/src/commands/GetStatementResultCommand.ts @@ -101,6 +101,7 @@ export interface GetStatementResultCommandOutput extends GetStatementResultRespo * @throws {@link RedshiftDataServiceException} *

Base exception class for all service exceptions from RedshiftData service.

* + * * @public */ export class GetStatementResultCommand extends $Command diff --git a/clients/client-redshift-data/src/commands/GetStatementResultV2Command.ts b/clients/client-redshift-data/src/commands/GetStatementResultV2Command.ts index efc4d949f2820..5da58bd03f5a4 100644 --- a/clients/client-redshift-data/src/commands/GetStatementResultV2Command.ts +++ b/clients/client-redshift-data/src/commands/GetStatementResultV2Command.ts @@ -94,6 +94,7 @@ export interface GetStatementResultV2CommandOutput extends GetStatementResultV2R * @throws {@link RedshiftDataServiceException} *

Base exception class for all service exceptions from RedshiftData service.

* + * * @public */ export class GetStatementResultV2Command extends $Command diff --git a/clients/client-redshift-data/src/commands/ListDatabasesCommand.ts b/clients/client-redshift-data/src/commands/ListDatabasesCommand.ts index 1ac689389851d..5c5dc24571be8 100644 --- a/clients/client-redshift-data/src/commands/ListDatabasesCommand.ts +++ b/clients/client-redshift-data/src/commands/ListDatabasesCommand.ts @@ -112,6 +112,7 @@ export interface ListDatabasesCommandOutput extends ListDatabasesResponse, __Met * @throws {@link RedshiftDataServiceException} *

Base exception class for all service exceptions from RedshiftData service.

* + * * @public */ export class ListDatabasesCommand extends $Command diff --git a/clients/client-redshift-data/src/commands/ListSchemasCommand.ts b/clients/client-redshift-data/src/commands/ListSchemasCommand.ts index e93cf5b79e02b..fd61da054e034 100644 --- a/clients/client-redshift-data/src/commands/ListSchemasCommand.ts +++ b/clients/client-redshift-data/src/commands/ListSchemasCommand.ts @@ -114,6 +114,7 @@ export interface ListSchemasCommandOutput extends ListSchemasResponse, __Metadat * @throws {@link RedshiftDataServiceException} *

Base exception class for all service exceptions from RedshiftData service.

* + * * @public */ export class ListSchemasCommand extends $Command diff --git a/clients/client-redshift-data/src/commands/ListStatementsCommand.ts b/clients/client-redshift-data/src/commands/ListStatementsCommand.ts index 579359b1cd9f7..f491c3f22c53a 100644 --- a/clients/client-redshift-data/src/commands/ListStatementsCommand.ts +++ b/clients/client-redshift-data/src/commands/ListStatementsCommand.ts @@ -100,6 +100,7 @@ export interface ListStatementsCommandOutput extends ListStatementsResponse, __M * @throws {@link RedshiftDataServiceException} *

Base exception class for all service exceptions from RedshiftData service.

* + * * @public */ export class ListStatementsCommand extends $Command diff --git a/clients/client-redshift-data/src/commands/ListTablesCommand.ts b/clients/client-redshift-data/src/commands/ListTablesCommand.ts index 5047e24bec668..42248f6d43d6f 100644 --- a/clients/client-redshift-data/src/commands/ListTablesCommand.ts +++ b/clients/client-redshift-data/src/commands/ListTablesCommand.ts @@ -120,6 +120,7 @@ export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataB * @throws {@link RedshiftDataServiceException} *

Base exception class for all service exceptions from RedshiftData service.

* + * * @public */ export class ListTablesCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/ConvertRecoveryPointToSnapshotCommand.ts b/clients/client-redshift-serverless/src/commands/ConvertRecoveryPointToSnapshotCommand.ts index 4dba058749a7e..b553f58a2a344 100644 --- a/clients/client-redshift-serverless/src/commands/ConvertRecoveryPointToSnapshotCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ConvertRecoveryPointToSnapshotCommand.ts @@ -118,6 +118,7 @@ export interface ConvertRecoveryPointToSnapshotCommandOutput * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class ConvertRecoveryPointToSnapshotCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/CreateCustomDomainAssociationCommand.ts b/clients/client-redshift-serverless/src/commands/CreateCustomDomainAssociationCommand.ts index 8853116691983..4eeb33e5962e7 100644 --- a/clients/client-redshift-serverless/src/commands/CreateCustomDomainAssociationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateCustomDomainAssociationCommand.ts @@ -87,6 +87,7 @@ export interface CreateCustomDomainAssociationCommandOutput * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class CreateCustomDomainAssociationCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/CreateEndpointAccessCommand.ts b/clients/client-redshift-serverless/src/commands/CreateEndpointAccessCommand.ts index 21762bd49387f..ec170f3f50dfd 100644 --- a/clients/client-redshift-serverless/src/commands/CreateEndpointAccessCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateEndpointAccessCommand.ts @@ -115,6 +115,7 @@ export interface CreateEndpointAccessCommandOutput extends CreateEndpointAccessR * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class CreateEndpointAccessCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/CreateNamespaceCommand.ts b/clients/client-redshift-serverless/src/commands/CreateNamespaceCommand.ts index 74d31ea0d88cc..69cee44ef2f1f 100644 --- a/clients/client-redshift-serverless/src/commands/CreateNamespaceCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateNamespaceCommand.ts @@ -114,6 +114,7 @@ export interface CreateNamespaceCommandOutput extends CreateNamespaceResponse, _ * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class CreateNamespaceCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/CreateScheduledActionCommand.ts b/clients/client-redshift-serverless/src/commands/CreateScheduledActionCommand.ts index 235d5be2b8af4..82baaa55123dc 100644 --- a/clients/client-redshift-serverless/src/commands/CreateScheduledActionCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateScheduledActionCommand.ts @@ -124,6 +124,7 @@ export interface CreateScheduledActionCommandOutput extends CreateScheduledActio * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class CreateScheduledActionCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/CreateSnapshotCommand.ts b/clients/client-redshift-serverless/src/commands/CreateSnapshotCommand.ts index f70fbec453fa2..486b653a8cabd 100644 --- a/clients/client-redshift-serverless/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateSnapshotCommand.ts @@ -115,6 +115,7 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class CreateSnapshotCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/CreateSnapshotCopyConfigurationCommand.ts b/clients/client-redshift-serverless/src/commands/CreateSnapshotCopyConfigurationCommand.ts index 6bf00875f1271..a79bf3ae05e3f 100644 --- a/clients/client-redshift-serverless/src/commands/CreateSnapshotCopyConfigurationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateSnapshotCopyConfigurationCommand.ts @@ -92,6 +92,7 @@ export interface CreateSnapshotCopyConfigurationCommandOutput * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class CreateSnapshotCopyConfigurationCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/CreateUsageLimitCommand.ts b/clients/client-redshift-serverless/src/commands/CreateUsageLimitCommand.ts index cab936e5b38bb..627b4393babd7 100644 --- a/clients/client-redshift-serverless/src/commands/CreateUsageLimitCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateUsageLimitCommand.ts @@ -87,6 +87,7 @@ export interface CreateUsageLimitCommandOutput extends CreateUsageLimitResponse, * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class CreateUsageLimitCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/CreateWorkgroupCommand.ts b/clients/client-redshift-serverless/src/commands/CreateWorkgroupCommand.ts index c136e64a5ea45..298fbfa70a04e 100644 --- a/clients/client-redshift-serverless/src/commands/CreateWorkgroupCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateWorkgroupCommand.ts @@ -185,6 +185,7 @@ export interface CreateWorkgroupCommandOutput extends CreateWorkgroupResponse, _ * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class CreateWorkgroupCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/DeleteCustomDomainAssociationCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteCustomDomainAssociationCommand.ts index 25c8ac6ddadd2..3493bddab8c33 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteCustomDomainAssociationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteCustomDomainAssociationCommand.ts @@ -81,6 +81,7 @@ export interface DeleteCustomDomainAssociationCommandOutput * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class DeleteCustomDomainAssociationCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/DeleteEndpointAccessCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteEndpointAccessCommand.ts index 833f5138deb8c..1e3cccfe8a102 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteEndpointAccessCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteEndpointAccessCommand.ts @@ -101,6 +101,7 @@ export interface DeleteEndpointAccessCommandOutput extends DeleteEndpointAccessR * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class DeleteEndpointAccessCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/DeleteNamespaceCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteNamespaceCommand.ts index bf023c4090e10..3b6d706b2b2e8 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteNamespaceCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteNamespaceCommand.ts @@ -96,6 +96,7 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _ * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class DeleteNamespaceCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteResourcePolicyCommand.ts index f9bdc4d36838e..dc1327e8b1cb1 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteResourcePolicyCommand.ts @@ -66,6 +66,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/DeleteScheduledActionCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteScheduledActionCommand.ts index 118582467e5fa..e75b59b73de3f 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteScheduledActionCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteScheduledActionCommand.ts @@ -97,6 +97,7 @@ export interface DeleteScheduledActionCommandOutput extends DeleteScheduledActio * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class DeleteScheduledActionCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/DeleteSnapshotCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteSnapshotCommand.ts index 4f0803bd9f012..e08ed9d2b8654 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteSnapshotCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteSnapshotCommand.ts @@ -98,6 +98,7 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __M * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class DeleteSnapshotCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/DeleteSnapshotCopyConfigurationCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteSnapshotCopyConfigurationCommand.ts index efd55a2d4d626..043baa971dd03 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteSnapshotCopyConfigurationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteSnapshotCopyConfigurationCommand.ts @@ -86,6 +86,7 @@ export interface DeleteSnapshotCopyConfigurationCommandOutput * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class DeleteSnapshotCopyConfigurationCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/DeleteUsageLimitCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteUsageLimitCommand.ts index 039583da2ccbe..29278da8d9107 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteUsageLimitCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteUsageLimitCommand.ts @@ -79,6 +79,7 @@ export interface DeleteUsageLimitCommandOutput extends DeleteUsageLimitResponse, * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class DeleteUsageLimitCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/DeleteWorkgroupCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteWorkgroupCommand.ts index 408b6b3679da9..c8f41b6d7e015 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteWorkgroupCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteWorkgroupCommand.ts @@ -129,6 +129,7 @@ export interface DeleteWorkgroupCommandOutput extends DeleteWorkgroupResponse, _ * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class DeleteWorkgroupCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/GetCredentialsCommand.ts b/clients/client-redshift-serverless/src/commands/GetCredentialsCommand.ts index c5119cd9507a7..988c284f09fbd 100644 --- a/clients/client-redshift-serverless/src/commands/GetCredentialsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetCredentialsCommand.ts @@ -86,6 +86,7 @@ export interface GetCredentialsCommandOutput extends GetCredentialsResponse, __M * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class GetCredentialsCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/GetCustomDomainAssociationCommand.ts b/clients/client-redshift-serverless/src/commands/GetCustomDomainAssociationCommand.ts index 35795ead7e096..f52d46ae7e0b8 100644 --- a/clients/client-redshift-serverless/src/commands/GetCustomDomainAssociationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetCustomDomainAssociationCommand.ts @@ -81,6 +81,7 @@ export interface GetCustomDomainAssociationCommandOutput extends GetCustomDomain * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class GetCustomDomainAssociationCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/GetEndpointAccessCommand.ts b/clients/client-redshift-serverless/src/commands/GetEndpointAccessCommand.ts index 63263c8e33817..c6f7a2a33cfe1 100644 --- a/clients/client-redshift-serverless/src/commands/GetEndpointAccessCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetEndpointAccessCommand.ts @@ -101,6 +101,7 @@ export interface GetEndpointAccessCommandOutput extends GetEndpointAccessRespons * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class GetEndpointAccessCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/GetNamespaceCommand.ts b/clients/client-redshift-serverless/src/commands/GetNamespaceCommand.ts index e1774d1da0fe8..3bb44fae82a4f 100644 --- a/clients/client-redshift-serverless/src/commands/GetNamespaceCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetNamespaceCommand.ts @@ -86,6 +86,7 @@ export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __Metad * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class GetNamespaceCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/GetRecoveryPointCommand.ts b/clients/client-redshift-serverless/src/commands/GetRecoveryPointCommand.ts index 60cbbed2abe99..16db0d28d5505 100644 --- a/clients/client-redshift-serverless/src/commands/GetRecoveryPointCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetRecoveryPointCommand.ts @@ -78,6 +78,7 @@ export interface GetRecoveryPointCommandOutput extends GetRecoveryPointResponse, * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class GetRecoveryPointCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/GetResourcePolicyCommand.ts b/clients/client-redshift-serverless/src/commands/GetResourcePolicyCommand.ts index 85e85650e0abb..496cea4b2cdaf 100644 --- a/clients/client-redshift-serverless/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetResourcePolicyCommand.ts @@ -71,6 +71,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/GetScheduledActionCommand.ts b/clients/client-redshift-serverless/src/commands/GetScheduledActionCommand.ts index 8cac7ce04a2f5..4b401ad678422 100644 --- a/clients/client-redshift-serverless/src/commands/GetScheduledActionCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetScheduledActionCommand.ts @@ -97,6 +97,7 @@ export interface GetScheduledActionCommandOutput extends GetScheduledActionRespo * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class GetScheduledActionCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/GetSnapshotCommand.ts b/clients/client-redshift-serverless/src/commands/GetSnapshotCommand.ts index f0ec91a5dd68d..35a04cb3d5206 100644 --- a/clients/client-redshift-serverless/src/commands/GetSnapshotCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetSnapshotCommand.ts @@ -97,6 +97,7 @@ export interface GetSnapshotCommandOutput extends GetSnapshotResponse, __Metadat * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class GetSnapshotCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/GetTableRestoreStatusCommand.ts b/clients/client-redshift-serverless/src/commands/GetTableRestoreStatusCommand.ts index 9708194a0fa4a..5cdc674eafae7 100644 --- a/clients/client-redshift-serverless/src/commands/GetTableRestoreStatusCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetTableRestoreStatusCommand.ts @@ -82,6 +82,7 @@ export interface GetTableRestoreStatusCommandOutput extends GetTableRestoreStatu * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class GetTableRestoreStatusCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/GetTrackCommand.ts b/clients/client-redshift-serverless/src/commands/GetTrackCommand.ts index 835d3660c0a40..f77de4db24e72 100644 --- a/clients/client-redshift-serverless/src/commands/GetTrackCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetTrackCommand.ts @@ -86,6 +86,7 @@ export interface GetTrackCommandOutput extends GetTrackResponse, __MetadataBeare * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class GetTrackCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/GetUsageLimitCommand.ts b/clients/client-redshift-serverless/src/commands/GetUsageLimitCommand.ts index 196ea41cdc6cc..f5b2e23ac1b95 100644 --- a/clients/client-redshift-serverless/src/commands/GetUsageLimitCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetUsageLimitCommand.ts @@ -79,6 +79,7 @@ export interface GetUsageLimitCommandOutput extends GetUsageLimitResponse, __Met * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class GetUsageLimitCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/GetWorkgroupCommand.ts b/clients/client-redshift-serverless/src/commands/GetWorkgroupCommand.ts index a4d20194bcaff..a001d0b8618fe 100644 --- a/clients/client-redshift-serverless/src/commands/GetWorkgroupCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetWorkgroupCommand.ts @@ -126,6 +126,7 @@ export interface GetWorkgroupCommandOutput extends GetWorkgroupResponse, __Metad * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class GetWorkgroupCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/ListCustomDomainAssociationsCommand.ts b/clients/client-redshift-serverless/src/commands/ListCustomDomainAssociationsCommand.ts index 5639870e7db26..8a79016d2436d 100644 --- a/clients/client-redshift-serverless/src/commands/ListCustomDomainAssociationsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListCustomDomainAssociationsCommand.ts @@ -90,6 +90,7 @@ export interface ListCustomDomainAssociationsCommandOutput * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class ListCustomDomainAssociationsCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/ListEndpointAccessCommand.ts b/clients/client-redshift-serverless/src/commands/ListEndpointAccessCommand.ts index 9f656c9a65815..1197661fa5c35 100644 --- a/clients/client-redshift-serverless/src/commands/ListEndpointAccessCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListEndpointAccessCommand.ts @@ -108,6 +108,7 @@ export interface ListEndpointAccessCommandOutput extends ListEndpointAccessRespo * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class ListEndpointAccessCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/ListManagedWorkgroupsCommand.ts b/clients/client-redshift-serverless/src/commands/ListManagedWorkgroupsCommand.ts index 5b611e885dde7..8e0bfe125a34e 100644 --- a/clients/client-redshift-serverless/src/commands/ListManagedWorkgroupsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListManagedWorkgroupsCommand.ts @@ -76,6 +76,7 @@ export interface ListManagedWorkgroupsCommandOutput extends ListManagedWorkgroup * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class ListManagedWorkgroupsCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/ListNamespacesCommand.ts b/clients/client-redshift-serverless/src/commands/ListNamespacesCommand.ts index 69e2999135524..b475a5adb977e 100644 --- a/clients/client-redshift-serverless/src/commands/ListNamespacesCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListNamespacesCommand.ts @@ -91,6 +91,7 @@ export interface ListNamespacesCommandOutput extends ListNamespacesResponse, __M * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class ListNamespacesCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/ListRecoveryPointsCommand.ts b/clients/client-redshift-serverless/src/commands/ListRecoveryPointsCommand.ts index 8caf37b400fdc..f5b3f919a495c 100644 --- a/clients/client-redshift-serverless/src/commands/ListRecoveryPointsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListRecoveryPointsCommand.ts @@ -80,6 +80,7 @@ export interface ListRecoveryPointsCommandOutput extends ListRecoveryPointsRespo * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class ListRecoveryPointsCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/ListScheduledActionsCommand.ts b/clients/client-redshift-serverless/src/commands/ListScheduledActionsCommand.ts index 94c80b248026a..7ca007bd73e82 100644 --- a/clients/client-redshift-serverless/src/commands/ListScheduledActionsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListScheduledActionsCommand.ts @@ -79,6 +79,7 @@ export interface ListScheduledActionsCommandOutput extends ListScheduledActionsR * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class ListScheduledActionsCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/ListSnapshotCopyConfigurationsCommand.ts b/clients/client-redshift-serverless/src/commands/ListSnapshotCopyConfigurationsCommand.ts index c33e3f2a138a0..8f67d2744774a 100644 --- a/clients/client-redshift-serverless/src/commands/ListSnapshotCopyConfigurationsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListSnapshotCopyConfigurationsCommand.ts @@ -91,6 +91,7 @@ export interface ListSnapshotCopyConfigurationsCommandOutput * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class ListSnapshotCopyConfigurationsCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/ListSnapshotsCommand.ts b/clients/client-redshift-serverless/src/commands/ListSnapshotsCommand.ts index 539883b51d329..6328a3d876a6f 100644 --- a/clients/client-redshift-serverless/src/commands/ListSnapshotsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListSnapshotsCommand.ts @@ -104,6 +104,7 @@ export interface ListSnapshotsCommandOutput extends ListSnapshotsResponse, __Met * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class ListSnapshotsCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/ListTableRestoreStatusCommand.ts b/clients/client-redshift-serverless/src/commands/ListTableRestoreStatusCommand.ts index 08fc01acc61c2..807de85ceeb9e 100644 --- a/clients/client-redshift-serverless/src/commands/ListTableRestoreStatusCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListTableRestoreStatusCommand.ts @@ -91,6 +91,7 @@ export interface ListTableRestoreStatusCommandOutput extends ListTableRestoreSta * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class ListTableRestoreStatusCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/ListTagsForResourceCommand.ts b/clients/client-redshift-serverless/src/commands/ListTagsForResourceCommand.ts index f3672281cc3ca..f93eaa7016be9 100644 --- a/clients/client-redshift-serverless/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/ListTracksCommand.ts b/clients/client-redshift-serverless/src/commands/ListTracksCommand.ts index 268bd10e46b39..d47e3d930c7e6 100644 --- a/clients/client-redshift-serverless/src/commands/ListTracksCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListTracksCommand.ts @@ -87,6 +87,7 @@ export interface ListTracksCommandOutput extends ListTracksResponse, __MetadataB * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class ListTracksCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/ListUsageLimitsCommand.ts b/clients/client-redshift-serverless/src/commands/ListUsageLimitsCommand.ts index 12d16eba60291..008aa18cb09e3 100644 --- a/clients/client-redshift-serverless/src/commands/ListUsageLimitsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListUsageLimitsCommand.ts @@ -88,6 +88,7 @@ export interface ListUsageLimitsCommandOutput extends ListUsageLimitsResponse, _ * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class ListUsageLimitsCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/ListWorkgroupsCommand.ts b/clients/client-redshift-serverless/src/commands/ListWorkgroupsCommand.ts index b819e8540a99a..0567080961e51 100644 --- a/clients/client-redshift-serverless/src/commands/ListWorkgroupsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListWorkgroupsCommand.ts @@ -128,6 +128,7 @@ export interface ListWorkgroupsCommandOutput extends ListWorkgroupsResponse, __M * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class ListWorkgroupsCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/PutResourcePolicyCommand.ts b/clients/client-redshift-serverless/src/commands/PutResourcePolicyCommand.ts index f075f28a68d8c..3a106dd0caab2 100644 --- a/clients/client-redshift-serverless/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-redshift-serverless/src/commands/PutResourcePolicyCommand.ts @@ -78,6 +78,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/RestoreFromRecoveryPointCommand.ts b/clients/client-redshift-serverless/src/commands/RestoreFromRecoveryPointCommand.ts index 2a220ebb2acd8..6ee02f4a3f372 100644 --- a/clients/client-redshift-serverless/src/commands/RestoreFromRecoveryPointCommand.ts +++ b/clients/client-redshift-serverless/src/commands/RestoreFromRecoveryPointCommand.ts @@ -96,6 +96,7 @@ export interface RestoreFromRecoveryPointCommandOutput extends RestoreFromRecove * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class RestoreFromRecoveryPointCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/RestoreFromSnapshotCommand.ts b/clients/client-redshift-serverless/src/commands/RestoreFromSnapshotCommand.ts index 79777300c4559..8c6ce73c18398 100644 --- a/clients/client-redshift-serverless/src/commands/RestoreFromSnapshotCommand.ts +++ b/clients/client-redshift-serverless/src/commands/RestoreFromSnapshotCommand.ts @@ -104,6 +104,7 @@ export interface RestoreFromSnapshotCommandOutput extends RestoreFromSnapshotRes * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class RestoreFromSnapshotCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/RestoreTableFromRecoveryPointCommand.ts b/clients/client-redshift-serverless/src/commands/RestoreTableFromRecoveryPointCommand.ts index 9349cf266100f..5bc9ce82e77bd 100644 --- a/clients/client-redshift-serverless/src/commands/RestoreTableFromRecoveryPointCommand.ts +++ b/clients/client-redshift-serverless/src/commands/RestoreTableFromRecoveryPointCommand.ts @@ -102,6 +102,7 @@ export interface RestoreTableFromRecoveryPointCommandOutput * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class RestoreTableFromRecoveryPointCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/RestoreTableFromSnapshotCommand.ts b/clients/client-redshift-serverless/src/commands/RestoreTableFromSnapshotCommand.ts index 223b158110885..49a97884ee5c2 100644 --- a/clients/client-redshift-serverless/src/commands/RestoreTableFromSnapshotCommand.ts +++ b/clients/client-redshift-serverless/src/commands/RestoreTableFromSnapshotCommand.ts @@ -98,6 +98,7 @@ export interface RestoreTableFromSnapshotCommandOutput extends RestoreTableFromS * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class RestoreTableFromSnapshotCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/TagResourceCommand.ts b/clients/client-redshift-serverless/src/commands/TagResourceCommand.ts index 027962aea5201..1af647de33280 100644 --- a/clients/client-redshift-serverless/src/commands/TagResourceCommand.ts +++ b/clients/client-redshift-serverless/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/UntagResourceCommand.ts b/clients/client-redshift-serverless/src/commands/UntagResourceCommand.ts index 4a8af65d82b5f..c41509d2e90b4 100644 --- a/clients/client-redshift-serverless/src/commands/UntagResourceCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UntagResourceCommand.ts @@ -72,6 +72,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/UpdateCustomDomainAssociationCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateCustomDomainAssociationCommand.ts index d03440e2c3714..084ba2716be95 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateCustomDomainAssociationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateCustomDomainAssociationCommand.ts @@ -87,6 +87,7 @@ export interface UpdateCustomDomainAssociationCommandOutput * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class UpdateCustomDomainAssociationCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/UpdateEndpointAccessCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateEndpointAccessCommand.ts index a8bf1b593f277..ccc3cecab6c5f 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateEndpointAccessCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateEndpointAccessCommand.ts @@ -107,6 +107,7 @@ export interface UpdateEndpointAccessCommandOutput extends UpdateEndpointAccessR * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class UpdateEndpointAccessCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/UpdateNamespaceCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateNamespaceCommand.ts index 2bfb4e691f362..6f786a72116e2 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateNamespaceCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateNamespaceCommand.ts @@ -108,6 +108,7 @@ export interface UpdateNamespaceCommandOutput extends UpdateNamespaceResponse, _ * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class UpdateNamespaceCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/UpdateScheduledActionCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateScheduledActionCommand.ts index 13c2c6e3f9793..72598de8b7600 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateScheduledActionCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateScheduledActionCommand.ts @@ -122,6 +122,7 @@ export interface UpdateScheduledActionCommandOutput extends UpdateScheduledActio * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class UpdateScheduledActionCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/UpdateSnapshotCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateSnapshotCommand.ts index 51e1066eed187..670041d4a734d 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateSnapshotCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateSnapshotCommand.ts @@ -99,6 +99,7 @@ export interface UpdateSnapshotCommandOutput extends UpdateSnapshotResponse, __M * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class UpdateSnapshotCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/UpdateSnapshotCopyConfigurationCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateSnapshotCopyConfigurationCommand.ts index 32adaf3715dcb..8d6c8f3d5fdd6 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateSnapshotCopyConfigurationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateSnapshotCopyConfigurationCommand.ts @@ -87,6 +87,7 @@ export interface UpdateSnapshotCopyConfigurationCommandOutput * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class UpdateSnapshotCopyConfigurationCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/UpdateUsageLimitCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateUsageLimitCommand.ts index 39ab30ddf09e6..a2b08dc69d79f 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateUsageLimitCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateUsageLimitCommand.ts @@ -81,6 +81,7 @@ export interface UpdateUsageLimitCommandOutput extends UpdateUsageLimitResponse, * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class UpdateUsageLimitCommand extends $Command diff --git a/clients/client-redshift-serverless/src/commands/UpdateWorkgroupCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateWorkgroupCommand.ts index f0a9b12cfa5eb..7ca132dd0851b 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateWorkgroupCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateWorkgroupCommand.ts @@ -177,6 +177,7 @@ export interface UpdateWorkgroupCommandOutput extends UpdateWorkgroupResponse, _ * @throws {@link RedshiftServerlessServiceException} *

Base exception class for all service exceptions from RedshiftServerless service.

* + * * @public */ export class UpdateWorkgroupCommand extends $Command diff --git a/clients/client-redshift/src/commands/AcceptReservedNodeExchangeCommand.ts b/clients/client-redshift/src/commands/AcceptReservedNodeExchangeCommand.ts index 9bc1b1467f220..7d3422923d43a 100644 --- a/clients/client-redshift/src/commands/AcceptReservedNodeExchangeCommand.ts +++ b/clients/client-redshift/src/commands/AcceptReservedNodeExchangeCommand.ts @@ -101,6 +101,7 @@ export interface AcceptReservedNodeExchangeCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class AcceptReservedNodeExchangeCommand extends $Command diff --git a/clients/client-redshift/src/commands/AddPartnerCommand.ts b/clients/client-redshift/src/commands/AddPartnerCommand.ts index d5f9d0c37a4be..2b74a07c918ef 100644 --- a/clients/client-redshift/src/commands/AddPartnerCommand.ts +++ b/clients/client-redshift/src/commands/AddPartnerCommand.ts @@ -74,6 +74,7 @@ export interface AddPartnerCommandOutput extends PartnerIntegrationOutputMessage * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class AddPartnerCommand extends $Command diff --git a/clients/client-redshift/src/commands/AssociateDataShareConsumerCommand.ts b/clients/client-redshift/src/commands/AssociateDataShareConsumerCommand.ts index edc3333c68d84..5639c700fb3a7 100644 --- a/clients/client-redshift/src/commands/AssociateDataShareConsumerCommand.ts +++ b/clients/client-redshift/src/commands/AssociateDataShareConsumerCommand.ts @@ -82,6 +82,7 @@ export interface AssociateDataShareConsumerCommandOutput extends DataShare, __Me * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class AssociateDataShareConsumerCommand extends $Command diff --git a/clients/client-redshift/src/commands/AuthorizeClusterSecurityGroupIngressCommand.ts b/clients/client-redshift/src/commands/AuthorizeClusterSecurityGroupIngressCommand.ts index 8059d71bb85a6..0a20150bba048 100644 --- a/clients/client-redshift/src/commands/AuthorizeClusterSecurityGroupIngressCommand.ts +++ b/clients/client-redshift/src/commands/AuthorizeClusterSecurityGroupIngressCommand.ts @@ -129,6 +129,7 @@ export interface AuthorizeClusterSecurityGroupIngressCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class AuthorizeClusterSecurityGroupIngressCommand extends $Command diff --git a/clients/client-redshift/src/commands/AuthorizeDataShareCommand.ts b/clients/client-redshift/src/commands/AuthorizeDataShareCommand.ts index 93510bc5f9226..32308deeb1630 100644 --- a/clients/client-redshift/src/commands/AuthorizeDataShareCommand.ts +++ b/clients/client-redshift/src/commands/AuthorizeDataShareCommand.ts @@ -77,6 +77,7 @@ export interface AuthorizeDataShareCommandOutput extends DataShare, __MetadataBe * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class AuthorizeDataShareCommand extends $Command diff --git a/clients/client-redshift/src/commands/AuthorizeEndpointAccessCommand.ts b/clients/client-redshift/src/commands/AuthorizeEndpointAccessCommand.ts index 67002f265c577..c58eb1a9ba58a 100644 --- a/clients/client-redshift/src/commands/AuthorizeEndpointAccessCommand.ts +++ b/clients/client-redshift/src/commands/AuthorizeEndpointAccessCommand.ts @@ -88,6 +88,7 @@ export interface AuthorizeEndpointAccessCommandOutput extends EndpointAuthorizat * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class AuthorizeEndpointAccessCommand extends $Command diff --git a/clients/client-redshift/src/commands/AuthorizeSnapshotAccessCommand.ts b/clients/client-redshift/src/commands/AuthorizeSnapshotAccessCommand.ts index 4b3d7530d9ef0..7351f96d2c5ec 100644 --- a/clients/client-redshift/src/commands/AuthorizeSnapshotAccessCommand.ts +++ b/clients/client-redshift/src/commands/AuthorizeSnapshotAccessCommand.ts @@ -137,6 +137,7 @@ export interface AuthorizeSnapshotAccessCommandOutput extends AuthorizeSnapshotA * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class AuthorizeSnapshotAccessCommand extends $Command diff --git a/clients/client-redshift/src/commands/BatchDeleteClusterSnapshotsCommand.ts b/clients/client-redshift/src/commands/BatchDeleteClusterSnapshotsCommand.ts index 647c549c8f50f..ed7e49e0d9a69 100644 --- a/clients/client-redshift/src/commands/BatchDeleteClusterSnapshotsCommand.ts +++ b/clients/client-redshift/src/commands/BatchDeleteClusterSnapshotsCommand.ts @@ -74,6 +74,7 @@ export interface BatchDeleteClusterSnapshotsCommandOutput extends BatchDeleteClu * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class BatchDeleteClusterSnapshotsCommand extends $Command diff --git a/clients/client-redshift/src/commands/BatchModifyClusterSnapshotsCommand.ts b/clients/client-redshift/src/commands/BatchModifyClusterSnapshotsCommand.ts index 19e91d83f6e99..269d8cfbd2a0f 100644 --- a/clients/client-redshift/src/commands/BatchModifyClusterSnapshotsCommand.ts +++ b/clients/client-redshift/src/commands/BatchModifyClusterSnapshotsCommand.ts @@ -79,6 +79,7 @@ export interface BatchModifyClusterSnapshotsCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class BatchModifyClusterSnapshotsCommand extends $Command diff --git a/clients/client-redshift/src/commands/CancelResizeCommand.ts b/clients/client-redshift/src/commands/CancelResizeCommand.ts index 8ec25cc0cc9b8..1b9a9e00fa3f3 100644 --- a/clients/client-redshift/src/commands/CancelResizeCommand.ts +++ b/clients/client-redshift/src/commands/CancelResizeCommand.ts @@ -89,6 +89,7 @@ export interface CancelResizeCommandOutput extends ResizeProgressMessage, __Meta * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CancelResizeCommand extends $Command diff --git a/clients/client-redshift/src/commands/CopyClusterSnapshotCommand.ts b/clients/client-redshift/src/commands/CopyClusterSnapshotCommand.ts index 991f38de6addb..93e202d21d56d 100644 --- a/clients/client-redshift/src/commands/CopyClusterSnapshotCommand.ts +++ b/clients/client-redshift/src/commands/CopyClusterSnapshotCommand.ts @@ -142,6 +142,7 @@ export interface CopyClusterSnapshotCommandOutput extends CopyClusterSnapshotRes * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CopyClusterSnapshotCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateAuthenticationProfileCommand.ts b/clients/client-redshift/src/commands/CreateAuthenticationProfileCommand.ts index a02919e10f1ed..0d32c02f82250 100644 --- a/clients/client-redshift/src/commands/CreateAuthenticationProfileCommand.ts +++ b/clients/client-redshift/src/commands/CreateAuthenticationProfileCommand.ts @@ -68,6 +68,7 @@ export interface CreateAuthenticationProfileCommandOutput extends CreateAuthenti * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateAuthenticationProfileCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateClusterCommand.ts b/clients/client-redshift/src/commands/CreateClusterCommand.ts index 113084fd49270..664f7701cf9cf 100644 --- a/clients/client-redshift/src/commands/CreateClusterCommand.ts +++ b/clients/client-redshift/src/commands/CreateClusterCommand.ts @@ -416,6 +416,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateClusterCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateClusterParameterGroupCommand.ts b/clients/client-redshift/src/commands/CreateClusterParameterGroupCommand.ts index ada65ad351ca2..707afed5ee310 100644 --- a/clients/client-redshift/src/commands/CreateClusterParameterGroupCommand.ts +++ b/clients/client-redshift/src/commands/CreateClusterParameterGroupCommand.ts @@ -97,6 +97,7 @@ export interface CreateClusterParameterGroupCommandOutput extends CreateClusterP * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateClusterParameterGroupCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateClusterSecurityGroupCommand.ts b/clients/client-redshift/src/commands/CreateClusterSecurityGroupCommand.ts index da007d3fc4a06..3fbf2a60b11c2 100644 --- a/clients/client-redshift/src/commands/CreateClusterSecurityGroupCommand.ts +++ b/clients/client-redshift/src/commands/CreateClusterSecurityGroupCommand.ts @@ -117,6 +117,7 @@ export interface CreateClusterSecurityGroupCommandOutput extends CreateClusterSe * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateClusterSecurityGroupCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateClusterSnapshotCommand.ts b/clients/client-redshift/src/commands/CreateClusterSnapshotCommand.ts index 375c138c4febe..ff9d683affef3 100644 --- a/clients/client-redshift/src/commands/CreateClusterSnapshotCommand.ts +++ b/clients/client-redshift/src/commands/CreateClusterSnapshotCommand.ts @@ -143,6 +143,7 @@ export interface CreateClusterSnapshotCommandOutput extends CreateClusterSnapsho * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateClusterSnapshotCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateClusterSubnetGroupCommand.ts b/clients/client-redshift/src/commands/CreateClusterSubnetGroupCommand.ts index 4e6773d9cf456..f38ac67a107c4 100644 --- a/clients/client-redshift/src/commands/CreateClusterSubnetGroupCommand.ts +++ b/clients/client-redshift/src/commands/CreateClusterSubnetGroupCommand.ts @@ -134,6 +134,7 @@ export interface CreateClusterSubnetGroupCommandOutput extends CreateClusterSubn * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateClusterSubnetGroupCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateCustomDomainAssociationCommand.ts b/clients/client-redshift/src/commands/CreateCustomDomainAssociationCommand.ts index ea89624e4530e..52f33cd3e1c72 100644 --- a/clients/client-redshift/src/commands/CreateCustomDomainAssociationCommand.ts +++ b/clients/client-redshift/src/commands/CreateCustomDomainAssociationCommand.ts @@ -76,6 +76,7 @@ export interface CreateCustomDomainAssociationCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateCustomDomainAssociationCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateEndpointAccessCommand.ts b/clients/client-redshift/src/commands/CreateEndpointAccessCommand.ts index 63d88708bcd6c..d80308b84c6d6 100644 --- a/clients/client-redshift/src/commands/CreateEndpointAccessCommand.ts +++ b/clients/client-redshift/src/commands/CreateEndpointAccessCommand.ts @@ -119,6 +119,7 @@ export interface CreateEndpointAccessCommandOutput extends EndpointAccess, __Met * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateEndpointAccessCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateEventSubscriptionCommand.ts b/clients/client-redshift/src/commands/CreateEventSubscriptionCommand.ts index 399afab90dd7a..b542675e3482a 100644 --- a/clients/client-redshift/src/commands/CreateEventSubscriptionCommand.ts +++ b/clients/client-redshift/src/commands/CreateEventSubscriptionCommand.ts @@ -152,6 +152,7 @@ export interface CreateEventSubscriptionCommandOutput extends CreateEventSubscri * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateEventSubscriptionCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateHsmClientCertificateCommand.ts b/clients/client-redshift/src/commands/CreateHsmClientCertificateCommand.ts index 4d04ec9c8a64d..1c3fe2d02b1ce 100644 --- a/clients/client-redshift/src/commands/CreateHsmClientCertificateCommand.ts +++ b/clients/client-redshift/src/commands/CreateHsmClientCertificateCommand.ts @@ -93,6 +93,7 @@ export interface CreateHsmClientCertificateCommandOutput extends CreateHsmClient * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateHsmClientCertificateCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateHsmConfigurationCommand.ts b/clients/client-redshift/src/commands/CreateHsmConfigurationCommand.ts index 12b4d13eacc27..cc69287ef8bd0 100644 --- a/clients/client-redshift/src/commands/CreateHsmConfigurationCommand.ts +++ b/clients/client-redshift/src/commands/CreateHsmConfigurationCommand.ts @@ -99,6 +99,7 @@ export interface CreateHsmConfigurationCommandOutput extends CreateHsmConfigurat * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateHsmConfigurationCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateIntegrationCommand.ts b/clients/client-redshift/src/commands/CreateIntegrationCommand.ts index b71499b12d3b2..47f2b0a708bc5 100644 --- a/clients/client-redshift/src/commands/CreateIntegrationCommand.ts +++ b/clients/client-redshift/src/commands/CreateIntegrationCommand.ts @@ -119,6 +119,7 @@ export interface CreateIntegrationCommandOutput extends Integration, __MetadataB * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateIntegrationCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateRedshiftIdcApplicationCommand.ts b/clients/client-redshift/src/commands/CreateRedshiftIdcApplicationCommand.ts index 63b690c294bdf..d8cb8274b22dd 100644 --- a/clients/client-redshift/src/commands/CreateRedshiftIdcApplicationCommand.ts +++ b/clients/client-redshift/src/commands/CreateRedshiftIdcApplicationCommand.ts @@ -138,6 +138,7 @@ export interface CreateRedshiftIdcApplicationCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateRedshiftIdcApplicationCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateScheduledActionCommand.ts b/clients/client-redshift/src/commands/CreateScheduledActionCommand.ts index 88d8246cfd428..365b82a6e7768 100644 --- a/clients/client-redshift/src/commands/CreateScheduledActionCommand.ts +++ b/clients/client-redshift/src/commands/CreateScheduledActionCommand.ts @@ -131,6 +131,7 @@ export interface CreateScheduledActionCommandOutput extends ScheduledAction, __M * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateScheduledActionCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateSnapshotCopyGrantCommand.ts b/clients/client-redshift/src/commands/CreateSnapshotCopyGrantCommand.ts index b4eb8979262d6..e6533728b839b 100644 --- a/clients/client-redshift/src/commands/CreateSnapshotCopyGrantCommand.ts +++ b/clients/client-redshift/src/commands/CreateSnapshotCopyGrantCommand.ts @@ -99,6 +99,7 @@ export interface CreateSnapshotCopyGrantCommandOutput extends CreateSnapshotCopy * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateSnapshotCopyGrantCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateSnapshotScheduleCommand.ts b/clients/client-redshift/src/commands/CreateSnapshotScheduleCommand.ts index aff01684a650c..57ac883d502f0 100644 --- a/clients/client-redshift/src/commands/CreateSnapshotScheduleCommand.ts +++ b/clients/client-redshift/src/commands/CreateSnapshotScheduleCommand.ts @@ -105,6 +105,7 @@ export interface CreateSnapshotScheduleCommandOutput extends SnapshotSchedule, _ * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateSnapshotScheduleCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateTagsCommand.ts b/clients/client-redshift/src/commands/CreateTagsCommand.ts index e45128bed8487..d69cfe4c8211c 100644 --- a/clients/client-redshift/src/commands/CreateTagsCommand.ts +++ b/clients/client-redshift/src/commands/CreateTagsCommand.ts @@ -75,6 +75,7 @@ export interface CreateTagsCommandOutput extends __MetadataBearer {} * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateTagsCommand extends $Command diff --git a/clients/client-redshift/src/commands/CreateUsageLimitCommand.ts b/clients/client-redshift/src/commands/CreateUsageLimitCommand.ts index b0591e38297af..43358156c5da3 100644 --- a/clients/client-redshift/src/commands/CreateUsageLimitCommand.ts +++ b/clients/client-redshift/src/commands/CreateUsageLimitCommand.ts @@ -101,6 +101,7 @@ export interface CreateUsageLimitCommandOutput extends UsageLimit, __MetadataBea * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class CreateUsageLimitCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeauthorizeDataShareCommand.ts b/clients/client-redshift/src/commands/DeauthorizeDataShareCommand.ts index c5395a5037a52..6862300e4b2df 100644 --- a/clients/client-redshift/src/commands/DeauthorizeDataShareCommand.ts +++ b/clients/client-redshift/src/commands/DeauthorizeDataShareCommand.ts @@ -74,6 +74,7 @@ export interface DeauthorizeDataShareCommandOutput extends DataShare, __Metadata * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeauthorizeDataShareCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteAuthenticationProfileCommand.ts b/clients/client-redshift/src/commands/DeleteAuthenticationProfileCommand.ts index 1e3980860779d..1e19a24b962ef 100644 --- a/clients/client-redshift/src/commands/DeleteAuthenticationProfileCommand.ts +++ b/clients/client-redshift/src/commands/DeleteAuthenticationProfileCommand.ts @@ -62,6 +62,7 @@ export interface DeleteAuthenticationProfileCommandOutput extends DeleteAuthenti * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteAuthenticationProfileCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteClusterCommand.ts b/clients/client-redshift/src/commands/DeleteClusterCommand.ts index a771b99b8a0ba..1e07824ab3b87 100644 --- a/clients/client-redshift/src/commands/DeleteClusterCommand.ts +++ b/clients/client-redshift/src/commands/DeleteClusterCommand.ts @@ -280,6 +280,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResult, __Metad * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteClusterCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteClusterParameterGroupCommand.ts b/clients/client-redshift/src/commands/DeleteClusterParameterGroupCommand.ts index 4be87a44657d5..ca47751badd4a 100644 --- a/clients/client-redshift/src/commands/DeleteClusterParameterGroupCommand.ts +++ b/clients/client-redshift/src/commands/DeleteClusterParameterGroupCommand.ts @@ -65,6 +65,7 @@ export interface DeleteClusterParameterGroupCommandOutput extends __MetadataBear * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteClusterParameterGroupCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteClusterSecurityGroupCommand.ts b/clients/client-redshift/src/commands/DeleteClusterSecurityGroupCommand.ts index 99d45b8e45a2b..9c539fdd892e2 100644 --- a/clients/client-redshift/src/commands/DeleteClusterSecurityGroupCommand.ts +++ b/clients/client-redshift/src/commands/DeleteClusterSecurityGroupCommand.ts @@ -68,6 +68,7 @@ export interface DeleteClusterSecurityGroupCommandOutput extends __MetadataBeare * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteClusterSecurityGroupCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteClusterSnapshotCommand.ts b/clients/client-redshift/src/commands/DeleteClusterSnapshotCommand.ts index 5f78aa1837708..725f21994833c 100644 --- a/clients/client-redshift/src/commands/DeleteClusterSnapshotCommand.ts +++ b/clients/client-redshift/src/commands/DeleteClusterSnapshotCommand.ts @@ -119,6 +119,7 @@ export interface DeleteClusterSnapshotCommandOutput extends DeleteClusterSnapsho * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteClusterSnapshotCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteClusterSubnetGroupCommand.ts b/clients/client-redshift/src/commands/DeleteClusterSubnetGroupCommand.ts index 1355f7292aaee..dd38dcd9280f4 100644 --- a/clients/client-redshift/src/commands/DeleteClusterSubnetGroupCommand.ts +++ b/clients/client-redshift/src/commands/DeleteClusterSubnetGroupCommand.ts @@ -63,6 +63,7 @@ export interface DeleteClusterSubnetGroupCommandOutput extends __MetadataBearer * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteClusterSubnetGroupCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteCustomDomainAssociationCommand.ts b/clients/client-redshift/src/commands/DeleteCustomDomainAssociationCommand.ts index 7d383636ebf7e..62d88896195ac 100644 --- a/clients/client-redshift/src/commands/DeleteCustomDomainAssociationCommand.ts +++ b/clients/client-redshift/src/commands/DeleteCustomDomainAssociationCommand.ts @@ -70,6 +70,7 @@ export interface DeleteCustomDomainAssociationCommandOutput extends __MetadataBe * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteCustomDomainAssociationCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteEndpointAccessCommand.ts b/clients/client-redshift/src/commands/DeleteEndpointAccessCommand.ts index d6fe7001399dd..4b5d102e58d7a 100644 --- a/clients/client-redshift/src/commands/DeleteEndpointAccessCommand.ts +++ b/clients/client-redshift/src/commands/DeleteEndpointAccessCommand.ts @@ -97,6 +97,7 @@ export interface DeleteEndpointAccessCommandOutput extends EndpointAccess, __Met * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteEndpointAccessCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteEventSubscriptionCommand.ts b/clients/client-redshift/src/commands/DeleteEventSubscriptionCommand.ts index 8878ebf73cc3a..9357b0dc59de4 100644 --- a/clients/client-redshift/src/commands/DeleteEventSubscriptionCommand.ts +++ b/clients/client-redshift/src/commands/DeleteEventSubscriptionCommand.ts @@ -61,6 +61,7 @@ export interface DeleteEventSubscriptionCommandOutput extends __MetadataBearer { * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteEventSubscriptionCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteHsmClientCertificateCommand.ts b/clients/client-redshift/src/commands/DeleteHsmClientCertificateCommand.ts index 992435bab7c1e..f9d809bc1a200 100644 --- a/clients/client-redshift/src/commands/DeleteHsmClientCertificateCommand.ts +++ b/clients/client-redshift/src/commands/DeleteHsmClientCertificateCommand.ts @@ -61,6 +61,7 @@ export interface DeleteHsmClientCertificateCommandOutput extends __MetadataBeare * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteHsmClientCertificateCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteHsmConfigurationCommand.ts b/clients/client-redshift/src/commands/DeleteHsmConfigurationCommand.ts index 1dc16bd146013..68193a895538a 100644 --- a/clients/client-redshift/src/commands/DeleteHsmConfigurationCommand.ts +++ b/clients/client-redshift/src/commands/DeleteHsmConfigurationCommand.ts @@ -60,6 +60,7 @@ export interface DeleteHsmConfigurationCommandOutput extends __MetadataBearer {} * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteHsmConfigurationCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteIntegrationCommand.ts b/clients/client-redshift/src/commands/DeleteIntegrationCommand.ts index 59cd473bda24b..27a47ce29af79 100644 --- a/clients/client-redshift/src/commands/DeleteIntegrationCommand.ts +++ b/clients/client-redshift/src/commands/DeleteIntegrationCommand.ts @@ -91,6 +91,7 @@ export interface DeleteIntegrationCommandOutput extends Integration, __MetadataB * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteIntegrationCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeletePartnerCommand.ts b/clients/client-redshift/src/commands/DeletePartnerCommand.ts index e5aa921755922..b1b156e18eb48 100644 --- a/clients/client-redshift/src/commands/DeletePartnerCommand.ts +++ b/clients/client-redshift/src/commands/DeletePartnerCommand.ts @@ -72,6 +72,7 @@ export interface DeletePartnerCommandOutput extends PartnerIntegrationOutputMess * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeletePartnerCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteRedshiftIdcApplicationCommand.ts b/clients/client-redshift/src/commands/DeleteRedshiftIdcApplicationCommand.ts index e4bf0f263aa5b..6768713cd4245 100644 --- a/clients/client-redshift/src/commands/DeleteRedshiftIdcApplicationCommand.ts +++ b/clients/client-redshift/src/commands/DeleteRedshiftIdcApplicationCommand.ts @@ -66,6 +66,7 @@ export interface DeleteRedshiftIdcApplicationCommandOutput extends __MetadataBea * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteRedshiftIdcApplicationCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-redshift/src/commands/DeleteResourcePolicyCommand.ts index 4a45bf37da2d1..6cc768fb6f52e 100644 --- a/clients/client-redshift/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-redshift/src/commands/DeleteResourcePolicyCommand.ts @@ -59,6 +59,7 @@ export interface DeleteResourcePolicyCommandOutput extends __MetadataBearer {} * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteScheduledActionCommand.ts b/clients/client-redshift/src/commands/DeleteScheduledActionCommand.ts index dcc184b278c17..36bb968307840 100644 --- a/clients/client-redshift/src/commands/DeleteScheduledActionCommand.ts +++ b/clients/client-redshift/src/commands/DeleteScheduledActionCommand.ts @@ -60,6 +60,7 @@ export interface DeleteScheduledActionCommandOutput extends __MetadataBearer {} * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteScheduledActionCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteSnapshotCopyGrantCommand.ts b/clients/client-redshift/src/commands/DeleteSnapshotCopyGrantCommand.ts index 051e795b04c95..cd766ca5538db 100644 --- a/clients/client-redshift/src/commands/DeleteSnapshotCopyGrantCommand.ts +++ b/clients/client-redshift/src/commands/DeleteSnapshotCopyGrantCommand.ts @@ -61,6 +61,7 @@ export interface DeleteSnapshotCopyGrantCommandOutput extends __MetadataBearer { * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteSnapshotCopyGrantCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteSnapshotScheduleCommand.ts b/clients/client-redshift/src/commands/DeleteSnapshotScheduleCommand.ts index 489f4d4965a4f..eec349005712c 100644 --- a/clients/client-redshift/src/commands/DeleteSnapshotScheduleCommand.ts +++ b/clients/client-redshift/src/commands/DeleteSnapshotScheduleCommand.ts @@ -59,6 +59,7 @@ export interface DeleteSnapshotScheduleCommandOutput extends __MetadataBearer {} * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteSnapshotScheduleCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteTagsCommand.ts b/clients/client-redshift/src/commands/DeleteTagsCommand.ts index daeb74917f34a..83a15b2b2034f 100644 --- a/clients/client-redshift/src/commands/DeleteTagsCommand.ts +++ b/clients/client-redshift/src/commands/DeleteTagsCommand.ts @@ -63,6 +63,7 @@ export interface DeleteTagsCommandOutput extends __MetadataBearer {} * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteTagsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeleteUsageLimitCommand.ts b/clients/client-redshift/src/commands/DeleteUsageLimitCommand.ts index a14a2b58a7b26..2fe2190fbd6a1 100644 --- a/clients/client-redshift/src/commands/DeleteUsageLimitCommand.ts +++ b/clients/client-redshift/src/commands/DeleteUsageLimitCommand.ts @@ -59,6 +59,7 @@ export interface DeleteUsageLimitCommandOutput extends __MetadataBearer {} * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeleteUsageLimitCommand extends $Command diff --git a/clients/client-redshift/src/commands/DeregisterNamespaceCommand.ts b/clients/client-redshift/src/commands/DeregisterNamespaceCommand.ts index 6196e254ebb91..fa5a7fa907a82 100644 --- a/clients/client-redshift/src/commands/DeregisterNamespaceCommand.ts +++ b/clients/client-redshift/src/commands/DeregisterNamespaceCommand.ts @@ -77,6 +77,7 @@ export interface DeregisterNamespaceCommandOutput extends DeregisterNamespaceOut * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DeregisterNamespaceCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-redshift/src/commands/DescribeAccountAttributesCommand.ts index b832f3c5db331..da836d03f730f 100644 --- a/clients/client-redshift/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-redshift/src/commands/DescribeAccountAttributesCommand.ts @@ -67,6 +67,7 @@ export interface DescribeAccountAttributesCommandOutput extends AccountAttribute * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeAccountAttributesCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeAuthenticationProfilesCommand.ts b/clients/client-redshift/src/commands/DescribeAuthenticationProfilesCommand.ts index 3d9260311f933..f654881389224 100644 --- a/clients/client-redshift/src/commands/DescribeAuthenticationProfilesCommand.ts +++ b/clients/client-redshift/src/commands/DescribeAuthenticationProfilesCommand.ts @@ -72,6 +72,7 @@ export interface DescribeAuthenticationProfilesCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeAuthenticationProfilesCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeClusterDbRevisionsCommand.ts b/clients/client-redshift/src/commands/DescribeClusterDbRevisionsCommand.ts index c848cae56a74e..4a5063005ba66 100644 --- a/clients/client-redshift/src/commands/DescribeClusterDbRevisionsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterDbRevisionsCommand.ts @@ -79,6 +79,7 @@ export interface DescribeClusterDbRevisionsCommandOutput extends ClusterDbRevisi * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeClusterDbRevisionsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeClusterParameterGroupsCommand.ts b/clients/client-redshift/src/commands/DescribeClusterParameterGroupsCommand.ts index b47642df8a569..ba1639ff886ea 100644 --- a/clients/client-redshift/src/commands/DescribeClusterParameterGroupsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterParameterGroupsCommand.ts @@ -102,6 +102,7 @@ export interface DescribeClusterParameterGroupsCommandOutput extends ClusterPara * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeClusterParameterGroupsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeClusterParametersCommand.ts b/clients/client-redshift/src/commands/DescribeClusterParametersCommand.ts index 2b013940ceaaa..745dd1e281fdb 100644 --- a/clients/client-redshift/src/commands/DescribeClusterParametersCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterParametersCommand.ts @@ -86,6 +86,7 @@ export interface DescribeClusterParametersCommandOutput extends ClusterParameter * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeClusterParametersCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeClusterSecurityGroupsCommand.ts b/clients/client-redshift/src/commands/DescribeClusterSecurityGroupsCommand.ts index 3eea9c25aef65..d68cab5a03a05 100644 --- a/clients/client-redshift/src/commands/DescribeClusterSecurityGroupsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterSecurityGroupsCommand.ts @@ -125,6 +125,7 @@ export interface DescribeClusterSecurityGroupsCommandOutput extends ClusterSecur * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeClusterSecurityGroupsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeClusterSnapshotsCommand.ts b/clients/client-redshift/src/commands/DescribeClusterSnapshotsCommand.ts index b4af4a37c6973..8df06e914c164 100644 --- a/clients/client-redshift/src/commands/DescribeClusterSnapshotsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterSnapshotsCommand.ts @@ -154,6 +154,7 @@ export interface DescribeClusterSnapshotsCommandOutput extends SnapshotMessage, * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeClusterSnapshotsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeClusterSubnetGroupsCommand.ts b/clients/client-redshift/src/commands/DescribeClusterSubnetGroupsCommand.ts index 63bcc38d164d1..41e1bd860c3b7 100644 --- a/clients/client-redshift/src/commands/DescribeClusterSubnetGroupsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterSubnetGroupsCommand.ts @@ -112,6 +112,7 @@ export interface DescribeClusterSubnetGroupsCommandOutput extends ClusterSubnetG * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeClusterSubnetGroupsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeClusterTracksCommand.ts b/clients/client-redshift/src/commands/DescribeClusterTracksCommand.ts index ffaa329a24f0c..1c5f950ca301d 100644 --- a/clients/client-redshift/src/commands/DescribeClusterTracksCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterTracksCommand.ts @@ -80,6 +80,7 @@ export interface DescribeClusterTracksCommandOutput extends TrackListMessage, __ * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeClusterTracksCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeClusterVersionsCommand.ts b/clients/client-redshift/src/commands/DescribeClusterVersionsCommand.ts index 330fcbeab98d3..c95cdba6d903a 100644 --- a/clients/client-redshift/src/commands/DescribeClusterVersionsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterVersionsCommand.ts @@ -71,6 +71,7 @@ export interface DescribeClusterVersionsCommandOutput extends ClusterVersionsMes * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeClusterVersionsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeClustersCommand.ts b/clients/client-redshift/src/commands/DescribeClustersCommand.ts index 5f4e4a130ddfb..ec53835a164da 100644 --- a/clients/client-redshift/src/commands/DescribeClustersCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClustersCommand.ts @@ -274,6 +274,7 @@ export interface DescribeClustersCommandOutput extends ClustersMessage, __Metada * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeClustersCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeCustomDomainAssociationsCommand.ts b/clients/client-redshift/src/commands/DescribeCustomDomainAssociationsCommand.ts index 82ed313823d3e..2c0f380b842c6 100644 --- a/clients/client-redshift/src/commands/DescribeCustomDomainAssociationsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeCustomDomainAssociationsCommand.ts @@ -82,6 +82,7 @@ export interface DescribeCustomDomainAssociationsCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeCustomDomainAssociationsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeDataSharesCommand.ts b/clients/client-redshift/src/commands/DescribeDataSharesCommand.ts index 39dad97e41b01..e9239b22c6b9c 100644 --- a/clients/client-redshift/src/commands/DescribeDataSharesCommand.ts +++ b/clients/client-redshift/src/commands/DescribeDataSharesCommand.ts @@ -81,6 +81,7 @@ export interface DescribeDataSharesCommandOutput extends DescribeDataSharesResul * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeDataSharesCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeDataSharesForConsumerCommand.ts b/clients/client-redshift/src/commands/DescribeDataSharesForConsumerCommand.ts index 9e3180061912d..ddd95e933e898 100644 --- a/clients/client-redshift/src/commands/DescribeDataSharesForConsumerCommand.ts +++ b/clients/client-redshift/src/commands/DescribeDataSharesForConsumerCommand.ts @@ -86,6 +86,7 @@ export interface DescribeDataSharesForConsumerCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeDataSharesForConsumerCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeDataSharesForProducerCommand.ts b/clients/client-redshift/src/commands/DescribeDataSharesForProducerCommand.ts index 915265ee8e64c..26526d762721c 100644 --- a/clients/client-redshift/src/commands/DescribeDataSharesForProducerCommand.ts +++ b/clients/client-redshift/src/commands/DescribeDataSharesForProducerCommand.ts @@ -86,6 +86,7 @@ export interface DescribeDataSharesForProducerCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeDataSharesForProducerCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeDefaultClusterParametersCommand.ts b/clients/client-redshift/src/commands/DescribeDefaultClusterParametersCommand.ts index 4eb55df53dff1..2078b99dc6ad4 100644 --- a/clients/client-redshift/src/commands/DescribeDefaultClusterParametersCommand.ts +++ b/clients/client-redshift/src/commands/DescribeDefaultClusterParametersCommand.ts @@ -83,6 +83,7 @@ export interface DescribeDefaultClusterParametersCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeDefaultClusterParametersCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeEndpointAccessCommand.ts b/clients/client-redshift/src/commands/DescribeEndpointAccessCommand.ts index 1d53d683e0e40..5f64fa87e5982 100644 --- a/clients/client-redshift/src/commands/DescribeEndpointAccessCommand.ts +++ b/clients/client-redshift/src/commands/DescribeEndpointAccessCommand.ts @@ -101,6 +101,7 @@ export interface DescribeEndpointAccessCommandOutput extends EndpointAccessList, * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeEndpointAccessCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeEndpointAuthorizationCommand.ts b/clients/client-redshift/src/commands/DescribeEndpointAuthorizationCommand.ts index cfff71b9f5018..d6c5f535d1b65 100644 --- a/clients/client-redshift/src/commands/DescribeEndpointAuthorizationCommand.ts +++ b/clients/client-redshift/src/commands/DescribeEndpointAuthorizationCommand.ts @@ -84,6 +84,7 @@ export interface DescribeEndpointAuthorizationCommandOutput extends EndpointAuth * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeEndpointAuthorizationCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeEventCategoriesCommand.ts b/clients/client-redshift/src/commands/DescribeEventCategoriesCommand.ts index 2cffc03f29b5f..99d28b2a585d0 100644 --- a/clients/client-redshift/src/commands/DescribeEventCategoriesCommand.ts +++ b/clients/client-redshift/src/commands/DescribeEventCategoriesCommand.ts @@ -71,6 +71,7 @@ export interface DescribeEventCategoriesCommandOutput extends EventCategoriesMes * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeEventCategoriesCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeEventSubscriptionsCommand.ts b/clients/client-redshift/src/commands/DescribeEventSubscriptionsCommand.ts index 6fefcbea984f3..396eef0cc4f46 100644 --- a/clients/client-redshift/src/commands/DescribeEventSubscriptionsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeEventSubscriptionsCommand.ts @@ -104,6 +104,7 @@ export interface DescribeEventSubscriptionsCommandOutput extends EventSubscripti * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeEventSubscriptionsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeEventsCommand.ts b/clients/client-redshift/src/commands/DescribeEventsCommand.ts index 49a94a7f0d9a9..798ae8396e545 100644 --- a/clients/client-redshift/src/commands/DescribeEventsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeEventsCommand.ts @@ -77,6 +77,7 @@ export interface DescribeEventsCommandOutput extends EventsMessage, __MetadataBe * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeEventsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeHsmClientCertificatesCommand.ts b/clients/client-redshift/src/commands/DescribeHsmClientCertificatesCommand.ts index 95571ebe726e7..e8a2b8619042f 100644 --- a/clients/client-redshift/src/commands/DescribeHsmClientCertificatesCommand.ts +++ b/clients/client-redshift/src/commands/DescribeHsmClientCertificatesCommand.ts @@ -94,6 +94,7 @@ export interface DescribeHsmClientCertificatesCommandOutput extends HsmClientCer * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeHsmClientCertificatesCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeHsmConfigurationsCommand.ts b/clients/client-redshift/src/commands/DescribeHsmConfigurationsCommand.ts index d5f4c3be39aed..4513ed6388457 100644 --- a/clients/client-redshift/src/commands/DescribeHsmConfigurationsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeHsmConfigurationsCommand.ts @@ -93,6 +93,7 @@ export interface DescribeHsmConfigurationsCommandOutput extends HsmConfiguration * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeHsmConfigurationsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeInboundIntegrationsCommand.ts b/clients/client-redshift/src/commands/DescribeInboundIntegrationsCommand.ts index 47581f40f7c64..f34979084ac03 100644 --- a/clients/client-redshift/src/commands/DescribeInboundIntegrationsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeInboundIntegrationsCommand.ts @@ -82,6 +82,7 @@ export interface DescribeInboundIntegrationsCommandOutput extends InboundIntegra * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeInboundIntegrationsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeIntegrationsCommand.ts b/clients/client-redshift/src/commands/DescribeIntegrationsCommand.ts index 1fd8890bbf205..ae8d6f5f827ea 100644 --- a/clients/client-redshift/src/commands/DescribeIntegrationsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeIntegrationsCommand.ts @@ -98,6 +98,7 @@ export interface DescribeIntegrationsCommandOutput extends IntegrationsMessage, * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeIntegrationsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeLoggingStatusCommand.ts b/clients/client-redshift/src/commands/DescribeLoggingStatusCommand.ts index 23b5c5896682f..6131400e4c4b8 100644 --- a/clients/client-redshift/src/commands/DescribeLoggingStatusCommand.ts +++ b/clients/client-redshift/src/commands/DescribeLoggingStatusCommand.ts @@ -72,6 +72,7 @@ export interface DescribeLoggingStatusCommandOutput extends LoggingStatus, __Met * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeLoggingStatusCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeNodeConfigurationOptionsCommand.ts b/clients/client-redshift/src/commands/DescribeNodeConfigurationOptionsCommand.ts index c26159841f8db..271a65bd7d4b2 100644 --- a/clients/client-redshift/src/commands/DescribeNodeConfigurationOptionsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeNodeConfigurationOptionsCommand.ts @@ -102,6 +102,7 @@ export interface DescribeNodeConfigurationOptionsCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeNodeConfigurationOptionsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeOrderableClusterOptionsCommand.ts b/clients/client-redshift/src/commands/DescribeOrderableClusterOptionsCommand.ts index ad8e5861d69da..a374072fcbfdf 100644 --- a/clients/client-redshift/src/commands/DescribeOrderableClusterOptionsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeOrderableClusterOptionsCommand.ts @@ -88,6 +88,7 @@ export interface DescribeOrderableClusterOptionsCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeOrderableClusterOptionsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribePartnersCommand.ts b/clients/client-redshift/src/commands/DescribePartnersCommand.ts index 407af2b2653bd..e9bbf03ecf35f 100644 --- a/clients/client-redshift/src/commands/DescribePartnersCommand.ts +++ b/clients/client-redshift/src/commands/DescribePartnersCommand.ts @@ -77,6 +77,7 @@ export interface DescribePartnersCommandOutput extends DescribePartnersOutputMes * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribePartnersCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeRedshiftIdcApplicationsCommand.ts b/clients/client-redshift/src/commands/DescribeRedshiftIdcApplicationsCommand.ts index 79b5f23ad43d2..80ac09116532a 100644 --- a/clients/client-redshift/src/commands/DescribeRedshiftIdcApplicationsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeRedshiftIdcApplicationsCommand.ts @@ -113,6 +113,7 @@ export interface DescribeRedshiftIdcApplicationsCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeRedshiftIdcApplicationsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeReservedNodeExchangeStatusCommand.ts b/clients/client-redshift/src/commands/DescribeReservedNodeExchangeStatusCommand.ts index 4ccd1b652d8c5..a4a158ffafc02 100644 --- a/clients/client-redshift/src/commands/DescribeReservedNodeExchangeStatusCommand.ts +++ b/clients/client-redshift/src/commands/DescribeReservedNodeExchangeStatusCommand.ts @@ -90,6 +90,7 @@ export interface DescribeReservedNodeExchangeStatusCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeReservedNodeExchangeStatusCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeReservedNodeOfferingsCommand.ts b/clients/client-redshift/src/commands/DescribeReservedNodeOfferingsCommand.ts index 156f6b84fd66d..2a808cbc57dac 100644 --- a/clients/client-redshift/src/commands/DescribeReservedNodeOfferingsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeReservedNodeOfferingsCommand.ts @@ -97,6 +97,7 @@ export interface DescribeReservedNodeOfferingsCommandOutput extends ReservedNode * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeReservedNodeOfferingsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeReservedNodesCommand.ts b/clients/client-redshift/src/commands/DescribeReservedNodesCommand.ts index d0c52d4fb7570..93635be9949e6 100644 --- a/clients/client-redshift/src/commands/DescribeReservedNodesCommand.ts +++ b/clients/client-redshift/src/commands/DescribeReservedNodesCommand.ts @@ -86,6 +86,7 @@ export interface DescribeReservedNodesCommandOutput extends ReservedNodesMessage * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeReservedNodesCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeResizeCommand.ts b/clients/client-redshift/src/commands/DescribeResizeCommand.ts index 48030813f8863..fb9cd5987f2d3 100644 --- a/clients/client-redshift/src/commands/DescribeResizeCommand.ts +++ b/clients/client-redshift/src/commands/DescribeResizeCommand.ts @@ -92,6 +92,7 @@ export interface DescribeResizeCommandOutput extends ResizeProgressMessage, __Me * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeResizeCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeScheduledActionsCommand.ts b/clients/client-redshift/src/commands/DescribeScheduledActionsCommand.ts index b8b3bb1d1baa0..9e35343765c24 100644 --- a/clients/client-redshift/src/commands/DescribeScheduledActionsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeScheduledActionsCommand.ts @@ -107,6 +107,7 @@ export interface DescribeScheduledActionsCommandOutput extends ScheduledActionsM * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeScheduledActionsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeSnapshotCopyGrantsCommand.ts b/clients/client-redshift/src/commands/DescribeSnapshotCopyGrantsCommand.ts index 0c9f3e6eaf0ff..463b04d926689 100644 --- a/clients/client-redshift/src/commands/DescribeSnapshotCopyGrantsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeSnapshotCopyGrantsCommand.ts @@ -88,6 +88,7 @@ export interface DescribeSnapshotCopyGrantsCommandOutput extends SnapshotCopyGra * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeSnapshotCopyGrantsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeSnapshotSchedulesCommand.ts b/clients/client-redshift/src/commands/DescribeSnapshotSchedulesCommand.ts index 82d7b96fae6a5..205e3d4220d36 100644 --- a/clients/client-redshift/src/commands/DescribeSnapshotSchedulesCommand.ts +++ b/clients/client-redshift/src/commands/DescribeSnapshotSchedulesCommand.ts @@ -91,6 +91,7 @@ export interface DescribeSnapshotSchedulesCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeSnapshotSchedulesCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeStorageCommand.ts b/clients/client-redshift/src/commands/DescribeStorageCommand.ts index 6b56b336fa4f3..75aba62ce00a6 100644 --- a/clients/client-redshift/src/commands/DescribeStorageCommand.ts +++ b/clients/client-redshift/src/commands/DescribeStorageCommand.ts @@ -54,6 +54,7 @@ export interface DescribeStorageCommandOutput extends CustomerStorageMessage, __ * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeStorageCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeTableRestoreStatusCommand.ts b/clients/client-redshift/src/commands/DescribeTableRestoreStatusCommand.ts index 0309b9c34fa69..090e67b0e54ef 100644 --- a/clients/client-redshift/src/commands/DescribeTableRestoreStatusCommand.ts +++ b/clients/client-redshift/src/commands/DescribeTableRestoreStatusCommand.ts @@ -88,6 +88,7 @@ export interface DescribeTableRestoreStatusCommandOutput extends TableRestoreSta * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeTableRestoreStatusCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeTagsCommand.ts b/clients/client-redshift/src/commands/DescribeTagsCommand.ts index ba1e691b71c4d..1d89c77308370 100644 --- a/clients/client-redshift/src/commands/DescribeTagsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeTagsCommand.ts @@ -104,6 +104,7 @@ export interface DescribeTagsCommandOutput extends TaggedResourceListMessage, __ * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeTagsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DescribeUsageLimitsCommand.ts b/clients/client-redshift/src/commands/DescribeUsageLimitsCommand.ts index 9f4f54ec71ef4..a88a3c9380149 100644 --- a/clients/client-redshift/src/commands/DescribeUsageLimitsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeUsageLimitsCommand.ts @@ -108,6 +108,7 @@ export interface DescribeUsageLimitsCommandOutput extends UsageLimitList, __Meta * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DescribeUsageLimitsCommand extends $Command diff --git a/clients/client-redshift/src/commands/DisableLoggingCommand.ts b/clients/client-redshift/src/commands/DisableLoggingCommand.ts index 7e0433ad36630..ad51923486967 100644 --- a/clients/client-redshift/src/commands/DisableLoggingCommand.ts +++ b/clients/client-redshift/src/commands/DisableLoggingCommand.ts @@ -75,6 +75,7 @@ export interface DisableLoggingCommandOutput extends LoggingStatus, __MetadataBe * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DisableLoggingCommand extends $Command diff --git a/clients/client-redshift/src/commands/DisableSnapshotCopyCommand.ts b/clients/client-redshift/src/commands/DisableSnapshotCopyCommand.ts index b9fdf04c89cb4..a9e0df371ebb8 100644 --- a/clients/client-redshift/src/commands/DisableSnapshotCopyCommand.ts +++ b/clients/client-redshift/src/commands/DisableSnapshotCopyCommand.ts @@ -267,6 +267,7 @@ export interface DisableSnapshotCopyCommandOutput extends DisableSnapshotCopyRes * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DisableSnapshotCopyCommand extends $Command diff --git a/clients/client-redshift/src/commands/DisassociateDataShareConsumerCommand.ts b/clients/client-redshift/src/commands/DisassociateDataShareConsumerCommand.ts index 4a6a160774bd3..bb9f056c9850b 100644 --- a/clients/client-redshift/src/commands/DisassociateDataShareConsumerCommand.ts +++ b/clients/client-redshift/src/commands/DisassociateDataShareConsumerCommand.ts @@ -84,6 +84,7 @@ export interface DisassociateDataShareConsumerCommandOutput extends DataShare, _ * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class DisassociateDataShareConsumerCommand extends $Command diff --git a/clients/client-redshift/src/commands/EnableLoggingCommand.ts b/clients/client-redshift/src/commands/EnableLoggingCommand.ts index a57e5536ecb52..7a3ec749add0c 100644 --- a/clients/client-redshift/src/commands/EnableLoggingCommand.ts +++ b/clients/client-redshift/src/commands/EnableLoggingCommand.ts @@ -98,6 +98,7 @@ export interface EnableLoggingCommandOutput extends LoggingStatus, __MetadataBea * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class EnableLoggingCommand extends $Command diff --git a/clients/client-redshift/src/commands/EnableSnapshotCopyCommand.ts b/clients/client-redshift/src/commands/EnableSnapshotCopyCommand.ts index 4ff14eeacf72a..3cb365683ee83 100644 --- a/clients/client-redshift/src/commands/EnableSnapshotCopyCommand.ts +++ b/clients/client-redshift/src/commands/EnableSnapshotCopyCommand.ts @@ -290,6 +290,7 @@ export interface EnableSnapshotCopyCommandOutput extends EnableSnapshotCopyResul * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class EnableSnapshotCopyCommand extends $Command diff --git a/clients/client-redshift/src/commands/FailoverPrimaryComputeCommand.ts b/clients/client-redshift/src/commands/FailoverPrimaryComputeCommand.ts index 6a9a5ef11a5e8..a93642909063b 100644 --- a/clients/client-redshift/src/commands/FailoverPrimaryComputeCommand.ts +++ b/clients/client-redshift/src/commands/FailoverPrimaryComputeCommand.ts @@ -260,6 +260,7 @@ export interface FailoverPrimaryComputeCommandOutput extends FailoverPrimaryComp * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class FailoverPrimaryComputeCommand extends $Command diff --git a/clients/client-redshift/src/commands/GetClusterCredentialsCommand.ts b/clients/client-redshift/src/commands/GetClusterCredentialsCommand.ts index a927fd1753d84..ddfcd64f23164 100644 --- a/clients/client-redshift/src/commands/GetClusterCredentialsCommand.ts +++ b/clients/client-redshift/src/commands/GetClusterCredentialsCommand.ts @@ -93,6 +93,7 @@ export interface GetClusterCredentialsCommandOutput extends ClusterCredentials, * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class GetClusterCredentialsCommand extends $Command diff --git a/clients/client-redshift/src/commands/GetClusterCredentialsWithIAMCommand.ts b/clients/client-redshift/src/commands/GetClusterCredentialsWithIAMCommand.ts index 3b0dc6deb0815..24b02ac07aa1d 100644 --- a/clients/client-redshift/src/commands/GetClusterCredentialsWithIAMCommand.ts +++ b/clients/client-redshift/src/commands/GetClusterCredentialsWithIAMCommand.ts @@ -78,6 +78,7 @@ export interface GetClusterCredentialsWithIAMCommandOutput extends ClusterExtend * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class GetClusterCredentialsWithIAMCommand extends $Command diff --git a/clients/client-redshift/src/commands/GetReservedNodeExchangeConfigurationOptionsCommand.ts b/clients/client-redshift/src/commands/GetReservedNodeExchangeConfigurationOptionsCommand.ts index 1fce2dbea4a11..eec2a87b2c8a7 100644 --- a/clients/client-redshift/src/commands/GetReservedNodeExchangeConfigurationOptionsCommand.ts +++ b/clients/client-redshift/src/commands/GetReservedNodeExchangeConfigurationOptionsCommand.ts @@ -137,6 +137,7 @@ export interface GetReservedNodeExchangeConfigurationOptionsCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class GetReservedNodeExchangeConfigurationOptionsCommand extends $Command diff --git a/clients/client-redshift/src/commands/GetReservedNodeExchangeOfferingsCommand.ts b/clients/client-redshift/src/commands/GetReservedNodeExchangeOfferingsCommand.ts index b23017bf88d20..348d763d16b7f 100644 --- a/clients/client-redshift/src/commands/GetReservedNodeExchangeOfferingsCommand.ts +++ b/clients/client-redshift/src/commands/GetReservedNodeExchangeOfferingsCommand.ts @@ -103,6 +103,7 @@ export interface GetReservedNodeExchangeOfferingsCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class GetReservedNodeExchangeOfferingsCommand extends $Command diff --git a/clients/client-redshift/src/commands/GetResourcePolicyCommand.ts b/clients/client-redshift/src/commands/GetResourcePolicyCommand.ts index b6680d9a5c73e..8194bd97dc211 100644 --- a/clients/client-redshift/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-redshift/src/commands/GetResourcePolicyCommand.ts @@ -67,6 +67,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyResult, * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-redshift/src/commands/ListRecommendationsCommand.ts b/clients/client-redshift/src/commands/ListRecommendationsCommand.ts index d3a8228c68df7..f3524d7c488da 100644 --- a/clients/client-redshift/src/commands/ListRecommendationsCommand.ts +++ b/clients/client-redshift/src/commands/ListRecommendationsCommand.ts @@ -93,6 +93,7 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ListRecommendationsCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyAquaConfigurationCommand.ts b/clients/client-redshift/src/commands/ModifyAquaConfigurationCommand.ts index 77fd01a35745b..dce8c91ea65f1 100644 --- a/clients/client-redshift/src/commands/ModifyAquaConfigurationCommand.ts +++ b/clients/client-redshift/src/commands/ModifyAquaConfigurationCommand.ts @@ -69,6 +69,7 @@ export interface ModifyAquaConfigurationCommandOutput extends ModifyAquaOutputMe * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyAquaConfigurationCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyAuthenticationProfileCommand.ts b/clients/client-redshift/src/commands/ModifyAuthenticationProfileCommand.ts index ca1ffad94cae6..c09b09af24329 100644 --- a/clients/client-redshift/src/commands/ModifyAuthenticationProfileCommand.ts +++ b/clients/client-redshift/src/commands/ModifyAuthenticationProfileCommand.ts @@ -68,6 +68,7 @@ export interface ModifyAuthenticationProfileCommandOutput extends ModifyAuthenti * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyAuthenticationProfileCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyClusterCommand.ts b/clients/client-redshift/src/commands/ModifyClusterCommand.ts index 352e3fecdec27..30823307b2fe9 100644 --- a/clients/client-redshift/src/commands/ModifyClusterCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterCommand.ts @@ -388,6 +388,7 @@ export interface ModifyClusterCommandOutput extends ModifyClusterResult, __Metad * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyClusterCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyClusterDbRevisionCommand.ts b/clients/client-redshift/src/commands/ModifyClusterDbRevisionCommand.ts index 904d58f476a27..601a3a415e6b7 100644 --- a/clients/client-redshift/src/commands/ModifyClusterDbRevisionCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterDbRevisionCommand.ts @@ -262,6 +262,7 @@ export interface ModifyClusterDbRevisionCommandOutput extends ModifyClusterDbRev * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyClusterDbRevisionCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyClusterIamRolesCommand.ts b/clients/client-redshift/src/commands/ModifyClusterIamRolesCommand.ts index e459ba84067a3..d2bed0c9ba08f 100644 --- a/clients/client-redshift/src/commands/ModifyClusterIamRolesCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterIamRolesCommand.ts @@ -265,6 +265,7 @@ export interface ModifyClusterIamRolesCommandOutput extends ModifyClusterIamRole * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyClusterIamRolesCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyClusterMaintenanceCommand.ts b/clients/client-redshift/src/commands/ModifyClusterMaintenanceCommand.ts index da8b1177c9ce8..c02d2bd8708e9 100644 --- a/clients/client-redshift/src/commands/ModifyClusterMaintenanceCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterMaintenanceCommand.ts @@ -259,6 +259,7 @@ export interface ModifyClusterMaintenanceCommandOutput extends ModifyClusterMain * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyClusterMaintenanceCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyClusterParameterGroupCommand.ts b/clients/client-redshift/src/commands/ModifyClusterParameterGroupCommand.ts index 5ee0314c16206..88c01c20b544f 100644 --- a/clients/client-redshift/src/commands/ModifyClusterParameterGroupCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterParameterGroupCommand.ts @@ -82,6 +82,7 @@ export interface ModifyClusterParameterGroupCommandOutput extends ClusterParamet * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyClusterParameterGroupCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyClusterSnapshotCommand.ts b/clients/client-redshift/src/commands/ModifyClusterSnapshotCommand.ts index ae213f1fa16ef..f5f1e93fceda8 100644 --- a/clients/client-redshift/src/commands/ModifyClusterSnapshotCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterSnapshotCommand.ts @@ -119,6 +119,7 @@ export interface ModifyClusterSnapshotCommandOutput extends ModifyClusterSnapsho * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyClusterSnapshotCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyClusterSnapshotScheduleCommand.ts b/clients/client-redshift/src/commands/ModifyClusterSnapshotScheduleCommand.ts index a1407678823c4..e94705559a120 100644 --- a/clients/client-redshift/src/commands/ModifyClusterSnapshotScheduleCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterSnapshotScheduleCommand.ts @@ -68,6 +68,7 @@ export interface ModifyClusterSnapshotScheduleCommandOutput extends __MetadataBe * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyClusterSnapshotScheduleCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyClusterSubnetGroupCommand.ts b/clients/client-redshift/src/commands/ModifyClusterSubnetGroupCommand.ts index 4fec3b4ab46db..43e0aa050f919 100644 --- a/clients/client-redshift/src/commands/ModifyClusterSubnetGroupCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterSubnetGroupCommand.ts @@ -135,6 +135,7 @@ export interface ModifyClusterSubnetGroupCommandOutput extends ModifyClusterSubn * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyClusterSubnetGroupCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyCustomDomainAssociationCommand.ts b/clients/client-redshift/src/commands/ModifyCustomDomainAssociationCommand.ts index a349e94fa541f..053d9a36d488e 100644 --- a/clients/client-redshift/src/commands/ModifyCustomDomainAssociationCommand.ts +++ b/clients/client-redshift/src/commands/ModifyCustomDomainAssociationCommand.ts @@ -78,6 +78,7 @@ export interface ModifyCustomDomainAssociationCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyCustomDomainAssociationCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyEndpointAccessCommand.ts b/clients/client-redshift/src/commands/ModifyEndpointAccessCommand.ts index b529bdc921929..f61560640a7b2 100644 --- a/clients/client-redshift/src/commands/ModifyEndpointAccessCommand.ts +++ b/clients/client-redshift/src/commands/ModifyEndpointAccessCommand.ts @@ -104,6 +104,7 @@ export interface ModifyEndpointAccessCommandOutput extends EndpointAccess, __Met * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyEndpointAccessCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyEventSubscriptionCommand.ts b/clients/client-redshift/src/commands/ModifyEventSubscriptionCommand.ts index b1a8fe04f106e..bba02400a2d45 100644 --- a/clients/client-redshift/src/commands/ModifyEventSubscriptionCommand.ts +++ b/clients/client-redshift/src/commands/ModifyEventSubscriptionCommand.ts @@ -121,6 +121,7 @@ export interface ModifyEventSubscriptionCommandOutput extends ModifyEventSubscri * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyEventSubscriptionCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyIntegrationCommand.ts b/clients/client-redshift/src/commands/ModifyIntegrationCommand.ts index e4b16e1e8f70a..27a5872eccb56 100644 --- a/clients/client-redshift/src/commands/ModifyIntegrationCommand.ts +++ b/clients/client-redshift/src/commands/ModifyIntegrationCommand.ts @@ -97,6 +97,7 @@ export interface ModifyIntegrationCommandOutput extends Integration, __MetadataB * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyIntegrationCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyRedshiftIdcApplicationCommand.ts b/clients/client-redshift/src/commands/ModifyRedshiftIdcApplicationCommand.ts index 36634145147ba..dd537a6c15f63 100644 --- a/clients/client-redshift/src/commands/ModifyRedshiftIdcApplicationCommand.ts +++ b/clients/client-redshift/src/commands/ModifyRedshiftIdcApplicationCommand.ts @@ -134,6 +134,7 @@ export interface ModifyRedshiftIdcApplicationCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyRedshiftIdcApplicationCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyScheduledActionCommand.ts b/clients/client-redshift/src/commands/ModifyScheduledActionCommand.ts index 8c9806c1c01dc..0ff67708920bb 100644 --- a/clients/client-redshift/src/commands/ModifyScheduledActionCommand.ts +++ b/clients/client-redshift/src/commands/ModifyScheduledActionCommand.ts @@ -128,6 +128,7 @@ export interface ModifyScheduledActionCommandOutput extends ScheduledAction, __M * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyScheduledActionCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifySnapshotCopyRetentionPeriodCommand.ts b/clients/client-redshift/src/commands/ModifySnapshotCopyRetentionPeriodCommand.ts index d07686a62ebba..a577543019601 100644 --- a/clients/client-redshift/src/commands/ModifySnapshotCopyRetentionPeriodCommand.ts +++ b/clients/client-redshift/src/commands/ModifySnapshotCopyRetentionPeriodCommand.ts @@ -278,6 +278,7 @@ export interface ModifySnapshotCopyRetentionPeriodCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifySnapshotCopyRetentionPeriodCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifySnapshotScheduleCommand.ts b/clients/client-redshift/src/commands/ModifySnapshotScheduleCommand.ts index bd7223794f9bd..ef94024ab6226 100644 --- a/clients/client-redshift/src/commands/ModifySnapshotScheduleCommand.ts +++ b/clients/client-redshift/src/commands/ModifySnapshotScheduleCommand.ts @@ -89,6 +89,7 @@ export interface ModifySnapshotScheduleCommandOutput extends SnapshotSchedule, _ * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifySnapshotScheduleCommand extends $Command diff --git a/clients/client-redshift/src/commands/ModifyUsageLimitCommand.ts b/clients/client-redshift/src/commands/ModifyUsageLimitCommand.ts index e80fad4ca2a7d..9e001edf38f91 100644 --- a/clients/client-redshift/src/commands/ModifyUsageLimitCommand.ts +++ b/clients/client-redshift/src/commands/ModifyUsageLimitCommand.ts @@ -80,6 +80,7 @@ export interface ModifyUsageLimitCommandOutput extends UsageLimit, __MetadataBea * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ModifyUsageLimitCommand extends $Command diff --git a/clients/client-redshift/src/commands/PauseClusterCommand.ts b/clients/client-redshift/src/commands/PauseClusterCommand.ts index 1eb2c84147288..c8b22833811c6 100644 --- a/clients/client-redshift/src/commands/PauseClusterCommand.ts +++ b/clients/client-redshift/src/commands/PauseClusterCommand.ts @@ -254,6 +254,7 @@ export interface PauseClusterCommandOutput extends PauseClusterResult, __Metadat * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class PauseClusterCommand extends $Command diff --git a/clients/client-redshift/src/commands/PurchaseReservedNodeOfferingCommand.ts b/clients/client-redshift/src/commands/PurchaseReservedNodeOfferingCommand.ts index aa83d933e6f6c..2c8b29953d37b 100644 --- a/clients/client-redshift/src/commands/PurchaseReservedNodeOfferingCommand.ts +++ b/clients/client-redshift/src/commands/PurchaseReservedNodeOfferingCommand.ts @@ -100,6 +100,7 @@ export interface PurchaseReservedNodeOfferingCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class PurchaseReservedNodeOfferingCommand extends $Command diff --git a/clients/client-redshift/src/commands/PutResourcePolicyCommand.ts b/clients/client-redshift/src/commands/PutResourcePolicyCommand.ts index 4a86a8ac4da4c..ca25fe94e0036 100644 --- a/clients/client-redshift/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-redshift/src/commands/PutResourcePolicyCommand.ts @@ -71,6 +71,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyResult, * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-redshift/src/commands/RebootClusterCommand.ts b/clients/client-redshift/src/commands/RebootClusterCommand.ts index e9c6ec0a58be7..b4ab2043f6b6b 100644 --- a/clients/client-redshift/src/commands/RebootClusterCommand.ts +++ b/clients/client-redshift/src/commands/RebootClusterCommand.ts @@ -257,6 +257,7 @@ export interface RebootClusterCommandOutput extends RebootClusterResult, __Metad * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class RebootClusterCommand extends $Command diff --git a/clients/client-redshift/src/commands/RegisterNamespaceCommand.ts b/clients/client-redshift/src/commands/RegisterNamespaceCommand.ts index 3ddeedecb0bc7..073491d8aa642 100644 --- a/clients/client-redshift/src/commands/RegisterNamespaceCommand.ts +++ b/clients/client-redshift/src/commands/RegisterNamespaceCommand.ts @@ -76,6 +76,7 @@ export interface RegisterNamespaceCommandOutput extends RegisterNamespaceOutputM * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class RegisterNamespaceCommand extends $Command diff --git a/clients/client-redshift/src/commands/RejectDataShareCommand.ts b/clients/client-redshift/src/commands/RejectDataShareCommand.ts index 71aca261be9b4..d582dcef039d3 100644 --- a/clients/client-redshift/src/commands/RejectDataShareCommand.ts +++ b/clients/client-redshift/src/commands/RejectDataShareCommand.ts @@ -74,6 +74,7 @@ export interface RejectDataShareCommandOutput extends DataShare, __MetadataBeare * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class RejectDataShareCommand extends $Command diff --git a/clients/client-redshift/src/commands/ResetClusterParameterGroupCommand.ts b/clients/client-redshift/src/commands/ResetClusterParameterGroupCommand.ts index fe33a6eea5534..2abce1ae256c7 100644 --- a/clients/client-redshift/src/commands/ResetClusterParameterGroupCommand.ts +++ b/clients/client-redshift/src/commands/ResetClusterParameterGroupCommand.ts @@ -82,6 +82,7 @@ export interface ResetClusterParameterGroupCommandOutput extends ClusterParamete * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ResetClusterParameterGroupCommand extends $Command diff --git a/clients/client-redshift/src/commands/ResizeClusterCommand.ts b/clients/client-redshift/src/commands/ResizeClusterCommand.ts index 474ac0073c039..fc3493cebdcd1 100644 --- a/clients/client-redshift/src/commands/ResizeClusterCommand.ts +++ b/clients/client-redshift/src/commands/ResizeClusterCommand.ts @@ -335,6 +335,7 @@ export interface ResizeClusterCommandOutput extends ResizeClusterResult, __Metad * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ResizeClusterCommand extends $Command diff --git a/clients/client-redshift/src/commands/RestoreFromClusterSnapshotCommand.ts b/clients/client-redshift/src/commands/RestoreFromClusterSnapshotCommand.ts index d15ec398446ac..cdfb56fba2df6 100644 --- a/clients/client-redshift/src/commands/RestoreFromClusterSnapshotCommand.ts +++ b/clients/client-redshift/src/commands/RestoreFromClusterSnapshotCommand.ts @@ -439,6 +439,7 @@ export interface RestoreFromClusterSnapshotCommandOutput extends RestoreFromClus * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class RestoreFromClusterSnapshotCommand extends $Command diff --git a/clients/client-redshift/src/commands/RestoreTableFromClusterSnapshotCommand.ts b/clients/client-redshift/src/commands/RestoreTableFromClusterSnapshotCommand.ts index 8fdaa494e42b6..4eed1b4e587ad 100644 --- a/clients/client-redshift/src/commands/RestoreTableFromClusterSnapshotCommand.ts +++ b/clients/client-redshift/src/commands/RestoreTableFromClusterSnapshotCommand.ts @@ -122,6 +122,7 @@ export interface RestoreTableFromClusterSnapshotCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class RestoreTableFromClusterSnapshotCommand extends $Command diff --git a/clients/client-redshift/src/commands/ResumeClusterCommand.ts b/clients/client-redshift/src/commands/ResumeClusterCommand.ts index 71cb8dbecd687..76c33df4663df 100644 --- a/clients/client-redshift/src/commands/ResumeClusterCommand.ts +++ b/clients/client-redshift/src/commands/ResumeClusterCommand.ts @@ -258,6 +258,7 @@ export interface ResumeClusterCommandOutput extends ResumeClusterResult, __Metad * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class ResumeClusterCommand extends $Command diff --git a/clients/client-redshift/src/commands/RevokeClusterSecurityGroupIngressCommand.ts b/clients/client-redshift/src/commands/RevokeClusterSecurityGroupIngressCommand.ts index 960edb31cb145..9d7792cac376f 100644 --- a/clients/client-redshift/src/commands/RevokeClusterSecurityGroupIngressCommand.ts +++ b/clients/client-redshift/src/commands/RevokeClusterSecurityGroupIngressCommand.ts @@ -112,6 +112,7 @@ export interface RevokeClusterSecurityGroupIngressCommandOutput * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class RevokeClusterSecurityGroupIngressCommand extends $Command diff --git a/clients/client-redshift/src/commands/RevokeEndpointAccessCommand.ts b/clients/client-redshift/src/commands/RevokeEndpointAccessCommand.ts index 912916e29b8c0..0b56398de89fb 100644 --- a/clients/client-redshift/src/commands/RevokeEndpointAccessCommand.ts +++ b/clients/client-redshift/src/commands/RevokeEndpointAccessCommand.ts @@ -93,6 +93,7 @@ export interface RevokeEndpointAccessCommandOutput extends EndpointAuthorization * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class RevokeEndpointAccessCommand extends $Command diff --git a/clients/client-redshift/src/commands/RevokeSnapshotAccessCommand.ts b/clients/client-redshift/src/commands/RevokeSnapshotAccessCommand.ts index 8625208847151..cce21e6f7141b 100644 --- a/clients/client-redshift/src/commands/RevokeSnapshotAccessCommand.ts +++ b/clients/client-redshift/src/commands/RevokeSnapshotAccessCommand.ts @@ -128,6 +128,7 @@ export interface RevokeSnapshotAccessCommandOutput extends RevokeSnapshotAccessR * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class RevokeSnapshotAccessCommand extends $Command diff --git a/clients/client-redshift/src/commands/RotateEncryptionKeyCommand.ts b/clients/client-redshift/src/commands/RotateEncryptionKeyCommand.ts index 1d6f69ee1bf89..3bbbebbbdbb2c 100644 --- a/clients/client-redshift/src/commands/RotateEncryptionKeyCommand.ts +++ b/clients/client-redshift/src/commands/RotateEncryptionKeyCommand.ts @@ -261,6 +261,7 @@ export interface RotateEncryptionKeyCommandOutput extends RotateEncryptionKeyRes * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class RotateEncryptionKeyCommand extends $Command diff --git a/clients/client-redshift/src/commands/UpdatePartnerStatusCommand.ts b/clients/client-redshift/src/commands/UpdatePartnerStatusCommand.ts index d1d9183ab9c03..5f25121ff9bf4 100644 --- a/clients/client-redshift/src/commands/UpdatePartnerStatusCommand.ts +++ b/clients/client-redshift/src/commands/UpdatePartnerStatusCommand.ts @@ -75,6 +75,7 @@ export interface UpdatePartnerStatusCommandOutput extends PartnerIntegrationOutp * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* + * * @public */ export class UpdatePartnerStatusCommand extends $Command diff --git a/clients/client-rekognition/src/commands/AssociateFacesCommand.ts b/clients/client-rekognition/src/commands/AssociateFacesCommand.ts index b266ab3ad59a4..ba340b2843d99 100644 --- a/clients/client-rekognition/src/commands/AssociateFacesCommand.ts +++ b/clients/client-rekognition/src/commands/AssociateFacesCommand.ts @@ -139,52 +139,52 @@ export interface AssociateFacesCommandOutput extends AssociateFacesResponse, __M * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example AssociateFaces * ```javascript * // This operation associates one or more faces with an existing UserID. * const input = { - * "ClientRequestToken": "550e8400-e29b-41d4-a716-446655440002", - * "CollectionId": "MyCollection", - * "FaceIds": [ + * ClientRequestToken: "550e8400-e29b-41d4-a716-446655440002", + * CollectionId: "MyCollection", + * FaceIds: [ * "f5817d37-94f6-4335-bfee-6cf79a3d806e", * "851cb847-dccc-4fea-9309-9f4805967855", * "35ebbb41-7f67-4263-908d-dd0ecba05ab9" * ], - * "UserId": "DemoUser", - * "UserMatchThreshold": 70 + * UserId: "DemoUser", + * UserMatchThreshold: 70 * }; * const command = new AssociateFacesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AssociatedFaces": [ + * AssociatedFaces: [ * { - * "FaceId": "35ebbb41-7f67-4263-908d-dd0ecba05ab9" + * FaceId: "35ebbb41-7f67-4263-908d-dd0ecba05ab9" * } * ], - * "UnsuccessfulFaceAssociations": [ + * UnsuccessfulFaceAssociations: [ * { - * "Confidence": 0.9375374913215637, - * "FaceId": "f5817d37-94f6-4335-bfee-6cf79a3d806e", - * "Reasons": [ + * Confidence: 0.9375374913215637, + * FaceId: "f5817d37-94f6-4335-bfee-6cf79a3d806e", + * Reasons: [ * "LOW_MATCH_CONFIDENCE" * ] * }, * { - * "FaceId": "851cb847-dccc-4fea-9309-9f4805967855", - * "Reasons": [ + * FaceId: "851cb847-dccc-4fea-9309-9f4805967855", + * Reasons: [ * "ASSOCIATED_TO_A_DIFFERENT_USER" * ], - * "UserId": "demoUser2" + * UserId: "demoUser2" * } * ], - * "UserStatus": "UPDATING" + * UserStatus: "UPDATING" * } * *\/ - * // example id: associatefaces-1686181269281 * ``` * + * @public */ export class AssociateFacesCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/CompareFacesCommand.ts b/clients/client-rekognition/src/commands/CompareFacesCommand.ts index 91cf48a42bd09..dd12058e6274d 100644 --- a/clients/client-rekognition/src/commands/CompareFacesCommand.ts +++ b/clients/client-rekognition/src/commands/CompareFacesCommand.ts @@ -233,57 +233,57 @@ export interface CompareFacesCommandOutput extends CompareFacesResponse, __Metad * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To compare two images * ```javascript * // This operation compares the largest face detected in the source image with each face detected in the target image. * const input = { - * "SimilarityThreshold": 90, - * "SourceImage": { - * "S3Object": { - * "Bucket": "mybucket", - * "Name": "mysourceimage" + * SimilarityThreshold: 90, + * SourceImage: { + * S3Object: { + * Bucket: "mybucket", + * Name: "mysourceimage" * } * }, - * "TargetImage": { - * "S3Object": { - * "Bucket": "mybucket", - * "Name": "mytargetimage" + * TargetImage: { + * S3Object: { + * Bucket: "mybucket", + * Name: "mytargetimage" * } * } * }; * const command = new CompareFacesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FaceMatches": [ + * FaceMatches: [ * { - * "Face": { - * "BoundingBox": { - * "Height": 0.33481481671333313, - * "Left": 0.31888890266418457, - * "Top": 0.4933333396911621, - * "Width": 0.25 + * Face: { + * BoundingBox: { + * Height: 0.33481481671333313, + * Left: 0.31888890266418457, + * Top: 0.4933333396911621, + * Width: 0.25 * }, - * "Confidence": 99.9991226196289 + * Confidence: 99.9991226196289 * }, - * "Similarity": 100 + * Similarity: 100 * } * ], - * "SourceImageFace": { - * "BoundingBox": { - * "Height": 0.33481481671333313, - * "Left": 0.31888890266418457, - * "Top": 0.4933333396911621, - * "Width": 0.25 + * SourceImageFace: { + * BoundingBox: { + * Height: 0.33481481671333313, + * Left: 0.31888890266418457, + * Top: 0.4933333396911621, + * Width: 0.25 * }, - * "Confidence": 99.9991226196289 + * Confidence: 99.9991226196289 * } * } * *\/ - * // example id: to-compare-two-images-1482181985581 * ``` * + * @public */ export class CompareFacesCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/CopyProjectVersionCommand.ts b/clients/client-rekognition/src/commands/CopyProjectVersionCommand.ts index e7111927667ce..4ea14d0088a04 100644 --- a/clients/client-rekognition/src/commands/CopyProjectVersionCommand.ts +++ b/clients/client-rekognition/src/commands/CopyProjectVersionCommand.ts @@ -125,34 +125,34 @@ export interface CopyProjectVersionCommandOutput extends CopyProjectVersionRespo * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example CopyProjectVersion * ```javascript * // Copies a version of an Amazon Rekognition Custom Labels model from a source project to a destination project. * const input = { - * "DestinationProjectArn": "arn:aws:rekognition:us-east-1:555555555555:project/DestinationProject/1656705098765", - * "KmsKeyId": "arn:1234abcd-12ab-34cd-56ef-1234567890ab", - * "OutputConfig": { - * "S3Bucket": "bucket-name", - * "S3KeyPrefix": "path_to_folder" + * DestinationProjectArn: "arn:aws:rekognition:us-east-1:555555555555:project/DestinationProject/1656705098765", + * KmsKeyId: "arn:1234abcd-12ab-34cd-56ef-1234567890ab", + * OutputConfig: { + * S3Bucket: "bucket-name", + * S3KeyPrefix: "path_to_folder" * }, - * "SourceProjectArn": "arn:aws:rekognition:us-east-1:111122223333:project/SourceProject/16565123456", - * "SourceProjectVersionArn": "arn:aws:rekognition:us-east-1:111122223333:project/SourceProject/version/model_1/1656611123456", - * "Tags": { - * "key1": "val1" + * SourceProjectArn: "arn:aws:rekognition:us-east-1:111122223333:project/SourceProject/16565123456", + * SourceProjectVersionArn: "arn:aws:rekognition:us-east-1:111122223333:project/SourceProject/version/model_1/1656611123456", + * Tags: { + * key1: "val1" * }, - * "VersionName": "DestinationVersionName_cross_account" + * VersionName: "DestinationVersionName_cross_account" * }; * const command = new CopyProjectVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ProjectVersionArn": "arn:aws:rekognition:us-east-1:555555555555:project/DestinationProject/version/DestinationVersionName_cross_account/16567050987651" + * ProjectVersionArn: "arn:aws:rekognition:us-east-1:555555555555:project/DestinationProject/version/DestinationVersionName_cross_account/16567050987651" * } * *\/ - * // example id: copyprojectversion-1658203943815 * ``` * + * @public */ export class CopyProjectVersionCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/CreateCollectionCommand.ts b/clients/client-rekognition/src/commands/CreateCollectionCommand.ts index aa016913ee383..ab67e654ca877 100644 --- a/clients/client-rekognition/src/commands/CreateCollectionCommand.ts +++ b/clients/client-rekognition/src/commands/CreateCollectionCommand.ts @@ -99,24 +99,24 @@ export interface CreateCollectionCommandOutput extends CreateCollectionResponse, * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To create a collection * ```javascript * // This operation creates a Rekognition collection for storing image data. * const input = { - * "CollectionId": "myphotos" + * CollectionId: "myphotos" * }; * const command = new CreateCollectionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CollectionArn": "aws:rekognition:us-west-2:123456789012:collection/myphotos", - * "StatusCode": 200 + * CollectionArn: "aws:rekognition:us-west-2:123456789012:collection/myphotos", + * StatusCode: 200 * } * *\/ - * // example id: to-create-a-collection-1481833313674 * ``` * + * @public */ export class CreateCollectionCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/CreateDatasetCommand.ts b/clients/client-rekognition/src/commands/CreateDatasetCommand.ts index c89addc26a302..54af043e9dbb1 100644 --- a/clients/client-rekognition/src/commands/CreateDatasetCommand.ts +++ b/clients/client-rekognition/src/commands/CreateDatasetCommand.ts @@ -123,32 +123,32 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To create an Amazon Rekognition Custom Labels dataset * ```javascript * // Creates an Amazon Rekognition Custom Labels dataset with a manifest file stored in an Amazon S3 bucket. * const input = { - * "DatasetSource": { - * "GroundTruthManifest": { - * "S3Object": { - * "Bucket": "my-bucket", - * "Name": "datasets/flowers_training/manifests/output/output.manifest" + * DatasetSource: { + * GroundTruthManifest: { + * S3Object: { + * Bucket: "my-bucket", + * Name: "datasets/flowers_training/manifests/output/output.manifest" * } * } * }, - * "DatasetType": "TRAIN", - * "ProjectArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/1690474772815" + * DatasetType: "TRAIN", + * ProjectArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-project/1690474772815" * }; * const command = new CreateDatasetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DatasetArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/dataset/train/1690476084535" + * DatasetArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-project/dataset/train/1690476084535" * } * *\/ - * // example id: to-create-an-amazon-rekognition-custom-labels-dataset-1690476237145 * ``` * + * @public */ export class CreateDatasetCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/CreateFaceLivenessSessionCommand.ts b/clients/client-rekognition/src/commands/CreateFaceLivenessSessionCommand.ts index 8e10f588c73a9..72bb7ac382f7a 100644 --- a/clients/client-rekognition/src/commands/CreateFaceLivenessSessionCommand.ts +++ b/clients/client-rekognition/src/commands/CreateFaceLivenessSessionCommand.ts @@ -89,6 +89,7 @@ export interface CreateFaceLivenessSessionCommandOutput extends CreateFaceLivene * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class CreateFaceLivenessSessionCommand extends $Command diff --git a/clients/client-rekognition/src/commands/CreateProjectCommand.ts b/clients/client-rekognition/src/commands/CreateProjectCommand.ts index 68a1afa95aca2..56c04787a7c23 100644 --- a/clients/client-rekognition/src/commands/CreateProjectCommand.ts +++ b/clients/client-rekognition/src/commands/CreateProjectCommand.ts @@ -92,23 +92,23 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To create an Amazon Rekognition Custom Labels project * ```javascript * // Creates an Amazon Rekognition Custom Labels project. * const input = { - * "ProjectName": "my-project" + * ProjectName: "my-project" * }; * const command = new CreateProjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ProjectArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/1690405809285" + * ProjectArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-project/1690405809285" * } * *\/ - * // example id: to-create-an-amazon-rekognition-custom-labels-project-1690405898597 * ``` * + * @public */ export class CreateProjectCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/CreateProjectVersionCommand.ts b/clients/client-rekognition/src/commands/CreateProjectVersionCommand.ts index 6d83876f50fb6..ff1c59907a770 100644 --- a/clients/client-rekognition/src/commands/CreateProjectVersionCommand.ts +++ b/clients/client-rekognition/src/commands/CreateProjectVersionCommand.ts @@ -160,28 +160,28 @@ export interface CreateProjectVersionCommandOutput extends CreateProjectVersionR * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To train an Amazon Rekognition Custom Labels model * ```javascript * // Trains a version of an Amazon Rekognition Custom Labels model. * const input = { - * "OutputConfig": { - * "S3Bucket": "output_bucket", - * "S3KeyPrefix": "output_folder" + * OutputConfig: { + * S3Bucket: "output_bucket", + * S3KeyPrefix: "output_folder" * }, - * "ProjectArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/1690474772815", - * "VersionName": "1" + * ProjectArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-project/1690474772815", + * VersionName: "1" * }; * const command = new CreateProjectVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ProjectVersionArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/1/1690556751958" + * ProjectVersionArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/1/1690556751958" * } * *\/ - * // example id: to-train-an-amazon-rekognition-custom-labels-model-1690555832843 * ``` * + * @public */ export class CreateProjectVersionCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/CreateStreamProcessorCommand.ts b/clients/client-rekognition/src/commands/CreateStreamProcessorCommand.ts index 38e98ba291191..a1057024d7769 100644 --- a/clients/client-rekognition/src/commands/CreateStreamProcessorCommand.ts +++ b/clients/client-rekognition/src/commands/CreateStreamProcessorCommand.ts @@ -170,6 +170,7 @@ export interface CreateStreamProcessorCommandOutput extends CreateStreamProcesso * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class CreateStreamProcessorCommand extends $Command diff --git a/clients/client-rekognition/src/commands/CreateUserCommand.ts b/clients/client-rekognition/src/commands/CreateUserCommand.ts index 4da2e2b911181..04230b3eba576 100644 --- a/clients/client-rekognition/src/commands/CreateUserCommand.ts +++ b/clients/client-rekognition/src/commands/CreateUserCommand.ts @@ -95,19 +95,22 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example CreateUser * ```javascript * // Creates a new User within a collection specified by CollectionId. * const input = { - * "CollectionId": "MyCollection", - * "UserId": "DemoUser" + * CollectionId: "MyCollection", + * UserId: "DemoUser" * }; * const command = new CreateUserCommand(input); - * await client.send(command); - * // example id: createuser-1686181562299 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateUserCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DeleteCollectionCommand.ts b/clients/client-rekognition/src/commands/DeleteCollectionCommand.ts index fe28157188e22..62ce5a5fb95a7 100644 --- a/clients/client-rekognition/src/commands/DeleteCollectionCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteCollectionCommand.ts @@ -79,23 +79,23 @@ export interface DeleteCollectionCommandOutput extends DeleteCollectionResponse, * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To delete a collection * ```javascript * // This operation deletes a Rekognition collection. * const input = { - * "CollectionId": "myphotos" + * CollectionId: "myphotos" * }; * const command = new DeleteCollectionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "StatusCode": 200 + * StatusCode: 200 * } * *\/ - * // example id: to-delete-a-collection-1481838179973 * ``` * + * @public */ export class DeleteCollectionCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DeleteDatasetCommand.ts b/clients/client-rekognition/src/commands/DeleteDatasetCommand.ts index 0c54eb1eb2a74..9b16f9a6d1c7e 100644 --- a/clients/client-rekognition/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteDatasetCommand.ts @@ -95,18 +95,21 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To delete an Amazon Rekognition Custom Labels dataset * ```javascript * // Deletes an Amazon Rekognition Custom Labels dataset. * const input = { - * "DatasetArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/dataset/test/1690556733321" + * DatasetArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-project/dataset/test/1690556733321" * }; * const command = new DeleteDatasetCommand(input); - * await client.send(command); - * // example id: to-delete-an-amazon-rekognition-custom-labels-dataset-1690826556349 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteDatasetCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DeleteFacesCommand.ts b/clients/client-rekognition/src/commands/DeleteFacesCommand.ts index 27b84acc7aad4..6af10585613af 100644 --- a/clients/client-rekognition/src/commands/DeleteFacesCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteFacesCommand.ts @@ -92,28 +92,28 @@ export interface DeleteFacesCommandOutput extends DeleteFacesResponse, __Metadat * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To delete a face * ```javascript * // This operation deletes one or more faces from a Rekognition collection. * const input = { - * "CollectionId": "myphotos", - * "FaceIds": [ + * CollectionId: "myphotos", + * FaceIds: [ * "ff43d742-0c13-5d16-a3e8-03d3f58e980b" * ] * }; * const command = new DeleteFacesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DeletedFaces": [ + * DeletedFaces: [ * "ff43d742-0c13-5d16-a3e8-03d3f58e980b" * ] * } * *\/ - * // example id: to-delete-a-face-1482182799377 * ``` * + * @public */ export class DeleteFacesCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DeleteProjectCommand.ts b/clients/client-rekognition/src/commands/DeleteProjectCommand.ts index 73d21cfbc749a..d7a8422077fe4 100644 --- a/clients/client-rekognition/src/commands/DeleteProjectCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteProjectCommand.ts @@ -86,23 +86,23 @@ export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __Met * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To delete an Amazon Rekognition Custom Labels project * ```javascript * // Deletes an Amazon Rekognition Custom Labels projects. * const input = { - * "ProjectArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/1690405809285" + * ProjectArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-project/1690405809285" * }; * const command = new DeleteProjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Status": "DELETING" + * Status: "DELETING" * } * *\/ - * // example id: to-delete-an-amazon-rekognition-custom-labels-project-1690409093478 * ``` * + * @public */ export class DeleteProjectCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DeleteProjectPolicyCommand.ts b/clients/client-rekognition/src/commands/DeleteProjectPolicyCommand.ts index c248bc7f4f492..c6854efa4dc9b 100644 --- a/clients/client-rekognition/src/commands/DeleteProjectPolicyCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteProjectPolicyCommand.ts @@ -83,20 +83,23 @@ export interface DeleteProjectPolicyCommandOutput extends DeleteProjectPolicyRes * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example DeleteProjectPolicy * ```javascript * // This operation deletes a revision of an existing project policy from an Amazon Rekognition Custom Labels project. * const input = { - * "PolicyName": "testPolicy1", - * "PolicyRevisionId": "3b274c25e9203a56a99e00e3ff205fbc", - * "ProjectArn": "arn:aws:rekognition:us-east-1:111122223333:project/SourceProject/1656557123456" + * PolicyName: "testPolicy1", + * PolicyRevisionId: "3b274c25e9203a56a99e00e3ff205fbc", + * ProjectArn: "arn:aws:rekognition:us-east-1:111122223333:project/SourceProject/1656557123456" * }; * const command = new DeleteProjectPolicyCommand(input); - * await client.send(command); - * // example id: deleteprojectpolicy-1658204413810 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteProjectPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DeleteProjectVersionCommand.ts b/clients/client-rekognition/src/commands/DeleteProjectVersionCommand.ts index 3bf1075ad9941..0e35aa243bd8f 100644 --- a/clients/client-rekognition/src/commands/DeleteProjectVersionCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteProjectVersionCommand.ts @@ -84,23 +84,23 @@ export interface DeleteProjectVersionCommandOutput extends DeleteProjectVersionR * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To delete an Amazon Rekognition Custom Labels model * ```javascript * // Deletes a version of an Amazon Rekognition Custom Labels model. * const input = { - * "ProjectVersionArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/1/1690556751958" + * ProjectVersionArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/1/1690556751958" * }; * const command = new DeleteProjectVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Status": "DELETING" + * Status: "DELETING" * } * *\/ - * // example id: to-delete-an-amazon-rekognition-custom-labels-model-1690827562055 * ``` * + * @public */ export class DeleteProjectVersionCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DeleteStreamProcessorCommand.ts b/clients/client-rekognition/src/commands/DeleteStreamProcessorCommand.ts index 7b7aa0f88a442..a16b3c7170a02 100644 --- a/clients/client-rekognition/src/commands/DeleteStreamProcessorCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteStreamProcessorCommand.ts @@ -77,6 +77,7 @@ export interface DeleteStreamProcessorCommandOutput extends DeleteStreamProcesso * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class DeleteStreamProcessorCommand extends $Command diff --git a/clients/client-rekognition/src/commands/DeleteUserCommand.ts b/clients/client-rekognition/src/commands/DeleteUserCommand.ts index 94159a00b3766..ad38f97653a33 100644 --- a/clients/client-rekognition/src/commands/DeleteUserCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteUserCommand.ts @@ -87,20 +87,23 @@ export interface DeleteUserCommandOutput extends DeleteUserResponse, __MetadataB * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example DeleteUser * ```javascript * // Deletes the specified UserID within the collection. * const input = { - * "ClientRequestToken": "550e8400-e29b-41d4-a716-446655440001", - * "CollectionId": "MyCollection", - * "UserId": "DemoUser" + * ClientRequestToken: "550e8400-e29b-41d4-a716-446655440001", + * CollectionId: "MyCollection", + * UserId: "DemoUser" * }; * const command = new DeleteUserCommand(input); - * await client.send(command); - * // example id: deleteuser-1686181913475 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteUserCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DescribeCollectionCommand.ts b/clients/client-rekognition/src/commands/DescribeCollectionCommand.ts index 901529e39a3ab..edbaec6666a8e 100644 --- a/clients/client-rekognition/src/commands/DescribeCollectionCommand.ts +++ b/clients/client-rekognition/src/commands/DescribeCollectionCommand.ts @@ -83,6 +83,7 @@ export interface DescribeCollectionCommandOutput extends DescribeCollectionRespo * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class DescribeCollectionCommand extends $Command diff --git a/clients/client-rekognition/src/commands/DescribeDatasetCommand.ts b/clients/client-rekognition/src/commands/DescribeDatasetCommand.ts index ea70beddbd2f0..d7749797f2a3d 100644 --- a/clients/client-rekognition/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-rekognition/src/commands/DescribeDatasetCommand.ts @@ -94,35 +94,8 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _ * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public - * @example To describe an Amazon Rekognition Custom Labels dataset - * ```javascript - * // Describes an Amazon Rekognition Custom Labels dataset. - * const input = { - * "DatasetArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/dataset/train/1690476084535" - * }; - * const command = new DescribeDatasetCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "DatasetDescription": { - * "CreationTimestamp": "2023-07-27T09:41:24.738000-07:00", - * "DatasetStats": { - * "ErrorEntries": 0, - * "LabeledEntries": 15, - * "TotalEntries": 15, - * "TotalLabels": 9 - * }, - * "LastUpdatedTimestamp": "2023-07-28T09:46:45.406000-07:00", - * "Status": "UPDATE_FAILED", - * "StatusMessage": "The manifest file contains images from multiple S3 buckets.", - * "StatusMessageCode": "CLIENT_ERROR" - * } - * } - * *\/ - * // example id: to-describe-an-amazon-rekognition-custom-labels-dataset-1690827075604 - * ``` * + * @public */ export class DescribeDatasetCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DescribeProjectVersionsCommand.ts b/clients/client-rekognition/src/commands/DescribeProjectVersionsCommand.ts index f5b6fde4b6c1e..ec2767f798e7d 100644 --- a/clients/client-rekognition/src/commands/DescribeProjectVersionsCommand.ts +++ b/clients/client-rekognition/src/commands/DescribeProjectVersionsCommand.ts @@ -194,112 +194,8 @@ export interface DescribeProjectVersionsCommandOutput extends DescribeProjectVer * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public - * @example To describe an Amazon Rekognition Custom Labels model - * ```javascript - * // Describes a version of an Amazon Rekognition Custom Labels model. - * const input = { - * "ProjectArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/1690474772815", - * "VersionNames": [ - * "1" - * ] - * }; - * const command = new DescribeProjectVersionsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "NextToken": "", - * "ProjectVersionDescriptions": [ - * { - * "BillableTrainingTimeInSeconds": 1899, - * "CreationTimestamp": "2023-07-28T08:05:51.958000-07:00", - * "EvaluationResult": { - * "F1Score": 1, - * "Summary": { - * "S3Object": { - * "Bucket": "custom-labels-console-us-east-1-111111111", - * "Name": "my-model-output/EvaluationResultSummary-my-project-1.json" - * } - * } - * }, - * "ManifestSummary": { - * "S3Object": { - * "Bucket": "custom-labels-console-us-east-1-111111111", - * "Name": "my-model-output/ManifestSummary-my-project-1.json" - * } - * }, - * "OutputConfig": { - * "S3Bucket": "custom-labels-console-us-east-1-111111111", - * "S3KeyPrefix": "my-model-output" - * }, - * "ProjectVersionArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/1/1690556751958", - * "Status": "TRAINING_COMPLETED", - * "StatusMessage": "The model is ready to run.", - * "TestingDataResult": { - * "Input": { - * "AutoCreate": false - * }, - * "Output": { - * "Assets": [ - * { - * "GroundTruthManifest": { - * "S3Object": { - * "Bucket": "custom-labels-console-us-east-1-111111111", - * "Name": "my-model-output/TestingGroundTruth-my-project-1.json" - * } - * } - * } - * ], - * "AutoCreate": false - * }, - * "Validation": { - * "Assets": [ - * { - * "GroundTruthManifest": { - * "S3Object": { - * "Bucket": "custom-labels-console-us-east-1-111111111", - * "Name": "my-model-output/TestingManifestWithValidation-my-project-1.json" - * } - * } - * } - * ] - * } - * }, - * "TrainingDataResult": { - * "Input": {}, - * "Output": { - * "Assets": [ - * { - * "GroundTruthManifest": { - * "S3Object": { - * "Bucket": "custom-labels-console-us-east-1-111111111", - * "Name": "my-model-output/TrainingGroundTruth-my-project-1.json" - * } - * } - * } - * ] - * }, - * "Validation": { - * "Assets": [ - * { - * "GroundTruthManifest": { - * "S3Object": { - * "Bucket": "custom-labels-console-us-east-1-111111111", - * "Name": "my-model-output/TrainingManifestWithValidation-my-project-1.json" - * } - * } - * } - * ] - * } - * }, - * "TrainingEndTimestamp": "2023-07-28T08:33:10.827000-07:00" - * } - * ] - * } - * *\/ - * // example id: to-describes-an-amazon-rekognition-custom-labels-model-1690558265950 - * ``` * + * @public */ export class DescribeProjectVersionsCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DescribeProjectsCommand.ts b/clients/client-rekognition/src/commands/DescribeProjectsCommand.ts index e6d45cc487586..ed420b8cbc10d 100644 --- a/clients/client-rekognition/src/commands/DescribeProjectsCommand.ts +++ b/clients/client-rekognition/src/commands/DescribeProjectsCommand.ts @@ -102,49 +102,8 @@ export interface DescribeProjectsCommandOutput extends DescribeProjectsResponse, * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public - * @example To describe an Amazon Rekognition Custom Labels project. - * ```javascript - * // Describes an Amazon Rekognition Custom Labels projects. - * const input = { - * "ProjectNames": [ - * "my-project" - * ] - * }; - * const command = new DescribeProjectsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ProjectDescriptions": [ - * { - * "CreationTimestamp": "2022-06-13T15:16:00.634000-07:00", - * "Datasets": [ - * { - * "CreationTimestamp": "2022-06-13T15:17:34.620000-07:00", - * "DatasetArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/dataset/test/1655158654491", - * "DatasetType": "TEST", - * "Status": "CREATE_COMPLETE", - * "StatusMessage": "The dataset was successfully created from the manifest file.", - * "StatusMessageCode": "SUCCESS" - * }, - * { - * "CreationTimestamp": "2022-06-13T15:17:50.118000-07:00", - * "DatasetArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/dataset/train/1655158669954", - * "DatasetType": "TRAIN", - * "Status": "CREATE_COMPLETE", - * "StatusMessage": "The dataset was successfully created from the manifest file.", - * "StatusMessageCode": "SUCCESS" - * } - * ], - * "ProjectArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/1655158560634", - * "Status": "CREATED" - * } - * ] - * } - * *\/ - * // example id: to-describe-an-amazon-rekognition-custom-labels-project-1690400952376 - * ``` * + * @public */ export class DescribeProjectsCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DescribeStreamProcessorCommand.ts b/clients/client-rekognition/src/commands/DescribeStreamProcessorCommand.ts index 0d19bdf2daeb7..ec98c249f00c9 100644 --- a/clients/client-rekognition/src/commands/DescribeStreamProcessorCommand.ts +++ b/clients/client-rekognition/src/commands/DescribeStreamProcessorCommand.ts @@ -131,6 +131,7 @@ export interface DescribeStreamProcessorCommandOutput extends DescribeStreamProc * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class DescribeStreamProcessorCommand extends $Command diff --git a/clients/client-rekognition/src/commands/DetectCustomLabelsCommand.ts b/clients/client-rekognition/src/commands/DetectCustomLabelsCommand.ts index 6efac20da640f..f859ff32cf617 100644 --- a/clients/client-rekognition/src/commands/DetectCustomLabelsCommand.ts +++ b/clients/client-rekognition/src/commands/DetectCustomLabelsCommand.ts @@ -164,40 +164,40 @@ export interface DetectCustomLabelsCommandOutput extends DetectCustomLabelsRespo * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To detect custom labels in an image with an Amazon Rekognition Custom Labels model * ```javascript * // Detects custom labels in an image with an Amazon Rekognition Custom Labels model * const input = { - * "Image": { - * "S3Object": { - * "Bucket": "custom-labels-console-us-east-1-1111111111", - * "Name": "assets/flowers_1_test_dataset/camellia4.jpg" + * Image: { + * S3Object: { + * Bucket: "custom-labels-console-us-east-1-1111111111", + * Name: "assets/flowers_1_test_dataset/camellia4.jpg" * } * }, - * "MaxResults": 100, - * "MinConfidence": 50, - * "ProjectVersionArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/my-project.2023-07-31T11.49.37/1690829378219" + * MaxResults: 100, + * MinConfidence: 50, + * ProjectVersionArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/my-project.2023-07-31T11.49.37/1690829378219" * }; * const command = new DetectCustomLabelsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CustomLabels": [ + * CustomLabels: [ * { - * "Confidence": 67.56399536132812, - * "Name": "with_leaves" + * Confidence: 67.56399536132812, + * Name: "with_leaves" * }, * { - * "Confidence": 50.65699768066406, - * "Name": "without_leaves" + * Confidence: 50.65699768066406, + * Name: "without_leaves" * } * ] * } * *\/ - * // example id: to-detect-custom-labels-in-images-with-an-amazon-rekognition-custom-labels-model-1690832037913 * ``` * + * @public */ export class DetectCustomLabelsCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DetectFacesCommand.ts b/clients/client-rekognition/src/commands/DetectFacesCommand.ts index e0cacba4c9c43..7ca58e8ad08f0 100644 --- a/clients/client-rekognition/src/commands/DetectFacesCommand.ts +++ b/clients/client-rekognition/src/commands/DetectFacesCommand.ts @@ -190,75 +190,75 @@ export interface DetectFacesCommandOutput extends DetectFacesResponse, __Metadat * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To detect faces in an image * ```javascript * // This operation detects faces in an image stored in an AWS S3 bucket. * const input = { - * "Image": { - * "S3Object": { - * "Bucket": "mybucket", - * "Name": "myphoto" + * Image: { + * S3Object: { + * Bucket: "mybucket", + * Name: "myphoto" * } * } * }; * const command = new DetectFacesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FaceDetails": [ + * FaceDetails: [ * { - * "BoundingBox": { - * "Height": 0.18000000715255737, - * "Left": 0.5555555820465088, - * "Top": 0.33666667342185974, - * "Width": 0.23999999463558197 + * BoundingBox: { + * Height: 0.18000000715255737, + * Left: 0.5555555820465088, + * Top: 0.33666667342185974, + * Width: 0.23999999463558197 * }, - * "Confidence": 100, - * "Landmarks": [ + * Confidence: 100, + * Landmarks: [ * { - * "Type": "eyeLeft", - * "X": 0.6394737362861633, - * "Y": 0.40819624066352844 + * Type: "eyeLeft", + * X: 0.6394737362861633, + * Y: 0.40819624066352844 * }, * { - * "Type": "eyeRight", - * "X": 0.7266660928726196, - * "Y": 0.41039225459098816 + * Type: "eyeRight", + * X: 0.7266660928726196, + * Y: 0.41039225459098816 * }, * { - * "Type": "eyeRight", - * "X": 0.6912462115287781, - * "Y": 0.44240960478782654 + * Type: "eyeRight", + * X: 0.6912462115287781, + * Y: 0.44240960478782654 * }, * { - * "Type": "mouthDown", - * "X": 0.6306198239326477, - * "Y": 0.46700039505958557 + * Type: "mouthDown", + * X: 0.6306198239326477, + * Y: 0.46700039505958557 * }, * { - * "Type": "mouthUp", - * "X": 0.7215608954429626, - * "Y": 0.47114261984825134 + * Type: "mouthUp", + * X: 0.7215608954429626, + * Y: 0.47114261984825134 * } * ], - * "Pose": { - * "Pitch": 4.050806522369385, - * "Roll": 0.9950747489929199, - * "Yaw": 13.693790435791016 + * Pose: { + * Pitch: 4.050806522369385, + * Roll: 0.9950747489929199, + * Yaw: 13.693790435791016 * }, - * "Quality": { - * "Brightness": 37.60169982910156, - * "Sharpness": 80 + * Quality: { + * Brightness: 37.60169982910156, + * Sharpness: 80 * } * } * ], - * "OrientationCorrection": "ROTATE_0" + * OrientationCorrection: "ROTATE_0" * } * *\/ - * // example id: to-detect-faces-in-an-image-1481841782793 * ``` * + * @public */ export class DetectFacesCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DetectLabelsCommand.ts b/clients/client-rekognition/src/commands/DetectLabelsCommand.ts index fa8fb2cdcd97e..a761848577aba 100644 --- a/clients/client-rekognition/src/commands/DetectLabelsCommand.ts +++ b/clients/client-rekognition/src/commands/DetectLabelsCommand.ts @@ -308,39 +308,39 @@ export interface DetectLabelsCommandOutput extends DetectLabelsResponse, __Metad * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To detect labels * ```javascript * // This operation detects labels in the supplied image * const input = { - * "Image": { - * "S3Object": { - * "Bucket": "mybucket", - * "Name": "myphoto" + * Image: { + * S3Object: { + * Bucket: "mybucket", + * Name: "myphoto" * } * }, - * "MaxLabels": 123, - * "MinConfidence": 70 + * MaxLabels: 123, + * MinConfidence: 70 * }; * const command = new DetectLabelsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Labels": [ + * Labels: [ * { - * "Confidence": 99.25072479248047, - * "Name": "People" + * Confidence: 99.25072479248047, + * Name: "People" * }, * { - * "Confidence": 99.25074005126953, - * "Name": "Person" + * Confidence: 99.25074005126953, + * Name: "Person" * } * ] * } * *\/ - * // example id: to-detect-labels-1481834255770 * ``` * + * @public */ export class DetectLabelsCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DetectModerationLabelsCommand.ts b/clients/client-rekognition/src/commands/DetectModerationLabelsCommand.ts index 63e60618dd81e..625a0971e0c6d 100644 --- a/clients/client-rekognition/src/commands/DetectModerationLabelsCommand.ts +++ b/clients/client-rekognition/src/commands/DetectModerationLabelsCommand.ts @@ -149,6 +149,7 @@ export interface DetectModerationLabelsCommandOutput extends DetectModerationLab * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class DetectModerationLabelsCommand extends $Command diff --git a/clients/client-rekognition/src/commands/DetectProtectiveEquipmentCommand.ts b/clients/client-rekognition/src/commands/DetectProtectiveEquipmentCommand.ts index d688a107c2e7d..6ad5929a0be10 100644 --- a/clients/client-rekognition/src/commands/DetectProtectiveEquipmentCommand.ts +++ b/clients/client-rekognition/src/commands/DetectProtectiveEquipmentCommand.ts @@ -178,6 +178,7 @@ export interface DetectProtectiveEquipmentCommandOutput extends DetectProtective * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class DetectProtectiveEquipmentCommand extends $Command diff --git a/clients/client-rekognition/src/commands/DetectTextCommand.ts b/clients/client-rekognition/src/commands/DetectTextCommand.ts index 8e4bafd06362a..83487654d4ea2 100644 --- a/clients/client-rekognition/src/commands/DetectTextCommand.ts +++ b/clients/client-rekognition/src/commands/DetectTextCommand.ts @@ -159,6 +159,7 @@ export interface DetectTextCommandOutput extends DetectTextResponse, __MetadataB * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class DetectTextCommand extends $Command diff --git a/clients/client-rekognition/src/commands/DisassociateFacesCommand.ts b/clients/client-rekognition/src/commands/DisassociateFacesCommand.ts index 741441b1845cd..73e70b6eef175 100644 --- a/clients/client-rekognition/src/commands/DisassociateFacesCommand.ts +++ b/clients/client-rekognition/src/commands/DisassociateFacesCommand.ts @@ -109,43 +109,43 @@ export interface DisassociateFacesCommandOutput extends DisassociateFacesRespons * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example DisassociateFaces * ```javascript * // Removes the association between a Face supplied in an array of FaceIds and the User. * const input = { - * "ClientRequestToken": "550e8400-e29b-41d4-a716-446655440003", - * "CollectionId": "MyCollection", - * "FaceIds": [ + * ClientRequestToken: "550e8400-e29b-41d4-a716-446655440003", + * CollectionId: "MyCollection", + * FaceIds: [ * "f5817d37-94f6-4335-bfee-6cf79a3d806e", * "c92265d4-5f9c-43af-a58e-12be0ce02bc3" * ], - * "UserId": "DemoUser" + * UserId: "DemoUser" * }; * const command = new DisassociateFacesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DisassociatedFaces": [ + * DisassociatedFaces: [ * { - * "FaceId": "c92265d4-5f9c-43af-a58e-12be0ce02bc3" + * FaceId: "c92265d4-5f9c-43af-a58e-12be0ce02bc3" * } * ], - * "UnsuccessfulFaceDisassociations": [ + * UnsuccessfulFaceDisassociations: [ * { - * "FaceId": "f5817d37-94f6-4335-bfee-6cf79a3d806e", - * "Reasons": [ + * FaceId: "f5817d37-94f6-4335-bfee-6cf79a3d806e", + * Reasons: [ * "ASSOCIATED_TO_A_DIFFERENT_USER" * ], - * "UserId": "demoUser1" + * UserId: "demoUser1" * } * ], - * "UserStatus": "UPDATING" + * UserStatus: "UPDATING" * } * *\/ - * // example id: disassociatefaces-1686182627295 * ``` * + * @public */ export class DisassociateFacesCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/DistributeDatasetEntriesCommand.ts b/clients/client-rekognition/src/commands/DistributeDatasetEntriesCommand.ts index 86feb4b724431..93f2e1ef49f89 100644 --- a/clients/client-rekognition/src/commands/DistributeDatasetEntriesCommand.ts +++ b/clients/client-rekognition/src/commands/DistributeDatasetEntriesCommand.ts @@ -95,25 +95,28 @@ export interface DistributeDatasetEntriesCommandOutput extends DistributeDataset * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To distribute an Amazon Rekognition Custom Labels dataset * ```javascript * // Distributes an Amazon Rekognition Custom Labels training dataset to a test dataset. * const input = { - * "Datasets": [ + * Datasets: [ * { - * "Arn": "arn:aws:rekognition:us-east-1:111122223333:project/my-proj-2/dataset/train/1690564858106" + * Arn: "arn:aws:rekognition:us-east-1:111122223333:project/my-proj-2/dataset/train/1690564858106" * }, * { - * "Arn": "arn:aws:rekognition:us-east-1:111122223333:project/my-proj-2/dataset/test/1690564858106" + * Arn: "arn:aws:rekognition:us-east-1:111122223333:project/my-proj-2/dataset/test/1690564858106" * } * ] * }; * const command = new DistributeDatasetEntriesCommand(input); - * await client.send(command); - * // example id: to-distribute-to-an-amazon-rekognition-custom-labels-dataset-1690816977073 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DistributeDatasetEntriesCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/GetCelebrityInfoCommand.ts b/clients/client-rekognition/src/commands/GetCelebrityInfoCommand.ts index d7f9e5ce55d6b..bbf0b2456576d 100644 --- a/clients/client-rekognition/src/commands/GetCelebrityInfoCommand.ts +++ b/clients/client-rekognition/src/commands/GetCelebrityInfoCommand.ts @@ -87,6 +87,7 @@ export interface GetCelebrityInfoCommandOutput extends GetCelebrityInfoResponse, * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class GetCelebrityInfoCommand extends $Command diff --git a/clients/client-rekognition/src/commands/GetCelebrityRecognitionCommand.ts b/clients/client-rekognition/src/commands/GetCelebrityRecognitionCommand.ts index 0df9f52d01982..ca9ed88f38f61 100644 --- a/clients/client-rekognition/src/commands/GetCelebrityRecognitionCommand.ts +++ b/clients/client-rekognition/src/commands/GetCelebrityRecognitionCommand.ts @@ -237,6 +237,7 @@ export interface GetCelebrityRecognitionCommandOutput extends GetCelebrityRecogn * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class GetCelebrityRecognitionCommand extends $Command diff --git a/clients/client-rekognition/src/commands/GetContentModerationCommand.ts b/clients/client-rekognition/src/commands/GetContentModerationCommand.ts index ef128b8f92790..89daaef6f1193 100644 --- a/clients/client-rekognition/src/commands/GetContentModerationCommand.ts +++ b/clients/client-rekognition/src/commands/GetContentModerationCommand.ts @@ -153,6 +153,7 @@ export interface GetContentModerationCommandOutput extends GetContentModerationR * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class GetContentModerationCommand extends $Command diff --git a/clients/client-rekognition/src/commands/GetFaceDetectionCommand.ts b/clients/client-rekognition/src/commands/GetFaceDetectionCommand.ts index 0603396252f01..31bcc49ba2fe6 100644 --- a/clients/client-rekognition/src/commands/GetFaceDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/GetFaceDetectionCommand.ts @@ -195,6 +195,7 @@ export interface GetFaceDetectionCommandOutput extends GetFaceDetectionResponse, * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class GetFaceDetectionCommand extends $Command diff --git a/clients/client-rekognition/src/commands/GetFaceLivenessSessionResultsCommand.ts b/clients/client-rekognition/src/commands/GetFaceLivenessSessionResultsCommand.ts index 2a9704f68a212..5afedd8a6a3f2 100644 --- a/clients/client-rekognition/src/commands/GetFaceLivenessSessionResultsCommand.ts +++ b/clients/client-rekognition/src/commands/GetFaceLivenessSessionResultsCommand.ts @@ -124,6 +124,7 @@ export interface GetFaceLivenessSessionResultsCommandOutput * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class GetFaceLivenessSessionResultsCommand extends $Command diff --git a/clients/client-rekognition/src/commands/GetFaceSearchCommand.ts b/clients/client-rekognition/src/commands/GetFaceSearchCommand.ts index 0aa2dcafeb0ac..00cbf1a3ca931 100644 --- a/clients/client-rekognition/src/commands/GetFaceSearchCommand.ts +++ b/clients/client-rekognition/src/commands/GetFaceSearchCommand.ts @@ -233,6 +233,7 @@ export interface GetFaceSearchCommandOutput extends GetFaceSearchResponse, __Met * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class GetFaceSearchCommand extends $Command diff --git a/clients/client-rekognition/src/commands/GetLabelDetectionCommand.ts b/clients/client-rekognition/src/commands/GetLabelDetectionCommand.ts index 880cab6a1404e..0c892823e93c5 100644 --- a/clients/client-rekognition/src/commands/GetLabelDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/GetLabelDetectionCommand.ts @@ -223,6 +223,7 @@ export interface GetLabelDetectionCommandOutput extends GetLabelDetectionRespons * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class GetLabelDetectionCommand extends $Command diff --git a/clients/client-rekognition/src/commands/GetMediaAnalysisJobCommand.ts b/clients/client-rekognition/src/commands/GetMediaAnalysisJobCommand.ts index 4294db7617050..29cdf90b3642e 100644 --- a/clients/client-rekognition/src/commands/GetMediaAnalysisJobCommand.ts +++ b/clients/client-rekognition/src/commands/GetMediaAnalysisJobCommand.ts @@ -119,55 +119,8 @@ export interface GetMediaAnalysisJobCommandOutput extends GetMediaAnalysisJobRes * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public - * @example GetMediaAnalysisJob - * ```javascript - * // Retrieves the results for a given media analysis job. - * const input = { - * "JobId": "861a0645d98ef88efb75477628c011c04942d9d5f58faf2703c393c8cf8c1537" - * }; - * const command = new GetMediaAnalysisJobCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "CompletionTimestamp": "2023-07-28T08:05:51.958000-07:00", - * "CreationTimestamp": "2023-07-28T08:05:51.958000-06:00", - * "Input": { - * "S3Object": { - * "Bucket": "input-bucket", - * "Name": "input-manifest.json" - * } - * }, - * "JobId": "861a0645d98ef88efb75477628c011c04942d9d5f58faf2703c393c8cf8c1537", - * "JobName": "job-name", - * "ManifestSummary": { - * "S3Object": { - * "Bucket": "output-bucket", - * "Name": "output-location/861a0645d98ef88efb75477628c011c04942d9d5f58faf2703c393c8cf8c1537-manifest-summary.json" - * } - * }, - * "OperationsConfig": { - * "DetectModerationLabels": { - * "MinConfidence": 50, - * "ProjectVersion": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/1/1690556751958" - * } - * }, - * "OutputConfig": { - * "S3Bucket": "output-bucket", - * "S3KeyPrefix": "output-location" - * }, - * "Results": { - * "S3Object": { - * "Bucket": "output-bucket", - * "Name": "output-location/861a0645d98ef88efb75477628c011c04942d9d5f58faf2703c393c8cf8c1537-results.jsonl" - * } - * }, - * "Status": "SUCCEEDED" - * } - * *\/ - * // example id: getmediaanalysisjob-1697650068124 - * ``` * + * @public */ export class GetMediaAnalysisJobCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/GetPersonTrackingCommand.ts b/clients/client-rekognition/src/commands/GetPersonTrackingCommand.ts index 433a8aebd68e6..e98cdaa9954db 100644 --- a/clients/client-rekognition/src/commands/GetPersonTrackingCommand.ts +++ b/clients/client-rekognition/src/commands/GetPersonTrackingCommand.ts @@ -215,6 +215,7 @@ export interface GetPersonTrackingCommandOutput extends GetPersonTrackingRespons * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class GetPersonTrackingCommand extends $Command diff --git a/clients/client-rekognition/src/commands/GetSegmentDetectionCommand.ts b/clients/client-rekognition/src/commands/GetSegmentDetectionCommand.ts index 00a489e04de0a..e506a5b90b99e 100644 --- a/clients/client-rekognition/src/commands/GetSegmentDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/GetSegmentDetectionCommand.ts @@ -159,6 +159,7 @@ export interface GetSegmentDetectionCommandOutput extends GetSegmentDetectionRes * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class GetSegmentDetectionCommand extends $Command diff --git a/clients/client-rekognition/src/commands/GetTextDetectionCommand.ts b/clients/client-rekognition/src/commands/GetTextDetectionCommand.ts index 3bf59b6d54702..0ee37c2c73b4e 100644 --- a/clients/client-rekognition/src/commands/GetTextDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/GetTextDetectionCommand.ts @@ -145,6 +145,7 @@ export interface GetTextDetectionCommandOutput extends GetTextDetectionResponse, * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class GetTextDetectionCommand extends $Command diff --git a/clients/client-rekognition/src/commands/IndexFacesCommand.ts b/clients/client-rekognition/src/commands/IndexFacesCommand.ts index 663d7875ba6ba..7b1b37cc62b2c 100644 --- a/clients/client-rekognition/src/commands/IndexFacesCommand.ts +++ b/clients/client-rekognition/src/commands/IndexFacesCommand.ts @@ -376,149 +376,149 @@ export interface IndexFacesCommandOutput extends IndexFacesResponse, __MetadataB * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To add a face to a collection * ```javascript * // This operation detects faces in an image and adds them to the specified Rekognition collection. * const input = { - * "CollectionId": "myphotos", - * "DetectionAttributes": [], - * "ExternalImageId": "myphotoid", - * "Image": { - * "S3Object": { - * "Bucket": "mybucket", - * "Name": "myphoto" + * CollectionId: "myphotos", + * DetectionAttributes: [], + * ExternalImageId: "myphotoid", + * Image: { + * S3Object: { + * Bucket: "mybucket", + * Name: "myphoto" * } * } * }; * const command = new IndexFacesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FaceRecords": [ + * FaceRecords: [ * { - * "Face": { - * "BoundingBox": { - * "Height": 0.33481481671333313, - * "Left": 0.31888890266418457, - * "Top": 0.4933333396911621, - * "Width": 0.25 + * Face: { + * BoundingBox: { + * Height: 0.33481481671333313, + * Left: 0.31888890266418457, + * Top: 0.4933333396911621, + * Width: 0.25 * }, - * "Confidence": 99.9991226196289, - * "FaceId": "ff43d742-0c13-5d16-a3e8-03d3f58e980b", - * "ImageId": "465f4e93-763e-51d0-b030-b9667a2d94b1" + * Confidence: 99.9991226196289, + * FaceId: "ff43d742-0c13-5d16-a3e8-03d3f58e980b", + * ImageId: "465f4e93-763e-51d0-b030-b9667a2d94b1" * }, - * "FaceDetail": { - * "BoundingBox": { - * "Height": 0.33481481671333313, - * "Left": 0.31888890266418457, - * "Top": 0.4933333396911621, - * "Width": 0.25 + * FaceDetail: { + * BoundingBox: { + * Height: 0.33481481671333313, + * Left: 0.31888890266418457, + * Top: 0.4933333396911621, + * Width: 0.25 * }, - * "Confidence": 99.9991226196289, - * "Landmarks": [ + * Confidence: 99.9991226196289, + * Landmarks: [ * { - * "Type": "eyeLeft", - * "X": 0.3976764678955078, - * "Y": 0.6248345971107483 + * Type: "eyeLeft", + * X: 0.3976764678955078, + * Y: 0.6248345971107483 * }, * { - * "Type": "eyeRight", - * "X": 0.4810936450958252, - * "Y": 0.6317117214202881 + * Type: "eyeRight", + * X: 0.4810936450958252, + * Y: 0.6317117214202881 * }, * { - * "Type": "noseLeft", - * "X": 0.41986238956451416, - * "Y": 0.7111940383911133 + * Type: "noseLeft", + * X: 0.41986238956451416, + * Y: 0.7111940383911133 * }, * { - * "Type": "mouthDown", - * "X": 0.40525302290916443, - * "Y": 0.7497701048851013 + * Type: "mouthDown", + * X: 0.40525302290916443, + * Y: 0.7497701048851013 * }, * { - * "Type": "mouthUp", - * "X": 0.4753248989582062, - * "Y": 0.7558549642562866 + * Type: "mouthUp", + * X: 0.4753248989582062, + * Y: 0.7558549642562866 * } * ], - * "Pose": { - * "Pitch": -9.713645935058594, - * "Roll": 4.707281112670898, - * "Yaw": -24.438663482666016 + * Pose: { + * Pitch: -9.713645935058594, + * Roll: 4.707281112670898, + * Yaw: -24.438663482666016 * }, - * "Quality": { - * "Brightness": 29.23358917236328, - * "Sharpness": 80 + * Quality: { + * Brightness: 29.23358917236328, + * Sharpness: 80 * } * } * }, * { - * "Face": { - * "BoundingBox": { - * "Height": 0.32592591643333435, - * "Left": 0.5144444704055786, - * "Top": 0.15111111104488373, - * "Width": 0.24444444477558136 + * Face: { + * BoundingBox: { + * Height: 0.32592591643333435, + * Left: 0.5144444704055786, + * Top: 0.15111111104488373, + * Width: 0.24444444477558136 * }, - * "Confidence": 99.99950408935547, - * "FaceId": "8be04dba-4e58-520d-850e-9eae4af70eb2", - * "ImageId": "465f4e93-763e-51d0-b030-b9667a2d94b1" + * Confidence: 99.99950408935547, + * FaceId: "8be04dba-4e58-520d-850e-9eae4af70eb2", + * ImageId: "465f4e93-763e-51d0-b030-b9667a2d94b1" * }, - * "FaceDetail": { - * "BoundingBox": { - * "Height": 0.32592591643333435, - * "Left": 0.5144444704055786, - * "Top": 0.15111111104488373, - * "Width": 0.24444444477558136 + * FaceDetail: { + * BoundingBox: { + * Height: 0.32592591643333435, + * Left: 0.5144444704055786, + * Top: 0.15111111104488373, + * Width: 0.24444444477558136 * }, - * "Confidence": 99.99950408935547, - * "Landmarks": [ + * Confidence: 99.99950408935547, + * Landmarks: [ * { - * "Type": "eyeLeft", - * "X": 0.6006892323493958, - * "Y": 0.290842205286026 + * Type: "eyeLeft", + * X: 0.6006892323493958, + * Y: 0.290842205286026 * }, * { - * "Type": "eyeRight", - * "X": 0.6808141469955444, - * "Y": 0.29609042406082153 + * Type: "eyeRight", + * X: 0.6808141469955444, + * Y: 0.29609042406082153 * }, * { - * "Type": "noseLeft", - * "X": 0.6395332217216492, - * "Y": 0.3522595763206482 + * Type: "noseLeft", + * X: 0.6395332217216492, + * Y: 0.3522595763206482 * }, * { - * "Type": "mouthDown", - * "X": 0.5892083048820496, - * "Y": 0.38689887523651123 + * Type: "mouthDown", + * X: 0.5892083048820496, + * Y: 0.38689887523651123 * }, * { - * "Type": "mouthUp", - * "X": 0.674560010433197, - * "Y": 0.394125759601593 + * Type: "mouthUp", + * X: 0.674560010433197, + * Y: 0.394125759601593 * } * ], - * "Pose": { - * "Pitch": -4.683138370513916, - * "Roll": 2.1029529571533203, - * "Yaw": 6.716655254364014 + * Pose: { + * Pitch: -4.683138370513916, + * Roll: 2.1029529571533203, + * Yaw: 6.716655254364014 * }, - * "Quality": { - * "Brightness": 34.951698303222656, - * "Sharpness": 160 + * Quality: { + * Brightness: 34.951698303222656, + * Sharpness: 160 * } * } * } * ], - * "OrientationCorrection": "ROTATE_0" + * OrientationCorrection: "ROTATE_0" * } * *\/ - * // example id: to-add-a-face-to-a-collection-1482179542923 * ``` * + * @public */ export class IndexFacesCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/ListCollectionsCommand.ts b/clients/client-rekognition/src/commands/ListCollectionsCommand.ts index 9fbbb243308de..58c064edf7400 100644 --- a/clients/client-rekognition/src/commands/ListCollectionsCommand.ts +++ b/clients/client-rekognition/src/commands/ListCollectionsCommand.ts @@ -91,23 +91,23 @@ export interface ListCollectionsCommandOutput extends ListCollectionsResponse, _ * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To list the collections * ```javascript * // This operation returns a list of Rekognition collections. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListCollectionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CollectionIds": [ + * CollectionIds: [ * "myphotos" * ] * } * *\/ - * // example id: to-list-the-collections-1482179199088 * ``` * + * @public */ export class ListCollectionsCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/ListDatasetEntriesCommand.ts b/clients/client-rekognition/src/commands/ListDatasetEntriesCommand.ts index 6d74de03e1a36..7fa3fd7c6be38 100644 --- a/clients/client-rekognition/src/commands/ListDatasetEntriesCommand.ts +++ b/clients/client-rekognition/src/commands/ListDatasetEntriesCommand.ts @@ -113,34 +113,34 @@ export interface ListDatasetEntriesCommandOutput extends ListDatasetEntriesRespo * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To list the entries in an Amazon Rekognition Custom Labels dataset * ```javascript * // Lists the JSON line entries in an Amazon Rekognition Custom Labels dataset. * const input = { - * "ContainsLabels": [ + * ContainsLabels: [ * "camellia" * ], - * "DatasetArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-proj-2/dataset/train/1690564858106", - * "HasErrors": true, - * "Labeled": true, - * "MaxResults": 100, - * "NextToken": "", - * "SourceRefContains": "camellia4.jpg" + * DatasetArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-proj-2/dataset/train/1690564858106", + * HasErrors: true, + * Labeled: true, + * MaxResults: 100, + * NextToken: "", + * SourceRefContains: "camellia4.jpg" * }; * const command = new ListDatasetEntriesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DatasetEntries": [ - * "{\"source-ref\":\"s3://custom-labels-console-us-east-1-1111111111/assets/flowers_1_train_dataset/camellia4.jpg\",\"camellia\":1,\"camellia-metadata\":{\"confidence\":1,\"job-name\":\"labeling-job/camellia\",\"class-name\":\"camellia\",\"human-annotated\":\"yes\",\"creation-date\":\"2021-07-11T03:32:13.456Z\",\"type\":\"groundtruth/image-classification\"},\"with_leaves\":1,\"with_leaves-metadata\":{\"confidence\":1,\"job-name\":\"labeling-job/with_leaves\",\"class-name\":\"with_leaves\",\"human-annotated\":\"yes\",\"creation-date\":\"2021-07-11T03:32:13.456Z\",\"type\":\"groundtruth/image-classification\"},\"cl-metadata\":{\"is_labeled\":true}}" + * DatasetEntries: [ + * `{"source-ref":"s3://custom-labels-console-us-east-1-1111111111/assets/flowers_1_train_dataset/camellia4.jpg","camellia":1,"camellia-metadata":{"confidence":1,"job-name":"labeling-job/camellia","class-name":"camellia","human-annotated":"yes","creation-date":"2021-07-11T03:32:13.456Z","type":"groundtruth/image-classification"},"with_leaves":1,"with_leaves-metadata":{"confidence":1,"job-name":"labeling-job/with_leaves","class-name":"with_leaves","human-annotated":"yes","creation-date":"2021-07-11T03:32:13.456Z","type":"groundtruth/image-classification"},"cl-metadata":{"is_labeled":true}}` * ], - * "NextToken": "" + * NextToken: "" * } * *\/ - * // example id: to-list-the-entries-in-an-amazon-rekognition-custom-labels-dataset-1690823292345 * ``` * + * @public */ export class ListDatasetEntriesCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/ListDatasetLabelsCommand.ts b/clients/client-rekognition/src/commands/ListDatasetLabelsCommand.ts index 95a7de92b9149..2f928433dbd98 100644 --- a/clients/client-rekognition/src/commands/ListDatasetLabelsCommand.ts +++ b/clients/client-rekognition/src/commands/ListDatasetLabelsCommand.ts @@ -105,44 +105,44 @@ export interface ListDatasetLabelsCommandOutput extends ListDatasetLabelsRespons * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To list the entries in an Amazon Rekognition Custom Labels dataset * ```javascript * // Lists the JSON line entries in an Amazon Rekognition Custom Labels dataset. * const input = { - * "DatasetArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-proj-2/dataset/train/1690564858106", - * "MaxResults": 100, - * "NextToken": "" + * DatasetArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-proj-2/dataset/train/1690564858106", + * MaxResults: 100, + * NextToken: "" * }; * const command = new ListDatasetLabelsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DatasetLabelDescriptions": [ + * DatasetLabelDescriptions: [ * { - * "LabelName": "camellia", - * "LabelStats": { - * "EntryCount": 1 + * LabelName: "camellia", + * LabelStats: { + * EntryCount: 1 * } * }, * { - * "LabelName": "with_leaves", - * "LabelStats": { - * "EntryCount": 2 + * LabelName: "with_leaves", + * LabelStats: { + * EntryCount: 2 * } * }, * { - * "LabelName": "mediterranean_spurge", - * "LabelStats": { - * "EntryCount": 1 + * LabelName: "mediterranean_spurge", + * LabelStats: { + * EntryCount: 1 * } * } * ] * } * *\/ - * // example id: to-list-the-entries-in-an-amazon-rekognition-custom-labels-dataset-1690823292345 * ``` * + * @public */ export class ListDatasetLabelsCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/ListFacesCommand.ts b/clients/client-rekognition/src/commands/ListFacesCommand.ts index 4d95057d51752..1a71d0de995b3 100644 --- a/clients/client-rekognition/src/commands/ListFacesCommand.ts +++ b/clients/client-rekognition/src/commands/ListFacesCommand.ts @@ -106,63 +106,63 @@ export interface ListFacesCommandOutput extends ListFacesResponse, __MetadataBea * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To list the faces in a collection * ```javascript * // This operation lists the faces in a Rekognition collection. * const input = { - * "CollectionId": "myphotos", - * "MaxResults": 20 + * CollectionId: "myphotos", + * MaxResults: 20 * }; * const command = new ListFacesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FaceModelVersion": "6.0", - * "Faces": [ + * FaceModelVersion: "6.0", + * Faces: [ * { - * "BoundingBox": { - * "Height": 0.056759100407361984, - * "Left": 0.3453829884529114, - * "Top": 0.36568498611450195, - * "Width": 0.03177810087800026 + * BoundingBox: { + * Height: 0.056759100407361984, + * Left: 0.3453829884529114, + * Top: 0.36568498611450195, + * Width: 0.03177810087800026 * }, - * "Confidence": 99.76940155029297, - * "FaceId": "c92265d4-5f9c-43af-a58e-12be0ce02bc3", - * "ImageId": "56a0ca74-1c83-39dd-b363-051a64168a65", - * "IndexFacesModelVersion": "6.0", - * "UserId": "demoUser2" + * Confidence: 99.76940155029297, + * FaceId: "c92265d4-5f9c-43af-a58e-12be0ce02bc3", + * ImageId: "56a0ca74-1c83-39dd-b363-051a64168a65", + * IndexFacesModelVersion: "6.0", + * UserId: "demoUser2" * }, * { - * "BoundingBox": { - * "Height": 0.06347999721765518, - * "Left": 0.5160620212554932, - * "Top": 0.6080359816551208, - * "Width": 0.03254450112581253 + * BoundingBox: { + * Height: 0.06347999721765518, + * Left: 0.5160620212554932, + * Top: 0.6080359816551208, + * Width: 0.03254450112581253 * }, - * "Confidence": 99.94369506835938, - * "FaceId": "851cb847-dccc-4fea-9309-9f4805967855", - * "ImageId": "a8aed589-ceec-35f7-9c04-82e0b546b024", - * "IndexFacesModelVersion": "6.0" + * Confidence: 99.94369506835938, + * FaceId: "851cb847-dccc-4fea-9309-9f4805967855", + * ImageId: "a8aed589-ceec-35f7-9c04-82e0b546b024", + * IndexFacesModelVersion: "6.0" * }, * { - * "BoundingBox": { - * "Height": 0.05266290158033371, - * "Left": 0.6513839960098267, - * "Top": 0.4218429923057556, - * "Width": 0.03094629943370819 + * BoundingBox: { + * Height: 0.05266290158033371, + * Left: 0.6513839960098267, + * Top: 0.4218429923057556, + * Width: 0.03094629943370819 * }, - * "Confidence": 99.82969665527344, - * "FaceId": "c0eb3b65-24a0-41e1-b23a-1908b1aaeac1", - * "ImageId": "56a0ca74-1c83-39dd-b363-051a64168a65", - * "IndexFacesModelVersion": "6.0" + * Confidence: 99.82969665527344, + * FaceId: "c0eb3b65-24a0-41e1-b23a-1908b1aaeac1", + * ImageId: "56a0ca74-1c83-39dd-b363-051a64168a65", + * IndexFacesModelVersion: "6.0" * } * ] * } * *\/ - * // example id: to-list-the-faces-in-a-collection-1482181416530 * ``` * + * @public */ export class ListFacesCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/ListMediaAnalysisJobsCommand.ts b/clients/client-rekognition/src/commands/ListMediaAnalysisJobsCommand.ts index 26ecb2142726e..6e123ece117d6 100644 --- a/clients/client-rekognition/src/commands/ListMediaAnalysisJobsCommand.ts +++ b/clients/client-rekognition/src/commands/ListMediaAnalysisJobsCommand.ts @@ -124,59 +124,8 @@ export interface ListMediaAnalysisJobsCommandOutput extends ListMediaAnalysisJob * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public - * @example ListMediaAnalysisJobs - * ```javascript - * // Returns a list of media analysis jobs. - * const input = { - * "MaxResults": 10 - * }; - * const command = new ListMediaAnalysisJobsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "MediaAnalysisJobs": [ - * { - * "CompletionTimestamp": "2023-07-28T08:05:51.958000-07:00", - * "CreationTimestamp": "2023-07-28T08:05:51.958000-06:00", - * "Input": { - * "S3Object": { - * "Bucket": "input-bucket", - * "Name": "input-manifest.json" - * } - * }, - * "JobId": "861a0645d98ef88efb75477628c011c04942d9d5f58faf2703c393c8cf8c1537", - * "JobName": "job-name", - * "ManifestSummary": { - * "S3Object": { - * "Bucket": "output-bucket", - * "Name": "output-location/861a0645d98ef88efb75477628c011c04942d9d5f58faf2703c393c8cf8c1537-manifest-summary.json" - * } - * }, - * "OperationsConfig": { - * "DetectModerationLabels": { - * "MinConfidence": 50, - * "ProjectVersion": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/1/1690556751958" - * } - * }, - * "OutputConfig": { - * "S3Bucket": "output-bucket", - * "S3KeyPrefix": "output-location" - * }, - * "Results": { - * "S3Object": { - * "Bucket": "output-bucket", - * "Name": "output-location/861a0645d98ef88efb75477628c011c04942d9d5f58faf2703c393c8cf8c1537-results.jsonl" - * } - * }, - * "Status": "SUCCEEDED" - * } - * ] - * } - * *\/ - * // example id: listmediaanalysisjobs-1697650653077 - * ``` * + * @public */ export class ListMediaAnalysisJobsCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/ListProjectPoliciesCommand.ts b/clients/client-rekognition/src/commands/ListProjectPoliciesCommand.ts index e2ffc20e2bc75..16ba79a14ba15 100644 --- a/clients/client-rekognition/src/commands/ListProjectPoliciesCommand.ts +++ b/clients/client-rekognition/src/commands/ListProjectPoliciesCommand.ts @@ -95,35 +95,8 @@ export interface ListProjectPoliciesCommandOutput extends ListProjectPoliciesRes * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public - * @example ListProjectPolicies - * ```javascript - * // This operation lists the project policies that are attached to an Amazon Rekognition Custom Labels project. - * const input = { - * "MaxResults": 5, - * "NextToken": "", - * "ProjectArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-sdk-project/1656557051929" - * }; - * const command = new ListProjectPoliciesCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "NextToken": "", - * "ProjectPolicies": [ - * { - * "CreationTimestamp": "2022-07-01T11:51:27.086000-07:00", - * "LastUpdatedTimestamp": "2022-07-01T11:51:27.086000-07:00", - * "PolicyDocument": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"Statemented1\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::111122223333:root\"},\"Action\":\"rekognition:CopyProjectVersion\",\"Resource\":\"*\"}]}", - * "PolicyName": "testPolicy", - * "PolicyRevisionId": "3b274c25e9203a56a99e00e3ff205fbc", - * "ProjectArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-sdk-project/1656557051929" - * } - * ] - * } - * *\/ - * // example id: listprojectpolicies-1658202290173 - * ``` * + * @public */ export class ListProjectPoliciesCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/ListStreamProcessorsCommand.ts b/clients/client-rekognition/src/commands/ListStreamProcessorsCommand.ts index 1fa529d0ae0a0..03ad7b7d2d586 100644 --- a/clients/client-rekognition/src/commands/ListStreamProcessorsCommand.ts +++ b/clients/client-rekognition/src/commands/ListStreamProcessorsCommand.ts @@ -82,6 +82,7 @@ export interface ListStreamProcessorsCommandOutput extends ListStreamProcessorsR * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class ListStreamProcessorsCommand extends $Command diff --git a/clients/client-rekognition/src/commands/ListTagsForResourceCommand.ts b/clients/client-rekognition/src/commands/ListTagsForResourceCommand.ts index 1f31988314149..21aadb11c68c8 100644 --- a/clients/client-rekognition/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-rekognition/src/commands/ListTagsForResourceCommand.ts @@ -80,6 +80,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-rekognition/src/commands/ListUsersCommand.ts b/clients/client-rekognition/src/commands/ListUsersCommand.ts index aa8f2773c5c77..039829bf9c6f6 100644 --- a/clients/client-rekognition/src/commands/ListUsersCommand.ts +++ b/clients/client-rekognition/src/commands/ListUsersCommand.ts @@ -90,33 +90,33 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example ListUsers * ```javascript * // Returns metadata of the User such as UserID in the specified collection. * const input = { - * "CollectionId": "MyCollection" + * CollectionId: "MyCollection" * }; * const command = new ListUsersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NextToken": "MGYZLAHX1T5a....", - * "Users": [ + * NextToken: "MGYZLAHX1T5a....", + * Users: [ * { - * "UserId": "demoUser4", - * "UserStatus": "CREATED" + * UserId: "demoUser4", + * UserStatus: "CREATED" * }, * { - * "UserId": "demoUser2", - * "UserStatus": "CREATED" + * UserId: "demoUser2", + * UserStatus: "CREATED" * } * ] * } * *\/ - * // example id: listusers-1686182360075 * ``` * + * @public */ export class ListUsersCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/PutProjectPolicyCommand.ts b/clients/client-rekognition/src/commands/PutProjectPolicyCommand.ts index 4056f892d8588..ca188e0a500c9 100644 --- a/clients/client-rekognition/src/commands/PutProjectPolicyCommand.ts +++ b/clients/client-rekognition/src/commands/PutProjectPolicyCommand.ts @@ -117,26 +117,26 @@ export interface PutProjectPolicyCommandOutput extends PutProjectPolicyResponse, * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example PutProjectPolicy * ```javascript * // This operation attaches a project policy to a Amazon Rekognition Custom Labels project in a trusting AWS account. * const input = { - * "PolicyDocument": "'{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"ALLOW\",\"Principal\":{\"AWS\":\"principal\"},\"Action\":\"rekognition:CopyProjectVersion\",\"Resource\":\"arn:aws:rekognition:us-east-1:123456789012:project/my-sdk-project/version/DestinationVersionName/1627045542080\"}]}'", - * "PolicyName": "SamplePolicy", - * "PolicyRevisionId": "0123456789abcdef", - * "ProjectArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-sdk-project/1656557051929" + * PolicyDocument: `'{"Version":"2012-10-17","Statement":[{"Effect":"ALLOW","Principal":{"AWS":"principal"},"Action":"rekognition:CopyProjectVersion","Resource":"arn:aws:rekognition:us-east-1:123456789012:project/my-sdk-project/version/DestinationVersionName/1627045542080"}]}'`, + * PolicyName: "SamplePolicy", + * PolicyRevisionId: "0123456789abcdef", + * ProjectArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-sdk-project/1656557051929" * }; * const command = new PutProjectPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "PolicyRevisionId": "0123456789abcdef" + * PolicyRevisionId: "0123456789abcdef" * } * *\/ - * // example id: putprojectpolicy-1658201727623 * ``` * + * @public */ export class PutProjectPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/RecognizeCelebritiesCommand.ts b/clients/client-rekognition/src/commands/RecognizeCelebritiesCommand.ts index fd91c22c37fbb..e9486bd141e4e 100644 --- a/clients/client-rekognition/src/commands/RecognizeCelebritiesCommand.ts +++ b/clients/client-rekognition/src/commands/RecognizeCelebritiesCommand.ts @@ -202,6 +202,7 @@ export interface RecognizeCelebritiesCommandOutput extends RecognizeCelebritiesR * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class RecognizeCelebritiesCommand extends $Command diff --git a/clients/client-rekognition/src/commands/SearchFacesByImageCommand.ts b/clients/client-rekognition/src/commands/SearchFacesByImageCommand.ts index d4ffb07b9f53e..9111317822fb5 100644 --- a/clients/client-rekognition/src/commands/SearchFacesByImageCommand.ts +++ b/clients/client-rekognition/src/commands/SearchFacesByImageCommand.ts @@ -160,53 +160,53 @@ export interface SearchFacesByImageCommandOutput extends SearchFacesByImageRespo * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To search for faces matching a supplied image * ```javascript * // This operation searches for faces in a Rekognition collection that match the largest face in an S3 bucket stored image. * const input = { - * "CollectionId": "myphotos", - * "FaceMatchThreshold": 95, - * "Image": { - * "S3Object": { - * "Bucket": "mybucket", - * "Name": "myphoto" + * CollectionId: "myphotos", + * FaceMatchThreshold: 95, + * Image: { + * S3Object: { + * Bucket: "mybucket", + * Name: "myphoto" * } * }, - * "MaxFaces": 5 + * MaxFaces: 5 * }; * const command = new SearchFacesByImageCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FaceMatches": [ + * FaceMatches: [ * { - * "Face": { - * "BoundingBox": { - * "Height": 0.3234420120716095, - * "Left": 0.3233329951763153, - * "Top": 0.5, - * "Width": 0.24222199618816376 + * Face: { + * BoundingBox: { + * Height: 0.3234420120716095, + * Left: 0.3233329951763153, + * Top: 0.5, + * Width: 0.24222199618816376 * }, - * "Confidence": 99.99829864501953, - * "FaceId": "38271d79-7bc2-5efb-b752-398a8d575b85", - * "ImageId": "d5631190-d039-54e4-b267-abd22c8647c5" + * Confidence: 99.99829864501953, + * FaceId: "38271d79-7bc2-5efb-b752-398a8d575b85", + * ImageId: "d5631190-d039-54e4-b267-abd22c8647c5" * }, - * "Similarity": 99.97036743164062 + * Similarity: 99.97036743164062 * } * ], - * "SearchedFaceBoundingBox": { - * "Height": 0.33481481671333313, - * "Left": 0.31888890266418457, - * "Top": 0.4933333396911621, - * "Width": 0.25 + * SearchedFaceBoundingBox: { + * Height: 0.33481481671333313, + * Left: 0.31888890266418457, + * Top: 0.4933333396911621, + * Width: 0.25 * }, - * "SearchedFaceConfidence": 99.9991226196289 + * SearchedFaceConfidence: 99.9991226196289 * } * *\/ - * // example id: to-search-for-faces-matching-a-supplied-image-1482175994491 * ``` * + * @public */ export class SearchFacesByImageCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/SearchFacesCommand.ts b/clients/client-rekognition/src/commands/SearchFacesCommand.ts index 499a4eb806820..9a78bc9815ef9 100644 --- a/clients/client-rekognition/src/commands/SearchFacesCommand.ts +++ b/clients/client-rekognition/src/commands/SearchFacesCommand.ts @@ -113,70 +113,70 @@ export interface SearchFacesCommandOutput extends SearchFacesResponse, __Metadat * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To delete a face * ```javascript * // This operation searches for matching faces in the collection the supplied face belongs to. * const input = { - * "CollectionId": "myphotos", - * "FaceId": "70008e50-75e4-55d0-8e80-363fb73b3a14", - * "FaceMatchThreshold": 90, - * "MaxFaces": 10 + * CollectionId: "myphotos", + * FaceId: "70008e50-75e4-55d0-8e80-363fb73b3a14", + * FaceMatchThreshold: 90, + * MaxFaces: 10 * }; * const command = new SearchFacesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FaceMatches": [ + * FaceMatches: [ * { - * "Face": { - * "BoundingBox": { - * "Height": 0.3259260058403015, - * "Left": 0.5144439935684204, - * "Top": 0.15111100673675537, - * "Width": 0.24444399774074554 + * Face: { + * BoundingBox: { + * Height: 0.3259260058403015, + * Left: 0.5144439935684204, + * Top: 0.15111100673675537, + * Width: 0.24444399774074554 * }, - * "Confidence": 99.99949645996094, - * "FaceId": "8be04dba-4e58-520d-850e-9eae4af70eb2", - * "ImageId": "465f4e93-763e-51d0-b030-b9667a2d94b1" + * Confidence: 99.99949645996094, + * FaceId: "8be04dba-4e58-520d-850e-9eae4af70eb2", + * ImageId: "465f4e93-763e-51d0-b030-b9667a2d94b1" * }, - * "Similarity": 99.97222137451172 + * Similarity: 99.97222137451172 * }, * { - * "Face": { - * "BoundingBox": { - * "Height": 0.16555599868297577, - * "Left": 0.30963000655174255, - * "Top": 0.7066670060157776, - * "Width": 0.22074100375175476 + * Face: { + * BoundingBox: { + * Height: 0.16555599868297577, + * Left: 0.30963000655174255, + * Top: 0.7066670060157776, + * Width: 0.22074100375175476 * }, - * "Confidence": 100, - * "FaceId": "29a75abe-397b-5101-ba4f-706783b2246c", - * "ImageId": "147fdf82-7a71-52cf-819b-e786c7b9746e" + * Confidence: 100, + * FaceId: "29a75abe-397b-5101-ba4f-706783b2246c", + * ImageId: "147fdf82-7a71-52cf-819b-e786c7b9746e" * }, - * "Similarity": 97.04154968261719 + * Similarity: 97.04154968261719 * }, * { - * "Face": { - * "BoundingBox": { - * "Height": 0.18888899683952332, - * "Left": 0.3783380091190338, - * "Top": 0.2355560064315796, - * "Width": 0.25222599506378174 + * Face: { + * BoundingBox: { + * Height: 0.18888899683952332, + * Left: 0.3783380091190338, + * Top: 0.2355560064315796, + * Width: 0.25222599506378174 * }, - * "Confidence": 99.9999008178711, - * "FaceId": "908544ad-edc3-59df-8faf-6a87cc256cf5", - * "ImageId": "3c731605-d772-541a-a5e7-0375dbc68a07" + * Confidence: 99.9999008178711, + * FaceId: "908544ad-edc3-59df-8faf-6a87cc256cf5", + * ImageId: "3c731605-d772-541a-a5e7-0375dbc68a07" * }, - * "Similarity": 95.94520568847656 + * Similarity: 95.94520568847656 * } * ], - * "SearchedFaceId": "70008e50-75e4-55d0-8e80-363fb73b3a14" + * SearchedFaceId: "70008e50-75e4-55d0-8e80-363fb73b3a14" * } * *\/ - * // example id: to-delete-a-face-1482182799377 * ``` * + * @public */ export class SearchFacesCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/SearchUsersByImageCommand.ts b/clients/client-rekognition/src/commands/SearchUsersByImageCommand.ts index c132038efec70..b4ffd8e7bf050 100644 --- a/clients/client-rekognition/src/commands/SearchUsersByImageCommand.ts +++ b/clients/client-rekognition/src/commands/SearchUsersByImageCommand.ts @@ -276,79 +276,79 @@ export interface SearchUsersByImageCommandOutput extends SearchUsersByImageRespo * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example SearchUsersByImage * ```javascript * // Searches for UserIDs using a supplied image. * const input = { - * "CollectionId": "MyCollection", - * "Image": { - * "S3Object": { - * "Bucket": "bucket", - * "Name": "input.jpg" + * CollectionId: "MyCollection", + * Image: { + * S3Object: { + * Bucket: "bucket", + * Name: "input.jpg" * } * }, - * "MaxUsers": 2, - * "QualityFilter": "MEDIUM", - * "UserMatchThreshold": 70 + * MaxUsers: 2, + * QualityFilter: "MEDIUM", + * UserMatchThreshold: 70 * }; * const command = new SearchUsersByImageCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FaceModelVersion": "6", - * "SearchedFace": { - * "FaceDetail": { - * "BoundingBox": { - * "Height": 0.07510016113519669, - * "Left": 0.3598678708076477, - * "Top": 0.5391526818275452, - * "Width": 0.03692837432026863 + * FaceModelVersion: "6", + * SearchedFace: { + * FaceDetail: { + * BoundingBox: { + * Height: 0.07510016113519669, + * Left: 0.3598678708076477, + * Top: 0.5391526818275452, + * Width: 0.03692837432026863 * } * } * }, - * "UnsearchedFaces": [ + * UnsearchedFaces: [ * { - * "FaceDetails": { - * "BoundingBox": { - * "Height": 0.0682177022099495, - * "Left": 0.6102562546730042, - * "Top": 0.5593535900115967, - * "Width": 0.031677018851041794 + * FaceDetails: { + * BoundingBox: { + * Height: 0.0682177022099495, + * Left: 0.6102562546730042, + * Top: 0.5593535900115967, + * Width: 0.031677018851041794 * } * }, - * "Reasons": [ + * Reasons: [ * "FACE_NOT_LARGEST" * ] * }, * { - * "FaceDetails": { - * "BoundingBox": { - * "Height": 0.06347997486591339, - * "Left": 0.516062319278717, - * "Top": 0.6080358028411865, - * "Width": 0.03254449740052223 + * FaceDetails: { + * BoundingBox: { + * Height: 0.06347997486591339, + * Left: 0.516062319278717, + * Top: 0.6080358028411865, + * Width: 0.03254449740052223 * } * }, - * "Reasons": [ + * Reasons: [ * "FACE_NOT_LARGEST" * ] * } * ], - * "UserMatches": [ + * UserMatches: [ * { - * "Similarity": 99.88186645507812, - * "User": { - * "UserId": "demoUser1", - * "UserStatus": "ACTIVE" + * Similarity: 99.88186645507812, + * User: { + * UserId: "demoUser1", + * UserStatus: "ACTIVE" * } * } * ] * } * *\/ - * // example id: searchusersbyimage-1686183178610 * ``` * + * @public */ export class SearchUsersByImageCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/SearchUsersCommand.ts b/clients/client-rekognition/src/commands/SearchUsersCommand.ts index 866776014b3ca..2ec7e2c27919f 100644 --- a/clients/client-rekognition/src/commands/SearchUsersCommand.ts +++ b/clients/client-rekognition/src/commands/SearchUsersCommand.ts @@ -99,38 +99,38 @@ export interface SearchUsersCommandOutput extends SearchUsersResponse, __Metadat * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example SearchUsers * ```javascript * // Searches for UserIDs within a collection based on a FaceId or UserId. * const input = { - * "CollectionId": "MyCollection", - * "MaxUsers": 2, - * "UserId": "DemoUser", - * "UserMatchThreshold": 70 + * CollectionId: "MyCollection", + * MaxUsers: 2, + * UserId: "DemoUser", + * UserMatchThreshold: 70 * }; * const command = new SearchUsersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FaceModelVersion": "6", - * "SearchedUser": { - * "UserId": "DemoUser" + * FaceModelVersion: "6", + * SearchedUser: { + * UserId: "DemoUser" * }, - * "UserMatches": [ + * UserMatches: [ * { - * "Similarity": 99.88186645507812, - * "User": { - * "UserId": "demoUser1", - * "UserStatus": "ACTIVE" + * Similarity: 99.88186645507812, + * User: { + * UserId: "demoUser1", + * UserStatus: "ACTIVE" * } * } * ] * } * *\/ - * // example id: searchusers-1686182912030 * ``` * + * @public */ export class SearchUsersCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/StartCelebrityRecognitionCommand.ts b/clients/client-rekognition/src/commands/StartCelebrityRecognitionCommand.ts index 41c45463310e5..ee1e04e5c8cf2 100644 --- a/clients/client-rekognition/src/commands/StartCelebrityRecognitionCommand.ts +++ b/clients/client-rekognition/src/commands/StartCelebrityRecognitionCommand.ts @@ -112,6 +112,7 @@ export interface StartCelebrityRecognitionCommandOutput extends StartCelebrityRe * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class StartCelebrityRecognitionCommand extends $Command diff --git a/clients/client-rekognition/src/commands/StartContentModerationCommand.ts b/clients/client-rekognition/src/commands/StartContentModerationCommand.ts index 987208ac7e9b7..e6774c7f608f7 100644 --- a/clients/client-rekognition/src/commands/StartContentModerationCommand.ts +++ b/clients/client-rekognition/src/commands/StartContentModerationCommand.ts @@ -113,6 +113,7 @@ export interface StartContentModerationCommandOutput extends StartContentModerat * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class StartContentModerationCommand extends $Command diff --git a/clients/client-rekognition/src/commands/StartFaceDetectionCommand.ts b/clients/client-rekognition/src/commands/StartFaceDetectionCommand.ts index d7c53919393ea..8653b6d371199 100644 --- a/clients/client-rekognition/src/commands/StartFaceDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/StartFaceDetectionCommand.ts @@ -114,6 +114,7 @@ export interface StartFaceDetectionCommandOutput extends StartFaceDetectionRespo * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class StartFaceDetectionCommand extends $Command diff --git a/clients/client-rekognition/src/commands/StartFaceSearchCommand.ts b/clients/client-rekognition/src/commands/StartFaceSearchCommand.ts index 395c474fcc7ac..53214245ab2ab 100644 --- a/clients/client-rekognition/src/commands/StartFaceSearchCommand.ts +++ b/clients/client-rekognition/src/commands/StartFaceSearchCommand.ts @@ -117,6 +117,7 @@ export interface StartFaceSearchCommandOutput extends StartFaceSearchResponse, _ * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class StartFaceSearchCommand extends $Command diff --git a/clients/client-rekognition/src/commands/StartLabelDetectionCommand.ts b/clients/client-rekognition/src/commands/StartLabelDetectionCommand.ts index b9673a4aa1abc..61939d7f74e9f 100644 --- a/clients/client-rekognition/src/commands/StartLabelDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/StartLabelDetectionCommand.ts @@ -146,6 +146,7 @@ export interface StartLabelDetectionCommandOutput extends StartLabelDetectionRes * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class StartLabelDetectionCommand extends $Command diff --git a/clients/client-rekognition/src/commands/StartMediaAnalysisJobCommand.ts b/clients/client-rekognition/src/commands/StartMediaAnalysisJobCommand.ts index db61b96b39f7d..df89d424a4c3a 100644 --- a/clients/client-rekognition/src/commands/StartMediaAnalysisJobCommand.ts +++ b/clients/client-rekognition/src/commands/StartMediaAnalysisJobCommand.ts @@ -117,39 +117,39 @@ export interface StartMediaAnalysisJobCommandOutput extends StartMediaAnalysisJo * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example StartMediaAnalysisJob * ```javascript * // Initiates a new media analysis job. * const input = { - * "Input": { - * "S3Object": { - * "Bucket": "input-bucket", - * "Name": "input-manifest.json" + * Input: { + * S3Object: { + * Bucket: "input-bucket", + * Name: "input-manifest.json" * } * }, - * "JobName": "job-name", - * "OperationsConfig": { - * "DetectModerationLabels": { - * "MinConfidence": 50, - * "ProjectVersion": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/1/1690556751958" + * JobName: "job-name", + * OperationsConfig: { + * DetectModerationLabels: { + * MinConfidence: 50, + * ProjectVersion: "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/1/1690556751958" * } * }, - * "OutputConfig": { - * "S3Bucket": "output-bucket", - * "S3KeyPrefix": "output-location" + * OutputConfig: { + * S3Bucket: "output-bucket", + * S3KeyPrefix: "output-location" * } * }; * const command = new StartMediaAnalysisJobCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "JobId": "861a0645d98ef88efb75477628c011c04942d9d5f58faf2703c393c8cf8c1537" + * JobId: "861a0645d98ef88efb75477628c011c04942d9d5f58faf2703c393c8cf8c1537" * } * *\/ - * // example id: startmediaanalysisjob-1697651090922 * ``` * + * @public */ export class StartMediaAnalysisJobCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/StartPersonTrackingCommand.ts b/clients/client-rekognition/src/commands/StartPersonTrackingCommand.ts index 4668dacf6afad..6ef9ae17b7c37 100644 --- a/clients/client-rekognition/src/commands/StartPersonTrackingCommand.ts +++ b/clients/client-rekognition/src/commands/StartPersonTrackingCommand.ts @@ -110,6 +110,7 @@ export interface StartPersonTrackingCommandOutput extends StartPersonTrackingRes * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class StartPersonTrackingCommand extends $Command diff --git a/clients/client-rekognition/src/commands/StartProjectVersionCommand.ts b/clients/client-rekognition/src/commands/StartProjectVersionCommand.ts index 991b37bf8ba8c..651c490ab762b 100644 --- a/clients/client-rekognition/src/commands/StartProjectVersionCommand.ts +++ b/clients/client-rekognition/src/commands/StartProjectVersionCommand.ts @@ -99,25 +99,25 @@ export interface StartProjectVersionCommandOutput extends StartProjectVersionRes * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To start an Amazon Rekognition Custom Labels model * ```javascript * // Starts a version of an Amazon Rekognition Custom Labels model. * const input = { - * "MaxInferenceUnits": 1, - * "MinInferenceUnits": 1, - * "ProjectVersionArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/1/1690556751958" + * MaxInferenceUnits: 1, + * MinInferenceUnits: 1, + * ProjectVersionArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/1/1690556751958" * }; * const command = new StartProjectVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Status": "STARTING" + * Status: "STARTING" * } * *\/ - * // example id: to-start-an-amazon-rekognition-custom-labels-model-1690559168398 * ``` * + * @public */ export class StartProjectVersionCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/StartSegmentDetectionCommand.ts b/clients/client-rekognition/src/commands/StartSegmentDetectionCommand.ts index bff8511b8a24e..9da1affa102d7 100644 --- a/clients/client-rekognition/src/commands/StartSegmentDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/StartSegmentDetectionCommand.ts @@ -130,6 +130,7 @@ export interface StartSegmentDetectionCommandOutput extends StartSegmentDetectio * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class StartSegmentDetectionCommand extends $Command diff --git a/clients/client-rekognition/src/commands/StartStreamProcessorCommand.ts b/clients/client-rekognition/src/commands/StartStreamProcessorCommand.ts index 532b068605516..14447326d88c0 100644 --- a/clients/client-rekognition/src/commands/StartStreamProcessorCommand.ts +++ b/clients/client-rekognition/src/commands/StartStreamProcessorCommand.ts @@ -90,6 +90,7 @@ export interface StartStreamProcessorCommandOutput extends StartStreamProcessorR * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class StartStreamProcessorCommand extends $Command diff --git a/clients/client-rekognition/src/commands/StartTextDetectionCommand.ts b/clients/client-rekognition/src/commands/StartTextDetectionCommand.ts index 80b8b97396301..2b52d6831280c 100644 --- a/clients/client-rekognition/src/commands/StartTextDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/StartTextDetectionCommand.ts @@ -132,6 +132,7 @@ export interface StartTextDetectionCommandOutput extends StartTextDetectionRespo * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class StartTextDetectionCommand extends $Command diff --git a/clients/client-rekognition/src/commands/StopProjectVersionCommand.ts b/clients/client-rekognition/src/commands/StopProjectVersionCommand.ts index 43f608815fa79..85af6f9baddc5 100644 --- a/clients/client-rekognition/src/commands/StopProjectVersionCommand.ts +++ b/clients/client-rekognition/src/commands/StopProjectVersionCommand.ts @@ -84,23 +84,23 @@ export interface StopProjectVersionCommandOutput extends StopProjectVersionRespo * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To stop an Amazon Rekognition Custom Labels model. * ```javascript * // Stops a version of an Amazon Rekognition Custom Labels model. * const input = { - * "ProjectVersionArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/1/1690556751958" + * ProjectVersionArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-project/version/1/1690556751958" * }; * const command = new StopProjectVersionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Status": "STOPPING" + * Status: "STOPPING" * } * *\/ - * // example id: to-stop-an-amazon-rekognition-custom-labels-model-1690561110698 * ``` * + * @public */ export class StopProjectVersionCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/StopStreamProcessorCommand.ts b/clients/client-rekognition/src/commands/StopStreamProcessorCommand.ts index 9ddf32b65b76d..1527473fba100 100644 --- a/clients/client-rekognition/src/commands/StopStreamProcessorCommand.ts +++ b/clients/client-rekognition/src/commands/StopStreamProcessorCommand.ts @@ -76,6 +76,7 @@ export interface StopStreamProcessorCommandOutput extends StopStreamProcessorRes * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class StopStreamProcessorCommand extends $Command diff --git a/clients/client-rekognition/src/commands/TagResourceCommand.ts b/clients/client-rekognition/src/commands/TagResourceCommand.ts index ff385b8294cfd..2a598522d7a45 100644 --- a/clients/client-rekognition/src/commands/TagResourceCommand.ts +++ b/clients/client-rekognition/src/commands/TagResourceCommand.ts @@ -85,6 +85,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-rekognition/src/commands/UntagResourceCommand.ts b/clients/client-rekognition/src/commands/UntagResourceCommand.ts index 042c3194ef746..bc84488038e30 100644 --- a/clients/client-rekognition/src/commands/UntagResourceCommand.ts +++ b/clients/client-rekognition/src/commands/UntagResourceCommand.ts @@ -79,6 +79,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-rekognition/src/commands/UpdateDatasetEntriesCommand.ts b/clients/client-rekognition/src/commands/UpdateDatasetEntriesCommand.ts index ffb1165c5aeb5..3b53d89ca3f6c 100644 --- a/clients/client-rekognition/src/commands/UpdateDatasetEntriesCommand.ts +++ b/clients/client-rekognition/src/commands/UpdateDatasetEntriesCommand.ts @@ -110,21 +110,24 @@ export interface UpdateDatasetEntriesCommandOutput extends UpdateDatasetEntriesR * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* - * @public + * * @example To-add dataset entries to an Amazon Rekognition Custom Labels dataset * ```javascript * // Adds dataset entries to an Amazon Rekognition Custom Labels dataset. * const input = { - * "Changes": { - * "GroundTruth": "{\"source-ref\":\"s3://custom-labels-console-us-east-1-111111111/assets/flowers_1_test_dataset/mediterranean_spurge4.jpg\",\"mediterranean_spurge\":1,\"mediterranean_spurge-metadata\":{\"confidence\":1,\"job-name\":\"labeling-job/mediterranean_spurge\",\"class-name\":\"mediterranean_spurge\",\"human-annotated\":\"yes\",\"creation-date\":\"2021-07-11T03:33:42.025Z\",\"type\":\"groundtruth/image-classification\"},\"with_leaves\":1,\"with_leaves-metadata\":{\"confidence\":1,\"job-name\":\"labeling-job/with_leaves\",\"class-name\":\"with_leaves\",\"human-annotated\":\"yes\",\"creation-date\":\"2021-07-11T03:33:42.025Z\",\"type\":\"groundtruth/image-classification\"}}" + * Changes: { + * GroundTruth: `{"source-ref":"s3://custom-labels-console-us-east-1-111111111/assets/flowers_1_test_dataset/mediterranean_spurge4.jpg","mediterranean_spurge":1,"mediterranean_spurge-metadata":{"confidence":1,"job-name":"labeling-job/mediterranean_spurge","class-name":"mediterranean_spurge","human-annotated":"yes","creation-date":"2021-07-11T03:33:42.025Z","type":"groundtruth/image-classification"},"with_leaves":1,"with_leaves-metadata":{"confidence":1,"job-name":"labeling-job/with_leaves","class-name":"with_leaves","human-annotated":"yes","creation-date":"2021-07-11T03:33:42.025Z","type":"groundtruth/image-classification"}}` * }, - * "DatasetArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-proj-2/dataset/train/1690564858106" + * DatasetArn: "arn:aws:rekognition:us-east-1:111122223333:project/my-proj-2/dataset/train/1690564858106" * }; * const command = new UpdateDatasetEntriesCommand(input); - * await client.send(command); - * // example id: to-add-dataset-entries-to-an-amazon-rekognition-custom-labels-dataset-1690816977073 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UpdateDatasetEntriesCommand extends $Command .classBuilder< diff --git a/clients/client-rekognition/src/commands/UpdateStreamProcessorCommand.ts b/clients/client-rekognition/src/commands/UpdateStreamProcessorCommand.ts index ebb28d6d11ff5..e8d7fc6fd152d 100644 --- a/clients/client-rekognition/src/commands/UpdateStreamProcessorCommand.ts +++ b/clients/client-rekognition/src/commands/UpdateStreamProcessorCommand.ts @@ -108,6 +108,7 @@ export interface UpdateStreamProcessorCommandOutput extends UpdateStreamProcesso * @throws {@link RekognitionServiceException} *

Base exception class for all service exceptions from Rekognition service.

* + * * @public */ export class UpdateStreamProcessorCommand extends $Command diff --git a/clients/client-rekognitionstreaming/src/commands/StartFaceLivenessSessionCommand.ts b/clients/client-rekognitionstreaming/src/commands/StartFaceLivenessSessionCommand.ts index 190c8dbf49f05..22550564d8485 100644 --- a/clients/client-rekognitionstreaming/src/commands/StartFaceLivenessSessionCommand.ts +++ b/clients/client-rekognitionstreaming/src/commands/StartFaceLivenessSessionCommand.ts @@ -217,6 +217,7 @@ export interface StartFaceLivenessSessionCommandOutput extends StartFaceLiveness * @throws {@link RekognitionStreamingServiceException} *

Base exception class for all service exceptions from RekognitionStreaming service.

* + * * @public */ export class StartFaceLivenessSessionCommand extends $Command diff --git a/clients/client-repostspace/src/commands/BatchAddRoleCommand.ts b/clients/client-repostspace/src/commands/BatchAddRoleCommand.ts index af1bde1bc7123..bbf0bbd247349 100644 --- a/clients/client-repostspace/src/commands/BatchAddRoleCommand.ts +++ b/clients/client-repostspace/src/commands/BatchAddRoleCommand.ts @@ -83,6 +83,7 @@ export interface BatchAddRoleCommandOutput extends BatchAddRoleOutput, __Metadat * @throws {@link RepostspaceServiceException} *

Base exception class for all service exceptions from Repostspace service.

* + * * @public */ export class BatchAddRoleCommand extends $Command diff --git a/clients/client-repostspace/src/commands/BatchRemoveRoleCommand.ts b/clients/client-repostspace/src/commands/BatchRemoveRoleCommand.ts index a14395b1cd241..32ede371fd253 100644 --- a/clients/client-repostspace/src/commands/BatchRemoveRoleCommand.ts +++ b/clients/client-repostspace/src/commands/BatchRemoveRoleCommand.ts @@ -83,6 +83,7 @@ export interface BatchRemoveRoleCommandOutput extends BatchRemoveRoleOutput, __M * @throws {@link RepostspaceServiceException} *

Base exception class for all service exceptions from Repostspace service.

* + * * @public */ export class BatchRemoveRoleCommand extends $Command diff --git a/clients/client-repostspace/src/commands/CreateSpaceCommand.ts b/clients/client-repostspace/src/commands/CreateSpaceCommand.ts index 38a5d46428fb3..28ea4f7d622f6 100644 --- a/clients/client-repostspace/src/commands/CreateSpaceCommand.ts +++ b/clients/client-repostspace/src/commands/CreateSpaceCommand.ts @@ -84,6 +84,7 @@ export interface CreateSpaceCommandOutput extends CreateSpaceOutput, __MetadataB * @throws {@link RepostspaceServiceException} *

Base exception class for all service exceptions from Repostspace service.

* + * * @public */ export class CreateSpaceCommand extends $Command diff --git a/clients/client-repostspace/src/commands/DeleteSpaceCommand.ts b/clients/client-repostspace/src/commands/DeleteSpaceCommand.ts index 3297ed03ae129..068adda74a658 100644 --- a/clients/client-repostspace/src/commands/DeleteSpaceCommand.ts +++ b/clients/client-repostspace/src/commands/DeleteSpaceCommand.ts @@ -68,6 +68,7 @@ export interface DeleteSpaceCommandOutput extends __MetadataBearer {} * @throws {@link RepostspaceServiceException} *

Base exception class for all service exceptions from Repostspace service.

* + * * @public */ export class DeleteSpaceCommand extends $Command diff --git a/clients/client-repostspace/src/commands/DeregisterAdminCommand.ts b/clients/client-repostspace/src/commands/DeregisterAdminCommand.ts index c94affeba0a32..f76198f863c80 100644 --- a/clients/client-repostspace/src/commands/DeregisterAdminCommand.ts +++ b/clients/client-repostspace/src/commands/DeregisterAdminCommand.ts @@ -69,6 +69,7 @@ export interface DeregisterAdminCommandOutput extends __MetadataBearer {} * @throws {@link RepostspaceServiceException} *

Base exception class for all service exceptions from Repostspace service.

* + * * @public */ export class DeregisterAdminCommand extends $Command diff --git a/clients/client-repostspace/src/commands/GetSpaceCommand.ts b/clients/client-repostspace/src/commands/GetSpaceCommand.ts index e5fa8364ba250..390d0af8e6166 100644 --- a/clients/client-repostspace/src/commands/GetSpaceCommand.ts +++ b/clients/client-repostspace/src/commands/GetSpaceCommand.ts @@ -98,6 +98,7 @@ export interface GetSpaceCommandOutput extends GetSpaceOutput, __MetadataBearer * @throws {@link RepostspaceServiceException} *

Base exception class for all service exceptions from Repostspace service.

* + * * @public */ export class GetSpaceCommand extends $Command diff --git a/clients/client-repostspace/src/commands/ListSpacesCommand.ts b/clients/client-repostspace/src/commands/ListSpacesCommand.ts index 23924f734650b..1e39899affc80 100644 --- a/clients/client-repostspace/src/commands/ListSpacesCommand.ts +++ b/clients/client-repostspace/src/commands/ListSpacesCommand.ts @@ -88,6 +88,7 @@ export interface ListSpacesCommandOutput extends ListSpacesOutput, __MetadataBea * @throws {@link RepostspaceServiceException} *

Base exception class for all service exceptions from Repostspace service.

* + * * @public */ export class ListSpacesCommand extends $Command diff --git a/clients/client-repostspace/src/commands/ListTagsForResourceCommand.ts b/clients/client-repostspace/src/commands/ListTagsForResourceCommand.ts index 868292dfe1ac8..9defbfe85c65e 100644 --- a/clients/client-repostspace/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-repostspace/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link RepostspaceServiceException} *

Base exception class for all service exceptions from Repostspace service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-repostspace/src/commands/RegisterAdminCommand.ts b/clients/client-repostspace/src/commands/RegisterAdminCommand.ts index 9b0656b7ef453..e577c85e28a72 100644 --- a/clients/client-repostspace/src/commands/RegisterAdminCommand.ts +++ b/clients/client-repostspace/src/commands/RegisterAdminCommand.ts @@ -69,6 +69,7 @@ export interface RegisterAdminCommandOutput extends __MetadataBearer {} * @throws {@link RepostspaceServiceException} *

Base exception class for all service exceptions from Repostspace service.

* + * * @public */ export class RegisterAdminCommand extends $Command diff --git a/clients/client-repostspace/src/commands/SendInvitesCommand.ts b/clients/client-repostspace/src/commands/SendInvitesCommand.ts index acb8a3bf12dcf..838b3279c39e6 100644 --- a/clients/client-repostspace/src/commands/SendInvitesCommand.ts +++ b/clients/client-repostspace/src/commands/SendInvitesCommand.ts @@ -73,6 +73,7 @@ export interface SendInvitesCommandOutput extends __MetadataBearer {} * @throws {@link RepostspaceServiceException} *

Base exception class for all service exceptions from Repostspace service.

* + * * @public */ export class SendInvitesCommand extends $Command diff --git a/clients/client-repostspace/src/commands/TagResourceCommand.ts b/clients/client-repostspace/src/commands/TagResourceCommand.ts index 0df22932568ff..cf2ba6ab44652 100644 --- a/clients/client-repostspace/src/commands/TagResourceCommand.ts +++ b/clients/client-repostspace/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link RepostspaceServiceException} *

Base exception class for all service exceptions from Repostspace service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-repostspace/src/commands/UntagResourceCommand.ts b/clients/client-repostspace/src/commands/UntagResourceCommand.ts index 032928a617f8b..3cc86bec6c998 100644 --- a/clients/client-repostspace/src/commands/UntagResourceCommand.ts +++ b/clients/client-repostspace/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link RepostspaceServiceException} *

Base exception class for all service exceptions from Repostspace service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-repostspace/src/commands/UpdateSpaceCommand.ts b/clients/client-repostspace/src/commands/UpdateSpaceCommand.ts index 518b2f1e47d92..7221c5f0b5761 100644 --- a/clients/client-repostspace/src/commands/UpdateSpaceCommand.ts +++ b/clients/client-repostspace/src/commands/UpdateSpaceCommand.ts @@ -74,6 +74,7 @@ export interface UpdateSpaceCommandOutput extends __MetadataBearer {} * @throws {@link RepostspaceServiceException} *

Base exception class for all service exceptions from Repostspace service.

* + * * @public */ export class UpdateSpaceCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/AcceptResourceGroupingRecommendationsCommand.ts b/clients/client-resiliencehub/src/commands/AcceptResourceGroupingRecommendationsCommand.ts index 931269f90c917..c437c4e3a0399 100644 --- a/clients/client-resiliencehub/src/commands/AcceptResourceGroupingRecommendationsCommand.ts +++ b/clients/client-resiliencehub/src/commands/AcceptResourceGroupingRecommendationsCommand.ts @@ -93,6 +93,7 @@ export interface AcceptResourceGroupingRecommendationsCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class AcceptResourceGroupingRecommendationsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/AddDraftAppVersionResourceMappingsCommand.ts b/clients/client-resiliencehub/src/commands/AddDraftAppVersionResourceMappingsCommand.ts index 0afbd36d2a4ba..9ab4d456eec50 100644 --- a/clients/client-resiliencehub/src/commands/AddDraftAppVersionResourceMappingsCommand.ts +++ b/clients/client-resiliencehub/src/commands/AddDraftAppVersionResourceMappingsCommand.ts @@ -131,6 +131,7 @@ export interface AddDraftAppVersionResourceMappingsCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class AddDraftAppVersionResourceMappingsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/BatchUpdateRecommendationStatusCommand.ts b/clients/client-resiliencehub/src/commands/BatchUpdateRecommendationStatusCommand.ts index 241884cd30d84..24bce58bb418f 100644 --- a/clients/client-resiliencehub/src/commands/BatchUpdateRecommendationStatusCommand.ts +++ b/clients/client-resiliencehub/src/commands/BatchUpdateRecommendationStatusCommand.ts @@ -112,6 +112,7 @@ export interface BatchUpdateRecommendationStatusCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class BatchUpdateRecommendationStatusCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/CreateAppCommand.ts b/clients/client-resiliencehub/src/commands/CreateAppCommand.ts index ec42af82f9c78..e504f364c83df 100644 --- a/clients/client-resiliencehub/src/commands/CreateAppCommand.ts +++ b/clients/client-resiliencehub/src/commands/CreateAppCommand.ts @@ -154,6 +154,7 @@ export interface CreateAppCommandOutput extends CreateAppResponse, __MetadataBea * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class CreateAppCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/CreateAppVersionAppComponentCommand.ts b/clients/client-resiliencehub/src/commands/CreateAppVersionAppComponentCommand.ts index 691d23ef1538d..5364a12e963e7 100644 --- a/clients/client-resiliencehub/src/commands/CreateAppVersionAppComponentCommand.ts +++ b/clients/client-resiliencehub/src/commands/CreateAppVersionAppComponentCommand.ts @@ -113,6 +113,7 @@ export interface CreateAppVersionAppComponentCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class CreateAppVersionAppComponentCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/CreateAppVersionResourceCommand.ts b/clients/client-resiliencehub/src/commands/CreateAppVersionResourceCommand.ts index 0c4b690cf058b..9abdccc3d1db7 100644 --- a/clients/client-resiliencehub/src/commands/CreateAppVersionResourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/CreateAppVersionResourceCommand.ts @@ -160,6 +160,7 @@ export interface CreateAppVersionResourceCommandOutput extends CreateAppVersionR * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class CreateAppVersionResourceCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/CreateRecommendationTemplateCommand.ts b/clients/client-resiliencehub/src/commands/CreateRecommendationTemplateCommand.ts index bd20609ee83db..d47bb008f80f2 100644 --- a/clients/client-resiliencehub/src/commands/CreateRecommendationTemplateCommand.ts +++ b/clients/client-resiliencehub/src/commands/CreateRecommendationTemplateCommand.ts @@ -130,6 +130,7 @@ export interface CreateRecommendationTemplateCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class CreateRecommendationTemplateCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/CreateResiliencyPolicyCommand.ts b/clients/client-resiliencehub/src/commands/CreateResiliencyPolicyCommand.ts index 01501255aa0ed..9f583f827cf19 100644 --- a/clients/client-resiliencehub/src/commands/CreateResiliencyPolicyCommand.ts +++ b/clients/client-resiliencehub/src/commands/CreateResiliencyPolicyCommand.ts @@ -124,6 +124,7 @@ export interface CreateResiliencyPolicyCommandOutput extends CreateResiliencyPol * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class CreateResiliencyPolicyCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DeleteAppAssessmentCommand.ts b/clients/client-resiliencehub/src/commands/DeleteAppAssessmentCommand.ts index ab6426af3d44f..bb18f4878ae1d 100644 --- a/clients/client-resiliencehub/src/commands/DeleteAppAssessmentCommand.ts +++ b/clients/client-resiliencehub/src/commands/DeleteAppAssessmentCommand.ts @@ -82,6 +82,7 @@ export interface DeleteAppAssessmentCommandOutput extends DeleteAppAssessmentRes * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DeleteAppAssessmentCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DeleteAppCommand.ts b/clients/client-resiliencehub/src/commands/DeleteAppCommand.ts index bef2a803bbe75..5dc3434cb8f2d 100644 --- a/clients/client-resiliencehub/src/commands/DeleteAppCommand.ts +++ b/clients/client-resiliencehub/src/commands/DeleteAppCommand.ts @@ -77,6 +77,7 @@ export interface DeleteAppCommandOutput extends DeleteAppResponse, __MetadataBea * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DeleteAppCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DeleteAppInputSourceCommand.ts b/clients/client-resiliencehub/src/commands/DeleteAppInputSourceCommand.ts index a11c3c368863e..fa750a626fa32 100644 --- a/clients/client-resiliencehub/src/commands/DeleteAppInputSourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/DeleteAppInputSourceCommand.ts @@ -102,6 +102,7 @@ export interface DeleteAppInputSourceCommandOutput extends DeleteAppInputSourceR * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DeleteAppInputSourceCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DeleteAppVersionAppComponentCommand.ts b/clients/client-resiliencehub/src/commands/DeleteAppVersionAppComponentCommand.ts index 5c3efd580fa03..9ded53016852a 100644 --- a/clients/client-resiliencehub/src/commands/DeleteAppVersionAppComponentCommand.ts +++ b/clients/client-resiliencehub/src/commands/DeleteAppVersionAppComponentCommand.ts @@ -110,6 +110,7 @@ export interface DeleteAppVersionAppComponentCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DeleteAppVersionAppComponentCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DeleteAppVersionResourceCommand.ts b/clients/client-resiliencehub/src/commands/DeleteAppVersionResourceCommand.ts index 84e35a47e2991..b450bc5776f5a 100644 --- a/clients/client-resiliencehub/src/commands/DeleteAppVersionResourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/DeleteAppVersionResourceCommand.ts @@ -145,6 +145,7 @@ export interface DeleteAppVersionResourceCommandOutput extends DeleteAppVersionR * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DeleteAppVersionResourceCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DeleteRecommendationTemplateCommand.ts b/clients/client-resiliencehub/src/commands/DeleteRecommendationTemplateCommand.ts index c3af1a9778fde..41d36b0e790b2 100644 --- a/clients/client-resiliencehub/src/commands/DeleteRecommendationTemplateCommand.ts +++ b/clients/client-resiliencehub/src/commands/DeleteRecommendationTemplateCommand.ts @@ -81,6 +81,7 @@ export interface DeleteRecommendationTemplateCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DeleteRecommendationTemplateCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DeleteResiliencyPolicyCommand.ts b/clients/client-resiliencehub/src/commands/DeleteResiliencyPolicyCommand.ts index d79da1fa9cb46..d2ed30f2f3a63 100644 --- a/clients/client-resiliencehub/src/commands/DeleteResiliencyPolicyCommand.ts +++ b/clients/client-resiliencehub/src/commands/DeleteResiliencyPolicyCommand.ts @@ -80,6 +80,7 @@ export interface DeleteResiliencyPolicyCommandOutput extends DeleteResiliencyPol * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DeleteResiliencyPolicyCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DescribeAppAssessmentCommand.ts b/clients/client-resiliencehub/src/commands/DescribeAppAssessmentCommand.ts index e173147d433a7..16c12b232654b 100644 --- a/clients/client-resiliencehub/src/commands/DescribeAppAssessmentCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeAppAssessmentCommand.ts @@ -166,6 +166,7 @@ export interface DescribeAppAssessmentCommandOutput extends DescribeAppAssessmen * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DescribeAppAssessmentCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DescribeAppCommand.ts b/clients/client-resiliencehub/src/commands/DescribeAppCommand.ts index 36d436b063928..81acd94452637 100644 --- a/clients/client-resiliencehub/src/commands/DescribeAppCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeAppCommand.ts @@ -107,6 +107,7 @@ export interface DescribeAppCommandOutput extends DescribeAppResponse, __Metadat * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DescribeAppCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DescribeAppVersionAppComponentCommand.ts b/clients/client-resiliencehub/src/commands/DescribeAppVersionAppComponentCommand.ts index f4de4070ba565..a8a7a9b87e23b 100644 --- a/clients/client-resiliencehub/src/commands/DescribeAppVersionAppComponentCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeAppVersionAppComponentCommand.ts @@ -97,6 +97,7 @@ export interface DescribeAppVersionAppComponentCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DescribeAppVersionAppComponentCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DescribeAppVersionCommand.ts b/clients/client-resiliencehub/src/commands/DescribeAppVersionCommand.ts index 387454bba95cb..7f2b0d39fd35c 100644 --- a/clients/client-resiliencehub/src/commands/DescribeAppVersionCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeAppVersionCommand.ts @@ -80,6 +80,7 @@ export interface DescribeAppVersionCommandOutput extends DescribeAppVersionRespo * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DescribeAppVersionCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DescribeAppVersionResourceCommand.ts b/clients/client-resiliencehub/src/commands/DescribeAppVersionResourceCommand.ts index f954968fde935..a0353206e9d1a 100644 --- a/clients/client-resiliencehub/src/commands/DescribeAppVersionResourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeAppVersionResourceCommand.ts @@ -149,6 +149,7 @@ export interface DescribeAppVersionResourceCommandOutput extends DescribeAppVers * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DescribeAppVersionResourceCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DescribeAppVersionResourcesResolutionStatusCommand.ts b/clients/client-resiliencehub/src/commands/DescribeAppVersionResourcesResolutionStatusCommand.ts index 5c9121415a252..8d95dcbb66f3f 100644 --- a/clients/client-resiliencehub/src/commands/DescribeAppVersionResourcesResolutionStatusCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeAppVersionResourcesResolutionStatusCommand.ts @@ -90,6 +90,7 @@ export interface DescribeAppVersionResourcesResolutionStatusCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DescribeAppVersionResourcesResolutionStatusCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DescribeAppVersionTemplateCommand.ts b/clients/client-resiliencehub/src/commands/DescribeAppVersionTemplateCommand.ts index 2e093cfe05e06..f424c7d307a1b 100644 --- a/clients/client-resiliencehub/src/commands/DescribeAppVersionTemplateCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeAppVersionTemplateCommand.ts @@ -76,6 +76,7 @@ export interface DescribeAppVersionTemplateCommandOutput extends DescribeAppVers * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DescribeAppVersionTemplateCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DescribeDraftAppVersionResourcesImportStatusCommand.ts b/clients/client-resiliencehub/src/commands/DescribeDraftAppVersionResourcesImportStatusCommand.ts index 862fbdf0ba2d7..c9fc8bfc06bed 100644 --- a/clients/client-resiliencehub/src/commands/DescribeDraftAppVersionResourcesImportStatusCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeDraftAppVersionResourcesImportStatusCommand.ts @@ -98,6 +98,7 @@ export interface DescribeDraftAppVersionResourcesImportStatusCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DescribeDraftAppVersionResourcesImportStatusCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DescribeMetricsExportCommand.ts b/clients/client-resiliencehub/src/commands/DescribeMetricsExportCommand.ts index 6a9f48c57515e..a0be74aa67d1d 100644 --- a/clients/client-resiliencehub/src/commands/DescribeMetricsExportCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeMetricsExportCommand.ts @@ -79,6 +79,7 @@ export interface DescribeMetricsExportCommandOutput extends DescribeMetricsExpor * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DescribeMetricsExportCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DescribeResiliencyPolicyCommand.ts b/clients/client-resiliencehub/src/commands/DescribeResiliencyPolicyCommand.ts index e8c29eb2956cb..f38a58957319b 100644 --- a/clients/client-resiliencehub/src/commands/DescribeResiliencyPolicyCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeResiliencyPolicyCommand.ts @@ -96,6 +96,7 @@ export interface DescribeResiliencyPolicyCommandOutput extends DescribeResilienc * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DescribeResiliencyPolicyCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/DescribeResourceGroupingRecommendationTaskCommand.ts b/clients/client-resiliencehub/src/commands/DescribeResourceGroupingRecommendationTaskCommand.ts index a2d7cce0ec8c6..a7a56e62f2563 100644 --- a/clients/client-resiliencehub/src/commands/DescribeResourceGroupingRecommendationTaskCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeResourceGroupingRecommendationTaskCommand.ts @@ -85,6 +85,7 @@ export interface DescribeResourceGroupingRecommendationTaskCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class DescribeResourceGroupingRecommendationTaskCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ImportResourcesToDraftAppVersionCommand.ts b/clients/client-resiliencehub/src/commands/ImportResourcesToDraftAppVersionCommand.ts index 5dcd111b69345..61969a1e01ad2 100644 --- a/clients/client-resiliencehub/src/commands/ImportResourcesToDraftAppVersionCommand.ts +++ b/clients/client-resiliencehub/src/commands/ImportResourcesToDraftAppVersionCommand.ts @@ -125,6 +125,7 @@ export interface ImportResourcesToDraftAppVersionCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ImportResourcesToDraftAppVersionCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListAlarmRecommendationsCommand.ts b/clients/client-resiliencehub/src/commands/ListAlarmRecommendationsCommand.ts index d13e3342d953c..97c821c2acb27 100644 --- a/clients/client-resiliencehub/src/commands/ListAlarmRecommendationsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAlarmRecommendationsCommand.ts @@ -108,6 +108,7 @@ export interface ListAlarmRecommendationsCommandOutput extends ListAlarmRecommen * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListAlarmRecommendationsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListAppAssessmentComplianceDriftsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppAssessmentComplianceDriftsCommand.ts index d5b99f01f1f21..702170d0ddac9 100644 --- a/clients/client-resiliencehub/src/commands/ListAppAssessmentComplianceDriftsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppAssessmentComplianceDriftsCommand.ts @@ -121,6 +121,7 @@ export interface ListAppAssessmentComplianceDriftsCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListAppAssessmentComplianceDriftsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListAppAssessmentResourceDriftsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppAssessmentResourceDriftsCommand.ts index 76aa4023087c2..6a9535cea6188 100644 --- a/clients/client-resiliencehub/src/commands/ListAppAssessmentResourceDriftsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppAssessmentResourceDriftsCommand.ts @@ -96,6 +96,7 @@ export interface ListAppAssessmentResourceDriftsCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListAppAssessmentResourceDriftsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListAppAssessmentsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppAssessmentsCommand.ts index dd1486c3a7528..2caec97bb244b 100644 --- a/clients/client-resiliencehub/src/commands/ListAppAssessmentsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppAssessmentsCommand.ts @@ -105,6 +105,7 @@ export interface ListAppAssessmentsCommandOutput extends ListAppAssessmentsRespo * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListAppAssessmentsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListAppComponentCompliancesCommand.ts b/clients/client-resiliencehub/src/commands/ListAppComponentCompliancesCommand.ts index aad880553451d..2dfe30b8a6571 100644 --- a/clients/client-resiliencehub/src/commands/ListAppComponentCompliancesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppComponentCompliancesCommand.ts @@ -120,6 +120,7 @@ export interface ListAppComponentCompliancesCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListAppComponentCompliancesCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListAppComponentRecommendationsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppComponentRecommendationsCommand.ts index 1e8bdaef76316..274d14702904c 100644 --- a/clients/client-resiliencehub/src/commands/ListAppComponentRecommendationsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppComponentRecommendationsCommand.ts @@ -127,6 +127,7 @@ export interface ListAppComponentRecommendationsCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListAppComponentRecommendationsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListAppInputSourcesCommand.ts b/clients/client-resiliencehub/src/commands/ListAppInputSourcesCommand.ts index c0b72c235b866..0d4641e5210e2 100644 --- a/clients/client-resiliencehub/src/commands/ListAppInputSourcesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppInputSourcesCommand.ts @@ -93,6 +93,7 @@ export interface ListAppInputSourcesCommandOutput extends ListAppInputSourcesRes * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListAppInputSourcesCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListAppVersionAppComponentsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppVersionAppComponentsCommand.ts index deb9bb390ff41..7efc98e6408af 100644 --- a/clients/client-resiliencehub/src/commands/ListAppVersionAppComponentsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppVersionAppComponentsCommand.ts @@ -101,6 +101,7 @@ export interface ListAppVersionAppComponentsCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListAppVersionAppComponentsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListAppVersionResourceMappingsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppVersionResourceMappingsCommand.ts index 346da8f3558e0..bd80bf26b7251 100644 --- a/clients/client-resiliencehub/src/commands/ListAppVersionResourceMappingsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppVersionResourceMappingsCommand.ts @@ -100,6 +100,7 @@ export interface ListAppVersionResourceMappingsCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListAppVersionResourceMappingsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListAppVersionResourcesCommand.ts b/clients/client-resiliencehub/src/commands/ListAppVersionResourcesCommand.ts index 83bb482d41631..ec55913214e44 100644 --- a/clients/client-resiliencehub/src/commands/ListAppVersionResourcesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppVersionResourcesCommand.ts @@ -123,6 +123,7 @@ export interface ListAppVersionResourcesCommandOutput extends ListAppVersionReso * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListAppVersionResourcesCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListAppVersionsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppVersionsCommand.ts index a98e11dda366d..f0854e8d13048 100644 --- a/clients/client-resiliencehub/src/commands/ListAppVersionsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppVersionsCommand.ts @@ -82,6 +82,7 @@ export interface ListAppVersionsCommandOutput extends ListAppVersionsResponse, _ * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListAppVersionsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListAppsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppsCommand.ts index 5b1f128ef758b..758b77e6cd5dc 100644 --- a/clients/client-resiliencehub/src/commands/ListAppsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppsCommand.ts @@ -103,6 +103,7 @@ export interface ListAppsCommandOutput extends ListAppsResponse, __MetadataBeare * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListAppsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListMetricsCommand.ts b/clients/client-resiliencehub/src/commands/ListMetricsCommand.ts index 84d373eee5761..b2688f20d39d3 100644 --- a/clients/client-resiliencehub/src/commands/ListMetricsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListMetricsCommand.ts @@ -96,6 +96,7 @@ export interface ListMetricsCommandOutput extends ListMetricsResponse, __Metadat * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListMetricsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListRecommendationTemplatesCommand.ts b/clients/client-resiliencehub/src/commands/ListRecommendationTemplatesCommand.ts index 740914ed05544..f21d1f8938b7c 100644 --- a/clients/client-resiliencehub/src/commands/ListRecommendationTemplatesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListRecommendationTemplatesCommand.ts @@ -114,6 +114,7 @@ export interface ListRecommendationTemplatesCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListRecommendationTemplatesCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListResiliencyPoliciesCommand.ts b/clients/client-resiliencehub/src/commands/ListResiliencyPoliciesCommand.ts index e2bc58274dbe4..0e3f4b9d214ba 100644 --- a/clients/client-resiliencehub/src/commands/ListResiliencyPoliciesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListResiliencyPoliciesCommand.ts @@ -99,6 +99,7 @@ export interface ListResiliencyPoliciesCommandOutput extends ListResiliencyPolic * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListResiliencyPoliciesCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListResourceGroupingRecommendationsCommand.ts b/clients/client-resiliencehub/src/commands/ListResourceGroupingRecommendationsCommand.ts index ac0c1ed11fbdb..d4ba448c074bf 100644 --- a/clients/client-resiliencehub/src/commands/ListResourceGroupingRecommendationsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListResourceGroupingRecommendationsCommand.ts @@ -123,6 +123,7 @@ export interface ListResourceGroupingRecommendationsCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListResourceGroupingRecommendationsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListSopRecommendationsCommand.ts b/clients/client-resiliencehub/src/commands/ListSopRecommendationsCommand.ts index b7a76c21d98b6..74634f54f62a7 100644 --- a/clients/client-resiliencehub/src/commands/ListSopRecommendationsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListSopRecommendationsCommand.ts @@ -111,6 +111,7 @@ export interface ListSopRecommendationsCommandOutput extends ListSopRecommendati * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListSopRecommendationsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListSuggestedResiliencyPoliciesCommand.ts b/clients/client-resiliencehub/src/commands/ListSuggestedResiliencyPoliciesCommand.ts index 9c4f36725533c..4750d65f9b890 100644 --- a/clients/client-resiliencehub/src/commands/ListSuggestedResiliencyPoliciesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListSuggestedResiliencyPoliciesCommand.ts @@ -104,6 +104,7 @@ export interface ListSuggestedResiliencyPoliciesCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListSuggestedResiliencyPoliciesCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListTagsForResourceCommand.ts b/clients/client-resiliencehub/src/commands/ListTagsForResourceCommand.ts index b4aa9882ab89c..a61d222892e10 100644 --- a/clients/client-resiliencehub/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListTagsForResourceCommand.ts @@ -79,6 +79,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListTestRecommendationsCommand.ts b/clients/client-resiliencehub/src/commands/ListTestRecommendationsCommand.ts index 9ffed9be0e8c1..c5ecfc2118af6 100644 --- a/clients/client-resiliencehub/src/commands/ListTestRecommendationsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListTestRecommendationsCommand.ts @@ -117,6 +117,7 @@ export interface ListTestRecommendationsCommandOutput extends ListTestRecommenda * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListTestRecommendationsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ListUnsupportedAppVersionResourcesCommand.ts b/clients/client-resiliencehub/src/commands/ListUnsupportedAppVersionResourcesCommand.ts index d7b184b8526a3..73f6fc5be744a 100644 --- a/clients/client-resiliencehub/src/commands/ListUnsupportedAppVersionResourcesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListUnsupportedAppVersionResourcesCommand.ts @@ -113,6 +113,7 @@ export interface ListUnsupportedAppVersionResourcesCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ListUnsupportedAppVersionResourcesCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/PublishAppVersionCommand.ts b/clients/client-resiliencehub/src/commands/PublishAppVersionCommand.ts index 91fe2dc2243c8..b108da812e010 100644 --- a/clients/client-resiliencehub/src/commands/PublishAppVersionCommand.ts +++ b/clients/client-resiliencehub/src/commands/PublishAppVersionCommand.ts @@ -83,6 +83,7 @@ export interface PublishAppVersionCommandOutput extends PublishAppVersionRespons * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class PublishAppVersionCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/PutDraftAppVersionTemplateCommand.ts b/clients/client-resiliencehub/src/commands/PutDraftAppVersionTemplateCommand.ts index 30c5dd39cac97..c86b6127cd6c5 100644 --- a/clients/client-resiliencehub/src/commands/PutDraftAppVersionTemplateCommand.ts +++ b/clients/client-resiliencehub/src/commands/PutDraftAppVersionTemplateCommand.ts @@ -82,6 +82,7 @@ export interface PutDraftAppVersionTemplateCommandOutput extends PutDraftAppVers * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class PutDraftAppVersionTemplateCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/RejectResourceGroupingRecommendationsCommand.ts b/clients/client-resiliencehub/src/commands/RejectResourceGroupingRecommendationsCommand.ts index 8d37989b6d798..7b041c68cc48c 100644 --- a/clients/client-resiliencehub/src/commands/RejectResourceGroupingRecommendationsCommand.ts +++ b/clients/client-resiliencehub/src/commands/RejectResourceGroupingRecommendationsCommand.ts @@ -94,6 +94,7 @@ export interface RejectResourceGroupingRecommendationsCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class RejectResourceGroupingRecommendationsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/RemoveDraftAppVersionResourceMappingsCommand.ts b/clients/client-resiliencehub/src/commands/RemoveDraftAppVersionResourceMappingsCommand.ts index 2fef9216dae0b..fcc6d27bf6875 100644 --- a/clients/client-resiliencehub/src/commands/RemoveDraftAppVersionResourceMappingsCommand.ts +++ b/clients/client-resiliencehub/src/commands/RemoveDraftAppVersionResourceMappingsCommand.ts @@ -107,6 +107,7 @@ export interface RemoveDraftAppVersionResourceMappingsCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class RemoveDraftAppVersionResourceMappingsCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/ResolveAppVersionResourcesCommand.ts b/clients/client-resiliencehub/src/commands/ResolveAppVersionResourcesCommand.ts index ced5e0cfbe907..f1f3f3830f5c0 100644 --- a/clients/client-resiliencehub/src/commands/ResolveAppVersionResourcesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ResolveAppVersionResourcesCommand.ts @@ -83,6 +83,7 @@ export interface ResolveAppVersionResourcesCommandOutput extends ResolveAppVersi * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class ResolveAppVersionResourcesCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/StartAppAssessmentCommand.ts b/clients/client-resiliencehub/src/commands/StartAppAssessmentCommand.ts index fe242f3fc7a54..71c127e416ecb 100644 --- a/clients/client-resiliencehub/src/commands/StartAppAssessmentCommand.ts +++ b/clients/client-resiliencehub/src/commands/StartAppAssessmentCommand.ts @@ -183,6 +183,7 @@ export interface StartAppAssessmentCommandOutput extends StartAppAssessmentRespo * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class StartAppAssessmentCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/StartMetricsExportCommand.ts b/clients/client-resiliencehub/src/commands/StartMetricsExportCommand.ts index a854d034b4b36..0664e1d755edc 100644 --- a/clients/client-resiliencehub/src/commands/StartMetricsExportCommand.ts +++ b/clients/client-resiliencehub/src/commands/StartMetricsExportCommand.ts @@ -82,6 +82,7 @@ export interface StartMetricsExportCommandOutput extends StartMetricsExportRespo * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class StartMetricsExportCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/StartResourceGroupingRecommendationTaskCommand.ts b/clients/client-resiliencehub/src/commands/StartResourceGroupingRecommendationTaskCommand.ts index 94b904eb532cc..44bc31479a594 100644 --- a/clients/client-resiliencehub/src/commands/StartResourceGroupingRecommendationTaskCommand.ts +++ b/clients/client-resiliencehub/src/commands/StartResourceGroupingRecommendationTaskCommand.ts @@ -91,6 +91,7 @@ export interface StartResourceGroupingRecommendationTaskCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class StartResourceGroupingRecommendationTaskCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/TagResourceCommand.ts b/clients/client-resiliencehub/src/commands/TagResourceCommand.ts index ad648f8534f70..bce479bab9fd8 100644 --- a/clients/client-resiliencehub/src/commands/TagResourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/UntagResourceCommand.ts b/clients/client-resiliencehub/src/commands/UntagResourceCommand.ts index 85ca6c8e89111..5da804d78cb8c 100644 --- a/clients/client-resiliencehub/src/commands/UntagResourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/UntagResourceCommand.ts @@ -78,6 +78,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/UpdateAppCommand.ts b/clients/client-resiliencehub/src/commands/UpdateAppCommand.ts index ef12e727346ce..b7200a54ed0d7 100644 --- a/clients/client-resiliencehub/src/commands/UpdateAppCommand.ts +++ b/clients/client-resiliencehub/src/commands/UpdateAppCommand.ts @@ -131,6 +131,7 @@ export interface UpdateAppCommandOutput extends UpdateAppResponse, __MetadataBea * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class UpdateAppCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/UpdateAppVersionAppComponentCommand.ts b/clients/client-resiliencehub/src/commands/UpdateAppVersionAppComponentCommand.ts index cc90e6b1b6b6d..2374b0d38d475 100644 --- a/clients/client-resiliencehub/src/commands/UpdateAppVersionAppComponentCommand.ts +++ b/clients/client-resiliencehub/src/commands/UpdateAppVersionAppComponentCommand.ts @@ -108,6 +108,7 @@ export interface UpdateAppVersionAppComponentCommandOutput * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class UpdateAppVersionAppComponentCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/UpdateAppVersionCommand.ts b/clients/client-resiliencehub/src/commands/UpdateAppVersionCommand.ts index 06b979cdd9355..1a07d7720bf58 100644 --- a/clients/client-resiliencehub/src/commands/UpdateAppVersionCommand.ts +++ b/clients/client-resiliencehub/src/commands/UpdateAppVersionCommand.ts @@ -95,6 +95,7 @@ export interface UpdateAppVersionCommandOutput extends UpdateAppVersionResponse, * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class UpdateAppVersionCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/UpdateAppVersionResourceCommand.ts b/clients/client-resiliencehub/src/commands/UpdateAppVersionResourceCommand.ts index 0d0b5ba2a2065..589cb71820430 100644 --- a/clients/client-resiliencehub/src/commands/UpdateAppVersionResourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/UpdateAppVersionResourceCommand.ts @@ -158,6 +158,7 @@ export interface UpdateAppVersionResourceCommandOutput extends UpdateAppVersionR * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class UpdateAppVersionResourceCommand extends $Command diff --git a/clients/client-resiliencehub/src/commands/UpdateResiliencyPolicyCommand.ts b/clients/client-resiliencehub/src/commands/UpdateResiliencyPolicyCommand.ts index 6f45034f38cb2..ec4fd98bc3da6 100644 --- a/clients/client-resiliencehub/src/commands/UpdateResiliencyPolicyCommand.ts +++ b/clients/client-resiliencehub/src/commands/UpdateResiliencyPolicyCommand.ts @@ -119,6 +119,7 @@ export interface UpdateResiliencyPolicyCommandOutput extends UpdateResiliencyPol * @throws {@link ResiliencehubServiceException} *

Base exception class for all service exceptions from Resiliencehub service.

* + * * @public */ export class UpdateResiliencyPolicyCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/AssociateDefaultViewCommand.ts b/clients/client-resource-explorer-2/src/commands/AssociateDefaultViewCommand.ts index 76097ea3c2df5..8673278960329 100644 --- a/clients/client-resource-explorer-2/src/commands/AssociateDefaultViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/AssociateDefaultViewCommand.ts @@ -86,6 +86,7 @@ export interface AssociateDefaultViewCommandOutput extends AssociateDefaultViewO * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class AssociateDefaultViewCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/BatchGetViewCommand.ts b/clients/client-resource-explorer-2/src/commands/BatchGetViewCommand.ts index c139034ff8a9c..362d23891d4c4 100644 --- a/clients/client-resource-explorer-2/src/commands/BatchGetViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/BatchGetViewCommand.ts @@ -102,6 +102,7 @@ export interface BatchGetViewCommandOutput extends BatchGetViewOutput, __Metadat * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class BatchGetViewCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/CreateIndexCommand.ts b/clients/client-resource-explorer-2/src/commands/CreateIndexCommand.ts index f1c06134ba30b..f78e089b1c7ea 100644 --- a/clients/client-resource-explorer-2/src/commands/CreateIndexCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/CreateIndexCommand.ts @@ -140,6 +140,7 @@ export interface CreateIndexCommandOutput extends CreateIndexOutput, __MetadataB * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class CreateIndexCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/CreateViewCommand.ts b/clients/client-resource-explorer-2/src/commands/CreateViewCommand.ts index 24d0161af2c5e..a4b0739ffa7bb 100644 --- a/clients/client-resource-explorer-2/src/commands/CreateViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/CreateViewCommand.ts @@ -129,6 +129,7 @@ export interface CreateViewCommandOutput extends CreateViewOutput, __MetadataBea * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class CreateViewCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/DeleteIndexCommand.ts b/clients/client-resource-explorer-2/src/commands/DeleteIndexCommand.ts index 5bc38b950aa10..92c001ef4f42e 100644 --- a/clients/client-resource-explorer-2/src/commands/DeleteIndexCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/DeleteIndexCommand.ts @@ -93,6 +93,7 @@ export interface DeleteIndexCommandOutput extends DeleteIndexOutput, __MetadataB * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class DeleteIndexCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/DeleteViewCommand.ts b/clients/client-resource-explorer-2/src/commands/DeleteViewCommand.ts index fbcd0709ede45..fa765fc21378f 100644 --- a/clients/client-resource-explorer-2/src/commands/DeleteViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/DeleteViewCommand.ts @@ -86,6 +86,7 @@ export interface DeleteViewCommandOutput extends DeleteViewOutput, __MetadataBea * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class DeleteViewCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/DisassociateDefaultViewCommand.ts b/clients/client-resource-explorer-2/src/commands/DisassociateDefaultViewCommand.ts index 4eedf1444a471..c448a099c041f 100644 --- a/clients/client-resource-explorer-2/src/commands/DisassociateDefaultViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/DisassociateDefaultViewCommand.ts @@ -80,6 +80,7 @@ export interface DisassociateDefaultViewCommandOutput extends __MetadataBearer { * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class DisassociateDefaultViewCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/GetAccountLevelServiceConfigurationCommand.ts b/clients/client-resource-explorer-2/src/commands/GetAccountLevelServiceConfigurationCommand.ts index 101a1b4dad558..1817afe5a9ccb 100644 --- a/clients/client-resource-explorer-2/src/commands/GetAccountLevelServiceConfigurationCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/GetAccountLevelServiceConfigurationCommand.ts @@ -84,6 +84,7 @@ export interface GetAccountLevelServiceConfigurationCommandOutput * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class GetAccountLevelServiceConfigurationCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/GetDefaultViewCommand.ts b/clients/client-resource-explorer-2/src/commands/GetDefaultViewCommand.ts index eee15ffe04f02..a1b07ac8ae9b9 100644 --- a/clients/client-resource-explorer-2/src/commands/GetDefaultViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/GetDefaultViewCommand.ts @@ -79,6 +79,7 @@ export interface GetDefaultViewCommandOutput extends GetDefaultViewOutput, __Met * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class GetDefaultViewCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/GetIndexCommand.ts b/clients/client-resource-explorer-2/src/commands/GetIndexCommand.ts index d71d6c5b2824b..c9612b91e8564 100644 --- a/clients/client-resource-explorer-2/src/commands/GetIndexCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/GetIndexCommand.ts @@ -92,6 +92,7 @@ export interface GetIndexCommandOutput extends GetIndexOutput, __MetadataBearer * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class GetIndexCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/GetManagedViewCommand.ts b/clients/client-resource-explorer-2/src/commands/GetManagedViewCommand.ts index a631b4ec357ba..e8dba1454e49e 100644 --- a/clients/client-resource-explorer-2/src/commands/GetManagedViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/GetManagedViewCommand.ts @@ -100,6 +100,7 @@ export interface GetManagedViewCommandOutput extends GetManagedViewOutput, __Met * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class GetManagedViewCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/GetViewCommand.ts b/clients/client-resource-explorer-2/src/commands/GetViewCommand.ts index 9ac14a1bb5462..d281d56352101 100644 --- a/clients/client-resource-explorer-2/src/commands/GetViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/GetViewCommand.ts @@ -99,6 +99,7 @@ export interface GetViewCommandOutput extends GetViewOutput, __MetadataBearer {} * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class GetViewCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/ListIndexesCommand.ts b/clients/client-resource-explorer-2/src/commands/ListIndexesCommand.ts index dc3491d878840..ff6d6a8f8c046 100644 --- a/clients/client-resource-explorer-2/src/commands/ListIndexesCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListIndexesCommand.ts @@ -89,6 +89,7 @@ export interface ListIndexesCommandOutput extends ListIndexesOutput, __MetadataB * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class ListIndexesCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/ListIndexesForMembersCommand.ts b/clients/client-resource-explorer-2/src/commands/ListIndexesForMembersCommand.ts index 403155467af44..8760cdcc864e3 100644 --- a/clients/client-resource-explorer-2/src/commands/ListIndexesForMembersCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListIndexesForMembersCommand.ts @@ -91,6 +91,7 @@ export interface ListIndexesForMembersCommandOutput extends ListIndexesForMember * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class ListIndexesForMembersCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/ListManagedViewsCommand.ts b/clients/client-resource-explorer-2/src/commands/ListManagedViewsCommand.ts index dac2febed3450..e3c74760599ef 100644 --- a/clients/client-resource-explorer-2/src/commands/ListManagedViewsCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListManagedViewsCommand.ts @@ -86,6 +86,7 @@ export interface ListManagedViewsCommandOutput extends ListManagedViewsOutput, _ * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class ListManagedViewsCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/ListResourcesCommand.ts b/clients/client-resource-explorer-2/src/commands/ListResourcesCommand.ts index 25fe0e25f3a31..1a41d390ec58f 100644 --- a/clients/client-resource-explorer-2/src/commands/ListResourcesCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListResourcesCommand.ts @@ -108,6 +108,7 @@ export interface ListResourcesCommandOutput extends ListResourcesOutput, __Metad * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class ListResourcesCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/ListSupportedResourceTypesCommand.ts b/clients/client-resource-explorer-2/src/commands/ListSupportedResourceTypesCommand.ts index 362204cd42907..e2ed0b1d23389 100644 --- a/clients/client-resource-explorer-2/src/commands/ListSupportedResourceTypesCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListSupportedResourceTypesCommand.ts @@ -83,6 +83,7 @@ export interface ListSupportedResourceTypesCommandOutput extends ListSupportedRe * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class ListSupportedResourceTypesCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/ListTagsForResourceCommand.ts b/clients/client-resource-explorer-2/src/commands/ListTagsForResourceCommand.ts index f2c1618106d6b..1404d84b55b9c 100644 --- a/clients/client-resource-explorer-2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListTagsForResourceCommand.ts @@ -89,6 +89,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/ListViewsCommand.ts b/clients/client-resource-explorer-2/src/commands/ListViewsCommand.ts index 86201d4581107..2f30ccfa179fc 100644 --- a/clients/client-resource-explorer-2/src/commands/ListViewsCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListViewsCommand.ts @@ -89,6 +89,7 @@ export interface ListViewsCommandOutput extends ListViewsOutput, __MetadataBeare * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class ListViewsCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/SearchCommand.ts b/clients/client-resource-explorer-2/src/commands/SearchCommand.ts index 1a2a8ef9c9d4a..6734d129ee615 100644 --- a/clients/client-resource-explorer-2/src/commands/SearchCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/SearchCommand.ts @@ -120,6 +120,7 @@ export interface SearchCommandOutput extends SearchOutput, __MetadataBearer {} * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class SearchCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/TagResourceCommand.ts b/clients/client-resource-explorer-2/src/commands/TagResourceCommand.ts index 09e51d6ff0145..20e125a30f379 100644 --- a/clients/client-resource-explorer-2/src/commands/TagResourceCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/TagResourceCommand.ts @@ -89,6 +89,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/UntagResourceCommand.ts b/clients/client-resource-explorer-2/src/commands/UntagResourceCommand.ts index 02c833b027fcf..d75c5dac662a0 100644 --- a/clients/client-resource-explorer-2/src/commands/UntagResourceCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/UntagResourceCommand.ts @@ -84,6 +84,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/UpdateIndexTypeCommand.ts b/clients/client-resource-explorer-2/src/commands/UpdateIndexTypeCommand.ts index 61eae1a825f8e..3ab9c83476fde 100644 --- a/clients/client-resource-explorer-2/src/commands/UpdateIndexTypeCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/UpdateIndexTypeCommand.ts @@ -152,6 +152,7 @@ export interface UpdateIndexTypeCommandOutput extends UpdateIndexTypeOutput, __M * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class UpdateIndexTypeCommand extends $Command diff --git a/clients/client-resource-explorer-2/src/commands/UpdateViewCommand.ts b/clients/client-resource-explorer-2/src/commands/UpdateViewCommand.ts index 6d64ae77dcf65..61caa8502457c 100644 --- a/clients/client-resource-explorer-2/src/commands/UpdateViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/UpdateViewCommand.ts @@ -109,6 +109,7 @@ export interface UpdateViewCommandOutput extends UpdateViewOutput, __MetadataBea * @throws {@link ResourceExplorer2ServiceException} *

Base exception class for all service exceptions from ResourceExplorer2 service.

* + * * @public */ export class UpdateViewCommand extends $Command diff --git a/clients/client-resource-groups-tagging-api/src/commands/DescribeReportCreationCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/DescribeReportCreationCommand.ts index 7398b4b06e748..1be4b04f3d77a 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/DescribeReportCreationCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/DescribeReportCreationCommand.ts @@ -114,6 +114,7 @@ export interface DescribeReportCreationCommandOutput extends DescribeReportCreat * @throws {@link ResourceGroupsTaggingAPIServiceException} *

Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.

* + * * @public */ export class DescribeReportCreationCommand extends $Command diff --git a/clients/client-resource-groups-tagging-api/src/commands/GetComplianceSummaryCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/GetComplianceSummaryCommand.ts index 1706b7cb4903d..a5b4574a554be 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/GetComplianceSummaryCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/GetComplianceSummaryCommand.ts @@ -149,6 +149,7 @@ export interface GetComplianceSummaryCommandOutput extends GetComplianceSummaryO * @throws {@link ResourceGroupsTaggingAPIServiceException} *

Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.

* + * * @public */ export class GetComplianceSummaryCommand extends $Command diff --git a/clients/client-resource-groups-tagging-api/src/commands/GetResourcesCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/GetResourcesCommand.ts index fa354da675a4b..5f50f3711ea7e 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/GetResourcesCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/GetResourcesCommand.ts @@ -154,6 +154,7 @@ export interface GetResourcesCommandOutput extends GetResourcesOutput, __Metadat * @throws {@link ResourceGroupsTaggingAPIServiceException} *

Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.

* + * * @public */ export class GetResourcesCommand extends $Command diff --git a/clients/client-resource-groups-tagging-api/src/commands/GetTagKeysCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/GetTagKeysCommand.ts index a00e20ad881e8..0b3d6a8a25981 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/GetTagKeysCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/GetTagKeysCommand.ts @@ -103,6 +103,7 @@ export interface GetTagKeysCommandOutput extends GetTagKeysOutput, __MetadataBea * @throws {@link ResourceGroupsTaggingAPIServiceException} *

Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.

* + * * @public */ export class GetTagKeysCommand extends $Command diff --git a/clients/client-resource-groups-tagging-api/src/commands/GetTagValuesCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/GetTagValuesCommand.ts index a74ed6625096c..864b150595c2b 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/GetTagValuesCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/GetTagValuesCommand.ts @@ -104,6 +104,7 @@ export interface GetTagValuesCommandOutput extends GetTagValuesOutput, __Metadat * @throws {@link ResourceGroupsTaggingAPIServiceException} *

Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.

* + * * @public */ export class GetTagValuesCommand extends $Command diff --git a/clients/client-resource-groups-tagging-api/src/commands/StartReportCreationCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/StartReportCreationCommand.ts index 55c5c7de9e7f9..cad496d315ac1 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/StartReportCreationCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/StartReportCreationCommand.ts @@ -121,6 +121,7 @@ export interface StartReportCreationCommandOutput extends StartReportCreationOut * @throws {@link ResourceGroupsTaggingAPIServiceException} *

Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.

* + * * @public */ export class StartReportCreationCommand extends $Command diff --git a/clients/client-resource-groups-tagging-api/src/commands/TagResourcesCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/TagResourcesCommand.ts index b328660379ef1..251a9ba1e7299 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/TagResourcesCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/TagResourcesCommand.ts @@ -149,6 +149,7 @@ export interface TagResourcesCommandOutput extends TagResourcesOutput, __Metadat * @throws {@link ResourceGroupsTaggingAPIServiceException} *

Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.

* + * * @public */ export class TagResourcesCommand extends $Command diff --git a/clients/client-resource-groups-tagging-api/src/commands/UntagResourcesCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/UntagResourcesCommand.ts index b4c67ce9004b9..be9ae46dae1a6 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/UntagResourcesCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/UntagResourcesCommand.ts @@ -135,6 +135,7 @@ export interface UntagResourcesCommandOutput extends UntagResourcesOutput, __Met * @throws {@link ResourceGroupsTaggingAPIServiceException} *

Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.

* + * * @public */ export class UntagResourcesCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/CancelTagSyncTaskCommand.ts b/clients/client-resource-groups/src/commands/CancelTagSyncTaskCommand.ts index 3fb89fbcfa471..69d3c1dd53f06 100644 --- a/clients/client-resource-groups/src/commands/CancelTagSyncTaskCommand.ts +++ b/clients/client-resource-groups/src/commands/CancelTagSyncTaskCommand.ts @@ -88,6 +88,7 @@ export interface CancelTagSyncTaskCommandOutput extends __MetadataBearer {} * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class CancelTagSyncTaskCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/CreateGroupCommand.ts b/clients/client-resource-groups/src/commands/CreateGroupCommand.ts index 75600b3396418..a86aaada1e29e 100644 --- a/clients/client-resource-groups/src/commands/CreateGroupCommand.ts +++ b/clients/client-resource-groups/src/commands/CreateGroupCommand.ts @@ -157,6 +157,7 @@ export interface CreateGroupCommandOutput extends CreateGroupOutput, __MetadataB * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class CreateGroupCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/DeleteGroupCommand.ts b/clients/client-resource-groups/src/commands/DeleteGroupCommand.ts index 5655c68fe5828..7b61161c11c08 100644 --- a/clients/client-resource-groups/src/commands/DeleteGroupCommand.ts +++ b/clients/client-resource-groups/src/commands/DeleteGroupCommand.ts @@ -97,6 +97,7 @@ export interface DeleteGroupCommandOutput extends DeleteGroupOutput, __MetadataB * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class DeleteGroupCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/GetAccountSettingsCommand.ts b/clients/client-resource-groups/src/commands/GetAccountSettingsCommand.ts index 15fc1a3292e06..1ca25ed6da86a 100644 --- a/clients/client-resource-groups/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-resource-groups/src/commands/GetAccountSettingsCommand.ts @@ -73,6 +73,7 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsOutpu * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class GetAccountSettingsCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/GetGroupCommand.ts b/clients/client-resource-groups/src/commands/GetGroupCommand.ts index bdba40f187db3..0d5774d10ea40 100644 --- a/clients/client-resource-groups/src/commands/GetGroupCommand.ts +++ b/clients/client-resource-groups/src/commands/GetGroupCommand.ts @@ -96,6 +96,7 @@ export interface GetGroupCommandOutput extends GetGroupOutput, __MetadataBearer * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class GetGroupCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/GetGroupConfigurationCommand.ts b/clients/client-resource-groups/src/commands/GetGroupConfigurationCommand.ts index e499c177c76b3..50f5338df15b8 100644 --- a/clients/client-resource-groups/src/commands/GetGroupConfigurationCommand.ts +++ b/clients/client-resource-groups/src/commands/GetGroupConfigurationCommand.ts @@ -115,6 +115,7 @@ export interface GetGroupConfigurationCommandOutput extends GetGroupConfiguratio * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class GetGroupConfigurationCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/GetGroupQueryCommand.ts b/clients/client-resource-groups/src/commands/GetGroupQueryCommand.ts index 0fa386286c582..a7957a692ae50 100644 --- a/clients/client-resource-groups/src/commands/GetGroupQueryCommand.ts +++ b/clients/client-resource-groups/src/commands/GetGroupQueryCommand.ts @@ -94,6 +94,7 @@ export interface GetGroupQueryCommandOutput extends GetGroupQueryOutput, __Metad * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class GetGroupQueryCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/GetTagSyncTaskCommand.ts b/clients/client-resource-groups/src/commands/GetTagSyncTaskCommand.ts index cad244eab870e..067f9f69177b1 100644 --- a/clients/client-resource-groups/src/commands/GetTagSyncTaskCommand.ts +++ b/clients/client-resource-groups/src/commands/GetTagSyncTaskCommand.ts @@ -96,6 +96,7 @@ export interface GetTagSyncTaskCommandOutput extends GetTagSyncTaskOutput, __Met * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class GetTagSyncTaskCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/GetTagsCommand.ts b/clients/client-resource-groups/src/commands/GetTagsCommand.ts index dec4066cb32b2..79b0c3581a1fb 100644 --- a/clients/client-resource-groups/src/commands/GetTagsCommand.ts +++ b/clients/client-resource-groups/src/commands/GetTagsCommand.ts @@ -89,6 +89,7 @@ export interface GetTagsCommandOutput extends GetTagsOutput, __MetadataBearer {} * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class GetTagsCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/GroupResourcesCommand.ts b/clients/client-resource-groups/src/commands/GroupResourcesCommand.ts index 9af739de0a67c..ca6a561ceb142 100644 --- a/clients/client-resource-groups/src/commands/GroupResourcesCommand.ts +++ b/clients/client-resource-groups/src/commands/GroupResourcesCommand.ts @@ -124,6 +124,7 @@ export interface GroupResourcesCommandOutput extends GroupResourcesOutput, __Met * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class GroupResourcesCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/ListGroupResourcesCommand.ts b/clients/client-resource-groups/src/commands/ListGroupResourcesCommand.ts index f1b6f162c97b7..6dd91b1d2408b 100644 --- a/clients/client-resource-groups/src/commands/ListGroupResourcesCommand.ts +++ b/clients/client-resource-groups/src/commands/ListGroupResourcesCommand.ts @@ -139,6 +139,7 @@ export interface ListGroupResourcesCommandOutput extends ListGroupResourcesOutpu * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class ListGroupResourcesCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/ListGroupingStatusesCommand.ts b/clients/client-resource-groups/src/commands/ListGroupingStatusesCommand.ts index 4d01a8a979b14..f3022999769ed 100644 --- a/clients/client-resource-groups/src/commands/ListGroupingStatusesCommand.ts +++ b/clients/client-resource-groups/src/commands/ListGroupingStatusesCommand.ts @@ -93,6 +93,7 @@ export interface ListGroupingStatusesCommandOutput extends ListGroupingStatusesO * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class ListGroupingStatusesCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/ListGroupsCommand.ts b/clients/client-resource-groups/src/commands/ListGroupsCommand.ts index 40fcdb299d85d..2670688e58243 100644 --- a/clients/client-resource-groups/src/commands/ListGroupsCommand.ts +++ b/clients/client-resource-groups/src/commands/ListGroupsCommand.ts @@ -114,6 +114,7 @@ export interface ListGroupsCommandOutput extends ListGroupsOutput, __MetadataBea * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class ListGroupsCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/ListTagSyncTasksCommand.ts b/clients/client-resource-groups/src/commands/ListTagSyncTasksCommand.ts index b15f8e381ba86..f09f410d57681 100644 --- a/clients/client-resource-groups/src/commands/ListTagSyncTasksCommand.ts +++ b/clients/client-resource-groups/src/commands/ListTagSyncTasksCommand.ts @@ -106,6 +106,7 @@ export interface ListTagSyncTasksCommandOutput extends ListTagSyncTasksOutput, _ * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class ListTagSyncTasksCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/PutGroupConfigurationCommand.ts b/clients/client-resource-groups/src/commands/PutGroupConfigurationCommand.ts index d2ad9bd666ad7..82e270497363d 100644 --- a/clients/client-resource-groups/src/commands/PutGroupConfigurationCommand.ts +++ b/clients/client-resource-groups/src/commands/PutGroupConfigurationCommand.ts @@ -98,6 +98,7 @@ export interface PutGroupConfigurationCommandOutput extends PutGroupConfiguratio * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class PutGroupConfigurationCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/SearchResourcesCommand.ts b/clients/client-resource-groups/src/commands/SearchResourcesCommand.ts index f73111d71bc1b..f8a8757072ead 100644 --- a/clients/client-resource-groups/src/commands/SearchResourcesCommand.ts +++ b/clients/client-resource-groups/src/commands/SearchResourcesCommand.ts @@ -120,6 +120,7 @@ export interface SearchResourcesCommandOutput extends SearchResourcesOutput, __M * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class SearchResourcesCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/StartTagSyncTaskCommand.ts b/clients/client-resource-groups/src/commands/StartTagSyncTaskCommand.ts index 96be541b36f68..d5ae41d8d0dc8 100644 --- a/clients/client-resource-groups/src/commands/StartTagSyncTaskCommand.ts +++ b/clients/client-resource-groups/src/commands/StartTagSyncTaskCommand.ts @@ -106,6 +106,7 @@ export interface StartTagSyncTaskCommandOutput extends StartTagSyncTaskOutput, _ * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class StartTagSyncTaskCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/TagCommand.ts b/clients/client-resource-groups/src/commands/TagCommand.ts index 8f3a83ba05f37..25dcceacfa3e8 100644 --- a/clients/client-resource-groups/src/commands/TagCommand.ts +++ b/clients/client-resource-groups/src/commands/TagCommand.ts @@ -98,6 +98,7 @@ export interface TagCommandOutput extends TagOutput, __MetadataBearer {} * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class TagCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/UngroupResourcesCommand.ts b/clients/client-resource-groups/src/commands/UngroupResourcesCommand.ts index 5b8cc72ab71e3..b615158be67ba 100644 --- a/clients/client-resource-groups/src/commands/UngroupResourcesCommand.ts +++ b/clients/client-resource-groups/src/commands/UngroupResourcesCommand.ts @@ -105,6 +105,7 @@ export interface UngroupResourcesCommandOutput extends UngroupResourcesOutput, _ * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class UngroupResourcesCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/UntagCommand.ts b/clients/client-resource-groups/src/commands/UntagCommand.ts index f2add6d48acea..db0e7a4591797 100644 --- a/clients/client-resource-groups/src/commands/UntagCommand.ts +++ b/clients/client-resource-groups/src/commands/UntagCommand.ts @@ -91,6 +91,7 @@ export interface UntagCommandOutput extends UntagOutput, __MetadataBearer {} * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class UntagCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-resource-groups/src/commands/UpdateAccountSettingsCommand.ts index 98b7347c28255..205fbbe48564b 100644 --- a/clients/client-resource-groups/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-resource-groups/src/commands/UpdateAccountSettingsCommand.ts @@ -79,6 +79,7 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class UpdateAccountSettingsCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/UpdateGroupCommand.ts b/clients/client-resource-groups/src/commands/UpdateGroupCommand.ts index cb020b24b09f4..08d0fd883a546 100644 --- a/clients/client-resource-groups/src/commands/UpdateGroupCommand.ts +++ b/clients/client-resource-groups/src/commands/UpdateGroupCommand.ts @@ -101,6 +101,7 @@ export interface UpdateGroupCommandOutput extends UpdateGroupOutput, __MetadataB * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class UpdateGroupCommand extends $Command diff --git a/clients/client-resource-groups/src/commands/UpdateGroupQueryCommand.ts b/clients/client-resource-groups/src/commands/UpdateGroupQueryCommand.ts index d9f27405f2e32..d0b4d4554b7a8 100644 --- a/clients/client-resource-groups/src/commands/UpdateGroupQueryCommand.ts +++ b/clients/client-resource-groups/src/commands/UpdateGroupQueryCommand.ts @@ -97,6 +97,7 @@ export interface UpdateGroupQueryCommandOutput extends UpdateGroupQueryOutput, _ * @throws {@link ResourceGroupsServiceException} *

Base exception class for all service exceptions from ResourceGroups service.

* + * * @public */ export class UpdateGroupQueryCommand extends $Command diff --git a/clients/client-robomaker/src/commands/BatchDeleteWorldsCommand.ts b/clients/client-robomaker/src/commands/BatchDeleteWorldsCommand.ts index deca3d7136be4..fed5bf57cc8ec 100644 --- a/clients/client-robomaker/src/commands/BatchDeleteWorldsCommand.ts +++ b/clients/client-robomaker/src/commands/BatchDeleteWorldsCommand.ts @@ -77,6 +77,7 @@ export interface BatchDeleteWorldsCommandOutput extends BatchDeleteWorldsRespons * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class BatchDeleteWorldsCommand extends $Command diff --git a/clients/client-robomaker/src/commands/BatchDescribeSimulationJobCommand.ts b/clients/client-robomaker/src/commands/BatchDescribeSimulationJobCommand.ts index d3808100c9ffe..a96e439fcbd3a 100644 --- a/clients/client-robomaker/src/commands/BatchDescribeSimulationJobCommand.ts +++ b/clients/client-robomaker/src/commands/BatchDescribeSimulationJobCommand.ts @@ -233,6 +233,7 @@ export interface BatchDescribeSimulationJobCommandOutput extends BatchDescribeSi * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class BatchDescribeSimulationJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CancelDeploymentJobCommand.ts b/clients/client-robomaker/src/commands/CancelDeploymentJobCommand.ts index a098b6fcbbf7f..e60442c3e7d99 100644 --- a/clients/client-robomaker/src/commands/CancelDeploymentJobCommand.ts +++ b/clients/client-robomaker/src/commands/CancelDeploymentJobCommand.ts @@ -71,6 +71,7 @@ export interface CancelDeploymentJobCommandOutput extends CancelDeploymentJobRes * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CancelDeploymentJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CancelSimulationJobBatchCommand.ts b/clients/client-robomaker/src/commands/CancelSimulationJobBatchCommand.ts index b23141a135c03..b709e99932918 100644 --- a/clients/client-robomaker/src/commands/CancelSimulationJobBatchCommand.ts +++ b/clients/client-robomaker/src/commands/CancelSimulationJobBatchCommand.ts @@ -75,6 +75,7 @@ export interface CancelSimulationJobBatchCommandOutput extends CancelSimulationJ * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CancelSimulationJobBatchCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CancelSimulationJobCommand.ts b/clients/client-robomaker/src/commands/CancelSimulationJobCommand.ts index e91480f89f93a..02aa23c3fd544 100644 --- a/clients/client-robomaker/src/commands/CancelSimulationJobCommand.ts +++ b/clients/client-robomaker/src/commands/CancelSimulationJobCommand.ts @@ -74,6 +74,7 @@ export interface CancelSimulationJobCommandOutput extends CancelSimulationJobRes * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CancelSimulationJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CancelWorldExportJobCommand.ts b/clients/client-robomaker/src/commands/CancelWorldExportJobCommand.ts index d1144d6d77c35..a2c42e22d785b 100644 --- a/clients/client-robomaker/src/commands/CancelWorldExportJobCommand.ts +++ b/clients/client-robomaker/src/commands/CancelWorldExportJobCommand.ts @@ -74,6 +74,7 @@ export interface CancelWorldExportJobCommandOutput extends CancelWorldExportJobR * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CancelWorldExportJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CancelWorldGenerationJobCommand.ts b/clients/client-robomaker/src/commands/CancelWorldGenerationJobCommand.ts index b26213bf86184..2d1bb3919844f 100644 --- a/clients/client-robomaker/src/commands/CancelWorldGenerationJobCommand.ts +++ b/clients/client-robomaker/src/commands/CancelWorldGenerationJobCommand.ts @@ -74,6 +74,7 @@ export interface CancelWorldGenerationJobCommandOutput extends CancelWorldGenera * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CancelWorldGenerationJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CreateDeploymentJobCommand.ts b/clients/client-robomaker/src/commands/CreateDeploymentJobCommand.ts index b374664d00d04..88d6c55805519 100644 --- a/clients/client-robomaker/src/commands/CreateDeploymentJobCommand.ts +++ b/clients/client-robomaker/src/commands/CreateDeploymentJobCommand.ts @@ -162,6 +162,7 @@ export interface CreateDeploymentJobCommandOutput extends CreateDeploymentJobRes * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CreateDeploymentJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CreateFleetCommand.ts b/clients/client-robomaker/src/commands/CreateFleetCommand.ts index 367f12576d871..fd8ff9e0d4dfa 100644 --- a/clients/client-robomaker/src/commands/CreateFleetCommand.ts +++ b/clients/client-robomaker/src/commands/CreateFleetCommand.ts @@ -90,6 +90,7 @@ export interface CreateFleetCommandOutput extends CreateFleetResponse, __Metadat * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CreateFleetCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CreateRobotApplicationCommand.ts b/clients/client-robomaker/src/commands/CreateRobotApplicationCommand.ts index cf76785f60852..647d4f884439a 100644 --- a/clients/client-robomaker/src/commands/CreateRobotApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/CreateRobotApplicationCommand.ts @@ -123,6 +123,7 @@ export interface CreateRobotApplicationCommandOutput extends CreateRobotApplicat * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CreateRobotApplicationCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CreateRobotApplicationVersionCommand.ts b/clients/client-robomaker/src/commands/CreateRobotApplicationVersionCommand.ts index 02b1704b7e0ee..8bafa8fea60ed 100644 --- a/clients/client-robomaker/src/commands/CreateRobotApplicationVersionCommand.ts +++ b/clients/client-robomaker/src/commands/CreateRobotApplicationVersionCommand.ts @@ -110,6 +110,7 @@ export interface CreateRobotApplicationVersionCommandOutput * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CreateRobotApplicationVersionCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CreateRobotCommand.ts b/clients/client-robomaker/src/commands/CreateRobotCommand.ts index 01bd30f1aebbb..00171bf821188 100644 --- a/clients/client-robomaker/src/commands/CreateRobotCommand.ts +++ b/clients/client-robomaker/src/commands/CreateRobotCommand.ts @@ -97,6 +97,7 @@ export interface CreateRobotCommandOutput extends CreateRobotResponse, __Metadat * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CreateRobotCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CreateSimulationApplicationCommand.ts b/clients/client-robomaker/src/commands/CreateSimulationApplicationCommand.ts index 7a21f615dc278..2705b8e7557a7 100644 --- a/clients/client-robomaker/src/commands/CreateSimulationApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/CreateSimulationApplicationCommand.ts @@ -144,6 +144,7 @@ export interface CreateSimulationApplicationCommandOutput * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CreateSimulationApplicationCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CreateSimulationApplicationVersionCommand.ts b/clients/client-robomaker/src/commands/CreateSimulationApplicationVersionCommand.ts index e17e8dd211352..5bf75d13574a2 100644 --- a/clients/client-robomaker/src/commands/CreateSimulationApplicationVersionCommand.ts +++ b/clients/client-robomaker/src/commands/CreateSimulationApplicationVersionCommand.ts @@ -121,6 +121,7 @@ export interface CreateSimulationApplicationVersionCommandOutput * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CreateSimulationApplicationVersionCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CreateSimulationJobCommand.ts b/clients/client-robomaker/src/commands/CreateSimulationJobCommand.ts index 7e68456e563eb..5399eff8b38e3 100644 --- a/clients/client-robomaker/src/commands/CreateSimulationJobCommand.ts +++ b/clients/client-robomaker/src/commands/CreateSimulationJobCommand.ts @@ -363,6 +363,7 @@ export interface CreateSimulationJobCommandOutput extends CreateSimulationJobRes * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CreateSimulationJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CreateWorldExportJobCommand.ts b/clients/client-robomaker/src/commands/CreateWorldExportJobCommand.ts index bf5d8a833c208..cb30a85071581 100644 --- a/clients/client-robomaker/src/commands/CreateWorldExportJobCommand.ts +++ b/clients/client-robomaker/src/commands/CreateWorldExportJobCommand.ts @@ -106,6 +106,7 @@ export interface CreateWorldExportJobCommandOutput extends CreateWorldExportJobR * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CreateWorldExportJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CreateWorldGenerationJobCommand.ts b/clients/client-robomaker/src/commands/CreateWorldGenerationJobCommand.ts index 5e29f7cd73d1e..92a178276e4b5 100644 --- a/clients/client-robomaker/src/commands/CreateWorldGenerationJobCommand.ts +++ b/clients/client-robomaker/src/commands/CreateWorldGenerationJobCommand.ts @@ -113,6 +113,7 @@ export interface CreateWorldGenerationJobCommandOutput extends CreateWorldGenera * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CreateWorldGenerationJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/CreateWorldTemplateCommand.ts b/clients/client-robomaker/src/commands/CreateWorldTemplateCommand.ts index f432ab44ec009..211e7f70cd4eb 100644 --- a/clients/client-robomaker/src/commands/CreateWorldTemplateCommand.ts +++ b/clients/client-robomaker/src/commands/CreateWorldTemplateCommand.ts @@ -98,6 +98,7 @@ export interface CreateWorldTemplateCommandOutput extends CreateWorldTemplateRes * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class CreateWorldTemplateCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DeleteFleetCommand.ts b/clients/client-robomaker/src/commands/DeleteFleetCommand.ts index 07231663a61e3..ce123873c7d03 100644 --- a/clients/client-robomaker/src/commands/DeleteFleetCommand.ts +++ b/clients/client-robomaker/src/commands/DeleteFleetCommand.ts @@ -76,6 +76,7 @@ export interface DeleteFleetCommandOutput extends DeleteFleetResponse, __Metadat * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DeleteFleetCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DeleteRobotApplicationCommand.ts b/clients/client-robomaker/src/commands/DeleteRobotApplicationCommand.ts index 1e3e161b120fe..5d602f63f626c 100644 --- a/clients/client-robomaker/src/commands/DeleteRobotApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/DeleteRobotApplicationCommand.ts @@ -72,6 +72,7 @@ export interface DeleteRobotApplicationCommandOutput extends DeleteRobotApplicat * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DeleteRobotApplicationCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DeleteRobotCommand.ts b/clients/client-robomaker/src/commands/DeleteRobotCommand.ts index f60342f4549b7..4e03d48bacca8 100644 --- a/clients/client-robomaker/src/commands/DeleteRobotCommand.ts +++ b/clients/client-robomaker/src/commands/DeleteRobotCommand.ts @@ -76,6 +76,7 @@ export interface DeleteRobotCommandOutput extends DeleteRobotResponse, __Metadat * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DeleteRobotCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DeleteSimulationApplicationCommand.ts b/clients/client-robomaker/src/commands/DeleteSimulationApplicationCommand.ts index a74bfb01732d4..b033ad16be5c8 100644 --- a/clients/client-robomaker/src/commands/DeleteSimulationApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/DeleteSimulationApplicationCommand.ts @@ -77,6 +77,7 @@ export interface DeleteSimulationApplicationCommandOutput * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DeleteSimulationApplicationCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DeleteWorldTemplateCommand.ts b/clients/client-robomaker/src/commands/DeleteWorldTemplateCommand.ts index 73cce9144af80..b21e83fd370ff 100644 --- a/clients/client-robomaker/src/commands/DeleteWorldTemplateCommand.ts +++ b/clients/client-robomaker/src/commands/DeleteWorldTemplateCommand.ts @@ -74,6 +74,7 @@ export interface DeleteWorldTemplateCommandOutput extends DeleteWorldTemplateRes * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DeleteWorldTemplateCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DeregisterRobotCommand.ts b/clients/client-robomaker/src/commands/DeregisterRobotCommand.ts index 27205722982ac..144a5af1d934a 100644 --- a/clients/client-robomaker/src/commands/DeregisterRobotCommand.ts +++ b/clients/client-robomaker/src/commands/DeregisterRobotCommand.ts @@ -83,6 +83,7 @@ export interface DeregisterRobotCommandOutput extends DeregisterRobotResponse, _ * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DeregisterRobotCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DescribeDeploymentJobCommand.ts b/clients/client-robomaker/src/commands/DescribeDeploymentJobCommand.ts index 41787ebbc499b..be78552385e55 100644 --- a/clients/client-robomaker/src/commands/DescribeDeploymentJobCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeDeploymentJobCommand.ts @@ -130,6 +130,7 @@ export interface DescribeDeploymentJobCommandOutput extends DescribeDeploymentJo * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DescribeDeploymentJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DescribeFleetCommand.ts b/clients/client-robomaker/src/commands/DescribeFleetCommand.ts index e6e46b0313fca..a8e3256165001 100644 --- a/clients/client-robomaker/src/commands/DescribeFleetCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeFleetCommand.ts @@ -102,6 +102,7 @@ export interface DescribeFleetCommandOutput extends DescribeFleetResponse, __Met * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DescribeFleetCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DescribeRobotApplicationCommand.ts b/clients/client-robomaker/src/commands/DescribeRobotApplicationCommand.ts index 6a9f9177c8cd6..ec4aea8171ba9 100644 --- a/clients/client-robomaker/src/commands/DescribeRobotApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeRobotApplicationCommand.ts @@ -100,6 +100,7 @@ export interface DescribeRobotApplicationCommandOutput extends DescribeRobotAppl * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DescribeRobotApplicationCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DescribeRobotCommand.ts b/clients/client-robomaker/src/commands/DescribeRobotCommand.ts index e24e3226a6274..bb2e8185406ee 100644 --- a/clients/client-robomaker/src/commands/DescribeRobotCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeRobotCommand.ts @@ -92,6 +92,7 @@ export interface DescribeRobotCommandOutput extends DescribeRobotResponse, __Met * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DescribeRobotCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DescribeSimulationApplicationCommand.ts b/clients/client-robomaker/src/commands/DescribeSimulationApplicationCommand.ts index f32c66dc80250..f28fb23d80a60 100644 --- a/clients/client-robomaker/src/commands/DescribeSimulationApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeSimulationApplicationCommand.ts @@ -113,6 +113,7 @@ export interface DescribeSimulationApplicationCommandOutput * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DescribeSimulationApplicationCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DescribeSimulationJobBatchCommand.ts b/clients/client-robomaker/src/commands/DescribeSimulationJobBatchCommand.ts index 878cfe20ffc2f..78e5bff0a244e 100644 --- a/clients/client-robomaker/src/commands/DescribeSimulationJobBatchCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeSimulationJobBatchCommand.ts @@ -379,6 +379,7 @@ export interface DescribeSimulationJobBatchCommandOutput extends DescribeSimulat * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DescribeSimulationJobBatchCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DescribeSimulationJobCommand.ts b/clients/client-robomaker/src/commands/DescribeSimulationJobCommand.ts index 51f4c2d33d0f5..c746f347ef213 100644 --- a/clients/client-robomaker/src/commands/DescribeSimulationJobCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeSimulationJobCommand.ts @@ -224,6 +224,7 @@ export interface DescribeSimulationJobCommandOutput extends DescribeSimulationJo * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DescribeSimulationJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DescribeWorldCommand.ts b/clients/client-robomaker/src/commands/DescribeWorldCommand.ts index f0c9966df5b04..32eb3978ed763 100644 --- a/clients/client-robomaker/src/commands/DescribeWorldCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeWorldCommand.ts @@ -83,6 +83,7 @@ export interface DescribeWorldCommandOutput extends DescribeWorldResponse, __Met * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DescribeWorldCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DescribeWorldExportJobCommand.ts b/clients/client-robomaker/src/commands/DescribeWorldExportJobCommand.ts index 681533e1e8dff..e2dc0e00d3ca2 100644 --- a/clients/client-robomaker/src/commands/DescribeWorldExportJobCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeWorldExportJobCommand.ts @@ -92,6 +92,7 @@ export interface DescribeWorldExportJobCommandOutput extends DescribeWorldExport * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DescribeWorldExportJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DescribeWorldGenerationJobCommand.ts b/clients/client-robomaker/src/commands/DescribeWorldGenerationJobCommand.ts index 8891d82bd3961..ac8e059a9690a 100644 --- a/clients/client-robomaker/src/commands/DescribeWorldGenerationJobCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeWorldGenerationJobCommand.ts @@ -108,6 +108,7 @@ export interface DescribeWorldGenerationJobCommandOutput extends DescribeWorldGe * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DescribeWorldGenerationJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/DescribeWorldTemplateCommand.ts b/clients/client-robomaker/src/commands/DescribeWorldTemplateCommand.ts index 43133ef3ef2e7..f977c8b80b6f4 100644 --- a/clients/client-robomaker/src/commands/DescribeWorldTemplateCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeWorldTemplateCommand.ts @@ -84,6 +84,7 @@ export interface DescribeWorldTemplateCommandOutput extends DescribeWorldTemplat * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class DescribeWorldTemplateCommand extends $Command diff --git a/clients/client-robomaker/src/commands/GetWorldTemplateBodyCommand.ts b/clients/client-robomaker/src/commands/GetWorldTemplateBodyCommand.ts index 67484dda11081..29aecf08a1a05 100644 --- a/clients/client-robomaker/src/commands/GetWorldTemplateBodyCommand.ts +++ b/clients/client-robomaker/src/commands/GetWorldTemplateBodyCommand.ts @@ -77,6 +77,7 @@ export interface GetWorldTemplateBodyCommandOutput extends GetWorldTemplateBodyR * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class GetWorldTemplateBodyCommand extends $Command diff --git a/clients/client-robomaker/src/commands/ListDeploymentJobsCommand.ts b/clients/client-robomaker/src/commands/ListDeploymentJobsCommand.ts index 2e64d6f844df7..fb47f98fab6e8 100644 --- a/clients/client-robomaker/src/commands/ListDeploymentJobsCommand.ts +++ b/clients/client-robomaker/src/commands/ListDeploymentJobsCommand.ts @@ -127,6 +127,7 @@ export interface ListDeploymentJobsCommandOutput extends ListDeploymentJobsRespo * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class ListDeploymentJobsCommand extends $Command diff --git a/clients/client-robomaker/src/commands/ListFleetsCommand.ts b/clients/client-robomaker/src/commands/ListFleetsCommand.ts index 544001ec847f6..7a35324e6ad10 100644 --- a/clients/client-robomaker/src/commands/ListFleetsCommand.ts +++ b/clients/client-robomaker/src/commands/ListFleetsCommand.ts @@ -102,6 +102,7 @@ export interface ListFleetsCommandOutput extends ListFleetsResponse, __MetadataB * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class ListFleetsCommand extends $Command diff --git a/clients/client-robomaker/src/commands/ListRobotApplicationsCommand.ts b/clients/client-robomaker/src/commands/ListRobotApplicationsCommand.ts index 8289ce1889bbf..498d1deaff4c6 100644 --- a/clients/client-robomaker/src/commands/ListRobotApplicationsCommand.ts +++ b/clients/client-robomaker/src/commands/ListRobotApplicationsCommand.ts @@ -96,6 +96,7 @@ export interface ListRobotApplicationsCommandOutput extends ListRobotApplication * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class ListRobotApplicationsCommand extends $Command diff --git a/clients/client-robomaker/src/commands/ListRobotsCommand.ts b/clients/client-robomaker/src/commands/ListRobotsCommand.ts index a5da03f0704b7..8d5582a7e14a0 100644 --- a/clients/client-robomaker/src/commands/ListRobotsCommand.ts +++ b/clients/client-robomaker/src/commands/ListRobotsCommand.ts @@ -105,6 +105,7 @@ export interface ListRobotsCommandOutput extends ListRobotsResponse, __MetadataB * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class ListRobotsCommand extends $Command diff --git a/clients/client-robomaker/src/commands/ListSimulationApplicationsCommand.ts b/clients/client-robomaker/src/commands/ListSimulationApplicationsCommand.ts index b02b7a236f078..fbcdf6bd1d430 100644 --- a/clients/client-robomaker/src/commands/ListSimulationApplicationsCommand.ts +++ b/clients/client-robomaker/src/commands/ListSimulationApplicationsCommand.ts @@ -100,6 +100,7 @@ export interface ListSimulationApplicationsCommandOutput extends ListSimulationA * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class ListSimulationApplicationsCommand extends $Command diff --git a/clients/client-robomaker/src/commands/ListSimulationJobBatchesCommand.ts b/clients/client-robomaker/src/commands/ListSimulationJobBatchesCommand.ts index 53f477905b3f4..93f91322550e1 100644 --- a/clients/client-robomaker/src/commands/ListSimulationJobBatchesCommand.ts +++ b/clients/client-robomaker/src/commands/ListSimulationJobBatchesCommand.ts @@ -91,6 +91,7 @@ export interface ListSimulationJobBatchesCommandOutput extends ListSimulationJob * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class ListSimulationJobBatchesCommand extends $Command diff --git a/clients/client-robomaker/src/commands/ListSimulationJobsCommand.ts b/clients/client-robomaker/src/commands/ListSimulationJobsCommand.ts index 5e8f7c6082473..46f2ede159ccc 100644 --- a/clients/client-robomaker/src/commands/ListSimulationJobsCommand.ts +++ b/clients/client-robomaker/src/commands/ListSimulationJobsCommand.ts @@ -101,6 +101,7 @@ export interface ListSimulationJobsCommandOutput extends ListSimulationJobsRespo * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class ListSimulationJobsCommand extends $Command diff --git a/clients/client-robomaker/src/commands/ListTagsForResourceCommand.ts b/clients/client-robomaker/src/commands/ListTagsForResourceCommand.ts index 72d046a45dc2e..af49a6d93cc58 100644 --- a/clients/client-robomaker/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-robomaker/src/commands/ListTagsForResourceCommand.ts @@ -78,6 +78,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-robomaker/src/commands/ListWorldExportJobsCommand.ts b/clients/client-robomaker/src/commands/ListWorldExportJobsCommand.ts index d9dfb27b6d062..f643832f0ebb3 100644 --- a/clients/client-robomaker/src/commands/ListWorldExportJobsCommand.ts +++ b/clients/client-robomaker/src/commands/ListWorldExportJobsCommand.ts @@ -96,6 +96,7 @@ export interface ListWorldExportJobsCommandOutput extends ListWorldExportJobsRes * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class ListWorldExportJobsCommand extends $Command diff --git a/clients/client-robomaker/src/commands/ListWorldGenerationJobsCommand.ts b/clients/client-robomaker/src/commands/ListWorldGenerationJobsCommand.ts index 9865365f6793b..a008295e680ec 100644 --- a/clients/client-robomaker/src/commands/ListWorldGenerationJobsCommand.ts +++ b/clients/client-robomaker/src/commands/ListWorldGenerationJobsCommand.ts @@ -96,6 +96,7 @@ export interface ListWorldGenerationJobsCommandOutput extends ListWorldGeneratio * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class ListWorldGenerationJobsCommand extends $Command diff --git a/clients/client-robomaker/src/commands/ListWorldTemplatesCommand.ts b/clients/client-robomaker/src/commands/ListWorldTemplatesCommand.ts index 351750c5a1537..a0b7ecd9a6bb9 100644 --- a/clients/client-robomaker/src/commands/ListWorldTemplatesCommand.ts +++ b/clients/client-robomaker/src/commands/ListWorldTemplatesCommand.ts @@ -83,6 +83,7 @@ export interface ListWorldTemplatesCommandOutput extends ListWorldTemplatesRespo * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class ListWorldTemplatesCommand extends $Command diff --git a/clients/client-robomaker/src/commands/ListWorldsCommand.ts b/clients/client-robomaker/src/commands/ListWorldsCommand.ts index fb17e4925c991..5b72b30990bea 100644 --- a/clients/client-robomaker/src/commands/ListWorldsCommand.ts +++ b/clients/client-robomaker/src/commands/ListWorldsCommand.ts @@ -90,6 +90,7 @@ export interface ListWorldsCommandOutput extends ListWorldsResponse, __MetadataB * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class ListWorldsCommand extends $Command diff --git a/clients/client-robomaker/src/commands/RegisterRobotCommand.ts b/clients/client-robomaker/src/commands/RegisterRobotCommand.ts index 25397dc8d9226..bfe3fd66a9054 100644 --- a/clients/client-robomaker/src/commands/RegisterRobotCommand.ts +++ b/clients/client-robomaker/src/commands/RegisterRobotCommand.ts @@ -87,6 +87,7 @@ export interface RegisterRobotCommandOutput extends RegisterRobotResponse, __Met * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class RegisterRobotCommand extends $Command diff --git a/clients/client-robomaker/src/commands/RestartSimulationJobCommand.ts b/clients/client-robomaker/src/commands/RestartSimulationJobCommand.ts index 39e50b023e087..06fc1a9b46c5e 100644 --- a/clients/client-robomaker/src/commands/RestartSimulationJobCommand.ts +++ b/clients/client-robomaker/src/commands/RestartSimulationJobCommand.ts @@ -78,6 +78,7 @@ export interface RestartSimulationJobCommandOutput extends RestartSimulationJobR * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class RestartSimulationJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/StartSimulationJobBatchCommand.ts b/clients/client-robomaker/src/commands/StartSimulationJobBatchCommand.ts index 873aeac35b5f0..43771f126260d 100644 --- a/clients/client-robomaker/src/commands/StartSimulationJobBatchCommand.ts +++ b/clients/client-robomaker/src/commands/StartSimulationJobBatchCommand.ts @@ -530,6 +530,7 @@ export interface StartSimulationJobBatchCommandOutput extends StartSimulationJob * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class StartSimulationJobBatchCommand extends $Command diff --git a/clients/client-robomaker/src/commands/SyncDeploymentJobCommand.ts b/clients/client-robomaker/src/commands/SyncDeploymentJobCommand.ts index d45cae54aba37..6fe47c527d6e6 100644 --- a/clients/client-robomaker/src/commands/SyncDeploymentJobCommand.ts +++ b/clients/client-robomaker/src/commands/SyncDeploymentJobCommand.ts @@ -125,6 +125,7 @@ export interface SyncDeploymentJobCommandOutput extends SyncDeploymentJobRespons * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class SyncDeploymentJobCommand extends $Command diff --git a/clients/client-robomaker/src/commands/TagResourceCommand.ts b/clients/client-robomaker/src/commands/TagResourceCommand.ts index 70e82cdb94218..b268a7efccbda 100644 --- a/clients/client-robomaker/src/commands/TagResourceCommand.ts +++ b/clients/client-robomaker/src/commands/TagResourceCommand.ts @@ -81,6 +81,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-robomaker/src/commands/UntagResourceCommand.ts b/clients/client-robomaker/src/commands/UntagResourceCommand.ts index a0e96323e0ea5..e533295b2a2b5 100644 --- a/clients/client-robomaker/src/commands/UntagResourceCommand.ts +++ b/clients/client-robomaker/src/commands/UntagResourceCommand.ts @@ -81,6 +81,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-robomaker/src/commands/UpdateRobotApplicationCommand.ts b/clients/client-robomaker/src/commands/UpdateRobotApplicationCommand.ts index 539a6033c333d..22743d252bd78 100644 --- a/clients/client-robomaker/src/commands/UpdateRobotApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/UpdateRobotApplicationCommand.ts @@ -114,6 +114,7 @@ export interface UpdateRobotApplicationCommandOutput extends UpdateRobotApplicat * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class UpdateRobotApplicationCommand extends $Command diff --git a/clients/client-robomaker/src/commands/UpdateSimulationApplicationCommand.ts b/clients/client-robomaker/src/commands/UpdateSimulationApplicationCommand.ts index d43b274bdb15c..c8efe8d6ffc9f 100644 --- a/clients/client-robomaker/src/commands/UpdateSimulationApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/UpdateSimulationApplicationCommand.ts @@ -135,6 +135,7 @@ export interface UpdateSimulationApplicationCommandOutput * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class UpdateSimulationApplicationCommand extends $Command diff --git a/clients/client-robomaker/src/commands/UpdateWorldTemplateCommand.ts b/clients/client-robomaker/src/commands/UpdateWorldTemplateCommand.ts index 7c3fe6226ae49..02533660e8ec1 100644 --- a/clients/client-robomaker/src/commands/UpdateWorldTemplateCommand.ts +++ b/clients/client-robomaker/src/commands/UpdateWorldTemplateCommand.ts @@ -85,6 +85,7 @@ export interface UpdateWorldTemplateCommandOutput extends UpdateWorldTemplateRes * @throws {@link RoboMakerServiceException} *

Base exception class for all service exceptions from RoboMaker service.

* + * * @public */ export class UpdateWorldTemplateCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/CreateProfileCommand.ts b/clients/client-rolesanywhere/src/commands/CreateProfileCommand.ts index c19fea683e708..01daf0efcecd6 100644 --- a/clients/client-rolesanywhere/src/commands/CreateProfileCommand.ts +++ b/clients/client-rolesanywhere/src/commands/CreateProfileCommand.ts @@ -114,6 +114,7 @@ export interface CreateProfileCommandOutput extends ProfileDetailResponse, __Met * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class CreateProfileCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/CreateTrustAnchorCommand.ts b/clients/client-rolesanywhere/src/commands/CreateTrustAnchorCommand.ts index 99e65b4bd8013..232f2b4b6e09c 100644 --- a/clients/client-rolesanywhere/src/commands/CreateTrustAnchorCommand.ts +++ b/clients/client-rolesanywhere/src/commands/CreateTrustAnchorCommand.ts @@ -116,6 +116,7 @@ export interface CreateTrustAnchorCommandOutput extends TrustAnchorDetailRespons * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class CreateTrustAnchorCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/DeleteAttributeMappingCommand.ts b/clients/client-rolesanywhere/src/commands/DeleteAttributeMappingCommand.ts index f6d97a6343afe..c0b4765be2f50 100644 --- a/clients/client-rolesanywhere/src/commands/DeleteAttributeMappingCommand.ts +++ b/clients/client-rolesanywhere/src/commands/DeleteAttributeMappingCommand.ts @@ -96,6 +96,52 @@ export interface DeleteAttributeMappingCommandOutput extends DeleteAttributeMapp * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * + * @example DeleteAttributeMapping - Deletes a custom attribute mapping rule + * ```javascript + * // + * const input = { + * certificateField: "x509Subject", + * profileId: "00000000-0000-0000-0000-000000000000", + * specifiers: [ + * "OU" + * ] + * }; + * const command = new DeleteAttributeMappingCommand(input); + * const response = await client.send(command); + * /* response is + * { + * profile: { + * acceptRoleSessionName: false, + * attributeMappings: [ + * { + * certificateField: "x509Subject", + * mappingRules: [ + * { + * specifier: "CN" + * } + * ] + * } + * ], + * createdAt: "2021-07-19T15:55:25.986591Z", + * createdBy: "arn:aws:sts::123456789012:assumed-role/Admin/DummyRole", + * durationSeconds: 3600, + * enabled: true, + * managedPolicyArns: [], + * name: "Dummy Profile", + * profileArn: "arn:aws:rolesanywhere:us-east-1:123456789012:profile/00000000-0000-0000-0000-000000000000", + * profileId: "00000000-0000-0000-0000-000000000000", + * requireInstanceProperties: false, + * roleArns: [ + * "arn:aws:iam::123456789012:role/DummyRole" + * ], + * sessionPolicy: "", + * updatedAt: "2021-07-19T15:55:25.986591Z" + * } + * } + * *\/ + * ``` + * * @public */ export class DeleteAttributeMappingCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/DeleteCrlCommand.ts b/clients/client-rolesanywhere/src/commands/DeleteCrlCommand.ts index 54c18e1cd2808..5be74bb21569c 100644 --- a/clients/client-rolesanywhere/src/commands/DeleteCrlCommand.ts +++ b/clients/client-rolesanywhere/src/commands/DeleteCrlCommand.ts @@ -74,6 +74,7 @@ export interface DeleteCrlCommandOutput extends CrlDetailResponse, __MetadataBea * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class DeleteCrlCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/DeleteProfileCommand.ts b/clients/client-rolesanywhere/src/commands/DeleteProfileCommand.ts index 81eef941333b1..51ce1baca2127 100644 --- a/clients/client-rolesanywhere/src/commands/DeleteProfileCommand.ts +++ b/clients/client-rolesanywhere/src/commands/DeleteProfileCommand.ts @@ -93,6 +93,7 @@ export interface DeleteProfileCommandOutput extends ProfileDetailResponse, __Met * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class DeleteProfileCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/DeleteTrustAnchorCommand.ts b/clients/client-rolesanywhere/src/commands/DeleteTrustAnchorCommand.ts index df29e3f5efc6f..75768bd5ce82d 100644 --- a/clients/client-rolesanywhere/src/commands/DeleteTrustAnchorCommand.ts +++ b/clients/client-rolesanywhere/src/commands/DeleteTrustAnchorCommand.ts @@ -88,6 +88,7 @@ export interface DeleteTrustAnchorCommandOutput extends TrustAnchorDetailRespons * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class DeleteTrustAnchorCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/DisableCrlCommand.ts b/clients/client-rolesanywhere/src/commands/DisableCrlCommand.ts index 2bd5b8c285cd8..3d200185f3bf1 100644 --- a/clients/client-rolesanywhere/src/commands/DisableCrlCommand.ts +++ b/clients/client-rolesanywhere/src/commands/DisableCrlCommand.ts @@ -74,6 +74,7 @@ export interface DisableCrlCommandOutput extends CrlDetailResponse, __MetadataBe * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class DisableCrlCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/DisableProfileCommand.ts b/clients/client-rolesanywhere/src/commands/DisableProfileCommand.ts index cdbf3d4c4ba00..166b4921f7848 100644 --- a/clients/client-rolesanywhere/src/commands/DisableProfileCommand.ts +++ b/clients/client-rolesanywhere/src/commands/DisableProfileCommand.ts @@ -93,6 +93,7 @@ export interface DisableProfileCommandOutput extends ProfileDetailResponse, __Me * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class DisableProfileCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/DisableTrustAnchorCommand.ts b/clients/client-rolesanywhere/src/commands/DisableTrustAnchorCommand.ts index 29b2bc3973923..2c1092398368b 100644 --- a/clients/client-rolesanywhere/src/commands/DisableTrustAnchorCommand.ts +++ b/clients/client-rolesanywhere/src/commands/DisableTrustAnchorCommand.ts @@ -88,6 +88,7 @@ export interface DisableTrustAnchorCommandOutput extends TrustAnchorDetailRespon * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class DisableTrustAnchorCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/EnableCrlCommand.ts b/clients/client-rolesanywhere/src/commands/EnableCrlCommand.ts index aecf8bd32e9f6..f165ba66fef77 100644 --- a/clients/client-rolesanywhere/src/commands/EnableCrlCommand.ts +++ b/clients/client-rolesanywhere/src/commands/EnableCrlCommand.ts @@ -74,6 +74,7 @@ export interface EnableCrlCommandOutput extends CrlDetailResponse, __MetadataBea * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class EnableCrlCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/EnableProfileCommand.ts b/clients/client-rolesanywhere/src/commands/EnableProfileCommand.ts index ef8e0651cfcb7..7e78e76ca7056 100644 --- a/clients/client-rolesanywhere/src/commands/EnableProfileCommand.ts +++ b/clients/client-rolesanywhere/src/commands/EnableProfileCommand.ts @@ -93,6 +93,7 @@ export interface EnableProfileCommandOutput extends ProfileDetailResponse, __Met * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class EnableProfileCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/EnableTrustAnchorCommand.ts b/clients/client-rolesanywhere/src/commands/EnableTrustAnchorCommand.ts index 1e7d923d9c126..7c44889d84fc5 100644 --- a/clients/client-rolesanywhere/src/commands/EnableTrustAnchorCommand.ts +++ b/clients/client-rolesanywhere/src/commands/EnableTrustAnchorCommand.ts @@ -88,6 +88,7 @@ export interface EnableTrustAnchorCommandOutput extends TrustAnchorDetailRespons * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class EnableTrustAnchorCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/GetCrlCommand.ts b/clients/client-rolesanywhere/src/commands/GetCrlCommand.ts index 34620c0ad51ac..dea7b4112a822 100644 --- a/clients/client-rolesanywhere/src/commands/GetCrlCommand.ts +++ b/clients/client-rolesanywhere/src/commands/GetCrlCommand.ts @@ -71,6 +71,7 @@ export interface GetCrlCommandOutput extends CrlDetailResponse, __MetadataBearer * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class GetCrlCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/GetProfileCommand.ts b/clients/client-rolesanywhere/src/commands/GetProfileCommand.ts index 3a222bdea31d5..722fc8e628d91 100644 --- a/clients/client-rolesanywhere/src/commands/GetProfileCommand.ts +++ b/clients/client-rolesanywhere/src/commands/GetProfileCommand.ts @@ -93,6 +93,7 @@ export interface GetProfileCommandOutput extends ProfileDetailResponse, __Metada * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class GetProfileCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/GetSubjectCommand.ts b/clients/client-rolesanywhere/src/commands/GetSubjectCommand.ts index 5e2a7fa9c0115..ff8dbb6e38b0f 100644 --- a/clients/client-rolesanywhere/src/commands/GetSubjectCommand.ts +++ b/clients/client-rolesanywhere/src/commands/GetSubjectCommand.ts @@ -95,6 +95,7 @@ export interface GetSubjectCommandOutput extends SubjectDetailResponse, __Metada * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class GetSubjectCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/GetTrustAnchorCommand.ts b/clients/client-rolesanywhere/src/commands/GetTrustAnchorCommand.ts index 798cc0beb1c76..b1bb820e3edc3 100644 --- a/clients/client-rolesanywhere/src/commands/GetTrustAnchorCommand.ts +++ b/clients/client-rolesanywhere/src/commands/GetTrustAnchorCommand.ts @@ -91,6 +91,7 @@ export interface GetTrustAnchorCommandOutput extends TrustAnchorDetailResponse, * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class GetTrustAnchorCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/ImportCrlCommand.ts b/clients/client-rolesanywhere/src/commands/ImportCrlCommand.ts index 9f6d003c72722..eeb5d5daed76a 100644 --- a/clients/client-rolesanywhere/src/commands/ImportCrlCommand.ts +++ b/clients/client-rolesanywhere/src/commands/ImportCrlCommand.ts @@ -86,6 +86,7 @@ export interface ImportCrlCommandOutput extends CrlDetailResponse, __MetadataBea * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class ImportCrlCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/ListCrlsCommand.ts b/clients/client-rolesanywhere/src/commands/ListCrlsCommand.ts index fc2958fc38cab..b2fa0fcd47df6 100644 --- a/clients/client-rolesanywhere/src/commands/ListCrlsCommand.ts +++ b/clients/client-rolesanywhere/src/commands/ListCrlsCommand.ts @@ -78,6 +78,7 @@ export interface ListCrlsCommandOutput extends ListCrlsResponse, __MetadataBeare * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class ListCrlsCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/ListProfilesCommand.ts b/clients/client-rolesanywhere/src/commands/ListProfilesCommand.ts index 473b104deb4d1..1031a00907cf9 100644 --- a/clients/client-rolesanywhere/src/commands/ListProfilesCommand.ts +++ b/clients/client-rolesanywhere/src/commands/ListProfilesCommand.ts @@ -97,6 +97,7 @@ export interface ListProfilesCommandOutput extends ListProfilesResponse, __Metad * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class ListProfilesCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/ListSubjectsCommand.ts b/clients/client-rolesanywhere/src/commands/ListSubjectsCommand.ts index 61c93ae3899e4..086d78c73fd02 100644 --- a/clients/client-rolesanywhere/src/commands/ListSubjectsCommand.ts +++ b/clients/client-rolesanywhere/src/commands/ListSubjectsCommand.ts @@ -77,6 +77,7 @@ export interface ListSubjectsCommandOutput extends ListSubjectsResponse, __Metad * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class ListSubjectsCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/ListTagsForResourceCommand.ts b/clients/client-rolesanywhere/src/commands/ListTagsForResourceCommand.ts index 0cefa65ef947d..c072510e8603f 100644 --- a/clients/client-rolesanywhere/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-rolesanywhere/src/commands/ListTagsForResourceCommand.ts @@ -77,6 +77,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/ListTrustAnchorsCommand.ts b/clients/client-rolesanywhere/src/commands/ListTrustAnchorsCommand.ts index 4aa9b1ba1dd8a..8c5876e56afd6 100644 --- a/clients/client-rolesanywhere/src/commands/ListTrustAnchorsCommand.ts +++ b/clients/client-rolesanywhere/src/commands/ListTrustAnchorsCommand.ts @@ -92,6 +92,7 @@ export interface ListTrustAnchorsCommandOutput extends ListTrustAnchorsResponse, * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class ListTrustAnchorsCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/PutAttributeMappingCommand.ts b/clients/client-rolesanywhere/src/commands/PutAttributeMappingCommand.ts index 3f649199c134b..bf4fa67c817cd 100644 --- a/clients/client-rolesanywhere/src/commands/PutAttributeMappingCommand.ts +++ b/clients/client-rolesanywhere/src/commands/PutAttributeMappingCommand.ts @@ -99,6 +99,54 @@ export interface PutAttributeMappingCommandOutput extends PutAttributeMappingRes * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * + * @example PutAttributeMapping - Adds a custom attribute mapping rule + * ```javascript + * // + * const input = { + * certificateField: "x509Subject", + * mappingRules: [ + * { + * specifier: "CN" + * } + * ], + * profileId: "00000000-0000-0000-0000-000000000000" + * }; + * const command = new PutAttributeMappingCommand(input); + * const response = await client.send(command); + * /* response is + * { + * profile: { + * acceptRoleSessionName: false, + * attributeMappings: [ + * { + * certificateField: "x509Subject", + * mappingRules: [ + * { + * specifier: "CN" + * } + * ] + * } + * ], + * createdAt: "2021-07-19T15:55:25.986591Z", + * createdBy: "arn:aws:sts::123456789012:assumed-role/Admin/DummyRole", + * durationSeconds: 3600, + * enabled: true, + * managedPolicyArns: [], + * name: "Dummy Profile", + * profileArn: "arn:aws:rolesanywhere:us-east-1:123456789012:profile/00000000-0000-0000-0000-000000000000", + * profileId: "00000000-0000-0000-0000-000000000000", + * requireInstanceProperties: false, + * roleArns: [ + * "arn:aws:iam::123456789012:role/DummyRole" + * ], + * sessionPolicy: "", + * updatedAt: "2021-07-19T15:55:25.986591Z" + * } + * } + * *\/ + * ``` + * * @public */ export class PutAttributeMappingCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/PutNotificationSettingsCommand.ts b/clients/client-rolesanywhere/src/commands/PutNotificationSettingsCommand.ts index d7dd33cebe1ce..bd85ff18e25f8 100644 --- a/clients/client-rolesanywhere/src/commands/PutNotificationSettingsCommand.ts +++ b/clients/client-rolesanywhere/src/commands/PutNotificationSettingsCommand.ts @@ -101,6 +101,58 @@ export interface PutNotificationSettingsCommandOutput extends PutNotificationSet * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * + * @example PutNotificationSettings - Adds custom notification settings + * ```javascript + * // + * const input = { + * notificationSettings: [ + * { + * enabled: true, + * event: "END_ENTITY_CERTIFICATE_EXPIRY", + * threshold: 10 + * } + * ], + * trustAnchorId: "c2505e61-2fc1-4a18-9fcf-94e18a22928b" + * }; + * const command = new PutNotificationSettingsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * trustAnchor: { + * createdAt: "2021-07-19T15:55:25.986591Z", + * enabled: true, + * name: "PutNotificationSettings - TA with PCA - example", + * notificationSettings: [ + * { + * channel: "ALL", + * configuredBy: "rolesanywhere.amazonaws.com", + * enabled: true, + * event: "CA_CERTIFICATE_EXPIRY", + * threshold: 45 + * }, + * { + * channel: "ALL", + * configuredBy: "123456789012", + * enabled: true, + * event: "END_ENTITY_CERTIFICATE_EXPIRY", + * threshold: 10 + * } + * ], + * source: { + * sourceData: { + * acmPcaArn: "arn:aws:acm-pca:us-west-2:123456789012:certificate-authority/123abc00-1233-12b3-1a33-54cb9c1ce2f3" + * }, + * sourceType: "AWS_ACM_PCA" + * }, + * trustAnchorArn: "arn:aws:rolesanywhere:us-west-2:123456789012:trust-anchor/c2505e61-2fc1-4a18-9fcf-94e18a22928b", + * trustAnchorId: "c2505e61-2fc1-4a18-9fcf-94e18a22928b", + * updatedAt: "2021-07-19T15:55:25.986591Z" + * } + * } + * *\/ + * ``` + * * @public */ export class PutNotificationSettingsCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/ResetNotificationSettingsCommand.ts b/clients/client-rolesanywhere/src/commands/ResetNotificationSettingsCommand.ts index 3805e217622a1..47a54aa16113f 100644 --- a/clients/client-rolesanywhere/src/commands/ResetNotificationSettingsCommand.ts +++ b/clients/client-rolesanywhere/src/commands/ResetNotificationSettingsCommand.ts @@ -98,6 +98,56 @@ export interface ResetNotificationSettingsCommandOutput extends ResetNotificatio * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * + * @example ResetNotificationSettings - Resets to IAM Roles Anywhere defined default notification settings + * ```javascript + * // + * const input = { + * notificationSettingKeys: [ + * { + * event: "END_ENTITY_CERTIFICATE_EXPIRY" + * } + * ], + * trustAnchorId: "c2505e61-2fc1-4a18-9fcf-94e18a22928b" + * }; + * const command = new ResetNotificationSettingsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * trustAnchor: { + * createdAt: "2021-07-19T15:55:25.986591Z", + * enabled: true, + * name: "ResetNotificationSettings - TA with PCA - example", + * notificationSettings: [ + * { + * channel: "ALL", + * configuredBy: "rolesanywhere.amazonaws.com", + * enabled: true, + * event: "CA_CERTIFICATE_EXPIRY", + * threshold: 45 + * }, + * { + * channel: "ALL", + * configuredBy: "123456789012", + * enabled: true, + * event: "END_ENTITY_CERTIFICATE_EXPIRY", + * threshold: 45 + * } + * ], + * source: { + * sourceData: { + * acmPcaArn: "arn:aws:acm-pca:us-west-2:123456789012:certificate-authority/123abc00-1233-12b3-1a33-54cb9c1ce2f3" + * }, + * sourceType: "AWS_ACM_PCA" + * }, + * trustAnchorArn: "arn:aws:rolesanywhere:us-west-2:123456789012:trust-anchor/c2505e61-2fc1-4a18-9fcf-94e18a22928b", + * trustAnchorId: "c2505e61-2fc1-4a18-9fcf-94e18a22928b", + * updatedAt: "2021-07-19T15:55:25.986591Z" + * } + * } + * *\/ + * ``` + * * @public */ export class ResetNotificationSettingsCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/TagResourceCommand.ts b/clients/client-rolesanywhere/src/commands/TagResourceCommand.ts index 85d5f92fc7318..8e75edb55d9e6 100644 --- a/clients/client-rolesanywhere/src/commands/TagResourceCommand.ts +++ b/clients/client-rolesanywhere/src/commands/TagResourceCommand.ts @@ -75,6 +75,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/UntagResourceCommand.ts b/clients/client-rolesanywhere/src/commands/UntagResourceCommand.ts index a040ca09b9961..8fd602767ddfe 100644 --- a/clients/client-rolesanywhere/src/commands/UntagResourceCommand.ts +++ b/clients/client-rolesanywhere/src/commands/UntagResourceCommand.ts @@ -73,6 +73,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/UpdateCrlCommand.ts b/clients/client-rolesanywhere/src/commands/UpdateCrlCommand.ts index c0daf6cb79f4e..5b632a0f119ef 100644 --- a/clients/client-rolesanywhere/src/commands/UpdateCrlCommand.ts +++ b/clients/client-rolesanywhere/src/commands/UpdateCrlCommand.ts @@ -81,6 +81,7 @@ export interface UpdateCrlCommandOutput extends CrlDetailResponse, __MetadataBea * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class UpdateCrlCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/UpdateProfileCommand.ts b/clients/client-rolesanywhere/src/commands/UpdateProfileCommand.ts index 131ebc5ddda2b..f642eddbd4e32 100644 --- a/clients/client-rolesanywhere/src/commands/UpdateProfileCommand.ts +++ b/clients/client-rolesanywhere/src/commands/UpdateProfileCommand.ts @@ -108,6 +108,7 @@ export interface UpdateProfileCommandOutput extends ProfileDetailResponse, __Met * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class UpdateProfileCommand extends $Command diff --git a/clients/client-rolesanywhere/src/commands/UpdateTrustAnchorCommand.ts b/clients/client-rolesanywhere/src/commands/UpdateTrustAnchorCommand.ts index 8d8715cbc5b4b..9456ef5bde046 100644 --- a/clients/client-rolesanywhere/src/commands/UpdateTrustAnchorCommand.ts +++ b/clients/client-rolesanywhere/src/commands/UpdateTrustAnchorCommand.ts @@ -104,6 +104,7 @@ export interface UpdateTrustAnchorCommandOutput extends TrustAnchorDetailRespons * @throws {@link RolesAnywhereServiceException} *

Base exception class for all service exceptions from RolesAnywhere service.

* + * * @public */ export class UpdateTrustAnchorCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.ts b/clients/client-route-53-domains/src/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.ts index a7796e3e1d4b9..e7422196743b4 100644 --- a/clients/client-route-53-domains/src/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.ts +++ b/clients/client-route-53-domains/src/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.ts @@ -88,6 +88,7 @@ export interface AcceptDomainTransferFromAnotherAwsAccountCommandOutput * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class AcceptDomainTransferFromAnotherAwsAccountCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/AssociateDelegationSignerToDomainCommand.ts b/clients/client-route-53-domains/src/commands/AssociateDelegationSignerToDomainCommand.ts index 97b771fe5c13e..313410390dd03 100644 --- a/clients/client-route-53-domains/src/commands/AssociateDelegationSignerToDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/AssociateDelegationSignerToDomainCommand.ts @@ -99,6 +99,7 @@ export interface AssociateDelegationSignerToDomainCommandOutput * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class AssociateDelegationSignerToDomainCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/CancelDomainTransferToAnotherAwsAccountCommand.ts b/clients/client-route-53-domains/src/commands/CancelDomainTransferToAnotherAwsAccountCommand.ts index fb27fd4d4e340..7eedb58851e4f 100644 --- a/clients/client-route-53-domains/src/commands/CancelDomainTransferToAnotherAwsAccountCommand.ts +++ b/clients/client-route-53-domains/src/commands/CancelDomainTransferToAnotherAwsAccountCommand.ts @@ -84,6 +84,7 @@ export interface CancelDomainTransferToAnotherAwsAccountCommandOutput * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class CancelDomainTransferToAnotherAwsAccountCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/CheckDomainAvailabilityCommand.ts b/clients/client-route-53-domains/src/commands/CheckDomainAvailabilityCommand.ts index 1d107e5e84801..364261db373e9 100644 --- a/clients/client-route-53-domains/src/commands/CheckDomainAvailabilityCommand.ts +++ b/clients/client-route-53-domains/src/commands/CheckDomainAvailabilityCommand.ts @@ -67,6 +67,7 @@ export interface CheckDomainAvailabilityCommandOutput extends CheckDomainAvailab * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class CheckDomainAvailabilityCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/CheckDomainTransferabilityCommand.ts b/clients/client-route-53-domains/src/commands/CheckDomainTransferabilityCommand.ts index b48aac1deeab0..86031abecc877 100644 --- a/clients/client-route-53-domains/src/commands/CheckDomainTransferabilityCommand.ts +++ b/clients/client-route-53-domains/src/commands/CheckDomainTransferabilityCommand.ts @@ -72,6 +72,7 @@ export interface CheckDomainTransferabilityCommandOutput extends CheckDomainTran * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class CheckDomainTransferabilityCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/DeleteDomainCommand.ts b/clients/client-route-53-domains/src/commands/DeleteDomainCommand.ts index 604ebe6ffd2f6..ea15622ba1ee1 100644 --- a/clients/client-route-53-domains/src/commands/DeleteDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/DeleteDomainCommand.ts @@ -91,6 +91,7 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __Metad * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class DeleteDomainCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/DeleteTagsForDomainCommand.ts b/clients/client-route-53-domains/src/commands/DeleteTagsForDomainCommand.ts index c2e52c48cf351..e59fe6cd48740 100644 --- a/clients/client-route-53-domains/src/commands/DeleteTagsForDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/DeleteTagsForDomainCommand.ts @@ -71,6 +71,7 @@ export interface DeleteTagsForDomainCommandOutput extends DeleteTagsForDomainRes * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class DeleteTagsForDomainCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/DisableDomainAutoRenewCommand.ts b/clients/client-route-53-domains/src/commands/DisableDomainAutoRenewCommand.ts index 8e7af961c25e4..b5885a18c2c13 100644 --- a/clients/client-route-53-domains/src/commands/DisableDomainAutoRenewCommand.ts +++ b/clients/client-route-53-domains/src/commands/DisableDomainAutoRenewCommand.ts @@ -63,6 +63,7 @@ export interface DisableDomainAutoRenewCommandOutput extends DisableDomainAutoRe * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class DisableDomainAutoRenewCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/DisableDomainTransferLockCommand.ts b/clients/client-route-53-domains/src/commands/DisableDomainTransferLockCommand.ts index c4a32a49fcd33..5fdfee386cc75 100644 --- a/clients/client-route-53-domains/src/commands/DisableDomainTransferLockCommand.ts +++ b/clients/client-route-53-domains/src/commands/DisableDomainTransferLockCommand.ts @@ -79,6 +79,7 @@ export interface DisableDomainTransferLockCommandOutput extends DisableDomainTra * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class DisableDomainTransferLockCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/DisassociateDelegationSignerFromDomainCommand.ts b/clients/client-route-53-domains/src/commands/DisassociateDelegationSignerFromDomainCommand.ts index 55463b3871b22..072801d7123e3 100644 --- a/clients/client-route-53-domains/src/commands/DisassociateDelegationSignerFromDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/DisassociateDelegationSignerFromDomainCommand.ts @@ -85,6 +85,7 @@ export interface DisassociateDelegationSignerFromDomainCommandOutput * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class DisassociateDelegationSignerFromDomainCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/EnableDomainAutoRenewCommand.ts b/clients/client-route-53-domains/src/commands/EnableDomainAutoRenewCommand.ts index 2cc3651732fda..4029dc7a28d66 100644 --- a/clients/client-route-53-domains/src/commands/EnableDomainAutoRenewCommand.ts +++ b/clients/client-route-53-domains/src/commands/EnableDomainAutoRenewCommand.ts @@ -72,6 +72,7 @@ export interface EnableDomainAutoRenewCommandOutput extends EnableDomainAutoRene * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class EnableDomainAutoRenewCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/EnableDomainTransferLockCommand.ts b/clients/client-route-53-domains/src/commands/EnableDomainTransferLockCommand.ts index d0e725e0c80ac..33cc3244cb67c 100644 --- a/clients/client-route-53-domains/src/commands/EnableDomainTransferLockCommand.ts +++ b/clients/client-route-53-domains/src/commands/EnableDomainTransferLockCommand.ts @@ -78,6 +78,7 @@ export interface EnableDomainTransferLockCommandOutput extends EnableDomainTrans * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class EnableDomainTransferLockCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/GetContactReachabilityStatusCommand.ts b/clients/client-route-53-domains/src/commands/GetContactReachabilityStatusCommand.ts index 5273fb491bb51..1c588c1ac3cb3 100644 --- a/clients/client-route-53-domains/src/commands/GetContactReachabilityStatusCommand.ts +++ b/clients/client-route-53-domains/src/commands/GetContactReachabilityStatusCommand.ts @@ -78,6 +78,7 @@ export interface GetContactReachabilityStatusCommandOutput * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class GetContactReachabilityStatusCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/GetDomainDetailCommand.ts b/clients/client-route-53-domains/src/commands/GetDomainDetailCommand.ts index 31c660ca1a0b8..b8b0408dc1d5f 100644 --- a/clients/client-route-53-domains/src/commands/GetDomainDetailCommand.ts +++ b/clients/client-route-53-domains/src/commands/GetDomainDetailCommand.ts @@ -192,6 +192,7 @@ export interface GetDomainDetailCommandOutput extends GetDomainDetailResponse, _ * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class GetDomainDetailCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/GetDomainSuggestionsCommand.ts b/clients/client-route-53-domains/src/commands/GetDomainSuggestionsCommand.ts index 17981c4bb3ef8..377abbc4479df 100644 --- a/clients/client-route-53-domains/src/commands/GetDomainSuggestionsCommand.ts +++ b/clients/client-route-53-domains/src/commands/GetDomainSuggestionsCommand.ts @@ -71,6 +71,7 @@ export interface GetDomainSuggestionsCommandOutput extends GetDomainSuggestionsR * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class GetDomainSuggestionsCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/GetOperationDetailCommand.ts b/clients/client-route-53-domains/src/commands/GetOperationDetailCommand.ts index c9ea8f262912b..ad5ffae4f3818 100644 --- a/clients/client-route-53-domains/src/commands/GetOperationDetailCommand.ts +++ b/clients/client-route-53-domains/src/commands/GetOperationDetailCommand.ts @@ -69,6 +69,7 @@ export interface GetOperationDetailCommandOutput extends GetOperationDetailRespo * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class GetOperationDetailCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/ListDomainsCommand.ts b/clients/client-route-53-domains/src/commands/ListDomainsCommand.ts index 93d12305c1b68..d5f9f42b3e20d 100644 --- a/clients/client-route-53-domains/src/commands/ListDomainsCommand.ts +++ b/clients/client-route-53-domains/src/commands/ListDomainsCommand.ts @@ -84,6 +84,7 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class ListDomainsCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/ListOperationsCommand.ts b/clients/client-route-53-domains/src/commands/ListOperationsCommand.ts index e87ca9d83eafc..4fac115921547 100644 --- a/clients/client-route-53-domains/src/commands/ListOperationsCommand.ts +++ b/clients/client-route-53-domains/src/commands/ListOperationsCommand.ts @@ -85,6 +85,7 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class ListOperationsCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/ListPricesCommand.ts b/clients/client-route-53-domains/src/commands/ListPricesCommand.ts index 4a4cbeadc4879..380cfda8de1b6 100644 --- a/clients/client-route-53-domains/src/commands/ListPricesCommand.ts +++ b/clients/client-route-53-domains/src/commands/ListPricesCommand.ts @@ -109,6 +109,7 @@ export interface ListPricesCommandOutput extends ListPricesResponse, __MetadataB * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class ListPricesCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/ListTagsForDomainCommand.ts b/clients/client-route-53-domains/src/commands/ListTagsForDomainCommand.ts index 16e236c647d68..9954ad9abf782 100644 --- a/clients/client-route-53-domains/src/commands/ListTagsForDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/ListTagsForDomainCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForDomainCommandOutput extends ListTagsForDomainRespons * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class ListTagsForDomainCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/PushDomainCommand.ts b/clients/client-route-53-domains/src/commands/PushDomainCommand.ts index 95dc25c2cf230..daab355f502e7 100644 --- a/clients/client-route-53-domains/src/commands/PushDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/PushDomainCommand.ts @@ -74,6 +74,7 @@ export interface PushDomainCommandOutput extends __MetadataBearer {} * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class PushDomainCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/RegisterDomainCommand.ts b/clients/client-route-53-domains/src/commands/RegisterDomainCommand.ts index 5633791e09cdb..2d2edbf2603cc 100644 --- a/clients/client-route-53-domains/src/commands/RegisterDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/RegisterDomainCommand.ts @@ -206,6 +206,7 @@ export interface RegisterDomainCommandOutput extends RegisterDomainResponse, __M * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class RegisterDomainCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/RejectDomainTransferFromAnotherAwsAccountCommand.ts b/clients/client-route-53-domains/src/commands/RejectDomainTransferFromAnotherAwsAccountCommand.ts index 2182073b378ab..d0059b53fd98e 100644 --- a/clients/client-route-53-domains/src/commands/RejectDomainTransferFromAnotherAwsAccountCommand.ts +++ b/clients/client-route-53-domains/src/commands/RejectDomainTransferFromAnotherAwsAccountCommand.ts @@ -80,6 +80,7 @@ export interface RejectDomainTransferFromAnotherAwsAccountCommandOutput * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class RejectDomainTransferFromAnotherAwsAccountCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/RenewDomainCommand.ts b/clients/client-route-53-domains/src/commands/RenewDomainCommand.ts index 5505abb5b468d..07fc5ba32cf92 100644 --- a/clients/client-route-53-domains/src/commands/RenewDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/RenewDomainCommand.ts @@ -82,6 +82,7 @@ export interface RenewDomainCommandOutput extends RenewDomainResponse, __Metadat * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class RenewDomainCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/ResendContactReachabilityEmailCommand.ts b/clients/client-route-53-domains/src/commands/ResendContactReachabilityEmailCommand.ts index 605ff9048eb30..cc64ff9b294fe 100644 --- a/clients/client-route-53-domains/src/commands/ResendContactReachabilityEmailCommand.ts +++ b/clients/client-route-53-domains/src/commands/ResendContactReachabilityEmailCommand.ts @@ -81,6 +81,7 @@ export interface ResendContactReachabilityEmailCommandOutput * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class ResendContactReachabilityEmailCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/ResendOperationAuthorizationCommand.ts b/clients/client-route-53-domains/src/commands/ResendOperationAuthorizationCommand.ts index d501aa980e521..2abb4fd7495f4 100644 --- a/clients/client-route-53-domains/src/commands/ResendOperationAuthorizationCommand.ts +++ b/clients/client-route-53-domains/src/commands/ResendOperationAuthorizationCommand.ts @@ -62,6 +62,7 @@ export interface ResendOperationAuthorizationCommandOutput extends __MetadataBea * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class ResendOperationAuthorizationCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/RetrieveDomainAuthCodeCommand.ts b/clients/client-route-53-domains/src/commands/RetrieveDomainAuthCodeCommand.ts index 5d55aad06180b..a863d2dedd149 100644 --- a/clients/client-route-53-domains/src/commands/RetrieveDomainAuthCodeCommand.ts +++ b/clients/client-route-53-domains/src/commands/RetrieveDomainAuthCodeCommand.ts @@ -69,6 +69,7 @@ export interface RetrieveDomainAuthCodeCommandOutput extends RetrieveDomainAuthC * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class RetrieveDomainAuthCodeCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/TransferDomainCommand.ts b/clients/client-route-53-domains/src/commands/TransferDomainCommand.ts index a692978d7f50b..0ec7023c27474 100644 --- a/clients/client-route-53-domains/src/commands/TransferDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/TransferDomainCommand.ts @@ -218,6 +218,7 @@ export interface TransferDomainCommandOutput extends TransferDomainResponse, __M * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class TransferDomainCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/TransferDomainToAnotherAwsAccountCommand.ts b/clients/client-route-53-domains/src/commands/TransferDomainToAnotherAwsAccountCommand.ts index 5d20c3c5fe798..dd63f42eb1bc4 100644 --- a/clients/client-route-53-domains/src/commands/TransferDomainToAnotherAwsAccountCommand.ts +++ b/clients/client-route-53-domains/src/commands/TransferDomainToAnotherAwsAccountCommand.ts @@ -106,6 +106,7 @@ export interface TransferDomainToAnotherAwsAccountCommandOutput * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class TransferDomainToAnotherAwsAccountCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/UpdateDomainContactCommand.ts b/clients/client-route-53-domains/src/commands/UpdateDomainContactCommand.ts index 31a43b1eaf66c..a796fbd919d3c 100644 --- a/clients/client-route-53-domains/src/commands/UpdateDomainContactCommand.ts +++ b/clients/client-route-53-domains/src/commands/UpdateDomainContactCommand.ts @@ -171,6 +171,7 @@ export interface UpdateDomainContactCommandOutput extends UpdateDomainContactRes * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class UpdateDomainContactCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/UpdateDomainContactPrivacyCommand.ts b/clients/client-route-53-domains/src/commands/UpdateDomainContactPrivacyCommand.ts index cd780ebc8c8e9..254c4b18adc3d 100644 --- a/clients/client-route-53-domains/src/commands/UpdateDomainContactPrivacyCommand.ts +++ b/clients/client-route-53-domains/src/commands/UpdateDomainContactPrivacyCommand.ts @@ -100,6 +100,7 @@ export interface UpdateDomainContactPrivacyCommandOutput extends UpdateDomainCon * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class UpdateDomainContactPrivacyCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/UpdateDomainNameserversCommand.ts b/clients/client-route-53-domains/src/commands/UpdateDomainNameserversCommand.ts index e1ebce06c1b19..3ab53f8e41e91 100644 --- a/clients/client-route-53-domains/src/commands/UpdateDomainNameserversCommand.ts +++ b/clients/client-route-53-domains/src/commands/UpdateDomainNameserversCommand.ts @@ -92,6 +92,7 @@ export interface UpdateDomainNameserversCommandOutput extends UpdateDomainNamese * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class UpdateDomainNameserversCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/UpdateTagsForDomainCommand.ts b/clients/client-route-53-domains/src/commands/UpdateTagsForDomainCommand.ts index adf7ce4db40e4..dee5cf96fe95a 100644 --- a/clients/client-route-53-domains/src/commands/UpdateTagsForDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/UpdateTagsForDomainCommand.ts @@ -74,6 +74,7 @@ export interface UpdateTagsForDomainCommandOutput extends UpdateTagsForDomainRes * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class UpdateTagsForDomainCommand extends $Command diff --git a/clients/client-route-53-domains/src/commands/ViewBillingCommand.ts b/clients/client-route-53-domains/src/commands/ViewBillingCommand.ts index afe9685a19fed..6eb8029a8935c 100644 --- a/clients/client-route-53-domains/src/commands/ViewBillingCommand.ts +++ b/clients/client-route-53-domains/src/commands/ViewBillingCommand.ts @@ -73,6 +73,7 @@ export interface ViewBillingCommandOutput extends ViewBillingResponse, __Metadat * @throws {@link Route53DomainsServiceException} *

Base exception class for all service exceptions from Route53Domains service.

* + * * @public */ export class ViewBillingCommand extends $Command diff --git a/clients/client-route-53/src/commands/ActivateKeySigningKeyCommand.ts b/clients/client-route-53/src/commands/ActivateKeySigningKeyCommand.ts index 8de38a25f12d2..8849576e32fbc 100644 --- a/clients/client-route-53/src/commands/ActivateKeySigningKeyCommand.ts +++ b/clients/client-route-53/src/commands/ActivateKeySigningKeyCommand.ts @@ -85,6 +85,7 @@ export interface ActivateKeySigningKeyCommandOutput extends ActivateKeySigningKe * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ActivateKeySigningKeyCommand extends $Command diff --git a/clients/client-route-53/src/commands/AssociateVPCWithHostedZoneCommand.ts b/clients/client-route-53/src/commands/AssociateVPCWithHostedZoneCommand.ts index 4355ae4c50536..ee5f1f4dc0804 100644 --- a/clients/client-route-53/src/commands/AssociateVPCWithHostedZoneCommand.ts +++ b/clients/client-route-53/src/commands/AssociateVPCWithHostedZoneCommand.ts @@ -156,33 +156,33 @@ export interface AssociateVPCWithHostedZoneCommandOutput extends AssociateVPCWit * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* - * @public + * * @example To associate a VPC with a hosted zone * ```javascript * // The following example associates the VPC with ID vpc-1a2b3c4d with the hosted zone with ID Z3M3LMPEXAMPLE. * const input = { - * "Comment": "", - * "HostedZoneId": "Z3M3LMPEXAMPLE", - * "VPC": { - * "VPCId": "vpc-1a2b3c4d", - * "VPCRegion": "us-east-2" + * Comment: "", + * HostedZoneId: "Z3M3LMPEXAMPLE", + * VPC: { + * VPCId: "vpc-1a2b3c4d", + * VPCRegion: "us-east-2" * } * }; * const command = new AssociateVPCWithHostedZoneCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeInfo": { - * "Comment": "", - * "Id": "/change/C3HC6WDB2UANE2", - * "Status": "INSYNC", - * "SubmittedAt": "2017-01-31T01:36:41.958Z" + * ChangeInfo: { + * Comment: "", + * Id: "/change/C3HC6WDB2UANE2", + * Status: "INSYNC", + * SubmittedAt: "2017-01-31T01:36:41.958Z" * } * } * *\/ - * // example id: to-associate-a-vpc-with-a-hosted-zone-1484069228699 * ``` * + * @public */ export class AssociateVPCWithHostedZoneCommand extends $Command .classBuilder< diff --git a/clients/client-route-53/src/commands/ChangeCidrCollectionCommand.ts b/clients/client-route-53/src/commands/ChangeCidrCollectionCommand.ts index 4a95b358aefea..96283b967c517 100644 --- a/clients/client-route-53/src/commands/ChangeCidrCollectionCommand.ts +++ b/clients/client-route-53/src/commands/ChangeCidrCollectionCommand.ts @@ -112,6 +112,7 @@ export interface ChangeCidrCollectionCommandOutput extends ChangeCidrCollectionR * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ChangeCidrCollectionCommand extends $Command diff --git a/clients/client-route-53/src/commands/ChangeResourceRecordSetsCommand.ts b/clients/client-route-53/src/commands/ChangeResourceRecordSetsCommand.ts index b24fa959542ab..b04449547bf11 100644 --- a/clients/client-route-53/src/commands/ChangeResourceRecordSetsCommand.ts +++ b/clients/client-route-53/src/commands/ChangeResourceRecordSetsCommand.ts @@ -218,604 +218,595 @@ export interface ChangeResourceRecordSetsCommandOutput extends ChangeResourceRec * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* - * @public - * @example To create a basic resource record set + * + * @example To create an alias resource record set * ```javascript - * // The following example creates a resource record set that routes Internet traffic to a resource with an IP address of 192.0.2.44. + * // The following example creates an alias resource record set that routes traffic to a CloudFront distribution. * const input = { - * "ChangeBatch": { - * "Changes": [ + * ChangeBatch: { + * Changes: [ * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "Name": "example.com", - * "ResourceRecords": [ - * { - * "Value": "192.0.2.44" - * } - * ], - * "TTL": 60, - * "Type": "A" + * Action: "CREATE", + * ResourceRecordSet: { + * AliasTarget: { + * DNSName: "d123rk29d0stfj.cloudfront.net", + * EvaluateTargetHealth: false, + * HostedZoneId: "Z2FDTNDATAQYW2" + * }, + * Name: "example.com", + * Type: "A" * } * } * ], - * "Comment": "Web server for example.com" + * Comment: "CloudFront distribution for example.com" * }, - * "HostedZoneId": "Z3M3LMPEXAMPLE" + * HostedZoneId: "Z3M3LMPEXAMPLE" * }; * const command = new ChangeResourceRecordSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeInfo": { - * "Comment": "Web server for example.com", - * "Id": "/change/C2682N5HXP0BZ4", - * "Status": "PENDING", - * "SubmittedAt": "2017-02-10T01:36:41.958Z" + * ChangeInfo: { + * Comment: "CloudFront distribution for example.com", + * Id: "/change/C2682N5HXP0BZ4", + * Status: "PENDING", + * SubmittedAt: "2017-02-10T01:36:41.958Z" * } * } * *\/ - * // example id: to-create-update-or-delete-resource-record-sets-1484344703668 * ``` * - * @example To create weighted resource record sets + * @example To create failover alias resource record sets * ```javascript - * // The following example creates two weighted resource record sets. The resource with a Weight of 100 will get 1/3rd of traffic (100/100+200), and the other resource will get the rest of the traffic for example.com. + * // The following example creates primary and secondary failover alias resource record sets that route traffic to ELB load balancers. Traffic is generally routed to the primary resource, in the Ohio region. If that resource is unavailable, traffic is routed to the secondary resource, in the Oregon region. * const input = { - * "ChangeBatch": { - * "Changes": [ + * ChangeBatch: { + * Changes: [ * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "HealthCheckId": "abcdef11-2222-3333-4444-555555fedcba", - * "Name": "example.com", - * "ResourceRecords": [ - * { - * "Value": "192.0.2.44" - * } - * ], - * "SetIdentifier": "Seattle data center", - * "TTL": 60, - * "Type": "A", - * "Weight": 100 + * Action: "CREATE", + * ResourceRecordSet: { + * AliasTarget: { + * DNSName: "example-com-123456789.us-east-2.elb.amazonaws.com ", + * EvaluateTargetHealth: true, + * HostedZoneId: "Z3AADJGX6KTTL2" + * }, + * Failover: "PRIMARY", + * Name: "example.com", + * SetIdentifier: "Ohio region", + * Type: "A" * } * }, * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "HealthCheckId": "abcdef66-7777-8888-9999-000000fedcba", - * "Name": "example.com", - * "ResourceRecords": [ - * { - * "Value": "192.0.2.45" - * } - * ], - * "SetIdentifier": "Portland data center", - * "TTL": 60, - * "Type": "A", - * "Weight": 200 + * Action: "CREATE", + * ResourceRecordSet: { + * AliasTarget: { + * DNSName: "example-com-987654321.us-west-2.elb.amazonaws.com ", + * EvaluateTargetHealth: true, + * HostedZoneId: "Z1H1FL5HABSF5" + * }, + * Failover: "SECONDARY", + * Name: "example.com", + * SetIdentifier: "Oregon region", + * Type: "A" * } * } * ], - * "Comment": "Web servers for example.com" + * Comment: "Failover alias configuration for example.com" * }, - * "HostedZoneId": "Z3M3LMPEXAMPLE" + * HostedZoneId: "Z3M3LMPEXAMPLE" * }; * const command = new ChangeResourceRecordSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeInfo": { - * "Comment": "Web servers for example.com", - * "Id": "/change/C2682N5HXP0BZ4", - * "Status": "PENDING", - * "SubmittedAt": "2017-02-10T01:36:41.958Z" + * ChangeInfo: { + * Comment: "Failover alias configuration for example.com", + * Id: "/change/C2682N5HXP0BZ4", + * Status: "PENDING", + * SubmittedAt: "2017-02-10T01:36:41.958Z" * } * } * *\/ - * // example id: to-create-weighted-resource-record-sets-1484348208522 * ``` * - * @example To create an alias resource record set + * @example To create failover resource record sets * ```javascript - * // The following example creates an alias resource record set that routes traffic to a CloudFront distribution. + * // The following example creates primary and secondary failover resource record sets that route traffic to EC2 instances. Traffic is generally routed to the primary resource, in the Ohio region. If that resource is unavailable, traffic is routed to the secondary resource, in the Oregon region. * const input = { - * "ChangeBatch": { - * "Changes": [ + * ChangeBatch: { + * Changes: [ * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "AliasTarget": { - * "DNSName": "d123rk29d0stfj.cloudfront.net", - * "EvaluateTargetHealth": false, - * "HostedZoneId": "Z2FDTNDATAQYW2" - * }, - * "Name": "example.com", - * "Type": "A" + * Action: "CREATE", + * ResourceRecordSet: { + * Failover: "PRIMARY", + * HealthCheckId: "abcdef11-2222-3333-4444-555555fedcba", + * Name: "example.com", + * ResourceRecords: [ + * { + * Value: "192.0.2.44" + * } + * ], + * SetIdentifier: "Ohio region", + * TTL: 60, + * Type: "A" + * } + * }, + * { + * Action: "CREATE", + * ResourceRecordSet: { + * Failover: "SECONDARY", + * HealthCheckId: "abcdef66-7777-8888-9999-000000fedcba", + * Name: "example.com", + * ResourceRecords: [ + * { + * Value: "192.0.2.45" + * } + * ], + * SetIdentifier: "Oregon region", + * TTL: 60, + * Type: "A" * } * } * ], - * "Comment": "CloudFront distribution for example.com" + * Comment: "Failover configuration for example.com" * }, - * "HostedZoneId": "Z3M3LMPEXAMPLE" + * HostedZoneId: "Z3M3LMPEXAMPLE" * }; * const command = new ChangeResourceRecordSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeInfo": { - * "Comment": "CloudFront distribution for example.com", - * "Id": "/change/C2682N5HXP0BZ4", - * "Status": "PENDING", - * "SubmittedAt": "2017-02-10T01:36:41.958Z" + * ChangeInfo: { + * Comment: "Failover configuration for example.com", + * Id: "/change/C2682N5HXP0BZ4", + * Status: "PENDING", + * SubmittedAt: "2017-02-10T01:36:41.958Z" * } * } * *\/ - * // example id: to-create-an-alias-resource-record-set-1484348404062 * ``` * - * @example To create weighted alias resource record sets + * @example To create geolocation alias resource record sets * ```javascript - * // The following example creates two weighted alias resource record sets that route traffic to ELB load balancers. The resource with a Weight of 100 will get 1/3rd of traffic (100/100+200), and the other resource will get the rest of the traffic for example.com. + * // The following example creates four geolocation alias resource record sets that route traffic to ELB load balancers. Traffic is routed to one of four IP addresses, for North America (NA), for South America (SA), for Europe (EU), and for all other locations (*). * const input = { - * "ChangeBatch": { - * "Changes": [ + * ChangeBatch: { + * Changes: [ * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "AliasTarget": { - * "DNSName": "example-com-123456789.us-east-2.elb.amazonaws.com ", - * "EvaluateTargetHealth": true, - * "HostedZoneId": "Z3AADJGX6KTTL2" + * Action: "CREATE", + * ResourceRecordSet: { + * AliasTarget: { + * DNSName: "example-com-123456789.us-east-2.elb.amazonaws.com ", + * EvaluateTargetHealth: true, + * HostedZoneId: "Z3AADJGX6KTTL2" * }, - * "Name": "example.com", - * "SetIdentifier": "Ohio region", - * "Type": "A", - * "Weight": 100 + * GeoLocation: { + * ContinentCode: "NA" + * }, + * Name: "example.com", + * SetIdentifier: "North America", + * Type: "A" * } * }, * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "AliasTarget": { - * "DNSName": "example-com-987654321.us-west-2.elb.amazonaws.com ", - * "EvaluateTargetHealth": true, - * "HostedZoneId": "Z1H1FL5HABSF5" + * Action: "CREATE", + * ResourceRecordSet: { + * AliasTarget: { + * DNSName: "example-com-234567890.sa-east-1.elb.amazonaws.com ", + * EvaluateTargetHealth: true, + * HostedZoneId: "Z2P70J7HTTTPLU" + * }, + * GeoLocation: { + * ContinentCode: "SA" + * }, + * Name: "example.com", + * SetIdentifier: "South America", + * Type: "A" + * } + * }, + * { + * Action: "CREATE", + * ResourceRecordSet: { + * AliasTarget: { + * DNSName: "example-com-234567890.eu-central-1.elb.amazonaws.com ", + * EvaluateTargetHealth: true, + * HostedZoneId: "Z215JYRZR1TBD5" + * }, + * GeoLocation: { + * ContinentCode: "EU" + * }, + * Name: "example.com", + * SetIdentifier: "Europe", + * Type: "A" + * } + * }, + * { + * Action: "CREATE", + * ResourceRecordSet: { + * AliasTarget: { + * DNSName: "example-com-234567890.ap-southeast-1.elb.amazonaws.com ", + * EvaluateTargetHealth: true, + * HostedZoneId: "Z1LMS91P8CMLE5" + * }, + * GeoLocation: { + * CountryCode: "*" * }, - * "Name": "example.com", - * "SetIdentifier": "Oregon region", - * "Type": "A", - * "Weight": 200 + * Name: "example.com", + * SetIdentifier: "Other locations", + * Type: "A" * } * } * ], - * "Comment": "ELB load balancers for example.com" + * Comment: "Geolocation alias configuration for example.com" * }, - * "HostedZoneId": "Z3M3LMPEXAMPLE" + * HostedZoneId: "Z3M3LMPEXAMPLE" * }; * const command = new ChangeResourceRecordSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeInfo": { - * "Comment": "ELB load balancers for example.com", - * "Id": "/change/C2682N5HXP0BZ4", - * "Status": "PENDING", - * "SubmittedAt": "2017-02-10T01:36:41.958Z" + * ChangeInfo: { + * Comment: "Geolocation alias configuration for example.com", + * Id: "/change/C2682N5HXP0BZ4", + * Status: "PENDING", + * SubmittedAt: "2017-02-10T01:36:41.958Z" * } * } * *\/ - * // example id: to-create-weighted-alias-resource-record-sets-1484349467416 * ``` * - * @example To create latency resource record sets + * @example To create geolocation resource record sets * ```javascript - * // The following example creates two latency resource record sets that route traffic to EC2 instances. Traffic for example.com is routed either to the Ohio region or the Oregon region, depending on the latency between the user and those regions. + * // The following example creates four geolocation resource record sets that use IPv4 addresses to route traffic to resources such as web servers running on EC2 instances. Traffic is routed to one of four IP addresses, for North America (NA), for South America (SA), for Europe (EU), and for all other locations (*). * const input = { - * "ChangeBatch": { - * "Changes": [ + * ChangeBatch: { + * Changes: [ * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "HealthCheckId": "abcdef11-2222-3333-4444-555555fedcba", - * "Name": "example.com", - * "Region": "us-east-2", - * "ResourceRecords": [ + * Action: "CREATE", + * ResourceRecordSet: { + * GeoLocation: { + * ContinentCode: "NA" + * }, + * Name: "example.com", + * ResourceRecords: [ * { - * "Value": "192.0.2.44" + * Value: "192.0.2.44" * } * ], - * "SetIdentifier": "Ohio region", - * "TTL": 60, - * "Type": "A" + * SetIdentifier: "North America", + * TTL: 60, + * Type: "A" * } * }, * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "HealthCheckId": "abcdef66-7777-8888-9999-000000fedcba", - * "Name": "example.com", - * "Region": "us-west-2", - * "ResourceRecords": [ + * Action: "CREATE", + * ResourceRecordSet: { + * GeoLocation: { + * ContinentCode: "SA" + * }, + * Name: "example.com", + * ResourceRecords: [ * { - * "Value": "192.0.2.45" + * Value: "192.0.2.45" * } * ], - * "SetIdentifier": "Oregon region", - * "TTL": 60, - * "Type": "A" + * SetIdentifier: "South America", + * TTL: 60, + * Type: "A" + * } + * }, + * { + * Action: "CREATE", + * ResourceRecordSet: { + * GeoLocation: { + * ContinentCode: "EU" + * }, + * Name: "example.com", + * ResourceRecords: [ + * { + * Value: "192.0.2.46" + * } + * ], + * SetIdentifier: "Europe", + * TTL: 60, + * Type: "A" + * } + * }, + * { + * Action: "CREATE", + * ResourceRecordSet: { + * GeoLocation: { + * CountryCode: "*" + * }, + * Name: "example.com", + * ResourceRecords: [ + * { + * Value: "192.0.2.47" + * } + * ], + * SetIdentifier: "Other locations", + * TTL: 60, + * Type: "A" * } * } * ], - * "Comment": "EC2 instances for example.com" + * Comment: "Geolocation configuration for example.com" * }, - * "HostedZoneId": "Z3M3LMPEXAMPLE" + * HostedZoneId: "Z3M3LMPEXAMPLE" * }; * const command = new ChangeResourceRecordSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeInfo": { - * "Comment": "EC2 instances for example.com", - * "Id": "/change/C2682N5HXP0BZ4", - * "Status": "PENDING", - * "SubmittedAt": "2017-02-10T01:36:41.958Z" + * ChangeInfo: { + * Comment: "Geolocation configuration for example.com", + * Id: "/change/C2682N5HXP0BZ4", + * Status: "PENDING", + * SubmittedAt: "2017-02-10T01:36:41.958Z" * } * } * *\/ - * // example id: to-create-latency-resource-record-sets-1484350219917 * ``` * * @example To create latency alias resource record sets * ```javascript * // The following example creates two latency alias resource record sets that route traffic for example.com to ELB load balancers. Requests are routed either to the Ohio region or the Oregon region, depending on the latency between the user and those regions. * const input = { - * "ChangeBatch": { - * "Changes": [ + * ChangeBatch: { + * Changes: [ * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "AliasTarget": { - * "DNSName": "example-com-123456789.us-east-2.elb.amazonaws.com ", - * "EvaluateTargetHealth": true, - * "HostedZoneId": "Z3AADJGX6KTTL2" + * Action: "CREATE", + * ResourceRecordSet: { + * AliasTarget: { + * DNSName: "example-com-123456789.us-east-2.elb.amazonaws.com ", + * EvaluateTargetHealth: true, + * HostedZoneId: "Z3AADJGX6KTTL2" * }, - * "Name": "example.com", - * "Region": "us-east-2", - * "SetIdentifier": "Ohio region", - * "Type": "A" + * Name: "example.com", + * Region: "us-east-2", + * SetIdentifier: "Ohio region", + * Type: "A" * } * }, * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "AliasTarget": { - * "DNSName": "example-com-987654321.us-west-2.elb.amazonaws.com ", - * "EvaluateTargetHealth": true, - * "HostedZoneId": "Z1H1FL5HABSF5" + * Action: "CREATE", + * ResourceRecordSet: { + * AliasTarget: { + * DNSName: "example-com-987654321.us-west-2.elb.amazonaws.com ", + * EvaluateTargetHealth: true, + * HostedZoneId: "Z1H1FL5HABSF5" * }, - * "Name": "example.com", - * "Region": "us-west-2", - * "SetIdentifier": "Oregon region", - * "Type": "A" + * Name: "example.com", + * Region: "us-west-2", + * SetIdentifier: "Oregon region", + * Type: "A" * } * } * ], - * "Comment": "ELB load balancers for example.com" + * Comment: "ELB load balancers for example.com" * }, - * "HostedZoneId": "Z3M3LMPEXAMPLE" + * HostedZoneId: "Z3M3LMPEXAMPLE" * }; * const command = new ChangeResourceRecordSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeInfo": { - * "Comment": "ELB load balancers for example.com", - * "Id": "/change/C2682N5HXP0BZ4", - * "Status": "PENDING", - * "SubmittedAt": "2017-02-10T01:36:41.958Z" + * ChangeInfo: { + * Comment: "ELB load balancers for example.com", + * Id: "/change/C2682N5HXP0BZ4", + * Status: "PENDING", + * SubmittedAt: "2017-02-10T01:36:41.958Z" * } * } * *\/ - * // example id: to-create-latency-alias-resource-record-sets-1484601774179 * ``` * - * @example To create failover resource record sets + * @example To create latency resource record sets * ```javascript - * // The following example creates primary and secondary failover resource record sets that route traffic to EC2 instances. Traffic is generally routed to the primary resource, in the Ohio region. If that resource is unavailable, traffic is routed to the secondary resource, in the Oregon region. + * // The following example creates two latency resource record sets that route traffic to EC2 instances. Traffic for example.com is routed either to the Ohio region or the Oregon region, depending on the latency between the user and those regions. * const input = { - * "ChangeBatch": { - * "Changes": [ + * ChangeBatch: { + * Changes: [ * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "Failover": "PRIMARY", - * "HealthCheckId": "abcdef11-2222-3333-4444-555555fedcba", - * "Name": "example.com", - * "ResourceRecords": [ + * Action: "CREATE", + * ResourceRecordSet: { + * HealthCheckId: "abcdef11-2222-3333-4444-555555fedcba", + * Name: "example.com", + * Region: "us-east-2", + * ResourceRecords: [ * { - * "Value": "192.0.2.44" + * Value: "192.0.2.44" * } * ], - * "SetIdentifier": "Ohio region", - * "TTL": 60, - * "Type": "A" + * SetIdentifier: "Ohio region", + * TTL: 60, + * Type: "A" * } * }, * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "Failover": "SECONDARY", - * "HealthCheckId": "abcdef66-7777-8888-9999-000000fedcba", - * "Name": "example.com", - * "ResourceRecords": [ + * Action: "CREATE", + * ResourceRecordSet: { + * HealthCheckId: "abcdef66-7777-8888-9999-000000fedcba", + * Name: "example.com", + * Region: "us-west-2", + * ResourceRecords: [ * { - * "Value": "192.0.2.45" + * Value: "192.0.2.45" * } * ], - * "SetIdentifier": "Oregon region", - * "TTL": 60, - * "Type": "A" + * SetIdentifier: "Oregon region", + * TTL: 60, + * Type: "A" * } * } * ], - * "Comment": "Failover configuration for example.com" + * Comment: "EC2 instances for example.com" * }, - * "HostedZoneId": "Z3M3LMPEXAMPLE" + * HostedZoneId: "Z3M3LMPEXAMPLE" * }; * const command = new ChangeResourceRecordSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeInfo": { - * "Comment": "Failover configuration for example.com", - * "Id": "/change/C2682N5HXP0BZ4", - * "Status": "PENDING", - * "SubmittedAt": "2017-02-10T01:36:41.958Z" + * ChangeInfo: { + * Comment: "EC2 instances for example.com", + * Id: "/change/C2682N5HXP0BZ4", + * Status: "PENDING", + * SubmittedAt: "2017-02-10T01:36:41.958Z" * } * } * *\/ - * // example id: to-create-failover-resource-record-sets-1484604541740 * ``` * - * @example To create failover alias resource record sets + * @example To create a basic resource record set * ```javascript - * // The following example creates primary and secondary failover alias resource record sets that route traffic to ELB load balancers. Traffic is generally routed to the primary resource, in the Ohio region. If that resource is unavailable, traffic is routed to the secondary resource, in the Oregon region. + * // The following example creates a resource record set that routes Internet traffic to a resource with an IP address of 192.0.2.44. * const input = { - * "ChangeBatch": { - * "Changes": [ - * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "AliasTarget": { - * "DNSName": "example-com-123456789.us-east-2.elb.amazonaws.com ", - * "EvaluateTargetHealth": true, - * "HostedZoneId": "Z3AADJGX6KTTL2" - * }, - * "Failover": "PRIMARY", - * "Name": "example.com", - * "SetIdentifier": "Ohio region", - * "Type": "A" - * } - * }, + * ChangeBatch: { + * Changes: [ * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "AliasTarget": { - * "DNSName": "example-com-987654321.us-west-2.elb.amazonaws.com ", - * "EvaluateTargetHealth": true, - * "HostedZoneId": "Z1H1FL5HABSF5" - * }, - * "Failover": "SECONDARY", - * "Name": "example.com", - * "SetIdentifier": "Oregon region", - * "Type": "A" + * Action: "CREATE", + * ResourceRecordSet: { + * Name: "example.com", + * ResourceRecords: [ + * { + * Value: "192.0.2.44" + * } + * ], + * TTL: 60, + * Type: "A" * } * } * ], - * "Comment": "Failover alias configuration for example.com" + * Comment: "Web server for example.com" * }, - * "HostedZoneId": "Z3M3LMPEXAMPLE" + * HostedZoneId: "Z3M3LMPEXAMPLE" * }; * const command = new ChangeResourceRecordSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeInfo": { - * "Comment": "Failover alias configuration for example.com", - * "Id": "/change/C2682N5HXP0BZ4", - * "Status": "PENDING", - * "SubmittedAt": "2017-02-10T01:36:41.958Z" + * ChangeInfo: { + * Comment: "Web server for example.com", + * Id: "/change/C2682N5HXP0BZ4", + * Status: "PENDING", + * SubmittedAt: "2017-02-10T01:36:41.958Z" * } * } * *\/ - * // example id: to-create-failover-alias-resource-record-sets-1484607497724 * ``` * - * @example To create geolocation resource record sets + * @example To create weighted alias resource record sets * ```javascript - * // The following example creates four geolocation resource record sets that use IPv4 addresses to route traffic to resources such as web servers running on EC2 instances. Traffic is routed to one of four IP addresses, for North America (NA), for South America (SA), for Europe (EU), and for all other locations (*). + * // The following example creates two weighted alias resource record sets that route traffic to ELB load balancers. The resource with a Weight of 100 will get 1/3rd of traffic (100/100+200), and the other resource will get the rest of the traffic for example.com. * const input = { - * "ChangeBatch": { - * "Changes": [ - * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "GeoLocation": { - * "ContinentCode": "NA" - * }, - * "Name": "example.com", - * "ResourceRecords": [ - * { - * "Value": "192.0.2.44" - * } - * ], - * "SetIdentifier": "North America", - * "TTL": 60, - * "Type": "A" - * } - * }, - * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "GeoLocation": { - * "ContinentCode": "SA" - * }, - * "Name": "example.com", - * "ResourceRecords": [ - * { - * "Value": "192.0.2.45" - * } - * ], - * "SetIdentifier": "South America", - * "TTL": 60, - * "Type": "A" - * } - * }, + * ChangeBatch: { + * Changes: [ * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "GeoLocation": { - * "ContinentCode": "EU" + * Action: "CREATE", + * ResourceRecordSet: { + * AliasTarget: { + * DNSName: "example-com-123456789.us-east-2.elb.amazonaws.com ", + * EvaluateTargetHealth: true, + * HostedZoneId: "Z3AADJGX6KTTL2" * }, - * "Name": "example.com", - * "ResourceRecords": [ - * { - * "Value": "192.0.2.46" - * } - * ], - * "SetIdentifier": "Europe", - * "TTL": 60, - * "Type": "A" + * Name: "example.com", + * SetIdentifier: "Ohio region", + * Type: "A", + * Weight: 100 * } * }, * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "GeoLocation": { - * "CountryCode": "*" + * Action: "CREATE", + * ResourceRecordSet: { + * AliasTarget: { + * DNSName: "example-com-987654321.us-west-2.elb.amazonaws.com ", + * EvaluateTargetHealth: true, + * HostedZoneId: "Z1H1FL5HABSF5" * }, - * "Name": "example.com", - * "ResourceRecords": [ - * { - * "Value": "192.0.2.47" - * } - * ], - * "SetIdentifier": "Other locations", - * "TTL": 60, - * "Type": "A" + * Name: "example.com", + * SetIdentifier: "Oregon region", + * Type: "A", + * Weight: 200 * } * } * ], - * "Comment": "Geolocation configuration for example.com" + * Comment: "ELB load balancers for example.com" * }, - * "HostedZoneId": "Z3M3LMPEXAMPLE" + * HostedZoneId: "Z3M3LMPEXAMPLE" * }; * const command = new ChangeResourceRecordSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeInfo": { - * "Comment": "Geolocation configuration for example.com", - * "Id": "/change/C2682N5HXP0BZ4", - * "Status": "PENDING", - * "SubmittedAt": "2017-02-10T01:36:41.958Z" + * ChangeInfo: { + * Comment: "ELB load balancers for example.com", + * Id: "/change/C2682N5HXP0BZ4", + * Status: "PENDING", + * SubmittedAt: "2017-02-10T01:36:41.958Z" * } * } * *\/ - * // example id: to-create-geolocation-resource-record-sets-1484612462466 * ``` * - * @example To create geolocation alias resource record sets + * @example To create weighted resource record sets * ```javascript - * // The following example creates four geolocation alias resource record sets that route traffic to ELB load balancers. Traffic is routed to one of four IP addresses, for North America (NA), for South America (SA), for Europe (EU), and for all other locations (*). + * // The following example creates two weighted resource record sets. The resource with a Weight of 100 will get 1/3rd of traffic (100/100+200), and the other resource will get the rest of the traffic for example.com. * const input = { - * "ChangeBatch": { - * "Changes": [ - * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "AliasTarget": { - * "DNSName": "example-com-123456789.us-east-2.elb.amazonaws.com ", - * "EvaluateTargetHealth": true, - * "HostedZoneId": "Z3AADJGX6KTTL2" - * }, - * "GeoLocation": { - * "ContinentCode": "NA" - * }, - * "Name": "example.com", - * "SetIdentifier": "North America", - * "Type": "A" - * } - * }, + * ChangeBatch: { + * Changes: [ * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "AliasTarget": { - * "DNSName": "example-com-234567890.sa-east-1.elb.amazonaws.com ", - * "EvaluateTargetHealth": true, - * "HostedZoneId": "Z2P70J7HTTTPLU" - * }, - * "GeoLocation": { - * "ContinentCode": "SA" - * }, - * "Name": "example.com", - * "SetIdentifier": "South America", - * "Type": "A" - * } - * }, - * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "AliasTarget": { - * "DNSName": "example-com-234567890.eu-central-1.elb.amazonaws.com ", - * "EvaluateTargetHealth": true, - * "HostedZoneId": "Z215JYRZR1TBD5" - * }, - * "GeoLocation": { - * "ContinentCode": "EU" - * }, - * "Name": "example.com", - * "SetIdentifier": "Europe", - * "Type": "A" + * Action: "CREATE", + * ResourceRecordSet: { + * HealthCheckId: "abcdef11-2222-3333-4444-555555fedcba", + * Name: "example.com", + * ResourceRecords: [ + * { + * Value: "192.0.2.44" + * } + * ], + * SetIdentifier: "Seattle data center", + * TTL: 60, + * Type: "A", + * Weight: 100 * } * }, * { - * "Action": "CREATE", - * "ResourceRecordSet": { - * "AliasTarget": { - * "DNSName": "example-com-234567890.ap-southeast-1.elb.amazonaws.com ", - * "EvaluateTargetHealth": true, - * "HostedZoneId": "Z1LMS91P8CMLE5" - * }, - * "GeoLocation": { - * "CountryCode": "*" - * }, - * "Name": "example.com", - * "SetIdentifier": "Other locations", - * "Type": "A" + * Action: "CREATE", + * ResourceRecordSet: { + * HealthCheckId: "abcdef66-7777-8888-9999-000000fedcba", + * Name: "example.com", + * ResourceRecords: [ + * { + * Value: "192.0.2.45" + * } + * ], + * SetIdentifier: "Portland data center", + * TTL: 60, + * Type: "A", + * Weight: 200 * } * } * ], - * "Comment": "Geolocation alias configuration for example.com" + * Comment: "Web servers for example.com" * }, - * "HostedZoneId": "Z3M3LMPEXAMPLE" + * HostedZoneId: "Z3M3LMPEXAMPLE" * }; * const command = new ChangeResourceRecordSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeInfo": { - * "Comment": "Geolocation alias configuration for example.com", - * "Id": "/change/C2682N5HXP0BZ4", - * "Status": "PENDING", - * "SubmittedAt": "2017-02-10T01:36:41.958Z" + * ChangeInfo: { + * Comment: "Web servers for example.com", + * Id: "/change/C2682N5HXP0BZ4", + * Status: "PENDING", + * SubmittedAt: "2017-02-10T01:36:41.958Z" * } * } * *\/ - * // example id: to-create-geolocation-alias-resource-record-sets-1484612871203 * ``` * + * @public */ export class ChangeResourceRecordSetsCommand extends $Command .classBuilder< diff --git a/clients/client-route-53/src/commands/ChangeTagsForResourceCommand.ts b/clients/client-route-53/src/commands/ChangeTagsForResourceCommand.ts index 2e17abba29d9f..bd50dde13019b 100644 --- a/clients/client-route-53/src/commands/ChangeTagsForResourceCommand.ts +++ b/clients/client-route-53/src/commands/ChangeTagsForResourceCommand.ts @@ -84,32 +84,35 @@ export interface ChangeTagsForResourceCommandOutput extends ChangeTagsForResourc * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* - * @public + * * @example To add or remove tags from a hosted zone or health check * ```javascript * // The following example adds two tags and removes one tag from the hosted zone with ID Z3M3LMPEXAMPLE. * const input = { - * "AddTags": [ + * AddTags: [ * { - * "Key": "apex", - * "Value": "3874" + * Key: "apex", + * Value: "3874" * }, * { - * "Key": "acme", - * "Value": "4938" + * Key: "acme", + * Value: "4938" * } * ], - * "RemoveTagKeys": [ + * RemoveTagKeys: [ * "Nadir" * ], - * "ResourceId": "Z3M3LMPEXAMPLE", - * "ResourceType": "hostedzone" + * ResourceId: "Z3M3LMPEXAMPLE", + * ResourceType: "hostedzone" * }; * const command = new ChangeTagsForResourceCommand(input); - * await client.send(command); - * // example id: to-add-or-remove-tags-from-a-hosted-zone-or-health-check-1484084752409 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class ChangeTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-route-53/src/commands/CreateCidrCollectionCommand.ts b/clients/client-route-53/src/commands/CreateCidrCollectionCommand.ts index a601bc7c2fb88..00ec4cc0deb11 100644 --- a/clients/client-route-53/src/commands/CreateCidrCollectionCommand.ts +++ b/clients/client-route-53/src/commands/CreateCidrCollectionCommand.ts @@ -77,6 +77,7 @@ export interface CreateCidrCollectionCommandOutput extends CreateCidrCollectionR * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class CreateCidrCollectionCommand extends $Command diff --git a/clients/client-route-53/src/commands/CreateHealthCheckCommand.ts b/clients/client-route-53/src/commands/CreateHealthCheckCommand.ts index 751d32489751d..2ab749acde771 100644 --- a/clients/client-route-53/src/commands/CreateHealthCheckCommand.ts +++ b/clients/client-route-53/src/commands/CreateHealthCheckCommand.ts @@ -196,6 +196,7 @@ export interface CreateHealthCheckCommandOutput extends CreateHealthCheckRespons * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class CreateHealthCheckCommand extends $Command diff --git a/clients/client-route-53/src/commands/CreateHostedZoneCommand.ts b/clients/client-route-53/src/commands/CreateHostedZoneCommand.ts index 540418bb6849f..13bccbb3e1679 100644 --- a/clients/client-route-53/src/commands/CreateHostedZoneCommand.ts +++ b/clients/client-route-53/src/commands/CreateHostedZoneCommand.ts @@ -225,6 +225,7 @@ export interface CreateHostedZoneCommandOutput extends CreateHostedZoneResponse, * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class CreateHostedZoneCommand extends $Command diff --git a/clients/client-route-53/src/commands/CreateKeySigningKeyCommand.ts b/clients/client-route-53/src/commands/CreateKeySigningKeyCommand.ts index 73ca5cf1cc4fd..cdb653e26a7df 100644 --- a/clients/client-route-53/src/commands/CreateKeySigningKeyCommand.ts +++ b/clients/client-route-53/src/commands/CreateKeySigningKeyCommand.ts @@ -120,6 +120,7 @@ export interface CreateKeySigningKeyCommandOutput extends CreateKeySigningKeyRes * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class CreateKeySigningKeyCommand extends $Command diff --git a/clients/client-route-53/src/commands/CreateQueryLoggingConfigCommand.ts b/clients/client-route-53/src/commands/CreateQueryLoggingConfigCommand.ts index 095158a105ac3..03b89a77c6721 100644 --- a/clients/client-route-53/src/commands/CreateQueryLoggingConfigCommand.ts +++ b/clients/client-route-53/src/commands/CreateQueryLoggingConfigCommand.ts @@ -274,6 +274,7 @@ export interface CreateQueryLoggingConfigCommandOutput extends CreateQueryLoggin * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class CreateQueryLoggingConfigCommand extends $Command diff --git a/clients/client-route-53/src/commands/CreateReusableDelegationSetCommand.ts b/clients/client-route-53/src/commands/CreateReusableDelegationSetCommand.ts index b0341f9f65477..c7b986a8c480f 100644 --- a/clients/client-route-53/src/commands/CreateReusableDelegationSetCommand.ts +++ b/clients/client-route-53/src/commands/CreateReusableDelegationSetCommand.ts @@ -150,6 +150,7 @@ export interface CreateReusableDelegationSetCommandOutput * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class CreateReusableDelegationSetCommand extends $Command diff --git a/clients/client-route-53/src/commands/CreateTrafficPolicyCommand.ts b/clients/client-route-53/src/commands/CreateTrafficPolicyCommand.ts index 3003055922e00..e3057d27f7296 100644 --- a/clients/client-route-53/src/commands/CreateTrafficPolicyCommand.ts +++ b/clients/client-route-53/src/commands/CreateTrafficPolicyCommand.ts @@ -86,6 +86,7 @@ export interface CreateTrafficPolicyCommandOutput extends CreateTrafficPolicyRes * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class CreateTrafficPolicyCommand extends $Command diff --git a/clients/client-route-53/src/commands/CreateTrafficPolicyInstanceCommand.ts b/clients/client-route-53/src/commands/CreateTrafficPolicyInstanceCommand.ts index 8728be3ad0ef9..552f7c0fd4072 100644 --- a/clients/client-route-53/src/commands/CreateTrafficPolicyInstanceCommand.ts +++ b/clients/client-route-53/src/commands/CreateTrafficPolicyInstanceCommand.ts @@ -107,6 +107,7 @@ export interface CreateTrafficPolicyInstanceCommandOutput * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class CreateTrafficPolicyInstanceCommand extends $Command diff --git a/clients/client-route-53/src/commands/CreateTrafficPolicyVersionCommand.ts b/clients/client-route-53/src/commands/CreateTrafficPolicyVersionCommand.ts index 61b28e43b013e..7af4c2cbd896e 100644 --- a/clients/client-route-53/src/commands/CreateTrafficPolicyVersionCommand.ts +++ b/clients/client-route-53/src/commands/CreateTrafficPolicyVersionCommand.ts @@ -94,6 +94,7 @@ export interface CreateTrafficPolicyVersionCommandOutput extends CreateTrafficPo * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class CreateTrafficPolicyVersionCommand extends $Command diff --git a/clients/client-route-53/src/commands/CreateVPCAssociationAuthorizationCommand.ts b/clients/client-route-53/src/commands/CreateVPCAssociationAuthorizationCommand.ts index 1334804e5ac4d..2fd0c09bef82d 100644 --- a/clients/client-route-53/src/commands/CreateVPCAssociationAuthorizationCommand.ts +++ b/clients/client-route-53/src/commands/CreateVPCAssociationAuthorizationCommand.ts @@ -103,6 +103,7 @@ export interface CreateVPCAssociationAuthorizationCommandOutput * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class CreateVPCAssociationAuthorizationCommand extends $Command diff --git a/clients/client-route-53/src/commands/DeactivateKeySigningKeyCommand.ts b/clients/client-route-53/src/commands/DeactivateKeySigningKeyCommand.ts index 4a73c4719cb99..42a8a18b52634 100644 --- a/clients/client-route-53/src/commands/DeactivateKeySigningKeyCommand.ts +++ b/clients/client-route-53/src/commands/DeactivateKeySigningKeyCommand.ts @@ -89,6 +89,7 @@ export interface DeactivateKeySigningKeyCommandOutput extends DeactivateKeySigni * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class DeactivateKeySigningKeyCommand extends $Command diff --git a/clients/client-route-53/src/commands/DeleteCidrCollectionCommand.ts b/clients/client-route-53/src/commands/DeleteCidrCollectionCommand.ts index 771a2782945f4..bc9f69f33c871 100644 --- a/clients/client-route-53/src/commands/DeleteCidrCollectionCommand.ts +++ b/clients/client-route-53/src/commands/DeleteCidrCollectionCommand.ts @@ -68,6 +68,7 @@ export interface DeleteCidrCollectionCommandOutput extends DeleteCidrCollectionR * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class DeleteCidrCollectionCommand extends $Command diff --git a/clients/client-route-53/src/commands/DeleteHealthCheckCommand.ts b/clients/client-route-53/src/commands/DeleteHealthCheckCommand.ts index e220f528abd19..470e4f4f31661 100644 --- a/clients/client-route-53/src/commands/DeleteHealthCheckCommand.ts +++ b/clients/client-route-53/src/commands/DeleteHealthCheckCommand.ts @@ -76,6 +76,7 @@ export interface DeleteHealthCheckCommandOutput extends DeleteHealthCheckRespons * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class DeleteHealthCheckCommand extends $Command diff --git a/clients/client-route-53/src/commands/DeleteHostedZoneCommand.ts b/clients/client-route-53/src/commands/DeleteHostedZoneCommand.ts index adb0406a9d9bc..d89a1197a5eb4 100644 --- a/clients/client-route-53/src/commands/DeleteHostedZoneCommand.ts +++ b/clients/client-route-53/src/commands/DeleteHostedZoneCommand.ts @@ -121,6 +121,7 @@ export interface DeleteHostedZoneCommandOutput extends DeleteHostedZoneResponse, * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class DeleteHostedZoneCommand extends $Command diff --git a/clients/client-route-53/src/commands/DeleteKeySigningKeyCommand.ts b/clients/client-route-53/src/commands/DeleteKeySigningKeyCommand.ts index 00647bef9bbfa..8d50fc8b2c042 100644 --- a/clients/client-route-53/src/commands/DeleteKeySigningKeyCommand.ts +++ b/clients/client-route-53/src/commands/DeleteKeySigningKeyCommand.ts @@ -89,6 +89,7 @@ export interface DeleteKeySigningKeyCommandOutput extends DeleteKeySigningKeyRes * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class DeleteKeySigningKeyCommand extends $Command diff --git a/clients/client-route-53/src/commands/DeleteQueryLoggingConfigCommand.ts b/clients/client-route-53/src/commands/DeleteQueryLoggingConfigCommand.ts index 2997b8b376a50..54c47dc456e15 100644 --- a/clients/client-route-53/src/commands/DeleteQueryLoggingConfigCommand.ts +++ b/clients/client-route-53/src/commands/DeleteQueryLoggingConfigCommand.ts @@ -67,6 +67,7 @@ export interface DeleteQueryLoggingConfigCommandOutput extends DeleteQueryLoggin * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class DeleteQueryLoggingConfigCommand extends $Command diff --git a/clients/client-route-53/src/commands/DeleteReusableDelegationSetCommand.ts b/clients/client-route-53/src/commands/DeleteReusableDelegationSetCommand.ts index 8fc13e321fa7f..cc1dfb6065ccd 100644 --- a/clients/client-route-53/src/commands/DeleteReusableDelegationSetCommand.ts +++ b/clients/client-route-53/src/commands/DeleteReusableDelegationSetCommand.ts @@ -76,6 +76,7 @@ export interface DeleteReusableDelegationSetCommandOutput * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class DeleteReusableDelegationSetCommand extends $Command diff --git a/clients/client-route-53/src/commands/DeleteTrafficPolicyCommand.ts b/clients/client-route-53/src/commands/DeleteTrafficPolicyCommand.ts index 93563644bc615..7a0833e93b1f9 100644 --- a/clients/client-route-53/src/commands/DeleteTrafficPolicyCommand.ts +++ b/clients/client-route-53/src/commands/DeleteTrafficPolicyCommand.ts @@ -84,6 +84,7 @@ export interface DeleteTrafficPolicyCommandOutput extends DeleteTrafficPolicyRes * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class DeleteTrafficPolicyCommand extends $Command diff --git a/clients/client-route-53/src/commands/DeleteTrafficPolicyInstanceCommand.ts b/clients/client-route-53/src/commands/DeleteTrafficPolicyInstanceCommand.ts index 06e8926cc5b77..443ed0837f2ac 100644 --- a/clients/client-route-53/src/commands/DeleteTrafficPolicyInstanceCommand.ts +++ b/clients/client-route-53/src/commands/DeleteTrafficPolicyInstanceCommand.ts @@ -74,6 +74,7 @@ export interface DeleteTrafficPolicyInstanceCommandOutput * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class DeleteTrafficPolicyInstanceCommand extends $Command diff --git a/clients/client-route-53/src/commands/DeleteVPCAssociationAuthorizationCommand.ts b/clients/client-route-53/src/commands/DeleteVPCAssociationAuthorizationCommand.ts index dab1e8e75002c..b8123f99e3541 100644 --- a/clients/client-route-53/src/commands/DeleteVPCAssociationAuthorizationCommand.ts +++ b/clients/client-route-53/src/commands/DeleteVPCAssociationAuthorizationCommand.ts @@ -95,6 +95,7 @@ export interface DeleteVPCAssociationAuthorizationCommandOutput * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class DeleteVPCAssociationAuthorizationCommand extends $Command diff --git a/clients/client-route-53/src/commands/DisableHostedZoneDNSSECCommand.ts b/clients/client-route-53/src/commands/DisableHostedZoneDNSSECCommand.ts index 8157047e5363c..465605acad517 100644 --- a/clients/client-route-53/src/commands/DisableHostedZoneDNSSECCommand.ts +++ b/clients/client-route-53/src/commands/DisableHostedZoneDNSSECCommand.ts @@ -89,6 +89,7 @@ export interface DisableHostedZoneDNSSECCommandOutput extends DisableHostedZoneD * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class DisableHostedZoneDNSSECCommand extends $Command diff --git a/clients/client-route-53/src/commands/DisassociateVPCFromHostedZoneCommand.ts b/clients/client-route-53/src/commands/DisassociateVPCFromHostedZoneCommand.ts index 3ab171aa923b1..1faf02ad1594a 100644 --- a/clients/client-route-53/src/commands/DisassociateVPCFromHostedZoneCommand.ts +++ b/clients/client-route-53/src/commands/DisassociateVPCFromHostedZoneCommand.ts @@ -137,6 +137,7 @@ export interface DisassociateVPCFromHostedZoneCommandOutput * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class DisassociateVPCFromHostedZoneCommand extends $Command diff --git a/clients/client-route-53/src/commands/EnableHostedZoneDNSSECCommand.ts b/clients/client-route-53/src/commands/EnableHostedZoneDNSSECCommand.ts index 79cc1c3937092..5237773d2a8dc 100644 --- a/clients/client-route-53/src/commands/EnableHostedZoneDNSSECCommand.ts +++ b/clients/client-route-53/src/commands/EnableHostedZoneDNSSECCommand.ts @@ -92,6 +92,7 @@ export interface EnableHostedZoneDNSSECCommandOutput extends EnableHostedZoneDNS * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class EnableHostedZoneDNSSECCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetAccountLimitCommand.ts b/clients/client-route-53/src/commands/GetAccountLimitCommand.ts index 0941ad275d56a..d2bbc98160ebf 100644 --- a/clients/client-route-53/src/commands/GetAccountLimitCommand.ts +++ b/clients/client-route-53/src/commands/GetAccountLimitCommand.ts @@ -70,6 +70,7 @@ export interface GetAccountLimitCommandOutput extends GetAccountLimitResponse, _ * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetAccountLimitCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetChangeCommand.ts b/clients/client-route-53/src/commands/GetChangeCommand.ts index 9461576743d63..518e26b25e08b 100644 --- a/clients/client-route-53/src/commands/GetChangeCommand.ts +++ b/clients/client-route-53/src/commands/GetChangeCommand.ts @@ -81,6 +81,7 @@ export interface GetChangeCommandOutput extends GetChangeResponse, __MetadataBea * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetChangeCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetCheckerIpRangesCommand.ts b/clients/client-route-53/src/commands/GetCheckerIpRangesCommand.ts index 817ac60d379a6..28cbaee530ade 100644 --- a/clients/client-route-53/src/commands/GetCheckerIpRangesCommand.ts +++ b/clients/client-route-53/src/commands/GetCheckerIpRangesCommand.ts @@ -64,6 +64,7 @@ export interface GetCheckerIpRangesCommandOutput extends GetCheckerIpRangesRespo * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetCheckerIpRangesCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetDNSSECCommand.ts b/clients/client-route-53/src/commands/GetDNSSECCommand.ts index 16da0c26fab05..9e9a27a422d51 100644 --- a/clients/client-route-53/src/commands/GetDNSSECCommand.ts +++ b/clients/client-route-53/src/commands/GetDNSSECCommand.ts @@ -89,6 +89,7 @@ export interface GetDNSSECCommandOutput extends GetDNSSECResponse, __MetadataBea * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetDNSSECCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetGeoLocationCommand.ts b/clients/client-route-53/src/commands/GetGeoLocationCommand.ts index de5414a52d880..5dfc69be7a4fc 100644 --- a/clients/client-route-53/src/commands/GetGeoLocationCommand.ts +++ b/clients/client-route-53/src/commands/GetGeoLocationCommand.ts @@ -97,6 +97,7 @@ export interface GetGeoLocationCommandOutput extends GetGeoLocationResponse, __M * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetGeoLocationCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetHealthCheckCommand.ts b/clients/client-route-53/src/commands/GetHealthCheckCommand.ts index a3a98659dd65b..67ab8d71b9629 100644 --- a/clients/client-route-53/src/commands/GetHealthCheckCommand.ts +++ b/clients/client-route-53/src/commands/GetHealthCheckCommand.ts @@ -115,6 +115,7 @@ export interface GetHealthCheckCommandOutput extends GetHealthCheckResponse, __M * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetHealthCheckCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetHealthCheckCountCommand.ts b/clients/client-route-53/src/commands/GetHealthCheckCountCommand.ts index 48cc84d05ea34..3bde7b99ab0b7 100644 --- a/clients/client-route-53/src/commands/GetHealthCheckCountCommand.ts +++ b/clients/client-route-53/src/commands/GetHealthCheckCountCommand.ts @@ -53,6 +53,7 @@ export interface GetHealthCheckCountCommandOutput extends GetHealthCheckCountRes * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetHealthCheckCountCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetHealthCheckLastFailureReasonCommand.ts b/clients/client-route-53/src/commands/GetHealthCheckLastFailureReasonCommand.ts index eda586f3c2099..72e256dd89940 100644 --- a/clients/client-route-53/src/commands/GetHealthCheckLastFailureReasonCommand.ts +++ b/clients/client-route-53/src/commands/GetHealthCheckLastFailureReasonCommand.ts @@ -75,6 +75,7 @@ export interface GetHealthCheckLastFailureReasonCommandOutput * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetHealthCheckLastFailureReasonCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetHealthCheckStatusCommand.ts b/clients/client-route-53/src/commands/GetHealthCheckStatusCommand.ts index 1ee70426193bc..2b210940cba76 100644 --- a/clients/client-route-53/src/commands/GetHealthCheckStatusCommand.ts +++ b/clients/client-route-53/src/commands/GetHealthCheckStatusCommand.ts @@ -75,6 +75,7 @@ export interface GetHealthCheckStatusCommandOutput extends GetHealthCheckStatusR * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetHealthCheckStatusCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetHostedZoneCommand.ts b/clients/client-route-53/src/commands/GetHostedZoneCommand.ts index 2c058a39ade19..d196703624904 100644 --- a/clients/client-route-53/src/commands/GetHostedZoneCommand.ts +++ b/clients/client-route-53/src/commands/GetHostedZoneCommand.ts @@ -92,39 +92,39 @@ export interface GetHostedZoneCommandOutput extends GetHostedZoneResponse, __Met * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* - * @public + * * @example To get information about a hosted zone * ```javascript * // The following example gets information about the Z3M3LMPEXAMPLE hosted zone. * const input = { - * "Id": "Z3M3LMPEXAMPLE" + * Id: "Z3M3LMPEXAMPLE" * }; * const command = new GetHostedZoneCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DelegationSet": { - * "NameServers": [ + * DelegationSet: { + * NameServers: [ * "ns-2048.awsdns-64.com", * "ns-2049.awsdns-65.net", * "ns-2050.awsdns-66.org", * "ns-2051.awsdns-67.co.uk" * ] * }, - * "HostedZone": { - * "CallerReference": "C741617D-04E4-F8DE-B9D7-0D150FC61C2E", - * "Config": { - * "PrivateZone": false + * HostedZone: { + * CallerReference: "C741617D-04E4-F8DE-B9D7-0D150FC61C2E", + * Config: { + * PrivateZone: false * }, - * "Id": "/hostedzone/Z3M3LMPEXAMPLE", - * "Name": "myawsbucket.com.", - * "ResourceRecordSetCount": 8 + * Id: "/hostedzone/Z3M3LMPEXAMPLE", + * Name: "myawsbucket.com.", + * ResourceRecordSetCount: 8 * } * } * *\/ - * // example id: to-get-information-about-a-hosted-zone-1481752361124 * ``` * + * @public */ export class GetHostedZoneCommand extends $Command .classBuilder< diff --git a/clients/client-route-53/src/commands/GetHostedZoneCountCommand.ts b/clients/client-route-53/src/commands/GetHostedZoneCountCommand.ts index cf49391d04bb2..5d77e47ced1ba 100644 --- a/clients/client-route-53/src/commands/GetHostedZoneCountCommand.ts +++ b/clients/client-route-53/src/commands/GetHostedZoneCountCommand.ts @@ -56,6 +56,7 @@ export interface GetHostedZoneCountCommandOutput extends GetHostedZoneCountRespo * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetHostedZoneCountCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetHostedZoneLimitCommand.ts b/clients/client-route-53/src/commands/GetHostedZoneLimitCommand.ts index fcc4895c47c73..0f0eb5eccf43f 100644 --- a/clients/client-route-53/src/commands/GetHostedZoneLimitCommand.ts +++ b/clients/client-route-53/src/commands/GetHostedZoneLimitCommand.ts @@ -74,6 +74,7 @@ export interface GetHostedZoneLimitCommandOutput extends GetHostedZoneLimitRespo * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetHostedZoneLimitCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetQueryLoggingConfigCommand.ts b/clients/client-route-53/src/commands/GetQueryLoggingConfigCommand.ts index 2d884aaad5a32..b358d2562c5d8 100644 --- a/clients/client-route-53/src/commands/GetQueryLoggingConfigCommand.ts +++ b/clients/client-route-53/src/commands/GetQueryLoggingConfigCommand.ts @@ -68,6 +68,7 @@ export interface GetQueryLoggingConfigCommandOutput extends GetQueryLoggingConfi * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetQueryLoggingConfigCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetReusableDelegationSetCommand.ts b/clients/client-route-53/src/commands/GetReusableDelegationSetCommand.ts index 5f198b4c5329a..dad616426d4fd 100644 --- a/clients/client-route-53/src/commands/GetReusableDelegationSetCommand.ts +++ b/clients/client-route-53/src/commands/GetReusableDelegationSetCommand.ts @@ -72,6 +72,7 @@ export interface GetReusableDelegationSetCommandOutput extends GetReusableDelega * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetReusableDelegationSetCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetReusableDelegationSetLimitCommand.ts b/clients/client-route-53/src/commands/GetReusableDelegationSetLimitCommand.ts index 4c2b2772bbdba..33ac4e9f90161 100644 --- a/clients/client-route-53/src/commands/GetReusableDelegationSetLimitCommand.ts +++ b/clients/client-route-53/src/commands/GetReusableDelegationSetLimitCommand.ts @@ -76,6 +76,7 @@ export interface GetReusableDelegationSetLimitCommandOutput * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetReusableDelegationSetLimitCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetTrafficPolicyCommand.ts b/clients/client-route-53/src/commands/GetTrafficPolicyCommand.ts index 4294f77b1c727..ddd3447e48494 100644 --- a/clients/client-route-53/src/commands/GetTrafficPolicyCommand.ts +++ b/clients/client-route-53/src/commands/GetTrafficPolicyCommand.ts @@ -72,6 +72,7 @@ export interface GetTrafficPolicyCommandOutput extends GetTrafficPolicyResponse, * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetTrafficPolicyCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCommand.ts b/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCommand.ts index e1e1e73e520cd..42c7d599bcec8 100644 --- a/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCommand.ts +++ b/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCommand.ts @@ -83,6 +83,7 @@ export interface GetTrafficPolicyInstanceCommandOutput extends GetTrafficPolicyI * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetTrafficPolicyInstanceCommand extends $Command diff --git a/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCountCommand.ts b/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCountCommand.ts index 2455f5a1c70fc..1d93d4154c275 100644 --- a/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCountCommand.ts +++ b/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCountCommand.ts @@ -59,6 +59,7 @@ export interface GetTrafficPolicyInstanceCountCommandOutput * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class GetTrafficPolicyInstanceCountCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListCidrBlocksCommand.ts b/clients/client-route-53/src/commands/ListCidrBlocksCommand.ts index 3ec8a4094aac0..1fb8297e435d1 100644 --- a/clients/client-route-53/src/commands/ListCidrBlocksCommand.ts +++ b/clients/client-route-53/src/commands/ListCidrBlocksCommand.ts @@ -73,6 +73,7 @@ export interface ListCidrBlocksCommandOutput extends ListCidrBlocksResponse, __M * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListCidrBlocksCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListCidrCollectionsCommand.ts b/clients/client-route-53/src/commands/ListCidrCollectionsCommand.ts index ba0b8d2b2a86d..308ccf0eae974 100644 --- a/clients/client-route-53/src/commands/ListCidrCollectionsCommand.ts +++ b/clients/client-route-53/src/commands/ListCidrCollectionsCommand.ts @@ -68,6 +68,7 @@ export interface ListCidrCollectionsCommandOutput extends ListCidrCollectionsRes * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListCidrCollectionsCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListCidrLocationsCommand.ts b/clients/client-route-53/src/commands/ListCidrLocationsCommand.ts index df5ca88075221..d68bf2b9d7e03 100644 --- a/clients/client-route-53/src/commands/ListCidrLocationsCommand.ts +++ b/clients/client-route-53/src/commands/ListCidrLocationsCommand.ts @@ -69,6 +69,7 @@ export interface ListCidrLocationsCommandOutput extends ListCidrLocationsRespons * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListCidrLocationsCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListGeoLocationsCommand.ts b/clients/client-route-53/src/commands/ListGeoLocationsCommand.ts index 042625950a67c..e0b81ce597c22 100644 --- a/clients/client-route-53/src/commands/ListGeoLocationsCommand.ts +++ b/clients/client-route-53/src/commands/ListGeoLocationsCommand.ts @@ -83,6 +83,7 @@ export interface ListGeoLocationsCommandOutput extends ListGeoLocationsResponse, * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListGeoLocationsCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListHealthChecksCommand.ts b/clients/client-route-53/src/commands/ListHealthChecksCommand.ts index ff0cf84afd80d..e3e6e0298a211 100644 --- a/clients/client-route-53/src/commands/ListHealthChecksCommand.ts +++ b/clients/client-route-53/src/commands/ListHealthChecksCommand.ts @@ -119,6 +119,7 @@ export interface ListHealthChecksCommandOutput extends ListHealthChecksResponse, * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListHealthChecksCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListHostedZonesByNameCommand.ts b/clients/client-route-53/src/commands/ListHostedZonesByNameCommand.ts index 3a0a297492671..d7cc122ac1566 100644 --- a/clients/client-route-53/src/commands/ListHostedZonesByNameCommand.ts +++ b/clients/client-route-53/src/commands/ListHostedZonesByNameCommand.ts @@ -140,6 +140,7 @@ export interface ListHostedZonesByNameCommandOutput extends ListHostedZonesByNam * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListHostedZonesByNameCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListHostedZonesByVPCCommand.ts b/clients/client-route-53/src/commands/ListHostedZonesByVPCCommand.ts index 090bb526449fb..4f12432e61b12 100644 --- a/clients/client-route-53/src/commands/ListHostedZonesByVPCCommand.ts +++ b/clients/client-route-53/src/commands/ListHostedZonesByVPCCommand.ts @@ -118,6 +118,7 @@ export interface ListHostedZonesByVPCCommandOutput extends ListHostedZonesByVPCR * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListHostedZonesByVPCCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListHostedZonesCommand.ts b/clients/client-route-53/src/commands/ListHostedZonesCommand.ts index fba4658d5bad0..54f56bf3b641a 100644 --- a/clients/client-route-53/src/commands/ListHostedZonesCommand.ts +++ b/clients/client-route-53/src/commands/ListHostedZonesCommand.ts @@ -92,6 +92,7 @@ export interface ListHostedZonesCommandOutput extends ListHostedZonesResponse, _ * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListHostedZonesCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListQueryLoggingConfigsCommand.ts b/clients/client-route-53/src/commands/ListQueryLoggingConfigsCommand.ts index ce54c566d365d..2c67cdcbbb62a 100644 --- a/clients/client-route-53/src/commands/ListQueryLoggingConfigsCommand.ts +++ b/clients/client-route-53/src/commands/ListQueryLoggingConfigsCommand.ts @@ -80,6 +80,7 @@ export interface ListQueryLoggingConfigsCommandOutput extends ListQueryLoggingCo * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListQueryLoggingConfigsCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListResourceRecordSetsCommand.ts b/clients/client-route-53/src/commands/ListResourceRecordSetsCommand.ts index 397130b719b35..e09763013e43f 100644 --- a/clients/client-route-53/src/commands/ListResourceRecordSetsCommand.ts +++ b/clients/client-route-53/src/commands/ListResourceRecordSetsCommand.ts @@ -185,6 +185,7 @@ export interface ListResourceRecordSetsCommandOutput extends ListResourceRecordS * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListResourceRecordSetsCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListReusableDelegationSetsCommand.ts b/clients/client-route-53/src/commands/ListReusableDelegationSetsCommand.ts index e4e5c27f17f48..3924e1122a321 100644 --- a/clients/client-route-53/src/commands/ListReusableDelegationSetsCommand.ts +++ b/clients/client-route-53/src/commands/ListReusableDelegationSetsCommand.ts @@ -72,6 +72,7 @@ export interface ListReusableDelegationSetsCommandOutput extends ListReusableDel * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListReusableDelegationSetsCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListTagsForResourceCommand.ts b/clients/client-route-53/src/commands/ListTagsForResourceCommand.ts index 854e362fd7e03..5e3c01796c1cf 100644 --- a/clients/client-route-53/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-route-53/src/commands/ListTagsForResourceCommand.ts @@ -86,6 +86,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListTagsForResourcesCommand.ts b/clients/client-route-53/src/commands/ListTagsForResourcesCommand.ts index 7b918d159b5a5..4f3f7f7df5cab 100644 --- a/clients/client-route-53/src/commands/ListTagsForResourcesCommand.ts +++ b/clients/client-route-53/src/commands/ListTagsForResourcesCommand.ts @@ -90,6 +90,7 @@ export interface ListTagsForResourcesCommandOutput extends ListTagsForResourcesR * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListTagsForResourcesCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListTrafficPoliciesCommand.ts b/clients/client-route-53/src/commands/ListTrafficPoliciesCommand.ts index c8c36546d630e..a517ced841ae0 100644 --- a/clients/client-route-53/src/commands/ListTrafficPoliciesCommand.ts +++ b/clients/client-route-53/src/commands/ListTrafficPoliciesCommand.ts @@ -74,6 +74,7 @@ export interface ListTrafficPoliciesCommandOutput extends ListTrafficPoliciesRes * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListTrafficPoliciesCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByHostedZoneCommand.ts b/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByHostedZoneCommand.ts index 42aea62289c8b..f6e901e3e4691 100644 --- a/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByHostedZoneCommand.ts +++ b/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByHostedZoneCommand.ts @@ -104,6 +104,7 @@ export interface ListTrafficPolicyInstancesByHostedZoneCommandOutput * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListTrafficPolicyInstancesByHostedZoneCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByPolicyCommand.ts b/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByPolicyCommand.ts index 806aa8a0bd14b..95dc3caadc40c 100644 --- a/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByPolicyCommand.ts +++ b/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByPolicyCommand.ts @@ -105,6 +105,7 @@ export interface ListTrafficPolicyInstancesByPolicyCommandOutput * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListTrafficPolicyInstancesByPolicyCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListTrafficPolicyInstancesCommand.ts b/clients/client-route-53/src/commands/ListTrafficPolicyInstancesCommand.ts index cfbaab274006e..bb76fd5f7d5ba 100644 --- a/clients/client-route-53/src/commands/ListTrafficPolicyInstancesCommand.ts +++ b/clients/client-route-53/src/commands/ListTrafficPolicyInstancesCommand.ts @@ -91,6 +91,7 @@ export interface ListTrafficPolicyInstancesCommandOutput extends ListTrafficPoli * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListTrafficPolicyInstancesCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListTrafficPolicyVersionsCommand.ts b/clients/client-route-53/src/commands/ListTrafficPolicyVersionsCommand.ts index 4d22016f43b86..bdb5e60aa76f0 100644 --- a/clients/client-route-53/src/commands/ListTrafficPolicyVersionsCommand.ts +++ b/clients/client-route-53/src/commands/ListTrafficPolicyVersionsCommand.ts @@ -78,6 +78,7 @@ export interface ListTrafficPolicyVersionsCommandOutput extends ListTrafficPolic * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListTrafficPolicyVersionsCommand extends $Command diff --git a/clients/client-route-53/src/commands/ListVPCAssociationAuthorizationsCommand.ts b/clients/client-route-53/src/commands/ListVPCAssociationAuthorizationsCommand.ts index ca7e2f0d2bf8b..2a2850d667777 100644 --- a/clients/client-route-53/src/commands/ListVPCAssociationAuthorizationsCommand.ts +++ b/clients/client-route-53/src/commands/ListVPCAssociationAuthorizationsCommand.ts @@ -84,6 +84,7 @@ export interface ListVPCAssociationAuthorizationsCommandOutput * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class ListVPCAssociationAuthorizationsCommand extends $Command diff --git a/clients/client-route-53/src/commands/TestDNSAnswerCommand.ts b/clients/client-route-53/src/commands/TestDNSAnswerCommand.ts index fa7409dc5657b..644119eeffecd 100644 --- a/clients/client-route-53/src/commands/TestDNSAnswerCommand.ts +++ b/clients/client-route-53/src/commands/TestDNSAnswerCommand.ts @@ -83,6 +83,7 @@ export interface TestDNSAnswerCommandOutput extends TestDNSAnswerResponse, __Met * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class TestDNSAnswerCommand extends $Command diff --git a/clients/client-route-53/src/commands/UpdateHealthCheckCommand.ts b/clients/client-route-53/src/commands/UpdateHealthCheckCommand.ts index 4f142dfc81cd5..317ce1e84b8c7 100644 --- a/clients/client-route-53/src/commands/UpdateHealthCheckCommand.ts +++ b/clients/client-route-53/src/commands/UpdateHealthCheckCommand.ts @@ -143,6 +143,7 @@ export interface UpdateHealthCheckCommandOutput extends UpdateHealthCheckRespons * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class UpdateHealthCheckCommand extends $Command diff --git a/clients/client-route-53/src/commands/UpdateHostedZoneCommentCommand.ts b/clients/client-route-53/src/commands/UpdateHostedZoneCommentCommand.ts index 46d937d374423..f0517a5ae8c01 100644 --- a/clients/client-route-53/src/commands/UpdateHostedZoneCommentCommand.ts +++ b/clients/client-route-53/src/commands/UpdateHostedZoneCommentCommand.ts @@ -83,6 +83,7 @@ export interface UpdateHostedZoneCommentCommandOutput extends UpdateHostedZoneCo * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class UpdateHostedZoneCommentCommand extends $Command diff --git a/clients/client-route-53/src/commands/UpdateTrafficPolicyCommentCommand.ts b/clients/client-route-53/src/commands/UpdateTrafficPolicyCommentCommand.ts index 8e11c1f03f741..b957f35a49faa 100644 --- a/clients/client-route-53/src/commands/UpdateTrafficPolicyCommentCommand.ts +++ b/clients/client-route-53/src/commands/UpdateTrafficPolicyCommentCommand.ts @@ -75,6 +75,7 @@ export interface UpdateTrafficPolicyCommentCommandOutput extends UpdateTrafficPo * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class UpdateTrafficPolicyCommentCommand extends $Command diff --git a/clients/client-route-53/src/commands/UpdateTrafficPolicyInstanceCommand.ts b/clients/client-route-53/src/commands/UpdateTrafficPolicyInstanceCommand.ts index caf26c765cbd6..b43468167606a 100644 --- a/clients/client-route-53/src/commands/UpdateTrafficPolicyInstanceCommand.ts +++ b/clients/client-route-53/src/commands/UpdateTrafficPolicyInstanceCommand.ts @@ -121,6 +121,7 @@ export interface UpdateTrafficPolicyInstanceCommandOutput * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* + * * @public */ export class UpdateTrafficPolicyInstanceCommand extends $Command diff --git a/clients/client-route53-recovery-cluster/src/commands/GetRoutingControlStateCommand.ts b/clients/client-route53-recovery-cluster/src/commands/GetRoutingControlStateCommand.ts index a5b0113d1f02a..1073f28615d3d 100644 --- a/clients/client-route53-recovery-cluster/src/commands/GetRoutingControlStateCommand.ts +++ b/clients/client-route53-recovery-cluster/src/commands/GetRoutingControlStateCommand.ts @@ -109,6 +109,7 @@ export interface GetRoutingControlStateCommandOutput extends GetRoutingControlSt * @throws {@link Route53RecoveryClusterServiceException} *

Base exception class for all service exceptions from Route53RecoveryCluster service.

* + * * @public */ export class GetRoutingControlStateCommand extends $Command diff --git a/clients/client-route53-recovery-cluster/src/commands/ListRoutingControlsCommand.ts b/clients/client-route53-recovery-cluster/src/commands/ListRoutingControlsCommand.ts index f3d930a8a108a..073bfefd8e469 100644 --- a/clients/client-route53-recovery-cluster/src/commands/ListRoutingControlsCommand.ts +++ b/clients/client-route53-recovery-cluster/src/commands/ListRoutingControlsCommand.ts @@ -120,6 +120,7 @@ export interface ListRoutingControlsCommandOutput extends ListRoutingControlsRes * @throws {@link Route53RecoveryClusterServiceException} *

Base exception class for all service exceptions from Route53RecoveryCluster service.

* + * * @public */ export class ListRoutingControlsCommand extends $Command diff --git a/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStateCommand.ts b/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStateCommand.ts index 917951f979c8a..35dc7f383201f 100644 --- a/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStateCommand.ts +++ b/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStateCommand.ts @@ -115,6 +115,7 @@ export interface UpdateRoutingControlStateCommandOutput extends UpdateRoutingCon * @throws {@link Route53RecoveryClusterServiceException} *

Base exception class for all service exceptions from Route53RecoveryCluster service.

* + * * @public */ export class UpdateRoutingControlStateCommand extends $Command diff --git a/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStatesCommand.ts b/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStatesCommand.ts index f277c237b9d07..2d279940f6d37 100644 --- a/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStatesCommand.ts +++ b/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStatesCommand.ts @@ -122,6 +122,7 @@ export interface UpdateRoutingControlStatesCommandOutput extends UpdateRoutingCo * @throws {@link Route53RecoveryClusterServiceException} *

Base exception class for all service exceptions from Route53RecoveryCluster service.

* + * * @public */ export class UpdateRoutingControlStatesCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/CreateClusterCommand.ts b/clients/client-route53-recovery-control-config/src/commands/CreateClusterCommand.ts index d66008aa2d202..7427ad142f2e4 100644 --- a/clients/client-route53-recovery-control-config/src/commands/CreateClusterCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/CreateClusterCommand.ts @@ -97,6 +97,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class CreateClusterCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/CreateControlPanelCommand.ts b/clients/client-route53-recovery-control-config/src/commands/CreateControlPanelCommand.ts index 02bd24b17873c..83766e71fe198 100644 --- a/clients/client-route53-recovery-control-config/src/commands/CreateControlPanelCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/CreateControlPanelCommand.ts @@ -93,6 +93,7 @@ export interface CreateControlPanelCommandOutput extends CreateControlPanelRespo * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class CreateControlPanelCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/CreateRoutingControlCommand.ts b/clients/client-route53-recovery-control-config/src/commands/CreateRoutingControlCommand.ts index 21f365da59a0a..3953e51b97bb6 100644 --- a/clients/client-route53-recovery-control-config/src/commands/CreateRoutingControlCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/CreateRoutingControlCommand.ts @@ -89,6 +89,7 @@ export interface CreateRoutingControlCommandOutput extends CreateRoutingControlR * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class CreateRoutingControlCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/CreateSafetyRuleCommand.ts b/clients/client-route53-recovery-control-config/src/commands/CreateSafetyRuleCommand.ts index dee5f3443cb31..b8ed1d0e781ac 100644 --- a/clients/client-route53-recovery-control-config/src/commands/CreateSafetyRuleCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/CreateSafetyRuleCommand.ts @@ -131,6 +131,7 @@ export interface CreateSafetyRuleCommandOutput extends CreateSafetyRuleResponse, * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class CreateSafetyRuleCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/DeleteClusterCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DeleteClusterCommand.ts index 3a7657b3c4387..e7ce6fa6ff58b 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DeleteClusterCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DeleteClusterCommand.ts @@ -75,6 +75,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class DeleteClusterCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/DeleteControlPanelCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DeleteControlPanelCommand.ts index 6b9fdd833ac01..666e02330b417 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DeleteControlPanelCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DeleteControlPanelCommand.ts @@ -75,6 +75,7 @@ export interface DeleteControlPanelCommandOutput extends DeleteControlPanelRespo * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class DeleteControlPanelCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/DeleteRoutingControlCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DeleteRoutingControlCommand.ts index dec0a9d150d99..6886a791f8cd3 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DeleteRoutingControlCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DeleteRoutingControlCommand.ts @@ -75,6 +75,7 @@ export interface DeleteRoutingControlCommandOutput extends DeleteRoutingControlR * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class DeleteRoutingControlCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/DeleteSafetyRuleCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DeleteSafetyRuleCommand.ts index d85d313436d51..fc932653c4318 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DeleteSafetyRuleCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DeleteSafetyRuleCommand.ts @@ -66,6 +66,7 @@ export interface DeleteSafetyRuleCommandOutput extends DeleteSafetyRuleResponse, * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class DeleteSafetyRuleCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/DescribeClusterCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DescribeClusterCommand.ts index 8ab2e127cc865..360a264d3dc45 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DescribeClusterCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DescribeClusterCommand.ts @@ -89,6 +89,7 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _ * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class DescribeClusterCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/DescribeControlPanelCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DescribeControlPanelCommand.ts index fa6abf58872d9..62b90754a9c59 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DescribeControlPanelCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DescribeControlPanelCommand.ts @@ -85,6 +85,7 @@ export interface DescribeControlPanelCommandOutput extends DescribeControlPanelR * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class DescribeControlPanelCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/DescribeRoutingControlCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DescribeRoutingControlCommand.ts index 88c17c90653e9..5db4414637260 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DescribeRoutingControlCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DescribeRoutingControlCommand.ts @@ -83,6 +83,7 @@ export interface DescribeRoutingControlCommandOutput extends DescribeRoutingCont * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class DescribeRoutingControlCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/DescribeSafetyRuleCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DescribeSafetyRuleCommand.ts index 1fe79a7764f09..b62be38700a3e 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DescribeSafetyRuleCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DescribeSafetyRuleCommand.ts @@ -99,6 +99,7 @@ export interface DescribeSafetyRuleCommandOutput extends DescribeSafetyRuleRespo * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class DescribeSafetyRuleCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/GetResourcePolicyCommand.ts b/clients/client-route53-recovery-control-config/src/commands/GetResourcePolicyCommand.ts index e4692b36d71f9..2208402b8c62c 100644 --- a/clients/client-route53-recovery-control-config/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/GetResourcePolicyCommand.ts @@ -65,6 +65,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/ListAssociatedRoute53HealthChecksCommand.ts b/clients/client-route53-recovery-control-config/src/commands/ListAssociatedRoute53HealthChecksCommand.ts index 1378e5ea275d5..bb2d9e325f67c 100644 --- a/clients/client-route53-recovery-control-config/src/commands/ListAssociatedRoute53HealthChecksCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/ListAssociatedRoute53HealthChecksCommand.ts @@ -81,6 +81,7 @@ export interface ListAssociatedRoute53HealthChecksCommandOutput * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class ListAssociatedRoute53HealthChecksCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/ListClustersCommand.ts b/clients/client-route53-recovery-control-config/src/commands/ListClustersCommand.ts index 1559c8dc17545..0f9916eb1afaf 100644 --- a/clients/client-route53-recovery-control-config/src/commands/ListClustersCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/ListClustersCommand.ts @@ -90,6 +90,7 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class ListClustersCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/ListControlPanelsCommand.ts b/clients/client-route53-recovery-control-config/src/commands/ListControlPanelsCommand.ts index b47b8a069104e..756c9174c583a 100644 --- a/clients/client-route53-recovery-control-config/src/commands/ListControlPanelsCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/ListControlPanelsCommand.ts @@ -87,6 +87,7 @@ export interface ListControlPanelsCommandOutput extends ListControlPanelsRespons * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class ListControlPanelsCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/ListRoutingControlsCommand.ts b/clients/client-route53-recovery-control-config/src/commands/ListRoutingControlsCommand.ts index d3dbbe07a2115..47e47a0b073a6 100644 --- a/clients/client-route53-recovery-control-config/src/commands/ListRoutingControlsCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/ListRoutingControlsCommand.ts @@ -85,6 +85,7 @@ export interface ListRoutingControlsCommandOutput extends ListRoutingControlsRes * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class ListRoutingControlsCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/ListSafetyRulesCommand.ts b/clients/client-route53-recovery-control-config/src/commands/ListSafetyRulesCommand.ts index 4c32928fc6675..e9a52690ffd3b 100644 --- a/clients/client-route53-recovery-control-config/src/commands/ListSafetyRulesCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/ListSafetyRulesCommand.ts @@ -115,6 +115,7 @@ export interface ListSafetyRulesCommandOutput extends ListSafetyRulesResponse, _ * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class ListSafetyRulesCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/ListTagsForResourceCommand.ts b/clients/client-route53-recovery-control-config/src/commands/ListTagsForResourceCommand.ts index c913633941ae1..2ac076fcfe341 100644 --- a/clients/client-route53-recovery-control-config/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/ListTagsForResourceCommand.ts @@ -70,6 +70,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/TagResourceCommand.ts b/clients/client-route53-recovery-control-config/src/commands/TagResourceCommand.ts index e11e2b2af39b1..a4bf694945abb 100644 --- a/clients/client-route53-recovery-control-config/src/commands/TagResourceCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/TagResourceCommand.ts @@ -69,6 +69,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/UntagResourceCommand.ts b/clients/client-route53-recovery-control-config/src/commands/UntagResourceCommand.ts index b1f35e376dd28..7e47d4e8fbffd 100644 --- a/clients/client-route53-recovery-control-config/src/commands/UntagResourceCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/UntagResourceCommand.ts @@ -69,6 +69,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/UpdateClusterCommand.ts b/clients/client-route53-recovery-control-config/src/commands/UpdateClusterCommand.ts index 674c8d755e407..e2c6d8f11ba75 100644 --- a/clients/client-route53-recovery-control-config/src/commands/UpdateClusterCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/UpdateClusterCommand.ts @@ -90,6 +90,7 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class UpdateClusterCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/UpdateControlPanelCommand.ts b/clients/client-route53-recovery-control-config/src/commands/UpdateControlPanelCommand.ts index 75bbf7b1472b3..848113026a5c9 100644 --- a/clients/client-route53-recovery-control-config/src/commands/UpdateControlPanelCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/UpdateControlPanelCommand.ts @@ -86,6 +86,7 @@ export interface UpdateControlPanelCommandOutput extends UpdateControlPanelRespo * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class UpdateControlPanelCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/UpdateRoutingControlCommand.ts b/clients/client-route53-recovery-control-config/src/commands/UpdateRoutingControlCommand.ts index 9c9d7e70f96b8..7e71584c45422 100644 --- a/clients/client-route53-recovery-control-config/src/commands/UpdateRoutingControlCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/UpdateRoutingControlCommand.ts @@ -84,6 +84,7 @@ export interface UpdateRoutingControlCommandOutput extends UpdateRoutingControlR * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class UpdateRoutingControlCommand extends $Command diff --git a/clients/client-route53-recovery-control-config/src/commands/UpdateSafetyRuleCommand.ts b/clients/client-route53-recovery-control-config/src/commands/UpdateSafetyRuleCommand.ts index 18bec0a32f96a..47412eee91a60 100644 --- a/clients/client-route53-recovery-control-config/src/commands/UpdateSafetyRuleCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/UpdateSafetyRuleCommand.ts @@ -111,6 +111,7 @@ export interface UpdateSafetyRuleCommandOutput extends UpdateSafetyRuleResponse, * @throws {@link Route53RecoveryControlConfigServiceException} *

Base exception class for all service exceptions from Route53RecoveryControlConfig service.

* + * * @public */ export class UpdateSafetyRuleCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/CreateCellCommand.ts b/clients/client-route53-recovery-readiness/src/commands/CreateCellCommand.ts index 8b1f6f30d2bc4..57ba2256d62ec 100644 --- a/clients/client-route53-recovery-readiness/src/commands/CreateCellCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/CreateCellCommand.ts @@ -90,6 +90,7 @@ export interface CreateCellCommandOutput extends CreateCellResponse, __MetadataB * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class CreateCellCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/CreateCrossAccountAuthorizationCommand.ts b/clients/client-route53-recovery-readiness/src/commands/CreateCrossAccountAuthorizationCommand.ts index bfdd072cafe31..5a3b35faff96e 100644 --- a/clients/client-route53-recovery-readiness/src/commands/CreateCrossAccountAuthorizationCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/CreateCrossAccountAuthorizationCommand.ts @@ -79,6 +79,7 @@ export interface CreateCrossAccountAuthorizationCommandOutput * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class CreateCrossAccountAuthorizationCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/CreateReadinessCheckCommand.ts b/clients/client-route53-recovery-readiness/src/commands/CreateReadinessCheckCommand.ts index 6655c9c246639..0476cbd4c1116 100644 --- a/clients/client-route53-recovery-readiness/src/commands/CreateReadinessCheckCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/CreateReadinessCheckCommand.ts @@ -83,6 +83,7 @@ export interface CreateReadinessCheckCommandOutput extends CreateReadinessCheckR * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class CreateReadinessCheckCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/CreateRecoveryGroupCommand.ts b/clients/client-route53-recovery-readiness/src/commands/CreateRecoveryGroupCommand.ts index 9d69a9106785f..46d3480256447 100644 --- a/clients/client-route53-recovery-readiness/src/commands/CreateRecoveryGroupCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/CreateRecoveryGroupCommand.ts @@ -87,6 +87,7 @@ export interface CreateRecoveryGroupCommandOutput extends CreateRecoveryGroupRes * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class CreateRecoveryGroupCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/CreateResourceSetCommand.ts b/clients/client-route53-recovery-readiness/src/commands/CreateResourceSetCommand.ts index bbba4a22571c3..b6e1dab4f9402 100644 --- a/clients/client-route53-recovery-readiness/src/commands/CreateResourceSetCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/CreateResourceSetCommand.ts @@ -131,6 +131,7 @@ export interface CreateResourceSetCommandOutput extends CreateResourceSetRespons * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class CreateResourceSetCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/DeleteCellCommand.ts b/clients/client-route53-recovery-readiness/src/commands/DeleteCellCommand.ts index 00d80c9f0323d..ac3795cbdba84 100644 --- a/clients/client-route53-recovery-readiness/src/commands/DeleteCellCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/DeleteCellCommand.ts @@ -72,6 +72,7 @@ export interface DeleteCellCommandOutput extends __MetadataBearer {} * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class DeleteCellCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/DeleteCrossAccountAuthorizationCommand.ts b/clients/client-route53-recovery-readiness/src/commands/DeleteCrossAccountAuthorizationCommand.ts index 467a28cbe12cd..60eae820f9d04 100644 --- a/clients/client-route53-recovery-readiness/src/commands/DeleteCrossAccountAuthorizationCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/DeleteCrossAccountAuthorizationCommand.ts @@ -74,6 +74,7 @@ export interface DeleteCrossAccountAuthorizationCommandOutput * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class DeleteCrossAccountAuthorizationCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/DeleteReadinessCheckCommand.ts b/clients/client-route53-recovery-readiness/src/commands/DeleteReadinessCheckCommand.ts index 205a9a3f944b7..80ab65f73ec1f 100644 --- a/clients/client-route53-recovery-readiness/src/commands/DeleteReadinessCheckCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/DeleteReadinessCheckCommand.ts @@ -72,6 +72,7 @@ export interface DeleteReadinessCheckCommandOutput extends __MetadataBearer {} * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class DeleteReadinessCheckCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/DeleteRecoveryGroupCommand.ts b/clients/client-route53-recovery-readiness/src/commands/DeleteRecoveryGroupCommand.ts index ba1dcb0ac6b32..5ae27e52bd84e 100644 --- a/clients/client-route53-recovery-readiness/src/commands/DeleteRecoveryGroupCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/DeleteRecoveryGroupCommand.ts @@ -72,6 +72,7 @@ export interface DeleteRecoveryGroupCommandOutput extends __MetadataBearer {} * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class DeleteRecoveryGroupCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/DeleteResourceSetCommand.ts b/clients/client-route53-recovery-readiness/src/commands/DeleteResourceSetCommand.ts index 3f8fc3b72853b..edf02a313c1f4 100644 --- a/clients/client-route53-recovery-readiness/src/commands/DeleteResourceSetCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/DeleteResourceSetCommand.ts @@ -72,6 +72,7 @@ export interface DeleteResourceSetCommandOutput extends __MetadataBearer {} * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class DeleteResourceSetCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/GetArchitectureRecommendationsCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetArchitectureRecommendationsCommand.ts index f7bcb2d6de777..6915cd527d87a 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetArchitectureRecommendationsCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetArchitectureRecommendationsCommand.ts @@ -87,6 +87,7 @@ export interface GetArchitectureRecommendationsCommandOutput * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class GetArchitectureRecommendationsCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/GetCellCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetCellCommand.ts index 4e20580c503b1..d12d960de0233 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetCellCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetCellCommand.ts @@ -84,6 +84,7 @@ export interface GetCellCommandOutput extends GetCellResponse, __MetadataBearer * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class GetCellCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/GetCellReadinessSummaryCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetCellReadinessSummaryCommand.ts index c72920328260a..d5f5f615d60b4 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetCellReadinessSummaryCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetCellReadinessSummaryCommand.ts @@ -83,6 +83,7 @@ export interface GetCellReadinessSummaryCommandOutput extends GetCellReadinessSu * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class GetCellReadinessSummaryCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckCommand.ts index 7a2ff2568154b..e05ebb076e7d5 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckCommand.ts @@ -79,6 +79,7 @@ export interface GetReadinessCheckCommandOutput extends GetReadinessCheckRespons * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class GetReadinessCheckCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckResourceStatusCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckResourceStatusCommand.ts index 3ecb2ac8f189f..bf5b923e937c7 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckResourceStatusCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckResourceStatusCommand.ts @@ -95,6 +95,7 @@ export interface GetReadinessCheckResourceStatusCommandOutput * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class GetReadinessCheckResourceStatusCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckStatusCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckStatusCommand.ts index 51cc4d2eda2e9..888dcb0a00d5f 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckStatusCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckStatusCommand.ts @@ -90,6 +90,7 @@ export interface GetReadinessCheckStatusCommandOutput extends GetReadinessCheckS * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class GetReadinessCheckStatusCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupCommand.ts index cf417716956ca..c243a10b04745 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupCommand.ts @@ -81,6 +81,7 @@ export interface GetRecoveryGroupCommandOutput extends GetRecoveryGroupResponse, * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class GetRecoveryGroupCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupReadinessSummaryCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupReadinessSummaryCommand.ts index 9cc990c423001..1edcbfbecb8b2 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupReadinessSummaryCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupReadinessSummaryCommand.ts @@ -88,6 +88,7 @@ export interface GetRecoveryGroupReadinessSummaryCommandOutput * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class GetRecoveryGroupReadinessSummaryCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/GetResourceSetCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetResourceSetCommand.ts index 68d76373a851e..1c84a7b949c3b 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetResourceSetCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetResourceSetCommand.ts @@ -103,6 +103,7 @@ export interface GetResourceSetCommandOutput extends GetResourceSetResponse, __M * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class GetResourceSetCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/ListCellsCommand.ts b/clients/client-route53-recovery-readiness/src/commands/ListCellsCommand.ts index bf5f1f86c6923..40a5f24f2909f 100644 --- a/clients/client-route53-recovery-readiness/src/commands/ListCellsCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/ListCellsCommand.ts @@ -87,6 +87,7 @@ export interface ListCellsCommandOutput extends ListCellsResponse, __MetadataBea * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class ListCellsCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/ListCrossAccountAuthorizationsCommand.ts b/clients/client-route53-recovery-readiness/src/commands/ListCrossAccountAuthorizationsCommand.ts index 6e3f72df41e1a..4b1a7a127933a 100644 --- a/clients/client-route53-recovery-readiness/src/commands/ListCrossAccountAuthorizationsCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/ListCrossAccountAuthorizationsCommand.ts @@ -80,6 +80,7 @@ export interface ListCrossAccountAuthorizationsCommandOutput * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class ListCrossAccountAuthorizationsCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/ListReadinessChecksCommand.ts b/clients/client-route53-recovery-readiness/src/commands/ListReadinessChecksCommand.ts index 41e33e392b399..5bfb9905c7ffa 100644 --- a/clients/client-route53-recovery-readiness/src/commands/ListReadinessChecksCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/ListReadinessChecksCommand.ts @@ -82,6 +82,7 @@ export interface ListReadinessChecksCommandOutput extends ListReadinessChecksRes * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class ListReadinessChecksCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/ListRecoveryGroupsCommand.ts b/clients/client-route53-recovery-readiness/src/commands/ListRecoveryGroupsCommand.ts index 85f24d5b2eeb7..8a76b7fe94d57 100644 --- a/clients/client-route53-recovery-readiness/src/commands/ListRecoveryGroupsCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/ListRecoveryGroupsCommand.ts @@ -84,6 +84,7 @@ export interface ListRecoveryGroupsCommandOutput extends ListRecoveryGroupsRespo * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class ListRecoveryGroupsCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/ListResourceSetsCommand.ts b/clients/client-route53-recovery-readiness/src/commands/ListResourceSetsCommand.ts index 5db662e1d5b34..a1e2f3610b6c5 100644 --- a/clients/client-route53-recovery-readiness/src/commands/ListResourceSetsCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/ListResourceSetsCommand.ts @@ -106,6 +106,7 @@ export interface ListResourceSetsCommandOutput extends ListResourceSetsResponse, * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class ListResourceSetsCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/ListRulesCommand.ts b/clients/client-route53-recovery-readiness/src/commands/ListRulesCommand.ts index 4075a975aea0b..2a06e9a9227be 100644 --- a/clients/client-route53-recovery-readiness/src/commands/ListRulesCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/ListRulesCommand.ts @@ -80,6 +80,7 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class ListRulesCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/ListTagsForResourcesCommand.ts b/clients/client-route53-recovery-readiness/src/commands/ListTagsForResourcesCommand.ts index 02dd66b1ba67d..20d29a4410480 100644 --- a/clients/client-route53-recovery-readiness/src/commands/ListTagsForResourcesCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/ListTagsForResourcesCommand.ts @@ -70,6 +70,7 @@ export interface ListTagsForResourcesCommandOutput extends ListTagsForResourcesR * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class ListTagsForResourcesCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/TagResourceCommand.ts b/clients/client-route53-recovery-readiness/src/commands/TagResourceCommand.ts index 7937214fad25e..1812d0607a458 100644 --- a/clients/client-route53-recovery-readiness/src/commands/TagResourceCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/TagResourceCommand.ts @@ -69,6 +69,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/UntagResourceCommand.ts b/clients/client-route53-recovery-readiness/src/commands/UntagResourceCommand.ts index 0cbde83f277c7..0f333008fb01a 100644 --- a/clients/client-route53-recovery-readiness/src/commands/UntagResourceCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/UntagResourceCommand.ts @@ -69,6 +69,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/UpdateCellCommand.ts b/clients/client-route53-recovery-readiness/src/commands/UpdateCellCommand.ts index 5f95d872caf9b..31910e8a492c3 100644 --- a/clients/client-route53-recovery-readiness/src/commands/UpdateCellCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/UpdateCellCommand.ts @@ -87,6 +87,7 @@ export interface UpdateCellCommandOutput extends UpdateCellResponse, __MetadataB * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class UpdateCellCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/UpdateReadinessCheckCommand.ts b/clients/client-route53-recovery-readiness/src/commands/UpdateReadinessCheckCommand.ts index 14208701ea4a4..99909cf73a5ea 100644 --- a/clients/client-route53-recovery-readiness/src/commands/UpdateReadinessCheckCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/UpdateReadinessCheckCommand.ts @@ -80,6 +80,7 @@ export interface UpdateReadinessCheckCommandOutput extends UpdateReadinessCheckR * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class UpdateReadinessCheckCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/UpdateRecoveryGroupCommand.ts b/clients/client-route53-recovery-readiness/src/commands/UpdateRecoveryGroupCommand.ts index 9675cbfa7e646..017b6a2763528 100644 --- a/clients/client-route53-recovery-readiness/src/commands/UpdateRecoveryGroupCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/UpdateRecoveryGroupCommand.ts @@ -84,6 +84,7 @@ export interface UpdateRecoveryGroupCommandOutput extends UpdateRecoveryGroupRes * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class UpdateRecoveryGroupCommand extends $Command diff --git a/clients/client-route53-recovery-readiness/src/commands/UpdateResourceSetCommand.ts b/clients/client-route53-recovery-readiness/src/commands/UpdateResourceSetCommand.ts index fca9688e85ade..0bd74e05ab2b1 100644 --- a/clients/client-route53-recovery-readiness/src/commands/UpdateResourceSetCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/UpdateResourceSetCommand.ts @@ -128,6 +128,7 @@ export interface UpdateResourceSetCommandOutput extends UpdateResourceSetRespons * @throws {@link Route53RecoveryReadinessServiceException} *

Base exception class for all service exceptions from Route53RecoveryReadiness service.

* + * * @public */ export class UpdateResourceSetCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/AssociateProfileCommand.ts b/clients/client-route53profiles/src/commands/AssociateProfileCommand.ts index c221e432d7b59..511f990d9f768 100644 --- a/clients/client-route53profiles/src/commands/AssociateProfileCommand.ts +++ b/clients/client-route53profiles/src/commands/AssociateProfileCommand.ts @@ -116,6 +116,7 @@ export interface AssociateProfileCommandOutput extends AssociateProfileResponse, * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class AssociateProfileCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/AssociateResourceToProfileCommand.ts b/clients/client-route53profiles/src/commands/AssociateResourceToProfileCommand.ts index 876c14b68a8a9..ee3f3575b0276 100644 --- a/clients/client-route53profiles/src/commands/AssociateResourceToProfileCommand.ts +++ b/clients/client-route53profiles/src/commands/AssociateResourceToProfileCommand.ts @@ -112,6 +112,7 @@ export interface AssociateResourceToProfileCommandOutput extends AssociateResour * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class AssociateResourceToProfileCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/CreateProfileCommand.ts b/clients/client-route53profiles/src/commands/CreateProfileCommand.ts index 74f4ff52f57de..e15e5b542fafe 100644 --- a/clients/client-route53profiles/src/commands/CreateProfileCommand.ts +++ b/clients/client-route53profiles/src/commands/CreateProfileCommand.ts @@ -100,6 +100,7 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class CreateProfileCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/DeleteProfileCommand.ts b/clients/client-route53profiles/src/commands/DeleteProfileCommand.ts index 1f4bd8ffe1045..6f4bc715bc402 100644 --- a/clients/client-route53profiles/src/commands/DeleteProfileCommand.ts +++ b/clients/client-route53profiles/src/commands/DeleteProfileCommand.ts @@ -93,6 +93,7 @@ export interface DeleteProfileCommandOutput extends DeleteProfileResponse, __Met * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class DeleteProfileCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/DisassociateProfileCommand.ts b/clients/client-route53profiles/src/commands/DisassociateProfileCommand.ts index 8bf279823d363..0a7cb8d5867bd 100644 --- a/clients/client-route53profiles/src/commands/DisassociateProfileCommand.ts +++ b/clients/client-route53profiles/src/commands/DisassociateProfileCommand.ts @@ -98,6 +98,7 @@ export interface DisassociateProfileCommandOutput extends DisassociateProfileRes * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class DisassociateProfileCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/DisassociateResourceFromProfileCommand.ts b/clients/client-route53profiles/src/commands/DisassociateResourceFromProfileCommand.ts index b3910ace1d13f..49ad23cd1baac 100644 --- a/clients/client-route53profiles/src/commands/DisassociateResourceFromProfileCommand.ts +++ b/clients/client-route53profiles/src/commands/DisassociateResourceFromProfileCommand.ts @@ -115,6 +115,7 @@ export interface DisassociateResourceFromProfileCommandOutput * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class DisassociateResourceFromProfileCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/GetProfileAssociationCommand.ts b/clients/client-route53profiles/src/commands/GetProfileAssociationCommand.ts index 3bbdb7da5f82d..cdbd76636d033 100644 --- a/clients/client-route53profiles/src/commands/GetProfileAssociationCommand.ts +++ b/clients/client-route53profiles/src/commands/GetProfileAssociationCommand.ts @@ -87,6 +87,7 @@ export interface GetProfileAssociationCommandOutput extends GetProfileAssociatio * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class GetProfileAssociationCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/GetProfileCommand.ts b/clients/client-route53profiles/src/commands/GetProfileCommand.ts index d35669cde0629..a397445b8b4c9 100644 --- a/clients/client-route53profiles/src/commands/GetProfileCommand.ts +++ b/clients/client-route53profiles/src/commands/GetProfileCommand.ts @@ -88,6 +88,7 @@ export interface GetProfileCommandOutput extends GetProfileResponse, __MetadataB * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class GetProfileCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/GetProfileResourceAssociationCommand.ts b/clients/client-route53profiles/src/commands/GetProfileResourceAssociationCommand.ts index 269de7046c44b..88f65dd1b242f 100644 --- a/clients/client-route53profiles/src/commands/GetProfileResourceAssociationCommand.ts +++ b/clients/client-route53profiles/src/commands/GetProfileResourceAssociationCommand.ts @@ -99,6 +99,7 @@ export interface GetProfileResourceAssociationCommandOutput * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class GetProfileResourceAssociationCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/ListProfileAssociationsCommand.ts b/clients/client-route53profiles/src/commands/ListProfileAssociationsCommand.ts index 4579fd5148c2e..7960b9523a1a5 100644 --- a/clients/client-route53profiles/src/commands/ListProfileAssociationsCommand.ts +++ b/clients/client-route53profiles/src/commands/ListProfileAssociationsCommand.ts @@ -98,6 +98,7 @@ export interface ListProfileAssociationsCommandOutput extends ListProfileAssocia * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class ListProfileAssociationsCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/ListProfileResourceAssociationsCommand.ts b/clients/client-route53profiles/src/commands/ListProfileResourceAssociationsCommand.ts index 546c25cd4e1cf..7ca461181c19d 100644 --- a/clients/client-route53profiles/src/commands/ListProfileResourceAssociationsCommand.ts +++ b/clients/client-route53profiles/src/commands/ListProfileResourceAssociationsCommand.ts @@ -115,6 +115,7 @@ export interface ListProfileResourceAssociationsCommandOutput * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class ListProfileResourceAssociationsCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/ListProfilesCommand.ts b/clients/client-route53profiles/src/commands/ListProfilesCommand.ts index 23207d9d37e9c..e8fedab9da56a 100644 --- a/clients/client-route53profiles/src/commands/ListProfilesCommand.ts +++ b/clients/client-route53profiles/src/commands/ListProfilesCommand.ts @@ -91,6 +91,7 @@ export interface ListProfilesCommandOutput extends ListProfilesResponse, __Metad * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class ListProfilesCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/ListTagsForResourceCommand.ts b/clients/client-route53profiles/src/commands/ListTagsForResourceCommand.ts index fb3a22a2fd146..6ba94052cc9d7 100644 --- a/clients/client-route53profiles/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-route53profiles/src/commands/ListTagsForResourceCommand.ts @@ -84,6 +84,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/TagResourceCommand.ts b/clients/client-route53profiles/src/commands/TagResourceCommand.ts index 7b4ce1e4e3b04..648c1beecb846 100644 --- a/clients/client-route53profiles/src/commands/TagResourceCommand.ts +++ b/clients/client-route53profiles/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/UntagResourceCommand.ts b/clients/client-route53profiles/src/commands/UntagResourceCommand.ts index a7d7a03b1e2f4..a916bdcbcbf54 100644 --- a/clients/client-route53profiles/src/commands/UntagResourceCommand.ts +++ b/clients/client-route53profiles/src/commands/UntagResourceCommand.ts @@ -83,6 +83,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-route53profiles/src/commands/UpdateProfileResourceAssociationCommand.ts b/clients/client-route53profiles/src/commands/UpdateProfileResourceAssociationCommand.ts index a5b9dc7ba90da..ac595390fcff0 100644 --- a/clients/client-route53profiles/src/commands/UpdateProfileResourceAssociationCommand.ts +++ b/clients/client-route53profiles/src/commands/UpdateProfileResourceAssociationCommand.ts @@ -116,6 +116,7 @@ export interface UpdateProfileResourceAssociationCommandOutput * @throws {@link Route53ProfilesServiceException} *

Base exception class for all service exceptions from Route53Profiles service.

* + * * @public */ export class UpdateProfileResourceAssociationCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/AssociateFirewallRuleGroupCommand.ts b/clients/client-route53resolver/src/commands/AssociateFirewallRuleGroupCommand.ts index 39881c33545a4..25cb13f73a724 100644 --- a/clients/client-route53resolver/src/commands/AssociateFirewallRuleGroupCommand.ts +++ b/clients/client-route53resolver/src/commands/AssociateFirewallRuleGroupCommand.ts @@ -106,6 +106,7 @@ export interface AssociateFirewallRuleGroupCommandOutput extends AssociateFirewa * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class AssociateFirewallRuleGroupCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/AssociateResolverEndpointIpAddressCommand.ts b/clients/client-route53resolver/src/commands/AssociateResolverEndpointIpAddressCommand.ts index 62c7ff858e7a9..bbf06339e9c1d 100644 --- a/clients/client-route53resolver/src/commands/AssociateResolverEndpointIpAddressCommand.ts +++ b/clients/client-route53resolver/src/commands/AssociateResolverEndpointIpAddressCommand.ts @@ -115,6 +115,7 @@ export interface AssociateResolverEndpointIpAddressCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class AssociateResolverEndpointIpAddressCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/AssociateResolverQueryLogConfigCommand.ts b/clients/client-route53resolver/src/commands/AssociateResolverQueryLogConfigCommand.ts index d3336f2498c69..39b4f3f491772 100644 --- a/clients/client-route53resolver/src/commands/AssociateResolverQueryLogConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/AssociateResolverQueryLogConfigCommand.ts @@ -103,6 +103,7 @@ export interface AssociateResolverQueryLogConfigCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class AssociateResolverQueryLogConfigCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/AssociateResolverRuleCommand.ts b/clients/client-route53resolver/src/commands/AssociateResolverRuleCommand.ts index a1bbff05c2739..967934aaa19a5 100644 --- a/clients/client-route53resolver/src/commands/AssociateResolverRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/AssociateResolverRuleCommand.ts @@ -91,6 +91,7 @@ export interface AssociateResolverRuleCommandOutput extends AssociateResolverRul * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class AssociateResolverRuleCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/CreateFirewallDomainListCommand.ts b/clients/client-route53resolver/src/commands/CreateFirewallDomainListCommand.ts index 1b21ada92898b..ebbf0b20ee886 100644 --- a/clients/client-route53resolver/src/commands/CreateFirewallDomainListCommand.ts +++ b/clients/client-route53resolver/src/commands/CreateFirewallDomainListCommand.ts @@ -91,6 +91,7 @@ export interface CreateFirewallDomainListCommandOutput extends CreateFirewallDom * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class CreateFirewallDomainListCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/CreateFirewallRuleCommand.ts b/clients/client-route53resolver/src/commands/CreateFirewallRuleCommand.ts index 10887347de987..7caf02b21eb61 100644 --- a/clients/client-route53resolver/src/commands/CreateFirewallRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/CreateFirewallRuleCommand.ts @@ -107,6 +107,7 @@ export interface CreateFirewallRuleCommandOutput extends CreateFirewallRuleRespo * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class CreateFirewallRuleCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/CreateFirewallRuleGroupCommand.ts b/clients/client-route53resolver/src/commands/CreateFirewallRuleGroupCommand.ts index 8e5849fd2fd0d..b9522ae31ffd3 100644 --- a/clients/client-route53resolver/src/commands/CreateFirewallRuleGroupCommand.ts +++ b/clients/client-route53resolver/src/commands/CreateFirewallRuleGroupCommand.ts @@ -93,6 +93,7 @@ export interface CreateFirewallRuleGroupCommandOutput extends CreateFirewallRule * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class CreateFirewallRuleGroupCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/CreateOutpostResolverCommand.ts b/clients/client-route53resolver/src/commands/CreateOutpostResolverCommand.ts index 5a0ef9743f330..65b4b9c8163ba 100644 --- a/clients/client-route53resolver/src/commands/CreateOutpostResolverCommand.ts +++ b/clients/client-route53resolver/src/commands/CreateOutpostResolverCommand.ts @@ -98,6 +98,7 @@ export interface CreateOutpostResolverCommandOutput extends CreateOutpostResolve * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class CreateOutpostResolverCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/CreateResolverEndpointCommand.ts b/clients/client-route53resolver/src/commands/CreateResolverEndpointCommand.ts index ee23e1aecc687..76ee92f85b9cb 100644 --- a/clients/client-route53resolver/src/commands/CreateResolverEndpointCommand.ts +++ b/clients/client-route53resolver/src/commands/CreateResolverEndpointCommand.ts @@ -136,6 +136,7 @@ export interface CreateResolverEndpointCommandOutput extends CreateResolverEndpo * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class CreateResolverEndpointCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/CreateResolverQueryLogConfigCommand.ts b/clients/client-route53resolver/src/commands/CreateResolverQueryLogConfigCommand.ts index fec61bdaea935..61d6c5b54563c 100644 --- a/clients/client-route53resolver/src/commands/CreateResolverQueryLogConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/CreateResolverQueryLogConfigCommand.ts @@ -111,6 +111,7 @@ export interface CreateResolverQueryLogConfigCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class CreateResolverQueryLogConfigCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/CreateResolverRuleCommand.ts b/clients/client-route53resolver/src/commands/CreateResolverRuleCommand.ts index c8b7d097b1726..16d6899a1b403 100644 --- a/clients/client-route53resolver/src/commands/CreateResolverRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/CreateResolverRuleCommand.ts @@ -127,6 +127,7 @@ export interface CreateResolverRuleCommandOutput extends CreateResolverRuleRespo * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class CreateResolverRuleCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/DeleteFirewallDomainListCommand.ts b/clients/client-route53resolver/src/commands/DeleteFirewallDomainListCommand.ts index ee08a0d00dc8b..43a84f6aba407 100644 --- a/clients/client-route53resolver/src/commands/DeleteFirewallDomainListCommand.ts +++ b/clients/client-route53resolver/src/commands/DeleteFirewallDomainListCommand.ts @@ -85,6 +85,7 @@ export interface DeleteFirewallDomainListCommandOutput extends DeleteFirewallDom * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class DeleteFirewallDomainListCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/DeleteFirewallRuleCommand.ts b/clients/client-route53resolver/src/commands/DeleteFirewallRuleCommand.ts index e0c6ee9e08958..085cc722c69a8 100644 --- a/clients/client-route53resolver/src/commands/DeleteFirewallRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/DeleteFirewallRuleCommand.ts @@ -94,6 +94,7 @@ export interface DeleteFirewallRuleCommandOutput extends DeleteFirewallRuleRespo * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class DeleteFirewallRuleCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/DeleteFirewallRuleGroupCommand.ts b/clients/client-route53resolver/src/commands/DeleteFirewallRuleGroupCommand.ts index 2d7a2512f678d..a5fa6a9bd8a6e 100644 --- a/clients/client-route53resolver/src/commands/DeleteFirewallRuleGroupCommand.ts +++ b/clients/client-route53resolver/src/commands/DeleteFirewallRuleGroupCommand.ts @@ -90,6 +90,7 @@ export interface DeleteFirewallRuleGroupCommandOutput extends DeleteFirewallRule * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class DeleteFirewallRuleGroupCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/DeleteOutpostResolverCommand.ts b/clients/client-route53resolver/src/commands/DeleteOutpostResolverCommand.ts index 72e2931367229..0205dd6f31b69 100644 --- a/clients/client-route53resolver/src/commands/DeleteOutpostResolverCommand.ts +++ b/clients/client-route53resolver/src/commands/DeleteOutpostResolverCommand.ts @@ -90,6 +90,7 @@ export interface DeleteOutpostResolverCommandOutput extends DeleteOutpostResolve * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class DeleteOutpostResolverCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/DeleteResolverEndpointCommand.ts b/clients/client-route53resolver/src/commands/DeleteResolverEndpointCommand.ts index d0e099344f271..bcd85238e9faf 100644 --- a/clients/client-route53resolver/src/commands/DeleteResolverEndpointCommand.ts +++ b/clients/client-route53resolver/src/commands/DeleteResolverEndpointCommand.ts @@ -103,6 +103,7 @@ export interface DeleteResolverEndpointCommandOutput extends DeleteResolverEndpo * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class DeleteResolverEndpointCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/DeleteResolverQueryLogConfigCommand.ts b/clients/client-route53resolver/src/commands/DeleteResolverQueryLogConfigCommand.ts index 9061f375de342..39a484c593944 100644 --- a/clients/client-route53resolver/src/commands/DeleteResolverQueryLogConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/DeleteResolverQueryLogConfigCommand.ts @@ -99,6 +99,7 @@ export interface DeleteResolverQueryLogConfigCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class DeleteResolverQueryLogConfigCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/DeleteResolverRuleCommand.ts b/clients/client-route53resolver/src/commands/DeleteResolverRuleCommand.ts index 01400e69df109..ee3b85c07291c 100644 --- a/clients/client-route53resolver/src/commands/DeleteResolverRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/DeleteResolverRuleCommand.ts @@ -95,6 +95,7 @@ export interface DeleteResolverRuleCommandOutput extends DeleteResolverRuleRespo * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class DeleteResolverRuleCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/DisassociateFirewallRuleGroupCommand.ts b/clients/client-route53resolver/src/commands/DisassociateFirewallRuleGroupCommand.ts index 1e5e33de844a6..d67cfd5e502d3 100644 --- a/clients/client-route53resolver/src/commands/DisassociateFirewallRuleGroupCommand.ts +++ b/clients/client-route53resolver/src/commands/DisassociateFirewallRuleGroupCommand.ts @@ -97,6 +97,7 @@ export interface DisassociateFirewallRuleGroupCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class DisassociateFirewallRuleGroupCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/DisassociateResolverEndpointIpAddressCommand.ts b/clients/client-route53resolver/src/commands/DisassociateResolverEndpointIpAddressCommand.ts index bb2f2fac851ca..32964bf40cba9 100644 --- a/clients/client-route53resolver/src/commands/DisassociateResolverEndpointIpAddressCommand.ts +++ b/clients/client-route53resolver/src/commands/DisassociateResolverEndpointIpAddressCommand.ts @@ -113,6 +113,7 @@ export interface DisassociateResolverEndpointIpAddressCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class DisassociateResolverEndpointIpAddressCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/DisassociateResolverQueryLogConfigCommand.ts b/clients/client-route53resolver/src/commands/DisassociateResolverQueryLogConfigCommand.ts index 08dd732ff6b1e..8680dad96f730 100644 --- a/clients/client-route53resolver/src/commands/DisassociateResolverQueryLogConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/DisassociateResolverQueryLogConfigCommand.ts @@ -106,6 +106,7 @@ export interface DisassociateResolverQueryLogConfigCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class DisassociateResolverQueryLogConfigCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/DisassociateResolverRuleCommand.ts b/clients/client-route53resolver/src/commands/DisassociateResolverRuleCommand.ts index 3afff6ca40507..fb970b14a7f12 100644 --- a/clients/client-route53resolver/src/commands/DisassociateResolverRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/DisassociateResolverRuleCommand.ts @@ -79,6 +79,7 @@ export interface DisassociateResolverRuleCommandOutput extends DisassociateResol * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class DisassociateResolverRuleCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetFirewallConfigCommand.ts b/clients/client-route53resolver/src/commands/GetFirewallConfigCommand.ts index 1e201fb90a19a..649d2265b51e4 100644 --- a/clients/client-route53resolver/src/commands/GetFirewallConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/GetFirewallConfigCommand.ts @@ -79,6 +79,7 @@ export interface GetFirewallConfigCommandOutput extends GetFirewallConfigRespons * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetFirewallConfigCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetFirewallDomainListCommand.ts b/clients/client-route53resolver/src/commands/GetFirewallDomainListCommand.ts index 8a7eea588a103..63278a62ed1a6 100644 --- a/clients/client-route53resolver/src/commands/GetFirewallDomainListCommand.ts +++ b/clients/client-route53resolver/src/commands/GetFirewallDomainListCommand.ts @@ -80,6 +80,7 @@ export interface GetFirewallDomainListCommandOutput extends GetFirewallDomainLis * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetFirewallDomainListCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetFirewallRuleGroupAssociationCommand.ts b/clients/client-route53resolver/src/commands/GetFirewallRuleGroupAssociationCommand.ts index 01e658528713f..e866406fcf43a 100644 --- a/clients/client-route53resolver/src/commands/GetFirewallRuleGroupAssociationCommand.ts +++ b/clients/client-route53resolver/src/commands/GetFirewallRuleGroupAssociationCommand.ts @@ -88,6 +88,7 @@ export interface GetFirewallRuleGroupAssociationCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetFirewallRuleGroupAssociationCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetFirewallRuleGroupCommand.ts b/clients/client-route53resolver/src/commands/GetFirewallRuleGroupCommand.ts index b3e4fb06366ce..06bffb979d7d7 100644 --- a/clients/client-route53resolver/src/commands/GetFirewallRuleGroupCommand.ts +++ b/clients/client-route53resolver/src/commands/GetFirewallRuleGroupCommand.ts @@ -81,6 +81,7 @@ export interface GetFirewallRuleGroupCommandOutput extends GetFirewallRuleGroupR * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetFirewallRuleGroupCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetFirewallRuleGroupPolicyCommand.ts b/clients/client-route53resolver/src/commands/GetFirewallRuleGroupPolicyCommand.ts index f0a0ca9e037a9..9e4c27b744b1a 100644 --- a/clients/client-route53resolver/src/commands/GetFirewallRuleGroupPolicyCommand.ts +++ b/clients/client-route53resolver/src/commands/GetFirewallRuleGroupPolicyCommand.ts @@ -74,6 +74,7 @@ export interface GetFirewallRuleGroupPolicyCommandOutput extends GetFirewallRule * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetFirewallRuleGroupPolicyCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetOutpostResolverCommand.ts b/clients/client-route53resolver/src/commands/GetOutpostResolverCommand.ts index be39e9dc2b086..e14acc820eb06 100644 --- a/clients/client-route53resolver/src/commands/GetOutpostResolverCommand.ts +++ b/clients/client-route53resolver/src/commands/GetOutpostResolverCommand.ts @@ -86,6 +86,7 @@ export interface GetOutpostResolverCommandOutput extends GetOutpostResolverRespo * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetOutpostResolverCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetResolverConfigCommand.ts b/clients/client-route53resolver/src/commands/GetResolverConfigCommand.ts index f289698423ede..eb7a03565702f 100644 --- a/clients/client-route53resolver/src/commands/GetResolverConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverConfigCommand.ts @@ -82,6 +82,7 @@ export interface GetResolverConfigCommandOutput extends GetResolverConfigRespons * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetResolverConfigCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetResolverDnssecConfigCommand.ts b/clients/client-route53resolver/src/commands/GetResolverDnssecConfigCommand.ts index fb001153b62e9..624137669a183 100644 --- a/clients/client-route53resolver/src/commands/GetResolverDnssecConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverDnssecConfigCommand.ts @@ -80,6 +80,7 @@ export interface GetResolverDnssecConfigCommandOutput extends GetResolverDnssecC * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetResolverDnssecConfigCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetResolverEndpointCommand.ts b/clients/client-route53resolver/src/commands/GetResolverEndpointCommand.ts index 65ada57d9f970..443bff65aba75 100644 --- a/clients/client-route53resolver/src/commands/GetResolverEndpointCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverEndpointCommand.ts @@ -89,6 +89,7 @@ export interface GetResolverEndpointCommandOutput extends GetResolverEndpointRes * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetResolverEndpointCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigAssociationCommand.ts b/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigAssociationCommand.ts index 2090b98e1b46a..1ad29f645852a 100644 --- a/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigAssociationCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigAssociationCommand.ts @@ -92,6 +92,7 @@ export interface GetResolverQueryLogConfigAssociationCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetResolverQueryLogConfigAssociationCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigCommand.ts b/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigCommand.ts index 3b97011352bf2..d29c1e22da876 100644 --- a/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigCommand.ts @@ -87,6 +87,7 @@ export interface GetResolverQueryLogConfigCommandOutput extends GetResolverQuery * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetResolverQueryLogConfigCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigPolicyCommand.ts b/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigPolicyCommand.ts index 0ee58e9eeef28..20358e6ea7a01 100644 --- a/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigPolicyCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigPolicyCommand.ts @@ -78,6 +78,7 @@ export interface GetResolverQueryLogConfigPolicyCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetResolverQueryLogConfigPolicyCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetResolverRuleAssociationCommand.ts b/clients/client-route53resolver/src/commands/GetResolverRuleAssociationCommand.ts index 1ad518547ee3f..2f68cf76328cd 100644 --- a/clients/client-route53resolver/src/commands/GetResolverRuleAssociationCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverRuleAssociationCommand.ts @@ -75,6 +75,7 @@ export interface GetResolverRuleAssociationCommandOutput extends GetResolverRule * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetResolverRuleAssociationCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetResolverRuleCommand.ts b/clients/client-route53resolver/src/commands/GetResolverRuleCommand.ts index 0e3b0a69c2a9a..10876dcc01b13 100644 --- a/clients/client-route53resolver/src/commands/GetResolverRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverRuleCommand.ts @@ -91,6 +91,7 @@ export interface GetResolverRuleCommandOutput extends GetResolverRuleResponse, _ * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetResolverRuleCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/GetResolverRulePolicyCommand.ts b/clients/client-route53resolver/src/commands/GetResolverRulePolicyCommand.ts index ce20204d9fd5b..e69ec25086b95 100644 --- a/clients/client-route53resolver/src/commands/GetResolverRulePolicyCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverRulePolicyCommand.ts @@ -70,6 +70,7 @@ export interface GetResolverRulePolicyCommandOutput extends GetResolverRulePolic * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class GetResolverRulePolicyCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ImportFirewallDomainsCommand.ts b/clients/client-route53resolver/src/commands/ImportFirewallDomainsCommand.ts index 20d72ea74b3a2..c38b4aed2b501 100644 --- a/clients/client-route53resolver/src/commands/ImportFirewallDomainsCommand.ts +++ b/clients/client-route53resolver/src/commands/ImportFirewallDomainsCommand.ts @@ -101,6 +101,7 @@ export interface ImportFirewallDomainsCommandOutput extends ImportFirewallDomain * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ImportFirewallDomainsCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListFirewallConfigsCommand.ts b/clients/client-route53resolver/src/commands/ListFirewallConfigsCommand.ts index e13d7bd0b1c21..d8fe969ccf0b2 100644 --- a/clients/client-route53resolver/src/commands/ListFirewallConfigsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListFirewallConfigsCommand.ts @@ -80,6 +80,7 @@ export interface ListFirewallConfigsCommandOutput extends ListFirewallConfigsRes * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListFirewallConfigsCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListFirewallDomainListsCommand.ts b/clients/client-route53resolver/src/commands/ListFirewallDomainListsCommand.ts index 0f7364aa57a05..deceff2b364ae 100644 --- a/clients/client-route53resolver/src/commands/ListFirewallDomainListsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListFirewallDomainListsCommand.ts @@ -81,6 +81,7 @@ export interface ListFirewallDomainListsCommandOutput extends ListFirewallDomain * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListFirewallDomainListsCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListFirewallDomainsCommand.ts b/clients/client-route53resolver/src/commands/ListFirewallDomainsCommand.ts index 639afa2094889..e14125a26e32a 100644 --- a/clients/client-route53resolver/src/commands/ListFirewallDomainsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListFirewallDomainsCommand.ts @@ -79,6 +79,7 @@ export interface ListFirewallDomainsCommandOutput extends ListFirewallDomainsRes * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListFirewallDomainsCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListFirewallRuleGroupAssociationsCommand.ts b/clients/client-route53resolver/src/commands/ListFirewallRuleGroupAssociationsCommand.ts index be42e8f2cb4e6..9eb63908af7e4 100644 --- a/clients/client-route53resolver/src/commands/ListFirewallRuleGroupAssociationsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListFirewallRuleGroupAssociationsCommand.ts @@ -101,6 +101,7 @@ export interface ListFirewallRuleGroupAssociationsCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListFirewallRuleGroupAssociationsCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListFirewallRuleGroupsCommand.ts b/clients/client-route53resolver/src/commands/ListFirewallRuleGroupsCommand.ts index 29f91e4a49ad4..b70bfaba25890 100644 --- a/clients/client-route53resolver/src/commands/ListFirewallRuleGroupsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListFirewallRuleGroupsCommand.ts @@ -82,6 +82,7 @@ export interface ListFirewallRuleGroupsCommandOutput extends ListFirewallRuleGro * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListFirewallRuleGroupsCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListFirewallRulesCommand.ts b/clients/client-route53resolver/src/commands/ListFirewallRulesCommand.ts index e28c6906c4718..b08242373162c 100644 --- a/clients/client-route53resolver/src/commands/ListFirewallRulesCommand.ts +++ b/clients/client-route53resolver/src/commands/ListFirewallRulesCommand.ts @@ -99,6 +99,7 @@ export interface ListFirewallRulesCommandOutput extends ListFirewallRulesRespons * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListFirewallRulesCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListOutpostResolversCommand.ts b/clients/client-route53resolver/src/commands/ListOutpostResolversCommand.ts index 335eeb70635d0..65b937cb7f8b5 100644 --- a/clients/client-route53resolver/src/commands/ListOutpostResolversCommand.ts +++ b/clients/client-route53resolver/src/commands/ListOutpostResolversCommand.ts @@ -90,6 +90,7 @@ export interface ListOutpostResolversCommandOutput extends ListOutpostResolversR * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListOutpostResolversCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListResolverConfigsCommand.ts b/clients/client-route53resolver/src/commands/ListResolverConfigsCommand.ts index 5d7bc0575137f..efc0957f41b07 100644 --- a/clients/client-route53resolver/src/commands/ListResolverConfigsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverConfigsCommand.ts @@ -89,6 +89,7 @@ export interface ListResolverConfigsCommandOutput extends ListResolverConfigsRes * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListResolverConfigsCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListResolverDnssecConfigsCommand.ts b/clients/client-route53resolver/src/commands/ListResolverDnssecConfigsCommand.ts index 926d8151e0521..f849a25968ccd 100644 --- a/clients/client-route53resolver/src/commands/ListResolverDnssecConfigsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverDnssecConfigsCommand.ts @@ -92,6 +92,7 @@ export interface ListResolverDnssecConfigsCommandOutput extends ListResolverDnss * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListResolverDnssecConfigsCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListResolverEndpointIpAddressesCommand.ts b/clients/client-route53resolver/src/commands/ListResolverEndpointIpAddressesCommand.ts index 051c2ab53b73d..66977c9235308 100644 --- a/clients/client-route53resolver/src/commands/ListResolverEndpointIpAddressesCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverEndpointIpAddressesCommand.ts @@ -90,6 +90,7 @@ export interface ListResolverEndpointIpAddressesCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListResolverEndpointIpAddressesCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListResolverEndpointsCommand.ts b/clients/client-route53resolver/src/commands/ListResolverEndpointsCommand.ts index c30420aa72817..0ac7a9196ddaa 100644 --- a/clients/client-route53resolver/src/commands/ListResolverEndpointsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverEndpointsCommand.ts @@ -104,6 +104,7 @@ export interface ListResolverEndpointsCommandOutput extends ListResolverEndpoint * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListResolverEndpointsCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigAssociationsCommand.ts b/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigAssociationsCommand.ts index 8752ee3dd79d6..cc1b258e9f332 100644 --- a/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigAssociationsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigAssociationsCommand.ts @@ -108,6 +108,7 @@ export interface ListResolverQueryLogConfigAssociationsCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListResolverQueryLogConfigAssociationsCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigsCommand.ts b/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigsCommand.ts index 9caef760b4d9e..fcb546c2e0bfd 100644 --- a/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigsCommand.ts @@ -105,6 +105,7 @@ export interface ListResolverQueryLogConfigsCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListResolverQueryLogConfigsCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListResolverRuleAssociationsCommand.ts b/clients/client-route53resolver/src/commands/ListResolverRuleAssociationsCommand.ts index 893256f12b9ef..a7d3d05cfa5c9 100644 --- a/clients/client-route53resolver/src/commands/ListResolverRuleAssociationsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverRuleAssociationsCommand.ts @@ -95,6 +95,7 @@ export interface ListResolverRuleAssociationsCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListResolverRuleAssociationsCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListResolverRulesCommand.ts b/clients/client-route53resolver/src/commands/ListResolverRulesCommand.ts index 53ad58b14fda6..bbc14b2bed0d5 100644 --- a/clients/client-route53resolver/src/commands/ListResolverRulesCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverRulesCommand.ts @@ -106,6 +106,7 @@ export interface ListResolverRulesCommandOutput extends ListResolverRulesRespons * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListResolverRulesCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/ListTagsForResourceCommand.ts b/clients/client-route53resolver/src/commands/ListTagsForResourceCommand.ts index 1fa4b5da0cfcd..c144018734a9d 100644 --- a/clients/client-route53resolver/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-route53resolver/src/commands/ListTagsForResourceCommand.ts @@ -81,6 +81,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/PutFirewallRuleGroupPolicyCommand.ts b/clients/client-route53resolver/src/commands/PutFirewallRuleGroupPolicyCommand.ts index 3aed9f879131d..0c3ce0110882b 100644 --- a/clients/client-route53resolver/src/commands/PutFirewallRuleGroupPolicyCommand.ts +++ b/clients/client-route53resolver/src/commands/PutFirewallRuleGroupPolicyCommand.ts @@ -76,6 +76,7 @@ export interface PutFirewallRuleGroupPolicyCommandOutput extends PutFirewallRule * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class PutFirewallRuleGroupPolicyCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/PutResolverQueryLogConfigPolicyCommand.ts b/clients/client-route53resolver/src/commands/PutResolverQueryLogConfigPolicyCommand.ts index 7a6207c3c29db..e59a4101e4eed 100644 --- a/clients/client-route53resolver/src/commands/PutResolverQueryLogConfigPolicyCommand.ts +++ b/clients/client-route53resolver/src/commands/PutResolverQueryLogConfigPolicyCommand.ts @@ -82,6 +82,7 @@ export interface PutResolverQueryLogConfigPolicyCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class PutResolverQueryLogConfigPolicyCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/PutResolverRulePolicyCommand.ts b/clients/client-route53resolver/src/commands/PutResolverRulePolicyCommand.ts index fb19b00eddc99..c7152fc3ca044 100644 --- a/clients/client-route53resolver/src/commands/PutResolverRulePolicyCommand.ts +++ b/clients/client-route53resolver/src/commands/PutResolverRulePolicyCommand.ts @@ -74,6 +74,7 @@ export interface PutResolverRulePolicyCommandOutput extends PutResolverRulePolic * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class PutResolverRulePolicyCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/TagResourceCommand.ts b/clients/client-route53resolver/src/commands/TagResourceCommand.ts index 88111e6f06b14..c6c2eb764394d 100644 --- a/clients/client-route53resolver/src/commands/TagResourceCommand.ts +++ b/clients/client-route53resolver/src/commands/TagResourceCommand.ts @@ -80,6 +80,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/UntagResourceCommand.ts b/clients/client-route53resolver/src/commands/UntagResourceCommand.ts index 3abc934c47b7a..a645f203f95e7 100644 --- a/clients/client-route53resolver/src/commands/UntagResourceCommand.ts +++ b/clients/client-route53resolver/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/UpdateFirewallConfigCommand.ts b/clients/client-route53resolver/src/commands/UpdateFirewallConfigCommand.ts index ad9396e20af55..6b00e47480a8b 100644 --- a/clients/client-route53resolver/src/commands/UpdateFirewallConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateFirewallConfigCommand.ts @@ -80,6 +80,7 @@ export interface UpdateFirewallConfigCommandOutput extends UpdateFirewallConfigR * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class UpdateFirewallConfigCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/UpdateFirewallDomainsCommand.ts b/clients/client-route53resolver/src/commands/UpdateFirewallDomainsCommand.ts index ccb8356d7e6f2..6630a350fb3e0 100644 --- a/clients/client-route53resolver/src/commands/UpdateFirewallDomainsCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateFirewallDomainsCommand.ts @@ -88,6 +88,7 @@ export interface UpdateFirewallDomainsCommandOutput extends UpdateFirewallDomain * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class UpdateFirewallDomainsCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/UpdateFirewallRuleCommand.ts b/clients/client-route53resolver/src/commands/UpdateFirewallRuleCommand.ts index 6e249700c5cc6..455d32dc027b0 100644 --- a/clients/client-route53resolver/src/commands/UpdateFirewallRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateFirewallRuleCommand.ts @@ -109,6 +109,7 @@ export interface UpdateFirewallRuleCommandOutput extends UpdateFirewallRuleRespo * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class UpdateFirewallRuleCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/UpdateFirewallRuleGroupAssociationCommand.ts b/clients/client-route53resolver/src/commands/UpdateFirewallRuleGroupAssociationCommand.ts index 0ad2c81f67cc0..cdf79e6a2c722 100644 --- a/clients/client-route53resolver/src/commands/UpdateFirewallRuleGroupAssociationCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateFirewallRuleGroupAssociationCommand.ts @@ -103,6 +103,7 @@ export interface UpdateFirewallRuleGroupAssociationCommandOutput * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class UpdateFirewallRuleGroupAssociationCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/UpdateOutpostResolverCommand.ts b/clients/client-route53resolver/src/commands/UpdateOutpostResolverCommand.ts index 55c4b0b4fd551..cb3e19d240633 100644 --- a/clients/client-route53resolver/src/commands/UpdateOutpostResolverCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateOutpostResolverCommand.ts @@ -96,6 +96,7 @@ export interface UpdateOutpostResolverCommandOutput extends UpdateOutpostResolve * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class UpdateOutpostResolverCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/UpdateResolverConfigCommand.ts b/clients/client-route53resolver/src/commands/UpdateResolverConfigCommand.ts index 9b5305bc6d6cb..6bbf0845dc3e8 100644 --- a/clients/client-route53resolver/src/commands/UpdateResolverConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateResolverConfigCommand.ts @@ -92,6 +92,7 @@ export interface UpdateResolverConfigCommandOutput extends UpdateResolverConfigR * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class UpdateResolverConfigCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/UpdateResolverDnssecConfigCommand.ts b/clients/client-route53resolver/src/commands/UpdateResolverDnssecConfigCommand.ts index e2a5c24a7e377..efad905fa2e6a 100644 --- a/clients/client-route53resolver/src/commands/UpdateResolverDnssecConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateResolverDnssecConfigCommand.ts @@ -81,6 +81,7 @@ export interface UpdateResolverDnssecConfigCommandOutput extends UpdateResolverD * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class UpdateResolverDnssecConfigCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/UpdateResolverEndpointCommand.ts b/clients/client-route53resolver/src/commands/UpdateResolverEndpointCommand.ts index d34421b69c2e0..5f664d36620de 100644 --- a/clients/client-route53resolver/src/commands/UpdateResolverEndpointCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateResolverEndpointCommand.ts @@ -108,6 +108,7 @@ export interface UpdateResolverEndpointCommandOutput extends UpdateResolverEndpo * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class UpdateResolverEndpointCommand extends $Command diff --git a/clients/client-route53resolver/src/commands/UpdateResolverRuleCommand.ts b/clients/client-route53resolver/src/commands/UpdateResolverRuleCommand.ts index 55785f651ca36..4f1ffaafa2408 100644 --- a/clients/client-route53resolver/src/commands/UpdateResolverRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateResolverRuleCommand.ts @@ -118,6 +118,7 @@ export interface UpdateResolverRuleCommandOutput extends UpdateResolverRuleRespo * @throws {@link Route53ResolverServiceException} *

Base exception class for all service exceptions from Route53Resolver service.

* + * * @public */ export class UpdateResolverRuleCommand extends $Command diff --git a/clients/client-rum/src/commands/BatchCreateRumMetricDefinitionsCommand.ts b/clients/client-rum/src/commands/BatchCreateRumMetricDefinitionsCommand.ts index 1a3db38dc81bd..5a6eec796081b 100644 --- a/clients/client-rum/src/commands/BatchCreateRumMetricDefinitionsCommand.ts +++ b/clients/client-rum/src/commands/BatchCreateRumMetricDefinitionsCommand.ts @@ -163,6 +163,7 @@ export interface BatchCreateRumMetricDefinitionsCommandOutput * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class BatchCreateRumMetricDefinitionsCommand extends $Command diff --git a/clients/client-rum/src/commands/BatchDeleteRumMetricDefinitionsCommand.ts b/clients/client-rum/src/commands/BatchDeleteRumMetricDefinitionsCommand.ts index 2a2f4795593ec..2c7772d9ed222 100644 --- a/clients/client-rum/src/commands/BatchDeleteRumMetricDefinitionsCommand.ts +++ b/clients/client-rum/src/commands/BatchDeleteRumMetricDefinitionsCommand.ts @@ -97,6 +97,7 @@ export interface BatchDeleteRumMetricDefinitionsCommandOutput * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class BatchDeleteRumMetricDefinitionsCommand extends $Command diff --git a/clients/client-rum/src/commands/BatchGetRumMetricDefinitionsCommand.ts b/clients/client-rum/src/commands/BatchGetRumMetricDefinitionsCommand.ts index 8777f78fd6d12..9ba6def2941a7 100644 --- a/clients/client-rum/src/commands/BatchGetRumMetricDefinitionsCommand.ts +++ b/clients/client-rum/src/commands/BatchGetRumMetricDefinitionsCommand.ts @@ -89,6 +89,7 @@ export interface BatchGetRumMetricDefinitionsCommandOutput * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class BatchGetRumMetricDefinitionsCommand extends $Command diff --git a/clients/client-rum/src/commands/CreateAppMonitorCommand.ts b/clients/client-rum/src/commands/CreateAppMonitorCommand.ts index 72b4a1516cbaa..643e3b9306db6 100644 --- a/clients/client-rum/src/commands/CreateAppMonitorCommand.ts +++ b/clients/client-rum/src/commands/CreateAppMonitorCommand.ts @@ -120,6 +120,7 @@ export interface CreateAppMonitorCommandOutput extends CreateAppMonitorResponse, * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class CreateAppMonitorCommand extends $Command diff --git a/clients/client-rum/src/commands/DeleteAppMonitorCommand.ts b/clients/client-rum/src/commands/DeleteAppMonitorCommand.ts index c0f9b740e2869..30cf889321df6 100644 --- a/clients/client-rum/src/commands/DeleteAppMonitorCommand.ts +++ b/clients/client-rum/src/commands/DeleteAppMonitorCommand.ts @@ -71,6 +71,7 @@ export interface DeleteAppMonitorCommandOutput extends DeleteAppMonitorResponse, * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class DeleteAppMonitorCommand extends $Command diff --git a/clients/client-rum/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-rum/src/commands/DeleteResourcePolicyCommand.ts index 7ebe578cad444..5bb7e5ff13096 100644 --- a/clients/client-rum/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-rum/src/commands/DeleteResourcePolicyCommand.ts @@ -80,6 +80,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-rum/src/commands/DeleteRumMetricsDestinationCommand.ts b/clients/client-rum/src/commands/DeleteRumMetricsDestinationCommand.ts index c20ed04f1dc7e..efa019dd85d07 100644 --- a/clients/client-rum/src/commands/DeleteRumMetricsDestinationCommand.ts +++ b/clients/client-rum/src/commands/DeleteRumMetricsDestinationCommand.ts @@ -79,6 +79,7 @@ export interface DeleteRumMetricsDestinationCommandOutput * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class DeleteRumMetricsDestinationCommand extends $Command diff --git a/clients/client-rum/src/commands/GetAppMonitorCommand.ts b/clients/client-rum/src/commands/GetAppMonitorCommand.ts index aa0c1940f3e03..3435ed7c05e9c 100644 --- a/clients/client-rum/src/commands/GetAppMonitorCommand.ts +++ b/clients/client-rum/src/commands/GetAppMonitorCommand.ts @@ -117,6 +117,7 @@ export interface GetAppMonitorCommandOutput extends GetAppMonitorResponse, __Met * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class GetAppMonitorCommand extends $Command diff --git a/clients/client-rum/src/commands/GetAppMonitorDataCommand.ts b/clients/client-rum/src/commands/GetAppMonitorDataCommand.ts index 952dea62224f4..176cb21f754cd 100644 --- a/clients/client-rum/src/commands/GetAppMonitorDataCommand.ts +++ b/clients/client-rum/src/commands/GetAppMonitorDataCommand.ts @@ -88,6 +88,7 @@ export interface GetAppMonitorDataCommandOutput extends GetAppMonitorDataRespons * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class GetAppMonitorDataCommand extends $Command diff --git a/clients/client-rum/src/commands/GetResourcePolicyCommand.ts b/clients/client-rum/src/commands/GetResourcePolicyCommand.ts index d9a456ab28a38..52bfe45b6cbe4 100644 --- a/clients/client-rum/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-rum/src/commands/GetResourcePolicyCommand.ts @@ -77,6 +77,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-rum/src/commands/ListAppMonitorsCommand.ts b/clients/client-rum/src/commands/ListAppMonitorsCommand.ts index c764347f56d81..6564630e04f52 100644 --- a/clients/client-rum/src/commands/ListAppMonitorsCommand.ts +++ b/clients/client-rum/src/commands/ListAppMonitorsCommand.ts @@ -77,6 +77,7 @@ export interface ListAppMonitorsCommandOutput extends ListAppMonitorsResponse, _ * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class ListAppMonitorsCommand extends $Command diff --git a/clients/client-rum/src/commands/ListRumMetricsDestinationsCommand.ts b/clients/client-rum/src/commands/ListRumMetricsDestinationsCommand.ts index 538a18ece3b01..1d8e5efdbb25d 100644 --- a/clients/client-rum/src/commands/ListRumMetricsDestinationsCommand.ts +++ b/clients/client-rum/src/commands/ListRumMetricsDestinationsCommand.ts @@ -78,6 +78,7 @@ export interface ListRumMetricsDestinationsCommandOutput extends ListRumMetricsD * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class ListRumMetricsDestinationsCommand extends $Command diff --git a/clients/client-rum/src/commands/ListTagsForResourceCommand.ts b/clients/client-rum/src/commands/ListTagsForResourceCommand.ts index a2232bde0e360..e51f4984e4af8 100644 --- a/clients/client-rum/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-rum/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-rum/src/commands/PutResourcePolicyCommand.ts b/clients/client-rum/src/commands/PutResourcePolicyCommand.ts index c855d181896c2..13739a2b6551c 100644 --- a/clients/client-rum/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-rum/src/commands/PutResourcePolicyCommand.ts @@ -86,6 +86,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-rum/src/commands/PutRumEventsCommand.ts b/clients/client-rum/src/commands/PutRumEventsCommand.ts index 2ab6fe5739365..2b435306ac9ca 100644 --- a/clients/client-rum/src/commands/PutRumEventsCommand.ts +++ b/clients/client-rum/src/commands/PutRumEventsCommand.ts @@ -91,6 +91,7 @@ export interface PutRumEventsCommandOutput extends PutRumEventsResponse, __Metad * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class PutRumEventsCommand extends $Command diff --git a/clients/client-rum/src/commands/PutRumMetricsDestinationCommand.ts b/clients/client-rum/src/commands/PutRumMetricsDestinationCommand.ts index 1ecdc2b6c00e0..5da1a8b41196b 100644 --- a/clients/client-rum/src/commands/PutRumMetricsDestinationCommand.ts +++ b/clients/client-rum/src/commands/PutRumMetricsDestinationCommand.ts @@ -76,6 +76,7 @@ export interface PutRumMetricsDestinationCommandOutput extends PutRumMetricsDest * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class PutRumMetricsDestinationCommand extends $Command diff --git a/clients/client-rum/src/commands/TagResourceCommand.ts b/clients/client-rum/src/commands/TagResourceCommand.ts index 916b8d3ad4d4c..dbc9413b02e8a 100644 --- a/clients/client-rum/src/commands/TagResourceCommand.ts +++ b/clients/client-rum/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-rum/src/commands/UntagResourceCommand.ts b/clients/client-rum/src/commands/UntagResourceCommand.ts index e62a1c6a7e285..cbb018904203f 100644 --- a/clients/client-rum/src/commands/UntagResourceCommand.ts +++ b/clients/client-rum/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-rum/src/commands/UpdateAppMonitorCommand.ts b/clients/client-rum/src/commands/UpdateAppMonitorCommand.ts index 7edbc6880d4fa..f889cf5d44ebd 100644 --- a/clients/client-rum/src/commands/UpdateAppMonitorCommand.ts +++ b/clients/client-rum/src/commands/UpdateAppMonitorCommand.ts @@ -114,6 +114,7 @@ export interface UpdateAppMonitorCommandOutput extends UpdateAppMonitorResponse, * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class UpdateAppMonitorCommand extends $Command diff --git a/clients/client-rum/src/commands/UpdateRumMetricDefinitionCommand.ts b/clients/client-rum/src/commands/UpdateRumMetricDefinitionCommand.ts index 36aa88efa669b..d0cf4ddbd5664 100644 --- a/clients/client-rum/src/commands/UpdateRumMetricDefinitionCommand.ts +++ b/clients/client-rum/src/commands/UpdateRumMetricDefinitionCommand.ts @@ -88,6 +88,7 @@ export interface UpdateRumMetricDefinitionCommandOutput extends UpdateRumMetricD * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* + * * @public */ export class UpdateRumMetricDefinitionCommand extends $Command diff --git a/clients/client-s3-control/src/commands/AssociateAccessGrantsIdentityCenterCommand.ts b/clients/client-s3-control/src/commands/AssociateAccessGrantsIdentityCenterCommand.ts index 5033216ef5965..ccb794401dc3c 100644 --- a/clients/client-s3-control/src/commands/AssociateAccessGrantsIdentityCenterCommand.ts +++ b/clients/client-s3-control/src/commands/AssociateAccessGrantsIdentityCenterCommand.ts @@ -69,6 +69,7 @@ export interface AssociateAccessGrantsIdentityCenterCommandOutput extends __Meta * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class AssociateAccessGrantsIdentityCenterCommand extends $Command diff --git a/clients/client-s3-control/src/commands/CreateAccessGrantCommand.ts b/clients/client-s3-control/src/commands/CreateAccessGrantCommand.ts index 737a2474525fe..b2af265e8e1b0 100644 --- a/clients/client-s3-control/src/commands/CreateAccessGrantCommand.ts +++ b/clients/client-s3-control/src/commands/CreateAccessGrantCommand.ts @@ -102,6 +102,7 @@ export interface CreateAccessGrantCommandOutput extends CreateAccessGrantResult, * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class CreateAccessGrantCommand extends $Command diff --git a/clients/client-s3-control/src/commands/CreateAccessGrantsInstanceCommand.ts b/clients/client-s3-control/src/commands/CreateAccessGrantsInstanceCommand.ts index e01f016d0efa1..4503327279bd9 100644 --- a/clients/client-s3-control/src/commands/CreateAccessGrantsInstanceCommand.ts +++ b/clients/client-s3-control/src/commands/CreateAccessGrantsInstanceCommand.ts @@ -79,6 +79,7 @@ export interface CreateAccessGrantsInstanceCommandOutput extends CreateAccessGra * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class CreateAccessGrantsInstanceCommand extends $Command diff --git a/clients/client-s3-control/src/commands/CreateAccessGrantsLocationCommand.ts b/clients/client-s3-control/src/commands/CreateAccessGrantsLocationCommand.ts index e940b2d6852c8..c43225ab82e8b 100644 --- a/clients/client-s3-control/src/commands/CreateAccessGrantsLocationCommand.ts +++ b/clients/client-s3-control/src/commands/CreateAccessGrantsLocationCommand.ts @@ -95,6 +95,7 @@ export interface CreateAccessGrantsLocationCommandOutput extends CreateAccessGra * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class CreateAccessGrantsLocationCommand extends $Command diff --git a/clients/client-s3-control/src/commands/CreateAccessPointCommand.ts b/clients/client-s3-control/src/commands/CreateAccessPointCommand.ts index 2b7f3440d8791..507b13a3a731e 100644 --- a/clients/client-s3-control/src/commands/CreateAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/CreateAccessPointCommand.ts @@ -102,6 +102,7 @@ export interface CreateAccessPointCommandOutput extends CreateAccessPointResult, * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class CreateAccessPointCommand extends $Command diff --git a/clients/client-s3-control/src/commands/CreateAccessPointForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/CreateAccessPointForObjectLambdaCommand.ts index 19cf2016be3b1..624a7ebc6eada 100644 --- a/clients/client-s3-control/src/commands/CreateAccessPointForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/CreateAccessPointForObjectLambdaCommand.ts @@ -109,6 +109,7 @@ export interface CreateAccessPointForObjectLambdaCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class CreateAccessPointForObjectLambdaCommand extends $Command diff --git a/clients/client-s3-control/src/commands/CreateBucketCommand.ts b/clients/client-s3-control/src/commands/CreateBucketCommand.ts index 2fc864ac74ab8..fbfd0eb12f6c9 100644 --- a/clients/client-s3-control/src/commands/CreateBucketCommand.ts +++ b/clients/client-s3-control/src/commands/CreateBucketCommand.ts @@ -130,6 +130,7 @@ export interface CreateBucketCommandOutput extends CreateBucketResult, __Metadat * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class CreateBucketCommand extends $Command diff --git a/clients/client-s3-control/src/commands/CreateJobCommand.ts b/clients/client-s3-control/src/commands/CreateJobCommand.ts index a7bc15b4076c3..609294c72260e 100644 --- a/clients/client-s3-control/src/commands/CreateJobCommand.ts +++ b/clients/client-s3-control/src/commands/CreateJobCommand.ts @@ -285,6 +285,7 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class CreateJobCommand extends $Command diff --git a/clients/client-s3-control/src/commands/CreateMultiRegionAccessPointCommand.ts b/clients/client-s3-control/src/commands/CreateMultiRegionAccessPointCommand.ts index 14734cf0a9fb8..03594c9533b06 100644 --- a/clients/client-s3-control/src/commands/CreateMultiRegionAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/CreateMultiRegionAccessPointCommand.ts @@ -112,6 +112,7 @@ export interface CreateMultiRegionAccessPointCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class CreateMultiRegionAccessPointCommand extends $Command diff --git a/clients/client-s3-control/src/commands/CreateStorageLensGroupCommand.ts b/clients/client-s3-control/src/commands/CreateStorageLensGroupCommand.ts index ea68a34aba81a..8387a6e80e710 100644 --- a/clients/client-s3-control/src/commands/CreateStorageLensGroupCommand.ts +++ b/clients/client-s3-control/src/commands/CreateStorageLensGroupCommand.ts @@ -142,6 +142,7 @@ export interface CreateStorageLensGroupCommandOutput extends __MetadataBearer {} * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class CreateStorageLensGroupCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteAccessGrantCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessGrantCommand.ts index 1b4f489a46c87..8ea101fe8c74d 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessGrantCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessGrantCommand.ts @@ -62,6 +62,7 @@ export interface DeleteAccessGrantCommandOutput extends __MetadataBearer {} * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteAccessGrantCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceCommand.ts index f0b0d0e0498de..d802c2f5370a0 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceCommand.ts @@ -61,6 +61,7 @@ export interface DeleteAccessGrantsInstanceCommandOutput extends __MetadataBeare * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteAccessGrantsInstanceCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.ts index 116c2ab5e729b..916babfef2721 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.ts @@ -65,6 +65,7 @@ export interface DeleteAccessGrantsInstanceResourcePolicyCommandOutput extends _ * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteAccessGrantsInstanceResourcePolicyCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteAccessGrantsLocationCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessGrantsLocationCommand.ts index 2a56c155489f5..720df5684daa2 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessGrantsLocationCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessGrantsLocationCommand.ts @@ -62,6 +62,7 @@ export interface DeleteAccessGrantsLocationCommandOutput extends __MetadataBeare * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteAccessGrantsLocationCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteAccessPointCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessPointCommand.ts index 354aca2a20f6e..d25ddc2d243c5 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessPointCommand.ts @@ -77,6 +77,7 @@ export interface DeleteAccessPointCommandOutput extends __MetadataBearer {} * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteAccessPointCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteAccessPointForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessPointForObjectLambdaCommand.ts index e6f1c8e284530..2b8e4788377fc 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessPointForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessPointForObjectLambdaCommand.ts @@ -80,6 +80,7 @@ export interface DeleteAccessPointForObjectLambdaCommandOutput extends __Metadat * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteAccessPointForObjectLambdaCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessPointPolicyCommand.ts index 054261634b711..e8d1276876b49 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessPointPolicyCommand.ts @@ -73,6 +73,7 @@ export interface DeleteAccessPointPolicyCommandOutput extends __MetadataBearer { * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteAccessPointPolicyCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteAccessPointPolicyForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessPointPolicyForObjectLambdaCommand.ts index 8fcd7af0fc064..8dec5b48be297 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessPointPolicyForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessPointPolicyForObjectLambdaCommand.ts @@ -76,6 +76,7 @@ export interface DeleteAccessPointPolicyForObjectLambdaCommandOutput extends __M * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteAccessPointPolicyForObjectLambdaCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteBucketCommand.ts b/clients/client-s3-control/src/commands/DeleteBucketCommand.ts index c210f4e5bc56b..dd12281416e8e 100644 --- a/clients/client-s3-control/src/commands/DeleteBucketCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteBucketCommand.ts @@ -82,6 +82,7 @@ export interface DeleteBucketCommandOutput extends __MetadataBearer {} * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteBucketCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteBucketLifecycleConfigurationCommand.ts b/clients/client-s3-control/src/commands/DeleteBucketLifecycleConfigurationCommand.ts index 2c9957a73e35f..978dd7acead43 100644 --- a/clients/client-s3-control/src/commands/DeleteBucketLifecycleConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteBucketLifecycleConfigurationCommand.ts @@ -86,6 +86,7 @@ export interface DeleteBucketLifecycleConfigurationCommandOutput extends __Metad * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteBucketLifecycleConfigurationCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteBucketPolicyCommand.ts b/clients/client-s3-control/src/commands/DeleteBucketPolicyCommand.ts index 4d495d549f485..96b6c7cf6d705 100644 --- a/clients/client-s3-control/src/commands/DeleteBucketPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteBucketPolicyCommand.ts @@ -90,6 +90,7 @@ export interface DeleteBucketPolicyCommandOutput extends __MetadataBearer {} * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteBucketPolicyCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteBucketReplicationCommand.ts b/clients/client-s3-control/src/commands/DeleteBucketReplicationCommand.ts index 0226ec32cd34e..0d1ded9df8b44 100644 --- a/clients/client-s3-control/src/commands/DeleteBucketReplicationCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteBucketReplicationCommand.ts @@ -89,6 +89,7 @@ export interface DeleteBucketReplicationCommandOutput extends __MetadataBearer { * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteBucketReplicationCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteBucketTaggingCommand.ts b/clients/client-s3-control/src/commands/DeleteBucketTaggingCommand.ts index 7a781776ac9fa..95fc663612db4 100644 --- a/clients/client-s3-control/src/commands/DeleteBucketTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteBucketTaggingCommand.ts @@ -77,6 +77,7 @@ export interface DeleteBucketTaggingCommandOutput extends __MetadataBearer {} * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteBucketTaggingCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteJobTaggingCommand.ts b/clients/client-s3-control/src/commands/DeleteJobTaggingCommand.ts index 1afa0c256784c..9391d16813ef6 100644 --- a/clients/client-s3-control/src/commands/DeleteJobTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteJobTaggingCommand.ts @@ -92,6 +92,7 @@ export interface DeleteJobTaggingCommandOutput extends DeleteJobTaggingResult, _ * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteJobTaggingCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteMultiRegionAccessPointCommand.ts b/clients/client-s3-control/src/commands/DeleteMultiRegionAccessPointCommand.ts index 824f545a8a042..874ff0ebc4a9f 100644 --- a/clients/client-s3-control/src/commands/DeleteMultiRegionAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteMultiRegionAccessPointCommand.ts @@ -100,6 +100,7 @@ export interface DeleteMultiRegionAccessPointCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteMultiRegionAccessPointCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeletePublicAccessBlockCommand.ts b/clients/client-s3-control/src/commands/DeletePublicAccessBlockCommand.ts index 277520c239fa3..3e31547d574ca 100644 --- a/clients/client-s3-control/src/commands/DeletePublicAccessBlockCommand.ts +++ b/clients/client-s3-control/src/commands/DeletePublicAccessBlockCommand.ts @@ -72,6 +72,7 @@ export interface DeletePublicAccessBlockCommandOutput extends __MetadataBearer { * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeletePublicAccessBlockCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationCommand.ts b/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationCommand.ts index 02335ee3b3cd9..4eb56af1f9adb 100644 --- a/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationCommand.ts @@ -69,6 +69,7 @@ export interface DeleteStorageLensConfigurationCommandOutput extends __MetadataB * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteStorageLensConfigurationCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationTaggingCommand.ts b/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationTaggingCommand.ts index a4dcb874277c0..c8fa86ceeff5c 100644 --- a/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationTaggingCommand.ts @@ -76,6 +76,7 @@ export interface DeleteStorageLensConfigurationTaggingCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteStorageLensConfigurationTaggingCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DeleteStorageLensGroupCommand.ts b/clients/client-s3-control/src/commands/DeleteStorageLensGroupCommand.ts index 6c1643d84f9c4..661c6ed15692c 100644 --- a/clients/client-s3-control/src/commands/DeleteStorageLensGroupCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteStorageLensGroupCommand.ts @@ -61,6 +61,7 @@ export interface DeleteStorageLensGroupCommandOutput extends __MetadataBearer {} * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DeleteStorageLensGroupCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DescribeJobCommand.ts b/clients/client-s3-control/src/commands/DescribeJobCommand.ts index 5d5aabe3e2e9a..d86f047306864 100644 --- a/clients/client-s3-control/src/commands/DescribeJobCommand.ts +++ b/clients/client-s3-control/src/commands/DescribeJobCommand.ts @@ -301,6 +301,7 @@ export interface DescribeJobCommandOutput extends DescribeJobResult, __MetadataB * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DescribeJobCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DescribeMultiRegionAccessPointOperationCommand.ts b/clients/client-s3-control/src/commands/DescribeMultiRegionAccessPointOperationCommand.ts index f8f3bf55415cb..00a2dfdc1cb6f 100644 --- a/clients/client-s3-control/src/commands/DescribeMultiRegionAccessPointOperationCommand.ts +++ b/clients/client-s3-control/src/commands/DescribeMultiRegionAccessPointOperationCommand.ts @@ -139,6 +139,7 @@ export interface DescribeMultiRegionAccessPointOperationCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DescribeMultiRegionAccessPointOperationCommand extends $Command diff --git a/clients/client-s3-control/src/commands/DissociateAccessGrantsIdentityCenterCommand.ts b/clients/client-s3-control/src/commands/DissociateAccessGrantsIdentityCenterCommand.ts index 29533750f4c5f..e8801bb4ee183 100644 --- a/clients/client-s3-control/src/commands/DissociateAccessGrantsIdentityCenterCommand.ts +++ b/clients/client-s3-control/src/commands/DissociateAccessGrantsIdentityCenterCommand.ts @@ -68,6 +68,7 @@ export interface DissociateAccessGrantsIdentityCenterCommandOutput extends __Met * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class DissociateAccessGrantsIdentityCenterCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetAccessGrantCommand.ts b/clients/client-s3-control/src/commands/GetAccessGrantCommand.ts index b55147aa2a866..8dbd5f41b318f 100644 --- a/clients/client-s3-control/src/commands/GetAccessGrantCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessGrantCommand.ts @@ -77,6 +77,7 @@ export interface GetAccessGrantCommandOutput extends GetAccessGrantResult, __Met * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetAccessGrantCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetAccessGrantsInstanceCommand.ts b/clients/client-s3-control/src/commands/GetAccessGrantsInstanceCommand.ts index f6410480564a9..f2b87c29743ce 100644 --- a/clients/client-s3-control/src/commands/GetAccessGrantsInstanceCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessGrantsInstanceCommand.ts @@ -72,6 +72,7 @@ export interface GetAccessGrantsInstanceCommandOutput extends GetAccessGrantsIns * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetAccessGrantsInstanceCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetAccessGrantsInstanceForPrefixCommand.ts b/clients/client-s3-control/src/commands/GetAccessGrantsInstanceForPrefixCommand.ts index fd5861c775c71..ee54b986bc9ea 100644 --- a/clients/client-s3-control/src/commands/GetAccessGrantsInstanceForPrefixCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessGrantsInstanceForPrefixCommand.ts @@ -74,6 +74,7 @@ export interface GetAccessGrantsInstanceForPrefixCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetAccessGrantsInstanceForPrefixCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetAccessGrantsInstanceResourcePolicyCommand.ts b/clients/client-s3-control/src/commands/GetAccessGrantsInstanceResourcePolicyCommand.ts index c848926b09fb3..5a0dd57eb3ab7 100644 --- a/clients/client-s3-control/src/commands/GetAccessGrantsInstanceResourcePolicyCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessGrantsInstanceResourcePolicyCommand.ts @@ -74,6 +74,7 @@ export interface GetAccessGrantsInstanceResourcePolicyCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetAccessGrantsInstanceResourcePolicyCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetAccessGrantsLocationCommand.ts b/clients/client-s3-control/src/commands/GetAccessGrantsLocationCommand.ts index b3287056e7488..7a017b2fb79a2 100644 --- a/clients/client-s3-control/src/commands/GetAccessGrantsLocationCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessGrantsLocationCommand.ts @@ -68,6 +68,7 @@ export interface GetAccessGrantsLocationCommandOutput extends GetAccessGrantsLoc * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetAccessGrantsLocationCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetAccessPointCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointCommand.ts index 117b1e6b26f1e..1c6f32dbb75fc 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointCommand.ts @@ -98,6 +98,7 @@ export interface GetAccessPointCommandOutput extends GetAccessPointResult, __Met * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetAccessPointCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetAccessPointConfigurationForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointConfigurationForObjectLambdaCommand.ts index eb56a8c456374..9acb1c5d7320f 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointConfigurationForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointConfigurationForObjectLambdaCommand.ts @@ -97,6 +97,7 @@ export interface GetAccessPointConfigurationForObjectLambdaCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetAccessPointConfigurationForObjectLambdaCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetAccessPointForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointForObjectLambdaCommand.ts index d74390661563c..0231ded9cb4a5 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointForObjectLambdaCommand.ts @@ -94,6 +94,7 @@ export interface GetAccessPointForObjectLambdaCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetAccessPointForObjectLambdaCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointPolicyCommand.ts index a04384e937266..bd2340a156843 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointPolicyCommand.ts @@ -73,6 +73,7 @@ export interface GetAccessPointPolicyCommandOutput extends GetAccessPointPolicyR * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetAccessPointPolicyCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetAccessPointPolicyForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointPolicyForObjectLambdaCommand.ts index e01b247993737..cb79dbb99ad67 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointPolicyForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointPolicyForObjectLambdaCommand.ts @@ -82,6 +82,7 @@ export interface GetAccessPointPolicyForObjectLambdaCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetAccessPointPolicyForObjectLambdaCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusCommand.ts index 8f4991adb589d..172fe12ba0f0e 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusCommand.ts @@ -64,6 +64,7 @@ export interface GetAccessPointPolicyStatusCommandOutput extends GetAccessPointP * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetAccessPointPolicyStatusCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.ts index 0df5dcd63009c..5815e71d31963 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.ts @@ -71,6 +71,7 @@ export interface GetAccessPointPolicyStatusForObjectLambdaCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetAccessPointPolicyStatusForObjectLambdaCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetBucketCommand.ts b/clients/client-s3-control/src/commands/GetBucketCommand.ts index 3a7c30c51763d..5dd890374d62f 100644 --- a/clients/client-s3-control/src/commands/GetBucketCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketCommand.ts @@ -87,6 +87,7 @@ export interface GetBucketCommandOutput extends GetBucketResult, __MetadataBeare * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetBucketCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetBucketLifecycleConfigurationCommand.ts b/clients/client-s3-control/src/commands/GetBucketLifecycleConfigurationCommand.ts index f0df9804b44e1..12df9cb99dcb9 100644 --- a/clients/client-s3-control/src/commands/GetBucketLifecycleConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketLifecycleConfigurationCommand.ts @@ -159,6 +159,7 @@ export interface GetBucketLifecycleConfigurationCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetBucketLifecycleConfigurationCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetBucketPolicyCommand.ts b/clients/client-s3-control/src/commands/GetBucketPolicyCommand.ts index f43c4877c6b24..71f65c48e295f 100644 --- a/clients/client-s3-control/src/commands/GetBucketPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketPolicyCommand.ts @@ -97,6 +97,7 @@ export interface GetBucketPolicyCommandOutput extends GetBucketPolicyResult, __M * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetBucketPolicyCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetBucketReplicationCommand.ts b/clients/client-s3-control/src/commands/GetBucketReplicationCommand.ts index 9124bef859f7e..62685db2470b9 100644 --- a/clients/client-s3-control/src/commands/GetBucketReplicationCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketReplicationCommand.ts @@ -162,6 +162,7 @@ export interface GetBucketReplicationCommandOutput extends GetBucketReplicationR * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetBucketReplicationCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetBucketTaggingCommand.ts b/clients/client-s3-control/src/commands/GetBucketTaggingCommand.ts index 01b83876031a0..e981d4d6cef35 100644 --- a/clients/client-s3-control/src/commands/GetBucketTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketTaggingCommand.ts @@ -98,6 +98,7 @@ export interface GetBucketTaggingCommandOutput extends GetBucketTaggingResult, _ * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetBucketTaggingCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetBucketVersioningCommand.ts b/clients/client-s3-control/src/commands/GetBucketVersioningCommand.ts index 45952433e9953..f5a41993a7150 100644 --- a/clients/client-s3-control/src/commands/GetBucketVersioningCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketVersioningCommand.ts @@ -95,6 +95,7 @@ export interface GetBucketVersioningCommandOutput extends GetBucketVersioningRes * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetBucketVersioningCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetDataAccessCommand.ts b/clients/client-s3-control/src/commands/GetDataAccessCommand.ts index 304ef61d37a8d..c6d4439382750 100644 --- a/clients/client-s3-control/src/commands/GetDataAccessCommand.ts +++ b/clients/client-s3-control/src/commands/GetDataAccessCommand.ts @@ -82,6 +82,7 @@ export interface GetDataAccessCommandOutput extends GetDataAccessResult, __Metad * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetDataAccessCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetJobTaggingCommand.ts b/clients/client-s3-control/src/commands/GetJobTaggingCommand.ts index be7f93c4808ad..0b0b787ff9f99 100644 --- a/clients/client-s3-control/src/commands/GetJobTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/GetJobTaggingCommand.ts @@ -99,6 +99,7 @@ export interface GetJobTaggingCommandOutput extends GetJobTaggingResult, __Metad * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetJobTaggingCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointCommand.ts b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointCommand.ts index d6e1cdaa740f0..80d0a9a9ce610 100644 --- a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointCommand.ts @@ -105,6 +105,7 @@ export interface GetMultiRegionAccessPointCommandOutput extends GetMultiRegionAc * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetMultiRegionAccessPointCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyCommand.ts index 05607c9dfca62..4777843173470 100644 --- a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyCommand.ts @@ -90,6 +90,7 @@ export interface GetMultiRegionAccessPointPolicyCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetMultiRegionAccessPointPolicyCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyStatusCommand.ts b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyStatusCommand.ts index c668d92c8cc4e..5512b968018df 100644 --- a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyStatusCommand.ts +++ b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyStatusCommand.ts @@ -90,6 +90,7 @@ export interface GetMultiRegionAccessPointPolicyStatusCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetMultiRegionAccessPointPolicyStatusCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointRoutesCommand.ts b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointRoutesCommand.ts index 6a6bdffa12d5e..0eedbb8aa9dca 100644 --- a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointRoutesCommand.ts +++ b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointRoutesCommand.ts @@ -103,6 +103,7 @@ export interface GetMultiRegionAccessPointRoutesCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetMultiRegionAccessPointRoutesCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetPublicAccessBlockCommand.ts b/clients/client-s3-control/src/commands/GetPublicAccessBlockCommand.ts index 0abe50cf2198a..a899c88bc6e18 100644 --- a/clients/client-s3-control/src/commands/GetPublicAccessBlockCommand.ts +++ b/clients/client-s3-control/src/commands/GetPublicAccessBlockCommand.ts @@ -84,6 +84,7 @@ export interface GetPublicAccessBlockCommandOutput extends GetPublicAccessBlockO * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetPublicAccessBlockCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetStorageLensConfigurationCommand.ts b/clients/client-s3-control/src/commands/GetStorageLensConfigurationCommand.ts index 3a6992e0e502e..914a89c40f12e 100644 --- a/clients/client-s3-control/src/commands/GetStorageLensConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/GetStorageLensConfigurationCommand.ts @@ -156,6 +156,7 @@ export interface GetStorageLensConfigurationCommandOutput extends GetStorageLens * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetStorageLensConfigurationCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetStorageLensConfigurationTaggingCommand.ts b/clients/client-s3-control/src/commands/GetStorageLensConfigurationTaggingCommand.ts index ace1bf6ae03e2..4864944cfdf96 100644 --- a/clients/client-s3-control/src/commands/GetStorageLensConfigurationTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/GetStorageLensConfigurationTaggingCommand.ts @@ -82,6 +82,7 @@ export interface GetStorageLensConfigurationTaggingCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetStorageLensConfigurationTaggingCommand extends $Command diff --git a/clients/client-s3-control/src/commands/GetStorageLensGroupCommand.ts b/clients/client-s3-control/src/commands/GetStorageLensGroupCommand.ts index 31bb03311fb27..89f206b66c8ef 100644 --- a/clients/client-s3-control/src/commands/GetStorageLensGroupCommand.ts +++ b/clients/client-s3-control/src/commands/GetStorageLensGroupCommand.ts @@ -132,6 +132,7 @@ export interface GetStorageLensGroupCommandOutput extends GetStorageLensGroupRes * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class GetStorageLensGroupCommand extends $Command diff --git a/clients/client-s3-control/src/commands/ListAccessGrantsCommand.ts b/clients/client-s3-control/src/commands/ListAccessGrantsCommand.ts index bce8cb62ddc88..9443f4eb1d7b5 100644 --- a/clients/client-s3-control/src/commands/ListAccessGrantsCommand.ts +++ b/clients/client-s3-control/src/commands/ListAccessGrantsCommand.ts @@ -88,6 +88,7 @@ export interface ListAccessGrantsCommandOutput extends ListAccessGrantsResult, _ * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class ListAccessGrantsCommand extends $Command diff --git a/clients/client-s3-control/src/commands/ListAccessGrantsInstancesCommand.ts b/clients/client-s3-control/src/commands/ListAccessGrantsInstancesCommand.ts index c595419846225..8166a99c843f7 100644 --- a/clients/client-s3-control/src/commands/ListAccessGrantsInstancesCommand.ts +++ b/clients/client-s3-control/src/commands/ListAccessGrantsInstancesCommand.ts @@ -75,6 +75,7 @@ export interface ListAccessGrantsInstancesCommandOutput extends ListAccessGrants * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class ListAccessGrantsInstancesCommand extends $Command diff --git a/clients/client-s3-control/src/commands/ListAccessGrantsLocationsCommand.ts b/clients/client-s3-control/src/commands/ListAccessGrantsLocationsCommand.ts index aaf00b7b8ad4c..12adb0b1b3628 100644 --- a/clients/client-s3-control/src/commands/ListAccessGrantsLocationsCommand.ts +++ b/clients/client-s3-control/src/commands/ListAccessGrantsLocationsCommand.ts @@ -75,6 +75,7 @@ export interface ListAccessGrantsLocationsCommandOutput extends ListAccessGrants * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class ListAccessGrantsLocationsCommand extends $Command diff --git a/clients/client-s3-control/src/commands/ListAccessPointsCommand.ts b/clients/client-s3-control/src/commands/ListAccessPointsCommand.ts index ec2d735f47d99..9d69d60dea860 100644 --- a/clients/client-s3-control/src/commands/ListAccessPointsCommand.ts +++ b/clients/client-s3-control/src/commands/ListAccessPointsCommand.ts @@ -102,6 +102,7 @@ export interface ListAccessPointsCommandOutput extends ListAccessPointsResult, _ * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class ListAccessPointsCommand extends $Command diff --git a/clients/client-s3-control/src/commands/ListAccessPointsForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/ListAccessPointsForObjectLambdaCommand.ts index 0ad24652aba4c..d22d0384cb5cd 100644 --- a/clients/client-s3-control/src/commands/ListAccessPointsForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/ListAccessPointsForObjectLambdaCommand.ts @@ -97,6 +97,7 @@ export interface ListAccessPointsForObjectLambdaCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class ListAccessPointsForObjectLambdaCommand extends $Command diff --git a/clients/client-s3-control/src/commands/ListCallerAccessGrantsCommand.ts b/clients/client-s3-control/src/commands/ListCallerAccessGrantsCommand.ts index fc42d17d56001..0ee4119a777e3 100644 --- a/clients/client-s3-control/src/commands/ListCallerAccessGrantsCommand.ts +++ b/clients/client-s3-control/src/commands/ListCallerAccessGrantsCommand.ts @@ -74,6 +74,7 @@ export interface ListCallerAccessGrantsCommandOutput extends ListCallerAccessGra * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class ListCallerAccessGrantsCommand extends $Command diff --git a/clients/client-s3-control/src/commands/ListJobsCommand.ts b/clients/client-s3-control/src/commands/ListJobsCommand.ts index 24948ade6b9fc..06bd4df7b8da0 100644 --- a/clients/client-s3-control/src/commands/ListJobsCommand.ts +++ b/clients/client-s3-control/src/commands/ListJobsCommand.ts @@ -122,6 +122,7 @@ export interface ListJobsCommandOutput extends ListJobsResult, __MetadataBearer * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class ListJobsCommand extends $Command diff --git a/clients/client-s3-control/src/commands/ListMultiRegionAccessPointsCommand.ts b/clients/client-s3-control/src/commands/ListMultiRegionAccessPointsCommand.ts index 296d01a9f19e2..347a3a188f69c 100644 --- a/clients/client-s3-control/src/commands/ListMultiRegionAccessPointsCommand.ts +++ b/clients/client-s3-control/src/commands/ListMultiRegionAccessPointsCommand.ts @@ -111,6 +111,7 @@ export interface ListMultiRegionAccessPointsCommandOutput extends ListMultiRegio * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class ListMultiRegionAccessPointsCommand extends $Command diff --git a/clients/client-s3-control/src/commands/ListRegionalBucketsCommand.ts b/clients/client-s3-control/src/commands/ListRegionalBucketsCommand.ts index 507dbc1761c12..5cdd1dbcabc23 100644 --- a/clients/client-s3-control/src/commands/ListRegionalBucketsCommand.ts +++ b/clients/client-s3-control/src/commands/ListRegionalBucketsCommand.ts @@ -75,6 +75,7 @@ export interface ListRegionalBucketsCommandOutput extends ListRegionalBucketsRes * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class ListRegionalBucketsCommand extends $Command diff --git a/clients/client-s3-control/src/commands/ListStorageLensConfigurationsCommand.ts b/clients/client-s3-control/src/commands/ListStorageLensConfigurationsCommand.ts index 912a9db4ab2da..d79fcdffc72f6 100644 --- a/clients/client-s3-control/src/commands/ListStorageLensConfigurationsCommand.ts +++ b/clients/client-s3-control/src/commands/ListStorageLensConfigurationsCommand.ts @@ -83,6 +83,7 @@ export interface ListStorageLensConfigurationsCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class ListStorageLensConfigurationsCommand extends $Command diff --git a/clients/client-s3-control/src/commands/ListStorageLensGroupsCommand.ts b/clients/client-s3-control/src/commands/ListStorageLensGroupsCommand.ts index 28fefcd5dddb7..6872fdf4b4b22 100644 --- a/clients/client-s3-control/src/commands/ListStorageLensGroupsCommand.ts +++ b/clients/client-s3-control/src/commands/ListStorageLensGroupsCommand.ts @@ -71,6 +71,7 @@ export interface ListStorageLensGroupsCommandOutput extends ListStorageLensGroup * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class ListStorageLensGroupsCommand extends $Command diff --git a/clients/client-s3-control/src/commands/ListTagsForResourceCommand.ts b/clients/client-s3-control/src/commands/ListTagsForResourceCommand.ts index e31894562cae5..95d0a918d570c 100644 --- a/clients/client-s3-control/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-s3-control/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-s3-control/src/commands/PutAccessGrantsInstanceResourcePolicyCommand.ts b/clients/client-s3-control/src/commands/PutAccessGrantsInstanceResourcePolicyCommand.ts index 17dd9293b4c4e..c51afd5dcb10c 100644 --- a/clients/client-s3-control/src/commands/PutAccessGrantsInstanceResourcePolicyCommand.ts +++ b/clients/client-s3-control/src/commands/PutAccessGrantsInstanceResourcePolicyCommand.ts @@ -76,6 +76,7 @@ export interface PutAccessGrantsInstanceResourcePolicyCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class PutAccessGrantsInstanceResourcePolicyCommand extends $Command diff --git a/clients/client-s3-control/src/commands/PutAccessPointConfigurationForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/PutAccessPointConfigurationForObjectLambdaCommand.ts index 3de0e7bfe50ba..2445c3e291bc2 100644 --- a/clients/client-s3-control/src/commands/PutAccessPointConfigurationForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/PutAccessPointConfigurationForObjectLambdaCommand.ts @@ -91,6 +91,7 @@ export interface PutAccessPointConfigurationForObjectLambdaCommandOutput extends * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class PutAccessPointConfigurationForObjectLambdaCommand extends $Command diff --git a/clients/client-s3-control/src/commands/PutAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/PutAccessPointPolicyCommand.ts index 362d6a7523636..71830bb67af47 100644 --- a/clients/client-s3-control/src/commands/PutAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/PutAccessPointPolicyCommand.ts @@ -76,6 +76,7 @@ export interface PutAccessPointPolicyCommandOutput extends __MetadataBearer {} * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class PutAccessPointPolicyCommand extends $Command diff --git a/clients/client-s3-control/src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts index 6778ed4772a6e..acb5368500ade 100644 --- a/clients/client-s3-control/src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts @@ -76,6 +76,7 @@ export interface PutAccessPointPolicyForObjectLambdaCommandOutput extends __Meta * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class PutAccessPointPolicyForObjectLambdaCommand extends $Command diff --git a/clients/client-s3-control/src/commands/PutBucketLifecycleConfigurationCommand.ts b/clients/client-s3-control/src/commands/PutBucketLifecycleConfigurationCommand.ts index 91cbe2a8ac35f..b49a2489721e9 100644 --- a/clients/client-s3-control/src/commands/PutBucketLifecycleConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/PutBucketLifecycleConfigurationCommand.ts @@ -136,6 +136,7 @@ export interface PutBucketLifecycleConfigurationCommandOutput extends __Metadata * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class PutBucketLifecycleConfigurationCommand extends $Command diff --git a/clients/client-s3-control/src/commands/PutBucketPolicyCommand.ts b/clients/client-s3-control/src/commands/PutBucketPolicyCommand.ts index ef3aedea9108b..d3e3ff78b7e27 100644 --- a/clients/client-s3-control/src/commands/PutBucketPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/PutBucketPolicyCommand.ts @@ -93,6 +93,7 @@ export interface PutBucketPolicyCommandOutput extends __MetadataBearer {} * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class PutBucketPolicyCommand extends $Command diff --git a/clients/client-s3-control/src/commands/PutBucketReplicationCommand.ts b/clients/client-s3-control/src/commands/PutBucketReplicationCommand.ts index bed847f3e07b8..abc30ee6199d6 100644 --- a/clients/client-s3-control/src/commands/PutBucketReplicationCommand.ts +++ b/clients/client-s3-control/src/commands/PutBucketReplicationCommand.ts @@ -202,6 +202,7 @@ export interface PutBucketReplicationCommandOutput extends __MetadataBearer {} * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class PutBucketReplicationCommand extends $Command diff --git a/clients/client-s3-control/src/commands/PutBucketTaggingCommand.ts b/clients/client-s3-control/src/commands/PutBucketTaggingCommand.ts index 3d27bae2381f3..d59cab00d3d84 100644 --- a/clients/client-s3-control/src/commands/PutBucketTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/PutBucketTaggingCommand.ts @@ -146,6 +146,7 @@ export interface PutBucketTaggingCommandOutput extends __MetadataBearer {} * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class PutBucketTaggingCommand extends $Command diff --git a/clients/client-s3-control/src/commands/PutBucketVersioningCommand.ts b/clients/client-s3-control/src/commands/PutBucketVersioningCommand.ts index 35d7d5af30649..adcc5e73e191a 100644 --- a/clients/client-s3-control/src/commands/PutBucketVersioningCommand.ts +++ b/clients/client-s3-control/src/commands/PutBucketVersioningCommand.ts @@ -122,6 +122,7 @@ export interface PutBucketVersioningCommandOutput extends __MetadataBearer {} * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class PutBucketVersioningCommand extends $Command diff --git a/clients/client-s3-control/src/commands/PutJobTaggingCommand.ts b/clients/client-s3-control/src/commands/PutJobTaggingCommand.ts index 7064c0014f0c9..9826054c6d2ba 100644 --- a/clients/client-s3-control/src/commands/PutJobTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/PutJobTaggingCommand.ts @@ -141,6 +141,7 @@ export interface PutJobTaggingCommandOutput extends PutJobTaggingResult, __Metad * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class PutJobTaggingCommand extends $Command diff --git a/clients/client-s3-control/src/commands/PutMultiRegionAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/PutMultiRegionAccessPointPolicyCommand.ts index df441c6bb3708..40ba70f45d639 100644 --- a/clients/client-s3-control/src/commands/PutMultiRegionAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/PutMultiRegionAccessPointPolicyCommand.ts @@ -89,6 +89,7 @@ export interface PutMultiRegionAccessPointPolicyCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class PutMultiRegionAccessPointPolicyCommand extends $Command diff --git a/clients/client-s3-control/src/commands/PutPublicAccessBlockCommand.ts b/clients/client-s3-control/src/commands/PutPublicAccessBlockCommand.ts index f97bbc424589b..4d4e1a9a5a798 100644 --- a/clients/client-s3-control/src/commands/PutPublicAccessBlockCommand.ts +++ b/clients/client-s3-control/src/commands/PutPublicAccessBlockCommand.ts @@ -79,6 +79,7 @@ export interface PutPublicAccessBlockCommandOutput extends __MetadataBearer {} * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class PutPublicAccessBlockCommand extends $Command diff --git a/clients/client-s3-control/src/commands/PutStorageLensConfigurationCommand.ts b/clients/client-s3-control/src/commands/PutStorageLensConfigurationCommand.ts index 6022700805dd1..ef04a095de403 100644 --- a/clients/client-s3-control/src/commands/PutStorageLensConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/PutStorageLensConfigurationCommand.ts @@ -160,6 +160,7 @@ export interface PutStorageLensConfigurationCommandOutput extends __MetadataBear * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class PutStorageLensConfigurationCommand extends $Command diff --git a/clients/client-s3-control/src/commands/PutStorageLensConfigurationTaggingCommand.ts b/clients/client-s3-control/src/commands/PutStorageLensConfigurationTaggingCommand.ts index 409916d8f939f..f1d90bb31f5e8 100644 --- a/clients/client-s3-control/src/commands/PutStorageLensConfigurationTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/PutStorageLensConfigurationTaggingCommand.ts @@ -80,6 +80,7 @@ export interface PutStorageLensConfigurationTaggingCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class PutStorageLensConfigurationTaggingCommand extends $Command diff --git a/clients/client-s3-control/src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts b/clients/client-s3-control/src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts index b8f8fccdaa5ed..02965be1b1e4a 100644 --- a/clients/client-s3-control/src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts +++ b/clients/client-s3-control/src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts @@ -116,6 +116,7 @@ export interface SubmitMultiRegionAccessPointRoutesCommandOutput * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class SubmitMultiRegionAccessPointRoutesCommand extends $Command diff --git a/clients/client-s3-control/src/commands/TagResourceCommand.ts b/clients/client-s3-control/src/commands/TagResourceCommand.ts index 892bdacfed950..75418c608e751 100644 --- a/clients/client-s3-control/src/commands/TagResourceCommand.ts +++ b/clients/client-s3-control/src/commands/TagResourceCommand.ts @@ -73,6 +73,7 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-s3-control/src/commands/UntagResourceCommand.ts b/clients/client-s3-control/src/commands/UntagResourceCommand.ts index f1de33f41aec2..4f67a8147f1bb 100644 --- a/clients/client-s3-control/src/commands/UntagResourceCommand.ts +++ b/clients/client-s3-control/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResult, __Metad * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-s3-control/src/commands/UpdateAccessGrantsLocationCommand.ts b/clients/client-s3-control/src/commands/UpdateAccessGrantsLocationCommand.ts index 6a9119b215564..f81162fc46922 100644 --- a/clients/client-s3-control/src/commands/UpdateAccessGrantsLocationCommand.ts +++ b/clients/client-s3-control/src/commands/UpdateAccessGrantsLocationCommand.ts @@ -74,6 +74,7 @@ export interface UpdateAccessGrantsLocationCommandOutput extends UpdateAccessGra * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class UpdateAccessGrantsLocationCommand extends $Command diff --git a/clients/client-s3-control/src/commands/UpdateJobPriorityCommand.ts b/clients/client-s3-control/src/commands/UpdateJobPriorityCommand.ts index 26bea84ad1856..fa0011d22ab24 100644 --- a/clients/client-s3-control/src/commands/UpdateJobPriorityCommand.ts +++ b/clients/client-s3-control/src/commands/UpdateJobPriorityCommand.ts @@ -102,6 +102,7 @@ export interface UpdateJobPriorityCommandOutput extends UpdateJobPriorityResult, * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class UpdateJobPriorityCommand extends $Command diff --git a/clients/client-s3-control/src/commands/UpdateJobStatusCommand.ts b/clients/client-s3-control/src/commands/UpdateJobStatusCommand.ts index 327d08b8009c1..d90b40f0908ed 100644 --- a/clients/client-s3-control/src/commands/UpdateJobStatusCommand.ts +++ b/clients/client-s3-control/src/commands/UpdateJobStatusCommand.ts @@ -108,6 +108,7 @@ export interface UpdateJobStatusCommandOutput extends UpdateJobStatusResult, __M * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class UpdateJobStatusCommand extends $Command diff --git a/clients/client-s3-control/src/commands/UpdateStorageLensGroupCommand.ts b/clients/client-s3-control/src/commands/UpdateStorageLensGroupCommand.ts index d88e3e732e288..382b590ecbf27 100644 --- a/clients/client-s3-control/src/commands/UpdateStorageLensGroupCommand.ts +++ b/clients/client-s3-control/src/commands/UpdateStorageLensGroupCommand.ts @@ -131,6 +131,7 @@ export interface UpdateStorageLensGroupCommandOutput extends __MetadataBearer {} * @throws {@link S3ControlServiceException} *

Base exception class for all service exceptions from S3Control service.

* + * * @public */ export class UpdateStorageLensGroupCommand extends $Command diff --git a/clients/client-s3/src/commands/AbortMultipartUploadCommand.ts b/clients/client-s3/src/commands/AbortMultipartUploadCommand.ts index 68b70b95f6fd6..f600a2a4aa452 100644 --- a/clients/client-s3/src/commands/AbortMultipartUploadCommand.ts +++ b/clients/client-s3/src/commands/AbortMultipartUploadCommand.ts @@ -151,20 +151,23 @@ export interface AbortMultipartUploadCommandOutput extends AbortMultipartUploadO * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To abort a multipart upload * ```javascript * // The following example aborts a multipart upload. * const input = { - * "Bucket": "examplebucket", - * "Key": "bigobject", - * "UploadId": "xadcOB_7YPBOJuoFiQ9cz4P3Pe6FIZwO4f7wN93uHsNBEw97pl5eNwzExg0LAT2dUN91cOmrEQHDsP3WA60CEg--" + * Bucket: "examplebucket", + * Key: "bigobject", + * UploadId: "xadcOB_7YPBOJuoFiQ9cz4P3Pe6FIZwO4f7wN93uHsNBEw97pl5eNwzExg0LAT2dUN91cOmrEQHDsP3WA60CEg--" * }; * const command = new AbortMultipartUploadCommand(input); - * await client.send(command); - * // example id: to-abort-a-multipart-upload-1481853354987 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class AbortMultipartUploadCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/CompleteMultipartUploadCommand.ts b/clients/client-s3/src/commands/CompleteMultipartUploadCommand.ts index b76fd378159d9..263c38ce85808 100644 --- a/clients/client-s3/src/commands/CompleteMultipartUploadCommand.ts +++ b/clients/client-s3/src/commands/CompleteMultipartUploadCommand.ts @@ -275,40 +275,40 @@ export interface CompleteMultipartUploadCommandOutput extends CompleteMultipartU * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To complete multipart upload * ```javascript * // The following example completes a multipart upload. * const input = { - * "Bucket": "examplebucket", - * "Key": "bigobject", - * "MultipartUpload": { - * "Parts": [ + * Bucket: "examplebucket", + * Key: "bigobject", + * MultipartUpload: { + * Parts: [ * { - * "ETag": "\"d8c2eafd90c266e19ab9dcacc479f8af\"", - * "PartNumber": "1" + * ETag: `"d8c2eafd90c266e19ab9dcacc479f8af"`, + * PartNumber: 1 * }, * { - * "ETag": "\"d8c2eafd90c266e19ab9dcacc479f8af\"", - * "PartNumber": "2" + * ETag: `"d8c2eafd90c266e19ab9dcacc479f8af"`, + * PartNumber: 2 * } * ] * }, - * "UploadId": "7YPBOJuoFiQ9cz4P3Pe6FIZwO4f7wN93uHsNBEw97pl5eNwzExg0LAT2dUN91cOmrEQHDsP3WA60CEg--" + * UploadId: "7YPBOJuoFiQ9cz4P3Pe6FIZwO4f7wN93uHsNBEw97pl5eNwzExg0LAT2dUN91cOmrEQHDsP3WA60CEg--" * }; * const command = new CompleteMultipartUploadCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Bucket": "acexamplebucket", - * "ETag": "\"4d9031c7644d8081c2829f4ea23c55f7-2\"", - * "Key": "bigobject", - * "Location": "https://examplebucket.s3..amazonaws.com/bigobject" + * Bucket: "acexamplebucket", + * ETag: `"4d9031c7644d8081c2829f4ea23c55f7-2"`, + * Key: "bigobject", + * Location: "https://examplebucket.s3..amazonaws.com/bigobject" * } * *\/ - * // example id: to-complete-multipart-upload-1481851590483 * ``` * + * @public */ export class CompleteMultipartUploadCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/CopyObjectCommand.ts b/clients/client-s3/src/commands/CopyObjectCommand.ts index e9793d1a43d9e..4d413304908c0 100644 --- a/clients/client-s3/src/commands/CopyObjectCommand.ts +++ b/clients/client-s3/src/commands/CopyObjectCommand.ts @@ -330,28 +330,28 @@ export interface CopyObjectCommandOutput extends CopyObjectOutput, __MetadataBea * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To copy an object * ```javascript * // The following example copies an object from one bucket to another. * const input = { - * "Bucket": "destinationbucket", - * "CopySource": "/sourcebucket/HappyFacejpg", - * "Key": "HappyFaceCopyjpg" + * Bucket: "destinationbucket", + * CopySource: "/sourcebucket/HappyFacejpg", + * Key: "HappyFaceCopyjpg" * }; * const command = new CopyObjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CopyObjectResult": { - * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"", - * "LastModified": "2016-12-15T17:38:53.000Z" + * CopyObjectResult: { + * ETag: `"6805f2cfc46c0f04559748bb039d69ae"`, + * LastModified: "2016-12-15T17:38:53.000Z" * } * } * *\/ - * // example id: to-copy-an-object-1481823186878 * ``` * + * @public */ export class CopyObjectCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/CreateBucketCommand.ts b/clients/client-s3/src/commands/CreateBucketCommand.ts index bb2365dee6b15..0ae58ba4f6913 100644 --- a/clients/client-s3/src/commands/CreateBucketCommand.ts +++ b/clients/client-s3/src/commands/CreateBucketCommand.ts @@ -234,42 +234,41 @@ export interface CreateBucketCommandOutput extends CreateBucketOutput, __Metadat * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public - * @example To create a bucket + * + * @example To create a bucket in a specific region * ```javascript - * // The following example creates a bucket. + * // The following example creates a bucket. The request specifies an AWS region where to create the bucket. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket", + * CreateBucketConfiguration: { + * LocationConstraint: "eu-west-1" + * } * }; * const command = new CreateBucketCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Location": "/examplebucket" + * Location: "http://examplebucket..s3.amazonaws.com/" * } * *\/ - * // example id: to-create-a-bucket--1472851826060 * ``` * - * @example To create a bucket in a specific region + * @example To create a bucket * ```javascript - * // The following example creates a bucket. The request specifies an AWS region where to create the bucket. + * // The following example creates a bucket. * const input = { - * "Bucket": "examplebucket", - * "CreateBucketConfiguration": { - * "LocationConstraint": "eu-west-1" - * } + * Bucket: "examplebucket" * }; * const command = new CreateBucketCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Location": "http://examplebucket..s3.amazonaws.com/" + * Location: "/examplebucket" * } * *\/ - * // example id: to-create-a-bucket-in-a-specific-region-1483399072992 * ``` * + * @public */ export class CreateBucketCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/CreateBucketMetadataTableConfigurationCommand.ts b/clients/client-s3/src/commands/CreateBucketMetadataTableConfigurationCommand.ts index b6e6eaa6928c9..d3e6af1e14b47 100644 --- a/clients/client-s3/src/commands/CreateBucketMetadataTableConfigurationCommand.ts +++ b/clients/client-s3/src/commands/CreateBucketMetadataTableConfigurationCommand.ts @@ -123,6 +123,7 @@ export interface CreateBucketMetadataTableConfigurationCommandOutput extends __M * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class CreateBucketMetadataTableConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/CreateMultipartUploadCommand.ts b/clients/client-s3/src/commands/CreateMultipartUploadCommand.ts index 2fd40f0e57ee0..52070ad5e3020 100644 --- a/clients/client-s3/src/commands/CreateMultipartUploadCommand.ts +++ b/clients/client-s3/src/commands/CreateMultipartUploadCommand.ts @@ -373,26 +373,26 @@ export interface CreateMultipartUploadCommandOutput extends CreateMultipartUploa * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To initiate a multipart upload * ```javascript * // The following example initiates a multipart upload. * const input = { - * "Bucket": "examplebucket", - * "Key": "largeobject" + * Bucket: "examplebucket", + * Key: "largeobject" * }; * const command = new CreateMultipartUploadCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Bucket": "examplebucket", - * "Key": "largeobject", - * "UploadId": "ibZBv_75gd9r8lH_gqXatLdxMVpAlj6ZQjEs.OwyF3953YdwbcQnMA2BLGn8Lx12fQNICtMw5KyteFeHw.Sjng--" + * Bucket: "examplebucket", + * Key: "largeobject", + * UploadId: "ibZBv_75gd9r8lH_gqXatLdxMVpAlj6ZQjEs.OwyF3953YdwbcQnMA2BLGn8Lx12fQNICtMw5KyteFeHw.Sjng--" * } * *\/ - * // example id: to-initiate-a-multipart-upload-1481836794513 * ``` * + * @public */ export class CreateMultipartUploadCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/CreateSessionCommand.ts b/clients/client-s3/src/commands/CreateSessionCommand.ts index c4b6744f3d0cb..67cc2f902ae7e 100644 --- a/clients/client-s3/src/commands/CreateSessionCommand.ts +++ b/clients/client-s3/src/commands/CreateSessionCommand.ts @@ -186,6 +186,7 @@ export interface CreateSessionCommandOutput extends CreateSessionOutput, __Metad * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class CreateSessionCommand extends $Command diff --git a/clients/client-s3/src/commands/DeleteBucketAnalyticsConfigurationCommand.ts b/clients/client-s3/src/commands/DeleteBucketAnalyticsConfigurationCommand.ts index 3fbd6a5da7d18..d65b915b2d62f 100644 --- a/clients/client-s3/src/commands/DeleteBucketAnalyticsConfigurationCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketAnalyticsConfigurationCommand.ts @@ -88,6 +88,7 @@ export interface DeleteBucketAnalyticsConfigurationCommandOutput extends __Metad * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class DeleteBucketAnalyticsConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/DeleteBucketCommand.ts b/clients/client-s3/src/commands/DeleteBucketCommand.ts index b536e72ddc7cf..db535ff6d3953 100644 --- a/clients/client-s3/src/commands/DeleteBucketCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketCommand.ts @@ -111,18 +111,21 @@ export interface DeleteBucketCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To delete a bucket * ```javascript * // The following example deletes the specified bucket. * const input = { - * "Bucket": "forrandall2" + * Bucket: "forrandall2" * }; * const command = new DeleteBucketCommand(input); - * await client.send(command); - * // example id: to-delete-a-bucket-1473108514262 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteBucketCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/DeleteBucketCorsCommand.ts b/clients/client-s3/src/commands/DeleteBucketCorsCommand.ts index 2962cb69b85a2..b7223d9111ba7 100644 --- a/clients/client-s3/src/commands/DeleteBucketCorsCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketCorsCommand.ts @@ -77,18 +77,21 @@ export interface DeleteBucketCorsCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To delete cors configuration on a bucket. * ```javascript * // The following example deletes CORS configuration on a bucket. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket" * }; * const command = new DeleteBucketCorsCommand(input); - * await client.send(command); - * // example id: to-delete-cors-configuration-on-a-bucket-1483042856112 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteBucketCorsCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/DeleteBucketEncryptionCommand.ts b/clients/client-s3/src/commands/DeleteBucketEncryptionCommand.ts index a6167edaf14ca..4d1eb1bed3185 100644 --- a/clients/client-s3/src/commands/DeleteBucketEncryptionCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketEncryptionCommand.ts @@ -114,6 +114,7 @@ export interface DeleteBucketEncryptionCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class DeleteBucketEncryptionCommand extends $Command diff --git a/clients/client-s3/src/commands/DeleteBucketIntelligentTieringConfigurationCommand.ts b/clients/client-s3/src/commands/DeleteBucketIntelligentTieringConfigurationCommand.ts index 94356714e15c3..9e11f12296732 100644 --- a/clients/client-s3/src/commands/DeleteBucketIntelligentTieringConfigurationCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketIntelligentTieringConfigurationCommand.ts @@ -82,6 +82,7 @@ export interface DeleteBucketIntelligentTieringConfigurationCommandOutput extend * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class DeleteBucketIntelligentTieringConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/DeleteBucketInventoryConfigurationCommand.ts b/clients/client-s3/src/commands/DeleteBucketInventoryConfigurationCommand.ts index 8e42e8263338a..8aaa83822da7a 100644 --- a/clients/client-s3/src/commands/DeleteBucketInventoryConfigurationCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketInventoryConfigurationCommand.ts @@ -86,6 +86,7 @@ export interface DeleteBucketInventoryConfigurationCommandOutput extends __Metad * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class DeleteBucketInventoryConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/DeleteBucketLifecycleCommand.ts b/clients/client-s3/src/commands/DeleteBucketLifecycleCommand.ts index 036c31f1bd25d..7b3b84bfeac6f 100644 --- a/clients/client-s3/src/commands/DeleteBucketLifecycleCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketLifecycleCommand.ts @@ -123,18 +123,21 @@ export interface DeleteBucketLifecycleCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To delete lifecycle configuration on a bucket. * ```javascript * // The following example deletes lifecycle configuration on a bucket. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket" * }; * const command = new DeleteBucketLifecycleCommand(input); - * await client.send(command); - * // example id: to-delete-lifecycle-configuration-on-a-bucket-1483043310583 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteBucketLifecycleCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/DeleteBucketMetadataTableConfigurationCommand.ts b/clients/client-s3/src/commands/DeleteBucketMetadataTableConfigurationCommand.ts index 7809713273173..87adc3e54aba9 100644 --- a/clients/client-s3/src/commands/DeleteBucketMetadataTableConfigurationCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketMetadataTableConfigurationCommand.ts @@ -83,6 +83,7 @@ export interface DeleteBucketMetadataTableConfigurationCommandOutput extends __M * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class DeleteBucketMetadataTableConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/DeleteBucketMetricsConfigurationCommand.ts b/clients/client-s3/src/commands/DeleteBucketMetricsConfigurationCommand.ts index 5dfb35d4bb84e..d39aa78798444 100644 --- a/clients/client-s3/src/commands/DeleteBucketMetricsConfigurationCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketMetricsConfigurationCommand.ts @@ -94,6 +94,7 @@ export interface DeleteBucketMetricsConfigurationCommandOutput extends __Metadat * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class DeleteBucketMetricsConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/DeleteBucketOwnershipControlsCommand.ts b/clients/client-s3/src/commands/DeleteBucketOwnershipControlsCommand.ts index c9ff659610cfc..e9f78d8e28590 100644 --- a/clients/client-s3/src/commands/DeleteBucketOwnershipControlsCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketOwnershipControlsCommand.ts @@ -78,6 +78,7 @@ export interface DeleteBucketOwnershipControlsCommandOutput extends __MetadataBe * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class DeleteBucketOwnershipControlsCommand extends $Command diff --git a/clients/client-s3/src/commands/DeleteBucketPolicyCommand.ts b/clients/client-s3/src/commands/DeleteBucketPolicyCommand.ts index e50010403c4bd..27cb784eb95bb 100644 --- a/clients/client-s3/src/commands/DeleteBucketPolicyCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketPolicyCommand.ts @@ -120,18 +120,21 @@ export interface DeleteBucketPolicyCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To delete bucket policy * ```javascript * // The following example deletes bucket policy on the specified bucket. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket" * }; * const command = new DeleteBucketPolicyCommand(input); - * await client.send(command); - * // example id: to-delete-bucket-policy-1483043406577 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteBucketPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/DeleteBucketReplicationCommand.ts b/clients/client-s3/src/commands/DeleteBucketReplicationCommand.ts index d6bb7c31cd3dc..7116dd51bf0be 100644 --- a/clients/client-s3/src/commands/DeleteBucketReplicationCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketReplicationCommand.ts @@ -81,18 +81,21 @@ export interface DeleteBucketReplicationCommandOutput extends __MetadataBearer { * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To delete bucket replication configuration * ```javascript * // The following example deletes replication configuration set on bucket. * const input = { - * "Bucket": "example" + * Bucket: "example" * }; * const command = new DeleteBucketReplicationCommand(input); - * await client.send(command); - * // example id: to-delete-bucket-replication-configuration-1483043684668 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteBucketReplicationCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/DeleteBucketTaggingCommand.ts b/clients/client-s3/src/commands/DeleteBucketTaggingCommand.ts index fb3d0475232c9..d70d1d3d936e2 100644 --- a/clients/client-s3/src/commands/DeleteBucketTaggingCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketTaggingCommand.ts @@ -73,18 +73,21 @@ export interface DeleteBucketTaggingCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To delete bucket tags * ```javascript * // The following example deletes bucket tags. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket" * }; * const command = new DeleteBucketTaggingCommand(input); - * await client.send(command); - * // example id: to-delete-bucket-tags-1483043846509 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteBucketTaggingCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/DeleteBucketWebsiteCommand.ts b/clients/client-s3/src/commands/DeleteBucketWebsiteCommand.ts index 2c675338d71ac..1630f69df5a7f 100644 --- a/clients/client-s3/src/commands/DeleteBucketWebsiteCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketWebsiteCommand.ts @@ -80,18 +80,21 @@ export interface DeleteBucketWebsiteCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To delete bucket website configuration * ```javascript * // The following example deletes bucket website configuration. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket" * }; * const command = new DeleteBucketWebsiteCommand(input); - * await client.send(command); - * // example id: to-delete-bucket-website-configuration-1483043937825 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteBucketWebsiteCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/DeleteObjectCommand.ts b/clients/client-s3/src/commands/DeleteObjectCommand.ts index f79c64f86fc7d..644ab02dcb935 100644 --- a/clients/client-s3/src/commands/DeleteObjectCommand.ts +++ b/clients/client-s3/src/commands/DeleteObjectCommand.ts @@ -166,31 +166,36 @@ export interface DeleteObjectCommandOutput extends DeleteObjectOutput, __Metadat * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public - * @example To delete an object + * + * @example To delete an object (from a non-versioned bucket) * ```javascript - * // The following example deletes an object from an S3 bucket. + * // The following example deletes an object from a non-versioned bucket. * const input = { - * "Bucket": "examplebucket", - * "Key": "objectkey.jpg" + * Bucket: "ExampleBucket", + * Key: "HappyFace.jpg" * }; * const command = new DeleteObjectCommand(input); - * await client.send(command); - * // example id: to-delete-an-object-1472850136595 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * - * @example To delete an object (from a non-versioned bucket) + * @example To delete an object * ```javascript - * // The following example deletes an object from a non-versioned bucket. + * // The following example deletes an object from an S3 bucket. * const input = { - * "Bucket": "ExampleBucket", - * "Key": "HappyFace.jpg" + * Bucket: "examplebucket", + * Key: "objectkey.jpg" * }; * const command = new DeleteObjectCommand(input); - * await client.send(command); - * // example id: to-delete-an-object-from-a-non-versioned-bucket-1481588533089 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteObjectCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/DeleteObjectTaggingCommand.ts b/clients/client-s3/src/commands/DeleteObjectTaggingCommand.ts index f1c0711b8df7f..55179c4a4dc36 100644 --- a/clients/client-s3/src/commands/DeleteObjectTaggingCommand.ts +++ b/clients/client-s3/src/commands/DeleteObjectTaggingCommand.ts @@ -81,42 +81,41 @@ export interface DeleteObjectTaggingCommandOutput extends DeleteObjectTaggingOut * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To remove tag set from an object * ```javascript * // The following example removes tag set associated with the specified object. If the bucket is versioning enabled, the operation removes tag set from the latest object version. * const input = { - * "Bucket": "examplebucket", - * "Key": "HappyFace.jpg" + * Bucket: "examplebucket", + * Key: "HappyFace.jpg" * }; * const command = new DeleteObjectTaggingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "VersionId": "null" + * VersionId: "null" * } * *\/ - * // example id: to-remove-tag-set-from-an-object-1483145342862 * ``` * * @example To remove tag set from an object version * ```javascript * // The following example removes tag set associated with the specified object version. The request specifies both the object key and object version. * const input = { - * "Bucket": "examplebucket", - * "Key": "HappyFace.jpg", - * "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI" + * Bucket: "examplebucket", + * Key: "HappyFace.jpg", + * VersionId: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI" * }; * const command = new DeleteObjectTaggingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI" + * VersionId: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI" * } * *\/ - * // example id: to-remove-tag-set-from-an-object-version-1483145285913 * ``` * + * @public */ export class DeleteObjectTaggingCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/DeleteObjectsCommand.ts b/clients/client-s3/src/commands/DeleteObjectsCommand.ts index f467b4b1e82af..8be6d07ee40d6 100644 --- a/clients/client-s3/src/commands/DeleteObjectsCommand.ts +++ b/clients/client-s3/src/commands/DeleteObjectsCommand.ts @@ -226,83 +226,82 @@ export interface DeleteObjectsCommandOutput extends DeleteObjectsOutput, __Metad * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To delete multiple object versions from a versioned bucket * ```javascript * // The following example deletes objects from a bucket. The request specifies object versions. S3 deletes specific object versions and returns the key and versions of deleted objects in the response. * const input = { - * "Bucket": "examplebucket", - * "Delete": { - * "Objects": [ + * Bucket: "examplebucket", + * Delete: { + * Objects: [ * { - * "Key": "HappyFace.jpg", - * "VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b" + * Key: "HappyFace.jpg", + * VersionId: "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b" * }, * { - * "Key": "HappyFace.jpg", - * "VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd" + * Key: "HappyFace.jpg", + * VersionId: "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd" * } * ], - * "Quiet": false + * Quiet: false * } * }; * const command = new DeleteObjectsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Deleted": [ + * Deleted: [ * { - * "Key": "HappyFace.jpg", - * "VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd" + * Key: "HappyFace.jpg", + * VersionId: "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd" * }, * { - * "Key": "HappyFace.jpg", - * "VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b" + * Key: "HappyFace.jpg", + * VersionId: "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b" * } * ] * } * *\/ - * // example id: to-delete-multiple-object-versions-from-a-versioned-bucket-1483147087737 * ``` * * @example To delete multiple objects from a versioned bucket * ```javascript * // The following example deletes objects from a bucket. The bucket is versioned, and the request does not specify the object version to delete. In this case, all versions remain in the bucket and S3 adds a delete marker. * const input = { - * "Bucket": "examplebucket", - * "Delete": { - * "Objects": [ + * Bucket: "examplebucket", + * Delete: { + * Objects: [ * { - * "Key": "objectkey1" + * Key: "objectkey1" * }, * { - * "Key": "objectkey2" + * Key: "objectkey2" * } * ], - * "Quiet": false + * Quiet: false * } * }; * const command = new DeleteObjectsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Deleted": [ + * Deleted: [ * { - * "DeleteMarker": "true", - * "DeleteMarkerVersionId": "A._w1z6EFiCF5uhtQMDal9JDkID9tQ7F", - * "Key": "objectkey1" + * DeleteMarker: true, + * DeleteMarkerVersionId: "A._w1z6EFiCF5uhtQMDal9JDkID9tQ7F", + * Key: "objectkey1" * }, * { - * "DeleteMarker": "true", - * "DeleteMarkerVersionId": "iOd_ORxhkKe_e8G8_oSGxt2PjsCZKlkt", - * "Key": "objectkey2" + * DeleteMarker: true, + * DeleteMarkerVersionId: "iOd_ORxhkKe_e8G8_oSGxt2PjsCZKlkt", + * Key: "objectkey2" * } * ] * } * *\/ - * // example id: to-delete-multiple-objects-from-a-versioned-bucket-1483146248805 * ``` * + * @public */ export class DeleteObjectsCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/DeletePublicAccessBlockCommand.ts b/clients/client-s3/src/commands/DeletePublicAccessBlockCommand.ts index 9365facaf94ee..f7a3a9d13f287 100644 --- a/clients/client-s3/src/commands/DeletePublicAccessBlockCommand.ts +++ b/clients/client-s3/src/commands/DeletePublicAccessBlockCommand.ts @@ -84,6 +84,7 @@ export interface DeletePublicAccessBlockCommandOutput extends __MetadataBearer { * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class DeletePublicAccessBlockCommand extends $Command diff --git a/clients/client-s3/src/commands/GetBucketAccelerateConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketAccelerateConfigurationCommand.ts index 6cd0cbf59f8aa..5970caaf06aa2 100644 --- a/clients/client-s3/src/commands/GetBucketAccelerateConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketAccelerateConfigurationCommand.ts @@ -92,6 +92,7 @@ export interface GetBucketAccelerateConfigurationCommandOutput * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetBucketAccelerateConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/GetBucketAclCommand.ts b/clients/client-s3/src/commands/GetBucketAclCommand.ts index bbf9fc2340645..434e195482ac8 100644 --- a/clients/client-s3/src/commands/GetBucketAclCommand.ts +++ b/clients/client-s3/src/commands/GetBucketAclCommand.ts @@ -100,6 +100,7 @@ export interface GetBucketAclCommandOutput extends GetBucketAclOutput, __Metadat * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetBucketAclCommand extends $Command diff --git a/clients/client-s3/src/commands/GetBucketAnalyticsConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketAnalyticsConfigurationCommand.ts index 7f9058bd531da..862fc00f08e60 100644 --- a/clients/client-s3/src/commands/GetBucketAnalyticsConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketAnalyticsConfigurationCommand.ts @@ -125,6 +125,7 @@ export interface GetBucketAnalyticsConfigurationCommandOutput * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetBucketAnalyticsConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/GetBucketCorsCommand.ts b/clients/client-s3/src/commands/GetBucketCorsCommand.ts index 260230abfba45..00ecc5031d494 100644 --- a/clients/client-s3/src/commands/GetBucketCorsCommand.ts +++ b/clients/client-s3/src/commands/GetBucketCorsCommand.ts @@ -101,36 +101,36 @@ export interface GetBucketCorsCommandOutput extends GetBucketCorsOutput, __Metad * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To get cors configuration set on a bucket * ```javascript * // The following example returns cross-origin resource sharing (CORS) configuration set on a bucket. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket" * }; * const command = new GetBucketCorsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CORSRules": [ + * CORSRules: [ * { - * "AllowedHeaders": [ + * AllowedHeaders: [ * "Authorization" * ], - * "AllowedMethods": [ + * AllowedMethods: [ * "GET" * ], - * "AllowedOrigins": [ + * AllowedOrigins: [ * "*" * ], - * "MaxAgeSeconds": 3000 + * MaxAgeSeconds: 3000 * } * ] * } * *\/ - * // example id: to-get-cors-configuration-set-on-a-bucket-1481596855475 * ``` * + * @public */ export class GetBucketCorsCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/GetBucketEncryptionCommand.ts b/clients/client-s3/src/commands/GetBucketEncryptionCommand.ts index ef61986d26eea..d20198a5af3dd 100644 --- a/clients/client-s3/src/commands/GetBucketEncryptionCommand.ts +++ b/clients/client-s3/src/commands/GetBucketEncryptionCommand.ts @@ -132,6 +132,7 @@ export interface GetBucketEncryptionCommandOutput extends GetBucketEncryptionOut * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetBucketEncryptionCommand extends $Command diff --git a/clients/client-s3/src/commands/GetBucketIntelligentTieringConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketIntelligentTieringConfigurationCommand.ts index 4369b3df60659..7fc016153df96 100644 --- a/clients/client-s3/src/commands/GetBucketIntelligentTieringConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketIntelligentTieringConfigurationCommand.ts @@ -115,6 +115,7 @@ export interface GetBucketIntelligentTieringConfigurationCommandOutput * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetBucketIntelligentTieringConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/GetBucketInventoryConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketInventoryConfigurationCommand.ts index 38767f30bc06b..b61ced2ff1e5d 100644 --- a/clients/client-s3/src/commands/GetBucketInventoryConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketInventoryConfigurationCommand.ts @@ -123,6 +123,7 @@ export interface GetBucketInventoryConfigurationCommandOutput * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetBucketInventoryConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/GetBucketLifecycleConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketLifecycleConfigurationCommand.ts index 7c4874481ae8a..ffcef23c77105 100644 --- a/clients/client-s3/src/commands/GetBucketLifecycleConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketLifecycleConfigurationCommand.ts @@ -216,35 +216,35 @@ export interface GetBucketLifecycleConfigurationCommandOutput * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To get lifecycle configuration on a bucket * ```javascript * // The following example retrieves lifecycle configuration on set on a bucket. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket" * }; * const command = new GetBucketLifecycleConfigurationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Rules": [ + * Rules: [ * { - * "ID": "Rule for TaxDocs/", - * "Prefix": "TaxDocs", - * "Status": "Enabled", - * "Transitions": [ + * ID: "Rule for TaxDocs/", + * Prefix: "TaxDocs", + * Status: "Enabled", + * Transitions: [ * { - * "Days": 365, - * "StorageClass": "STANDARD_IA" + * Days: 365, + * StorageClass: "STANDARD_IA" * } * ] * } * ] * } * *\/ - * // example id: to-get-lifecycle-configuration-on-a-bucket-1481666063200 * ``` * + * @public */ export class GetBucketLifecycleConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/GetBucketLocationCommand.ts b/clients/client-s3/src/commands/GetBucketLocationCommand.ts index cbcb05eb02041..d3edf999efbf0 100644 --- a/clients/client-s3/src/commands/GetBucketLocationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketLocationCommand.ts @@ -85,23 +85,23 @@ export interface GetBucketLocationCommandOutput extends GetBucketLocationOutput, * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To get bucket location * ```javascript * // The following example returns bucket location. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket" * }; * const command = new GetBucketLocationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "LocationConstraint": "us-west-2" + * LocationConstraint: "us-west-2" * } * *\/ - * // example id: to-get-bucket-location-1481594573609 * ``` * + * @public */ export class GetBucketLocationCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/GetBucketLoggingCommand.ts b/clients/client-s3/src/commands/GetBucketLoggingCommand.ts index 960a6ea259140..7064b8317287c 100644 --- a/clients/client-s3/src/commands/GetBucketLoggingCommand.ts +++ b/clients/client-s3/src/commands/GetBucketLoggingCommand.ts @@ -95,6 +95,7 @@ export interface GetBucketLoggingCommandOutput extends GetBucketLoggingOutput, _ * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetBucketLoggingCommand extends $Command diff --git a/clients/client-s3/src/commands/GetBucketMetadataTableConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketMetadataTableConfigurationCommand.ts index 7c9a9d396661c..827143f3693fc 100644 --- a/clients/client-s3/src/commands/GetBucketMetadataTableConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketMetadataTableConfigurationCommand.ts @@ -104,6 +104,7 @@ export interface GetBucketMetadataTableConfigurationCommandOutput * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetBucketMetadataTableConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/GetBucketMetricsConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketMetricsConfigurationCommand.ts index 3d2d9b4899914..6cb0b62a28bfa 100644 --- a/clients/client-s3/src/commands/GetBucketMetricsConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketMetricsConfigurationCommand.ts @@ -118,6 +118,7 @@ export interface GetBucketMetricsConfigurationCommandOutput * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetBucketMetricsConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/GetBucketNotificationConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketNotificationConfigurationCommand.ts index d1d43c0c9e99f..daa75eb2ece24 100644 --- a/clients/client-s3/src/commands/GetBucketNotificationConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketNotificationConfigurationCommand.ts @@ -142,6 +142,7 @@ export interface GetBucketNotificationConfigurationCommandOutput extends Notific * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetBucketNotificationConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/GetBucketOwnershipControlsCommand.ts b/clients/client-s3/src/commands/GetBucketOwnershipControlsCommand.ts index ca31f1880123b..a6f15dbd26125 100644 --- a/clients/client-s3/src/commands/GetBucketOwnershipControlsCommand.ts +++ b/clients/client-s3/src/commands/GetBucketOwnershipControlsCommand.ts @@ -84,6 +84,7 @@ export interface GetBucketOwnershipControlsCommandOutput extends GetBucketOwners * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetBucketOwnershipControlsCommand extends $Command diff --git a/clients/client-s3/src/commands/GetBucketPolicyCommand.ts b/clients/client-s3/src/commands/GetBucketPolicyCommand.ts index 2d5c47529bb8a..b1cecfef46a53 100644 --- a/clients/client-s3/src/commands/GetBucketPolicyCommand.ts +++ b/clients/client-s3/src/commands/GetBucketPolicyCommand.ts @@ -128,23 +128,23 @@ export interface GetBucketPolicyCommandOutput extends GetBucketPolicyOutput, __M * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To get bucket policy * ```javascript * // The following example returns bucket policy associated with a bucket. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket" * }; * const command = new GetBucketPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Policy": "{\"Version\":\"2008-10-17\",\"Id\":\"LogPolicy\",\"Statement\":[{\"Sid\":\"Enables the log delivery group to publish logs to your bucket \",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"111122223333\"},\"Action\":[\"s3:GetBucketAcl\",\"s3:GetObjectAcl\",\"s3:PutObject\"],\"Resource\":[\"arn:aws:s3:::policytest1/*\",\"arn:aws:s3:::policytest1\"]}]}" + * Policy: `{"Version":"2008-10-17","Id":"LogPolicy","Statement":[{"Sid":"Enables the log delivery group to publish logs to your bucket ","Effect":"Allow","Principal":{"AWS":"111122223333"},"Action":["s3:GetBucketAcl","s3:GetObjectAcl","s3:PutObject"],"Resource":["arn:aws:s3:::policytest1/*","arn:aws:s3:::policytest1"]}]}` * } * *\/ - * // example id: to-get-bucket-policy-1481595098424 * ``` * + * @public */ export class GetBucketPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/GetBucketPolicyStatusCommand.ts b/clients/client-s3/src/commands/GetBucketPolicyStatusCommand.ts index 52e3680e9fdb2..3cb444975e0e1 100644 --- a/clients/client-s3/src/commands/GetBucketPolicyStatusCommand.ts +++ b/clients/client-s3/src/commands/GetBucketPolicyStatusCommand.ts @@ -90,6 +90,7 @@ export interface GetBucketPolicyStatusCommandOutput extends GetBucketPolicyStatu * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetBucketPolicyStatusCommand extends $Command diff --git a/clients/client-s3/src/commands/GetBucketReplicationCommand.ts b/clients/client-s3/src/commands/GetBucketReplicationCommand.ts index 2884b3b675a70..22cb60edcc059 100644 --- a/clients/client-s3/src/commands/GetBucketReplicationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketReplicationCommand.ts @@ -152,35 +152,35 @@ export interface GetBucketReplicationCommandOutput extends GetBucketReplicationO * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To get replication configuration set on a bucket * ```javascript * // The following example returns replication configuration set on a bucket. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket" * }; * const command = new GetBucketReplicationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ReplicationConfiguration": { - * "Role": "arn:aws:iam::acct-id:role/example-role", - * "Rules": [ + * ReplicationConfiguration: { + * Role: "arn:aws:iam::acct-id:role/example-role", + * Rules: [ * { - * "Destination": { - * "Bucket": "arn:aws:s3:::destination-bucket" + * Destination: { + * Bucket: "arn:aws:s3:::destination-bucket" * }, - * "ID": "MWIwNTkwZmItMTE3MS00ZTc3LWJkZDEtNzRmODQwYzc1OTQy", - * "Prefix": "Tax", - * "Status": "Enabled" + * ID: "MWIwNTkwZmItMTE3MS00ZTc3LWJkZDEtNzRmODQwYzc1OTQy", + * Prefix: "Tax", + * Status: "Enabled" * } * ] * } * } * *\/ - * // example id: to-get-replication-configuration-set-on-a-bucket-1481593597175 * ``` * + * @public */ export class GetBucketReplicationCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/GetBucketRequestPaymentCommand.ts b/clients/client-s3/src/commands/GetBucketRequestPaymentCommand.ts index b47c2471f4ca0..0b7ce840e1d25 100644 --- a/clients/client-s3/src/commands/GetBucketRequestPaymentCommand.ts +++ b/clients/client-s3/src/commands/GetBucketRequestPaymentCommand.ts @@ -70,23 +70,23 @@ export interface GetBucketRequestPaymentCommandOutput extends GetBucketRequestPa * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To get bucket versioning configuration * ```javascript * // The following example retrieves bucket versioning configuration. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket" * }; * const command = new GetBucketRequestPaymentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Payer": "BucketOwner" + * Payer: "BucketOwner" * } * *\/ - * // example id: to-get-bucket-versioning-configuration-1483037183929 * ``` * + * @public */ export class GetBucketRequestPaymentCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/GetBucketTaggingCommand.ts b/clients/client-s3/src/commands/GetBucketTaggingCommand.ts index c7591ffbaba74..fce2061dbe0a3 100644 --- a/clients/client-s3/src/commands/GetBucketTaggingCommand.ts +++ b/clients/client-s3/src/commands/GetBucketTaggingCommand.ts @@ -94,32 +94,32 @@ export interface GetBucketTaggingCommandOutput extends GetBucketTaggingOutput, _ * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To get tag set associated with a bucket * ```javascript * // The following example returns tag set associated with a bucket * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket" * }; * const command = new GetBucketTaggingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TagSet": [ + * TagSet: [ * { - * "Key": "key1", - * "Value": "value1" + * Key: "key1", + * Value: "value1" * }, * { - * "Key": "key2", - * "Value": "value2" + * Key: "key2", + * Value: "value2" * } * ] * } * *\/ - * // example id: to-get-tag-set-associated-with-a-bucket-1481593232107 * ``` * + * @public */ export class GetBucketTaggingCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/GetBucketVersioningCommand.ts b/clients/client-s3/src/commands/GetBucketVersioningCommand.ts index aa394707a27a3..64e9bc8eda436 100644 --- a/clients/client-s3/src/commands/GetBucketVersioningCommand.ts +++ b/clients/client-s3/src/commands/GetBucketVersioningCommand.ts @@ -83,24 +83,24 @@ export interface GetBucketVersioningCommandOutput extends GetBucketVersioningOut * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To get bucket versioning configuration * ```javascript * // The following example retrieves bucket versioning configuration. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket" * }; * const command = new GetBucketVersioningCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "MFADelete": "Disabled", - * "Status": "Enabled" + * MFADelete: "Disabled", + * Status: "Enabled" * } * *\/ - * // example id: to-get-bucket-versioning-configuration-1483037183929 * ``` * + * @public */ export class GetBucketVersioningCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/GetBucketWebsiteCommand.ts b/clients/client-s3/src/commands/GetBucketWebsiteCommand.ts index 01d9428b10276..79195ea14ea42 100644 --- a/clients/client-s3/src/commands/GetBucketWebsiteCommand.ts +++ b/clients/client-s3/src/commands/GetBucketWebsiteCommand.ts @@ -103,28 +103,28 @@ export interface GetBucketWebsiteCommandOutput extends GetBucketWebsiteOutput, _ * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To get bucket website configuration * ```javascript * // The following example retrieves website configuration of a bucket. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket" * }; * const command = new GetBucketWebsiteCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ErrorDocument": { - * "Key": "error.html" + * ErrorDocument: { + * Key: "error.html" * }, - * "IndexDocument": { - * "Suffix": "index.html" + * IndexDocument: { + * Suffix: "index.html" * } * } * *\/ - * // example id: to-get-bucket-website-configuration-1483037016926 * ``` * + * @public */ export class GetBucketWebsiteCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/GetObjectAclCommand.ts b/clients/client-s3/src/commands/GetObjectAclCommand.ts index 17289b4b64d68..21e5b15abdd8c 100644 --- a/clients/client-s3/src/commands/GetObjectAclCommand.ts +++ b/clients/client-s3/src/commands/GetObjectAclCommand.ts @@ -120,61 +120,61 @@ export interface GetObjectAclCommandOutput extends GetObjectAclOutput, __Metadat * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To retrieve object ACL * ```javascript * // The following example retrieves access control list (ACL) of an object. * const input = { - * "Bucket": "examplebucket", - * "Key": "HappyFace.jpg" + * Bucket: "examplebucket", + * Key: "HappyFace.jpg" * }; * const command = new GetObjectAclCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Grants": [ + * Grants: [ * { - * "Grantee": { - * "DisplayName": "owner-display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc", - * "Type": "CanonicalUser" + * Grantee: { + * DisplayName: "owner-display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc", + * Type: "CanonicalUser" * }, - * "Permission": "WRITE" + * Permission: "WRITE" * }, * { - * "Grantee": { - * "DisplayName": "owner-display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc", - * "Type": "CanonicalUser" + * Grantee: { + * DisplayName: "owner-display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc", + * Type: "CanonicalUser" * }, - * "Permission": "WRITE_ACP" + * Permission: "WRITE_ACP" * }, * { - * "Grantee": { - * "DisplayName": "owner-display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc", - * "Type": "CanonicalUser" + * Grantee: { + * DisplayName: "owner-display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc", + * Type: "CanonicalUser" * }, - * "Permission": "READ" + * Permission: "READ" * }, * { - * "Grantee": { - * "DisplayName": "owner-display-name", - * "ID": "852b113eexamplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc", - * "Type": "CanonicalUser" + * Grantee: { + * DisplayName: "owner-display-name", + * ID: "852b113eexamplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc", + * Type: "CanonicalUser" * }, - * "Permission": "READ_ACP" + * Permission: "READ_ACP" * } * ], - * "Owner": { - * "DisplayName": "owner-display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * Owner: { + * DisplayName: "owner-display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * } * } * *\/ - * // example id: to-retrieve-object-acl-1481833557740 * ``` * + * @public */ export class GetObjectAclCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/GetObjectAttributesCommand.ts b/clients/client-s3/src/commands/GetObjectAttributesCommand.ts index f60ed5402482e..b6cd8db064f06 100644 --- a/clients/client-s3/src/commands/GetObjectAttributesCommand.ts +++ b/clients/client-s3/src/commands/GetObjectAttributesCommand.ts @@ -319,6 +319,7 @@ export interface GetObjectAttributesCommandOutput extends GetObjectAttributesOut * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetObjectAttributesCommand extends $Command diff --git a/clients/client-s3/src/commands/GetObjectCommand.ts b/clients/client-s3/src/commands/GetObjectCommand.ts index baec50c0c0ecd..ab2c4e10e5fbc 100644 --- a/clients/client-s3/src/commands/GetObjectCommand.ts +++ b/clients/client-s3/src/commands/GetObjectCommand.ts @@ -245,6 +245,11 @@ export interface GetObjectCommandOutput extends Omit, _ * }; * const command = new GetObjectCommand(input); * const response = await client.send(command); + * // consume or destroy the stream to free the socket. + * const bytes = await response.Body.transformToByteArray(); + * // const str = await response.Body.transformToString(); + * // response.Body.destroy(); // only applicable to Node.js Readable streams. + * * // { // GetObjectOutput * // Body: "", // see \@smithy/types -> StreamingBlobPayloadOutputTypes * // DeleteMarker: true || false, @@ -313,56 +318,65 @@ export interface GetObjectCommandOutput extends Omit, _ * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public - * @example To retrieve an object + * + * @example To retrieve a byte range of an object * ```javascript - * // The following example retrieves an object for an S3 bucket. + * // The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a specific byte range. * const input = { - * "Bucket": "examplebucket", - * "Key": "HappyFace.jpg" + * Bucket: "examplebucket", + * Key: "SampleFile.txt", + * Range: "bytes=0-9" * }; * const command = new GetObjectCommand(input); * const response = await client.send(command); - * /* response == + * // consume or destroy the stream to free the socket. + * const bytes = await response.Body.transformToByteArray(); + * // const str = await response.Body.transformToString(); + * // response.Body.destroy(); // only applicable to Node.js Readable streams. + * + * /* response is * { - * "AcceptRanges": "bytes", - * "ContentLength": "3191", - * "ContentType": "image/jpeg", - * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"", - * "LastModified": "2016-12-15T01:19:41.000Z", - * "Metadata": {}, - * "TagCount": 2, - * "VersionId": "null" + * AcceptRanges: "bytes", + * ContentLength: 10, + * ContentRange: "bytes 0-9/43", + * ContentType: "text/plain", + * ETag: `"0d94420ffd0bc68cd3d152506b97a9cc"`, + * LastModified: "2014-10-09T22:57:28.000Z", + * Metadata: { /* empty *\/ }, + * VersionId: "null" * } * *\/ - * // example id: to-retrieve-an-object-1481827837012 * ``` * - * @example To retrieve a byte range of an object + * @example To retrieve an object * ```javascript - * // The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a specific byte range. + * // The following example retrieves an object for an S3 bucket. * const input = { - * "Bucket": "examplebucket", - * "Key": "SampleFile.txt", - * "Range": "bytes=0-9" + * Bucket: "examplebucket", + * Key: "HappyFace.jpg" * }; * const command = new GetObjectCommand(input); * const response = await client.send(command); - * /* response == + * // consume or destroy the stream to free the socket. + * const bytes = await response.Body.transformToByteArray(); + * // const str = await response.Body.transformToString(); + * // response.Body.destroy(); // only applicable to Node.js Readable streams. + * + * /* response is * { - * "AcceptRanges": "bytes", - * "ContentLength": "10", - * "ContentRange": "bytes 0-9/43", - * "ContentType": "text/plain", - * "ETag": "\"0d94420ffd0bc68cd3d152506b97a9cc\"", - * "LastModified": "2014-10-09T22:57:28.000Z", - * "Metadata": {}, - * "VersionId": "null" + * AcceptRanges: "bytes", + * ContentLength: 3191, + * ContentType: "image/jpeg", + * ETag: `"6805f2cfc46c0f04559748bb039d69ae"`, + * LastModified: "2016-12-15T01:19:41.000Z", + * Metadata: { /* empty *\/ }, + * TagCount: 2, + * VersionId: "null" * } * *\/ - * // example id: to-retrieve-a-byte-range-of-an-object--1481832674603 * ``` * + * @public */ export class GetObjectCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/GetObjectLegalHoldCommand.ts b/clients/client-s3/src/commands/GetObjectLegalHoldCommand.ts index 42a32695aa064..96e0e5110ce24 100644 --- a/clients/client-s3/src/commands/GetObjectLegalHoldCommand.ts +++ b/clients/client-s3/src/commands/GetObjectLegalHoldCommand.ts @@ -75,6 +75,7 @@ export interface GetObjectLegalHoldCommandOutput extends GetObjectLegalHoldOutpu * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetObjectLegalHoldCommand extends $Command diff --git a/clients/client-s3/src/commands/GetObjectLockConfigurationCommand.ts b/clients/client-s3/src/commands/GetObjectLockConfigurationCommand.ts index 0876d0b79f47a..afa400ca25085 100644 --- a/clients/client-s3/src/commands/GetObjectLockConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetObjectLockConfigurationCommand.ts @@ -79,6 +79,7 @@ export interface GetObjectLockConfigurationCommandOutput extends GetObjectLockCo * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetObjectLockConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/GetObjectRetentionCommand.ts b/clients/client-s3/src/commands/GetObjectRetentionCommand.ts index bb8dae51a5b91..f18dd4cd7aee0 100644 --- a/clients/client-s3/src/commands/GetObjectRetentionCommand.ts +++ b/clients/client-s3/src/commands/GetObjectRetentionCommand.ts @@ -76,6 +76,7 @@ export interface GetObjectRetentionCommandOutput extends GetObjectRetentionOutpu * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetObjectRetentionCommand extends $Command diff --git a/clients/client-s3/src/commands/GetObjectTaggingCommand.ts b/clients/client-s3/src/commands/GetObjectTaggingCommand.ts index 5a3472b83c6a7..4dfe158a99935 100644 --- a/clients/client-s3/src/commands/GetObjectTaggingCommand.ts +++ b/clients/client-s3/src/commands/GetObjectTaggingCommand.ts @@ -97,58 +97,57 @@ export interface GetObjectTaggingCommandOutput extends GetObjectTaggingOutput, _ * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To retrieve tag set of a specific object version * ```javascript * // The following example retrieves tag set of an object. The request specifies object version. * const input = { - * "Bucket": "examplebucket", - * "Key": "exampleobject", - * "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI" + * Bucket: "examplebucket", + * Key: "exampleobject", + * VersionId: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI" * }; * const command = new GetObjectTaggingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TagSet": [ + * TagSet: [ * { - * "Key": "Key1", - * "Value": "Value1" + * Key: "Key1", + * Value: "Value1" * } * ], - * "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI" + * VersionId: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI" * } * *\/ - * // example id: to-retrieve-tag-set-of-a-specific-object-version-1483400283663 * ``` * * @example To retrieve tag set of an object * ```javascript * // The following example retrieves tag set of an object. * const input = { - * "Bucket": "examplebucket", - * "Key": "HappyFace.jpg" + * Bucket: "examplebucket", + * Key: "HappyFace.jpg" * }; * const command = new GetObjectTaggingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TagSet": [ + * TagSet: [ * { - * "Key": "Key4", - * "Value": "Value4" + * Key: "Key4", + * Value: "Value4" * }, * { - * "Key": "Key3", - * "Value": "Value3" + * Key: "Key3", + * Value: "Value3" * } * ], - * "VersionId": "null" + * VersionId: "null" * } * *\/ - * // example id: to-retrieve-tag-set-of-an-object-1481833847896 * ``` * + * @public */ export class GetObjectTaggingCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/GetObjectTorrentCommand.ts b/clients/client-s3/src/commands/GetObjectTorrentCommand.ts index a68e904853959..8203a65cab7ba 100644 --- a/clients/client-s3/src/commands/GetObjectTorrentCommand.ts +++ b/clients/client-s3/src/commands/GetObjectTorrentCommand.ts @@ -68,6 +68,11 @@ export interface GetObjectTorrentCommandOutput extends Omit", // see \@smithy/types -> StreamingBlobPayloadOutputTypes * // RequestCharged: "requester", @@ -84,19 +89,27 @@ export interface GetObjectTorrentCommandOutput extends OmitBase exception class for all service exceptions from S3 service.

* - * @public + * * @example To retrieve torrent files for an object * ```javascript * // The following example retrieves torrent files of an object. * const input = { - * "Bucket": "examplebucket", - * "Key": "HappyFace.jpg" + * Bucket: "examplebucket", + * Key: "HappyFace.jpg" * }; * const command = new GetObjectTorrentCommand(input); - * await client.send(command); - * // example id: to-retrieve-torrent-files-for-an-object-1481834115959 + * const response = await client.send(command); + * // consume or destroy the stream to free the socket. + * const bytes = await response.Body.transformToByteArray(); + * // const str = await response.Body.transformToString(); + * // response.Body.destroy(); // only applicable to Node.js Readable streams. + * + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class GetObjectTorrentCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/GetPublicAccessBlockCommand.ts b/clients/client-s3/src/commands/GetPublicAccessBlockCommand.ts index 6686cf535f424..f5abee961f278 100644 --- a/clients/client-s3/src/commands/GetPublicAccessBlockCommand.ts +++ b/clients/client-s3/src/commands/GetPublicAccessBlockCommand.ts @@ -101,6 +101,7 @@ export interface GetPublicAccessBlockCommandOutput extends GetPublicAccessBlockO * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class GetPublicAccessBlockCommand extends $Command diff --git a/clients/client-s3/src/commands/HeadBucketCommand.ts b/clients/client-s3/src/commands/HeadBucketCommand.ts index e3abf91b44852..bcc83539aa276 100644 --- a/clients/client-s3/src/commands/HeadBucketCommand.ts +++ b/clients/client-s3/src/commands/HeadBucketCommand.ts @@ -131,18 +131,21 @@ export interface HeadBucketCommandOutput extends HeadBucketOutput, __MetadataBea * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To determine if bucket exists * ```javascript * // This operation checks to see if a bucket exists. * const input = { - * "Bucket": "acl1" + * Bucket: "acl1" * }; * const command = new HeadBucketCommand(input); - * await client.send(command); - * // example id: to-determine-if-bucket-exists-1473110292262 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class HeadBucketCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/HeadObjectCommand.ts b/clients/client-s3/src/commands/HeadObjectCommand.ts index d37f6682a0401..9eed6e76aea3a 100644 --- a/clients/client-s3/src/commands/HeadObjectCommand.ts +++ b/clients/client-s3/src/commands/HeadObjectCommand.ts @@ -286,30 +286,30 @@ export interface HeadObjectCommandOutput extends HeadObjectOutput, __MetadataBea * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To retrieve metadata of an object without returning the object itself * ```javascript * // The following example retrieves an object metadata. * const input = { - * "Bucket": "examplebucket", - * "Key": "HappyFace.jpg" + * Bucket: "examplebucket", + * Key: "HappyFace.jpg" * }; * const command = new HeadObjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AcceptRanges": "bytes", - * "ContentLength": "3191", - * "ContentType": "image/jpeg", - * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"", - * "LastModified": "2016-12-15T01:19:41.000Z", - * "Metadata": {}, - * "VersionId": "null" + * AcceptRanges: "bytes", + * ContentLength: 3191, + * ContentType: "image/jpeg", + * ETag: `"6805f2cfc46c0f04559748bb039d69ae"`, + * LastModified: "2016-12-15T01:19:41.000Z", + * Metadata: { /* empty *\/ }, + * VersionId: "null" * } * *\/ - * // example id: to-retrieve-metadata-of-an-object-without-returning-the-object-itself-1481834820480 * ``` * + * @public */ export class HeadObjectCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/ListBucketAnalyticsConfigurationsCommand.ts b/clients/client-s3/src/commands/ListBucketAnalyticsConfigurationsCommand.ts index 8cb9ce76269c8..70f9c70cf6d9f 100644 --- a/clients/client-s3/src/commands/ListBucketAnalyticsConfigurationsCommand.ts +++ b/clients/client-s3/src/commands/ListBucketAnalyticsConfigurationsCommand.ts @@ -137,6 +137,7 @@ export interface ListBucketAnalyticsConfigurationsCommandOutput * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class ListBucketAnalyticsConfigurationsCommand extends $Command diff --git a/clients/client-s3/src/commands/ListBucketIntelligentTieringConfigurationsCommand.ts b/clients/client-s3/src/commands/ListBucketIntelligentTieringConfigurationsCommand.ts index 7f7183e052f59..f1d63caeb4f52 100644 --- a/clients/client-s3/src/commands/ListBucketIntelligentTieringConfigurationsCommand.ts +++ b/clients/client-s3/src/commands/ListBucketIntelligentTieringConfigurationsCommand.ts @@ -120,6 +120,7 @@ export interface ListBucketIntelligentTieringConfigurationsCommandOutput * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class ListBucketIntelligentTieringConfigurationsCommand extends $Command diff --git a/clients/client-s3/src/commands/ListBucketInventoryConfigurationsCommand.ts b/clients/client-s3/src/commands/ListBucketInventoryConfigurationsCommand.ts index 201ca1c96e6c4..9d73650fa54d8 100644 --- a/clients/client-s3/src/commands/ListBucketInventoryConfigurationsCommand.ts +++ b/clients/client-s3/src/commands/ListBucketInventoryConfigurationsCommand.ts @@ -136,6 +136,7 @@ export interface ListBucketInventoryConfigurationsCommandOutput * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class ListBucketInventoryConfigurationsCommand extends $Command diff --git a/clients/client-s3/src/commands/ListBucketMetricsConfigurationsCommand.ts b/clients/client-s3/src/commands/ListBucketMetricsConfigurationsCommand.ts index 0e40ae3b1a684..702b03a035934 100644 --- a/clients/client-s3/src/commands/ListBucketMetricsConfigurationsCommand.ts +++ b/clients/client-s3/src/commands/ListBucketMetricsConfigurationsCommand.ts @@ -126,6 +126,7 @@ export interface ListBucketMetricsConfigurationsCommandOutput * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class ListBucketMetricsConfigurationsCommand extends $Command diff --git a/clients/client-s3/src/commands/ListBucketsCommand.ts b/clients/client-s3/src/commands/ListBucketsCommand.ts index 77dc71f623453..0a165698631ad 100644 --- a/clients/client-s3/src/commands/ListBucketsCommand.ts +++ b/clients/client-s3/src/commands/ListBucketsCommand.ts @@ -84,38 +84,38 @@ export interface ListBucketsCommandOutput extends ListBucketsOutput, __MetadataB * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To list all buckets * ```javascript * // The following example returns all the buckets owned by the sender of this request. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListBucketsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Buckets": [ + * Buckets: [ * { - * "CreationDate": "2012-02-15T21:03:02.000Z", - * "Name": "examplebucket" + * CreationDate: "2012-02-15T21:03:02.000Z", + * Name: "examplebucket" * }, * { - * "CreationDate": "2011-07-24T19:33:50.000Z", - * "Name": "examplebucket2" + * CreationDate: "2011-07-24T19:33:50.000Z", + * Name: "examplebucket2" * }, * { - * "CreationDate": "2010-12-17T00:56:49.000Z", - * "Name": "examplebucket3" + * CreationDate: "2010-12-17T00:56:49.000Z", + * Name: "examplebucket3" * } * ], - * "Owner": { - * "DisplayName": "own-display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31" + * Owner: { + * DisplayName: "own-display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31" * } * } * *\/ - * // example id: to-list-buckets-1481910996058 * ``` * + * @public */ export class ListBucketsCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/ListDirectoryBucketsCommand.ts b/clients/client-s3/src/commands/ListDirectoryBucketsCommand.ts index 841902e44f091..b278122196491 100644 --- a/clients/client-s3/src/commands/ListDirectoryBucketsCommand.ts +++ b/clients/client-s3/src/commands/ListDirectoryBucketsCommand.ts @@ -92,6 +92,7 @@ export interface ListDirectoryBucketsCommandOutput extends ListDirectoryBucketsO * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class ListDirectoryBucketsCommand extends $Command diff --git a/clients/client-s3/src/commands/ListMultipartUploadsCommand.ts b/clients/client-s3/src/commands/ListMultipartUploadsCommand.ts index 6cad5aa6f2d3e..5bfea2c4aee25 100644 --- a/clients/client-s3/src/commands/ListMultipartUploadsCommand.ts +++ b/clients/client-s3/src/commands/ListMultipartUploadsCommand.ts @@ -230,107 +230,106 @@ export interface ListMultipartUploadsCommandOutput extends ListMultipartUploadsO * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public - * @example To list in-progress multipart uploads on a bucket + * + * @example List next set of multipart uploads when previous result is truncated * ```javascript - * // The following example lists in-progress multipart uploads on a specific bucket. + * // The following example specifies the upload-id-marker and key-marker from previous truncated response to retrieve next setup of multipart uploads. * const input = { - * "Bucket": "examplebucket" + * Bucket: "examplebucket", + * KeyMarker: "nextkeyfrompreviousresponse", + * MaxUploads: 2, + * UploadIdMarker: "valuefrompreviousresponse" * }; * const command = new ListMultipartUploadsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Uploads": [ + * Bucket: "acl1", + * IsTruncated: true, + * KeyMarker: "", + * MaxUploads: 2, + * NextKeyMarker: "someobjectkey", + * NextUploadIdMarker: "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--", + * UploadIdMarker: "", + * Uploads: [ * { - * "Initiated": "2014-05-01T05:40:58.000Z", - * "Initiator": { - * "DisplayName": "display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * Initiated: "2014-05-01T05:40:58.000Z", + * Initiator: { + * DisplayName: "ownder-display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * }, - * "Key": "JavaFile", - * "Owner": { - * "DisplayName": "display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * Key: "JavaFile", + * Owner: { + * DisplayName: "mohanataws", + * ID: "852b113e7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * }, - * "StorageClass": "STANDARD", - * "UploadId": "examplelUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--" + * StorageClass: "STANDARD", + * UploadId: "gZ30jIqlUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--" * }, * { - * "Initiated": "2014-05-01T05:41:27.000Z", - * "Initiator": { - * "DisplayName": "display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * Initiated: "2014-05-01T05:41:27.000Z", + * Initiator: { + * DisplayName: "ownder-display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * }, - * "Key": "JavaFile", - * "Owner": { - * "DisplayName": "display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * Key: "JavaFile", + * Owner: { + * DisplayName: "ownder-display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * }, - * "StorageClass": "STANDARD", - * "UploadId": "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--" + * StorageClass: "STANDARD", + * UploadId: "b7tZSqIlo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--" * } * ] * } * *\/ - * // example id: to-list-in-progress-multipart-uploads-on-a-bucket-1481852775260 * ``` * - * @example List next set of multipart uploads when previous result is truncated + * @example To list in-progress multipart uploads on a bucket * ```javascript - * // The following example specifies the upload-id-marker and key-marker from previous truncated response to retrieve next setup of multipart uploads. + * // The following example lists in-progress multipart uploads on a specific bucket. * const input = { - * "Bucket": "examplebucket", - * "KeyMarker": "nextkeyfrompreviousresponse", - * "MaxUploads": "2", - * "UploadIdMarker": "valuefrompreviousresponse" + * Bucket: "examplebucket" * }; * const command = new ListMultipartUploadsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Bucket": "acl1", - * "IsTruncated": true, - * "KeyMarker": "", - * "MaxUploads": "2", - * "NextKeyMarker": "someobjectkey", - * "NextUploadIdMarker": "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--", - * "UploadIdMarker": "", - * "Uploads": [ + * Uploads: [ * { - * "Initiated": "2014-05-01T05:40:58.000Z", - * "Initiator": { - * "DisplayName": "ownder-display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * Initiated: "2014-05-01T05:40:58.000Z", + * Initiator: { + * DisplayName: "display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * }, - * "Key": "JavaFile", - * "Owner": { - * "DisplayName": "mohanataws", - * "ID": "852b113e7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * Key: "JavaFile", + * Owner: { + * DisplayName: "display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * }, - * "StorageClass": "STANDARD", - * "UploadId": "gZ30jIqlUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--" + * StorageClass: "STANDARD", + * UploadId: "examplelUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--" * }, * { - * "Initiated": "2014-05-01T05:41:27.000Z", - * "Initiator": { - * "DisplayName": "ownder-display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * Initiated: "2014-05-01T05:41:27.000Z", + * Initiator: { + * DisplayName: "display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * }, - * "Key": "JavaFile", - * "Owner": { - * "DisplayName": "ownder-display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * Key: "JavaFile", + * Owner: { + * DisplayName: "display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * }, - * "StorageClass": "STANDARD", - * "UploadId": "b7tZSqIlo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--" + * StorageClass: "STANDARD", + * UploadId: "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--" * } * ] * } * *\/ - * // example id: list-next-set-of-multipart-uploads-when-previous-result-is-truncated-1482428106748 * ``` * + * @public */ export class ListMultipartUploadsCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/ListObjectVersionsCommand.ts b/clients/client-s3/src/commands/ListObjectVersionsCommand.ts index c9b5600cc27f8..62c7434fad36b 100644 --- a/clients/client-s3/src/commands/ListObjectVersionsCommand.ts +++ b/clients/client-s3/src/commands/ListObjectVersionsCommand.ts @@ -155,51 +155,51 @@ export interface ListObjectVersionsCommandOutput extends ListObjectVersionsOutpu * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To list object versions * ```javascript * // The following example returns versions of an object with specific key name prefix. * const input = { - * "Bucket": "examplebucket", - * "Prefix": "HappyFace.jpg" + * Bucket: "examplebucket", + * Prefix: "HappyFace.jpg" * }; * const command = new ListObjectVersionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Versions": [ + * Versions: [ * { - * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"", - * "IsLatest": true, - * "Key": "HappyFace.jpg", - * "LastModified": "2016-12-15T01:19:41.000Z", - * "Owner": { - * "DisplayName": "owner-display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * ETag: `"6805f2cfc46c0f04559748bb039d69ae"`, + * IsLatest: true, + * Key: "HappyFace.jpg", + * LastModified: "2016-12-15T01:19:41.000Z", + * Owner: { + * DisplayName: "owner-display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * }, - * "Size": 3191, - * "StorageClass": "STANDARD", - * "VersionId": "null" + * Size: 3191, + * StorageClass: "STANDARD", + * VersionId: "null" * }, * { - * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"", - * "IsLatest": false, - * "Key": "HappyFace.jpg", - * "LastModified": "2016-12-13T00:58:26.000Z", - * "Owner": { - * "DisplayName": "owner-display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * ETag: `"6805f2cfc46c0f04559748bb039d69ae"`, + * IsLatest: false, + * Key: "HappyFace.jpg", + * LastModified: "2016-12-13T00:58:26.000Z", + * Owner: { + * DisplayName: "owner-display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * }, - * "Size": 3191, - * "StorageClass": "STANDARD", - * "VersionId": "PHtexPGjH2y.zBgT8LmB7wwLI2mpbz.k" + * Size: 3191, + * StorageClass: "STANDARD", + * VersionId: "PHtexPGjH2y.zBgT8LmB7wwLI2mpbz.k" * } * ] * } * *\/ - * // example id: to-list-object-versions-1481910996058 * ``` * + * @public */ export class ListObjectVersionsCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/ListObjectsCommand.ts b/clients/client-s3/src/commands/ListObjectsCommand.ts index 9d424a408363a..a167ac5f0e8ff 100644 --- a/clients/client-s3/src/commands/ListObjectsCommand.ts +++ b/clients/client-s3/src/commands/ListObjectsCommand.ts @@ -141,48 +141,48 @@ export interface ListObjectsCommandOutput extends ListObjectsOutput, __MetadataB * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To list objects in a bucket * ```javascript * // The following example list two objects in a bucket. * const input = { - * "Bucket": "examplebucket", - * "MaxKeys": "2" + * Bucket: "examplebucket", + * MaxKeys: 2 * }; * const command = new ListObjectsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Contents": [ + * Contents: [ * { - * "ETag": "\"70ee1738b6b21e2c8a43f3a5ab0eee71\"", - * "Key": "example1.jpg", - * "LastModified": "2014-11-21T19:40:05.000Z", - * "Owner": { - * "DisplayName": "myname", - * "ID": "12345example25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * ETag: `"70ee1738b6b21e2c8a43f3a5ab0eee71"`, + * Key: "example1.jpg", + * LastModified: "2014-11-21T19:40:05.000Z", + * Owner: { + * DisplayName: "myname", + * ID: "12345example25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * }, - * "Size": 11, - * "StorageClass": "STANDARD" + * Size: 11, + * StorageClass: "STANDARD" * }, * { - * "ETag": "\"9c8af9a76df052144598c115ef33e511\"", - * "Key": "example2.jpg", - * "LastModified": "2013-11-15T01:10:49.000Z", - * "Owner": { - * "DisplayName": "myname", - * "ID": "12345example25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * ETag: `"9c8af9a76df052144598c115ef33e511"`, + * Key: "example2.jpg", + * LastModified: "2013-11-15T01:10:49.000Z", + * Owner: { + * DisplayName: "myname", + * ID: "12345example25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * }, - * "Size": 713193, - * "StorageClass": "STANDARD" + * Size: 713193, + * StorageClass: "STANDARD" * } * ], - * "NextMarker": "eyJNYXJrZXIiOiBudWxsLCAiYm90b190cnVuY2F0ZV9hbW91bnQiOiAyfQ==" + * NextMarker: "eyJNYXJrZXIiOiBudWxsLCAiYm90b190cnVuY2F0ZV9hbW91bnQiOiAyfQ==" * } * *\/ - * // example id: to-list-objects-in-a-bucket-1473447646507 * ``` * + * @public */ export class ListObjectsCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/ListObjectsV2Command.ts b/clients/client-s3/src/commands/ListObjectsV2Command.ts index 9a6bcf441e0f7..9620324c4661e 100644 --- a/clients/client-s3/src/commands/ListObjectsV2Command.ts +++ b/clients/client-s3/src/commands/ListObjectsV2Command.ts @@ -209,45 +209,45 @@ export interface ListObjectsV2CommandOutput extends ListObjectsV2Output, __Metad * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To get object list * ```javascript * // The following example retrieves object list. The request specifies max keys to limit response to include only 2 object keys. * const input = { - * "Bucket": "DOC-EXAMPLE-BUCKET", - * "MaxKeys": "2" + * Bucket: "DOC-EXAMPLE-BUCKET", + * MaxKeys: 2 * }; * const command = new ListObjectsV2Command(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Contents": [ + * Contents: [ * { - * "ETag": "\"70ee1738b6b21e2c8a43f3a5ab0eee71\"", - * "Key": "happyface.jpg", - * "LastModified": "2014-11-21T19:40:05.000Z", - * "Size": 11, - * "StorageClass": "STANDARD" + * ETag: `"70ee1738b6b21e2c8a43f3a5ab0eee71"`, + * Key: "happyface.jpg", + * LastModified: "2014-11-21T19:40:05.000Z", + * Size: 11, + * StorageClass: "STANDARD" * }, * { - * "ETag": "\"becf17f89c30367a9a44495d62ed521a-1\"", - * "Key": "test.jpg", - * "LastModified": "2014-05-02T04:51:50.000Z", - * "Size": 4192256, - * "StorageClass": "STANDARD" + * ETag: `"becf17f89c30367a9a44495d62ed521a-1"`, + * Key: "test.jpg", + * LastModified: "2014-05-02T04:51:50.000Z", + * Size: 4192256, + * StorageClass: "STANDARD" * } * ], - * "IsTruncated": true, - * "KeyCount": "2", - * "MaxKeys": "2", - * "Name": "DOC-EXAMPLE-BUCKET", - * "NextContinuationToken": "1w41l63U0xa8q7smH50vCxyTQqdxo69O3EmK28Bi5PcROI4wI/EyIJg==", - * "Prefix": "" + * IsTruncated: true, + * KeyCount: 2, + * MaxKeys: 2, + * Name: "DOC-EXAMPLE-BUCKET", + * NextContinuationToken: "1w41l63U0xa8q7smH50vCxyTQqdxo69O3EmK28Bi5PcROI4wI/EyIJg==", + * Prefix: "" * } * *\/ - * // example id: to-get-object-list * ``` * + * @public */ export class ListObjectsV2Command extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/ListPartsCommand.ts b/clients/client-s3/src/commands/ListPartsCommand.ts index 26b77b02ff94d..b33d7abfbf6b9 100644 --- a/clients/client-s3/src/commands/ListPartsCommand.ts +++ b/clients/client-s3/src/commands/ListPartsCommand.ts @@ -186,47 +186,47 @@ export interface ListPartsCommandOutput extends ListPartsOutput, __MetadataBeare * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To list parts of a multipart upload. * ```javascript * // The following example lists parts uploaded for a specific multipart upload. * const input = { - * "Bucket": "examplebucket", - * "Key": "bigobject", - * "UploadId": "example7YPBOJuoFiQ9cz4P3Pe6FIZwO4f7wN93uHsNBEw97pl5eNwzExg0LAT2dUN91cOmrEQHDsP3WA60CEg--" + * Bucket: "examplebucket", + * Key: "bigobject", + * UploadId: "example7YPBOJuoFiQ9cz4P3Pe6FIZwO4f7wN93uHsNBEw97pl5eNwzExg0LAT2dUN91cOmrEQHDsP3WA60CEg--" * }; * const command = new ListPartsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Initiator": { - * "DisplayName": "owner-display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * Initiator: { + * DisplayName: "owner-display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * }, - * "Owner": { - * "DisplayName": "owner-display-name", - * "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" + * Owner: { + * DisplayName: "owner-display-name", + * ID: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc" * }, - * "Parts": [ + * Parts: [ * { - * "ETag": "\"d8c2eafd90c266e19ab9dcacc479f8af\"", - * "LastModified": "2016-12-16T00:11:42.000Z", - * "PartNumber": "1", - * "Size": 26246026 + * ETag: `"d8c2eafd90c266e19ab9dcacc479f8af"`, + * LastModified: "2016-12-16T00:11:42.000Z", + * PartNumber: 1, + * Size: 26246026 * }, * { - * "ETag": "\"d8c2eafd90c266e19ab9dcacc479f8af\"", - * "LastModified": "2016-12-16T00:15:01.000Z", - * "PartNumber": "2", - * "Size": 26246026 + * ETag: `"d8c2eafd90c266e19ab9dcacc479f8af"`, + * LastModified: "2016-12-16T00:15:01.000Z", + * PartNumber: 2, + * Size: 26246026 * } * ], - * "StorageClass": "STANDARD" + * StorageClass: "STANDARD" * } * *\/ - * // example id: to-list-parts-of-a-multipart-upload-1481852006923 * ``` * + * @public */ export class ListPartsCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutBucketAccelerateConfigurationCommand.ts b/clients/client-s3/src/commands/PutBucketAccelerateConfigurationCommand.ts index 38cb7bfaa544e..0a9c077e5e101 100644 --- a/clients/client-s3/src/commands/PutBucketAccelerateConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketAccelerateConfigurationCommand.ts @@ -103,6 +103,7 @@ export interface PutBucketAccelerateConfigurationCommandOutput extends __Metadat * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class PutBucketAccelerateConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/PutBucketAclCommand.ts b/clients/client-s3/src/commands/PutBucketAclCommand.ts index ac4f9c09195c5..28ede3b71d9ec 100644 --- a/clients/client-s3/src/commands/PutBucketAclCommand.ts +++ b/clients/client-s3/src/commands/PutBucketAclCommand.ts @@ -281,20 +281,23 @@ export interface PutBucketAclCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example Put bucket acl * ```javascript * // The following example replaces existing ACL on a bucket. The ACL grants the bucket owner (specified using the owner ID) and write permission to the LogDelivery group. Because this is a replace operation, you must specify all the grants in your request. To incrementally add or remove ACL grants, you might use the console. * const input = { - * "Bucket": "examplebucket", - * "GrantFullControl": "id=examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484", - * "GrantWrite": "uri=http://acs.amazonaws.com/groups/s3/LogDelivery" + * Bucket: "examplebucket", + * GrantFullControl: "id=examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484", + * GrantWrite: "uri=http://acs.amazonaws.com/groups/s3/LogDelivery" * }; * const command = new PutBucketAclCommand(input); - * await client.send(command); - * // example id: put-bucket-acl-1482260397033 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutBucketAclCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutBucketAnalyticsConfigurationCommand.ts b/clients/client-s3/src/commands/PutBucketAnalyticsConfigurationCommand.ts index 6cf32096b1315..6c394500630c9 100644 --- a/clients/client-s3/src/commands/PutBucketAnalyticsConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketAnalyticsConfigurationCommand.ts @@ -195,6 +195,7 @@ export interface PutBucketAnalyticsConfigurationCommandOutput extends __Metadata * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class PutBucketAnalyticsConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/PutBucketCorsCommand.ts b/clients/client-s3/src/commands/PutBucketCorsCommand.ts index d9fef540967e6..069061c392cae 100644 --- a/clients/client-s3/src/commands/PutBucketCorsCommand.ts +++ b/clients/client-s3/src/commands/PutBucketCorsCommand.ts @@ -133,52 +133,55 @@ export interface PutBucketCorsCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To set cors configuration on a bucket. * ```javascript * // The following example enables PUT, POST, and DELETE requests from www.example.com, and enables GET requests from any domain. * const input = { - * "Bucket": "", - * "CORSConfiguration": { - * "CORSRules": [ + * Bucket: "", + * CORSConfiguration: { + * CORSRules: [ * { - * "AllowedHeaders": [ + * AllowedHeaders: [ * "*" * ], - * "AllowedMethods": [ + * AllowedMethods: [ * "PUT", * "POST", * "DELETE" * ], - * "AllowedOrigins": [ + * AllowedOrigins: [ * "http://www.example.com" * ], - * "ExposeHeaders": [ + * ExposeHeaders: [ * "x-amz-server-side-encryption" * ], - * "MaxAgeSeconds": 3000 + * MaxAgeSeconds: 3000 * }, * { - * "AllowedHeaders": [ + * AllowedHeaders: [ * "Authorization" * ], - * "AllowedMethods": [ + * AllowedMethods: [ * "GET" * ], - * "AllowedOrigins": [ + * AllowedOrigins: [ * "*" * ], - * "MaxAgeSeconds": 3000 + * MaxAgeSeconds: 3000 * } * ] * }, - * "ContentMD5": "" + * ContentMD5: "" * }; * const command = new PutBucketCorsCommand(input); - * await client.send(command); - * // example id: to-set-cors-configuration-on-a-bucket-1483037818805 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutBucketCorsCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutBucketEncryptionCommand.ts b/clients/client-s3/src/commands/PutBucketEncryptionCommand.ts index 378eaf76d06bd..a815b34bc3e22 100644 --- a/clients/client-s3/src/commands/PutBucketEncryptionCommand.ts +++ b/clients/client-s3/src/commands/PutBucketEncryptionCommand.ts @@ -194,6 +194,7 @@ export interface PutBucketEncryptionCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class PutBucketEncryptionCommand extends $Command diff --git a/clients/client-s3/src/commands/PutBucketIntelligentTieringConfigurationCommand.ts b/clients/client-s3/src/commands/PutBucketIntelligentTieringConfigurationCommand.ts index 529fca93a2d90..ff9102c8dfdb6 100644 --- a/clients/client-s3/src/commands/PutBucketIntelligentTieringConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketIntelligentTieringConfigurationCommand.ts @@ -141,6 +141,7 @@ export interface PutBucketIntelligentTieringConfigurationCommandOutput extends _ * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class PutBucketIntelligentTieringConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/PutBucketInventoryConfigurationCommand.ts b/clients/client-s3/src/commands/PutBucketInventoryConfigurationCommand.ts index b1a8c04100f55..2ac15a3d5895d 100644 --- a/clients/client-s3/src/commands/PutBucketInventoryConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketInventoryConfigurationCommand.ts @@ -175,6 +175,7 @@ export interface PutBucketInventoryConfigurationCommandOutput extends __Metadata * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class PutBucketInventoryConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/PutBucketLifecycleConfigurationCommand.ts b/clients/client-s3/src/commands/PutBucketLifecycleConfigurationCommand.ts index 2bcba00188f2d..2c60ee40d9b67 100644 --- a/clients/client-s3/src/commands/PutBucketLifecycleConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketLifecycleConfigurationCommand.ts @@ -253,27 +253,27 @@ export interface PutBucketLifecycleConfigurationCommandOutput * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example Put bucket lifecycle * ```javascript * // The following example replaces existing lifecycle configuration, if any, on the specified bucket. * const input = { - * "Bucket": "examplebucket", - * "LifecycleConfiguration": { - * "Rules": [ + * Bucket: "examplebucket", + * LifecycleConfiguration: { + * Rules: [ * { - * "Expiration": { - * "Days": 3650 + * Expiration: { + * Days: 3650 * }, - * "Filter": { - * "Prefix": "documents/" + * Filter: { + * Prefix: "documents/" * }, - * "ID": "TestOnly", - * "Status": "Enabled", - * "Transitions": [ + * ID: "TestOnly", + * Status: "Enabled", + * Transitions: [ * { - * "Days": 365, - * "StorageClass": "GLACIER" + * Days: 365, + * StorageClass: "GLACIER" * } * ] * } @@ -281,10 +281,13 @@ export interface PutBucketLifecycleConfigurationCommandOutput * } * }; * const command = new PutBucketLifecycleConfigurationCommand(input); - * await client.send(command); - * // example id: put-bucket-lifecycle-1482264533092 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutBucketLifecycleConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutBucketLoggingCommand.ts b/clients/client-s3/src/commands/PutBucketLoggingCommand.ts index 9d69b6a760200..363a209b6aeaf 100644 --- a/clients/client-s3/src/commands/PutBucketLoggingCommand.ts +++ b/clients/client-s3/src/commands/PutBucketLoggingCommand.ts @@ -168,33 +168,36 @@ export interface PutBucketLoggingCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example Set logging configuration for a bucket * ```javascript * // The following example sets logging policy on a bucket. For the Log Delivery group to deliver logs to the destination bucket, it needs permission for the READ_ACP action which the policy grants. * const input = { - * "Bucket": "sourcebucket", - * "BucketLoggingStatus": { - * "LoggingEnabled": { - * "TargetBucket": "targetbucket", - * "TargetGrants": [ + * Bucket: "sourcebucket", + * BucketLoggingStatus: { + * LoggingEnabled: { + * TargetBucket: "targetbucket", + * TargetGrants: [ * { - * "Grantee": { - * "Type": "Group", - * "URI": "http://acs.amazonaws.com/groups/global/AllUsers" + * Grantee: { + * Type: "Group", + * URI: "http://acs.amazonaws.com/groups/global/AllUsers" * }, - * "Permission": "READ" + * Permission: "READ" * } * ], - * "TargetPrefix": "MyBucketLogs/" + * TargetPrefix: "MyBucketLogs/" * } * } * }; * const command = new PutBucketLoggingCommand(input); - * await client.send(command); - * // example id: set-logging-configuration-for-a-bucket-1482269119909 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutBucketLoggingCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutBucketMetricsConfigurationCommand.ts b/clients/client-s3/src/commands/PutBucketMetricsConfigurationCommand.ts index e04d61e471f4e..c572c3deef678 100644 --- a/clients/client-s3/src/commands/PutBucketMetricsConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketMetricsConfigurationCommand.ts @@ -128,6 +128,7 @@ export interface PutBucketMetricsConfigurationCommandOutput extends __MetadataBe * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class PutBucketMetricsConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/PutBucketNotificationConfigurationCommand.ts b/clients/client-s3/src/commands/PutBucketNotificationConfigurationCommand.ts index 6d8d0c374e023..ebb9194f663e5 100644 --- a/clients/client-s3/src/commands/PutBucketNotificationConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketNotificationConfigurationCommand.ts @@ -172,28 +172,31 @@ export interface PutBucketNotificationConfigurationCommandOutput extends __Metad * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example Set notification configuration for a bucket * ```javascript * // The following example sets notification configuration on a bucket to publish the object created events to an SNS topic. * const input = { - * "Bucket": "examplebucket", - * "NotificationConfiguration": { - * "TopicConfigurations": [ + * Bucket: "examplebucket", + * NotificationConfiguration: { + * TopicConfigurations: [ * { - * "Events": [ + * Events: [ * "s3:ObjectCreated:*" * ], - * "TopicArn": "arn:aws:sns:us-west-2:123456789012:s3-notification-topic" + * TopicArn: "arn:aws:sns:us-west-2:123456789012:s3-notification-topic" * } * ] * } * }; * const command = new PutBucketNotificationConfigurationCommand(input); - * await client.send(command); - * // example id: set-notification-configuration-for-a-bucket-1482270296426 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutBucketNotificationConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutBucketOwnershipControlsCommand.ts b/clients/client-s3/src/commands/PutBucketOwnershipControlsCommand.ts index 91e416224f94e..2da4ffa17b72c 100644 --- a/clients/client-s3/src/commands/PutBucketOwnershipControlsCommand.ts +++ b/clients/client-s3/src/commands/PutBucketOwnershipControlsCommand.ts @@ -84,6 +84,7 @@ export interface PutBucketOwnershipControlsCommandOutput extends __MetadataBeare * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class PutBucketOwnershipControlsCommand extends $Command diff --git a/clients/client-s3/src/commands/PutBucketPolicyCommand.ts b/clients/client-s3/src/commands/PutBucketPolicyCommand.ts index 67634d0313dba..22a90576c28f3 100644 --- a/clients/client-s3/src/commands/PutBucketPolicyCommand.ts +++ b/clients/client-s3/src/commands/PutBucketPolicyCommand.ts @@ -135,19 +135,22 @@ export interface PutBucketPolicyCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example Set bucket policy * ```javascript * // The following example sets a permission policy on a bucket. * const input = { - * "Bucket": "examplebucket", - * "Policy": "{\"Version\": \"2012-10-17\", \"Statement\": [{ \"Sid\": \"id-1\",\"Effect\": \"Allow\",\"Principal\": {\"AWS\": \"arn:aws:iam::123456789012:root\"}, \"Action\": [ \"s3:PutObject\",\"s3:PutObjectAcl\"], \"Resource\": [\"arn:aws:s3:::acl3/*\" ] } ]}" + * Bucket: "examplebucket", + * Policy: `{"Version": "2012-10-17", "Statement": [{ "Sid": "id-1","Effect": "Allow","Principal": {"AWS": "arn:aws:iam::123456789012:root"}, "Action": [ "s3:PutObject","s3:PutObjectAcl"], "Resource": ["arn:aws:s3:::acl3/*" ] } ]}` * }; * const command = new PutBucketPolicyCommand(input); - * await client.send(command); - * // example id: set-bucket-policy-1482448903302 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutBucketPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutBucketReplicationCommand.ts b/clients/client-s3/src/commands/PutBucketReplicationCommand.ts index f249a48e1fcf5..420c0b47238fc 100644 --- a/clients/client-s3/src/commands/PutBucketReplicationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketReplicationCommand.ts @@ -194,31 +194,34 @@ export interface PutBucketReplicationCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example Set replication configuration on a bucket * ```javascript * // The following example sets replication configuration on a bucket. * const input = { - * "Bucket": "examplebucket", - * "ReplicationConfiguration": { - * "Role": "arn:aws:iam::123456789012:role/examplerole", - * "Rules": [ + * Bucket: "examplebucket", + * ReplicationConfiguration: { + * Role: "arn:aws:iam::123456789012:role/examplerole", + * Rules: [ * { - * "Destination": { - * "Bucket": "arn:aws:s3:::destinationbucket", - * "StorageClass": "STANDARD" + * Destination: { + * Bucket: "arn:aws:s3:::destinationbucket", + * StorageClass: "STANDARD" * }, - * "Prefix": "", - * "Status": "Enabled" + * Prefix: "", + * Status: "Enabled" * } * ] * } * }; * const command = new PutBucketReplicationCommand(input); - * await client.send(command); - * // example id: id-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutBucketReplicationCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutBucketRequestPaymentCommand.ts b/clients/client-s3/src/commands/PutBucketRequestPaymentCommand.ts index 876dad8d2df02..2c7b016a62ebd 100644 --- a/clients/client-s3/src/commands/PutBucketRequestPaymentCommand.ts +++ b/clients/client-s3/src/commands/PutBucketRequestPaymentCommand.ts @@ -80,21 +80,24 @@ export interface PutBucketRequestPaymentCommandOutput extends __MetadataBearer { * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example Set request payment configuration on a bucket. * ```javascript * // The following example sets request payment configuration on a bucket so that person requesting the download is charged. * const input = { - * "Bucket": "examplebucket", - * "RequestPaymentConfiguration": { - * "Payer": "Requester" + * Bucket: "examplebucket", + * RequestPaymentConfiguration: { + * Payer: "Requester" * } * }; * const command = new PutBucketRequestPaymentCommand(input); - * await client.send(command); - * // example id: set-request-payment-configuration-on-a-bucket-1482343596680 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutBucketRequestPaymentCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutBucketTaggingCommand.ts b/clients/client-s3/src/commands/PutBucketTaggingCommand.ts index 0d41cbd454392..11f716725672b 100644 --- a/clients/client-s3/src/commands/PutBucketTaggingCommand.ts +++ b/clients/client-s3/src/commands/PutBucketTaggingCommand.ts @@ -125,30 +125,33 @@ export interface PutBucketTaggingCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example Set tags on a bucket * ```javascript * // The following example sets tags on a bucket. Any existing tags are replaced. * const input = { - * "Bucket": "examplebucket", - * "Tagging": { - * "TagSet": [ + * Bucket: "examplebucket", + * Tagging: { + * TagSet: [ * { - * "Key": "Key1", - * "Value": "Value1" + * Key: "Key1", + * Value: "Value1" * }, * { - * "Key": "Key2", - * "Value": "Value2" + * Key: "Key2", + * Value: "Value2" * } * ] * } * }; * const command = new PutBucketTaggingCommand(input); - * await client.send(command); - * // example id: set-tags-on-a-bucket-1482346269066 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutBucketTaggingCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutBucketVersioningCommand.ts b/clients/client-s3/src/commands/PutBucketVersioningCommand.ts index 5c56d616144ad..c958b07926487 100644 --- a/clients/client-s3/src/commands/PutBucketVersioningCommand.ts +++ b/clients/client-s3/src/commands/PutBucketVersioningCommand.ts @@ -113,22 +113,25 @@ export interface PutBucketVersioningCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example Set versioning configuration on a bucket * ```javascript * // The following example sets versioning configuration on bucket. The configuration enables versioning on the bucket. * const input = { - * "Bucket": "examplebucket", - * "VersioningConfiguration": { - * "MFADelete": "Disabled", - * "Status": "Enabled" + * Bucket: "examplebucket", + * VersioningConfiguration: { + * MFADelete: "Disabled", + * Status: "Enabled" * } * }; * const command = new PutBucketVersioningCommand(input); - * await client.send(command); - * // example id: set-versioning-configuration-on-a-bucket-1482344186279 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutBucketVersioningCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutBucketWebsiteCommand.ts b/clients/client-s3/src/commands/PutBucketWebsiteCommand.ts index 3c9c4a53d36a1..e162c24e6c328 100644 --- a/clients/client-s3/src/commands/PutBucketWebsiteCommand.ts +++ b/clients/client-s3/src/commands/PutBucketWebsiteCommand.ts @@ -209,27 +209,30 @@ export interface PutBucketWebsiteCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example Set website configuration on a bucket * ```javascript * // The following example adds website configuration to a bucket. * const input = { - * "Bucket": "examplebucket", - * "ContentMD5": "", - * "WebsiteConfiguration": { - * "ErrorDocument": { - * "Key": "error.html" + * Bucket: "examplebucket", + * ContentMD5: "", + * WebsiteConfiguration: { + * ErrorDocument: { + * Key: "error.html" * }, - * "IndexDocument": { - * "Suffix": "index.html" + * IndexDocument: { + * Suffix: "index.html" * } * } * }; * const command = new PutBucketWebsiteCommand(input); - * await client.send(command); - * // example id: set-website-configuration-on-a-bucket-1482346836261 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutBucketWebsiteCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutObjectAclCommand.ts b/clients/client-s3/src/commands/PutObjectAclCommand.ts index 74c70cc1af467..f21fde1f82205 100644 --- a/clients/client-s3/src/commands/PutObjectAclCommand.ts +++ b/clients/client-s3/src/commands/PutObjectAclCommand.ts @@ -278,22 +278,25 @@ export interface PutObjectAclCommandOutput extends PutObjectAclOutput, __Metadat * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To grant permissions using object ACL * ```javascript * // The following example adds grants to an object ACL. The first permission grants user1 and user2 FULL_CONTROL and the AllUsers group READ permission. * const input = { - * "AccessControlPolicy": {}, - * "Bucket": "examplebucket", - * "GrantFullControl": "emailaddress=user1@example.com,emailaddress=user2@example.com", - * "GrantRead": "uri=http://acs.amazonaws.com/groups/global/AllUsers", - * "Key": "HappyFace.jpg" + * AccessControlPolicy: { /* empty *\/ }, + * Bucket: "examplebucket", + * GrantFullControl: "emailaddress=user1@example.com,emailaddress=user2@example.com", + * GrantRead: "uri=http://acs.amazonaws.com/groups/global/AllUsers", + * Key: "HappyFace.jpg" * }; * const command = new PutObjectAclCommand(input); - * await client.send(command); - * // example id: to-grant-permissions-using-object-acl-1481835549285 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class PutObjectAclCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutObjectCommand.ts b/clients/client-s3/src/commands/PutObjectCommand.ts index 4187e18ebe41a..15a2a6be27244 100644 --- a/clients/client-s3/src/commands/PutObjectCommand.ts +++ b/clients/client-s3/src/commands/PutObjectCommand.ts @@ -311,152 +311,146 @@ export interface PutObjectCommandOutput extends PutObjectOutput, __MetadataBeare * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public - * @example To upload an object + * + * @example To create an object. * ```javascript - * // The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file syntax. S3 returns VersionId of the newly created object. + * // The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response. * const input = { - * "Body": "HappyFace.jpg", - * "Bucket": "examplebucket", - * "Key": "HappyFace.jpg" + * Body: "filetoupload", + * Bucket: "examplebucket", + * Key: "objectkey" * }; * const command = new PutObjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"", - * "VersionId": "tpf3zF08nBplQK1XLOefGskR7mGDwcDk" + * ETag: `"6805f2cfc46c0f04559748bb039d69ae"`, + * VersionId: "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ" * } * *\/ - * // example id: to-upload-an-object-1481760101010 * ``` * * @example To upload an object (specify optional headers) * ```javascript * // The following example uploads an object. The request specifies optional request headers to directs S3 to use specific storage class and use server-side encryption. * const input = { - * "Body": "HappyFace.jpg", - * "Bucket": "examplebucket", - * "Key": "HappyFace.jpg", - * "ServerSideEncryption": "AES256", - * "StorageClass": "STANDARD_IA" + * Body: "HappyFace.jpg", + * Bucket: "examplebucket", + * Key: "HappyFace.jpg", + * ServerSideEncryption: "AES256", + * StorageClass: "STANDARD_IA" * }; * const command = new PutObjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"", - * "ServerSideEncryption": "AES256", - * "VersionId": "CG612hodqujkf8FaaNfp8U..FIhLROcp" + * ETag: `"6805f2cfc46c0f04559748bb039d69ae"`, + * ServerSideEncryption: "AES256", + * VersionId: "CG612hodqujkf8FaaNfp8U..FIhLROcp" * } * *\/ - * // example id: to-upload-an-object-(specify-optional-headers) * ``` * - * @example To create an object. + * @example To upload an object * ```javascript - * // The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response. + * // The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file syntax. S3 returns VersionId of the newly created object. * const input = { - * "Body": "filetoupload", - * "Bucket": "examplebucket", - * "Key": "objectkey" + * Body: "HappyFace.jpg", + * Bucket: "examplebucket", + * Key: "HappyFace.jpg" * }; * const command = new PutObjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"", - * "VersionId": "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ" + * ETag: `"6805f2cfc46c0f04559748bb039d69ae"`, + * VersionId: "tpf3zF08nBplQK1XLOefGskR7mGDwcDk" * } * *\/ - * // example id: to-create-an-object-1483147613675 * ``` * - * @example To upload an object and specify optional tags + * @example To upload an object and specify canned ACL. * ```javascript - * // The following example uploads an object. The request specifies optional object tags. The bucket is versioned, therefore S3 returns version ID of the newly created object. + * // The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response. * const input = { - * "Body": "c:\\HappyFace.jpg", - * "Bucket": "examplebucket", - * "Key": "HappyFace.jpg", - * "Tagging": "key1=value1&key2=value2" + * ACL: "authenticated-read", + * Body: "filetoupload", + * Bucket: "examplebucket", + * Key: "exampleobject" * }; * const command = new PutObjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"", - * "VersionId": "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a" + * ETag: `"6805f2cfc46c0f04559748bb039d69ae"`, + * VersionId: "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr" * } * *\/ - * // example id: to-upload-an-object-and-specify-optional-tags-1481762310955 * ``` * - * @example To upload an object and specify server-side encryption and object tags + * @example To upload an object and specify optional tags * ```javascript - * // The following example uploads an object. The request specifies the optional server-side encryption option. The request also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response. + * // The following example uploads an object. The request specifies optional object tags. The bucket is versioned, therefore S3 returns version ID of the newly created object. * const input = { - * "Body": "filetoupload", - * "Bucket": "examplebucket", - * "Key": "exampleobject", - * "ServerSideEncryption": "AES256", - * "Tagging": "key1=value1&key2=value2" + * Body: "c:\HappyFace.jpg", + * Bucket: "examplebucket", + * Key: "HappyFace.jpg", + * Tagging: "key1=value1&key2=value2" * }; * const command = new PutObjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"", - * "ServerSideEncryption": "AES256", - * "VersionId": "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt" + * ETag: `"6805f2cfc46c0f04559748bb039d69ae"`, + * VersionId: "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a" * } * *\/ - * // example id: to-upload-an-object-and-specify-server-side-encryption-and-object-tags-1483398331831 * ``` * - * @example To upload object and specify user-defined metadata + * @example To upload an object and specify server-side encryption and object tags * ```javascript - * // The following example creates an object. The request also specifies optional metadata. If the bucket is versioning enabled, S3 returns version ID in response. + * // The following example uploads an object. The request specifies the optional server-side encryption option. The request also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response. * const input = { - * "Body": "filetoupload", - * "Bucket": "examplebucket", - * "Key": "exampleobject", - * "Metadata": { - * "metadata1": "value1", - * "metadata2": "value2" - * } + * Body: "filetoupload", + * Bucket: "examplebucket", + * Key: "exampleobject", + * ServerSideEncryption: "AES256", + * Tagging: "key1=value1&key2=value2" * }; * const command = new PutObjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"", - * "VersionId": "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0" + * ETag: `"6805f2cfc46c0f04559748bb039d69ae"`, + * ServerSideEncryption: "AES256", + * VersionId: "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt" * } * *\/ - * // example id: to-upload-object-and-specify-user-defined-metadata-1483396974757 * ``` * - * @example To upload an object and specify canned ACL. + * @example To upload object and specify user-defined metadata * ```javascript - * // The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response. + * // The following example creates an object. The request also specifies optional metadata. If the bucket is versioning enabled, S3 returns version ID in response. * const input = { - * "ACL": "authenticated-read", - * "Body": "filetoupload", - * "Bucket": "examplebucket", - * "Key": "exampleobject" + * Body: "filetoupload", + * Bucket: "examplebucket", + * Key: "exampleobject", + * Metadata: { + * metadata1: "value1", + * metadata2: "value2" + * } * }; * const command = new PutObjectCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"", - * "VersionId": "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr" + * ETag: `"6805f2cfc46c0f04559748bb039d69ae"`, + * VersionId: "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0" * } * *\/ - * // example id: to-upload-an-object-and-specify-canned-acl-1483397779571 * ``` * + * @public */ export class PutObjectCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutObjectLegalHoldCommand.ts b/clients/client-s3/src/commands/PutObjectLegalHoldCommand.ts index 826295b1bdea8..39d1084bb0208 100644 --- a/clients/client-s3/src/commands/PutObjectLegalHoldCommand.ts +++ b/clients/client-s3/src/commands/PutObjectLegalHoldCommand.ts @@ -72,6 +72,7 @@ export interface PutObjectLegalHoldCommandOutput extends PutObjectLegalHoldOutpu * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class PutObjectLegalHoldCommand extends $Command diff --git a/clients/client-s3/src/commands/PutObjectLockConfigurationCommand.ts b/clients/client-s3/src/commands/PutObjectLockConfigurationCommand.ts index 778a5dd84a029..6faa48ddb967c 100644 --- a/clients/client-s3/src/commands/PutObjectLockConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutObjectLockConfigurationCommand.ts @@ -95,6 +95,7 @@ export interface PutObjectLockConfigurationCommandOutput extends PutObjectLockCo * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class PutObjectLockConfigurationCommand extends $Command diff --git a/clients/client-s3/src/commands/PutObjectRetentionCommand.ts b/clients/client-s3/src/commands/PutObjectRetentionCommand.ts index 0f1c05feba80b..165927f79dd0b 100644 --- a/clients/client-s3/src/commands/PutObjectRetentionCommand.ts +++ b/clients/client-s3/src/commands/PutObjectRetentionCommand.ts @@ -75,6 +75,7 @@ export interface PutObjectRetentionCommandOutput extends PutObjectRetentionOutpu * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class PutObjectRetentionCommand extends $Command diff --git a/clients/client-s3/src/commands/PutObjectTaggingCommand.ts b/clients/client-s3/src/commands/PutObjectTaggingCommand.ts index e20b0c491d732..e3146fdb7e93d 100644 --- a/clients/client-s3/src/commands/PutObjectTaggingCommand.ts +++ b/clients/client-s3/src/commands/PutObjectTaggingCommand.ts @@ -126,36 +126,36 @@ export interface PutObjectTaggingCommandOutput extends PutObjectTaggingOutput, _ * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To add tags to an existing object * ```javascript * // The following example adds tags to an existing object. * const input = { - * "Bucket": "examplebucket", - * "Key": "HappyFace.jpg", - * "Tagging": { - * "TagSet": [ + * Bucket: "examplebucket", + * Key: "HappyFace.jpg", + * Tagging: { + * TagSet: [ * { - * "Key": "Key3", - * "Value": "Value3" + * Key: "Key3", + * Value: "Value3" * }, * { - * "Key": "Key4", - * "Value": "Value4" + * Key: "Key4", + * Value: "Value4" * } * ] * } * }; * const command = new PutObjectTaggingCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "VersionId": "null" + * VersionId: "null" * } * *\/ - * // example id: to-add-tags-to-an-existing-object-1481764668793 * ``` * + * @public */ export class PutObjectTaggingCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/PutPublicAccessBlockCommand.ts b/clients/client-s3/src/commands/PutPublicAccessBlockCommand.ts index 6331aae3af768..ace89844eeef4 100644 --- a/clients/client-s3/src/commands/PutPublicAccessBlockCommand.ts +++ b/clients/client-s3/src/commands/PutPublicAccessBlockCommand.ts @@ -102,6 +102,7 @@ export interface PutPublicAccessBlockCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class PutPublicAccessBlockCommand extends $Command diff --git a/clients/client-s3/src/commands/RestoreObjectCommand.ts b/clients/client-s3/src/commands/RestoreObjectCommand.ts index 3f000cb0a9e37..7184eb3fd4018 100644 --- a/clients/client-s3/src/commands/RestoreObjectCommand.ts +++ b/clients/client-s3/src/commands/RestoreObjectCommand.ts @@ -351,25 +351,28 @@ export interface RestoreObjectCommandOutput extends RestoreObjectOutput, __Metad * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To restore an archived object * ```javascript * // The following example restores for one day an archived copy of an object back into Amazon S3 bucket. * const input = { - * "Bucket": "examplebucket", - * "Key": "archivedobjectkey", - * "RestoreRequest": { - * "Days": 1, - * "GlacierJobParameters": { - * "Tier": "Expedited" + * Bucket: "examplebucket", + * Key: "archivedobjectkey", + * RestoreRequest: { + * Days: 1, + * GlacierJobParameters: { + * Tier: "Expedited" * } * } * }; * const command = new RestoreObjectCommand(input); - * await client.send(command); - * // example id: to-restore-an-archived-object-1483049329953 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class RestoreObjectCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/SelectObjectContentCommand.ts b/clients/client-s3/src/commands/SelectObjectContentCommand.ts index 6a0c3db78a689..417cd817de1b9 100644 --- a/clients/client-s3/src/commands/SelectObjectContentCommand.ts +++ b/clients/client-s3/src/commands/SelectObjectContentCommand.ts @@ -245,6 +245,7 @@ export interface SelectObjectContentCommandOutput extends SelectObjectContentOut * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class SelectObjectContentCommand extends $Command diff --git a/clients/client-s3/src/commands/UploadPartCommand.ts b/clients/client-s3/src/commands/UploadPartCommand.ts index b2e2cda7004c6..e7b4a0006d8f2 100644 --- a/clients/client-s3/src/commands/UploadPartCommand.ts +++ b/clients/client-s3/src/commands/UploadPartCommand.ts @@ -283,27 +283,27 @@ export interface UploadPartCommandOutput extends UploadPartOutput, __MetadataBea * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To upload a part * ```javascript * // The following example uploads part 1 of a multipart upload. The example specifies a file name for the part data. The Upload ID is same that is returned by the initiate multipart upload. * const input = { - * "Body": "fileToUpload", - * "Bucket": "examplebucket", - * "Key": "examplelargeobject", - * "PartNumber": "1", - * "UploadId": "xadcOB_7YPBOJuoFiQ9cz4P3Pe6FIZwO4f7wN93uHsNBEw97pl5eNwzExg0LAT2dUN91cOmrEQHDsP3WA60CEg--" + * Body: "fileToUpload", + * Bucket: "examplebucket", + * Key: "examplelargeobject", + * PartNumber: 1, + * UploadId: "xadcOB_7YPBOJuoFiQ9cz4P3Pe6FIZwO4f7wN93uHsNBEw97pl5eNwzExg0LAT2dUN91cOmrEQHDsP3WA60CEg--" * }; * const command = new UploadPartCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ETag": "\"d8c2eafd90c266e19ab9dcacc479f8af\"" + * ETag: `"d8c2eafd90c266e19ab9dcacc479f8af"` * } * *\/ - * // example id: to-upload-a-part-1481847914943 * ``` * + * @public */ export class UploadPartCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/UploadPartCopyCommand.ts b/clients/client-s3/src/commands/UploadPartCopyCommand.ts index 8ea17ff3b3db4..e447294a701cb 100644 --- a/clients/client-s3/src/commands/UploadPartCopyCommand.ts +++ b/clients/client-s3/src/commands/UploadPartCopyCommand.ts @@ -320,54 +320,53 @@ export interface UploadPartCopyCommandOutput extends UploadPartCopyOutput, __Met * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* - * @public + * * @example To upload a part by copying byte range from an existing object as data source * ```javascript * // The following example uploads a part of a multipart upload by copying a specified byte range from an existing object as data source. * const input = { - * "Bucket": "examplebucket", - * "CopySource": "/bucketname/sourceobjectkey", - * "CopySourceRange": "bytes=1-100000", - * "Key": "examplelargeobject", - * "PartNumber": "2", - * "UploadId": "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--" + * Bucket: "examplebucket", + * CopySource: "/bucketname/sourceobjectkey", + * CopySourceRange: "bytes=1-100000", + * Key: "examplelargeobject", + * PartNumber: 2, + * UploadId: "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--" * }; * const command = new UploadPartCopyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CopyPartResult": { - * "ETag": "\"65d16d19e65a7508a51f043180edcc36\"", - * "LastModified": "2016-12-29T21:44:28.000Z" + * CopyPartResult: { + * ETag: `"65d16d19e65a7508a51f043180edcc36"`, + * LastModified: "2016-12-29T21:44:28.000Z" * } * } * *\/ - * // example id: to-upload-a-part-by-copying-byte-range-from-an-existing-object-as-data-source-1483048068594 * ``` * * @example To upload a part by copying data from an existing object as data source * ```javascript * // The following example uploads a part of a multipart upload by copying data from an existing object as data source. * const input = { - * "Bucket": "examplebucket", - * "CopySource": "/bucketname/sourceobjectkey", - * "Key": "examplelargeobject", - * "PartNumber": "1", - * "UploadId": "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--" + * Bucket: "examplebucket", + * CopySource: "/bucketname/sourceobjectkey", + * Key: "examplelargeobject", + * PartNumber: 1, + * UploadId: "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--" * }; * const command = new UploadPartCopyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CopyPartResult": { - * "ETag": "\"b0c6f0e7e054ab8fa2536a2677f8734d\"", - * "LastModified": "2016-12-29T21:24:43.000Z" + * CopyPartResult: { + * ETag: `"b0c6f0e7e054ab8fa2536a2677f8734d"`, + * LastModified: "2016-12-29T21:24:43.000Z" * } * } * *\/ - * // example id: to-upload-a-part-by-copying-data-from-an-existing-object-as-data-source-1483046746348 * ``` * + * @public */ export class UploadPartCopyCommand extends $Command .classBuilder< diff --git a/clients/client-s3/src/commands/WriteGetObjectResponseCommand.ts b/clients/client-s3/src/commands/WriteGetObjectResponseCommand.ts index a818d18df150e..17f6487b5c913 100644 --- a/clients/client-s3/src/commands/WriteGetObjectResponseCommand.ts +++ b/clients/client-s3/src/commands/WriteGetObjectResponseCommand.ts @@ -134,6 +134,7 @@ export interface WriteGetObjectResponseCommandOutput extends __MetadataBearer {} * @throws {@link S3ServiceException} *

Base exception class for all service exceptions from S3 service.

* + * * @public */ export class WriteGetObjectResponseCommand extends $Command diff --git a/clients/client-s3outposts/src/commands/CreateEndpointCommand.ts b/clients/client-s3outposts/src/commands/CreateEndpointCommand.ts index 3972dd81410aa..a2bc6116e10a8 100644 --- a/clients/client-s3outposts/src/commands/CreateEndpointCommand.ts +++ b/clients/client-s3outposts/src/commands/CreateEndpointCommand.ts @@ -97,6 +97,7 @@ export interface CreateEndpointCommandOutput extends CreateEndpointResult, __Met * @throws {@link S3OutpostsServiceException} *

Base exception class for all service exceptions from S3Outposts service.

* + * * @public */ export class CreateEndpointCommand extends $Command diff --git a/clients/client-s3outposts/src/commands/DeleteEndpointCommand.ts b/clients/client-s3outposts/src/commands/DeleteEndpointCommand.ts index 6a5362fcb4aac..ded7fbea821d5 100644 --- a/clients/client-s3outposts/src/commands/DeleteEndpointCommand.ts +++ b/clients/client-s3outposts/src/commands/DeleteEndpointCommand.ts @@ -89,6 +89,7 @@ export interface DeleteEndpointCommandOutput extends __MetadataBearer {} * @throws {@link S3OutpostsServiceException} *

Base exception class for all service exceptions from S3Outposts service.

* + * * @public */ export class DeleteEndpointCommand extends $Command diff --git a/clients/client-s3outposts/src/commands/ListEndpointsCommand.ts b/clients/client-s3outposts/src/commands/ListEndpointsCommand.ts index 52515e8031498..721fe9ca9543f 100644 --- a/clients/client-s3outposts/src/commands/ListEndpointsCommand.ts +++ b/clients/client-s3outposts/src/commands/ListEndpointsCommand.ts @@ -107,6 +107,7 @@ export interface ListEndpointsCommandOutput extends ListEndpointsResult, __Metad * @throws {@link S3OutpostsServiceException} *

Base exception class for all service exceptions from S3Outposts service.

* + * * @public */ export class ListEndpointsCommand extends $Command diff --git a/clients/client-s3outposts/src/commands/ListOutpostsWithS3Command.ts b/clients/client-s3outposts/src/commands/ListOutpostsWithS3Command.ts index c8baa302763de..e5d9744b739ef 100644 --- a/clients/client-s3outposts/src/commands/ListOutpostsWithS3Command.ts +++ b/clients/client-s3outposts/src/commands/ListOutpostsWithS3Command.ts @@ -79,6 +79,7 @@ export interface ListOutpostsWithS3CommandOutput extends ListOutpostsWithS3Resul * @throws {@link S3OutpostsServiceException} *

Base exception class for all service exceptions from S3Outposts service.

* + * * @public */ export class ListOutpostsWithS3Command extends $Command diff --git a/clients/client-s3outposts/src/commands/ListSharedEndpointsCommand.ts b/clients/client-s3outposts/src/commands/ListSharedEndpointsCommand.ts index 6aabd621d334e..52d2bcd330580 100644 --- a/clients/client-s3outposts/src/commands/ListSharedEndpointsCommand.ts +++ b/clients/client-s3outposts/src/commands/ListSharedEndpointsCommand.ts @@ -108,6 +108,7 @@ export interface ListSharedEndpointsCommandOutput extends ListSharedEndpointsRes * @throws {@link S3OutpostsServiceException} *

Base exception class for all service exceptions from S3Outposts service.

* + * * @public */ export class ListSharedEndpointsCommand extends $Command diff --git a/clients/client-s3tables/src/commands/CreateNamespaceCommand.ts b/clients/client-s3tables/src/commands/CreateNamespaceCommand.ts index 8b448125f80e2..6aaf478a081d8 100644 --- a/clients/client-s3tables/src/commands/CreateNamespaceCommand.ts +++ b/clients/client-s3tables/src/commands/CreateNamespaceCommand.ts @@ -86,6 +86,7 @@ export interface CreateNamespaceCommandOutput extends CreateNamespaceResponse, _ * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class CreateNamespaceCommand extends $Command diff --git a/clients/client-s3tables/src/commands/CreateTableBucketCommand.ts b/clients/client-s3tables/src/commands/CreateTableBucketCommand.ts index cd607ae19bfbc..95924621fdb01 100644 --- a/clients/client-s3tables/src/commands/CreateTableBucketCommand.ts +++ b/clients/client-s3tables/src/commands/CreateTableBucketCommand.ts @@ -80,6 +80,7 @@ export interface CreateTableBucketCommandOutput extends CreateTableBucketRespons * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class CreateTableBucketCommand extends $Command diff --git a/clients/client-s3tables/src/commands/CreateTableCommand.ts b/clients/client-s3tables/src/commands/CreateTableCommand.ts index eab597b5a5656..75acdd6513d62 100644 --- a/clients/client-s3tables/src/commands/CreateTableCommand.ts +++ b/clients/client-s3tables/src/commands/CreateTableCommand.ts @@ -100,6 +100,7 @@ export interface CreateTableCommandOutput extends CreateTableResponse, __Metadat * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class CreateTableCommand extends $Command diff --git a/clients/client-s3tables/src/commands/DeleteNamespaceCommand.ts b/clients/client-s3tables/src/commands/DeleteNamespaceCommand.ts index df5d1637a4cd2..32e933a171b6c 100644 --- a/clients/client-s3tables/src/commands/DeleteNamespaceCommand.ts +++ b/clients/client-s3tables/src/commands/DeleteNamespaceCommand.ts @@ -79,6 +79,7 @@ export interface DeleteNamespaceCommandOutput extends __MetadataBearer {} * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class DeleteNamespaceCommand extends $Command diff --git a/clients/client-s3tables/src/commands/DeleteTableBucketCommand.ts b/clients/client-s3tables/src/commands/DeleteTableBucketCommand.ts index 5515265dc3bce..319a75302ea5d 100644 --- a/clients/client-s3tables/src/commands/DeleteTableBucketCommand.ts +++ b/clients/client-s3tables/src/commands/DeleteTableBucketCommand.ts @@ -78,6 +78,7 @@ export interface DeleteTableBucketCommandOutput extends __MetadataBearer {} * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class DeleteTableBucketCommand extends $Command diff --git a/clients/client-s3tables/src/commands/DeleteTableBucketPolicyCommand.ts b/clients/client-s3tables/src/commands/DeleteTableBucketPolicyCommand.ts index 24f93088d8dd1..0d648ae9b9902 100644 --- a/clients/client-s3tables/src/commands/DeleteTableBucketPolicyCommand.ts +++ b/clients/client-s3tables/src/commands/DeleteTableBucketPolicyCommand.ts @@ -78,6 +78,7 @@ export interface DeleteTableBucketPolicyCommandOutput extends __MetadataBearer { * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class DeleteTableBucketPolicyCommand extends $Command diff --git a/clients/client-s3tables/src/commands/DeleteTableCommand.ts b/clients/client-s3tables/src/commands/DeleteTableCommand.ts index 888c4e7a77dfa..9bab9af14c761 100644 --- a/clients/client-s3tables/src/commands/DeleteTableCommand.ts +++ b/clients/client-s3tables/src/commands/DeleteTableCommand.ts @@ -81,6 +81,7 @@ export interface DeleteTableCommandOutput extends __MetadataBearer {} * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class DeleteTableCommand extends $Command diff --git a/clients/client-s3tables/src/commands/DeleteTablePolicyCommand.ts b/clients/client-s3tables/src/commands/DeleteTablePolicyCommand.ts index cc68e85b938f1..3d2f52ac50e54 100644 --- a/clients/client-s3tables/src/commands/DeleteTablePolicyCommand.ts +++ b/clients/client-s3tables/src/commands/DeleteTablePolicyCommand.ts @@ -80,6 +80,7 @@ export interface DeleteTablePolicyCommandOutput extends __MetadataBearer {} * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class DeleteTablePolicyCommand extends $Command diff --git a/clients/client-s3tables/src/commands/GetNamespaceCommand.ts b/clients/client-s3tables/src/commands/GetNamespaceCommand.ts index a45e37ffe5266..46b6ab1e3b070 100644 --- a/clients/client-s3tables/src/commands/GetNamespaceCommand.ts +++ b/clients/client-s3tables/src/commands/GetNamespaceCommand.ts @@ -89,6 +89,7 @@ export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __Metad * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class GetNamespaceCommand extends $Command diff --git a/clients/client-s3tables/src/commands/GetTableBucketCommand.ts b/clients/client-s3tables/src/commands/GetTableBucketCommand.ts index b010fb2e4c313..18ba31ae8c2f6 100644 --- a/clients/client-s3tables/src/commands/GetTableBucketCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableBucketCommand.ts @@ -86,6 +86,7 @@ export interface GetTableBucketCommandOutput extends GetTableBucketResponse, __M * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class GetTableBucketCommand extends $Command diff --git a/clients/client-s3tables/src/commands/GetTableBucketMaintenanceConfigurationCommand.ts b/clients/client-s3tables/src/commands/GetTableBucketMaintenanceConfigurationCommand.ts index 0699e0acbb5f1..92eaa07c5cf26 100644 --- a/clients/client-s3tables/src/commands/GetTableBucketMaintenanceConfigurationCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableBucketMaintenanceConfigurationCommand.ts @@ -100,6 +100,7 @@ export interface GetTableBucketMaintenanceConfigurationCommandOutput * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class GetTableBucketMaintenanceConfigurationCommand extends $Command diff --git a/clients/client-s3tables/src/commands/GetTableBucketPolicyCommand.ts b/clients/client-s3tables/src/commands/GetTableBucketPolicyCommand.ts index f9e406dd8a9b4..148b5747381ea 100644 --- a/clients/client-s3tables/src/commands/GetTableBucketPolicyCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableBucketPolicyCommand.ts @@ -80,6 +80,7 @@ export interface GetTableBucketPolicyCommandOutput extends GetTableBucketPolicyR * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class GetTableBucketPolicyCommand extends $Command diff --git a/clients/client-s3tables/src/commands/GetTableCommand.ts b/clients/client-s3tables/src/commands/GetTableCommand.ts index 2d98cfb807039..b3532b5959051 100644 --- a/clients/client-s3tables/src/commands/GetTableCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableCommand.ts @@ -100,6 +100,7 @@ export interface GetTableCommandOutput extends GetTableResponse, __MetadataBeare * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class GetTableCommand extends $Command diff --git a/clients/client-s3tables/src/commands/GetTableMaintenanceConfigurationCommand.ts b/clients/client-s3tables/src/commands/GetTableMaintenanceConfigurationCommand.ts index 23f70f33a4608..ac6445070930c 100644 --- a/clients/client-s3tables/src/commands/GetTableMaintenanceConfigurationCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableMaintenanceConfigurationCommand.ts @@ -101,6 +101,7 @@ export interface GetTableMaintenanceConfigurationCommandOutput * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class GetTableMaintenanceConfigurationCommand extends $Command diff --git a/clients/client-s3tables/src/commands/GetTableMaintenanceJobStatusCommand.ts b/clients/client-s3tables/src/commands/GetTableMaintenanceJobStatusCommand.ts index 543519bd30c19..937abd3c8ab04 100644 --- a/clients/client-s3tables/src/commands/GetTableMaintenanceJobStatusCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableMaintenanceJobStatusCommand.ts @@ -94,6 +94,7 @@ export interface GetTableMaintenanceJobStatusCommandOutput * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class GetTableMaintenanceJobStatusCommand extends $Command diff --git a/clients/client-s3tables/src/commands/GetTableMetadataLocationCommand.ts b/clients/client-s3tables/src/commands/GetTableMetadataLocationCommand.ts index 6f9a24522c8d5..c0c1c0ce4d16a 100644 --- a/clients/client-s3tables/src/commands/GetTableMetadataLocationCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableMetadataLocationCommand.ts @@ -84,6 +84,7 @@ export interface GetTableMetadataLocationCommandOutput extends GetTableMetadataL * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class GetTableMetadataLocationCommand extends $Command diff --git a/clients/client-s3tables/src/commands/GetTablePolicyCommand.ts b/clients/client-s3tables/src/commands/GetTablePolicyCommand.ts index 896d5ca5cb371..4a733f6f1e23f 100644 --- a/clients/client-s3tables/src/commands/GetTablePolicyCommand.ts +++ b/clients/client-s3tables/src/commands/GetTablePolicyCommand.ts @@ -82,6 +82,7 @@ export interface GetTablePolicyCommandOutput extends GetTablePolicyResponse, __M * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class GetTablePolicyCommand extends $Command diff --git a/clients/client-s3tables/src/commands/ListNamespacesCommand.ts b/clients/client-s3tables/src/commands/ListNamespacesCommand.ts index 8b01f39a71968..f7316d95b18db 100644 --- a/clients/client-s3tables/src/commands/ListNamespacesCommand.ts +++ b/clients/client-s3tables/src/commands/ListNamespacesCommand.ts @@ -96,6 +96,7 @@ export interface ListNamespacesCommandOutput extends ListNamespacesResponse, __M * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class ListNamespacesCommand extends $Command diff --git a/clients/client-s3tables/src/commands/ListTableBucketsCommand.ts b/clients/client-s3tables/src/commands/ListTableBucketsCommand.ts index a34b22b73fef8..f541fdc8a6755 100644 --- a/clients/client-s3tables/src/commands/ListTableBucketsCommand.ts +++ b/clients/client-s3tables/src/commands/ListTableBucketsCommand.ts @@ -93,6 +93,7 @@ export interface ListTableBucketsCommandOutput extends ListTableBucketsResponse, * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class ListTableBucketsCommand extends $Command diff --git a/clients/client-s3tables/src/commands/ListTablesCommand.ts b/clients/client-s3tables/src/commands/ListTablesCommand.ts index 41271f1f9b28b..e6cb82b9aac30 100644 --- a/clients/client-s3tables/src/commands/ListTablesCommand.ts +++ b/clients/client-s3tables/src/commands/ListTablesCommand.ts @@ -96,6 +96,7 @@ export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataB * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class ListTablesCommand extends $Command diff --git a/clients/client-s3tables/src/commands/PutTableBucketMaintenanceConfigurationCommand.ts b/clients/client-s3tables/src/commands/PutTableBucketMaintenanceConfigurationCommand.ts index f7ad89af4d975..6b22ced98ccc6 100644 --- a/clients/client-s3tables/src/commands/PutTableBucketMaintenanceConfigurationCommand.ts +++ b/clients/client-s3tables/src/commands/PutTableBucketMaintenanceConfigurationCommand.ts @@ -93,6 +93,7 @@ export interface PutTableBucketMaintenanceConfigurationCommandOutput extends __M * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class PutTableBucketMaintenanceConfigurationCommand extends $Command diff --git a/clients/client-s3tables/src/commands/PutTableBucketPolicyCommand.ts b/clients/client-s3tables/src/commands/PutTableBucketPolicyCommand.ts index dbd3ee4bd0450..fe51d37a6b074 100644 --- a/clients/client-s3tables/src/commands/PutTableBucketPolicyCommand.ts +++ b/clients/client-s3tables/src/commands/PutTableBucketPolicyCommand.ts @@ -80,6 +80,7 @@ export interface PutTableBucketPolicyCommandOutput extends __MetadataBearer {} * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class PutTableBucketPolicyCommand extends $Command diff --git a/clients/client-s3tables/src/commands/PutTableMaintenanceConfigurationCommand.ts b/clients/client-s3tables/src/commands/PutTableMaintenanceConfigurationCommand.ts index 389aedb6c17b9..744eb5930fdea 100644 --- a/clients/client-s3tables/src/commands/PutTableMaintenanceConfigurationCommand.ts +++ b/clients/client-s3tables/src/commands/PutTableMaintenanceConfigurationCommand.ts @@ -97,6 +97,7 @@ export interface PutTableMaintenanceConfigurationCommandOutput extends __Metadat * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class PutTableMaintenanceConfigurationCommand extends $Command diff --git a/clients/client-s3tables/src/commands/PutTablePolicyCommand.ts b/clients/client-s3tables/src/commands/PutTablePolicyCommand.ts index bec29b25b9316..49272bcdfc061 100644 --- a/clients/client-s3tables/src/commands/PutTablePolicyCommand.ts +++ b/clients/client-s3tables/src/commands/PutTablePolicyCommand.ts @@ -82,6 +82,7 @@ export interface PutTablePolicyCommandOutput extends __MetadataBearer {} * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class PutTablePolicyCommand extends $Command diff --git a/clients/client-s3tables/src/commands/RenameTableCommand.ts b/clients/client-s3tables/src/commands/RenameTableCommand.ts index e81942f93be83..caa8902ca167a 100644 --- a/clients/client-s3tables/src/commands/RenameTableCommand.ts +++ b/clients/client-s3tables/src/commands/RenameTableCommand.ts @@ -83,6 +83,7 @@ export interface RenameTableCommandOutput extends __MetadataBearer {} * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class RenameTableCommand extends $Command diff --git a/clients/client-s3tables/src/commands/UpdateTableMetadataLocationCommand.ts b/clients/client-s3tables/src/commands/UpdateTableMetadataLocationCommand.ts index 3374a660a673c..7f217871e7991 100644 --- a/clients/client-s3tables/src/commands/UpdateTableMetadataLocationCommand.ts +++ b/clients/client-s3tables/src/commands/UpdateTableMetadataLocationCommand.ts @@ -95,6 +95,7 @@ export interface UpdateTableMetadataLocationCommandOutput * @throws {@link S3TablesServiceException} *

Base exception class for all service exceptions from S3Tables service.

* + * * @public */ export class UpdateTableMetadataLocationCommand extends $Command diff --git a/clients/client-sagemaker-a2i-runtime/src/commands/DeleteHumanLoopCommand.ts b/clients/client-sagemaker-a2i-runtime/src/commands/DeleteHumanLoopCommand.ts index e9cdca8b3d15e..9bb15e53683c3 100644 --- a/clients/client-sagemaker-a2i-runtime/src/commands/DeleteHumanLoopCommand.ts +++ b/clients/client-sagemaker-a2i-runtime/src/commands/DeleteHumanLoopCommand.ts @@ -76,6 +76,7 @@ export interface DeleteHumanLoopCommandOutput extends DeleteHumanLoopResponse, _ * @throws {@link SageMakerA2IRuntimeServiceException} *

Base exception class for all service exceptions from SageMakerA2IRuntime service.

* + * * @public */ export class DeleteHumanLoopCommand extends $Command diff --git a/clients/client-sagemaker-a2i-runtime/src/commands/DescribeHumanLoopCommand.ts b/clients/client-sagemaker-a2i-runtime/src/commands/DescribeHumanLoopCommand.ts index f5cf042d21166..8886cd757a16c 100644 --- a/clients/client-sagemaker-a2i-runtime/src/commands/DescribeHumanLoopCommand.ts +++ b/clients/client-sagemaker-a2i-runtime/src/commands/DescribeHumanLoopCommand.ts @@ -86,6 +86,7 @@ export interface DescribeHumanLoopCommandOutput extends DescribeHumanLoopRespons * @throws {@link SageMakerA2IRuntimeServiceException} *

Base exception class for all service exceptions from SageMakerA2IRuntime service.

* + * * @public */ export class DescribeHumanLoopCommand extends $Command diff --git a/clients/client-sagemaker-a2i-runtime/src/commands/ListHumanLoopsCommand.ts b/clients/client-sagemaker-a2i-runtime/src/commands/ListHumanLoopsCommand.ts index dc79532c7813c..8ea03960ac09e 100644 --- a/clients/client-sagemaker-a2i-runtime/src/commands/ListHumanLoopsCommand.ts +++ b/clients/client-sagemaker-a2i-runtime/src/commands/ListHumanLoopsCommand.ts @@ -90,6 +90,7 @@ export interface ListHumanLoopsCommandOutput extends ListHumanLoopsResponse, __M * @throws {@link SageMakerA2IRuntimeServiceException} *

Base exception class for all service exceptions from SageMakerA2IRuntime service.

* + * * @public */ export class ListHumanLoopsCommand extends $Command diff --git a/clients/client-sagemaker-a2i-runtime/src/commands/StartHumanLoopCommand.ts b/clients/client-sagemaker-a2i-runtime/src/commands/StartHumanLoopCommand.ts index e4ec559f7faf9..eee6d18e1207a 100644 --- a/clients/client-sagemaker-a2i-runtime/src/commands/StartHumanLoopCommand.ts +++ b/clients/client-sagemaker-a2i-runtime/src/commands/StartHumanLoopCommand.ts @@ -93,6 +93,7 @@ export interface StartHumanLoopCommandOutput extends StartHumanLoopResponse, __M * @throws {@link SageMakerA2IRuntimeServiceException} *

Base exception class for all service exceptions from SageMakerA2IRuntime service.

* + * * @public */ export class StartHumanLoopCommand extends $Command diff --git a/clients/client-sagemaker-a2i-runtime/src/commands/StopHumanLoopCommand.ts b/clients/client-sagemaker-a2i-runtime/src/commands/StopHumanLoopCommand.ts index 087c0603948f9..bddaa74c4e159 100644 --- a/clients/client-sagemaker-a2i-runtime/src/commands/StopHumanLoopCommand.ts +++ b/clients/client-sagemaker-a2i-runtime/src/commands/StopHumanLoopCommand.ts @@ -74,6 +74,7 @@ export interface StopHumanLoopCommandOutput extends StopHumanLoopResponse, __Met * @throws {@link SageMakerA2IRuntimeServiceException} *

Base exception class for all service exceptions from SageMakerA2IRuntime service.

* + * * @public */ export class StopHumanLoopCommand extends $Command diff --git a/clients/client-sagemaker-edge/src/commands/GetDeploymentsCommand.ts b/clients/client-sagemaker-edge/src/commands/GetDeploymentsCommand.ts index cd6851301d41b..074d4a384b9ff 100644 --- a/clients/client-sagemaker-edge/src/commands/GetDeploymentsCommand.ts +++ b/clients/client-sagemaker-edge/src/commands/GetDeploymentsCommand.ts @@ -77,6 +77,7 @@ export interface GetDeploymentsCommandOutput extends GetDeploymentsResult, __Met * @throws {@link SagemakerEdgeServiceException} *

Base exception class for all service exceptions from SagemakerEdge service.

* + * * @public */ export class GetDeploymentsCommand extends $Command diff --git a/clients/client-sagemaker-edge/src/commands/GetDeviceRegistrationCommand.ts b/clients/client-sagemaker-edge/src/commands/GetDeviceRegistrationCommand.ts index 75c37dadc47cf..eea8cbab57283 100644 --- a/clients/client-sagemaker-edge/src/commands/GetDeviceRegistrationCommand.ts +++ b/clients/client-sagemaker-edge/src/commands/GetDeviceRegistrationCommand.ts @@ -61,6 +61,7 @@ export interface GetDeviceRegistrationCommandOutput extends GetDeviceRegistratio * @throws {@link SagemakerEdgeServiceException} *

Base exception class for all service exceptions from SagemakerEdge service.

* + * * @public */ export class GetDeviceRegistrationCommand extends $Command diff --git a/clients/client-sagemaker-edge/src/commands/SendHeartbeatCommand.ts b/clients/client-sagemaker-edge/src/commands/SendHeartbeatCommand.ts index 93d8430ab91df..aa7b7c981913c 100644 --- a/clients/client-sagemaker-edge/src/commands/SendHeartbeatCommand.ts +++ b/clients/client-sagemaker-edge/src/commands/SendHeartbeatCommand.ts @@ -102,6 +102,7 @@ export interface SendHeartbeatCommandOutput extends __MetadataBearer {} * @throws {@link SagemakerEdgeServiceException} *

Base exception class for all service exceptions from SagemakerEdge service.

* + * * @public */ export class SendHeartbeatCommand extends $Command diff --git a/clients/client-sagemaker-featurestore-runtime/src/commands/BatchGetRecordCommand.ts b/clients/client-sagemaker-featurestore-runtime/src/commands/BatchGetRecordCommand.ts index 25929353cb9b4..a13aa16209570 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/commands/BatchGetRecordCommand.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/commands/BatchGetRecordCommand.ts @@ -117,6 +117,7 @@ export interface BatchGetRecordCommandOutput extends BatchGetRecordResponse, __M * @throws {@link SageMakerFeatureStoreRuntimeServiceException} *

Base exception class for all service exceptions from SageMakerFeatureStoreRuntime service.

* + * * @public */ export class BatchGetRecordCommand extends $Command diff --git a/clients/client-sagemaker-featurestore-runtime/src/commands/DeleteRecordCommand.ts b/clients/client-sagemaker-featurestore-runtime/src/commands/DeleteRecordCommand.ts index 9d06f8ac29815..29947ae45a48f 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/commands/DeleteRecordCommand.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/commands/DeleteRecordCommand.ts @@ -109,6 +109,7 @@ export interface DeleteRecordCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerFeatureStoreRuntimeServiceException} *

Base exception class for all service exceptions from SageMakerFeatureStoreRuntime service.

* + * * @public */ export class DeleteRecordCommand extends $Command diff --git a/clients/client-sagemaker-featurestore-runtime/src/commands/GetRecordCommand.ts b/clients/client-sagemaker-featurestore-runtime/src/commands/GetRecordCommand.ts index 385d3c23f12cf..238c0255a5a9b 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/commands/GetRecordCommand.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/commands/GetRecordCommand.ts @@ -91,6 +91,7 @@ export interface GetRecordCommandOutput extends GetRecordResponse, __MetadataBea * @throws {@link SageMakerFeatureStoreRuntimeServiceException} *

Base exception class for all service exceptions from SageMakerFeatureStoreRuntime service.

* + * * @public */ export class GetRecordCommand extends $Command diff --git a/clients/client-sagemaker-featurestore-runtime/src/commands/PutRecordCommand.ts b/clients/client-sagemaker-featurestore-runtime/src/commands/PutRecordCommand.ts index ba3c736783fe2..3ea7e34ccdcf9 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/commands/PutRecordCommand.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/commands/PutRecordCommand.ts @@ -101,6 +101,7 @@ export interface PutRecordCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerFeatureStoreRuntimeServiceException} *

Base exception class for all service exceptions from SageMakerFeatureStoreRuntime service.

* + * * @public */ export class PutRecordCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/DeleteEarthObservationJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/DeleteEarthObservationJobCommand.ts index aa6154b6975a0..00c551c6feb37 100644 --- a/clients/client-sagemaker-geospatial/src/commands/DeleteEarthObservationJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/DeleteEarthObservationJobCommand.ts @@ -75,6 +75,7 @@ export interface DeleteEarthObservationJobCommandOutput extends DeleteEarthObser * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class DeleteEarthObservationJobCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/DeleteVectorEnrichmentJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/DeleteVectorEnrichmentJobCommand.ts index 611f55478c525..0d4084f3f30cb 100644 --- a/clients/client-sagemaker-geospatial/src/commands/DeleteVectorEnrichmentJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/DeleteVectorEnrichmentJobCommand.ts @@ -75,6 +75,7 @@ export interface DeleteVectorEnrichmentJobCommandOutput extends DeleteVectorEnri * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class DeleteVectorEnrichmentJobCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/ExportEarthObservationJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/ExportEarthObservationJobCommand.ts index 61da5f95a5b2d..8c99d0cc09afb 100644 --- a/clients/client-sagemaker-geospatial/src/commands/ExportEarthObservationJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/ExportEarthObservationJobCommand.ts @@ -99,6 +99,7 @@ export interface ExportEarthObservationJobCommandOutput extends ExportEarthObser * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class ExportEarthObservationJobCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/ExportVectorEnrichmentJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/ExportVectorEnrichmentJobCommand.ts index dc17febf2a2a8..af4a292d907c0 100644 --- a/clients/client-sagemaker-geospatial/src/commands/ExportVectorEnrichmentJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/ExportVectorEnrichmentJobCommand.ts @@ -97,6 +97,7 @@ export interface ExportVectorEnrichmentJobCommandOutput extends ExportVectorEnri * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class ExportVectorEnrichmentJobCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/GetEarthObservationJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/GetEarthObservationJobCommand.ts index 15aea4d6f0b2e..4615b9b34c805 100644 --- a/clients/client-sagemaker-geospatial/src/commands/GetEarthObservationJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/GetEarthObservationJobCommand.ts @@ -246,6 +246,7 @@ export interface GetEarthObservationJobCommandOutput extends GetEarthObservation * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class GetEarthObservationJobCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/GetRasterDataCollectionCommand.ts b/clients/client-sagemaker-geospatial/src/commands/GetRasterDataCollectionCommand.ts index 9c92c79cbe8d6..5aa0fe1f490f2 100644 --- a/clients/client-sagemaker-geospatial/src/commands/GetRasterDataCollectionCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/GetRasterDataCollectionCommand.ts @@ -92,6 +92,7 @@ export interface GetRasterDataCollectionCommandOutput extends GetRasterDataColle * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class GetRasterDataCollectionCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/GetTileCommand.ts b/clients/client-sagemaker-geospatial/src/commands/GetTileCommand.ts index 474c2fea42a8c..e5f6789aa1eee 100644 --- a/clients/client-sagemaker-geospatial/src/commands/GetTileCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/GetTileCommand.ts @@ -59,6 +59,11 @@ export interface GetTileCommandOutput extends Omit, * }; * const command = new GetTileCommand(input); * const response = await client.send(command); + * // consume or destroy the stream to free the socket. + * const bytes = await response.BinaryFile.transformToByteArray(); + * // const str = await response.BinaryFile.transformToString(); + * // response.BinaryFile.destroy(); // only applicable to Node.js Readable streams. + * * // { // GetTileOutput * // BinaryFile: "", // see \@smithy/types -> StreamingBlobPayloadOutputTypes * // }; @@ -89,6 +94,7 @@ export interface GetTileCommandOutput extends Omit, * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class GetTileCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/GetVectorEnrichmentJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/GetVectorEnrichmentJobCommand.ts index 89463bbb02ff5..4c0fc01001199 100644 --- a/clients/client-sagemaker-geospatial/src/commands/GetVectorEnrichmentJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/GetVectorEnrichmentJobCommand.ts @@ -114,6 +114,7 @@ export interface GetVectorEnrichmentJobCommandOutput extends GetVectorEnrichment * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class GetVectorEnrichmentJobCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/ListEarthObservationJobsCommand.ts b/clients/client-sagemaker-geospatial/src/commands/ListEarthObservationJobsCommand.ts index 0472f88d76450..e6810fc4a6baa 100644 --- a/clients/client-sagemaker-geospatial/src/commands/ListEarthObservationJobsCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/ListEarthObservationJobsCommand.ts @@ -96,6 +96,7 @@ export interface ListEarthObservationJobsCommandOutput extends ListEarthObservat * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class ListEarthObservationJobsCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/ListRasterDataCollectionsCommand.ts b/clients/client-sagemaker-geospatial/src/commands/ListRasterDataCollectionsCommand.ts index 72182cbd23cac..db903de0f83f7 100644 --- a/clients/client-sagemaker-geospatial/src/commands/ListRasterDataCollectionsCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/ListRasterDataCollectionsCommand.ts @@ -100,6 +100,7 @@ export interface ListRasterDataCollectionsCommandOutput extends ListRasterDataCo * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class ListRasterDataCollectionsCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/ListTagsForResourceCommand.ts b/clients/client-sagemaker-geospatial/src/commands/ListTagsForResourceCommand.ts index 2be85d94df865..9b52124a77f25 100644 --- a/clients/client-sagemaker-geospatial/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/ListVectorEnrichmentJobsCommand.ts b/clients/client-sagemaker-geospatial/src/commands/ListVectorEnrichmentJobsCommand.ts index bcb610e9afdfd..34ae01468b89e 100644 --- a/clients/client-sagemaker-geospatial/src/commands/ListVectorEnrichmentJobsCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/ListVectorEnrichmentJobsCommand.ts @@ -96,6 +96,7 @@ export interface ListVectorEnrichmentJobsCommandOutput extends ListVectorEnrichm * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class ListVectorEnrichmentJobsCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/SearchRasterDataCollectionCommand.ts b/clients/client-sagemaker-geospatial/src/commands/SearchRasterDataCollectionCommand.ts index 2105e9e5c8cd8..ca8be24c1032b 100644 --- a/clients/client-sagemaker-geospatial/src/commands/SearchRasterDataCollectionCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/SearchRasterDataCollectionCommand.ts @@ -176,6 +176,7 @@ export interface SearchRasterDataCollectionCommandOutput extends SearchRasterDat * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class SearchRasterDataCollectionCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/StartEarthObservationJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/StartEarthObservationJobCommand.ts index e983a2e5ef699..4dbba7c9128d8 100644 --- a/clients/client-sagemaker-geospatial/src/commands/StartEarthObservationJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/StartEarthObservationJobCommand.ts @@ -375,6 +375,7 @@ export interface StartEarthObservationJobCommandOutput extends StartEarthObserva * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class StartEarthObservationJobCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/StartVectorEnrichmentJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/StartVectorEnrichmentJobCommand.ts index bff5db855307e..8c99e2db7a8c5 100644 --- a/clients/client-sagemaker-geospatial/src/commands/StartVectorEnrichmentJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/StartVectorEnrichmentJobCommand.ts @@ -138,6 +138,7 @@ export interface StartVectorEnrichmentJobCommandOutput extends StartVectorEnrich * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class StartVectorEnrichmentJobCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/StopEarthObservationJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/StopEarthObservationJobCommand.ts index 0999025cfcba5..e77447c3da601 100644 --- a/clients/client-sagemaker-geospatial/src/commands/StopEarthObservationJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/StopEarthObservationJobCommand.ts @@ -75,6 +75,7 @@ export interface StopEarthObservationJobCommandOutput extends StopEarthObservati * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class StopEarthObservationJobCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/StopVectorEnrichmentJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/StopVectorEnrichmentJobCommand.ts index 91e72fb22a22c..449ff774a4ff8 100644 --- a/clients/client-sagemaker-geospatial/src/commands/StopVectorEnrichmentJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/StopVectorEnrichmentJobCommand.ts @@ -75,6 +75,7 @@ export interface StopVectorEnrichmentJobCommandOutput extends StopVectorEnrichme * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class StopVectorEnrichmentJobCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/TagResourceCommand.ts b/clients/client-sagemaker-geospatial/src/commands/TagResourceCommand.ts index 2e26cff6e1cad..401c8f6b7775c 100644 --- a/clients/client-sagemaker-geospatial/src/commands/TagResourceCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/TagResourceCommand.ts @@ -75,6 +75,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-sagemaker-geospatial/src/commands/UntagResourceCommand.ts b/clients/client-sagemaker-geospatial/src/commands/UntagResourceCommand.ts index 82c38679f83bf..e5f586a8656fd 100644 --- a/clients/client-sagemaker-geospatial/src/commands/UntagResourceCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/UntagResourceCommand.ts @@ -75,6 +75,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link SageMakerGeospatialServiceException} *

Base exception class for all service exceptions from SageMakerGeospatial service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-sagemaker-metrics/src/commands/BatchGetMetricsCommand.ts b/clients/client-sagemaker-metrics/src/commands/BatchGetMetricsCommand.ts index cd1516a2b4bd9..7cadd9dce061b 100644 --- a/clients/client-sagemaker-metrics/src/commands/BatchGetMetricsCommand.ts +++ b/clients/client-sagemaker-metrics/src/commands/BatchGetMetricsCommand.ts @@ -76,6 +76,7 @@ export interface BatchGetMetricsCommandOutput extends BatchGetMetricsResponse, _ * @throws {@link SageMakerMetricsServiceException} *

Base exception class for all service exceptions from SageMakerMetrics service.

* + * * @public */ export class BatchGetMetricsCommand extends $Command diff --git a/clients/client-sagemaker-metrics/src/commands/BatchPutMetricsCommand.ts b/clients/client-sagemaker-metrics/src/commands/BatchPutMetricsCommand.ts index 73b359fb8008e..df8d40bc38fd1 100644 --- a/clients/client-sagemaker-metrics/src/commands/BatchPutMetricsCommand.ts +++ b/clients/client-sagemaker-metrics/src/commands/BatchPutMetricsCommand.ts @@ -69,6 +69,7 @@ export interface BatchPutMetricsCommandOutput extends BatchPutMetricsResponse, _ * @throws {@link SageMakerMetricsServiceException} *

Base exception class for all service exceptions from SageMakerMetrics service.

* + * * @public */ export class BatchPutMetricsCommand extends $Command diff --git a/clients/client-sagemaker-runtime/src/commands/InvokeEndpointAsyncCommand.ts b/clients/client-sagemaker-runtime/src/commands/InvokeEndpointAsyncCommand.ts index 4ac6731932260..60dda14359304 100644 --- a/clients/client-sagemaker-runtime/src/commands/InvokeEndpointAsyncCommand.ts +++ b/clients/client-sagemaker-runtime/src/commands/InvokeEndpointAsyncCommand.ts @@ -88,6 +88,7 @@ export interface InvokeEndpointAsyncCommandOutput extends InvokeEndpointAsyncOut * @throws {@link SageMakerRuntimeServiceException} *

Base exception class for all service exceptions from SageMakerRuntime service.

* + * * @public */ export class InvokeEndpointAsyncCommand extends $Command diff --git a/clients/client-sagemaker-runtime/src/commands/InvokeEndpointCommand.ts b/clients/client-sagemaker-runtime/src/commands/InvokeEndpointCommand.ts index 66ca7aed213d1..1e7fa3840a37b 100644 --- a/clients/client-sagemaker-runtime/src/commands/InvokeEndpointCommand.ts +++ b/clients/client-sagemaker-runtime/src/commands/InvokeEndpointCommand.ts @@ -131,6 +131,7 @@ export interface InvokeEndpointCommandOutput extends InvokeEndpointCommandOutput * @throws {@link SageMakerRuntimeServiceException} *

Base exception class for all service exceptions from SageMakerRuntime service.

* + * * @public */ export class InvokeEndpointCommand extends $Command diff --git a/clients/client-sagemaker-runtime/src/commands/InvokeEndpointWithResponseStreamCommand.ts b/clients/client-sagemaker-runtime/src/commands/InvokeEndpointWithResponseStreamCommand.ts index 60d00341de7a8..c1d1bf9a2e6f5 100644 --- a/clients/client-sagemaker-runtime/src/commands/InvokeEndpointWithResponseStreamCommand.ts +++ b/clients/client-sagemaker-runtime/src/commands/InvokeEndpointWithResponseStreamCommand.ts @@ -150,6 +150,7 @@ export interface InvokeEndpointWithResponseStreamCommandOutput * @throws {@link SageMakerRuntimeServiceException} *

Base exception class for all service exceptions from SageMakerRuntime service.

* + * * @public */ export class InvokeEndpointWithResponseStreamCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/AddAssociationCommand.ts b/clients/client-sagemaker/src/commands/AddAssociationCommand.ts index 66157455ffdfc..225f86e6f5c8a 100644 --- a/clients/client-sagemaker/src/commands/AddAssociationCommand.ts +++ b/clients/client-sagemaker/src/commands/AddAssociationCommand.ts @@ -69,6 +69,7 @@ export interface AddAssociationCommandOutput extends AddAssociationResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class AddAssociationCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/AddTagsCommand.ts b/clients/client-sagemaker/src/commands/AddTagsCommand.ts index fcfc62fca2837..3a2f5373a6219 100644 --- a/clients/client-sagemaker/src/commands/AddTagsCommand.ts +++ b/clients/client-sagemaker/src/commands/AddTagsCommand.ts @@ -91,6 +91,7 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class AddTagsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/AssociateTrialComponentCommand.ts b/clients/client-sagemaker/src/commands/AssociateTrialComponentCommand.ts index b5c8cd3821c0e..033a890e0c2f9 100644 --- a/clients/client-sagemaker/src/commands/AssociateTrialComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/AssociateTrialComponentCommand.ts @@ -65,6 +65,7 @@ export interface AssociateTrialComponentCommandOutput extends AssociateTrialComp * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class AssociateTrialComponentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/BatchDeleteClusterNodesCommand.ts b/clients/client-sagemaker/src/commands/BatchDeleteClusterNodesCommand.ts index df1abcb6d69e1..28321296bcf88 100644 --- a/clients/client-sagemaker/src/commands/BatchDeleteClusterNodesCommand.ts +++ b/clients/client-sagemaker/src/commands/BatchDeleteClusterNodesCommand.ts @@ -86,6 +86,7 @@ export interface BatchDeleteClusterNodesCommandOutput extends BatchDeleteCluster * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class BatchDeleteClusterNodesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/BatchDescribeModelPackageCommand.ts b/clients/client-sagemaker/src/commands/BatchDescribeModelPackageCommand.ts index 74bd36715a020..2ec7300e16037 100644 --- a/clients/client-sagemaker/src/commands/BatchDescribeModelPackageCommand.ts +++ b/clients/client-sagemaker/src/commands/BatchDescribeModelPackageCommand.ts @@ -128,6 +128,7 @@ export interface BatchDescribeModelPackageCommandOutput extends BatchDescribeMod * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class BatchDescribeModelPackageCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateActionCommand.ts b/clients/client-sagemaker/src/commands/CreateActionCommand.ts index ef22197d7dd4c..87a9d408467dc 100644 --- a/clients/client-sagemaker/src/commands/CreateActionCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateActionCommand.ts @@ -86,6 +86,7 @@ export interface CreateActionCommandOutput extends CreateActionResponse, __Metad * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateActionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateAlgorithmCommand.ts b/clients/client-sagemaker/src/commands/CreateAlgorithmCommand.ts index 1f9e66a6b2ea2..3b961dc37418e 100644 --- a/clients/client-sagemaker/src/commands/CreateAlgorithmCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateAlgorithmCommand.ts @@ -291,6 +291,7 @@ export interface CreateAlgorithmCommandOutput extends CreateAlgorithmOutput, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateAlgorithmCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateAppCommand.ts b/clients/client-sagemaker/src/commands/CreateAppCommand.ts index 7b3795871d7f1..3ccc837b77181 100644 --- a/clients/client-sagemaker/src/commands/CreateAppCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateAppCommand.ts @@ -82,6 +82,7 @@ export interface CreateAppCommandOutput extends CreateAppResponse, __MetadataBea * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateAppCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateAppImageConfigCommand.ts b/clients/client-sagemaker/src/commands/CreateAppImageConfigCommand.ts index dd52451b5f6ad..e11cae85eaeea 100644 --- a/clients/client-sagemaker/src/commands/CreateAppImageConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateAppImageConfigCommand.ts @@ -115,6 +115,7 @@ export interface CreateAppImageConfigCommandOutput extends CreateAppImageConfigR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateAppImageConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateArtifactCommand.ts b/clients/client-sagemaker/src/commands/CreateArtifactCommand.ts index 068c58be67987..7cc1e10744067 100644 --- a/clients/client-sagemaker/src/commands/CreateArtifactCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateArtifactCommand.ts @@ -88,6 +88,7 @@ export interface CreateArtifactCommandOutput extends CreateArtifactResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateArtifactCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateAutoMLJobCommand.ts b/clients/client-sagemaker/src/commands/CreateAutoMLJobCommand.ts index fad6346d3b8a7..366e759f64691 100644 --- a/clients/client-sagemaker/src/commands/CreateAutoMLJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateAutoMLJobCommand.ts @@ -153,6 +153,7 @@ export interface CreateAutoMLJobCommandOutput extends CreateAutoMLJobResponse, _ * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateAutoMLJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateAutoMLJobV2Command.ts b/clients/client-sagemaker/src/commands/CreateAutoMLJobV2Command.ts index 98608565fc3db..1620244988059 100644 --- a/clients/client-sagemaker/src/commands/CreateAutoMLJobV2Command.ts +++ b/clients/client-sagemaker/src/commands/CreateAutoMLJobV2Command.ts @@ -242,6 +242,7 @@ export interface CreateAutoMLJobV2CommandOutput extends CreateAutoMLJobV2Respons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateAutoMLJobV2Command extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateClusterCommand.ts b/clients/client-sagemaker/src/commands/CreateClusterCommand.ts index 30a3aa4c5f727..660788bfc4ed3 100644 --- a/clients/client-sagemaker/src/commands/CreateClusterCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateClusterCommand.ts @@ -117,6 +117,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateClusterCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateClusterSchedulerConfigCommand.ts b/clients/client-sagemaker/src/commands/CreateClusterSchedulerConfigCommand.ts index 400b1c957ab01..86dcd1a4cba5d 100644 --- a/clients/client-sagemaker/src/commands/CreateClusterSchedulerConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateClusterSchedulerConfigCommand.ts @@ -88,6 +88,7 @@ export interface CreateClusterSchedulerConfigCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateClusterSchedulerConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateCodeRepositoryCommand.ts b/clients/client-sagemaker/src/commands/CreateCodeRepositoryCommand.ts index 5f5e0a6bbc534..da0866971f43f 100644 --- a/clients/client-sagemaker/src/commands/CreateCodeRepositoryCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateCodeRepositoryCommand.ts @@ -72,6 +72,7 @@ export interface CreateCodeRepositoryCommandOutput extends CreateCodeRepositoryO * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateCodeRepositoryCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateCompilationJobCommand.ts b/clients/client-sagemaker/src/commands/CreateCompilationJobCommand.ts index cd630d3184b01..bb6cdd9461ef0 100644 --- a/clients/client-sagemaker/src/commands/CreateCompilationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateCompilationJobCommand.ts @@ -130,6 +130,7 @@ export interface CreateCompilationJobCommandOutput extends CreateCompilationJobR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateCompilationJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateComputeQuotaCommand.ts b/clients/client-sagemaker/src/commands/CreateComputeQuotaCommand.ts index 1164dfc359ec3..4b0f6038e4d6b 100644 --- a/clients/client-sagemaker/src/commands/CreateComputeQuotaCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateComputeQuotaCommand.ts @@ -92,6 +92,7 @@ export interface CreateComputeQuotaCommandOutput extends CreateComputeQuotaRespo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateComputeQuotaCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateContextCommand.ts b/clients/client-sagemaker/src/commands/CreateContextCommand.ts index 613d14bc37a30..e581c404bdec5 100644 --- a/clients/client-sagemaker/src/commands/CreateContextCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateContextCommand.ts @@ -79,6 +79,7 @@ export interface CreateContextCommandOutput extends CreateContextResponse, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateContextCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateDataQualityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/CreateDataQualityJobDefinitionCommand.ts index 4d15266f4cd46..0cacd74e61868 100644 --- a/clients/client-sagemaker/src/commands/CreateDataQualityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateDataQualityJobDefinitionCommand.ts @@ -171,6 +171,7 @@ export interface CreateDataQualityJobDefinitionCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateDataQualityJobDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateDeviceFleetCommand.ts b/clients/client-sagemaker/src/commands/CreateDeviceFleetCommand.ts index fbc31eb0eaba8..e1ef3c87fbf89 100644 --- a/clients/client-sagemaker/src/commands/CreateDeviceFleetCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateDeviceFleetCommand.ts @@ -75,6 +75,7 @@ export interface CreateDeviceFleetCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateDeviceFleetCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateDomainCommand.ts b/clients/client-sagemaker/src/commands/CreateDomainCommand.ts index 8f350f0581054..dbf176728a67c 100644 --- a/clients/client-sagemaker/src/commands/CreateDomainCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateDomainCommand.ts @@ -439,6 +439,7 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateDomainCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateEdgeDeploymentPlanCommand.ts b/clients/client-sagemaker/src/commands/CreateEdgeDeploymentPlanCommand.ts index b13ca42092583..fe236d8e80a0b 100644 --- a/clients/client-sagemaker/src/commands/CreateEdgeDeploymentPlanCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateEdgeDeploymentPlanCommand.ts @@ -89,6 +89,7 @@ export interface CreateEdgeDeploymentPlanCommandOutput extends CreateEdgeDeploym * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateEdgeDeploymentPlanCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateEdgeDeploymentStageCommand.ts b/clients/client-sagemaker/src/commands/CreateEdgeDeploymentStageCommand.ts index c137e059c9bc6..cbd6333628f9b 100644 --- a/clients/client-sagemaker/src/commands/CreateEdgeDeploymentStageCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateEdgeDeploymentStageCommand.ts @@ -73,6 +73,7 @@ export interface CreateEdgeDeploymentStageCommandOutput extends __MetadataBearer * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateEdgeDeploymentStageCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateEdgePackagingJobCommand.ts b/clients/client-sagemaker/src/commands/CreateEdgePackagingJobCommand.ts index e57560b183b17..733a33a79bad1 100644 --- a/clients/client-sagemaker/src/commands/CreateEdgePackagingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateEdgePackagingJobCommand.ts @@ -74,6 +74,7 @@ export interface CreateEdgePackagingJobCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateEdgePackagingJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateEndpointCommand.ts b/clients/client-sagemaker/src/commands/CreateEndpointCommand.ts index 72d68c0fc2dfe..a49ceabfb9fb5 100644 --- a/clients/client-sagemaker/src/commands/CreateEndpointCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateEndpointCommand.ts @@ -177,6 +177,7 @@ export interface CreateEndpointCommandOutput extends CreateEndpointOutput, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateEndpointCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateEndpointConfigCommand.ts b/clients/client-sagemaker/src/commands/CreateEndpointConfigCommand.ts index 5a7e602795fa0..1ea6a7dc960cb 100644 --- a/clients/client-sagemaker/src/commands/CreateEndpointConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateEndpointConfigCommand.ts @@ -244,6 +244,7 @@ export interface CreateEndpointConfigCommandOutput extends CreateEndpointConfigO * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateEndpointConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateExperimentCommand.ts b/clients/client-sagemaker/src/commands/CreateExperimentCommand.ts index 21d209356a26d..4851ac19651b4 100644 --- a/clients/client-sagemaker/src/commands/CreateExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateExperimentCommand.ts @@ -86,6 +86,7 @@ export interface CreateExperimentCommandOutput extends CreateExperimentResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateExperimentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateFeatureGroupCommand.ts b/clients/client-sagemaker/src/commands/CreateFeatureGroupCommand.ts index 4fd0951e2af07..493d1567398da 100644 --- a/clients/client-sagemaker/src/commands/CreateFeatureGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateFeatureGroupCommand.ts @@ -131,6 +131,7 @@ export interface CreateFeatureGroupCommandOutput extends CreateFeatureGroupRespo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateFeatureGroupCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateFlowDefinitionCommand.ts b/clients/client-sagemaker/src/commands/CreateFlowDefinitionCommand.ts index 76a3738d9a40f..aed298a475000 100644 --- a/clients/client-sagemaker/src/commands/CreateFlowDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateFlowDefinitionCommand.ts @@ -100,6 +100,7 @@ export interface CreateFlowDefinitionCommandOutput extends CreateFlowDefinitionR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateFlowDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateHubCommand.ts b/clients/client-sagemaker/src/commands/CreateHubCommand.ts index aca271b0d0175..8b4909081620d 100644 --- a/clients/client-sagemaker/src/commands/CreateHubCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateHubCommand.ts @@ -76,6 +76,7 @@ export interface CreateHubCommandOutput extends CreateHubResponse, __MetadataBea * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateHubCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateHubContentReferenceCommand.ts b/clients/client-sagemaker/src/commands/CreateHubContentReferenceCommand.ts index 8d3889ebf66ef..18c5514da672e 100644 --- a/clients/client-sagemaker/src/commands/CreateHubContentReferenceCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateHubContentReferenceCommand.ts @@ -75,6 +75,7 @@ export interface CreateHubContentReferenceCommandOutput extends CreateHubContent * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateHubContentReferenceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateHumanTaskUiCommand.ts b/clients/client-sagemaker/src/commands/CreateHumanTaskUiCommand.ts index 20a68aff9a2c6..4bd8f83be98a3 100644 --- a/clients/client-sagemaker/src/commands/CreateHumanTaskUiCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateHumanTaskUiCommand.ts @@ -71,6 +71,7 @@ export interface CreateHumanTaskUiCommandOutput extends CreateHumanTaskUiRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateHumanTaskUiCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateHyperParameterTuningJobCommand.ts b/clients/client-sagemaker/src/commands/CreateHyperParameterTuningJobCommand.ts index 354de235bcb78..889421e11d4ef 100644 --- a/clients/client-sagemaker/src/commands/CreateHyperParameterTuningJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateHyperParameterTuningJobCommand.ts @@ -463,6 +463,7 @@ export interface CreateHyperParameterTuningJobCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateHyperParameterTuningJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateImageCommand.ts b/clients/client-sagemaker/src/commands/CreateImageCommand.ts index 70bcc91e1efef..19f6bce62a569 100644 --- a/clients/client-sagemaker/src/commands/CreateImageCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateImageCommand.ts @@ -73,6 +73,7 @@ export interface CreateImageCommandOutput extends CreateImageResponse, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateImageCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateImageVersionCommand.ts b/clients/client-sagemaker/src/commands/CreateImageVersionCommand.ts index 1c54c8685e8bf..7c2a57eda72a8 100644 --- a/clients/client-sagemaker/src/commands/CreateImageVersionCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateImageVersionCommand.ts @@ -78,6 +78,7 @@ export interface CreateImageVersionCommandOutput extends CreateImageVersionRespo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateImageVersionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateInferenceComponentCommand.ts b/clients/client-sagemaker/src/commands/CreateInferenceComponentCommand.ts index 89f2c5368044b..80a1b9c8ebaea 100644 --- a/clients/client-sagemaker/src/commands/CreateInferenceComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateInferenceComponentCommand.ts @@ -98,6 +98,7 @@ export interface CreateInferenceComponentCommandOutput extends CreateInferenceCo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateInferenceComponentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateInferenceExperimentCommand.ts b/clients/client-sagemaker/src/commands/CreateInferenceExperimentCommand.ts index 264a6e71716d2..7bb48380e3668 100644 --- a/clients/client-sagemaker/src/commands/CreateInferenceExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateInferenceExperimentCommand.ts @@ -125,6 +125,7 @@ export interface CreateInferenceExperimentCommandOutput extends CreateInferenceE * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateInferenceExperimentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateInferenceRecommendationsJobCommand.ts b/clients/client-sagemaker/src/commands/CreateInferenceRecommendationsJobCommand.ts index 5d868f33eacbb..89ce7966ffedf 100644 --- a/clients/client-sagemaker/src/commands/CreateInferenceRecommendationsJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateInferenceRecommendationsJobCommand.ts @@ -176,6 +176,7 @@ export interface CreateInferenceRecommendationsJobCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateInferenceRecommendationsJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateLabelingJobCommand.ts b/clients/client-sagemaker/src/commands/CreateLabelingJobCommand.ts index 091ecfb9d1c63..016d24deb9c50 100644 --- a/clients/client-sagemaker/src/commands/CreateLabelingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateLabelingJobCommand.ts @@ -174,6 +174,7 @@ export interface CreateLabelingJobCommandOutput extends CreateLabelingJobRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateLabelingJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateMlflowTrackingServerCommand.ts b/clients/client-sagemaker/src/commands/CreateMlflowTrackingServerCommand.ts index 738b0890db1c5..b9898b7c7a94b 100644 --- a/clients/client-sagemaker/src/commands/CreateMlflowTrackingServerCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateMlflowTrackingServerCommand.ts @@ -73,6 +73,7 @@ export interface CreateMlflowTrackingServerCommandOutput extends CreateMlflowTra * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateMlflowTrackingServerCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateModelBiasJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/CreateModelBiasJobDefinitionCommand.ts index 731be3c13e86e..15965d0c8f5f7 100644 --- a/clients/client-sagemaker/src/commands/CreateModelBiasJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelBiasJobDefinitionCommand.ts @@ -162,6 +162,7 @@ export interface CreateModelBiasJobDefinitionCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateModelBiasJobDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateModelCardCommand.ts b/clients/client-sagemaker/src/commands/CreateModelCardCommand.ts index b3932e438ffda..46e8a25213336 100644 --- a/clients/client-sagemaker/src/commands/CreateModelCardCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelCardCommand.ts @@ -79,6 +79,7 @@ export interface CreateModelCardCommandOutput extends CreateModelCardResponse, _ * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateModelCardCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateModelCardExportJobCommand.ts b/clients/client-sagemaker/src/commands/CreateModelCardExportJobCommand.ts index 15a295a8881c4..181908b7249e8 100644 --- a/clients/client-sagemaker/src/commands/CreateModelCardExportJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelCardExportJobCommand.ts @@ -71,6 +71,7 @@ export interface CreateModelCardExportJobCommandOutput extends CreateModelCardEx * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateModelCardExportJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateModelCommand.ts b/clients/client-sagemaker/src/commands/CreateModelCommand.ts index a06dcaf42590f..e1097c93eb22e 100644 --- a/clients/client-sagemaker/src/commands/CreateModelCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelCommand.ts @@ -193,6 +193,7 @@ export interface CreateModelCommandOutput extends CreateModelOutput, __MetadataB * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateModelCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateModelExplainabilityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/CreateModelExplainabilityJobDefinitionCommand.ts index 0de30bf767e36..6eacc2b83353e 100644 --- a/clients/client-sagemaker/src/commands/CreateModelExplainabilityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelExplainabilityJobDefinitionCommand.ts @@ -163,6 +163,7 @@ export interface CreateModelExplainabilityJobDefinitionCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateModelExplainabilityJobDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateModelPackageCommand.ts b/clients/client-sagemaker/src/commands/CreateModelPackageCommand.ts index cfcdbcb9c74c5..50d82642300d1 100644 --- a/clients/client-sagemaker/src/commands/CreateModelPackageCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelPackageCommand.ts @@ -365,6 +365,7 @@ export interface CreateModelPackageCommandOutput extends CreateModelPackageOutpu * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateModelPackageCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateModelPackageGroupCommand.ts b/clients/client-sagemaker/src/commands/CreateModelPackageGroupCommand.ts index db61d80e0e35d..c924a01e9c717 100644 --- a/clients/client-sagemaker/src/commands/CreateModelPackageGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelPackageGroupCommand.ts @@ -66,6 +66,7 @@ export interface CreateModelPackageGroupCommandOutput extends CreateModelPackage * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateModelPackageGroupCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateModelQualityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/CreateModelQualityJobDefinitionCommand.ts index f03e6cb27e091..826b827c99d3f 100644 --- a/clients/client-sagemaker/src/commands/CreateModelQualityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelQualityJobDefinitionCommand.ts @@ -172,6 +172,7 @@ export interface CreateModelQualityJobDefinitionCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateModelQualityJobDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateMonitoringScheduleCommand.ts b/clients/client-sagemaker/src/commands/CreateMonitoringScheduleCommand.ts index d64640872765d..985ab92fe939f 100644 --- a/clients/client-sagemaker/src/commands/CreateMonitoringScheduleCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateMonitoringScheduleCommand.ts @@ -179,6 +179,7 @@ export interface CreateMonitoringScheduleCommandOutput extends CreateMonitoringS * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateMonitoringScheduleCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateNotebookInstanceCommand.ts b/clients/client-sagemaker/src/commands/CreateNotebookInstanceCommand.ts index 345347ed1eeda..9659bef933899 100644 --- a/clients/client-sagemaker/src/commands/CreateNotebookInstanceCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateNotebookInstanceCommand.ts @@ -122,6 +122,7 @@ export interface CreateNotebookInstanceCommandOutput extends CreateNotebookInsta * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateNotebookInstanceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateNotebookInstanceLifecycleConfigCommand.ts b/clients/client-sagemaker/src/commands/CreateNotebookInstanceLifecycleConfigCommand.ts index 7ef0fc6fb12a5..23fa6848e5415 100644 --- a/clients/client-sagemaker/src/commands/CreateNotebookInstanceLifecycleConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateNotebookInstanceLifecycleConfigCommand.ts @@ -90,6 +90,7 @@ export interface CreateNotebookInstanceLifecycleConfigCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateNotebookInstanceLifecycleConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateOptimizationJobCommand.ts b/clients/client-sagemaker/src/commands/CreateOptimizationJobCommand.ts index 7e12039963881..2c38dff045cfb 100644 --- a/clients/client-sagemaker/src/commands/CreateOptimizationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateOptimizationJobCommand.ts @@ -125,6 +125,7 @@ export interface CreateOptimizationJobCommandOutput extends CreateOptimizationJo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateOptimizationJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreatePartnerAppCommand.ts b/clients/client-sagemaker/src/commands/CreatePartnerAppCommand.ts index aae5948e3f100..3f960635cac6a 100644 --- a/clients/client-sagemaker/src/commands/CreatePartnerAppCommand.ts +++ b/clients/client-sagemaker/src/commands/CreatePartnerAppCommand.ts @@ -87,6 +87,7 @@ export interface CreatePartnerAppCommandOutput extends CreatePartnerAppResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreatePartnerAppCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreatePartnerAppPresignedUrlCommand.ts b/clients/client-sagemaker/src/commands/CreatePartnerAppPresignedUrlCommand.ts index de0360ad9b206..26bd20cd5bfdb 100644 --- a/clients/client-sagemaker/src/commands/CreatePartnerAppPresignedUrlCommand.ts +++ b/clients/client-sagemaker/src/commands/CreatePartnerAppPresignedUrlCommand.ts @@ -65,6 +65,7 @@ export interface CreatePartnerAppPresignedUrlCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreatePartnerAppPresignedUrlCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreatePipelineCommand.ts b/clients/client-sagemaker/src/commands/CreatePipelineCommand.ts index db5926005aae4..337c8bab78c1e 100644 --- a/clients/client-sagemaker/src/commands/CreatePipelineCommand.ts +++ b/clients/client-sagemaker/src/commands/CreatePipelineCommand.ts @@ -85,6 +85,7 @@ export interface CreatePipelineCommandOutput extends CreatePipelineResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreatePipelineCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreatePresignedDomainUrlCommand.ts b/clients/client-sagemaker/src/commands/CreatePresignedDomainUrlCommand.ts index 361fcbb10f373..16c990928f834 100644 --- a/clients/client-sagemaker/src/commands/CreatePresignedDomainUrlCommand.ts +++ b/clients/client-sagemaker/src/commands/CreatePresignedDomainUrlCommand.ts @@ -88,6 +88,7 @@ export interface CreatePresignedDomainUrlCommandOutput extends CreatePresignedDo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreatePresignedDomainUrlCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreatePresignedMlflowTrackingServerUrlCommand.ts b/clients/client-sagemaker/src/commands/CreatePresignedMlflowTrackingServerUrlCommand.ts index 3ba149a2f8dad..e6447f9619a41 100644 --- a/clients/client-sagemaker/src/commands/CreatePresignedMlflowTrackingServerUrlCommand.ts +++ b/clients/client-sagemaker/src/commands/CreatePresignedMlflowTrackingServerUrlCommand.ts @@ -70,6 +70,7 @@ export interface CreatePresignedMlflowTrackingServerUrlCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreatePresignedMlflowTrackingServerUrlCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreatePresignedNotebookInstanceUrlCommand.ts b/clients/client-sagemaker/src/commands/CreatePresignedNotebookInstanceUrlCommand.ts index 3908014889d38..2c5118a372d38 100644 --- a/clients/client-sagemaker/src/commands/CreatePresignedNotebookInstanceUrlCommand.ts +++ b/clients/client-sagemaker/src/commands/CreatePresignedNotebookInstanceUrlCommand.ts @@ -78,6 +78,7 @@ export interface CreatePresignedNotebookInstanceUrlCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreatePresignedNotebookInstanceUrlCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateProcessingJobCommand.ts b/clients/client-sagemaker/src/commands/CreateProcessingJobCommand.ts index 47da741432f3d..b91b8fdc61a76 100644 --- a/clients/client-sagemaker/src/commands/CreateProcessingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateProcessingJobCommand.ts @@ -170,6 +170,7 @@ export interface CreateProcessingJobCommandOutput extends CreateProcessingJobRes * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateProcessingJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateProjectCommand.ts b/clients/client-sagemaker/src/commands/CreateProjectCommand.ts index 981d1d85bd334..07b2e93e910c3 100644 --- a/clients/client-sagemaker/src/commands/CreateProjectCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateProjectCommand.ts @@ -79,6 +79,7 @@ export interface CreateProjectCommandOutput extends CreateProjectOutput, __Metad * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateProjectCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateSpaceCommand.ts b/clients/client-sagemaker/src/commands/CreateSpaceCommand.ts index 0e4fa0fdb0a44..5b8e9cda4b92e 100644 --- a/clients/client-sagemaker/src/commands/CreateSpaceCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateSpaceCommand.ts @@ -163,6 +163,7 @@ export interface CreateSpaceCommandOutput extends CreateSpaceResponse, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateSpaceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateStudioLifecycleConfigCommand.ts b/clients/client-sagemaker/src/commands/CreateStudioLifecycleConfigCommand.ts index 01cf92a9c7616..1737ab887fa8a 100644 --- a/clients/client-sagemaker/src/commands/CreateStudioLifecycleConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateStudioLifecycleConfigCommand.ts @@ -68,6 +68,7 @@ export interface CreateStudioLifecycleConfigCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateStudioLifecycleConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateTrainingJobCommand.ts b/clients/client-sagemaker/src/commands/CreateTrainingJobCommand.ts index bc749862e3cdc..b6f87f92dad2a 100644 --- a/clients/client-sagemaker/src/commands/CreateTrainingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateTrainingJobCommand.ts @@ -327,6 +327,7 @@ export interface CreateTrainingJobCommandOutput extends CreateTrainingJobRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateTrainingJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateTrainingPlanCommand.ts b/clients/client-sagemaker/src/commands/CreateTrainingPlanCommand.ts index df97c569cd4bb..6255032aab905 100644 --- a/clients/client-sagemaker/src/commands/CreateTrainingPlanCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateTrainingPlanCommand.ts @@ -132,6 +132,7 @@ export interface CreateTrainingPlanCommandOutput extends CreateTrainingPlanRespo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateTrainingPlanCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateTransformJobCommand.ts b/clients/client-sagemaker/src/commands/CreateTransformJobCommand.ts index fa2e70a9285bc..af6b5efa59eff 100644 --- a/clients/client-sagemaker/src/commands/CreateTransformJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateTransformJobCommand.ts @@ -154,6 +154,7 @@ export interface CreateTransformJobCommandOutput extends CreateTransformJobRespo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateTransformJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateTrialCommand.ts b/clients/client-sagemaker/src/commands/CreateTrialCommand.ts index d819d0a33b4da..f94e9a25bc756 100644 --- a/clients/client-sagemaker/src/commands/CreateTrialCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateTrialCommand.ts @@ -86,6 +86,7 @@ export interface CreateTrialCommandOutput extends CreateTrialResponse, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateTrialCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateTrialComponentCommand.ts b/clients/client-sagemaker/src/commands/CreateTrialComponentCommand.ts index 808d703248604..851f6c0ff6b7e 100644 --- a/clients/client-sagemaker/src/commands/CreateTrialComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateTrialComponentCommand.ts @@ -105,6 +105,7 @@ export interface CreateTrialComponentCommandOutput extends CreateTrialComponentR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateTrialComponentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateUserProfileCommand.ts b/clients/client-sagemaker/src/commands/CreateUserProfileCommand.ts index 8ff3079fa5a36..d0f368eb978d2 100644 --- a/clients/client-sagemaker/src/commands/CreateUserProfileCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateUserProfileCommand.ts @@ -294,6 +294,7 @@ export interface CreateUserProfileCommandOutput extends CreateUserProfileRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateUserProfileCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateWorkforceCommand.ts b/clients/client-sagemaker/src/commands/CreateWorkforceCommand.ts index 8f1f47852e8ac..c27d825ec0034 100644 --- a/clients/client-sagemaker/src/commands/CreateWorkforceCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateWorkforceCommand.ts @@ -114,6 +114,7 @@ export interface CreateWorkforceCommandOutput extends CreateWorkforceResponse, _ * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateWorkforceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/CreateWorkteamCommand.ts b/clients/client-sagemaker/src/commands/CreateWorkteamCommand.ts index 5fe90e7585f9c..17c604c3e7ef0 100644 --- a/clients/client-sagemaker/src/commands/CreateWorkteamCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateWorkteamCommand.ts @@ -98,6 +98,7 @@ export interface CreateWorkteamCommandOutput extends CreateWorkteamResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class CreateWorkteamCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteActionCommand.ts b/clients/client-sagemaker/src/commands/DeleteActionCommand.ts index 67598a50cc74b..0175ab096ae90 100644 --- a/clients/client-sagemaker/src/commands/DeleteActionCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteActionCommand.ts @@ -58,6 +58,7 @@ export interface DeleteActionCommandOutput extends DeleteActionResponse, __Metad * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteActionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteAlgorithmCommand.ts b/clients/client-sagemaker/src/commands/DeleteAlgorithmCommand.ts index 671a998218702..89dbfd2c39d15 100644 --- a/clients/client-sagemaker/src/commands/DeleteAlgorithmCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteAlgorithmCommand.ts @@ -57,6 +57,7 @@ export interface DeleteAlgorithmCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteAlgorithmCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteAppCommand.ts b/clients/client-sagemaker/src/commands/DeleteAppCommand.ts index 6caa0ddea6cc5..a6c999519a51c 100644 --- a/clients/client-sagemaker/src/commands/DeleteAppCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteAppCommand.ts @@ -63,6 +63,7 @@ export interface DeleteAppCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteAppCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteAppImageConfigCommand.ts b/clients/client-sagemaker/src/commands/DeleteAppImageConfigCommand.ts index aab3acb3a5ab8..caca5f9b55de9 100644 --- a/clients/client-sagemaker/src/commands/DeleteAppImageConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteAppImageConfigCommand.ts @@ -56,6 +56,7 @@ export interface DeleteAppImageConfigCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteAppImageConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteArtifactCommand.ts b/clients/client-sagemaker/src/commands/DeleteArtifactCommand.ts index e992cc00c148d..0847b58d2033b 100644 --- a/clients/client-sagemaker/src/commands/DeleteArtifactCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteArtifactCommand.ts @@ -68,6 +68,7 @@ export interface DeleteArtifactCommandOutput extends DeleteArtifactResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteArtifactCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteAssociationCommand.ts b/clients/client-sagemaker/src/commands/DeleteAssociationCommand.ts index 6783957d8b3d0..111b7e242cd4a 100644 --- a/clients/client-sagemaker/src/commands/DeleteAssociationCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteAssociationCommand.ts @@ -60,6 +60,7 @@ export interface DeleteAssociationCommandOutput extends DeleteAssociationRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteAssociationCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteClusterCommand.ts b/clients/client-sagemaker/src/commands/DeleteClusterCommand.ts index 95fe786747a65..bcfdae9f2241e 100644 --- a/clients/client-sagemaker/src/commands/DeleteClusterCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteClusterCommand.ts @@ -62,6 +62,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteClusterCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteClusterSchedulerConfigCommand.ts b/clients/client-sagemaker/src/commands/DeleteClusterSchedulerConfigCommand.ts index ac15f5b4698f8..b6521bdb9cdee 100644 --- a/clients/client-sagemaker/src/commands/DeleteClusterSchedulerConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteClusterSchedulerConfigCommand.ts @@ -59,6 +59,7 @@ export interface DeleteClusterSchedulerConfigCommandOutput extends __MetadataBea * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteClusterSchedulerConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteCodeRepositoryCommand.ts b/clients/client-sagemaker/src/commands/DeleteCodeRepositoryCommand.ts index 5225ada9235b1..417492527067e 100644 --- a/clients/client-sagemaker/src/commands/DeleteCodeRepositoryCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteCodeRepositoryCommand.ts @@ -53,6 +53,7 @@ export interface DeleteCodeRepositoryCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteCodeRepositoryCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteCompilationJobCommand.ts b/clients/client-sagemaker/src/commands/DeleteCompilationJobCommand.ts index 3261f34846f53..d29e9231fd8e1 100644 --- a/clients/client-sagemaker/src/commands/DeleteCompilationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteCompilationJobCommand.ts @@ -63,6 +63,7 @@ export interface DeleteCompilationJobCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteCompilationJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteComputeQuotaCommand.ts b/clients/client-sagemaker/src/commands/DeleteComputeQuotaCommand.ts index 904f3a7aeb604..81bf0e65644ba 100644 --- a/clients/client-sagemaker/src/commands/DeleteComputeQuotaCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteComputeQuotaCommand.ts @@ -56,6 +56,7 @@ export interface DeleteComputeQuotaCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteComputeQuotaCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteContextCommand.ts b/clients/client-sagemaker/src/commands/DeleteContextCommand.ts index 98e632fbda8e4..6bacaa15fd21a 100644 --- a/clients/client-sagemaker/src/commands/DeleteContextCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteContextCommand.ts @@ -58,6 +58,7 @@ export interface DeleteContextCommandOutput extends DeleteContextResponse, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteContextCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteDataQualityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DeleteDataQualityJobDefinitionCommand.ts index 7f8e50e2b73f2..80913d5ae4f0c 100644 --- a/clients/client-sagemaker/src/commands/DeleteDataQualityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteDataQualityJobDefinitionCommand.ts @@ -59,6 +59,7 @@ export interface DeleteDataQualityJobDefinitionCommandOutput extends __MetadataB * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteDataQualityJobDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteDeviceFleetCommand.ts b/clients/client-sagemaker/src/commands/DeleteDeviceFleetCommand.ts index 319a2303db2f7..ea12b00eee06c 100644 --- a/clients/client-sagemaker/src/commands/DeleteDeviceFleetCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteDeviceFleetCommand.ts @@ -56,6 +56,7 @@ export interface DeleteDeviceFleetCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteDeviceFleetCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteDomainCommand.ts b/clients/client-sagemaker/src/commands/DeleteDomainCommand.ts index 5053708b6fe5b..49923cf77d62f 100644 --- a/clients/client-sagemaker/src/commands/DeleteDomainCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteDomainCommand.ts @@ -65,6 +65,7 @@ export interface DeleteDomainCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteDomainCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentPlanCommand.ts b/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentPlanCommand.ts index bd8816137fdb9..1ae73b93868db 100644 --- a/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentPlanCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentPlanCommand.ts @@ -57,6 +57,7 @@ export interface DeleteEdgeDeploymentPlanCommandOutput extends __MetadataBearer * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteEdgeDeploymentPlanCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentStageCommand.ts b/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentStageCommand.ts index f2af615b7554e..e79eccd3ef2ca 100644 --- a/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentStageCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentStageCommand.ts @@ -58,6 +58,7 @@ export interface DeleteEdgeDeploymentStageCommandOutput extends __MetadataBearer * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteEdgeDeploymentStageCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteEndpointCommand.ts b/clients/client-sagemaker/src/commands/DeleteEndpointCommand.ts index e2f3086d95e9a..ebcea9063db70 100644 --- a/clients/client-sagemaker/src/commands/DeleteEndpointCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteEndpointCommand.ts @@ -63,6 +63,7 @@ export interface DeleteEndpointCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteEndpointCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteEndpointConfigCommand.ts b/clients/client-sagemaker/src/commands/DeleteEndpointConfigCommand.ts index 51ed3ddf4f904..67d0237ab5a78 100644 --- a/clients/client-sagemaker/src/commands/DeleteEndpointConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteEndpointConfigCommand.ts @@ -61,6 +61,7 @@ export interface DeleteEndpointConfigCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteEndpointConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteExperimentCommand.ts b/clients/client-sagemaker/src/commands/DeleteExperimentCommand.ts index 9a5bc6db21a95..693e71d3e2019 100644 --- a/clients/client-sagemaker/src/commands/DeleteExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteExperimentCommand.ts @@ -60,6 +60,7 @@ export interface DeleteExperimentCommandOutput extends DeleteExperimentResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteExperimentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteFeatureGroupCommand.ts b/clients/client-sagemaker/src/commands/DeleteFeatureGroupCommand.ts index d8feb720c04e9..e4e8711b135f2 100644 --- a/clients/client-sagemaker/src/commands/DeleteFeatureGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteFeatureGroupCommand.ts @@ -63,6 +63,7 @@ export interface DeleteFeatureGroupCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteFeatureGroupCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteFlowDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DeleteFlowDefinitionCommand.ts index 96d4a8bb8169a..8fbcc2f1a72a7 100644 --- a/clients/client-sagemaker/src/commands/DeleteFlowDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteFlowDefinitionCommand.ts @@ -59,6 +59,7 @@ export interface DeleteFlowDefinitionCommandOutput extends DeleteFlowDefinitionR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteFlowDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteHubCommand.ts b/clients/client-sagemaker/src/commands/DeleteHubCommand.ts index b742f72d76e74..4dcd57c210a62 100644 --- a/clients/client-sagemaker/src/commands/DeleteHubCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteHubCommand.ts @@ -59,6 +59,7 @@ export interface DeleteHubCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteHubCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteHubContentCommand.ts b/clients/client-sagemaker/src/commands/DeleteHubContentCommand.ts index 7058df4eb1f7d..362e4850ecc5e 100644 --- a/clients/client-sagemaker/src/commands/DeleteHubContentCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteHubContentCommand.ts @@ -62,6 +62,7 @@ export interface DeleteHubContentCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteHubContentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteHubContentReferenceCommand.ts b/clients/client-sagemaker/src/commands/DeleteHubContentReferenceCommand.ts index 64315f89b4d29..21872ca8898cb 100644 --- a/clients/client-sagemaker/src/commands/DeleteHubContentReferenceCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteHubContentReferenceCommand.ts @@ -58,6 +58,7 @@ export interface DeleteHubContentReferenceCommandOutput extends __MetadataBearer * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteHubContentReferenceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteHumanTaskUiCommand.ts b/clients/client-sagemaker/src/commands/DeleteHumanTaskUiCommand.ts index 2216503da35fe..83f3bbe6b1f25 100644 --- a/clients/client-sagemaker/src/commands/DeleteHumanTaskUiCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteHumanTaskUiCommand.ts @@ -60,6 +60,7 @@ export interface DeleteHumanTaskUiCommandOutput extends DeleteHumanTaskUiRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteHumanTaskUiCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteHyperParameterTuningJobCommand.ts b/clients/client-sagemaker/src/commands/DeleteHyperParameterTuningJobCommand.ts index f7020d4e35a76..ce711fa9404d1 100644 --- a/clients/client-sagemaker/src/commands/DeleteHyperParameterTuningJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteHyperParameterTuningJobCommand.ts @@ -59,6 +59,7 @@ export interface DeleteHyperParameterTuningJobCommandOutput extends __MetadataBe * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteHyperParameterTuningJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteImageCommand.ts b/clients/client-sagemaker/src/commands/DeleteImageCommand.ts index 50a681deb72cd..8449cd4dd3492 100644 --- a/clients/client-sagemaker/src/commands/DeleteImageCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteImageCommand.ts @@ -60,6 +60,7 @@ export interface DeleteImageCommandOutput extends DeleteImageResponse, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteImageCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteImageVersionCommand.ts b/clients/client-sagemaker/src/commands/DeleteImageVersionCommand.ts index f407aa31cb305..16e8d178c2b4e 100644 --- a/clients/client-sagemaker/src/commands/DeleteImageVersionCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteImageVersionCommand.ts @@ -62,6 +62,7 @@ export interface DeleteImageVersionCommandOutput extends DeleteImageVersionRespo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteImageVersionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteInferenceComponentCommand.ts b/clients/client-sagemaker/src/commands/DeleteInferenceComponentCommand.ts index de61535e4917d..d675098cd6a79 100644 --- a/clients/client-sagemaker/src/commands/DeleteInferenceComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteInferenceComponentCommand.ts @@ -53,6 +53,7 @@ export interface DeleteInferenceComponentCommandOutput extends __MetadataBearer * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteInferenceComponentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteInferenceExperimentCommand.ts b/clients/client-sagemaker/src/commands/DeleteInferenceExperimentCommand.ts index c60250795f7e3..e166379abba9c 100644 --- a/clients/client-sagemaker/src/commands/DeleteInferenceExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteInferenceExperimentCommand.ts @@ -68,6 +68,7 @@ export interface DeleteInferenceExperimentCommandOutput extends DeleteInferenceE * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteInferenceExperimentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteMlflowTrackingServerCommand.ts b/clients/client-sagemaker/src/commands/DeleteMlflowTrackingServerCommand.ts index 0b70ef04a5291..c4c95b5c5d9ce 100644 --- a/clients/client-sagemaker/src/commands/DeleteMlflowTrackingServerCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteMlflowTrackingServerCommand.ts @@ -58,6 +58,7 @@ export interface DeleteMlflowTrackingServerCommandOutput extends DeleteMlflowTra * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteMlflowTrackingServerCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteModelBiasJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelBiasJobDefinitionCommand.ts index 05919df845383..9aaa8778ed5a6 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelBiasJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelBiasJobDefinitionCommand.ts @@ -59,6 +59,7 @@ export interface DeleteModelBiasJobDefinitionCommandOutput extends __MetadataBea * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteModelBiasJobDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteModelCardCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelCardCommand.ts index 60bb870e3b9b3..35581ada7b114 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelCardCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelCardCommand.ts @@ -60,6 +60,7 @@ export interface DeleteModelCardCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteModelCardCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteModelCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelCommand.ts index 59b9a4535d27d..a1f50cb75b074 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelCommand.ts @@ -56,6 +56,7 @@ export interface DeleteModelCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteModelCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteModelExplainabilityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelExplainabilityJobDefinitionCommand.ts index 95480614a1b29..8a272e3d9c969 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelExplainabilityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelExplainabilityJobDefinitionCommand.ts @@ -60,6 +60,7 @@ export interface DeleteModelExplainabilityJobDefinitionCommandOutput extends __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteModelExplainabilityJobDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteModelPackageCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelPackageCommand.ts index be1524a3e574c..ca3fc8c767e0f 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelPackageCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelPackageCommand.ts @@ -60,6 +60,7 @@ export interface DeleteModelPackageCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteModelPackageCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteModelPackageGroupCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelPackageGroupCommand.ts index 3cf6dc446d48b..08bc94aab6798 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelPackageGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelPackageGroupCommand.ts @@ -57,6 +57,7 @@ export interface DeleteModelPackageGroupCommandOutput extends __MetadataBearer { * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteModelPackageGroupCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteModelPackageGroupPolicyCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelPackageGroupPolicyCommand.ts index 83ec059b4c68e..26d402f2cfa21 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelPackageGroupPolicyCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelPackageGroupPolicyCommand.ts @@ -56,6 +56,7 @@ export interface DeleteModelPackageGroupPolicyCommandOutput extends __MetadataBe * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteModelPackageGroupPolicyCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteModelQualityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelQualityJobDefinitionCommand.ts index 521dd63b2395b..c877dc5449556 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelQualityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelQualityJobDefinitionCommand.ts @@ -59,6 +59,7 @@ export interface DeleteModelQualityJobDefinitionCommandOutput extends __Metadata * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteModelQualityJobDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteMonitoringScheduleCommand.ts b/clients/client-sagemaker/src/commands/DeleteMonitoringScheduleCommand.ts index bd5fed38b6cfa..192dea791fbe6 100644 --- a/clients/client-sagemaker/src/commands/DeleteMonitoringScheduleCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteMonitoringScheduleCommand.ts @@ -57,6 +57,7 @@ export interface DeleteMonitoringScheduleCommandOutput extends __MetadataBearer * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteMonitoringScheduleCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteNotebookInstanceCommand.ts b/clients/client-sagemaker/src/commands/DeleteNotebookInstanceCommand.ts index 296e06425717e..8a3236d962b2d 100644 --- a/clients/client-sagemaker/src/commands/DeleteNotebookInstanceCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteNotebookInstanceCommand.ts @@ -58,6 +58,7 @@ export interface DeleteNotebookInstanceCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteNotebookInstanceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteNotebookInstanceLifecycleConfigCommand.ts b/clients/client-sagemaker/src/commands/DeleteNotebookInstanceLifecycleConfigCommand.ts index 36d42e6967ece..c51eae1bc1edf 100644 --- a/clients/client-sagemaker/src/commands/DeleteNotebookInstanceLifecycleConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteNotebookInstanceLifecycleConfigCommand.ts @@ -56,6 +56,7 @@ export interface DeleteNotebookInstanceLifecycleConfigCommandOutput extends __Me * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteNotebookInstanceLifecycleConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteOptimizationJobCommand.ts b/clients/client-sagemaker/src/commands/DeleteOptimizationJobCommand.ts index 67fd335202ebb..7f64c03483ec7 100644 --- a/clients/client-sagemaker/src/commands/DeleteOptimizationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteOptimizationJobCommand.ts @@ -56,6 +56,7 @@ export interface DeleteOptimizationJobCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteOptimizationJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeletePartnerAppCommand.ts b/clients/client-sagemaker/src/commands/DeletePartnerAppCommand.ts index df445cfb2971a..23077e0f37342 100644 --- a/clients/client-sagemaker/src/commands/DeletePartnerAppCommand.ts +++ b/clients/client-sagemaker/src/commands/DeletePartnerAppCommand.ts @@ -63,6 +63,7 @@ export interface DeletePartnerAppCommandOutput extends DeletePartnerAppResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeletePartnerAppCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeletePipelineCommand.ts b/clients/client-sagemaker/src/commands/DeletePipelineCommand.ts index f5ef7c528dd88..d4d420f9166c3 100644 --- a/clients/client-sagemaker/src/commands/DeletePipelineCommand.ts +++ b/clients/client-sagemaker/src/commands/DeletePipelineCommand.ts @@ -66,6 +66,7 @@ export interface DeletePipelineCommandOutput extends DeletePipelineResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeletePipelineCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteProjectCommand.ts b/clients/client-sagemaker/src/commands/DeleteProjectCommand.ts index f22c1c6171879..90a7112fa3928 100644 --- a/clients/client-sagemaker/src/commands/DeleteProjectCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteProjectCommand.ts @@ -57,6 +57,7 @@ export interface DeleteProjectCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteProjectCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteSpaceCommand.ts b/clients/client-sagemaker/src/commands/DeleteSpaceCommand.ts index bd9248f70318d..5b14e311d01fc 100644 --- a/clients/client-sagemaker/src/commands/DeleteSpaceCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteSpaceCommand.ts @@ -60,6 +60,7 @@ export interface DeleteSpaceCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteSpaceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteStudioLifecycleConfigCommand.ts b/clients/client-sagemaker/src/commands/DeleteStudioLifecycleConfigCommand.ts index 33a3868493b5c..1f1d84ceeb80b 100644 --- a/clients/client-sagemaker/src/commands/DeleteStudioLifecycleConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteStudioLifecycleConfigCommand.ts @@ -62,6 +62,7 @@ export interface DeleteStudioLifecycleConfigCommandOutput extends __MetadataBear * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteStudioLifecycleConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteTagsCommand.ts b/clients/client-sagemaker/src/commands/DeleteTagsCommand.ts index 98e621b2294d4..6ce90a35f3222 100644 --- a/clients/client-sagemaker/src/commands/DeleteTagsCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteTagsCommand.ts @@ -67,6 +67,7 @@ export interface DeleteTagsCommandOutput extends DeleteTagsOutput, __MetadataBea * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteTagsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteTrialCommand.ts b/clients/client-sagemaker/src/commands/DeleteTrialCommand.ts index 5170543c00a9e..6ee4057173419 100644 --- a/clients/client-sagemaker/src/commands/DeleteTrialCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteTrialCommand.ts @@ -60,6 +60,7 @@ export interface DeleteTrialCommandOutput extends DeleteTrialResponse, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteTrialCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteTrialComponentCommand.ts b/clients/client-sagemaker/src/commands/DeleteTrialComponentCommand.ts index d596343e0c171..c96d6a9c3680d 100644 --- a/clients/client-sagemaker/src/commands/DeleteTrialComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteTrialComponentCommand.ts @@ -60,6 +60,7 @@ export interface DeleteTrialComponentCommandOutput extends DeleteTrialComponentR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteTrialComponentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteUserProfileCommand.ts b/clients/client-sagemaker/src/commands/DeleteUserProfileCommand.ts index b9d6cedb752bb..a5ebf34b2d3e3 100644 --- a/clients/client-sagemaker/src/commands/DeleteUserProfileCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteUserProfileCommand.ts @@ -61,6 +61,7 @@ export interface DeleteUserProfileCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteUserProfileCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteWorkforceCommand.ts b/clients/client-sagemaker/src/commands/DeleteWorkforceCommand.ts index 7f383b93e8723..a3314d5cfe16c 100644 --- a/clients/client-sagemaker/src/commands/DeleteWorkforceCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteWorkforceCommand.ts @@ -64,6 +64,7 @@ export interface DeleteWorkforceCommandOutput extends DeleteWorkforceResponse, _ * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteWorkforceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeleteWorkteamCommand.ts b/clients/client-sagemaker/src/commands/DeleteWorkteamCommand.ts index 87dcc883ed02a..39d37b1cef5f3 100644 --- a/clients/client-sagemaker/src/commands/DeleteWorkteamCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteWorkteamCommand.ts @@ -59,6 +59,7 @@ export interface DeleteWorkteamCommandOutput extends DeleteWorkteamResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeleteWorkteamCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DeregisterDevicesCommand.ts b/clients/client-sagemaker/src/commands/DeregisterDevicesCommand.ts index b7ee5289c759b..e2b3b26e8190a 100644 --- a/clients/client-sagemaker/src/commands/DeregisterDevicesCommand.ts +++ b/clients/client-sagemaker/src/commands/DeregisterDevicesCommand.ts @@ -56,6 +56,7 @@ export interface DeregisterDevicesCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DeregisterDevicesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeActionCommand.ts b/clients/client-sagemaker/src/commands/DescribeActionCommand.ts index 8835e64b05ce8..4cb5eb2aa5c63 100644 --- a/clients/client-sagemaker/src/commands/DescribeActionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeActionCommand.ts @@ -99,6 +99,7 @@ export interface DescribeActionCommandOutput extends DescribeActionResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeActionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeAlgorithmCommand.ts b/clients/client-sagemaker/src/commands/DescribeAlgorithmCommand.ts index 061ded32d5636..8782f6f58bfec 100644 --- a/clients/client-sagemaker/src/commands/DescribeAlgorithmCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeAlgorithmCommand.ts @@ -305,6 +305,7 @@ export interface DescribeAlgorithmCommandOutput extends DescribeAlgorithmOutput, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeAlgorithmCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeAppCommand.ts b/clients/client-sagemaker/src/commands/DescribeAppCommand.ts index 11b27b755e484..2aee6d200c78a 100644 --- a/clients/client-sagemaker/src/commands/DescribeAppCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeAppCommand.ts @@ -80,6 +80,7 @@ export interface DescribeAppCommandOutput extends DescribeAppResponse, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeAppCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeAppImageConfigCommand.ts b/clients/client-sagemaker/src/commands/DescribeAppImageConfigCommand.ts index faa7cef272553..32199aa08cba3 100644 --- a/clients/client-sagemaker/src/commands/DescribeAppImageConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeAppImageConfigCommand.ts @@ -110,6 +110,7 @@ export interface DescribeAppImageConfigCommandOutput extends DescribeAppImageCon * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeAppImageConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeArtifactCommand.ts b/clients/client-sagemaker/src/commands/DescribeArtifactCommand.ts index c8f89d88e694c..1970dc2233357 100644 --- a/clients/client-sagemaker/src/commands/DescribeArtifactCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeArtifactCommand.ts @@ -101,6 +101,7 @@ export interface DescribeArtifactCommandOutput extends DescribeArtifactResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeArtifactCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeAutoMLJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeAutoMLJobCommand.ts index 8fea1c4a94734..cd1e2c8f9f894 100644 --- a/clients/client-sagemaker/src/commands/DescribeAutoMLJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeAutoMLJobCommand.ts @@ -211,6 +211,7 @@ export interface DescribeAutoMLJobCommandOutput extends DescribeAutoMLJobRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeAutoMLJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeAutoMLJobV2Command.ts b/clients/client-sagemaker/src/commands/DescribeAutoMLJobV2Command.ts index 22617ff5485b9..6ae3436e73531 100644 --- a/clients/client-sagemaker/src/commands/DescribeAutoMLJobV2Command.ts +++ b/clients/client-sagemaker/src/commands/DescribeAutoMLJobV2Command.ts @@ -294,6 +294,7 @@ export interface DescribeAutoMLJobV2CommandOutput extends DescribeAutoMLJobV2Res * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeAutoMLJobV2Command extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeClusterCommand.ts b/clients/client-sagemaker/src/commands/DescribeClusterCommand.ts index 1d46fa432d215..074b1612e49d5 100644 --- a/clients/client-sagemaker/src/commands/DescribeClusterCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeClusterCommand.ts @@ -111,6 +111,7 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _ * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeClusterCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeClusterNodeCommand.ts b/clients/client-sagemaker/src/commands/DescribeClusterNodeCommand.ts index bce60e6641737..bdc155514d515 100644 --- a/clients/client-sagemaker/src/commands/DescribeClusterNodeCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeClusterNodeCommand.ts @@ -96,6 +96,7 @@ export interface DescribeClusterNodeCommandOutput extends DescribeClusterNodeRes * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeClusterNodeCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeClusterSchedulerConfigCommand.ts b/clients/client-sagemaker/src/commands/DescribeClusterSchedulerConfigCommand.ts index 5efdcdb7d50f4..3416ad4ef6981 100644 --- a/clients/client-sagemaker/src/commands/DescribeClusterSchedulerConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeClusterSchedulerConfigCommand.ts @@ -104,6 +104,7 @@ export interface DescribeClusterSchedulerConfigCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeClusterSchedulerConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeCodeRepositoryCommand.ts b/clients/client-sagemaker/src/commands/DescribeCodeRepositoryCommand.ts index 79654c349f5c1..8a8f74f026701 100644 --- a/clients/client-sagemaker/src/commands/DescribeCodeRepositoryCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeCodeRepositoryCommand.ts @@ -63,6 +63,7 @@ export interface DescribeCodeRepositoryCommandOutput extends DescribeCodeReposit * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeCodeRepositoryCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeCompilationJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeCompilationJobCommand.ts index 7b93cc581412b..d30d99db77585 100644 --- a/clients/client-sagemaker/src/commands/DescribeCompilationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeCompilationJobCommand.ts @@ -109,6 +109,7 @@ export interface DescribeCompilationJobCommandOutput extends DescribeCompilation * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeCompilationJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeComputeQuotaCommand.ts b/clients/client-sagemaker/src/commands/DescribeComputeQuotaCommand.ts index cdbad160c1472..e796578b5ae63 100644 --- a/clients/client-sagemaker/src/commands/DescribeComputeQuotaCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeComputeQuotaCommand.ts @@ -106,6 +106,7 @@ export interface DescribeComputeQuotaCommandOutput extends DescribeComputeQuotaR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeComputeQuotaCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeContextCommand.ts b/clients/client-sagemaker/src/commands/DescribeContextCommand.ts index 30c5c0c90c0e4..bf01c5ac389ce 100644 --- a/clients/client-sagemaker/src/commands/DescribeContextCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeContextCommand.ts @@ -92,6 +92,7 @@ export interface DescribeContextCommandOutput extends DescribeContextResponse, _ * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeContextCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeDataQualityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DescribeDataQualityJobDefinitionCommand.ts index 9853c10111d69..db12993fc68c6 100644 --- a/clients/client-sagemaker/src/commands/DescribeDataQualityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeDataQualityJobDefinitionCommand.ts @@ -161,6 +161,7 @@ export interface DescribeDataQualityJobDefinitionCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeDataQualityJobDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeDeviceCommand.ts b/clients/client-sagemaker/src/commands/DescribeDeviceCommand.ts index 801fe25cabb2c..0a4c8005da7f5 100644 --- a/clients/client-sagemaker/src/commands/DescribeDeviceCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeDeviceCommand.ts @@ -77,6 +77,7 @@ export interface DescribeDeviceCommandOutput extends DescribeDeviceResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeDeviceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeDeviceFleetCommand.ts b/clients/client-sagemaker/src/commands/DescribeDeviceFleetCommand.ts index 613388c5c41dc..13c44c71eccb2 100644 --- a/clients/client-sagemaker/src/commands/DescribeDeviceFleetCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeDeviceFleetCommand.ts @@ -70,6 +70,7 @@ export interface DescribeDeviceFleetCommandOutput extends DescribeDeviceFleetRes * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeDeviceFleetCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeDomainCommand.ts b/clients/client-sagemaker/src/commands/DescribeDomainCommand.ts index 9e96ea5638727..f70d894494f0c 100644 --- a/clients/client-sagemaker/src/commands/DescribeDomainCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeDomainCommand.ts @@ -395,6 +395,7 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeDomainCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeEdgeDeploymentPlanCommand.ts b/clients/client-sagemaker/src/commands/DescribeEdgeDeploymentPlanCommand.ts index d090bbe411557..2df194dc1cac9 100644 --- a/clients/client-sagemaker/src/commands/DescribeEdgeDeploymentPlanCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeEdgeDeploymentPlanCommand.ts @@ -98,6 +98,7 @@ export interface DescribeEdgeDeploymentPlanCommandOutput extends DescribeEdgeDep * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeEdgeDeploymentPlanCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeEdgePackagingJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeEdgePackagingJobCommand.ts index fda55d47abeeb..65c6c1261ec39 100644 --- a/clients/client-sagemaker/src/commands/DescribeEdgePackagingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeEdgePackagingJobCommand.ts @@ -82,6 +82,7 @@ export interface DescribeEdgePackagingJobCommandOutput extends DescribeEdgePacka * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeEdgePackagingJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeEndpointCommand.ts b/clients/client-sagemaker/src/commands/DescribeEndpointCommand.ts index b54f1890c9f6c..d016d4fd7cd34 100644 --- a/clients/client-sagemaker/src/commands/DescribeEndpointCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeEndpointCommand.ts @@ -320,6 +320,7 @@ export interface DescribeEndpointCommandOutput extends DescribeEndpointOutput, _ * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeEndpointCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeEndpointConfigCommand.ts b/clients/client-sagemaker/src/commands/DescribeEndpointConfigCommand.ts index 993b9d97db5f8..766120f1f70eb 100644 --- a/clients/client-sagemaker/src/commands/DescribeEndpointConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeEndpointConfigCommand.ts @@ -207,6 +207,7 @@ export interface DescribeEndpointConfigCommandOutput extends DescribeEndpointCon * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeEndpointConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeExperimentCommand.ts b/clients/client-sagemaker/src/commands/DescribeExperimentCommand.ts index 1373c7dba149c..edc6a5d944754 100644 --- a/clients/client-sagemaker/src/commands/DescribeExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeExperimentCommand.ts @@ -87,6 +87,7 @@ export interface DescribeExperimentCommandOutput extends DescribeExperimentRespo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeExperimentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeFeatureGroupCommand.ts b/clients/client-sagemaker/src/commands/DescribeFeatureGroupCommand.ts index e9fd55696ea0d..af1e924107fd6 100644 --- a/clients/client-sagemaker/src/commands/DescribeFeatureGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeFeatureGroupCommand.ts @@ -122,6 +122,7 @@ export interface DescribeFeatureGroupCommandOutput extends DescribeFeatureGroupR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeFeatureGroupCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeFeatureMetadataCommand.ts b/clients/client-sagemaker/src/commands/DescribeFeatureMetadataCommand.ts index b876e22080eb9..ae2709ab014d2 100644 --- a/clients/client-sagemaker/src/commands/DescribeFeatureMetadataCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeFeatureMetadataCommand.ts @@ -71,6 +71,7 @@ export interface DescribeFeatureMetadataCommandOutput extends DescribeFeatureMet * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeFeatureMetadataCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeFlowDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DescribeFlowDefinitionCommand.ts index 9599dd20a81bb..675c0829bd830 100644 --- a/clients/client-sagemaker/src/commands/DescribeFlowDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeFlowDefinitionCommand.ts @@ -94,6 +94,7 @@ export interface DescribeFlowDefinitionCommandOutput extends DescribeFlowDefinit * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeFlowDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeHubCommand.ts b/clients/client-sagemaker/src/commands/DescribeHubCommand.ts index 22980ecebd1a9..11584da10b206 100644 --- a/clients/client-sagemaker/src/commands/DescribeHubCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeHubCommand.ts @@ -71,6 +71,7 @@ export interface DescribeHubCommandOutput extends DescribeHubResponse, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeHubCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeHubContentCommand.ts b/clients/client-sagemaker/src/commands/DescribeHubContentCommand.ts index 24b4f4201bfb9..2db859d7516dc 100644 --- a/clients/client-sagemaker/src/commands/DescribeHubContentCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeHubContentCommand.ts @@ -87,6 +87,7 @@ export interface DescribeHubContentCommandOutput extends DescribeHubContentRespo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeHubContentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeHumanTaskUiCommand.ts b/clients/client-sagemaker/src/commands/DescribeHumanTaskUiCommand.ts index 4b38b8566e421..da63284c89536 100644 --- a/clients/client-sagemaker/src/commands/DescribeHumanTaskUiCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeHumanTaskUiCommand.ts @@ -66,6 +66,7 @@ export interface DescribeHumanTaskUiCommandOutput extends DescribeHumanTaskUiRes * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeHumanTaskUiCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeHyperParameterTuningJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeHyperParameterTuningJobCommand.ts index 145402364ec77..6f4d85f6bc9e3 100644 --- a/clients/client-sagemaker/src/commands/DescribeHyperParameterTuningJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeHyperParameterTuningJobCommand.ts @@ -506,6 +506,7 @@ export interface DescribeHyperParameterTuningJobCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeHyperParameterTuningJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeImageCommand.ts b/clients/client-sagemaker/src/commands/DescribeImageCommand.ts index 9982881d8f89d..0143c2cf5d397 100644 --- a/clients/client-sagemaker/src/commands/DescribeImageCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeImageCommand.ts @@ -66,6 +66,7 @@ export interface DescribeImageCommandOutput extends DescribeImageResponse, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeImageCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeImageVersionCommand.ts b/clients/client-sagemaker/src/commands/DescribeImageVersionCommand.ts index 398a1b66766b5..3492328a6ebbc 100644 --- a/clients/client-sagemaker/src/commands/DescribeImageVersionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeImageVersionCommand.ts @@ -75,6 +75,7 @@ export interface DescribeImageVersionCommandOutput extends DescribeImageVersionR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeImageVersionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeInferenceComponentCommand.ts b/clients/client-sagemaker/src/commands/DescribeInferenceComponentCommand.ts index ed89559166662..038c323a6963f 100644 --- a/clients/client-sagemaker/src/commands/DescribeInferenceComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeInferenceComponentCommand.ts @@ -113,6 +113,7 @@ export interface DescribeInferenceComponentCommandOutput extends DescribeInferen * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeInferenceComponentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeInferenceExperimentCommand.ts b/clients/client-sagemaker/src/commands/DescribeInferenceExperimentCommand.ts index 8b9cedcfcd57c..215cf536421b8 100644 --- a/clients/client-sagemaker/src/commands/DescribeInferenceExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeInferenceExperimentCommand.ts @@ -115,6 +115,7 @@ export interface DescribeInferenceExperimentCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeInferenceExperimentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeInferenceRecommendationsJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeInferenceRecommendationsJobCommand.ts index 4f8b3caf68906..b48439c1cce8e 100644 --- a/clients/client-sagemaker/src/commands/DescribeInferenceRecommendationsJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeInferenceRecommendationsJobCommand.ts @@ -215,6 +215,7 @@ export interface DescribeInferenceRecommendationsJobCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeInferenceRecommendationsJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeLabelingJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeLabelingJobCommand.ts index b5f82336c94d4..59209b5a443fe 100644 --- a/clients/client-sagemaker/src/commands/DescribeLabelingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeLabelingJobCommand.ts @@ -150,6 +150,7 @@ export interface DescribeLabelingJobCommandOutput extends DescribeLabelingJobRes * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeLabelingJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeLineageGroupCommand.ts b/clients/client-sagemaker/src/commands/DescribeLineageGroupCommand.ts index f23b4017e14db..1c0e68e42de19 100644 --- a/clients/client-sagemaker/src/commands/DescribeLineageGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeLineageGroupCommand.ts @@ -85,6 +85,7 @@ export interface DescribeLineageGroupCommandOutput extends DescribeLineageGroupR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeLineageGroupCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeMlflowTrackingServerCommand.ts b/clients/client-sagemaker/src/commands/DescribeMlflowTrackingServerCommand.ts index 689e68a58a677..0db4709eeb05a 100644 --- a/clients/client-sagemaker/src/commands/DescribeMlflowTrackingServerCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeMlflowTrackingServerCommand.ts @@ -95,6 +95,7 @@ export interface DescribeMlflowTrackingServerCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeMlflowTrackingServerCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeModelBiasJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelBiasJobDefinitionCommand.ts index f94e1152544b1..00ba011b3c99c 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelBiasJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelBiasJobDefinitionCommand.ts @@ -154,6 +154,7 @@ export interface DescribeModelBiasJobDefinitionCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeModelBiasJobDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeModelCardCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelCardCommand.ts index ac5b4a3e1d447..10c09fe25e976 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelCardCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelCardCommand.ts @@ -93,6 +93,7 @@ export interface DescribeModelCardCommandOutput extends DescribeModelCardRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeModelCardCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeModelCardExportJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelCardExportJobCommand.ts index bff4907ded4f1..f6685f21c6892 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelCardExportJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelCardExportJobCommand.ts @@ -71,6 +71,7 @@ export interface DescribeModelCardExportJobCommandOutput extends DescribeModelCa * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeModelCardExportJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeModelCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelCommand.ts index c79bd4b563e49..c914d0be5e609 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelCommand.ts @@ -180,6 +180,7 @@ export interface DescribeModelCommandOutput extends DescribeModelOutput, __Metad * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeModelCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeModelExplainabilityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelExplainabilityJobDefinitionCommand.ts index 3ae3b0e89fa1d..99bb722013bd2 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelExplainabilityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelExplainabilityJobDefinitionCommand.ts @@ -155,6 +155,7 @@ export interface DescribeModelExplainabilityJobDefinitionCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeModelExplainabilityJobDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeModelPackageCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelPackageCommand.ts index 98d80d2a48260..08a7a21a4993b 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelPackageCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelPackageCommand.ts @@ -380,6 +380,7 @@ export interface DescribeModelPackageCommandOutput extends DescribeModelPackageO * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeModelPackageCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeModelPackageGroupCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelPackageGroupCommand.ts index c72906708ff11..33e45685f21ba 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelPackageGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelPackageGroupCommand.ts @@ -69,6 +69,7 @@ export interface DescribeModelPackageGroupCommandOutput extends DescribeModelPac * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeModelPackageGroupCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeModelQualityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelQualityJobDefinitionCommand.ts index 13092db37a261..e3bf8b694d13b 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelQualityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelQualityJobDefinitionCommand.ts @@ -165,6 +165,7 @@ export interface DescribeModelQualityJobDefinitionCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeModelQualityJobDefinitionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeMonitoringScheduleCommand.ts b/clients/client-sagemaker/src/commands/DescribeMonitoringScheduleCommand.ts index 9607b19b117ce..287c31176a43a 100644 --- a/clients/client-sagemaker/src/commands/DescribeMonitoringScheduleCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeMonitoringScheduleCommand.ts @@ -186,6 +186,7 @@ export interface DescribeMonitoringScheduleCommandOutput extends DescribeMonitor * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeMonitoringScheduleCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeNotebookInstanceCommand.ts b/clients/client-sagemaker/src/commands/DescribeNotebookInstanceCommand.ts index 7c082393bfe20..901f6a9aa5448 100644 --- a/clients/client-sagemaker/src/commands/DescribeNotebookInstanceCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeNotebookInstanceCommand.ts @@ -84,6 +84,7 @@ export interface DescribeNotebookInstanceCommandOutput extends DescribeNotebookI * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeNotebookInstanceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeNotebookInstanceLifecycleConfigCommand.ts b/clients/client-sagemaker/src/commands/DescribeNotebookInstanceLifecycleConfigCommand.ts index 2936b1a59de7f..14017544863a1 100644 --- a/clients/client-sagemaker/src/commands/DescribeNotebookInstanceLifecycleConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeNotebookInstanceLifecycleConfigCommand.ts @@ -79,6 +79,7 @@ export interface DescribeNotebookInstanceLifecycleConfigCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeNotebookInstanceLifecycleConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeOptimizationJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeOptimizationJobCommand.ts index 5565d6589157a..17ea6ea73f395 100644 --- a/clients/client-sagemaker/src/commands/DescribeOptimizationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeOptimizationJobCommand.ts @@ -120,6 +120,7 @@ export interface DescribeOptimizationJobCommandOutput extends DescribeOptimizati * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeOptimizationJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribePartnerAppCommand.ts b/clients/client-sagemaker/src/commands/DescribePartnerAppCommand.ts index c1ad921ad65b9..7881ee7f6afd0 100644 --- a/clients/client-sagemaker/src/commands/DescribePartnerAppCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribePartnerAppCommand.ts @@ -85,6 +85,7 @@ export interface DescribePartnerAppCommandOutput extends DescribePartnerAppRespo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribePartnerAppCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribePipelineCommand.ts b/clients/client-sagemaker/src/commands/DescribePipelineCommand.ts index 5a1ba1a431631..b2e589c66bccf 100644 --- a/clients/client-sagemaker/src/commands/DescribePipelineCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribePipelineCommand.ts @@ -90,6 +90,7 @@ export interface DescribePipelineCommandOutput extends DescribePipelineResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribePipelineCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribePipelineDefinitionForExecutionCommand.ts b/clients/client-sagemaker/src/commands/DescribePipelineDefinitionForExecutionCommand.ts index ba062b806e43f..da55eba145cdc 100644 --- a/clients/client-sagemaker/src/commands/DescribePipelineDefinitionForExecutionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribePipelineDefinitionForExecutionCommand.ts @@ -68,6 +68,7 @@ export interface DescribePipelineDefinitionForExecutionCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribePipelineDefinitionForExecutionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribePipelineExecutionCommand.ts b/clients/client-sagemaker/src/commands/DescribePipelineExecutionCommand.ts index 9e7a5c984ff48..27b73ce6c4c75 100644 --- a/clients/client-sagemaker/src/commands/DescribePipelineExecutionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribePipelineExecutionCommand.ts @@ -100,6 +100,7 @@ export interface DescribePipelineExecutionCommandOutput extends DescribePipeline * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribePipelineExecutionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeProcessingJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeProcessingJobCommand.ts index 191d64a9cc165..04499e9a55d26 100644 --- a/clients/client-sagemaker/src/commands/DescribeProcessingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeProcessingJobCommand.ts @@ -168,6 +168,7 @@ export interface DescribeProcessingJobCommandOutput extends DescribeProcessingJo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeProcessingJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeProjectCommand.ts b/clients/client-sagemaker/src/commands/DescribeProjectCommand.ts index ae2deb9ff2c09..047c988b8ce0b 100644 --- a/clients/client-sagemaker/src/commands/DescribeProjectCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeProjectCommand.ts @@ -96,6 +96,7 @@ export interface DescribeProjectCommandOutput extends DescribeProjectOutput, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeProjectCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeSpaceCommand.ts b/clients/client-sagemaker/src/commands/DescribeSpaceCommand.ts index 98861c25675c6..5ddc8dd1765ce 100644 --- a/clients/client-sagemaker/src/commands/DescribeSpaceCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeSpaceCommand.ts @@ -161,6 +161,7 @@ export interface DescribeSpaceCommandOutput extends DescribeSpaceResponse, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeSpaceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeStudioLifecycleConfigCommand.ts b/clients/client-sagemaker/src/commands/DescribeStudioLifecycleConfigCommand.ts index 4dad66867a3f3..f99f80e911492 100644 --- a/clients/client-sagemaker/src/commands/DescribeStudioLifecycleConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeStudioLifecycleConfigCommand.ts @@ -68,6 +68,7 @@ export interface DescribeStudioLifecycleConfigCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeStudioLifecycleConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeSubscribedWorkteamCommand.ts b/clients/client-sagemaker/src/commands/DescribeSubscribedWorkteamCommand.ts index 5fed94253b5ec..f9e8613cf768c 100644 --- a/clients/client-sagemaker/src/commands/DescribeSubscribedWorkteamCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeSubscribedWorkteamCommand.ts @@ -62,6 +62,7 @@ export interface DescribeSubscribedWorkteamCommandOutput extends DescribeSubscri * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeSubscribedWorkteamCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeTrainingJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeTrainingJobCommand.ts index e04ce2290accc..96912e8a18bf9 100644 --- a/clients/client-sagemaker/src/commands/DescribeTrainingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeTrainingJobCommand.ts @@ -295,6 +295,7 @@ export interface DescribeTrainingJobCommandOutput extends DescribeTrainingJobRes * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeTrainingJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeTrainingPlanCommand.ts b/clients/client-sagemaker/src/commands/DescribeTrainingPlanCommand.ts index b537f3ff5998d..ed00865a682c6 100644 --- a/clients/client-sagemaker/src/commands/DescribeTrainingPlanCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeTrainingPlanCommand.ts @@ -86,6 +86,7 @@ export interface DescribeTrainingPlanCommandOutput extends DescribeTrainingPlanR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeTrainingPlanCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeTransformJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeTransformJobCommand.ts index d3cdc0b0a3ace..a05cf6763de6d 100644 --- a/clients/client-sagemaker/src/commands/DescribeTransformJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeTransformJobCommand.ts @@ -115,6 +115,7 @@ export interface DescribeTransformJobCommandOutput extends DescribeTransformJobR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeTransformJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeTrialCommand.ts b/clients/client-sagemaker/src/commands/DescribeTrialCommand.ts index 56fc206500aa6..e1d46664df267 100644 --- a/clients/client-sagemaker/src/commands/DescribeTrialCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeTrialCommand.ts @@ -93,6 +93,7 @@ export interface DescribeTrialCommandOutput extends DescribeTrialResponse, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeTrialCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeTrialComponentCommand.ts b/clients/client-sagemaker/src/commands/DescribeTrialComponentCommand.ts index b25ba94bed7a6..b6c7757ad3f72 100644 --- a/clients/client-sagemaker/src/commands/DescribeTrialComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeTrialComponentCommand.ts @@ -136,6 +136,7 @@ export interface DescribeTrialComponentCommandOutput extends DescribeTrialCompon * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeTrialComponentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeUserProfileCommand.ts b/clients/client-sagemaker/src/commands/DescribeUserProfileCommand.ts index 36ed1f7b9b3af..fd6e3c0c98c21 100644 --- a/clients/client-sagemaker/src/commands/DescribeUserProfileCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeUserProfileCommand.ts @@ -289,6 +289,7 @@ export interface DescribeUserProfileCommandOutput extends DescribeUserProfileRes * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeUserProfileCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeWorkforceCommand.ts b/clients/client-sagemaker/src/commands/DescribeWorkforceCommand.ts index 30e295d50e14c..64d143ff7774d 100644 --- a/clients/client-sagemaker/src/commands/DescribeWorkforceCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeWorkforceCommand.ts @@ -100,6 +100,7 @@ export interface DescribeWorkforceCommandOutput extends DescribeWorkforceRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeWorkforceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DescribeWorkteamCommand.ts b/clients/client-sagemaker/src/commands/DescribeWorkteamCommand.ts index c82823b46e914..76cf038e3629d 100644 --- a/clients/client-sagemaker/src/commands/DescribeWorkteamCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeWorkteamCommand.ts @@ -93,6 +93,7 @@ export interface DescribeWorkteamCommandOutput extends DescribeWorkteamResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DescribeWorkteamCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DisableSagemakerServicecatalogPortfolioCommand.ts b/clients/client-sagemaker/src/commands/DisableSagemakerServicecatalogPortfolioCommand.ts index 2b7cb901f380e..c216e613369b8 100644 --- a/clients/client-sagemaker/src/commands/DisableSagemakerServicecatalogPortfolioCommand.ts +++ b/clients/client-sagemaker/src/commands/DisableSagemakerServicecatalogPortfolioCommand.ts @@ -61,6 +61,7 @@ export interface DisableSagemakerServicecatalogPortfolioCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DisableSagemakerServicecatalogPortfolioCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/DisassociateTrialComponentCommand.ts b/clients/client-sagemaker/src/commands/DisassociateTrialComponentCommand.ts index 0d107070ac005..27812532ac5e4 100644 --- a/clients/client-sagemaker/src/commands/DisassociateTrialComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/DisassociateTrialComponentCommand.ts @@ -65,6 +65,7 @@ export interface DisassociateTrialComponentCommandOutput extends DisassociateTri * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class DisassociateTrialComponentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/EnableSagemakerServicecatalogPortfolioCommand.ts b/clients/client-sagemaker/src/commands/EnableSagemakerServicecatalogPortfolioCommand.ts index 75b1a5bc9e0b1..1725fa828fd52 100644 --- a/clients/client-sagemaker/src/commands/EnableSagemakerServicecatalogPortfolioCommand.ts +++ b/clients/client-sagemaker/src/commands/EnableSagemakerServicecatalogPortfolioCommand.ts @@ -61,6 +61,7 @@ export interface EnableSagemakerServicecatalogPortfolioCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class EnableSagemakerServicecatalogPortfolioCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/GetDeviceFleetReportCommand.ts b/clients/client-sagemaker/src/commands/GetDeviceFleetReportCommand.ts index 891469a80b727..77326139f14bc 100644 --- a/clients/client-sagemaker/src/commands/GetDeviceFleetReportCommand.ts +++ b/clients/client-sagemaker/src/commands/GetDeviceFleetReportCommand.ts @@ -84,6 +84,7 @@ export interface GetDeviceFleetReportCommandOutput extends GetDeviceFleetReportR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class GetDeviceFleetReportCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/GetLineageGroupPolicyCommand.ts b/clients/client-sagemaker/src/commands/GetLineageGroupPolicyCommand.ts index 49bd26898cb08..58db18bad3157 100644 --- a/clients/client-sagemaker/src/commands/GetLineageGroupPolicyCommand.ts +++ b/clients/client-sagemaker/src/commands/GetLineageGroupPolicyCommand.ts @@ -59,6 +59,7 @@ export interface GetLineageGroupPolicyCommandOutput extends GetLineageGroupPolic * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class GetLineageGroupPolicyCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/GetModelPackageGroupPolicyCommand.ts b/clients/client-sagemaker/src/commands/GetModelPackageGroupPolicyCommand.ts index 1b37747367c97..9cf83e19c2924 100644 --- a/clients/client-sagemaker/src/commands/GetModelPackageGroupPolicyCommand.ts +++ b/clients/client-sagemaker/src/commands/GetModelPackageGroupPolicyCommand.ts @@ -58,6 +58,7 @@ export interface GetModelPackageGroupPolicyCommandOutput extends GetModelPackage * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class GetModelPackageGroupPolicyCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/GetSagemakerServicecatalogPortfolioStatusCommand.ts b/clients/client-sagemaker/src/commands/GetSagemakerServicecatalogPortfolioStatusCommand.ts index 49ef17d10f8ff..aed11b43dc374 100644 --- a/clients/client-sagemaker/src/commands/GetSagemakerServicecatalogPortfolioStatusCommand.ts +++ b/clients/client-sagemaker/src/commands/GetSagemakerServicecatalogPortfolioStatusCommand.ts @@ -63,6 +63,7 @@ export interface GetSagemakerServicecatalogPortfolioStatusCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class GetSagemakerServicecatalogPortfolioStatusCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/GetScalingConfigurationRecommendationCommand.ts b/clients/client-sagemaker/src/commands/GetScalingConfigurationRecommendationCommand.ts index c1fa141b8e605..4ff115480514d 100644 --- a/clients/client-sagemaker/src/commands/GetScalingConfigurationRecommendationCommand.ts +++ b/clients/client-sagemaker/src/commands/GetScalingConfigurationRecommendationCommand.ts @@ -109,6 +109,7 @@ export interface GetScalingConfigurationRecommendationCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class GetScalingConfigurationRecommendationCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/GetSearchSuggestionsCommand.ts b/clients/client-sagemaker/src/commands/GetSearchSuggestionsCommand.ts index 4d49c29f4649b..d11f4c8a15916 100644 --- a/clients/client-sagemaker/src/commands/GetSearchSuggestionsCommand.ts +++ b/clients/client-sagemaker/src/commands/GetSearchSuggestionsCommand.ts @@ -67,6 +67,7 @@ export interface GetSearchSuggestionsCommandOutput extends GetSearchSuggestionsR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class GetSearchSuggestionsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ImportHubContentCommand.ts b/clients/client-sagemaker/src/commands/ImportHubContentCommand.ts index addcf6602b857..270beb7836b09 100644 --- a/clients/client-sagemaker/src/commands/ImportHubContentCommand.ts +++ b/clients/client-sagemaker/src/commands/ImportHubContentCommand.ts @@ -84,6 +84,7 @@ export interface ImportHubContentCommandOutput extends ImportHubContentResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ImportHubContentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListActionsCommand.ts b/clients/client-sagemaker/src/commands/ListActionsCommand.ts index 27253bb56527a..df2885721310a 100644 --- a/clients/client-sagemaker/src/commands/ListActionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListActionsCommand.ts @@ -80,6 +80,7 @@ export interface ListActionsCommandOutput extends ListActionsResponse, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListActionsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListAlgorithmsCommand.ts b/clients/client-sagemaker/src/commands/ListAlgorithmsCommand.ts index 88056644ebb39..8dae151d1c881 100644 --- a/clients/client-sagemaker/src/commands/ListAlgorithmsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListAlgorithmsCommand.ts @@ -70,6 +70,7 @@ export interface ListAlgorithmsCommandOutput extends ListAlgorithmsOutput, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListAlgorithmsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListAliasesCommand.ts b/clients/client-sagemaker/src/commands/ListAliasesCommand.ts index fe36fab71872a..89768c0df93eb 100644 --- a/clients/client-sagemaker/src/commands/ListAliasesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListAliasesCommand.ts @@ -65,6 +65,7 @@ export interface ListAliasesCommandOutput extends ListAliasesResponse, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListAliasesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListAppImageConfigsCommand.ts b/clients/client-sagemaker/src/commands/ListAppImageConfigsCommand.ts index 89adbf11bffa5..bd0f62fb614e1 100644 --- a/clients/client-sagemaker/src/commands/ListAppImageConfigsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListAppImageConfigsCommand.ts @@ -122,6 +122,7 @@ export interface ListAppImageConfigsCommandOutput extends ListAppImageConfigsRes * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListAppImageConfigsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListAppsCommand.ts b/clients/client-sagemaker/src/commands/ListAppsCommand.ts index 50ecb11ed9c95..2acc73978d185 100644 --- a/clients/client-sagemaker/src/commands/ListAppsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListAppsCommand.ts @@ -79,6 +79,7 @@ export interface ListAppsCommandOutput extends ListAppsResponse, __MetadataBeare * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListAppsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListArtifactsCommand.ts b/clients/client-sagemaker/src/commands/ListArtifactsCommand.ts index a8f04bcfc9e29..90cca52815884 100644 --- a/clients/client-sagemaker/src/commands/ListArtifactsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListArtifactsCommand.ts @@ -83,6 +83,7 @@ export interface ListArtifactsCommandOutput extends ListArtifactsResponse, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListArtifactsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListAssociationsCommand.ts b/clients/client-sagemaker/src/commands/ListAssociationsCommand.ts index 5f6e4ad2768b4..a4d96f5e553f7 100644 --- a/clients/client-sagemaker/src/commands/ListAssociationsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListAssociationsCommand.ts @@ -90,6 +90,7 @@ export interface ListAssociationsCommandOutput extends ListAssociationsResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListAssociationsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListAutoMLJobsCommand.ts b/clients/client-sagemaker/src/commands/ListAutoMLJobsCommand.ts index e319fc431c1df..494e239e00284 100644 --- a/clients/client-sagemaker/src/commands/ListAutoMLJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListAutoMLJobsCommand.ts @@ -81,6 +81,7 @@ export interface ListAutoMLJobsCommandOutput extends ListAutoMLJobsResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListAutoMLJobsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListCandidatesForAutoMLJobCommand.ts b/clients/client-sagemaker/src/commands/ListCandidatesForAutoMLJobCommand.ts index 97cbd05b6f555..9c1e6e6869c39 100644 --- a/clients/client-sagemaker/src/commands/ListCandidatesForAutoMLJobCommand.ts +++ b/clients/client-sagemaker/src/commands/ListCandidatesForAutoMLJobCommand.ts @@ -123,6 +123,7 @@ export interface ListCandidatesForAutoMLJobCommandOutput extends ListCandidatesF * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListCandidatesForAutoMLJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListClusterNodesCommand.ts b/clients/client-sagemaker/src/commands/ListClusterNodesCommand.ts index ccd192bc24385..bbb8c40d30f3e 100644 --- a/clients/client-sagemaker/src/commands/ListClusterNodesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListClusterNodesCommand.ts @@ -78,6 +78,7 @@ export interface ListClusterNodesCommandOutput extends ListClusterNodesResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListClusterNodesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListClusterSchedulerConfigsCommand.ts b/clients/client-sagemaker/src/commands/ListClusterSchedulerConfigsCommand.ts index df4742733bbad..8f0b221d35a86 100644 --- a/clients/client-sagemaker/src/commands/ListClusterSchedulerConfigsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListClusterSchedulerConfigsCommand.ts @@ -77,6 +77,7 @@ export interface ListClusterSchedulerConfigsCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListClusterSchedulerConfigsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListClustersCommand.ts b/clients/client-sagemaker/src/commands/ListClustersCommand.ts index 17dd022ca46eb..8e082efcd9902 100644 --- a/clients/client-sagemaker/src/commands/ListClustersCommand.ts +++ b/clients/client-sagemaker/src/commands/ListClustersCommand.ts @@ -73,6 +73,7 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListClustersCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListCodeRepositoriesCommand.ts b/clients/client-sagemaker/src/commands/ListCodeRepositoriesCommand.ts index 4bc726070d3a0..886664ace4bdd 100644 --- a/clients/client-sagemaker/src/commands/ListCodeRepositoriesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListCodeRepositoriesCommand.ts @@ -76,6 +76,7 @@ export interface ListCodeRepositoriesCommandOutput extends ListCodeRepositoriesO * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListCodeRepositoriesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListCompilationJobsCommand.ts b/clients/client-sagemaker/src/commands/ListCompilationJobsCommand.ts index e94a1669079db..5b9d3928f7c3b 100644 --- a/clients/client-sagemaker/src/commands/ListCompilationJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListCompilationJobsCommand.ts @@ -81,6 +81,7 @@ export interface ListCompilationJobsCommandOutput extends ListCompilationJobsRes * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListCompilationJobsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListComputeQuotasCommand.ts b/clients/client-sagemaker/src/commands/ListComputeQuotasCommand.ts index 92e0520b6375a..c396628f97aeb 100644 --- a/clients/client-sagemaker/src/commands/ListComputeQuotasCommand.ts +++ b/clients/client-sagemaker/src/commands/ListComputeQuotasCommand.ts @@ -93,6 +93,7 @@ export interface ListComputeQuotasCommandOutput extends ListComputeQuotasRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListComputeQuotasCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListContextsCommand.ts b/clients/client-sagemaker/src/commands/ListContextsCommand.ts index b81662e3eaa5c..e9aa0f91faa18 100644 --- a/clients/client-sagemaker/src/commands/ListContextsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListContextsCommand.ts @@ -79,6 +79,7 @@ export interface ListContextsCommandOutput extends ListContextsResponse, __Metad * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListContextsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListDataQualityJobDefinitionsCommand.ts b/clients/client-sagemaker/src/commands/ListDataQualityJobDefinitionsCommand.ts index 1027bff594b53..7068581c601fe 100644 --- a/clients/client-sagemaker/src/commands/ListDataQualityJobDefinitionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListDataQualityJobDefinitionsCommand.ts @@ -75,6 +75,7 @@ export interface ListDataQualityJobDefinitionsCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListDataQualityJobDefinitionsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListDeviceFleetsCommand.ts b/clients/client-sagemaker/src/commands/ListDeviceFleetsCommand.ts index 93d6481928beb..33e14fa296395 100644 --- a/clients/client-sagemaker/src/commands/ListDeviceFleetsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListDeviceFleetsCommand.ts @@ -71,6 +71,7 @@ export interface ListDeviceFleetsCommandOutput extends ListDeviceFleetsResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListDeviceFleetsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListDevicesCommand.ts b/clients/client-sagemaker/src/commands/ListDevicesCommand.ts index ed6b6625a1462..f9bee064ac846 100644 --- a/clients/client-sagemaker/src/commands/ListDevicesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListDevicesCommand.ts @@ -77,6 +77,7 @@ export interface ListDevicesCommandOutput extends ListDevicesResponse, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListDevicesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListDomainsCommand.ts b/clients/client-sagemaker/src/commands/ListDomainsCommand.ts index f472b5c541dd6..10881557160ea 100644 --- a/clients/client-sagemaker/src/commands/ListDomainsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListDomainsCommand.ts @@ -67,6 +67,7 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListDomainsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListEdgeDeploymentPlansCommand.ts b/clients/client-sagemaker/src/commands/ListEdgeDeploymentPlansCommand.ts index 08675207e97d1..3b938ca8954d0 100644 --- a/clients/client-sagemaker/src/commands/ListEdgeDeploymentPlansCommand.ts +++ b/clients/client-sagemaker/src/commands/ListEdgeDeploymentPlansCommand.ts @@ -76,6 +76,7 @@ export interface ListEdgeDeploymentPlansCommandOutput extends ListEdgeDeployment * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListEdgeDeploymentPlansCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListEdgePackagingJobsCommand.ts b/clients/client-sagemaker/src/commands/ListEdgePackagingJobsCommand.ts index 4705ff3f7f346..a30d25041d4b5 100644 --- a/clients/client-sagemaker/src/commands/ListEdgePackagingJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListEdgePackagingJobsCommand.ts @@ -77,6 +77,7 @@ export interface ListEdgePackagingJobsCommandOutput extends ListEdgePackagingJob * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListEdgePackagingJobsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListEndpointConfigsCommand.ts b/clients/client-sagemaker/src/commands/ListEndpointConfigsCommand.ts index 5b60ffeb25406..0aaa039341e60 100644 --- a/clients/client-sagemaker/src/commands/ListEndpointConfigsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListEndpointConfigsCommand.ts @@ -68,6 +68,7 @@ export interface ListEndpointConfigsCommandOutput extends ListEndpointConfigsOut * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListEndpointConfigsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListEndpointsCommand.ts b/clients/client-sagemaker/src/commands/ListEndpointsCommand.ts index 018e1577dbbe4..eaa48ff9efc24 100644 --- a/clients/client-sagemaker/src/commands/ListEndpointsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListEndpointsCommand.ts @@ -73,6 +73,7 @@ export interface ListEndpointsCommandOutput extends ListEndpointsOutput, __Metad * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListEndpointsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListExperimentsCommand.ts b/clients/client-sagemaker/src/commands/ListExperimentsCommand.ts index c2d7cbebb4f06..0859c7ea23a69 100644 --- a/clients/client-sagemaker/src/commands/ListExperimentsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListExperimentsCommand.ts @@ -75,6 +75,7 @@ export interface ListExperimentsCommandOutput extends ListExperimentsResponse, _ * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListExperimentsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListFeatureGroupsCommand.ts b/clients/client-sagemaker/src/commands/ListFeatureGroupsCommand.ts index d4528c0686741..62081ef273f9c 100644 --- a/clients/client-sagemaker/src/commands/ListFeatureGroupsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListFeatureGroupsCommand.ts @@ -75,6 +75,7 @@ export interface ListFeatureGroupsCommandOutput extends ListFeatureGroupsRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListFeatureGroupsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListFlowDefinitionsCommand.ts b/clients/client-sagemaker/src/commands/ListFlowDefinitionsCommand.ts index 291837a63adf5..249ed8c96feb5 100644 --- a/clients/client-sagemaker/src/commands/ListFlowDefinitionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListFlowDefinitionsCommand.ts @@ -68,6 +68,7 @@ export interface ListFlowDefinitionsCommandOutput extends ListFlowDefinitionsRes * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListFlowDefinitionsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListHubContentVersionsCommand.ts b/clients/client-sagemaker/src/commands/ListHubContentVersionsCommand.ts index 35f323a31b3a7..4604a102777b0 100644 --- a/clients/client-sagemaker/src/commands/ListHubContentVersionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListHubContentVersionsCommand.ts @@ -87,6 +87,7 @@ export interface ListHubContentVersionsCommandOutput extends ListHubContentVersi * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListHubContentVersionsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListHubContentsCommand.ts b/clients/client-sagemaker/src/commands/ListHubContentsCommand.ts index 0a845e005ce74..513290854b24e 100644 --- a/clients/client-sagemaker/src/commands/ListHubContentsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListHubContentsCommand.ts @@ -86,6 +86,7 @@ export interface ListHubContentsCommandOutput extends ListHubContentsResponse, _ * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListHubContentsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListHubsCommand.ts b/clients/client-sagemaker/src/commands/ListHubsCommand.ts index f90c40ca0ddb0..8d788f6c44bff 100644 --- a/clients/client-sagemaker/src/commands/ListHubsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListHubsCommand.ts @@ -77,6 +77,7 @@ export interface ListHubsCommandOutput extends ListHubsResponse, __MetadataBeare * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListHubsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListHumanTaskUisCommand.ts b/clients/client-sagemaker/src/commands/ListHumanTaskUisCommand.ts index 04dc8cbfc74c4..9cbc629f608a3 100644 --- a/clients/client-sagemaker/src/commands/ListHumanTaskUisCommand.ts +++ b/clients/client-sagemaker/src/commands/ListHumanTaskUisCommand.ts @@ -66,6 +66,7 @@ export interface ListHumanTaskUisCommandOutput extends ListHumanTaskUisResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListHumanTaskUisCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListHyperParameterTuningJobsCommand.ts b/clients/client-sagemaker/src/commands/ListHyperParameterTuningJobsCommand.ts index a062d12a04c39..2734af049c77c 100644 --- a/clients/client-sagemaker/src/commands/ListHyperParameterTuningJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListHyperParameterTuningJobsCommand.ts @@ -99,6 +99,7 @@ export interface ListHyperParameterTuningJobsCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListHyperParameterTuningJobsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListImageVersionsCommand.ts b/clients/client-sagemaker/src/commands/ListImageVersionsCommand.ts index 25d31bf3ad7fb..0a07c5a694c02 100644 --- a/clients/client-sagemaker/src/commands/ListImageVersionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListImageVersionsCommand.ts @@ -78,6 +78,7 @@ export interface ListImageVersionsCommandOutput extends ListImageVersionsRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListImageVersionsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListImagesCommand.ts b/clients/client-sagemaker/src/commands/ListImagesCommand.ts index aae1c8f996b88..798646cb3854f 100644 --- a/clients/client-sagemaker/src/commands/ListImagesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListImagesCommand.ts @@ -76,6 +76,7 @@ export interface ListImagesCommandOutput extends ListImagesResponse, __MetadataB * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListImagesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListInferenceComponentsCommand.ts b/clients/client-sagemaker/src/commands/ListInferenceComponentsCommand.ts index 887ab306e754f..c5484fe65ac80 100644 --- a/clients/client-sagemaker/src/commands/ListInferenceComponentsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListInferenceComponentsCommand.ts @@ -78,6 +78,7 @@ export interface ListInferenceComponentsCommandOutput extends ListInferenceCompo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListInferenceComponentsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListInferenceExperimentsCommand.ts b/clients/client-sagemaker/src/commands/ListInferenceExperimentsCommand.ts index fe1c8328c7c54..1636bdb4d51e8 100644 --- a/clients/client-sagemaker/src/commands/ListInferenceExperimentsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListInferenceExperimentsCommand.ts @@ -82,6 +82,7 @@ export interface ListInferenceExperimentsCommandOutput extends ListInferenceExpe * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListInferenceExperimentsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobStepsCommand.ts b/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobStepsCommand.ts index 81973fe049498..8dfe2074ff90d 100644 --- a/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobStepsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobStepsCommand.ts @@ -118,6 +118,7 @@ export interface ListInferenceRecommendationsJobStepsCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListInferenceRecommendationsJobStepsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobsCommand.ts b/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobsCommand.ts index ea84f10a6586f..353d95b9fb4b2 100644 --- a/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobsCommand.ts @@ -88,6 +88,7 @@ export interface ListInferenceRecommendationsJobsCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListInferenceRecommendationsJobsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListLabelingJobsCommand.ts b/clients/client-sagemaker/src/commands/ListLabelingJobsCommand.ts index 7744a1e125237..d73eafbeeab69 100644 --- a/clients/client-sagemaker/src/commands/ListLabelingJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListLabelingJobsCommand.ts @@ -103,6 +103,7 @@ export interface ListLabelingJobsCommandOutput extends ListLabelingJobsResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListLabelingJobsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListLabelingJobsForWorkteamCommand.ts b/clients/client-sagemaker/src/commands/ListLabelingJobsForWorkteamCommand.ts index 3a3783627cb23..5cb5ef0f75266 100644 --- a/clients/client-sagemaker/src/commands/ListLabelingJobsForWorkteamCommand.ts +++ b/clients/client-sagemaker/src/commands/ListLabelingJobsForWorkteamCommand.ts @@ -81,6 +81,7 @@ export interface ListLabelingJobsForWorkteamCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListLabelingJobsForWorkteamCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListLineageGroupsCommand.ts b/clients/client-sagemaker/src/commands/ListLineageGroupsCommand.ts index 121a93ad4c99b..4c7b9541c9689 100644 --- a/clients/client-sagemaker/src/commands/ListLineageGroupsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListLineageGroupsCommand.ts @@ -71,6 +71,7 @@ export interface ListLineageGroupsCommandOutput extends ListLineageGroupsRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListLineageGroupsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListMlflowTrackingServersCommand.ts b/clients/client-sagemaker/src/commands/ListMlflowTrackingServersCommand.ts index 91cc5ae488d52..f3d741bf4f74a 100644 --- a/clients/client-sagemaker/src/commands/ListMlflowTrackingServersCommand.ts +++ b/clients/client-sagemaker/src/commands/ListMlflowTrackingServersCommand.ts @@ -73,6 +73,7 @@ export interface ListMlflowTrackingServersCommandOutput extends ListMlflowTracki * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListMlflowTrackingServersCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListModelBiasJobDefinitionsCommand.ts b/clients/client-sagemaker/src/commands/ListModelBiasJobDefinitionsCommand.ts index d44176305d4c1..7b26f64dfae35 100644 --- a/clients/client-sagemaker/src/commands/ListModelBiasJobDefinitionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelBiasJobDefinitionsCommand.ts @@ -72,6 +72,7 @@ export interface ListModelBiasJobDefinitionsCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListModelBiasJobDefinitionsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListModelCardExportJobsCommand.ts b/clients/client-sagemaker/src/commands/ListModelCardExportJobsCommand.ts index 5d906a4952588..c1f9e9a4ec2bf 100644 --- a/clients/client-sagemaker/src/commands/ListModelCardExportJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelCardExportJobsCommand.ts @@ -75,6 +75,7 @@ export interface ListModelCardExportJobsCommandOutput extends ListModelCardExpor * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListModelCardExportJobsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListModelCardVersionsCommand.ts b/clients/client-sagemaker/src/commands/ListModelCardVersionsCommand.ts index e5d68d7fa2e22..665dc56d6a6da 100644 --- a/clients/client-sagemaker/src/commands/ListModelCardVersionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelCardVersionsCommand.ts @@ -75,6 +75,7 @@ export interface ListModelCardVersionsCommandOutput extends ListModelCardVersion * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListModelCardVersionsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListModelCardsCommand.ts b/clients/client-sagemaker/src/commands/ListModelCardsCommand.ts index 3c7e79ce561f5..88872f79c0f26 100644 --- a/clients/client-sagemaker/src/commands/ListModelCardsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelCardsCommand.ts @@ -71,6 +71,7 @@ export interface ListModelCardsCommandOutput extends ListModelCardsResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListModelCardsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListModelExplainabilityJobDefinitionsCommand.ts b/clients/client-sagemaker/src/commands/ListModelExplainabilityJobDefinitionsCommand.ts index 6d838666490e1..7c560490eacd0 100644 --- a/clients/client-sagemaker/src/commands/ListModelExplainabilityJobDefinitionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelExplainabilityJobDefinitionsCommand.ts @@ -79,6 +79,7 @@ export interface ListModelExplainabilityJobDefinitionsCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListModelExplainabilityJobDefinitionsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListModelMetadataCommand.ts b/clients/client-sagemaker/src/commands/ListModelMetadataCommand.ts index e4ef5276a2761..fbdb67b478a17 100644 --- a/clients/client-sagemaker/src/commands/ListModelMetadataCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelMetadataCommand.ts @@ -74,6 +74,7 @@ export interface ListModelMetadataCommandOutput extends ListModelMetadataRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListModelMetadataCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListModelPackageGroupsCommand.ts b/clients/client-sagemaker/src/commands/ListModelPackageGroupsCommand.ts index 180a9f29856fc..8c43adef38f09 100644 --- a/clients/client-sagemaker/src/commands/ListModelPackageGroupsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelPackageGroupsCommand.ts @@ -71,6 +71,7 @@ export interface ListModelPackageGroupsCommandOutput extends ListModelPackageGro * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListModelPackageGroupsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListModelPackagesCommand.ts b/clients/client-sagemaker/src/commands/ListModelPackagesCommand.ts index ca97d6d400f42..b5cb317c17651 100644 --- a/clients/client-sagemaker/src/commands/ListModelPackagesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelPackagesCommand.ts @@ -76,6 +76,7 @@ export interface ListModelPackagesCommandOutput extends ListModelPackagesOutput, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListModelPackagesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListModelQualityJobDefinitionsCommand.ts b/clients/client-sagemaker/src/commands/ListModelQualityJobDefinitionsCommand.ts index 5d313299a309a..f4c8a418e0dec 100644 --- a/clients/client-sagemaker/src/commands/ListModelQualityJobDefinitionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelQualityJobDefinitionsCommand.ts @@ -75,6 +75,7 @@ export interface ListModelQualityJobDefinitionsCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListModelQualityJobDefinitionsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListModelsCommand.ts b/clients/client-sagemaker/src/commands/ListModelsCommand.ts index 08e156fef1724..88ee4644c65ac 100644 --- a/clients/client-sagemaker/src/commands/ListModelsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelsCommand.ts @@ -68,6 +68,7 @@ export interface ListModelsCommandOutput extends ListModelsOutput, __MetadataBea * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListModelsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListMonitoringAlertHistoryCommand.ts b/clients/client-sagemaker/src/commands/ListMonitoringAlertHistoryCommand.ts index 63c8d84d29484..9f08b228e33ad 100644 --- a/clients/client-sagemaker/src/commands/ListMonitoringAlertHistoryCommand.ts +++ b/clients/client-sagemaker/src/commands/ListMonitoringAlertHistoryCommand.ts @@ -74,6 +74,7 @@ export interface ListMonitoringAlertHistoryCommandOutput extends ListMonitoringA * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListMonitoringAlertHistoryCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListMonitoringAlertsCommand.ts b/clients/client-sagemaker/src/commands/ListMonitoringAlertsCommand.ts index e17db2553700a..96d5a4ece9c4e 100644 --- a/clients/client-sagemaker/src/commands/ListMonitoringAlertsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListMonitoringAlertsCommand.ts @@ -75,6 +75,7 @@ export interface ListMonitoringAlertsCommandOutput extends ListMonitoringAlertsR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListMonitoringAlertsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListMonitoringExecutionsCommand.ts b/clients/client-sagemaker/src/commands/ListMonitoringExecutionsCommand.ts index 73b749a228ac7..f529746609fcf 100644 --- a/clients/client-sagemaker/src/commands/ListMonitoringExecutionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListMonitoringExecutionsCommand.ts @@ -83,6 +83,7 @@ export interface ListMonitoringExecutionsCommandOutput extends ListMonitoringExe * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListMonitoringExecutionsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListMonitoringSchedulesCommand.ts b/clients/client-sagemaker/src/commands/ListMonitoringSchedulesCommand.ts index 117836ed965a3..76032014b0720 100644 --- a/clients/client-sagemaker/src/commands/ListMonitoringSchedulesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListMonitoringSchedulesCommand.ts @@ -79,6 +79,7 @@ export interface ListMonitoringSchedulesCommandOutput extends ListMonitoringSche * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListMonitoringSchedulesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListNotebookInstanceLifecycleConfigsCommand.ts b/clients/client-sagemaker/src/commands/ListNotebookInstanceLifecycleConfigsCommand.ts index 1e3dc3a0d3bef..ddb3e8c45fef6 100644 --- a/clients/client-sagemaker/src/commands/ListNotebookInstanceLifecycleConfigsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListNotebookInstanceLifecycleConfigsCommand.ts @@ -79,6 +79,7 @@ export interface ListNotebookInstanceLifecycleConfigsCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListNotebookInstanceLifecycleConfigsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListNotebookInstancesCommand.ts b/clients/client-sagemaker/src/commands/ListNotebookInstancesCommand.ts index 5e5b8689e6c82..4242d48407f6d 100644 --- a/clients/client-sagemaker/src/commands/ListNotebookInstancesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListNotebookInstancesCommand.ts @@ -84,6 +84,7 @@ export interface ListNotebookInstancesCommandOutput extends ListNotebookInstance * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListNotebookInstancesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListOptimizationJobsCommand.ts b/clients/client-sagemaker/src/commands/ListOptimizationJobsCommand.ts index 9a6bdc1fb9be3..b85ba8b553361 100644 --- a/clients/client-sagemaker/src/commands/ListOptimizationJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListOptimizationJobsCommand.ts @@ -80,6 +80,7 @@ export interface ListOptimizationJobsCommandOutput extends ListOptimizationJobsR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListOptimizationJobsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListPartnerAppsCommand.ts b/clients/client-sagemaker/src/commands/ListPartnerAppsCommand.ts index 347ce8535e146..d88e55df38ddb 100644 --- a/clients/client-sagemaker/src/commands/ListPartnerAppsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListPartnerAppsCommand.ts @@ -65,6 +65,7 @@ export interface ListPartnerAppsCommandOutput extends ListPartnerAppsResponse, _ * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListPartnerAppsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListPipelineExecutionStepsCommand.ts b/clients/client-sagemaker/src/commands/ListPipelineExecutionStepsCommand.ts index 49ff145376f64..77ba6367ba4a6 100644 --- a/clients/client-sagemaker/src/commands/ListPipelineExecutionStepsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListPipelineExecutionStepsCommand.ts @@ -161,6 +161,7 @@ export interface ListPipelineExecutionStepsCommandOutput extends ListPipelineExe * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListPipelineExecutionStepsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListPipelineExecutionsCommand.ts b/clients/client-sagemaker/src/commands/ListPipelineExecutionsCommand.ts index 276325da6b702..57bbdf9aff25f 100644 --- a/clients/client-sagemaker/src/commands/ListPipelineExecutionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListPipelineExecutionsCommand.ts @@ -74,6 +74,7 @@ export interface ListPipelineExecutionsCommandOutput extends ListPipelineExecuti * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListPipelineExecutionsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListPipelineParametersForExecutionCommand.ts b/clients/client-sagemaker/src/commands/ListPipelineParametersForExecutionCommand.ts index 3548b92bd0238..ec8ea19ebdd00 100644 --- a/clients/client-sagemaker/src/commands/ListPipelineParametersForExecutionCommand.ts +++ b/clients/client-sagemaker/src/commands/ListPipelineParametersForExecutionCommand.ts @@ -74,6 +74,7 @@ export interface ListPipelineParametersForExecutionCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListPipelineParametersForExecutionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListPipelinesCommand.ts b/clients/client-sagemaker/src/commands/ListPipelinesCommand.ts index 23161e2d4f97f..610c70e704bef 100644 --- a/clients/client-sagemaker/src/commands/ListPipelinesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListPipelinesCommand.ts @@ -73,6 +73,7 @@ export interface ListPipelinesCommandOutput extends ListPipelinesResponse, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListPipelinesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListProcessingJobsCommand.ts b/clients/client-sagemaker/src/commands/ListProcessingJobsCommand.ts index 5073a267fc226..4495992288ad7 100644 --- a/clients/client-sagemaker/src/commands/ListProcessingJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListProcessingJobsCommand.ts @@ -76,6 +76,7 @@ export interface ListProcessingJobsCommandOutput extends ListProcessingJobsRespo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListProcessingJobsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListProjectsCommand.ts b/clients/client-sagemaker/src/commands/ListProjectsCommand.ts index 5f06a44eb01a8..4372f4ad1c6a0 100644 --- a/clients/client-sagemaker/src/commands/ListProjectsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListProjectsCommand.ts @@ -71,6 +71,7 @@ export interface ListProjectsCommandOutput extends ListProjectsOutput, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListProjectsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListResourceCatalogsCommand.ts b/clients/client-sagemaker/src/commands/ListResourceCatalogsCommand.ts index 0b61c50956658..8b7434a480bf1 100644 --- a/clients/client-sagemaker/src/commands/ListResourceCatalogsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListResourceCatalogsCommand.ts @@ -70,6 +70,7 @@ export interface ListResourceCatalogsCommandOutput extends ListResourceCatalogsR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListResourceCatalogsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListSpacesCommand.ts b/clients/client-sagemaker/src/commands/ListSpacesCommand.ts index 2c58002f8bb5e..790a24a25ecc5 100644 --- a/clients/client-sagemaker/src/commands/ListSpacesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListSpacesCommand.ts @@ -84,6 +84,7 @@ export interface ListSpacesCommandOutput extends ListSpacesResponse, __MetadataB * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListSpacesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListStageDevicesCommand.ts b/clients/client-sagemaker/src/commands/ListStageDevicesCommand.ts index fd89e859f1dfa..88d3b24772ffb 100644 --- a/clients/client-sagemaker/src/commands/ListStageDevicesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListStageDevicesCommand.ts @@ -75,6 +75,7 @@ export interface ListStageDevicesCommandOutput extends ListStageDevicesResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListStageDevicesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListStudioLifecycleConfigsCommand.ts b/clients/client-sagemaker/src/commands/ListStudioLifecycleConfigsCommand.ts index daf2aa16b74c6..b9974ca9653c0 100644 --- a/clients/client-sagemaker/src/commands/ListStudioLifecycleConfigsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListStudioLifecycleConfigsCommand.ts @@ -77,6 +77,7 @@ export interface ListStudioLifecycleConfigsCommandOutput extends ListStudioLifec * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListStudioLifecycleConfigsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListSubscribedWorkteamsCommand.ts b/clients/client-sagemaker/src/commands/ListSubscribedWorkteamsCommand.ts index 1d909ae119f73..16455360bc96d 100644 --- a/clients/client-sagemaker/src/commands/ListSubscribedWorkteamsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListSubscribedWorkteamsCommand.ts @@ -68,6 +68,7 @@ export interface ListSubscribedWorkteamsCommandOutput extends ListSubscribedWork * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListSubscribedWorkteamsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListTagsCommand.ts b/clients/client-sagemaker/src/commands/ListTagsCommand.ts index eb1fe8731ec62..0f8ea8e4db0ef 100644 --- a/clients/client-sagemaker/src/commands/ListTagsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListTagsCommand.ts @@ -63,6 +63,7 @@ export interface ListTagsCommandOutput extends ListTagsOutput, __MetadataBearer * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListTagsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListTrainingJobsCommand.ts b/clients/client-sagemaker/src/commands/ListTrainingJobsCommand.ts index 2c2dec42f8d8c..87fc12ec477ef 100644 --- a/clients/client-sagemaker/src/commands/ListTrainingJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListTrainingJobsCommand.ts @@ -104,6 +104,7 @@ export interface ListTrainingJobsCommandOutput extends ListTrainingJobsResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListTrainingJobsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListTrainingJobsForHyperParameterTuningJobCommand.ts b/clients/client-sagemaker/src/commands/ListTrainingJobsForHyperParameterTuningJobCommand.ts index 45605af200b34..eda1605dea734 100644 --- a/clients/client-sagemaker/src/commands/ListTrainingJobsForHyperParameterTuningJobCommand.ts +++ b/clients/client-sagemaker/src/commands/ListTrainingJobsForHyperParameterTuningJobCommand.ts @@ -95,6 +95,7 @@ export interface ListTrainingJobsForHyperParameterTuningJobCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListTrainingJobsForHyperParameterTuningJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListTrainingPlansCommand.ts b/clients/client-sagemaker/src/commands/ListTrainingPlansCommand.ts index 4f44f81f695f3..eb7af2a2c1446 100644 --- a/clients/client-sagemaker/src/commands/ListTrainingPlansCommand.ts +++ b/clients/client-sagemaker/src/commands/ListTrainingPlansCommand.ts @@ -99,6 +99,7 @@ export interface ListTrainingPlansCommandOutput extends ListTrainingPlansRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListTrainingPlansCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListTransformJobsCommand.ts b/clients/client-sagemaker/src/commands/ListTransformJobsCommand.ts index 02e1188d7bc06..08f8e8797ef25 100644 --- a/clients/client-sagemaker/src/commands/ListTransformJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListTransformJobsCommand.ts @@ -75,6 +75,7 @@ export interface ListTransformJobsCommandOutput extends ListTransformJobsRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListTransformJobsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListTrialComponentsCommand.ts b/clients/client-sagemaker/src/commands/ListTrialComponentsCommand.ts index abfbd235a14c3..6c20137408305 100644 --- a/clients/client-sagemaker/src/commands/ListTrialComponentsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListTrialComponentsCommand.ts @@ -124,6 +124,7 @@ export interface ListTrialComponentsCommandOutput extends ListTrialComponentsRes * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListTrialComponentsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListTrialsCommand.ts b/clients/client-sagemaker/src/commands/ListTrialsCommand.ts index 65fe6b53200bc..ea23591c07b5f 100644 --- a/clients/client-sagemaker/src/commands/ListTrialsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListTrialsCommand.ts @@ -82,6 +82,7 @@ export interface ListTrialsCommandOutput extends ListTrialsResponse, __MetadataB * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListTrialsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListUserProfilesCommand.ts b/clients/client-sagemaker/src/commands/ListUserProfilesCommand.ts index cafae06842a23..c3144b3b15aee 100644 --- a/clients/client-sagemaker/src/commands/ListUserProfilesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListUserProfilesCommand.ts @@ -69,6 +69,7 @@ export interface ListUserProfilesCommandOutput extends ListUserProfilesResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListUserProfilesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListWorkforcesCommand.ts b/clients/client-sagemaker/src/commands/ListWorkforcesCommand.ts index 0b5098a0bd361..bf7efd738a52a 100644 --- a/clients/client-sagemaker/src/commands/ListWorkforcesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListWorkforcesCommand.ts @@ -103,6 +103,7 @@ export interface ListWorkforcesCommandOutput extends ListWorkforcesResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListWorkforcesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/ListWorkteamsCommand.ts b/clients/client-sagemaker/src/commands/ListWorkteamsCommand.ts index 94537b92626fa..09c8d145599a7 100644 --- a/clients/client-sagemaker/src/commands/ListWorkteamsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListWorkteamsCommand.ts @@ -100,6 +100,7 @@ export interface ListWorkteamsCommandOutput extends ListWorkteamsResponse, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class ListWorkteamsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/PutModelPackageGroupPolicyCommand.ts b/clients/client-sagemaker/src/commands/PutModelPackageGroupPolicyCommand.ts index 215349573b13c..a027aef813f81 100644 --- a/clients/client-sagemaker/src/commands/PutModelPackageGroupPolicyCommand.ts +++ b/clients/client-sagemaker/src/commands/PutModelPackageGroupPolicyCommand.ts @@ -63,6 +63,7 @@ export interface PutModelPackageGroupPolicyCommandOutput extends PutModelPackage * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class PutModelPackageGroupPolicyCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/QueryLineageCommand.ts b/clients/client-sagemaker/src/commands/QueryLineageCommand.ts index fcc414622e77e..8b4a48dd4a33a 100644 --- a/clients/client-sagemaker/src/commands/QueryLineageCommand.ts +++ b/clients/client-sagemaker/src/commands/QueryLineageCommand.ts @@ -96,6 +96,7 @@ export interface QueryLineageCommandOutput extends QueryLineageResponse, __Metad * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class QueryLineageCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/RegisterDevicesCommand.ts b/clients/client-sagemaker/src/commands/RegisterDevicesCommand.ts index 17e95dff6dd8d..fd9e1089b1667 100644 --- a/clients/client-sagemaker/src/commands/RegisterDevicesCommand.ts +++ b/clients/client-sagemaker/src/commands/RegisterDevicesCommand.ts @@ -70,6 +70,7 @@ export interface RegisterDevicesCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class RegisterDevicesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/RenderUiTemplateCommand.ts b/clients/client-sagemaker/src/commands/RenderUiTemplateCommand.ts index a86ad06abe80a..ee7bbcc5f3af5 100644 --- a/clients/client-sagemaker/src/commands/RenderUiTemplateCommand.ts +++ b/clients/client-sagemaker/src/commands/RenderUiTemplateCommand.ts @@ -71,6 +71,7 @@ export interface RenderUiTemplateCommandOutput extends RenderUiTemplateResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class RenderUiTemplateCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/RetryPipelineExecutionCommand.ts b/clients/client-sagemaker/src/commands/RetryPipelineExecutionCommand.ts index ddefed11f5532..d3a02d3ea1437 100644 --- a/clients/client-sagemaker/src/commands/RetryPipelineExecutionCommand.ts +++ b/clients/client-sagemaker/src/commands/RetryPipelineExecutionCommand.ts @@ -70,6 +70,7 @@ export interface RetryPipelineExecutionCommandOutput extends RetryPipelineExecut * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class RetryPipelineExecutionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/SearchCommand.ts b/clients/client-sagemaker/src/commands/SearchCommand.ts index ef72a5090cea9..75645f1f1010a 100644 --- a/clients/client-sagemaker/src/commands/SearchCommand.ts +++ b/clients/client-sagemaker/src/commands/SearchCommand.ts @@ -2181,6 +2181,7 @@ export interface SearchCommandOutput extends SearchResponse, __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class SearchCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/SearchTrainingPlanOfferingsCommand.ts b/clients/client-sagemaker/src/commands/SearchTrainingPlanOfferingsCommand.ts index c9ea984b11b7f..6cb8a0318af75 100644 --- a/clients/client-sagemaker/src/commands/SearchTrainingPlanOfferingsCommand.ts +++ b/clients/client-sagemaker/src/commands/SearchTrainingPlanOfferingsCommand.ts @@ -106,6 +106,7 @@ export interface SearchTrainingPlanOfferingsCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class SearchTrainingPlanOfferingsCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/SendPipelineExecutionStepFailureCommand.ts b/clients/client-sagemaker/src/commands/SendPipelineExecutionStepFailureCommand.ts index 5a21e4d93624c..1d9b4d9faad68 100644 --- a/clients/client-sagemaker/src/commands/SendPipelineExecutionStepFailureCommand.ts +++ b/clients/client-sagemaker/src/commands/SendPipelineExecutionStepFailureCommand.ts @@ -75,6 +75,7 @@ export interface SendPipelineExecutionStepFailureCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class SendPipelineExecutionStepFailureCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/SendPipelineExecutionStepSuccessCommand.ts b/clients/client-sagemaker/src/commands/SendPipelineExecutionStepSuccessCommand.ts index 3fb922d6457f4..fee5a237d5ec9 100644 --- a/clients/client-sagemaker/src/commands/SendPipelineExecutionStepSuccessCommand.ts +++ b/clients/client-sagemaker/src/commands/SendPipelineExecutionStepSuccessCommand.ts @@ -80,6 +80,7 @@ export interface SendPipelineExecutionStepSuccessCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class SendPipelineExecutionStepSuccessCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StartEdgeDeploymentStageCommand.ts b/clients/client-sagemaker/src/commands/StartEdgeDeploymentStageCommand.ts index efc0c10dc9087..66a90d44bf6ba 100644 --- a/clients/client-sagemaker/src/commands/StartEdgeDeploymentStageCommand.ts +++ b/clients/client-sagemaker/src/commands/StartEdgeDeploymentStageCommand.ts @@ -54,6 +54,7 @@ export interface StartEdgeDeploymentStageCommandOutput extends __MetadataBearer * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StartEdgeDeploymentStageCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StartInferenceExperimentCommand.ts b/clients/client-sagemaker/src/commands/StartInferenceExperimentCommand.ts index 3a8ae6eba38dc..d7d7e86b997f9 100644 --- a/clients/client-sagemaker/src/commands/StartInferenceExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/StartInferenceExperimentCommand.ts @@ -62,6 +62,7 @@ export interface StartInferenceExperimentCommandOutput extends StartInferenceExp * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StartInferenceExperimentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StartMlflowTrackingServerCommand.ts b/clients/client-sagemaker/src/commands/StartMlflowTrackingServerCommand.ts index 2a429ff689cb3..99a8be2959556 100644 --- a/clients/client-sagemaker/src/commands/StartMlflowTrackingServerCommand.ts +++ b/clients/client-sagemaker/src/commands/StartMlflowTrackingServerCommand.ts @@ -62,6 +62,7 @@ export interface StartMlflowTrackingServerCommandOutput extends StartMlflowTrack * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StartMlflowTrackingServerCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StartMonitoringScheduleCommand.ts b/clients/client-sagemaker/src/commands/StartMonitoringScheduleCommand.ts index 6769c10d2891b..aedae48ab7ac1 100644 --- a/clients/client-sagemaker/src/commands/StartMonitoringScheduleCommand.ts +++ b/clients/client-sagemaker/src/commands/StartMonitoringScheduleCommand.ts @@ -60,6 +60,7 @@ export interface StartMonitoringScheduleCommandOutput extends __MetadataBearer { * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StartMonitoringScheduleCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StartNotebookInstanceCommand.ts b/clients/client-sagemaker/src/commands/StartNotebookInstanceCommand.ts index 2ce312b5b56eb..d3aa752a8fce4 100644 --- a/clients/client-sagemaker/src/commands/StartNotebookInstanceCommand.ts +++ b/clients/client-sagemaker/src/commands/StartNotebookInstanceCommand.ts @@ -60,6 +60,7 @@ export interface StartNotebookInstanceCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StartNotebookInstanceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StartPipelineExecutionCommand.ts b/clients/client-sagemaker/src/commands/StartPipelineExecutionCommand.ts index 3f85d2580be72..9724450a41bce 100644 --- a/clients/client-sagemaker/src/commands/StartPipelineExecutionCommand.ts +++ b/clients/client-sagemaker/src/commands/StartPipelineExecutionCommand.ts @@ -86,6 +86,7 @@ export interface StartPipelineExecutionCommandOutput extends StartPipelineExecut * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StartPipelineExecutionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopAutoMLJobCommand.ts b/clients/client-sagemaker/src/commands/StopAutoMLJobCommand.ts index 4aa7e843d17fd..7d5bc1d347c69 100644 --- a/clients/client-sagemaker/src/commands/StopAutoMLJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopAutoMLJobCommand.ts @@ -56,6 +56,7 @@ export interface StopAutoMLJobCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopAutoMLJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopCompilationJobCommand.ts b/clients/client-sagemaker/src/commands/StopCompilationJobCommand.ts index 3cb493e919b0b..be2e19878d956 100644 --- a/clients/client-sagemaker/src/commands/StopCompilationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopCompilationJobCommand.ts @@ -62,6 +62,7 @@ export interface StopCompilationJobCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopCompilationJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopEdgeDeploymentStageCommand.ts b/clients/client-sagemaker/src/commands/StopEdgeDeploymentStageCommand.ts index ca28b1aeea901..2fd60f10bd44e 100644 --- a/clients/client-sagemaker/src/commands/StopEdgeDeploymentStageCommand.ts +++ b/clients/client-sagemaker/src/commands/StopEdgeDeploymentStageCommand.ts @@ -54,6 +54,7 @@ export interface StopEdgeDeploymentStageCommandOutput extends __MetadataBearer { * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopEdgeDeploymentStageCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopEdgePackagingJobCommand.ts b/clients/client-sagemaker/src/commands/StopEdgePackagingJobCommand.ts index 4b9c134c2ebf1..d162f0854e852 100644 --- a/clients/client-sagemaker/src/commands/StopEdgePackagingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopEdgePackagingJobCommand.ts @@ -53,6 +53,7 @@ export interface StopEdgePackagingJobCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopEdgePackagingJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopHyperParameterTuningJobCommand.ts b/clients/client-sagemaker/src/commands/StopHyperParameterTuningJobCommand.ts index 0e39c335b1d9d..c14021124ede7 100644 --- a/clients/client-sagemaker/src/commands/StopHyperParameterTuningJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopHyperParameterTuningJobCommand.ts @@ -62,6 +62,7 @@ export interface StopHyperParameterTuningJobCommandOutput extends __MetadataBear * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopHyperParameterTuningJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopInferenceExperimentCommand.ts b/clients/client-sagemaker/src/commands/StopInferenceExperimentCommand.ts index 723c4dfb058ea..df0b814356d1a 100644 --- a/clients/client-sagemaker/src/commands/StopInferenceExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/StopInferenceExperimentCommand.ts @@ -80,6 +80,7 @@ export interface StopInferenceExperimentCommandOutput extends StopInferenceExper * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopInferenceExperimentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopInferenceRecommendationsJobCommand.ts b/clients/client-sagemaker/src/commands/StopInferenceRecommendationsJobCommand.ts index a7eb74fefebee..7a68a42aa4a59 100644 --- a/clients/client-sagemaker/src/commands/StopInferenceRecommendationsJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopInferenceRecommendationsJobCommand.ts @@ -59,6 +59,7 @@ export interface StopInferenceRecommendationsJobCommandOutput extends __Metadata * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopInferenceRecommendationsJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopLabelingJobCommand.ts b/clients/client-sagemaker/src/commands/StopLabelingJobCommand.ts index 05f78f016dda9..641e0fe122026 100644 --- a/clients/client-sagemaker/src/commands/StopLabelingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopLabelingJobCommand.ts @@ -57,6 +57,7 @@ export interface StopLabelingJobCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopLabelingJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopMlflowTrackingServerCommand.ts b/clients/client-sagemaker/src/commands/StopMlflowTrackingServerCommand.ts index e37a21a7ca0c6..98d79501500c3 100644 --- a/clients/client-sagemaker/src/commands/StopMlflowTrackingServerCommand.ts +++ b/clients/client-sagemaker/src/commands/StopMlflowTrackingServerCommand.ts @@ -62,6 +62,7 @@ export interface StopMlflowTrackingServerCommandOutput extends StopMlflowTrackin * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopMlflowTrackingServerCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopMonitoringScheduleCommand.ts b/clients/client-sagemaker/src/commands/StopMonitoringScheduleCommand.ts index 3066784440f9f..36a4160c77dce 100644 --- a/clients/client-sagemaker/src/commands/StopMonitoringScheduleCommand.ts +++ b/clients/client-sagemaker/src/commands/StopMonitoringScheduleCommand.ts @@ -56,6 +56,7 @@ export interface StopMonitoringScheduleCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopMonitoringScheduleCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopNotebookInstanceCommand.ts b/clients/client-sagemaker/src/commands/StopNotebookInstanceCommand.ts index 4fa54adfdcb46..f2d1d67e00abb 100644 --- a/clients/client-sagemaker/src/commands/StopNotebookInstanceCommand.ts +++ b/clients/client-sagemaker/src/commands/StopNotebookInstanceCommand.ts @@ -60,6 +60,7 @@ export interface StopNotebookInstanceCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopNotebookInstanceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopOptimizationJobCommand.ts b/clients/client-sagemaker/src/commands/StopOptimizationJobCommand.ts index 1650e2d902622..6cd0e525ccf69 100644 --- a/clients/client-sagemaker/src/commands/StopOptimizationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopOptimizationJobCommand.ts @@ -56,6 +56,7 @@ export interface StopOptimizationJobCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopOptimizationJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopPipelineExecutionCommand.ts b/clients/client-sagemaker/src/commands/StopPipelineExecutionCommand.ts index 6e34eaea99cce..0db0307676042 100644 --- a/clients/client-sagemaker/src/commands/StopPipelineExecutionCommand.ts +++ b/clients/client-sagemaker/src/commands/StopPipelineExecutionCommand.ts @@ -86,6 +86,7 @@ export interface StopPipelineExecutionCommandOutput extends StopPipelineExecutio * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopPipelineExecutionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopProcessingJobCommand.ts b/clients/client-sagemaker/src/commands/StopProcessingJobCommand.ts index 5bc631beac448..a8c205c1d6f74 100644 --- a/clients/client-sagemaker/src/commands/StopProcessingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopProcessingJobCommand.ts @@ -56,6 +56,7 @@ export interface StopProcessingJobCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopProcessingJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopTrainingJobCommand.ts b/clients/client-sagemaker/src/commands/StopTrainingJobCommand.ts index a80cca6621b86..c3787fde09f42 100644 --- a/clients/client-sagemaker/src/commands/StopTrainingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopTrainingJobCommand.ts @@ -62,6 +62,7 @@ export interface StopTrainingJobCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopTrainingJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/StopTransformJobCommand.ts b/clients/client-sagemaker/src/commands/StopTransformJobCommand.ts index f722f0043c41e..542115962cb92 100644 --- a/clients/client-sagemaker/src/commands/StopTransformJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopTransformJobCommand.ts @@ -61,6 +61,7 @@ export interface StopTransformJobCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class StopTransformJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateActionCommand.ts b/clients/client-sagemaker/src/commands/UpdateActionCommand.ts index 7c63b80955ec6..b1716e2937d3d 100644 --- a/clients/client-sagemaker/src/commands/UpdateActionCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateActionCommand.ts @@ -70,6 +70,7 @@ export interface UpdateActionCommandOutput extends UpdateActionResponse, __Metad * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateActionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateAppImageConfigCommand.ts b/clients/client-sagemaker/src/commands/UpdateAppImageConfigCommand.ts index cea8a799d683a..6dc6bd85d07e3 100644 --- a/clients/client-sagemaker/src/commands/UpdateAppImageConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateAppImageConfigCommand.ts @@ -107,6 +107,7 @@ export interface UpdateAppImageConfigCommandOutput extends UpdateAppImageConfigR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateAppImageConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateArtifactCommand.ts b/clients/client-sagemaker/src/commands/UpdateArtifactCommand.ts index f9d4dcc1d6906..8e5198d3f919a 100644 --- a/clients/client-sagemaker/src/commands/UpdateArtifactCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateArtifactCommand.ts @@ -69,6 +69,7 @@ export interface UpdateArtifactCommandOutput extends UpdateArtifactResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateArtifactCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateClusterCommand.ts b/clients/client-sagemaker/src/commands/UpdateClusterCommand.ts index aa4ecd0009b33..996765c54f519 100644 --- a/clients/client-sagemaker/src/commands/UpdateClusterCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateClusterCommand.ts @@ -102,6 +102,7 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateClusterCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateClusterSchedulerConfigCommand.ts b/clients/client-sagemaker/src/commands/UpdateClusterSchedulerConfigCommand.ts index ad2b1504b4480..66d103033e7c7 100644 --- a/clients/client-sagemaker/src/commands/UpdateClusterSchedulerConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateClusterSchedulerConfigCommand.ts @@ -83,6 +83,7 @@ export interface UpdateClusterSchedulerConfigCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateClusterSchedulerConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateClusterSoftwareCommand.ts b/clients/client-sagemaker/src/commands/UpdateClusterSoftwareCommand.ts index affc22fbcf6ca..8318c349fa91d 100644 --- a/clients/client-sagemaker/src/commands/UpdateClusterSoftwareCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateClusterSoftwareCommand.ts @@ -68,6 +68,7 @@ export interface UpdateClusterSoftwareCommandOutput extends UpdateClusterSoftwar * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateClusterSoftwareCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateCodeRepositoryCommand.ts b/clients/client-sagemaker/src/commands/UpdateCodeRepositoryCommand.ts index 3a2ae075a655a..b1daf0d612a5b 100644 --- a/clients/client-sagemaker/src/commands/UpdateCodeRepositoryCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateCodeRepositoryCommand.ts @@ -62,6 +62,7 @@ export interface UpdateCodeRepositoryCommandOutput extends UpdateCodeRepositoryO * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateCodeRepositoryCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateComputeQuotaCommand.ts b/clients/client-sagemaker/src/commands/UpdateComputeQuotaCommand.ts index 13548d8697cee..0df0d82186c69 100644 --- a/clients/client-sagemaker/src/commands/UpdateComputeQuotaCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateComputeQuotaCommand.ts @@ -87,6 +87,7 @@ export interface UpdateComputeQuotaCommandOutput extends UpdateComputeQuotaRespo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateComputeQuotaCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateContextCommand.ts b/clients/client-sagemaker/src/commands/UpdateContextCommand.ts index 006de2c7f2dd1..385b4a7e92181 100644 --- a/clients/client-sagemaker/src/commands/UpdateContextCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateContextCommand.ts @@ -69,6 +69,7 @@ export interface UpdateContextCommandOutput extends UpdateContextResponse, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateContextCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateDeviceFleetCommand.ts b/clients/client-sagemaker/src/commands/UpdateDeviceFleetCommand.ts index d445f387355e4..6e9fb4affe45a 100644 --- a/clients/client-sagemaker/src/commands/UpdateDeviceFleetCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateDeviceFleetCommand.ts @@ -65,6 +65,7 @@ export interface UpdateDeviceFleetCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateDeviceFleetCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateDevicesCommand.ts b/clients/client-sagemaker/src/commands/UpdateDevicesCommand.ts index 74eab0a382b9c..60ebe4685704f 100644 --- a/clients/client-sagemaker/src/commands/UpdateDevicesCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateDevicesCommand.ts @@ -60,6 +60,7 @@ export interface UpdateDevicesCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateDevicesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateDomainCommand.ts b/clients/client-sagemaker/src/commands/UpdateDomainCommand.ts index 163934b332ba3..9991d4ab4e21d 100644 --- a/clients/client-sagemaker/src/commands/UpdateDomainCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateDomainCommand.ts @@ -387,6 +387,7 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateDomainCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateEndpointCommand.ts b/clients/client-sagemaker/src/commands/UpdateEndpointCommand.ts index d41fb70cf4882..14ebf93f0a93f 100644 --- a/clients/client-sagemaker/src/commands/UpdateEndpointCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateEndpointCommand.ts @@ -123,6 +123,7 @@ export interface UpdateEndpointCommandOutput extends UpdateEndpointOutput, __Met * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateEndpointCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateEndpointWeightsAndCapacitiesCommand.ts b/clients/client-sagemaker/src/commands/UpdateEndpointWeightsAndCapacitiesCommand.ts index 95685d61fa531..67d48d7818018 100644 --- a/clients/client-sagemaker/src/commands/UpdateEndpointWeightsAndCapacitiesCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateEndpointWeightsAndCapacitiesCommand.ts @@ -79,6 +79,7 @@ export interface UpdateEndpointWeightsAndCapacitiesCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateEndpointWeightsAndCapacitiesCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateExperimentCommand.ts b/clients/client-sagemaker/src/commands/UpdateExperimentCommand.ts index 5b2b9635e5321..2a74255f29078 100644 --- a/clients/client-sagemaker/src/commands/UpdateExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateExperimentCommand.ts @@ -65,6 +65,7 @@ export interface UpdateExperimentCommandOutput extends UpdateExperimentResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateExperimentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateFeatureGroupCommand.ts b/clients/client-sagemaker/src/commands/UpdateFeatureGroupCommand.ts index fd740e6d8f8cf..37f175eed6fe2 100644 --- a/clients/client-sagemaker/src/commands/UpdateFeatureGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateFeatureGroupCommand.ts @@ -99,6 +99,7 @@ export interface UpdateFeatureGroupCommandOutput extends UpdateFeatureGroupRespo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateFeatureGroupCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateFeatureMetadataCommand.ts b/clients/client-sagemaker/src/commands/UpdateFeatureMetadataCommand.ts index 02046da75faa7..d0208e4ba1905 100644 --- a/clients/client-sagemaker/src/commands/UpdateFeatureMetadataCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateFeatureMetadataCommand.ts @@ -67,6 +67,7 @@ export interface UpdateFeatureMetadataCommandOutput extends __MetadataBearer {} * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateFeatureMetadataCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateHubCommand.ts b/clients/client-sagemaker/src/commands/UpdateHubCommand.ts index a5125a2f011da..160818e14772f 100644 --- a/clients/client-sagemaker/src/commands/UpdateHubCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateHubCommand.ts @@ -63,6 +63,7 @@ export interface UpdateHubCommandOutput extends UpdateHubResponse, __MetadataBea * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateHubCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateHubContentCommand.ts b/clients/client-sagemaker/src/commands/UpdateHubContentCommand.ts index c002040a7ef62..564f8139383b3 100644 --- a/clients/client-sagemaker/src/commands/UpdateHubContentCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateHubContentCommand.ts @@ -107,6 +107,7 @@ export interface UpdateHubContentCommandOutput extends UpdateHubContentResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateHubContentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateHubContentReferenceCommand.ts b/clients/client-sagemaker/src/commands/UpdateHubContentReferenceCommand.ts index 28e3047cb1f4f..d62e60fcb6e6a 100644 --- a/clients/client-sagemaker/src/commands/UpdateHubContentReferenceCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateHubContentReferenceCommand.ts @@ -78,6 +78,7 @@ export interface UpdateHubContentReferenceCommandOutput extends UpdateHubContent * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateHubContentReferenceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateImageCommand.ts b/clients/client-sagemaker/src/commands/UpdateImageCommand.ts index 982525506ffe1..c630fb8280bc3 100644 --- a/clients/client-sagemaker/src/commands/UpdateImageCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateImageCommand.ts @@ -68,6 +68,7 @@ export interface UpdateImageCommandOutput extends UpdateImageResponse, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateImageCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateImageVersionCommand.ts b/clients/client-sagemaker/src/commands/UpdateImageVersionCommand.ts index b50fc8a5178e4..eb76333586cbc 100644 --- a/clients/client-sagemaker/src/commands/UpdateImageVersionCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateImageVersionCommand.ts @@ -76,6 +76,7 @@ export interface UpdateImageVersionCommandOutput extends UpdateImageVersionRespo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateImageVersionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateInferenceComponentCommand.ts b/clients/client-sagemaker/src/commands/UpdateInferenceComponentCommand.ts index 6ccfb00b45038..28a54d8f491fb 100644 --- a/clients/client-sagemaker/src/commands/UpdateInferenceComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateInferenceComponentCommand.ts @@ -104,6 +104,7 @@ export interface UpdateInferenceComponentCommandOutput extends UpdateInferenceCo * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateInferenceComponentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateInferenceComponentRuntimeConfigCommand.ts b/clients/client-sagemaker/src/commands/UpdateInferenceComponentRuntimeConfigCommand.ts index bf78b96dc1a7c..b07d1c8fb7748 100644 --- a/clients/client-sagemaker/src/commands/UpdateInferenceComponentRuntimeConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateInferenceComponentRuntimeConfigCommand.ts @@ -70,6 +70,7 @@ export interface UpdateInferenceComponentRuntimeConfigCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateInferenceComponentRuntimeConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateInferenceExperimentCommand.ts b/clients/client-sagemaker/src/commands/UpdateInferenceExperimentCommand.ts index 3cfadd47c8bd1..25a431f73b0c8 100644 --- a/clients/client-sagemaker/src/commands/UpdateInferenceExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateInferenceExperimentCommand.ts @@ -105,6 +105,7 @@ export interface UpdateInferenceExperimentCommandOutput extends UpdateInferenceE * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateInferenceExperimentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateMlflowTrackingServerCommand.ts b/clients/client-sagemaker/src/commands/UpdateMlflowTrackingServerCommand.ts index 8b2b916d0028a..d4c4a8cea5287 100644 --- a/clients/client-sagemaker/src/commands/UpdateMlflowTrackingServerCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateMlflowTrackingServerCommand.ts @@ -70,6 +70,7 @@ export interface UpdateMlflowTrackingServerCommandOutput extends UpdateMlflowTra * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateMlflowTrackingServerCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateModelCardCommand.ts b/clients/client-sagemaker/src/commands/UpdateModelCardCommand.ts index 04edb4c361d72..056a2041fea8e 100644 --- a/clients/client-sagemaker/src/commands/UpdateModelCardCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateModelCardCommand.ts @@ -75,6 +75,7 @@ export interface UpdateModelCardCommandOutput extends UpdateModelCardResponse, _ * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateModelCardCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateModelPackageCommand.ts b/clients/client-sagemaker/src/commands/UpdateModelPackageCommand.ts index 0713e638b8e96..a6381f62c3477 100644 --- a/clients/client-sagemaker/src/commands/UpdateModelPackageCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateModelPackageCommand.ts @@ -196,6 +196,7 @@ export interface UpdateModelPackageCommandOutput extends UpdateModelPackageOutpu * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateModelPackageCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateMonitoringAlertCommand.ts b/clients/client-sagemaker/src/commands/UpdateMonitoringAlertCommand.ts index 47dbf91fed453..61c4ca5fe4858 100644 --- a/clients/client-sagemaker/src/commands/UpdateMonitoringAlertCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateMonitoringAlertCommand.ts @@ -66,6 +66,7 @@ export interface UpdateMonitoringAlertCommandOutput extends UpdateMonitoringAler * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateMonitoringAlertCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateMonitoringScheduleCommand.ts b/clients/client-sagemaker/src/commands/UpdateMonitoringScheduleCommand.ts index 024a9e0fe2bce..374b827524685 100644 --- a/clients/client-sagemaker/src/commands/UpdateMonitoringScheduleCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateMonitoringScheduleCommand.ts @@ -171,6 +171,7 @@ export interface UpdateMonitoringScheduleCommandOutput extends UpdateMonitoringS * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateMonitoringScheduleCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateNotebookInstanceCommand.ts b/clients/client-sagemaker/src/commands/UpdateNotebookInstanceCommand.ts index 68be596aea6df..ad6338d52d361 100644 --- a/clients/client-sagemaker/src/commands/UpdateNotebookInstanceCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateNotebookInstanceCommand.ts @@ -78,6 +78,7 @@ export interface UpdateNotebookInstanceCommandOutput extends UpdateNotebookInsta * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateNotebookInstanceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateNotebookInstanceLifecycleConfigCommand.ts b/clients/client-sagemaker/src/commands/UpdateNotebookInstanceLifecycleConfigCommand.ts index ca1cd1cc8a3f3..7b1f5f1f1f216 100644 --- a/clients/client-sagemaker/src/commands/UpdateNotebookInstanceLifecycleConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateNotebookInstanceLifecycleConfigCommand.ts @@ -75,6 +75,7 @@ export interface UpdateNotebookInstanceLifecycleConfigCommandOutput * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateNotebookInstanceLifecycleConfigCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdatePartnerAppCommand.ts b/clients/client-sagemaker/src/commands/UpdatePartnerAppCommand.ts index 5befbfe8a5335..1f0cf972794f5 100644 --- a/clients/client-sagemaker/src/commands/UpdatePartnerAppCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdatePartnerAppCommand.ts @@ -82,6 +82,7 @@ export interface UpdatePartnerAppCommandOutput extends UpdatePartnerAppResponse, * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdatePartnerAppCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdatePipelineCommand.ts b/clients/client-sagemaker/src/commands/UpdatePipelineCommand.ts index 6a6c854f7fd9d..d0230828d15ec 100644 --- a/clients/client-sagemaker/src/commands/UpdatePipelineCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdatePipelineCommand.ts @@ -74,6 +74,7 @@ export interface UpdatePipelineCommandOutput extends UpdatePipelineResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdatePipelineCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdatePipelineExecutionCommand.ts b/clients/client-sagemaker/src/commands/UpdatePipelineExecutionCommand.ts index 1fa5371f0f44e..211926500dd73 100644 --- a/clients/client-sagemaker/src/commands/UpdatePipelineExecutionCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdatePipelineExecutionCommand.ts @@ -67,6 +67,7 @@ export interface UpdatePipelineExecutionCommandOutput extends UpdatePipelineExec * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdatePipelineExecutionCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateProjectCommand.ts b/clients/client-sagemaker/src/commands/UpdateProjectCommand.ts index 663c9822e771f..934a1999d98c8 100644 --- a/clients/client-sagemaker/src/commands/UpdateProjectCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateProjectCommand.ts @@ -82,6 +82,7 @@ export interface UpdateProjectCommandOutput extends UpdateProjectOutput, __Metad * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateProjectCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateSpaceCommand.ts b/clients/client-sagemaker/src/commands/UpdateSpaceCommand.ts index c766ad6b24810..fed4e5282a5e6 100644 --- a/clients/client-sagemaker/src/commands/UpdateSpaceCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateSpaceCommand.ts @@ -157,6 +157,7 @@ export interface UpdateSpaceCommandOutput extends UpdateSpaceResponse, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateSpaceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateTrainingJobCommand.ts b/clients/client-sagemaker/src/commands/UpdateTrainingJobCommand.ts index 18bc63e441d2f..e356f53f02e7d 100644 --- a/clients/client-sagemaker/src/commands/UpdateTrainingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateTrainingJobCommand.ts @@ -90,6 +90,7 @@ export interface UpdateTrainingJobCommandOutput extends UpdateTrainingJobRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateTrainingJobCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateTrialCommand.ts b/clients/client-sagemaker/src/commands/UpdateTrialCommand.ts index 3d11b2c4d1ca6..0bd2c11ce2f50 100644 --- a/clients/client-sagemaker/src/commands/UpdateTrialCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateTrialCommand.ts @@ -63,6 +63,7 @@ export interface UpdateTrialCommandOutput extends UpdateTrialResponse, __Metadat * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateTrialCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateTrialComponentCommand.ts b/clients/client-sagemaker/src/commands/UpdateTrialComponentCommand.ts index a2ec62e47fc60..6519d5beaa0b6 100644 --- a/clients/client-sagemaker/src/commands/UpdateTrialComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateTrialComponentCommand.ts @@ -96,6 +96,7 @@ export interface UpdateTrialComponentCommandOutput extends UpdateTrialComponentR * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateTrialComponentCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateUserProfileCommand.ts b/clients/client-sagemaker/src/commands/UpdateUserProfileCommand.ts index 32578f924e1cc..7cfc86789f53a 100644 --- a/clients/client-sagemaker/src/commands/UpdateUserProfileCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateUserProfileCommand.ts @@ -283,6 +283,7 @@ export interface UpdateUserProfileCommandOutput extends UpdateUserProfileRespons * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateUserProfileCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateWorkforceCommand.ts b/clients/client-sagemaker/src/commands/UpdateWorkforceCommand.ts index 87200dc696870..6ce1f452a7650 100644 --- a/clients/client-sagemaker/src/commands/UpdateWorkforceCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateWorkforceCommand.ts @@ -156,6 +156,7 @@ export interface UpdateWorkforceCommandOutput extends UpdateWorkforceResponse, _ * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateWorkforceCommand extends $Command diff --git a/clients/client-sagemaker/src/commands/UpdateWorkteamCommand.ts b/clients/client-sagemaker/src/commands/UpdateWorkteamCommand.ts index 00a6027830582..c0a09b348b060 100644 --- a/clients/client-sagemaker/src/commands/UpdateWorkteamCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateWorkteamCommand.ts @@ -121,6 +121,7 @@ export interface UpdateWorkteamCommandOutput extends UpdateWorkteamResponse, __M * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* + * * @public */ export class UpdateWorkteamCommand extends $Command diff --git a/clients/client-savingsplans/src/commands/CreateSavingsPlanCommand.ts b/clients/client-savingsplans/src/commands/CreateSavingsPlanCommand.ts index 3ebd80b9d6311..8b0834810c632 100644 --- a/clients/client-savingsplans/src/commands/CreateSavingsPlanCommand.ts +++ b/clients/client-savingsplans/src/commands/CreateSavingsPlanCommand.ts @@ -74,6 +74,7 @@ export interface CreateSavingsPlanCommandOutput extends CreateSavingsPlanRespons * @throws {@link SavingsplansServiceException} *

Base exception class for all service exceptions from Savingsplans service.

* + * * @public */ export class CreateSavingsPlanCommand extends $Command diff --git a/clients/client-savingsplans/src/commands/DeleteQueuedSavingsPlanCommand.ts b/clients/client-savingsplans/src/commands/DeleteQueuedSavingsPlanCommand.ts index 9cc7217edc4fb..df11f73a3c80d 100644 --- a/clients/client-savingsplans/src/commands/DeleteQueuedSavingsPlanCommand.ts +++ b/clients/client-savingsplans/src/commands/DeleteQueuedSavingsPlanCommand.ts @@ -65,6 +65,7 @@ export interface DeleteQueuedSavingsPlanCommandOutput extends DeleteQueuedSaving * @throws {@link SavingsplansServiceException} *

Base exception class for all service exceptions from Savingsplans service.

* + * * @public */ export class DeleteQueuedSavingsPlanCommand extends $Command diff --git a/clients/client-savingsplans/src/commands/DescribeSavingsPlanRatesCommand.ts b/clients/client-savingsplans/src/commands/DescribeSavingsPlanRatesCommand.ts index c27262310e84c..4d420d703b626 100644 --- a/clients/client-savingsplans/src/commands/DescribeSavingsPlanRatesCommand.ts +++ b/clients/client-savingsplans/src/commands/DescribeSavingsPlanRatesCommand.ts @@ -89,6 +89,7 @@ export interface DescribeSavingsPlanRatesCommandOutput extends DescribeSavingsPl * @throws {@link SavingsplansServiceException} *

Base exception class for all service exceptions from Savingsplans service.

* + * * @public */ export class DescribeSavingsPlanRatesCommand extends $Command diff --git a/clients/client-savingsplans/src/commands/DescribeSavingsPlansCommand.ts b/clients/client-savingsplans/src/commands/DescribeSavingsPlansCommand.ts index 02320aee760ef..33bb2034799b5 100644 --- a/clients/client-savingsplans/src/commands/DescribeSavingsPlansCommand.ts +++ b/clients/client-savingsplans/src/commands/DescribeSavingsPlansCommand.ts @@ -106,6 +106,7 @@ export interface DescribeSavingsPlansCommandOutput extends DescribeSavingsPlansR * @throws {@link SavingsplansServiceException} *

Base exception class for all service exceptions from Savingsplans service.

* + * * @public */ export class DescribeSavingsPlansCommand extends $Command diff --git a/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingRatesCommand.ts b/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingRatesCommand.ts index 6498f472d7424..61c6d3b47a371 100644 --- a/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingRatesCommand.ts +++ b/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingRatesCommand.ts @@ -123,6 +123,7 @@ export interface DescribeSavingsPlansOfferingRatesCommandOutput * @throws {@link SavingsplansServiceException} *

Base exception class for all service exceptions from Savingsplans service.

* + * * @public */ export class DescribeSavingsPlansOfferingRatesCommand extends $Command diff --git a/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingsCommand.ts b/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingsCommand.ts index 60a0309473181..285df6bd269ab 100644 --- a/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingsCommand.ts +++ b/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingsCommand.ts @@ -125,6 +125,7 @@ export interface DescribeSavingsPlansOfferingsCommandOutput * @throws {@link SavingsplansServiceException} *

Base exception class for all service exceptions from Savingsplans service.

* + * * @public */ export class DescribeSavingsPlansOfferingsCommand extends $Command diff --git a/clients/client-savingsplans/src/commands/ListTagsForResourceCommand.ts b/clients/client-savingsplans/src/commands/ListTagsForResourceCommand.ts index 698b37dc87d9e..36c745c39d595 100644 --- a/clients/client-savingsplans/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-savingsplans/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SavingsplansServiceException} *

Base exception class for all service exceptions from Savingsplans service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-savingsplans/src/commands/ReturnSavingsPlanCommand.ts b/clients/client-savingsplans/src/commands/ReturnSavingsPlanCommand.ts index da32d5d19cb4d..49db3268228e8 100644 --- a/clients/client-savingsplans/src/commands/ReturnSavingsPlanCommand.ts +++ b/clients/client-savingsplans/src/commands/ReturnSavingsPlanCommand.ts @@ -68,6 +68,7 @@ export interface ReturnSavingsPlanCommandOutput extends ReturnSavingsPlanRespons * @throws {@link SavingsplansServiceException} *

Base exception class for all service exceptions from Savingsplans service.

* + * * @public */ export class ReturnSavingsPlanCommand extends $Command diff --git a/clients/client-savingsplans/src/commands/TagResourceCommand.ts b/clients/client-savingsplans/src/commands/TagResourceCommand.ts index 0c093849ad09f..2e27474b5c19f 100644 --- a/clients/client-savingsplans/src/commands/TagResourceCommand.ts +++ b/clients/client-savingsplans/src/commands/TagResourceCommand.ts @@ -68,6 +68,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link SavingsplansServiceException} *

Base exception class for all service exceptions from Savingsplans service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-savingsplans/src/commands/UntagResourceCommand.ts b/clients/client-savingsplans/src/commands/UntagResourceCommand.ts index e524eec423ef4..7b294e1ca5879 100644 --- a/clients/client-savingsplans/src/commands/UntagResourceCommand.ts +++ b/clients/client-savingsplans/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link SavingsplansServiceException} *

Base exception class for all service exceptions from Savingsplans service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-scheduler/src/commands/CreateScheduleCommand.ts b/clients/client-scheduler/src/commands/CreateScheduleCommand.ts index 4e7f30aeb28b2..7fa1a39d0d0b2 100644 --- a/clients/client-scheduler/src/commands/CreateScheduleCommand.ts +++ b/clients/client-scheduler/src/commands/CreateScheduleCommand.ts @@ -163,6 +163,7 @@ export interface CreateScheduleCommandOutput extends CreateScheduleOutput, __Met * @throws {@link SchedulerServiceException} *

Base exception class for all service exceptions from Scheduler service.

* + * * @public */ export class CreateScheduleCommand extends $Command diff --git a/clients/client-scheduler/src/commands/CreateScheduleGroupCommand.ts b/clients/client-scheduler/src/commands/CreateScheduleGroupCommand.ts index 791d2fc6230bf..c0ba647e11e1d 100644 --- a/clients/client-scheduler/src/commands/CreateScheduleGroupCommand.ts +++ b/clients/client-scheduler/src/commands/CreateScheduleGroupCommand.ts @@ -77,6 +77,7 @@ export interface CreateScheduleGroupCommandOutput extends CreateScheduleGroupOut * @throws {@link SchedulerServiceException} *

Base exception class for all service exceptions from Scheduler service.

* + * * @public */ export class CreateScheduleGroupCommand extends $Command diff --git a/clients/client-scheduler/src/commands/DeleteScheduleCommand.ts b/clients/client-scheduler/src/commands/DeleteScheduleCommand.ts index c223b963c1ed2..84046ad5867f6 100644 --- a/clients/client-scheduler/src/commands/DeleteScheduleCommand.ts +++ b/clients/client-scheduler/src/commands/DeleteScheduleCommand.ts @@ -70,6 +70,7 @@ export interface DeleteScheduleCommandOutput extends DeleteScheduleOutput, __Met * @throws {@link SchedulerServiceException} *

Base exception class for all service exceptions from Scheduler service.

* + * * @public */ export class DeleteScheduleCommand extends $Command diff --git a/clients/client-scheduler/src/commands/DeleteScheduleGroupCommand.ts b/clients/client-scheduler/src/commands/DeleteScheduleGroupCommand.ts index dcdf7072d081b..015c4f6729056 100644 --- a/clients/client-scheduler/src/commands/DeleteScheduleGroupCommand.ts +++ b/clients/client-scheduler/src/commands/DeleteScheduleGroupCommand.ts @@ -77,6 +77,7 @@ export interface DeleteScheduleGroupCommandOutput extends DeleteScheduleGroupOut * @throws {@link SchedulerServiceException} *

Base exception class for all service exceptions from Scheduler service.

* + * * @public */ export class DeleteScheduleGroupCommand extends $Command diff --git a/clients/client-scheduler/src/commands/GetScheduleCommand.ts b/clients/client-scheduler/src/commands/GetScheduleCommand.ts index 304d564e9e7bd..306775ba4cccb 100644 --- a/clients/client-scheduler/src/commands/GetScheduleCommand.ts +++ b/clients/client-scheduler/src/commands/GetScheduleCommand.ts @@ -160,6 +160,7 @@ export interface GetScheduleCommandOutput extends GetScheduleOutput, __MetadataB * @throws {@link SchedulerServiceException} *

Base exception class for all service exceptions from Scheduler service.

* + * * @public */ export class GetScheduleCommand extends $Command diff --git a/clients/client-scheduler/src/commands/GetScheduleGroupCommand.ts b/clients/client-scheduler/src/commands/GetScheduleGroupCommand.ts index 49ccf8647fe02..f6439b4ff2845 100644 --- a/clients/client-scheduler/src/commands/GetScheduleGroupCommand.ts +++ b/clients/client-scheduler/src/commands/GetScheduleGroupCommand.ts @@ -71,6 +71,7 @@ export interface GetScheduleGroupCommandOutput extends GetScheduleGroupOutput, _ * @throws {@link SchedulerServiceException} *

Base exception class for all service exceptions from Scheduler service.

* + * * @public */ export class GetScheduleGroupCommand extends $Command diff --git a/clients/client-scheduler/src/commands/ListScheduleGroupsCommand.ts b/clients/client-scheduler/src/commands/ListScheduleGroupsCommand.ts index 18e242b76ccc1..abdc8fd6ccb11 100644 --- a/clients/client-scheduler/src/commands/ListScheduleGroupsCommand.ts +++ b/clients/client-scheduler/src/commands/ListScheduleGroupsCommand.ts @@ -75,6 +75,7 @@ export interface ListScheduleGroupsCommandOutput extends ListScheduleGroupsOutpu * @throws {@link SchedulerServiceException} *

Base exception class for all service exceptions from Scheduler service.

* + * * @public */ export class ListScheduleGroupsCommand extends $Command diff --git a/clients/client-scheduler/src/commands/ListSchedulesCommand.ts b/clients/client-scheduler/src/commands/ListSchedulesCommand.ts index ec4b7d171bda8..0c7cd22632626 100644 --- a/clients/client-scheduler/src/commands/ListSchedulesCommand.ts +++ b/clients/client-scheduler/src/commands/ListSchedulesCommand.ts @@ -84,6 +84,7 @@ export interface ListSchedulesCommandOutput extends ListSchedulesOutput, __Metad * @throws {@link SchedulerServiceException} *

Base exception class for all service exceptions from Scheduler service.

* + * * @public */ export class ListSchedulesCommand extends $Command diff --git a/clients/client-scheduler/src/commands/ListTagsForResourceCommand.ts b/clients/client-scheduler/src/commands/ListTagsForResourceCommand.ts index b6aba5a4304d6..34841a97f5c56 100644 --- a/clients/client-scheduler/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-scheduler/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link SchedulerServiceException} *

Base exception class for all service exceptions from Scheduler service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-scheduler/src/commands/TagResourceCommand.ts b/clients/client-scheduler/src/commands/TagResourceCommand.ts index 6bc9aa45f8547..1626fdc12afa2 100644 --- a/clients/client-scheduler/src/commands/TagResourceCommand.ts +++ b/clients/client-scheduler/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link SchedulerServiceException} *

Base exception class for all service exceptions from Scheduler service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-scheduler/src/commands/UntagResourceCommand.ts b/clients/client-scheduler/src/commands/UntagResourceCommand.ts index 4bf34302cf711..ed39912ae0499 100644 --- a/clients/client-scheduler/src/commands/UntagResourceCommand.ts +++ b/clients/client-scheduler/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link SchedulerServiceException} *

Base exception class for all service exceptions from Scheduler service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-scheduler/src/commands/UpdateScheduleCommand.ts b/clients/client-scheduler/src/commands/UpdateScheduleCommand.ts index 3067690a78b23..008b433d1f03a 100644 --- a/clients/client-scheduler/src/commands/UpdateScheduleCommand.ts +++ b/clients/client-scheduler/src/commands/UpdateScheduleCommand.ts @@ -168,6 +168,7 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleOutput, __Met * @throws {@link SchedulerServiceException} *

Base exception class for all service exceptions from Scheduler service.

* + * * @public */ export class UpdateScheduleCommand extends $Command diff --git a/clients/client-schemas/src/commands/CreateDiscovererCommand.ts b/clients/client-schemas/src/commands/CreateDiscovererCommand.ts index 9f7f15a45c44d..e0be94b1b3b23 100644 --- a/clients/client-schemas/src/commands/CreateDiscovererCommand.ts +++ b/clients/client-schemas/src/commands/CreateDiscovererCommand.ts @@ -80,6 +80,7 @@ export interface CreateDiscovererCommandOutput extends CreateDiscovererResponse, * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class CreateDiscovererCommand extends $Command diff --git a/clients/client-schemas/src/commands/CreateRegistryCommand.ts b/clients/client-schemas/src/commands/CreateRegistryCommand.ts index 0515b5de000f9..aa30cb28e70aa 100644 --- a/clients/client-schemas/src/commands/CreateRegistryCommand.ts +++ b/clients/client-schemas/src/commands/CreateRegistryCommand.ts @@ -76,6 +76,7 @@ export interface CreateRegistryCommandOutput extends CreateRegistryResponse, __M * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class CreateRegistryCommand extends $Command diff --git a/clients/client-schemas/src/commands/CreateSchemaCommand.ts b/clients/client-schemas/src/commands/CreateSchemaCommand.ts index dee24b738de77..e1bfe978ccc8c 100644 --- a/clients/client-schemas/src/commands/CreateSchemaCommand.ts +++ b/clients/client-schemas/src/commands/CreateSchemaCommand.ts @@ -79,6 +79,7 @@ export interface CreateSchemaCommandOutput extends CreateSchemaResponse, __Metad * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class CreateSchemaCommand extends $Command diff --git a/clients/client-schemas/src/commands/DeleteDiscovererCommand.ts b/clients/client-schemas/src/commands/DeleteDiscovererCommand.ts index 017ec877251de..8642e3f272acc 100644 --- a/clients/client-schemas/src/commands/DeleteDiscovererCommand.ts +++ b/clients/client-schemas/src/commands/DeleteDiscovererCommand.ts @@ -65,6 +65,7 @@ export interface DeleteDiscovererCommandOutput extends __MetadataBearer {} * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class DeleteDiscovererCommand extends $Command diff --git a/clients/client-schemas/src/commands/DeleteRegistryCommand.ts b/clients/client-schemas/src/commands/DeleteRegistryCommand.ts index c097b94bc773b..0bd505cc97a86 100644 --- a/clients/client-schemas/src/commands/DeleteRegistryCommand.ts +++ b/clients/client-schemas/src/commands/DeleteRegistryCommand.ts @@ -65,6 +65,7 @@ export interface DeleteRegistryCommandOutput extends __MetadataBearer {} * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class DeleteRegistryCommand extends $Command diff --git a/clients/client-schemas/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-schemas/src/commands/DeleteResourcePolicyCommand.ts index b19ba49adebb1..5ff44e9bc5229 100644 --- a/clients/client-schemas/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-schemas/src/commands/DeleteResourcePolicyCommand.ts @@ -65,6 +65,7 @@ export interface DeleteResourcePolicyCommandOutput extends __MetadataBearer {} * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-schemas/src/commands/DeleteSchemaCommand.ts b/clients/client-schemas/src/commands/DeleteSchemaCommand.ts index 4c004823a205c..04e267c067ddb 100644 --- a/clients/client-schemas/src/commands/DeleteSchemaCommand.ts +++ b/clients/client-schemas/src/commands/DeleteSchemaCommand.ts @@ -66,6 +66,7 @@ export interface DeleteSchemaCommandOutput extends __MetadataBearer {} * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class DeleteSchemaCommand extends $Command diff --git a/clients/client-schemas/src/commands/DeleteSchemaVersionCommand.ts b/clients/client-schemas/src/commands/DeleteSchemaVersionCommand.ts index a59f71da17b02..cdc6fe0827582 100644 --- a/clients/client-schemas/src/commands/DeleteSchemaVersionCommand.ts +++ b/clients/client-schemas/src/commands/DeleteSchemaVersionCommand.ts @@ -67,6 +67,7 @@ export interface DeleteSchemaVersionCommandOutput extends __MetadataBearer {} * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class DeleteSchemaVersionCommand extends $Command diff --git a/clients/client-schemas/src/commands/DescribeCodeBindingCommand.ts b/clients/client-schemas/src/commands/DescribeCodeBindingCommand.ts index b5da69138bf44..d069a47557895 100644 --- a/clients/client-schemas/src/commands/DescribeCodeBindingCommand.ts +++ b/clients/client-schemas/src/commands/DescribeCodeBindingCommand.ts @@ -73,6 +73,7 @@ export interface DescribeCodeBindingCommandOutput extends DescribeCodeBindingRes * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class DescribeCodeBindingCommand extends $Command diff --git a/clients/client-schemas/src/commands/DescribeDiscovererCommand.ts b/clients/client-schemas/src/commands/DescribeDiscovererCommand.ts index ea07fe966be86..64da61bfc7dc3 100644 --- a/clients/client-schemas/src/commands/DescribeDiscovererCommand.ts +++ b/clients/client-schemas/src/commands/DescribeDiscovererCommand.ts @@ -75,6 +75,7 @@ export interface DescribeDiscovererCommandOutput extends DescribeDiscovererRespo * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class DescribeDiscovererCommand extends $Command diff --git a/clients/client-schemas/src/commands/DescribeRegistryCommand.ts b/clients/client-schemas/src/commands/DescribeRegistryCommand.ts index 0c835be2fde02..9142c2f744221 100644 --- a/clients/client-schemas/src/commands/DescribeRegistryCommand.ts +++ b/clients/client-schemas/src/commands/DescribeRegistryCommand.ts @@ -72,6 +72,7 @@ export interface DescribeRegistryCommandOutput extends DescribeRegistryResponse, * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class DescribeRegistryCommand extends $Command diff --git a/clients/client-schemas/src/commands/DescribeSchemaCommand.ts b/clients/client-schemas/src/commands/DescribeSchemaCommand.ts index b6b058dd4d8ff..3acedb4c2d4ee 100644 --- a/clients/client-schemas/src/commands/DescribeSchemaCommand.ts +++ b/clients/client-schemas/src/commands/DescribeSchemaCommand.ts @@ -79,6 +79,7 @@ export interface DescribeSchemaCommandOutput extends DescribeSchemaResponse, __M * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class DescribeSchemaCommand extends $Command diff --git a/clients/client-schemas/src/commands/ExportSchemaCommand.ts b/clients/client-schemas/src/commands/ExportSchemaCommand.ts index 7ff1a43ea02de..5c21acdd243f1 100644 --- a/clients/client-schemas/src/commands/ExportSchemaCommand.ts +++ b/clients/client-schemas/src/commands/ExportSchemaCommand.ts @@ -77,6 +77,7 @@ export interface ExportSchemaCommandOutput extends ExportSchemaResponse, __Metad * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * */ export class ExportSchemaCommand extends $Command .classBuilder< diff --git a/clients/client-schemas/src/commands/GetCodeBindingSourceCommand.ts b/clients/client-schemas/src/commands/GetCodeBindingSourceCommand.ts index 1dddd0110858d..34982b4e4a62a 100644 --- a/clients/client-schemas/src/commands/GetCodeBindingSourceCommand.ts +++ b/clients/client-schemas/src/commands/GetCodeBindingSourceCommand.ts @@ -78,6 +78,7 @@ export interface GetCodeBindingSourceCommandOutput extends GetCodeBindingSourceC * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class GetCodeBindingSourceCommand extends $Command diff --git a/clients/client-schemas/src/commands/GetDiscoveredSchemaCommand.ts b/clients/client-schemas/src/commands/GetDiscoveredSchemaCommand.ts index 0327693d2cbfe..35086b5c64952 100644 --- a/clients/client-schemas/src/commands/GetDiscoveredSchemaCommand.ts +++ b/clients/client-schemas/src/commands/GetDiscoveredSchemaCommand.ts @@ -68,6 +68,7 @@ export interface GetDiscoveredSchemaCommandOutput extends GetDiscoveredSchemaRes * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class GetDiscoveredSchemaCommand extends $Command diff --git a/clients/client-schemas/src/commands/GetResourcePolicyCommand.ts b/clients/client-schemas/src/commands/GetResourcePolicyCommand.ts index 2a7d50ededfd4..be556b9d82acd 100644 --- a/clients/client-schemas/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-schemas/src/commands/GetResourcePolicyCommand.ts @@ -68,6 +68,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-schemas/src/commands/ListDiscoverersCommand.ts b/clients/client-schemas/src/commands/ListDiscoverersCommand.ts index 531d334b2b3eb..bdffd79178200 100644 --- a/clients/client-schemas/src/commands/ListDiscoverersCommand.ts +++ b/clients/client-schemas/src/commands/ListDiscoverersCommand.ts @@ -80,6 +80,7 @@ export interface ListDiscoverersCommandOutput extends ListDiscoverersResponse, _ * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class ListDiscoverersCommand extends $Command diff --git a/clients/client-schemas/src/commands/ListRegistriesCommand.ts b/clients/client-schemas/src/commands/ListRegistriesCommand.ts index b547ba960f745..98b4d5a1dcda6 100644 --- a/clients/client-schemas/src/commands/ListRegistriesCommand.ts +++ b/clients/client-schemas/src/commands/ListRegistriesCommand.ts @@ -77,6 +77,7 @@ export interface ListRegistriesCommandOutput extends ListRegistriesResponse, __M * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class ListRegistriesCommand extends $Command diff --git a/clients/client-schemas/src/commands/ListSchemaVersionsCommand.ts b/clients/client-schemas/src/commands/ListSchemaVersionsCommand.ts index 4701189186215..bac0127192e18 100644 --- a/clients/client-schemas/src/commands/ListSchemaVersionsCommand.ts +++ b/clients/client-schemas/src/commands/ListSchemaVersionsCommand.ts @@ -78,6 +78,7 @@ export interface ListSchemaVersionsCommandOutput extends ListSchemaVersionsRespo * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class ListSchemaVersionsCommand extends $Command diff --git a/clients/client-schemas/src/commands/ListSchemasCommand.ts b/clients/client-schemas/src/commands/ListSchemasCommand.ts index 2ff132d79d8b7..ace69e35f4d6a 100644 --- a/clients/client-schemas/src/commands/ListSchemasCommand.ts +++ b/clients/client-schemas/src/commands/ListSchemasCommand.ts @@ -79,6 +79,7 @@ export interface ListSchemasCommandOutput extends ListSchemasResponse, __Metadat * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class ListSchemasCommand extends $Command diff --git a/clients/client-schemas/src/commands/ListTagsForResourceCommand.ts b/clients/client-schemas/src/commands/ListTagsForResourceCommand.ts index 07243010a583a..0258a0136b9d4 100644 --- a/clients/client-schemas/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-schemas/src/commands/ListTagsForResourceCommand.ts @@ -65,6 +65,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-schemas/src/commands/PutCodeBindingCommand.ts b/clients/client-schemas/src/commands/PutCodeBindingCommand.ts index 0773cb5c4caa3..5e1d5e83ef07c 100644 --- a/clients/client-schemas/src/commands/PutCodeBindingCommand.ts +++ b/clients/client-schemas/src/commands/PutCodeBindingCommand.ts @@ -75,6 +75,7 @@ export interface PutCodeBindingCommandOutput extends PutCodeBindingResponse, __M * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class PutCodeBindingCommand extends $Command diff --git a/clients/client-schemas/src/commands/PutResourcePolicyCommand.ts b/clients/client-schemas/src/commands/PutResourcePolicyCommand.ts index 18d53d1c17cb3..72d9aa106dfd4 100644 --- a/clients/client-schemas/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-schemas/src/commands/PutResourcePolicyCommand.ts @@ -72,6 +72,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-schemas/src/commands/SearchSchemasCommand.ts b/clients/client-schemas/src/commands/SearchSchemasCommand.ts index a5874ccec0cab..48442845facfa 100644 --- a/clients/client-schemas/src/commands/SearchSchemasCommand.ts +++ b/clients/client-schemas/src/commands/SearchSchemasCommand.ts @@ -82,6 +82,7 @@ export interface SearchSchemasCommandOutput extends SearchSchemasResponse, __Met * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class SearchSchemasCommand extends $Command diff --git a/clients/client-schemas/src/commands/StartDiscovererCommand.ts b/clients/client-schemas/src/commands/StartDiscovererCommand.ts index 33c8049a7d834..7a59ec3fa28c2 100644 --- a/clients/client-schemas/src/commands/StartDiscovererCommand.ts +++ b/clients/client-schemas/src/commands/StartDiscovererCommand.ts @@ -68,6 +68,7 @@ export interface StartDiscovererCommandOutput extends StartDiscovererResponse, _ * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class StartDiscovererCommand extends $Command diff --git a/clients/client-schemas/src/commands/StopDiscovererCommand.ts b/clients/client-schemas/src/commands/StopDiscovererCommand.ts index cb21a4c6eab16..b48293029dba7 100644 --- a/clients/client-schemas/src/commands/StopDiscovererCommand.ts +++ b/clients/client-schemas/src/commands/StopDiscovererCommand.ts @@ -68,6 +68,7 @@ export interface StopDiscovererCommandOutput extends StopDiscovererResponse, __M * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class StopDiscovererCommand extends $Command diff --git a/clients/client-schemas/src/commands/TagResourceCommand.ts b/clients/client-schemas/src/commands/TagResourceCommand.ts index 5bda79aad8511..4eb2932cc82fe 100644 --- a/clients/client-schemas/src/commands/TagResourceCommand.ts +++ b/clients/client-schemas/src/commands/TagResourceCommand.ts @@ -64,6 +64,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-schemas/src/commands/UntagResourceCommand.ts b/clients/client-schemas/src/commands/UntagResourceCommand.ts index 9c33cb5130d2b..a30272acaa3b7 100644 --- a/clients/client-schemas/src/commands/UntagResourceCommand.ts +++ b/clients/client-schemas/src/commands/UntagResourceCommand.ts @@ -64,6 +64,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-schemas/src/commands/UpdateDiscovererCommand.ts b/clients/client-schemas/src/commands/UpdateDiscovererCommand.ts index 50d711334f541..def296aeab9de 100644 --- a/clients/client-schemas/src/commands/UpdateDiscovererCommand.ts +++ b/clients/client-schemas/src/commands/UpdateDiscovererCommand.ts @@ -77,6 +77,7 @@ export interface UpdateDiscovererCommandOutput extends UpdateDiscovererResponse, * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class UpdateDiscovererCommand extends $Command diff --git a/clients/client-schemas/src/commands/UpdateRegistryCommand.ts b/clients/client-schemas/src/commands/UpdateRegistryCommand.ts index 8eb87b9ca8411..0c8ad43ec08c9 100644 --- a/clients/client-schemas/src/commands/UpdateRegistryCommand.ts +++ b/clients/client-schemas/src/commands/UpdateRegistryCommand.ts @@ -73,6 +73,7 @@ export interface UpdateRegistryCommandOutput extends UpdateRegistryResponse, __M * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class UpdateRegistryCommand extends $Command diff --git a/clients/client-schemas/src/commands/UpdateSchemaCommand.ts b/clients/client-schemas/src/commands/UpdateSchemaCommand.ts index 8323a1c5f7756..4a84b1bdf3d6a 100644 --- a/clients/client-schemas/src/commands/UpdateSchemaCommand.ts +++ b/clients/client-schemas/src/commands/UpdateSchemaCommand.ts @@ -79,6 +79,7 @@ export interface UpdateSchemaCommandOutput extends UpdateSchemaResponse, __Metad * @throws {@link SchemasServiceException} *

Base exception class for all service exceptions from Schemas service.

* + * * @public */ export class UpdateSchemaCommand extends $Command diff --git a/clients/client-secrets-manager/src/commands/BatchGetSecretValueCommand.ts b/clients/client-secrets-manager/src/commands/BatchGetSecretValueCommand.ts index b2d16672b7b2f..0463b8ad8b4e8 100644 --- a/clients/client-secrets-manager/src/commands/BatchGetSecretValueCommand.ts +++ b/clients/client-secrets-manager/src/commands/BatchGetSecretValueCommand.ts @@ -133,12 +133,12 @@ export interface BatchGetSecretValueCommandOutput extends BatchGetSecretValueRes * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To retrieve the secret values for a group of secrets listed by name * ```javascript * // The following example gets the values for three secrets. * const input = { - * "SecretIdList": [ + * SecretIdList: [ * "MySecret1", * "MySecret2", * "MySecret3" @@ -146,46 +146,46 @@ export interface BatchGetSecretValueCommandOutput extends BatchGetSecretValueRes * }; * const command = new BatchGetSecretValueCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Errors": [], - * "SecretValues": [ + * Errors: [], + * SecretValues: [ * { - * "ARN": "®ion-arn;&asm-service-name;:us-west-2:&ExampleAccountId;:secret:MySecret1-a1b2c3", - * "CreatedDate": 1700591229.801, - * "Name": "MySecret1", - * "SecretString": "{\"username\":\"diego_ramirez\",\"password\":\"EXAMPLE-PASSWORD\",\"engine\":\"mysql\",\"host\":\"secretsmanagertutorial.cluster.us-west-2.rds.amazonaws.com\",\"port\":3306,\"dbClusterIdentifier\":\"secretsmanagertutorial\"}", - * "VersionId": "a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa", - * "VersionStages": [ + * ARN: "®ion-arn;&asm-service-name;:us-west-2:&ExampleAccountId;:secret:MySecret1-a1b2c3", + * CreatedDate: 1.700591229801E9, + * Name: "MySecret1", + * SecretString: `{"username":"diego_ramirez","password":"EXAMPLE-PASSWORD","engine":"mysql","host":"secretsmanagertutorial.cluster.us-west-2.rds.amazonaws.com","port":3306,"dbClusterIdentifier":"secretsmanagertutorial"}`, + * VersionId: "a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa", + * VersionStages: [ * "AWSCURRENT" * ] * }, * { - * "ARN": "®ion-arn;&asm-service-name;:us-west-2:&ExampleAccountId;:secret:MySecret2-a1b2c3", - * "CreatedDate": 1699911394.105, - * "Name": "MySecret2", - * "SecretString": "{\"username\":\"akua_mansa\",\"password\":\"EXAMPLE-PASSWORD\"", - * "VersionId": "a1b2c3d4-5678-90ab-cdef-EXAMPLEbbbbb", - * "VersionStages": [ + * ARN: "®ion-arn;&asm-service-name;:us-west-2:&ExampleAccountId;:secret:MySecret2-a1b2c3", + * CreatedDate: 1.699911394105E9, + * Name: "MySecret2", + * SecretString: `{"username":"akua_mansa","password":"EXAMPLE-PASSWORD"`, + * VersionId: "a1b2c3d4-5678-90ab-cdef-EXAMPLEbbbbb", + * VersionStages: [ * "AWSCURRENT" * ] * }, * { - * "ARN": "®ion-arn;&asm-service-name;:us-west-2:&ExampleAccountId;:secret:MySecret3-a1b2c3", - * "CreatedDate": 1699911394.105, - * "Name": "MySecret3", - * "SecretString": "{\"username\":\"jie_liu\",\"password\":\"EXAMPLE-PASSWORD\"", - * "VersionId": "a1b2c3d4-5678-90ab-cdef-EXAMPLEccccc", - * "VersionStages": [ + * ARN: "®ion-arn;&asm-service-name;:us-west-2:&ExampleAccountId;:secret:MySecret3-a1b2c3", + * CreatedDate: 1.699911394105E9, + * Name: "MySecret3", + * SecretString: `{"username":"jie_liu","password":"EXAMPLE-PASSWORD"`, + * VersionId: "a1b2c3d4-5678-90ab-cdef-EXAMPLEccccc", + * VersionStages: [ * "AWSCURRENT" * ] * } * ] * } * *\/ - * // example id: to-retrieve-the-secret-values-for-a-group-of-secrets-listed-by-name-1704846593341 * ``` * + * @public */ export class BatchGetSecretValueCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/CancelRotateSecretCommand.ts b/clients/client-secrets-manager/src/commands/CancelRotateSecretCommand.ts index f67d63eba899d..0ddb462a93a71 100644 --- a/clients/client-secrets-manager/src/commands/CancelRotateSecretCommand.ts +++ b/clients/client-secrets-manager/src/commands/CancelRotateSecretCommand.ts @@ -102,24 +102,24 @@ export interface CancelRotateSecretCommandOutput extends CancelRotateSecretRespo * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To cancel scheduled rotation for a secret * ```javascript * // The following example shows how to cancel rotation for a secret. The operation sets the RotationEnabled field to false and cancels all scheduled rotations. To resume scheduled rotations, you must re-enable rotation by calling the rotate-secret operation. * const input = { - * "SecretId": "MyTestDatabaseSecret" + * SecretId: "MyTestDatabaseSecret" * }; * const command = new CancelRotateSecretCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "Name" + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "Name" * } * *\/ - * // example id: to-cancel-scheduled-rotation-for-a-secret-1523996016032 * ``` * + * @public */ export class CancelRotateSecretCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/CreateSecretCommand.ts b/clients/client-secrets-manager/src/commands/CreateSecretCommand.ts index 7e6580f2cc387..edb4fb9dc24bc 100644 --- a/clients/client-secrets-manager/src/commands/CreateSecretCommand.ts +++ b/clients/client-secrets-manager/src/commands/CreateSecretCommand.ts @@ -169,28 +169,28 @@ export interface CreateSecretCommandOutput extends CreateSecretResponse, __Metad * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To create a basic secret * ```javascript * // The following example shows how to create a secret. The credentials stored in the encrypted secret value are retrieved from a file on disk named mycreds.json. * const input = { - * "ClientRequestToken": "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1", - * "Description": "My test database secret created with the CLI", - * "Name": "MyTestDatabaseSecret", - * "SecretString": "{\"username\":\"david\",\"password\":\"EXAMPLE-PASSWORD\"}" + * ClientRequestToken: "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1", + * Description: "My test database secret created with the CLI", + * Name: "MyTestDatabaseSecret", + * SecretString: `{"username":"david","password":"EXAMPLE-PASSWORD"}` * }; * const command = new CreateSecretCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret", - * "VersionId": "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1" + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret", + * VersionId: "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1" * } * *\/ - * // example id: to-create-a-basic-secret-1523996473658 * ``` * + * @public */ export class CreateSecretCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-secrets-manager/src/commands/DeleteResourcePolicyCommand.ts index 72cd37e3ca32a..5553fb61961d5 100644 --- a/clients/client-secrets-manager/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-secrets-manager/src/commands/DeleteResourcePolicyCommand.ts @@ -91,24 +91,24 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To delete the resource-based policy attached to a secret * ```javascript * // The following example shows how to delete the resource-based policy that is attached to a secret. * const input = { - * "SecretId": "MyTestDatabaseSecret" + * SecretId: "MyTestDatabaseSecret" * }; * const command = new DeleteResourcePolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret" + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret" * } * *\/ - * // example id: to-delete-the-resource-based-policy-attached-to-a-secret-1530209419204 * ``` * + * @public */ export class DeleteResourcePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/DeleteSecretCommand.ts b/clients/client-secrets-manager/src/commands/DeleteSecretCommand.ts index d3a6dda2833be..80a1a4ec65917 100644 --- a/clients/client-secrets-manager/src/commands/DeleteSecretCommand.ts +++ b/clients/client-secrets-manager/src/commands/DeleteSecretCommand.ts @@ -114,26 +114,8 @@ export interface DeleteSecretCommandOutput extends DeleteSecretResponse, __Metad * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public - * @example To delete a secret - * ```javascript - * // The following example shows how to delete a secret. The secret stays in your account in a deprecated and inaccessible state until the recovery window ends. After the date and time in the DeletionDate response field has passed, you can no longer recover this secret with restore-secret. - * const input = { - * "RecoveryWindowInDays": 7, - * "SecretId": "MyTestDatabaseSecret1" - * }; - * const command = new DeleteSecretCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "DeletionDate": "1524085349.095", - * "Name": "MyTestDatabaseSecret" - * } - * *\/ - * // example id: to-delete-a-secret-1523996905092 - * ``` * + * @public */ export class DeleteSecretCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/DescribeSecretCommand.ts b/clients/client-secrets-manager/src/commands/DescribeSecretCommand.ts index 7322bad5a567c..0a40f14990da7 100644 --- a/clients/client-secrets-manager/src/commands/DescribeSecretCommand.ts +++ b/clients/client-secrets-manager/src/commands/DescribeSecretCommand.ts @@ -110,55 +110,8 @@ export interface DescribeSecretCommandOutput extends DescribeSecretResponse, __M * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public - * @example To retrieve the details of a secret - * ```javascript - * // The following example shows how to get the details about a secret. - * const input = { - * "SecretId": "MyTestDatabaseSecret" - * }; - * const command = new DescribeSecretCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Description": "My test database secret", - * "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/EXAMPLE1-90ab-cdef-fedc-ba987KMSKEY1", - * "LastAccessedDate": "1523923200", - * "LastChangedDate": 1523477145.729, - * "LastRotatedDate": 1525747253.72, - * "Name": "MyTestDatabaseSecret", - * "NextRotationDate": "1665165599", - * "RotationEnabled": true, - * "RotationLambdaARN": "arn:aws:lambda:us-west-2:123456789012:function:MyTestRotationLambda", - * "RotationRules": { - * "AutomaticallyAfterDays": 14, - * "Duration": "2h", - * "ScheduleExpression": "cron(0 16 1,15 * ? *)" - * }, - * "Tags": [ - * { - * "Key": "SecondTag", - * "Value": "AnotherValue" - * }, - * { - * "Key": "FirstTag", - * "Value": "SomeValue" - * } - * ], - * "VersionIdsToStages": { - * "EXAMPLE1-90ab-cdef-fedc-ba987EXAMPLE": [ - * "AWSPREVIOUS" - * ], - * "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE": [ - * "AWSCURRENT" - * ] - * } - * } - * *\/ - * // example id: to-retrieve-the-details-of-a-secret-1524000138629 - * ``` * + * @public */ export class DescribeSecretCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/GetRandomPasswordCommand.ts b/clients/client-secrets-manager/src/commands/GetRandomPasswordCommand.ts index 6802705fcb673..f525674c1be7d 100644 --- a/clients/client-secrets-manager/src/commands/GetRandomPasswordCommand.ts +++ b/clients/client-secrets-manager/src/commands/GetRandomPasswordCommand.ts @@ -100,25 +100,25 @@ export interface GetRandomPasswordCommandOutput extends GetRandomPasswordRespons * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To generate a random password * ```javascript * // The following example shows how to request a randomly generated password. This example includes the optional flags to require spaces and at least one character of each included type. It specifies a length of 20 characters. * const input = { - * "IncludeSpace": true, - * "PasswordLength": 20, - * "RequireEachIncludedType": true + * IncludeSpace: true, + * PasswordLength: 20, + * RequireEachIncludedType: true * }; * const command = new GetRandomPasswordCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RandomPassword": "EXAMPLE-PASSWORD" + * RandomPassword: "EXAMPLE-PASSWORD" * } * *\/ - * // example id: to-generate-a-random-password-1524000546092 * ``` * + * @public */ export class GetRandomPasswordCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/GetResourcePolicyCommand.ts b/clients/client-secrets-manager/src/commands/GetResourcePolicyCommand.ts index 384a26e23bf76..691bbba84f8ff 100644 --- a/clients/client-secrets-manager/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-secrets-manager/src/commands/GetResourcePolicyCommand.ts @@ -94,25 +94,35 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To retrieve the resource-based policy attached to a secret * ```javascript * // The following example shows how to retrieve the resource-based policy that is attached to a secret. * const input = { - * "SecretId": "MyTestDatabaseSecret" + * SecretId: "MyTestDatabaseSecret" * }; * const command = new GetResourcePolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret", - * "ResourcePolicy": "{\n\"Version\":\"2012-10-17\",\n\"Statement\":[{\n\"Effect\":\"Allow\",\n\"Principal\":{\n\"AWS\":\"arn:aws:iam::123456789012:root\"\n},\n\"Action\":\"secretsmanager:GetSecretValue\",\n\"Resource\":\"*\"\n}]\n}" + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret", + * ResourcePolicy: `{ + * "Version":"2012-10-17", + * "Statement":[{ + * "Effect":"Allow", + * "Principal":{ + * "AWS":"arn:aws:iam::123456789012:root" + * }, + * "Action":"secretsmanager:GetSecretValue", + * "Resource":"*" + * }] + * }` * } * *\/ - * // example id: to-retrieve-the-resource-based-policy-attached-to-a-secret-1530209677536 * ``` * + * @public */ export class GetResourcePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/GetSecretValueCommand.ts b/clients/client-secrets-manager/src/commands/GetSecretValueCommand.ts index aba9ddeedafc2..c4bc26b6ac830 100644 --- a/clients/client-secrets-manager/src/commands/GetSecretValueCommand.ts +++ b/clients/client-secrets-manager/src/commands/GetSecretValueCommand.ts @@ -116,30 +116,34 @@ export interface GetSecretValueCommandOutput extends GetSecretValueResponse, __M * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To retrieve the encrypted secret value of a secret * ```javascript * // The following example shows how to retrieve a secret string value. * const input = { - * "SecretId": "MyTestDatabaseSecret" + * SecretId: "MyTestDatabaseSecret" * }; * const command = new GetSecretValueCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "CreatedDate": 1523477145.713, - * "Name": "MyTestDatabaseSecret", - * "SecretString": "{\n \"username\":\"david\",\n \"password\":\"EXAMPLE-PASSWORD\"\n}\n", - * "VersionId": "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1", - * "VersionStages": [ + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * CreatedDate: 1.523477145713E9, + * Name: "MyTestDatabaseSecret", + * SecretString: `{ + * "username":"david", + * "password":"EXAMPLE-PASSWORD" + * } + * `, + * VersionId: "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1", + * VersionStages: [ * "AWSPREVIOUS" * ] * } * *\/ - * // example id: to-retrieve-the-encrypted-secret-value-of-a-secret-1524000702484 * ``` * + * @public */ export class GetSecretValueCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/ListSecretVersionIdsCommand.ts b/clients/client-secrets-manager/src/commands/ListSecretVersionIdsCommand.ts index 8de1b1a3ec77a..8b2f81a572d6a 100644 --- a/clients/client-secrets-manager/src/commands/ListSecretVersionIdsCommand.ts +++ b/clients/client-secrets-manager/src/commands/ListSecretVersionIdsCommand.ts @@ -95,45 +95,45 @@ export interface ListSecretVersionIdsCommandOutput extends ListSecretVersionIdsR * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To list all of the secret versions associated with a secret * ```javascript * // The following example shows how to retrieve a list of all of the versions of a secret, including those without any staging labels. * const input = { - * "IncludeDeprecated": true, - * "SecretId": "MyTestDatabaseSecret" + * IncludeDeprecated: true, + * SecretId: "MyTestDatabaseSecret" * }; * const command = new ListSecretVersionIdsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret", - * "Versions": [ + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret", + * Versions: [ * { - * "CreatedDate": 1523477145.713, - * "VersionId": "EXAMPLE1-90ab-cdef-fedc-ba987EXAMPLE", - * "VersionStages": [ + * CreatedDate: 1.523477145713E9, + * VersionId: "EXAMPLE1-90ab-cdef-fedc-ba987EXAMPLE", + * VersionStages: [ * "AWSPREVIOUS" * ] * }, * { - * "CreatedDate": 1523486221.391, - * "VersionId": "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE", - * "VersionStages": [ + * CreatedDate: 1.523486221391E9, + * VersionId: "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE", + * VersionStages: [ * "AWSCURRENT" * ] * }, * { - * "CreatedDate": 1511974462.36, - * "VersionId": "EXAMPLE3-90ab-cdef-fedc-ba987EXAMPLE;" + * CreatedDate: 1.51197446236E9, + * VersionId: "EXAMPLE3-90ab-cdef-fedc-ba987EXAMPLE;" * } * ] * } * *\/ - * // example id: to-list-all-of-the-secret-versions-associated-with-a-secret-1524000999164 * ``` * + * @public */ export class ListSecretVersionIdsCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/ListSecretsCommand.ts b/clients/client-secrets-manager/src/commands/ListSecretsCommand.ts index de87e78be4adc..366af11c99470 100644 --- a/clients/client-secrets-manager/src/commands/ListSecretsCommand.ts +++ b/clients/client-secrets-manager/src/commands/ListSecretsCommand.ts @@ -139,34 +139,34 @@ export interface ListSecretsCommandOutput extends ListSecretsResponse, __Metadat * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To list the secrets in your account * ```javascript * // The following example shows how to list all of the secrets in your account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListSecretsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SecretList": [ + * SecretList: [ * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Description": "My test database secret", - * "LastChangedDate": 1523477145.729, - * "Name": "MyTestDatabaseSecret", - * "SecretVersionsToStages": { - * "EXAMPLE1-90ab-cdef-fedc-ba987EXAMPLE": [ + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Description: "My test database secret", + * LastChangedDate: 1.523477145729E9, + * Name: "MyTestDatabaseSecret", + * SecretVersionsToStages: { + * EXAMPLE1-90ab-cdef-fedc-ba987EXAMPLE: [ * "AWSCURRENT" * ] * } * }, * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret1-d4e5f6", - * "Description": "Another secret created for a different database", - * "LastChangedDate": 1523482025.685, - * "Name": "MyTestDatabaseSecret1", - * "SecretVersionsToStages": { - * "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE": [ + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret1-d4e5f6", + * Description: "Another secret created for a different database", + * LastChangedDate: 1.523482025685E9, + * Name: "MyTestDatabaseSecret1", + * SecretVersionsToStages: { + * EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE: [ * "AWSCURRENT" * ] * } @@ -174,9 +174,9 @@ export interface ListSecretsCommandOutput extends ListSecretsResponse, __Metadat * ] * } * *\/ - * // example id: to-list-the-secrets-in-your-account-1524001246087 * ``` * + * @public */ export class ListSecretsCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/PutResourcePolicyCommand.ts b/clients/client-secrets-manager/src/commands/PutResourcePolicyCommand.ts index 8bfbd64f4b6de..f17ea92ea9c37 100644 --- a/clients/client-secrets-manager/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-secrets-manager/src/commands/PutResourcePolicyCommand.ts @@ -102,25 +102,35 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To add a resource-based policy to a secret * ```javascript * // The following example shows how to add a resource-based policy to a secret. * const input = { - * "ResourcePolicy": "{\n\"Version\":\"2012-10-17\",\n\"Statement\":[{\n\"Effect\":\"Allow\",\n\"Principal\":{\n\"AWS\":\"arn:aws:iam::123456789012:root\"\n},\n\"Action\":\"secretsmanager:GetSecretValue\",\n\"Resource\":\"*\"\n}]\n}", - * "SecretId": "MyTestDatabaseSecret" + * ResourcePolicy: `{ + * "Version":"2012-10-17", + * "Statement":[{ + * "Effect":"Allow", + * "Principal":{ + * "AWS":"arn:aws:iam::123456789012:root" + * }, + * "Action":"secretsmanager:GetSecretValue", + * "Resource":"*" + * }] + * }`, + * SecretId: "MyTestDatabaseSecret" * }; * const command = new PutResourcePolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret" + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret" * } * *\/ - * // example id: to-add-a-resource-based-policy-to-a-secret-1530209881839 * ``` * + * @public */ export class PutResourcePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/PutSecretValueCommand.ts b/clients/client-secrets-manager/src/commands/PutSecretValueCommand.ts index 842ad18155c89..e8854c37e2ab7 100644 --- a/clients/client-secrets-manager/src/commands/PutSecretValueCommand.ts +++ b/clients/client-secrets-manager/src/commands/PutSecretValueCommand.ts @@ -142,30 +142,30 @@ export interface PutSecretValueCommandOutput extends PutSecretValueResponse, __M * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To store a secret value in a new version of a secret * ```javascript * // The following example shows how to create a new version of the secret. Alternatively, you can use the update-secret command. * const input = { - * "ClientRequestToken": "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE", - * "SecretId": "MyTestDatabaseSecret", - * "SecretString": "{\"username\":\"david\",\"password\":\"EXAMPLE-PASSWORD\"}" + * ClientRequestToken: "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE", + * SecretId: "MyTestDatabaseSecret", + * SecretString: `{"username":"david","password":"EXAMPLE-PASSWORD"}` * }; * const command = new PutSecretValueCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret", - * "VersionId": "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE", - * "VersionStages": [ + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret", + * VersionId: "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE", + * VersionStages: [ * "AWSCURRENT" * ] * } * *\/ - * // example id: to-store-a-secret-value-in-a-new-version-of-a-secret-1524001393971 * ``` * + * @public */ export class PutSecretValueCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/RemoveRegionsFromReplicationCommand.ts b/clients/client-secrets-manager/src/commands/RemoveRegionsFromReplicationCommand.ts index 77a858c336c80..a6a15df25372f 100644 --- a/clients/client-secrets-manager/src/commands/RemoveRegionsFromReplicationCommand.ts +++ b/clients/client-secrets-manager/src/commands/RemoveRegionsFromReplicationCommand.ts @@ -106,6 +106,7 @@ export interface RemoveRegionsFromReplicationCommandOutput * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* + * * @public */ export class RemoveRegionsFromReplicationCommand extends $Command diff --git a/clients/client-secrets-manager/src/commands/ReplicateSecretToRegionsCommand.ts b/clients/client-secrets-manager/src/commands/ReplicateSecretToRegionsCommand.ts index 3969bef410f3a..9e5b6ef2fac26 100644 --- a/clients/client-secrets-manager/src/commands/ReplicateSecretToRegionsCommand.ts +++ b/clients/client-secrets-manager/src/commands/ReplicateSecretToRegionsCommand.ts @@ -105,36 +105,36 @@ export interface ReplicateSecretToRegionsCommandOutput extends ReplicateSecretTo * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example Example * ```javascript * // The following example replicates a secret to eu-west-3. The replica is encrypted with the AWS managed key aws/secretsmanager. * const input = { - * "AddReplicaRegions": [ + * AddReplicaRegions: [ * { - * "Region": "eu-west-3" + * Region: "eu-west-3" * } * ], - * "ForceOverwriteReplicaSecret": true, - * "SecretId": "MyTestSecret" + * ForceOverwriteReplicaSecret: true, + * SecretId: "MyTestSecret" * }; * const command = new ReplicateSecretToRegionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestSecret-1a2b3c", - * "ReplicationStatus": [ + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestSecret-1a2b3c", + * ReplicationStatus: [ * { - * "KmsKeyId": "alias/aws/secretsmanager", - * "Region": "eu-west-3", - * "Status": "InProgress" + * KmsKeyId: "alias/aws/secretsmanager", + * Region: "eu-west-3", + * Status: "InProgress" * } * ] * } * *\/ - * // example id: example-1679591984774 * ``` * + * @public */ export class ReplicateSecretToRegionsCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/RestoreSecretCommand.ts b/clients/client-secrets-manager/src/commands/RestoreSecretCommand.ts index ba290706170ad..73fb1d853edd2 100644 --- a/clients/client-secrets-manager/src/commands/RestoreSecretCommand.ts +++ b/clients/client-secrets-manager/src/commands/RestoreSecretCommand.ts @@ -91,24 +91,24 @@ export interface RestoreSecretCommandOutput extends RestoreSecretResponse, __Met * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To restore a previously deleted secret * ```javascript * // The following example shows how to restore a secret that you previously scheduled for deletion. * const input = { - * "SecretId": "MyTestDatabaseSecret" + * SecretId: "MyTestDatabaseSecret" * }; * const command = new RestoreSecretCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret" + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret" * } * *\/ - * // example id: to-restore-a-previously-deleted-secret-1524001513930 * ``` * + * @public */ export class RestoreSecretCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/RotateSecretCommand.ts b/clients/client-secrets-manager/src/commands/RotateSecretCommand.ts index e70aa31400017..18422d7807d1f 100644 --- a/clients/client-secrets-manager/src/commands/RotateSecretCommand.ts +++ b/clients/client-secrets-manager/src/commands/RotateSecretCommand.ts @@ -107,48 +107,47 @@ export interface RotateSecretCommandOutput extends RotateSecretResponse, __Metad * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To configure rotation for a secret * ```javascript * // The following example configures rotation for a secret using a cron expression. The first rotation happens immediately after the changes are stored in the secret. The rotation schedule is the first and 15th day of every month. The rotation window begins at 4:00 PM UTC and ends at 6:00 PM. * const input = { - * "RotationLambdaARN": "arn:aws:lambda:us-west-2:123456789012:function:MyTestDatabaseRotationLambda", - * "RotationRules": { - * "Duration": "2h", - * "ScheduleExpression": "cron(0 16 1,15 * ? *)" + * RotationLambdaARN: "arn:aws:lambda:us-west-2:123456789012:function:MyTestDatabaseRotationLambda", + * RotationRules: { + * Duration: "2h", + * ScheduleExpression: "cron(0 16 1,15 * ? *)" * }, - * "SecretId": "MyTestDatabaseSecret" + * SecretId: "MyTestDatabaseSecret" * }; * const command = new RotateSecretCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret", - * "VersionId": "EXAMPLE2-90ab-cdef-fedc-ba987SECRET2" + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret", + * VersionId: "EXAMPLE2-90ab-cdef-fedc-ba987SECRET2" * } * *\/ - * // example id: to-configure-rotation-for-a-secret-1524001629475 * ``` * * @example To request an immediate rotation for a secret * ```javascript * // The following example requests an immediate invocation of the secret's Lambda rotation function. It assumes that the specified secret already has rotation configured. The rotation function runs asynchronously in the background. * const input = { - * "SecretId": "MyTestDatabaseSecret" + * SecretId: "MyTestDatabaseSecret" * }; * const command = new RotateSecretCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret", - * "VersionId": "EXAMPLE2-90ab-cdef-fedc-ba987SECRET2" + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret", + * VersionId: "EXAMPLE2-90ab-cdef-fedc-ba987SECRET2" * } * *\/ - * // example id: to-request-an-immediate-rotation-for-a-secret-1524001949004 * ``` * + * @public */ export class RotateSecretCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/StopReplicationToReplicaCommand.ts b/clients/client-secrets-manager/src/commands/StopReplicationToReplicaCommand.ts index a70c6b2d3fbac..c907e7e02576f 100644 --- a/clients/client-secrets-manager/src/commands/StopReplicationToReplicaCommand.ts +++ b/clients/client-secrets-manager/src/commands/StopReplicationToReplicaCommand.ts @@ -90,6 +90,7 @@ export interface StopReplicationToReplicaCommandOutput extends StopReplicationTo * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* + * * @public */ export class StopReplicationToReplicaCommand extends $Command diff --git a/clients/client-secrets-manager/src/commands/TagResourceCommand.ts b/clients/client-secrets-manager/src/commands/TagResourceCommand.ts index 22524b81411ce..c42c47e6d0371 100644 --- a/clients/client-secrets-manager/src/commands/TagResourceCommand.ts +++ b/clients/client-secrets-manager/src/commands/TagResourceCommand.ts @@ -102,28 +102,31 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To add tags to a secret * ```javascript * // The following example shows how to attach two tags each with a Key and Value to a secret. There is no output from this API. To see the result, use the DescribeSecret operation. * const input = { - * "SecretId": "MyExampleSecret", - * "Tags": [ + * SecretId: "MyExampleSecret", + * Tags: [ * { - * "Key": "FirstTag", - * "Value": "SomeValue" + * Key: "FirstTag", + * Value: "SomeValue" * }, * { - * "Key": "SecondTag", - * "Value": "AnotherValue" + * Key: "SecondTag", + * Value: "AnotherValue" * } * ] * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: to-add-tags-to-a-secret-1524002106718 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/UntagResourceCommand.ts b/clients/client-secrets-manager/src/commands/UntagResourceCommand.ts index 9d8dcd6b8fd51..e375d2b24833a 100644 --- a/clients/client-secrets-manager/src/commands/UntagResourceCommand.ts +++ b/clients/client-secrets-manager/src/commands/UntagResourceCommand.ts @@ -98,22 +98,25 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To remove tags from a secret * ```javascript * // The following example shows how to remove two tags from a secret's metadata. For each, both the tag and the associated value are removed. There is no output from this API. To see the result, use the DescribeSecret operation. * const input = { - * "SecretId": "MyTestDatabaseSecret", - * "TagKeys": [ + * SecretId: "MyTestDatabaseSecret", + * TagKeys: [ * "FirstTag", * "SecondTag" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: to-remove-tags-from-a-secret-1524002239065 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/UpdateSecretCommand.ts b/clients/client-secrets-manager/src/commands/UpdateSecretCommand.ts index 0d177f227b3a0..7763eb23894b1 100644 --- a/clients/client-secrets-manager/src/commands/UpdateSecretCommand.ts +++ b/clients/client-secrets-manager/src/commands/UpdateSecretCommand.ts @@ -138,63 +138,61 @@ export interface UpdateSecretCommandOutput extends UpdateSecretResponse, __Metad * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public - * @example To update the description of a secret + * + * @example To create a new version of the encrypted secret value * ```javascript - * // The following example shows how to modify the description of a secret. + * // The following example shows how to create a new version of the secret by updating the SecretString field. Alternatively, you can use the put-secret-value operation. * const input = { - * "ClientRequestToken": "EXAMPLE1-90ab-cdef-fedc-ba987EXAMPLE", - * "Description": "This is a new description for the secret.", - * "SecretId": "MyTestDatabaseSecret" + * SecretId: "MyTestDatabaseSecret", + * SecretString: "{JSON STRING WITH CREDENTIALS}" * }; * const command = new UpdateSecretCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret" + * ARN: "aws:arn:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret", + * VersionId: "EXAMPLE1-90ab-cdef-fedc-ba987EXAMPLE" * } * *\/ - * // example id: to-update-the-description-of-a-secret-1524002349094 * ``` * - * @example To update the KMS key associated with a secret + * @example To update the description of a secret * ```javascript - * // This example shows how to update the KMS customer managed key (CMK) used to encrypt the secret value. The KMS CMK must be in the same region as the secret. + * // The following example shows how to modify the description of a secret. * const input = { - * "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE", - * "SecretId": "MyTestDatabaseSecret" + * ClientRequestToken: "EXAMPLE1-90ab-cdef-fedc-ba987EXAMPLE", + * Description: "This is a new description for the secret.", + * SecretId: "MyTestDatabaseSecret" * }; * const command = new UpdateSecretCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret" + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret" * } * *\/ - * // example id: to-update-the-kms-key-associated-with-a-secret-1524002421563 * ``` * - * @example To create a new version of the encrypted secret value + * @example To update the KMS key associated with a secret * ```javascript - * // The following example shows how to create a new version of the secret by updating the SecretString field. Alternatively, you can use the put-secret-value operation. + * // This example shows how to update the KMS customer managed key (CMK) used to encrypt the secret value. The KMS CMK must be in the same region as the secret. * const input = { - * "SecretId": "MyTestDatabaseSecret", - * "SecretString": "{JSON STRING WITH CREDENTIALS}" + * KmsKeyId: "arn:aws:kms:us-west-2:123456789012:key/EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE", + * SecretId: "MyTestDatabaseSecret" * }; * const command = new UpdateSecretCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "aws:arn:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret", - * "VersionId": "EXAMPLE1-90ab-cdef-fedc-ba987EXAMPLE" + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret" * } * *\/ - * // example id: to-create-a-new-version-of-the-encrypted-secret-value-1524004651836 * ``` * + * @public */ export class UpdateSecretCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/UpdateSecretVersionStageCommand.ts b/clients/client-secrets-manager/src/commands/UpdateSecretVersionStageCommand.ts index ddb7bf8115f7d..533832ddce562 100644 --- a/clients/client-secrets-manager/src/commands/UpdateSecretVersionStageCommand.ts +++ b/clients/client-secrets-manager/src/commands/UpdateSecretVersionStageCommand.ts @@ -110,65 +110,63 @@ export interface UpdateSecretVersionStageCommandOutput extends UpdateSecretVersi * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To add a staging label attached to a version of a secret * ```javascript * // The following example shows you how to add a staging label to a version of a secret. You can review the results by running the operation ListSecretVersionIds and viewing the VersionStages response field for the affected version. * const input = { - * "MoveToVersionId": "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1", - * "SecretId": "MyTestDatabaseSecret", - * "VersionStage": "STAGINGLABEL1" + * MoveToVersionId: "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1", + * SecretId: "MyTestDatabaseSecret", + * VersionStage: "STAGINGLABEL1" * }; * const command = new UpdateSecretVersionStageCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret" + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret" * } * *\/ - * // example id: to-add-a-staging-label-attached-to-a-version-of-a-secret-1524004783841 * ``` * * @example To delete a staging label attached to a version of a secret * ```javascript * // The following example shows you how to delete a staging label that is attached to a version of a secret. You can review the results by running the operation ListSecretVersionIds and viewing the VersionStages response field for the affected version. * const input = { - * "RemoveFromVersionId": "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1", - * "SecretId": "MyTestDatabaseSecret", - * "VersionStage": "STAGINGLABEL1" + * RemoveFromVersionId: "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1", + * SecretId: "MyTestDatabaseSecret", + * VersionStage: "STAGINGLABEL1" * }; * const command = new UpdateSecretVersionStageCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret" + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret" * } * *\/ - * // example id: to-delete-a-staging-label-attached-to-a-version-of-a-secret-1524004862181 * ``` * * @example To move a staging label from one version of a secret to another * ```javascript * // The following example shows you how to move a staging label that is attached to one version of a secret to a different version. You can review the results by running the operation ListSecretVersionIds and viewing the VersionStages response field for the affected version. * const input = { - * "MoveToVersionId": "EXAMPLE2-90ab-cdef-fedc-ba987SECRET2", - * "RemoveFromVersionId": "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1", - * "SecretId": "MyTestDatabaseSecret", - * "VersionStage": "AWSCURRENT" + * MoveToVersionId: "EXAMPLE2-90ab-cdef-fedc-ba987SECRET2", + * RemoveFromVersionId: "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1", + * SecretId: "MyTestDatabaseSecret", + * VersionStage: "AWSCURRENT" * }; * const command = new UpdateSecretVersionStageCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", - * "Name": "MyTestDatabaseSecret" + * ARN: "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", + * Name: "MyTestDatabaseSecret" * } * *\/ - * // example id: to-move-a-staging-label-from-one-version-of-a-secret-to-another-1524004963841 * ``` * + * @public */ export class UpdateSecretVersionStageCommand extends $Command .classBuilder< diff --git a/clients/client-secrets-manager/src/commands/ValidateResourcePolicyCommand.ts b/clients/client-secrets-manager/src/commands/ValidateResourcePolicyCommand.ts index 56bcd67c70aaf..507166333cf36 100644 --- a/clients/client-secrets-manager/src/commands/ValidateResourcePolicyCommand.ts +++ b/clients/client-secrets-manager/src/commands/ValidateResourcePolicyCommand.ts @@ -113,25 +113,35 @@ export interface ValidateResourcePolicyCommandOutput extends ValidateResourcePol * @throws {@link SecretsManagerServiceException} *

Base exception class for all service exceptions from SecretsManager service.

* - * @public + * * @example To validate a resource-based policy to a secret * ```javascript * // The following example shows how to validate a resource-based policy to a secret. * const input = { - * "ResourcePolicy": "{\n\"Version\":\"2012-10-17\",\n\"Statement\":[{\n\"Effect\":\"Allow\",\n\"Principal\":{\n\"AWS\":\"arn:aws:iam::123456789012:root\"\n},\n\"Action\":\"secretsmanager:GetSecretValue\",\n\"Resource\":\"*\"\n}]\n}", - * "SecretId": "MyTestDatabaseSecret" + * ResourcePolicy: `{ + * "Version":"2012-10-17", + * "Statement":[{ + * "Effect":"Allow", + * "Principal":{ + * "AWS":"arn:aws:iam::123456789012:root" + * }, + * "Action":"secretsmanager:GetSecretValue", + * "Resource":"*" + * }] + * }`, + * SecretId: "MyTestDatabaseSecret" * }; * const command = new ValidateResourcePolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "PolicyValidationPassed": true, - * "ValidationErrors": [] + * PolicyValidationPassed: true, + * ValidationErrors: [] * } * *\/ - * // example id: to-validate-the-resource-policy-of-a-secret-1524000138629 * ``` * + * @public */ export class ValidateResourcePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/BatchGetMemberAccountDetailsCommand.ts b/clients/client-security-ir/src/commands/BatchGetMemberAccountDetailsCommand.ts index c1b97f2c30b47..3429179a8166d 100644 --- a/clients/client-security-ir/src/commands/BatchGetMemberAccountDetailsCommand.ts +++ b/clients/client-security-ir/src/commands/BatchGetMemberAccountDetailsCommand.ts @@ -103,32 +103,32 @@ export interface BatchGetMemberAccountDetailsCommandOutput * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke BatchGetMemberAccountDetails * ```javascript * // * const input = { - * "accountIds": [ + * accountIds: [ * "123412341234" * ], - * "membershipId": "m-abcd1234efgh" + * membershipId: "m-abcd1234efgh" * }; * const command = new BatchGetMemberAccountDetailsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "items": [ + * items: [ * { - * "accountId": "123412341234", - * "relationshipStatus": "Associated", - * "relationshipType": "Organization" + * accountId: "123412341234", + * relationshipStatus: "Associated", + * relationshipType: "Organization" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class BatchGetMemberAccountDetailsCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/CancelMembershipCommand.ts b/clients/client-security-ir/src/commands/CancelMembershipCommand.ts index b9ce94c07d2bb..b04070572b0f3 100644 --- a/clients/client-security-ir/src/commands/CancelMembershipCommand.ts +++ b/clients/client-security-ir/src/commands/CancelMembershipCommand.ts @@ -82,23 +82,23 @@ export interface CancelMembershipCommandOutput extends CancelMembershipResponse, * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke CancelMembership * ```javascript * // * const input = { - * "membershipId": "m-abcd1234efgh" + * membershipId: "m-abcd1234efgh" * }; * const command = new CancelMembershipCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "membershipId": "m-abcd1234efgh" + * membershipId: "m-abcd1234efgh" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CancelMembershipCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/CloseCaseCommand.ts b/clients/client-security-ir/src/commands/CloseCaseCommand.ts index b0f02949c6858..a023b2d7c1514 100644 --- a/clients/client-security-ir/src/commands/CloseCaseCommand.ts +++ b/clients/client-security-ir/src/commands/CloseCaseCommand.ts @@ -83,24 +83,24 @@ export interface CloseCaseCommandOutput extends CloseCaseResponse, __MetadataBea * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke CloseCase * ```javascript * // * const input = { - * "caseId": "8403556009" + * caseId: "8403556009" * }; * const command = new CloseCaseCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "caseStatus": "Closed", - * "closedDate": "2024-02-27T17:01:33.000Z" + * caseStatus: "Closed", + * closedDate: "2024-02-27T17:01:33.000Z" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CloseCaseCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/CreateCaseCommand.ts b/clients/client-security-ir/src/commands/CreateCaseCommand.ts index 1ef8c870f1f13..5d638684cf4c3 100644 --- a/clients/client-security-ir/src/commands/CreateCaseCommand.ts +++ b/clients/client-security-ir/src/commands/CreateCaseCommand.ts @@ -114,53 +114,56 @@ export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataB * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke CreateCase * ```javascript * // * const input = { - * "description": "Case description", - * "engagementType": "Investigation", - * "impactedAccounts": [ + * description: "Case description", + * engagementType: "Investigation", + * impactedAccounts: [ * "000000000000", * "111111111111" * ], - * "impactedAwsRegions": [ + * impactedAwsRegions: [ * { - * "region": "ap-southeast-1" + * region: "ap-southeast-1" * } * ], - * "impactedServices": [ + * impactedServices: [ * "Amazon EC2", * "Amazon EKS" * ], - * "reportedIncidentStartDate": "2023-03-27T15:32:01.789Z", - * "resolverType": "Self", - * "threatActorIpAddresses": [ + * reportedIncidentStartDate: "2023-03-27T15:32:01.789Z", + * resolverType: "Self", + * threatActorIpAddresses: [ * { - * "ipAddress": "192.168.192.168", - * "userAgent": "Browser" + * ipAddress: "192.168.192.168", + * userAgent: "Browser" * } * ], - * "title": "My sample case", - * "watchers": [ + * title: "My sample case", + * watchers: [ * { - * "name": "Alice", - * "email": "alice@example.com", - * "jobTitle": "CEO" + * email: "alice@example.com", + * jobTitle: "CEO", + * name: "Alice" * }, * { - * "name": "Bob", - * "email": "bob@example.com", - * "jobTitle": "CFO" + * email: "bob@example.com", + * jobTitle: "CFO", + * name: "Bob" * } * ] * }; * const command = new CreateCaseCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateCaseCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/CreateCaseCommentCommand.ts b/clients/client-security-ir/src/commands/CreateCaseCommentCommand.ts index 4b214c4149352..e87eba9ae9d9e 100644 --- a/clients/client-security-ir/src/commands/CreateCaseCommentCommand.ts +++ b/clients/client-security-ir/src/commands/CreateCaseCommentCommand.ts @@ -88,24 +88,24 @@ export interface CreateCaseCommentCommandOutput extends CreateCaseCommentRespons * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke CreateCaseComment * ```javascript * // * const input = { - * "body": "Case comment body.", - * "caseId": "8403556009" + * body: "Case comment body.", + * caseId: "8403556009" * }; * const command = new CreateCaseCommentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "commentId": "000000" + * commentId: "000000" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateCaseCommentCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/CreateMembershipCommand.ts b/clients/client-security-ir/src/commands/CreateMembershipCommand.ts index 21e79cc1e83b5..511ddf522cf49 100644 --- a/clients/client-security-ir/src/commands/CreateMembershipCommand.ts +++ b/clients/client-security-ir/src/commands/CreateMembershipCommand.ts @@ -103,41 +103,41 @@ export interface CreateMembershipCommandOutput extends CreateMembershipResponse, * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke CreateMembership * ```javascript * // * const input = { - * "incidentResponseTeam": [ + * incidentResponseTeam: [ * { - * "name": "Bob Jones", - * "email": "bob.jones@gmail.com", - * "jobTitle": "Security Responder" + * email: "bob.jones@gmail.com", + * jobTitle: "Security Responder", + * name: "Bob Jones" * }, * { - * "name": "Alice", - * "email": "alice@example.com", - * "jobTitle": "CEO" + * email: "alice@example.com", + * jobTitle: "CEO", + * name: "Alice" * } * ], - * "membershipName": "Example Membership Name.", - * "optInFeatures": [ + * membershipName: "Example Membership Name.", + * optInFeatures: [ * { - * "featureName": "Triage", - * "isEnabled": true + * featureName: "Triage", + * isEnabled: true * } * ] * }; * const command = new CreateMembershipCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "membershipId": "m-abcd1234efgh" + * membershipId: "m-abcd1234efgh" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateMembershipCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/GetCaseAttachmentDownloadUrlCommand.ts b/clients/client-security-ir/src/commands/GetCaseAttachmentDownloadUrlCommand.ts index ca809ee658ea2..e4adc7cbaae02 100644 --- a/clients/client-security-ir/src/commands/GetCaseAttachmentDownloadUrlCommand.ts +++ b/clients/client-security-ir/src/commands/GetCaseAttachmentDownloadUrlCommand.ts @@ -92,24 +92,24 @@ export interface GetCaseAttachmentDownloadUrlCommandOutput * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke GetCaseAttachmentDownloadUrl * ```javascript * // * const input = { - * "attachmentId": "3C5A6B89-1DEF-4C2D-A5B6-123456789ABC", - * "caseId": "8403556009" + * attachmentId: "3C5A6B89-1DEF-4C2D-A5B6-123456789ABC", + * caseId: "8403556009" * }; * const command = new GetCaseAttachmentDownloadUrlCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "attachmentPresignedUrl": "https://presignedurl.com" + * attachmentPresignedUrl: "https://presignedurl.com" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetCaseAttachmentDownloadUrlCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/GetCaseAttachmentUploadUrlCommand.ts b/clients/client-security-ir/src/commands/GetCaseAttachmentUploadUrlCommand.ts index 02cee97bbee62..7629ea73f4d93 100644 --- a/clients/client-security-ir/src/commands/GetCaseAttachmentUploadUrlCommand.ts +++ b/clients/client-security-ir/src/commands/GetCaseAttachmentUploadUrlCommand.ts @@ -90,25 +90,25 @@ export interface GetCaseAttachmentUploadUrlCommandOutput extends GetCaseAttachme * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke GetCaseAttachmentUploadUrl * ```javascript * // * const input = { - * "caseId": "8403556009", - * "contentLength": 1500, - * "fileName": "TestFileName" + * caseId: "8403556009", + * contentLength: 1500, + * fileName: "TestFileName" * }; * const command = new GetCaseAttachmentUploadUrlCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "attachmentPresignedUrl": "https://presignedurl.com" + * attachmentPresignedUrl: "https://presignedurl.com" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetCaseAttachmentUploadUrlCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/GetCaseCommand.ts b/clients/client-security-ir/src/commands/GetCaseCommand.ts index c7f004e8bdc26..b9df799b0a139 100644 --- a/clients/client-security-ir/src/commands/GetCaseCommand.ts +++ b/clients/client-security-ir/src/commands/GetCaseCommand.ts @@ -127,64 +127,64 @@ export interface GetCaseCommandOutput extends GetCaseResponse, __MetadataBearer * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke GetCase * ```javascript * // * const input = { - * "caseId": "8403556009" + * caseId: "8403556009" * }; * const command = new GetCaseCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "actualIncidentStartDate": "2023-03-27T15:32:01.789Z", - * "caseArn": "arn:aws:security-ir:us-west-1:123456789012:case/1234567890", - * "caseStatus": "Submitted", - * "createdDate": "2023-01-27T15:32:01.789Z", - * "description": "Case description", - * "engagementType": "Investigation", - * "impactedAccounts": [ + * actualIncidentStartDate: "2023-03-27T15:32:01.789Z", + * caseArn: "arn:aws:security-ir:us-west-1:123456789012:case/1234567890", + * caseStatus: "Submitted", + * createdDate: "2023-01-27T15:32:01.789Z", + * description: "Case description", + * engagementType: "Investigation", + * impactedAccounts: [ * "000000000000", * "111111111111" * ], - * "impactedAwsRegions": [ + * impactedAwsRegions: [ * { - * "region": "ap-southeast-1" + * region: "ap-southeast-1" * } * ], - * "impactedServices": [ + * impactedServices: [ * "Amazon EC2", * "Amazon EKS" * ], - * "lastUpdatedDate": "2023-02-27T15:32:01.789Z", - * "pendingAction": "Customer", - * "reportedIncidentStartDate": "2023-03-27T15:32:01.789Z", - * "resolverType": "Self", - * "threatActorIpAddresses": [ + * lastUpdatedDate: "2023-02-27T15:32:01.789Z", + * pendingAction: "Customer", + * reportedIncidentStartDate: "2023-03-27T15:32:01.789Z", + * resolverType: "Self", + * threatActorIpAddresses: [ * { - * "ipAddress": "192.168.192.168", - * "userAgent": "Browser" + * ipAddress: "192.168.192.168", + * userAgent: "Browser" * } * ], - * "title": "My sample case", - * "watchers": [ + * title: "My sample case", + * watchers: [ * { - * "name": "Alice", - * "email": "alice@example.com", - * "jobTitle": "CEO" + * email: "alice@example.com", + * jobTitle: "CEO", + * name: "Alice" * }, * { - * "name": "Bob", - * "email": "bob@example.com", - * "jobTitle": "CFO" + * email: "bob@example.com", + * jobTitle: "CFO", + * name: "Bob" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetCaseCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/GetMembershipCommand.ts b/clients/client-security-ir/src/commands/GetMembershipCommand.ts index 122adc851c7f9..83a4856ce1ed4 100644 --- a/clients/client-security-ir/src/commands/GetMembershipCommand.ts +++ b/clients/client-security-ir/src/commands/GetMembershipCommand.ts @@ -108,50 +108,50 @@ export interface GetMembershipCommandOutput extends GetMembershipResponse, __Met * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke GetMembership * ```javascript * // * const input = { - * "membershipId": "m-abcd1234efgh" + * membershipId: "m-abcd1234efgh" * }; * const command = new GetMembershipCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "accountId": "123412341234", - * "customerType": "Standalone", - * "incidentResponseTeam": [ + * accountId: "123412341234", + * customerType: "Standalone", + * incidentResponseTeam: [ * { - * "name": "Bob Jones", - * "email": "bob.jones@gmail.com", - * "jobTitle": "Security Responder" + * email: "bob.jones@gmail.com", + * jobTitle: "Security Responder", + * name: "Bob Jones" * }, * { - * "name": "Alice", - * "email": "alice@example.com", - * "jobTitle": "CEO" + * email: "alice@example.com", + * jobTitle: "CEO", + * name: "Alice" * } * ], - * "membershipActivationTimestamp": "2023-03-27T15:32:01.789Z", - * "membershipArn": "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh", - * "membershipDeactivationTimestamp": "2023-04-27T15:32:01.789Z", - * "membershipId": "m-abcd1234efgh", - * "membershipName": "Example Membership", - * "membershipStatus": "Active", - * "numberOfAccountsCovered": 50, - * "optInFeatures": [ + * membershipActivationTimestamp: "2023-03-27T15:32:01.789Z", + * membershipArn: "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh", + * membershipDeactivationTimestamp: "2023-04-27T15:32:01.789Z", + * membershipId: "m-abcd1234efgh", + * membershipName: "Example Membership", + * membershipStatus: "Active", + * numberOfAccountsCovered: 50, + * optInFeatures: [ * { - * "featureName": "Triage", - * "isEnabled": true + * featureName: "Triage", + * isEnabled: true * } * ], - * "region": "af-south-1" + * region: "af-south-1" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetMembershipCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/ListCaseEditsCommand.ts b/clients/client-security-ir/src/commands/ListCaseEditsCommand.ts index bfa3aa6f78c6a..9a400dd9216ad 100644 --- a/clients/client-security-ir/src/commands/ListCaseEditsCommand.ts +++ b/clients/client-security-ir/src/commands/ListCaseEditsCommand.ts @@ -93,31 +93,31 @@ export interface ListCaseEditsCommandOutput extends ListCaseEditsResponse, __Met * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke ListCaseEdits * ```javascript * // * const input = { - * "caseId": "8403556009" + * caseId: "8403556009" * }; * const command = new ListCaseEditsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "items": [ + * items: [ * { - * "action": "Add comment", - * "eventTimestamp": "2023-03-27T15:32:01.789Z", - * "message": "Added comment to ask question to responder.", - * "principal": "00000000000" + * action: "Add comment", + * eventTimestamp: "2023-03-27T15:32:01.789Z", + * message: "Added comment to ask question to responder.", + * principal: "00000000000" * } * ], - * "total": 1 + * total: 1 * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListCaseEditsCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/ListCasesCommand.ts b/clients/client-security-ir/src/commands/ListCasesCommand.ts index 43caab6a14c85..3a62455ac7a7b 100644 --- a/clients/client-security-ir/src/commands/ListCasesCommand.ts +++ b/clients/client-security-ir/src/commands/ListCasesCommand.ts @@ -98,36 +98,36 @@ export interface ListCasesCommandOutput extends ListCasesResponse, __MetadataBea * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke ListCases * ```javascript * // * const input = { - * "maxResults": 10 + * maxResults: 10 * }; * const command = new ListCasesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "items": [ + * items: [ * { - * "caseArn": "arn:aws:security-ir:us-west-1:123456789012:case/1234567890", - * "caseId": "8403556009", - * "caseStatus": "Acknowledged", - * "createdDate": "2023-01-27T15:32:01.789Z", - * "engagementType": "Security Incident", - * "lastUpdatedDate": "2023-03-27T15:32:01.789Z", - * "pendingAction": "None", - * "resolverType": "Self", - * "title": "Example case title" + * caseArn: "arn:aws:security-ir:us-west-1:123456789012:case/1234567890", + * caseId: "8403556009", + * caseStatus: "Acknowledged", + * createdDate: "2023-01-27T15:32:01.789Z", + * engagementType: "Security Incident", + * lastUpdatedDate: "2023-03-27T15:32:01.789Z", + * pendingAction: "None", + * resolverType: "Self", + * title: "Example case title" * } * ], - * "total": 1 + * total: 1 * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListCasesCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/ListCommentsCommand.ts b/clients/client-security-ir/src/commands/ListCommentsCommand.ts index 0c6d0050aa75b..7dc28becb8b31 100644 --- a/clients/client-security-ir/src/commands/ListCommentsCommand.ts +++ b/clients/client-security-ir/src/commands/ListCommentsCommand.ts @@ -95,29 +95,29 @@ export interface ListCommentsCommandOutput extends ListCommentsResponse, __Metad * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke ListComments * ```javascript * // * const input = { - * "caseId": "8403556009" + * caseId: "8403556009" * }; * const command = new ListCommentsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "items": [ + * items: [ * { - * "body": "Case comment body.", - * "commentId": "000000" + * body: "Case comment body.", + * commentId: "000000" * } * ], - * "total": 1 + * total: 1 * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListCommentsCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/ListMembershipsCommand.ts b/clients/client-security-ir/src/commands/ListMembershipsCommand.ts index c78f77c7009c5..98d8fd976f2c7 100644 --- a/clients/client-security-ir/src/commands/ListMembershipsCommand.ts +++ b/clients/client-security-ir/src/commands/ListMembershipsCommand.ts @@ -92,31 +92,31 @@ export interface ListMembershipsCommandOutput extends ListMembershipsResponse, _ * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke ListMemberships * ```javascript * // * const input = { - * "maxResults": 10 + * maxResults: 10 * }; * const command = new ListMembershipsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "items": [ + * items: [ * { - * "accountId": "123123123123", - * "membershipArn": "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh", - * "membershipId": "m-abcd1234efgh", - * "membershipStatus": "Cancelled", - * "region": "af-south-1" + * accountId: "123123123123", + * membershipArn: "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh", + * membershipId: "m-abcd1234efgh", + * membershipStatus: "Cancelled", + * region: "af-south-1" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListMembershipsCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/ListTagsForResourceCommand.ts b/clients/client-security-ir/src/commands/ListTagsForResourceCommand.ts index fbcbb1378345e..58bc8ef2c4109 100644 --- a/clients/client-security-ir/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-security-ir/src/commands/ListTagsForResourceCommand.ts @@ -84,26 +84,26 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke ListTagsForResource * ```javascript * // * const input = { - * "resourceArn": "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh" + * resourceArn: "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "tags": { - * "key": "example-tag-key", - * "value": "example-tag-value" + * tags: { + * key: "example-tag-key", + * value: "example-tag-value" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/TagResourceCommand.ts b/clients/client-security-ir/src/commands/TagResourceCommand.ts index 6082557eca71a..b03e7c9b09431 100644 --- a/clients/client-security-ir/src/commands/TagResourceCommand.ts +++ b/clients/client-security-ir/src/commands/TagResourceCommand.ts @@ -83,22 +83,25 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke TagResource * ```javascript * // * const input = { - * "resourceArn": "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh", - * "tags": { - * "key": "example-tag-key", - * "value": "example-tag-value" + * resourceArn: "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh", + * tags: { + * key: "example-tag-key", + * value: "example-tag-value" * } * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/UntagResourceCommand.ts b/clients/client-security-ir/src/commands/UntagResourceCommand.ts index 0390a546f23c2..c5da47da42414 100644 --- a/clients/client-security-ir/src/commands/UntagResourceCommand.ts +++ b/clients/client-security-ir/src/commands/UntagResourceCommand.ts @@ -83,21 +83,24 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke UntagResource * ```javascript * // * const input = { - * "resourceArn": "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh", - * "tagKeys": [ + * resourceArn: "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh", + * tagKeys: [ * "example-tag-key" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/UpdateCaseCommand.ts b/clients/client-security-ir/src/commands/UpdateCaseCommand.ts index e989f8f996eb7..0c30cfe61cf8c 100644 --- a/clients/client-security-ir/src/commands/UpdateCaseCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateCaseCommand.ts @@ -133,71 +133,74 @@ export interface UpdateCaseCommandOutput extends UpdateCaseResponse, __MetadataB * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke UpdateCase * ```javascript * // * const input = { - * "actualIncidentStartDate": "2023-03-25T15:32:01.789Z", - * "caseId": "8403556009", - * "description": "Case description", - * "engagementType": "Investigation", - * "impactedAccountsToAdd": [ + * actualIncidentStartDate: "2023-03-25T15:32:01.789Z", + * caseId: "8403556009", + * description: "Case description", + * engagementType: "Investigation", + * impactedAccountsToAdd: [ * "000000000000" * ], - * "impactedAccountsToDelete": [ + * impactedAccountsToDelete: [ * "111111111111" * ], - * "impactedAwsRegionsToAdd": [ + * impactedAwsRegionsToAdd: [ * { - * "region": "ap-southeast-1" + * region: "ap-southeast-1" * } * ], - * "impactedAwsRegionsToDelete": [ + * impactedAwsRegionsToDelete: [ * { - * "region": "us-east-1" + * region: "us-east-1" * } * ], - * "impactedServicesToAdd": [ + * impactedServicesToAdd: [ * "Amazon EC2" * ], - * "impactedServicesToDelete": [ + * impactedServicesToDelete: [ * "Amazon EKS" * ], - * "reportedIncidentStartDate": "2023-03-27T15:32:01.789Z", - * "threatActorIpAddressesToAdd": [ + * reportedIncidentStartDate: "2023-03-27T15:32:01.789Z", + * threatActorIpAddressesToAdd: [ * { - * "ipAddress": "190.160.190.160", - * "userAgent": "Browser" + * ipAddress: "190.160.190.160", + * userAgent: "Browser" * } * ], - * "threatActorIpAddressesToDelete": [ + * threatActorIpAddressesToDelete: [ * { - * "ipAddress": "192.168.192.168", - * "userAgent": "Browser" + * ipAddress: "192.168.192.168", + * userAgent: "Browser" * } * ], - * "title": "My sample case", - * "watchersToAdd": [ + * title: "My sample case", + * watchersToAdd: [ * { - * "name": "Same", - * "email": "Sam@example.com", - * "jobTitle": "CEO" + * email: "Sam@example.com", + * jobTitle: "CEO", + * name: "Same" * } * ], - * "watchersToDelete": [ + * watchersToDelete: [ * { - * "name": "Bob", - * "email": "bob@example.com", - * "jobTitle": "CFO" + * email: "bob@example.com", + * jobTitle: "CFO", + * name: "Bob" * } * ] * }; * const command = new UpdateCaseCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UpdateCaseCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/UpdateCaseCommentCommand.ts b/clients/client-security-ir/src/commands/UpdateCaseCommentCommand.ts index eedc2a60eb3ee..8141ed606fda1 100644 --- a/clients/client-security-ir/src/commands/UpdateCaseCommentCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateCaseCommentCommand.ts @@ -90,26 +90,26 @@ export interface UpdateCaseCommentCommandOutput extends UpdateCaseCommentRespons * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke UpdateCaseComment * ```javascript * // * const input = { - * "body": "Updated case comment.", - * "caseId": "8403556009", - * "commentId": "000000" + * body: "Updated case comment.", + * caseId: "8403556009", + * commentId: "000000" * }; * const command = new UpdateCaseCommentCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "body": "Updated case comment.", - * "commentId": "000000" + * body: "Updated case comment.", + * commentId: "000000" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateCaseCommentCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/UpdateCaseStatusCommand.ts b/clients/client-security-ir/src/commands/UpdateCaseStatusCommand.ts index 3404effa10115..5c24e15623554 100644 --- a/clients/client-security-ir/src/commands/UpdateCaseStatusCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateCaseStatusCommand.ts @@ -85,24 +85,24 @@ export interface UpdateCaseStatusCommandOutput extends UpdateCaseStatusResponse, * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke UpdateCaseStatus * ```javascript * // * const input = { - * "caseId": "8403556009", - * "caseStatus": "Post-incident Activities" + * caseId: "8403556009", + * caseStatus: "Post-incident Activities" * }; * const command = new UpdateCaseStatusCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "caseStatus": "Post-incident Activities" + * caseStatus: "Post-incident Activities" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateCaseStatusCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/UpdateMembershipCommand.ts b/clients/client-security-ir/src/commands/UpdateMembershipCommand.ts index 8b2ecc8f8488c..260b06e9d19a3 100644 --- a/clients/client-security-ir/src/commands/UpdateMembershipCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateMembershipCommand.ts @@ -98,37 +98,40 @@ export interface UpdateMembershipCommandOutput extends UpdateMembershipResponse, * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke UpdateMembership * ```javascript * // * const input = { - * "incidentResponseTeam": [ + * incidentResponseTeam: [ * { - * "name": "Bob Jones", - * "email": "bob.jones@gmail.com", - * "jobTitle": "Security Responder" + * email: "bob.jones@gmail.com", + * jobTitle: "Security Responder", + * name: "Bob Jones" * }, * { - * "name": "Alice", - * "email": "alice@example.com", - * "jobTitle": "CEO" + * email: "alice@example.com", + * jobTitle: "CEO", + * name: "Alice" * } * ], - * "membershipId": "m-abcd1234efgh", - * "membershipName": "New membership name", - * "optInFeatures": [ + * membershipId: "m-abcd1234efgh", + * membershipName: "New membership name", + * optInFeatures: [ * { - * "featureName": "Triage", - * "isEnabled": true + * featureName: "Triage", + * isEnabled: true * } * ] * }; * const command = new UpdateMembershipCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UpdateMembershipCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/UpdateResolverTypeCommand.ts b/clients/client-security-ir/src/commands/UpdateResolverTypeCommand.ts index 264776c575f05..04b1a64a95769 100644 --- a/clients/client-security-ir/src/commands/UpdateResolverTypeCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateResolverTypeCommand.ts @@ -89,26 +89,26 @@ export interface UpdateResolverTypeCommandOutput extends UpdateResolverTypeRespo * @throws {@link SecurityIRServiceException} *

Base exception class for all service exceptions from SecurityIR service.

* - * @public + * * @example Invoke UpdateResolverType * ```javascript * // * const input = { - * "caseId": "8403556009", - * "resolverType": "AWS" + * caseId: "8403556009", + * resolverType: "AWS" * }; * const command = new UpdateResolverTypeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "caseId": "8403556009", - * "caseStatus": "Detection and Analysis", - * "resolverType": "AWS" + * caseId: "8403556009", + * caseStatus: "Detection and Analysis", + * resolverType: "AWS" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateResolverTypeCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/AcceptAdministratorInvitationCommand.ts b/clients/client-securityhub/src/commands/AcceptAdministratorInvitationCommand.ts index a7f5a02275f51..5454ff55cc995 100644 --- a/clients/client-securityhub/src/commands/AcceptAdministratorInvitationCommand.ts +++ b/clients/client-securityhub/src/commands/AcceptAdministratorInvitationCommand.ts @@ -86,19 +86,22 @@ export interface AcceptAdministratorInvitationCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To accept an invitation be a member account * ```javascript * // The following example demonstrates how an account can accept an invitation from the Security Hub administrator account to be a member account. This operation is applicable only to member accounts that are not added through AWS Organizations. * const input = { - * "AdministratorId": "123456789012", - * "InvitationId": "7ab938c5d52d7904ad09f9e7c20cc4eb" + * AdministratorId: "123456789012", + * InvitationId: "7ab938c5d52d7904ad09f9e7c20cc4eb" * }; * const command = new AcceptAdministratorInvitationCommand(input); - * await client.send(command); - * // example id: to-accept-an-invitation-be-a-member-account-1674849870467 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class AcceptAdministratorInvitationCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/AcceptInvitationCommand.ts b/clients/client-securityhub/src/commands/AcceptInvitationCommand.ts index 6ddc08147c261..d4e10542b30d3 100644 --- a/clients/client-securityhub/src/commands/AcceptInvitationCommand.ts +++ b/clients/client-securityhub/src/commands/AcceptInvitationCommand.ts @@ -80,6 +80,7 @@ export interface AcceptInvitationCommandOutput extends AcceptInvitationResponse, * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* + * * @public */ export class AcceptInvitationCommand extends $Command diff --git a/clients/client-securityhub/src/commands/BatchDeleteAutomationRulesCommand.ts b/clients/client-securityhub/src/commands/BatchDeleteAutomationRulesCommand.ts index 920fc48e52141..c75a38ba7cea1 100644 --- a/clients/client-securityhub/src/commands/BatchDeleteAutomationRulesCommand.ts +++ b/clients/client-securityhub/src/commands/BatchDeleteAutomationRulesCommand.ts @@ -85,35 +85,35 @@ export interface BatchDeleteAutomationRulesCommandOutput extends BatchDeleteAuto * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To delete one or more automation rules * ```javascript * // The following example deletes the specified automation rules. * const input = { - * "AutomationRulesArns": [ + * AutomationRulesArns: [ * "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", * "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222" * ] * }; * const command = new BatchDeleteAutomationRulesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ProcessedAutomationRules": [ + * ProcessedAutomationRules: [ * "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * ], - * "UnprocessedAutomationRules": [ + * UnprocessedAutomationRules: [ * { - * "ErrorCode": 500, - * "ErrorMessage": "InternalException", - * "RuleArn": "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222" + * ErrorCode: 500, + * ErrorMessage: "InternalException", + * RuleArn: "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222" * } * ] * } * *\/ - * // example id: to-delete-one-or-more-automation-rules-1684769550318 * ``` * + * @public */ export class BatchDeleteAutomationRulesCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/BatchDisableStandardsCommand.ts b/clients/client-securityhub/src/commands/BatchDisableStandardsCommand.ts index 1ee052ea3946b..8811661a38e72 100644 --- a/clients/client-securityhub/src/commands/BatchDisableStandardsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchDisableStandardsCommand.ts @@ -90,32 +90,32 @@ export interface BatchDisableStandardsCommandOutput extends BatchDisableStandard * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To disable one or more security standards * ```javascript * // The following example disables a security standard in Security Hub. * const input = { - * "StandardsSubscriptionArns": [ + * StandardsSubscriptionArns: [ * "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1" * ] * }; * const command = new BatchDisableStandardsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "StandardsSubscriptions": [ + * StandardsSubscriptions: [ * { - * "StandardsArn": "arn:aws:securityhub:eu-central-1::standards/pci-dss/v/3.2.1", - * "StandardsInput": {}, - * "StandardsStatus": "DELETING", - * "StandardsSubscriptionArn": "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1" + * StandardsArn: "arn:aws:securityhub:eu-central-1::standards/pci-dss/v/3.2.1", + * StandardsInput: { /* empty *\/ }, + * StandardsStatus: "DELETING", + * StandardsSubscriptionArn: "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1" * } * ] * } * *\/ - * // example id: to-disable-one-or-more-security-standards-1674851507200 * ``` * + * @public */ export class BatchDisableStandardsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/BatchEnableStandardsCommand.ts b/clients/client-securityhub/src/commands/BatchEnableStandardsCommand.ts index 2563065894d21..8f6d13de52bd0 100644 --- a/clients/client-securityhub/src/commands/BatchEnableStandardsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchEnableStandardsCommand.ts @@ -96,34 +96,34 @@ export interface BatchEnableStandardsCommandOutput extends BatchEnableStandardsR * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To enable security standards * ```javascript * // The following example enables the security standard specified by the StandardArn. You can use this operation to enable one or more Security Hub standards. * const input = { - * "StandardsSubscriptionRequests": [ + * StandardsSubscriptionRequests: [ * { - * "StandardsArn": "arn:aws:securityhub:us-west-1::standards/pci-dss/v/3.2.1" + * StandardsArn: "arn:aws:securityhub:us-west-1::standards/pci-dss/v/3.2.1" * } * ] * }; * const command = new BatchEnableStandardsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "StandardsSubscriptions": [ + * StandardsSubscriptions: [ * { - * "StandardsArn": "arn:aws:securityhub:us-west-1::standards/pci-dss/v/3.2.1", - * "StandardsInput": {}, - * "StandardsStatus": "PENDING", - * "StandardsSubscriptionArn": "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1" + * StandardsArn: "arn:aws:securityhub:us-west-1::standards/pci-dss/v/3.2.1", + * StandardsInput: { /* empty *\/ }, + * StandardsStatus: "PENDING", + * StandardsSubscriptionArn: "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1" * } * ] * } * *\/ - * // example id: to-enable-security-standards-1683233792239 * ``` * + * @public */ export class BatchEnableStandardsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/BatchGetAutomationRulesCommand.ts b/clients/client-securityhub/src/commands/BatchGetAutomationRulesCommand.ts index f56547616b2ce..c33d865b84089 100644 --- a/clients/client-securityhub/src/commands/BatchGetAutomationRulesCommand.ts +++ b/clients/client-securityhub/src/commands/BatchGetAutomationRulesCommand.ts @@ -277,103 +277,103 @@ export interface BatchGetAutomationRulesCommandOutput extends BatchGetAutomation * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To update one ore more automation rules * ```javascript * // The following example updates the specified automation rules. * const input = { - * "AutomationRulesArns": [ + * AutomationRulesArns: [ * "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", * "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222" * ] * }; * const command = new BatchGetAutomationRulesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Rules": [ + * Rules: [ * { - * "Actions": [ + * Actions: [ * { - * "FindingFieldsUpdate": { - * "Workflow": { - * "Status": "RESOLVED" + * FindingFieldsUpdate: { + * Workflow: { + * Status: "RESOLVED" * } * }, - * "Type": "FINDING_FIELDS_UPDATE" + * Type: "FINDING_FIELDS_UPDATE" * } * ], - * "CreatedAt": "2022-08-31T01:52:33.250Z", - * "CreatedBy": "AROAJURBUYQQNL5OL2TIM:TEST-16MJ75L9VBK14", - * "Criteria": { - * "AwsAccountId": [ + * CreatedAt: "2022-08-31T01:52:33.250Z", + * CreatedBy: "AROAJURBUYQQNL5OL2TIM:TEST-16MJ75L9VBK14", + * Criteria: { + * AwsAccountId: [ * { - * "Comparison": "EQUALS", - * "Value": "111122223333" + * Comparison: "EQUALS", + * Value: "111122223333" * } * ], - * "FirstObservedAt": [ + * FirstObservedAt: [ * { - * "DateRange": { - * "Unit": "DAYS", - * "Value": 5 + * DateRange: { + * Unit: "DAYS", + * Value: 5 * } * } * ], - * "Type": [ + * Type: [ * { - * "Comparison": "EQUALS", - * "Value": "Software and Configuration Checks/Industry and Regulatory Standards" + * Comparison: "EQUALS", + * Value: "Software and Configuration Checks/Industry and Regulatory Standards" * } * ] * }, - * "Description": "sample rule description 1", - * "RuleArn": "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "RuleName": "sample-rule-name-1", - * "RuleOrder": 1, - * "RuleStatus": "ENABLED", - * "UpdatedAt": "2022-08-31T01:52:33.250Z" + * Description: "sample rule description 1", + * RuleArn: "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * RuleName: "sample-rule-name-1", + * RuleOrder: 1, + * RuleStatus: "ENABLED", + * UpdatedAt: "2022-08-31T01:52:33.250Z" * }, * { - * "Actions": [ + * Actions: [ * { - * "FindingFieldsUpdate": { - * "Workflow": { - * "Status": "RESOLVED" + * FindingFieldsUpdate: { + * Workflow: { + * Status: "RESOLVED" * } * }, - * "Type": "FINDING_FIELDS_UPDATE" + * Type: "FINDING_FIELDS_UPDATE" * } * ], - * "CreatedAt": "2022-08-31T01:52:33.250Z", - * "CreatedBy": "AROAJURBUYQQNL5OL2TIM:TEST-16MJ75L9VBK14", - * "Criteria": { - * "ResourceType": [ + * CreatedAt: "2022-08-31T01:52:33.250Z", + * CreatedBy: "AROAJURBUYQQNL5OL2TIM:TEST-16MJ75L9VBK14", + * Criteria: { + * ResourceType: [ * { - * "Comparison": "EQUALS", - * "Value": "Ec2Instance" + * Comparison: "EQUALS", + * Value: "Ec2Instance" * } * ], - * "SeverityLabel": [ + * SeverityLabel: [ * { - * "Comparison": "EQUALS", - * "Value": "INFORMATIONAL" + * Comparison: "EQUALS", + * Value: "INFORMATIONAL" * } * ] * }, - * "Description": "Sample rule description 2", - * "RuleArn": "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", - * "RuleName": "sample-rule-name-2", - * "RuleOrder": 2, - * "RuleStatus": "ENABLED", - * "UpdatedAt": "2022-08-31T01:52:33.250Z" + * Description: "Sample rule description 2", + * RuleArn: "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", + * RuleName: "sample-rule-name-2", + * RuleOrder: 2, + * RuleStatus: "ENABLED", + * UpdatedAt: "2022-08-31T01:52:33.250Z" * } * ] * } * *\/ - * // example id: to-update-one-ore-more-automation-rules-1684771025347 * ``` * + * @public */ export class BatchGetAutomationRulesCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/BatchGetConfigurationPolicyAssociationsCommand.ts b/clients/client-securityhub/src/commands/BatchGetConfigurationPolicyAssociationsCommand.ts index 7f86269833a03..3db8f4ba3fd34 100644 --- a/clients/client-securityhub/src/commands/BatchGetConfigurationPolicyAssociationsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchGetConfigurationPolicyAssociationsCommand.ts @@ -119,55 +119,55 @@ export interface BatchGetConfigurationPolicyAssociationsCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To get configuration associations for a batch of targets * ```javascript * // This operation provides details about configuration associations for a batch of target accounts, organizational units, or the root. * const input = { - * "ConfigurationPolicyAssociationIdentifiers": [ + * ConfigurationPolicyAssociationIdentifiers: [ * { - * "Target": { - * "AccountId": "111122223333" + * Target: { + * AccountId: "111122223333" * } * }, * { - * "Target": { - * "RootId": "r-f6g7h8i9j0example" + * Target: { + * RootId: "r-f6g7h8i9j0example" * } * } * ] * }; * const command = new BatchGetConfigurationPolicyAssociationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ConfigurationPolicyAssociations": [ + * ConfigurationPolicyAssociations: [ * { - * "AssociationStatus": "SUCCESS", - * "AssociationStatusMessage": "This field is only populated for a failed association", - * "AssociationType": "INHERITED", - * "ConfigurationPolicyId": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "TargetId": "111122223333", - * "TargetType": "ACCOUNT", - * "UpdatedAt": "2023-01-11T06:17:17.154Z" + * AssociationStatus: "SUCCESS", + * AssociationStatusMessage: "This field is only populated for a failed association", + * AssociationType: "INHERITED", + * ConfigurationPolicyId: "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * TargetId: "111122223333", + * TargetType: "ACCOUNT", + * UpdatedAt: "2023-01-11T06:17:17.154Z" * } * ], - * "UnprocessedConfigurationPolicyAssociations": [ + * UnprocessedConfigurationPolicyAssociations: [ * { - * "ConfigurationPolicyAssociationIdentifiers": { - * "Target": { - * "RootId": "r-f6g7h8i9j0example" + * ConfigurationPolicyAssociationIdentifiers: { + * Target: { + * RootId: "r-f6g7h8i9j0example" * } * }, - * "ErrorCode": "400", - * "ErrorReason": "You do not have sufficient access to perform this action." + * ErrorCode: "400", + * ErrorReason: "You do not have sufficient access to perform this action." * } * ] * } * *\/ - * // example id: to-get-configuration-associations-for-a-batch-of-targets-1695178953302 * ``` * + * @public */ export class BatchGetConfigurationPolicyAssociationsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/BatchGetSecurityControlsCommand.ts b/clients/client-securityhub/src/commands/BatchGetSecurityControlsCommand.ts index decdad9263c0f..4e87d666c897f 100644 --- a/clients/client-securityhub/src/commands/BatchGetSecurityControlsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchGetSecurityControlsCommand.ts @@ -113,65 +113,65 @@ export interface BatchGetSecurityControlsCommandOutput extends BatchGetSecurityC * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To get security control details * ```javascript * // The following example gets details for the specified controls in the current AWS account and AWS Region. * const input = { - * "SecurityControlIds": [ + * SecurityControlIds: [ * "ACM.1", * "APIGateway.1" * ] * }; * const command = new BatchGetSecurityControlsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SecurityControls": [ + * SecurityControls: [ * { - * "Description": "This AWS control checks whether ACM Certificates in your account are marked for expiration within a specified time period. Certificates provided by ACM are automatically renewed. ACM does not automatically renew certificates that you import.", - * "LastUpdateReason": "Stayed with default value", - * "Parameters": { - * "daysToExpiration": { - * "Value": { - * "Integer": 30 + * Description: "This AWS control checks whether ACM Certificates in your account are marked for expiration within a specified time period. Certificates provided by ACM are automatically renewed. ACM does not automatically renew certificates that you import.", + * LastUpdateReason: "Stayed with default value", + * Parameters: { + * daysToExpiration: { + * Value: { + * Integer: 30 * }, - * "ValueType": "DEFAULT" + * ValueType: "DEFAULT" * } * }, - * "RemediationUrl": "https://docs.aws.amazon.com/console/securityhub/ACM.1/remediation", - * "SecurityControlArn": "arn:aws:securityhub:us-west-2:123456789012:security-control/ACM.1", - * "SecurityControlId": "ACM.1", - * "SecurityControlStatus": "ENABLED", - * "SeverityRating": "MEDIUM", - * "Title": "Imported and ACM-issued certificates should be renewed after a specified time period", - * "UpdateStatus": "UPDATING" + * RemediationUrl: "https://docs.aws.amazon.com/console/securityhub/ACM.1/remediation", + * SecurityControlArn: "arn:aws:securityhub:us-west-2:123456789012:security-control/ACM.1", + * SecurityControlId: "ACM.1", + * SecurityControlStatus: "ENABLED", + * SeverityRating: "MEDIUM", + * Title: "Imported and ACM-issued certificates should be renewed after a specified time period", + * UpdateStatus: "UPDATING" * }, * { - * "Description": "This control checks whether all stages of Amazon API Gateway REST and WebSocket APIs have logging enabled. The control fails if logging is not enabled for all methods of a stage or if loggingLevel is neither ERROR nor INFO.", - * "LastUpdateReason": "Updated control parameters to comply with internal requirements", - * "Parameters": { - * "loggingLevel": { - * "Value": { - * "Enum": "ERROR" + * Description: "This control checks whether all stages of Amazon API Gateway REST and WebSocket APIs have logging enabled. The control fails if logging is not enabled for all methods of a stage or if loggingLevel is neither ERROR nor INFO.", + * LastUpdateReason: "Updated control parameters to comply with internal requirements", + * Parameters: { + * loggingLevel: { + * Value: { + * Enum: "ERROR" * }, - * "ValueType": "CUSTOM" + * ValueType: "CUSTOM" * } * }, - * "RemediationUrl": "https://docs.aws.amazon.com/console/securityhub/APIGateway.1/remediation", - * "SecurityControlArn": "arn:aws:securityhub:us-west-2:123456789012:security-control/APIGateway.1", - * "SecurityControlId": "APIGateway.1", - * "SecurityControlStatus": "ENABLED", - * "SeverityRating": "MEDIUM", - * "Title": "API Gateway REST and WebSocket API execution logging should be enabled", - * "UpdateStatus": "UPDATING" + * RemediationUrl: "https://docs.aws.amazon.com/console/securityhub/APIGateway.1/remediation", + * SecurityControlArn: "arn:aws:securityhub:us-west-2:123456789012:security-control/APIGateway.1", + * SecurityControlId: "APIGateway.1", + * SecurityControlStatus: "ENABLED", + * SeverityRating: "MEDIUM", + * Title: "API Gateway REST and WebSocket API execution logging should be enabled", + * UpdateStatus: "UPDATING" * } * ] * } * *\/ - * // example id: to-get-security-control-details--1683234478355 * ``` * + * @public */ export class BatchGetSecurityControlsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/BatchGetStandardsControlAssociationsCommand.ts b/clients/client-securityhub/src/commands/BatchGetStandardsControlAssociationsCommand.ts index fa2581119e4d0..6c9627ca07e3b 100644 --- a/clients/client-securityhub/src/commands/BatchGetStandardsControlAssociationsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchGetStandardsControlAssociationsCommand.ts @@ -114,57 +114,8 @@ export interface BatchGetStandardsControlAssociationsCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public - * @example To get enablement status of a batch of controls - * ```javascript - * // The following example retrieves the enablement status of the specified controls in the specified standards. - * const input = { - * "StandardsControlAssociationIds": [ - * { - * "SecurityControlId": "CloudTrail.1", - * "StandardsArn": "arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0" - * }, - * { - * "SecurityControlId": "CloudWatch.12", - * "StandardsArn": "arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0" - * } - * ] - * }; - * const command = new BatchGetStandardsControlAssociationsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "StandardsControlAssociationDetails": [ - * { - * "AssociationStatus": "ENABLED", - * "RelatedRequirements": [ - * "CIS AWS Foundations 2.1" - * ], - * "SecurityControlArn": "arn:aws:securityhub:us-west-2:110479873537:security-control/CloudTrail.1", - * "SecurityControlId": "CloudTrail.1", - * "StandardsArn": "arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0", - * "StandardsControlDescription": "AWS CloudTrail is a web service that records AWS API calls for your account and delivers log files to you. The recorded information includes the identity of the API caller, the time of the API call, the source IP address of the API caller, the request parameters, and the response elements returned by the AWS service.", - * "StandardsControlTitle": "Ensure CloudTrail is enabled in all regions", - * "UpdatedAt": "2022-01-13T18:52:29.539000+00:00" - * }, - * { - * "AssociationStatus": "ENABLED", - * "RelatedRequirements": [ - * "CIS AWS Foundations 3.12" - * ], - * "SecurityControlArn": "arn:aws:securityhub:us-west-2:110479873537:security-control/CloudWatch.12", - * "SecurityControlId": "CloudWatch.12", - * "StandardsArn": "arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0", - * "StandardsControlDescription": "Real-time monitoring of API calls can be achieved by directing CloudTrail Logs to CloudWatch Logs and establishing corresponding metric filters and alarms. Network gateways are required to send/receive traffic to a destination outside of a VPC. It is recommended that a metric filter and alarm be established for changes to network gateways.", - * "StandardsControlTitle": "Ensure a log metric filter and alarm exist for changes to network gateways", - * "UpdatedAt": "2022-01-13T18:52:29.686000+00:00" - * } - * ] - * } - * *\/ - * // example id: to-get-enablement-status-of-a-batch-of-controls-1683301618357 - * ``` * + * @public */ export class BatchGetStandardsControlAssociationsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/BatchImportFindingsCommand.ts b/clients/client-securityhub/src/commands/BatchImportFindingsCommand.ts index 2465647e50a3f..755db0c72f963 100644 --- a/clients/client-securityhub/src/commands/BatchImportFindingsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchImportFindingsCommand.ts @@ -4414,54 +4414,54 @@ export interface BatchImportFindingsCommandOutput extends BatchImportFindingsRes * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To import security findings from a third party provider to Security Hub * ```javascript * // The following example imports findings from a third party provider to Security Hub. * const input = { - * "Findings": [ + * Findings: [ * { - * "AwsAccountId": "123456789012", - * "CreatedAt": "2020-05-27T17:05:54.832Z", - * "Description": "Vulnerability in a CloudTrail trail", - * "FindingProviderFields": { - * "Severity": { - * "Label": "LOW", - * "Original": "10" + * AwsAccountId: "123456789012", + * CreatedAt: "2020-05-27T17:05:54.832Z", + * Description: "Vulnerability in a CloudTrail trail", + * FindingProviderFields: { + * Severity: { + * Label: "LOW", + * Original: "10" * }, - * "Types": [ + * Types: [ * "Software and Configuration Checks/Vulnerabilities/CVE" * ] * }, - * "GeneratorId": "TestGeneratorId", - * "Id": "Id1", - * "ProductArn": "arn:aws:securityhub:us-west-1:123456789012:product/123456789012/default", - * "Resources": [ + * GeneratorId: "TestGeneratorId", + * Id: "Id1", + * ProductArn: "arn:aws:securityhub:us-west-1:123456789012:product/123456789012/default", + * Resources: [ * { - * "Id": "arn:aws:cloudtrail:us-west-1:123456789012:trail/TrailName", - * "Partition": "aws", - * "Region": "us-west-1", - * "Type": "AwsCloudTrailTrail" + * Id: "arn:aws:cloudtrail:us-west-1:123456789012:trail/TrailName", + * Partition: "aws", + * Region: "us-west-1", + * Type: "AwsCloudTrailTrail" * } * ], - * "SchemaVersion": "2018-10-08", - * "Title": "CloudTrail trail vulnerability", - * "UpdatedAt": "2020-06-02T16:05:54.832Z" + * SchemaVersion: "2018-10-08", + * Title: "CloudTrail trail vulnerability", + * UpdatedAt: "2020-06-02T16:05:54.832Z" * } * ] * }; * const command = new BatchImportFindingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FailedCount": 123, - * "FailedFindings": [], - * "SuccessCount": 123 + * FailedCount: 123, + * FailedFindings: [], + * SuccessCount: 123 * } * *\/ - * // example id: to-import-security-findings-from-a-third-party-provider-to-security-hub-1675090935260 * ``` * + * @public */ export class BatchImportFindingsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/BatchUpdateAutomationRulesCommand.ts b/clients/client-securityhub/src/commands/BatchUpdateAutomationRulesCommand.ts index 3757dba36bbf5..f23eef37cddee 100644 --- a/clients/client-securityhub/src/commands/BatchUpdateAutomationRulesCommand.ts +++ b/clients/client-securityhub/src/commands/BatchUpdateAutomationRulesCommand.ts @@ -271,36 +271,36 @@ export interface BatchUpdateAutomationRulesCommandOutput extends BatchUpdateAuto * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To update one ore more automation rules * ```javascript * // The following example updates the specified automation rules. * const input = { - * "UpdateAutomationRulesRequestItems": [ + * UpdateAutomationRulesRequestItems: [ * { - * "RuleArn": "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "RuleOrder": 15, - * "RuleStatus": "ENABLED" + * RuleArn: "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * RuleOrder: 15, + * RuleStatus: "ENABLED" * }, * { - * "RuleArn": "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", - * "RuleStatus": "DISABLED" + * RuleArn: "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", + * RuleStatus: "DISABLED" * } * ] * }; * const command = new BatchUpdateAutomationRulesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ProcessedAutomationRules": [ + * ProcessedAutomationRules: [ * "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", * "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222" * ] * } * *\/ - * // example id: to-update-one-ore-more-automation-rules-1684771025347 * ``` * + * @public */ export class BatchUpdateAutomationRulesCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/BatchUpdateFindingsCommand.ts b/clients/client-securityhub/src/commands/BatchUpdateFindingsCommand.ts index f9d74364cb8dd..3acec4a1ce208 100644 --- a/clients/client-securityhub/src/commands/BatchUpdateFindingsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchUpdateFindingsCommand.ts @@ -174,67 +174,67 @@ export interface BatchUpdateFindingsCommandOutput extends BatchUpdateFindingsRes * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To update Security Hub findings * ```javascript * // The following example updates Security Hub findings. The finding identifier parameter specifies which findings to update. Only specific finding fields can be updated with this operation. * const input = { - * "Confidence": 80, - * "Criticality": 80, - * "FindingIdentifiers": [ + * Confidence: 80, + * Criticality: 80, + * FindingIdentifiers: [ * { - * "Id": "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1/PCI.Lambda.2/finding/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ProductArn": "arn:aws:securityhub:us-west-1::product/aws/securityhub" + * Id: "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1/PCI.Lambda.2/finding/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * ProductArn: "arn:aws:securityhub:us-west-1::product/aws/securityhub" * }, * { - * "Id": "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1/PCI.Lambda.2/finding/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", - * "ProductArn": "arn:aws:securityhub:us-west-1::product/aws/securityhub" + * Id: "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1/PCI.Lambda.2/finding/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", + * ProductArn: "arn:aws:securityhub:us-west-1::product/aws/securityhub" * } * ], - * "Note": { - * "Text": "Known issue that is not a risk.", - * "UpdatedBy": "user1" + * Note: { + * Text: "Known issue that is not a risk.", + * UpdatedBy: "user1" * }, - * "RelatedFindings": [ + * RelatedFindings: [ * { - * "Id": "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1/PCI.Lambda.2/finding/a1b2c3d4-5678-90ab-cdef-EXAMPLE33333", - * "ProductArn": "arn:aws:securityhub:us-west-1::product/aws/securityhub" + * Id: "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1/PCI.Lambda.2/finding/a1b2c3d4-5678-90ab-cdef-EXAMPLE33333", + * ProductArn: "arn:aws:securityhub:us-west-1::product/aws/securityhub" * } * ], - * "Severity": { - * "Label": "LOW" + * Severity: { + * Label: "LOW" * }, - * "Types": [ + * Types: [ * "Software and Configuration Checks/Vulnerabilities/CVE" * ], - * "UserDefinedFields": { - * "reviewedByCio": "true" + * UserDefinedFields: { + * reviewedByCio: "true" * }, - * "VerificationState": "TRUE_POSITIVE", - * "Workflow": { - * "Status": "RESOLVED" + * VerificationState: "TRUE_POSITIVE", + * Workflow: { + * Status: "RESOLVED" * } * }; * const command = new BatchUpdateFindingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ProcessedFindings": [ + * ProcessedFindings: [ * { - * "Id": "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1/PCI.Lambda.2/finding/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ProductArn": "arn:aws:securityhub:us-west-1::product/aws/securityhub" + * Id: "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1/PCI.Lambda.2/finding/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * ProductArn: "arn:aws:securityhub:us-west-1::product/aws/securityhub" * }, * { - * "Id": "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1/PCI.Lambda.2/finding/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", - * "ProductArn": "arn:aws:securityhub:us-west-1::product/aws/securityhub" + * Id: "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1/PCI.Lambda.2/finding/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", + * ProductArn: "arn:aws:securityhub:us-west-1::product/aws/securityhub" * } * ], - * "UnprocessedFindings": [] + * UnprocessedFindings: [] * } * *\/ - * // example id: to-update-security-hub-findings-1675183938248 * ``` * + * @public */ export class BatchUpdateFindingsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/BatchUpdateStandardsControlAssociationsCommand.ts b/clients/client-securityhub/src/commands/BatchUpdateStandardsControlAssociationsCommand.ts index 00302570b76bf..130fd173a474d 100644 --- a/clients/client-securityhub/src/commands/BatchUpdateStandardsControlAssociationsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchUpdateStandardsControlAssociationsCommand.ts @@ -101,47 +101,47 @@ export interface BatchUpdateStandardsControlAssociationsCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To update enablement status of a batch of controls * ```javascript * // The following example disables CloudWatch.12 in CIS AWS Foundations Benchmark v1.2.0. The example returns an error for CloudTrail.1 because an invalid standard ARN is provided. * const input = { - * "StandardsControlAssociationUpdates": [ + * StandardsControlAssociationUpdates: [ * { - * "AssociationStatus": "DISABLED", - * "SecurityControlId": "CloudTrail.1", - * "StandardsArn": "arn:aws:securityhub:::ruleset/sample-standard/v/1.1.0", - * "UpdatedReason": "Not relevant to environment" + * AssociationStatus: "DISABLED", + * SecurityControlId: "CloudTrail.1", + * StandardsArn: "arn:aws:securityhub:::ruleset/sample-standard/v/1.1.0", + * UpdatedReason: "Not relevant to environment" * }, * { - * "AssociationStatus": "DISABLED", - * "SecurityControlId": "CloudWatch.12", - * "StandardsArn": "arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0", - * "UpdatedReason": "Not relevant to environment" + * AssociationStatus: "DISABLED", + * SecurityControlId: "CloudWatch.12", + * StandardsArn: "arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0", + * UpdatedReason: "Not relevant to environment" * } * ] * }; * const command = new BatchUpdateStandardsControlAssociationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "UnprocessedAssociationUpdates": [ + * UnprocessedAssociationUpdates: [ * { - * "ErrorCode": "INVALID_INPUT", - * "ErrorReason": "Invalid Standards Arn: 'arn:aws:securityhub:::ruleset/sample-standard/v/1.1.0'", - * "StandardsControlAssociationUpdate": { - * "AssociationStatus": "DISABLED", - * "SecurityControlId": "CloudTrail.1", - * "StandardsArn": "arn:aws:securityhub:::ruleset/sample-standard/v/1.1.0", - * "UpdatedReason": "Test Reason" + * ErrorCode: "INVALID_INPUT", + * ErrorReason: "Invalid Standards Arn: 'arn:aws:securityhub:::ruleset/sample-standard/v/1.1.0'", + * StandardsControlAssociationUpdate: { + * AssociationStatus: "DISABLED", + * SecurityControlId: "CloudTrail.1", + * StandardsArn: "arn:aws:securityhub:::ruleset/sample-standard/v/1.1.0", + * UpdatedReason: "Test Reason" * } * } * ] * } * *\/ - * // example id: to-update-enablement-status-of-a-batch-of-controls-1683300378416 * ``` * + * @public */ export class BatchUpdateStandardsControlAssociationsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/CreateActionTargetCommand.ts b/clients/client-securityhub/src/commands/CreateActionTargetCommand.ts index c1e976d97545c..8793f59cba0ae 100644 --- a/clients/client-securityhub/src/commands/CreateActionTargetCommand.ts +++ b/clients/client-securityhub/src/commands/CreateActionTargetCommand.ts @@ -76,25 +76,25 @@ export interface CreateActionTargetCommandOutput extends CreateActionTargetRespo * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To create a custom action target * ```javascript * // The following example creates a custom action target in Security Hub. Custom actions on findings and insights automatically trigger actions in Amazon CloudWatch Events. * const input = { - * "Description": "Action to send the finding for remediation tracking", - * "Id": "Remediation", - * "Name": "Send to remediation" + * Description: "Action to send the finding for remediation tracking", + * Id: "Remediation", + * Name: "Send to remediation" * }; * const command = new CreateActionTargetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ActionTargetArn": "arn:aws:securityhub:us-west-1:123456789012:action/custom/Remediation" + * ActionTargetArn: "arn:aws:securityhub:us-west-1:123456789012:action/custom/Remediation" * } * *\/ - * // example id: to-create-a-custom-action-target-1675184966299 * ``` * + * @public */ export class CreateActionTargetCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/CreateAutomationRuleCommand.ts b/clients/client-securityhub/src/commands/CreateAutomationRuleCommand.ts index 572fcb94aa901..e0463d8baacce 100644 --- a/clients/client-securityhub/src/commands/CreateAutomationRuleCommand.ts +++ b/clients/client-securityhub/src/commands/CreateAutomationRuleCommand.ts @@ -259,76 +259,76 @@ export interface CreateAutomationRuleCommandOutput extends CreateAutomationRuleR * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To create an automation rule * ```javascript * // The following example creates an automation rule. * const input = { - * "Actions": [ + * Actions: [ * { - * "FindingFieldsUpdate": { - * "Note": { - * "Text": "This is a critical S3 bucket, please look into this ASAP", - * "UpdatedBy": "test-user" + * FindingFieldsUpdate: { + * Note: { + * Text: "This is a critical S3 bucket, please look into this ASAP", + * UpdatedBy: "test-user" * }, - * "Severity": { - * "Label": "CRITICAL" + * Severity: { + * Label: "CRITICAL" * } * }, - * "Type": "FINDING_FIELDS_UPDATE" + * Type: "FINDING_FIELDS_UPDATE" * } * ], - * "Criteria": { - * "ComplianceStatus": [ + * Criteria: { + * ComplianceStatus: [ * { - * "Comparison": "EQUALS", - * "Value": "FAILED" + * Comparison: "EQUALS", + * Value: "FAILED" * } * ], - * "ProductName": [ + * ProductName: [ * { - * "Comparison": "EQUALS", - * "Value": "Security Hub" + * Comparison: "EQUALS", + * Value: "Security Hub" * } * ], - * "RecordState": [ + * RecordState: [ * { - * "Comparison": "EQUALS", - * "Value": "ACTIVE" + * Comparison: "EQUALS", + * Value: "ACTIVE" * } * ], - * "ResourceId": [ + * ResourceId: [ * { - * "Comparison": "EQUALS", - * "Value": "arn:aws:s3:::examplebucket/developers/design_info.doc" + * Comparison: "EQUALS", + * Value: "arn:aws:s3:::examplebucket/developers/design_info.doc" * } * ], - * "WorkflowStatus": [ + * WorkflowStatus: [ * { - * "Comparison": "EQUALS", - * "Value": "NEW" + * Comparison: "EQUALS", + * Value: "NEW" * } * ] * }, - * "Description": "Elevate finding severity to Critical for important resources", - * "IsTerminal": false, - * "RuleName": "Elevate severity for important resources", - * "RuleOrder": 1, - * "RuleStatus": "ENABLED", - * "Tags": { - * "important-resources-rule": "s3-bucket" + * Description: "Elevate finding severity to Critical for important resources", + * IsTerminal: false, + * RuleName: "Elevate severity for important resources", + * RuleOrder: 1, + * RuleStatus: "ENABLED", + * Tags: { + * important-resources-rule: "s3-bucket" * } * }; * const command = new CreateAutomationRuleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "RuleArn": "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" + * RuleArn: "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * } * *\/ - * // example id: to-create-an-automation-rule-1684768393507 * ``` * + * @public */ export class CreateAutomationRuleCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/CreateConfigurationPolicyCommand.ts b/clients/client-securityhub/src/commands/CreateConfigurationPolicyCommand.ts index 6e746d61dbcb7..c6b71510ff2f2 100644 --- a/clients/client-securityhub/src/commands/CreateConfigurationPolicyCommand.ts +++ b/clients/client-securityhub/src/commands/CreateConfigurationPolicyCommand.ts @@ -171,83 +171,83 @@ export interface CreateConfigurationPolicyCommandOutput extends CreateConfigurat * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To create a configuration policy * ```javascript * // This operation creates a configuration policy in Security Hub. * const input = { - * "ConfigurationPolicy": { - * "SecurityHub": { - * "EnabledStandardIdentifiers": [ + * ConfigurationPolicy: { + * SecurityHub: { + * EnabledStandardIdentifiers: [ * "arn:aws:securityhub:us-east-1::standards/aws-foundational-security-best-practices/v/1.0.0", * "arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0" * ], - * "SecurityControlsConfiguration": { - * "DisabledSecurityControlIdentifiers": [ + * SecurityControlsConfiguration: { + * DisabledSecurityControlIdentifiers: [ * "CloudWatch.1" * ], - * "SecurityControlCustomParameters": [ + * SecurityControlCustomParameters: [ * { - * "Parameters": { - * "daysToExpiration": { - * "Value": { - * "Integer": 14 + * Parameters: { + * daysToExpiration: { + * Value: { + * Integer: 14 * }, - * "ValueType": "CUSTOM" + * ValueType: "CUSTOM" * } * }, - * "SecurityControlId": "ACM.1" + * SecurityControlId: "ACM.1" * } * ] * }, - * "ServiceEnabled": true + * ServiceEnabled: true * } * }, - * "Description": "Configuration policy for testing FSBP and CIS", - * "Name": "TestConfigurationPolicy" + * Description: "Configuration policy for testing FSBP and CIS", + * Name: "TestConfigurationPolicy" * }; * const command = new CreateConfigurationPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ConfigurationPolicy": { - * "SecurityHub": { - * "EnabledStandardIdentifiers": [ + * Arn: "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * ConfigurationPolicy: { + * SecurityHub: { + * EnabledStandardIdentifiers: [ * "arn:aws:securityhub:us-east-1::standards/aws-foundational-security-best-practices/v/1.0.0", * "arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0" * ], - * "SecurityControlsConfiguration": { - * "DisabledSecurityControlIdentifiers": [ + * SecurityControlsConfiguration: { + * DisabledSecurityControlIdentifiers: [ * "CloudWatch.1" * ], - * "SecurityControlCustomParameters": [ + * SecurityControlCustomParameters: [ * { - * "Parameters": { - * "daysToExpiration": { - * "Value": { - * "Integer": 14 + * Parameters: { + * daysToExpiration: { + * Value: { + * Integer: 14 * }, - * "ValueType": "CUSTOM" + * ValueType: "CUSTOM" * } * }, - * "SecurityControlId": "ACM.1" + * SecurityControlId: "ACM.1" * } * ] * }, - * "ServiceEnabled": true + * ServiceEnabled: true * } * }, - * "CreatedAt": "2023-01-11T06:17:17.154Z", - * "Description": "Configuration policy for testing FSBP and CIS", - * "Id": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "Name": "TestConfigurationPolicy", - * "UpdatedAt": "2023-01-11T06:17:17.154Z" + * CreatedAt: "2023-01-11T06:17:17.154Z", + * Description: "Configuration policy for testing FSBP and CIS", + * Id: "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * Name: "TestConfigurationPolicy", + * UpdatedAt: "2023-01-11T06:17:17.154Z" * } * *\/ - * // example id: to-create-a-configuration-policy-1695172470099 * ``` * + * @public */ export class CreateConfigurationPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/CreateFindingAggregatorCommand.ts b/clients/client-securityhub/src/commands/CreateFindingAggregatorCommand.ts index e82ad0be9940d..c91f5970a5e67 100644 --- a/clients/client-securityhub/src/commands/CreateFindingAggregatorCommand.ts +++ b/clients/client-securityhub/src/commands/CreateFindingAggregatorCommand.ts @@ -85,33 +85,33 @@ export interface CreateFindingAggregatorCommandOutput extends CreateFindingAggre * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To enable cross-Region aggregation * ```javascript * // The following example creates a finding aggregator. This is required to enable cross-Region aggregation. * const input = { - * "RegionLinkingMode": "SPECIFIED_REGIONS", - * "Regions": [ + * RegionLinkingMode: "SPECIFIED_REGIONS", + * Regions: [ * "us-west-1", * "us-west-2" * ] * }; * const command = new CreateFindingAggregatorCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FindingAggregationRegion": "us-east-1", - * "FindingAggregatorArn": "arn:aws:securityhub:us-east-1:222222222222:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "RegionLinkingMode": "SPECIFIED_REGIONS", - * "Regions": [ + * FindingAggregationRegion: "us-east-1", + * FindingAggregatorArn: "arn:aws:securityhub:us-east-1:222222222222:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * RegionLinkingMode: "SPECIFIED_REGIONS", + * Regions: [ * "us-west-1", * "us-west-2" * ] * } * *\/ - * // example id: to-enable-cross-region-aggregation-1674766716226 * ``` * + * @public */ export class CreateFindingAggregatorCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/CreateInsightCommand.ts b/clients/client-securityhub/src/commands/CreateInsightCommand.ts index c2289e10514fd..30e674009e9cd 100644 --- a/clients/client-securityhub/src/commands/CreateInsightCommand.ts +++ b/clients/client-securityhub/src/commands/CreateInsightCommand.ts @@ -344,38 +344,38 @@ export interface CreateInsightCommandOutput extends CreateInsightResponse, __Met * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To create a custom insight * ```javascript * // The following example creates a custom insight in Security Hub. An insight is a collection of findings that relate to a security issue. * const input = { - * "Filters": { - * "ResourceType": [ + * Filters: { + * ResourceType: [ * { - * "Comparison": "EQUALS", - * "Value": "AwsIamRole" + * Comparison: "EQUALS", + * Value: "AwsIamRole" * } * ], - * "SeverityLabel": [ + * SeverityLabel: [ * { - * "Comparison": "EQUALS", - * "Value": "CRITICAL" + * Comparison: "EQUALS", + * Value: "CRITICAL" * } * ] * }, - * "GroupByAttribute": "ResourceId", - * "Name": "Critical role findings" + * GroupByAttribute: "ResourceId", + * Name: "Critical role findings" * }; * const command = new CreateInsightCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InsightArn": "arn:aws:securityhub:us-west-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" + * InsightArn: "arn:aws:securityhub:us-west-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * } * *\/ - * // example id: to-create-a-custom-insight-1675354046628 * ``` * + * @public */ export class CreateInsightCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/CreateMembersCommand.ts b/clients/client-securityhub/src/commands/CreateMembersCommand.ts index 088f81b42a30d..dca3ae8972671 100644 --- a/clients/client-securityhub/src/commands/CreateMembersCommand.ts +++ b/clients/client-securityhub/src/commands/CreateMembersCommand.ts @@ -119,30 +119,30 @@ export interface CreateMembersCommandOutput extends CreateMembersResponse, __Met * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To add a member account * ```javascript * // The following example creates a member association between the specified accounts and the administrator account (the account that makes the request). This operation is used to add accounts that aren't part of an organization. * const input = { - * "AccountDetails": [ + * AccountDetails: [ * { - * "AccountId": "123456789012" + * AccountId: "123456789012" * }, * { - * "AccountId": "111122223333" + * AccountId: "111122223333" * } * ] * }; * const command = new CreateMembersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "UnprocessedAccounts": [] + * UnprocessedAccounts: [] * } * *\/ - * // example id: to-add-a-member-account-1675354709996 * ``` * + * @public */ export class CreateMembersCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DeclineInvitationsCommand.ts b/clients/client-securityhub/src/commands/DeclineInvitationsCommand.ts index 7895103c12dcd..ce25bbf67903a 100644 --- a/clients/client-securityhub/src/commands/DeclineInvitationsCommand.ts +++ b/clients/client-securityhub/src/commands/DeclineInvitationsCommand.ts @@ -83,26 +83,26 @@ export interface DeclineInvitationsCommandOutput extends DeclineInvitationsRespo * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To decline invitation to become a member account * ```javascript * // The following example declines an invitation from the Security Hub administrator account to become a member account. The invited account makes the request. * const input = { - * "AccountIds": [ + * AccountIds: [ * "123456789012", * "111122223333" * ] * }; * const command = new DeclineInvitationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "UnprocessedAccounts": [] + * UnprocessedAccounts: [] * } * *\/ - * // example id: to-decline-invitation-to-become-a-member-account-1675448487605 * ``` * + * @public */ export class DeclineInvitationsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DeleteActionTargetCommand.ts b/clients/client-securityhub/src/commands/DeleteActionTargetCommand.ts index 65a168843f075..021cc136190dc 100644 --- a/clients/client-securityhub/src/commands/DeleteActionTargetCommand.ts +++ b/clients/client-securityhub/src/commands/DeleteActionTargetCommand.ts @@ -70,23 +70,23 @@ export interface DeleteActionTargetCommandOutput extends DeleteActionTargetRespo * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To delete a custom action target * ```javascript * // The following example deletes a custom action target that triggers target actions in Amazon CloudWatch Events. Deleting a custom action target doesn't affect findings or insights that were already sent to CloudWatch Events based on the custom action. * const input = { - * "ActionTargetArn": "arn:aws:securityhub:us-west-1:123456789012:action/custom/Remediation" + * ActionTargetArn: "arn:aws:securityhub:us-west-1:123456789012:action/custom/Remediation" * }; * const command = new DeleteActionTargetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ActionTargetArn": "arn:aws:securityhub:us-west-1:123456789012:action/custom/Remediation" + * ActionTargetArn: "arn:aws:securityhub:us-west-1:123456789012:action/custom/Remediation" * } * *\/ - * // example id: to-delete-a-custom-action-target-1675449272793 * ``` * + * @public */ export class DeleteActionTargetCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DeleteConfigurationPolicyCommand.ts b/clients/client-securityhub/src/commands/DeleteConfigurationPolicyCommand.ts index 7e14d42ebee22..e0559d58a86c6 100644 --- a/clients/client-securityhub/src/commands/DeleteConfigurationPolicyCommand.ts +++ b/clients/client-securityhub/src/commands/DeleteConfigurationPolicyCommand.ts @@ -80,18 +80,21 @@ export interface DeleteConfigurationPolicyCommandOutput extends DeleteConfigurat * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To delete a configuration policy * ```javascript * // This operation deletes the specified configuration policy. * const input = { - * "Identifier": "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" + * Identifier: "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * }; * const command = new DeleteConfigurationPolicyCommand(input); - * await client.send(command); - * // example id: to-delete-a-configuration-policy-1695174614062 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteConfigurationPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DeleteFindingAggregatorCommand.ts b/clients/client-securityhub/src/commands/DeleteFindingAggregatorCommand.ts index f6f309f05b72a..6273b6eb9e43c 100644 --- a/clients/client-securityhub/src/commands/DeleteFindingAggregatorCommand.ts +++ b/clients/client-securityhub/src/commands/DeleteFindingAggregatorCommand.ts @@ -80,18 +80,21 @@ export interface DeleteFindingAggregatorCommandOutput extends DeleteFindingAggre * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To delete a finding aggregator * ```javascript * // The following example deletes a finding aggregator in Security Hub. Deleting the finding aggregator stops cross-Region aggregation. This operation produces no output. * const input = { - * "FindingAggregatorArn": "arn:aws:securityhub:us-east-1:123456789012:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" + * FindingAggregatorArn: "arn:aws:securityhub:us-east-1:123456789012:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * }; * const command = new DeleteFindingAggregatorCommand(input); - * await client.send(command); - * // example id: to-delete-a-finding-aggregator-1675701750629 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteFindingAggregatorCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DeleteInsightCommand.ts b/clients/client-securityhub/src/commands/DeleteInsightCommand.ts index aded586aa3113..597bebe559fac 100644 --- a/clients/client-securityhub/src/commands/DeleteInsightCommand.ts +++ b/clients/client-securityhub/src/commands/DeleteInsightCommand.ts @@ -72,23 +72,23 @@ export interface DeleteInsightCommandOutput extends DeleteInsightResponse, __Met * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To delete a custom insight * ```javascript * // The following example deletes a custom insight in Security Hub. * const input = { - * "InsightArn": "arn:aws:securityhub:us-west-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" + * InsightArn: "arn:aws:securityhub:us-west-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * }; * const command = new DeleteInsightCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InsightArn": "arn:aws:securityhub:eu-central-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" + * InsightArn: "arn:aws:securityhub:eu-central-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * } * *\/ - * // example id: to-delete-a-custom-insight-1675702697204 * ``` * + * @public */ export class DeleteInsightCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DeleteInvitationsCommand.ts b/clients/client-securityhub/src/commands/DeleteInvitationsCommand.ts index bee70487d638a..609948ed07a30 100644 --- a/clients/client-securityhub/src/commands/DeleteInvitationsCommand.ts +++ b/clients/client-securityhub/src/commands/DeleteInvitationsCommand.ts @@ -87,25 +87,25 @@ export interface DeleteInvitationsCommandOutput extends DeleteInvitationsRespons * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To delete a custom insight * ```javascript * // The following example deletes an invitation sent by the Security Hub administrator account to a prospective member account. This operation is used only for invitations sent to accounts that aren't part of an organization. Organization accounts don't receive invitations. * const input = { - * "AccountIds": [ + * AccountIds: [ * "123456789012" * ] * }; * const command = new DeleteInvitationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "UnprocessedAccounts": [] + * UnprocessedAccounts: [] * } * *\/ - * // example id: to-delete-a-custom-insight-1675702697204 * ``` * + * @public */ export class DeleteInvitationsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DeleteMembersCommand.ts b/clients/client-securityhub/src/commands/DeleteMembersCommand.ts index 372800f77dd1b..b2b2509372c69 100644 --- a/clients/client-securityhub/src/commands/DeleteMembersCommand.ts +++ b/clients/client-securityhub/src/commands/DeleteMembersCommand.ts @@ -81,26 +81,26 @@ export interface DeleteMembersCommandOutput extends DeleteMembersResponse, __Met * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To delete a member account * ```javascript * // The following example deletes the specified member account from Security Hub. This operation can be used to delete member accounts that are part of an organization or that were invited manually. * const input = { - * "AccountIds": [ + * AccountIds: [ * "123456789111", * "123456789222" * ] * }; * const command = new DeleteMembersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "UnprocessedAccounts": [] + * UnprocessedAccounts: [] * } * *\/ - * // example id: to-delete-a-member-account-1675883040513 * ``` * + * @public */ export class DeleteMembersCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DescribeActionTargetsCommand.ts b/clients/client-securityhub/src/commands/DescribeActionTargetsCommand.ts index f4a0a26408e87..46853a3b569d0 100644 --- a/clients/client-securityhub/src/commands/DescribeActionTargetsCommand.ts +++ b/clients/client-securityhub/src/commands/DescribeActionTargetsCommand.ts @@ -79,31 +79,31 @@ export interface DescribeActionTargetsCommandOutput extends DescribeActionTarget * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To return custom action targets * ```javascript * // The following example returns a list of custom action targets. You use custom actions on findings and insights in Security Hub to trigger target actions in Amazon CloudWatch Events. * const input = { - * "ActionTargetArns": [ + * ActionTargetArns: [ * "arn:aws:securityhub:us-west-1:123456789012:action/custom/Remediation" * ] * }; * const command = new DescribeActionTargetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ActionTargets": [ + * ActionTargets: [ * { - * "ActionTargetArn": "arn:aws:securityhub:us-west-1:123456789012:action/custom/Remediation", - * "Description": "Action to send the finding for remediation tracking", - * "Name": "Send to remediation" + * ActionTargetArn: "arn:aws:securityhub:us-west-1:123456789012:action/custom/Remediation", + * Description: "Action to send the finding for remediation tracking", + * Name: "Send to remediation" * } * ] * } * *\/ - * // example id: to-return-custom-action-targets-1675883682038 * ``` * + * @public */ export class DescribeActionTargetsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DescribeHubCommand.ts b/clients/client-securityhub/src/commands/DescribeHubCommand.ts index 699b1c54c0911..78695bb87b7a6 100644 --- a/clients/client-securityhub/src/commands/DescribeHubCommand.ts +++ b/clients/client-securityhub/src/commands/DescribeHubCommand.ts @@ -76,26 +76,26 @@ export interface DescribeHubCommandOutput extends DescribeHubResponse, __Metadat * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To return details about Hub resource * ```javascript * // The following example returns details about the Hub resource in the calling account. The Hub resource represents the implementation of the AWS Security Hub service in the calling account. * const input = { - * "HubArn": "arn:aws:securityhub:us-west-1:123456789012:hub/default" + * HubArn: "arn:aws:securityhub:us-west-1:123456789012:hub/default" * }; * const command = new DescribeHubCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AutoEnableControls": true, - * "ControlFindingGenerator": "SECURITY_CONTROL", - * "HubArn": "arn:aws:securityhub:us-west-1:123456789012:hub/default", - * "SubscribedAt": "2019-11-19T23:15:10.046Z" + * AutoEnableControls: true, + * ControlFindingGenerator: "SECURITY_CONTROL", + * HubArn: "arn:aws:securityhub:us-west-1:123456789012:hub/default", + * SubscribedAt: "2019-11-19T23:15:10.046Z" * } * *\/ - * // example id: to-return-details-about-hub-resource-1675884542597 * ``` * + * @public */ export class DescribeHubCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DescribeOrganizationConfigurationCommand.ts b/clients/client-securityhub/src/commands/DescribeOrganizationConfigurationCommand.ts index 2088edcda12f1..412c6acff29bc 100644 --- a/clients/client-securityhub/src/commands/DescribeOrganizationConfigurationCommand.ts +++ b/clients/client-securityhub/src/commands/DescribeOrganizationConfigurationCommand.ts @@ -83,27 +83,27 @@ export interface DescribeOrganizationConfigurationCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To get information about organization configuration * ```javascript * // This operation provides information about the way your organization is configured in Security Hub. Only a Security Hub administrator account can invoke this operation. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeOrganizationConfigurationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AutoEnable": false, - * "AutoEnableStandards": "NONE", - * "MemberAccountLimitReached": false, - * "OrganizationConfiguration": { - * "ConfigurationType": "CENTRAL", - * "Status": "ENABLED" + * AutoEnable: false, + * AutoEnableStandards: "NONE", + * MemberAccountLimitReached: false, + * OrganizationConfiguration: { + * ConfigurationType: "CENTRAL", + * Status: "ENABLED" * } * } * *\/ - * // example id: to-get-information-about-organization-configuration-1676059786304 * ``` * + * @public */ export class DescribeOrganizationConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DescribeProductsCommand.ts b/clients/client-securityhub/src/commands/DescribeProductsCommand.ts index 9f018530cfe82..11903d433dd82 100644 --- a/clients/client-securityhub/src/commands/DescribeProductsCommand.ts +++ b/clients/client-securityhub/src/commands/DescribeProductsCommand.ts @@ -92,46 +92,46 @@ export interface DescribeProductsCommandOutput extends DescribeProductsResponse, * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To get information about Security Hub integrations * ```javascript * // The following example returns details about AWS services and third-party products that Security Hub integrates with. * const input = { - * "MaxResults": 1, - * "NextToken": "NULL", - * "ProductArn": "arn:aws:securityhub:us-east-1:517716713836:product/crowdstrike/crowdstrike-falcon" + * MaxResults: 1, + * NextToken: "NULL", + * ProductArn: "arn:aws:securityhub:us-east-1:517716713836:product/crowdstrike/crowdstrike-falcon" * }; * const command = new DescribeProductsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NextToken": "U2FsdGVkX18vvPlOqb7RDrWRWVFBJI46MOIAb+nZmRJmR15NoRi2gm13sdQEn3O/pq/78dGs+bKpgA+7HMPHO0qX33/zoRI+uIG/F9yLNhcOrOWzFUdy36JcXLQji3Rpnn/cD1SVkGA98qI3zPOSDg==", - * "Products": [ + * NextToken: "U2FsdGVkX18vvPlOqb7RDrWRWVFBJI46MOIAb+nZmRJmR15NoRi2gm13sdQEn3O/pq/78dGs+bKpgA+7HMPHO0qX33/zoRI+uIG/F9yLNhcOrOWzFUdy36JcXLQji3Rpnn/cD1SVkGA98qI3zPOSDg==", + * Products: [ * { - * "ActivationUrl": "https://falcon.crowdstrike.com/support/documentation", - * "Categories": [ + * ActivationUrl: "https://falcon.crowdstrike.com/support/documentation", + * Categories: [ * "Endpoint Detection and Response (EDR)", * "AV Scanning and Sandboxing", * "Threat Intelligence Feeds and Reports", * "Endpoint Forensics", * "Network Forensics" * ], - * "CompanyName": "CrowdStrike", - * "Description": "CrowdStrike Falcon's single lightweight sensor unifies next-gen antivirus, endpoint detection and response, and 24/7 managed hunting, via the cloud.", - * "IntegrationTypes": [ + * CompanyName: "CrowdStrike", + * Description: "CrowdStrike Falcon's single lightweight sensor unifies next-gen antivirus, endpoint detection and response, and 24/7 managed hunting, via the cloud.", + * IntegrationTypes: [ * "SEND_FINDINGS_TO_SECURITY_HUB" * ], - * "MarketplaceUrl": "https://aws.amazon.com/marketplace/seller-profile?id=a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ProductArn": "arn:aws:securityhub:us-east-1:517716713836:product/crowdstrike/crowdstrike-falcon", - * "ProductName": "CrowdStrike Falcon", - * "ProductSubscriptionResourcePolicy": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"123456789333\"},\"Action\":[\"securityhub:BatchImportFindings\"],\"Resource\":\"arn:aws:securityhub:us-west-1:123456789012:product-subscription/crowdstrike/crowdstrike-falcon\",\"Condition\":{\"StringEquals\":{\"securityhub:TargetAccount\":\"123456789012\"}}},{\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"123456789012\"},\"Action\":[\"securityhub:BatchImportFindings\"],\"Resource\":\"arn:aws:securityhub:us-west-1:123456789333:product/crowdstrike/crowdstrike-falcon\",\"Condition\":{\"StringEquals\":{\"securityhub:TargetAccount\":\"123456789012\"}}}]}" + * MarketplaceUrl: "https://aws.amazon.com/marketplace/seller-profile?id=a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * ProductArn: "arn:aws:securityhub:us-east-1:517716713836:product/crowdstrike/crowdstrike-falcon", + * ProductName: "CrowdStrike Falcon", + * ProductSubscriptionResourcePolicy: `{"Version":"2012-10-17","Statement":[{"Effect":"Allow","Principal":{"AWS":"123456789333"},"Action":["securityhub:BatchImportFindings"],"Resource":"arn:aws:securityhub:us-west-1:123456789012:product-subscription/crowdstrike/crowdstrike-falcon","Condition":{"StringEquals":{"securityhub:TargetAccount":"123456789012"}}},{"Effect":"Allow","Principal":{"AWS":"123456789012"},"Action":["securityhub:BatchImportFindings"],"Resource":"arn:aws:securityhub:us-west-1:123456789333:product/crowdstrike/crowdstrike-falcon","Condition":{"StringEquals":{"securityhub:TargetAccount":"123456789012"}}}]}` * } * ] * } * *\/ - * // example id: to-get-information-about-security-hub-integrations-1676061228533 * ``` * + * @public */ export class DescribeProductsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DescribeStandardsCommand.ts b/clients/client-securityhub/src/commands/DescribeStandardsCommand.ts index 2b49fd87da488..ea900c201c7d1 100644 --- a/clients/client-securityhub/src/commands/DescribeStandardsCommand.ts +++ b/clients/client-securityhub/src/commands/DescribeStandardsCommand.ts @@ -79,46 +79,46 @@ export interface DescribeStandardsCommandOutput extends DescribeStandardsRespons * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To get available Security Hub standards * ```javascript * // The following example returns a list of available security standards in Security Hub. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeStandardsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Standards": [ + * Standards: [ * { - * "Description": "The AWS Foundational Security Best Practices standard is a set of automated security checks that detect when AWS accounts and deployed resources do not align to security best practices. The standard is defined by AWS security experts. This curated set of controls helps improve your security posture in AWS, and cover AWS's most popular and foundational services.", - * "EnabledByDefault": true, - * "Name": "AWS Foundational Security Best Practices v1.0.0", - * "StandardsArn": "arn:aws:securityhub:us-west-1::standards/aws-foundational-security-best-practices/v/1.0.0" + * Description: "The AWS Foundational Security Best Practices standard is a set of automated security checks that detect when AWS accounts and deployed resources do not align to security best practices. The standard is defined by AWS security experts. This curated set of controls helps improve your security posture in AWS, and cover AWS's most popular and foundational services.", + * EnabledByDefault: true, + * Name: "AWS Foundational Security Best Practices v1.0.0", + * StandardsArn: "arn:aws:securityhub:us-west-1::standards/aws-foundational-security-best-practices/v/1.0.0" * }, * { - * "Description": "The Center for Internet Security (CIS) AWS Foundations Benchmark v1.2.0 is a set of security configuration best practices for AWS. This Security Hub standard automatically checks for your compliance readiness against a subset of CIS requirements.", - * "EnabledByDefault": true, - * "Name": "CIS AWS Foundations Benchmark v1.2.0", - * "StandardsArn": "arn:aws:securityhub:us-west-1::ruleset/cis-aws-foundations-benchmark/v/1.2.0" + * Description: "The Center for Internet Security (CIS) AWS Foundations Benchmark v1.2.0 is a set of security configuration best practices for AWS. This Security Hub standard automatically checks for your compliance readiness against a subset of CIS requirements.", + * EnabledByDefault: true, + * Name: "CIS AWS Foundations Benchmark v1.2.0", + * StandardsArn: "arn:aws:securityhub:us-west-1::ruleset/cis-aws-foundations-benchmark/v/1.2.0" * }, * { - * "Description": "The Center for Internet Security (CIS) AWS Foundations Benchmark v1.4.0 is a set of security configuration best practices for AWS. This Security Hub standard automatically checks for your compliance readiness against a subset of CIS requirements.", - * "EnabledByDefault": false, - * "Name": "CIS AWS Foundations Benchmark v1.4.0", - * "StandardsArn": "arn:aws::securityhub:us-west-1::standards/cis-aws-foundations-benchmark/v/1.4.0" + * Description: "The Center for Internet Security (CIS) AWS Foundations Benchmark v1.4.0 is a set of security configuration best practices for AWS. This Security Hub standard automatically checks for your compliance readiness against a subset of CIS requirements.", + * EnabledByDefault: false, + * Name: "CIS AWS Foundations Benchmark v1.4.0", + * StandardsArn: "arn:aws::securityhub:us-west-1::standards/cis-aws-foundations-benchmark/v/1.4.0" * }, * { - * "Description": "The Payment Card Industry Data Security Standard (PCI DSS) v3.2.1 is an information security standard for entities that store, process, and/or transmit cardholder data. This Security Hub standard automatically checks for your compliance readiness against a subset of PCI DSS requirements.", - * "EnabledByDefault": false, - * "Name": "PCI DSS v3.2.1", - * "StandardsArn": "arn:aws:securityhub:us-west-1::standards/pci-dss/v/3.2.1" + * Description: "The Payment Card Industry Data Security Standard (PCI DSS) v3.2.1 is an information security standard for entities that store, process, and/or transmit cardholder data. This Security Hub standard automatically checks for your compliance readiness against a subset of PCI DSS requirements.", + * EnabledByDefault: false, + * Name: "PCI DSS v3.2.1", + * StandardsArn: "arn:aws:securityhub:us-west-1::standards/pci-dss/v/3.2.1" * } * ] * } * *\/ - * // example id: to-get-available-security-hub-standards-1676307464661 * ``` * + * @public */ export class DescribeStandardsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DescribeStandardsControlsCommand.ts b/clients/client-securityhub/src/commands/DescribeStandardsControlsCommand.ts index 13d3eb995affb..9f0b346391db7 100644 --- a/clients/client-securityhub/src/commands/DescribeStandardsControlsCommand.ts +++ b/clients/client-securityhub/src/commands/DescribeStandardsControlsCommand.ts @@ -89,53 +89,8 @@ export interface DescribeStandardsControlsCommandOutput extends DescribeStandard * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public - * @example To get a list of controls for a security standard - * ```javascript - * // The following example returns a list of security controls and control details that apply to a specified security standard. The list includes controls that are enabled and disabled in the standard. - * const input = { - * "MaxResults": 2, - * "NextToken": "NULL", - * "StandardsSubscriptionArn": "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1" - * }; - * const command = new DescribeStandardsControlsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Controls": [ - * { - * "ControlId": "PCI.AutoScaling.1", - * "ControlStatus": "ENABLED", - * "ControlStatusUpdatedAt": "2020-05-15T18:49:04.473000+00:00", - * "Description": "This AWS control checks whether your Auto Scaling groups that are associated with a load balancer are using Elastic Load Balancing health checks.", - * "RelatedRequirements": [ - * "PCI DSS 2.2" - * ], - * "RemediationUrl": "https://docs.aws.amazon.com/console/securityhub/PCI.AutoScaling.1/remediation", - * "SeverityRating": "LOW", - * "StandardsControlArn": "arn:aws:securityhub:us-west-1:123456789012:control/pci-dss/v/3.2.1/PCI.AutoScaling.1", - * "Title": "Auto scaling groups associated with a load balancer should use health checks" - * }, - * { - * "ControlId": "PCI.CW.1", - * "ControlStatus": "ENABLED", - * "ControlStatusUpdatedAt": "2020-05-15T18:49:04.498000+00:00", - * "Description": "This control checks for the CloudWatch metric filters using the following pattern { $.userIdentity.type = \"Root\" && $.userIdentity.invokedBy NOT EXISTS && $.eventType != \"AwsServiceEvent\" } It checks that the log group name is configured for use with active multi-region CloudTrail, that there is at least one Event Selector for a Trail with IncludeManagementEvents set to true and ReadWriteType set to All, and that there is at least one active subscriber to an SNS topic associated with the alarm.", - * "RelatedRequirements": [ - * "PCI DSS 7.2.1" - * ], - * "RemediationUrl": "https://docs.aws.amazon.com/console/securityhub/PCI.CW.1/remediation", - * "SeverityRating": "MEDIUM", - * "StandardsControlArn": "arn:aws:securityhub:us-west-1:123456789012:control/pci-dss/v/3.2.1/PCI.CW.1", - * "Title": "A log metric filter and alarm should exist for usage of the \"root\" user" - * } - * ], - * "NextToken": "U2FsdGVkX1+eNkPoZHVl11ip5HUYQPWSWZGmftcmJiHL8JoKEsCDuaKayiPDyLK+LiTkShveoOdvfxXCkOBaGhohIXhsIedN+LSjQV/l7kfCfJcq4PziNC1N9xe9aq2pjlLVZnznTfSImrodT5bRNHe4fELCQq/z+5ka+5Lzmc11axcwTd5lKgQyQqmUVoeriHZhyIiBgWKf7oNYdBVG8OEortVWvSkoUTt+B2ThcnC7l43kI0UNxlkZ6sc64AsW" - * } - * *\/ - * // example id: to-get-a-list-of-controls-for-a-security-standard-1676308027759 - * ``` * + * @public */ export class DescribeStandardsControlsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DisableImportFindingsForProductCommand.ts b/clients/client-securityhub/src/commands/DisableImportFindingsForProductCommand.ts index b8243de617bde..c5812f9181b84 100644 --- a/clients/client-securityhub/src/commands/DisableImportFindingsForProductCommand.ts +++ b/clients/client-securityhub/src/commands/DisableImportFindingsForProductCommand.ts @@ -76,18 +76,21 @@ export interface DisableImportFindingsForProductCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To end a Security Hub integration * ```javascript * // The following example ends an integration between Security Hub and the specified product that sends findings to Security Hub. After the integration ends, the product no longer sends findings to Security Hub. * const input = { - * "ProductSubscriptionArn": "arn:aws:securityhub:us-east-1:517716713836:product/crowdstrike/crowdstrike-falcon" + * ProductSubscriptionArn: "arn:aws:securityhub:us-east-1:517716713836:product/crowdstrike/crowdstrike-falcon" * }; * const command = new DisableImportFindingsForProductCommand(input); - * await client.send(command); - * // example id: to-end-a-security-hub-integration-1676480035650 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DisableImportFindingsForProductCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DisableOrganizationAdminAccountCommand.ts b/clients/client-securityhub/src/commands/DisableOrganizationAdminAccountCommand.ts index f086952d2819d..a1dac1bb2d78c 100644 --- a/clients/client-securityhub/src/commands/DisableOrganizationAdminAccountCommand.ts +++ b/clients/client-securityhub/src/commands/DisableOrganizationAdminAccountCommand.ts @@ -76,18 +76,21 @@ export interface DisableOrganizationAdminAccountCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To remove a Security Hub administrator account * ```javascript * // The following example removes the Security Hub administrator account in the Region from which the operation was executed. This operation doesn't remove the delegated administrator account in AWS Organizations. * const input = { - * "AdminAccountId": "123456789012" + * AdminAccountId: "123456789012" * }; * const command = new DisableOrganizationAdminAccountCommand(input); - * await client.send(command); - * // example id: to-remove-a-security-hub-administrator-account-1676480521876 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DisableOrganizationAdminAccountCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DisableSecurityHubCommand.ts b/clients/client-securityhub/src/commands/DisableSecurityHubCommand.ts index d54ae61e8a212..27370dbac21f9 100644 --- a/clients/client-securityhub/src/commands/DisableSecurityHubCommand.ts +++ b/clients/client-securityhub/src/commands/DisableSecurityHubCommand.ts @@ -74,16 +74,19 @@ export interface DisableSecurityHubCommandOutput extends DisableSecurityHubRespo * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To deactivate Security Hub * ```javascript * // The following example deactivates Security Hub for the current account and Region. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DisableSecurityHubCommand(input); - * await client.send(command); - * // example id: to-deactivate-security-hub-1676583894245 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DisableSecurityHubCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DisassociateFromAdministratorAccountCommand.ts b/clients/client-securityhub/src/commands/DisassociateFromAdministratorAccountCommand.ts index 84b4f5b04535b..b37ff6319f0da 100644 --- a/clients/client-securityhub/src/commands/DisassociateFromAdministratorAccountCommand.ts +++ b/clients/client-securityhub/src/commands/DisassociateFromAdministratorAccountCommand.ts @@ -80,16 +80,19 @@ export interface DisassociateFromAdministratorAccountCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To disassociate requesting account from administrator account * ```javascript * // The following example dissociates the requesting account from its associated administrator account. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DisassociateFromAdministratorAccountCommand(input); - * await client.send(command); - * // example id: to-disassociate-requesting-account-from-administrator-account-1676584168509 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DisassociateFromAdministratorAccountCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/DisassociateFromMasterAccountCommand.ts b/clients/client-securityhub/src/commands/DisassociateFromMasterAccountCommand.ts index ec0f73abaf5c4..2be69ef19e6ec 100644 --- a/clients/client-securityhub/src/commands/DisassociateFromMasterAccountCommand.ts +++ b/clients/client-securityhub/src/commands/DisassociateFromMasterAccountCommand.ts @@ -81,6 +81,7 @@ export interface DisassociateFromMasterAccountCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* + * * @public */ export class DisassociateFromMasterAccountCommand extends $Command diff --git a/clients/client-securityhub/src/commands/DisassociateMembersCommand.ts b/clients/client-securityhub/src/commands/DisassociateMembersCommand.ts index c4f2f69a00e46..c763bacbf0423 100644 --- a/clients/client-securityhub/src/commands/DisassociateMembersCommand.ts +++ b/clients/client-securityhub/src/commands/DisassociateMembersCommand.ts @@ -77,21 +77,24 @@ export interface DisassociateMembersCommandOutput extends DisassociateMembersRes * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To disassociate member accounts from administrator account * ```javascript * // The following example dissociates the specified member accounts from the associated administrator account. * const input = { - * "AccountIds": [ + * AccountIds: [ * "123456789012", * "111122223333" * ] * }; * const command = new DisassociateMembersCommand(input); - * await client.send(command); - * // example id: to-disassociate-member-accounts-from-administrator-account-1676918349164 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DisassociateMembersCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/EnableImportFindingsForProductCommand.ts b/clients/client-securityhub/src/commands/EnableImportFindingsForProductCommand.ts index 6e7e8f77fd113..9f9286b43cd9d 100644 --- a/clients/client-securityhub/src/commands/EnableImportFindingsForProductCommand.ts +++ b/clients/client-securityhub/src/commands/EnableImportFindingsForProductCommand.ts @@ -80,23 +80,23 @@ export interface EnableImportFindingsForProductCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To activate an integration * ```javascript * // The following example activates an integration between Security Hub and a third party partner product that sends findings to Security Hub. * const input = { - * "ProductArn": "arn:aws:securityhub:us-east-1:517716713836:product/crowdstrike/crowdstrike-falcon" + * ProductArn: "arn:aws:securityhub:us-east-1:517716713836:product/crowdstrike/crowdstrike-falcon" * }; * const command = new EnableImportFindingsForProductCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ProductSubscriptionArn": "arn:aws:securityhub:us-east-1:517716713836:product-subscription/crowdstrike/crowdstrike-falcon" + * ProductSubscriptionArn: "arn:aws:securityhub:us-east-1:517716713836:product-subscription/crowdstrike/crowdstrike-falcon" * } * *\/ - * // example id: to-activate-an-integration-1676918918114 * ``` * + * @public */ export class EnableImportFindingsForProductCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/EnableOrganizationAdminAccountCommand.ts b/clients/client-securityhub/src/commands/EnableOrganizationAdminAccountCommand.ts index 422b8b4b8b3fc..627d21d42db0b 100644 --- a/clients/client-securityhub/src/commands/EnableOrganizationAdminAccountCommand.ts +++ b/clients/client-securityhub/src/commands/EnableOrganizationAdminAccountCommand.ts @@ -76,18 +76,21 @@ export interface EnableOrganizationAdminAccountCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To designate a Security Hub administrator * ```javascript * // The following example designates the specified account as the Security Hub administrator account. The requesting account must be the organization management account. * const input = { - * "AdminAccountId": "123456789012" + * AdminAccountId: "123456789012" * }; * const command = new EnableOrganizationAdminAccountCommand(input); - * await client.send(command); - * // example id: to-designate-a-security-hub-administrator-1676998319851 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class EnableOrganizationAdminAccountCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/EnableSecurityHubCommand.ts b/clients/client-securityhub/src/commands/EnableSecurityHubCommand.ts index cb6d9e0e4534c..c65fd51561f58 100644 --- a/clients/client-securityhub/src/commands/EnableSecurityHubCommand.ts +++ b/clients/client-securityhub/src/commands/EnableSecurityHubCommand.ts @@ -92,21 +92,24 @@ export interface EnableSecurityHubCommandOutput extends EnableSecurityHubRespons * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To activate Security Hub * ```javascript * // The following example activates the Security Hub service in the requesting AWS account. The service is activated in the current AWS Region or the Region that you specify in the request. Some standards are automatically turned on in your account unless you opt out. To determine which standards are automatically turned on, see the Security Hub documentation. * const input = { - * "EnableDefaultStandards": true, - * "Tags": { - * "Department": "Security" + * EnableDefaultStandards: true, + * Tags: { + * Department: "Security" * } * }; * const command = new EnableSecurityHubCommand(input); - * await client.send(command); - * // example id: to-activate-security-hub-1676998538599 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class EnableSecurityHubCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/GetAdministratorAccountCommand.ts b/clients/client-securityhub/src/commands/GetAdministratorAccountCommand.ts index 51bd193ef89c5..9d5ac4a8a5ca7 100644 --- a/clients/client-securityhub/src/commands/GetAdministratorAccountCommand.ts +++ b/clients/client-securityhub/src/commands/GetAdministratorAccountCommand.ts @@ -77,26 +77,8 @@ export interface GetAdministratorAccountCommandOutput extends GetAdministratorAc * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public - * @example To get details about the Security Hub administrator account - * ```javascript - * // The following example provides details about the Security Hub administrator account for the requesting member account. - * const input = {}; - * const command = new GetAdministratorAccountCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Administrator": { - * "AccountId": "123456789012", - * "InvitationId": "7ab938c5d52d7904ad09f9e7c20cc4eb", - * "InvitedAt": "2020-06-01T20:21:18.042000+00:00", - * "MemberStatus": "ASSOCIATED" - * } - * } - * *\/ - * // example id: to-get-details-about-the-security-hub-administrator-account-1676998997182 - * ``` * + * @public */ export class GetAdministratorAccountCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/GetConfigurationPolicyAssociationCommand.ts b/clients/client-securityhub/src/commands/GetConfigurationPolicyAssociationCommand.ts index eb8b26d7b74a6..592e7d602c67f 100644 --- a/clients/client-securityhub/src/commands/GetConfigurationPolicyAssociationCommand.ts +++ b/clients/client-securityhub/src/commands/GetConfigurationPolicyAssociationCommand.ts @@ -97,31 +97,31 @@ export interface GetConfigurationPolicyAssociationCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To get details about a configuration association * ```javascript * // This operation provides details about configuration associations for a specific target account, organizational unit, or the root. * const input = { - * "Target": { - * "AccountId": "111122223333" + * Target: { + * AccountId: "111122223333" * } * }; * const command = new GetConfigurationPolicyAssociationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AssociationStatus": "FAILED", - * "AssociationStatusMessage": "Configuration Policy a1b2c3d4-5678-90ab-cdef-EXAMPLE11111 couldn’t be applied to account 111122223333 in us-east-1 Region. Retry your request.", - * "AssociationType": "INHERITED", - * "ConfigurationPolicyId": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "TargetId": "111122223333", - * "TargetType": "ACCOUNT", - * "UpdatedAt": "2023-01-11T06:17:17.154Z" + * AssociationStatus: "FAILED", + * AssociationStatusMessage: "Configuration Policy a1b2c3d4-5678-90ab-cdef-EXAMPLE11111 couldn’t be applied to account 111122223333 in us-east-1 Region. Retry your request.", + * AssociationType: "INHERITED", + * ConfigurationPolicyId: "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * TargetId: "111122223333", + * TargetType: "ACCOUNT", + * UpdatedAt: "2023-01-11T06:17:17.154Z" * } * *\/ - * // example id: to-get-details-about-a-configuration-association-1695177816371 * ``` * + * @public */ export class GetConfigurationPolicyAssociationCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/GetConfigurationPolicyCommand.ts b/clients/client-securityhub/src/commands/GetConfigurationPolicyCommand.ts index 05825733a4d3a..5a1aa00e8f4df 100644 --- a/clients/client-securityhub/src/commands/GetConfigurationPolicyCommand.ts +++ b/clients/client-securityhub/src/commands/GetConfigurationPolicyCommand.ts @@ -125,55 +125,55 @@ export interface GetConfigurationPolicyCommandOutput extends GetConfigurationPol * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To get details about a configuration policy * ```javascript * // This operation provides details about the specified configuration policy. * const input = { - * "Identifier": "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" + * Identifier: "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * }; * const command = new GetConfigurationPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ConfigurationPolicy": { - * "SecurityHub": { - * "EnabledStandardIdentifiers": [ + * Arn: "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * ConfigurationPolicy: { + * SecurityHub: { + * EnabledStandardIdentifiers: [ * "arn:aws:securityhub:us-east-1::standards/aws-foundational-security-best-practices/v/1.0.0", * "arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0" * ], - * "SecurityControlsConfiguration": { - * "DisabledSecurityControlIdentifiers": [ + * SecurityControlsConfiguration: { + * DisabledSecurityControlIdentifiers: [ * "CloudWatch.1" * ], - * "SecurityControlCustomParameters": [ + * SecurityControlCustomParameters: [ * { - * "Parameters": { - * "daysToExpiration": { - * "Value": { - * "Integer": 14 + * Parameters: { + * daysToExpiration: { + * Value: { + * Integer: 14 * }, - * "ValueType": "CUSTOM" + * ValueType: "CUSTOM" * } * }, - * "SecurityControlId": "ACM.1" + * SecurityControlId: "ACM.1" * } * ] * }, - * "ServiceEnabled": true + * ServiceEnabled: true * } * }, - * "CreatedAt": "2023-01-11T06:17:17.154Z", - * "Description": "Configuration policy for testing FSBP and CIS", - * "Id": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "Name": "TestConfigurationPolicy", - * "UpdatedAt": "2023-01-11T06:17:17.154Z" + * CreatedAt: "2023-01-11T06:17:17.154Z", + * Description: "Configuration policy for testing FSBP and CIS", + * Id: "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * Name: "TestConfigurationPolicy", + * UpdatedAt: "2023-01-11T06:17:17.154Z" * } * *\/ - * // example id: to-get-details-about-a-configuration-policy-1695173701103 * ``` * + * @public */ export class GetConfigurationPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/GetEnabledStandardsCommand.ts b/clients/client-securityhub/src/commands/GetEnabledStandardsCommand.ts index 357ab961fcf23..1f2889c5ba6b5 100644 --- a/clients/client-securityhub/src/commands/GetEnabledStandardsCommand.ts +++ b/clients/client-securityhub/src/commands/GetEnabledStandardsCommand.ts @@ -87,32 +87,32 @@ export interface GetEnabledStandardsCommandOutput extends GetEnabledStandardsRes * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To return a list of enabled standards * ```javascript * // The following example returns a list of Security Hub standards that are currently enabled in your account. * const input = { - * "StandardsSubscriptionArns": [ + * StandardsSubscriptionArns: [ * "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1" * ] * }; * const command = new GetEnabledStandardsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "StandardsSubscriptions": [ + * StandardsSubscriptions: [ * { - * "StandardsArn": "arn:aws:securityhub:us-west-1::standards/pci-dss/v/3.2.1", - * "StandardsInput": {}, - * "StandardsStatus": "READY", - * "StandardsSubscriptionArn": "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1" + * StandardsArn: "arn:aws:securityhub:us-west-1::standards/pci-dss/v/3.2.1", + * StandardsInput: { /* empty *\/ }, + * StandardsStatus: "READY", + * StandardsSubscriptionArn: "arn:aws:securityhub:us-west-1:123456789012:subscription/pci-dss/v/3.2.1" * } * ] * } * *\/ - * // example id: to-return-a-list-of-enabled-standards-1677090731129 * ``` * + * @public */ export class GetEnabledStandardsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/GetFindingAggregatorCommand.ts b/clients/client-securityhub/src/commands/GetFindingAggregatorCommand.ts index 9f51cce566836..7a8b1a7ff5b4d 100644 --- a/clients/client-securityhub/src/commands/GetFindingAggregatorCommand.ts +++ b/clients/client-securityhub/src/commands/GetFindingAggregatorCommand.ts @@ -84,29 +84,29 @@ export interface GetFindingAggregatorCommandOutput extends GetFindingAggregatorR * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To get cross-Region aggregation details * ```javascript * // The following example returns cross-Region aggregation details for the requesting account. * const input = { - * "FindingAggregatorArn": "arn:aws:securityhub:us-east-1:123456789012:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" + * FindingAggregatorArn: "arn:aws:securityhub:us-east-1:123456789012:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * }; * const command = new GetFindingAggregatorCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FindingAggregationRegion": "us-east-1", - * "FindingAggregatorArn": "arn:aws:securityhub:us-east-1:123456789012:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "RegionLinkingMode": "SPECIFIED_REGIONS", - * "Regions": [ + * FindingAggregationRegion: "us-east-1", + * FindingAggregatorArn: "arn:aws:securityhub:us-east-1:123456789012:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * RegionLinkingMode: "SPECIFIED_REGIONS", + * Regions: [ * "us-west-1", * "us-west-2" * ] * } * *\/ - * // example id: to-get-cross-region-aggregation-details-1677091474868 * ``` * + * @public */ export class GetFindingAggregatorCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/GetFindingHistoryCommand.ts b/clients/client-securityhub/src/commands/GetFindingHistoryCommand.ts index 1445e7e7e516d..2e160e050847f 100644 --- a/clients/client-securityhub/src/commands/GetFindingHistoryCommand.ts +++ b/clients/client-securityhub/src/commands/GetFindingHistoryCommand.ts @@ -101,49 +101,8 @@ export interface GetFindingHistoryCommandOutput extends GetFindingHistoryRespons * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public - * @example To get finding history - * ```javascript - * // The following example retrieves the history of the specified finding during the specified time frame. If the time frame permits, Security Hub returns finding history for the last 90 days. - * const input = { - * "EndTime": "2021-09-31T15:53:35.573Z", - * "FindingIdentifier": { - * "Id": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ProductArn": "arn:aws:securityhub:us-west-2:123456789012:product/123456789012/default" - * }, - * "MaxResults": 2, - * "StartTime": "2021-09-30T15:53:35.573Z" - * }; - * const command = new GetFindingHistoryCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Records": [ - * { - * "FindingCreated": false, - * "FindingIdentifier": { - * "Id": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ProductArn": "arn:aws:securityhub:us-west-2:123456789012:product/123456789012/default" - * }, - * "UpdateSource": { - * "Identity": "arn:aws:iam::444455556666:role/Admin", - * "Type": "BATCH_UPDATE_FINDINGS" - * }, - * "UpdateTime": "2021-09-31T15:52:25.573Z", - * "Updates": [ - * { - * "NewValue": "MEDIUM", - * "OldValue": "HIGH", - * "UpdatedField": "Severity" - * } - * ] - * } - * ] - * } - * *\/ - * // example id: to-get-finding-history-1680270012186 - * ``` * + * @public */ export class GetFindingHistoryCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/GetFindingsCommand.ts b/clients/client-securityhub/src/commands/GetFindingsCommand.ts index 3f00f2089c423..c36537d6c982b 100644 --- a/clients/client-securityhub/src/commands/GetFindingsCommand.ts +++ b/clients/client-securityhub/src/commands/GetFindingsCommand.ts @@ -4609,118 +4609,118 @@ export interface GetFindingsCommandOutput extends GetFindingsResponse, __Metadat * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To get a list of findings * ```javascript * // The following example returns a filtered and sorted list of Security Hub findings. * const input = { - * "Filters": { - * "AwsAccountId": [ + * Filters: { + * AwsAccountId: [ * { - * "Comparison": "PREFIX", - * "Value": "123456789012" + * Comparison: "PREFIX", + * Value: "123456789012" * } * ] * }, - * "MaxResults": 1 + * MaxResults: 1 * }; * const command = new GetFindingsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Findings": [ + * Findings: [ * { - * "AwsAccountId": "123456789012", - * "CompanyName": "AWS", - * "Compliance": { - * "AssociatedStandards": [ + * AwsAccountId: "123456789012", + * CompanyName: "AWS", + * Compliance: { + * AssociatedStandards: [ * { - * "StandardsId": "standards/aws-foundational-security-best-practices/v/1.0.0" + * StandardsId: "standards/aws-foundational-security-best-practices/v/1.0.0" * }, * { - * "StandardsId": "standards/pci-dss/v/3.2.1" + * StandardsId: "standards/pci-dss/v/3.2.1" * }, * { - * "StandardsId": "ruleset/cis-aws-foundations-benchmark/v/1.2.0" + * StandardsId: "ruleset/cis-aws-foundations-benchmark/v/1.2.0" * }, * { - * "StandardsId": "standards/cis-aws-foundations-benchmark/v/1.4.0" + * StandardsId: "standards/cis-aws-foundations-benchmark/v/1.4.0" * }, * { - * "StandardsId": "standards/service-managed-aws-control-tower/v/1.0.0" + * StandardsId: "standards/service-managed-aws-control-tower/v/1.0.0" * } * ], - * "RelatedRequirements": [ + * RelatedRequirements: [ * "PCI DSS v3.2.1/3.4", * "CIS AWS Foundations Benchmark v1.2.0/2.7", * "CIS AWS Foundations Benchmark v1.4.0/3.7" * ], - * "SecurityControlId": "CloudTrail.2", - * "Status": "FAILED" + * SecurityControlId: "CloudTrail.2", + * Status: "FAILED" * }, - * "CreatedAt": "2022-10-06T02:18:23.076Z", - * "Description": "This AWS control checks whether AWS CloudTrail is configured to use the server side encryption (SSE) AWS Key Management Service (AWS KMS) customer master key (CMK) encryption. The check will pass if the KmsKeyId is defined.", - * "FindingProviderFields": { - * "Severity": { - * "Label": "MEDIUM", - * "Original": "MEDIUM" + * CreatedAt: "2022-10-06T02:18:23.076Z", + * Description: "This AWS control checks whether AWS CloudTrail is configured to use the server side encryption (SSE) AWS Key Management Service (AWS KMS) customer master key (CMK) encryption. The check will pass if the KmsKeyId is defined.", + * FindingProviderFields: { + * Severity: { + * Label: "MEDIUM", + * Original: "MEDIUM" * }, - * "Types": [ + * Types: [ * "Software and Configuration Checks/Industry and Regulatory Standards" * ] * }, - * "FirstObservedAt": "2022-10-06T02:18:23.076Z", - * "GeneratorId": "security-control/CloudTrail.2", - * "Id": "arn:aws:securityhub:us-east-2:123456789012:security-control/CloudTrail.2/finding/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "LastObservedAt": "2022-10-28T16:10:06.956Z", - * "ProductArn": "arn:aws:securityhub:us-east-2::product/aws/securityhub", - * "ProductFields": { - * "RelatedAWSResources:0/name": "securityhub-cloud-trail-encryption-enabled-fe95bf3f", - * "RelatedAWSResources:0/type": "AWS::Config::ConfigRule", - * "Resources:0/Id": "arn:aws:cloudtrail:us-east-2:123456789012:trail/AWSMacieTrail-DO-NOT-EDIT", - * "aws/securityhub/CompanyName": "AWS", - * "aws/securityhub/FindingId": "arn:aws:securityhub:us-east-2::product/aws/securityhub/arn:aws:securityhub:us-east-2:123456789012:security-control/CloudTrail.2/finding/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "aws/securityhub/ProductName": "Security Hub" + * FirstObservedAt: "2022-10-06T02:18:23.076Z", + * GeneratorId: "security-control/CloudTrail.2", + * Id: "arn:aws:securityhub:us-east-2:123456789012:security-control/CloudTrail.2/finding/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * LastObservedAt: "2022-10-28T16:10:06.956Z", + * ProductArn: "arn:aws:securityhub:us-east-2::product/aws/securityhub", + * ProductFields: { + * RelatedAWSResources:0/name: "securityhub-cloud-trail-encryption-enabled-fe95bf3f", + * RelatedAWSResources:0/type: "AWS::Config::ConfigRule", + * Resources:0/Id: "arn:aws:cloudtrail:us-east-2:123456789012:trail/AWSMacieTrail-DO-NOT-EDIT", + * aws/securityhub/CompanyName: "AWS", + * aws/securityhub/FindingId: "arn:aws:securityhub:us-east-2::product/aws/securityhub/arn:aws:securityhub:us-east-2:123456789012:security-control/CloudTrail.2/finding/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * aws/securityhub/ProductName: "Security Hub" * }, - * "ProductName": "Security Hub", - * "RecordState": "ACTIVE", - * "Region": "us-east-2", - * "Remediation": { - * "Recommendation": { - * "Text": "For directions on how to correct this issue, consult the AWS Security Hub controls documentation.", - * "Url": "https://docs.aws.amazon.com/console/securityhub/CloudTrail.2/remediation" + * ProductName: "Security Hub", + * RecordState: "ACTIVE", + * Region: "us-east-2", + * Remediation: { + * Recommendation: { + * Text: "For directions on how to correct this issue, consult the AWS Security Hub controls documentation.", + * Url: "https://docs.aws.amazon.com/console/securityhub/CloudTrail.2/remediation" * } * }, - * "Resources": [ + * Resources: [ * { - * "Id": "arn:aws:cloudtrail:us-east-2:123456789012:trail/AWSMacieTrail-DO-NOT-EDIT", - * "Partition": "aws", - * "Region": "us-east-2", - * "Type": "AwsCloudTrailTrail" + * Id: "arn:aws:cloudtrail:us-east-2:123456789012:trail/AWSMacieTrail-DO-NOT-EDIT", + * Partition: "aws", + * Region: "us-east-2", + * Type: "AwsCloudTrailTrail" * } * ], - * "SchemaVersion": "2018-10-08", - * "Severity": { - * "Label": "MEDIUM", - * "Normalized": 40, - * "Original": "MEDIUM" + * SchemaVersion: "2018-10-08", + * Severity: { + * Label: "MEDIUM", + * Normalized: 40, + * Original: "MEDIUM" * }, - * "Title": "CloudTrail should have encryption at-rest enabled", - * "Types": [ + * Title: "CloudTrail should have encryption at-rest enabled", + * Types: [ * "Software and Configuration Checks/Industry and Regulatory Standards" * ], - * "UpdatedAt": "2022-10-28T16:10:00.093Z", - * "Workflow": { - * "Status": "NEW" + * UpdatedAt: "2022-10-28T16:10:00.093Z", + * Workflow: { + * Status: "NEW" * }, - * "WorkflowState": "NEW" + * WorkflowState: "NEW" * } * ] * } * *\/ - * // example id: to-get-a-list-of-findings-1677181069931 * ``` * + * @public */ export class GetFindingsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/GetInsightResultsCommand.ts b/clients/client-securityhub/src/commands/GetInsightResultsCommand.ts index e45de21202cb2..e468c3292728d 100644 --- a/clients/client-securityhub/src/commands/GetInsightResultsCommand.ts +++ b/clients/client-securityhub/src/commands/GetInsightResultsCommand.ts @@ -81,36 +81,36 @@ export interface GetInsightResultsCommandOutput extends GetInsightResultsRespons * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To get the results of a Security Hub insight * ```javascript * // The following example returns the results of the Security Hub insight specified by the insight ARN. * const input = { - * "InsightArn": "arn:aws:securityhub:us-west-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" + * InsightArn: "arn:aws:securityhub:us-west-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * }; * const command = new GetInsightResultsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InsightResults": { - * "GroupByAttribute": "ResourceId", - * "InsightArn": "arn:aws:securityhub:us-west-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ResultValues": [ + * InsightResults: { + * GroupByAttribute: "ResourceId", + * InsightArn: "arn:aws:securityhub:us-west-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * ResultValues: [ * { - * "Count": 10, - * "GroupByAttributeValue": "AWS::::Account:111122223333" + * Count: 10, + * GroupByAttributeValue: "AWS::::Account:111122223333" * }, * { - * "Count": 3, - * "GroupByAttributeValue": "AWS::::Account:444455556666" + * Count: 3, + * GroupByAttributeValue: "AWS::::Account:444455556666" * } * ] * } * } * *\/ - * // example id: to-get-the-results-of-a-security-hub-insight-1677182822019 * ``` * + * @public */ export class GetInsightResultsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/GetInsightsCommand.ts b/clients/client-securityhub/src/commands/GetInsightsCommand.ts index 8e88562f8d782..12de47447b534 100644 --- a/clients/client-securityhub/src/commands/GetInsightsCommand.ts +++ b/clients/client-securityhub/src/commands/GetInsightsCommand.ts @@ -351,45 +351,45 @@ export interface GetInsightsCommandOutput extends GetInsightsResponse, __Metadat * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To get details of a Security Hub insight * ```javascript * // The following example returns details of the Security Hub insight with the specified ARN. * const input = { - * "InsightArns": [ + * InsightArns: [ * "arn:aws:securityhub:us-west-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * ] * }; * const command = new GetInsightsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Insights": [ + * Insights: [ * { - * "Filters": { - * "ResourceType": [ + * Filters: { + * ResourceType: [ * { - * "Comparison": "EQUALS", - * "Value": "AwsIamRole" + * Comparison: "EQUALS", + * Value: "AwsIamRole" * } * ], - * "SeverityLabel": [ + * SeverityLabel: [ * { - * "Comparison": "EQUALS", - * "Value": "CRITICAL" + * Comparison: "EQUALS", + * Value: "CRITICAL" * } * ] * }, - * "GroupByAttribute": "ResourceId", - * "InsightArn": "arn:aws:securityhub:us-west-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "Name": "Critical role findings" + * GroupByAttribute: "ResourceId", + * InsightArn: "arn:aws:securityhub:us-west-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * Name: "Critical role findings" * } * ] * } * *\/ - * // example id: to-get-details-of-a-security-hub-insight-1677774127203 * ``` * + * @public */ export class GetInsightsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/GetInvitationsCountCommand.ts b/clients/client-securityhub/src/commands/GetInvitationsCountCommand.ts index 0141e55d74d3a..47c941fd7ca5a 100644 --- a/clients/client-securityhub/src/commands/GetInvitationsCountCommand.ts +++ b/clients/client-securityhub/src/commands/GetInvitationsCountCommand.ts @@ -73,23 +73,23 @@ export interface GetInvitationsCountCommandOutput extends GetInvitationsCountRes * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To get a count of membership invitations * ```javascript * // The following example returns a count of invitations that the Security Hub administrator sent to the current member account, not including the currently accepted invitation. - * // - * // - * const input = {}; + * + * + * const input = { /* empty *\/ }; * const command = new GetInvitationsCountCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InvitationsCount": 3 + * InvitationsCount: 3 * } * *\/ - * // example id: to-get-a-count-of-membership-invitations-1677774568793 * ``` * + * @public */ export class GetInvitationsCountCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/GetMasterAccountCommand.ts b/clients/client-securityhub/src/commands/GetMasterAccountCommand.ts index 0d3f3db17f39a..58c061f5d0c2a 100644 --- a/clients/client-securityhub/src/commands/GetMasterAccountCommand.ts +++ b/clients/client-securityhub/src/commands/GetMasterAccountCommand.ts @@ -81,6 +81,7 @@ export interface GetMasterAccountCommandOutput extends GetMasterAccountResponse, * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* + * * @public */ export class GetMasterAccountCommand extends $Command diff --git a/clients/client-securityhub/src/commands/GetMembersCommand.ts b/clients/client-securityhub/src/commands/GetMembersCommand.ts index 0e169a12f8beb..9fd1c0638da38 100644 --- a/clients/client-securityhub/src/commands/GetMembersCommand.ts +++ b/clients/client-securityhub/src/commands/GetMembersCommand.ts @@ -94,44 +94,8 @@ export interface GetMembersCommandOutput extends GetMembersResponse, __MetadataB * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public - * @example To get member account details - * ```javascript - * // The following example returns details for the Security Hub member accounts with the specified AWS account IDs. An administrator account may be the delegated Security Hub administrator account for an organization or an administrator account that enabled Security Hub manually. The Security Hub administrator must call this operation. - * const input = { - * "AccountIds": [ - * "444455556666", - * "777788889999" - * ] - * }; - * const command = new GetMembersCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Members": [ - * { - * "AccountId": "444455556666", - * "AdministratorId": "123456789012", - * "InvitedAt": "2020-06-01T20:15:15.289000+00:00", - * "MasterId": "123456789012", - * "MemberStatus": "ASSOCIATED", - * "UpdatedAt": "2020-06-01T20:15:15.289000+00:00" - * }, - * { - * "AccountId": "777788889999", - * "AdministratorId": "123456789012", - * "InvitedAt": "2020-06-01T20:15:15.289000+00:00", - * "MasterId": "123456789012", - * "MemberStatus": "ASSOCIATED", - * "UpdatedAt": "2020-06-01T20:15:15.289000+00:00" - * } - * ], - * "UnprocessedAccounts": [] - * } - * *\/ - * // example id: to-get-member-account-details-1677774956489 - * ``` * + * @public */ export class GetMembersCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/GetSecurityControlDefinitionCommand.ts b/clients/client-securityhub/src/commands/GetSecurityControlDefinitionCommand.ts index e7cf04a1931ae..558f51b19aaa0 100644 --- a/clients/client-securityhub/src/commands/GetSecurityControlDefinitionCommand.ts +++ b/clients/client-securityhub/src/commands/GetSecurityControlDefinitionCommand.ts @@ -145,42 +145,42 @@ export interface GetSecurityControlDefinitionCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To get the definition of a security control. * ```javascript * // The following example retrieves definition details for the specified security control. * const input = { - * "SecurityControlId": "EC2.4" + * SecurityControlId: "EC2.4" * }; * const command = new GetSecurityControlDefinitionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SecurityControlDefinition": { - * "CurrentRegionAvailability": "AVAILABLE", - * "Description": "This control checks whether an Amazon EC2 instance has been stopped for longer than the allowed number of days. The control fails if an EC2 instance is stopped for longer than the maximum allowed time period. Unless you provide a custom parameter value for the maximum allowed time period, Security Hub uses a default value of 30 days.", - * "ParameterDefinitions": { - * "AllowedDays": { - * "ConfigurationOptions": { - * "Integer": { - * "DefaultValue": 30, - * "Max": 365, - * "Min": 1 + * SecurityControlDefinition: { + * CurrentRegionAvailability: "AVAILABLE", + * Description: "This control checks whether an Amazon EC2 instance has been stopped for longer than the allowed number of days. The control fails if an EC2 instance is stopped for longer than the maximum allowed time period. Unless you provide a custom parameter value for the maximum allowed time period, Security Hub uses a default value of 30 days.", + * ParameterDefinitions: { + * AllowedDays: { + * ConfigurationOptions: { + * Integer: { + * DefaultValue: 30, + * Max: 365, + * Min: 1 * } * }, - * "Description": "Number of days the EC2 instance is allowed to be in a stopped state before generating a failed finding" + * Description: "Number of days the EC2 instance is allowed to be in a stopped state before generating a failed finding" * } * }, - * "RemediationUrl": "https://docs.aws.amazon.com/console/securityhub/EC2.4/remediation", - * "SecurityControlId": "EC2.4", - * "SeverityRating": "MEDIUM", - * "Title": "Stopped Amazon EC2 instances should be removed after a specified time period" + * RemediationUrl: "https://docs.aws.amazon.com/console/securityhub/EC2.4/remediation", + * SecurityControlId: "EC2.4", + * SeverityRating: "MEDIUM", + * Title: "Stopped Amazon EC2 instances should be removed after a specified time period" * } * } * *\/ - * // example id: to-get-the-definition-of-a-security-control-1699283789356 * ``` * + * @public */ export class GetSecurityControlDefinitionCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/InviteMembersCommand.ts b/clients/client-securityhub/src/commands/InviteMembersCommand.ts index 1753fb9511b4e..ee963f83b6775 100644 --- a/clients/client-securityhub/src/commands/InviteMembersCommand.ts +++ b/clients/client-securityhub/src/commands/InviteMembersCommand.ts @@ -90,26 +90,26 @@ export interface InviteMembersCommandOutput extends InviteMembersResponse, __Met * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To invite accounts to become members * ```javascript * // The following example invites the specified AWS accounts to become member accounts associated with the calling Security Hub administrator account. You only use this operation to invite accounts that don't belong to an AWS Organizations organization. * const input = { - * "AccountIds": [ + * AccountIds: [ * "111122223333", * "444455556666" * ] * }; * const command = new InviteMembersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "UnprocessedAccounts": [] + * UnprocessedAccounts: [] * } * *\/ - * // example id: to-invite-accounts-to-become-members-1677775500860 * ``` * + * @public */ export class InviteMembersCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/ListAutomationRulesCommand.ts b/clients/client-securityhub/src/commands/ListAutomationRulesCommand.ts index e4f5841c3734b..e7f536fd2be87 100644 --- a/clients/client-securityhub/src/commands/ListAutomationRulesCommand.ts +++ b/clients/client-securityhub/src/commands/ListAutomationRulesCommand.ts @@ -88,46 +88,46 @@ export interface ListAutomationRulesCommandOutput extends ListAutomationRulesRes * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To list automation rules * ```javascript * // The following example lists automation rules and rule metadata in the calling account. * const input = { - * "MaxResults": 2, - * "NextToken": "example-token" + * MaxResults: 2, + * NextToken: "example-token" * }; * const command = new ListAutomationRulesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AutomationRulesMetadata": [ + * AutomationRulesMetadata: [ * { - * "CreatedAt": "2022-08-31T01:52:33.250Z", - * "CreatedBy": "AROAJURBUYQQNL5OL2TIM:TEST-16MJ75L9VBK14", - * "Description": "IAM.8 is a known issue and can be resolved", - * "RuleArn": "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "RuleName": "sample-rule-name-1", - * "RuleOrder": 1, - * "RuleStatus": "ENABLED", - * "UpdatedAt": "2022-08-31T01:52:33.250Z" + * CreatedAt: "2022-08-31T01:52:33.250Z", + * CreatedBy: "AROAJURBUYQQNL5OL2TIM:TEST-16MJ75L9VBK14", + * Description: "IAM.8 is a known issue and can be resolved", + * RuleArn: "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * RuleName: "sample-rule-name-1", + * RuleOrder: 1, + * RuleStatus: "ENABLED", + * UpdatedAt: "2022-08-31T01:52:33.250Z" * }, * { - * "CreatedAt": "2022-08-31T01:52:33.250Z", - * "CreatedBy": "AROAJURBUYQQNL5OL2TIM:TEST-16MJ75L9VBK14", - * "Description": "Lambda.2 is a known issue and can be resolved", - * "RuleArn": "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", - * "RuleName": "sample-rule-name-2", - * "RuleOrder": 2, - * "RuleStatus": "ENABLED", - * "UpdatedAt": "2022-08-31T01:52:33.250Z" + * CreatedAt: "2022-08-31T01:52:33.250Z", + * CreatedBy: "AROAJURBUYQQNL5OL2TIM:TEST-16MJ75L9VBK14", + * Description: "Lambda.2 is a known issue and can be resolved", + * RuleArn: "arn:aws:securityhub:us-east-1:123456789012:automation-rule/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", + * RuleName: "sample-rule-name-2", + * RuleOrder: 2, + * RuleStatus: "ENABLED", + * UpdatedAt: "2022-08-31T01:52:33.250Z" * } * ], - * "NextToken": "example-token" + * NextToken: "example-token" * } * *\/ - * // example id: to-list-automation-rules-1684770582059 * ``` * + * @public */ export class ListAutomationRulesCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/ListConfigurationPoliciesCommand.ts b/clients/client-securityhub/src/commands/ListConfigurationPoliciesCommand.ts index 53bf64231754a..88bfa9a90a012 100644 --- a/clients/client-securityhub/src/commands/ListConfigurationPoliciesCommand.ts +++ b/clients/client-securityhub/src/commands/ListConfigurationPoliciesCommand.ts @@ -86,34 +86,34 @@ export interface ListConfigurationPoliciesCommandOutput extends ListConfiguratio * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To view a list of configuration policies * ```javascript * // This operation provides a list of your configuration policies, including metadata for each policy. * const input = { - * "MaxResults": 1, - * "NextToken": "U1FsdGVkX19nBV2zoh+Gou9NgnulLJHWpn9xnG4hqSOhvw3o2JqjI86QDxdf" + * MaxResults: 1, + * NextToken: "U1FsdGVkX19nBV2zoh+Gou9NgnulLJHWpn9xnG4hqSOhvw3o2JqjI86QDxdf" * }; * const command = new ListConfigurationPoliciesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ConfigurationPolicySummaries": [ + * ConfigurationPolicySummaries: [ * { - * "Arn": "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "Description": "Configuration policy for testing FSBP and CIS", - * "Id": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "Name": "TestConfigurationPolicy", - * "ServiceEnabled": true, - * "UpdatedAt": "2023-01-11T06:17:17.154Z" + * Arn: "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * Description: "Configuration policy for testing FSBP and CIS", + * Id: "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * Name: "TestConfigurationPolicy", + * ServiceEnabled: true, + * UpdatedAt: "2023-01-11T06:17:17.154Z" * } * ], - * "NextToken": "U1FsdGVkX19nBV2zoh+Gou9NgnulLJHWpn9xnG4hqSOfvw3o2JqjI86QDxef" + * NextToken: "U1FsdGVkX19nBV2zoh+Gou9NgnulLJHWpn9xnG4hqSOfvw3o2JqjI86QDxef" * } * *\/ - * // example id: to-view-a-list-of-configuration-policies-1695173268602 * ``` * + * @public */ export class ListConfigurationPoliciesCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/ListConfigurationPolicyAssociationsCommand.ts b/clients/client-securityhub/src/commands/ListConfigurationPolicyAssociationsCommand.ts index 4c8a1590aac69..34fef509ce5f9 100644 --- a/clients/client-securityhub/src/commands/ListConfigurationPolicyAssociationsCommand.ts +++ b/clients/client-securityhub/src/commands/ListConfigurationPolicyAssociationsCommand.ts @@ -100,37 +100,37 @@ export interface ListConfigurationPolicyAssociationsCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To list configuration associations * ```javascript * // This operation lists all of the associations between targets and configuration policies or self-managed behavior. Targets can include accounts, organizational units, or the root. * const input = { - * "Filters": { - * "AssociationType": "APPLIED" + * Filters: { + * AssociationType: "APPLIED" * }, - * "MaxResults": 1, - * "NextToken": "U1FsdGVkX19nBV2zoh+Gou9NgnulLJHWpn9xnG4hqSOhvw3o2JqjI86QDxdf" + * MaxResults: 1, + * NextToken: "U1FsdGVkX19nBV2zoh+Gou9NgnulLJHWpn9xnG4hqSOhvw3o2JqjI86QDxdf" * }; * const command = new ListConfigurationPolicyAssociationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ConfigurationPolicyAssociationSummaries": [ + * ConfigurationPolicyAssociationSummaries: [ * { - * "AssociationStatus": "PENDING", - * "AssociationType": "APPLIED", - * "ConfigurationPolicyId": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "TargetId": "123456789012", - * "TargetType": "ACCOUNT", - * "UpdatedAt": "2023-01-11T06:17:17.154Z" + * AssociationStatus: "PENDING", + * AssociationType: "APPLIED", + * ConfigurationPolicyId: "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * TargetId: "123456789012", + * TargetType: "ACCOUNT", + * UpdatedAt: "2023-01-11T06:17:17.154Z" * } * ], - * "NextToken": "U1FsdGVkX19nBV2zoh+Gou9NgnulLJHWpn9xnG4hqSOfvw3o2JqjI86QDxef" + * NextToken: "U1FsdGVkX19nBV2zoh+Gou9NgnulLJHWpn9xnG4hqSOfvw3o2JqjI86QDxef" * } * *\/ - * // example id: to-list-configuration-associations-1695177309791 * ``` * + * @public */ export class ListConfigurationPolicyAssociationsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/ListEnabledProductsForImportCommand.ts b/clients/client-securityhub/src/commands/ListEnabledProductsForImportCommand.ts index cd59f7475ea0c..5567d98733828 100644 --- a/clients/client-securityhub/src/commands/ListEnabledProductsForImportCommand.ts +++ b/clients/client-securityhub/src/commands/ListEnabledProductsForImportCommand.ts @@ -75,24 +75,24 @@ export interface ListEnabledProductsForImportCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To list ARNs for enabled integrations * ```javascript * // The following example returns a list of subscription Amazon Resource Names (ARNs) for the product integrations that you have currently enabled in Security Hub. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListEnabledProductsForImportCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ProductSubscriptions": [ + * ProductSubscriptions: [ * "arn:aws:securityhub:us-east-1:517716713836:product-subscription/crowdstrike/crowdstrike-falcon", * "arn:aws:securityhub:us-east-1::product/3coresec/3coresec" * ] * } * *\/ - * // example id: to-list-arns-for-enabled-integrations-1678294870020 * ``` * + * @public */ export class ListEnabledProductsForImportCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/ListFindingAggregatorsCommand.ts b/clients/client-securityhub/src/commands/ListFindingAggregatorsCommand.ts index e3c95cc0a78e5..e4fd4bece5860 100644 --- a/clients/client-securityhub/src/commands/ListFindingAggregatorsCommand.ts +++ b/clients/client-securityhub/src/commands/ListFindingAggregatorsCommand.ts @@ -79,25 +79,25 @@ export interface ListFindingAggregatorsCommandOutput extends ListFindingAggregat * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To update the enablement status of a standard control * ```javascript * // The following example disables the specified control in the specified security standard. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListFindingAggregatorsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FindingAggregators": [ + * FindingAggregators: [ * { - * "FindingAggregatorArn": "arn:aws:securityhub:us-east-1:222222222222:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" + * FindingAggregatorArn: "arn:aws:securityhub:us-east-1:222222222222:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111" * } * ] * } * *\/ - * // example id: to-update-the-enablement-status-of-a-standard-control-1678912506444 * ``` * + * @public */ export class ListFindingAggregatorsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/ListInvitationsCommand.ts b/clients/client-securityhub/src/commands/ListInvitationsCommand.ts index 93596f83e50fe..9814ea478dd82 100644 --- a/clients/client-securityhub/src/commands/ListInvitationsCommand.ts +++ b/clients/client-securityhub/src/commands/ListInvitationsCommand.ts @@ -85,28 +85,8 @@ export interface ListInvitationsCommandOutput extends ListInvitationsResponse, _ * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public - * @example To list membership invitations to calling account - * ```javascript - * // The following example returns a list of Security Hub member invitations sent to the calling AWS account. Only accounts that are invited manually use this operation. It's not for use by accounts that are managed through AWS Organizations. - * const input = {}; - * const command = new ListInvitationsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Invitations": [ - * { - * "AccountId": "123456789012", - * "InvitationId": "7ab938c5d52d7904ad09f9e7c20cc4eb", - * "InvitedAt": "2020-06-01T20:21:18.042000+00:00", - * "MemberStatus": "ASSOCIATED" - * } - * ] - * } - * *\/ - * // example id: to-list-membership-invitations-to-calling-account-1678295758285 - * ``` * + * @public */ export class ListInvitationsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/ListMembersCommand.ts b/clients/client-securityhub/src/commands/ListMembersCommand.ts index cef9eb506928d..11fcea6f48eb3 100644 --- a/clients/client-securityhub/src/commands/ListMembersCommand.ts +++ b/clients/client-securityhub/src/commands/ListMembersCommand.ts @@ -85,38 +85,8 @@ export interface ListMembersCommandOutput extends ListMembersResponse, __Metadat * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public - * @example To list member account details - * ```javascript - * // The following example returns details about member accounts for the calling Security Hub administrator account. The response includes member accounts that are managed through AWS Organizations and those that were invited manually. - * const input = {}; - * const command = new ListMembersCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Members": [ - * { - * "AccountId": "111122223333", - * "AdministratorId": "123456789012", - * "InvitedAt": "2020-06-01T20:15:15.289000+00:00", - * "MasterId": "123456789012", - * "MemberStatus": "ASSOCIATED", - * "UpdatedAt": "2020-06-01T20:15:15.289000+00:00" - * }, - * { - * "AccountId": "444455556666", - * "AdministratorId": "123456789012", - * "InvitedAt": "2020-06-01T20:15:15.289000+00:00", - * "MasterId": "123456789012", - * "MemberStatus": "ASSOCIATED", - * "UpdatedAt": "2020-06-01T20:15:15.289000+00:00" - * } - * ] - * } - * *\/ - * // example id: to-list-member-account-details-1678385639113 - * ``` * + * @public */ export class ListMembersCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/ListOrganizationAdminAccountsCommand.ts b/clients/client-securityhub/src/commands/ListOrganizationAdminAccountsCommand.ts index d486b8b275ab5..e07d1ab0c3194 100644 --- a/clients/client-securityhub/src/commands/ListOrganizationAdminAccountsCommand.ts +++ b/clients/client-securityhub/src/commands/ListOrganizationAdminAccountsCommand.ts @@ -82,28 +82,28 @@ export interface ListOrganizationAdminAccountsCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To list administrator acccounts for an organization * ```javascript * // The following example lists the Security Hub administrator accounts for an organization. Only the organization management account can call this operation. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListOrganizationAdminAccountsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AdminAccounts": [ + * AdminAccounts: [ * { - * "AccountId": "777788889999" + * AccountId: "777788889999" * }, * { - * "Status": "ENABLED" + * Status: "ENABLED" * } * ] * } * *\/ - * // example id: to-list-administrator-acccounts-for-an-organization-1678386548110 * ``` * + * @public */ export class ListOrganizationAdminAccountsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/ListSecurityControlDefinitionsCommand.ts b/clients/client-securityhub/src/commands/ListSecurityControlDefinitionsCommand.ts index 25f7857b2780c..bcbd3fd650e09 100644 --- a/clients/client-securityhub/src/commands/ListSecurityControlDefinitionsCommand.ts +++ b/clients/client-securityhub/src/commands/ListSecurityControlDefinitionsCommand.ts @@ -147,57 +147,57 @@ export interface ListSecurityControlDefinitionsCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To list security controls that apply to a standard * ```javascript * // The following example lists security controls that apply to a specified Security Hub standard. * const input = { - * "MaxResults": 3, - * "NextToken": "NULL", - * "StandardsArn": "arn:aws:securityhub:::standards/aws-foundational-security-best-practices/v/1.0.0" + * MaxResults: 3, + * NextToken: "NULL", + * StandardsArn: "arn:aws:securityhub:::standards/aws-foundational-security-best-practices/v/1.0.0" * }; * const command = new ListSecurityControlDefinitionsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NextToken": "U2FsdGVkX1...", - * "SecurityControlDefinitions": [ + * NextToken: "U2FsdGVkX1...", + * SecurityControlDefinitions: [ * { - * "CurrentRegionAvailability": "AVAILABLE", - * "CustomizableProperties": [ + * CurrentRegionAvailability: "AVAILABLE", + * CustomizableProperties: [ * "Parameters" * ], - * "Description": "This AWS control checks whether ACM Certificates in your account are marked for expiration within a specified time period. Certificates provided by ACM are automatically renewed. ACM does not automatically renew certificates that you import.", - * "RemediationUrl": "https://docs.aws.amazon.com/console/securityhub/ACM.1/remediation", - * "SecurityControlId": "ACM.1", - * "SeverityRating": "MEDIUM", - * "Title": "Imported and ACM-issued certificates should be renewed after a specified time period" + * Description: "This AWS control checks whether ACM Certificates in your account are marked for expiration within a specified time period. Certificates provided by ACM are automatically renewed. ACM does not automatically renew certificates that you import.", + * RemediationUrl: "https://docs.aws.amazon.com/console/securityhub/ACM.1/remediation", + * SecurityControlId: "ACM.1", + * SeverityRating: "MEDIUM", + * Title: "Imported and ACM-issued certificates should be renewed after a specified time period" * }, * { - * "CurrentRegionAvailability": "AVAILABLE", - * "CustomizableProperties": [ + * CurrentRegionAvailability: "AVAILABLE", + * CustomizableProperties: [ * "Parameters" * ], - * "Description": "This control checks whether all stages of Amazon API Gateway REST and WebSocket APIs have logging enabled. The control fails if logging is not enabled for all methods of a stage or if loggingLevel is neither ERROR nor INFO.", - * "RemediationUrl": "https://docs.aws.amazon.com/console/securityhub/APIGateway.1/remediation", - * "SecurityControlId": "APIGateway.1", - * "SeverityRating": "MEDIUM", - * "Title": "API Gateway REST and WebSocket API execution logging should be enabled" + * Description: "This control checks whether all stages of Amazon API Gateway REST and WebSocket APIs have logging enabled. The control fails if logging is not enabled for all methods of a stage or if loggingLevel is neither ERROR nor INFO.", + * RemediationUrl: "https://docs.aws.amazon.com/console/securityhub/APIGateway.1/remediation", + * SecurityControlId: "APIGateway.1", + * SeverityRating: "MEDIUM", + * Title: "API Gateway REST and WebSocket API execution logging should be enabled" * }, * { - * "CurrentRegionAvailability": "AVAILABLE", - * "Description": "This control checks whether Amazon API Gateway REST API stages have SSL certificates configured that backend systems can use to authenticate that incoming requests are from the API Gateway.", - * "RemediationUrl": "https://docs.aws.amazon.com/console/securityhub/APIGateway.2/remediation", - * "SecurityControlId": "APIGateway.2", - * "SeverityRating": "MEDIUM", - * "Title": "API Gateway REST API stages should be configured to use SSL certificates for backend authentication" + * CurrentRegionAvailability: "AVAILABLE", + * Description: "This control checks whether Amazon API Gateway REST API stages have SSL certificates configured that backend systems can use to authenticate that incoming requests are from the API Gateway.", + * RemediationUrl: "https://docs.aws.amazon.com/console/securityhub/APIGateway.2/remediation", + * SecurityControlId: "APIGateway.2", + * SeverityRating: "MEDIUM", + * Title: "API Gateway REST API stages should be configured to use SSL certificates for backend authentication" * } * ] * } * *\/ - * // example id: to-list-security-controls-that-apply-to-a-standard-1678386912894 * ``` * + * @public */ export class ListSecurityControlDefinitionsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/ListStandardsControlAssociationsCommand.ts b/clients/client-securityhub/src/commands/ListStandardsControlAssociationsCommand.ts index 1495c9ba0fc16..d02e4d43abd6f 100644 --- a/clients/client-securityhub/src/commands/ListStandardsControlAssociationsCommand.ts +++ b/clients/client-securityhub/src/commands/ListStandardsControlAssociationsCommand.ts @@ -94,51 +94,8 @@ export interface ListStandardsControlAssociationsCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public - * @example To say whether standard - * ```javascript - * // The following example specifies whether a control is currently enabled or disabled in each enabled standard in the calling account. The response also provides other details about the control. - * const input = { - * "SecurityControlId": "S3.1" - * }; - * const command = new ListStandardsControlAssociationsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "StandardsControlAssociationSummaries": [ - * { - * "AssociationStatus": "ENABLED", - * "RelatedRequirements": [ - * "PCI DSS 1.2.1", - * "PCI DSS 1.3.1", - * "PCI DSS 1.3.2", - * "PCI DSS 1.3.4", - * "PCI DSS 1.3.6" - * ], - * "SecurityControlArn": "arn:aws:securityhub:us-west-2:110479873537:security-control/S3.1", - * "SecurityControlId": "S3.1", - * "StandardsArn": "arn:aws:securityhub:us-west-2::standards/pci-dss/v/3.2.1", - * "StandardsControlDescription": "This AWS control checks whether the following public access block settings are configured from account level: ignorePublicAcls: True, blockPublicPolicy: True, blockPublicAcls: True, restrictPublicBuckets: True.", - * "StandardsControlTitle": "S3 Block Public Access setting should be enabled", - * "UpdatedAt": "2022-01-13T23:03:46.648000+00:00" - * }, - * { - * "AssociationStatus": "DISABLED", - * "RelatedRequirements": [], - * "SecurityControlArn": "arn:aws:securityhub:us-west-2:110479873537:security-control/S3.1", - * "SecurityControlId": "S3.1", - * "StandardsArn": "arn:aws:securityhub:us-west-2::standards/aws-foundational-security-best-practices/v/1.0.0", - * "StandardsControlDescription": "This AWS control checks whether the following public access block settings are configured from account level: ignorePublicAcls: True, blockPublicPolicy: True, blockPublicAcls: True, restrictPublicBuckets: True.", - * "StandardsControlTitle": "S3 Block Public Access setting should be enabled", - * "UpdatedAt": "2022-08-12T22:59:04.924000+00:00", - * "UpdatedReason": "Not relevant to environment" - * } - * ] - * } - * *\/ - * // example id: to-say-whether-standard-1678389297986 - * ``` * + * @public */ export class ListStandardsControlAssociationsCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/ListTagsForResourceCommand.ts b/clients/client-securityhub/src/commands/ListTagsForResourceCommand.ts index 730a259d086a3..d803b8b427c6c 100644 --- a/clients/client-securityhub/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-securityhub/src/commands/ListTagsForResourceCommand.ts @@ -67,26 +67,26 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To get a list of tags for a resource * ```javascript * // The following example returns a list of tags associated with the specified resource. * const input = { - * "ResourceArn": "arn:aws:securityhub:us-west-1:123456789012:hub/default" + * ResourceArn: "arn:aws:securityhub:us-west-1:123456789012:hub/default" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Tags": { - * "Area": "USMidwest", - * "Department": "Operations" + * Tags: { + * Area: "USMidwest", + * Department: "Operations" * } * } * *\/ - * // example id: to-get-a-list-of-tags-for-a-resource-1678477883796 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/StartConfigurationPolicyAssociationCommand.ts b/clients/client-securityhub/src/commands/StartConfigurationPolicyAssociationCommand.ts index a6e83e1eea53e..33d462c093488 100644 --- a/clients/client-securityhub/src/commands/StartConfigurationPolicyAssociationCommand.ts +++ b/clients/client-securityhub/src/commands/StartConfigurationPolicyAssociationCommand.ts @@ -98,32 +98,32 @@ export interface StartConfigurationPolicyAssociationCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To associate a configuration with a target * ```javascript * // This operation associates a configuration policy or self-managed behavior with the target account, organizational unit, or the root. * const input = { - * "ConfigurationPolicyIdentifier": "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "Target": { - * "AccountId": "111122223333" + * ConfigurationPolicyIdentifier: "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * Target: { + * AccountId: "111122223333" * } * }; * const command = new StartConfigurationPolicyAssociationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AssociationStatus": "SUCCESS", - * "AssociationStatusMessage": "This field is populated only if the association fails", - * "AssociationType": "APPLIED", - * "ConfigurationPolicyId": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "TargetId": "111122223333", - * "TargetType": "ACCOUNT", - * "UpdatedAt": "2023-01-11T06:17:17.154Z" + * AssociationStatus: "SUCCESS", + * AssociationStatusMessage: "This field is populated only if the association fails", + * AssociationType: "APPLIED", + * ConfigurationPolicyId: "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * TargetId: "111122223333", + * TargetType: "ACCOUNT", + * UpdatedAt: "2023-01-11T06:17:17.154Z" * } * *\/ - * // example id: to-associate-a-configuration-with-a-target-1695176455638 * ``` * + * @public */ export class StartConfigurationPolicyAssociationCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/StartConfigurationPolicyDisassociationCommand.ts b/clients/client-securityhub/src/commands/StartConfigurationPolicyDisassociationCommand.ts index 2e8cfc227acab..0e314827bbf68 100644 --- a/clients/client-securityhub/src/commands/StartConfigurationPolicyDisassociationCommand.ts +++ b/clients/client-securityhub/src/commands/StartConfigurationPolicyDisassociationCommand.ts @@ -93,21 +93,24 @@ export interface StartConfigurationPolicyDisassociationCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To disassociate a configuration from a target * ```javascript * // This operation disassociates a configuration policy or self-managed behavior from the target account, organizational unit, or the root. * const input = { - * "ConfigurationPolicyIdentifier": "SELF_MANAGED_SECURITY_HUB", - * "Target": { - * "RootId": "r-f6g7h8i9j0example" + * ConfigurationPolicyIdentifier: "SELF_MANAGED_SECURITY_HUB", + * Target: { + * RootId: "r-f6g7h8i9j0example" * } * }; * const command = new StartConfigurationPolicyDisassociationCommand(input); - * await client.send(command); - * // example id: to-disassociate-a-configuration-from-a-target-1695177176748 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class StartConfigurationPolicyDisassociationCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/TagResourceCommand.ts b/clients/client-securityhub/src/commands/TagResourceCommand.ts index 0b60e44f02049..caaa6a7f36d3c 100644 --- a/clients/client-securityhub/src/commands/TagResourceCommand.ts +++ b/clients/client-securityhub/src/commands/TagResourceCommand.ts @@ -66,22 +66,25 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To tag a resource * ```javascript * // The following example adds the 'Department' and 'Area' tags to the specified resource. * const input = { - * "ResourceArn": "arn:aws:securityhub:us-west-1:123456789012:hub/default", - * "Tags": { - * "Area": "USMidwest", - * "Department": "Operations" + * ResourceArn: "arn:aws:securityhub:us-west-1:123456789012:hub/default", + * Tags: { + * Area: "USMidwest", + * Department: "Operations" * } * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: to-tag-a-resource-1678478687320 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/UntagResourceCommand.ts b/clients/client-securityhub/src/commands/UntagResourceCommand.ts index dca7a0ae767de..dc56acff77558 100644 --- a/clients/client-securityhub/src/commands/UntagResourceCommand.ts +++ b/clients/client-securityhub/src/commands/UntagResourceCommand.ts @@ -66,21 +66,24 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To remove tags from a resource * ```javascript * // The following example removes the 'Department' tag from the specified resource. * const input = { - * "ResourceArn": "arn:aws:securityhub:us-west-1:123456789012:hub/default", - * "TagKeys": [ + * ResourceArn: "arn:aws:securityhub:us-west-1:123456789012:hub/default", + * TagKeys: [ * "Department" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: to-remove-tags-from-a-resource-1678478903748 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/UpdateActionTargetCommand.ts b/clients/client-securityhub/src/commands/UpdateActionTargetCommand.ts index 048ce1f970711..85313f65d4a79 100644 --- a/clients/client-securityhub/src/commands/UpdateActionTargetCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateActionTargetCommand.ts @@ -68,20 +68,23 @@ export interface UpdateActionTargetCommandOutput extends UpdateActionTargetRespo * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To update the name and description of a custom action target * ```javascript * // The following example updates the name and description of a custom action target in Security Hub. You can create custom actions to automatically respond to Security Hub findings using Amazon EventBridge. * const input = { - * "ActionTargetArn": "arn:aws:securityhub:us-west-1:123456789012:action/custom/Remediation", - * "Description": "Sends specified findings to customer service chat", - * "Name": "Chat custom action" + * ActionTargetArn: "arn:aws:securityhub:us-west-1:123456789012:action/custom/Remediation", + * Description: "Sends specified findings to customer service chat", + * Name: "Chat custom action" * }; * const command = new UpdateActionTargetCommand(input); - * await client.send(command); - * // example id: to-update-the-name-and-description-of-a-custom-action-target-1678814873015 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateActionTargetCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/UpdateConfigurationPolicyCommand.ts b/clients/client-securityhub/src/commands/UpdateConfigurationPolicyCommand.ts index 638f2bcc77272..1c8779f5cd7fd 100644 --- a/clients/client-securityhub/src/commands/UpdateConfigurationPolicyCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateConfigurationPolicyCommand.ts @@ -173,87 +173,87 @@ export interface UpdateConfigurationPolicyCommandOutput extends UpdateConfigurat * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To update a configuration policy * ```javascript * // This operation updates the specified configuration policy. * const input = { - * "ConfigurationPolicy": { - * "SecurityHub": { - * "EnabledStandardIdentifiers": [ + * ConfigurationPolicy: { + * SecurityHub: { + * EnabledStandardIdentifiers: [ * "arn:aws:securityhub:us-east-1::standards/aws-foundational-security-best-practices/v/1.0.0", * "arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0" * ], - * "SecurityControlsConfiguration": { - * "DisabledSecurityControlIdentifiers": [ + * SecurityControlsConfiguration: { + * DisabledSecurityControlIdentifiers: [ * "CloudWatch.1", * "CloudWatch.2" * ], - * "SecurityControlCustomParameters": [ + * SecurityControlCustomParameters: [ * { - * "Parameters": { - * "daysToExpiration": { - * "Value": { - * "Integer": 21 + * Parameters: { + * daysToExpiration: { + * Value: { + * Integer: 21 * }, - * "ValueType": "CUSTOM" + * ValueType: "CUSTOM" * } * }, - * "SecurityControlId": "ACM.1" + * SecurityControlId: "ACM.1" * } * ] * }, - * "ServiceEnabled": true + * ServiceEnabled: true * } * }, - * "Description": "Updated configuration policy for testing FSBP and CIS", - * "Identifier": "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "Name": "TestConfigurationPolicy", - * "UpdatedReason": "Enabling ACM.2" + * Description: "Updated configuration policy for testing FSBP and CIS", + * Identifier: "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * Name: "TestConfigurationPolicy", + * UpdatedReason: "Enabling ACM.2" * }; * const command = new UpdateConfigurationPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Arn": "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "ConfigurationPolicy": { - * "SecurityHub": { - * "EnabledStandardIdentifiers": [ + * Arn: "arn:aws:securityhub:us-east-1:123456789012:configuration-policy/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * ConfigurationPolicy: { + * SecurityHub: { + * EnabledStandardIdentifiers: [ * "arn:aws:securityhub:us-east-1::standards/aws-foundational-security-best-practices/v/1.0.0", * "arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/1.2.0" * ], - * "SecurityControlsConfiguration": { - * "DisabledSecurityControlIdentifiers": [ + * SecurityControlsConfiguration: { + * DisabledSecurityControlIdentifiers: [ * "CloudWatch.1", * "CloudWatch.2" * ], - * "SecurityControlCustomParameters": [ + * SecurityControlCustomParameters: [ * { - * "Parameters": { - * "daysToExpiration": { - * "Value": { - * "Integer": 21 + * Parameters: { + * daysToExpiration: { + * Value: { + * Integer: 21 * }, - * "ValueType": "CUSTOM" + * ValueType: "CUSTOM" * } * }, - * "SecurityControlId": "ACM.1" + * SecurityControlId: "ACM.1" * } * ] * }, - * "ServiceEnabled": true + * ServiceEnabled: true * } * }, - * "CreatedAt": "2023-01-11T06:17:17.154Z", - * "Description": "Updated configuration policy for testing FSBP and CIS", - * "Id": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "Name": "TestConfigurationPolicy", - * "UpdatedAt": "2023-01-12T06:17:17.154Z" + * CreatedAt: "2023-01-11T06:17:17.154Z", + * Description: "Updated configuration policy for testing FSBP and CIS", + * Id: "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * Name: "TestConfigurationPolicy", + * UpdatedAt: "2023-01-12T06:17:17.154Z" * } * *\/ - * // example id: to-update-a-configuration-policy-1695174120555 * ``` * + * @public */ export class UpdateConfigurationPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/UpdateFindingAggregatorCommand.ts b/clients/client-securityhub/src/commands/UpdateFindingAggregatorCommand.ts index b1c8205dccfbd..48f13329d2bfa 100644 --- a/clients/client-securityhub/src/commands/UpdateFindingAggregatorCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateFindingAggregatorCommand.ts @@ -90,34 +90,34 @@ export interface UpdateFindingAggregatorCommandOutput extends UpdateFindingAggre * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To update cross-Region aggregation settings * ```javascript * // The following example updates the cross-Region aggregation configuration. You use this operation to change the list of linked Regions and the treatment of new Regions. However, you cannot use this operation to change the aggregation Region. * const input = { - * "FindingAggregatorArn": "arn:aws:securityhub:us-east-1:123456789012:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "RegionLinkingMode": "SPECIFIED_REGIONS", - * "Regions": [ + * FindingAggregatorArn: "arn:aws:securityhub:us-east-1:123456789012:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * RegionLinkingMode: "SPECIFIED_REGIONS", + * Regions: [ * "us-west-1", * "us-west-2" * ] * }; * const command = new UpdateFindingAggregatorCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "FindingAggregationRegion": "us-east-1", - * "FindingAggregatorArn": "arn:aws:securityhub:us-east-1:123456789012:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "RegionLinkingMode": "SPECIFIED_REGIONS", - * "Regions": [ + * FindingAggregationRegion: "us-east-1", + * FindingAggregatorArn: "arn:aws:securityhub:us-east-1:123456789012:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * RegionLinkingMode: "SPECIFIED_REGIONS", + * Regions: [ * "us-west-1", * "us-west-2" * ] * } * *\/ - * // example id: to-update-cross-region-aggregation-settings-1678815536396 * ``` * + * @public */ export class UpdateFindingAggregatorCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/UpdateFindingsCommand.ts b/clients/client-securityhub/src/commands/UpdateFindingsCommand.ts index 1fc6f285ab6fb..2f93adff6bdfe 100644 --- a/clients/client-securityhub/src/commands/UpdateFindingsCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateFindingsCommand.ts @@ -350,6 +350,7 @@ export interface UpdateFindingsCommandOutput extends UpdateFindingsResponse, __M * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* + * * @public */ export class UpdateFindingsCommand extends $Command diff --git a/clients/client-securityhub/src/commands/UpdateInsightCommand.ts b/clients/client-securityhub/src/commands/UpdateInsightCommand.ts index 304c6750ca717..76813d089e2f7 100644 --- a/clients/client-securityhub/src/commands/UpdateInsightCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateInsightCommand.ts @@ -340,33 +340,36 @@ export interface UpdateInsightCommandOutput extends UpdateInsightResponse, __Met * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To update an insight * ```javascript * // The following example updates the specified Security Hub insight. * const input = { - * "Filters": { - * "ResourceType": [ + * Filters: { + * ResourceType: [ * { - * "Comparison": "EQUALS", - * "Value": "AwsIamRole" + * Comparison: "EQUALS", + * Value: "AwsIamRole" * } * ], - * "SeverityLabel": [ + * SeverityLabel: [ * { - * "Comparison": "EQUALS", - * "Value": "HIGH" + * Comparison: "EQUALS", + * Value: "HIGH" * } * ] * }, - * "InsightArn": "arn:aws:securityhub:us-west-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "Name": "High severity role findings" + * InsightArn: "arn:aws:securityhub:us-west-1:123456789012:insight/123456789012/custom/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * Name: "High severity role findings" * }; * const command = new UpdateInsightCommand(input); - * await client.send(command); - * // example id: to-update-an-insight-1678816280498 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateInsightCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/UpdateOrganizationConfigurationCommand.ts b/clients/client-securityhub/src/commands/UpdateOrganizationConfigurationCommand.ts index d854058620b69..62aebe588d9c6 100644 --- a/clients/client-securityhub/src/commands/UpdateOrganizationConfigurationCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateOrganizationConfigurationCommand.ts @@ -88,22 +88,25 @@ export interface UpdateOrganizationConfigurationCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To update organization configuration * ```javascript * // This operation updates the way your organization is configured in Security Hub. Only a Security Hub administrator account can invoke this operation. * const input = { - * "AutoEnable": false, - * "AutoEnableStandards": "NONE", - * "OrganizationConfiguration": { - * "ConfigurationType": "CENTRAL" + * AutoEnable: false, + * AutoEnableStandards: "NONE", + * OrganizationConfiguration: { + * ConfigurationType: "CENTRAL" * } * }; * const command = new UpdateOrganizationConfigurationCommand(input); - * await client.send(command); - * // example id: to-update-organization-configuration-1678911630846 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateOrganizationConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/UpdateSecurityControlCommand.ts b/clients/client-securityhub/src/commands/UpdateSecurityControlCommand.ts index c325ffd682b45..474760e6edbd7 100644 --- a/clients/client-securityhub/src/commands/UpdateSecurityControlCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateSecurityControlCommand.ts @@ -103,27 +103,30 @@ export interface UpdateSecurityControlCommandOutput extends UpdateSecurityContro * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To update security control properties * ```javascript * // The following example updates the specified security control. Specifically, this example updates control parameters. * const input = { - * "LastUpdateReason": "Comply with internal requirements", - * "Parameters": { - * "maxCredentialUsageAge": { - * "Value": { - * "Integer": 15 + * LastUpdateReason: "Comply with internal requirements", + * Parameters: { + * maxCredentialUsageAge: { + * Value: { + * Integer: 15 * }, - * "ValueType": "CUSTOM" + * ValueType: "CUSTOM" * } * }, - * "SecurityControlId": "ACM.1" + * SecurityControlId: "ACM.1" * }; * const command = new UpdateSecurityControlCommand(input); - * await client.send(command); - * // example id: to-update-security-control-properties-1699282942434 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UpdateSecurityControlCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/UpdateSecurityHubConfigurationCommand.ts b/clients/client-securityhub/src/commands/UpdateSecurityHubConfigurationCommand.ts index 6843e9b6d861f..ba5348ecf55bc 100644 --- a/clients/client-securityhub/src/commands/UpdateSecurityHubConfigurationCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateSecurityHubConfigurationCommand.ts @@ -79,19 +79,22 @@ export interface UpdateSecurityHubConfigurationCommandOutput * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To update Security Hub settings * ```javascript * // The following example updates Security Hub settings to turn on consolidated control findings, and to automatically enable new controls in enabled standards. * const input = { - * "AutoEnableControls": true, - * "ControlFindingGenerator": "SECURITY_CONTROL" + * AutoEnableControls: true, + * ControlFindingGenerator: "SECURITY_CONTROL" * }; * const command = new UpdateSecurityHubConfigurationCommand(input); - * await client.send(command); - * // example id: to-update-security-hub-settings-1678912194496 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateSecurityHubConfigurationCommand extends $Command .classBuilder< diff --git a/clients/client-securityhub/src/commands/UpdateStandardsControlCommand.ts b/clients/client-securityhub/src/commands/UpdateStandardsControlCommand.ts index eac5c53d06132..4c6b7639cfaae 100644 --- a/clients/client-securityhub/src/commands/UpdateStandardsControlCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateStandardsControlCommand.ts @@ -73,20 +73,23 @@ export interface UpdateStandardsControlCommandOutput extends UpdateStandardsCont * @throws {@link SecurityHubServiceException} *

Base exception class for all service exceptions from SecurityHub service.

* - * @public + * * @example To update the enablement status of a standard control * ```javascript * // The following example disables the specified control in the specified security standard. * const input = { - * "ControlStatus": "DISABLED", - * "DisabledReason": "Not applicable to my service", - * "StandardsControlArn": "arn:aws:securityhub:us-west-1:123456789012:control/pci-dss/v/3.2.1/PCI.AutoScaling.1" + * ControlStatus: "DISABLED", + * DisabledReason: "Not applicable to my service", + * StandardsControlArn: "arn:aws:securityhub:us-west-1:123456789012:control/pci-dss/v/3.2.1/PCI.AutoScaling.1" * }; * const command = new UpdateStandardsControlCommand(input); - * await client.send(command); - * // example id: to-update-the-enablement-status-of-a-standard-control-1678912506444 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateStandardsControlCommand extends $Command .classBuilder< diff --git a/clients/client-securitylake/src/commands/CreateAwsLogSourceCommand.ts b/clients/client-securitylake/src/commands/CreateAwsLogSourceCommand.ts index c08a494f6f59e..547dd4d952438 100644 --- a/clients/client-securitylake/src/commands/CreateAwsLogSourceCommand.ts +++ b/clients/client-securitylake/src/commands/CreateAwsLogSourceCommand.ts @@ -99,6 +99,7 @@ export interface CreateAwsLogSourceCommandOutput extends CreateAwsLogSourceRespo * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class CreateAwsLogSourceCommand extends $Command diff --git a/clients/client-securitylake/src/commands/CreateCustomLogSourceCommand.ts b/clients/client-securitylake/src/commands/CreateCustomLogSourceCommand.ts index 91476fa4ec931..ac4daf3af4f0d 100644 --- a/clients/client-securitylake/src/commands/CreateCustomLogSourceCommand.ts +++ b/clients/client-securitylake/src/commands/CreateCustomLogSourceCommand.ts @@ -111,6 +111,7 @@ export interface CreateCustomLogSourceCommandOutput extends CreateCustomLogSourc * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class CreateCustomLogSourceCommand extends $Command diff --git a/clients/client-securitylake/src/commands/CreateDataLakeCommand.ts b/clients/client-securitylake/src/commands/CreateDataLakeCommand.ts index f8d1af177e3cf..65c6edd63534c 100644 --- a/clients/client-securitylake/src/commands/CreateDataLakeCommand.ts +++ b/clients/client-securitylake/src/commands/CreateDataLakeCommand.ts @@ -159,6 +159,7 @@ export interface CreateDataLakeCommandOutput extends CreateDataLakeResponse, __M * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class CreateDataLakeCommand extends $Command diff --git a/clients/client-securitylake/src/commands/CreateDataLakeExceptionSubscriptionCommand.ts b/clients/client-securitylake/src/commands/CreateDataLakeExceptionSubscriptionCommand.ts index 790e0e4cf2071..41a8e58388f86 100644 --- a/clients/client-securitylake/src/commands/CreateDataLakeExceptionSubscriptionCommand.ts +++ b/clients/client-securitylake/src/commands/CreateDataLakeExceptionSubscriptionCommand.ts @@ -89,6 +89,7 @@ export interface CreateDataLakeExceptionSubscriptionCommandOutput * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class CreateDataLakeExceptionSubscriptionCommand extends $Command diff --git a/clients/client-securitylake/src/commands/CreateDataLakeOrganizationConfigurationCommand.ts b/clients/client-securitylake/src/commands/CreateDataLakeOrganizationConfigurationCommand.ts index 33e63078923e0..a8f21453196e1 100644 --- a/clients/client-securitylake/src/commands/CreateDataLakeOrganizationConfigurationCommand.ts +++ b/clients/client-securitylake/src/commands/CreateDataLakeOrganizationConfigurationCommand.ts @@ -100,6 +100,7 @@ export interface CreateDataLakeOrganizationConfigurationCommandOutput * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class CreateDataLakeOrganizationConfigurationCommand extends $Command diff --git a/clients/client-securitylake/src/commands/CreateSubscriberCommand.ts b/clients/client-securitylake/src/commands/CreateSubscriberCommand.ts index 9173ab6aa7fba..a110424dc6c74 100644 --- a/clients/client-securitylake/src/commands/CreateSubscriberCommand.ts +++ b/clients/client-securitylake/src/commands/CreateSubscriberCommand.ts @@ -157,6 +157,7 @@ export interface CreateSubscriberCommandOutput extends CreateSubscriberResponse, * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class CreateSubscriberCommand extends $Command diff --git a/clients/client-securitylake/src/commands/CreateSubscriberNotificationCommand.ts b/clients/client-securitylake/src/commands/CreateSubscriberNotificationCommand.ts index 1070eb918ad41..fa73fb6d6e90f 100644 --- a/clients/client-securitylake/src/commands/CreateSubscriberNotificationCommand.ts +++ b/clients/client-securitylake/src/commands/CreateSubscriberNotificationCommand.ts @@ -97,6 +97,7 @@ export interface CreateSubscriberNotificationCommandOutput * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class CreateSubscriberNotificationCommand extends $Command diff --git a/clients/client-securitylake/src/commands/DeleteAwsLogSourceCommand.ts b/clients/client-securitylake/src/commands/DeleteAwsLogSourceCommand.ts index a543bab742cce..8d04f64635d33 100644 --- a/clients/client-securitylake/src/commands/DeleteAwsLogSourceCommand.ts +++ b/clients/client-securitylake/src/commands/DeleteAwsLogSourceCommand.ts @@ -99,6 +99,7 @@ export interface DeleteAwsLogSourceCommandOutput extends DeleteAwsLogSourceRespo * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class DeleteAwsLogSourceCommand extends $Command diff --git a/clients/client-securitylake/src/commands/DeleteCustomLogSourceCommand.ts b/clients/client-securitylake/src/commands/DeleteCustomLogSourceCommand.ts index bc680ffe66593..a2bbd9ed56bce 100644 --- a/clients/client-securitylake/src/commands/DeleteCustomLogSourceCommand.ts +++ b/clients/client-securitylake/src/commands/DeleteCustomLogSourceCommand.ts @@ -80,6 +80,7 @@ export interface DeleteCustomLogSourceCommandOutput extends DeleteCustomLogSourc * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class DeleteCustomLogSourceCommand extends $Command diff --git a/clients/client-securitylake/src/commands/DeleteDataLakeCommand.ts b/clients/client-securitylake/src/commands/DeleteDataLakeCommand.ts index 37b6f24d3be2e..bf81f8708886d 100644 --- a/clients/client-securitylake/src/commands/DeleteDataLakeCommand.ts +++ b/clients/client-securitylake/src/commands/DeleteDataLakeCommand.ts @@ -87,6 +87,7 @@ export interface DeleteDataLakeCommandOutput extends DeleteDataLakeResponse, __M * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class DeleteDataLakeCommand extends $Command diff --git a/clients/client-securitylake/src/commands/DeleteDataLakeExceptionSubscriptionCommand.ts b/clients/client-securitylake/src/commands/DeleteDataLakeExceptionSubscriptionCommand.ts index 502f300df1b73..bd88c899d7034 100644 --- a/clients/client-securitylake/src/commands/DeleteDataLakeExceptionSubscriptionCommand.ts +++ b/clients/client-securitylake/src/commands/DeleteDataLakeExceptionSubscriptionCommand.ts @@ -85,6 +85,7 @@ export interface DeleteDataLakeExceptionSubscriptionCommandOutput * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class DeleteDataLakeExceptionSubscriptionCommand extends $Command diff --git a/clients/client-securitylake/src/commands/DeleteDataLakeOrganizationConfigurationCommand.ts b/clients/client-securitylake/src/commands/DeleteDataLakeOrganizationConfigurationCommand.ts index 9541c606a0fed..e410445d8818a 100644 --- a/clients/client-securitylake/src/commands/DeleteDataLakeOrganizationConfigurationCommand.ts +++ b/clients/client-securitylake/src/commands/DeleteDataLakeOrganizationConfigurationCommand.ts @@ -99,6 +99,7 @@ export interface DeleteDataLakeOrganizationConfigurationCommandOutput * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class DeleteDataLakeOrganizationConfigurationCommand extends $Command diff --git a/clients/client-securitylake/src/commands/DeleteSubscriberCommand.ts b/clients/client-securitylake/src/commands/DeleteSubscriberCommand.ts index 25336ee8c8d8e..f031ff802b3f2 100644 --- a/clients/client-securitylake/src/commands/DeleteSubscriberCommand.ts +++ b/clients/client-securitylake/src/commands/DeleteSubscriberCommand.ts @@ -81,6 +81,7 @@ export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse, * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class DeleteSubscriberCommand extends $Command diff --git a/clients/client-securitylake/src/commands/DeleteSubscriberNotificationCommand.ts b/clients/client-securitylake/src/commands/DeleteSubscriberNotificationCommand.ts index aeece17e3e6a1..90456eedd8b86 100644 --- a/clients/client-securitylake/src/commands/DeleteSubscriberNotificationCommand.ts +++ b/clients/client-securitylake/src/commands/DeleteSubscriberNotificationCommand.ts @@ -84,6 +84,7 @@ export interface DeleteSubscriberNotificationCommandOutput * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class DeleteSubscriberNotificationCommand extends $Command diff --git a/clients/client-securitylake/src/commands/DeregisterDataLakeDelegatedAdministratorCommand.ts b/clients/client-securitylake/src/commands/DeregisterDataLakeDelegatedAdministratorCommand.ts index b79863ff161c2..d1b7e5189b707 100644 --- a/clients/client-securitylake/src/commands/DeregisterDataLakeDelegatedAdministratorCommand.ts +++ b/clients/client-securitylake/src/commands/DeregisterDataLakeDelegatedAdministratorCommand.ts @@ -87,6 +87,7 @@ export interface DeregisterDataLakeDelegatedAdministratorCommandOutput * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class DeregisterDataLakeDelegatedAdministratorCommand extends $Command diff --git a/clients/client-securitylake/src/commands/GetDataLakeExceptionSubscriptionCommand.ts b/clients/client-securitylake/src/commands/GetDataLakeExceptionSubscriptionCommand.ts index d5c3ea6e3ed0a..5d985ec09297b 100644 --- a/clients/client-securitylake/src/commands/GetDataLakeExceptionSubscriptionCommand.ts +++ b/clients/client-securitylake/src/commands/GetDataLakeExceptionSubscriptionCommand.ts @@ -85,6 +85,7 @@ export interface GetDataLakeExceptionSubscriptionCommandOutput * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class GetDataLakeExceptionSubscriptionCommand extends $Command diff --git a/clients/client-securitylake/src/commands/GetDataLakeOrganizationConfigurationCommand.ts b/clients/client-securitylake/src/commands/GetDataLakeOrganizationConfigurationCommand.ts index 1742cac23baaa..7b41f02a21025 100644 --- a/clients/client-securitylake/src/commands/GetDataLakeOrganizationConfigurationCommand.ts +++ b/clients/client-securitylake/src/commands/GetDataLakeOrganizationConfigurationCommand.ts @@ -98,6 +98,7 @@ export interface GetDataLakeOrganizationConfigurationCommandOutput * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class GetDataLakeOrganizationConfigurationCommand extends $Command diff --git a/clients/client-securitylake/src/commands/GetDataLakeSourcesCommand.ts b/clients/client-securitylake/src/commands/GetDataLakeSourcesCommand.ts index a3ed3908a4396..b640a96c8bd43 100644 --- a/clients/client-securitylake/src/commands/GetDataLakeSourcesCommand.ts +++ b/clients/client-securitylake/src/commands/GetDataLakeSourcesCommand.ts @@ -101,6 +101,7 @@ export interface GetDataLakeSourcesCommandOutput extends GetDataLakeSourcesRespo * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class GetDataLakeSourcesCommand extends $Command diff --git a/clients/client-securitylake/src/commands/GetSubscriberCommand.ts b/clients/client-securitylake/src/commands/GetSubscriberCommand.ts index 49113204e3c0a..b65bc85105eae 100644 --- a/clients/client-securitylake/src/commands/GetSubscriberCommand.ts +++ b/clients/client-securitylake/src/commands/GetSubscriberCommand.ts @@ -122,6 +122,7 @@ export interface GetSubscriberCommandOutput extends GetSubscriberResponse, __Met * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class GetSubscriberCommand extends $Command diff --git a/clients/client-securitylake/src/commands/ListDataLakeExceptionsCommand.ts b/clients/client-securitylake/src/commands/ListDataLakeExceptionsCommand.ts index 8932acbe4d1a7..0adb73bf40d98 100644 --- a/clients/client-securitylake/src/commands/ListDataLakeExceptionsCommand.ts +++ b/clients/client-securitylake/src/commands/ListDataLakeExceptionsCommand.ts @@ -93,6 +93,7 @@ export interface ListDataLakeExceptionsCommandOutput extends ListDataLakeExcepti * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class ListDataLakeExceptionsCommand extends $Command diff --git a/clients/client-securitylake/src/commands/ListDataLakesCommand.ts b/clients/client-securitylake/src/commands/ListDataLakesCommand.ts index f100d9e31d478..d0f88c1728f5d 100644 --- a/clients/client-securitylake/src/commands/ListDataLakesCommand.ts +++ b/clients/client-securitylake/src/commands/ListDataLakesCommand.ts @@ -118,6 +118,7 @@ export interface ListDataLakesCommandOutput extends ListDataLakesResponse, __Met * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class ListDataLakesCommand extends $Command diff --git a/clients/client-securitylake/src/commands/ListLogSourcesCommand.ts b/clients/client-securitylake/src/commands/ListLogSourcesCommand.ts index dd56eb1dfdf53..68e8158896ccf 100644 --- a/clients/client-securitylake/src/commands/ListLogSourcesCommand.ts +++ b/clients/client-securitylake/src/commands/ListLogSourcesCommand.ts @@ -135,6 +135,7 @@ export interface ListLogSourcesCommandOutput extends ListLogSourcesResponse, __M * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class ListLogSourcesCommand extends $Command diff --git a/clients/client-securitylake/src/commands/ListSubscribersCommand.ts b/clients/client-securitylake/src/commands/ListSubscribersCommand.ts index 47f95f2cc8639..6dc7026a40ea6 100644 --- a/clients/client-securitylake/src/commands/ListSubscribersCommand.ts +++ b/clients/client-securitylake/src/commands/ListSubscribersCommand.ts @@ -126,6 +126,7 @@ export interface ListSubscribersCommandOutput extends ListSubscribersResponse, _ * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class ListSubscribersCommand extends $Command diff --git a/clients/client-securitylake/src/commands/ListTagsForResourceCommand.ts b/clients/client-securitylake/src/commands/ListTagsForResourceCommand.ts index 4b120175cf5d4..d5c68403e0924 100644 --- a/clients/client-securitylake/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-securitylake/src/commands/ListTagsForResourceCommand.ts @@ -86,6 +86,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-securitylake/src/commands/RegisterDataLakeDelegatedAdministratorCommand.ts b/clients/client-securitylake/src/commands/RegisterDataLakeDelegatedAdministratorCommand.ts index 34527178d7f41..d4635df0c2473 100644 --- a/clients/client-securitylake/src/commands/RegisterDataLakeDelegatedAdministratorCommand.ts +++ b/clients/client-securitylake/src/commands/RegisterDataLakeDelegatedAdministratorCommand.ts @@ -89,6 +89,7 @@ export interface RegisterDataLakeDelegatedAdministratorCommandOutput * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class RegisterDataLakeDelegatedAdministratorCommand extends $Command diff --git a/clients/client-securitylake/src/commands/TagResourceCommand.ts b/clients/client-securitylake/src/commands/TagResourceCommand.ts index 2c2611c186d64..1688d36530ed4 100644 --- a/clients/client-securitylake/src/commands/TagResourceCommand.ts +++ b/clients/client-securitylake/src/commands/TagResourceCommand.ts @@ -91,6 +91,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-securitylake/src/commands/UntagResourceCommand.ts b/clients/client-securitylake/src/commands/UntagResourceCommand.ts index 468e6527e015c..0e9fed0ba61d0 100644 --- a/clients/client-securitylake/src/commands/UntagResourceCommand.ts +++ b/clients/client-securitylake/src/commands/UntagResourceCommand.ts @@ -82,6 +82,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-securitylake/src/commands/UpdateDataLakeCommand.ts b/clients/client-securitylake/src/commands/UpdateDataLakeCommand.ts index c0ddb1a729573..bd621de8686f6 100644 --- a/clients/client-securitylake/src/commands/UpdateDataLakeCommand.ts +++ b/clients/client-securitylake/src/commands/UpdateDataLakeCommand.ts @@ -150,6 +150,7 @@ export interface UpdateDataLakeCommandOutput extends UpdateDataLakeResponse, __M * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class UpdateDataLakeCommand extends $Command diff --git a/clients/client-securitylake/src/commands/UpdateDataLakeExceptionSubscriptionCommand.ts b/clients/client-securitylake/src/commands/UpdateDataLakeExceptionSubscriptionCommand.ts index 1c033a38b897c..ccd6509e289a7 100644 --- a/clients/client-securitylake/src/commands/UpdateDataLakeExceptionSubscriptionCommand.ts +++ b/clients/client-securitylake/src/commands/UpdateDataLakeExceptionSubscriptionCommand.ts @@ -89,6 +89,7 @@ export interface UpdateDataLakeExceptionSubscriptionCommandOutput * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class UpdateDataLakeExceptionSubscriptionCommand extends $Command diff --git a/clients/client-securitylake/src/commands/UpdateSubscriberCommand.ts b/clients/client-securitylake/src/commands/UpdateSubscriberCommand.ts index b847fc822ac3b..44bf2ae5e8bbb 100644 --- a/clients/client-securitylake/src/commands/UpdateSubscriberCommand.ts +++ b/clients/client-securitylake/src/commands/UpdateSubscriberCommand.ts @@ -149,6 +149,7 @@ export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse, * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class UpdateSubscriberCommand extends $Command diff --git a/clients/client-securitylake/src/commands/UpdateSubscriberNotificationCommand.ts b/clients/client-securitylake/src/commands/UpdateSubscriberNotificationCommand.ts index 1183ffa7376ae..e4e1091b51ade 100644 --- a/clients/client-securitylake/src/commands/UpdateSubscriberNotificationCommand.ts +++ b/clients/client-securitylake/src/commands/UpdateSubscriberNotificationCommand.ts @@ -96,6 +96,7 @@ export interface UpdateSubscriberNotificationCommandOutput * @throws {@link SecurityLakeServiceException} *

Base exception class for all service exceptions from SecurityLake service.

* + * * @public */ export class UpdateSubscriberNotificationCommand extends $Command diff --git a/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationCommand.ts index 8bd03a381a88a..360a560d98345 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationCommand.ts @@ -136,6 +136,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons * @throws {@link ServerlessApplicationRepositoryServiceException} *

Base exception class for all service exceptions from ServerlessApplicationRepository service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationVersionCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationVersionCommand.ts index 26fb744e01e8a..b3d58c8bc955d 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationVersionCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationVersionCommand.ts @@ -109,6 +109,7 @@ export interface CreateApplicationVersionCommandOutput extends CreateApplication * @throws {@link ServerlessApplicationRepositoryServiceException} *

Base exception class for all service exceptions from ServerlessApplicationRepository service.

* + * * @public */ export class CreateApplicationVersionCommand extends $Command diff --git a/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationChangeSetCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationChangeSetCommand.ts index bba4ccdd9ae6a..19a19fa4d3d91 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationChangeSetCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationChangeSetCommand.ts @@ -115,6 +115,7 @@ export interface CreateCloudFormationChangeSetCommandOutput * @throws {@link ServerlessApplicationRepositoryServiceException} *

Base exception class for all service exceptions from ServerlessApplicationRepository service.

* + * * @public */ export class CreateCloudFormationChangeSetCommand extends $Command diff --git a/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationTemplateCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationTemplateCommand.ts index 48b0028ff45b9..911ff5fa3f096 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationTemplateCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationTemplateCommand.ts @@ -86,6 +86,7 @@ export interface CreateCloudFormationTemplateCommandOutput * @throws {@link ServerlessApplicationRepositoryServiceException} *

Base exception class for all service exceptions from ServerlessApplicationRepository service.

* + * * @public */ export class CreateCloudFormationTemplateCommand extends $Command diff --git a/clients/client-serverlessapplicationrepository/src/commands/DeleteApplicationCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/DeleteApplicationCommand.ts index f4ff0ad20ae34..ab24df1cb6178 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/DeleteApplicationCommand.ts @@ -75,6 +75,7 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {} * @throws {@link ServerlessApplicationRepositoryServiceException} *

Base exception class for all service exceptions from ServerlessApplicationRepository service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-serverlessapplicationrepository/src/commands/GetApplicationCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/GetApplicationCommand.ts index 8f300a7e2d021..fc61c3db2ed4d 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/GetApplicationCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/GetApplicationCommand.ts @@ -121,6 +121,7 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M * @throws {@link ServerlessApplicationRepositoryServiceException} *

Base exception class for all service exceptions from ServerlessApplicationRepository service.

* + * * @public */ export class GetApplicationCommand extends $Command diff --git a/clients/client-serverlessapplicationrepository/src/commands/GetApplicationPolicyCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/GetApplicationPolicyCommand.ts index 7e17955023be5..4087b7734c9fd 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/GetApplicationPolicyCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/GetApplicationPolicyCommand.ts @@ -87,6 +87,7 @@ export interface GetApplicationPolicyCommandOutput extends GetApplicationPolicyR * @throws {@link ServerlessApplicationRepositoryServiceException} *

Base exception class for all service exceptions from ServerlessApplicationRepository service.

* + * * @public */ export class GetApplicationPolicyCommand extends $Command diff --git a/clients/client-serverlessapplicationrepository/src/commands/GetCloudFormationTemplateCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/GetCloudFormationTemplateCommand.ts index 673ea48d3ad72..1307b57c1d060 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/GetCloudFormationTemplateCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/GetCloudFormationTemplateCommand.ts @@ -81,6 +81,7 @@ export interface GetCloudFormationTemplateCommandOutput extends GetCloudFormatio * @throws {@link ServerlessApplicationRepositoryServiceException} *

Base exception class for all service exceptions from ServerlessApplicationRepository service.

* + * * @public */ export class GetCloudFormationTemplateCommand extends $Command diff --git a/clients/client-serverlessapplicationrepository/src/commands/ListApplicationDependenciesCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/ListApplicationDependenciesCommand.ts index 1a9b504bb1593..5cce44acbc1bf 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/ListApplicationDependenciesCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/ListApplicationDependenciesCommand.ts @@ -88,6 +88,7 @@ export interface ListApplicationDependenciesCommandOutput * @throws {@link ServerlessApplicationRepositoryServiceException} *

Base exception class for all service exceptions from ServerlessApplicationRepository service.

* + * * @public */ export class ListApplicationDependenciesCommand extends $Command diff --git a/clients/client-serverlessapplicationrepository/src/commands/ListApplicationVersionsCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/ListApplicationVersionsCommand.ts index 2e545b7eee645..c15595d0ec836 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/ListApplicationVersionsCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/ListApplicationVersionsCommand.ts @@ -84,6 +84,7 @@ export interface ListApplicationVersionsCommandOutput extends ListApplicationVer * @throws {@link ServerlessApplicationRepositoryServiceException} *

Base exception class for all service exceptions from ServerlessApplicationRepository service.

* + * * @public */ export class ListApplicationVersionsCommand extends $Command diff --git a/clients/client-serverlessapplicationrepository/src/commands/ListApplicationsCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/ListApplicationsCommand.ts index 7e7ed680a73cc..5b010913e4214 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/ListApplicationsCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/ListApplicationsCommand.ts @@ -86,6 +86,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, * @throws {@link ServerlessApplicationRepositoryServiceException} *

Base exception class for all service exceptions from ServerlessApplicationRepository service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-serverlessapplicationrepository/src/commands/PutApplicationPolicyCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/PutApplicationPolicyCommand.ts index 9096980f9a861..b42f5d419f984 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/PutApplicationPolicyCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/PutApplicationPolicyCommand.ts @@ -104,6 +104,7 @@ export interface PutApplicationPolicyCommandOutput extends PutApplicationPolicyR * @throws {@link ServerlessApplicationRepositoryServiceException} *

Base exception class for all service exceptions from ServerlessApplicationRepository service.

* + * * @public */ export class PutApplicationPolicyCommand extends $Command diff --git a/clients/client-serverlessapplicationrepository/src/commands/UnshareApplicationCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/UnshareApplicationCommand.ts index 6a032cec632cf..de19eef77a6a8 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/UnshareApplicationCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/UnshareApplicationCommand.ts @@ -73,6 +73,7 @@ export interface UnshareApplicationCommandOutput extends __MetadataBearer {} * @throws {@link ServerlessApplicationRepositoryServiceException} *

Base exception class for all service exceptions from ServerlessApplicationRepository service.

* + * * @public */ export class UnshareApplicationCommand extends $Command diff --git a/clients/client-serverlessapplicationrepository/src/commands/UpdateApplicationCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/UpdateApplicationCommand.ts index 8bdafed7e7159..6841077381c32 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/UpdateApplicationCommand.ts @@ -131,6 +131,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons * @throws {@link ServerlessApplicationRepositoryServiceException} *

Base exception class for all service exceptions from ServerlessApplicationRepository service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/AssociateAttributeGroupCommand.ts b/clients/client-service-catalog-appregistry/src/commands/AssociateAttributeGroupCommand.ts index 29c3605ef5ce5..6df48c36af929 100644 --- a/clients/client-service-catalog-appregistry/src/commands/AssociateAttributeGroupCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/AssociateAttributeGroupCommand.ts @@ -82,6 +82,7 @@ export interface AssociateAttributeGroupCommandOutput extends AssociateAttribute * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class AssociateAttributeGroupCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/AssociateResourceCommand.ts b/clients/client-service-catalog-appregistry/src/commands/AssociateResourceCommand.ts index 5c3d34b02a10e..3d2da6cea29f7 100644 --- a/clients/client-service-catalog-appregistry/src/commands/AssociateResourceCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/AssociateResourceCommand.ts @@ -143,6 +143,7 @@ export interface AssociateResourceCommandOutput extends AssociateResourceRespons * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class AssociateResourceCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/CreateApplicationCommand.ts b/clients/client-service-catalog-appregistry/src/commands/CreateApplicationCommand.ts index b0209497af348..571c7881cc6bf 100644 --- a/clients/client-service-catalog-appregistry/src/commands/CreateApplicationCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/CreateApplicationCommand.ts @@ -100,6 +100,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/CreateAttributeGroupCommand.ts b/clients/client-service-catalog-appregistry/src/commands/CreateAttributeGroupCommand.ts index 9032f68b2a063..a644494194970 100644 --- a/clients/client-service-catalog-appregistry/src/commands/CreateAttributeGroupCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/CreateAttributeGroupCommand.ts @@ -94,6 +94,7 @@ export interface CreateAttributeGroupCommandOutput extends CreateAttributeGroupR * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class CreateAttributeGroupCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/DeleteApplicationCommand.ts b/clients/client-service-catalog-appregistry/src/commands/DeleteApplicationCommand.ts index d6ff9ac317b44..8896f7faa88ce 100644 --- a/clients/client-service-catalog-appregistry/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/DeleteApplicationCommand.ts @@ -75,6 +75,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/DeleteAttributeGroupCommand.ts b/clients/client-service-catalog-appregistry/src/commands/DeleteAttributeGroupCommand.ts index 21fb0f83b2edb..60b8459452fcb 100644 --- a/clients/client-service-catalog-appregistry/src/commands/DeleteAttributeGroupCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/DeleteAttributeGroupCommand.ts @@ -76,6 +76,7 @@ export interface DeleteAttributeGroupCommandOutput extends DeleteAttributeGroupR * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class DeleteAttributeGroupCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/DisassociateAttributeGroupCommand.ts b/clients/client-service-catalog-appregistry/src/commands/DisassociateAttributeGroupCommand.ts index 138dd26444122..3ad236591696a 100644 --- a/clients/client-service-catalog-appregistry/src/commands/DisassociateAttributeGroupCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/DisassociateAttributeGroupCommand.ts @@ -70,6 +70,7 @@ export interface DisassociateAttributeGroupCommandOutput extends DisassociateAtt * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class DisassociateAttributeGroupCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/DisassociateResourceCommand.ts b/clients/client-service-catalog-appregistry/src/commands/DisassociateResourceCommand.ts index 7a76c0621c1d5..bdeecd92840f0 100644 --- a/clients/client-service-catalog-appregistry/src/commands/DisassociateResourceCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/DisassociateResourceCommand.ts @@ -126,6 +126,7 @@ export interface DisassociateResourceCommandOutput extends DisassociateResourceR * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class DisassociateResourceCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/GetApplicationCommand.ts b/clients/client-service-catalog-appregistry/src/commands/GetApplicationCommand.ts index 812159de9dc64..ddcd22f38fd76 100644 --- a/clients/client-service-catalog-appregistry/src/commands/GetApplicationCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/GetApplicationCommand.ts @@ -114,6 +114,7 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class GetApplicationCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/GetAssociatedResourceCommand.ts b/clients/client-service-catalog-appregistry/src/commands/GetAssociatedResourceCommand.ts index 3f00dc862a5a2..3087a618546c1 100644 --- a/clients/client-service-catalog-appregistry/src/commands/GetAssociatedResourceCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/GetAssociatedResourceCommand.ts @@ -102,6 +102,7 @@ export interface GetAssociatedResourceCommandOutput extends GetAssociatedResourc * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class GetAssociatedResourceCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/GetAttributeGroupCommand.ts b/clients/client-service-catalog-appregistry/src/commands/GetAttributeGroupCommand.ts index 1a34bdedd8d4d..e9f0f3da4c2cc 100644 --- a/clients/client-service-catalog-appregistry/src/commands/GetAttributeGroupCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/GetAttributeGroupCommand.ts @@ -87,6 +87,7 @@ export interface GetAttributeGroupCommandOutput extends GetAttributeGroupRespons * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class GetAttributeGroupCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/GetConfigurationCommand.ts b/clients/client-service-catalog-appregistry/src/commands/GetConfigurationCommand.ts index 6c42763dfadff..9df6f2f1f6eaa 100644 --- a/clients/client-service-catalog-appregistry/src/commands/GetConfigurationCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/GetConfigurationCommand.ts @@ -67,6 +67,7 @@ export interface GetConfigurationCommandOutput extends GetConfigurationResponse, * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class GetConfigurationCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/ListApplicationsCommand.ts b/clients/client-service-catalog-appregistry/src/commands/ListApplicationsCommand.ts index adf15f8d16f97..54a88ca2d08d9 100644 --- a/clients/client-service-catalog-appregistry/src/commands/ListApplicationsCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/ListApplicationsCommand.ts @@ -76,6 +76,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/ListAssociatedAttributeGroupsCommand.ts b/clients/client-service-catalog-appregistry/src/commands/ListAssociatedAttributeGroupsCommand.ts index da2ca604310bb..20e33f96e6e65 100644 --- a/clients/client-service-catalog-appregistry/src/commands/ListAssociatedAttributeGroupsCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/ListAssociatedAttributeGroupsCommand.ts @@ -78,6 +78,7 @@ export interface ListAssociatedAttributeGroupsCommandOutput * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class ListAssociatedAttributeGroupsCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/ListAssociatedResourcesCommand.ts b/clients/client-service-catalog-appregistry/src/commands/ListAssociatedResourcesCommand.ts index da8951c10c42c..f0cf09ac20e2d 100644 --- a/clients/client-service-catalog-appregistry/src/commands/ListAssociatedResourcesCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/ListAssociatedResourcesCommand.ts @@ -103,6 +103,7 @@ export interface ListAssociatedResourcesCommandOutput extends ListAssociatedReso * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class ListAssociatedResourcesCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsCommand.ts b/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsCommand.ts index 7768fd416572b..ea774deaa7d5f 100644 --- a/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsCommand.ts @@ -77,6 +77,7 @@ export interface ListAttributeGroupsCommandOutput extends ListAttributeGroupsRes * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class ListAttributeGroupsCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsForApplicationCommand.ts b/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsForApplicationCommand.ts index 42117ec6e6c13..c56a10426f517 100644 --- a/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsForApplicationCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsForApplicationCommand.ts @@ -86,6 +86,7 @@ export interface ListAttributeGroupsForApplicationCommandOutput * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class ListAttributeGroupsForApplicationCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/ListTagsForResourceCommand.ts b/clients/client-service-catalog-appregistry/src/commands/ListTagsForResourceCommand.ts index 2b65804a00ba9..5a1c2a8891b77 100644 --- a/clients/client-service-catalog-appregistry/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/ListTagsForResourceCommand.ts @@ -70,6 +70,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/PutConfigurationCommand.ts b/clients/client-service-catalog-appregistry/src/commands/PutConfigurationCommand.ts index d3cd9ed0206a9..d1feea5e11537 100644 --- a/clients/client-service-catalog-appregistry/src/commands/PutConfigurationCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/PutConfigurationCommand.ts @@ -74,6 +74,7 @@ export interface PutConfigurationCommandOutput extends __MetadataBearer {} * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class PutConfigurationCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/SyncResourceCommand.ts b/clients/client-service-catalog-appregistry/src/commands/SyncResourceCommand.ts index fd44a1ef43eda..804cebff263e1 100644 --- a/clients/client-service-catalog-appregistry/src/commands/SyncResourceCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/SyncResourceCommand.ts @@ -83,6 +83,7 @@ export interface SyncResourceCommandOutput extends SyncResourceResponse, __Metad * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class SyncResourceCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/TagResourceCommand.ts b/clients/client-service-catalog-appregistry/src/commands/TagResourceCommand.ts index 720144fd3d129..bbae9cad4e94f 100644 --- a/clients/client-service-catalog-appregistry/src/commands/TagResourceCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/UntagResourceCommand.ts b/clients/client-service-catalog-appregistry/src/commands/UntagResourceCommand.ts index 6f1d855d40c65..7bf0b6c429c8e 100644 --- a/clients/client-service-catalog-appregistry/src/commands/UntagResourceCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/UntagResourceCommand.ts @@ -70,6 +70,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/UpdateApplicationCommand.ts b/clients/client-service-catalog-appregistry/src/commands/UpdateApplicationCommand.ts index 4a53416428cae..c58d08e77c614 100644 --- a/clients/client-service-catalog-appregistry/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/UpdateApplicationCommand.ts @@ -94,6 +94,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-service-catalog-appregistry/src/commands/UpdateAttributeGroupCommand.ts b/clients/client-service-catalog-appregistry/src/commands/UpdateAttributeGroupCommand.ts index 46c176a0e95f7..8f8c49b4fc9e3 100644 --- a/clients/client-service-catalog-appregistry/src/commands/UpdateAttributeGroupCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/UpdateAttributeGroupCommand.ts @@ -85,6 +85,7 @@ export interface UpdateAttributeGroupCommandOutput extends UpdateAttributeGroupR * @throws {@link ServiceCatalogAppRegistryServiceException} *

Base exception class for all service exceptions from ServiceCatalogAppRegistry service.

* + * * @public */ export class UpdateAttributeGroupCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/AcceptPortfolioShareCommand.ts b/clients/client-service-catalog/src/commands/AcceptPortfolioShareCommand.ts index b8f0edbc8608c..01707fb1483c6 100644 --- a/clients/client-service-catalog/src/commands/AcceptPortfolioShareCommand.ts +++ b/clients/client-service-catalog/src/commands/AcceptPortfolioShareCommand.ts @@ -65,6 +65,7 @@ export interface AcceptPortfolioShareCommandOutput extends AcceptPortfolioShareO * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class AcceptPortfolioShareCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/AssociateBudgetWithResourceCommand.ts b/clients/client-service-catalog/src/commands/AssociateBudgetWithResourceCommand.ts index bc4ca99f191e1..bd8691bc5d536 100644 --- a/clients/client-service-catalog/src/commands/AssociateBudgetWithResourceCommand.ts +++ b/clients/client-service-catalog/src/commands/AssociateBudgetWithResourceCommand.ts @@ -67,6 +67,7 @@ export interface AssociateBudgetWithResourceCommandOutput extends AssociateBudge * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class AssociateBudgetWithResourceCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/AssociatePrincipalWithPortfolioCommand.ts b/clients/client-service-catalog/src/commands/AssociatePrincipalWithPortfolioCommand.ts index f997dc9379e91..e618ae8f92f64 100644 --- a/clients/client-service-catalog/src/commands/AssociatePrincipalWithPortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/AssociatePrincipalWithPortfolioCommand.ts @@ -85,6 +85,7 @@ export interface AssociatePrincipalWithPortfolioCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class AssociatePrincipalWithPortfolioCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/AssociateProductWithPortfolioCommand.ts b/clients/client-service-catalog/src/commands/AssociateProductWithPortfolioCommand.ts index 6d2bdf605038d..504212e3b9980 100644 --- a/clients/client-service-catalog/src/commands/AssociateProductWithPortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/AssociateProductWithPortfolioCommand.ts @@ -72,6 +72,7 @@ export interface AssociateProductWithPortfolioCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class AssociateProductWithPortfolioCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/AssociateServiceActionWithProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/AssociateServiceActionWithProvisioningArtifactCommand.ts index 28744ca75ec20..1ceb5ed902dda 100644 --- a/clients/client-service-catalog/src/commands/AssociateServiceActionWithProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/AssociateServiceActionWithProvisioningArtifactCommand.ts @@ -79,6 +79,7 @@ export interface AssociateServiceActionWithProvisioningArtifactCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class AssociateServiceActionWithProvisioningArtifactCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/AssociateTagOptionWithResourceCommand.ts b/clients/client-service-catalog/src/commands/AssociateTagOptionWithResourceCommand.ts index 8fa6856bb01ea..cd97117fa53ed 100644 --- a/clients/client-service-catalog/src/commands/AssociateTagOptionWithResourceCommand.ts +++ b/clients/client-service-catalog/src/commands/AssociateTagOptionWithResourceCommand.ts @@ -81,6 +81,7 @@ export interface AssociateTagOptionWithResourceCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class AssociateTagOptionWithResourceCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/BatchAssociateServiceActionWithProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/BatchAssociateServiceActionWithProvisioningArtifactCommand.ts index 50578514ff945..62f52d4bfc605 100644 --- a/clients/client-service-catalog/src/commands/BatchAssociateServiceActionWithProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/BatchAssociateServiceActionWithProvisioningArtifactCommand.ts @@ -82,6 +82,7 @@ export interface BatchAssociateServiceActionWithProvisioningArtifactCommandOutpu * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class BatchAssociateServiceActionWithProvisioningArtifactCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/BatchDisassociateServiceActionFromProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/BatchDisassociateServiceActionFromProvisioningArtifactCommand.ts index 45e890be7b68f..28fcb49635b49 100644 --- a/clients/client-service-catalog/src/commands/BatchDisassociateServiceActionFromProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/BatchDisassociateServiceActionFromProvisioningArtifactCommand.ts @@ -82,6 +82,7 @@ export interface BatchDisassociateServiceActionFromProvisioningArtifactCommandOu * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class BatchDisassociateServiceActionFromProvisioningArtifactCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/CopyProductCommand.ts b/clients/client-service-catalog/src/commands/CopyProductCommand.ts index 39708ebf5d202..914ff1b2da05b 100644 --- a/clients/client-service-catalog/src/commands/CopyProductCommand.ts +++ b/clients/client-service-catalog/src/commands/CopyProductCommand.ts @@ -79,6 +79,7 @@ export interface CopyProductCommandOutput extends CopyProductOutput, __MetadataB * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class CopyProductCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/CreateConstraintCommand.ts b/clients/client-service-catalog/src/commands/CreateConstraintCommand.ts index 2689c99dd18ee..e7a121194b28f 100644 --- a/clients/client-service-catalog/src/commands/CreateConstraintCommand.ts +++ b/clients/client-service-catalog/src/commands/CreateConstraintCommand.ts @@ -84,6 +84,7 @@ export interface CreateConstraintCommandOutput extends CreateConstraintOutput, _ * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class CreateConstraintCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/CreatePortfolioCommand.ts b/clients/client-service-catalog/src/commands/CreatePortfolioCommand.ts index 9260c41d48028..ad5ad2c0269a7 100644 --- a/clients/client-service-catalog/src/commands/CreatePortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/CreatePortfolioCommand.ts @@ -91,6 +91,7 @@ export interface CreatePortfolioCommandOutput extends CreatePortfolioOutput, __M * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class CreatePortfolioCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/CreatePortfolioShareCommand.ts b/clients/client-service-catalog/src/commands/CreatePortfolioShareCommand.ts index 8e5a643f63df2..8034e7ce563a3 100644 --- a/clients/client-service-catalog/src/commands/CreatePortfolioShareCommand.ts +++ b/clients/client-service-catalog/src/commands/CreatePortfolioShareCommand.ts @@ -98,6 +98,7 @@ export interface CreatePortfolioShareCommandOutput extends CreatePortfolioShareO * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class CreatePortfolioShareCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/CreateProductCommand.ts b/clients/client-service-catalog/src/commands/CreateProductCommand.ts index 760a1d5b3339a..a6f7f118c9cdd 100644 --- a/clients/client-service-catalog/src/commands/CreateProductCommand.ts +++ b/clients/client-service-catalog/src/commands/CreateProductCommand.ts @@ -158,6 +158,7 @@ export interface CreateProductCommandOutput extends CreateProductOutput, __Metad * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class CreateProductCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/CreateProvisionedProductPlanCommand.ts b/clients/client-service-catalog/src/commands/CreateProvisionedProductPlanCommand.ts index cd4979c81d589..4fc853bc5ec49 100644 --- a/clients/client-service-catalog/src/commands/CreateProvisionedProductPlanCommand.ts +++ b/clients/client-service-catalog/src/commands/CreateProvisionedProductPlanCommand.ts @@ -104,6 +104,7 @@ export interface CreateProvisionedProductPlanCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class CreateProvisionedProductPlanCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/CreateProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/CreateProvisioningArtifactCommand.ts index 0c1e8d3444341..8f3e656416ef3 100644 --- a/clients/client-service-catalog/src/commands/CreateProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/CreateProvisioningArtifactCommand.ts @@ -93,6 +93,7 @@ export interface CreateProvisioningArtifactCommandOutput extends CreateProvision * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class CreateProvisioningArtifactCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/CreateServiceActionCommand.ts b/clients/client-service-catalog/src/commands/CreateServiceActionCommand.ts index 7260797c125b2..d25d3ca9f2371 100644 --- a/clients/client-service-catalog/src/commands/CreateServiceActionCommand.ts +++ b/clients/client-service-catalog/src/commands/CreateServiceActionCommand.ts @@ -79,6 +79,7 @@ export interface CreateServiceActionCommandOutput extends CreateServiceActionOut * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class CreateServiceActionCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/CreateTagOptionCommand.ts b/clients/client-service-catalog/src/commands/CreateTagOptionCommand.ts index 40843331406e1..787e2d552aadb 100644 --- a/clients/client-service-catalog/src/commands/CreateTagOptionCommand.ts +++ b/clients/client-service-catalog/src/commands/CreateTagOptionCommand.ts @@ -74,6 +74,7 @@ export interface CreateTagOptionCommandOutput extends CreateTagOptionOutput, __M * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class CreateTagOptionCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DeleteConstraintCommand.ts b/clients/client-service-catalog/src/commands/DeleteConstraintCommand.ts index 268f087bb74e8..c08eca1434a6b 100644 --- a/clients/client-service-catalog/src/commands/DeleteConstraintCommand.ts +++ b/clients/client-service-catalog/src/commands/DeleteConstraintCommand.ts @@ -61,6 +61,7 @@ export interface DeleteConstraintCommandOutput extends DeleteConstraintOutput, _ * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DeleteConstraintCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DeletePortfolioCommand.ts b/clients/client-service-catalog/src/commands/DeletePortfolioCommand.ts index 6ac8a8ed4fc7b..41752c34a1fc0 100644 --- a/clients/client-service-catalog/src/commands/DeletePortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/DeletePortfolioCommand.ts @@ -71,6 +71,7 @@ export interface DeletePortfolioCommandOutput extends DeletePortfolioOutput, __M * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DeletePortfolioCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DeletePortfolioShareCommand.ts b/clients/client-service-catalog/src/commands/DeletePortfolioShareCommand.ts index 2df57e2a29c73..d22e4a334f478 100644 --- a/clients/client-service-catalog/src/commands/DeletePortfolioShareCommand.ts +++ b/clients/client-service-catalog/src/commands/DeletePortfolioShareCommand.ts @@ -77,6 +77,7 @@ export interface DeletePortfolioShareCommandOutput extends DeletePortfolioShareO * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DeletePortfolioShareCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DeleteProductCommand.ts b/clients/client-service-catalog/src/commands/DeleteProductCommand.ts index 0d67f3e61b388..b21119bf3405a 100644 --- a/clients/client-service-catalog/src/commands/DeleteProductCommand.ts +++ b/clients/client-service-catalog/src/commands/DeleteProductCommand.ts @@ -70,6 +70,7 @@ export interface DeleteProductCommandOutput extends DeleteProductOutput, __Metad * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DeleteProductCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DeleteProvisionedProductPlanCommand.ts b/clients/client-service-catalog/src/commands/DeleteProvisionedProductPlanCommand.ts index 44c737a73bd15..b1304eaa12af2 100644 --- a/clients/client-service-catalog/src/commands/DeleteProvisionedProductPlanCommand.ts +++ b/clients/client-service-catalog/src/commands/DeleteProvisionedProductPlanCommand.ts @@ -66,6 +66,7 @@ export interface DeleteProvisionedProductPlanCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DeleteProvisionedProductPlanCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DeleteProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/DeleteProvisioningArtifactCommand.ts index 3bc9271da1d7a..d1d4099746145 100644 --- a/clients/client-service-catalog/src/commands/DeleteProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/DeleteProvisioningArtifactCommand.ts @@ -67,6 +67,7 @@ export interface DeleteProvisioningArtifactCommandOutput extends DeleteProvision * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DeleteProvisioningArtifactCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DeleteServiceActionCommand.ts b/clients/client-service-catalog/src/commands/DeleteServiceActionCommand.ts index a975a0b0845b8..6fe917774ba73 100644 --- a/clients/client-service-catalog/src/commands/DeleteServiceActionCommand.ts +++ b/clients/client-service-catalog/src/commands/DeleteServiceActionCommand.ts @@ -61,6 +61,7 @@ export interface DeleteServiceActionCommandOutput extends DeleteServiceActionOut * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DeleteServiceActionCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DeleteTagOptionCommand.ts b/clients/client-service-catalog/src/commands/DeleteTagOptionCommand.ts index 3e4b4b56d7ded..dca1785036560 100644 --- a/clients/client-service-catalog/src/commands/DeleteTagOptionCommand.ts +++ b/clients/client-service-catalog/src/commands/DeleteTagOptionCommand.ts @@ -65,6 +65,7 @@ export interface DeleteTagOptionCommandOutput extends DeleteTagOptionOutput, __M * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DeleteTagOptionCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribeConstraintCommand.ts b/clients/client-service-catalog/src/commands/DescribeConstraintCommand.ts index 35c675501be64..ca563f6c170d8 100644 --- a/clients/client-service-catalog/src/commands/DescribeConstraintCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeConstraintCommand.ts @@ -68,6 +68,7 @@ export interface DescribeConstraintCommandOutput extends DescribeConstraintOutpu * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribeConstraintCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribeCopyProductStatusCommand.ts b/clients/client-service-catalog/src/commands/DescribeCopyProductStatusCommand.ts index 800bc8b4ea84a..f97c91358bc0f 100644 --- a/clients/client-service-catalog/src/commands/DescribeCopyProductStatusCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeCopyProductStatusCommand.ts @@ -61,6 +61,7 @@ export interface DescribeCopyProductStatusCommandOutput extends DescribeCopyProd * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribeCopyProductStatusCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribePortfolioCommand.ts b/clients/client-service-catalog/src/commands/DescribePortfolioCommand.ts index 788db9ac50491..a606d2911de12 100644 --- a/clients/client-service-catalog/src/commands/DescribePortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribePortfolioCommand.ts @@ -87,6 +87,7 @@ export interface DescribePortfolioCommandOutput extends DescribePortfolioOutput, * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribePortfolioCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribePortfolioShareStatusCommand.ts b/clients/client-service-catalog/src/commands/DescribePortfolioShareStatusCommand.ts index 16b6008f46d6f..d3b63a70e10b7 100644 --- a/clients/client-service-catalog/src/commands/DescribePortfolioShareStatusCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribePortfolioShareStatusCommand.ts @@ -87,6 +87,7 @@ export interface DescribePortfolioShareStatusCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribePortfolioShareStatusCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribePortfolioSharesCommand.ts b/clients/client-service-catalog/src/commands/DescribePortfolioSharesCommand.ts index 5fedfe87fd098..5414591ab23a0 100644 --- a/clients/client-service-catalog/src/commands/DescribePortfolioSharesCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribePortfolioSharesCommand.ts @@ -77,6 +77,7 @@ export interface DescribePortfolioSharesCommandOutput extends DescribePortfolioS * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribePortfolioSharesCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribeProductAsAdminCommand.ts b/clients/client-service-catalog/src/commands/DescribeProductAsAdminCommand.ts index a6983ac4af6d6..7e3c245b28988 100644 --- a/clients/client-service-catalog/src/commands/DescribeProductAsAdminCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeProductAsAdminCommand.ts @@ -130,6 +130,7 @@ export interface DescribeProductAsAdminCommandOutput extends DescribeProductAsAd * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribeProductAsAdminCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribeProductCommand.ts b/clients/client-service-catalog/src/commands/DescribeProductCommand.ts index e5ef0b1efded6..c3b96d404143a 100644 --- a/clients/client-service-catalog/src/commands/DescribeProductCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeProductCommand.ts @@ -104,6 +104,7 @@ export interface DescribeProductCommandOutput extends DescribeProductOutput, __M * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribeProductCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribeProductViewCommand.ts b/clients/client-service-catalog/src/commands/DescribeProductViewCommand.ts index 4a3eb9afa9859..f6dc15e154d3e 100644 --- a/clients/client-service-catalog/src/commands/DescribeProductViewCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeProductViewCommand.ts @@ -83,6 +83,7 @@ export interface DescribeProductViewCommandOutput extends DescribeProductViewOut * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribeProductViewCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribeProvisionedProductCommand.ts b/clients/client-service-catalog/src/commands/DescribeProvisionedProductCommand.ts index f072b168d4ee9..cb3eb87c0ace8 100644 --- a/clients/client-service-catalog/src/commands/DescribeProvisionedProductCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeProvisionedProductCommand.ts @@ -83,6 +83,7 @@ export interface DescribeProvisionedProductCommandOutput extends DescribeProvisi * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribeProvisionedProductCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribeProvisionedProductPlanCommand.ts b/clients/client-service-catalog/src/commands/DescribeProvisionedProductPlanCommand.ts index ab79bb3f90eb9..e1ae34e02d27f 100644 --- a/clients/client-service-catalog/src/commands/DescribeProvisionedProductPlanCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeProvisionedProductPlanCommand.ts @@ -122,6 +122,7 @@ export interface DescribeProvisionedProductPlanCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribeProvisionedProductPlanCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribeProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/DescribeProvisioningArtifactCommand.ts index 35f1294e14c21..e75d177e4ecf9 100644 --- a/clients/client-service-catalog/src/commands/DescribeProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeProvisioningArtifactCommand.ts @@ -105,6 +105,7 @@ export interface DescribeProvisioningArtifactCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribeProvisioningArtifactCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribeProvisioningParametersCommand.ts b/clients/client-service-catalog/src/commands/DescribeProvisioningParametersCommand.ts index c1afd4bcaa87b..35544f183348d 100644 --- a/clients/client-service-catalog/src/commands/DescribeProvisioningParametersCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeProvisioningParametersCommand.ts @@ -138,6 +138,7 @@ export interface DescribeProvisioningParametersCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribeProvisioningParametersCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribeRecordCommand.ts b/clients/client-service-catalog/src/commands/DescribeRecordCommand.ts index 96724468d1ac5..1af07007c0c3c 100644 --- a/clients/client-service-catalog/src/commands/DescribeRecordCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeRecordCommand.ts @@ -102,6 +102,7 @@ export interface DescribeRecordCommandOutput extends DescribeRecordOutput, __Met * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribeRecordCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribeServiceActionCommand.ts b/clients/client-service-catalog/src/commands/DescribeServiceActionCommand.ts index 905e55226376f..243de4202704b 100644 --- a/clients/client-service-catalog/src/commands/DescribeServiceActionCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeServiceActionCommand.ts @@ -69,6 +69,7 @@ export interface DescribeServiceActionCommandOutput extends DescribeServiceActio * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribeServiceActionCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribeServiceActionExecutionParametersCommand.ts b/clients/client-service-catalog/src/commands/DescribeServiceActionExecutionParametersCommand.ts index ea975b26b714a..d03b84576f31e 100644 --- a/clients/client-service-catalog/src/commands/DescribeServiceActionExecutionParametersCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeServiceActionExecutionParametersCommand.ts @@ -80,6 +80,7 @@ export interface DescribeServiceActionExecutionParametersCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribeServiceActionExecutionParametersCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DescribeTagOptionCommand.ts b/clients/client-service-catalog/src/commands/DescribeTagOptionCommand.ts index 54985c5385629..93fa50f47bf04 100644 --- a/clients/client-service-catalog/src/commands/DescribeTagOptionCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeTagOptionCommand.ts @@ -69,6 +69,7 @@ export interface DescribeTagOptionCommandOutput extends DescribeTagOptionOutput, * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DescribeTagOptionCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DisableAWSOrganizationsAccessCommand.ts b/clients/client-service-catalog/src/commands/DisableAWSOrganizationsAccessCommand.ts index 66b9f53266e8b..40a8a65272338 100644 --- a/clients/client-service-catalog/src/commands/DisableAWSOrganizationsAccessCommand.ts +++ b/clients/client-service-catalog/src/commands/DisableAWSOrganizationsAccessCommand.ts @@ -78,6 +78,7 @@ export interface DisableAWSOrganizationsAccessCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DisableAWSOrganizationsAccessCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DisassociateBudgetFromResourceCommand.ts b/clients/client-service-catalog/src/commands/DisassociateBudgetFromResourceCommand.ts index 388c07eb7b27e..515bf079d4068 100644 --- a/clients/client-service-catalog/src/commands/DisassociateBudgetFromResourceCommand.ts +++ b/clients/client-service-catalog/src/commands/DisassociateBudgetFromResourceCommand.ts @@ -62,6 +62,7 @@ export interface DisassociateBudgetFromResourceCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DisassociateBudgetFromResourceCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DisassociatePrincipalFromPortfolioCommand.ts b/clients/client-service-catalog/src/commands/DisassociatePrincipalFromPortfolioCommand.ts index 084ad223c8f59..fea2a84bb48f4 100644 --- a/clients/client-service-catalog/src/commands/DisassociatePrincipalFromPortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/DisassociatePrincipalFromPortfolioCommand.ts @@ -84,6 +84,7 @@ export interface DisassociatePrincipalFromPortfolioCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DisassociatePrincipalFromPortfolioCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DisassociateProductFromPortfolioCommand.ts b/clients/client-service-catalog/src/commands/DisassociateProductFromPortfolioCommand.ts index adccbbecac25c..9ebbab773cd62 100644 --- a/clients/client-service-catalog/src/commands/DisassociateProductFromPortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/DisassociateProductFromPortfolioCommand.ts @@ -70,6 +70,7 @@ export interface DisassociateProductFromPortfolioCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DisassociateProductFromPortfolioCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DisassociateServiceActionFromProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/DisassociateServiceActionFromProvisioningArtifactCommand.ts index 6ec92881321f7..22a8d053dba1e 100644 --- a/clients/client-service-catalog/src/commands/DisassociateServiceActionFromProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/DisassociateServiceActionFromProvisioningArtifactCommand.ts @@ -69,6 +69,7 @@ export interface DisassociateServiceActionFromProvisioningArtifactCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DisassociateServiceActionFromProvisioningArtifactCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/DisassociateTagOptionFromResourceCommand.ts b/clients/client-service-catalog/src/commands/DisassociateTagOptionFromResourceCommand.ts index 4db98c3d1d68a..f1639a1b06ce0 100644 --- a/clients/client-service-catalog/src/commands/DisassociateTagOptionFromResourceCommand.ts +++ b/clients/client-service-catalog/src/commands/DisassociateTagOptionFromResourceCommand.ts @@ -67,6 +67,7 @@ export interface DisassociateTagOptionFromResourceCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class DisassociateTagOptionFromResourceCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/EnableAWSOrganizationsAccessCommand.ts b/clients/client-service-catalog/src/commands/EnableAWSOrganizationsAccessCommand.ts index b054c901dd84e..190af9f47edf3 100644 --- a/clients/client-service-catalog/src/commands/EnableAWSOrganizationsAccessCommand.ts +++ b/clients/client-service-catalog/src/commands/EnableAWSOrganizationsAccessCommand.ts @@ -78,6 +78,7 @@ export interface EnableAWSOrganizationsAccessCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class EnableAWSOrganizationsAccessCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ExecuteProvisionedProductPlanCommand.ts b/clients/client-service-catalog/src/commands/ExecuteProvisionedProductPlanCommand.ts index a8484499ff12c..c1e8da0c7c785 100644 --- a/clients/client-service-catalog/src/commands/ExecuteProvisionedProductPlanCommand.ts +++ b/clients/client-service-catalog/src/commands/ExecuteProvisionedProductPlanCommand.ts @@ -97,6 +97,7 @@ export interface ExecuteProvisionedProductPlanCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ExecuteProvisionedProductPlanCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ExecuteProvisionedProductServiceActionCommand.ts b/clients/client-service-catalog/src/commands/ExecuteProvisionedProductServiceActionCommand.ts index 5d4feef25fb66..56f88d50a20d3 100644 --- a/clients/client-service-catalog/src/commands/ExecuteProvisionedProductServiceActionCommand.ts +++ b/clients/client-service-catalog/src/commands/ExecuteProvisionedProductServiceActionCommand.ts @@ -107,6 +107,7 @@ export interface ExecuteProvisionedProductServiceActionCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ExecuteProvisionedProductServiceActionCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/GetAWSOrganizationsAccessStatusCommand.ts b/clients/client-service-catalog/src/commands/GetAWSOrganizationsAccessStatusCommand.ts index b08d77c80457b..c32cd44dc90b5 100644 --- a/clients/client-service-catalog/src/commands/GetAWSOrganizationsAccessStatusCommand.ts +++ b/clients/client-service-catalog/src/commands/GetAWSOrganizationsAccessStatusCommand.ts @@ -65,6 +65,7 @@ export interface GetAWSOrganizationsAccessStatusCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class GetAWSOrganizationsAccessStatusCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/GetProvisionedProductOutputsCommand.ts b/clients/client-service-catalog/src/commands/GetProvisionedProductOutputsCommand.ts index 909b0483303c9..12579a058eb2a 100644 --- a/clients/client-service-catalog/src/commands/GetProvisionedProductOutputsCommand.ts +++ b/clients/client-service-catalog/src/commands/GetProvisionedProductOutputsCommand.ts @@ -80,6 +80,7 @@ export interface GetProvisionedProductOutputsCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class GetProvisionedProductOutputsCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ImportAsProvisionedProductCommand.ts b/clients/client-service-catalog/src/commands/ImportAsProvisionedProductCommand.ts index bd0f43957db44..bcbae5f7a8247 100644 --- a/clients/client-service-catalog/src/commands/ImportAsProvisionedProductCommand.ts +++ b/clients/client-service-catalog/src/commands/ImportAsProvisionedProductCommand.ts @@ -131,6 +131,7 @@ export interface ImportAsProvisionedProductCommandOutput extends ImportAsProvisi * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ImportAsProvisionedProductCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListAcceptedPortfolioSharesCommand.ts b/clients/client-service-catalog/src/commands/ListAcceptedPortfolioSharesCommand.ts index 42861afa213d4..3492ea65074b8 100644 --- a/clients/client-service-catalog/src/commands/ListAcceptedPortfolioSharesCommand.ts +++ b/clients/client-service-catalog/src/commands/ListAcceptedPortfolioSharesCommand.ts @@ -76,6 +76,7 @@ export interface ListAcceptedPortfolioSharesCommandOutput extends ListAcceptedPo * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListAcceptedPortfolioSharesCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListBudgetsForResourceCommand.ts b/clients/client-service-catalog/src/commands/ListBudgetsForResourceCommand.ts index 329108b1aba19..438661d0fb0d9 100644 --- a/clients/client-service-catalog/src/commands/ListBudgetsForResourceCommand.ts +++ b/clients/client-service-catalog/src/commands/ListBudgetsForResourceCommand.ts @@ -69,6 +69,7 @@ export interface ListBudgetsForResourceCommandOutput extends ListBudgetsForResou * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListBudgetsForResourceCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListConstraintsForPortfolioCommand.ts b/clients/client-service-catalog/src/commands/ListConstraintsForPortfolioCommand.ts index fe9917c220491..661fccdbbbe62 100644 --- a/clients/client-service-catalog/src/commands/ListConstraintsForPortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/ListConstraintsForPortfolioCommand.ts @@ -75,6 +75,7 @@ export interface ListConstraintsForPortfolioCommandOutput extends ListConstraint * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListConstraintsForPortfolioCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListLaunchPathsCommand.ts b/clients/client-service-catalog/src/commands/ListLaunchPathsCommand.ts index 575b2969cda2c..cac24045be959 100644 --- a/clients/client-service-catalog/src/commands/ListLaunchPathsCommand.ts +++ b/clients/client-service-catalog/src/commands/ListLaunchPathsCommand.ts @@ -107,6 +107,7 @@ export interface ListLaunchPathsCommandOutput extends ListLaunchPathsOutput, __M * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListLaunchPathsCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListOrganizationPortfolioAccessCommand.ts b/clients/client-service-catalog/src/commands/ListOrganizationPortfolioAccessCommand.ts index 266c8a15d9165..36c2955ed0a81 100644 --- a/clients/client-service-catalog/src/commands/ListOrganizationPortfolioAccessCommand.ts +++ b/clients/client-service-catalog/src/commands/ListOrganizationPortfolioAccessCommand.ts @@ -82,6 +82,7 @@ export interface ListOrganizationPortfolioAccessCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListOrganizationPortfolioAccessCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListPortfolioAccessCommand.ts b/clients/client-service-catalog/src/commands/ListPortfolioAccessCommand.ts index a97cb550deaac..83c16b41d999c 100644 --- a/clients/client-service-catalog/src/commands/ListPortfolioAccessCommand.ts +++ b/clients/client-service-catalog/src/commands/ListPortfolioAccessCommand.ts @@ -69,6 +69,7 @@ export interface ListPortfolioAccessCommandOutput extends ListPortfolioAccessOut * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListPortfolioAccessCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListPortfoliosCommand.ts b/clients/client-service-catalog/src/commands/ListPortfoliosCommand.ts index 4dbd7740f3f13..bc37f955c2120 100644 --- a/clients/client-service-catalog/src/commands/ListPortfoliosCommand.ts +++ b/clients/client-service-catalog/src/commands/ListPortfoliosCommand.ts @@ -70,6 +70,7 @@ export interface ListPortfoliosCommandOutput extends ListPortfoliosOutput, __Met * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListPortfoliosCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListPortfoliosForProductCommand.ts b/clients/client-service-catalog/src/commands/ListPortfoliosForProductCommand.ts index 7f7bf43f09868..0b450e358237e 100644 --- a/clients/client-service-catalog/src/commands/ListPortfoliosForProductCommand.ts +++ b/clients/client-service-catalog/src/commands/ListPortfoliosForProductCommand.ts @@ -74,6 +74,7 @@ export interface ListPortfoliosForProductCommandOutput extends ListPortfoliosFor * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListPortfoliosForProductCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListPrincipalsForPortfolioCommand.ts b/clients/client-service-catalog/src/commands/ListPrincipalsForPortfolioCommand.ts index 8591c5d551caa..83987946ecd00 100644 --- a/clients/client-service-catalog/src/commands/ListPrincipalsForPortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/ListPrincipalsForPortfolioCommand.ts @@ -70,6 +70,7 @@ export interface ListPrincipalsForPortfolioCommandOutput extends ListPrincipalsF * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListPrincipalsForPortfolioCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListProvisionedProductPlansCommand.ts b/clients/client-service-catalog/src/commands/ListProvisionedProductPlansCommand.ts index b51c51fc7b7db..876cf46c9a136 100644 --- a/clients/client-service-catalog/src/commands/ListProvisionedProductPlansCommand.ts +++ b/clients/client-service-catalog/src/commands/ListProvisionedProductPlansCommand.ts @@ -78,6 +78,7 @@ export interface ListProvisionedProductPlansCommandOutput extends ListProvisione * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListProvisionedProductPlansCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListProvisioningArtifactsCommand.ts b/clients/client-service-catalog/src/commands/ListProvisioningArtifactsCommand.ts index 4ed37198f8187..6cbb771d1a109 100644 --- a/clients/client-service-catalog/src/commands/ListProvisioningArtifactsCommand.ts +++ b/clients/client-service-catalog/src/commands/ListProvisioningArtifactsCommand.ts @@ -74,6 +74,7 @@ export interface ListProvisioningArtifactsCommandOutput extends ListProvisioning * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListProvisioningArtifactsCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListProvisioningArtifactsForServiceActionCommand.ts b/clients/client-service-catalog/src/commands/ListProvisioningArtifactsForServiceActionCommand.ts index cdd94dbe3dee3..6a0466a9f741c 100644 --- a/clients/client-service-catalog/src/commands/ListProvisioningArtifactsForServiceActionCommand.ts +++ b/clients/client-service-catalog/src/commands/ListProvisioningArtifactsForServiceActionCommand.ts @@ -97,6 +97,7 @@ export interface ListProvisioningArtifactsForServiceActionCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListProvisioningArtifactsForServiceActionCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListRecordHistoryCommand.ts b/clients/client-service-catalog/src/commands/ListRecordHistoryCommand.ts index 5c6018e2857a9..7b765263159f3 100644 --- a/clients/client-service-catalog/src/commands/ListRecordHistoryCommand.ts +++ b/clients/client-service-catalog/src/commands/ListRecordHistoryCommand.ts @@ -96,6 +96,7 @@ export interface ListRecordHistoryCommandOutput extends ListRecordHistoryOutput, * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListRecordHistoryCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListResourcesForTagOptionCommand.ts b/clients/client-service-catalog/src/commands/ListResourcesForTagOptionCommand.ts index 429599c80c76c..84253c2b59dbe 100644 --- a/clients/client-service-catalog/src/commands/ListResourcesForTagOptionCommand.ts +++ b/clients/client-service-catalog/src/commands/ListResourcesForTagOptionCommand.ts @@ -78,6 +78,7 @@ export interface ListResourcesForTagOptionCommandOutput extends ListResourcesFor * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListResourcesForTagOptionCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListServiceActionsCommand.ts b/clients/client-service-catalog/src/commands/ListServiceActionsCommand.ts index bc12c4de513cf..26e22e026b94b 100644 --- a/clients/client-service-catalog/src/commands/ListServiceActionsCommand.ts +++ b/clients/client-service-catalog/src/commands/ListServiceActionsCommand.ts @@ -68,6 +68,7 @@ export interface ListServiceActionsCommandOutput extends ListServiceActionsOutpu * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListServiceActionsCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListServiceActionsForProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/ListServiceActionsForProvisioningArtifactCommand.ts index 17e9d4df54587..fbf6f2919ef4a 100644 --- a/clients/client-service-catalog/src/commands/ListServiceActionsForProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/ListServiceActionsForProvisioningArtifactCommand.ts @@ -82,6 +82,7 @@ export interface ListServiceActionsForProvisioningArtifactCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListServiceActionsForProvisioningArtifactCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListStackInstancesForProvisionedProductCommand.ts b/clients/client-service-catalog/src/commands/ListStackInstancesForProvisionedProductCommand.ts index 7fe959b27e592..6163b0323a5c7 100644 --- a/clients/client-service-catalog/src/commands/ListStackInstancesForProvisionedProductCommand.ts +++ b/clients/client-service-catalog/src/commands/ListStackInstancesForProvisionedProductCommand.ts @@ -80,6 +80,7 @@ export interface ListStackInstancesForProvisionedProductCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListStackInstancesForProvisionedProductCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ListTagOptionsCommand.ts b/clients/client-service-catalog/src/commands/ListTagOptionsCommand.ts index a3c41901e672d..23f4187582744 100644 --- a/clients/client-service-catalog/src/commands/ListTagOptionsCommand.ts +++ b/clients/client-service-catalog/src/commands/ListTagOptionsCommand.ts @@ -78,6 +78,7 @@ export interface ListTagOptionsCommandOutput extends ListTagOptionsOutput, __Met * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ListTagOptionsCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/NotifyProvisionProductEngineWorkflowResultCommand.ts b/clients/client-service-catalog/src/commands/NotifyProvisionProductEngineWorkflowResultCommand.ts index 1f4ac4a53a5e8..034ea1ca934ec 100644 --- a/clients/client-service-catalog/src/commands/NotifyProvisionProductEngineWorkflowResultCommand.ts +++ b/clients/client-service-catalog/src/commands/NotifyProvisionProductEngineWorkflowResultCommand.ts @@ -88,6 +88,7 @@ export interface NotifyProvisionProductEngineWorkflowResultCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class NotifyProvisionProductEngineWorkflowResultCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/NotifyTerminateProvisionedProductEngineWorkflowResultCommand.ts b/clients/client-service-catalog/src/commands/NotifyTerminateProvisionedProductEngineWorkflowResultCommand.ts index 3ff3461bb725c..0d6cba4fb7a0e 100644 --- a/clients/client-service-catalog/src/commands/NotifyTerminateProvisionedProductEngineWorkflowResultCommand.ts +++ b/clients/client-service-catalog/src/commands/NotifyTerminateProvisionedProductEngineWorkflowResultCommand.ts @@ -75,6 +75,7 @@ export interface NotifyTerminateProvisionedProductEngineWorkflowResultCommandOut * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class NotifyTerminateProvisionedProductEngineWorkflowResultCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/NotifyUpdateProvisionedProductEngineWorkflowResultCommand.ts b/clients/client-service-catalog/src/commands/NotifyUpdateProvisionedProductEngineWorkflowResultCommand.ts index b3b572745d33a..bf0ed99d79080 100644 --- a/clients/client-service-catalog/src/commands/NotifyUpdateProvisionedProductEngineWorkflowResultCommand.ts +++ b/clients/client-service-catalog/src/commands/NotifyUpdateProvisionedProductEngineWorkflowResultCommand.ts @@ -82,6 +82,7 @@ export interface NotifyUpdateProvisionedProductEngineWorkflowResultCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class NotifyUpdateProvisionedProductEngineWorkflowResultCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ProvisionProductCommand.ts b/clients/client-service-catalog/src/commands/ProvisionProductCommand.ts index 7198913cb144f..da3071cc1d2b6 100644 --- a/clients/client-service-catalog/src/commands/ProvisionProductCommand.ts +++ b/clients/client-service-catalog/src/commands/ProvisionProductCommand.ts @@ -160,6 +160,7 @@ export interface ProvisionProductCommandOutput extends ProvisionProductOutput, _ * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ProvisionProductCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/RejectPortfolioShareCommand.ts b/clients/client-service-catalog/src/commands/RejectPortfolioShareCommand.ts index c95693ebb4ffd..fa141d2b9164f 100644 --- a/clients/client-service-catalog/src/commands/RejectPortfolioShareCommand.ts +++ b/clients/client-service-catalog/src/commands/RejectPortfolioShareCommand.ts @@ -58,6 +58,7 @@ export interface RejectPortfolioShareCommandOutput extends RejectPortfolioShareO * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class RejectPortfolioShareCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/ScanProvisionedProductsCommand.ts b/clients/client-service-catalog/src/commands/ScanProvisionedProductsCommand.ts index b5fcea2e6f03b..d09a31041e6e5 100644 --- a/clients/client-service-catalog/src/commands/ScanProvisionedProductsCommand.ts +++ b/clients/client-service-catalog/src/commands/ScanProvisionedProductsCommand.ts @@ -83,6 +83,7 @@ export interface ScanProvisionedProductsCommandOutput extends ScanProvisionedPro * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class ScanProvisionedProductsCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/SearchProductsAsAdminCommand.ts b/clients/client-service-catalog/src/commands/SearchProductsAsAdminCommand.ts index b31bbeeb237cc..5ed7dfa52b81a 100644 --- a/clients/client-service-catalog/src/commands/SearchProductsAsAdminCommand.ts +++ b/clients/client-service-catalog/src/commands/SearchProductsAsAdminCommand.ts @@ -110,6 +110,7 @@ export interface SearchProductsAsAdminCommandOutput extends SearchProductsAsAdmi * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class SearchProductsAsAdminCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/SearchProductsCommand.ts b/clients/client-service-catalog/src/commands/SearchProductsCommand.ts index 0dbb1e1e8273e..c36b063a1f937 100644 --- a/clients/client-service-catalog/src/commands/SearchProductsCommand.ts +++ b/clients/client-service-catalog/src/commands/SearchProductsCommand.ts @@ -90,6 +90,7 @@ export interface SearchProductsCommandOutput extends SearchProductsOutput, __Met * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class SearchProductsCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/SearchProvisionedProductsCommand.ts b/clients/client-service-catalog/src/commands/SearchProvisionedProductsCommand.ts index 1fb4b6da06cd9..49c88273a05df 100644 --- a/clients/client-service-catalog/src/commands/SearchProvisionedProductsCommand.ts +++ b/clients/client-service-catalog/src/commands/SearchProvisionedProductsCommand.ts @@ -100,6 +100,7 @@ export interface SearchProvisionedProductsCommandOutput extends SearchProvisione * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class SearchProvisionedProductsCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/TerminateProvisionedProductCommand.ts b/clients/client-service-catalog/src/commands/TerminateProvisionedProductCommand.ts index b8867489c833f..f71af797c37f9 100644 --- a/clients/client-service-catalog/src/commands/TerminateProvisionedProductCommand.ts +++ b/clients/client-service-catalog/src/commands/TerminateProvisionedProductCommand.ts @@ -90,6 +90,7 @@ export interface TerminateProvisionedProductCommandOutput extends TerminateProvi * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class TerminateProvisionedProductCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/UpdateConstraintCommand.ts b/clients/client-service-catalog/src/commands/UpdateConstraintCommand.ts index 10ee990824f7d..d00c4192299b6 100644 --- a/clients/client-service-catalog/src/commands/UpdateConstraintCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdateConstraintCommand.ts @@ -73,6 +73,7 @@ export interface UpdateConstraintCommandOutput extends UpdateConstraintOutput, _ * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class UpdateConstraintCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/UpdatePortfolioCommand.ts b/clients/client-service-catalog/src/commands/UpdatePortfolioCommand.ts index ec9fe80c29ef4..82eff30e1f087 100644 --- a/clients/client-service-catalog/src/commands/UpdatePortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdatePortfolioCommand.ts @@ -97,6 +97,7 @@ export interface UpdatePortfolioCommandOutput extends UpdatePortfolioOutput, __M * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class UpdatePortfolioCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/UpdatePortfolioShareCommand.ts b/clients/client-service-catalog/src/commands/UpdatePortfolioShareCommand.ts index d4c2ef2ea51d1..c1ecd0dc6a379 100644 --- a/clients/client-service-catalog/src/commands/UpdatePortfolioShareCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdatePortfolioShareCommand.ts @@ -92,6 +92,7 @@ export interface UpdatePortfolioShareCommandOutput extends UpdatePortfolioShareO * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class UpdatePortfolioShareCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/UpdateProductCommand.ts b/clients/client-service-catalog/src/commands/UpdateProductCommand.ts index 0dd64fd2ed3f5..6d29d3db5e173 100644 --- a/clients/client-service-catalog/src/commands/UpdateProductCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdateProductCommand.ts @@ -135,6 +135,7 @@ export interface UpdateProductCommandOutput extends UpdateProductOutput, __Metad * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class UpdateProductCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/UpdateProvisionedProductCommand.ts b/clients/client-service-catalog/src/commands/UpdateProvisionedProductCommand.ts index 85eb265a02527..a8547874bfeed 100644 --- a/clients/client-service-catalog/src/commands/UpdateProvisionedProductCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdateProvisionedProductCommand.ts @@ -125,6 +125,7 @@ export interface UpdateProvisionedProductCommandOutput extends UpdateProvisioned * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class UpdateProvisionedProductCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/UpdateProvisionedProductPropertiesCommand.ts b/clients/client-service-catalog/src/commands/UpdateProvisionedProductPropertiesCommand.ts index f388326661d7c..e93222e9715bd 100644 --- a/clients/client-service-catalog/src/commands/UpdateProvisionedProductPropertiesCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdateProvisionedProductPropertiesCommand.ts @@ -80,6 +80,7 @@ export interface UpdateProvisionedProductPropertiesCommandOutput * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class UpdateProvisionedProductPropertiesCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/UpdateProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/UpdateProvisioningArtifactCommand.ts index 077f358d98b7c..c65f79d003cb6 100644 --- a/clients/client-service-catalog/src/commands/UpdateProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdateProvisioningArtifactCommand.ts @@ -81,6 +81,7 @@ export interface UpdateProvisioningArtifactCommandOutput extends UpdateProvision * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class UpdateProvisioningArtifactCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/UpdateServiceActionCommand.ts b/clients/client-service-catalog/src/commands/UpdateServiceActionCommand.ts index 17d6de9e6f8ba..33f78edbd3d55 100644 --- a/clients/client-service-catalog/src/commands/UpdateServiceActionCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdateServiceActionCommand.ts @@ -77,6 +77,7 @@ export interface UpdateServiceActionCommandOutput extends UpdateServiceActionOut * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class UpdateServiceActionCommand extends $Command diff --git a/clients/client-service-catalog/src/commands/UpdateTagOptionCommand.ts b/clients/client-service-catalog/src/commands/UpdateTagOptionCommand.ts index 6971f2ef9e475..f6a4ccedc40b1 100644 --- a/clients/client-service-catalog/src/commands/UpdateTagOptionCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdateTagOptionCommand.ts @@ -77,6 +77,7 @@ export interface UpdateTagOptionCommandOutput extends UpdateTagOptionOutput, __M * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* + * * @public */ export class UpdateTagOptionCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/AssociateServiceQuotaTemplateCommand.ts b/clients/client-service-quotas/src/commands/AssociateServiceQuotaTemplateCommand.ts index 2b8156f41c7e3..b9ec440233a7e 100644 --- a/clients/client-service-quotas/src/commands/AssociateServiceQuotaTemplateCommand.ts +++ b/clients/client-service-quotas/src/commands/AssociateServiceQuotaTemplateCommand.ts @@ -86,6 +86,7 @@ export interface AssociateServiceQuotaTemplateCommandOutput * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class AssociateServiceQuotaTemplateCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.ts b/clients/client-service-quotas/src/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.ts index 8055b1bd2b4ec..b94ee1fddde4e 100644 --- a/clients/client-service-quotas/src/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.ts +++ b/clients/client-service-quotas/src/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.ts @@ -94,6 +94,7 @@ export interface DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class DeleteServiceQuotaIncreaseRequestFromTemplateCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/DisassociateServiceQuotaTemplateCommand.ts b/clients/client-service-quotas/src/commands/DisassociateServiceQuotaTemplateCommand.ts index 8fdd935e2f79a..f0d41671f2a25 100644 --- a/clients/client-service-quotas/src/commands/DisassociateServiceQuotaTemplateCommand.ts +++ b/clients/client-service-quotas/src/commands/DisassociateServiceQuotaTemplateCommand.ts @@ -84,6 +84,7 @@ export interface DisassociateServiceQuotaTemplateCommandOutput * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class DisassociateServiceQuotaTemplateCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/GetAWSDefaultServiceQuotaCommand.ts b/clients/client-service-quotas/src/commands/GetAWSDefaultServiceQuotaCommand.ts index 6e82b4365db81..8fca18ffe67e9 100644 --- a/clients/client-service-quotas/src/commands/GetAWSDefaultServiceQuotaCommand.ts +++ b/clients/client-service-quotas/src/commands/GetAWSDefaultServiceQuotaCommand.ts @@ -105,6 +105,7 @@ export interface GetAWSDefaultServiceQuotaCommandOutput extends GetAWSDefaultSer * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class GetAWSDefaultServiceQuotaCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/GetAssociationForServiceQuotaTemplateCommand.ts b/clients/client-service-quotas/src/commands/GetAssociationForServiceQuotaTemplateCommand.ts index 8ed1fe373ba67..88d0517125df7 100644 --- a/clients/client-service-quotas/src/commands/GetAssociationForServiceQuotaTemplateCommand.ts +++ b/clients/client-service-quotas/src/commands/GetAssociationForServiceQuotaTemplateCommand.ts @@ -88,6 +88,7 @@ export interface GetAssociationForServiceQuotaTemplateCommandOutput * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class GetAssociationForServiceQuotaTemplateCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/GetRequestedServiceQuotaChangeCommand.ts b/clients/client-service-quotas/src/commands/GetRequestedServiceQuotaChangeCommand.ts index bd30032b0215b..85ce586df499e 100644 --- a/clients/client-service-quotas/src/commands/GetRequestedServiceQuotaChangeCommand.ts +++ b/clients/client-service-quotas/src/commands/GetRequestedServiceQuotaChangeCommand.ts @@ -97,6 +97,7 @@ export interface GetRequestedServiceQuotaChangeCommandOutput * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class GetRequestedServiceQuotaChangeCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/GetServiceQuotaCommand.ts b/clients/client-service-quotas/src/commands/GetServiceQuotaCommand.ts index 5f863287c6678..23b1a97fd5afd 100644 --- a/clients/client-service-quotas/src/commands/GetServiceQuotaCommand.ts +++ b/clients/client-service-quotas/src/commands/GetServiceQuotaCommand.ts @@ -107,6 +107,7 @@ export interface GetServiceQuotaCommandOutput extends GetServiceQuotaResponse, _ * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class GetServiceQuotaCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.ts b/clients/client-service-quotas/src/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.ts index d58cbe4f4070c..99cd526b96176 100644 --- a/clients/client-service-quotas/src/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.ts +++ b/clients/client-service-quotas/src/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.ts @@ -105,6 +105,7 @@ export interface GetServiceQuotaIncreaseRequestFromTemplateCommandOutput * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class GetServiceQuotaIncreaseRequestFromTemplateCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/ListAWSDefaultServiceQuotasCommand.ts b/clients/client-service-quotas/src/commands/ListAWSDefaultServiceQuotasCommand.ts index d83955ab28ed8..9babf0b4a418c 100644 --- a/clients/client-service-quotas/src/commands/ListAWSDefaultServiceQuotasCommand.ts +++ b/clients/client-service-quotas/src/commands/ListAWSDefaultServiceQuotasCommand.ts @@ -114,6 +114,7 @@ export interface ListAWSDefaultServiceQuotasCommandOutput * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class ListAWSDefaultServiceQuotasCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.ts b/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.ts index 0fa228b8e3c68..69ab31176b40f 100644 --- a/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.ts +++ b/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.ts @@ -112,6 +112,7 @@ export interface ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class ListRequestedServiceQuotaChangeHistoryByQuotaCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryCommand.ts b/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryCommand.ts index 9b2071bfb59b4..26f4ea857b322 100644 --- a/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryCommand.ts +++ b/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryCommand.ts @@ -111,6 +111,7 @@ export interface ListRequestedServiceQuotaChangeHistoryCommandOutput * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class ListRequestedServiceQuotaChangeHistoryCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.ts b/clients/client-service-quotas/src/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.ts index 648753d55c8b4..e023840da4c86 100644 --- a/clients/client-service-quotas/src/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.ts +++ b/clients/client-service-quotas/src/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.ts @@ -105,6 +105,7 @@ export interface ListServiceQuotaIncreaseRequestsInTemplateCommandOutput * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class ListServiceQuotaIncreaseRequestsInTemplateCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/ListServiceQuotasCommand.ts b/clients/client-service-quotas/src/commands/ListServiceQuotasCommand.ts index 071d324d5b1e7..ef73655f3972c 100644 --- a/clients/client-service-quotas/src/commands/ListServiceQuotasCommand.ts +++ b/clients/client-service-quotas/src/commands/ListServiceQuotasCommand.ts @@ -115,6 +115,7 @@ export interface ListServiceQuotasCommandOutput extends ListServiceQuotasRespons * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class ListServiceQuotasCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/ListServicesCommand.ts b/clients/client-service-quotas/src/commands/ListServicesCommand.ts index 7ff9e1f3deb9f..d8d9008653c35 100644 --- a/clients/client-service-quotas/src/commands/ListServicesCommand.ts +++ b/clients/client-service-quotas/src/commands/ListServicesCommand.ts @@ -78,6 +78,7 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class ListServicesCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/ListTagsForResourceCommand.ts b/clients/client-service-quotas/src/commands/ListTagsForResourceCommand.ts index cbec7dc6da8e2..2ba87a1b63bfb 100644 --- a/clients/client-service-quotas/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-service-quotas/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.ts b/clients/client-service-quotas/src/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.ts index f4b08b8b3da77..cb56e5ce89bbe 100644 --- a/clients/client-service-quotas/src/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.ts +++ b/clients/client-service-quotas/src/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.ts @@ -109,6 +109,7 @@ export interface PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class PutServiceQuotaIncreaseRequestIntoTemplateCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/RequestServiceQuotaIncreaseCommand.ts b/clients/client-service-quotas/src/commands/RequestServiceQuotaIncreaseCommand.ts index 60133f76b5367..f51f2789d3648 100644 --- a/clients/client-service-quotas/src/commands/RequestServiceQuotaIncreaseCommand.ts +++ b/clients/client-service-quotas/src/commands/RequestServiceQuotaIncreaseCommand.ts @@ -110,6 +110,7 @@ export interface RequestServiceQuotaIncreaseCommandOutput * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class RequestServiceQuotaIncreaseCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/TagResourceCommand.ts b/clients/client-service-quotas/src/commands/TagResourceCommand.ts index 8df000781feaa..8358c813a5ba9 100644 --- a/clients/client-service-quotas/src/commands/TagResourceCommand.ts +++ b/clients/client-service-quotas/src/commands/TagResourceCommand.ts @@ -84,6 +84,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-service-quotas/src/commands/UntagResourceCommand.ts b/clients/client-service-quotas/src/commands/UntagResourceCommand.ts index ca2e853a0efc1..6b5ad150f5079 100644 --- a/clients/client-service-quotas/src/commands/UntagResourceCommand.ts +++ b/clients/client-service-quotas/src/commands/UntagResourceCommand.ts @@ -73,6 +73,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-servicediscovery/src/commands/CreateHttpNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/CreateHttpNamespaceCommand.ts index 3525172e0cdd8..f8df9e504a675 100644 --- a/clients/client-servicediscovery/src/commands/CreateHttpNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/CreateHttpNamespaceCommand.ts @@ -83,25 +83,25 @@ export interface CreateHttpNamespaceCommandOutput extends CreateHttpNamespaceRes * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example CreateHttpNamespace example * ```javascript * // This example creates an HTTP namespace. * const input = { - * "CreatorRequestId": "example-creator-request-id-0001", - * "Description": "Example.com AWS Cloud Map HTTP Namespace", - * "Name": "example-http.com" + * CreatorRequestId: "example-creator-request-id-0001", + * Description: "Example.com AWS Cloud Map HTTP Namespace", + * Name: "example-http.com" * }; * const command = new CreateHttpNamespaceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OperationId": "httpvoqozuhfet5kzxoxg-a-response-example" + * OperationId: "httpvoqozuhfet5kzxoxg-a-response-example" * } * *\/ - * // example id: createhttpnamespace-example-1590114811304 * ``` * + * @public */ export class CreateHttpNamespaceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/CreatePrivateDnsNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/CreatePrivateDnsNamespaceCommand.ts index 6b633aa304cf5..94918ce03d506 100644 --- a/clients/client-servicediscovery/src/commands/CreatePrivateDnsNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/CreatePrivateDnsNamespaceCommand.ts @@ -94,25 +94,25 @@ export interface CreatePrivateDnsNamespaceCommandOutput extends CreatePrivateDns * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example Example: Create private DNS namespace * ```javascript * // Example: Create private DNS namespace * const input = { - * "CreatorRequestId": "eedd6892-50f3-41b2-8af9-611d6e1d1a8c", - * "Name": "example.com", - * "Vpc": "vpc-1c56417b" + * CreatorRequestId: "eedd6892-50f3-41b2-8af9-611d6e1d1a8c", + * Name: "example.com", + * Vpc: "vpc-1c56417b" * }; * const command = new CreatePrivateDnsNamespaceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OperationId": "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd" + * OperationId: "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd" * } * *\/ - * // example id: example-create-private-dns-namespace-1587058592930 * ``` * + * @public */ export class CreatePrivateDnsNamespaceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/CreatePublicDnsNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/CreatePublicDnsNamespaceCommand.ts index 4deefe80e2262..5eea2510984bb 100644 --- a/clients/client-servicediscovery/src/commands/CreatePublicDnsNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/CreatePublicDnsNamespaceCommand.ts @@ -97,25 +97,25 @@ export interface CreatePublicDnsNamespaceCommandOutput extends CreatePublicDnsNa * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example CreatePublicDnsNamespace example * ```javascript * // This example creates a public namespace based on DNS. * const input = { - * "CreatorRequestId": "example-creator-request-id-0003", - * "Description": "Example.com AWS Cloud Map Public DNS Namespace", - * "Name": "example-public-dns.com" + * CreatorRequestId: "example-creator-request-id-0003", + * Description: "Example.com AWS Cloud Map Public DNS Namespace", + * Name: "example-public-dns.com" * }; * const command = new CreatePublicDnsNamespaceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OperationId": "dns2voqozuhfet5kzxoxg-a-response-example" + * OperationId: "dns2voqozuhfet5kzxoxg-a-response-example" * } * *\/ - * // example id: createpublicdnsnamespace-example-1590114940910 * ``` * + * @public */ export class CreatePublicDnsNamespaceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/CreateServiceCommand.ts b/clients/client-servicediscovery/src/commands/CreateServiceCommand.ts index d1da6bc3c4ec5..aaf55ac4779a4 100644 --- a/clients/client-servicediscovery/src/commands/CreateServiceCommand.ts +++ b/clients/client-servicediscovery/src/commands/CreateServiceCommand.ts @@ -169,52 +169,52 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example Example: Create service * ```javascript * // Example: Create service * const input = { - * "CreatorRequestId": "567c1193-6b00-4308-bd57-ad38a8822d25", - * "DnsConfig": { - * "DnsRecords": [ + * CreatorRequestId: "567c1193-6b00-4308-bd57-ad38a8822d25", + * DnsConfig: { + * DnsRecords: [ * { - * "TTL": 60, - * "Type": "A" + * TTL: 60, + * Type: "A" * } * ], - * "NamespaceId": "ns-ylexjili4cdxy3xm", - * "RoutingPolicy": "MULTIVALUE" + * NamespaceId: "ns-ylexjili4cdxy3xm", + * RoutingPolicy: "MULTIVALUE" * }, - * "Name": "myservice", - * "NamespaceId": "ns-ylexjili4cdxy3xm" + * Name: "myservice", + * NamespaceId: "ns-ylexjili4cdxy3xm" * }; * const command = new CreateServiceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Service": { - * "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-p5zdwlg5uvvzjita", - * "CreateDate": 1587081768.334, - * "CreatorRequestId": "567c1193-6b00-4308-bd57-ad38a8822d25", - * "DnsConfig": { - * "DnsRecords": [ + * Service: { + * Arn: "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-p5zdwlg5uvvzjita", + * CreateDate: 1.587081768334E9, + * CreatorRequestId: "567c1193-6b00-4308-bd57-ad38a8822d25", + * DnsConfig: { + * DnsRecords: [ * { - * "TTL": 60, - * "Type": "A" + * TTL: 60, + * Type: "A" * } * ], - * "NamespaceId": "ns-ylexjili4cdxy3xm", - * "RoutingPolicy": "MULTIVALUE" + * NamespaceId: "ns-ylexjili4cdxy3xm", + * RoutingPolicy: "MULTIVALUE" * }, - * "Id": "srv-p5zdwlg5uvvzjita", - * "Name": "myservice", - * "NamespaceId": "ns-ylexjili4cdxy3xm" + * Id: "srv-p5zdwlg5uvvzjita", + * Name: "myservice", + * NamespaceId: "ns-ylexjili4cdxy3xm" * } * } * *\/ - * // example id: example-create-service-1587235913584 * ``` * + * @public */ export class CreateServiceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/DeleteNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/DeleteNamespaceCommand.ts index c3cb9897cb522..cf11fb2be6e8d 100644 --- a/clients/client-servicediscovery/src/commands/DeleteNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/DeleteNamespaceCommand.ts @@ -70,23 +70,23 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _ * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example Example: Delete namespace * ```javascript * // Example: Delete namespace * const input = { - * "Id": "ns-ylexjili4cdxy3xm" + * Id: "ns-ylexjili4cdxy3xm" * }; * const command = new DeleteNamespaceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OperationId": "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k98y6drk" + * OperationId: "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k98y6drk" * } * *\/ - * // example id: example-delete-namespace-1587416093508 * ``` * + * @public */ export class DeleteNamespaceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/DeleteServiceAttributesCommand.ts b/clients/client-servicediscovery/src/commands/DeleteServiceAttributesCommand.ts index 62479f046a915..1d2341c81b95c 100644 --- a/clients/client-servicediscovery/src/commands/DeleteServiceAttributesCommand.ts +++ b/clients/client-servicediscovery/src/commands/DeleteServiceAttributesCommand.ts @@ -63,21 +63,24 @@ export interface DeleteServiceAttributesCommandOutput extends DeleteServiceAttri * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example DeleteServiceAttributes example * ```javascript * // Example: Delete service attribute by providing attribute key and service ID * const input = { - * "Attributes": [ + * Attributes: [ * "port" * ], - * "ServiceId": "srv-e4anhexample0004" + * ServiceId: "srv-e4anhexample0004" * }; * const command = new DeleteServiceAttributesCommand(input); - * await client.send(command); - * // example id: example-delete-service-attributes-1587416462902 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteServiceAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/DeleteServiceCommand.ts b/clients/client-servicediscovery/src/commands/DeleteServiceCommand.ts index 48d3fcda89b93..380a18ddcab86 100644 --- a/clients/client-servicediscovery/src/commands/DeleteServiceCommand.ts +++ b/clients/client-servicediscovery/src/commands/DeleteServiceCommand.ts @@ -65,18 +65,21 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example Example: Delete service * ```javascript * // Example: Delete service * const input = { - * "Id": "srv-p5zdwlg5uvvzjita" + * Id: "srv-p5zdwlg5uvvzjita" * }; * const command = new DeleteServiceCommand(input); - * await client.send(command); - * // example id: example-delete-service-1587416462902 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteServiceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/DeregisterInstanceCommand.ts b/clients/client-servicediscovery/src/commands/DeregisterInstanceCommand.ts index df499e1c90c0a..c1084e9cdaf66 100644 --- a/clients/client-servicediscovery/src/commands/DeregisterInstanceCommand.ts +++ b/clients/client-servicediscovery/src/commands/DeregisterInstanceCommand.ts @@ -75,24 +75,24 @@ export interface DeregisterInstanceCommandOutput extends DeregisterInstanceRespo * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example Example: Deregister a service instance * ```javascript * // Example: Deregister a service instance * const input = { - * "InstanceId": "myservice-53", - * "ServiceId": "srv-p5zdwlg5uvvzjita" + * InstanceId: "myservice-53", + * ServiceId: "srv-p5zdwlg5uvvzjita" * }; * const command = new DeregisterInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OperationId": "4yejorelbukcjzpnr6tlmrghsjwpngf4-k98rnaiq" + * OperationId: "4yejorelbukcjzpnr6tlmrghsjwpngf4-k98rnaiq" * } * *\/ - * // example id: example-deregister-a-service-instance-1587416305738 * ``` * + * @public */ export class DeregisterInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/DiscoverInstancesCommand.ts b/clients/client-servicediscovery/src/commands/DiscoverInstancesCommand.ts index dab58d4ea41ca..16b5712e25dbf 100644 --- a/clients/client-servicediscovery/src/commands/DiscoverInstancesCommand.ts +++ b/clients/client-servicediscovery/src/commands/DiscoverInstancesCommand.ts @@ -93,37 +93,37 @@ export interface DiscoverInstancesCommandOutput extends DiscoverInstancesRespons * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example Example: Discover registered instances * ```javascript * // Example: Discover registered instances * const input = { - * "HealthStatus": "ALL", - * "MaxResults": 10, - * "NamespaceName": "example.com", - * "ServiceName": "myservice" + * HealthStatus: "ALL", + * MaxResults: 10, + * NamespaceName: "example.com", + * ServiceName: "myservice" * }; * const command = new DiscoverInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Instances": [ + * Instances: [ * { - * "Attributes": { - * "AWS_INSTANCE_IPV4": "172.2.1.3", - * "AWS_INSTANCE_PORT": "808" + * Attributes: { + * AWS_INSTANCE_IPV4: "172.2.1.3", + * AWS_INSTANCE_PORT: "808" * }, - * "HealthStatus": "UNKNOWN", - * "InstanceId": "myservice-53", - * "NamespaceName": "example.com", - * "ServiceName": "myservice" + * HealthStatus: "UNKNOWN", + * InstanceId: "myservice-53", + * NamespaceName: "example.com", + * ServiceName: "myservice" * } * ] * } * *\/ - * // example id: example-discover-registered-instances-1587236343568 * ``` * + * @public */ export class DiscoverInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/DiscoverInstancesRevisionCommand.ts b/clients/client-servicediscovery/src/commands/DiscoverInstancesRevisionCommand.ts index 5f612228457a9..720c71fc8c7c3 100644 --- a/clients/client-servicediscovery/src/commands/DiscoverInstancesRevisionCommand.ts +++ b/clients/client-servicediscovery/src/commands/DiscoverInstancesRevisionCommand.ts @@ -71,24 +71,24 @@ export interface DiscoverInstancesRevisionCommandOutput extends DiscoverInstance * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example To discover the revision for a registered instance * ```javascript * // The following example discovers the revision ID for a registered instance. * const input = { - * "NamespaceName": "example-namespace", - * "ServiceName": "example-service" + * NamespaceName: "example-namespace", + * ServiceName: "example-service" * }; * const command = new DiscoverInstancesRevisionCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InstancesRevision": 123456 + * InstancesRevision: 123456 * } * *\/ - * // example id: to-discover-the-revision-for-a-registered-instance-1712867460953 * ``` * + * @public */ export class DiscoverInstancesRevisionCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/GetInstanceCommand.ts b/clients/client-servicediscovery/src/commands/GetInstanceCommand.ts index 58c8de5fdf979..81cbae0ec49f9 100644 --- a/clients/client-servicediscovery/src/commands/GetInstanceCommand.ts +++ b/clients/client-servicediscovery/src/commands/GetInstanceCommand.ts @@ -73,33 +73,33 @@ export interface GetInstanceCommandOutput extends GetInstanceResponse, __Metadat * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example GetInstance example * ```javascript * // This example gets information about a specified instance. * const input = { - * "InstanceId": "i-abcd1234", - * "ServiceId": "srv-e4anhexample0004" + * InstanceId: "i-abcd1234", + * ServiceId: "srv-e4anhexample0004" * }; * const command = new GetInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Instance": { - * "Attributes": { - * "AWS_INSTANCE_IPV4": "192.0.2.44", - * "AWS_INSTANCE_PORT": "80", - * "color": "green", - * "region": "us-west-2", - * "stage": "beta" + * Instance: { + * Attributes: { + * AWS_INSTANCE_IPV4: "192.0.2.44", + * AWS_INSTANCE_PORT: "80", + * color: "green", + * region: "us-west-2", + * stage: "beta" * }, - * "Id": "i-abcd1234" + * Id: "i-abcd1234" * } * } * *\/ - * // example id: getinstance-example-1590115065598 * ``` * + * @public */ export class GetInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/GetInstancesHealthStatusCommand.ts b/clients/client-servicediscovery/src/commands/GetInstancesHealthStatusCommand.ts index 4133cda47c531..30d89a6cc73b3 100644 --- a/clients/client-servicediscovery/src/commands/GetInstancesHealthStatusCommand.ts +++ b/clients/client-servicediscovery/src/commands/GetInstancesHealthStatusCommand.ts @@ -79,26 +79,26 @@ export interface GetInstancesHealthStatusCommandOutput extends GetInstancesHealt * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example GetInstancesHealthStatus example * ```javascript * // This example gets the current health status of one or more instances that are associate with a specified service. * const input = { - * "ServiceId": "srv-e4anhexample0004" + * ServiceId: "srv-e4anhexample0004" * }; * const command = new GetInstancesHealthStatusCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Status": { - * "i-abcd1234": "HEALTHY", - * "i-abcd1235": "UNHEALTHY" + * Status: { + * i-abcd1234: "HEALTHY", + * i-abcd1235: "UNHEALTHY" * } * } * *\/ - * // example id: getinstanceshealthstatus-example-1590115176146 * ``` * + * @public */ export class GetInstancesHealthStatusCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/GetNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/GetNamespaceCommand.ts index 453b79226cca7..5a2fa33f54099 100644 --- a/clients/client-servicediscovery/src/commands/GetNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/GetNamespaceCommand.ts @@ -82,37 +82,8 @@ export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __Metad * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public - * @example GetNamespace example - * ```javascript - * // This example gets information about a specified namespace. - * const input = { - * "Id": "ns-e4anhexample0004" - * }; - * const command = new GetNamespaceCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Namespace": { - * "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-e1tpmexample0001", - * "CreateDate": "20181118T211712Z", - * "CreatorRequestId": "example-creator-request-id-0001", - * "Description": "Example.com AWS Cloud Map HTTP Namespace", - * "Id": "ns-e1tpmexample0001", - * "Name": "example-http.com", - * "Properties": { - * "DnsProperties": {}, - * "HttpProperties": { - * "HttpName": "example-http.com" - * } - * }, - * "Type": "HTTP" - * } - * } - * *\/ - * // example id: getnamespace-example-1590115383708 - * ``` * + * @public */ export class GetNamespaceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/GetOperationCommand.ts b/clients/client-servicediscovery/src/commands/GetOperationCommand.ts index aead5e698c64a..73665d9cdd45d 100644 --- a/clients/client-servicediscovery/src/commands/GetOperationCommand.ts +++ b/clients/client-servicediscovery/src/commands/GetOperationCommand.ts @@ -77,32 +77,32 @@ export interface GetOperationCommandOutput extends GetOperationResponse, __Metad * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example Example: Get operation result * ```javascript * // Example: Get operation result * const input = { - * "OperationId": "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd" + * OperationId: "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd" * }; * const command = new GetOperationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Operation": { - * "CreateDate": 1587055860.121, - * "Id": "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd", - * "Status": "SUCCESS", - * "Targets": { - * "NAMESPACE": "ns-ylexjili4cdxy3xm" + * Operation: { + * CreateDate: 1.587055860121E9, + * Id: "gv4g5meo7ndmeh4fqskygvk23d2fijwa-k9302yzd", + * Status: "SUCCESS", + * Targets: { + * NAMESPACE: "ns-ylexjili4cdxy3xm" * }, - * "Type": "CREATE_NAMESPACE", - * "UpdateDate": 1587055900.469 + * Type: "CREATE_NAMESPACE", + * UpdateDate: 1.587055900469E9 * } * } * *\/ - * // example id: example-get-operation-result-1587073807124 * ``` * + * @public */ export class GetOperationCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/GetServiceAttributesCommand.ts b/clients/client-servicediscovery/src/commands/GetServiceAttributesCommand.ts index b76e078b50f2f..b7175b116a3c0 100644 --- a/clients/client-servicediscovery/src/commands/GetServiceAttributesCommand.ts +++ b/clients/client-servicediscovery/src/commands/GetServiceAttributesCommand.ts @@ -67,28 +67,28 @@ export interface GetServiceAttributesCommandOutput extends GetServiceAttributesR * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example GetServiceAttributes Example * ```javascript * // This example gets the attributes for a specified service. * const input = { - * "ServiceId": "srv-e4anhexample0004" + * ServiceId: "srv-e4anhexample0004" * }; * const command = new GetServiceAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ServiceAttributes": { - * "Attributes": { - * "port": "80" + * ServiceAttributes: { + * Attributes: { + * port: "80" * }, - * "ServiceArn": "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-e4anhexample0004" + * ServiceArn: "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-e4anhexample0004" * } * } * *\/ - * // example id: get-service-attributes-example-1590117234294 * ``` * + * @public */ export class GetServiceAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/GetServiceCommand.ts b/clients/client-servicediscovery/src/commands/GetServiceCommand.ts index 0776194a0c48e..416484bec963a 100644 --- a/clients/client-servicediscovery/src/commands/GetServiceCommand.ts +++ b/clients/client-servicediscovery/src/commands/GetServiceCommand.ts @@ -90,36 +90,8 @@ export interface GetServiceCommandOutput extends GetServiceResponse, __MetadataB * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public - * @example GetService Example - * ```javascript - * // This example gets the settings for a specified service. - * const input = { - * "Id": "srv-e4anhexample0004" - * }; - * const command = new GetServiceCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Service": { - * "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-e4anhexample0004", - * "CreateDate": "20181118T211707Z", - * "CreatorRequestId": "example-creator-request-id-0004", - * "Description": "Example.com AWS Cloud Map HTTP Service", - * "HealthCheckConfig": { - * "FailureThreshold": 3, - * "ResourcePath": "/", - * "Type": "HTTPS" - * }, - * "Id": "srv-e4anhexample0004", - * "Name": "example-http-service", - * "NamespaceId": "ns-e4anhexample0004" - * } - * } - * *\/ - * // example id: getservice-example-1590117234294 - * ``` * + * @public */ export class GetServiceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/ListInstancesCommand.ts b/clients/client-servicediscovery/src/commands/ListInstancesCommand.ts index 82c1bd26c2a35..92fe2979e24e3 100644 --- a/clients/client-servicediscovery/src/commands/ListInstancesCommand.ts +++ b/clients/client-servicediscovery/src/commands/ListInstancesCommand.ts @@ -72,31 +72,31 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example Example: List service instances * ```javascript * // Example: List service instances * const input = { - * "ServiceId": "srv-qzpwvt2tfqcegapy" + * ServiceId: "srv-qzpwvt2tfqcegapy" * }; * const command = new ListInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Instances": [ + * Instances: [ * { - * "Attributes": { - * "AWS_INSTANCE_IPV4": "172.2.1.3", - * "AWS_INSTANCE_PORT": "808" + * Attributes: { + * AWS_INSTANCE_IPV4: "172.2.1.3", + * AWS_INSTANCE_PORT: "808" * }, - * "Id": "i-06bdabbae60f65a4e" + * Id: "i-06bdabbae60f65a4e" * } * ] * } * *\/ - * // example id: example-list-service-instances-1587236237008 * ``` * + * @public */ export class ListInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/ListNamespacesCommand.ts b/clients/client-servicediscovery/src/commands/ListNamespacesCommand.ts index 0fc2f2ec52cb2..36caa6fe442c9 100644 --- a/clients/client-servicediscovery/src/commands/ListNamespacesCommand.ts +++ b/clients/client-servicediscovery/src/commands/ListNamespacesCommand.ts @@ -91,66 +91,66 @@ export interface ListNamespacesCommandOutput extends ListNamespacesResponse, __M * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example Example: List namespaces * ```javascript * // Example: List namespaces - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListNamespacesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Namespaces": [ + * Namespaces: [ * { - * "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-a3ccy2e7e3a7rile", - * "CreateDate": 1585354387.357, - * "Id": "ns-a3ccy2e7e3a7rile", - * "Name": "local", - * "Properties": { - * "DnsProperties": { - * "HostedZoneId": "Z06752353VBUDTC32S84S" + * Arn: "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-a3ccy2e7e3a7rile", + * CreateDate: 1.585354387357E9, + * Id: "ns-a3ccy2e7e3a7rile", + * Name: "local", + * Properties: { + * DnsProperties: { + * HostedZoneId: "Z06752353VBUDTC32S84S" * }, - * "HttpProperties": { - * "HttpName": "local" + * HttpProperties: { + * HttpName: "local" * } * }, - * "Type": "DNS_PRIVATE" + * Type: "DNS_PRIVATE" * }, * { - * "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-pocfyjtrsmwtvcxx", - * "CreateDate": 1586468974.698, - * "Description": "My second namespace", - * "Id": "ns-pocfyjtrsmwtvcxx", - * "Name": "My-second-namespace", - * "Properties": { - * "DnsProperties": {}, - * "HttpProperties": { - * "HttpName": "My-second-namespace" + * Arn: "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-pocfyjtrsmwtvcxx", + * CreateDate: 1.586468974698E9, + * Description: "My second namespace", + * Id: "ns-pocfyjtrsmwtvcxx", + * Name: "My-second-namespace", + * Properties: { + * DnsProperties: { /* empty *\/ }, + * HttpProperties: { + * HttpName: "My-second-namespace" * } * }, - * "Type": "HTTP" + * Type: "HTTP" * }, * { - * "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-ylexjili4cdxy3xm", - * "CreateDate": 1587055896.798, - * "Id": "ns-ylexjili4cdxy3xm", - * "Name": "example.com", - * "Properties": { - * "DnsProperties": { - * "HostedZoneId": "Z09983722P0QME1B3KC8I" + * Arn: "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-ylexjili4cdxy3xm", + * CreateDate: 1.587055896798E9, + * Id: "ns-ylexjili4cdxy3xm", + * Name: "example.com", + * Properties: { + * DnsProperties: { + * HostedZoneId: "Z09983722P0QME1B3KC8I" * }, - * "HttpProperties": { - * "HttpName": "example.com" + * HttpProperties: { + * HttpName: "example.com" * } * }, - * "Type": "DNS_PRIVATE" + * Type: "DNS_PRIVATE" * } * ] * } * *\/ - * // example id: example-list-namespaces-1587401553154 * ``` * + * @public */ export class ListNamespacesCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/ListOperationsCommand.ts b/clients/client-servicediscovery/src/commands/ListOperationsCommand.ts index 128cf92c9bf1c..fe3b80d0bf5f0 100644 --- a/clients/client-servicediscovery/src/commands/ListOperationsCommand.ts +++ b/clients/client-servicediscovery/src/commands/ListOperationsCommand.ts @@ -75,16 +75,16 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example ListOperations Example * ```javascript * // This example gets the operations that have a STATUS of either PENDING or SUCCESS. * const input = { - * "Filters": [ + * Filters: [ * { - * "Condition": "IN", - * "Name": "STATUS", - * "Values": [ + * Condition: "IN", + * Name: "STATUS", + * Values: [ * "PENDING", * "SUCCESS" * ] @@ -93,27 +93,27 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M * }; * const command = new ListOperationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Operations": [ + * Operations: [ * { - * "Id": "76yy8ovhpdz0plmjzbsnqgnrqvpv2qdt-kexample", - * "Status": "SUCCESS" + * Id: "76yy8ovhpdz0plmjzbsnqgnrqvpv2qdt-kexample", + * Status: "SUCCESS" * }, * { - * "Id": "prysnyzpji3u2ciy45nke83x2zanl7yk-dexample", - * "Status": "SUCCESS" + * Id: "prysnyzpji3u2ciy45nke83x2zanl7yk-dexample", + * Status: "SUCCESS" * }, * { - * "Id": "ko4ekftir7kzlbechsh7xvcdgcpk66gh-7example", - * "Status": "PENDING" + * Id: "ko4ekftir7kzlbechsh7xvcdgcpk66gh-7example", + * Status: "PENDING" * } * ] * } * *\/ - * // example id: listoperations-example-1590117354396 * ``` * + * @public */ export class ListOperationsCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/ListServicesCommand.ts b/clients/client-servicediscovery/src/commands/ListServicesCommand.ts index 95b74ce7646b4..8e6df1a8821fc 100644 --- a/clients/client-servicediscovery/src/commands/ListServicesCommand.ts +++ b/clients/client-servicediscovery/src/commands/ListServicesCommand.ts @@ -99,37 +99,37 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example Example: List services * ```javascript * // Example: List services - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListServicesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Services": [ + * Services: [ * { - * "Arn": "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-p5zdwlg5uvvzjita", - * "CreateDate": 1587081768.334, - * "DnsConfig": { - * "DnsRecords": [ + * Arn: "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-p5zdwlg5uvvzjita", + * CreateDate: 1.587081768334E9, + * DnsConfig: { + * DnsRecords: [ * { - * "TTL": 60, - * "Type": "A" + * TTL: 60, + * Type: "A" * } * ], - * "RoutingPolicy": "MULTIVALUE" + * RoutingPolicy: "MULTIVALUE" * }, - * "Id": "srv-p5zdwlg5uvvzjita", - * "Name": "myservice" + * Id: "srv-p5zdwlg5uvvzjita", + * Name: "myservice" * } * ] * } * *\/ - * // example id: example-list-services-1587236889840 * ``` * + * @public */ export class ListServicesCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/ListTagsForResourceCommand.ts b/clients/client-servicediscovery/src/commands/ListTagsForResourceCommand.ts index 815332017fa6a..24e8692ec4163 100644 --- a/clients/client-servicediscovery/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-servicediscovery/src/commands/ListTagsForResourceCommand.ts @@ -67,32 +67,32 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example ListTagsForResource example * ```javascript * // This example lists the tags of a resource. * const input = { - * "ResourceARN": "arn:aws:servicediscovery:us-east-1:123456789012:namespace/ns-ylexjili4cdxy3xm" + * ResourceARN: "arn:aws:servicediscovery:us-east-1:123456789012:namespace/ns-ylexjili4cdxy3xm" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Tags": [ + * Tags: [ * { - * "Key": "Project", - * "Value": "Zeta" + * Key: "Project", + * Value: "Zeta" * }, * { - * "Key": "Department", - * "Value": "Engineering" + * Key: "Department", + * Value: "Engineering" * } * ] * } * *\/ - * // example id: listtagsforresource-example-1590093928416 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/RegisterInstanceCommand.ts b/clients/client-servicediscovery/src/commands/RegisterInstanceCommand.ts index 8ad07fffa0ce9..a534e03addcf2 100644 --- a/clients/client-servicediscovery/src/commands/RegisterInstanceCommand.ts +++ b/clients/client-servicediscovery/src/commands/RegisterInstanceCommand.ts @@ -116,29 +116,29 @@ export interface RegisterInstanceCommandOutput extends RegisterInstanceResponse, * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example Example: Register Instance * ```javascript * // Example: Register Instance * const input = { - * "Attributes": { - * "AWS_INSTANCE_IPV4": "172.2.1.3", - * "AWS_INSTANCE_PORT": "808" + * Attributes: { + * AWS_INSTANCE_IPV4: "172.2.1.3", + * AWS_INSTANCE_PORT: "808" * }, - * "CreatorRequestId": "7a48a98a-72e6-4849-bfa7-1a458e030d7b", - * "InstanceId": "myservice-53", - * "ServiceId": "srv-p5zdwlg5uvvzjita" + * CreatorRequestId: "7a48a98a-72e6-4849-bfa7-1a458e030d7b", + * InstanceId: "myservice-53", + * ServiceId: "srv-p5zdwlg5uvvzjita" * }; * const command = new RegisterInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OperationId": "4yejorelbukcjzpnr6tlmrghsjwpngf4-k95yg2u7" + * OperationId: "4yejorelbukcjzpnr6tlmrghsjwpngf4-k95yg2u7" * } * *\/ - * // example id: example-register-instance-1587236116314 * ``` * + * @public */ export class RegisterInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/TagResourceCommand.ts b/clients/client-servicediscovery/src/commands/TagResourceCommand.ts index 0674015fc8f32..001cee4d289a4 100644 --- a/clients/client-servicediscovery/src/commands/TagResourceCommand.ts +++ b/clients/client-servicediscovery/src/commands/TagResourceCommand.ts @@ -70,28 +70,31 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example TagResource example * ```javascript * // This example adds "Department" and "Project" tags to a resource. * const input = { - * "ResourceARN": "arn:aws:servicediscovery:us-east-1:123456789012:namespace/ns-ylexjili4cdxy3xm", - * "Tags": [ + * ResourceARN: "arn:aws:servicediscovery:us-east-1:123456789012:namespace/ns-ylexjili4cdxy3xm", + * Tags: [ * { - * "Key": "Department", - * "Value": "Engineering" + * Key: "Department", + * Value: "Engineering" * }, * { - * "Key": "Project", - * "Value": "Zeta" + * Key: "Project", + * Value: "Zeta" * } * ] * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: tagresource-example-1590093532240 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/UntagResourceCommand.ts b/clients/client-servicediscovery/src/commands/UntagResourceCommand.ts index be50c588132ce..0d94fc7257666 100644 --- a/clients/client-servicediscovery/src/commands/UntagResourceCommand.ts +++ b/clients/client-servicediscovery/src/commands/UntagResourceCommand.ts @@ -63,22 +63,25 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example UntagResource example * ```javascript * // This example removes the "Department" and "Project" tags from a resource. * const input = { - * "ResourceARN": "arn:aws:servicediscovery:us-east-1:123456789012:namespace/ns-ylexjili4cdxy3xm", - * "TagKeys": [ + * ResourceARN: "arn:aws:servicediscovery:us-east-1:123456789012:namespace/ns-ylexjili4cdxy3xm", + * TagKeys: [ * "Project", * "Department" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: untagresource-example-1590094024672 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/UpdateHttpNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/UpdateHttpNamespaceCommand.ts index ed626cc24f5d1..bf6134c02862c 100644 --- a/clients/client-servicediscovery/src/commands/UpdateHttpNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/UpdateHttpNamespaceCommand.ts @@ -74,26 +74,26 @@ export interface UpdateHttpNamespaceCommandOutput extends UpdateHttpNamespaceRes * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example To update a HTTP namespace * ```javascript * // The following example updates the description of a HTTP namespace. * const input = { - * "Id": "ns-vh4nbmEXAMPLE", - * "Namespace": { - * "Description": "The updated namespace description." + * Id: "ns-vh4nbmEXAMPLE", + * Namespace: { + * Description: "The updated namespace description." * } * }; * const command = new UpdateHttpNamespaceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OperationId": "ft52xe2koxhoeormaceymagglsdjyvEXAMPLE" + * OperationId: "ft52xe2koxhoeormaceymagglsdjyvEXAMPLE" * } * *\/ - * // example id: to-update-a-http-namespace-17128EXAMPLE * ``` * + * @public */ export class UpdateHttpNamespaceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/UpdateInstanceCustomHealthStatusCommand.ts b/clients/client-servicediscovery/src/commands/UpdateInstanceCustomHealthStatusCommand.ts index 18158cd17efc1..a97e6133399a3 100644 --- a/clients/client-servicediscovery/src/commands/UpdateInstanceCustomHealthStatusCommand.ts +++ b/clients/client-servicediscovery/src/commands/UpdateInstanceCustomHealthStatusCommand.ts @@ -77,20 +77,23 @@ export interface UpdateInstanceCustomHealthStatusCommandOutput extends __Metadat * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example UpdateInstanceCustomHealthStatus Example * ```javascript * // This example submits a request to change the health status of an instance associated with a service with a custom health check to HEALTHY. * const input = { - * "InstanceId": "i-abcd1234", - * "ServiceId": "srv-e4anhexample0004", - * "Status": "HEALTHY" + * InstanceId: "i-abcd1234", + * ServiceId: "srv-e4anhexample0004", + * Status: "HEALTHY" * }; * const command = new UpdateInstanceCustomHealthStatusCommand(input); - * await client.send(command); - * // example id: updateinstancecustomhealthstatus-example-1590118408574 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateInstanceCustomHealthStatusCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/UpdatePrivateDnsNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/UpdatePrivateDnsNamespaceCommand.ts index af5a3f9c940d5..701de38f1d478 100644 --- a/clients/client-servicediscovery/src/commands/UpdatePrivateDnsNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/UpdatePrivateDnsNamespaceCommand.ts @@ -81,47 +81,46 @@ export interface UpdatePrivateDnsNamespaceCommandOutput extends UpdatePrivateDns * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public - * @example To update a public DNS namespace + * + * @example To update a private DNS namespace * ```javascript - * // The following example updates the description of a public DNS namespace. + * // The following example updates the description of a private DNS namespace. * const input = { - * "Id": "ns-bk3aEXAMPLE", - * "Namespace": { - * "Description": "The updated namespace description." + * Id: "ns-bk3aEXAMPLE", + * Namespace: { + * Description: "The updated namespace description." * }, - * "UpdaterRequestId": "" + * UpdaterRequestId: "" * }; * const command = new UpdatePrivateDnsNamespaceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OperationId": "ft52xe2koxhoeormaceymagglsdjEXAMPLE" + * OperationId: "ft52xe2koxhoeormaceymagglsdjyvEXAMPLE" * } * *\/ - * // example id: to-update-a-public-dns-namespace-1712868389604 * ``` * - * @example To update a private DNS namespace + * @example To update a public DNS namespace * ```javascript - * // The following example updates the description of a private DNS namespace. + * // The following example updates the description of a public DNS namespace. * const input = { - * "Id": "ns-bk3aEXAMPLE", - * "Namespace": { - * "Description": "The updated namespace description." + * Id: "ns-bk3aEXAMPLE", + * Namespace: { + * Description: "The updated namespace description." * }, - * "UpdaterRequestId": "" + * UpdaterRequestId: "" * }; * const command = new UpdatePrivateDnsNamespaceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OperationId": "ft52xe2koxhoeormaceymagglsdjyvEXAMPLE" + * OperationId: "ft52xe2koxhoeormaceymagglsdjEXAMPLE" * } * *\/ - * // example id: to-update-a-private-dns-namespace-1712868389604 * ``` * + * @public */ export class UpdatePrivateDnsNamespaceCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/UpdatePublicDnsNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/UpdatePublicDnsNamespaceCommand.ts index 195dd77372628..a914de9e21caf 100644 --- a/clients/client-servicediscovery/src/commands/UpdatePublicDnsNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/UpdatePublicDnsNamespaceCommand.ts @@ -81,6 +81,7 @@ export interface UpdatePublicDnsNamespaceCommandOutput extends UpdatePublicDnsNa * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* + * * @public */ export class UpdatePublicDnsNamespaceCommand extends $Command diff --git a/clients/client-servicediscovery/src/commands/UpdateServiceAttributesCommand.ts b/clients/client-servicediscovery/src/commands/UpdateServiceAttributesCommand.ts index bc24679253be8..a3f4e145bfd2a 100644 --- a/clients/client-servicediscovery/src/commands/UpdateServiceAttributesCommand.ts +++ b/clients/client-servicediscovery/src/commands/UpdateServiceAttributesCommand.ts @@ -66,21 +66,24 @@ export interface UpdateServiceAttributesCommandOutput extends UpdateServiceAttri * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example UpdateServiceAttributes Example * ```javascript * // This example submits a request to update the specified service to add a port attribute with the value 80. * const input = { - * "Attributes": { - * "port": "80" + * Attributes: { + * port: "80" * }, - * "ServiceId": "srv-e4anhexample0004" + * ServiceId: "srv-e4anhexample0004" * }; * const command = new UpdateServiceAttributesCommand(input); - * await client.send(command); - * // example id: update-service-attributes-example-1590117830880 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UpdateServiceAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-servicediscovery/src/commands/UpdateServiceCommand.ts b/clients/client-servicediscovery/src/commands/UpdateServiceCommand.ts index 8fd9eea0c5c3f..9d5dd848dc029 100644 --- a/clients/client-servicediscovery/src/commands/UpdateServiceCommand.ts +++ b/clients/client-servicediscovery/src/commands/UpdateServiceCommand.ts @@ -105,38 +105,38 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met * @throws {@link ServiceDiscoveryServiceException} *

Base exception class for all service exceptions from ServiceDiscovery service.

* - * @public + * * @example UpdateService Example * ```javascript * // This example submits a request to replace the DnsConfig and HealthCheckConfig settings of a specified service. * const input = { - * "Id": "srv-e4anhexample0004", - * "Service": { - * "DnsConfig": { - * "DnsRecords": [ + * Id: "srv-e4anhexample0004", + * Service: { + * DnsConfig: { + * DnsRecords: [ * { - * "TTL": 60, - * "Type": "A" + * TTL: 60, + * Type: "A" * } * ] * }, - * "HealthCheckConfig": { - * "FailureThreshold": 2, - * "ResourcePath": "/", - * "Type": "HTTP" + * HealthCheckConfig: { + * FailureThreshold: 2, + * ResourcePath: "/", + * Type: "HTTP" * } * } * }; * const command = new UpdateServiceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "OperationId": "m35hsdrkxwjffm3xef4bxyy6vc3ewakx-jdn3y5g5" + * OperationId: "m35hsdrkxwjffm3xef4bxyy6vc3ewakx-jdn3y5g5" * } * *\/ - * // example id: updateservice-example-1590117830880 * ``` * + * @public */ export class UpdateServiceCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/CloneReceiptRuleSetCommand.ts b/clients/client-ses/src/commands/CloneReceiptRuleSetCommand.ts index f67543b93f6b2..95369576a0537 100644 --- a/clients/client-ses/src/commands/CloneReceiptRuleSetCommand.ts +++ b/clients/client-ses/src/commands/CloneReceiptRuleSetCommand.ts @@ -69,19 +69,22 @@ export interface CloneReceiptRuleSetCommandOutput extends CloneReceiptRuleSetRes * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example CloneReceiptRuleSet * ```javascript * // The following example creates a receipt rule set by cloning an existing one: * const input = { - * "OriginalRuleSetName": "RuleSetToClone", - * "RuleSetName": "RuleSetToCreate" + * OriginalRuleSetName: "RuleSetToClone", + * RuleSetName: "RuleSetToCreate" * }; * const command = new CloneReceiptRuleSetCommand(input); - * await client.send(command); - * // example id: clonereceiptruleset-1469055039770 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CloneReceiptRuleSetCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/CreateConfigurationSetCommand.ts b/clients/client-ses/src/commands/CreateConfigurationSetCommand.ts index 78efd198dbcf7..3f27c32002532 100644 --- a/clients/client-ses/src/commands/CreateConfigurationSetCommand.ts +++ b/clients/client-ses/src/commands/CreateConfigurationSetCommand.ts @@ -72,6 +72,7 @@ export interface CreateConfigurationSetCommandOutput extends CreateConfiguration * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class CreateConfigurationSetCommand extends $Command diff --git a/clients/client-ses/src/commands/CreateConfigurationSetEventDestinationCommand.ts b/clients/client-ses/src/commands/CreateConfigurationSetEventDestinationCommand.ts index 840e06c26e791..ae6fe436c05d4 100644 --- a/clients/client-ses/src/commands/CreateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-ses/src/commands/CreateConfigurationSetEventDestinationCommand.ts @@ -118,6 +118,7 @@ export interface CreateConfigurationSetEventDestinationCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class CreateConfigurationSetEventDestinationCommand extends $Command diff --git a/clients/client-ses/src/commands/CreateConfigurationSetTrackingOptionsCommand.ts b/clients/client-ses/src/commands/CreateConfigurationSetTrackingOptionsCommand.ts index ebfc9147a595e..239d48beb65f8 100644 --- a/clients/client-ses/src/commands/CreateConfigurationSetTrackingOptionsCommand.ts +++ b/clients/client-ses/src/commands/CreateConfigurationSetTrackingOptionsCommand.ts @@ -89,6 +89,7 @@ export interface CreateConfigurationSetTrackingOptionsCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class CreateConfigurationSetTrackingOptionsCommand extends $Command diff --git a/clients/client-ses/src/commands/CreateCustomVerificationEmailTemplateCommand.ts b/clients/client-ses/src/commands/CreateCustomVerificationEmailTemplateCommand.ts index b5812f12a640b..9e3a6352e1730 100644 --- a/clients/client-ses/src/commands/CreateCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-ses/src/commands/CreateCustomVerificationEmailTemplateCommand.ts @@ -82,6 +82,7 @@ export interface CreateCustomVerificationEmailTemplateCommandOutput extends __Me * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class CreateCustomVerificationEmailTemplateCommand extends $Command diff --git a/clients/client-ses/src/commands/CreateReceiptFilterCommand.ts b/clients/client-ses/src/commands/CreateReceiptFilterCommand.ts index ca6d0262e8252..0224892be95a2 100644 --- a/clients/client-ses/src/commands/CreateReceiptFilterCommand.ts +++ b/clients/client-ses/src/commands/CreateReceiptFilterCommand.ts @@ -70,24 +70,27 @@ export interface CreateReceiptFilterCommandOutput extends CreateReceiptFilterRes * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example CreateReceiptFilter * ```javascript * // The following example creates a new IP address filter: * const input = { - * "Filter": { - * "IpFilter": { - * "Cidr": "1.2.3.4/24", - * "Policy": "Allow" + * Filter: { + * IpFilter: { + * Cidr: "1.2.3.4/24", + * Policy: "Allow" * }, - * "Name": "MyFilter" + * Name: "MyFilter" * } * }; * const command = new CreateReceiptFilterCommand(input); - * await client.send(command); - * // example id: createreceiptfilter-1469122681253 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateReceiptFilterCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/CreateReceiptRuleCommand.ts b/clients/client-ses/src/commands/CreateReceiptRuleCommand.ts index 99b899e0b1a7e..1ff815b115441 100644 --- a/clients/client-ses/src/commands/CreateReceiptRuleCommand.ts +++ b/clients/client-ses/src/commands/CreateReceiptRuleCommand.ts @@ -141,33 +141,36 @@ export interface CreateReceiptRuleCommandOutput extends CreateReceiptRuleRespons * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example CreateReceiptRule * ```javascript * // The following example creates a new receipt rule: * const input = { - * "After": "", - * "Rule": { - * "Actions": [ + * After: "", + * Rule: { + * Actions: [ * { - * "S3Action": { - * "BucketName": "MyBucket", - * "ObjectKeyPrefix": "email" + * S3Action: { + * BucketName: "MyBucket", + * ObjectKeyPrefix: "email" * } * } * ], - * "Enabled": true, - * "Name": "MyRule", - * "ScanEnabled": true, - * "TlsPolicy": "Optional" + * Enabled: true, + * Name: "MyRule", + * ScanEnabled: true, + * TlsPolicy: "Optional" * }, - * "RuleSetName": "MyRuleSet" + * RuleSetName: "MyRuleSet" * }; * const command = new CreateReceiptRuleCommand(input); - * await client.send(command); - * // example id: createreceiptrule-1469122946515 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateReceiptRuleCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/CreateReceiptRuleSetCommand.ts b/clients/client-ses/src/commands/CreateReceiptRuleSetCommand.ts index ee711d803a073..b2be332f69b39 100644 --- a/clients/client-ses/src/commands/CreateReceiptRuleSetCommand.ts +++ b/clients/client-ses/src/commands/CreateReceiptRuleSetCommand.ts @@ -63,18 +63,21 @@ export interface CreateReceiptRuleSetCommandOutput extends CreateReceiptRuleSetR * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example CreateReceiptRuleSet * ```javascript * // The following example creates an empty receipt rule set: * const input = { - * "RuleSetName": "MyRuleSet" + * RuleSetName: "MyRuleSet" * }; * const command = new CreateReceiptRuleSetCommand(input); - * await client.send(command); - * // example id: createreceiptruleset-1469058761646 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CreateReceiptRuleSetCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/CreateTemplateCommand.ts b/clients/client-ses/src/commands/CreateTemplateCommand.ts index ff7e1ed953de3..b8de652f8e8d3 100644 --- a/clients/client-ses/src/commands/CreateTemplateCommand.ts +++ b/clients/client-ses/src/commands/CreateTemplateCommand.ts @@ -73,6 +73,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class CreateTemplateCommand extends $Command diff --git a/clients/client-ses/src/commands/DeleteConfigurationSetCommand.ts b/clients/client-ses/src/commands/DeleteConfigurationSetCommand.ts index ce7c7219cb1a2..ec7296916633a 100644 --- a/clients/client-ses/src/commands/DeleteConfigurationSetCommand.ts +++ b/clients/client-ses/src/commands/DeleteConfigurationSetCommand.ts @@ -59,6 +59,7 @@ export interface DeleteConfigurationSetCommandOutput extends DeleteConfiguration * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class DeleteConfigurationSetCommand extends $Command diff --git a/clients/client-ses/src/commands/DeleteConfigurationSetEventDestinationCommand.ts b/clients/client-ses/src/commands/DeleteConfigurationSetEventDestinationCommand.ts index 8855fb6feb222..b08df406eb4d7 100644 --- a/clients/client-ses/src/commands/DeleteConfigurationSetEventDestinationCommand.ts +++ b/clients/client-ses/src/commands/DeleteConfigurationSetEventDestinationCommand.ts @@ -73,6 +73,7 @@ export interface DeleteConfigurationSetEventDestinationCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class DeleteConfigurationSetEventDestinationCommand extends $Command diff --git a/clients/client-ses/src/commands/DeleteConfigurationSetTrackingOptionsCommand.ts b/clients/client-ses/src/commands/DeleteConfigurationSetTrackingOptionsCommand.ts index 695ea56cb856b..2401987e16ce4 100644 --- a/clients/client-ses/src/commands/DeleteConfigurationSetTrackingOptionsCommand.ts +++ b/clients/client-ses/src/commands/DeleteConfigurationSetTrackingOptionsCommand.ts @@ -77,6 +77,7 @@ export interface DeleteConfigurationSetTrackingOptionsCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class DeleteConfigurationSetTrackingOptionsCommand extends $Command diff --git a/clients/client-ses/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts b/clients/client-ses/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts index f40630feadeb0..a15526ae9d811 100644 --- a/clients/client-ses/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-ses/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts @@ -61,6 +61,7 @@ export interface DeleteCustomVerificationEmailTemplateCommandOutput extends __Me * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class DeleteCustomVerificationEmailTemplateCommand extends $Command diff --git a/clients/client-ses/src/commands/DeleteIdentityCommand.ts b/clients/client-ses/src/commands/DeleteIdentityCommand.ts index b96abd31fec53..6fc63cf6c198d 100644 --- a/clients/client-ses/src/commands/DeleteIdentityCommand.ts +++ b/clients/client-ses/src/commands/DeleteIdentityCommand.ts @@ -55,18 +55,21 @@ export interface DeleteIdentityCommandOutput extends DeleteIdentityResponse, __M * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example DeleteIdentity * ```javascript * // The following example deletes an identity from the list of identities that have been submitted for verification with Amazon SES: * const input = { - * "Identity": "user@example.com" + * Identity: "user@example.com" * }; * const command = new DeleteIdentityCommand(input); - * await client.send(command); - * // example id: deleteidentity-1469047858906 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteIdentityCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/DeleteIdentityPolicyCommand.ts b/clients/client-ses/src/commands/DeleteIdentityPolicyCommand.ts index 1007fea4f9c08..e37b05fc08aa1 100644 --- a/clients/client-ses/src/commands/DeleteIdentityPolicyCommand.ts +++ b/clients/client-ses/src/commands/DeleteIdentityPolicyCommand.ts @@ -65,19 +65,22 @@ export interface DeleteIdentityPolicyCommandOutput extends DeleteIdentityPolicyR * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example DeleteIdentityPolicy * ```javascript * // The following example deletes a sending authorization policy for an identity: * const input = { - * "Identity": "user@example.com", - * "PolicyName": "MyPolicy" + * Identity: "user@example.com", + * PolicyName: "MyPolicy" * }; * const command = new DeleteIdentityPolicyCommand(input); - * await client.send(command); - * // example id: deleteidentitypolicy-1469055282499 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteIdentityPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/DeleteReceiptFilterCommand.ts b/clients/client-ses/src/commands/DeleteReceiptFilterCommand.ts index ca391f7210968..1092575146965 100644 --- a/clients/client-ses/src/commands/DeleteReceiptFilterCommand.ts +++ b/clients/client-ses/src/commands/DeleteReceiptFilterCommand.ts @@ -56,18 +56,21 @@ export interface DeleteReceiptFilterCommandOutput extends DeleteReceiptFilterRes * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example DeleteReceiptFilter * ```javascript * // The following example deletes an IP address filter: * const input = { - * "FilterName": "MyFilter" + * FilterName: "MyFilter" * }; * const command = new DeleteReceiptFilterCommand(input); - * await client.send(command); - * // example id: deletereceiptfilter-1469055456835 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteReceiptFilterCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/DeleteReceiptRuleCommand.ts b/clients/client-ses/src/commands/DeleteReceiptRuleCommand.ts index 84a2f31bb070f..2b06616ccbd51 100644 --- a/clients/client-ses/src/commands/DeleteReceiptRuleCommand.ts +++ b/clients/client-ses/src/commands/DeleteReceiptRuleCommand.ts @@ -60,19 +60,22 @@ export interface DeleteReceiptRuleCommandOutput extends DeleteReceiptRuleRespons * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example DeleteReceiptRule * ```javascript * // The following example deletes a receipt rule: * const input = { - * "RuleName": "MyRule", - * "RuleSetName": "MyRuleSet" + * RuleName: "MyRule", + * RuleSetName: "MyRuleSet" * }; * const command = new DeleteReceiptRuleCommand(input); - * await client.send(command); - * // example id: deletereceiptrule-1469055563599 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteReceiptRuleCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/DeleteReceiptRuleSetCommand.ts b/clients/client-ses/src/commands/DeleteReceiptRuleSetCommand.ts index 00b406df3fb30..7255f72a263f7 100644 --- a/clients/client-ses/src/commands/DeleteReceiptRuleSetCommand.ts +++ b/clients/client-ses/src/commands/DeleteReceiptRuleSetCommand.ts @@ -63,18 +63,21 @@ export interface DeleteReceiptRuleSetCommandOutput extends DeleteReceiptRuleSetR * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example DeleteReceiptRuleSet * ```javascript * // The following example deletes a receipt rule set: * const input = { - * "RuleSetName": "MyRuleSet" + * RuleSetName: "MyRuleSet" * }; * const command = new DeleteReceiptRuleSetCommand(input); - * await client.send(command); - * // example id: deletereceiptruleset-1469055713690 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteReceiptRuleSetCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/DeleteTemplateCommand.ts b/clients/client-ses/src/commands/DeleteTemplateCommand.ts index 5b5e67d64fade..1f5adb32cf084 100644 --- a/clients/client-ses/src/commands/DeleteTemplateCommand.ts +++ b/clients/client-ses/src/commands/DeleteTemplateCommand.ts @@ -54,6 +54,7 @@ export interface DeleteTemplateCommandOutput extends DeleteTemplateResponse, __M * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class DeleteTemplateCommand extends $Command diff --git a/clients/client-ses/src/commands/DeleteVerifiedEmailAddressCommand.ts b/clients/client-ses/src/commands/DeleteVerifiedEmailAddressCommand.ts index 195a7df7cb662..5a8b1c5f3fc61 100644 --- a/clients/client-ses/src/commands/DeleteVerifiedEmailAddressCommand.ts +++ b/clients/client-ses/src/commands/DeleteVerifiedEmailAddressCommand.ts @@ -54,18 +54,21 @@ export interface DeleteVerifiedEmailAddressCommandOutput extends __MetadataBeare * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example DeleteVerifiedEmailAddress * ```javascript * // The following example deletes an email address from the list of identities that have been submitted for verification with Amazon SES: * const input = { - * "EmailAddress": "user@example.com" + * EmailAddress: "user@example.com" * }; * const command = new DeleteVerifiedEmailAddressCommand(input); - * await client.send(command); - * // example id: deleteverifiedemailaddress-1469051086444 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class DeleteVerifiedEmailAddressCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/DescribeActiveReceiptRuleSetCommand.ts b/clients/client-ses/src/commands/DescribeActiveReceiptRuleSetCommand.ts index 06fc29ad12b6d..79b70909a77de 100644 --- a/clients/client-ses/src/commands/DescribeActiveReceiptRuleSetCommand.ts +++ b/clients/client-ses/src/commands/DescribeActiveReceiptRuleSetCommand.ts @@ -115,40 +115,40 @@ export interface DescribeActiveReceiptRuleSetCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example DescribeActiveReceiptRuleSet * ```javascript * // The following example returns the metadata and receipt rules for the receipt rule set that is currently active: - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeActiveReceiptRuleSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Metadata": { - * "CreatedTimestamp": "2016-07-15T16:25:59.607Z", - * "Name": "default-rule-set" + * Metadata: { + * CreatedTimestamp: "2016-07-15T16:25:59.607Z", + * Name: "default-rule-set" * }, - * "Rules": [ + * Rules: [ * { - * "Actions": [ + * Actions: [ * { - * "S3Action": { - * "BucketName": "MyBucket", - * "ObjectKeyPrefix": "email" + * S3Action: { + * BucketName: "MyBucket", + * ObjectKeyPrefix: "email" * } * } * ], - * "Enabled": true, - * "Name": "MyRule", - * "ScanEnabled": true, - * "TlsPolicy": "Optional" + * Enabled: true, + * Name: "MyRule", + * ScanEnabled: true, + * TlsPolicy: "Optional" * } * ] * } * *\/ - * // example id: describeactivereceiptruleset-1469121611502 * ``` * + * @public */ export class DescribeActiveReceiptRuleSetCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/DescribeConfigurationSetCommand.ts b/clients/client-ses/src/commands/DescribeConfigurationSetCommand.ts index 6ac406a852656..ba06dd9db003c 100644 --- a/clients/client-ses/src/commands/DescribeConfigurationSetCommand.ts +++ b/clients/client-ses/src/commands/DescribeConfigurationSetCommand.ts @@ -102,6 +102,7 @@ export interface DescribeConfigurationSetCommandOutput extends DescribeConfigura * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class DescribeConfigurationSetCommand extends $Command diff --git a/clients/client-ses/src/commands/DescribeReceiptRuleCommand.ts b/clients/client-ses/src/commands/DescribeReceiptRuleCommand.ts index b4453b23d2f62..fbe0075407231 100644 --- a/clients/client-ses/src/commands/DescribeReceiptRuleCommand.ts +++ b/clients/client-ses/src/commands/DescribeReceiptRuleCommand.ts @@ -116,37 +116,37 @@ export interface DescribeReceiptRuleCommandOutput extends DescribeReceiptRuleRes * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example DescribeReceiptRule * ```javascript * // The following example returns the details of a receipt rule: * const input = { - * "RuleName": "MyRule", - * "RuleSetName": "MyRuleSet" + * RuleName: "MyRule", + * RuleSetName: "MyRuleSet" * }; * const command = new DescribeReceiptRuleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Rule": { - * "Actions": [ + * Rule: { + * Actions: [ * { - * "S3Action": { - * "BucketName": "MyBucket", - * "ObjectKeyPrefix": "email" + * S3Action: { + * BucketName: "MyBucket", + * ObjectKeyPrefix: "email" * } * } * ], - * "Enabled": true, - * "Name": "MyRule", - * "ScanEnabled": true, - * "TlsPolicy": "Optional" + * Enabled: true, + * Name: "MyRule", + * ScanEnabled: true, + * TlsPolicy: "Optional" * } * } * *\/ - * // example id: describereceiptrule-1469055813118 * ``` * + * @public */ export class DescribeReceiptRuleCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/DescribeReceiptRuleSetCommand.ts b/clients/client-ses/src/commands/DescribeReceiptRuleSetCommand.ts index 78593f8118e00..144626947bb31 100644 --- a/clients/client-ses/src/commands/DescribeReceiptRuleSetCommand.ts +++ b/clients/client-ses/src/commands/DescribeReceiptRuleSetCommand.ts @@ -118,42 +118,42 @@ export interface DescribeReceiptRuleSetCommandOutput extends DescribeReceiptRule * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example DescribeReceiptRuleSet * ```javascript * // The following example returns the metadata and receipt rules of a receipt rule set: * const input = { - * "RuleSetName": "MyRuleSet" + * RuleSetName: "MyRuleSet" * }; * const command = new DescribeReceiptRuleSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Metadata": { - * "CreatedTimestamp": "2016-07-15T16:25:59.607Z", - * "Name": "MyRuleSet" + * Metadata: { + * CreatedTimestamp: "2016-07-15T16:25:59.607Z", + * Name: "MyRuleSet" * }, - * "Rules": [ + * Rules: [ * { - * "Actions": [ + * Actions: [ * { - * "S3Action": { - * "BucketName": "MyBucket", - * "ObjectKeyPrefix": "email" + * S3Action: { + * BucketName: "MyBucket", + * ObjectKeyPrefix: "email" * } * } * ], - * "Enabled": true, - * "Name": "MyRule", - * "ScanEnabled": true, - * "TlsPolicy": "Optional" + * Enabled: true, + * Name: "MyRule", + * ScanEnabled: true, + * TlsPolicy: "Optional" * } * ] * } * *\/ - * // example id: describereceiptruleset-1469121240385 * ``` * + * @public */ export class DescribeReceiptRuleSetCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/GetAccountSendingEnabledCommand.ts b/clients/client-ses/src/commands/GetAccountSendingEnabledCommand.ts index 078422004440a..2608c59896f20 100644 --- a/clients/client-ses/src/commands/GetAccountSendingEnabledCommand.ts +++ b/clients/client-ses/src/commands/GetAccountSendingEnabledCommand.ts @@ -54,21 +54,21 @@ export interface GetAccountSendingEnabledCommandOutput extends GetAccountSending * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example GetAccountSendingEnabled * ```javascript * // The following example returns if sending status for an account is enabled. (true / false): - * const input = {}; + * const input = { /* empty *\/ }; * const command = new GetAccountSendingEnabledCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Enabled": true + * Enabled: true * } * *\/ - * // example id: getaccountsendingenabled-1469047741333 * ``` * + * @public */ export class GetAccountSendingEnabledCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/GetCustomVerificationEmailTemplateCommand.ts b/clients/client-ses/src/commands/GetCustomVerificationEmailTemplateCommand.ts index 4f9ac954956f5..00111a12b1a61 100644 --- a/clients/client-ses/src/commands/GetCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-ses/src/commands/GetCustomVerificationEmailTemplateCommand.ts @@ -77,6 +77,7 @@ export interface GetCustomVerificationEmailTemplateCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class GetCustomVerificationEmailTemplateCommand extends $Command diff --git a/clients/client-ses/src/commands/GetIdentityDkimAttributesCommand.ts b/clients/client-ses/src/commands/GetIdentityDkimAttributesCommand.ts index e2fe45fd48ef9..2cf597fd9ebaa 100644 --- a/clients/client-ses/src/commands/GetIdentityDkimAttributesCommand.ts +++ b/clients/client-ses/src/commands/GetIdentityDkimAttributesCommand.ts @@ -88,40 +88,40 @@ export interface GetIdentityDkimAttributesCommandOutput extends GetIdentityDkimA * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example GetIdentityDkimAttributes * ```javascript * // The following example retrieves the Amazon SES Easy DKIM attributes for a list of identities: * const input = { - * "Identities": [ + * Identities: [ * "example.com", * "user@example.com" * ] * }; * const command = new GetIdentityDkimAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DkimAttributes": { - * "example.com": { - * "DkimEnabled": true, - * "DkimTokens": [ + * DkimAttributes: { + * example.com: { + * DkimEnabled: true, + * DkimTokens: [ * "EXAMPLEjcs5xoyqytjsotsijas7236gr", * "EXAMPLEjr76cvoc6mysspnioorxsn6ep", * "EXAMPLEkbmkqkhlm2lyz77ppkulerm4k" * ], - * "DkimVerificationStatus": "Success" + * DkimVerificationStatus: "Success" * }, - * "user@example.com": { - * "DkimEnabled": false, - * "DkimVerificationStatus": "NotStarted" + * user@example.com: { + * DkimEnabled: false, + * DkimVerificationStatus: "NotStarted" * } * } * } * *\/ - * // example id: getidentitydkimattributes-1469050695628 * ``` * + * @public */ export class GetIdentityDkimAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/GetIdentityMailFromDomainAttributesCommand.ts b/clients/client-ses/src/commands/GetIdentityMailFromDomainAttributesCommand.ts index 9b301449d17d5..d8dc126904baa 100644 --- a/clients/client-ses/src/commands/GetIdentityMailFromDomainAttributesCommand.ts +++ b/clients/client-ses/src/commands/GetIdentityMailFromDomainAttributesCommand.ts @@ -74,31 +74,31 @@ export interface GetIdentityMailFromDomainAttributesCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example GetIdentityMailFromDomainAttributes * ```javascript * // The following example returns the custom MAIL FROM attributes for an identity: * const input = { - * "Identities": [ + * Identities: [ * "example.com" * ] * }; * const command = new GetIdentityMailFromDomainAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "MailFromDomainAttributes": { - * "example.com": { - * "BehaviorOnMXFailure": "UseDefaultValue", - * "MailFromDomain": "bounces.example.com", - * "MailFromDomainStatus": "Success" + * MailFromDomainAttributes: { + * example.com: { + * BehaviorOnMXFailure: "UseDefaultValue", + * MailFromDomain: "bounces.example.com", + * MailFromDomainStatus: "Success" * } * } * } * *\/ - * // example id: getidentitymailfromdomainattributes-1469123114860 * ``` * + * @public */ export class GetIdentityMailFromDomainAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/GetIdentityNotificationAttributesCommand.ts b/clients/client-ses/src/commands/GetIdentityNotificationAttributesCommand.ts index 049736f6c9d4e..2759f3d9130d1 100644 --- a/clients/client-ses/src/commands/GetIdentityNotificationAttributesCommand.ts +++ b/clients/client-ses/src/commands/GetIdentityNotificationAttributesCommand.ts @@ -80,35 +80,35 @@ export interface GetIdentityNotificationAttributesCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example GetIdentityNotificationAttributes * ```javascript * // The following example returns the notification attributes for an identity: * const input = { - * "Identities": [ + * Identities: [ * "example.com" * ] * }; * const command = new GetIdentityNotificationAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NotificationAttributes": { - * "example.com": { - * "BounceTopic": "arn:aws:sns:us-east-1:EXAMPLE65304:ExampleTopic", - * "ComplaintTopic": "arn:aws:sns:us-east-1:EXAMPLE65304:ExampleTopic", - * "DeliveryTopic": "arn:aws:sns:us-east-1:EXAMPLE65304:ExampleTopic", - * "ForwardingEnabled": true, - * "HeadersInBounceNotificationsEnabled": false, - * "HeadersInComplaintNotificationsEnabled": false, - * "HeadersInDeliveryNotificationsEnabled": false + * NotificationAttributes: { + * example.com: { + * BounceTopic: "arn:aws:sns:us-east-1:EXAMPLE65304:ExampleTopic", + * ComplaintTopic: "arn:aws:sns:us-east-1:EXAMPLE65304:ExampleTopic", + * DeliveryTopic: "arn:aws:sns:us-east-1:EXAMPLE65304:ExampleTopic", + * ForwardingEnabled: true, + * HeadersInBounceNotificationsEnabled: false, + * HeadersInComplaintNotificationsEnabled: false, + * HeadersInDeliveryNotificationsEnabled: false * } * } * } * *\/ - * // example id: getidentitynotificationattributes-1469123466947 * ``` * + * @public */ export class GetIdentityNotificationAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/GetIdentityPoliciesCommand.ts b/clients/client-ses/src/commands/GetIdentityPoliciesCommand.ts index 13a7efd93f140..02b2042c8421a 100644 --- a/clients/client-ses/src/commands/GetIdentityPoliciesCommand.ts +++ b/clients/client-ses/src/commands/GetIdentityPoliciesCommand.ts @@ -71,28 +71,28 @@ export interface GetIdentityPoliciesCommandOutput extends GetIdentityPoliciesRes * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example GetIdentityPolicies * ```javascript * // The following example returns a sending authorization policy for an identity: * const input = { - * "Identity": "example.com", - * "PolicyNames": [ + * Identity: "example.com", + * PolicyNames: [ * "MyPolicy" * ] * }; * const command = new GetIdentityPoliciesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Policies": { - * "MyPolicy": "{\"Version\":\"2008-10-17\",\"Statement\":[{\"Sid\":\"stmt1469123904194\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::123456789012:root\"},\"Action\":[\"ses:SendEmail\",\"ses:SendRawEmail\"],\"Resource\":\"arn:aws:ses:us-east-1:EXAMPLE65304:identity/example.com\"}]}" + * Policies: { + * MyPolicy: `{"Version":"2008-10-17","Statement":[{"Sid":"stmt1469123904194","Effect":"Allow","Principal":{"AWS":"arn:aws:iam::123456789012:root"},"Action":["ses:SendEmail","ses:SendRawEmail"],"Resource":"arn:aws:ses:us-east-1:EXAMPLE65304:identity/example.com"}]}` * } * } * *\/ - * // example id: getidentitypolicies-1469123949351 * ``` * + * @public */ export class GetIdentityPoliciesCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/GetIdentityVerificationAttributesCommand.ts b/clients/client-ses/src/commands/GetIdentityVerificationAttributesCommand.ts index 368b8cf2a27d4..d4132c0f9bc1e 100644 --- a/clients/client-ses/src/commands/GetIdentityVerificationAttributesCommand.ts +++ b/clients/client-ses/src/commands/GetIdentityVerificationAttributesCommand.ts @@ -85,30 +85,30 @@ export interface GetIdentityVerificationAttributesCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example GetIdentityVerificationAttributes * ```javascript * // The following example returns the verification status and the verification token for a domain identity: * const input = { - * "Identities": [ + * Identities: [ * "example.com" * ] * }; * const command = new GetIdentityVerificationAttributesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "VerificationAttributes": { - * "example.com": { - * "VerificationStatus": "Success", - * "VerificationToken": "EXAMPLE3VYb9EDI2nTOQRi/Tf6MI/6bD6THIGiP1MVY=" + * VerificationAttributes: { + * example.com: { + * VerificationStatus: "Success", + * VerificationToken: "EXAMPLE3VYb9EDI2nTOQRi/Tf6MI/6bD6THIGiP1MVY=" * } * } * } * *\/ - * // example id: getidentityverificationattributes-1469124205897 * ``` * + * @public */ export class GetIdentityVerificationAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/GetSendQuotaCommand.ts b/clients/client-ses/src/commands/GetSendQuotaCommand.ts index 0f27f95ad0b06..23882bf7c3574 100644 --- a/clients/client-ses/src/commands/GetSendQuotaCommand.ts +++ b/clients/client-ses/src/commands/GetSendQuotaCommand.ts @@ -56,23 +56,23 @@ export interface GetSendQuotaCommandOutput extends GetSendQuotaResponse, __Metad * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example GetSendQuota * ```javascript * // The following example returns the Amazon SES sending limits for an AWS account: - * const input = {}; + * const input = { /* empty *\/ }; * const command = new GetSendQuotaCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Max24HourSend": 200, - * "MaxSendRate": 1, - * "SentLast24Hours": 1 + * Max24HourSend: 200, + * MaxSendRate: 1, + * SentLast24Hours: 1 * } * *\/ - * // example id: getsendquota-1469047324508 * ``` * + * @public */ export class GetSendQuotaCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/GetSendStatisticsCommand.ts b/clients/client-ses/src/commands/GetSendStatisticsCommand.ts index a82d9afdea20f..00b5ea2382a7d 100644 --- a/clients/client-ses/src/commands/GetSendStatisticsCommand.ts +++ b/clients/client-ses/src/commands/GetSendStatisticsCommand.ts @@ -64,43 +64,43 @@ export interface GetSendStatisticsCommandOutput extends GetSendStatisticsRespons * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example GetSendStatistics * ```javascript * // The following example returns Amazon SES sending statistics: - * const input = {}; + * const input = { /* empty *\/ }; * const command = new GetSendStatisticsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SendDataPoints": [ + * SendDataPoints: [ * { - * "Bounces": 0, - * "Complaints": 0, - * "DeliveryAttempts": 5, - * "Rejects": 0, - * "Timestamp": "2016-07-13T22:43:00Z" + * Bounces: 0, + * Complaints: 0, + * DeliveryAttempts: 5, + * Rejects: 0, + * Timestamp: "2016-07-13T22:43:00Z" * }, * { - * "Bounces": 0, - * "Complaints": 0, - * "DeliveryAttempts": 3, - * "Rejects": 0, - * "Timestamp": "2016-07-13T23:13:00Z" + * Bounces: 0, + * Complaints: 0, + * DeliveryAttempts: 3, + * Rejects: 0, + * Timestamp: "2016-07-13T23:13:00Z" * }, * { - * "Bounces": 0, - * "Complaints": 0, - * "DeliveryAttempts": 1, - * "Rejects": 0, - * "Timestamp": "2016-07-13T21:13:00Z" + * Bounces: 0, + * Complaints: 0, + * DeliveryAttempts: 1, + * Rejects: 0, + * Timestamp: "2016-07-13T21:13:00Z" * } * ] * } * *\/ - * // example id: getsendstatistics-1469047741329 * ``` * + * @public */ export class GetSendStatisticsCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/GetTemplateCommand.ts b/clients/client-ses/src/commands/GetTemplateCommand.ts index 553941d693536..203e019d14666 100644 --- a/clients/client-ses/src/commands/GetTemplateCommand.ts +++ b/clients/client-ses/src/commands/GetTemplateCommand.ts @@ -66,6 +66,7 @@ export interface GetTemplateCommandOutput extends GetTemplateResponse, __Metadat * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class GetTemplateCommand extends $Command diff --git a/clients/client-ses/src/commands/ListConfigurationSetsCommand.ts b/clients/client-ses/src/commands/ListConfigurationSetsCommand.ts index 2afbb4c0a292a..4dc954820b6b3 100644 --- a/clients/client-ses/src/commands/ListConfigurationSetsCommand.ts +++ b/clients/client-ses/src/commands/ListConfigurationSetsCommand.ts @@ -71,6 +71,7 @@ export interface ListConfigurationSetsCommandOutput extends ListConfigurationSet * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class ListConfigurationSetsCommand extends $Command diff --git a/clients/client-ses/src/commands/ListCustomVerificationEmailTemplatesCommand.ts b/clients/client-ses/src/commands/ListCustomVerificationEmailTemplatesCommand.ts index add8c6724ae69..53487ceb487eb 100644 --- a/clients/client-ses/src/commands/ListCustomVerificationEmailTemplatesCommand.ts +++ b/clients/client-ses/src/commands/ListCustomVerificationEmailTemplatesCommand.ts @@ -78,6 +78,7 @@ export interface ListCustomVerificationEmailTemplatesCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class ListCustomVerificationEmailTemplatesCommand extends $Command diff --git a/clients/client-ses/src/commands/ListIdentitiesCommand.ts b/clients/client-ses/src/commands/ListIdentitiesCommand.ts index f253ac7485ec3..ca07889357370 100644 --- a/clients/client-ses/src/commands/ListIdentitiesCommand.ts +++ b/clients/client-ses/src/commands/ListIdentitiesCommand.ts @@ -72,28 +72,28 @@ export interface ListIdentitiesCommandOutput extends ListIdentitiesResponse, __M * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example ListIdentities * ```javascript * // The following example lists the email address identities that have been submitted for verification with Amazon SES: * const input = { - * "IdentityType": "EmailAddress", - * "MaxItems": 123, - * "NextToken": "" + * IdentityType: "EmailAddress", + * MaxItems: 123, + * NextToken: "" * }; * const command = new ListIdentitiesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Identities": [ + * Identities: [ * "user@example.com" * ], - * "NextToken": "" + * NextToken: "" * } * *\/ - * // example id: listidentities-1469048638493 * ``` * + * @public */ export class ListIdentitiesCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/ListIdentityPoliciesCommand.ts b/clients/client-ses/src/commands/ListIdentityPoliciesCommand.ts index c7bd3bb5c4d8d..80f631ea96ad5 100644 --- a/clients/client-ses/src/commands/ListIdentityPoliciesCommand.ts +++ b/clients/client-ses/src/commands/ListIdentityPoliciesCommand.ts @@ -68,25 +68,25 @@ export interface ListIdentityPoliciesCommandOutput extends ListIdentityPoliciesR * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example ListIdentityPolicies * ```javascript * // The following example returns a list of sending authorization policies that are attached to an identity: * const input = { - * "Identity": "example.com" + * Identity: "example.com" * }; * const command = new ListIdentityPoliciesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "PolicyNames": [ + * PolicyNames: [ * "MyPolicy" * ] * } * *\/ - * // example id: listidentitypolicies-1469124417674 * ``` * + * @public */ export class ListIdentityPoliciesCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/ListReceiptFiltersCommand.ts b/clients/client-ses/src/commands/ListReceiptFiltersCommand.ts index e612045ce835d..969f47abf67e7 100644 --- a/clients/client-ses/src/commands/ListReceiptFiltersCommand.ts +++ b/clients/client-ses/src/commands/ListReceiptFiltersCommand.ts @@ -65,29 +65,29 @@ export interface ListReceiptFiltersCommandOutput extends ListReceiptFiltersRespo * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example ListReceiptFilters * ```javascript * // The following example lists the IP address filters that are associated with an AWS account: - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListReceiptFiltersCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Filters": [ + * Filters: [ * { - * "IpFilter": { - * "Cidr": "1.2.3.4/24", - * "Policy": "Block" + * IpFilter: { + * Cidr: "1.2.3.4/24", + * Policy: "Block" * }, - * "Name": "MyFilter" + * Name: "MyFilter" * } * ] * } * *\/ - * // example id: listreceiptfilters-1469120786789 * ``` * + * @public */ export class ListReceiptFiltersCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/ListReceiptRuleSetsCommand.ts b/clients/client-ses/src/commands/ListReceiptRuleSetsCommand.ts index 4aff3b01e7a1a..d6464c91075b9 100644 --- a/clients/client-ses/src/commands/ListReceiptRuleSetsCommand.ts +++ b/clients/client-ses/src/commands/ListReceiptRuleSetsCommand.ts @@ -67,29 +67,29 @@ export interface ListReceiptRuleSetsCommandOutput extends ListReceiptRuleSetsRes * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example ListReceiptRuleSets * ```javascript * // The following example lists the receipt rule sets that exist under an AWS account: * const input = { - * "NextToken": "" + * NextToken: "" * }; * const command = new ListReceiptRuleSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "NextToken": "", - * "RuleSets": [ + * NextToken: "", + * RuleSets: [ * { - * "CreatedTimestamp": "2016-07-15T16:25:59.607Z", - * "Name": "MyRuleSet" + * CreatedTimestamp: "2016-07-15T16:25:59.607Z", + * Name: "MyRuleSet" * } * ] * } * *\/ - * // example id: listreceiptrulesets-1469121037235 * ``` * + * @public */ export class ListReceiptRuleSetsCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/ListTemplatesCommand.ts b/clients/client-ses/src/commands/ListTemplatesCommand.ts index f5f8a0f6a3655..1afe64c11edac 100644 --- a/clients/client-ses/src/commands/ListTemplatesCommand.ts +++ b/clients/client-ses/src/commands/ListTemplatesCommand.ts @@ -64,6 +64,7 @@ export interface ListTemplatesCommandOutput extends ListTemplatesResponse, __Met * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class ListTemplatesCommand extends $Command diff --git a/clients/client-ses/src/commands/ListVerifiedEmailAddressesCommand.ts b/clients/client-ses/src/commands/ListVerifiedEmailAddressesCommand.ts index 48b1a039b2a12..7c82fe5999e47 100644 --- a/clients/client-ses/src/commands/ListVerifiedEmailAddressesCommand.ts +++ b/clients/client-ses/src/commands/ListVerifiedEmailAddressesCommand.ts @@ -56,24 +56,24 @@ export interface ListVerifiedEmailAddressesCommandOutput extends ListVerifiedEma * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example ListVerifiedEmailAddresses * ```javascript * // The following example lists all email addresses that have been submitted for verification with Amazon SES: - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListVerifiedEmailAddressesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "VerifiedEmailAddresses": [ + * VerifiedEmailAddresses: [ * "user1@example.com", * "user2@example.com" * ] * } * *\/ - * // example id: listverifiedemailaddresses-1469051402570 * ``` * + * @public */ export class ListVerifiedEmailAddressesCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts b/clients/client-ses/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts index d125097db351b..13c29360b159f 100644 --- a/clients/client-ses/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts +++ b/clients/client-ses/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts @@ -70,6 +70,7 @@ export interface PutConfigurationSetDeliveryOptionsCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class PutConfigurationSetDeliveryOptionsCommand extends $Command diff --git a/clients/client-ses/src/commands/PutIdentityPolicyCommand.ts b/clients/client-ses/src/commands/PutIdentityPolicyCommand.ts index 4501ba4cba0fe..5ae0759b5a276 100644 --- a/clients/client-ses/src/commands/PutIdentityPolicyCommand.ts +++ b/clients/client-ses/src/commands/PutIdentityPolicyCommand.ts @@ -69,20 +69,23 @@ export interface PutIdentityPolicyCommandOutput extends PutIdentityPolicyRespons * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example PutIdentityPolicy * ```javascript * // The following example adds a sending authorization policy to an identity: * const input = { - * "Identity": "example.com", - * "Policy": "{\"Version\":\"2008-10-17\",\"Statement\":[{\"Sid\":\"stmt1469123904194\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::123456789012:root\"},\"Action\":[\"ses:SendEmail\",\"ses:SendRawEmail\"],\"Resource\":\"arn:aws:ses:us-east-1:EXAMPLE65304:identity/example.com\"}]}", - * "PolicyName": "MyPolicy" + * Identity: "example.com", + * Policy: `{"Version":"2008-10-17","Statement":[{"Sid":"stmt1469123904194","Effect":"Allow","Principal":{"AWS":"arn:aws:iam::123456789012:root"},"Action":["ses:SendEmail","ses:SendRawEmail"],"Resource":"arn:aws:ses:us-east-1:EXAMPLE65304:identity/example.com"}]}`, + * PolicyName: "MyPolicy" * }; * const command = new PutIdentityPolicyCommand(input); - * await client.send(command); - * // example id: putidentitypolicy-1469124560016 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class PutIdentityPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/ReorderReceiptRuleSetCommand.ts b/clients/client-ses/src/commands/ReorderReceiptRuleSetCommand.ts index 2ac1c97acdeff..0add6b0d75723 100644 --- a/clients/client-ses/src/commands/ReorderReceiptRuleSetCommand.ts +++ b/clients/client-ses/src/commands/ReorderReceiptRuleSetCommand.ts @@ -69,22 +69,25 @@ export interface ReorderReceiptRuleSetCommandOutput extends ReorderReceiptRuleSe * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example ReorderReceiptRuleSet * ```javascript * // The following example reorders the receipt rules within a receipt rule set: * const input = { - * "RuleNames": [ + * RuleNames: [ * "MyRule", * "MyOtherRule" * ], - * "RuleSetName": "MyRuleSet" + * RuleSetName: "MyRuleSet" * }; * const command = new ReorderReceiptRuleSetCommand(input); - * await client.send(command); - * // example id: reorderreceiptruleset-1469058156806 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class ReorderReceiptRuleSetCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/SendBounceCommand.ts b/clients/client-ses/src/commands/SendBounceCommand.ts index 88d89aaf445db..befd4753cfc7f 100644 --- a/clients/client-ses/src/commands/SendBounceCommand.ts +++ b/clients/client-ses/src/commands/SendBounceCommand.ts @@ -102,6 +102,7 @@ export interface SendBounceCommandOutput extends SendBounceResponse, __MetadataB * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class SendBounceCommand extends $Command diff --git a/clients/client-ses/src/commands/SendBulkTemplatedEmailCommand.ts b/clients/client-ses/src/commands/SendBulkTemplatedEmailCommand.ts index 249784764b98b..4fbe71080c5b3 100644 --- a/clients/client-ses/src/commands/SendBulkTemplatedEmailCommand.ts +++ b/clients/client-ses/src/commands/SendBulkTemplatedEmailCommand.ts @@ -166,6 +166,7 @@ export interface SendBulkTemplatedEmailCommandOutput extends SendBulkTemplatedEm * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class SendBulkTemplatedEmailCommand extends $Command diff --git a/clients/client-ses/src/commands/SendCustomVerificationEmailCommand.ts b/clients/client-ses/src/commands/SendCustomVerificationEmailCommand.ts index 82c761e8a68bd..83982d5a5c593 100644 --- a/clients/client-ses/src/commands/SendCustomVerificationEmailCommand.ts +++ b/clients/client-ses/src/commands/SendCustomVerificationEmailCommand.ts @@ -85,6 +85,7 @@ export interface SendCustomVerificationEmailCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class SendCustomVerificationEmailCommand extends $Command diff --git a/clients/client-ses/src/commands/SendEmailCommand.ts b/clients/client-ses/src/commands/SendEmailCommand.ts index 606d00b1b30f6..e02d77020654e 100644 --- a/clients/client-ses/src/commands/SendEmailCommand.ts +++ b/clients/client-ses/src/commands/SendEmailCommand.ts @@ -158,53 +158,53 @@ export interface SendEmailCommandOutput extends SendEmailResponse, __MetadataBea * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example SendEmail * ```javascript * // The following example sends a formatted email: * const input = { - * "Destination": { - * "BccAddresses": [], - * "CcAddresses": [ + * Destination: { + * BccAddresses: [], + * CcAddresses: [ * "recipient3@example.com" * ], - * "ToAddresses": [ + * ToAddresses: [ * "recipient1@example.com", * "recipient2@example.com" * ] * }, - * "Message": { - * "Body": { - * "Html": { - * "Charset": "UTF-8", - * "Data": "This message body contains HTML formatting. It can, for example, contain links like this one:
Amazon SES Developer Guide." + * Message: { + * Body: { + * Html: { + * Charset: "UTF-8", + * Data: `This message body contains HTML formatting. It can, for example, contain links like this one: Amazon SES Developer Guide.` * }, - * "Text": { - * "Charset": "UTF-8", - * "Data": "This is the message body in text format." + * Text: { + * Charset: "UTF-8", + * Data: "This is the message body in text format." * } * }, - * "Subject": { - * "Charset": "UTF-8", - * "Data": "Test email" + * Subject: { + * Charset: "UTF-8", + * Data: "Test email" * } * }, - * "ReplyToAddresses": [], - * "ReturnPath": "", - * "ReturnPathArn": "", - * "Source": "sender@example.com", - * "SourceArn": "" + * ReplyToAddresses: [], + * ReturnPath: "", + * ReturnPathArn: "", + * Source: "sender@example.com", + * SourceArn: "" * }; * const command = new SendEmailCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "MessageId": "EXAMPLE78603177f-7a5433e7-8edb-42ae-af10-f0181f34d6ee-000000" + * MessageId: "EXAMPLE78603177f-7a5433e7-8edb-42ae-af10-f0181f34d6ee-000000" * } * *\/ - * // example id: sendemail-1469049656296 * ``` * + * @public */ export class SendEmailCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/SendRawEmailCommand.ts b/clients/client-ses/src/commands/SendRawEmailCommand.ts index cbdb8b43335e3..d9649b3cd08e6 100644 --- a/clients/client-ses/src/commands/SendRawEmailCommand.ts +++ b/clients/client-ses/src/commands/SendRawEmailCommand.ts @@ -192,30 +192,30 @@ export interface SendRawEmailCommandOutput extends SendRawEmailResponse, __Metad * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example SendRawEmail * ```javascript * // The following example sends an email with an attachment: * const input = { - * "Destinations": [], - * "FromArn": "", - * "RawMessage": { - * "Data": "From: sender@example.com\\nTo: recipient@example.com\\nSubject: Test email (contains an attachment)\\nMIME-Version: 1.0\\nContent-type: Multipart/Mixed; boundary=\"NextPart\"\\n\\n--NextPart\\nContent-Type: text/plain\\n\\nThis is the message body.\\n\\n--NextPart\\nContent-Type: text/plain;\\nContent-Disposition: attachment; filename=\"attachment.txt\"\\n\\nThis is the text in the attachment.\\n\\n--NextPart--" + * Destinations: [], + * FromArn: "", + * RawMessage: { + * Data: `From: sender@example.com\nTo: recipient@example.com\nSubject: Test email (contains an attachment)\nMIME-Version: 1.0\nContent-type: Multipart/Mixed; boundary="NextPart"\n\n--NextPart\nContent-Type: text/plain\n\nThis is the message body.\n\n--NextPart\nContent-Type: text/plain;\nContent-Disposition: attachment; filename="attachment.txt"\n\nThis is the text in the attachment.\n\n--NextPart--` * }, - * "ReturnPathArn": "", - * "Source": "", - * "SourceArn": "" + * ReturnPathArn: "", + * Source: "", + * SourceArn: "" * }; * const command = new SendRawEmailCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "MessageId": "EXAMPLEf3f73d99b-c63fb06f-d263-41f8-a0fb-d0dc67d56c07-000000" + * MessageId: "EXAMPLEf3f73d99b-c63fb06f-d263-41f8-a0fb-d0dc67d56c07-000000" * } * *\/ - * // example id: sendrawemail-1469118548649 * ``` * + * @public */ export class SendRawEmailCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/SendTemplatedEmailCommand.ts b/clients/client-ses/src/commands/SendTemplatedEmailCommand.ts index 7be63926447fd..331544135138c 100644 --- a/clients/client-ses/src/commands/SendTemplatedEmailCommand.ts +++ b/clients/client-ses/src/commands/SendTemplatedEmailCommand.ts @@ -155,6 +155,7 @@ export interface SendTemplatedEmailCommandOutput extends SendTemplatedEmailRespo * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class SendTemplatedEmailCommand extends $Command diff --git a/clients/client-ses/src/commands/SetActiveReceiptRuleSetCommand.ts b/clients/client-ses/src/commands/SetActiveReceiptRuleSetCommand.ts index 9eb1c84ed6129..24373052580a4 100644 --- a/clients/client-ses/src/commands/SetActiveReceiptRuleSetCommand.ts +++ b/clients/client-ses/src/commands/SetActiveReceiptRuleSetCommand.ts @@ -63,18 +63,21 @@ export interface SetActiveReceiptRuleSetCommandOutput extends SetActiveReceiptRu * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example SetActiveReceiptRuleSet * ```javascript * // The following example sets the active receipt rule set: * const input = { - * "RuleSetName": "RuleSetToActivate" + * RuleSetName: "RuleSetToActivate" * }; * const command = new SetActiveReceiptRuleSetCommand(input); - * await client.send(command); - * // example id: setactivereceiptruleset-1469058391329 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetActiveReceiptRuleSetCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/SetIdentityDkimEnabledCommand.ts b/clients/client-ses/src/commands/SetIdentityDkimEnabledCommand.ts index a63bc817810d3..41fc6b257955f 100644 --- a/clients/client-ses/src/commands/SetIdentityDkimEnabledCommand.ts +++ b/clients/client-ses/src/commands/SetIdentityDkimEnabledCommand.ts @@ -67,19 +67,22 @@ export interface SetIdentityDkimEnabledCommandOutput extends SetIdentityDkimEnab * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example SetIdentityDkimEnabled * ```javascript * // The following example configures Amazon SES to Easy DKIM-sign the email sent from an identity: * const input = { - * "DkimEnabled": true, - * "Identity": "user@example.com" + * DkimEnabled: true, + * Identity: "user@example.com" * }; * const command = new SetIdentityDkimEnabledCommand(input); - * await client.send(command); - * // example id: setidentitydkimenabled-1469057485202 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetIdentityDkimEnabledCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/SetIdentityFeedbackForwardingEnabledCommand.ts b/clients/client-ses/src/commands/SetIdentityFeedbackForwardingEnabledCommand.ts index cd9a61e3df32b..eaadbb6f81163 100644 --- a/clients/client-ses/src/commands/SetIdentityFeedbackForwardingEnabledCommand.ts +++ b/clients/client-ses/src/commands/SetIdentityFeedbackForwardingEnabledCommand.ts @@ -72,19 +72,22 @@ export interface SetIdentityFeedbackForwardingEnabledCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example SetIdentityFeedbackForwardingEnabled * ```javascript * // The following example configures Amazon SES to forward an identity's bounces and complaints via email: * const input = { - * "ForwardingEnabled": true, - * "Identity": "user@example.com" + * ForwardingEnabled: true, + * Identity: "user@example.com" * }; * const command = new SetIdentityFeedbackForwardingEnabledCommand(input); - * await client.send(command); - * // example id: setidentityfeedbackforwardingenabled-1469056811329 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetIdentityFeedbackForwardingEnabledCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/SetIdentityHeadersInNotificationsEnabledCommand.ts b/clients/client-ses/src/commands/SetIdentityHeadersInNotificationsEnabledCommand.ts index 8f27190618030..378fc500d3731 100644 --- a/clients/client-ses/src/commands/SetIdentityHeadersInNotificationsEnabledCommand.ts +++ b/clients/client-ses/src/commands/SetIdentityHeadersInNotificationsEnabledCommand.ts @@ -69,20 +69,23 @@ export interface SetIdentityHeadersInNotificationsEnabledCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example SetIdentityHeadersInNotificationsEnabled * ```javascript * // The following example configures Amazon SES to include the original email headers in the Amazon SNS bounce notifications for an identity: * const input = { - * "Enabled": true, - * "Identity": "user@example.com", - * "NotificationType": "Bounce" + * Enabled: true, + * Identity: "user@example.com", + * NotificationType: "Bounce" * }; * const command = new SetIdentityHeadersInNotificationsEnabledCommand(input); - * await client.send(command); - * // example id: setidentityheadersinnotificationsenabled-1469057295001 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetIdentityHeadersInNotificationsEnabledCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/SetIdentityMailFromDomainCommand.ts b/clients/client-ses/src/commands/SetIdentityMailFromDomainCommand.ts index 49ae759321567..051e8416449e1 100644 --- a/clients/client-ses/src/commands/SetIdentityMailFromDomainCommand.ts +++ b/clients/client-ses/src/commands/SetIdentityMailFromDomainCommand.ts @@ -63,20 +63,23 @@ export interface SetIdentityMailFromDomainCommandOutput extends SetIdentityMailF * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example SetIdentityMailFromDomain * ```javascript * // The following example configures Amazon SES to use a custom MAIL FROM domain for an identity: * const input = { - * "BehaviorOnMXFailure": "UseDefaultValue", - * "Identity": "user@example.com", - * "MailFromDomain": "bounces.example.com" + * BehaviorOnMXFailure: "UseDefaultValue", + * Identity: "user@example.com", + * MailFromDomain: "bounces.example.com" * }; * const command = new SetIdentityMailFromDomainCommand(input); - * await client.send(command); - * // example id: setidentitymailfromdomain-1469057693908 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetIdentityMailFromDomainCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/SetIdentityNotificationTopicCommand.ts b/clients/client-ses/src/commands/SetIdentityNotificationTopicCommand.ts index 5fe75b0c950c5..0b9931f848df0 100644 --- a/clients/client-ses/src/commands/SetIdentityNotificationTopicCommand.ts +++ b/clients/client-ses/src/commands/SetIdentityNotificationTopicCommand.ts @@ -65,20 +65,23 @@ export interface SetIdentityNotificationTopicCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example SetIdentityNotificationTopic * ```javascript * // The following example sets the Amazon SNS topic to which Amazon SES will publish bounce, complaint, and/or delivery notifications for emails sent with the specified identity as the Source: * const input = { - * "Identity": "user@example.com", - * "NotificationType": "Bounce", - * "SnsTopic": "arn:aws:sns:us-west-2:111122223333:MyTopic" + * Identity: "user@example.com", + * NotificationType: "Bounce", + * SnsTopic: "arn:aws:sns:us-west-2:111122223333:MyTopic" * }; * const command = new SetIdentityNotificationTopicCommand(input); - * await client.send(command); - * // example id: setidentitynotificationtopic-1469057854966 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetIdentityNotificationTopicCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/SetReceiptRulePositionCommand.ts b/clients/client-ses/src/commands/SetReceiptRulePositionCommand.ts index e20dd8b6c2d14..eb5c22e7ec1ab 100644 --- a/clients/client-ses/src/commands/SetReceiptRulePositionCommand.ts +++ b/clients/client-ses/src/commands/SetReceiptRulePositionCommand.ts @@ -64,20 +64,23 @@ export interface SetReceiptRulePositionCommandOutput extends SetReceiptRulePosit * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example SetReceiptRulePosition * ```javascript * // The following example sets the position of a receipt rule in a receipt rule set: * const input = { - * "After": "PutRuleAfterThisRule", - * "RuleName": "RuleToReposition", - * "RuleSetName": "MyRuleSet" + * After: "PutRuleAfterThisRule", + * RuleName: "RuleToReposition", + * RuleSetName: "MyRuleSet" * }; * const command = new SetReceiptRulePositionCommand(input); - * await client.send(command); - * // example id: setreceiptruleposition-1469058530550 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class SetReceiptRulePositionCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/TestRenderTemplateCommand.ts b/clients/client-ses/src/commands/TestRenderTemplateCommand.ts index 9ce1369cdad37..282e4afd8e8e8 100644 --- a/clients/client-ses/src/commands/TestRenderTemplateCommand.ts +++ b/clients/client-ses/src/commands/TestRenderTemplateCommand.ts @@ -71,6 +71,7 @@ export interface TestRenderTemplateCommandOutput extends TestRenderTemplateRespo * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class TestRenderTemplateCommand extends $Command diff --git a/clients/client-ses/src/commands/UpdateAccountSendingEnabledCommand.ts b/clients/client-ses/src/commands/UpdateAccountSendingEnabledCommand.ts index 8fdbc48496853..afef63828d3bd 100644 --- a/clients/client-ses/src/commands/UpdateAccountSendingEnabledCommand.ts +++ b/clients/client-ses/src/commands/UpdateAccountSendingEnabledCommand.ts @@ -58,18 +58,21 @@ export interface UpdateAccountSendingEnabledCommandOutput extends __MetadataBear * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example UpdateAccountSendingEnabled * ```javascript * // The following example updated the sending status for this account. * const input = { - * "Enabled": true + * Enabled: true * }; * const command = new UpdateAccountSendingEnabledCommand(input); - * await client.send(command); - * // example id: updateaccountsendingenabled-1469047741333 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateAccountSendingEnabledCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/UpdateConfigurationSetEventDestinationCommand.ts b/clients/client-ses/src/commands/UpdateConfigurationSetEventDestinationCommand.ts index e91596f294752..6cd0678d04720 100644 --- a/clients/client-ses/src/commands/UpdateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-ses/src/commands/UpdateConfigurationSetEventDestinationCommand.ts @@ -114,6 +114,7 @@ export interface UpdateConfigurationSetEventDestinationCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class UpdateConfigurationSetEventDestinationCommand extends $Command diff --git a/clients/client-ses/src/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.ts b/clients/client-ses/src/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.ts index 3bef4a1a8bb23..1988b917feb88 100644 --- a/clients/client-ses/src/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.ts +++ b/clients/client-ses/src/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.ts @@ -65,19 +65,22 @@ export interface UpdateConfigurationSetReputationMetricsEnabledCommandOutput ext * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example UpdateConfigurationSetReputationMetricsEnabled * ```javascript * // Set the reputationMetricsEnabled flag for a specific configuration set. * const input = { - * "ConfigurationSetName": "foo", - * "Enabled": true + * ConfigurationSetName: "foo", + * Enabled: true * }; * const command = new UpdateConfigurationSetReputationMetricsEnabledCommand(input); - * await client.send(command); - * // example id: updateconfigurationsetreputationmetricsenabled-2362747741333 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateConfigurationSetReputationMetricsEnabledCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/UpdateConfigurationSetSendingEnabledCommand.ts b/clients/client-ses/src/commands/UpdateConfigurationSetSendingEnabledCommand.ts index c093f388691af..75ecf2f6f6185 100644 --- a/clients/client-ses/src/commands/UpdateConfigurationSetSendingEnabledCommand.ts +++ b/clients/client-ses/src/commands/UpdateConfigurationSetSendingEnabledCommand.ts @@ -65,19 +65,22 @@ export interface UpdateConfigurationSetSendingEnabledCommandOutput extends __Met * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example UpdateConfigurationSetReputationMetricsEnabled * ```javascript * // Set the sending enabled flag for a specific configuration set. * const input = { - * "ConfigurationSetName": "foo", - * "Enabled": true + * ConfigurationSetName: "foo", + * Enabled: true * }; * const command = new UpdateConfigurationSetSendingEnabledCommand(input); - * await client.send(command); - * // example id: updateconfigurationsetsendingenabled-2362747741333 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateConfigurationSetSendingEnabledCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/UpdateConfigurationSetTrackingOptionsCommand.ts b/clients/client-ses/src/commands/UpdateConfigurationSetTrackingOptionsCommand.ts index 045d1b395d1aa..a6a85ade77aa1 100644 --- a/clients/client-ses/src/commands/UpdateConfigurationSetTrackingOptionsCommand.ts +++ b/clients/client-ses/src/commands/UpdateConfigurationSetTrackingOptionsCommand.ts @@ -88,6 +88,7 @@ export interface UpdateConfigurationSetTrackingOptionsCommandOutput * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class UpdateConfigurationSetTrackingOptionsCommand extends $Command diff --git a/clients/client-ses/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts b/clients/client-ses/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts index 3f7ded889d4a7..c67818e7835f5 100644 --- a/clients/client-ses/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-ses/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts @@ -77,6 +77,7 @@ export interface UpdateCustomVerificationEmailTemplateCommandOutput extends __Me * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class UpdateCustomVerificationEmailTemplateCommand extends $Command diff --git a/clients/client-ses/src/commands/UpdateReceiptRuleCommand.ts b/clients/client-ses/src/commands/UpdateReceiptRuleCommand.ts index 818163696f180..deb8b37aaa576 100644 --- a/clients/client-ses/src/commands/UpdateReceiptRuleCommand.ts +++ b/clients/client-ses/src/commands/UpdateReceiptRuleCommand.ts @@ -137,32 +137,35 @@ export interface UpdateReceiptRuleCommandOutput extends UpdateReceiptRuleRespons * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example UpdateReceiptRule * ```javascript * // The following example updates a receipt rule to use an Amazon S3 action: * const input = { - * "Rule": { - * "Actions": [ + * Rule: { + * Actions: [ * { - * "S3Action": { - * "BucketName": "MyBucket", - * "ObjectKeyPrefix": "email" + * S3Action: { + * BucketName: "MyBucket", + * ObjectKeyPrefix: "email" * } * } * ], - * "Enabled": true, - * "Name": "MyRule", - * "ScanEnabled": true, - * "TlsPolicy": "Optional" + * Enabled: true, + * Name: "MyRule", + * ScanEnabled: true, + * TlsPolicy: "Optional" * }, - * "RuleSetName": "MyRuleSet" + * RuleSetName: "MyRuleSet" * }; * const command = new UpdateReceiptRuleCommand(input); - * await client.send(command); - * // example id: updatereceiptrule-1469051756940 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateReceiptRuleCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/UpdateTemplateCommand.ts b/clients/client-ses/src/commands/UpdateTemplateCommand.ts index bece68b61c503..084a71b83b143 100644 --- a/clients/client-ses/src/commands/UpdateTemplateCommand.ts +++ b/clients/client-ses/src/commands/UpdateTemplateCommand.ts @@ -69,6 +69,7 @@ export interface UpdateTemplateCommandOutput extends UpdateTemplateResponse, __M * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* + * * @public */ export class UpdateTemplateCommand extends $Command diff --git a/clients/client-ses/src/commands/VerifyDomainDkimCommand.ts b/clients/client-ses/src/commands/VerifyDomainDkimCommand.ts index 3f637385ba26f..3a22a893825ab 100644 --- a/clients/client-ses/src/commands/VerifyDomainDkimCommand.ts +++ b/clients/client-ses/src/commands/VerifyDomainDkimCommand.ts @@ -95,27 +95,27 @@ export interface VerifyDomainDkimCommandOutput extends VerifyDomainDkimResponse, * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example VerifyDomainDkim * ```javascript * // The following example generates DKIM tokens for a domain that has been verified with Amazon SES: * const input = { - * "Domain": "example.com" + * Domain: "example.com" * }; * const command = new VerifyDomainDkimCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DkimTokens": [ + * DkimTokens: [ * "EXAMPLEq76owjnks3lnluwg65scbemvw", * "EXAMPLEi3dnsj67hstzaj673klariwx2", * "EXAMPLEwfbtcukvimehexktmdtaz6naj" * ] * } * *\/ - * // example id: verifydomaindkim-1469049503083 * ``` * + * @public */ export class VerifyDomainDkimCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/VerifyDomainIdentityCommand.ts b/clients/client-ses/src/commands/VerifyDomainIdentityCommand.ts index be4d6876c376a..04a9be1f20614 100644 --- a/clients/client-ses/src/commands/VerifyDomainIdentityCommand.ts +++ b/clients/client-ses/src/commands/VerifyDomainIdentityCommand.ts @@ -60,23 +60,23 @@ export interface VerifyDomainIdentityCommandOutput extends VerifyDomainIdentityR * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example VerifyDomainIdentity * ```javascript * // The following example starts the domain verification process with Amazon SES: * const input = { - * "Domain": "example.com" + * Domain: "example.com" * }; * const command = new VerifyDomainIdentityCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "VerificationToken": "eoEmxw+YaYhb3h3iVJHuXMJXqeu1q1/wwmvjuEXAMPLE" + * VerificationToken: "eoEmxw+YaYhb3h3iVJHuXMJXqeu1q1/wwmvjuEXAMPLE" * } * *\/ - * // example id: verifydomainidentity-1469049165936 * ``` * + * @public */ export class VerifyDomainIdentityCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/VerifyEmailAddressCommand.ts b/clients/client-ses/src/commands/VerifyEmailAddressCommand.ts index 2d7b0a1d3330e..2f4fc2ea09f6a 100644 --- a/clients/client-ses/src/commands/VerifyEmailAddressCommand.ts +++ b/clients/client-ses/src/commands/VerifyEmailAddressCommand.ts @@ -54,18 +54,21 @@ export interface VerifyEmailAddressCommandOutput extends __MetadataBearer {} * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example VerifyEmailAddress * ```javascript * // The following example starts the email address verification process with Amazon SES: * const input = { - * "EmailAddress": "user@example.com" + * EmailAddress: "user@example.com" * }; * const command = new VerifyEmailAddressCommand(input); - * await client.send(command); - * // example id: verifyemailaddress-1469048849187 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class VerifyEmailAddressCommand extends $Command .classBuilder< diff --git a/clients/client-ses/src/commands/VerifyEmailIdentityCommand.ts b/clients/client-ses/src/commands/VerifyEmailIdentityCommand.ts index 19d2c53fe17a3..b476e2476b17e 100644 --- a/clients/client-ses/src/commands/VerifyEmailIdentityCommand.ts +++ b/clients/client-ses/src/commands/VerifyEmailIdentityCommand.ts @@ -56,18 +56,21 @@ export interface VerifyEmailIdentityCommandOutput extends VerifyEmailIdentityRes * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* - * @public + * * @example VerifyEmailIdentity * ```javascript * // The following example starts the email address verification process with Amazon SES: * const input = { - * "EmailAddress": "user@example.com" + * EmailAddress: "user@example.com" * }; * const command = new VerifyEmailIdentityCommand(input); - * await client.send(command); - * // example id: verifyemailidentity-1469049068623 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class VerifyEmailIdentityCommand extends $Command .classBuilder< diff --git a/clients/client-sesv2/src/commands/BatchGetMetricDataCommand.ts b/clients/client-sesv2/src/commands/BatchGetMetricDataCommand.ts index eb1fd2a9fd4b1..865097eba40d1 100644 --- a/clients/client-sesv2/src/commands/BatchGetMetricDataCommand.ts +++ b/clients/client-sesv2/src/commands/BatchGetMetricDataCommand.ts @@ -97,6 +97,7 @@ export interface BatchGetMetricDataCommandOutput extends BatchGetMetricDataRespo * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class BatchGetMetricDataCommand extends $Command diff --git a/clients/client-sesv2/src/commands/CancelExportJobCommand.ts b/clients/client-sesv2/src/commands/CancelExportJobCommand.ts index 032eb1aee49d8..b2fbb881219e0 100644 --- a/clients/client-sesv2/src/commands/CancelExportJobCommand.ts +++ b/clients/client-sesv2/src/commands/CancelExportJobCommand.ts @@ -62,18 +62,21 @@ export interface CancelExportJobCommandOutput extends CancelExportJobResponse, _ * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* - * @public + * * @example Cancel export job * ```javascript * // Cancels the export job with ID ef28cf62-9d8e-4b60-9283-b09816c99a99 * const input = { - * "JobId": "ef28cf62-9d8e-4b60-9283-b09816c99a99" + * JobId: "ef28cf62-9d8e-4b60-9283-b09816c99a99" * }; * const command = new CancelExportJobCommand(input); - * await client.send(command); - * // example id: cancel-export-job-1685699696331 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CancelExportJobCommand extends $Command .classBuilder< diff --git a/clients/client-sesv2/src/commands/CreateConfigurationSetCommand.ts b/clients/client-sesv2/src/commands/CreateConfigurationSetCommand.ts index a36335b1c9417..ca9f138635043 100644 --- a/clients/client-sesv2/src/commands/CreateConfigurationSetCommand.ts +++ b/clients/client-sesv2/src/commands/CreateConfigurationSetCommand.ts @@ -113,6 +113,7 @@ export interface CreateConfigurationSetCommandOutput extends CreateConfiguration * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class CreateConfigurationSetCommand extends $Command diff --git a/clients/client-sesv2/src/commands/CreateConfigurationSetEventDestinationCommand.ts b/clients/client-sesv2/src/commands/CreateConfigurationSetEventDestinationCommand.ts index 2a1635ae80fbe..e13c768572bdc 100644 --- a/clients/client-sesv2/src/commands/CreateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-sesv2/src/commands/CreateConfigurationSetEventDestinationCommand.ts @@ -111,6 +111,7 @@ export interface CreateConfigurationSetEventDestinationCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class CreateConfigurationSetEventDestinationCommand extends $Command diff --git a/clients/client-sesv2/src/commands/CreateContactCommand.ts b/clients/client-sesv2/src/commands/CreateContactCommand.ts index ce9dbda65a68b..a08573e439446 100644 --- a/clients/client-sesv2/src/commands/CreateContactCommand.ts +++ b/clients/client-sesv2/src/commands/CreateContactCommand.ts @@ -75,6 +75,7 @@ export interface CreateContactCommandOutput extends CreateContactResponse, __Met * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class CreateContactCommand extends $Command diff --git a/clients/client-sesv2/src/commands/CreateContactListCommand.ts b/clients/client-sesv2/src/commands/CreateContactListCommand.ts index dfc9abdede5b7..dbc986df47815 100644 --- a/clients/client-sesv2/src/commands/CreateContactListCommand.ts +++ b/clients/client-sesv2/src/commands/CreateContactListCommand.ts @@ -80,6 +80,7 @@ export interface CreateContactListCommandOutput extends CreateContactListRespons * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class CreateContactListCommand extends $Command diff --git a/clients/client-sesv2/src/commands/CreateCustomVerificationEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/CreateCustomVerificationEmailTemplateCommand.ts index 45788e83ccace..b60e41ad4d630 100644 --- a/clients/client-sesv2/src/commands/CreateCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/CreateCustomVerificationEmailTemplateCommand.ts @@ -86,6 +86,7 @@ export interface CreateCustomVerificationEmailTemplateCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class CreateCustomVerificationEmailTemplateCommand extends $Command diff --git a/clients/client-sesv2/src/commands/CreateDedicatedIpPoolCommand.ts b/clients/client-sesv2/src/commands/CreateDedicatedIpPoolCommand.ts index b9a9bf2d90e74..b993b353eb0b6 100644 --- a/clients/client-sesv2/src/commands/CreateDedicatedIpPoolCommand.ts +++ b/clients/client-sesv2/src/commands/CreateDedicatedIpPoolCommand.ts @@ -78,6 +78,7 @@ export interface CreateDedicatedIpPoolCommandOutput extends CreateDedicatedIpPoo * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class CreateDedicatedIpPoolCommand extends $Command diff --git a/clients/client-sesv2/src/commands/CreateDeliverabilityTestReportCommand.ts b/clients/client-sesv2/src/commands/CreateDeliverabilityTestReportCommand.ts index 5846b76f9e9c5..202ab9dd7bd74 100644 --- a/clients/client-sesv2/src/commands/CreateDeliverabilityTestReportCommand.ts +++ b/clients/client-sesv2/src/commands/CreateDeliverabilityTestReportCommand.ts @@ -146,6 +146,7 @@ export interface CreateDeliverabilityTestReportCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class CreateDeliverabilityTestReportCommand extends $Command diff --git a/clients/client-sesv2/src/commands/CreateEmailIdentityCommand.ts b/clients/client-sesv2/src/commands/CreateEmailIdentityCommand.ts index eb776ca62e62f..822a765034c2d 100644 --- a/clients/client-sesv2/src/commands/CreateEmailIdentityCommand.ts +++ b/clients/client-sesv2/src/commands/CreateEmailIdentityCommand.ts @@ -127,6 +127,7 @@ export interface CreateEmailIdentityCommandOutput extends CreateEmailIdentityRes * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class CreateEmailIdentityCommand extends $Command diff --git a/clients/client-sesv2/src/commands/CreateEmailIdentityPolicyCommand.ts b/clients/client-sesv2/src/commands/CreateEmailIdentityPolicyCommand.ts index 0f378bd9e1d3b..0de4961c78252 100644 --- a/clients/client-sesv2/src/commands/CreateEmailIdentityPolicyCommand.ts +++ b/clients/client-sesv2/src/commands/CreateEmailIdentityPolicyCommand.ts @@ -80,6 +80,7 @@ export interface CreateEmailIdentityPolicyCommandOutput extends CreateEmailIdent * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class CreateEmailIdentityPolicyCommand extends $Command diff --git a/clients/client-sesv2/src/commands/CreateEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/CreateEmailTemplateCommand.ts index d44302ecdfafa..c3c90bd82c1ff 100644 --- a/clients/client-sesv2/src/commands/CreateEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/CreateEmailTemplateCommand.ts @@ -73,6 +73,7 @@ export interface CreateEmailTemplateCommandOutput extends CreateEmailTemplateRes * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class CreateEmailTemplateCommand extends $Command diff --git a/clients/client-sesv2/src/commands/CreateExportJobCommand.ts b/clients/client-sesv2/src/commands/CreateExportJobCommand.ts index 84250a859ec19..8b40a903025c0 100644 --- a/clients/client-sesv2/src/commands/CreateExportJobCommand.ts +++ b/clients/client-sesv2/src/commands/CreateExportJobCommand.ts @@ -138,85 +138,8 @@ export interface CreateExportJobCommandOutput extends CreateExportJobResponse, _ * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* - * @public - * @example Create Metrics export job - * ```javascript - * // Creates a new export job for Metrics data - * const input = { - * "ExportDataSource": { - * "MetricsDataSource": { - * "Dimensions": { - * "ISP": [ - * "*" - * ] - * }, - * "EndDate": "2023-07-02T00:00:00", - * "Metrics": [ - * { - * "Aggregation": "VOLUME", - * "Name": "SEND" - * }, - * { - * "Aggregation": "VOLUME", - * "Name": "COMPLAINT" - * }, - * { - * "Aggregation": "RATE", - * "Name": "COMPLAINT" - * } - * ], - * "Namespace": "VDM", - * "StartDate": "2023-07-01T00:00:00" - * } - * }, - * "ExportDestination": { - * "DataFormat": "CSV" - * } - * }; - * const command = new CreateExportJobCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "JobId": "ef28cf62-9d8e-4b60-9283-b09816c99a99" - * } - * *\/ - * // example id: create-export-job-1685701853690 - * ``` - * - * @example Create Message Insights export job - * ```javascript - * // Creates a new export job for Message Insights data - * const input = { - * "ExportDataSource": { - * "MessageInsightsDataSource": { - * "EndDate": "2023-07-02T00:00:00", - * "Exclude": { - * "FromEmailAddress": [ - * "hello@example.com" - * ] - * }, - * "Include": { - * "Subject": [ - * "Hello" - * ] - * }, - * "StartDate": "2023-07-01T00:00:00" - * } - * }, - * "ExportDestination": { - * "DataFormat": "CSV" - * } - * }; - * const command = new CreateExportJobCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "JobId": "ef28cf62-9d8e-4b60-9283-b09816c99a99" - * } - * *\/ - * // example id: create-export-job-1689957853323 - * ``` * + * @public */ export class CreateExportJobCommand extends $Command .classBuilder< diff --git a/clients/client-sesv2/src/commands/CreateImportJobCommand.ts b/clients/client-sesv2/src/commands/CreateImportJobCommand.ts index bb92a0b728e06..332a05b3fe4a0 100644 --- a/clients/client-sesv2/src/commands/CreateImportJobCommand.ts +++ b/clients/client-sesv2/src/commands/CreateImportJobCommand.ts @@ -76,6 +76,7 @@ export interface CreateImportJobCommandOutput extends CreateImportJobResponse, _ * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class CreateImportJobCommand extends $Command diff --git a/clients/client-sesv2/src/commands/CreateMultiRegionEndpointCommand.ts b/clients/client-sesv2/src/commands/CreateMultiRegionEndpointCommand.ts index 79bcf983ccd63..309d0fd7e9958 100644 --- a/clients/client-sesv2/src/commands/CreateMultiRegionEndpointCommand.ts +++ b/clients/client-sesv2/src/commands/CreateMultiRegionEndpointCommand.ts @@ -87,6 +87,7 @@ export interface CreateMultiRegionEndpointCommandOutput extends CreateMultiRegio * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class CreateMultiRegionEndpointCommand extends $Command diff --git a/clients/client-sesv2/src/commands/DeleteConfigurationSetCommand.ts b/clients/client-sesv2/src/commands/DeleteConfigurationSetCommand.ts index d1bf1228034f1..214b37886fa4f 100644 --- a/clients/client-sesv2/src/commands/DeleteConfigurationSetCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteConfigurationSetCommand.ts @@ -70,6 +70,7 @@ export interface DeleteConfigurationSetCommandOutput extends DeleteConfiguration * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class DeleteConfigurationSetCommand extends $Command diff --git a/clients/client-sesv2/src/commands/DeleteConfigurationSetEventDestinationCommand.ts b/clients/client-sesv2/src/commands/DeleteConfigurationSetEventDestinationCommand.ts index 6fdf43757afec..f48046c458d85 100644 --- a/clients/client-sesv2/src/commands/DeleteConfigurationSetEventDestinationCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteConfigurationSetEventDestinationCommand.ts @@ -77,6 +77,7 @@ export interface DeleteConfigurationSetEventDestinationCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class DeleteConfigurationSetEventDestinationCommand extends $Command diff --git a/clients/client-sesv2/src/commands/DeleteContactCommand.ts b/clients/client-sesv2/src/commands/DeleteContactCommand.ts index d0b07655bbbc9..88b4bd3237631 100644 --- a/clients/client-sesv2/src/commands/DeleteContactCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteContactCommand.ts @@ -63,6 +63,7 @@ export interface DeleteContactCommandOutput extends DeleteContactResponse, __Met * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class DeleteContactCommand extends $Command diff --git a/clients/client-sesv2/src/commands/DeleteContactListCommand.ts b/clients/client-sesv2/src/commands/DeleteContactListCommand.ts index abf90bd899b39..7dfea71c23b4e 100644 --- a/clients/client-sesv2/src/commands/DeleteContactListCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteContactListCommand.ts @@ -65,6 +65,7 @@ export interface DeleteContactListCommandOutput extends DeleteContactListRespons * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class DeleteContactListCommand extends $Command diff --git a/clients/client-sesv2/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts index ed0434aea14a3..3fff67793170c 100644 --- a/clients/client-sesv2/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts @@ -75,6 +75,7 @@ export interface DeleteCustomVerificationEmailTemplateCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class DeleteCustomVerificationEmailTemplateCommand extends $Command diff --git a/clients/client-sesv2/src/commands/DeleteDedicatedIpPoolCommand.ts b/clients/client-sesv2/src/commands/DeleteDedicatedIpPoolCommand.ts index 219ee7de9f36d..7bcfd6ad35bee 100644 --- a/clients/client-sesv2/src/commands/DeleteDedicatedIpPoolCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteDedicatedIpPoolCommand.ts @@ -65,6 +65,7 @@ export interface DeleteDedicatedIpPoolCommandOutput extends DeleteDedicatedIpPoo * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class DeleteDedicatedIpPoolCommand extends $Command diff --git a/clients/client-sesv2/src/commands/DeleteEmailIdentityCommand.ts b/clients/client-sesv2/src/commands/DeleteEmailIdentityCommand.ts index 3cfcdfb229776..7380579d14743 100644 --- a/clients/client-sesv2/src/commands/DeleteEmailIdentityCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteEmailIdentityCommand.ts @@ -66,6 +66,7 @@ export interface DeleteEmailIdentityCommandOutput extends DeleteEmailIdentityRes * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class DeleteEmailIdentityCommand extends $Command diff --git a/clients/client-sesv2/src/commands/DeleteEmailIdentityPolicyCommand.ts b/clients/client-sesv2/src/commands/DeleteEmailIdentityPolicyCommand.ts index 88ba8996d8bdb..aadfb06aa8b2b 100644 --- a/clients/client-sesv2/src/commands/DeleteEmailIdentityPolicyCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteEmailIdentityPolicyCommand.ts @@ -74,6 +74,7 @@ export interface DeleteEmailIdentityPolicyCommandOutput extends DeleteEmailIdent * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class DeleteEmailIdentityPolicyCommand extends $Command diff --git a/clients/client-sesv2/src/commands/DeleteEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/DeleteEmailTemplateCommand.ts index 9d0b87a550f86..0a5449ab2be85 100644 --- a/clients/client-sesv2/src/commands/DeleteEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteEmailTemplateCommand.ts @@ -63,6 +63,7 @@ export interface DeleteEmailTemplateCommandOutput extends DeleteEmailTemplateRes * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class DeleteEmailTemplateCommand extends $Command diff --git a/clients/client-sesv2/src/commands/DeleteMultiRegionEndpointCommand.ts b/clients/client-sesv2/src/commands/DeleteMultiRegionEndpointCommand.ts index dec8acb90c257..fcf324767cc2d 100644 --- a/clients/client-sesv2/src/commands/DeleteMultiRegionEndpointCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteMultiRegionEndpointCommand.ts @@ -69,6 +69,7 @@ export interface DeleteMultiRegionEndpointCommandOutput extends DeleteMultiRegio * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class DeleteMultiRegionEndpointCommand extends $Command diff --git a/clients/client-sesv2/src/commands/DeleteSuppressedDestinationCommand.ts b/clients/client-sesv2/src/commands/DeleteSuppressedDestinationCommand.ts index cb11cc3e829df..f249d869269c7 100644 --- a/clients/client-sesv2/src/commands/DeleteSuppressedDestinationCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteSuppressedDestinationCommand.ts @@ -67,6 +67,7 @@ export interface DeleteSuppressedDestinationCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class DeleteSuppressedDestinationCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetAccountCommand.ts b/clients/client-sesv2/src/commands/GetAccountCommand.ts index 515d55b306408..9c574ff7f81a4 100644 --- a/clients/client-sesv2/src/commands/GetAccountCommand.ts +++ b/clients/client-sesv2/src/commands/GetAccountCommand.ts @@ -95,6 +95,7 @@ export interface GetAccountCommandOutput extends GetAccountResponse, __MetadataB * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetAccountCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetBlacklistReportsCommand.ts b/clients/client-sesv2/src/commands/GetBlacklistReportsCommand.ts index d198272635df9..6e45c62d6e846 100644 --- a/clients/client-sesv2/src/commands/GetBlacklistReportsCommand.ts +++ b/clients/client-sesv2/src/commands/GetBlacklistReportsCommand.ts @@ -74,6 +74,7 @@ export interface GetBlacklistReportsCommandOutput extends GetBlacklistReportsRes * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetBlacklistReportsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetConfigurationSetCommand.ts b/clients/client-sesv2/src/commands/GetConfigurationSetCommand.ts index f2016c26c798f..728a7ff9d2ab6 100644 --- a/clients/client-sesv2/src/commands/GetConfigurationSetCommand.ts +++ b/clients/client-sesv2/src/commands/GetConfigurationSetCommand.ts @@ -109,6 +109,7 @@ export interface GetConfigurationSetCommandOutput extends GetConfigurationSetRes * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetConfigurationSetCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetConfigurationSetEventDestinationsCommand.ts b/clients/client-sesv2/src/commands/GetConfigurationSetEventDestinationsCommand.ts index a7330246b7f16..c3713f9138f60 100644 --- a/clients/client-sesv2/src/commands/GetConfigurationSetEventDestinationsCommand.ts +++ b/clients/client-sesv2/src/commands/GetConfigurationSetEventDestinationsCommand.ts @@ -108,6 +108,7 @@ export interface GetConfigurationSetEventDestinationsCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetConfigurationSetEventDestinationsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetContactCommand.ts b/clients/client-sesv2/src/commands/GetContactCommand.ts index 22950eec34b81..7f11358702769 100644 --- a/clients/client-sesv2/src/commands/GetContactCommand.ts +++ b/clients/client-sesv2/src/commands/GetContactCommand.ts @@ -82,6 +82,7 @@ export interface GetContactCommandOutput extends GetContactResponse, __MetadataB * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetContactCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetContactListCommand.ts b/clients/client-sesv2/src/commands/GetContactListCommand.ts index 924981734769c..a0393cb4c3999 100644 --- a/clients/client-sesv2/src/commands/GetContactListCommand.ts +++ b/clients/client-sesv2/src/commands/GetContactListCommand.ts @@ -82,6 +82,7 @@ export interface GetContactListCommandOutput extends GetContactListResponse, __M * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetContactListCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetCustomVerificationEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/GetCustomVerificationEmailTemplateCommand.ts index c1f4c134fef08..b98cc8ed01891 100644 --- a/clients/client-sesv2/src/commands/GetCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/GetCustomVerificationEmailTemplateCommand.ts @@ -82,6 +82,7 @@ export interface GetCustomVerificationEmailTemplateCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetCustomVerificationEmailTemplateCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetDedicatedIpCommand.ts b/clients/client-sesv2/src/commands/GetDedicatedIpCommand.ts index 4982c95966e36..69281ba707c99 100644 --- a/clients/client-sesv2/src/commands/GetDedicatedIpCommand.ts +++ b/clients/client-sesv2/src/commands/GetDedicatedIpCommand.ts @@ -71,6 +71,7 @@ export interface GetDedicatedIpCommandOutput extends GetDedicatedIpResponse, __M * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetDedicatedIpCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetDedicatedIpPoolCommand.ts b/clients/client-sesv2/src/commands/GetDedicatedIpPoolCommand.ts index 25dbc1e5a788c..7cd8c05f39169 100644 --- a/clients/client-sesv2/src/commands/GetDedicatedIpPoolCommand.ts +++ b/clients/client-sesv2/src/commands/GetDedicatedIpPoolCommand.ts @@ -67,6 +67,7 @@ export interface GetDedicatedIpPoolCommandOutput extends GetDedicatedIpPoolRespo * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetDedicatedIpPoolCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetDedicatedIpsCommand.ts b/clients/client-sesv2/src/commands/GetDedicatedIpsCommand.ts index a99e7de35e691..a3bab6d7964ea 100644 --- a/clients/client-sesv2/src/commands/GetDedicatedIpsCommand.ts +++ b/clients/client-sesv2/src/commands/GetDedicatedIpsCommand.ts @@ -75,6 +75,7 @@ export interface GetDedicatedIpsCommandOutput extends GetDedicatedIpsResponse, _ * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetDedicatedIpsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetDeliverabilityDashboardOptionsCommand.ts b/clients/client-sesv2/src/commands/GetDeliverabilityDashboardOptionsCommand.ts index a366cae325cd4..551aa119e8a63 100644 --- a/clients/client-sesv2/src/commands/GetDeliverabilityDashboardOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/GetDeliverabilityDashboardOptionsCommand.ts @@ -102,6 +102,7 @@ export interface GetDeliverabilityDashboardOptionsCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetDeliverabilityDashboardOptionsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetDeliverabilityTestReportCommand.ts b/clients/client-sesv2/src/commands/GetDeliverabilityTestReportCommand.ts index 88318075b891b..a2f7c2a313de0 100644 --- a/clients/client-sesv2/src/commands/GetDeliverabilityTestReportCommand.ts +++ b/clients/client-sesv2/src/commands/GetDeliverabilityTestReportCommand.ts @@ -102,6 +102,7 @@ export interface GetDeliverabilityTestReportCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetDeliverabilityTestReportCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetDomainDeliverabilityCampaignCommand.ts b/clients/client-sesv2/src/commands/GetDomainDeliverabilityCampaignCommand.ts index a1bc565dbeff9..15473e251a253 100644 --- a/clients/client-sesv2/src/commands/GetDomainDeliverabilityCampaignCommand.ts +++ b/clients/client-sesv2/src/commands/GetDomainDeliverabilityCampaignCommand.ts @@ -90,6 +90,7 @@ export interface GetDomainDeliverabilityCampaignCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetDomainDeliverabilityCampaignCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetDomainStatisticsReportCommand.ts b/clients/client-sesv2/src/commands/GetDomainStatisticsReportCommand.ts index 0df627d5c45cf..d0415440cee99 100644 --- a/clients/client-sesv2/src/commands/GetDomainStatisticsReportCommand.ts +++ b/clients/client-sesv2/src/commands/GetDomainStatisticsReportCommand.ts @@ -104,6 +104,7 @@ export interface GetDomainStatisticsReportCommandOutput extends GetDomainStatist * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetDomainStatisticsReportCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetEmailIdentityCommand.ts b/clients/client-sesv2/src/commands/GetEmailIdentityCommand.ts index 6f718a5105fc5..47b6606f1f273 100644 --- a/clients/client-sesv2/src/commands/GetEmailIdentityCommand.ts +++ b/clients/client-sesv2/src/commands/GetEmailIdentityCommand.ts @@ -105,6 +105,7 @@ export interface GetEmailIdentityCommandOutput extends GetEmailIdentityResponse, * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetEmailIdentityCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetEmailIdentityPoliciesCommand.ts b/clients/client-sesv2/src/commands/GetEmailIdentityPoliciesCommand.ts index e19271b6ca078..22625e7b7a789 100644 --- a/clients/client-sesv2/src/commands/GetEmailIdentityPoliciesCommand.ts +++ b/clients/client-sesv2/src/commands/GetEmailIdentityPoliciesCommand.ts @@ -77,6 +77,7 @@ export interface GetEmailIdentityPoliciesCommandOutput extends GetEmailIdentityP * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetEmailIdentityPoliciesCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/GetEmailTemplateCommand.ts index 01f93158e56f7..a72e419eeaae0 100644 --- a/clients/client-sesv2/src/commands/GetEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/GetEmailTemplateCommand.ts @@ -71,6 +71,7 @@ export interface GetEmailTemplateCommandOutput extends GetEmailTemplateResponse, * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetEmailTemplateCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetExportJobCommand.ts b/clients/client-sesv2/src/commands/GetExportJobCommand.ts index 3380bb15af45f..88c8a656817bc 100644 --- a/clients/client-sesv2/src/commands/GetExportJobCommand.ts +++ b/clients/client-sesv2/src/commands/GetExportJobCommand.ts @@ -143,59 +143,8 @@ export interface GetExportJobCommandOutput extends GetExportJobResponse, __Metad * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* - * @public - * @example Get export job - * ```javascript - * // Gets the export job with ID ef28cf62-9d8e-4b60-9283-b09816c99a99 - * const input = { - * "JobId": "ef28cf62-9d8e-4b60-9283-b09816c99a99" - * }; - * const command = new GetExportJobCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "CreatedTimestamp": "1685700961057", - * "ExportDataSource": { - * "MetricsDataSource": { - * "Dimensions": { - * "ISP": [ - * "*" - * ] - * }, - * "EndDate": "1675209600000", - * "Metrics": [ - * { - * "Aggregation": "VOLUME", - * "Name": "SEND" - * }, - * { - * "Aggregation": "VOLUME", - * "Name": "COMPLAINT" - * }, - * { - * "Aggregation": "RATE", - * "Name": "COMPLAINT" - * } - * ], - * "Namespace": "VDM", - * "StartDate": "1672531200000" - * } - * }, - * "ExportDestination": { - * "DataFormat": "CSV" - * }, - * "ExportSourceType": "METRICS_DATA", - * "JobId": "ef28cf62-9d8e-4b60-9283-b09816c99a99", - * "JobStatus": "PROCESSING", - * "Statistics": { - * "ExportedRecordsCount": 5, - * "ProcessedRecordsCount": 5 - * } - * } - * *\/ - * // example id: get-export-job-1685699942772 - * ``` * + * @public */ export class GetExportJobCommand extends $Command .classBuilder< diff --git a/clients/client-sesv2/src/commands/GetImportJobCommand.ts b/clients/client-sesv2/src/commands/GetImportJobCommand.ts index e6cb7e79747eb..c5f67ee828c36 100644 --- a/clients/client-sesv2/src/commands/GetImportJobCommand.ts +++ b/clients/client-sesv2/src/commands/GetImportJobCommand.ts @@ -86,6 +86,7 @@ export interface GetImportJobCommandOutput extends GetImportJobResponse, __Metad * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetImportJobCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetMessageInsightsCommand.ts b/clients/client-sesv2/src/commands/GetMessageInsightsCommand.ts index 2d82bdbee4371..6354636ccc6ee 100644 --- a/clients/client-sesv2/src/commands/GetMessageInsightsCommand.ts +++ b/clients/client-sesv2/src/commands/GetMessageInsightsCommand.ts @@ -101,67 +101,8 @@ export interface GetMessageInsightsCommandOutput extends GetMessageInsightsRespo * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* - * @public - * @example Get Message Insights - * ```javascript - * // Provides information about a specific message. - * const input = { - * "MessageId": "000000000000ab00-0a000aa0-1234-0a0a-1234-0a0aaa0aa00a-000000" - * }; - * const command = new GetMessageInsightsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "EmailTags": [ - * { - * "Name": "ses:operation", - * "Value": "SendEmail" - * }, - * { - * "Name": "ses:recipient-isp", - * "Value": "UNKNOWN_ISP" - * }, - * { - * "Name": "ses:source-ip", - * "Value": "0.0.0.0" - * }, - * { - * "Name": "ses:from-domain", - * "Value": "example.com" - * }, - * { - * "Name": "ses:sender-identity", - * "Value": "hello@example.com" - * }, - * { - * "Name": "ses:caller-identity", - * "Value": "Identity" - * } - * ], - * "FromEmailAddress": "hello@example.com", - * "Insights": [ - * { - * "Destination": "recipient@example.com", - * "Events": [ - * { - * "Timestamp": "2023-01-01T00:00:00.000000+01:00", - * "Type": "SEND" - * }, - * { - * "Timestamp": "2023-01-01T00:00:01.000000+01:00", - * "Type": "DELIVERY" - * } - * ], - * "Isp": "UNKNOWN_ISP" - * } - * ], - * "MessageId": "000000000000ab00-0a000aa0-1234-0a0a-1234-0a0aaa0aa00a-000000", - * "Subject": "hello" - * } - * *\/ - * // example id: get-message-insights-1689955713493 - * ``` * + * @public */ export class GetMessageInsightsCommand extends $Command .classBuilder< diff --git a/clients/client-sesv2/src/commands/GetMultiRegionEndpointCommand.ts b/clients/client-sesv2/src/commands/GetMultiRegionEndpointCommand.ts index ce0443c50ca48..13f35606fe5c9 100644 --- a/clients/client-sesv2/src/commands/GetMultiRegionEndpointCommand.ts +++ b/clients/client-sesv2/src/commands/GetMultiRegionEndpointCommand.ts @@ -75,6 +75,7 @@ export interface GetMultiRegionEndpointCommandOutput extends GetMultiRegionEndpo * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetMultiRegionEndpointCommand extends $Command diff --git a/clients/client-sesv2/src/commands/GetSuppressedDestinationCommand.ts b/clients/client-sesv2/src/commands/GetSuppressedDestinationCommand.ts index 5662b75ad8e58..c7c6a559612c8 100644 --- a/clients/client-sesv2/src/commands/GetSuppressedDestinationCommand.ts +++ b/clients/client-sesv2/src/commands/GetSuppressedDestinationCommand.ts @@ -73,6 +73,7 @@ export interface GetSuppressedDestinationCommandOutput extends GetSuppressedDest * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class GetSuppressedDestinationCommand extends $Command diff --git a/clients/client-sesv2/src/commands/ListConfigurationSetsCommand.ts b/clients/client-sesv2/src/commands/ListConfigurationSetsCommand.ts index 2ecdb5f782e67..dd70469a16777 100644 --- a/clients/client-sesv2/src/commands/ListConfigurationSetsCommand.ts +++ b/clients/client-sesv2/src/commands/ListConfigurationSetsCommand.ts @@ -71,6 +71,7 @@ export interface ListConfigurationSetsCommandOutput extends ListConfigurationSet * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class ListConfigurationSetsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/ListContactListsCommand.ts b/clients/client-sesv2/src/commands/ListContactListsCommand.ts index 7abea34bda17b..2804451fdf06e 100644 --- a/clients/client-sesv2/src/commands/ListContactListsCommand.ts +++ b/clients/client-sesv2/src/commands/ListContactListsCommand.ts @@ -68,6 +68,7 @@ export interface ListContactListsCommandOutput extends ListContactListsResponse, * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class ListContactListsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/ListContactsCommand.ts b/clients/client-sesv2/src/commands/ListContactsCommand.ts index 6b943cfe83d91..56c3f48789da8 100644 --- a/clients/client-sesv2/src/commands/ListContactsCommand.ts +++ b/clients/client-sesv2/src/commands/ListContactsCommand.ts @@ -92,6 +92,7 @@ export interface ListContactsCommandOutput extends ListContactsResponse, __Metad * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class ListContactsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/ListCustomVerificationEmailTemplatesCommand.ts b/clients/client-sesv2/src/commands/ListCustomVerificationEmailTemplatesCommand.ts index 02c336f8a87c5..b80d51c6452b2 100644 --- a/clients/client-sesv2/src/commands/ListCustomVerificationEmailTemplatesCommand.ts +++ b/clients/client-sesv2/src/commands/ListCustomVerificationEmailTemplatesCommand.ts @@ -84,6 +84,7 @@ export interface ListCustomVerificationEmailTemplatesCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class ListCustomVerificationEmailTemplatesCommand extends $Command diff --git a/clients/client-sesv2/src/commands/ListDedicatedIpPoolsCommand.ts b/clients/client-sesv2/src/commands/ListDedicatedIpPoolsCommand.ts index ff87649693308..88cd00e4298cb 100644 --- a/clients/client-sesv2/src/commands/ListDedicatedIpPoolsCommand.ts +++ b/clients/client-sesv2/src/commands/ListDedicatedIpPoolsCommand.ts @@ -66,6 +66,7 @@ export interface ListDedicatedIpPoolsCommandOutput extends ListDedicatedIpPoolsR * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class ListDedicatedIpPoolsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/ListDeliverabilityTestReportsCommand.ts b/clients/client-sesv2/src/commands/ListDeliverabilityTestReportsCommand.ts index 1d859e9c702cb..471430ce4da6e 100644 --- a/clients/client-sesv2/src/commands/ListDeliverabilityTestReportsCommand.ts +++ b/clients/client-sesv2/src/commands/ListDeliverabilityTestReportsCommand.ts @@ -82,6 +82,7 @@ export interface ListDeliverabilityTestReportsCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class ListDeliverabilityTestReportsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/ListDomainDeliverabilityCampaignsCommand.ts b/clients/client-sesv2/src/commands/ListDomainDeliverabilityCampaignsCommand.ts index e6c355a2e3d2e..6bf0b7223c46c 100644 --- a/clients/client-sesv2/src/commands/ListDomainDeliverabilityCampaignsCommand.ts +++ b/clients/client-sesv2/src/commands/ListDomainDeliverabilityCampaignsCommand.ts @@ -100,6 +100,7 @@ export interface ListDomainDeliverabilityCampaignsCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class ListDomainDeliverabilityCampaignsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/ListEmailIdentitiesCommand.ts b/clients/client-sesv2/src/commands/ListEmailIdentitiesCommand.ts index 84f809bf0d54a..fde83f39069b0 100644 --- a/clients/client-sesv2/src/commands/ListEmailIdentitiesCommand.ts +++ b/clients/client-sesv2/src/commands/ListEmailIdentitiesCommand.ts @@ -73,6 +73,7 @@ export interface ListEmailIdentitiesCommandOutput extends ListEmailIdentitiesRes * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class ListEmailIdentitiesCommand extends $Command diff --git a/clients/client-sesv2/src/commands/ListEmailTemplatesCommand.ts b/clients/client-sesv2/src/commands/ListEmailTemplatesCommand.ts index f282b0c1f6a94..24a9d320be3ba 100644 --- a/clients/client-sesv2/src/commands/ListEmailTemplatesCommand.ts +++ b/clients/client-sesv2/src/commands/ListEmailTemplatesCommand.ts @@ -70,6 +70,7 @@ export interface ListEmailTemplatesCommandOutput extends ListEmailTemplatesRespo * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class ListEmailTemplatesCommand extends $Command diff --git a/clients/client-sesv2/src/commands/ListExportJobsCommand.ts b/clients/client-sesv2/src/commands/ListExportJobsCommand.ts index d0a70a6fa2f16..5243aa6108210 100644 --- a/clients/client-sesv2/src/commands/ListExportJobsCommand.ts +++ b/clients/client-sesv2/src/commands/ListExportJobsCommand.ts @@ -73,32 +73,8 @@ export interface ListExportJobsCommandOutput extends ListExportJobsResponse, __M * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* - * @public - * @example List export jobs - * ```javascript - * // Lists export jobs of type METRICS_DATA and status PROCESSING - * const input = { - * "ExportSourceType": "METRICS_DATA", - * "JobStatus": "PROCESSING", - * "PageSize": 25 - * }; - * const command = new ListExportJobsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ExportJobs": [ - * { - * "CreatedTimestamp": "167697473543", - * "ExportSourceType": "METRICS_DATA", - * "JobId": "72de83a0-6b49-47ca-9783-8b812576887a", - * "JobStatus": "PROCESSING" - * } - * ] - * } - * *\/ - * // example id: list-export-jobs-1685702074256 - * ``` * + * @public */ export class ListExportJobsCommand extends $Command .classBuilder< diff --git a/clients/client-sesv2/src/commands/ListImportJobsCommand.ts b/clients/client-sesv2/src/commands/ListImportJobsCommand.ts index e725a098dbd9e..3c807cf76b34e 100644 --- a/clients/client-sesv2/src/commands/ListImportJobsCommand.ts +++ b/clients/client-sesv2/src/commands/ListImportJobsCommand.ts @@ -81,6 +81,7 @@ export interface ListImportJobsCommandOutput extends ListImportJobsResponse, __M * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class ListImportJobsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/ListMultiRegionEndpointsCommand.ts b/clients/client-sesv2/src/commands/ListMultiRegionEndpointsCommand.ts index 76a4500e7786f..3b59b825518f0 100644 --- a/clients/client-sesv2/src/commands/ListMultiRegionEndpointsCommand.ts +++ b/clients/client-sesv2/src/commands/ListMultiRegionEndpointsCommand.ts @@ -76,6 +76,7 @@ export interface ListMultiRegionEndpointsCommandOutput extends ListMultiRegionEn * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class ListMultiRegionEndpointsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/ListRecommendationsCommand.ts b/clients/client-sesv2/src/commands/ListRecommendationsCommand.ts index e961f0d34089b..ff864d2fcb846 100644 --- a/clients/client-sesv2/src/commands/ListRecommendationsCommand.ts +++ b/clients/client-sesv2/src/commands/ListRecommendationsCommand.ts @@ -80,6 +80,7 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class ListRecommendationsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/ListSuppressedDestinationsCommand.ts b/clients/client-sesv2/src/commands/ListSuppressedDestinationsCommand.ts index b25e689e4870c..b388c1868e562 100644 --- a/clients/client-sesv2/src/commands/ListSuppressedDestinationsCommand.ts +++ b/clients/client-sesv2/src/commands/ListSuppressedDestinationsCommand.ts @@ -78,6 +78,7 @@ export interface ListSuppressedDestinationsCommandOutput extends ListSuppressedD * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class ListSuppressedDestinationsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/ListTagsForResourceCommand.ts b/clients/client-sesv2/src/commands/ListTagsForResourceCommand.ts index d6f2968f1ef92..4c0102107d174 100644 --- a/clients/client-sesv2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-sesv2/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts b/clients/client-sesv2/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts index 2e34d5f486bfe..30c0556ffc845 100644 --- a/clients/client-sesv2/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts @@ -68,6 +68,7 @@ export interface PutAccountDedicatedIpWarmupAttributesCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutAccountDedicatedIpWarmupAttributesCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutAccountDetailsCommand.ts b/clients/client-sesv2/src/commands/PutAccountDetailsCommand.ts index 7215532e98ce7..7d242c8822b3c 100644 --- a/clients/client-sesv2/src/commands/PutAccountDetailsCommand.ts +++ b/clients/client-sesv2/src/commands/PutAccountDetailsCommand.ts @@ -73,6 +73,7 @@ export interface PutAccountDetailsCommandOutput extends PutAccountDetailsRespons * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutAccountDetailsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutAccountSendingAttributesCommand.ts b/clients/client-sesv2/src/commands/PutAccountSendingAttributesCommand.ts index a13b4012fd826..03e09aee2c774 100644 --- a/clients/client-sesv2/src/commands/PutAccountSendingAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutAccountSendingAttributesCommand.ts @@ -64,6 +64,7 @@ export interface PutAccountSendingAttributesCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutAccountSendingAttributesCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutAccountSuppressionAttributesCommand.ts b/clients/client-sesv2/src/commands/PutAccountSuppressionAttributesCommand.ts index 3edf510369048..3f48e14a5537d 100644 --- a/clients/client-sesv2/src/commands/PutAccountSuppressionAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutAccountSuppressionAttributesCommand.ts @@ -66,6 +66,7 @@ export interface PutAccountSuppressionAttributesCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutAccountSuppressionAttributesCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutAccountVdmAttributesCommand.ts b/clients/client-sesv2/src/commands/PutAccountVdmAttributesCommand.ts index 4813a3d49d380..7c0662dfea025 100644 --- a/clients/client-sesv2/src/commands/PutAccountVdmAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutAccountVdmAttributesCommand.ts @@ -68,6 +68,7 @@ export interface PutAccountVdmAttributesCommandOutput extends PutAccountVdmAttri * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutAccountVdmAttributesCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutConfigurationSetArchivingOptionsCommand.ts b/clients/client-sesv2/src/commands/PutConfigurationSetArchivingOptionsCommand.ts index 7e8ef1865eb0f..1ece2da3f2268 100644 --- a/clients/client-sesv2/src/commands/PutConfigurationSetArchivingOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/PutConfigurationSetArchivingOptionsCommand.ts @@ -73,19 +73,22 @@ export interface PutConfigurationSetArchivingOptionsCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* - * @public + * * @example Used to associate an MailManager archive with a ConfigurationSet. * ```javascript * // This example associates an archive arn with a configuration set. * const input = { - * "ArchiveArn": "arn:aws:ses:us-west-2:123456789012:mailmanager-archive/a-abcdefghijklmnopqrstuvwxyz", - * "ConfigurationSetName": "sample-configuration-name" + * ArchiveArn: "arn:aws:ses:us-west-2:123456789012:mailmanager-archive/a-abcdefghijklmnopqrstuvwxyz", + * ConfigurationSetName: "sample-configuration-name" * }; * const command = new PutConfigurationSetArchivingOptionsCommand(input); - * await client.send(command); - * // example id: put-configuration-set-archiving-options-example-1737363685 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class PutConfigurationSetArchivingOptionsCommand extends $Command .classBuilder< diff --git a/clients/client-sesv2/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts b/clients/client-sesv2/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts index 3f6e02990696b..6f1a978db1707 100644 --- a/clients/client-sesv2/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts @@ -74,6 +74,7 @@ export interface PutConfigurationSetDeliveryOptionsCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutConfigurationSetDeliveryOptionsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutConfigurationSetReputationOptionsCommand.ts b/clients/client-sesv2/src/commands/PutConfigurationSetReputationOptionsCommand.ts index 2909ff99b20e3..7a3aaf099d3df 100644 --- a/clients/client-sesv2/src/commands/PutConfigurationSetReputationOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/PutConfigurationSetReputationOptionsCommand.ts @@ -72,6 +72,7 @@ export interface PutConfigurationSetReputationOptionsCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutConfigurationSetReputationOptionsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutConfigurationSetSendingOptionsCommand.ts b/clients/client-sesv2/src/commands/PutConfigurationSetSendingOptionsCommand.ts index 0a16dab18bc0e..905da11afcea7 100644 --- a/clients/client-sesv2/src/commands/PutConfigurationSetSendingOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/PutConfigurationSetSendingOptionsCommand.ts @@ -72,6 +72,7 @@ export interface PutConfigurationSetSendingOptionsCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutConfigurationSetSendingOptionsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutConfigurationSetSuppressionOptionsCommand.ts b/clients/client-sesv2/src/commands/PutConfigurationSetSuppressionOptionsCommand.ts index 82787ea94731e..84b14a840deb3 100644 --- a/clients/client-sesv2/src/commands/PutConfigurationSetSuppressionOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/PutConfigurationSetSuppressionOptionsCommand.ts @@ -74,6 +74,7 @@ export interface PutConfigurationSetSuppressionOptionsCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutConfigurationSetSuppressionOptionsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutConfigurationSetTrackingOptionsCommand.ts b/clients/client-sesv2/src/commands/PutConfigurationSetTrackingOptionsCommand.ts index d8718deab3c23..bed15194637d4 100644 --- a/clients/client-sesv2/src/commands/PutConfigurationSetTrackingOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/PutConfigurationSetTrackingOptionsCommand.ts @@ -71,6 +71,7 @@ export interface PutConfigurationSetTrackingOptionsCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutConfigurationSetTrackingOptionsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutConfigurationSetVdmOptionsCommand.ts b/clients/client-sesv2/src/commands/PutConfigurationSetVdmOptionsCommand.ts index 7fc87a0eecbb6..dccaa0fb54500 100644 --- a/clients/client-sesv2/src/commands/PutConfigurationSetVdmOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/PutConfigurationSetVdmOptionsCommand.ts @@ -76,6 +76,7 @@ export interface PutConfigurationSetVdmOptionsCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutConfigurationSetVdmOptionsCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutDedicatedIpInPoolCommand.ts b/clients/client-sesv2/src/commands/PutDedicatedIpInPoolCommand.ts index 4f24fc095ffbf..6822178a5e97a 100644 --- a/clients/client-sesv2/src/commands/PutDedicatedIpInPoolCommand.ts +++ b/clients/client-sesv2/src/commands/PutDedicatedIpInPoolCommand.ts @@ -71,6 +71,7 @@ export interface PutDedicatedIpInPoolCommandOutput extends PutDedicatedIpInPoolR * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutDedicatedIpInPoolCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutDedicatedIpPoolScalingAttributesCommand.ts b/clients/client-sesv2/src/commands/PutDedicatedIpPoolScalingAttributesCommand.ts index d00fa0231c0d5..3a98c7b41e607 100644 --- a/clients/client-sesv2/src/commands/PutDedicatedIpPoolScalingAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutDedicatedIpPoolScalingAttributesCommand.ts @@ -78,19 +78,22 @@ export interface PutDedicatedIpPoolScalingAttributesCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* - * @public + * * @example Used to convert a dedicated IP pool to a different scaling mode. * ```javascript * // This example converts a dedicated IP pool from STANDARD to MANAGED. * const input = { - * "PoolName": "sample-ses-pool", - * "ScalingMode": "MANAGED" + * PoolName: "sample-ses-pool", + * ScalingMode: "MANAGED" * }; * const command = new PutDedicatedIpPoolScalingAttributesCommand(input); - * await client.send(command); - * // example id: put-dedicated-ip-pool-scaling-attributes-example-1683639172 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class PutDedicatedIpPoolScalingAttributesCommand extends $Command .classBuilder< diff --git a/clients/client-sesv2/src/commands/PutDedicatedIpWarmupAttributesCommand.ts b/clients/client-sesv2/src/commands/PutDedicatedIpWarmupAttributesCommand.ts index 147de3d809fcb..6d813338eda4b 100644 --- a/clients/client-sesv2/src/commands/PutDedicatedIpWarmupAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutDedicatedIpWarmupAttributesCommand.ts @@ -68,6 +68,7 @@ export interface PutDedicatedIpWarmupAttributesCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutDedicatedIpWarmupAttributesCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutDeliverabilityDashboardOptionCommand.ts b/clients/client-sesv2/src/commands/PutDeliverabilityDashboardOptionCommand.ts index 205807b3feade..a3a092ce79d88 100644 --- a/clients/client-sesv2/src/commands/PutDeliverabilityDashboardOptionCommand.ts +++ b/clients/client-sesv2/src/commands/PutDeliverabilityDashboardOptionCommand.ts @@ -90,6 +90,7 @@ export interface PutDeliverabilityDashboardOptionCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutDeliverabilityDashboardOptionCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutEmailIdentityConfigurationSetAttributesCommand.ts b/clients/client-sesv2/src/commands/PutEmailIdentityConfigurationSetAttributesCommand.ts index ea76e4886e3a6..a4ecc53237afa 100644 --- a/clients/client-sesv2/src/commands/PutEmailIdentityConfigurationSetAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutEmailIdentityConfigurationSetAttributesCommand.ts @@ -72,6 +72,7 @@ export interface PutEmailIdentityConfigurationSetAttributesCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutEmailIdentityConfigurationSetAttributesCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutEmailIdentityDkimAttributesCommand.ts b/clients/client-sesv2/src/commands/PutEmailIdentityDkimAttributesCommand.ts index f6e7a907c5445..0c9207a4860b7 100644 --- a/clients/client-sesv2/src/commands/PutEmailIdentityDkimAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutEmailIdentityDkimAttributesCommand.ts @@ -68,6 +68,7 @@ export interface PutEmailIdentityDkimAttributesCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutEmailIdentityDkimAttributesCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutEmailIdentityDkimSigningAttributesCommand.ts b/clients/client-sesv2/src/commands/PutEmailIdentityDkimSigningAttributesCommand.ts index f08735a417fb7..19a62ffa3df1c 100644 --- a/clients/client-sesv2/src/commands/PutEmailIdentityDkimSigningAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutEmailIdentityDkimSigningAttributesCommand.ts @@ -106,6 +106,7 @@ export interface PutEmailIdentityDkimSigningAttributesCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutEmailIdentityDkimSigningAttributesCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts b/clients/client-sesv2/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts index 15231d967e0da..b81316957ad82 100644 --- a/clients/client-sesv2/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts @@ -80,6 +80,7 @@ export interface PutEmailIdentityFeedbackAttributesCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutEmailIdentityFeedbackAttributesCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutEmailIdentityMailFromAttributesCommand.ts b/clients/client-sesv2/src/commands/PutEmailIdentityMailFromAttributesCommand.ts index f62ccfdebae75..d415d6aae85ba 100644 --- a/clients/client-sesv2/src/commands/PutEmailIdentityMailFromAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutEmailIdentityMailFromAttributesCommand.ts @@ -73,6 +73,7 @@ export interface PutEmailIdentityMailFromAttributesCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutEmailIdentityMailFromAttributesCommand extends $Command diff --git a/clients/client-sesv2/src/commands/PutSuppressedDestinationCommand.ts b/clients/client-sesv2/src/commands/PutSuppressedDestinationCommand.ts index e86b3fbf7fee2..e5175c2f0fe8c 100644 --- a/clients/client-sesv2/src/commands/PutSuppressedDestinationCommand.ts +++ b/clients/client-sesv2/src/commands/PutSuppressedDestinationCommand.ts @@ -60,6 +60,7 @@ export interface PutSuppressedDestinationCommandOutput extends PutSuppressedDest * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class PutSuppressedDestinationCommand extends $Command diff --git a/clients/client-sesv2/src/commands/SendBulkEmailCommand.ts b/clients/client-sesv2/src/commands/SendBulkEmailCommand.ts index d6dc25cdaaf46..28f4980f97863 100644 --- a/clients/client-sesv2/src/commands/SendBulkEmailCommand.ts +++ b/clients/client-sesv2/src/commands/SendBulkEmailCommand.ts @@ -151,6 +151,7 @@ export interface SendBulkEmailCommandOutput extends SendBulkEmailResponse, __Met * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class SendBulkEmailCommand extends $Command diff --git a/clients/client-sesv2/src/commands/SendCustomVerificationEmailCommand.ts b/clients/client-sesv2/src/commands/SendCustomVerificationEmailCommand.ts index dec3048029883..c760fb24e378b 100644 --- a/clients/client-sesv2/src/commands/SendCustomVerificationEmailCommand.ts +++ b/clients/client-sesv2/src/commands/SendCustomVerificationEmailCommand.ts @@ -92,6 +92,7 @@ export interface SendCustomVerificationEmailCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class SendCustomVerificationEmailCommand extends $Command diff --git a/clients/client-sesv2/src/commands/SendEmailCommand.ts b/clients/client-sesv2/src/commands/SendEmailCommand.ts index dfa8148fb4b73..f4042bc6291dc 100644 --- a/clients/client-sesv2/src/commands/SendEmailCommand.ts +++ b/clients/client-sesv2/src/commands/SendEmailCommand.ts @@ -176,6 +176,7 @@ export interface SendEmailCommandOutput extends SendEmailResponse, __MetadataBea * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class SendEmailCommand extends $Command diff --git a/clients/client-sesv2/src/commands/TagResourceCommand.ts b/clients/client-sesv2/src/commands/TagResourceCommand.ts index 1947308790e04..c51e6eabba447 100644 --- a/clients/client-sesv2/src/commands/TagResourceCommand.ts +++ b/clients/client-sesv2/src/commands/TagResourceCommand.ts @@ -79,6 +79,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-sesv2/src/commands/TestRenderEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/TestRenderEmailTemplateCommand.ts index 2e92c48eeaa25..b4f8c7279d759 100644 --- a/clients/client-sesv2/src/commands/TestRenderEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/TestRenderEmailTemplateCommand.ts @@ -67,6 +67,7 @@ export interface TestRenderEmailTemplateCommandOutput extends TestRenderEmailTem * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class TestRenderEmailTemplateCommand extends $Command diff --git a/clients/client-sesv2/src/commands/UntagResourceCommand.ts b/clients/client-sesv2/src/commands/UntagResourceCommand.ts index b9640389cfb22..1fb07b4dc7847 100644 --- a/clients/client-sesv2/src/commands/UntagResourceCommand.ts +++ b/clients/client-sesv2/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-sesv2/src/commands/UpdateConfigurationSetEventDestinationCommand.ts b/clients/client-sesv2/src/commands/UpdateConfigurationSetEventDestinationCommand.ts index 728bee4696906..be210ed99e667 100644 --- a/clients/client-sesv2/src/commands/UpdateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-sesv2/src/commands/UpdateConfigurationSetEventDestinationCommand.ts @@ -105,6 +105,7 @@ export interface UpdateConfigurationSetEventDestinationCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class UpdateConfigurationSetEventDestinationCommand extends $Command diff --git a/clients/client-sesv2/src/commands/UpdateContactCommand.ts b/clients/client-sesv2/src/commands/UpdateContactCommand.ts index efe03babf35cb..d8705b9d6fb99 100644 --- a/clients/client-sesv2/src/commands/UpdateContactCommand.ts +++ b/clients/client-sesv2/src/commands/UpdateContactCommand.ts @@ -79,6 +79,7 @@ export interface UpdateContactCommandOutput extends UpdateContactResponse, __Met * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class UpdateContactCommand extends $Command diff --git a/clients/client-sesv2/src/commands/UpdateContactListCommand.ts b/clients/client-sesv2/src/commands/UpdateContactListCommand.ts index 2b526dee96c8e..da60094f21a4c 100644 --- a/clients/client-sesv2/src/commands/UpdateContactListCommand.ts +++ b/clients/client-sesv2/src/commands/UpdateContactListCommand.ts @@ -74,6 +74,7 @@ export interface UpdateContactListCommandOutput extends UpdateContactListRespons * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class UpdateContactListCommand extends $Command diff --git a/clients/client-sesv2/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts index 86de053be5cb6..96bdbdb4bd70c 100644 --- a/clients/client-sesv2/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts @@ -80,6 +80,7 @@ export interface UpdateCustomVerificationEmailTemplateCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class UpdateCustomVerificationEmailTemplateCommand extends $Command diff --git a/clients/client-sesv2/src/commands/UpdateEmailIdentityPolicyCommand.ts b/clients/client-sesv2/src/commands/UpdateEmailIdentityPolicyCommand.ts index 0db10e635f76d..94e74d89bd296 100644 --- a/clients/client-sesv2/src/commands/UpdateEmailIdentityPolicyCommand.ts +++ b/clients/client-sesv2/src/commands/UpdateEmailIdentityPolicyCommand.ts @@ -75,6 +75,7 @@ export interface UpdateEmailIdentityPolicyCommandOutput extends UpdateEmailIdent * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class UpdateEmailIdentityPolicyCommand extends $Command diff --git a/clients/client-sesv2/src/commands/UpdateEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/UpdateEmailTemplateCommand.ts index 4bbfa57035bfe..9895ee11531e6 100644 --- a/clients/client-sesv2/src/commands/UpdateEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/UpdateEmailTemplateCommand.ts @@ -70,6 +70,7 @@ export interface UpdateEmailTemplateCommandOutput extends UpdateEmailTemplateRes * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * * @public */ export class UpdateEmailTemplateCommand extends $Command diff --git a/clients/client-sfn/src/commands/CreateActivityCommand.ts b/clients/client-sfn/src/commands/CreateActivityCommand.ts index e202b9458fe1f..b2f0da69d6671 100644 --- a/clients/client-sfn/src/commands/CreateActivityCommand.ts +++ b/clients/client-sfn/src/commands/CreateActivityCommand.ts @@ -106,6 +106,7 @@ export interface CreateActivityCommandOutput extends CreateActivityOutput, __Met * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class CreateActivityCommand extends $Command diff --git a/clients/client-sfn/src/commands/CreateStateMachineAliasCommand.ts b/clients/client-sfn/src/commands/CreateStateMachineAliasCommand.ts index 40e59ad10b0f5..ba9751733c91b 100644 --- a/clients/client-sfn/src/commands/CreateStateMachineAliasCommand.ts +++ b/clients/client-sfn/src/commands/CreateStateMachineAliasCommand.ts @@ -130,6 +130,7 @@ export interface CreateStateMachineAliasCommandOutput extends CreateStateMachine * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class CreateStateMachineAliasCommand extends $Command diff --git a/clients/client-sfn/src/commands/CreateStateMachineCommand.ts b/clients/client-sfn/src/commands/CreateStateMachineCommand.ts index d9d67fbd9bea1..d719969e87a9e 100644 --- a/clients/client-sfn/src/commands/CreateStateMachineCommand.ts +++ b/clients/client-sfn/src/commands/CreateStateMachineCommand.ts @@ -165,6 +165,7 @@ export interface CreateStateMachineCommandOutput extends CreateStateMachineOutpu * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class CreateStateMachineCommand extends $Command diff --git a/clients/client-sfn/src/commands/DeleteActivityCommand.ts b/clients/client-sfn/src/commands/DeleteActivityCommand.ts index 3663014e056c4..9a695712af010 100644 --- a/clients/client-sfn/src/commands/DeleteActivityCommand.ts +++ b/clients/client-sfn/src/commands/DeleteActivityCommand.ts @@ -56,6 +56,7 @@ export interface DeleteActivityCommandOutput extends DeleteActivityOutput, __Met * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class DeleteActivityCommand extends $Command diff --git a/clients/client-sfn/src/commands/DeleteStateMachineAliasCommand.ts b/clients/client-sfn/src/commands/DeleteStateMachineAliasCommand.ts index 0b7f59a5432e9..0672bcaeb2202 100644 --- a/clients/client-sfn/src/commands/DeleteStateMachineAliasCommand.ts +++ b/clients/client-sfn/src/commands/DeleteStateMachineAliasCommand.ts @@ -94,6 +94,7 @@ export interface DeleteStateMachineAliasCommandOutput extends DeleteStateMachine * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class DeleteStateMachineAliasCommand extends $Command diff --git a/clients/client-sfn/src/commands/DeleteStateMachineCommand.ts b/clients/client-sfn/src/commands/DeleteStateMachineCommand.ts index 1d9b4182d25b2..f9a5d1c5cae55 100644 --- a/clients/client-sfn/src/commands/DeleteStateMachineCommand.ts +++ b/clients/client-sfn/src/commands/DeleteStateMachineCommand.ts @@ -85,6 +85,7 @@ export interface DeleteStateMachineCommandOutput extends DeleteStateMachineOutpu * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class DeleteStateMachineCommand extends $Command diff --git a/clients/client-sfn/src/commands/DeleteStateMachineVersionCommand.ts b/clients/client-sfn/src/commands/DeleteStateMachineVersionCommand.ts index 1185fc757ac77..2b5bb45ac69ce 100644 --- a/clients/client-sfn/src/commands/DeleteStateMachineVersionCommand.ts +++ b/clients/client-sfn/src/commands/DeleteStateMachineVersionCommand.ts @@ -86,6 +86,7 @@ export interface DeleteStateMachineVersionCommandOutput extends DeleteStateMachi * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class DeleteStateMachineVersionCommand extends $Command diff --git a/clients/client-sfn/src/commands/DescribeActivityCommand.ts b/clients/client-sfn/src/commands/DescribeActivityCommand.ts index 928c2f610035a..e069c72e53758 100644 --- a/clients/client-sfn/src/commands/DescribeActivityCommand.ts +++ b/clients/client-sfn/src/commands/DescribeActivityCommand.ts @@ -71,6 +71,7 @@ export interface DescribeActivityCommandOutput extends DescribeActivityOutput, _ * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class DescribeActivityCommand extends $Command diff --git a/clients/client-sfn/src/commands/DescribeExecutionCommand.ts b/clients/client-sfn/src/commands/DescribeExecutionCommand.ts index b0beb8cfdb60e..48d679ecd5c64 100644 --- a/clients/client-sfn/src/commands/DescribeExecutionCommand.ts +++ b/clients/client-sfn/src/commands/DescribeExecutionCommand.ts @@ -104,6 +104,7 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionOutput, * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class DescribeExecutionCommand extends $Command diff --git a/clients/client-sfn/src/commands/DescribeMapRunCommand.ts b/clients/client-sfn/src/commands/DescribeMapRunCommand.ts index 131149ad86284..3988261c64bfc 100644 --- a/clients/client-sfn/src/commands/DescribeMapRunCommand.ts +++ b/clients/client-sfn/src/commands/DescribeMapRunCommand.ts @@ -94,6 +94,7 @@ export interface DescribeMapRunCommandOutput extends DescribeMapRunOutput, __Met * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class DescribeMapRunCommand extends $Command diff --git a/clients/client-sfn/src/commands/DescribeStateMachineAliasCommand.ts b/clients/client-sfn/src/commands/DescribeStateMachineAliasCommand.ts index 5d02be62887b7..ce9d0c6f5abaf 100644 --- a/clients/client-sfn/src/commands/DescribeStateMachineAliasCommand.ts +++ b/clients/client-sfn/src/commands/DescribeStateMachineAliasCommand.ts @@ -103,6 +103,7 @@ export interface DescribeStateMachineAliasCommandOutput extends DescribeStateMac * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class DescribeStateMachineAliasCommand extends $Command diff --git a/clients/client-sfn/src/commands/DescribeStateMachineCommand.ts b/clients/client-sfn/src/commands/DescribeStateMachineCommand.ts index 6d950c246d692..e1240e9dcd7a3 100644 --- a/clients/client-sfn/src/commands/DescribeStateMachineCommand.ts +++ b/clients/client-sfn/src/commands/DescribeStateMachineCommand.ts @@ -141,6 +141,7 @@ export interface DescribeStateMachineCommandOutput extends DescribeStateMachineO * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class DescribeStateMachineCommand extends $Command diff --git a/clients/client-sfn/src/commands/DescribeStateMachineForExecutionCommand.ts b/clients/client-sfn/src/commands/DescribeStateMachineForExecutionCommand.ts index c2eeb2637c6bc..01e1022766b4d 100644 --- a/clients/client-sfn/src/commands/DescribeStateMachineForExecutionCommand.ts +++ b/clients/client-sfn/src/commands/DescribeStateMachineForExecutionCommand.ts @@ -118,6 +118,7 @@ export interface DescribeStateMachineForExecutionCommandOutput * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class DescribeStateMachineForExecutionCommand extends $Command diff --git a/clients/client-sfn/src/commands/GetActivityTaskCommand.ts b/clients/client-sfn/src/commands/GetActivityTaskCommand.ts index e8e5fe7e3a4bd..981222adb02b7 100644 --- a/clients/client-sfn/src/commands/GetActivityTaskCommand.ts +++ b/clients/client-sfn/src/commands/GetActivityTaskCommand.ts @@ -95,6 +95,7 @@ export interface GetActivityTaskCommandOutput extends GetActivityTaskOutput, __M * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class GetActivityTaskCommand extends $Command diff --git a/clients/client-sfn/src/commands/GetExecutionHistoryCommand.ts b/clients/client-sfn/src/commands/GetExecutionHistoryCommand.ts index 42a3988939cc0..2eeac9eb7fbfa 100644 --- a/clients/client-sfn/src/commands/GetExecutionHistoryCommand.ts +++ b/clients/client-sfn/src/commands/GetExecutionHistoryCommand.ts @@ -288,6 +288,7 @@ export interface GetExecutionHistoryCommandOutput extends GetExecutionHistoryOut * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class GetExecutionHistoryCommand extends $Command diff --git a/clients/client-sfn/src/commands/ListActivitiesCommand.ts b/clients/client-sfn/src/commands/ListActivitiesCommand.ts index 10bfa7d1897e8..5db3db52dd0bd 100644 --- a/clients/client-sfn/src/commands/ListActivitiesCommand.ts +++ b/clients/client-sfn/src/commands/ListActivitiesCommand.ts @@ -71,6 +71,7 @@ export interface ListActivitiesCommandOutput extends ListActivitiesOutput, __Met * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class ListActivitiesCommand extends $Command diff --git a/clients/client-sfn/src/commands/ListExecutionsCommand.ts b/clients/client-sfn/src/commands/ListExecutionsCommand.ts index 24315ca68c859..0f1cfa5f615eb 100644 --- a/clients/client-sfn/src/commands/ListExecutionsCommand.ts +++ b/clients/client-sfn/src/commands/ListExecutionsCommand.ts @@ -103,6 +103,7 @@ export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __Met * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class ListExecutionsCommand extends $Command diff --git a/clients/client-sfn/src/commands/ListMapRunsCommand.ts b/clients/client-sfn/src/commands/ListMapRunsCommand.ts index 78a50a90b74b7..11334da50590b 100644 --- a/clients/client-sfn/src/commands/ListMapRunsCommand.ts +++ b/clients/client-sfn/src/commands/ListMapRunsCommand.ts @@ -75,6 +75,7 @@ export interface ListMapRunsCommandOutput extends ListMapRunsOutput, __MetadataB * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class ListMapRunsCommand extends $Command diff --git a/clients/client-sfn/src/commands/ListStateMachineAliasesCommand.ts b/clients/client-sfn/src/commands/ListStateMachineAliasesCommand.ts index 30fb148846d31..49ea12ff934e6 100644 --- a/clients/client-sfn/src/commands/ListStateMachineAliasesCommand.ts +++ b/clients/client-sfn/src/commands/ListStateMachineAliasesCommand.ts @@ -106,6 +106,7 @@ export interface ListStateMachineAliasesCommandOutput extends ListStateMachineAl * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class ListStateMachineAliasesCommand extends $Command diff --git a/clients/client-sfn/src/commands/ListStateMachineVersionsCommand.ts b/clients/client-sfn/src/commands/ListStateMachineVersionsCommand.ts index a7fcc75476380..49e2e29f2ac17 100644 --- a/clients/client-sfn/src/commands/ListStateMachineVersionsCommand.ts +++ b/clients/client-sfn/src/commands/ListStateMachineVersionsCommand.ts @@ -90,6 +90,7 @@ export interface ListStateMachineVersionsCommandOutput extends ListStateMachineV * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class ListStateMachineVersionsCommand extends $Command diff --git a/clients/client-sfn/src/commands/ListStateMachinesCommand.ts b/clients/client-sfn/src/commands/ListStateMachinesCommand.ts index 788beda44d881..485c338e9331f 100644 --- a/clients/client-sfn/src/commands/ListStateMachinesCommand.ts +++ b/clients/client-sfn/src/commands/ListStateMachinesCommand.ts @@ -72,6 +72,7 @@ export interface ListStateMachinesCommandOutput extends ListStateMachinesOutput, * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class ListStateMachinesCommand extends $Command diff --git a/clients/client-sfn/src/commands/ListTagsForResourceCommand.ts b/clients/client-sfn/src/commands/ListTagsForResourceCommand.ts index 934a6577799c8..106bd5f19eecc 100644 --- a/clients/client-sfn/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-sfn/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-sfn/src/commands/PublishStateMachineVersionCommand.ts b/clients/client-sfn/src/commands/PublishStateMachineVersionCommand.ts index 25ae692cd89d0..d1c9f63d7508c 100644 --- a/clients/client-sfn/src/commands/PublishStateMachineVersionCommand.ts +++ b/clients/client-sfn/src/commands/PublishStateMachineVersionCommand.ts @@ -108,6 +108,7 @@ export interface PublishStateMachineVersionCommandOutput extends PublishStateMac * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class PublishStateMachineVersionCommand extends $Command diff --git a/clients/client-sfn/src/commands/RedriveExecutionCommand.ts b/clients/client-sfn/src/commands/RedriveExecutionCommand.ts index a39fdc37cc0b7..4b25274b94eb2 100644 --- a/clients/client-sfn/src/commands/RedriveExecutionCommand.ts +++ b/clients/client-sfn/src/commands/RedriveExecutionCommand.ts @@ -93,6 +93,7 @@ export interface RedriveExecutionCommandOutput extends RedriveExecutionOutput, _ * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class RedriveExecutionCommand extends $Command diff --git a/clients/client-sfn/src/commands/SendTaskFailureCommand.ts b/clients/client-sfn/src/commands/SendTaskFailureCommand.ts index da52d9f1fd407..fe4fc1b93c888 100644 --- a/clients/client-sfn/src/commands/SendTaskFailureCommand.ts +++ b/clients/client-sfn/src/commands/SendTaskFailureCommand.ts @@ -80,6 +80,7 @@ export interface SendTaskFailureCommandOutput extends SendTaskFailureOutput, __M * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class SendTaskFailureCommand extends $Command diff --git a/clients/client-sfn/src/commands/SendTaskHeartbeatCommand.ts b/clients/client-sfn/src/commands/SendTaskHeartbeatCommand.ts index 37d093c56c6a4..929aef4949a5d 100644 --- a/clients/client-sfn/src/commands/SendTaskHeartbeatCommand.ts +++ b/clients/client-sfn/src/commands/SendTaskHeartbeatCommand.ts @@ -76,6 +76,7 @@ export interface SendTaskHeartbeatCommandOutput extends SendTaskHeartbeatOutput, * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class SendTaskHeartbeatCommand extends $Command diff --git a/clients/client-sfn/src/commands/SendTaskSuccessCommand.ts b/clients/client-sfn/src/commands/SendTaskSuccessCommand.ts index 98e2b8b9e1f96..296936db45b90 100644 --- a/clients/client-sfn/src/commands/SendTaskSuccessCommand.ts +++ b/clients/client-sfn/src/commands/SendTaskSuccessCommand.ts @@ -81,6 +81,7 @@ export interface SendTaskSuccessCommandOutput extends SendTaskSuccessOutput, __M * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class SendTaskSuccessCommand extends $Command diff --git a/clients/client-sfn/src/commands/StartExecutionCommand.ts b/clients/client-sfn/src/commands/StartExecutionCommand.ts index 6b6bda7941a96..6cf5ec262fe22 100644 --- a/clients/client-sfn/src/commands/StartExecutionCommand.ts +++ b/clients/client-sfn/src/commands/StartExecutionCommand.ts @@ -139,6 +139,7 @@ export interface StartExecutionCommandOutput extends StartExecutionOutput, __Met * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class StartExecutionCommand extends $Command diff --git a/clients/client-sfn/src/commands/StartSyncExecutionCommand.ts b/clients/client-sfn/src/commands/StartSyncExecutionCommand.ts index f3378f9cffcfa..2a5969f756f33 100644 --- a/clients/client-sfn/src/commands/StartSyncExecutionCommand.ts +++ b/clients/client-sfn/src/commands/StartSyncExecutionCommand.ts @@ -123,6 +123,7 @@ export interface StartSyncExecutionCommandOutput extends StartSyncExecutionOutpu * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class StartSyncExecutionCommand extends $Command diff --git a/clients/client-sfn/src/commands/StopExecutionCommand.ts b/clients/client-sfn/src/commands/StopExecutionCommand.ts index 5320e9582c38f..1b3333d0c6117 100644 --- a/clients/client-sfn/src/commands/StopExecutionCommand.ts +++ b/clients/client-sfn/src/commands/StopExecutionCommand.ts @@ -78,6 +78,7 @@ export interface StopExecutionCommandOutput extends StopExecutionOutput, __Metad * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class StopExecutionCommand extends $Command diff --git a/clients/client-sfn/src/commands/TagResourceCommand.ts b/clients/client-sfn/src/commands/TagResourceCommand.ts index 7d9791e999397..a6d193a7f3927 100644 --- a/clients/client-sfn/src/commands/TagResourceCommand.ts +++ b/clients/client-sfn/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-sfn/src/commands/TestStateCommand.ts b/clients/client-sfn/src/commands/TestStateCommand.ts index c1a886fb45943..45b682437b6f7 100644 --- a/clients/client-sfn/src/commands/TestStateCommand.ts +++ b/clients/client-sfn/src/commands/TestStateCommand.ts @@ -154,6 +154,7 @@ export interface TestStateCommandOutput extends TestStateOutput, __MetadataBeare * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class TestStateCommand extends $Command diff --git a/clients/client-sfn/src/commands/UntagResourceCommand.ts b/clients/client-sfn/src/commands/UntagResourceCommand.ts index f490d8af93690..e4ddae91f8bbd 100644 --- a/clients/client-sfn/src/commands/UntagResourceCommand.ts +++ b/clients/client-sfn/src/commands/UntagResourceCommand.ts @@ -62,6 +62,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-sfn/src/commands/UpdateMapRunCommand.ts b/clients/client-sfn/src/commands/UpdateMapRunCommand.ts index 7820b16ee2659..3044698fe9a63 100644 --- a/clients/client-sfn/src/commands/UpdateMapRunCommand.ts +++ b/clients/client-sfn/src/commands/UpdateMapRunCommand.ts @@ -65,6 +65,7 @@ export interface UpdateMapRunCommandOutput extends UpdateMapRunOutput, __Metadat * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class UpdateMapRunCommand extends $Command diff --git a/clients/client-sfn/src/commands/UpdateStateMachineAliasCommand.ts b/clients/client-sfn/src/commands/UpdateStateMachineAliasCommand.ts index 28f488c0203b2..da61ee936c532 100644 --- a/clients/client-sfn/src/commands/UpdateStateMachineAliasCommand.ts +++ b/clients/client-sfn/src/commands/UpdateStateMachineAliasCommand.ts @@ -121,6 +121,7 @@ export interface UpdateStateMachineAliasCommandOutput extends UpdateStateMachine * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class UpdateStateMachineAliasCommand extends $Command diff --git a/clients/client-sfn/src/commands/UpdateStateMachineCommand.ts b/clients/client-sfn/src/commands/UpdateStateMachineCommand.ts index 7ca529f6a09bc..17824cadb1662 100644 --- a/clients/client-sfn/src/commands/UpdateStateMachineCommand.ts +++ b/clients/client-sfn/src/commands/UpdateStateMachineCommand.ts @@ -172,6 +172,7 @@ export interface UpdateStateMachineCommandOutput extends UpdateStateMachineOutpu * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class UpdateStateMachineCommand extends $Command diff --git a/clients/client-sfn/src/commands/ValidateStateMachineDefinitionCommand.ts b/clients/client-sfn/src/commands/ValidateStateMachineDefinitionCommand.ts index 2d097d4ac4918..1f97543fdf37b 100644 --- a/clients/client-sfn/src/commands/ValidateStateMachineDefinitionCommand.ts +++ b/clients/client-sfn/src/commands/ValidateStateMachineDefinitionCommand.ts @@ -111,6 +111,7 @@ export interface ValidateStateMachineDefinitionCommandOutput * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* + * * @public */ export class ValidateStateMachineDefinitionCommand extends $Command diff --git a/clients/client-shield/src/commands/AssociateDRTLogBucketCommand.ts b/clients/client-shield/src/commands/AssociateDRTLogBucketCommand.ts index c8ca9e9865ec8..bbbc62217bfd8 100644 --- a/clients/client-shield/src/commands/AssociateDRTLogBucketCommand.ts +++ b/clients/client-shield/src/commands/AssociateDRTLogBucketCommand.ts @@ -79,6 +79,7 @@ export interface AssociateDRTLogBucketCommandOutput extends AssociateDRTLogBucke * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class AssociateDRTLogBucketCommand extends $Command diff --git a/clients/client-shield/src/commands/AssociateDRTRoleCommand.ts b/clients/client-shield/src/commands/AssociateDRTRoleCommand.ts index d48694e47be4d..efd2107678854 100644 --- a/clients/client-shield/src/commands/AssociateDRTRoleCommand.ts +++ b/clients/client-shield/src/commands/AssociateDRTRoleCommand.ts @@ -78,6 +78,7 @@ export interface AssociateDRTRoleCommandOutput extends AssociateDRTRoleResponse, * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class AssociateDRTRoleCommand extends $Command diff --git a/clients/client-shield/src/commands/AssociateHealthCheckCommand.ts b/clients/client-shield/src/commands/AssociateHealthCheckCommand.ts index 1d7c17881b3c6..ab61e9b0b56cd 100644 --- a/clients/client-shield/src/commands/AssociateHealthCheckCommand.ts +++ b/clients/client-shield/src/commands/AssociateHealthCheckCommand.ts @@ -74,6 +74,7 @@ export interface AssociateHealthCheckCommandOutput extends AssociateHealthCheckR * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class AssociateHealthCheckCommand extends $Command diff --git a/clients/client-shield/src/commands/AssociateProactiveEngagementDetailsCommand.ts b/clients/client-shield/src/commands/AssociateProactiveEngagementDetailsCommand.ts index e2d577daa3519..44b01c5ddf25a 100644 --- a/clients/client-shield/src/commands/AssociateProactiveEngagementDetailsCommand.ts +++ b/clients/client-shield/src/commands/AssociateProactiveEngagementDetailsCommand.ts @@ -88,6 +88,7 @@ export interface AssociateProactiveEngagementDetailsCommandOutput * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class AssociateProactiveEngagementDetailsCommand extends $Command diff --git a/clients/client-shield/src/commands/CreateProtectionCommand.ts b/clients/client-shield/src/commands/CreateProtectionCommand.ts index c61189720c02d..633387fa678f2 100644 --- a/clients/client-shield/src/commands/CreateProtectionCommand.ts +++ b/clients/client-shield/src/commands/CreateProtectionCommand.ts @@ -92,6 +92,7 @@ export interface CreateProtectionCommandOutput extends CreateProtectionResponse, * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class CreateProtectionCommand extends $Command diff --git a/clients/client-shield/src/commands/CreateProtectionGroupCommand.ts b/clients/client-shield/src/commands/CreateProtectionGroupCommand.ts index aacea3da427d0..b769f6233c333 100644 --- a/clients/client-shield/src/commands/CreateProtectionGroupCommand.ts +++ b/clients/client-shield/src/commands/CreateProtectionGroupCommand.ts @@ -84,6 +84,7 @@ export interface CreateProtectionGroupCommandOutput extends CreateProtectionGrou * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class CreateProtectionGroupCommand extends $Command diff --git a/clients/client-shield/src/commands/CreateSubscriptionCommand.ts b/clients/client-shield/src/commands/CreateSubscriptionCommand.ts index a632448eb87f3..e0d8054587051 100644 --- a/clients/client-shield/src/commands/CreateSubscriptionCommand.ts +++ b/clients/client-shield/src/commands/CreateSubscriptionCommand.ts @@ -62,6 +62,7 @@ export interface CreateSubscriptionCommandOutput extends CreateSubscriptionRespo * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class CreateSubscriptionCommand extends $Command diff --git a/clients/client-shield/src/commands/DeleteProtectionCommand.ts b/clients/client-shield/src/commands/DeleteProtectionCommand.ts index a5a19d40c0520..d61bed113f562 100644 --- a/clients/client-shield/src/commands/DeleteProtectionCommand.ts +++ b/clients/client-shield/src/commands/DeleteProtectionCommand.ts @@ -63,6 +63,7 @@ export interface DeleteProtectionCommandOutput extends DeleteProtectionResponse, * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DeleteProtectionCommand extends $Command diff --git a/clients/client-shield/src/commands/DeleteProtectionGroupCommand.ts b/clients/client-shield/src/commands/DeleteProtectionGroupCommand.ts index d8f21d779675e..0e8e861a45a77 100644 --- a/clients/client-shield/src/commands/DeleteProtectionGroupCommand.ts +++ b/clients/client-shield/src/commands/DeleteProtectionGroupCommand.ts @@ -63,6 +63,7 @@ export interface DeleteProtectionGroupCommandOutput extends DeleteProtectionGrou * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DeleteProtectionGroupCommand extends $Command diff --git a/clients/client-shield/src/commands/DeleteSubscriptionCommand.ts b/clients/client-shield/src/commands/DeleteSubscriptionCommand.ts index f00ca32bed427..77a8658903bbf 100644 --- a/clients/client-shield/src/commands/DeleteSubscriptionCommand.ts +++ b/clients/client-shield/src/commands/DeleteSubscriptionCommand.ts @@ -62,6 +62,7 @@ export interface DeleteSubscriptionCommandOutput extends DeleteSubscriptionRespo * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DeleteSubscriptionCommand extends $Command diff --git a/clients/client-shield/src/commands/DescribeAttackCommand.ts b/clients/client-shield/src/commands/DescribeAttackCommand.ts index 728e62446148d..689e49573a221 100644 --- a/clients/client-shield/src/commands/DescribeAttackCommand.ts +++ b/clients/client-shield/src/commands/DescribeAttackCommand.ts @@ -117,6 +117,7 @@ export interface DescribeAttackCommandOutput extends DescribeAttackResponse, __M * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DescribeAttackCommand extends $Command diff --git a/clients/client-shield/src/commands/DescribeAttackStatisticsCommand.ts b/clients/client-shield/src/commands/DescribeAttackStatisticsCommand.ts index d16951c365ef0..de24babe93d67 100644 --- a/clients/client-shield/src/commands/DescribeAttackStatisticsCommand.ts +++ b/clients/client-shield/src/commands/DescribeAttackStatisticsCommand.ts @@ -77,6 +77,7 @@ export interface DescribeAttackStatisticsCommandOutput extends DescribeAttackSta * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DescribeAttackStatisticsCommand extends $Command diff --git a/clients/client-shield/src/commands/DescribeDRTAccessCommand.ts b/clients/client-shield/src/commands/DescribeDRTAccessCommand.ts index 5af47b04c73f1..0d75664029703 100644 --- a/clients/client-shield/src/commands/DescribeDRTAccessCommand.ts +++ b/clients/client-shield/src/commands/DescribeDRTAccessCommand.ts @@ -62,6 +62,7 @@ export interface DescribeDRTAccessCommandOutput extends DescribeDRTAccessRespons * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DescribeDRTAccessCommand extends $Command diff --git a/clients/client-shield/src/commands/DescribeEmergencyContactSettingsCommand.ts b/clients/client-shield/src/commands/DescribeEmergencyContactSettingsCommand.ts index 15f5a6d92ea20..efe92d2a47f85 100644 --- a/clients/client-shield/src/commands/DescribeEmergencyContactSettingsCommand.ts +++ b/clients/client-shield/src/commands/DescribeEmergencyContactSettingsCommand.ts @@ -70,6 +70,7 @@ export interface DescribeEmergencyContactSettingsCommandOutput * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DescribeEmergencyContactSettingsCommand extends $Command diff --git a/clients/client-shield/src/commands/DescribeProtectionCommand.ts b/clients/client-shield/src/commands/DescribeProtectionCommand.ts index dd43306b33493..0069d77b60541 100644 --- a/clients/client-shield/src/commands/DescribeProtectionCommand.ts +++ b/clients/client-shield/src/commands/DescribeProtectionCommand.ts @@ -80,6 +80,7 @@ export interface DescribeProtectionCommandOutput extends DescribeProtectionRespo * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DescribeProtectionCommand extends $Command diff --git a/clients/client-shield/src/commands/DescribeProtectionGroupCommand.ts b/clients/client-shield/src/commands/DescribeProtectionGroupCommand.ts index 3e8054abfb188..367ec38af5ba8 100644 --- a/clients/client-shield/src/commands/DescribeProtectionGroupCommand.ts +++ b/clients/client-shield/src/commands/DescribeProtectionGroupCommand.ts @@ -70,6 +70,7 @@ export interface DescribeProtectionGroupCommandOutput extends DescribeProtection * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DescribeProtectionGroupCommand extends $Command diff --git a/clients/client-shield/src/commands/DescribeSubscriptionCommand.ts b/clients/client-shield/src/commands/DescribeSubscriptionCommand.ts index 397f2d2695c60..7c17a1033403b 100644 --- a/clients/client-shield/src/commands/DescribeSubscriptionCommand.ts +++ b/clients/client-shield/src/commands/DescribeSubscriptionCommand.ts @@ -90,6 +90,7 @@ export interface DescribeSubscriptionCommandOutput extends DescribeSubscriptionR * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DescribeSubscriptionCommand extends $Command diff --git a/clients/client-shield/src/commands/DisableApplicationLayerAutomaticResponseCommand.ts b/clients/client-shield/src/commands/DisableApplicationLayerAutomaticResponseCommand.ts index 7aa76b1b32701..4341c12fec69f 100644 --- a/clients/client-shield/src/commands/DisableApplicationLayerAutomaticResponseCommand.ts +++ b/clients/client-shield/src/commands/DisableApplicationLayerAutomaticResponseCommand.ts @@ -79,6 +79,7 @@ export interface DisableApplicationLayerAutomaticResponseCommandOutput * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DisableApplicationLayerAutomaticResponseCommand extends $Command diff --git a/clients/client-shield/src/commands/DisableProactiveEngagementCommand.ts b/clients/client-shield/src/commands/DisableProactiveEngagementCommand.ts index 4c45df4c13d47..0692b66b00ac1 100644 --- a/clients/client-shield/src/commands/DisableProactiveEngagementCommand.ts +++ b/clients/client-shield/src/commands/DisableProactiveEngagementCommand.ts @@ -67,6 +67,7 @@ export interface DisableProactiveEngagementCommandOutput extends DisableProactiv * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DisableProactiveEngagementCommand extends $Command diff --git a/clients/client-shield/src/commands/DisassociateDRTLogBucketCommand.ts b/clients/client-shield/src/commands/DisassociateDRTLogBucketCommand.ts index 17c4e5c767a45..a0c4c4e18cba5 100644 --- a/clients/client-shield/src/commands/DisassociateDRTLogBucketCommand.ts +++ b/clients/client-shield/src/commands/DisassociateDRTLogBucketCommand.ts @@ -72,6 +72,7 @@ export interface DisassociateDRTLogBucketCommandOutput extends DisassociateDRTLo * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DisassociateDRTLogBucketCommand extends $Command diff --git a/clients/client-shield/src/commands/DisassociateDRTRoleCommand.ts b/clients/client-shield/src/commands/DisassociateDRTRoleCommand.ts index fce25001c44bf..7e22c35ea85f6 100644 --- a/clients/client-shield/src/commands/DisassociateDRTRoleCommand.ts +++ b/clients/client-shield/src/commands/DisassociateDRTRoleCommand.ts @@ -64,6 +64,7 @@ export interface DisassociateDRTRoleCommandOutput extends DisassociateDRTRoleRes * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DisassociateDRTRoleCommand extends $Command diff --git a/clients/client-shield/src/commands/DisassociateHealthCheckCommand.ts b/clients/client-shield/src/commands/DisassociateHealthCheckCommand.ts index 62d0d0ab4e674..72e253a1b2ee9 100644 --- a/clients/client-shield/src/commands/DisassociateHealthCheckCommand.ts +++ b/clients/client-shield/src/commands/DisassociateHealthCheckCommand.ts @@ -71,6 +71,7 @@ export interface DisassociateHealthCheckCommandOutput extends DisassociateHealth * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class DisassociateHealthCheckCommand extends $Command diff --git a/clients/client-shield/src/commands/EnableApplicationLayerAutomaticResponseCommand.ts b/clients/client-shield/src/commands/EnableApplicationLayerAutomaticResponseCommand.ts index 3587854bea3f1..a08dd498defa0 100644 --- a/clients/client-shield/src/commands/EnableApplicationLayerAutomaticResponseCommand.ts +++ b/clients/client-shield/src/commands/EnableApplicationLayerAutomaticResponseCommand.ts @@ -99,6 +99,7 @@ export interface EnableApplicationLayerAutomaticResponseCommandOutput * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class EnableApplicationLayerAutomaticResponseCommand extends $Command diff --git a/clients/client-shield/src/commands/EnableProactiveEngagementCommand.ts b/clients/client-shield/src/commands/EnableProactiveEngagementCommand.ts index c2eafa8850e54..59641bcad0d35 100644 --- a/clients/client-shield/src/commands/EnableProactiveEngagementCommand.ts +++ b/clients/client-shield/src/commands/EnableProactiveEngagementCommand.ts @@ -67,6 +67,7 @@ export interface EnableProactiveEngagementCommandOutput extends EnableProactiveE * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class EnableProactiveEngagementCommand extends $Command diff --git a/clients/client-shield/src/commands/GetSubscriptionStateCommand.ts b/clients/client-shield/src/commands/GetSubscriptionStateCommand.ts index f213d207a1661..c40a0891af6e3 100644 --- a/clients/client-shield/src/commands/GetSubscriptionStateCommand.ts +++ b/clients/client-shield/src/commands/GetSubscriptionStateCommand.ts @@ -56,6 +56,7 @@ export interface GetSubscriptionStateCommandOutput extends GetSubscriptionStateR * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class GetSubscriptionStateCommand extends $Command diff --git a/clients/client-shield/src/commands/ListAttacksCommand.ts b/clients/client-shield/src/commands/ListAttacksCommand.ts index 91cc07e24cf4b..e2ba8d3fea0c3 100644 --- a/clients/client-shield/src/commands/ListAttacksCommand.ts +++ b/clients/client-shield/src/commands/ListAttacksCommand.ts @@ -90,6 +90,7 @@ export interface ListAttacksCommandOutput extends ListAttacksResponse, __Metadat * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class ListAttacksCommand extends $Command diff --git a/clients/client-shield/src/commands/ListProtectionGroupsCommand.ts b/clients/client-shield/src/commands/ListProtectionGroupsCommand.ts index f0a655ca9bd8c..7e35af8cdc1ad 100644 --- a/clients/client-shield/src/commands/ListProtectionGroupsCommand.ts +++ b/clients/client-shield/src/commands/ListProtectionGroupsCommand.ts @@ -92,6 +92,7 @@ export interface ListProtectionGroupsCommandOutput extends ListProtectionGroupsR * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class ListProtectionGroupsCommand extends $Command diff --git a/clients/client-shield/src/commands/ListProtectionsCommand.ts b/clients/client-shield/src/commands/ListProtectionsCommand.ts index 6eacbeb1d495d..8efd889582cb3 100644 --- a/clients/client-shield/src/commands/ListProtectionsCommand.ts +++ b/clients/client-shield/src/commands/ListProtectionsCommand.ts @@ -95,6 +95,7 @@ export interface ListProtectionsCommandOutput extends ListProtectionsResponse, _ * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class ListProtectionsCommand extends $Command diff --git a/clients/client-shield/src/commands/ListResourcesInProtectionGroupCommand.ts b/clients/client-shield/src/commands/ListResourcesInProtectionGroupCommand.ts index d7cc889c7f440..facebf47c0e1a 100644 --- a/clients/client-shield/src/commands/ListResourcesInProtectionGroupCommand.ts +++ b/clients/client-shield/src/commands/ListResourcesInProtectionGroupCommand.ts @@ -74,6 +74,7 @@ export interface ListResourcesInProtectionGroupCommandOutput * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class ListResourcesInProtectionGroupCommand extends $Command diff --git a/clients/client-shield/src/commands/ListTagsForResourceCommand.ts b/clients/client-shield/src/commands/ListTagsForResourceCommand.ts index 521ce7e5efafe..7754e19512ca6 100644 --- a/clients/client-shield/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-shield/src/commands/ListTagsForResourceCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-shield/src/commands/TagResourceCommand.ts b/clients/client-shield/src/commands/TagResourceCommand.ts index c994bdf9cc91f..40c728cff860f 100644 --- a/clients/client-shield/src/commands/TagResourceCommand.ts +++ b/clients/client-shield/src/commands/TagResourceCommand.ts @@ -71,6 +71,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-shield/src/commands/UntagResourceCommand.ts b/clients/client-shield/src/commands/UntagResourceCommand.ts index dfd9891030dd0..2676134287012 100644 --- a/clients/client-shield/src/commands/UntagResourceCommand.ts +++ b/clients/client-shield/src/commands/UntagResourceCommand.ts @@ -68,6 +68,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-shield/src/commands/UpdateApplicationLayerAutomaticResponseCommand.ts b/clients/client-shield/src/commands/UpdateApplicationLayerAutomaticResponseCommand.ts index d72833b4f4668..3b177d722a572 100644 --- a/clients/client-shield/src/commands/UpdateApplicationLayerAutomaticResponseCommand.ts +++ b/clients/client-shield/src/commands/UpdateApplicationLayerAutomaticResponseCommand.ts @@ -82,6 +82,7 @@ export interface UpdateApplicationLayerAutomaticResponseCommandOutput * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class UpdateApplicationLayerAutomaticResponseCommand extends $Command diff --git a/clients/client-shield/src/commands/UpdateEmergencyContactSettingsCommand.ts b/clients/client-shield/src/commands/UpdateEmergencyContactSettingsCommand.ts index 3a915d82d80dc..fcbbd8401aab2 100644 --- a/clients/client-shield/src/commands/UpdateEmergencyContactSettingsCommand.ts +++ b/clients/client-shield/src/commands/UpdateEmergencyContactSettingsCommand.ts @@ -77,6 +77,7 @@ export interface UpdateEmergencyContactSettingsCommandOutput * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class UpdateEmergencyContactSettingsCommand extends $Command diff --git a/clients/client-shield/src/commands/UpdateProtectionGroupCommand.ts b/clients/client-shield/src/commands/UpdateProtectionGroupCommand.ts index 4b1ab926680ac..75044e56035fd 100644 --- a/clients/client-shield/src/commands/UpdateProtectionGroupCommand.ts +++ b/clients/client-shield/src/commands/UpdateProtectionGroupCommand.ts @@ -72,6 +72,7 @@ export interface UpdateProtectionGroupCommandOutput extends UpdateProtectionGrou * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class UpdateProtectionGroupCommand extends $Command diff --git a/clients/client-shield/src/commands/UpdateSubscriptionCommand.ts b/clients/client-shield/src/commands/UpdateSubscriptionCommand.ts index 5c96a1e8f97b0..bfeac76455fde 100644 --- a/clients/client-shield/src/commands/UpdateSubscriptionCommand.ts +++ b/clients/client-shield/src/commands/UpdateSubscriptionCommand.ts @@ -73,6 +73,7 @@ export interface UpdateSubscriptionCommandOutput extends UpdateSubscriptionRespo * @throws {@link ShieldServiceException} *

Base exception class for all service exceptions from Shield service.

* + * * @public */ export class UpdateSubscriptionCommand extends $Command diff --git a/clients/client-signer/src/commands/AddProfilePermissionCommand.ts b/clients/client-signer/src/commands/AddProfilePermissionCommand.ts index a18dae6ac10ee..8a41ba4f0c927 100644 --- a/clients/client-signer/src/commands/AddProfilePermissionCommand.ts +++ b/clients/client-signer/src/commands/AddProfilePermissionCommand.ts @@ -82,6 +82,7 @@ export interface AddProfilePermissionCommandOutput extends AddProfilePermissionR * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class AddProfilePermissionCommand extends $Command diff --git a/clients/client-signer/src/commands/CancelSigningProfileCommand.ts b/clients/client-signer/src/commands/CancelSigningProfileCommand.ts index 93a027ca7850c..60779348eccaf 100644 --- a/clients/client-signer/src/commands/CancelSigningProfileCommand.ts +++ b/clients/client-signer/src/commands/CancelSigningProfileCommand.ts @@ -69,6 +69,7 @@ export interface CancelSigningProfileCommandOutput extends __MetadataBearer {} * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class CancelSigningProfileCommand extends $Command diff --git a/clients/client-signer/src/commands/DescribeSigningJobCommand.ts b/clients/client-signer/src/commands/DescribeSigningJobCommand.ts index 85e2c7e9ac770..b1489b90b4ef3 100644 --- a/clients/client-signer/src/commands/DescribeSigningJobCommand.ts +++ b/clients/client-signer/src/commands/DescribeSigningJobCommand.ts @@ -113,6 +113,7 @@ export interface DescribeSigningJobCommandOutput extends DescribeSigningJobRespo * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class DescribeSigningJobCommand extends $Command diff --git a/clients/client-signer/src/commands/GetRevocationStatusCommand.ts b/clients/client-signer/src/commands/GetRevocationStatusCommand.ts index 5d8ac240f0260..f261afdcc7f84 100644 --- a/clients/client-signer/src/commands/GetRevocationStatusCommand.ts +++ b/clients/client-signer/src/commands/GetRevocationStatusCommand.ts @@ -77,6 +77,7 @@ export interface GetRevocationStatusCommandOutput extends GetRevocationStatusRes * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class GetRevocationStatusCommand extends $Command diff --git a/clients/client-signer/src/commands/GetSigningPlatformCommand.ts b/clients/client-signer/src/commands/GetSigningPlatformCommand.ts index 2aee9913e68ba..dd209684996a4 100644 --- a/clients/client-signer/src/commands/GetSigningPlatformCommand.ts +++ b/clients/client-signer/src/commands/GetSigningPlatformCommand.ts @@ -94,6 +94,7 @@ export interface GetSigningPlatformCommandOutput extends GetSigningPlatformRespo * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class GetSigningPlatformCommand extends $Command diff --git a/clients/client-signer/src/commands/GetSigningProfileCommand.ts b/clients/client-signer/src/commands/GetSigningProfileCommand.ts index 51226adbf1dc1..afa74ef15d2e7 100644 --- a/clients/client-signer/src/commands/GetSigningProfileCommand.ts +++ b/clients/client-signer/src/commands/GetSigningProfileCommand.ts @@ -101,6 +101,7 @@ export interface GetSigningProfileCommandOutput extends GetSigningProfileRespons * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class GetSigningProfileCommand extends $Command diff --git a/clients/client-signer/src/commands/ListProfilePermissionsCommand.ts b/clients/client-signer/src/commands/ListProfilePermissionsCommand.ts index 991cb237e07a5..32cbcb06b1ccf 100644 --- a/clients/client-signer/src/commands/ListProfilePermissionsCommand.ts +++ b/clients/client-signer/src/commands/ListProfilePermissionsCommand.ts @@ -82,6 +82,7 @@ export interface ListProfilePermissionsCommandOutput extends ListProfilePermissi * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class ListProfilePermissionsCommand extends $Command diff --git a/clients/client-signer/src/commands/ListSigningJobsCommand.ts b/clients/client-signer/src/commands/ListSigningJobsCommand.ts index 81810fc01fc64..db13f56457023 100644 --- a/clients/client-signer/src/commands/ListSigningJobsCommand.ts +++ b/clients/client-signer/src/commands/ListSigningJobsCommand.ts @@ -113,6 +113,7 @@ export interface ListSigningJobsCommandOutput extends ListSigningJobsResponse, _ * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class ListSigningJobsCommand extends $Command diff --git a/clients/client-signer/src/commands/ListSigningPlatformsCommand.ts b/clients/client-signer/src/commands/ListSigningPlatformsCommand.ts index 674867336b551..8ba99b446b9f5 100644 --- a/clients/client-signer/src/commands/ListSigningPlatformsCommand.ts +++ b/clients/client-signer/src/commands/ListSigningPlatformsCommand.ts @@ -109,6 +109,7 @@ export interface ListSigningPlatformsCommandOutput extends ListSigningPlatformsR * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class ListSigningPlatformsCommand extends $Command diff --git a/clients/client-signer/src/commands/ListSigningProfilesCommand.ts b/clients/client-signer/src/commands/ListSigningProfilesCommand.ts index e515ef94fb648..c311177ea86a7 100644 --- a/clients/client-signer/src/commands/ListSigningProfilesCommand.ts +++ b/clients/client-signer/src/commands/ListSigningProfilesCommand.ts @@ -102,6 +102,7 @@ export interface ListSigningProfilesCommandOutput extends ListSigningProfilesRes * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class ListSigningProfilesCommand extends $Command diff --git a/clients/client-signer/src/commands/ListTagsForResourceCommand.ts b/clients/client-signer/src/commands/ListTagsForResourceCommand.ts index 16da255562d20..c125d67dc6228 100644 --- a/clients/client-signer/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-signer/src/commands/ListTagsForResourceCommand.ts @@ -71,6 +71,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-signer/src/commands/PutSigningProfileCommand.ts b/clients/client-signer/src/commands/PutSigningProfileCommand.ts index ba0bf717c762c..f2c5955c30541 100644 --- a/clients/client-signer/src/commands/PutSigningProfileCommand.ts +++ b/clients/client-signer/src/commands/PutSigningProfileCommand.ts @@ -96,6 +96,7 @@ export interface PutSigningProfileCommandOutput extends PutSigningProfileRespons * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class PutSigningProfileCommand extends $Command diff --git a/clients/client-signer/src/commands/RemoveProfilePermissionCommand.ts b/clients/client-signer/src/commands/RemoveProfilePermissionCommand.ts index 00d6246036fd1..38a7537db5d21 100644 --- a/clients/client-signer/src/commands/RemoveProfilePermissionCommand.ts +++ b/clients/client-signer/src/commands/RemoveProfilePermissionCommand.ts @@ -76,6 +76,7 @@ export interface RemoveProfilePermissionCommandOutput extends RemoveProfilePermi * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class RemoveProfilePermissionCommand extends $Command diff --git a/clients/client-signer/src/commands/RevokeSignatureCommand.ts b/clients/client-signer/src/commands/RevokeSignatureCommand.ts index 4f36a8a583e2e..2a86c472f3eee 100644 --- a/clients/client-signer/src/commands/RevokeSignatureCommand.ts +++ b/clients/client-signer/src/commands/RevokeSignatureCommand.ts @@ -72,6 +72,7 @@ export interface RevokeSignatureCommandOutput extends __MetadataBearer {} * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class RevokeSignatureCommand extends $Command diff --git a/clients/client-signer/src/commands/RevokeSigningProfileCommand.ts b/clients/client-signer/src/commands/RevokeSigningProfileCommand.ts index 4bf3bbabe3eda..55f2b6a579cf1 100644 --- a/clients/client-signer/src/commands/RevokeSigningProfileCommand.ts +++ b/clients/client-signer/src/commands/RevokeSigningProfileCommand.ts @@ -74,6 +74,7 @@ export interface RevokeSigningProfileCommandOutput extends __MetadataBearer {} * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class RevokeSigningProfileCommand extends $Command diff --git a/clients/client-signer/src/commands/SignPayloadCommand.ts b/clients/client-signer/src/commands/SignPayloadCommand.ts index f28b946e8c8c9..8a1a382a1cce5 100644 --- a/clients/client-signer/src/commands/SignPayloadCommand.ts +++ b/clients/client-signer/src/commands/SignPayloadCommand.ts @@ -79,6 +79,7 @@ export interface SignPayloadCommandOutput extends SignPayloadResponse, __Metadat * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class SignPayloadCommand extends $Command diff --git a/clients/client-signer/src/commands/StartSigningJobCommand.ts b/clients/client-signer/src/commands/StartSigningJobCommand.ts index c9ce884104cb3..3aa4a1c862627 100644 --- a/clients/client-signer/src/commands/StartSigningJobCommand.ts +++ b/clients/client-signer/src/commands/StartSigningJobCommand.ts @@ -119,6 +119,7 @@ export interface StartSigningJobCommandOutput extends StartSigningJobResponse, _ * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class StartSigningJobCommand extends $Command diff --git a/clients/client-signer/src/commands/TagResourceCommand.ts b/clients/client-signer/src/commands/TagResourceCommand.ts index 19dd17305dcbd..1d300d5ff98e9 100644 --- a/clients/client-signer/src/commands/TagResourceCommand.ts +++ b/clients/client-signer/src/commands/TagResourceCommand.ts @@ -73,6 +73,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-signer/src/commands/UntagResourceCommand.ts b/clients/client-signer/src/commands/UntagResourceCommand.ts index 03de8d4e77434..d6be5c938e774 100644 --- a/clients/client-signer/src/commands/UntagResourceCommand.ts +++ b/clients/client-signer/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link SignerServiceException} *

Base exception class for all service exceptions from Signer service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/CreateSnapshotCommand.ts b/clients/client-simspaceweaver/src/commands/CreateSnapshotCommand.ts index 0d7da59f85706..b3787d7372642 100644 --- a/clients/client-simspaceweaver/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-simspaceweaver/src/commands/CreateSnapshotCommand.ts @@ -127,6 +127,7 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotOutput, __Met * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class CreateSnapshotCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/DeleteAppCommand.ts b/clients/client-simspaceweaver/src/commands/DeleteAppCommand.ts index 3523c797b91a9..c25a720984bda 100644 --- a/clients/client-simspaceweaver/src/commands/DeleteAppCommand.ts +++ b/clients/client-simspaceweaver/src/commands/DeleteAppCommand.ts @@ -70,6 +70,7 @@ export interface DeleteAppCommandOutput extends DeleteAppOutput, __MetadataBeare * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class DeleteAppCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/DeleteSimulationCommand.ts b/clients/client-simspaceweaver/src/commands/DeleteSimulationCommand.ts index 69e02d99e2d6f..3406768a106b6 100644 --- a/clients/client-simspaceweaver/src/commands/DeleteSimulationCommand.ts +++ b/clients/client-simspaceweaver/src/commands/DeleteSimulationCommand.ts @@ -72,6 +72,7 @@ export interface DeleteSimulationCommandOutput extends DeleteSimulationOutput, _ * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class DeleteSimulationCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/DescribeAppCommand.ts b/clients/client-simspaceweaver/src/commands/DescribeAppCommand.ts index d5e32a335723a..bc7d20647e3c9 100644 --- a/clients/client-simspaceweaver/src/commands/DescribeAppCommand.ts +++ b/clients/client-simspaceweaver/src/commands/DescribeAppCommand.ts @@ -88,6 +88,7 @@ export interface DescribeAppCommandOutput extends DescribeAppOutput, __MetadataB * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class DescribeAppCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/DescribeSimulationCommand.ts b/clients/client-simspaceweaver/src/commands/DescribeSimulationCommand.ts index 982b51c2e198e..30934de339df1 100644 --- a/clients/client-simspaceweaver/src/commands/DescribeSimulationCommand.ts +++ b/clients/client-simspaceweaver/src/commands/DescribeSimulationCommand.ts @@ -108,6 +108,7 @@ export interface DescribeSimulationCommandOutput extends DescribeSimulationOutpu * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class DescribeSimulationCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/ListAppsCommand.ts b/clients/client-simspaceweaver/src/commands/ListAppsCommand.ts index 9cf3b9b712f05..f035bbff672f0 100644 --- a/clients/client-simspaceweaver/src/commands/ListAppsCommand.ts +++ b/clients/client-simspaceweaver/src/commands/ListAppsCommand.ts @@ -79,6 +79,7 @@ export interface ListAppsCommandOutput extends ListAppsOutput, __MetadataBearer * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class ListAppsCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/ListSimulationsCommand.ts b/clients/client-simspaceweaver/src/commands/ListSimulationsCommand.ts index 96ddc8e4f07d8..9050724fb05b9 100644 --- a/clients/client-simspaceweaver/src/commands/ListSimulationsCommand.ts +++ b/clients/client-simspaceweaver/src/commands/ListSimulationsCommand.ts @@ -74,6 +74,7 @@ export interface ListSimulationsCommandOutput extends ListSimulationsOutput, __M * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class ListSimulationsCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/ListTagsForResourceCommand.ts b/clients/client-simspaceweaver/src/commands/ListTagsForResourceCommand.ts index dab7f5820e8b7..64a9ed2513adc 100644 --- a/clients/client-simspaceweaver/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-simspaceweaver/src/commands/ListTagsForResourceCommand.ts @@ -63,6 +63,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/StartAppCommand.ts b/clients/client-simspaceweaver/src/commands/StartAppCommand.ts index 57132a5152526..93d8e420dec2b 100644 --- a/clients/client-simspaceweaver/src/commands/StartAppCommand.ts +++ b/clients/client-simspaceweaver/src/commands/StartAppCommand.ts @@ -81,6 +81,7 @@ export interface StartAppCommandOutput extends StartAppOutput, __MetadataBearer * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class StartAppCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/StartClockCommand.ts b/clients/client-simspaceweaver/src/commands/StartClockCommand.ts index 59bc0b09159ca..eb9de8d340fce 100644 --- a/clients/client-simspaceweaver/src/commands/StartClockCommand.ts +++ b/clients/client-simspaceweaver/src/commands/StartClockCommand.ts @@ -68,6 +68,7 @@ export interface StartClockCommandOutput extends StartClockOutput, __MetadataBea * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class StartClockCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/StartSimulationCommand.ts b/clients/client-simspaceweaver/src/commands/StartSimulationCommand.ts index 326bc1415666c..c10d9955023c6 100644 --- a/clients/client-simspaceweaver/src/commands/StartSimulationCommand.ts +++ b/clients/client-simspaceweaver/src/commands/StartSimulationCommand.ts @@ -96,6 +96,7 @@ export interface StartSimulationCommandOutput extends StartSimulationOutput, __M * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class StartSimulationCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/StopAppCommand.ts b/clients/client-simspaceweaver/src/commands/StopAppCommand.ts index b92bf56c9bab6..be1a1b6e29c67 100644 --- a/clients/client-simspaceweaver/src/commands/StopAppCommand.ts +++ b/clients/client-simspaceweaver/src/commands/StopAppCommand.ts @@ -70,6 +70,7 @@ export interface StopAppCommandOutput extends StopAppOutput, __MetadataBearer {} * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class StopAppCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/StopClockCommand.ts b/clients/client-simspaceweaver/src/commands/StopClockCommand.ts index 311740d4a561d..8f27484ea5a32 100644 --- a/clients/client-simspaceweaver/src/commands/StopClockCommand.ts +++ b/clients/client-simspaceweaver/src/commands/StopClockCommand.ts @@ -68,6 +68,7 @@ export interface StopClockCommandOutput extends StopClockOutput, __MetadataBeare * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class StopClockCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/StopSimulationCommand.ts b/clients/client-simspaceweaver/src/commands/StopSimulationCommand.ts index 0a80ffbd82b13..d8c37a21d8e41 100644 --- a/clients/client-simspaceweaver/src/commands/StopSimulationCommand.ts +++ b/clients/client-simspaceweaver/src/commands/StopSimulationCommand.ts @@ -72,6 +72,7 @@ export interface StopSimulationCommandOutput extends StopSimulationOutput, __Met * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class StopSimulationCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/TagResourceCommand.ts b/clients/client-simspaceweaver/src/commands/TagResourceCommand.ts index 46c73b3361c91..cb5bebeaab770 100644 --- a/clients/client-simspaceweaver/src/commands/TagResourceCommand.ts +++ b/clients/client-simspaceweaver/src/commands/TagResourceCommand.ts @@ -66,6 +66,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-simspaceweaver/src/commands/UntagResourceCommand.ts b/clients/client-simspaceweaver/src/commands/UntagResourceCommand.ts index 348c04bcc5402..236811f71bf87 100644 --- a/clients/client-simspaceweaver/src/commands/UntagResourceCommand.ts +++ b/clients/client-simspaceweaver/src/commands/UntagResourceCommand.ts @@ -63,6 +63,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link SimSpaceWeaverServiceException} *

Base exception class for all service exceptions from SimSpaceWeaver service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-sms/src/commands/CreateAppCommand.ts b/clients/client-sms/src/commands/CreateAppCommand.ts index dbf8731dea0b1..57d758c592f7d 100644 --- a/clients/client-sms/src/commands/CreateAppCommand.ts +++ b/clients/client-sms/src/commands/CreateAppCommand.ts @@ -159,6 +159,7 @@ export interface CreateAppCommandOutput extends CreateAppResponse, __MetadataBea * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class CreateAppCommand extends $Command diff --git a/clients/client-sms/src/commands/CreateReplicationJobCommand.ts b/clients/client-sms/src/commands/CreateReplicationJobCommand.ts index 0d8d4e91076e9..0b5a60d28e653 100644 --- a/clients/client-sms/src/commands/CreateReplicationJobCommand.ts +++ b/clients/client-sms/src/commands/CreateReplicationJobCommand.ts @@ -94,6 +94,7 @@ export interface CreateReplicationJobCommandOutput extends CreateReplicationJobR * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class CreateReplicationJobCommand extends $Command diff --git a/clients/client-sms/src/commands/DeleteAppCommand.ts b/clients/client-sms/src/commands/DeleteAppCommand.ts index 53d2cce152b51..6cf1a0af9e003 100644 --- a/clients/client-sms/src/commands/DeleteAppCommand.ts +++ b/clients/client-sms/src/commands/DeleteAppCommand.ts @@ -72,6 +72,7 @@ export interface DeleteAppCommandOutput extends DeleteAppResponse, __MetadataBea * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class DeleteAppCommand extends $Command diff --git a/clients/client-sms/src/commands/DeleteAppLaunchConfigurationCommand.ts b/clients/client-sms/src/commands/DeleteAppLaunchConfigurationCommand.ts index 7699ae0001074..54a53cd3ad567 100644 --- a/clients/client-sms/src/commands/DeleteAppLaunchConfigurationCommand.ts +++ b/clients/client-sms/src/commands/DeleteAppLaunchConfigurationCommand.ts @@ -74,6 +74,7 @@ export interface DeleteAppLaunchConfigurationCommandOutput * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class DeleteAppLaunchConfigurationCommand extends $Command diff --git a/clients/client-sms/src/commands/DeleteAppReplicationConfigurationCommand.ts b/clients/client-sms/src/commands/DeleteAppReplicationConfigurationCommand.ts index d5fcc3b3697e8..c8c290a2654c5 100644 --- a/clients/client-sms/src/commands/DeleteAppReplicationConfigurationCommand.ts +++ b/clients/client-sms/src/commands/DeleteAppReplicationConfigurationCommand.ts @@ -77,6 +77,7 @@ export interface DeleteAppReplicationConfigurationCommandOutput * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class DeleteAppReplicationConfigurationCommand extends $Command diff --git a/clients/client-sms/src/commands/DeleteAppValidationConfigurationCommand.ts b/clients/client-sms/src/commands/DeleteAppValidationConfigurationCommand.ts index 2bd223fb8dc18..cd8953e64c630 100644 --- a/clients/client-sms/src/commands/DeleteAppValidationConfigurationCommand.ts +++ b/clients/client-sms/src/commands/DeleteAppValidationConfigurationCommand.ts @@ -74,6 +74,7 @@ export interface DeleteAppValidationConfigurationCommandOutput * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class DeleteAppValidationConfigurationCommand extends $Command diff --git a/clients/client-sms/src/commands/DeleteReplicationJobCommand.ts b/clients/client-sms/src/commands/DeleteReplicationJobCommand.ts index a0ce021996e98..8fdac9e28e014 100644 --- a/clients/client-sms/src/commands/DeleteReplicationJobCommand.ts +++ b/clients/client-sms/src/commands/DeleteReplicationJobCommand.ts @@ -72,6 +72,7 @@ export interface DeleteReplicationJobCommandOutput extends DeleteReplicationJobR * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class DeleteReplicationJobCommand extends $Command diff --git a/clients/client-sms/src/commands/DeleteServerCatalogCommand.ts b/clients/client-sms/src/commands/DeleteServerCatalogCommand.ts index d8d37b0786349..e1e290233a771 100644 --- a/clients/client-sms/src/commands/DeleteServerCatalogCommand.ts +++ b/clients/client-sms/src/commands/DeleteServerCatalogCommand.ts @@ -64,6 +64,7 @@ export interface DeleteServerCatalogCommandOutput extends DeleteServerCatalogRes * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class DeleteServerCatalogCommand extends $Command diff --git a/clients/client-sms/src/commands/DisassociateConnectorCommand.ts b/clients/client-sms/src/commands/DisassociateConnectorCommand.ts index b125e2baffd66..7e087d6b8d42c 100644 --- a/clients/client-sms/src/commands/DisassociateConnectorCommand.ts +++ b/clients/client-sms/src/commands/DisassociateConnectorCommand.ts @@ -68,6 +68,7 @@ export interface DisassociateConnectorCommandOutput extends DisassociateConnecto * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class DisassociateConnectorCommand extends $Command diff --git a/clients/client-sms/src/commands/GenerateChangeSetCommand.ts b/clients/client-sms/src/commands/GenerateChangeSetCommand.ts index 7235f8a49dd70..bd67fe3684706 100644 --- a/clients/client-sms/src/commands/GenerateChangeSetCommand.ts +++ b/clients/client-sms/src/commands/GenerateChangeSetCommand.ts @@ -76,6 +76,7 @@ export interface GenerateChangeSetCommandOutput extends GenerateChangeSetRespons * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class GenerateChangeSetCommand extends $Command diff --git a/clients/client-sms/src/commands/GenerateTemplateCommand.ts b/clients/client-sms/src/commands/GenerateTemplateCommand.ts index bf72eeab8a0e4..3f8e56fce5c37 100644 --- a/clients/client-sms/src/commands/GenerateTemplateCommand.ts +++ b/clients/client-sms/src/commands/GenerateTemplateCommand.ts @@ -76,6 +76,7 @@ export interface GenerateTemplateCommandOutput extends GenerateTemplateResponse, * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class GenerateTemplateCommand extends $Command diff --git a/clients/client-sms/src/commands/GetAppCommand.ts b/clients/client-sms/src/commands/GetAppCommand.ts index 9e9f856631337..87b49f49f2608 100644 --- a/clients/client-sms/src/commands/GetAppCommand.ts +++ b/clients/client-sms/src/commands/GetAppCommand.ts @@ -125,6 +125,7 @@ export interface GetAppCommandOutput extends GetAppResponse, __MetadataBearer {} * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class GetAppCommand extends $Command diff --git a/clients/client-sms/src/commands/GetAppLaunchConfigurationCommand.ts b/clients/client-sms/src/commands/GetAppLaunchConfigurationCommand.ts index 96136993098b9..f95de259e9c13 100644 --- a/clients/client-sms/src/commands/GetAppLaunchConfigurationCommand.ts +++ b/clients/client-sms/src/commands/GetAppLaunchConfigurationCommand.ts @@ -118,6 +118,7 @@ export interface GetAppLaunchConfigurationCommandOutput extends GetAppLaunchConf * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class GetAppLaunchConfigurationCommand extends $Command diff --git a/clients/client-sms/src/commands/GetAppReplicationConfigurationCommand.ts b/clients/client-sms/src/commands/GetAppReplicationConfigurationCommand.ts index e64713ef4fdaa..cad1637c3cf6b 100644 --- a/clients/client-sms/src/commands/GetAppReplicationConfigurationCommand.ts +++ b/clients/client-sms/src/commands/GetAppReplicationConfigurationCommand.ts @@ -110,6 +110,7 @@ export interface GetAppReplicationConfigurationCommandOutput * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class GetAppReplicationConfigurationCommand extends $Command diff --git a/clients/client-sms/src/commands/GetAppValidationConfigurationCommand.ts b/clients/client-sms/src/commands/GetAppValidationConfigurationCommand.ts index ef9b4fb092134..bf8c55406bb01 100644 --- a/clients/client-sms/src/commands/GetAppValidationConfigurationCommand.ts +++ b/clients/client-sms/src/commands/GetAppValidationConfigurationCommand.ts @@ -132,6 +132,7 @@ export interface GetAppValidationConfigurationCommandOutput * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class GetAppValidationConfigurationCommand extends $Command diff --git a/clients/client-sms/src/commands/GetAppValidationOutputCommand.ts b/clients/client-sms/src/commands/GetAppValidationOutputCommand.ts index 5aa9d2499f6cb..61d90c2a47da1 100644 --- a/clients/client-sms/src/commands/GetAppValidationOutputCommand.ts +++ b/clients/client-sms/src/commands/GetAppValidationOutputCommand.ts @@ -105,6 +105,7 @@ export interface GetAppValidationOutputCommandOutput extends GetAppValidationOut * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class GetAppValidationOutputCommand extends $Command diff --git a/clients/client-sms/src/commands/GetConnectorsCommand.ts b/clients/client-sms/src/commands/GetConnectorsCommand.ts index cb2ba27cca2ce..84e56a99e52d4 100644 --- a/clients/client-sms/src/commands/GetConnectorsCommand.ts +++ b/clients/client-sms/src/commands/GetConnectorsCommand.ts @@ -76,6 +76,7 @@ export interface GetConnectorsCommandOutput extends GetConnectorsResponse, __Met * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class GetConnectorsCommand extends $Command diff --git a/clients/client-sms/src/commands/GetReplicationJobsCommand.ts b/clients/client-sms/src/commands/GetReplicationJobsCommand.ts index 04b01ac351243..f55022e586c77 100644 --- a/clients/client-sms/src/commands/GetReplicationJobsCommand.ts +++ b/clients/client-sms/src/commands/GetReplicationJobsCommand.ts @@ -115,6 +115,7 @@ export interface GetReplicationJobsCommandOutput extends GetReplicationJobsRespo * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class GetReplicationJobsCommand extends $Command diff --git a/clients/client-sms/src/commands/GetReplicationRunsCommand.ts b/clients/client-sms/src/commands/GetReplicationRunsCommand.ts index 4a1db4a1d9840..940dc150112d0 100644 --- a/clients/client-sms/src/commands/GetReplicationRunsCommand.ts +++ b/clients/client-sms/src/commands/GetReplicationRunsCommand.ts @@ -131,6 +131,7 @@ export interface GetReplicationRunsCommandOutput extends GetReplicationRunsRespo * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class GetReplicationRunsCommand extends $Command diff --git a/clients/client-sms/src/commands/GetServersCommand.ts b/clients/client-sms/src/commands/GetServersCommand.ts index 91bc9060dad25..651857b01721d 100644 --- a/clients/client-sms/src/commands/GetServersCommand.ts +++ b/clients/client-sms/src/commands/GetServersCommand.ts @@ -96,6 +96,7 @@ export interface GetServersCommandOutput extends GetServersResponse, __MetadataB * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class GetServersCommand extends $Command diff --git a/clients/client-sms/src/commands/ImportAppCatalogCommand.ts b/clients/client-sms/src/commands/ImportAppCatalogCommand.ts index 0bba57b36ccf4..a81a8b1e874bf 100644 --- a/clients/client-sms/src/commands/ImportAppCatalogCommand.ts +++ b/clients/client-sms/src/commands/ImportAppCatalogCommand.ts @@ -69,6 +69,7 @@ export interface ImportAppCatalogCommandOutput extends ImportAppCatalogResponse, * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class ImportAppCatalogCommand extends $Command diff --git a/clients/client-sms/src/commands/ImportServerCatalogCommand.ts b/clients/client-sms/src/commands/ImportServerCatalogCommand.ts index b1bd2e04a2d41..d60f08a3f6e94 100644 --- a/clients/client-sms/src/commands/ImportServerCatalogCommand.ts +++ b/clients/client-sms/src/commands/ImportServerCatalogCommand.ts @@ -70,6 +70,7 @@ export interface ImportServerCatalogCommandOutput extends ImportServerCatalogRes * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class ImportServerCatalogCommand extends $Command diff --git a/clients/client-sms/src/commands/LaunchAppCommand.ts b/clients/client-sms/src/commands/LaunchAppCommand.ts index 4bba7d02e8ddb..38d786a83a864 100644 --- a/clients/client-sms/src/commands/LaunchAppCommand.ts +++ b/clients/client-sms/src/commands/LaunchAppCommand.ts @@ -69,6 +69,7 @@ export interface LaunchAppCommandOutput extends LaunchAppResponse, __MetadataBea * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class LaunchAppCommand extends $Command diff --git a/clients/client-sms/src/commands/ListAppsCommand.ts b/clients/client-sms/src/commands/ListAppsCommand.ts index ca8e813438aa8..87f8154058545 100644 --- a/clients/client-sms/src/commands/ListAppsCommand.ts +++ b/clients/client-sms/src/commands/ListAppsCommand.ts @@ -102,6 +102,7 @@ export interface ListAppsCommandOutput extends ListAppsResponse, __MetadataBeare * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class ListAppsCommand extends $Command diff --git a/clients/client-sms/src/commands/NotifyAppValidationOutputCommand.ts b/clients/client-sms/src/commands/NotifyAppValidationOutputCommand.ts index 130600ac2fbbd..8f39933c7ee39 100644 --- a/clients/client-sms/src/commands/NotifyAppValidationOutputCommand.ts +++ b/clients/client-sms/src/commands/NotifyAppValidationOutputCommand.ts @@ -74,6 +74,7 @@ export interface NotifyAppValidationOutputCommandOutput extends NotifyAppValidat * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class NotifyAppValidationOutputCommand extends $Command diff --git a/clients/client-sms/src/commands/PutAppLaunchConfigurationCommand.ts b/clients/client-sms/src/commands/PutAppLaunchConfigurationCommand.ts index b507907e5eb29..7d41feb63e03d 100644 --- a/clients/client-sms/src/commands/PutAppLaunchConfigurationCommand.ts +++ b/clients/client-sms/src/commands/PutAppLaunchConfigurationCommand.ts @@ -116,6 +116,7 @@ export interface PutAppLaunchConfigurationCommandOutput extends PutAppLaunchConf * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class PutAppLaunchConfigurationCommand extends $Command diff --git a/clients/client-sms/src/commands/PutAppReplicationConfigurationCommand.ts b/clients/client-sms/src/commands/PutAppReplicationConfigurationCommand.ts index 2eccc5a9a145a..149d9be636a2a 100644 --- a/clients/client-sms/src/commands/PutAppReplicationConfigurationCommand.ts +++ b/clients/client-sms/src/commands/PutAppReplicationConfigurationCommand.ts @@ -108,6 +108,7 @@ export interface PutAppReplicationConfigurationCommandOutput * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class PutAppReplicationConfigurationCommand extends $Command diff --git a/clients/client-sms/src/commands/PutAppValidationConfigurationCommand.ts b/clients/client-sms/src/commands/PutAppValidationConfigurationCommand.ts index 90352c3a83a01..4befdba3078af 100644 --- a/clients/client-sms/src/commands/PutAppValidationConfigurationCommand.ts +++ b/clients/client-sms/src/commands/PutAppValidationConfigurationCommand.ts @@ -131,6 +131,7 @@ export interface PutAppValidationConfigurationCommandOutput * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class PutAppValidationConfigurationCommand extends $Command diff --git a/clients/client-sms/src/commands/StartAppReplicationCommand.ts b/clients/client-sms/src/commands/StartAppReplicationCommand.ts index dd5e17f73dcfa..afc202c54db7b 100644 --- a/clients/client-sms/src/commands/StartAppReplicationCommand.ts +++ b/clients/client-sms/src/commands/StartAppReplicationCommand.ts @@ -70,6 +70,7 @@ export interface StartAppReplicationCommandOutput extends StartAppReplicationRes * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class StartAppReplicationCommand extends $Command diff --git a/clients/client-sms/src/commands/StartOnDemandAppReplicationCommand.ts b/clients/client-sms/src/commands/StartOnDemandAppReplicationCommand.ts index e1ad746d32e09..88e733ec07844 100644 --- a/clients/client-sms/src/commands/StartOnDemandAppReplicationCommand.ts +++ b/clients/client-sms/src/commands/StartOnDemandAppReplicationCommand.ts @@ -72,6 +72,7 @@ export interface StartOnDemandAppReplicationCommandOutput * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class StartOnDemandAppReplicationCommand extends $Command diff --git a/clients/client-sms/src/commands/StartOnDemandReplicationRunCommand.ts b/clients/client-sms/src/commands/StartOnDemandReplicationRunCommand.ts index 4b2c3d7bf4167..4626428abb36f 100644 --- a/clients/client-sms/src/commands/StartOnDemandReplicationRunCommand.ts +++ b/clients/client-sms/src/commands/StartOnDemandReplicationRunCommand.ts @@ -83,6 +83,7 @@ export interface StartOnDemandReplicationRunCommandOutput * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class StartOnDemandReplicationRunCommand extends $Command diff --git a/clients/client-sms/src/commands/StopAppReplicationCommand.ts b/clients/client-sms/src/commands/StopAppReplicationCommand.ts index a4970ee3cd7d4..95fa11b5a1e9a 100644 --- a/clients/client-sms/src/commands/StopAppReplicationCommand.ts +++ b/clients/client-sms/src/commands/StopAppReplicationCommand.ts @@ -70,6 +70,7 @@ export interface StopAppReplicationCommandOutput extends StopAppReplicationRespo * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class StopAppReplicationCommand extends $Command diff --git a/clients/client-sms/src/commands/TerminateAppCommand.ts b/clients/client-sms/src/commands/TerminateAppCommand.ts index faf3c09884175..a940ce53382c8 100644 --- a/clients/client-sms/src/commands/TerminateAppCommand.ts +++ b/clients/client-sms/src/commands/TerminateAppCommand.ts @@ -69,6 +69,7 @@ export interface TerminateAppCommandOutput extends TerminateAppResponse, __Metad * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class TerminateAppCommand extends $Command diff --git a/clients/client-sms/src/commands/UpdateAppCommand.ts b/clients/client-sms/src/commands/UpdateAppCommand.ts index 3f5920fefc18d..aec43bc189248 100644 --- a/clients/client-sms/src/commands/UpdateAppCommand.ts +++ b/clients/client-sms/src/commands/UpdateAppCommand.ts @@ -158,6 +158,7 @@ export interface UpdateAppCommandOutput extends UpdateAppResponse, __MetadataBea * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class UpdateAppCommand extends $Command diff --git a/clients/client-sms/src/commands/UpdateReplicationJobCommand.ts b/clients/client-sms/src/commands/UpdateReplicationJobCommand.ts index ed9609a4583f4..b8e2525d6601a 100644 --- a/clients/client-sms/src/commands/UpdateReplicationJobCommand.ts +++ b/clients/client-sms/src/commands/UpdateReplicationJobCommand.ts @@ -86,6 +86,7 @@ export interface UpdateReplicationJobCommandOutput extends UpdateReplicationJobR * @throws {@link SMSServiceException} *

Base exception class for all service exceptions from SMS service.

* + * * @public */ export class UpdateReplicationJobCommand extends $Command diff --git a/clients/client-snow-device-management/src/commands/CancelTaskCommand.ts b/clients/client-snow-device-management/src/commands/CancelTaskCommand.ts index 0649a0b4ca1cd..2a131ce450f12 100644 --- a/clients/client-snow-device-management/src/commands/CancelTaskCommand.ts +++ b/clients/client-snow-device-management/src/commands/CancelTaskCommand.ts @@ -79,6 +79,7 @@ export interface CancelTaskCommandOutput extends CancelTaskOutput, __MetadataBea * @throws {@link SnowDeviceManagementServiceException} *

Base exception class for all service exceptions from SnowDeviceManagement service.

* + * * @public */ export class CancelTaskCommand extends $Command diff --git a/clients/client-snow-device-management/src/commands/CreateTaskCommand.ts b/clients/client-snow-device-management/src/commands/CreateTaskCommand.ts index e91457a6fd090..f771e132c7874 100644 --- a/clients/client-snow-device-management/src/commands/CreateTaskCommand.ts +++ b/clients/client-snow-device-management/src/commands/CreateTaskCommand.ts @@ -89,6 +89,7 @@ export interface CreateTaskCommandOutput extends CreateTaskOutput, __MetadataBea * @throws {@link SnowDeviceManagementServiceException} *

Base exception class for all service exceptions from SnowDeviceManagement service.

* + * * @public */ export class CreateTaskCommand extends $Command diff --git a/clients/client-snow-device-management/src/commands/DescribeDeviceCommand.ts b/clients/client-snow-device-management/src/commands/DescribeDeviceCommand.ts index 3f02817e65c53..5723679282154 100644 --- a/clients/client-snow-device-management/src/commands/DescribeDeviceCommand.ts +++ b/clients/client-snow-device-management/src/commands/DescribeDeviceCommand.ts @@ -109,6 +109,7 @@ export interface DescribeDeviceCommandOutput extends DescribeDeviceOutput, __Met * @throws {@link SnowDeviceManagementServiceException} *

Base exception class for all service exceptions from SnowDeviceManagement service.

* + * * @public */ export class DescribeDeviceCommand extends $Command diff --git a/clients/client-snow-device-management/src/commands/DescribeDeviceEc2InstancesCommand.ts b/clients/client-snow-device-management/src/commands/DescribeDeviceEc2InstancesCommand.ts index 6699e0e0048a2..cd0b7ec789b90 100644 --- a/clients/client-snow-device-management/src/commands/DescribeDeviceEc2InstancesCommand.ts +++ b/clients/client-snow-device-management/src/commands/DescribeDeviceEc2InstancesCommand.ts @@ -119,6 +119,7 @@ export interface DescribeDeviceEc2InstancesCommandOutput extends DescribeDeviceE * @throws {@link SnowDeviceManagementServiceException} *

Base exception class for all service exceptions from SnowDeviceManagement service.

* + * * @public */ export class DescribeDeviceEc2InstancesCommand extends $Command diff --git a/clients/client-snow-device-management/src/commands/DescribeExecutionCommand.ts b/clients/client-snow-device-management/src/commands/DescribeExecutionCommand.ts index 8237f07214781..8ab4f4a97ce2d 100644 --- a/clients/client-snow-device-management/src/commands/DescribeExecutionCommand.ts +++ b/clients/client-snow-device-management/src/commands/DescribeExecutionCommand.ts @@ -80,6 +80,7 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionOutput, * @throws {@link SnowDeviceManagementServiceException} *

Base exception class for all service exceptions from SnowDeviceManagement service.

* + * * @public */ export class DescribeExecutionCommand extends $Command diff --git a/clients/client-snow-device-management/src/commands/DescribeTaskCommand.ts b/clients/client-snow-device-management/src/commands/DescribeTaskCommand.ts index 4136a7d3b93c6..acaa0791a2d5f 100644 --- a/clients/client-snow-device-management/src/commands/DescribeTaskCommand.ts +++ b/clients/client-snow-device-management/src/commands/DescribeTaskCommand.ts @@ -86,6 +86,7 @@ export interface DescribeTaskCommandOutput extends DescribeTaskOutput, __Metadat * @throws {@link SnowDeviceManagementServiceException} *

Base exception class for all service exceptions from SnowDeviceManagement service.

* + * * @public */ export class DescribeTaskCommand extends $Command diff --git a/clients/client-snow-device-management/src/commands/ListDeviceResourcesCommand.ts b/clients/client-snow-device-management/src/commands/ListDeviceResourcesCommand.ts index 2cd12b3fa3a52..c75cfa9ae0ee8 100644 --- a/clients/client-snow-device-management/src/commands/ListDeviceResourcesCommand.ts +++ b/clients/client-snow-device-management/src/commands/ListDeviceResourcesCommand.ts @@ -84,6 +84,7 @@ export interface ListDeviceResourcesCommandOutput extends ListDeviceResourcesOut * @throws {@link SnowDeviceManagementServiceException} *

Base exception class for all service exceptions from SnowDeviceManagement service.

* + * * @public */ export class ListDeviceResourcesCommand extends $Command diff --git a/clients/client-snow-device-management/src/commands/ListDevicesCommand.ts b/clients/client-snow-device-management/src/commands/ListDevicesCommand.ts index a597f11b70944..35af76716b683 100644 --- a/clients/client-snow-device-management/src/commands/ListDevicesCommand.ts +++ b/clients/client-snow-device-management/src/commands/ListDevicesCommand.ts @@ -84,6 +84,7 @@ export interface ListDevicesCommandOutput extends ListDevicesOutput, __MetadataB * @throws {@link SnowDeviceManagementServiceException} *

Base exception class for all service exceptions from SnowDeviceManagement service.

* + * * @public */ export class ListDevicesCommand extends $Command diff --git a/clients/client-snow-device-management/src/commands/ListExecutionsCommand.ts b/clients/client-snow-device-management/src/commands/ListExecutionsCommand.ts index 09b729502950f..8b7fb28b0ed9c 100644 --- a/clients/client-snow-device-management/src/commands/ListExecutionsCommand.ts +++ b/clients/client-snow-device-management/src/commands/ListExecutionsCommand.ts @@ -85,6 +85,7 @@ export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __Met * @throws {@link SnowDeviceManagementServiceException} *

Base exception class for all service exceptions from SnowDeviceManagement service.

* + * * @public */ export class ListExecutionsCommand extends $Command diff --git a/clients/client-snow-device-management/src/commands/ListTagsForResourceCommand.ts b/clients/client-snow-device-management/src/commands/ListTagsForResourceCommand.ts index 161e1015165e8..d3ef06b2d94c5 100644 --- a/clients/client-snow-device-management/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-snow-device-management/src/commands/ListTagsForResourceCommand.ts @@ -70,6 +70,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link SnowDeviceManagementServiceException} *

Base exception class for all service exceptions from SnowDeviceManagement service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-snow-device-management/src/commands/ListTasksCommand.ts b/clients/client-snow-device-management/src/commands/ListTasksCommand.ts index a2531ec5f599c..204c4b5024655 100644 --- a/clients/client-snow-device-management/src/commands/ListTasksCommand.ts +++ b/clients/client-snow-device-management/src/commands/ListTasksCommand.ts @@ -83,6 +83,7 @@ export interface ListTasksCommandOutput extends ListTasksOutput, __MetadataBeare * @throws {@link SnowDeviceManagementServiceException} *

Base exception class for all service exceptions from SnowDeviceManagement service.

* + * * @public */ export class ListTasksCommand extends $Command diff --git a/clients/client-snow-device-management/src/commands/TagResourceCommand.ts b/clients/client-snow-device-management/src/commands/TagResourceCommand.ts index bde3482502305..db98ec9842d2f 100644 --- a/clients/client-snow-device-management/src/commands/TagResourceCommand.ts +++ b/clients/client-snow-device-management/src/commands/TagResourceCommand.ts @@ -69,6 +69,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link SnowDeviceManagementServiceException} *

Base exception class for all service exceptions from SnowDeviceManagement service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-snow-device-management/src/commands/UntagResourceCommand.ts b/clients/client-snow-device-management/src/commands/UntagResourceCommand.ts index d73ea0c03f817..5e75c8d29923b 100644 --- a/clients/client-snow-device-management/src/commands/UntagResourceCommand.ts +++ b/clients/client-snow-device-management/src/commands/UntagResourceCommand.ts @@ -69,6 +69,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link SnowDeviceManagementServiceException} *

Base exception class for all service exceptions from SnowDeviceManagement service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-snowball/src/commands/CancelClusterCommand.ts b/clients/client-snowball/src/commands/CancelClusterCommand.ts index 0559476d43576..c99376dae5a53 100644 --- a/clients/client-snowball/src/commands/CancelClusterCommand.ts +++ b/clients/client-snowball/src/commands/CancelClusterCommand.ts @@ -67,18 +67,21 @@ export interface CancelClusterCommandOutput extends CancelClusterResult, __Metad * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public + * * @example To cancel a cluster job * ```javascript * // This operation cancels a cluster job. You can only cancel a cluster job while it's in the AwaitingQuorum status. * const input = { - * "ClusterId": "CID123e4567-e89b-12d3-a456-426655440000" + * ClusterId: "CID123e4567-e89b-12d3-a456-426655440000" * }; * const command = new CancelClusterCommand(input); - * await client.send(command); - * // example id: to-cancel-a-cluster-job-1482533760554 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CancelClusterCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/CancelJobCommand.ts b/clients/client-snowball/src/commands/CancelJobCommand.ts index f66f2429e3df8..a71310e829ccc 100644 --- a/clients/client-snowball/src/commands/CancelJobCommand.ts +++ b/clients/client-snowball/src/commands/CancelJobCommand.ts @@ -68,18 +68,21 @@ export interface CancelJobCommandOutput extends CancelJobResult, __MetadataBeare * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public + * * @example To cancel a job for a Snowball device * ```javascript * // This operation cancels a job. You can only cancel a job before its JobState value changes to PreparingAppliance. * const input = { - * "JobId": "JID123e4567-e89b-12d3-a456-426655440000" + * JobId: "JID123e4567-e89b-12d3-a456-426655440000" * }; * const command = new CancelJobCommand(input); - * await client.send(command); - * // example id: to-cancel-a-job-for-a-snowball-device-1482534699477 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class CancelJobCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/CreateAddressCommand.ts b/clients/client-snowball/src/commands/CreateAddressCommand.ts index 2c6d6c2efa5c1..04127ea837bd2 100644 --- a/clients/client-snowball/src/commands/CreateAddressCommand.ts +++ b/clients/client-snowball/src/commands/CreateAddressCommand.ts @@ -83,32 +83,32 @@ export interface CreateAddressCommandOutput extends CreateAddressResult, __Metad * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public + * * @example To create an address for a job * ```javascript * // This operation creates an address for a job. Addresses are validated at the time of creation. The address you provide must be located within the serviceable area of your region. If the address is invalid or unsupported, then an exception is thrown. * const input = { - * "Address": { - * "City": "Seattle", - * "Company": "My Company's Name", - * "Country": "USA", - * "Name": "My Name", - * "PhoneNumber": "425-555-5555", - * "PostalCode": "98101", - * "StateOrProvince": "WA", - * "Street1": "123 Main Street" + * Address: { + * City: "Seattle", + * Company: "My Company's Name", + * Country: "USA", + * Name: "My Name", + * PhoneNumber: "425-555-5555", + * PostalCode: "98101", + * StateOrProvince: "WA", + * Street1: "123 Main Street" * } * }; * const command = new CreateAddressCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AddressId": "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b" + * AddressId: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b" * } * *\/ - * // example id: to-create-an-address-for-a-job-1482535416294 * ``` * + * @public */ export class CreateAddressCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/CreateClusterCommand.ts b/clients/client-snowball/src/commands/CreateClusterCommand.ts index a07144c83c08c..0c23d3f5882a2 100644 --- a/clients/client-snowball/src/commands/CreateClusterCommand.ts +++ b/clients/client-snowball/src/commands/CreateClusterCommand.ts @@ -162,41 +162,41 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public + * * @example To create a cluster * ```javascript * // Creates an empty cluster. Each cluster supports five nodes. You use the CreateJob action separately to create the jobs for each of these nodes. The cluster does not ship until these five node jobs have been created. * const input = { - * "AddressId": "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", - * "Description": "MyCluster", - * "JobType": "LOCAL_USE", - * "KmsKeyARN": "arn:aws:kms:us-east-1:123456789012:key/abcd1234-12ab-34cd-56ef-123456123456", - * "Notification": { - * "JobStatesToNotify": [], - * "NotifyAll": false + * AddressId: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", + * Description: "MyCluster", + * JobType: "LOCAL_USE", + * KmsKeyARN: "arn:aws:kms:us-east-1:123456789012:key/abcd1234-12ab-34cd-56ef-123456123456", + * Notification: { + * JobStatesToNotify: [], + * NotifyAll: false * }, - * "Resources": { - * "S3Resources": [ + * Resources: { + * S3Resources: [ * { - * "BucketArn": "arn:aws:s3:::MyBucket", - * "KeyRange": {} + * BucketArn: "arn:aws:s3:::MyBucket", + * KeyRange: { /* empty *\/ } * } * ] * }, - * "RoleARN": "arn:aws:iam::123456789012:role/snowball-import-S3-role", - * "ShippingOption": "SECOND_DAY", - * "SnowballType": "EDGE" + * RoleARN: "arn:aws:iam::123456789012:role/snowball-import-S3-role", + * ShippingOption: "SECOND_DAY", + * SnowballType: "EDGE" * }; * const command = new CreateClusterCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ClusterId": "CID123e4567-e89b-12d3-a456-426655440000" + * ClusterId: "CID123e4567-e89b-12d3-a456-426655440000" * } * *\/ - * // example id: to-create-a-cluster-1482864724077 * ``` * + * @public */ export class CreateClusterCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/CreateJobCommand.ts b/clients/client-snowball/src/commands/CreateJobCommand.ts index dc782fd7ed737..c8fb9b7499e63 100644 --- a/clients/client-snowball/src/commands/CreateJobCommand.ts +++ b/clients/client-snowball/src/commands/CreateJobCommand.ts @@ -323,42 +323,42 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public + * * @example To create a job * ```javascript * // Creates a job to import or export data between Amazon S3 and your on-premises data center. Your AWS account must have the right trust policies and permissions in place to create a job for Snowball. If you're creating a job for a node in a cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster. * const input = { - * "AddressId": "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", - * "Description": "My Job", - * "JobType": "IMPORT", - * "KmsKeyARN": "arn:aws:kms:us-east-1:123456789012:key/abcd1234-12ab-34cd-56ef-123456123456", - * "Notification": { - * "JobStatesToNotify": [], - * "NotifyAll": false + * AddressId: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", + * Description: "My Job", + * JobType: "IMPORT", + * KmsKeyARN: "arn:aws:kms:us-east-1:123456789012:key/abcd1234-12ab-34cd-56ef-123456123456", + * Notification: { + * JobStatesToNotify: [], + * NotifyAll: false * }, - * "Resources": { - * "S3Resources": [ + * Resources: { + * S3Resources: [ * { - * "BucketArn": "arn:aws:s3:::MyBucket", - * "KeyRange": {} + * BucketArn: "arn:aws:s3:::MyBucket", + * KeyRange: { /* empty *\/ } * } * ] * }, - * "RoleARN": "arn:aws:iam::123456789012:role/snowball-import-S3-role", - * "ShippingOption": "SECOND_DAY", - * "SnowballCapacityPreference": "T80", - * "SnowballType": "STANDARD" + * RoleARN: "arn:aws:iam::123456789012:role/snowball-import-S3-role", + * ShippingOption: "SECOND_DAY", + * SnowballCapacityPreference: "T80", + * SnowballType: "STANDARD" * }; * const command = new CreateJobCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "JobId": "JID123e4567-e89b-12d3-a456-426655440000" + * JobId: "JID123e4567-e89b-12d3-a456-426655440000" * } * *\/ - * // example id: to-create-a-job-1482864834886 * ``` * + * @public */ export class CreateJobCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/CreateLongTermPricingCommand.ts b/clients/client-snowball/src/commands/CreateLongTermPricingCommand.ts index 629e9d97ffd80..893b49858dd6c 100644 --- a/clients/client-snowball/src/commands/CreateLongTermPricingCommand.ts +++ b/clients/client-snowball/src/commands/CreateLongTermPricingCommand.ts @@ -63,6 +63,7 @@ export interface CreateLongTermPricingCommandOutput extends CreateLongTermPricin * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* + * * @public */ export class CreateLongTermPricingCommand extends $Command diff --git a/clients/client-snowball/src/commands/CreateReturnShippingLabelCommand.ts b/clients/client-snowball/src/commands/CreateReturnShippingLabelCommand.ts index 14f4b8b90c55a..7293250f8632a 100644 --- a/clients/client-snowball/src/commands/CreateReturnShippingLabelCommand.ts +++ b/clients/client-snowball/src/commands/CreateReturnShippingLabelCommand.ts @@ -76,6 +76,7 @@ export interface CreateReturnShippingLabelCommandOutput extends CreateReturnShip * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* + * * @public */ export class CreateReturnShippingLabelCommand extends $Command diff --git a/clients/client-snowball/src/commands/DescribeAddressCommand.ts b/clients/client-snowball/src/commands/DescribeAddressCommand.ts index 216c92c09edc3..29d366fa62336 100644 --- a/clients/client-snowball/src/commands/DescribeAddressCommand.ts +++ b/clients/client-snowball/src/commands/DescribeAddressCommand.ts @@ -76,33 +76,33 @@ export interface DescribeAddressCommandOutput extends DescribeAddressResult, __M * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public + * * @example To describe an address for a job * ```javascript * // This operation describes an address for a job. * const input = { - * "AddressId": "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b" + * AddressId: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b" * }; * const command = new DescribeAddressCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Address": { - * "AddressId": "ADID5643ec50-3eec-4eb3-9be6-9374c10eb51b", - * "City": "Seattle", - * "Company": "My Company", - * "Country": "US", - * "Name": "My Name", - * "PhoneNumber": "425-555-5555", - * "PostalCode": "98101", - * "StateOrProvince": "WA", - * "Street1": "123 Main Street" + * Address: { + * AddressId: "ADID5643ec50-3eec-4eb3-9be6-9374c10eb51b", + * City: "Seattle", + * Company: "My Company", + * Country: "US", + * Name: "My Name", + * PhoneNumber: "425-555-5555", + * PostalCode: "98101", + * StateOrProvince: "WA", + * Street1: "123 Main Street" * } * } * *\/ - * // example id: to-describe-an-address-for-a-job-1482538608745 * ``` * + * @public */ export class DescribeAddressCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/DescribeAddressesCommand.ts b/clients/client-snowball/src/commands/DescribeAddressesCommand.ts index 645fe4875cf6f..de49fbe8ddb78 100644 --- a/clients/client-snowball/src/commands/DescribeAddressesCommand.ts +++ b/clients/client-snowball/src/commands/DescribeAddressesCommand.ts @@ -86,33 +86,33 @@ export interface DescribeAddressesCommandOutput extends DescribeAddressesResult, * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public + * * @example To describe all the addresses you've created for AWS Snowball * ```javascript * // This operation describes all the addresses that you've created for AWS Snowball. Calling this API in one of the US regions will return addresses from the list of all addresses associated with this account in all US regions. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new DescribeAddressesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Addresses": [ + * Addresses: [ * { - * "AddressId": "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", - * "City": "Seattle", - * "Company": "My Company", - * "Country": "US", - * "Name": "My Name", - * "PhoneNumber": "425-555-5555", - * "PostalCode": "98101", - * "StateOrProvince": "WA", - * "Street1": "123 Main Street" + * AddressId: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", + * City: "Seattle", + * Company: "My Company", + * Country: "US", + * Name: "My Name", + * PhoneNumber: "425-555-5555", + * PostalCode: "98101", + * StateOrProvince: "WA", + * Street1: "123 Main Street" * } * ] * } * *\/ - * // example id: to-describe-all-the-addresses-youve-created-for-aws-snowball-1482538936603 * ``` * + * @public */ export class DescribeAddressesCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/DescribeClusterCommand.ts b/clients/client-snowball/src/commands/DescribeClusterCommand.ts index c655730539045..786fc145f1a48 100644 --- a/clients/client-snowball/src/commands/DescribeClusterCommand.ts +++ b/clients/client-snowball/src/commands/DescribeClusterCommand.ts @@ -138,45 +138,8 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResult, __M * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public - * @example To describe a cluster - * ```javascript - * // Returns information about a specific cluster including shipping information, cluster status, and other important metadata. - * const input = { - * "ClusterId": "CID123e4567-e89b-12d3-a456-426655440000" - * }; - * const command = new DescribeClusterCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ClusterMetadata": { - * "AddressId": "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", - * "ClusterId": "CID123e4567-e89b-12d3-a456-426655440000", - * "ClusterState": "Pending", - * "CreationDate": "1480475517.0", - * "Description": "MyCluster", - * "JobType": "LOCAL_USE", - * "KmsKeyARN": "arn:aws:kms:us-east-1:123456789012:key/abcd1234-12ab-34cd-56ef-123456123456", - * "Notification": { - * "JobStatesToNotify": [], - * "NotifyAll": false - * }, - * "Resources": { - * "S3Resources": [ - * { - * "BucketArn": "arn:aws:s3:::MyBucket", - * "KeyRange": {} - * } - * ] - * }, - * "RoleARN": "arn:aws:iam::123456789012:role/snowball-import-S3-role", - * "ShippingOption": "SECOND_DAY" - * } - * } - * *\/ - * // example id: to-describe-a-cluster-1482864218396 - * ``` * + * @public */ export class DescribeClusterCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/DescribeJobCommand.ts b/clients/client-snowball/src/commands/DescribeJobCommand.ts index 422acfa521d61..3827d5fe08af3 100644 --- a/clients/client-snowball/src/commands/DescribeJobCommand.ts +++ b/clients/client-snowball/src/commands/DescribeJobCommand.ts @@ -305,49 +305,8 @@ export interface DescribeJobCommandOutput extends DescribeJobResult, __MetadataB * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public - * @example To describe a job you've created for AWS Snowball - * ```javascript - * // This operation describes a job you've created for AWS Snowball. - * const input = { - * "JobId": "JID123e4567-e89b-12d3-a456-426655440000" - * }; - * const command = new DescribeJobCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "JobMetadata": { - * "AddressId": "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", - * "CreationDate": "1475626164", - * "Description": "My Job", - * "JobId": "JID123e4567-e89b-12d3-a456-426655440000", - * "JobState": "New", - * "JobType": "IMPORT", - * "KmsKeyARN": "arn:aws:kms:us-east-1:123456789012:key/abcd1234-12ab-34cd-56ef-123456123456", - * "Notification": { - * "JobStatesToNotify": [], - * "NotifyAll": false - * }, - * "Resources": { - * "S3Resources": [ - * { - * "BucketArn": "arn:aws:s3:::MyBucket", - * "KeyRange": {} - * } - * ] - * }, - * "RoleARN": "arn:aws:iam::123456789012:role/snowball-import-S3-role", - * "ShippingDetails": { - * "ShippingOption": "SECOND_DAY" - * }, - * "SnowballCapacityPreference": "T80", - * "SnowballType": "STANDARD" - * } - * } - * *\/ - * // example id: to-describe-a-job-youve-created-for-aws-snowball-1482539500180 - * ``` * + * @public */ export class DescribeJobCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/DescribeReturnShippingLabelCommand.ts b/clients/client-snowball/src/commands/DescribeReturnShippingLabelCommand.ts index 5902757c6adb0..1d54176d4aeeb 100644 --- a/clients/client-snowball/src/commands/DescribeReturnShippingLabelCommand.ts +++ b/clients/client-snowball/src/commands/DescribeReturnShippingLabelCommand.ts @@ -69,6 +69,7 @@ export interface DescribeReturnShippingLabelCommandOutput extends DescribeReturn * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* + * * @public */ export class DescribeReturnShippingLabelCommand extends $Command diff --git a/clients/client-snowball/src/commands/GetJobManifestCommand.ts b/clients/client-snowball/src/commands/GetJobManifestCommand.ts index 169e66aa4dc2d..aa47611f6dbe7 100644 --- a/clients/client-snowball/src/commands/GetJobManifestCommand.ts +++ b/clients/client-snowball/src/commands/GetJobManifestCommand.ts @@ -78,29 +78,29 @@ export interface GetJobManifestCommandOutput extends GetJobManifestResult, __Met * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public + * * @example To get the manifest for a job you've created for AWS Snowball * ```javascript * // Returns a link to an Amazon S3 presigned URL for the manifest file associated with the specified JobId value. You can access the manifest file for up to 60 minutes after this request has been made. To access the manifest file after 60 minutes have passed, you'll have to make another call to the GetJobManifest action. - * // - * // The manifest is an encrypted file that you can download after your job enters the WithCustomer status. The manifest is decrypted by using the UnlockCode code value, when you pass both values to the Snowball through the Snowball client when the client is started for the first time. - * // - * // As a best practice, we recommend that you don't save a copy of an UnlockCode value in the same location as the manifest file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snowball associated with that job. - * // - * // The credentials of a given job, including its manifest file and unlock code, expire 90 days after the job is created. + * + * The manifest is an encrypted file that you can download after your job enters the WithCustomer status. The manifest is decrypted by using the UnlockCode code value, when you pass both values to the Snowball through the Snowball client when the client is started for the first time. + * + * As a best practice, we recommend that you don't save a copy of an UnlockCode value in the same location as the manifest file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snowball associated with that job. + * + * The credentials of a given job, including its manifest file and unlock code, expire 90 days after the job is created. * const input = { - * "JobId": "JID123e4567-e89b-12d3-a456-426655440000" + * JobId: "JID123e4567-e89b-12d3-a456-426655440000" * }; * const command = new GetJobManifestCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ManifestURI": "https://awsie-frosty-manifests-prod.s3.amazonaws.com/JID123e4567-e89b-12d3-a456-426655440000_manifest.bin?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20161224T005115Z&X-Amz-SignedHeaders=..." + * ManifestURI: "https://awsie-frosty-manifests-prod.s3.amazonaws.com/JID123e4567-e89b-12d3-a456-426655440000_manifest.bin?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20161224T005115Z&X-Amz-SignedHeaders=..." * } * *\/ - * // example id: to-get-the-manifest-for-a-job-youve-created-for-aws-snowball-1482540389246 * ``` * + * @public */ export class GetJobManifestCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/GetJobUnlockCodeCommand.ts b/clients/client-snowball/src/commands/GetJobUnlockCodeCommand.ts index bccceff3d42df..d1d28613c9e3c 100644 --- a/clients/client-snowball/src/commands/GetJobUnlockCodeCommand.ts +++ b/clients/client-snowball/src/commands/GetJobUnlockCodeCommand.ts @@ -75,27 +75,27 @@ export interface GetJobUnlockCodeCommandOutput extends GetJobUnlockCodeResult, _ * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public + * * @example To get the unlock code for a job you've created for AWS Snowball * ```javascript * // Returns the UnlockCode code value for the specified job. A particular UnlockCode value can be accessed for up to 90 days after the associated job has been created. - * // - * // The UnlockCode value is a 29-character code with 25 alphanumeric characters and 4 hyphens. This code is used to decrypt the manifest file when it is passed along with the manifest to the Snowball through the Snowball client when the client is started for the first time. - * // - * // As a best practice, we recommend that you don't save a copy of the UnlockCode in the same location as the manifest file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snowball associated with that job. + * + * The UnlockCode value is a 29-character code with 25 alphanumeric characters and 4 hyphens. This code is used to decrypt the manifest file when it is passed along with the manifest to the Snowball through the Snowball client when the client is started for the first time. + * + * As a best practice, we recommend that you don't save a copy of the UnlockCode in the same location as the manifest file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snowball associated with that job. * const input = { - * "JobId": "JID123e4567-e89b-12d3-a456-426655440000" + * JobId: "JID123e4567-e89b-12d3-a456-426655440000" * }; * const command = new GetJobUnlockCodeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "UnlockCode": "12345-abcde-56789-fghij-01234" + * UnlockCode: "12345-abcde-56789-fghij-01234" * } * *\/ - * // example id: to-get-the-unlock-code-for-a-job-youve-created-for-aws-snowball-1482541987286 * ``` * + * @public */ export class GetJobUnlockCodeCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/GetSnowballUsageCommand.ts b/clients/client-snowball/src/commands/GetSnowballUsageCommand.ts index 52736080cea16..fe0a0689f999a 100644 --- a/clients/client-snowball/src/commands/GetSnowballUsageCommand.ts +++ b/clients/client-snowball/src/commands/GetSnowballUsageCommand.ts @@ -57,24 +57,24 @@ export interface GetSnowballUsageCommandOutput extends GetSnowballUsageResult, _ * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public + * * @example To see your Snowball service limit and the number of Snowballs you have in use * ```javascript * // Returns information about the Snowball service limit for your account, and also the number of Snowballs your account has in use. - * // - * // The default service limit for the number of Snowballs that you can have at one time is 1. If you want to increase your service limit, contact AWS Support. - * const input = {}; + * + * The default service limit for the number of Snowballs that you can have at one time is 1. If you want to increase your service limit, contact AWS Support. + * const input = { /* empty *\/ }; * const command = new GetSnowballUsageCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SnowballLimit": 1, - * "SnowballsInUse": 0 + * SnowballLimit: 1, + * SnowballsInUse: 0 * } * *\/ - * // example id: to-see-your-snowball-service-limit-and-the-number-of-snowballs-you-have-in-use-1482863394588 * ``` * + * @public */ export class GetSnowballUsageCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/GetSoftwareUpdatesCommand.ts b/clients/client-snowball/src/commands/GetSoftwareUpdatesCommand.ts index 04e1353e81463..d9c5889db15c8 100644 --- a/clients/client-snowball/src/commands/GetSoftwareUpdatesCommand.ts +++ b/clients/client-snowball/src/commands/GetSoftwareUpdatesCommand.ts @@ -64,6 +64,7 @@ export interface GetSoftwareUpdatesCommandOutput extends GetSoftwareUpdatesResul * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* + * * @public */ export class GetSoftwareUpdatesCommand extends $Command diff --git a/clients/client-snowball/src/commands/ListClusterJobsCommand.ts b/clients/client-snowball/src/commands/ListClusterJobsCommand.ts index c99d294395af4..b5f106e6cf31b 100644 --- a/clients/client-snowball/src/commands/ListClusterJobsCommand.ts +++ b/clients/client-snowball/src/commands/ListClusterJobsCommand.ts @@ -79,69 +79,8 @@ export interface ListClusterJobsCommandOutput extends ListClusterJobsResult, __M * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public - * @example To get a list of jobs in a cluster that you've created for AWS Snowball - * ```javascript - * // Returns an array of JobListEntry objects of the specified length. Each JobListEntry object is for a job in the specified cluster and contains a job's state, a job's ID, and other information. - * const input = { - * "ClusterId": "CID123e4567-e89b-12d3-a456-426655440000" - * }; - * const command = new ListClusterJobsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "JobListEntries": [ - * { - * "CreationDate": "1480475524.0", - * "Description": "MyClustrer-node-001", - * "IsMaster": false, - * "JobId": "JID123e4567-e89b-12d3-a456-426655440000", - * "JobState": "New", - * "JobType": "LOCAL_USE", - * "SnowballType": "EDGE" - * }, - * { - * "CreationDate": "1480475525.0", - * "Description": "MyClustrer-node-002", - * "IsMaster": false, - * "JobId": "JID123e4567-e89b-12d3-a456-426655440001", - * "JobState": "New", - * "JobType": "LOCAL_USE", - * "SnowballType": "EDGE" - * }, - * { - * "CreationDate": "1480475525.0", - * "Description": "MyClustrer-node-003", - * "IsMaster": false, - * "JobId": "JID123e4567-e89b-12d3-a456-426655440002", - * "JobState": "New", - * "JobType": "LOCAL_USE", - * "SnowballType": "EDGE" - * }, - * { - * "CreationDate": "1480475525.0", - * "Description": "MyClustrer-node-004", - * "IsMaster": false, - * "JobId": "JID123e4567-e89b-12d3-a456-426655440003", - * "JobState": "New", - * "JobType": "LOCAL_USE", - * "SnowballType": "EDGE" - * }, - * { - * "CreationDate": "1480475525.0", - * "Description": "MyClustrer-node-005", - * "IsMaster": false, - * "JobId": "JID123e4567-e89b-12d3-a456-426655440004", - * "JobState": "New", - * "JobType": "LOCAL_USE", - * "SnowballType": "EDGE" - * } - * ] - * } - * *\/ - * // example id: to-get-a-list-of-jobs-in-a-cluster-that-youve-created-for-aws-snowball-1482863105773 - * ``` * + * @public */ export class ListClusterJobsCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/ListClustersCommand.ts b/clients/client-snowball/src/commands/ListClustersCommand.ts index e171d9b8a8612..f38dd8f55d636 100644 --- a/clients/client-snowball/src/commands/ListClustersCommand.ts +++ b/clients/client-snowball/src/commands/ListClustersCommand.ts @@ -71,28 +71,8 @@ export interface ListClustersCommandOutput extends ListClustersResult, __Metadat * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public - * @example To get a list of clusters that you've created for AWS Snowball - * ```javascript - * // Returns an array of ClusterListEntry objects of the specified length. Each ClusterListEntry object contains a cluster's state, a cluster's ID, and other important status information. - * const input = {}; - * const command = new ListClustersCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "ClusterListEntries": [ - * { - * "ClusterId": "CID123e4567-e89b-12d3-a456-426655440000", - * "ClusterState": "Pending", - * "CreationDate": "1480475517.0", - * "Description": "MyCluster" - * } - * ] - * } - * *\/ - * // example id: to-get-a-list-of-clusters-that-youve-created-for-aws-snowball-1482862223003 - * ``` * + * @public */ export class ListClustersCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/ListCompatibleImagesCommand.ts b/clients/client-snowball/src/commands/ListCompatibleImagesCommand.ts index 4b52659bc1254..1a18c32093357 100644 --- a/clients/client-snowball/src/commands/ListCompatibleImagesCommand.ts +++ b/clients/client-snowball/src/commands/ListCompatibleImagesCommand.ts @@ -74,6 +74,7 @@ export interface ListCompatibleImagesCommandOutput extends ListCompatibleImagesR * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* + * * @public */ export class ListCompatibleImagesCommand extends $Command diff --git a/clients/client-snowball/src/commands/ListJobsCommand.ts b/clients/client-snowball/src/commands/ListJobsCommand.ts index 136f8b22b239e..2818d4bc2acdf 100644 --- a/clients/client-snowball/src/commands/ListJobsCommand.ts +++ b/clients/client-snowball/src/commands/ListJobsCommand.ts @@ -76,31 +76,8 @@ export interface ListJobsCommandOutput extends ListJobsResult, __MetadataBearer * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public - * @example To get a list of jobs that you've created for AWS Snowball - * ```javascript - * // Returns an array of JobListEntry objects of the specified length. Each JobListEntry object contains a job's state, a job's ID, and a value that indicates whether the job is a job part, in the case of export jobs. Calling this API action in one of the US regions will return jobs from the list of all jobs associated with this account in all US regions. - * const input = {}; - * const command = new ListJobsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "JobListEntries": [ - * { - * "CreationDate": "1460678186.0", - * "Description": "MyJob", - * "IsMaster": false, - * "JobId": "JID123e4567-e89b-12d3-a456-426655440000", - * "JobState": "New", - * "JobType": "IMPORT", - * "SnowballType": "STANDARD" - * } - * ] - * } - * *\/ - * // example id: to-get-a-list-of-jobs-that-youve-created-for-aws-snowball-1482542167627 - * ``` * + * @public */ export class ListJobsCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/ListLongTermPricingCommand.ts b/clients/client-snowball/src/commands/ListLongTermPricingCommand.ts index ae9815d40389d..22f3eb9bcf2b0 100644 --- a/clients/client-snowball/src/commands/ListLongTermPricingCommand.ts +++ b/clients/client-snowball/src/commands/ListLongTermPricingCommand.ts @@ -81,6 +81,7 @@ export interface ListLongTermPricingCommandOutput extends ListLongTermPricingRes * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* + * * @public */ export class ListLongTermPricingCommand extends $Command diff --git a/clients/client-snowball/src/commands/ListPickupLocationsCommand.ts b/clients/client-snowball/src/commands/ListPickupLocationsCommand.ts index 83f54b5aacc09..98cc6e5c9ecaf 100644 --- a/clients/client-snowball/src/commands/ListPickupLocationsCommand.ts +++ b/clients/client-snowball/src/commands/ListPickupLocationsCommand.ts @@ -79,33 +79,33 @@ export interface ListPickupLocationsCommandOutput extends ListPickupLocationsRes * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public + * * @example To get a list of locations from which the customer can choose to pickup a device. * ```javascript * // Returns a specified number of Address objects. Each Address is a pickup location address for Snow Family devices. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListPickupLocationsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Addresses": [ + * Addresses: [ * { - * "AddressId": "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", - * "City": "Seattle", - * "Company": "My Company", - * "Country": "US", - * "Name": "My Name", - * "PhoneNumber": "425-555-5555", - * "PostalCode": "98101", - * "StateOrProvince": "WA", - * "Street1": "123 Main Street" + * AddressId: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", + * City: "Seattle", + * Company: "My Company", + * Country: "US", + * Name: "My Name", + * PhoneNumber: "425-555-5555", + * PostalCode: "98101", + * StateOrProvince: "WA", + * Street1: "123 Main Street" * } * ] * } * *\/ - * // example id: to-get-a-list-of-locations-from-which-the-customer-can-choose-to-pickup-a-device-1482542167627 * ``` * + * @public */ export class ListPickupLocationsCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/ListServiceVersionsCommand.ts b/clients/client-snowball/src/commands/ListServiceVersionsCommand.ts index 60738d2013aa8..738ab5f65a0f2 100644 --- a/clients/client-snowball/src/commands/ListServiceVersionsCommand.ts +++ b/clients/client-snowball/src/commands/ListServiceVersionsCommand.ts @@ -89,6 +89,7 @@ export interface ListServiceVersionsCommandOutput extends ListServiceVersionsRes * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* + * * @public */ export class ListServiceVersionsCommand extends $Command diff --git a/clients/client-snowball/src/commands/UpdateClusterCommand.ts b/clients/client-snowball/src/commands/UpdateClusterCommand.ts index cad9624912359..905b481b01842 100644 --- a/clients/client-snowball/src/commands/UpdateClusterCommand.ts +++ b/clients/client-snowball/src/commands/UpdateClusterCommand.ts @@ -141,20 +141,23 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResult, __Metad * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public + * * @example To update a cluster * ```javascript * // This action allows you to update certain parameters for a cluster. Once the cluster changes to a different state, usually within 60 minutes of it being created, this action is no longer available. * const input = { - * "AddressId": "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", - * "ClusterId": "CID123e4567-e89b-12d3-a456-426655440000", - * "Description": "updated-cluster-name" + * AddressId: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", + * ClusterId: "CID123e4567-e89b-12d3-a456-426655440000", + * Description: "updated-cluster-name" * }; * const command = new UpdateClusterCommand(input); - * await client.send(command); - * // example id: to-update-a-cluster-1482863900595 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateClusterCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/UpdateJobCommand.ts b/clients/client-snowball/src/commands/UpdateJobCommand.ts index 91ace71411174..6a99f48d4362a 100644 --- a/clients/client-snowball/src/commands/UpdateJobCommand.ts +++ b/clients/client-snowball/src/commands/UpdateJobCommand.ts @@ -155,22 +155,25 @@ export interface UpdateJobCommandOutput extends UpdateJobResult, __MetadataBeare * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* - * @public + * * @example To update a job * ```javascript * // This action allows you to update certain parameters for a job. Once the job changes to a different job state, usually within 60 minutes of the job being created, this action is no longer available. * const input = { - * "AddressId": "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", - * "Description": "updated-job-name", - * "JobId": "JID123e4567-e89b-12d3-a456-426655440000", - * "ShippingOption": "NEXT_DAY", - * "SnowballCapacityPreference": "T100" + * AddressId: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", + * Description: "updated-job-name", + * JobId: "JID123e4567-e89b-12d3-a456-426655440000", + * ShippingOption: "NEXT_DAY", + * SnowballCapacityPreference: "T100" * }; * const command = new UpdateJobCommand(input); - * await client.send(command); - * // example id: to-update-a-job-1482863556886 + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ * ``` * + * @public */ export class UpdateJobCommand extends $Command .classBuilder< diff --git a/clients/client-snowball/src/commands/UpdateJobShipmentStateCommand.ts b/clients/client-snowball/src/commands/UpdateJobShipmentStateCommand.ts index b7811b01450f1..db77d9dac9cd7 100644 --- a/clients/client-snowball/src/commands/UpdateJobShipmentStateCommand.ts +++ b/clients/client-snowball/src/commands/UpdateJobShipmentStateCommand.ts @@ -62,6 +62,7 @@ export interface UpdateJobShipmentStateCommandOutput extends UpdateJobShipmentSt * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* + * * @public */ export class UpdateJobShipmentStateCommand extends $Command diff --git a/clients/client-snowball/src/commands/UpdateLongTermPricingCommand.ts b/clients/client-snowball/src/commands/UpdateLongTermPricingCommand.ts index c74ee8fd110b8..6e66616753aef 100644 --- a/clients/client-snowball/src/commands/UpdateLongTermPricingCommand.ts +++ b/clients/client-snowball/src/commands/UpdateLongTermPricingCommand.ts @@ -59,6 +59,7 @@ export interface UpdateLongTermPricingCommandOutput extends UpdateLongTermPricin * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* + * * @public */ export class UpdateLongTermPricingCommand extends $Command diff --git a/clients/client-sns/src/commands/AddPermissionCommand.ts b/clients/client-sns/src/commands/AddPermissionCommand.ts index 2d1da89e7b9ae..4334370924631 100644 --- a/clients/client-sns/src/commands/AddPermissionCommand.ts +++ b/clients/client-sns/src/commands/AddPermissionCommand.ts @@ -79,6 +79,7 @@ export interface AddPermissionCommandOutput extends __MetadataBearer {} * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class AddPermissionCommand extends $Command diff --git a/clients/client-sns/src/commands/CheckIfPhoneNumberIsOptedOutCommand.ts b/clients/client-sns/src/commands/CheckIfPhoneNumberIsOptedOutCommand.ts index 77a8e0500f79a..d11125ebfc5d3 100644 --- a/clients/client-sns/src/commands/CheckIfPhoneNumberIsOptedOutCommand.ts +++ b/clients/client-sns/src/commands/CheckIfPhoneNumberIsOptedOutCommand.ts @@ -78,6 +78,7 @@ export interface CheckIfPhoneNumberIsOptedOutCommandOutput * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class CheckIfPhoneNumberIsOptedOutCommand extends $Command diff --git a/clients/client-sns/src/commands/ConfirmSubscriptionCommand.ts b/clients/client-sns/src/commands/ConfirmSubscriptionCommand.ts index cb101e914e79c..f1a8960862f1d 100644 --- a/clients/client-sns/src/commands/ConfirmSubscriptionCommand.ts +++ b/clients/client-sns/src/commands/ConfirmSubscriptionCommand.ts @@ -86,6 +86,7 @@ export interface ConfirmSubscriptionCommandOutput extends ConfirmSubscriptionRes * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class ConfirmSubscriptionCommand extends $Command diff --git a/clients/client-sns/src/commands/CreatePlatformApplicationCommand.ts b/clients/client-sns/src/commands/CreatePlatformApplicationCommand.ts index e42409e40e949..d4372da385e5f 100644 --- a/clients/client-sns/src/commands/CreatePlatformApplicationCommand.ts +++ b/clients/client-sns/src/commands/CreatePlatformApplicationCommand.ts @@ -120,6 +120,7 @@ export interface CreatePlatformApplicationCommandOutput extends CreatePlatformAp * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class CreatePlatformApplicationCommand extends $Command diff --git a/clients/client-sns/src/commands/CreatePlatformEndpointCommand.ts b/clients/client-sns/src/commands/CreatePlatformEndpointCommand.ts index e2a892fb8ad95..f08515ce63f66 100644 --- a/clients/client-sns/src/commands/CreatePlatformEndpointCommand.ts +++ b/clients/client-sns/src/commands/CreatePlatformEndpointCommand.ts @@ -86,6 +86,7 @@ export interface CreatePlatformEndpointCommandOutput extends CreateEndpointRespo * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class CreatePlatformEndpointCommand extends $Command diff --git a/clients/client-sns/src/commands/CreateSMSSandboxPhoneNumberCommand.ts b/clients/client-sns/src/commands/CreateSMSSandboxPhoneNumberCommand.ts index c24bf302b18d4..f5f9feb55caa8 100644 --- a/clients/client-sns/src/commands/CreateSMSSandboxPhoneNumberCommand.ts +++ b/clients/client-sns/src/commands/CreateSMSSandboxPhoneNumberCommand.ts @@ -88,6 +88,7 @@ export interface CreateSMSSandboxPhoneNumberCommandOutput extends CreateSMSSandb * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class CreateSMSSandboxPhoneNumberCommand extends $Command diff --git a/clients/client-sns/src/commands/CreateTopicCommand.ts b/clients/client-sns/src/commands/CreateTopicCommand.ts index 7bab54051b550..c90518f077a09 100644 --- a/clients/client-sns/src/commands/CreateTopicCommand.ts +++ b/clients/client-sns/src/commands/CreateTopicCommand.ts @@ -101,6 +101,7 @@ export interface CreateTopicCommandOutput extends CreateTopicResponse, __Metadat * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class CreateTopicCommand extends $Command diff --git a/clients/client-sns/src/commands/DeleteEndpointCommand.ts b/clients/client-sns/src/commands/DeleteEndpointCommand.ts index 4ad780f2bb36e..bb484d53a01ab 100644 --- a/clients/client-sns/src/commands/DeleteEndpointCommand.ts +++ b/clients/client-sns/src/commands/DeleteEndpointCommand.ts @@ -67,6 +67,7 @@ export interface DeleteEndpointCommandOutput extends __MetadataBearer {} * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class DeleteEndpointCommand extends $Command diff --git a/clients/client-sns/src/commands/DeletePlatformApplicationCommand.ts b/clients/client-sns/src/commands/DeletePlatformApplicationCommand.ts index f1203683845af..46e25adca070e 100644 --- a/clients/client-sns/src/commands/DeletePlatformApplicationCommand.ts +++ b/clients/client-sns/src/commands/DeletePlatformApplicationCommand.ts @@ -66,6 +66,7 @@ export interface DeletePlatformApplicationCommandOutput extends __MetadataBearer * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class DeletePlatformApplicationCommand extends $Command diff --git a/clients/client-sns/src/commands/DeleteSMSSandboxPhoneNumberCommand.ts b/clients/client-sns/src/commands/DeleteSMSSandboxPhoneNumberCommand.ts index 4f52ee8a6b6f6..f638b48220f4e 100644 --- a/clients/client-sns/src/commands/DeleteSMSSandboxPhoneNumberCommand.ts +++ b/clients/client-sns/src/commands/DeleteSMSSandboxPhoneNumberCommand.ts @@ -87,6 +87,7 @@ export interface DeleteSMSSandboxPhoneNumberCommandOutput extends DeleteSMSSandb * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class DeleteSMSSandboxPhoneNumberCommand extends $Command diff --git a/clients/client-sns/src/commands/DeleteTopicCommand.ts b/clients/client-sns/src/commands/DeleteTopicCommand.ts index 89fc5e86617ca..072a52eb622f3 100644 --- a/clients/client-sns/src/commands/DeleteTopicCommand.ts +++ b/clients/client-sns/src/commands/DeleteTopicCommand.ts @@ -84,6 +84,7 @@ export interface DeleteTopicCommandOutput extends __MetadataBearer {} * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class DeleteTopicCommand extends $Command diff --git a/clients/client-sns/src/commands/GetDataProtectionPolicyCommand.ts b/clients/client-sns/src/commands/GetDataProtectionPolicyCommand.ts index e29e64568831d..a32ed89f3fe6e 100644 --- a/clients/client-sns/src/commands/GetDataProtectionPolicyCommand.ts +++ b/clients/client-sns/src/commands/GetDataProtectionPolicyCommand.ts @@ -73,6 +73,7 @@ export interface GetDataProtectionPolicyCommandOutput extends GetDataProtectionP * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class GetDataProtectionPolicyCommand extends $Command diff --git a/clients/client-sns/src/commands/GetEndpointAttributesCommand.ts b/clients/client-sns/src/commands/GetEndpointAttributesCommand.ts index 3e08f28f11cd8..770944cabb828 100644 --- a/clients/client-sns/src/commands/GetEndpointAttributesCommand.ts +++ b/clients/client-sns/src/commands/GetEndpointAttributesCommand.ts @@ -72,6 +72,7 @@ export interface GetEndpointAttributesCommandOutput extends GetEndpointAttribute * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class GetEndpointAttributesCommand extends $Command diff --git a/clients/client-sns/src/commands/GetPlatformApplicationAttributesCommand.ts b/clients/client-sns/src/commands/GetPlatformApplicationAttributesCommand.ts index 618ffaa5eab54..5b9509bca897f 100644 --- a/clients/client-sns/src/commands/GetPlatformApplicationAttributesCommand.ts +++ b/clients/client-sns/src/commands/GetPlatformApplicationAttributesCommand.ts @@ -77,6 +77,7 @@ export interface GetPlatformApplicationAttributesCommandOutput * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class GetPlatformApplicationAttributesCommand extends $Command diff --git a/clients/client-sns/src/commands/GetSMSAttributesCommand.ts b/clients/client-sns/src/commands/GetSMSAttributesCommand.ts index e1790cd7eb5ef..aa001929956e1 100644 --- a/clients/client-sns/src/commands/GetSMSAttributesCommand.ts +++ b/clients/client-sns/src/commands/GetSMSAttributesCommand.ts @@ -73,6 +73,7 @@ export interface GetSMSAttributesCommandOutput extends GetSMSAttributesResponse, * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class GetSMSAttributesCommand extends $Command diff --git a/clients/client-sns/src/commands/GetSMSSandboxAccountStatusCommand.ts b/clients/client-sns/src/commands/GetSMSSandboxAccountStatusCommand.ts index 152a0cb04d60a..4d170b0dfeb75 100644 --- a/clients/client-sns/src/commands/GetSMSSandboxAccountStatusCommand.ts +++ b/clients/client-sns/src/commands/GetSMSSandboxAccountStatusCommand.ts @@ -71,6 +71,7 @@ export interface GetSMSSandboxAccountStatusCommandOutput extends GetSMSSandboxAc * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class GetSMSSandboxAccountStatusCommand extends $Command diff --git a/clients/client-sns/src/commands/GetSubscriptionAttributesCommand.ts b/clients/client-sns/src/commands/GetSubscriptionAttributesCommand.ts index 8634546771390..361ab6a05c88f 100644 --- a/clients/client-sns/src/commands/GetSubscriptionAttributesCommand.ts +++ b/clients/client-sns/src/commands/GetSubscriptionAttributesCommand.ts @@ -70,6 +70,7 @@ export interface GetSubscriptionAttributesCommandOutput extends GetSubscriptionA * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class GetSubscriptionAttributesCommand extends $Command diff --git a/clients/client-sns/src/commands/GetTopicAttributesCommand.ts b/clients/client-sns/src/commands/GetTopicAttributesCommand.ts index 4e9217c59f75d..0ef1dc653d415 100644 --- a/clients/client-sns/src/commands/GetTopicAttributesCommand.ts +++ b/clients/client-sns/src/commands/GetTopicAttributesCommand.ts @@ -75,6 +75,7 @@ export interface GetTopicAttributesCommandOutput extends GetTopicAttributesRespo * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class GetTopicAttributesCommand extends $Command diff --git a/clients/client-sns/src/commands/ListEndpointsByPlatformApplicationCommand.ts b/clients/client-sns/src/commands/ListEndpointsByPlatformApplicationCommand.ts index 03c42a3dcf785..cf91b02e116b5 100644 --- a/clients/client-sns/src/commands/ListEndpointsByPlatformApplicationCommand.ts +++ b/clients/client-sns/src/commands/ListEndpointsByPlatformApplicationCommand.ts @@ -94,6 +94,7 @@ export interface ListEndpointsByPlatformApplicationCommandOutput * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class ListEndpointsByPlatformApplicationCommand extends $Command diff --git a/clients/client-sns/src/commands/ListOriginationNumbersCommand.ts b/clients/client-sns/src/commands/ListOriginationNumbersCommand.ts index e3a5458589570..61f57cbb3f04c 100644 --- a/clients/client-sns/src/commands/ListOriginationNumbersCommand.ts +++ b/clients/client-sns/src/commands/ListOriginationNumbersCommand.ts @@ -90,6 +90,7 @@ export interface ListOriginationNumbersCommandOutput extends ListOriginationNumb * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class ListOriginationNumbersCommand extends $Command diff --git a/clients/client-sns/src/commands/ListPhoneNumbersOptedOutCommand.ts b/clients/client-sns/src/commands/ListPhoneNumbersOptedOutCommand.ts index c6a0e81e6ef59..b493bf26f37df 100644 --- a/clients/client-sns/src/commands/ListPhoneNumbersOptedOutCommand.ts +++ b/clients/client-sns/src/commands/ListPhoneNumbersOptedOutCommand.ts @@ -82,6 +82,7 @@ export interface ListPhoneNumbersOptedOutCommandOutput extends ListPhoneNumbersO * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class ListPhoneNumbersOptedOutCommand extends $Command diff --git a/clients/client-sns/src/commands/ListPlatformApplicationsCommand.ts b/clients/client-sns/src/commands/ListPlatformApplicationsCommand.ts index 35479d8bca396..b1f889889a934 100644 --- a/clients/client-sns/src/commands/ListPlatformApplicationsCommand.ts +++ b/clients/client-sns/src/commands/ListPlatformApplicationsCommand.ts @@ -82,6 +82,7 @@ export interface ListPlatformApplicationsCommandOutput extends ListPlatformAppli * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class ListPlatformApplicationsCommand extends $Command diff --git a/clients/client-sns/src/commands/ListSMSSandboxPhoneNumbersCommand.ts b/clients/client-sns/src/commands/ListSMSSandboxPhoneNumbersCommand.ts index 20f8fb5b914a7..06d429977c899 100644 --- a/clients/client-sns/src/commands/ListSMSSandboxPhoneNumbersCommand.ts +++ b/clients/client-sns/src/commands/ListSMSSandboxPhoneNumbersCommand.ts @@ -92,6 +92,7 @@ export interface ListSMSSandboxPhoneNumbersCommandOutput extends ListSMSSandboxP * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class ListSMSSandboxPhoneNumbersCommand extends $Command diff --git a/clients/client-sns/src/commands/ListSubscriptionsByTopicCommand.ts b/clients/client-sns/src/commands/ListSubscriptionsByTopicCommand.ts index 823dcaf075971..87d6663c5c224 100644 --- a/clients/client-sns/src/commands/ListSubscriptionsByTopicCommand.ts +++ b/clients/client-sns/src/commands/ListSubscriptionsByTopicCommand.ts @@ -82,6 +82,7 @@ export interface ListSubscriptionsByTopicCommandOutput extends ListSubscriptions * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class ListSubscriptionsByTopicCommand extends $Command diff --git a/clients/client-sns/src/commands/ListSubscriptionsCommand.ts b/clients/client-sns/src/commands/ListSubscriptionsCommand.ts index 19fdcae3575b6..497270e8faeb2 100644 --- a/clients/client-sns/src/commands/ListSubscriptionsCommand.ts +++ b/clients/client-sns/src/commands/ListSubscriptionsCommand.ts @@ -78,6 +78,7 @@ export interface ListSubscriptionsCommandOutput extends ListSubscriptionsRespons * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class ListSubscriptionsCommand extends $Command diff --git a/clients/client-sns/src/commands/ListTagsForResourceCommand.ts b/clients/client-sns/src/commands/ListTagsForResourceCommand.ts index 46faf2a1491c7..588da61a5d35a 100644 --- a/clients/client-sns/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-sns/src/commands/ListTagsForResourceCommand.ts @@ -80,6 +80,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-sns/src/commands/ListTopicsCommand.ts b/clients/client-sns/src/commands/ListTopicsCommand.ts index e7586a00c9dfd..b53909f3d1152 100644 --- a/clients/client-sns/src/commands/ListTopicsCommand.ts +++ b/clients/client-sns/src/commands/ListTopicsCommand.ts @@ -74,6 +74,7 @@ export interface ListTopicsCommandOutput extends ListTopicsResponse, __MetadataB * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class ListTopicsCommand extends $Command diff --git a/clients/client-sns/src/commands/OptInPhoneNumberCommand.ts b/clients/client-sns/src/commands/OptInPhoneNumberCommand.ts index 0684cf2474679..d148257559654 100644 --- a/clients/client-sns/src/commands/OptInPhoneNumberCommand.ts +++ b/clients/client-sns/src/commands/OptInPhoneNumberCommand.ts @@ -72,6 +72,7 @@ export interface OptInPhoneNumberCommandOutput extends OptInPhoneNumberResponse, * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class OptInPhoneNumberCommand extends $Command diff --git a/clients/client-sns/src/commands/PublishBatchCommand.ts b/clients/client-sns/src/commands/PublishBatchCommand.ts index b4fdefa524009..1f309624d77a9 100644 --- a/clients/client-sns/src/commands/PublishBatchCommand.ts +++ b/clients/client-sns/src/commands/PublishBatchCommand.ts @@ -176,6 +176,7 @@ export interface PublishBatchCommandOutput extends PublishBatchResponse, __Metad * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class PublishBatchCommand extends $Command diff --git a/clients/client-sns/src/commands/PublishCommand.ts b/clients/client-sns/src/commands/PublishCommand.ts index d3ed8cdf25b84..d812cd2b98778 100644 --- a/clients/client-sns/src/commands/PublishCommand.ts +++ b/clients/client-sns/src/commands/PublishCommand.ts @@ -142,6 +142,7 @@ export interface PublishCommandOutput extends PublishResponse, __MetadataBearer * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class PublishCommand extends $Command diff --git a/clients/client-sns/src/commands/PutDataProtectionPolicyCommand.ts b/clients/client-sns/src/commands/PutDataProtectionPolicyCommand.ts index 2130979c6e519..47a180c572b9e 100644 --- a/clients/client-sns/src/commands/PutDataProtectionPolicyCommand.ts +++ b/clients/client-sns/src/commands/PutDataProtectionPolicyCommand.ts @@ -72,6 +72,7 @@ export interface PutDataProtectionPolicyCommandOutput extends __MetadataBearer { * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class PutDataProtectionPolicyCommand extends $Command diff --git a/clients/client-sns/src/commands/RemovePermissionCommand.ts b/clients/client-sns/src/commands/RemovePermissionCommand.ts index 558a1e09b24b0..f69f24cd76ccd 100644 --- a/clients/client-sns/src/commands/RemovePermissionCommand.ts +++ b/clients/client-sns/src/commands/RemovePermissionCommand.ts @@ -72,6 +72,7 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {} * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class RemovePermissionCommand extends $Command diff --git a/clients/client-sns/src/commands/SetEndpointAttributesCommand.ts b/clients/client-sns/src/commands/SetEndpointAttributesCommand.ts index 668a14f73f3e0..1e4dd836a1240 100644 --- a/clients/client-sns/src/commands/SetEndpointAttributesCommand.ts +++ b/clients/client-sns/src/commands/SetEndpointAttributesCommand.ts @@ -71,6 +71,7 @@ export interface SetEndpointAttributesCommandOutput extends __MetadataBearer {} * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class SetEndpointAttributesCommand extends $Command diff --git a/clients/client-sns/src/commands/SetPlatformApplicationAttributesCommand.ts b/clients/client-sns/src/commands/SetPlatformApplicationAttributesCommand.ts index a5e3b0baebca5..bfa63e273700b 100644 --- a/clients/client-sns/src/commands/SetPlatformApplicationAttributesCommand.ts +++ b/clients/client-sns/src/commands/SetPlatformApplicationAttributesCommand.ts @@ -76,6 +76,7 @@ export interface SetPlatformApplicationAttributesCommandOutput extends __Metadat * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class SetPlatformApplicationAttributesCommand extends $Command diff --git a/clients/client-sns/src/commands/SetSMSAttributesCommand.ts b/clients/client-sns/src/commands/SetSMSAttributesCommand.ts index 7f26261477d6b..324ec09402ee8 100644 --- a/clients/client-sns/src/commands/SetSMSAttributesCommand.ts +++ b/clients/client-sns/src/commands/SetSMSAttributesCommand.ts @@ -78,6 +78,7 @@ export interface SetSMSAttributesCommandOutput extends SetSMSAttributesResponse, * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class SetSMSAttributesCommand extends $Command diff --git a/clients/client-sns/src/commands/SetSubscriptionAttributesCommand.ts b/clients/client-sns/src/commands/SetSubscriptionAttributesCommand.ts index b53abc5e3e4ab..400182fb9c81d 100644 --- a/clients/client-sns/src/commands/SetSubscriptionAttributesCommand.ts +++ b/clients/client-sns/src/commands/SetSubscriptionAttributesCommand.ts @@ -77,6 +77,7 @@ export interface SetSubscriptionAttributesCommandOutput extends __MetadataBearer * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class SetSubscriptionAttributesCommand extends $Command diff --git a/clients/client-sns/src/commands/SetTopicAttributesCommand.ts b/clients/client-sns/src/commands/SetTopicAttributesCommand.ts index c7c1bbe02d6c9..34f10bc7885b8 100644 --- a/clients/client-sns/src/commands/SetTopicAttributesCommand.ts +++ b/clients/client-sns/src/commands/SetTopicAttributesCommand.ts @@ -77,6 +77,7 @@ export interface SetTopicAttributesCommandOutput extends __MetadataBearer {} * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class SetTopicAttributesCommand extends $Command diff --git a/clients/client-sns/src/commands/SubscribeCommand.ts b/clients/client-sns/src/commands/SubscribeCommand.ts index fc9edab218628..31f8924bd66b4 100644 --- a/clients/client-sns/src/commands/SubscribeCommand.ts +++ b/clients/client-sns/src/commands/SubscribeCommand.ts @@ -95,6 +95,7 @@ export interface SubscribeCommandOutput extends SubscribeResponse, __MetadataBea * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class SubscribeCommand extends $Command diff --git a/clients/client-sns/src/commands/TagResourceCommand.ts b/clients/client-sns/src/commands/TagResourceCommand.ts index b132a05f928b0..b454f505d7ab9 100644 --- a/clients/client-sns/src/commands/TagResourceCommand.ts +++ b/clients/client-sns/src/commands/TagResourceCommand.ts @@ -107,6 +107,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-sns/src/commands/UnsubscribeCommand.ts b/clients/client-sns/src/commands/UnsubscribeCommand.ts index 626b27ce64a9b..5452d007ef63e 100644 --- a/clients/client-sns/src/commands/UnsubscribeCommand.ts +++ b/clients/client-sns/src/commands/UnsubscribeCommand.ts @@ -81,6 +81,7 @@ export interface UnsubscribeCommandOutput extends __MetadataBearer {} * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class UnsubscribeCommand extends $Command diff --git a/clients/client-sns/src/commands/UntagResourceCommand.ts b/clients/client-sns/src/commands/UntagResourceCommand.ts index 1702f425d5e49..367e5c71d3fad 100644 --- a/clients/client-sns/src/commands/UntagResourceCommand.ts +++ b/clients/client-sns/src/commands/UntagResourceCommand.ts @@ -83,6 +83,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-sns/src/commands/VerifySMSSandboxPhoneNumberCommand.ts b/clients/client-sns/src/commands/VerifySMSSandboxPhoneNumberCommand.ts index a55e9b368ea02..da1df1c069c7c 100644 --- a/clients/client-sns/src/commands/VerifySMSSandboxPhoneNumberCommand.ts +++ b/clients/client-sns/src/commands/VerifySMSSandboxPhoneNumberCommand.ts @@ -87,6 +87,7 @@ export interface VerifySMSSandboxPhoneNumberCommandOutput extends VerifySMSSandb * @throws {@link SNSServiceException} *

Base exception class for all service exceptions from SNS service.

* + * * @public */ export class VerifySMSSandboxPhoneNumberCommand extends $Command diff --git a/clients/client-socialmessaging/src/commands/AssociateWhatsAppBusinessAccountCommand.ts b/clients/client-socialmessaging/src/commands/AssociateWhatsAppBusinessAccountCommand.ts index e413f3e32ca05..29284027a3a90 100644 --- a/clients/client-socialmessaging/src/commands/AssociateWhatsAppBusinessAccountCommand.ts +++ b/clients/client-socialmessaging/src/commands/AssociateWhatsAppBusinessAccountCommand.ts @@ -135,6 +135,7 @@ export interface AssociateWhatsAppBusinessAccountCommandOutput * @throws {@link SocialMessagingServiceException} *

Base exception class for all service exceptions from SocialMessaging service.

* + * * @public */ export class AssociateWhatsAppBusinessAccountCommand extends $Command diff --git a/clients/client-socialmessaging/src/commands/DeleteWhatsAppMessageMediaCommand.ts b/clients/client-socialmessaging/src/commands/DeleteWhatsAppMessageMediaCommand.ts index c35fb7c807e89..3cd2b70a63071 100644 --- a/clients/client-socialmessaging/src/commands/DeleteWhatsAppMessageMediaCommand.ts +++ b/clients/client-socialmessaging/src/commands/DeleteWhatsAppMessageMediaCommand.ts @@ -81,6 +81,7 @@ export interface DeleteWhatsAppMessageMediaCommandOutput extends DeleteWhatsAppM * @throws {@link SocialMessagingServiceException} *

Base exception class for all service exceptions from SocialMessaging service.

* + * * @public */ export class DeleteWhatsAppMessageMediaCommand extends $Command diff --git a/clients/client-socialmessaging/src/commands/DisassociateWhatsAppBusinessAccountCommand.ts b/clients/client-socialmessaging/src/commands/DisassociateWhatsAppBusinessAccountCommand.ts index b14d758d10872..934507b0d2850 100644 --- a/clients/client-socialmessaging/src/commands/DisassociateWhatsAppBusinessAccountCommand.ts +++ b/clients/client-socialmessaging/src/commands/DisassociateWhatsAppBusinessAccountCommand.ts @@ -79,6 +79,7 @@ export interface DisassociateWhatsAppBusinessAccountCommandOutput * @throws {@link SocialMessagingServiceException} *

Base exception class for all service exceptions from SocialMessaging service.

* + * * @public */ export class DisassociateWhatsAppBusinessAccountCommand extends $Command diff --git a/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountCommand.ts b/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountCommand.ts index 85b28ad227a5a..1e7991b00dfca 100644 --- a/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountCommand.ts +++ b/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountCommand.ts @@ -106,6 +106,7 @@ export interface GetLinkedWhatsAppBusinessAccountCommandOutput * @throws {@link SocialMessagingServiceException} *

Base exception class for all service exceptions from SocialMessaging service.

* + * * @public */ export class GetLinkedWhatsAppBusinessAccountCommand extends $Command diff --git a/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountPhoneNumberCommand.ts b/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountPhoneNumberCommand.ts index 7bdea7a5aeb25..8b382996716cb 100644 --- a/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountPhoneNumberCommand.ts +++ b/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountPhoneNumberCommand.ts @@ -96,6 +96,7 @@ export interface GetLinkedWhatsAppBusinessAccountPhoneNumberCommandOutput * @throws {@link SocialMessagingServiceException} *

Base exception class for all service exceptions from SocialMessaging service.

* + * * @public */ export class GetLinkedWhatsAppBusinessAccountPhoneNumberCommand extends $Command diff --git a/clients/client-socialmessaging/src/commands/GetWhatsAppMessageMediaCommand.ts b/clients/client-socialmessaging/src/commands/GetWhatsAppMessageMediaCommand.ts index 61dd7e2b9bdac..319115c40124a 100644 --- a/clients/client-socialmessaging/src/commands/GetWhatsAppMessageMediaCommand.ts +++ b/clients/client-socialmessaging/src/commands/GetWhatsAppMessageMediaCommand.ts @@ -101,6 +101,7 @@ export interface GetWhatsAppMessageMediaCommandOutput extends GetWhatsAppMessage * @throws {@link SocialMessagingServiceException} *

Base exception class for all service exceptions from SocialMessaging service.

* + * * @public */ export class GetWhatsAppMessageMediaCommand extends $Command diff --git a/clients/client-socialmessaging/src/commands/ListLinkedWhatsAppBusinessAccountsCommand.ts b/clients/client-socialmessaging/src/commands/ListLinkedWhatsAppBusinessAccountsCommand.ts index 73cf61377f648..b7835fe50e702 100644 --- a/clients/client-socialmessaging/src/commands/ListLinkedWhatsAppBusinessAccountsCommand.ts +++ b/clients/client-socialmessaging/src/commands/ListLinkedWhatsAppBusinessAccountsCommand.ts @@ -96,6 +96,7 @@ export interface ListLinkedWhatsAppBusinessAccountsCommandOutput * @throws {@link SocialMessagingServiceException} *

Base exception class for all service exceptions from SocialMessaging service.

* + * * @public */ export class ListLinkedWhatsAppBusinessAccountsCommand extends $Command diff --git a/clients/client-socialmessaging/src/commands/ListTagsForResourceCommand.ts b/clients/client-socialmessaging/src/commands/ListTagsForResourceCommand.ts index cc5b76cdbf0d0..4b916c6f6694d 100644 --- a/clients/client-socialmessaging/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-socialmessaging/src/commands/ListTagsForResourceCommand.ts @@ -77,6 +77,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link SocialMessagingServiceException} *

Base exception class for all service exceptions from SocialMessaging service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-socialmessaging/src/commands/PostWhatsAppMessageMediaCommand.ts b/clients/client-socialmessaging/src/commands/PostWhatsAppMessageMediaCommand.ts index d377b9c0c7467..240f1ae51a811 100644 --- a/clients/client-socialmessaging/src/commands/PostWhatsAppMessageMediaCommand.ts +++ b/clients/client-socialmessaging/src/commands/PostWhatsAppMessageMediaCommand.ts @@ -98,6 +98,7 @@ export interface PostWhatsAppMessageMediaCommandOutput extends PostWhatsAppMessa * @throws {@link SocialMessagingServiceException} *

Base exception class for all service exceptions from SocialMessaging service.

* + * * @public */ export class PostWhatsAppMessageMediaCommand extends $Command diff --git a/clients/client-socialmessaging/src/commands/PutWhatsAppBusinessAccountEventDestinationsCommand.ts b/clients/client-socialmessaging/src/commands/PutWhatsAppBusinessAccountEventDestinationsCommand.ts index f56812f329c15..940e8033c67a5 100644 --- a/clients/client-socialmessaging/src/commands/PutWhatsAppBusinessAccountEventDestinationsCommand.ts +++ b/clients/client-socialmessaging/src/commands/PutWhatsAppBusinessAccountEventDestinationsCommand.ts @@ -84,6 +84,7 @@ export interface PutWhatsAppBusinessAccountEventDestinationsCommandOutput * @throws {@link SocialMessagingServiceException} *

Base exception class for all service exceptions from SocialMessaging service.

* + * * @public */ export class PutWhatsAppBusinessAccountEventDestinationsCommand extends $Command diff --git a/clients/client-socialmessaging/src/commands/SendWhatsAppMessageCommand.ts b/clients/client-socialmessaging/src/commands/SendWhatsAppMessageCommand.ts index 8b816909f733f..67c4d333bf585 100644 --- a/clients/client-socialmessaging/src/commands/SendWhatsAppMessageCommand.ts +++ b/clients/client-socialmessaging/src/commands/SendWhatsAppMessageCommand.ts @@ -87,6 +87,7 @@ export interface SendWhatsAppMessageCommandOutput extends SendWhatsAppMessageOut * @throws {@link SocialMessagingServiceException} *

Base exception class for all service exceptions from SocialMessaging service.

* + * * @public */ export class SendWhatsAppMessageCommand extends $Command diff --git a/clients/client-socialmessaging/src/commands/TagResourceCommand.ts b/clients/client-socialmessaging/src/commands/TagResourceCommand.ts index 3f0f48c5e501c..3f3128b0a841b 100644 --- a/clients/client-socialmessaging/src/commands/TagResourceCommand.ts +++ b/clients/client-socialmessaging/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link SocialMessagingServiceException} *

Base exception class for all service exceptions from SocialMessaging service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-socialmessaging/src/commands/UntagResourceCommand.ts b/clients/client-socialmessaging/src/commands/UntagResourceCommand.ts index cdfc89ca08334..7db6293cadd9b 100644 --- a/clients/client-socialmessaging/src/commands/UntagResourceCommand.ts +++ b/clients/client-socialmessaging/src/commands/UntagResourceCommand.ts @@ -74,6 +74,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link SocialMessagingServiceException} *

Base exception class for all service exceptions from SocialMessaging service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-sqs/src/commands/AddPermissionCommand.ts b/clients/client-sqs/src/commands/AddPermissionCommand.ts index c9c59343a4cc1..5e5fd15098aaa 100644 --- a/clients/client-sqs/src/commands/AddPermissionCommand.ts +++ b/clients/client-sqs/src/commands/AddPermissionCommand.ts @@ -126,6 +126,7 @@ export interface AddPermissionCommandOutput extends __MetadataBearer {} * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class AddPermissionCommand extends $Command diff --git a/clients/client-sqs/src/commands/CancelMessageMoveTaskCommand.ts b/clients/client-sqs/src/commands/CancelMessageMoveTaskCommand.ts index 05a05d519b72a..e5eb8ed2a50cc 100644 --- a/clients/client-sqs/src/commands/CancelMessageMoveTaskCommand.ts +++ b/clients/client-sqs/src/commands/CancelMessageMoveTaskCommand.ts @@ -98,6 +98,7 @@ export interface CancelMessageMoveTaskCommandOutput extends CancelMessageMoveTas * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class CancelMessageMoveTaskCommand extends $Command diff --git a/clients/client-sqs/src/commands/ChangeMessageVisibilityBatchCommand.ts b/clients/client-sqs/src/commands/ChangeMessageVisibilityBatchCommand.ts index 43b17459ded23..17b34adecc13e 100644 --- a/clients/client-sqs/src/commands/ChangeMessageVisibilityBatchCommand.ts +++ b/clients/client-sqs/src/commands/ChangeMessageVisibilityBatchCommand.ts @@ -130,6 +130,7 @@ export interface ChangeMessageVisibilityBatchCommandOutput * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class ChangeMessageVisibilityBatchCommand extends $Command diff --git a/clients/client-sqs/src/commands/ChangeMessageVisibilityCommand.ts b/clients/client-sqs/src/commands/ChangeMessageVisibilityCommand.ts index bb37318c68e23..a6cb9a5ff8191 100644 --- a/clients/client-sqs/src/commands/ChangeMessageVisibilityCommand.ts +++ b/clients/client-sqs/src/commands/ChangeMessageVisibilityCommand.ts @@ -129,6 +129,7 @@ export interface ChangeMessageVisibilityCommandOutput extends __MetadataBearer { * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class ChangeMessageVisibilityCommand extends $Command diff --git a/clients/client-sqs/src/commands/CreateQueueCommand.ts b/clients/client-sqs/src/commands/CreateQueueCommand.ts index a1e7353b6d822..270a9ea4c4b98 100644 --- a/clients/client-sqs/src/commands/CreateQueueCommand.ts +++ b/clients/client-sqs/src/commands/CreateQueueCommand.ts @@ -152,6 +152,7 @@ export interface CreateQueueCommandOutput extends CreateQueueResult, __MetadataB * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class CreateQueueCommand extends $Command diff --git a/clients/client-sqs/src/commands/DeleteMessageBatchCommand.ts b/clients/client-sqs/src/commands/DeleteMessageBatchCommand.ts index 9e09b3769fc15..35bec7f711be7 100644 --- a/clients/client-sqs/src/commands/DeleteMessageBatchCommand.ts +++ b/clients/client-sqs/src/commands/DeleteMessageBatchCommand.ts @@ -120,6 +120,7 @@ export interface DeleteMessageBatchCommandOutput extends DeleteMessageBatchResul * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class DeleteMessageBatchCommand extends $Command diff --git a/clients/client-sqs/src/commands/DeleteMessageCommand.ts b/clients/client-sqs/src/commands/DeleteMessageCommand.ts index 40b4322860460..18ccd9f9e4b25 100644 --- a/clients/client-sqs/src/commands/DeleteMessageCommand.ts +++ b/clients/client-sqs/src/commands/DeleteMessageCommand.ts @@ -107,6 +107,7 @@ export interface DeleteMessageCommandOutput extends __MetadataBearer {} * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class DeleteMessageCommand extends $Command diff --git a/clients/client-sqs/src/commands/DeleteQueueCommand.ts b/clients/client-sqs/src/commands/DeleteQueueCommand.ts index ff6eabcc75cb3..4691aa3ce37e3 100644 --- a/clients/client-sqs/src/commands/DeleteQueueCommand.ts +++ b/clients/client-sqs/src/commands/DeleteQueueCommand.ts @@ -99,6 +99,7 @@ export interface DeleteQueueCommandOutput extends __MetadataBearer {} * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class DeleteQueueCommand extends $Command diff --git a/clients/client-sqs/src/commands/GetQueueAttributesCommand.ts b/clients/client-sqs/src/commands/GetQueueAttributesCommand.ts index 9cf27604e23fa..c1ce1aedde8b4 100644 --- a/clients/client-sqs/src/commands/GetQueueAttributesCommand.ts +++ b/clients/client-sqs/src/commands/GetQueueAttributesCommand.ts @@ -93,6 +93,7 @@ export interface GetQueueAttributesCommandOutput extends GetQueueAttributesResul * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class GetQueueAttributesCommand extends $Command diff --git a/clients/client-sqs/src/commands/GetQueueUrlCommand.ts b/clients/client-sqs/src/commands/GetQueueUrlCommand.ts index 402095fe2ff9c..3f0859c6591ae 100644 --- a/clients/client-sqs/src/commands/GetQueueUrlCommand.ts +++ b/clients/client-sqs/src/commands/GetQueueUrlCommand.ts @@ -93,6 +93,7 @@ export interface GetQueueUrlCommandOutput extends GetQueueUrlResult, __MetadataB * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class GetQueueUrlCommand extends $Command diff --git a/clients/client-sqs/src/commands/ListDeadLetterSourceQueuesCommand.ts b/clients/client-sqs/src/commands/ListDeadLetterSourceQueuesCommand.ts index 7723a90188979..082e42fae7c26 100644 --- a/clients/client-sqs/src/commands/ListDeadLetterSourceQueuesCommand.ts +++ b/clients/client-sqs/src/commands/ListDeadLetterSourceQueuesCommand.ts @@ -97,6 +97,7 @@ export interface ListDeadLetterSourceQueuesCommandOutput extends ListDeadLetterS * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class ListDeadLetterSourceQueuesCommand extends $Command diff --git a/clients/client-sqs/src/commands/ListMessageMoveTasksCommand.ts b/clients/client-sqs/src/commands/ListMessageMoveTasksCommand.ts index fb0c2a35d41e9..13b48d5eedf54 100644 --- a/clients/client-sqs/src/commands/ListMessageMoveTasksCommand.ts +++ b/clients/client-sqs/src/commands/ListMessageMoveTasksCommand.ts @@ -109,6 +109,7 @@ export interface ListMessageMoveTasksCommandOutput extends ListMessageMoveTasksR * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class ListMessageMoveTasksCommand extends $Command diff --git a/clients/client-sqs/src/commands/ListQueueTagsCommand.ts b/clients/client-sqs/src/commands/ListQueueTagsCommand.ts index b2b189f10c969..172332d4f821c 100644 --- a/clients/client-sqs/src/commands/ListQueueTagsCommand.ts +++ b/clients/client-sqs/src/commands/ListQueueTagsCommand.ts @@ -91,6 +91,7 @@ export interface ListQueueTagsCommandOutput extends ListQueueTagsResult, __Metad * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class ListQueueTagsCommand extends $Command diff --git a/clients/client-sqs/src/commands/ListQueuesCommand.ts b/clients/client-sqs/src/commands/ListQueuesCommand.ts index 3ef2b7c82de31..362eb19ee6539 100644 --- a/clients/client-sqs/src/commands/ListQueuesCommand.ts +++ b/clients/client-sqs/src/commands/ListQueuesCommand.ts @@ -98,6 +98,7 @@ export interface ListQueuesCommandOutput extends ListQueuesResult, __MetadataBea * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class ListQueuesCommand extends $Command diff --git a/clients/client-sqs/src/commands/PurgeQueueCommand.ts b/clients/client-sqs/src/commands/PurgeQueueCommand.ts index 2c6e59ce7b44c..6cfe8fc06d551 100644 --- a/clients/client-sqs/src/commands/PurgeQueueCommand.ts +++ b/clients/client-sqs/src/commands/PurgeQueueCommand.ts @@ -97,6 +97,7 @@ export interface PurgeQueueCommandOutput extends __MetadataBearer {} * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class PurgeQueueCommand extends $Command diff --git a/clients/client-sqs/src/commands/ReceiveMessageCommand.ts b/clients/client-sqs/src/commands/ReceiveMessageCommand.ts index c74a83ec4502b..5875f43665e04 100644 --- a/clients/client-sqs/src/commands/ReceiveMessageCommand.ts +++ b/clients/client-sqs/src/commands/ReceiveMessageCommand.ts @@ -202,6 +202,7 @@ export interface ReceiveMessageCommandOutput extends ReceiveMessageResult, __Met * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class ReceiveMessageCommand extends $Command diff --git a/clients/client-sqs/src/commands/RemovePermissionCommand.ts b/clients/client-sqs/src/commands/RemovePermissionCommand.ts index 29b722d124476..5c6e29c13b5bf 100644 --- a/clients/client-sqs/src/commands/RemovePermissionCommand.ts +++ b/clients/client-sqs/src/commands/RemovePermissionCommand.ts @@ -97,6 +97,7 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {} * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class RemovePermissionCommand extends $Command diff --git a/clients/client-sqs/src/commands/SendMessageBatchCommand.ts b/clients/client-sqs/src/commands/SendMessageBatchCommand.ts index 30160f788bcda..2791458ffddee 100644 --- a/clients/client-sqs/src/commands/SendMessageBatchCommand.ts +++ b/clients/client-sqs/src/commands/SendMessageBatchCommand.ts @@ -204,6 +204,7 @@ export interface SendMessageBatchCommandOutput extends SendMessageBatchResult, _ * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class SendMessageBatchCommand extends $Command diff --git a/clients/client-sqs/src/commands/SendMessageCommand.ts b/clients/client-sqs/src/commands/SendMessageCommand.ts index 17a33f6a7029d..b97ab2cf30ba2 100644 --- a/clients/client-sqs/src/commands/SendMessageCommand.ts +++ b/clients/client-sqs/src/commands/SendMessageCommand.ts @@ -161,6 +161,7 @@ export interface SendMessageCommandOutput extends SendMessageResult, __MetadataB * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class SendMessageCommand extends $Command diff --git a/clients/client-sqs/src/commands/SetQueueAttributesCommand.ts b/clients/client-sqs/src/commands/SetQueueAttributesCommand.ts index 7c20eea33ad2f..0403ef3ead42d 100644 --- a/clients/client-sqs/src/commands/SetQueueAttributesCommand.ts +++ b/clients/client-sqs/src/commands/SetQueueAttributesCommand.ts @@ -116,6 +116,7 @@ export interface SetQueueAttributesCommandOutput extends __MetadataBearer {} * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class SetQueueAttributesCommand extends $Command diff --git a/clients/client-sqs/src/commands/StartMessageMoveTaskCommand.ts b/clients/client-sqs/src/commands/StartMessageMoveTaskCommand.ts index 6125377b1a07f..c71ba85af87f3 100644 --- a/clients/client-sqs/src/commands/StartMessageMoveTaskCommand.ts +++ b/clients/client-sqs/src/commands/StartMessageMoveTaskCommand.ts @@ -104,6 +104,7 @@ export interface StartMessageMoveTaskCommandOutput extends StartMessageMoveTaskR * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class StartMessageMoveTaskCommand extends $Command diff --git a/clients/client-sqs/src/commands/TagQueueCommand.ts b/clients/client-sqs/src/commands/TagQueueCommand.ts index 9cbc18964f74b..99a0870901f9e 100644 --- a/clients/client-sqs/src/commands/TagQueueCommand.ts +++ b/clients/client-sqs/src/commands/TagQueueCommand.ts @@ -107,6 +107,7 @@ export interface TagQueueCommandOutput extends __MetadataBearer {} * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class TagQueueCommand extends $Command diff --git a/clients/client-sqs/src/commands/UntagQueueCommand.ts b/clients/client-sqs/src/commands/UntagQueueCommand.ts index c87ca70700c42..ba5bec27daa21 100644 --- a/clients/client-sqs/src/commands/UntagQueueCommand.ts +++ b/clients/client-sqs/src/commands/UntagQueueCommand.ts @@ -89,6 +89,7 @@ export interface UntagQueueCommandOutput extends __MetadataBearer {} * @throws {@link SQSServiceException} *

Base exception class for all service exceptions from SQS service.

* + * * @public */ export class UntagQueueCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/AcceptPageCommand.ts b/clients/client-ssm-contacts/src/commands/AcceptPageCommand.ts index b5e92e7465392..96851e918d191 100644 --- a/clients/client-ssm-contacts/src/commands/AcceptPageCommand.ts +++ b/clients/client-ssm-contacts/src/commands/AcceptPageCommand.ts @@ -74,6 +74,7 @@ export interface AcceptPageCommandOutput extends AcceptPageResult, __MetadataBea * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class AcceptPageCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/ActivateContactChannelCommand.ts b/clients/client-ssm-contacts/src/commands/ActivateContactChannelCommand.ts index f8ee873cc1706..788448cf67b59 100644 --- a/clients/client-ssm-contacts/src/commands/ActivateContactChannelCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ActivateContactChannelCommand.ts @@ -71,6 +71,7 @@ export interface ActivateContactChannelCommandOutput extends ActivateContactChan * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class ActivateContactChannelCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/CreateContactChannelCommand.ts b/clients/client-ssm-contacts/src/commands/CreateContactChannelCommand.ts index 9427512029731..599f947c7a10a 100644 --- a/clients/client-ssm-contacts/src/commands/CreateContactChannelCommand.ts +++ b/clients/client-ssm-contacts/src/commands/CreateContactChannelCommand.ts @@ -81,6 +81,7 @@ export interface CreateContactChannelCommandOutput extends CreateContactChannelR * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class CreateContactChannelCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/CreateContactCommand.ts b/clients/client-ssm-contacts/src/commands/CreateContactCommand.ts index 6437758e9cedb..11f38774effaa 100644 --- a/clients/client-ssm-contacts/src/commands/CreateContactCommand.ts +++ b/clients/client-ssm-contacts/src/commands/CreateContactCommand.ts @@ -110,6 +110,7 @@ export interface CreateContactCommandOutput extends CreateContactResult, __Metad * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class CreateContactCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/CreateRotationCommand.ts b/clients/client-ssm-contacts/src/commands/CreateRotationCommand.ts index 76ef830ca6ee5..baadd31ca5929 100644 --- a/clients/client-ssm-contacts/src/commands/CreateRotationCommand.ts +++ b/clients/client-ssm-contacts/src/commands/CreateRotationCommand.ts @@ -122,6 +122,7 @@ export interface CreateRotationCommandOutput extends CreateRotationResult, __Met * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class CreateRotationCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/CreateRotationOverrideCommand.ts b/clients/client-ssm-contacts/src/commands/CreateRotationOverrideCommand.ts index ff53e73827fcb..295c0771240d3 100644 --- a/clients/client-ssm-contacts/src/commands/CreateRotationOverrideCommand.ts +++ b/clients/client-ssm-contacts/src/commands/CreateRotationOverrideCommand.ts @@ -80,6 +80,7 @@ export interface CreateRotationOverrideCommandOutput extends CreateRotationOverr * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class CreateRotationOverrideCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/DeactivateContactChannelCommand.ts b/clients/client-ssm-contacts/src/commands/DeactivateContactChannelCommand.ts index c5fee4c592bb7..dd65b02fe425b 100644 --- a/clients/client-ssm-contacts/src/commands/DeactivateContactChannelCommand.ts +++ b/clients/client-ssm-contacts/src/commands/DeactivateContactChannelCommand.ts @@ -70,6 +70,7 @@ export interface DeactivateContactChannelCommandOutput extends DeactivateContact * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class DeactivateContactChannelCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/DeleteContactChannelCommand.ts b/clients/client-ssm-contacts/src/commands/DeleteContactChannelCommand.ts index 5f23cd19b22d9..cf8b41cd0eaa3 100644 --- a/clients/client-ssm-contacts/src/commands/DeleteContactChannelCommand.ts +++ b/clients/client-ssm-contacts/src/commands/DeleteContactChannelCommand.ts @@ -72,6 +72,7 @@ export interface DeleteContactChannelCommandOutput extends DeleteContactChannelR * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class DeleteContactChannelCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/DeleteContactCommand.ts b/clients/client-ssm-contacts/src/commands/DeleteContactCommand.ts index c052c7d714647..8822ef80c34f4 100644 --- a/clients/client-ssm-contacts/src/commands/DeleteContactCommand.ts +++ b/clients/client-ssm-contacts/src/commands/DeleteContactCommand.ts @@ -75,6 +75,7 @@ export interface DeleteContactCommandOutput extends DeleteContactResult, __Metad * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class DeleteContactCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/DeleteRotationCommand.ts b/clients/client-ssm-contacts/src/commands/DeleteRotationCommand.ts index 102f1c2fb3d17..fc50422152294 100644 --- a/clients/client-ssm-contacts/src/commands/DeleteRotationCommand.ts +++ b/clients/client-ssm-contacts/src/commands/DeleteRotationCommand.ts @@ -73,6 +73,7 @@ export interface DeleteRotationCommandOutput extends DeleteRotationResult, __Met * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class DeleteRotationCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/DeleteRotationOverrideCommand.ts b/clients/client-ssm-contacts/src/commands/DeleteRotationOverrideCommand.ts index dfd35738eebae..951085721198c 100644 --- a/clients/client-ssm-contacts/src/commands/DeleteRotationOverrideCommand.ts +++ b/clients/client-ssm-contacts/src/commands/DeleteRotationOverrideCommand.ts @@ -70,6 +70,7 @@ export interface DeleteRotationOverrideCommandOutput extends DeleteRotationOverr * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class DeleteRotationOverrideCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/DescribeEngagementCommand.ts b/clients/client-ssm-contacts/src/commands/DescribeEngagementCommand.ts index 2c2d485e6190e..f5c64756e019b 100644 --- a/clients/client-ssm-contacts/src/commands/DescribeEngagementCommand.ts +++ b/clients/client-ssm-contacts/src/commands/DescribeEngagementCommand.ts @@ -84,6 +84,7 @@ export interface DescribeEngagementCommandOutput extends DescribeEngagementResul * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class DescribeEngagementCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/DescribePageCommand.ts b/clients/client-ssm-contacts/src/commands/DescribePageCommand.ts index ed6dac802421a..6d635b1d922c3 100644 --- a/clients/client-ssm-contacts/src/commands/DescribePageCommand.ts +++ b/clients/client-ssm-contacts/src/commands/DescribePageCommand.ts @@ -85,6 +85,7 @@ export interface DescribePageCommandOutput extends DescribePageResult, __Metadat * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class DescribePageCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/GetContactChannelCommand.ts b/clients/client-ssm-contacts/src/commands/GetContactChannelCommand.ts index 289109af7cad3..ec256720ff8b0 100644 --- a/clients/client-ssm-contacts/src/commands/GetContactChannelCommand.ts +++ b/clients/client-ssm-contacts/src/commands/GetContactChannelCommand.ts @@ -81,6 +81,7 @@ export interface GetContactChannelCommandOutput extends GetContactChannelResult, * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class GetContactChannelCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/GetContactCommand.ts b/clients/client-ssm-contacts/src/commands/GetContactCommand.ts index 74f569f7efe28..8001c2374a383 100644 --- a/clients/client-ssm-contacts/src/commands/GetContactCommand.ts +++ b/clients/client-ssm-contacts/src/commands/GetContactCommand.ts @@ -99,6 +99,7 @@ export interface GetContactCommandOutput extends GetContactResult, __MetadataBea * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class GetContactCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/GetContactPolicyCommand.ts b/clients/client-ssm-contacts/src/commands/GetContactPolicyCommand.ts index bf3d9c78b2a15..b9c3a0b8786a2 100644 --- a/clients/client-ssm-contacts/src/commands/GetContactPolicyCommand.ts +++ b/clients/client-ssm-contacts/src/commands/GetContactPolicyCommand.ts @@ -73,6 +73,7 @@ export interface GetContactPolicyCommandOutput extends GetContactPolicyResult, _ * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class GetContactPolicyCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/GetRotationCommand.ts b/clients/client-ssm-contacts/src/commands/GetRotationCommand.ts index 79f4068c9a60f..f45bbdbe97ed1 100644 --- a/clients/client-ssm-contacts/src/commands/GetRotationCommand.ts +++ b/clients/client-ssm-contacts/src/commands/GetRotationCommand.ts @@ -113,6 +113,7 @@ export interface GetRotationCommandOutput extends GetRotationResult, __MetadataB * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class GetRotationCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/GetRotationOverrideCommand.ts b/clients/client-ssm-contacts/src/commands/GetRotationOverrideCommand.ts index 8619879f09a37..0774144dfe267 100644 --- a/clients/client-ssm-contacts/src/commands/GetRotationOverrideCommand.ts +++ b/clients/client-ssm-contacts/src/commands/GetRotationOverrideCommand.ts @@ -79,6 +79,7 @@ export interface GetRotationOverrideCommandOutput extends GetRotationOverrideRes * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class GetRotationOverrideCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/ListContactChannelsCommand.ts b/clients/client-ssm-contacts/src/commands/ListContactChannelsCommand.ts index 004a43c3ca3aa..789cb542d3f1b 100644 --- a/clients/client-ssm-contacts/src/commands/ListContactChannelsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListContactChannelsCommand.ts @@ -88,6 +88,7 @@ export interface ListContactChannelsCommandOutput extends ListContactChannelsRes * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class ListContactChannelsCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/ListContactsCommand.ts b/clients/client-ssm-contacts/src/commands/ListContactsCommand.ts index 3995ef18ff24e..7b7f932a0dae5 100644 --- a/clients/client-ssm-contacts/src/commands/ListContactsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListContactsCommand.ts @@ -79,6 +79,7 @@ export interface ListContactsCommandOutput extends ListContactsResult, __Metadat * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class ListContactsCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/ListEngagementsCommand.ts b/clients/client-ssm-contacts/src/commands/ListEngagementsCommand.ts index 23ccb7281e61f..cddfd4f0ea18a 100644 --- a/clients/client-ssm-contacts/src/commands/ListEngagementsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListEngagementsCommand.ts @@ -84,6 +84,7 @@ export interface ListEngagementsCommandOutput extends ListEngagementsResult, __M * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class ListEngagementsCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/ListPageReceiptsCommand.ts b/clients/client-ssm-contacts/src/commands/ListPageReceiptsCommand.ts index 42d5e73b7e673..88adb3d9efb3c 100644 --- a/clients/client-ssm-contacts/src/commands/ListPageReceiptsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListPageReceiptsCommand.ts @@ -81,6 +81,7 @@ export interface ListPageReceiptsCommandOutput extends ListPageReceiptsResult, _ * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class ListPageReceiptsCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/ListPageResolutionsCommand.ts b/clients/client-ssm-contacts/src/commands/ListPageResolutionsCommand.ts index 0119e0490c3b0..6f830aacd1c99 100644 --- a/clients/client-ssm-contacts/src/commands/ListPageResolutionsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListPageResolutionsCommand.ts @@ -83,6 +83,7 @@ export interface ListPageResolutionsCommandOutput extends ListPageResolutionsRes * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class ListPageResolutionsCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/ListPagesByContactCommand.ts b/clients/client-ssm-contacts/src/commands/ListPagesByContactCommand.ts index 4cc1f70f9dcd2..e352a987327e3 100644 --- a/clients/client-ssm-contacts/src/commands/ListPagesByContactCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListPagesByContactCommand.ts @@ -85,6 +85,7 @@ export interface ListPagesByContactCommandOutput extends ListPagesByContactResul * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class ListPagesByContactCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/ListPagesByEngagementCommand.ts b/clients/client-ssm-contacts/src/commands/ListPagesByEngagementCommand.ts index 079a28b611a52..313a6e08a97e5 100644 --- a/clients/client-ssm-contacts/src/commands/ListPagesByEngagementCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListPagesByEngagementCommand.ts @@ -85,6 +85,7 @@ export interface ListPagesByEngagementCommandOutput extends ListPagesByEngagemen * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class ListPagesByEngagementCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/ListPreviewRotationShiftsCommand.ts b/clients/client-ssm-contacts/src/commands/ListPreviewRotationShiftsCommand.ts index 9d8c3df92afb9..f55eda95cb89c 100644 --- a/clients/client-ssm-contacts/src/commands/ListPreviewRotationShiftsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListPreviewRotationShiftsCommand.ts @@ -139,6 +139,7 @@ export interface ListPreviewRotationShiftsCommandOutput extends ListPreviewRotat * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class ListPreviewRotationShiftsCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/ListRotationOverridesCommand.ts b/clients/client-ssm-contacts/src/commands/ListRotationOverridesCommand.ts index acf5c49a33531..0f61aef7b97e2 100644 --- a/clients/client-ssm-contacts/src/commands/ListRotationOverridesCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListRotationOverridesCommand.ts @@ -86,6 +86,7 @@ export interface ListRotationOverridesCommandOutput extends ListRotationOverride * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class ListRotationOverridesCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/ListRotationShiftsCommand.ts b/clients/client-ssm-contacts/src/commands/ListRotationShiftsCommand.ts index da7cfd59b2173..fa089d630e420 100644 --- a/clients/client-ssm-contacts/src/commands/ListRotationShiftsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListRotationShiftsCommand.ts @@ -93,6 +93,7 @@ export interface ListRotationShiftsCommandOutput extends ListRotationShiftsResul * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class ListRotationShiftsCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/ListRotationsCommand.ts b/clients/client-ssm-contacts/src/commands/ListRotationsCommand.ts index 5af26316297c6..ebeb9609834d8 100644 --- a/clients/client-ssm-contacts/src/commands/ListRotationsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListRotationsCommand.ts @@ -120,6 +120,7 @@ export interface ListRotationsCommandOutput extends ListRotationsResult, __Metad * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class ListRotationsCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/ListTagsForResourceCommand.ts b/clients/client-ssm-contacts/src/commands/ListTagsForResourceCommand.ts index 91a10bf061c9f..2aaa7a0cbadc5 100644 --- a/clients/client-ssm-contacts/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/PutContactPolicyCommand.ts b/clients/client-ssm-contacts/src/commands/PutContactPolicyCommand.ts index b6a175e11bf7c..ddd234f39cd24 100644 --- a/clients/client-ssm-contacts/src/commands/PutContactPolicyCommand.ts +++ b/clients/client-ssm-contacts/src/commands/PutContactPolicyCommand.ts @@ -75,6 +75,7 @@ export interface PutContactPolicyCommandOutput extends PutContactPolicyResult, _ * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class PutContactPolicyCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/SendActivationCodeCommand.ts b/clients/client-ssm-contacts/src/commands/SendActivationCodeCommand.ts index a7811ce4c54db..3a00a95d51de2 100644 --- a/clients/client-ssm-contacts/src/commands/SendActivationCodeCommand.ts +++ b/clients/client-ssm-contacts/src/commands/SendActivationCodeCommand.ts @@ -77,6 +77,7 @@ export interface SendActivationCodeCommandOutput extends SendActivationCodeResul * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class SendActivationCodeCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/StartEngagementCommand.ts b/clients/client-ssm-contacts/src/commands/StartEngagementCommand.ts index 326242bdcfed0..57419c627a4ea 100644 --- a/clients/client-ssm-contacts/src/commands/StartEngagementCommand.ts +++ b/clients/client-ssm-contacts/src/commands/StartEngagementCommand.ts @@ -82,6 +82,7 @@ export interface StartEngagementCommandOutput extends StartEngagementResult, __M * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class StartEngagementCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/StopEngagementCommand.ts b/clients/client-ssm-contacts/src/commands/StopEngagementCommand.ts index a61b0a6b7254b..af6f8d72d588f 100644 --- a/clients/client-ssm-contacts/src/commands/StopEngagementCommand.ts +++ b/clients/client-ssm-contacts/src/commands/StopEngagementCommand.ts @@ -71,6 +71,7 @@ export interface StopEngagementCommandOutput extends StopEngagementResult, __Met * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class StopEngagementCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/TagResourceCommand.ts b/clients/client-ssm-contacts/src/commands/TagResourceCommand.ts index 471a138cd6a97..b1e8090653c24 100644 --- a/clients/client-ssm-contacts/src/commands/TagResourceCommand.ts +++ b/clients/client-ssm-contacts/src/commands/TagResourceCommand.ts @@ -79,6 +79,7 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/UntagResourceCommand.ts b/clients/client-ssm-contacts/src/commands/UntagResourceCommand.ts index d43da9ca48f48..011b61c2e627b 100644 --- a/clients/client-ssm-contacts/src/commands/UntagResourceCommand.ts +++ b/clients/client-ssm-contacts/src/commands/UntagResourceCommand.ts @@ -72,6 +72,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResult, __Metad * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/UpdateContactChannelCommand.ts b/clients/client-ssm-contacts/src/commands/UpdateContactChannelCommand.ts index 481f6141493f1..6eaa9fbd3855d 100644 --- a/clients/client-ssm-contacts/src/commands/UpdateContactChannelCommand.ts +++ b/clients/client-ssm-contacts/src/commands/UpdateContactChannelCommand.ts @@ -79,6 +79,7 @@ export interface UpdateContactChannelCommandOutput extends UpdateContactChannelR * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class UpdateContactChannelCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/UpdateContactCommand.ts b/clients/client-ssm-contacts/src/commands/UpdateContactCommand.ts index ab4f817bb2d53..4249087527815 100644 --- a/clients/client-ssm-contacts/src/commands/UpdateContactCommand.ts +++ b/clients/client-ssm-contacts/src/commands/UpdateContactCommand.ts @@ -98,6 +98,7 @@ export interface UpdateContactCommandOutput extends UpdateContactResult, __Metad * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class UpdateContactCommand extends $Command diff --git a/clients/client-ssm-contacts/src/commands/UpdateRotationCommand.ts b/clients/client-ssm-contacts/src/commands/UpdateRotationCommand.ts index 02646ad326794..f7ca302926891 100644 --- a/clients/client-ssm-contacts/src/commands/UpdateRotationCommand.ts +++ b/clients/client-ssm-contacts/src/commands/UpdateRotationCommand.ts @@ -113,6 +113,7 @@ export interface UpdateRotationCommandOutput extends UpdateRotationResult, __Met * @throws {@link SSMContactsServiceException} *

Base exception class for all service exceptions from SSMContacts service.

* + * * @public */ export class UpdateRotationCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/BatchGetIncidentFindingsCommand.ts b/clients/client-ssm-incidents/src/commands/BatchGetIncidentFindingsCommand.ts index cbb5c60ccbd3c..72eaad34d9f6c 100644 --- a/clients/client-ssm-incidents/src/commands/BatchGetIncidentFindingsCommand.ts +++ b/clients/client-ssm-incidents/src/commands/BatchGetIncidentFindingsCommand.ts @@ -104,6 +104,7 @@ export interface BatchGetIncidentFindingsCommandOutput extends BatchGetIncidentF * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class BatchGetIncidentFindingsCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/CreateReplicationSetCommand.ts b/clients/client-ssm-incidents/src/commands/CreateReplicationSetCommand.ts index b8817af2d95f5..370fb9ae68a80 100644 --- a/clients/client-ssm-incidents/src/commands/CreateReplicationSetCommand.ts +++ b/clients/client-ssm-incidents/src/commands/CreateReplicationSetCommand.ts @@ -84,6 +84,7 @@ export interface CreateReplicationSetCommandOutput extends CreateReplicationSetO * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class CreateReplicationSetCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/CreateResponsePlanCommand.ts b/clients/client-ssm-incidents/src/commands/CreateResponsePlanCommand.ts index e84be5761ec93..21deb4de59d3a 100644 --- a/clients/client-ssm-incidents/src/commands/CreateResponsePlanCommand.ts +++ b/clients/client-ssm-incidents/src/commands/CreateResponsePlanCommand.ts @@ -136,6 +136,7 @@ export interface CreateResponsePlanCommandOutput extends CreateResponsePlanOutpu * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class CreateResponsePlanCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/CreateTimelineEventCommand.ts b/clients/client-ssm-incidents/src/commands/CreateTimelineEventCommand.ts index aaa0f09c4f7fa..186eed6ee3a3b 100644 --- a/clients/client-ssm-incidents/src/commands/CreateTimelineEventCommand.ts +++ b/clients/client-ssm-incidents/src/commands/CreateTimelineEventCommand.ts @@ -89,6 +89,7 @@ export interface CreateTimelineEventCommandOutput extends CreateTimelineEventOut * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class CreateTimelineEventCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/DeleteIncidentRecordCommand.ts b/clients/client-ssm-incidents/src/commands/DeleteIncidentRecordCommand.ts index 4fb5a69346a42..b653ffab73d40 100644 --- a/clients/client-ssm-incidents/src/commands/DeleteIncidentRecordCommand.ts +++ b/clients/client-ssm-incidents/src/commands/DeleteIncidentRecordCommand.ts @@ -67,6 +67,7 @@ export interface DeleteIncidentRecordCommandOutput extends DeleteIncidentRecordO * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class DeleteIncidentRecordCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/DeleteReplicationSetCommand.ts b/clients/client-ssm-incidents/src/commands/DeleteReplicationSetCommand.ts index ee5a4aba94cc4..66608b5781a6e 100644 --- a/clients/client-ssm-incidents/src/commands/DeleteReplicationSetCommand.ts +++ b/clients/client-ssm-incidents/src/commands/DeleteReplicationSetCommand.ts @@ -71,6 +71,7 @@ export interface DeleteReplicationSetCommandOutput extends DeleteReplicationSetO * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class DeleteReplicationSetCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-ssm-incidents/src/commands/DeleteResourcePolicyCommand.ts index 5648ef5da2896..6d2a8d329bf5d 100644 --- a/clients/client-ssm-incidents/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-ssm-incidents/src/commands/DeleteResourcePolicyCommand.ts @@ -72,6 +72,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyO * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/DeleteResponsePlanCommand.ts b/clients/client-ssm-incidents/src/commands/DeleteResponsePlanCommand.ts index 571b6389dc69e..f04413f54d141 100644 --- a/clients/client-ssm-incidents/src/commands/DeleteResponsePlanCommand.ts +++ b/clients/client-ssm-incidents/src/commands/DeleteResponsePlanCommand.ts @@ -68,6 +68,7 @@ export interface DeleteResponsePlanCommandOutput extends DeleteResponsePlanOutpu * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class DeleteResponsePlanCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/DeleteTimelineEventCommand.ts b/clients/client-ssm-incidents/src/commands/DeleteTimelineEventCommand.ts index cb7f8c6905b45..409146101ee39 100644 --- a/clients/client-ssm-incidents/src/commands/DeleteTimelineEventCommand.ts +++ b/clients/client-ssm-incidents/src/commands/DeleteTimelineEventCommand.ts @@ -68,6 +68,7 @@ export interface DeleteTimelineEventCommandOutput extends DeleteTimelineEventOut * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class DeleteTimelineEventCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/GetIncidentRecordCommand.ts b/clients/client-ssm-incidents/src/commands/GetIncidentRecordCommand.ts index 6810893226e59..ea2e4a0ba4ea2 100644 --- a/clients/client-ssm-incidents/src/commands/GetIncidentRecordCommand.ts +++ b/clients/client-ssm-incidents/src/commands/GetIncidentRecordCommand.ts @@ -105,6 +105,7 @@ export interface GetIncidentRecordCommandOutput extends GetIncidentRecordOutput, * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class GetIncidentRecordCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/GetReplicationSetCommand.ts b/clients/client-ssm-incidents/src/commands/GetReplicationSetCommand.ts index 8ac3145ecdc1e..e5f8d3c195bd8 100644 --- a/clients/client-ssm-incidents/src/commands/GetReplicationSetCommand.ts +++ b/clients/client-ssm-incidents/src/commands/GetReplicationSetCommand.ts @@ -88,6 +88,7 @@ export interface GetReplicationSetCommandOutput extends GetReplicationSetOutput, * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class GetReplicationSetCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/GetResourcePoliciesCommand.ts b/clients/client-ssm-incidents/src/commands/GetResourcePoliciesCommand.ts index ba982ec85ad85..e11d1490fa824 100644 --- a/clients/client-ssm-incidents/src/commands/GetResourcePoliciesCommand.ts +++ b/clients/client-ssm-incidents/src/commands/GetResourcePoliciesCommand.ts @@ -81,6 +81,7 @@ export interface GetResourcePoliciesCommandOutput extends GetResourcePoliciesOut * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class GetResourcePoliciesCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/GetResponsePlanCommand.ts b/clients/client-ssm-incidents/src/commands/GetResponsePlanCommand.ts index 2823392ea6077..bffdd04fcf437 100644 --- a/clients/client-ssm-incidents/src/commands/GetResponsePlanCommand.ts +++ b/clients/client-ssm-incidents/src/commands/GetResponsePlanCommand.ts @@ -128,6 +128,7 @@ export interface GetResponsePlanCommandOutput extends GetResponsePlanOutput, __M * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class GetResponsePlanCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/GetTimelineEventCommand.ts b/clients/client-ssm-incidents/src/commands/GetTimelineEventCommand.ts index 8c5c57d1f04cd..1ecc87cc6fc5b 100644 --- a/clients/client-ssm-incidents/src/commands/GetTimelineEventCommand.ts +++ b/clients/client-ssm-incidents/src/commands/GetTimelineEventCommand.ts @@ -86,6 +86,7 @@ export interface GetTimelineEventCommandOutput extends GetTimelineEventOutput, _ * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class GetTimelineEventCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/ListIncidentFindingsCommand.ts b/clients/client-ssm-incidents/src/commands/ListIncidentFindingsCommand.ts index c62f3c3ff8222..439492ba98c80 100644 --- a/clients/client-ssm-incidents/src/commands/ListIncidentFindingsCommand.ts +++ b/clients/client-ssm-incidents/src/commands/ListIncidentFindingsCommand.ts @@ -83,6 +83,7 @@ export interface ListIncidentFindingsCommandOutput extends ListIncidentFindingsO * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class ListIncidentFindingsCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/ListIncidentRecordsCommand.ts b/clients/client-ssm-incidents/src/commands/ListIncidentRecordsCommand.ts index 83a256285b530..d40f9b37dec32 100644 --- a/clients/client-ssm-incidents/src/commands/ListIncidentRecordsCommand.ts +++ b/clients/client-ssm-incidents/src/commands/ListIncidentRecordsCommand.ts @@ -104,6 +104,7 @@ export interface ListIncidentRecordsCommandOutput extends ListIncidentRecordsOut * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class ListIncidentRecordsCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/ListRelatedItemsCommand.ts b/clients/client-ssm-incidents/src/commands/ListRelatedItemsCommand.ts index fb3672b7cd5bb..61228b33c9fd5 100644 --- a/clients/client-ssm-incidents/src/commands/ListRelatedItemsCommand.ts +++ b/clients/client-ssm-incidents/src/commands/ListRelatedItemsCommand.ts @@ -90,6 +90,7 @@ export interface ListRelatedItemsCommandOutput extends ListRelatedItemsOutput, _ * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class ListRelatedItemsCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/ListReplicationSetsCommand.ts b/clients/client-ssm-incidents/src/commands/ListReplicationSetsCommand.ts index e2a66db15a31e..6d953c76fd7c7 100644 --- a/clients/client-ssm-incidents/src/commands/ListReplicationSetsCommand.ts +++ b/clients/client-ssm-incidents/src/commands/ListReplicationSetsCommand.ts @@ -73,6 +73,7 @@ export interface ListReplicationSetsCommandOutput extends ListReplicationSetsOut * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class ListReplicationSetsCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/ListResponsePlansCommand.ts b/clients/client-ssm-incidents/src/commands/ListResponsePlansCommand.ts index f93f721cfd8e8..dad37ad139618 100644 --- a/clients/client-ssm-incidents/src/commands/ListResponsePlansCommand.ts +++ b/clients/client-ssm-incidents/src/commands/ListResponsePlansCommand.ts @@ -77,6 +77,7 @@ export interface ListResponsePlansCommandOutput extends ListResponsePlansOutput, * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class ListResponsePlansCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/ListTagsForResourceCommand.ts b/clients/client-ssm-incidents/src/commands/ListTagsForResourceCommand.ts index f1befa6b084ba..6d9cfd97a1505 100644 --- a/clients/client-ssm-incidents/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ssm-incidents/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/ListTimelineEventsCommand.ts b/clients/client-ssm-incidents/src/commands/ListTimelineEventsCommand.ts index e549c357e8519..b45b79ad283b6 100644 --- a/clients/client-ssm-incidents/src/commands/ListTimelineEventsCommand.ts +++ b/clients/client-ssm-incidents/src/commands/ListTimelineEventsCommand.ts @@ -105,6 +105,7 @@ export interface ListTimelineEventsCommandOutput extends ListTimelineEventsOutpu * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class ListTimelineEventsCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/PutResourcePolicyCommand.ts b/clients/client-ssm-incidents/src/commands/PutResourcePolicyCommand.ts index 967f9aa87ea65..c1a09a8a47a7b 100644 --- a/clients/client-ssm-incidents/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-ssm-incidents/src/commands/PutResourcePolicyCommand.ts @@ -75,6 +75,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput, * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/StartIncidentCommand.ts b/clients/client-ssm-incidents/src/commands/StartIncidentCommand.ts index 5807dd12c6c91..02b53f0d0a9da 100644 --- a/clients/client-ssm-incidents/src/commands/StartIncidentCommand.ts +++ b/clients/client-ssm-incidents/src/commands/StartIncidentCommand.ts @@ -104,6 +104,7 @@ export interface StartIncidentCommandOutput extends StartIncidentOutput, __Metad * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class StartIncidentCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/TagResourceCommand.ts b/clients/client-ssm-incidents/src/commands/TagResourceCommand.ts index 90498e2d9d526..5df00da37cb11 100644 --- a/clients/client-ssm-incidents/src/commands/TagResourceCommand.ts +++ b/clients/client-ssm-incidents/src/commands/TagResourceCommand.ts @@ -79,6 +79,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/UntagResourceCommand.ts b/clients/client-ssm-incidents/src/commands/UntagResourceCommand.ts index e9a2d8b540e33..8aa666725d73b 100644 --- a/clients/client-ssm-incidents/src/commands/UntagResourceCommand.ts +++ b/clients/client-ssm-incidents/src/commands/UntagResourceCommand.ts @@ -76,6 +76,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/UpdateDeletionProtectionCommand.ts b/clients/client-ssm-incidents/src/commands/UpdateDeletionProtectionCommand.ts index a0fc5189b6047..dde60dfa5948e 100644 --- a/clients/client-ssm-incidents/src/commands/UpdateDeletionProtectionCommand.ts +++ b/clients/client-ssm-incidents/src/commands/UpdateDeletionProtectionCommand.ts @@ -73,6 +73,7 @@ export interface UpdateDeletionProtectionCommandOutput extends UpdateDeletionPro * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class UpdateDeletionProtectionCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/UpdateIncidentRecordCommand.ts b/clients/client-ssm-incidents/src/commands/UpdateIncidentRecordCommand.ts index ee11fa8cc5d4a..e8e59ebc3ffab 100644 --- a/clients/client-ssm-incidents/src/commands/UpdateIncidentRecordCommand.ts +++ b/clients/client-ssm-incidents/src/commands/UpdateIncidentRecordCommand.ts @@ -91,6 +91,7 @@ export interface UpdateIncidentRecordCommandOutput extends UpdateIncidentRecordO * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class UpdateIncidentRecordCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/UpdateRelatedItemsCommand.ts b/clients/client-ssm-incidents/src/commands/UpdateRelatedItemsCommand.ts index 85d102b3d6c1a..377fccb49129c 100644 --- a/clients/client-ssm-incidents/src/commands/UpdateRelatedItemsCommand.ts +++ b/clients/client-ssm-incidents/src/commands/UpdateRelatedItemsCommand.ts @@ -106,6 +106,7 @@ export interface UpdateRelatedItemsCommandOutput extends UpdateRelatedItemsOutpu * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class UpdateRelatedItemsCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/UpdateReplicationSetCommand.ts b/clients/client-ssm-incidents/src/commands/UpdateReplicationSetCommand.ts index 5097ffa1e8855..00e8a6c8e9cd1 100644 --- a/clients/client-ssm-incidents/src/commands/UpdateReplicationSetCommand.ts +++ b/clients/client-ssm-incidents/src/commands/UpdateReplicationSetCommand.ts @@ -85,6 +85,7 @@ export interface UpdateReplicationSetCommandOutput extends UpdateReplicationSetO * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class UpdateReplicationSetCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/UpdateResponsePlanCommand.ts b/clients/client-ssm-incidents/src/commands/UpdateResponsePlanCommand.ts index ec27b1f9b4617..b5deb88611c92 100644 --- a/clients/client-ssm-incidents/src/commands/UpdateResponsePlanCommand.ts +++ b/clients/client-ssm-incidents/src/commands/UpdateResponsePlanCommand.ts @@ -127,6 +127,7 @@ export interface UpdateResponsePlanCommandOutput extends UpdateResponsePlanOutpu * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class UpdateResponsePlanCommand extends $Command diff --git a/clients/client-ssm-incidents/src/commands/UpdateTimelineEventCommand.ts b/clients/client-ssm-incidents/src/commands/UpdateTimelineEventCommand.ts index bad1539fd5cdf..aded0e39dd79f 100644 --- a/clients/client-ssm-incidents/src/commands/UpdateTimelineEventCommand.ts +++ b/clients/client-ssm-incidents/src/commands/UpdateTimelineEventCommand.ts @@ -84,6 +84,7 @@ export interface UpdateTimelineEventCommandOutput extends UpdateTimelineEventOut * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* + * * @public */ export class UpdateTimelineEventCommand extends $Command diff --git a/clients/client-ssm-quicksetup/src/commands/CreateConfigurationManagerCommand.ts b/clients/client-ssm-quicksetup/src/commands/CreateConfigurationManagerCommand.ts index cf47017797ccf..343c61097a12f 100644 --- a/clients/client-ssm-quicksetup/src/commands/CreateConfigurationManagerCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/CreateConfigurationManagerCommand.ts @@ -92,6 +92,7 @@ export interface CreateConfigurationManagerCommandOutput extends CreateConfigura * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* + * * @public */ export class CreateConfigurationManagerCommand extends $Command diff --git a/clients/client-ssm-quicksetup/src/commands/DeleteConfigurationManagerCommand.ts b/clients/client-ssm-quicksetup/src/commands/DeleteConfigurationManagerCommand.ts index 3bbdc87673393..f454535363fcd 100644 --- a/clients/client-ssm-quicksetup/src/commands/DeleteConfigurationManagerCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/DeleteConfigurationManagerCommand.ts @@ -72,6 +72,7 @@ export interface DeleteConfigurationManagerCommandOutput extends __MetadataBeare * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* + * * @public */ export class DeleteConfigurationManagerCommand extends $Command diff --git a/clients/client-ssm-quicksetup/src/commands/GetConfigurationCommand.ts b/clients/client-ssm-quicksetup/src/commands/GetConfigurationCommand.ts index 81ec2040d7e8c..c544b6c95c052 100644 --- a/clients/client-ssm-quicksetup/src/commands/GetConfigurationCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/GetConfigurationCommand.ts @@ -96,6 +96,7 @@ export interface GetConfigurationCommandOutput extends GetConfigurationOutput, _ * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* + * * @public */ export class GetConfigurationCommand extends $Command diff --git a/clients/client-ssm-quicksetup/src/commands/GetConfigurationManagerCommand.ts b/clients/client-ssm-quicksetup/src/commands/GetConfigurationManagerCommand.ts index 53ba10fd0e402..87bd016b34bb6 100644 --- a/clients/client-ssm-quicksetup/src/commands/GetConfigurationManagerCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/GetConfigurationManagerCommand.ts @@ -108,6 +108,7 @@ export interface GetConfigurationManagerCommandOutput extends GetConfigurationMa * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* + * * @public */ export class GetConfigurationManagerCommand extends $Command diff --git a/clients/client-ssm-quicksetup/src/commands/GetServiceSettingsCommand.ts b/clients/client-ssm-quicksetup/src/commands/GetServiceSettingsCommand.ts index 2640091cc27ee..951cd3f145fe9 100644 --- a/clients/client-ssm-quicksetup/src/commands/GetServiceSettingsCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/GetServiceSettingsCommand.ts @@ -67,6 +67,7 @@ export interface GetServiceSettingsCommandOutput extends GetServiceSettingsOutpu * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* + * * @public */ export class GetServiceSettingsCommand extends $Command diff --git a/clients/client-ssm-quicksetup/src/commands/ListConfigurationManagersCommand.ts b/clients/client-ssm-quicksetup/src/commands/ListConfigurationManagersCommand.ts index 2e37498dbd2f7..01240c590fdf1 100644 --- a/clients/client-ssm-quicksetup/src/commands/ListConfigurationManagersCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/ListConfigurationManagersCommand.ts @@ -108,6 +108,7 @@ export interface ListConfigurationManagersCommandOutput extends ListConfiguratio * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* + * * @public */ export class ListConfigurationManagersCommand extends $Command diff --git a/clients/client-ssm-quicksetup/src/commands/ListConfigurationsCommand.ts b/clients/client-ssm-quicksetup/src/commands/ListConfigurationsCommand.ts index 72858e92b5580..1f5508db7a61e 100644 --- a/clients/client-ssm-quicksetup/src/commands/ListConfigurationsCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/ListConfigurationsCommand.ts @@ -108,6 +108,7 @@ export interface ListConfigurationsCommandOutput extends ListConfigurationsOutpu * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* + * * @public */ export class ListConfigurationsCommand extends $Command diff --git a/clients/client-ssm-quicksetup/src/commands/ListQuickSetupTypesCommand.ts b/clients/client-ssm-quicksetup/src/commands/ListQuickSetupTypesCommand.ts index 6e4368e08d54d..2ed4c69d0e95c 100644 --- a/clients/client-ssm-quicksetup/src/commands/ListQuickSetupTypesCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/ListQuickSetupTypesCommand.ts @@ -70,6 +70,7 @@ export interface ListQuickSetupTypesCommandOutput extends ListQuickSetupTypesOut * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* + * * @public */ export class ListQuickSetupTypesCommand extends $Command diff --git a/clients/client-ssm-quicksetup/src/commands/ListTagsForResourceCommand.ts b/clients/client-ssm-quicksetup/src/commands/ListTagsForResourceCommand.ts index fa79b3479c0b3..c0ab44ee86df9 100644 --- a/clients/client-ssm-quicksetup/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/ListTagsForResourceCommand.ts @@ -83,6 +83,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-ssm-quicksetup/src/commands/TagResourceCommand.ts b/clients/client-ssm-quicksetup/src/commands/TagResourceCommand.ts index efed286b650df..3fc184afdd87a 100644 --- a/clients/client-ssm-quicksetup/src/commands/TagResourceCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/TagResourceCommand.ts @@ -75,6 +75,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-ssm-quicksetup/src/commands/UntagResourceCommand.ts b/clients/client-ssm-quicksetup/src/commands/UntagResourceCommand.ts index 449fdfc4ff75e..3b3f4c9dbfb9c 100644 --- a/clients/client-ssm-quicksetup/src/commands/UntagResourceCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/UntagResourceCommand.ts @@ -75,6 +75,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationDefinitionCommand.ts b/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationDefinitionCommand.ts index 3ebc0357120e2..ba15dd559138f 100644 --- a/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationDefinitionCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationDefinitionCommand.ts @@ -82,6 +82,7 @@ export interface UpdateConfigurationDefinitionCommandOutput extends __MetadataBe * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* + * * @public */ export class UpdateConfigurationDefinitionCommand extends $Command diff --git a/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationManagerCommand.ts b/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationManagerCommand.ts index 419562f12beef..2ecdaf0006983 100644 --- a/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationManagerCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationManagerCommand.ts @@ -74,6 +74,7 @@ export interface UpdateConfigurationManagerCommandOutput extends __MetadataBeare * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* + * * @public */ export class UpdateConfigurationManagerCommand extends $Command diff --git a/clients/client-ssm-quicksetup/src/commands/UpdateServiceSettingsCommand.ts b/clients/client-ssm-quicksetup/src/commands/UpdateServiceSettingsCommand.ts index 225f8ff0a9c28..962f94c8116e4 100644 --- a/clients/client-ssm-quicksetup/src/commands/UpdateServiceSettingsCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/UpdateServiceSettingsCommand.ts @@ -69,6 +69,7 @@ export interface UpdateServiceSettingsCommandOutput extends __MetadataBearer {} * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* + * * @public */ export class UpdateServiceSettingsCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/DeleteResourcePermissionCommand.ts b/clients/client-ssm-sap/src/commands/DeleteResourcePermissionCommand.ts index 68340e957e2ba..c315f0197c56f 100644 --- a/clients/client-ssm-sap/src/commands/DeleteResourcePermissionCommand.ts +++ b/clients/client-ssm-sap/src/commands/DeleteResourcePermissionCommand.ts @@ -66,6 +66,7 @@ export interface DeleteResourcePermissionCommandOutput extends DeleteResourcePer * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class DeleteResourcePermissionCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/DeregisterApplicationCommand.ts b/clients/client-ssm-sap/src/commands/DeregisterApplicationCommand.ts index 2a4f608a8c115..5d66dc504b50b 100644 --- a/clients/client-ssm-sap/src/commands/DeregisterApplicationCommand.ts +++ b/clients/client-ssm-sap/src/commands/DeregisterApplicationCommand.ts @@ -63,6 +63,7 @@ export interface DeregisterApplicationCommandOutput extends DeregisterApplicatio * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class DeregisterApplicationCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/GetApplicationCommand.ts b/clients/client-ssm-sap/src/commands/GetApplicationCommand.ts index cbcebf78502cd..161135aa72161 100644 --- a/clients/client-ssm-sap/src/commands/GetApplicationCommand.ts +++ b/clients/client-ssm-sap/src/commands/GetApplicationCommand.ts @@ -82,6 +82,7 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class GetApplicationCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/GetComponentCommand.ts b/clients/client-ssm-sap/src/commands/GetComponentCommand.ts index bbc5babb73049..bb26d42329d28 100644 --- a/clients/client-ssm-sap/src/commands/GetComponentCommand.ts +++ b/clients/client-ssm-sap/src/commands/GetComponentCommand.ts @@ -124,6 +124,7 @@ export interface GetComponentCommandOutput extends GetComponentOutput, __Metadat * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class GetComponentCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/GetDatabaseCommand.ts b/clients/client-ssm-sap/src/commands/GetDatabaseCommand.ts index d25be26d1acb4..ee1da4bd452c5 100644 --- a/clients/client-ssm-sap/src/commands/GetDatabaseCommand.ts +++ b/clients/client-ssm-sap/src/commands/GetDatabaseCommand.ts @@ -89,6 +89,7 @@ export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataB * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class GetDatabaseCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/GetOperationCommand.ts b/clients/client-ssm-sap/src/commands/GetOperationCommand.ts index 19635824954e9..d2c2a5c4b19ea 100644 --- a/clients/client-ssm-sap/src/commands/GetOperationCommand.ts +++ b/clients/client-ssm-sap/src/commands/GetOperationCommand.ts @@ -75,6 +75,7 @@ export interface GetOperationCommandOutput extends GetOperationOutput, __Metadat * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class GetOperationCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/GetResourcePermissionCommand.ts b/clients/client-ssm-sap/src/commands/GetResourcePermissionCommand.ts index b036e2a6c4009..6031a3b07c7c3 100644 --- a/clients/client-ssm-sap/src/commands/GetResourcePermissionCommand.ts +++ b/clients/client-ssm-sap/src/commands/GetResourcePermissionCommand.ts @@ -65,6 +65,7 @@ export interface GetResourcePermissionCommandOutput extends GetResourcePermissio * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class GetResourcePermissionCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/ListApplicationsCommand.ts b/clients/client-ssm-sap/src/commands/ListApplicationsCommand.ts index b3d144002ca88..28b4b734fc30b 100644 --- a/clients/client-ssm-sap/src/commands/ListApplicationsCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListApplicationsCommand.ts @@ -83,6 +83,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _ * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/ListComponentsCommand.ts b/clients/client-ssm-sap/src/commands/ListComponentsCommand.ts index 12e29fc3a7df9..ed2d584463af1 100644 --- a/clients/client-ssm-sap/src/commands/ListComponentsCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListComponentsCommand.ts @@ -80,6 +80,7 @@ export interface ListComponentsCommandOutput extends ListComponentsOutput, __Met * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class ListComponentsCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/ListDatabasesCommand.ts b/clients/client-ssm-sap/src/commands/ListDatabasesCommand.ts index 4ad8be8c359df..fafd8ff2c685a 100644 --- a/clients/client-ssm-sap/src/commands/ListDatabasesCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListDatabasesCommand.ts @@ -80,6 +80,7 @@ export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __Metad * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class ListDatabasesCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/ListOperationEventsCommand.ts b/clients/client-ssm-sap/src/commands/ListOperationEventsCommand.ts index 9d3bdee4c9d4c..c11a3621e28d8 100644 --- a/clients/client-ssm-sap/src/commands/ListOperationEventsCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListOperationEventsCommand.ts @@ -84,6 +84,7 @@ export interface ListOperationEventsCommandOutput extends ListOperationEventsOut * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class ListOperationEventsCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/ListOperationsCommand.ts b/clients/client-ssm-sap/src/commands/ListOperationsCommand.ts index 62777a2a25d3b..e55dc3b73e159 100644 --- a/clients/client-ssm-sap/src/commands/ListOperationsCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListOperationsCommand.ts @@ -87,6 +87,7 @@ export interface ListOperationsCommandOutput extends ListOperationsOutput, __Met * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class ListOperationsCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/ListTagsForResourceCommand.ts b/clients/client-ssm-sap/src/commands/ListTagsForResourceCommand.ts index c02adf336cb18..134682e29912c 100644 --- a/clients/client-ssm-sap/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListTagsForResourceCommand.ts @@ -67,6 +67,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/PutResourcePermissionCommand.ts b/clients/client-ssm-sap/src/commands/PutResourcePermissionCommand.ts index b2d76052368ba..9596e3637f9db 100644 --- a/clients/client-ssm-sap/src/commands/PutResourcePermissionCommand.ts +++ b/clients/client-ssm-sap/src/commands/PutResourcePermissionCommand.ts @@ -66,6 +66,7 @@ export interface PutResourcePermissionCommandOutput extends PutResourcePermissio * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class PutResourcePermissionCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/RegisterApplicationCommand.ts b/clients/client-ssm-sap/src/commands/RegisterApplicationCommand.ts index 2c69c9e11f1d8..f4867ad581ef5 100644 --- a/clients/client-ssm-sap/src/commands/RegisterApplicationCommand.ts +++ b/clients/client-ssm-sap/src/commands/RegisterApplicationCommand.ts @@ -118,6 +118,7 @@ export interface RegisterApplicationCommandOutput extends RegisterApplicationOut * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class RegisterApplicationCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/StartApplicationCommand.ts b/clients/client-ssm-sap/src/commands/StartApplicationCommand.ts index e307a76c88247..dbbafe7618eb9 100644 --- a/clients/client-ssm-sap/src/commands/StartApplicationCommand.ts +++ b/clients/client-ssm-sap/src/commands/StartApplicationCommand.ts @@ -68,6 +68,7 @@ export interface StartApplicationCommandOutput extends StartApplicationOutput, _ * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class StartApplicationCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/StartApplicationRefreshCommand.ts b/clients/client-ssm-sap/src/commands/StartApplicationRefreshCommand.ts index ecfb6a5fdcbcd..7264212808f28 100644 --- a/clients/client-ssm-sap/src/commands/StartApplicationRefreshCommand.ts +++ b/clients/client-ssm-sap/src/commands/StartApplicationRefreshCommand.ts @@ -70,6 +70,7 @@ export interface StartApplicationRefreshCommandOutput extends StartApplicationRe * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class StartApplicationRefreshCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/StopApplicationCommand.ts b/clients/client-ssm-sap/src/commands/StopApplicationCommand.ts index 07fd8a2206652..a613109a4e358 100644 --- a/clients/client-ssm-sap/src/commands/StopApplicationCommand.ts +++ b/clients/client-ssm-sap/src/commands/StopApplicationCommand.ts @@ -72,6 +72,7 @@ export interface StopApplicationCommandOutput extends StopApplicationOutput, __M * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class StopApplicationCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/TagResourceCommand.ts b/clients/client-ssm-sap/src/commands/TagResourceCommand.ts index 4c05664e20cd6..88a24e78a3ac6 100644 --- a/clients/client-ssm-sap/src/commands/TagResourceCommand.ts +++ b/clients/client-ssm-sap/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/UntagResourceCommand.ts b/clients/client-ssm-sap/src/commands/UntagResourceCommand.ts index 7ef2e41bca092..5d8de76b895b4 100644 --- a/clients/client-ssm-sap/src/commands/UntagResourceCommand.ts +++ b/clients/client-ssm-sap/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-ssm-sap/src/commands/UpdateApplicationSettingsCommand.ts b/clients/client-ssm-sap/src/commands/UpdateApplicationSettingsCommand.ts index 9ab6f8bd19f30..b23f9a0aa06c0 100644 --- a/clients/client-ssm-sap/src/commands/UpdateApplicationSettingsCommand.ts +++ b/clients/client-ssm-sap/src/commands/UpdateApplicationSettingsCommand.ts @@ -97,6 +97,7 @@ export interface UpdateApplicationSettingsCommandOutput extends UpdateApplicatio * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* + * * @public */ export class UpdateApplicationSettingsCommand extends $Command diff --git a/clients/client-ssm/src/commands/AddTagsToResourceCommand.ts b/clients/client-ssm/src/commands/AddTagsToResourceCommand.ts index d49dcd102f339..aebcb434c03d4 100644 --- a/clients/client-ssm/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-ssm/src/commands/AddTagsToResourceCommand.ts @@ -123,6 +123,7 @@ export interface AddTagsToResourceCommandOutput extends AddTagsToResourceResult, * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class AddTagsToResourceCommand extends $Command diff --git a/clients/client-ssm/src/commands/AssociateOpsItemRelatedItemCommand.ts b/clients/client-ssm/src/commands/AssociateOpsItemRelatedItemCommand.ts index 5fa9c0f088731..05db9ea672136 100644 --- a/clients/client-ssm/src/commands/AssociateOpsItemRelatedItemCommand.ts +++ b/clients/client-ssm/src/commands/AssociateOpsItemRelatedItemCommand.ts @@ -81,6 +81,7 @@ export interface AssociateOpsItemRelatedItemCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class AssociateOpsItemRelatedItemCommand extends $Command diff --git a/clients/client-ssm/src/commands/CancelCommandCommand.ts b/clients/client-ssm/src/commands/CancelCommandCommand.ts index ce0163ecf550e..57a0994745dd6 100644 --- a/clients/client-ssm/src/commands/CancelCommandCommand.ts +++ b/clients/client-ssm/src/commands/CancelCommandCommand.ts @@ -86,6 +86,7 @@ export interface CancelCommandCommandOutput extends CancelCommandResult, __Metad * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class CancelCommandCommand extends $Command diff --git a/clients/client-ssm/src/commands/CancelMaintenanceWindowExecutionCommand.ts b/clients/client-ssm/src/commands/CancelMaintenanceWindowExecutionCommand.ts index 6e7f59aac8b28..d9c30f90043ea 100644 --- a/clients/client-ssm/src/commands/CancelMaintenanceWindowExecutionCommand.ts +++ b/clients/client-ssm/src/commands/CancelMaintenanceWindowExecutionCommand.ts @@ -71,6 +71,7 @@ export interface CancelMaintenanceWindowExecutionCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class CancelMaintenanceWindowExecutionCommand extends $Command diff --git a/clients/client-ssm/src/commands/CreateActivationCommand.ts b/clients/client-ssm/src/commands/CreateActivationCommand.ts index a0d2852232287..0cc70097373e6 100644 --- a/clients/client-ssm/src/commands/CreateActivationCommand.ts +++ b/clients/client-ssm/src/commands/CreateActivationCommand.ts @@ -88,6 +88,7 @@ export interface CreateActivationCommandOutput extends CreateActivationResult, _ * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class CreateActivationCommand extends $Command diff --git a/clients/client-ssm/src/commands/CreateAssociationBatchCommand.ts b/clients/client-ssm/src/commands/CreateAssociationBatchCommand.ts index d38b48720fe64..e3a7d8f9cf4a1 100644 --- a/clients/client-ssm/src/commands/CreateAssociationBatchCommand.ts +++ b/clients/client-ssm/src/commands/CreateAssociationBatchCommand.ts @@ -391,6 +391,7 @@ export interface CreateAssociationBatchCommandOutput extends CreateAssociationBa * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class CreateAssociationBatchCommand extends $Command diff --git a/clients/client-ssm/src/commands/CreateAssociationCommand.ts b/clients/client-ssm/src/commands/CreateAssociationCommand.ts index 8efe2170a4491..165a0fa433ce3 100644 --- a/clients/client-ssm/src/commands/CreateAssociationCommand.ts +++ b/clients/client-ssm/src/commands/CreateAssociationCommand.ts @@ -331,6 +331,7 @@ export interface CreateAssociationCommandOutput extends CreateAssociationResult, * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class CreateAssociationCommand extends $Command diff --git a/clients/client-ssm/src/commands/CreateDocumentCommand.ts b/clients/client-ssm/src/commands/CreateDocumentCommand.ts index 4289f33813045..9a309bb6b0f96 100644 --- a/clients/client-ssm/src/commands/CreateDocumentCommand.ts +++ b/clients/client-ssm/src/commands/CreateDocumentCommand.ts @@ -171,6 +171,7 @@ export interface CreateDocumentCommandOutput extends CreateDocumentResult, __Met * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class CreateDocumentCommand extends $Command diff --git a/clients/client-ssm/src/commands/CreateMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/CreateMaintenanceWindowCommand.ts index aa2faf753d9db..a41708f918d99 100644 --- a/clients/client-ssm/src/commands/CreateMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/CreateMaintenanceWindowCommand.ts @@ -96,6 +96,7 @@ export interface CreateMaintenanceWindowCommandOutput extends CreateMaintenanceW * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class CreateMaintenanceWindowCommand extends $Command diff --git a/clients/client-ssm/src/commands/CreateOpsItemCommand.ts b/clients/client-ssm/src/commands/CreateOpsItemCommand.ts index b2146f6eb7ab4..70d394d04977f 100644 --- a/clients/client-ssm/src/commands/CreateOpsItemCommand.ts +++ b/clients/client-ssm/src/commands/CreateOpsItemCommand.ts @@ -112,6 +112,7 @@ export interface CreateOpsItemCommandOutput extends CreateOpsItemResponse, __Met * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class CreateOpsItemCommand extends $Command diff --git a/clients/client-ssm/src/commands/CreateOpsMetadataCommand.ts b/clients/client-ssm/src/commands/CreateOpsMetadataCommand.ts index c71c7c7490ea1..93c29439cb2e8 100644 --- a/clients/client-ssm/src/commands/CreateOpsMetadataCommand.ts +++ b/clients/client-ssm/src/commands/CreateOpsMetadataCommand.ts @@ -84,6 +84,7 @@ export interface CreateOpsMetadataCommandOutput extends CreateOpsMetadataResult, * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class CreateOpsMetadataCommand extends $Command diff --git a/clients/client-ssm/src/commands/CreatePatchBaselineCommand.ts b/clients/client-ssm/src/commands/CreatePatchBaselineCommand.ts index 7f73055d37f28..250b7b30cd141 100644 --- a/clients/client-ssm/src/commands/CreatePatchBaselineCommand.ts +++ b/clients/client-ssm/src/commands/CreatePatchBaselineCommand.ts @@ -134,6 +134,7 @@ export interface CreatePatchBaselineCommandOutput extends CreatePatchBaselineRes * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class CreatePatchBaselineCommand extends $Command diff --git a/clients/client-ssm/src/commands/CreateResourceDataSyncCommand.ts b/clients/client-ssm/src/commands/CreateResourceDataSyncCommand.ts index 8f4f063259e0d..0dd942ab8d525 100644 --- a/clients/client-ssm/src/commands/CreateResourceDataSyncCommand.ts +++ b/clients/client-ssm/src/commands/CreateResourceDataSyncCommand.ts @@ -112,6 +112,7 @@ export interface CreateResourceDataSyncCommandOutput extends CreateResourceDataS * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class CreateResourceDataSyncCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeleteActivationCommand.ts b/clients/client-ssm/src/commands/DeleteActivationCommand.ts index 325997b0bffdf..0eb6f864e5ca9 100644 --- a/clients/client-ssm/src/commands/DeleteActivationCommand.ts +++ b/clients/client-ssm/src/commands/DeleteActivationCommand.ts @@ -69,6 +69,7 @@ export interface DeleteActivationCommandOutput extends DeleteActivationResult, _ * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeleteActivationCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeleteAssociationCommand.ts b/clients/client-ssm/src/commands/DeleteAssociationCommand.ts index f3099ae5f4a12..fee96992ed2e9 100644 --- a/clients/client-ssm/src/commands/DeleteAssociationCommand.ts +++ b/clients/client-ssm/src/commands/DeleteAssociationCommand.ts @@ -93,6 +93,7 @@ export interface DeleteAssociationCommandOutput extends DeleteAssociationResult, * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeleteAssociationCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeleteDocumentCommand.ts b/clients/client-ssm/src/commands/DeleteDocumentCommand.ts index 892eda5f1b34b..a223dc0f4a321 100644 --- a/clients/client-ssm/src/commands/DeleteDocumentCommand.ts +++ b/clients/client-ssm/src/commands/DeleteDocumentCommand.ts @@ -71,6 +71,7 @@ export interface DeleteDocumentCommandOutput extends DeleteDocumentResult, __Met * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeleteDocumentCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeleteInventoryCommand.ts b/clients/client-ssm/src/commands/DeleteInventoryCommand.ts index ed7aae496b3d2..666f7eb45e014 100644 --- a/clients/client-ssm/src/commands/DeleteInventoryCommand.ts +++ b/clients/client-ssm/src/commands/DeleteInventoryCommand.ts @@ -87,6 +87,7 @@ export interface DeleteInventoryCommandOutput extends DeleteInventoryResult, __M * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeleteInventoryCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeleteMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/DeleteMaintenanceWindowCommand.ts index 26dfd90713d3d..7c714eec7b48e 100644 --- a/clients/client-ssm/src/commands/DeleteMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/DeleteMaintenanceWindowCommand.ts @@ -58,6 +58,7 @@ export interface DeleteMaintenanceWindowCommandOutput extends DeleteMaintenanceW * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeleteMaintenanceWindowCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeleteOpsItemCommand.ts b/clients/client-ssm/src/commands/DeleteOpsItemCommand.ts index 4d445ef6299c8..e597a3175fa5f 100644 --- a/clients/client-ssm/src/commands/DeleteOpsItemCommand.ts +++ b/clients/client-ssm/src/commands/DeleteOpsItemCommand.ts @@ -87,6 +87,7 @@ export interface DeleteOpsItemCommandOutput extends DeleteOpsItemResponse, __Met * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeleteOpsItemCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeleteOpsMetadataCommand.ts b/clients/client-ssm/src/commands/DeleteOpsMetadataCommand.ts index 4980a265bbc42..d5f3b848bc26f 100644 --- a/clients/client-ssm/src/commands/DeleteOpsMetadataCommand.ts +++ b/clients/client-ssm/src/commands/DeleteOpsMetadataCommand.ts @@ -62,6 +62,7 @@ export interface DeleteOpsMetadataCommandOutput extends DeleteOpsMetadataResult, * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeleteOpsMetadataCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeleteParameterCommand.ts b/clients/client-ssm/src/commands/DeleteParameterCommand.ts index 3ea44ee769811..80f9e29793864 100644 --- a/clients/client-ssm/src/commands/DeleteParameterCommand.ts +++ b/clients/client-ssm/src/commands/DeleteParameterCommand.ts @@ -65,6 +65,7 @@ export interface DeleteParameterCommandOutput extends DeleteParameterResult, __M * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeleteParameterCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeleteParametersCommand.ts b/clients/client-ssm/src/commands/DeleteParametersCommand.ts index bb6acea87a4a6..542c72ebb6507 100644 --- a/clients/client-ssm/src/commands/DeleteParametersCommand.ts +++ b/clients/client-ssm/src/commands/DeleteParametersCommand.ts @@ -66,6 +66,7 @@ export interface DeleteParametersCommandOutput extends DeleteParametersResult, _ * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeleteParametersCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeletePatchBaselineCommand.ts b/clients/client-ssm/src/commands/DeletePatchBaselineCommand.ts index 3c50b15aefcbd..1bf6086b5feef 100644 --- a/clients/client-ssm/src/commands/DeletePatchBaselineCommand.ts +++ b/clients/client-ssm/src/commands/DeletePatchBaselineCommand.ts @@ -62,6 +62,7 @@ export interface DeletePatchBaselineCommandOutput extends DeletePatchBaselineRes * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeletePatchBaselineCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeleteResourceDataSyncCommand.ts b/clients/client-ssm/src/commands/DeleteResourceDataSyncCommand.ts index e8e787aa26600..6b3d92251b997 100644 --- a/clients/client-ssm/src/commands/DeleteResourceDataSyncCommand.ts +++ b/clients/client-ssm/src/commands/DeleteResourceDataSyncCommand.ts @@ -65,6 +65,7 @@ export interface DeleteResourceDataSyncCommandOutput extends DeleteResourceDataS * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeleteResourceDataSyncCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-ssm/src/commands/DeleteResourcePolicyCommand.ts index 6735092c46d52..c41ddaa160862 100644 --- a/clients/client-ssm/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-ssm/src/commands/DeleteResourcePolicyCommand.ts @@ -92,6 +92,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeregisterManagedInstanceCommand.ts b/clients/client-ssm/src/commands/DeregisterManagedInstanceCommand.ts index 0602b74e6f8ab..b98ed1e532f42 100644 --- a/clients/client-ssm/src/commands/DeregisterManagedInstanceCommand.ts +++ b/clients/client-ssm/src/commands/DeregisterManagedInstanceCommand.ts @@ -82,6 +82,7 @@ export interface DeregisterManagedInstanceCommandOutput extends DeregisterManage * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeregisterManagedInstanceCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeregisterPatchBaselineForPatchGroupCommand.ts b/clients/client-ssm/src/commands/DeregisterPatchBaselineForPatchGroupCommand.ts index 97cad853f1ba2..1f2d7d970f871 100644 --- a/clients/client-ssm/src/commands/DeregisterPatchBaselineForPatchGroupCommand.ts +++ b/clients/client-ssm/src/commands/DeregisterPatchBaselineForPatchGroupCommand.ts @@ -71,6 +71,7 @@ export interface DeregisterPatchBaselineForPatchGroupCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeregisterPatchBaselineForPatchGroupCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeregisterTargetFromMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/DeregisterTargetFromMaintenanceWindowCommand.ts index cfef95a1b0cb4..3bbad407420fc 100644 --- a/clients/client-ssm/src/commands/DeregisterTargetFromMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/DeregisterTargetFromMaintenanceWindowCommand.ts @@ -80,6 +80,7 @@ export interface DeregisterTargetFromMaintenanceWindowCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeregisterTargetFromMaintenanceWindowCommand extends $Command diff --git a/clients/client-ssm/src/commands/DeregisterTaskFromMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/DeregisterTaskFromMaintenanceWindowCommand.ts index 541e032217ef5..d402642b8d176 100644 --- a/clients/client-ssm/src/commands/DeregisterTaskFromMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/DeregisterTaskFromMaintenanceWindowCommand.ts @@ -74,6 +74,7 @@ export interface DeregisterTaskFromMaintenanceWindowCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DeregisterTaskFromMaintenanceWindowCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeActivationsCommand.ts b/clients/client-ssm/src/commands/DescribeActivationsCommand.ts index 8b65a2350ea7a..0f164d9a74370 100644 --- a/clients/client-ssm/src/commands/DescribeActivationsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeActivationsCommand.ts @@ -95,6 +95,7 @@ export interface DescribeActivationsCommandOutput extends DescribeActivationsRes * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeActivationsCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeAssociationCommand.ts b/clients/client-ssm/src/commands/DescribeAssociationCommand.ts index be895f1ca73a4..75b9da06990c2 100644 --- a/clients/client-ssm/src/commands/DescribeAssociationCommand.ts +++ b/clients/client-ssm/src/commands/DescribeAssociationCommand.ts @@ -210,6 +210,7 @@ export interface DescribeAssociationCommandOutput extends DescribeAssociationRes * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeAssociationCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeAssociationExecutionTargetsCommand.ts b/clients/client-ssm/src/commands/DescribeAssociationExecutionTargetsCommand.ts index 8b407b85b3efd..ef3c5968a4baf 100644 --- a/clients/client-ssm/src/commands/DescribeAssociationExecutionTargetsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeAssociationExecutionTargetsCommand.ts @@ -100,6 +100,7 @@ export interface DescribeAssociationExecutionTargetsCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeAssociationExecutionTargetsCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeAssociationExecutionsCommand.ts b/clients/client-ssm/src/commands/DescribeAssociationExecutionsCommand.ts index c4c5dd3ee545b..92a54dad3681b 100644 --- a/clients/client-ssm/src/commands/DescribeAssociationExecutionsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeAssociationExecutionsCommand.ts @@ -104,6 +104,7 @@ export interface DescribeAssociationExecutionsCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeAssociationExecutionsCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeAutomationExecutionsCommand.ts b/clients/client-ssm/src/commands/DescribeAutomationExecutionsCommand.ts index b4850776f243b..72fd521a8550c 100644 --- a/clients/client-ssm/src/commands/DescribeAutomationExecutionsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeAutomationExecutionsCommand.ts @@ -206,6 +206,7 @@ export interface DescribeAutomationExecutionsCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeAutomationExecutionsCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeAutomationStepExecutionsCommand.ts b/clients/client-ssm/src/commands/DescribeAutomationStepExecutionsCommand.ts index eebf018bbb35b..dcd2ba0d761f1 100644 --- a/clients/client-ssm/src/commands/DescribeAutomationStepExecutionsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeAutomationStepExecutionsCommand.ts @@ -186,6 +186,7 @@ export interface DescribeAutomationStepExecutionsCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeAutomationStepExecutionsCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeAvailablePatchesCommand.ts b/clients/client-ssm/src/commands/DescribeAvailablePatchesCommand.ts index ca18c625099e8..6dfb4aed465f2 100644 --- a/clients/client-ssm/src/commands/DescribeAvailablePatchesCommand.ts +++ b/clients/client-ssm/src/commands/DescribeAvailablePatchesCommand.ts @@ -104,6 +104,7 @@ export interface DescribeAvailablePatchesCommandOutput extends DescribeAvailable * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeAvailablePatchesCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeDocumentCommand.ts b/clients/client-ssm/src/commands/DescribeDocumentCommand.ts index 785ca27e214b4..367bb92e42710 100644 --- a/clients/client-ssm/src/commands/DescribeDocumentCommand.ts +++ b/clients/client-ssm/src/commands/DescribeDocumentCommand.ts @@ -132,6 +132,7 @@ export interface DescribeDocumentCommandOutput extends DescribeDocumentResult, _ * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeDocumentCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeDocumentPermissionCommand.ts b/clients/client-ssm/src/commands/DescribeDocumentPermissionCommand.ts index 862374e79bc5d..c86af8dbb324f 100644 --- a/clients/client-ssm/src/commands/DescribeDocumentPermissionCommand.ts +++ b/clients/client-ssm/src/commands/DescribeDocumentPermissionCommand.ts @@ -86,6 +86,7 @@ export interface DescribeDocumentPermissionCommandOutput extends DescribeDocumen * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeDocumentPermissionCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeEffectiveInstanceAssociationsCommand.ts b/clients/client-ssm/src/commands/DescribeEffectiveInstanceAssociationsCommand.ts index f4c41e646a984..9477aa83cb863 100644 --- a/clients/client-ssm/src/commands/DescribeEffectiveInstanceAssociationsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeEffectiveInstanceAssociationsCommand.ts @@ -100,6 +100,7 @@ export interface DescribeEffectiveInstanceAssociationsCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeEffectiveInstanceAssociationsCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeEffectivePatchesForPatchBaselineCommand.ts b/clients/client-ssm/src/commands/DescribeEffectivePatchesForPatchBaselineCommand.ts index b62ff04f77e23..52e4e5663cb77 100644 --- a/clients/client-ssm/src/commands/DescribeEffectivePatchesForPatchBaselineCommand.ts +++ b/clients/client-ssm/src/commands/DescribeEffectivePatchesForPatchBaselineCommand.ts @@ -123,6 +123,7 @@ export interface DescribeEffectivePatchesForPatchBaselineCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeEffectivePatchesForPatchBaselineCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeInstanceAssociationsStatusCommand.ts b/clients/client-ssm/src/commands/DescribeInstanceAssociationsStatusCommand.ts index 1aa519630ac25..1d65b2d91ead7 100644 --- a/clients/client-ssm/src/commands/DescribeInstanceAssociationsStatusCommand.ts +++ b/clients/client-ssm/src/commands/DescribeInstanceAssociationsStatusCommand.ts @@ -111,6 +111,7 @@ export interface DescribeInstanceAssociationsStatusCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeInstanceAssociationsStatusCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeInstanceInformationCommand.ts b/clients/client-ssm/src/commands/DescribeInstanceInformationCommand.ts index b0e06e95a36c0..6ad04cbbd96f9 100644 --- a/clients/client-ssm/src/commands/DescribeInstanceInformationCommand.ts +++ b/clients/client-ssm/src/commands/DescribeInstanceInformationCommand.ts @@ -148,6 +148,7 @@ export interface DescribeInstanceInformationCommandOutput extends DescribeInstan * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeInstanceInformationCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeInstancePatchStatesCommand.ts b/clients/client-ssm/src/commands/DescribeInstancePatchStatesCommand.ts index 9e5a415412eaf..c5dd4f7ea0505 100644 --- a/clients/client-ssm/src/commands/DescribeInstancePatchStatesCommand.ts +++ b/clients/client-ssm/src/commands/DescribeInstancePatchStatesCommand.ts @@ -96,6 +96,7 @@ export interface DescribeInstancePatchStatesCommandOutput extends DescribeInstan * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeInstancePatchStatesCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeInstancePatchStatesForPatchGroupCommand.ts b/clients/client-ssm/src/commands/DescribeInstancePatchStatesForPatchGroupCommand.ts index 1ef6882b82554..05cb9f15d623d 100644 --- a/clients/client-ssm/src/commands/DescribeInstancePatchStatesForPatchGroupCommand.ts +++ b/clients/client-ssm/src/commands/DescribeInstancePatchStatesForPatchGroupCommand.ts @@ -113,6 +113,7 @@ export interface DescribeInstancePatchStatesForPatchGroupCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeInstancePatchStatesForPatchGroupCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeInstancePatchesCommand.ts b/clients/client-ssm/src/commands/DescribeInstancePatchesCommand.ts index 368d72973288c..414194361927c 100644 --- a/clients/client-ssm/src/commands/DescribeInstancePatchesCommand.ts +++ b/clients/client-ssm/src/commands/DescribeInstancePatchesCommand.ts @@ -106,6 +106,7 @@ export interface DescribeInstancePatchesCommandOutput extends DescribeInstancePa * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeInstancePatchesCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeInstancePropertiesCommand.ts b/clients/client-ssm/src/commands/DescribeInstancePropertiesCommand.ts index b7067a94b4a7b..94f63db8bec03 100644 --- a/clients/client-ssm/src/commands/DescribeInstancePropertiesCommand.ts +++ b/clients/client-ssm/src/commands/DescribeInstancePropertiesCommand.ts @@ -152,6 +152,7 @@ export interface DescribeInstancePropertiesCommandOutput extends DescribeInstanc * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeInstancePropertiesCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeInventoryDeletionsCommand.ts b/clients/client-ssm/src/commands/DescribeInventoryDeletionsCommand.ts index e18d92cd6e935..9beb7730e4822 100644 --- a/clients/client-ssm/src/commands/DescribeInventoryDeletionsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeInventoryDeletionsCommand.ts @@ -88,6 +88,7 @@ export interface DescribeInventoryDeletionsCommandOutput extends DescribeInvento * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeInventoryDeletionsCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.ts index b688e775feb04..6ad8f22ddac34 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.ts @@ -102,6 +102,7 @@ export interface DescribeMaintenanceWindowExecutionTaskInvocationsCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeMaintenanceWindowExecutionTaskInvocationsCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTasksCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTasksCommand.ts index 3bdb2b923ac49..415b181bae52a 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTasksCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTasksCommand.ts @@ -109,6 +109,7 @@ export interface DescribeMaintenanceWindowExecutionTasksCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeMaintenanceWindowExecutionTasksCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionsCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionsCommand.ts index 8f0fed14e3b35..5d5d3eb5ae165 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionsCommand.ts @@ -88,6 +88,7 @@ export interface DescribeMaintenanceWindowExecutionsCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeMaintenanceWindowExecutionsCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowScheduleCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowScheduleCommand.ts index a72cb743d0bee..d0d549dd11d0f 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowScheduleCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowScheduleCommand.ts @@ -96,6 +96,7 @@ export interface DescribeMaintenanceWindowScheduleCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeMaintenanceWindowScheduleCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowTargetsCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowTargetsCommand.ts index ac3d20d5d5110..93718d38e0668 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowTargetsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowTargetsCommand.ts @@ -101,6 +101,7 @@ export interface DescribeMaintenanceWindowTargetsCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeMaintenanceWindowTargetsCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowTasksCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowTasksCommand.ts index 75a2bd8de73ed..534b93d73348b 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowTasksCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowTasksCommand.ts @@ -132,6 +132,7 @@ export interface DescribeMaintenanceWindowTasksCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeMaintenanceWindowTasksCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowsCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowsCommand.ts index 0522945fd7876..2b93d75df3660 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowsCommand.ts @@ -87,6 +87,7 @@ export interface DescribeMaintenanceWindowsCommandOutput extends DescribeMainten * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeMaintenanceWindowsCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowsForTargetCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowsForTargetCommand.ts index 3439468c689b6..6361894b94ed8 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowsForTargetCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowsForTargetCommand.ts @@ -83,6 +83,7 @@ export interface DescribeMaintenanceWindowsForTargetCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeMaintenanceWindowsForTargetCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeOpsItemsCommand.ts b/clients/client-ssm/src/commands/DescribeOpsItemsCommand.ts index 2d480254bfa0e..0007bcab21059 100644 --- a/clients/client-ssm/src/commands/DescribeOpsItemsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeOpsItemsCommand.ts @@ -99,6 +99,7 @@ export interface DescribeOpsItemsCommandOutput extends DescribeOpsItemsResponse, * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeOpsItemsCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeParametersCommand.ts b/clients/client-ssm/src/commands/DescribeParametersCommand.ts index f772d692b7844..f8d8cf41c9629 100644 --- a/clients/client-ssm/src/commands/DescribeParametersCommand.ts +++ b/clients/client-ssm/src/commands/DescribeParametersCommand.ts @@ -125,6 +125,7 @@ export interface DescribeParametersCommandOutput extends DescribeParametersResul * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeParametersCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribePatchBaselinesCommand.ts b/clients/client-ssm/src/commands/DescribePatchBaselinesCommand.ts index db0bcdce7e2cf..37c1d111d3f7a 100644 --- a/clients/client-ssm/src/commands/DescribePatchBaselinesCommand.ts +++ b/clients/client-ssm/src/commands/DescribePatchBaselinesCommand.ts @@ -76,6 +76,7 @@ export interface DescribePatchBaselinesCommandOutput extends DescribePatchBaseli * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribePatchBaselinesCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribePatchGroupStateCommand.ts b/clients/client-ssm/src/commands/DescribePatchGroupStateCommand.ts index 3a570cfeea493..9c331c97210bf 100644 --- a/clients/client-ssm/src/commands/DescribePatchGroupStateCommand.ts +++ b/clients/client-ssm/src/commands/DescribePatchGroupStateCommand.ts @@ -73,6 +73,7 @@ export interface DescribePatchGroupStateCommandOutput extends DescribePatchGroup * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribePatchGroupStateCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribePatchGroupsCommand.ts b/clients/client-ssm/src/commands/DescribePatchGroupsCommand.ts index 6eb5ea04fcc3b..d50c88d997c7a 100644 --- a/clients/client-ssm/src/commands/DescribePatchGroupsCommand.ts +++ b/clients/client-ssm/src/commands/DescribePatchGroupsCommand.ts @@ -79,6 +79,7 @@ export interface DescribePatchGroupsCommandOutput extends DescribePatchGroupsRes * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribePatchGroupsCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribePatchPropertiesCommand.ts b/clients/client-ssm/src/commands/DescribePatchPropertiesCommand.ts index 383e9c571b485..485dd681a311d 100644 --- a/clients/client-ssm/src/commands/DescribePatchPropertiesCommand.ts +++ b/clients/client-ssm/src/commands/DescribePatchPropertiesCommand.ts @@ -136,6 +136,7 @@ export interface DescribePatchPropertiesCommandOutput extends DescribePatchPrope * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribePatchPropertiesCommand extends $Command diff --git a/clients/client-ssm/src/commands/DescribeSessionsCommand.ts b/clients/client-ssm/src/commands/DescribeSessionsCommand.ts index 59ecf9c676e90..f459f69ee345b 100644 --- a/clients/client-ssm/src/commands/DescribeSessionsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeSessionsCommand.ts @@ -91,6 +91,7 @@ export interface DescribeSessionsCommandOutput extends DescribeSessionsResponse, * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DescribeSessionsCommand extends $Command diff --git a/clients/client-ssm/src/commands/DisassociateOpsItemRelatedItemCommand.ts b/clients/client-ssm/src/commands/DisassociateOpsItemRelatedItemCommand.ts index 3eff5cb0ce4c9..d955a8f6583ee 100644 --- a/clients/client-ssm/src/commands/DisassociateOpsItemRelatedItemCommand.ts +++ b/clients/client-ssm/src/commands/DisassociateOpsItemRelatedItemCommand.ts @@ -78,6 +78,7 @@ export interface DisassociateOpsItemRelatedItemCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class DisassociateOpsItemRelatedItemCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetAutomationExecutionCommand.ts b/clients/client-ssm/src/commands/GetAutomationExecutionCommand.ts index f26b3230bc4a2..92715d6a4d597 100644 --- a/clients/client-ssm/src/commands/GetAutomationExecutionCommand.ts +++ b/clients/client-ssm/src/commands/GetAutomationExecutionCommand.ts @@ -264,6 +264,7 @@ export interface GetAutomationExecutionCommandOutput extends GetAutomationExecut * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetAutomationExecutionCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetCalendarStateCommand.ts b/clients/client-ssm/src/commands/GetCalendarStateCommand.ts index 1d6d560ee0c39..73d5f00e44206 100644 --- a/clients/client-ssm/src/commands/GetCalendarStateCommand.ts +++ b/clients/client-ssm/src/commands/GetCalendarStateCommand.ts @@ -81,6 +81,7 @@ export interface GetCalendarStateCommandOutput extends GetCalendarStateResponse, * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetCalendarStateCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetCommandInvocationCommand.ts b/clients/client-ssm/src/commands/GetCommandInvocationCommand.ts index f077d98b0f45a..8db6ad9e2d766 100644 --- a/clients/client-ssm/src/commands/GetCommandInvocationCommand.ts +++ b/clients/client-ssm/src/commands/GetCommandInvocationCommand.ts @@ -118,6 +118,7 @@ export interface GetCommandInvocationCommandOutput extends GetCommandInvocationR * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetCommandInvocationCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetConnectionStatusCommand.ts b/clients/client-ssm/src/commands/GetConnectionStatusCommand.ts index af56774ddc58f..029663721e38d 100644 --- a/clients/client-ssm/src/commands/GetConnectionStatusCommand.ts +++ b/clients/client-ssm/src/commands/GetConnectionStatusCommand.ts @@ -60,6 +60,7 @@ export interface GetConnectionStatusCommandOutput extends GetConnectionStatusRes * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetConnectionStatusCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetDefaultPatchBaselineCommand.ts b/clients/client-ssm/src/commands/GetDefaultPatchBaselineCommand.ts index d0c5357d1401d..3c6105d299134 100644 --- a/clients/client-ssm/src/commands/GetDefaultPatchBaselineCommand.ts +++ b/clients/client-ssm/src/commands/GetDefaultPatchBaselineCommand.ts @@ -62,6 +62,7 @@ export interface GetDefaultPatchBaselineCommandOutput extends GetDefaultPatchBas * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetDefaultPatchBaselineCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetDeployablePatchSnapshotForInstanceCommand.ts b/clients/client-ssm/src/commands/GetDeployablePatchSnapshotForInstanceCommand.ts index 64c916125b9ac..5fb334bdf2313 100644 --- a/clients/client-ssm/src/commands/GetDeployablePatchSnapshotForInstanceCommand.ts +++ b/clients/client-ssm/src/commands/GetDeployablePatchSnapshotForInstanceCommand.ts @@ -142,6 +142,7 @@ export interface GetDeployablePatchSnapshotForInstanceCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetDeployablePatchSnapshotForInstanceCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetDocumentCommand.ts b/clients/client-ssm/src/commands/GetDocumentCommand.ts index d666315991af0..bf238fa9f07f3 100644 --- a/clients/client-ssm/src/commands/GetDocumentCommand.ts +++ b/clients/client-ssm/src/commands/GetDocumentCommand.ts @@ -94,6 +94,7 @@ export interface GetDocumentCommandOutput extends GetDocumentResult, __MetadataB * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetDocumentCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetExecutionPreviewCommand.ts b/clients/client-ssm/src/commands/GetExecutionPreviewCommand.ts index d8b8c568c2554..a64f8c8ca269f 100644 --- a/clients/client-ssm/src/commands/GetExecutionPreviewCommand.ts +++ b/clients/client-ssm/src/commands/GetExecutionPreviewCommand.ts @@ -82,36 +82,8 @@ export interface GetExecutionPreviewCommandOutput extends GetExecutionPreviewRes * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* - * @public - * @example GetExecutionPreview - * ```javascript - * // This example illustrates one usage of GetExecutionPreview - * const input = { - * "ExecutionPreviewId": "2f27d6e5-9676-4708-b8bd-aef0ab47bb26" - * }; - * const command = new GetExecutionPreviewCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "EndedAt": "2024-11-13T01:50:39.424000+00:00", - * "ExecutionPreview": { - * "Automation": { - * "Regions": [ - * "us-east-2" - * ], - * "StepPreviews": { - * "Undetermined": 1 - * }, - * "TotalAccounts": 1 - * } - * }, - * "ExecutionPreviewId": "2f27d6e5-9676-4708-b8bd-aef0ab47bb26", - * "Status": "Success" - * } - * *\/ - * // example id: getexecutionpreview-f6ae6a7e734e - * ``` * + * @public */ export class GetExecutionPreviewCommand extends $Command .classBuilder< diff --git a/clients/client-ssm/src/commands/GetInventoryCommand.ts b/clients/client-ssm/src/commands/GetInventoryCommand.ts index 1d31e8941f3af..bac0835728275 100644 --- a/clients/client-ssm/src/commands/GetInventoryCommand.ts +++ b/clients/client-ssm/src/commands/GetInventoryCommand.ts @@ -143,6 +143,7 @@ export interface GetInventoryCommandOutput extends GetInventoryResult, __Metadat * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetInventoryCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetInventorySchemaCommand.ts b/clients/client-ssm/src/commands/GetInventorySchemaCommand.ts index 449573b810fb6..7c6a99c1a4fdd 100644 --- a/clients/client-ssm/src/commands/GetInventorySchemaCommand.ts +++ b/clients/client-ssm/src/commands/GetInventorySchemaCommand.ts @@ -82,6 +82,7 @@ export interface GetInventorySchemaCommandOutput extends GetInventorySchemaResul * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetInventorySchemaCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/GetMaintenanceWindowCommand.ts index 4ae5c28d09b4e..160a31c249142 100644 --- a/clients/client-ssm/src/commands/GetMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/GetMaintenanceWindowCommand.ts @@ -82,6 +82,7 @@ export interface GetMaintenanceWindowCommandOutput extends GetMaintenanceWindowR * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetMaintenanceWindowCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionCommand.ts b/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionCommand.ts index 4e41705fdfd60..33e6dc5c46e69 100644 --- a/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionCommand.ts +++ b/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionCommand.ts @@ -76,6 +76,7 @@ export interface GetMaintenanceWindowExecutionCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetMaintenanceWindowExecutionCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskCommand.ts b/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskCommand.ts index 99b82d8c3e7f0..26cda0e85794b 100644 --- a/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskCommand.ts +++ b/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskCommand.ts @@ -109,6 +109,7 @@ export interface GetMaintenanceWindowExecutionTaskCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetMaintenanceWindowExecutionTaskCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.ts b/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.ts index f1592dddbb9e2..9968f58bc9f66 100644 --- a/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.ts +++ b/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.ts @@ -87,6 +87,7 @@ export interface GetMaintenanceWindowExecutionTaskInvocationCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetMaintenanceWindowExecutionTaskInvocationCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetMaintenanceWindowTaskCommand.ts b/clients/client-ssm/src/commands/GetMaintenanceWindowTaskCommand.ts index 94143392ea7b6..892c3918319d9 100644 --- a/clients/client-ssm/src/commands/GetMaintenanceWindowTaskCommand.ts +++ b/clients/client-ssm/src/commands/GetMaintenanceWindowTaskCommand.ts @@ -159,6 +159,7 @@ export interface GetMaintenanceWindowTaskCommandOutput extends GetMaintenanceWin * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetMaintenanceWindowTaskCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetOpsItemCommand.ts b/clients/client-ssm/src/commands/GetOpsItemCommand.ts index e3669e3f1636f..fa3f9560a77d6 100644 --- a/clients/client-ssm/src/commands/GetOpsItemCommand.ts +++ b/clients/client-ssm/src/commands/GetOpsItemCommand.ts @@ -109,6 +109,7 @@ export interface GetOpsItemCommandOutput extends GetOpsItemResponse, __MetadataB * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetOpsItemCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetOpsMetadataCommand.ts b/clients/client-ssm/src/commands/GetOpsMetadataCommand.ts index 84a7da3b3ac73..6f98a6430bc63 100644 --- a/clients/client-ssm/src/commands/GetOpsMetadataCommand.ts +++ b/clients/client-ssm/src/commands/GetOpsMetadataCommand.ts @@ -72,6 +72,7 @@ export interface GetOpsMetadataCommandOutput extends GetOpsMetadataResult, __Met * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetOpsMetadataCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetOpsSummaryCommand.ts b/clients/client-ssm/src/commands/GetOpsSummaryCommand.ts index ff2067e5354fe..17b236d7c4150 100644 --- a/clients/client-ssm/src/commands/GetOpsSummaryCommand.ts +++ b/clients/client-ssm/src/commands/GetOpsSummaryCommand.ts @@ -140,6 +140,7 @@ export interface GetOpsSummaryCommandOutput extends GetOpsSummaryResult, __Metad * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetOpsSummaryCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetParameterCommand.ts b/clients/client-ssm/src/commands/GetParameterCommand.ts index 4057ec72b9f1a..3c5365d26f4bd 100644 --- a/clients/client-ssm/src/commands/GetParameterCommand.ts +++ b/clients/client-ssm/src/commands/GetParameterCommand.ts @@ -87,6 +87,7 @@ export interface GetParameterCommandOutput extends GetParameterResult, __Metadat * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetParameterCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetParameterHistoryCommand.ts b/clients/client-ssm/src/commands/GetParameterHistoryCommand.ts index e01e6e206ac33..476d1617e6a4d 100644 --- a/clients/client-ssm/src/commands/GetParameterHistoryCommand.ts +++ b/clients/client-ssm/src/commands/GetParameterHistoryCommand.ts @@ -110,6 +110,7 @@ export interface GetParameterHistoryCommandOutput extends GetParameterHistoryRes * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetParameterHistoryCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetParametersByPathCommand.ts b/clients/client-ssm/src/commands/GetParametersByPathCommand.ts index c6ffca4353ca5..b8eb9b8dbae1b 100644 --- a/clients/client-ssm/src/commands/GetParametersByPathCommand.ts +++ b/clients/client-ssm/src/commands/GetParametersByPathCommand.ts @@ -110,6 +110,7 @@ export interface GetParametersByPathCommandOutput extends GetParametersByPathRes * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetParametersByPathCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetParametersCommand.ts b/clients/client-ssm/src/commands/GetParametersCommand.ts index 1ac6f3f84cba4..f2d3acfa686c3 100644 --- a/clients/client-ssm/src/commands/GetParametersCommand.ts +++ b/clients/client-ssm/src/commands/GetParametersCommand.ts @@ -83,6 +83,7 @@ export interface GetParametersCommandOutput extends GetParametersResult, __Metad * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetParametersCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetPatchBaselineCommand.ts b/clients/client-ssm/src/commands/GetPatchBaselineCommand.ts index f9790ad024abe..73d42e7279d3c 100644 --- a/clients/client-ssm/src/commands/GetPatchBaselineCommand.ts +++ b/clients/client-ssm/src/commands/GetPatchBaselineCommand.ts @@ -128,6 +128,7 @@ export interface GetPatchBaselineCommandOutput extends GetPatchBaselineResult, _ * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetPatchBaselineCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetPatchBaselineForPatchGroupCommand.ts b/clients/client-ssm/src/commands/GetPatchBaselineForPatchGroupCommand.ts index 61acee9feb44f..1548d479f466f 100644 --- a/clients/client-ssm/src/commands/GetPatchBaselineForPatchGroupCommand.ts +++ b/clients/client-ssm/src/commands/GetPatchBaselineForPatchGroupCommand.ts @@ -66,6 +66,7 @@ export interface GetPatchBaselineForPatchGroupCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetPatchBaselineForPatchGroupCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetResourcePoliciesCommand.ts b/clients/client-ssm/src/commands/GetResourcePoliciesCommand.ts index 00547ce5d7966..da5c751c42c86 100644 --- a/clients/client-ssm/src/commands/GetResourcePoliciesCommand.ts +++ b/clients/client-ssm/src/commands/GetResourcePoliciesCommand.ts @@ -74,6 +74,7 @@ export interface GetResourcePoliciesCommandOutput extends GetResourcePoliciesRes * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetResourcePoliciesCommand extends $Command diff --git a/clients/client-ssm/src/commands/GetServiceSettingCommand.ts b/clients/client-ssm/src/commands/GetServiceSettingCommand.ts index 2167c64a988dc..623661e169c16 100644 --- a/clients/client-ssm/src/commands/GetServiceSettingCommand.ts +++ b/clients/client-ssm/src/commands/GetServiceSettingCommand.ts @@ -82,6 +82,7 @@ export interface GetServiceSettingCommandOutput extends GetServiceSettingResult, * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class GetServiceSettingCommand extends $Command diff --git a/clients/client-ssm/src/commands/LabelParameterVersionCommand.ts b/clients/client-ssm/src/commands/LabelParameterVersionCommand.ts index 06dcaff694f9d..4a4d19d094ab7 100644 --- a/clients/client-ssm/src/commands/LabelParameterVersionCommand.ts +++ b/clients/client-ssm/src/commands/LabelParameterVersionCommand.ts @@ -119,6 +119,7 @@ export interface LabelParameterVersionCommandOutput extends LabelParameterVersio * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class LabelParameterVersionCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListAssociationVersionsCommand.ts b/clients/client-ssm/src/commands/ListAssociationVersionsCommand.ts index e8f62b8b01195..cd5d61f3ac747 100644 --- a/clients/client-ssm/src/commands/ListAssociationVersionsCommand.ts +++ b/clients/client-ssm/src/commands/ListAssociationVersionsCommand.ts @@ -153,6 +153,7 @@ export interface ListAssociationVersionsCommandOutput extends ListAssociationVer * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListAssociationVersionsCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListAssociationsCommand.ts b/clients/client-ssm/src/commands/ListAssociationsCommand.ts index 53e2de3192291..503f0bd3118e0 100644 --- a/clients/client-ssm/src/commands/ListAssociationsCommand.ts +++ b/clients/client-ssm/src/commands/ListAssociationsCommand.ts @@ -106,6 +106,7 @@ export interface ListAssociationsCommandOutput extends ListAssociationsResult, _ * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListAssociationsCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListCommandInvocationsCommand.ts b/clients/client-ssm/src/commands/ListCommandInvocationsCommand.ts index 7df60afaed9e8..7ffc48ff907b0 100644 --- a/clients/client-ssm/src/commands/ListCommandInvocationsCommand.ts +++ b/clients/client-ssm/src/commands/ListCommandInvocationsCommand.ts @@ -145,6 +145,7 @@ export interface ListCommandInvocationsCommandOutput extends ListCommandInvocati * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListCommandInvocationsCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListCommandsCommand.ts b/clients/client-ssm/src/commands/ListCommandsCommand.ts index df67b6f3b1ea2..1435a74a5b825 100644 --- a/clients/client-ssm/src/commands/ListCommandsCommand.ts +++ b/clients/client-ssm/src/commands/ListCommandsCommand.ts @@ -160,6 +160,7 @@ export interface ListCommandsCommandOutput extends ListCommandsResult, __Metadat * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListCommandsCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListComplianceItemsCommand.ts b/clients/client-ssm/src/commands/ListComplianceItemsCommand.ts index 9c088b13740b4..15ff475cd163c 100644 --- a/clients/client-ssm/src/commands/ListComplianceItemsCommand.ts +++ b/clients/client-ssm/src/commands/ListComplianceItemsCommand.ts @@ -108,6 +108,7 @@ export interface ListComplianceItemsCommandOutput extends ListComplianceItemsRes * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListComplianceItemsCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListComplianceSummariesCommand.ts b/clients/client-ssm/src/commands/ListComplianceSummariesCommand.ts index 8ee1c1ea43f2c..c925ff571987d 100644 --- a/clients/client-ssm/src/commands/ListComplianceSummariesCommand.ts +++ b/clients/client-ssm/src/commands/ListComplianceSummariesCommand.ts @@ -103,6 +103,7 @@ export interface ListComplianceSummariesCommandOutput extends ListComplianceSumm * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListComplianceSummariesCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListDocumentMetadataHistoryCommand.ts b/clients/client-ssm/src/commands/ListDocumentMetadataHistoryCommand.ts index 0f00004b30cb6..e0cf689f53159 100644 --- a/clients/client-ssm/src/commands/ListDocumentMetadataHistoryCommand.ts +++ b/clients/client-ssm/src/commands/ListDocumentMetadataHistoryCommand.ts @@ -92,6 +92,7 @@ export interface ListDocumentMetadataHistoryCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListDocumentMetadataHistoryCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListDocumentVersionsCommand.ts b/clients/client-ssm/src/commands/ListDocumentVersionsCommand.ts index 5c667b5179e53..c72c4fc971b2a 100644 --- a/clients/client-ssm/src/commands/ListDocumentVersionsCommand.ts +++ b/clients/client-ssm/src/commands/ListDocumentVersionsCommand.ts @@ -80,6 +80,7 @@ export interface ListDocumentVersionsCommandOutput extends ListDocumentVersionsR * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListDocumentVersionsCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListDocumentsCommand.ts b/clients/client-ssm/src/commands/ListDocumentsCommand.ts index 83016149f8ebb..f544ec0bd2e67 100644 --- a/clients/client-ssm/src/commands/ListDocumentsCommand.ts +++ b/clients/client-ssm/src/commands/ListDocumentsCommand.ts @@ -113,6 +113,7 @@ export interface ListDocumentsCommandOutput extends ListDocumentsResult, __Metad * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListDocumentsCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListInventoryEntriesCommand.ts b/clients/client-ssm/src/commands/ListInventoryEntriesCommand.ts index fa6a6f593f9c4..ade9772d34636 100644 --- a/clients/client-ssm/src/commands/ListInventoryEntriesCommand.ts +++ b/clients/client-ssm/src/commands/ListInventoryEntriesCommand.ts @@ -108,6 +108,7 @@ export interface ListInventoryEntriesCommandOutput extends ListInventoryEntriesR * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListInventoryEntriesCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListNodesCommand.ts b/clients/client-ssm/src/commands/ListNodesCommand.ts index ff5d8ec754a35..623e0491b1d60 100644 --- a/clients/client-ssm/src/commands/ListNodesCommand.ts +++ b/clients/client-ssm/src/commands/ListNodesCommand.ts @@ -107,59 +107,8 @@ export interface ListNodesCommandOutput extends ListNodesResult, __MetadataBeare * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* - * @public - * @example ListNodes - * ```javascript - * // This example illustrates one usage of ListNodes - * const input = { - * "Filters": [ - * { - * "Key": "Region", - * "Type": "Equal", - * "Values": [ - * "us-east-2" - * ] - * } - * ], - * "MaxResults": 1, - * "SyncName": "AWS-QuickSetup-ManagedNode" - * }; - * const command = new ListNodesCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "NextToken": "A9lT8CAxj9aDFRi+MNAoFq08IEXAMPLE", - * "Nodes": [ - * { - * "CaptureTime": "2024-11-19T22:01:18", - * "Id": "i-02573cafcfEXAMPLE", - * "NodeType": { - * "Instance": { - * "AgentType": "amazon-ssm-agent", - * "AgentVersion": "3.3.859.0", - * "ComputerName": "ip-192.0.2.0.ec2.internal", - * "InstanceStatus": "Active", - * "IpAddress": "192.0.2.0", - * "ManagedStatus": "Managed", - * "PlatformName": "Amazon Linux", - * "PlatformType": "Linux", - * "PlatformVersion": "2023", - * "ResourceType": "EC2Instance" - * } - * }, - * "Owner": { - * "AccountId": "111122223333", - * "OrganizationalUnitId": "ou-b8dn-sasv9tfp", - * "OrganizationalUnitPath": "r-b8dn/ou-b8dn-sasv9tfp" - * }, - * "Region": "us-east-2" - * } - * ] - * } - * *\/ - * // example id: listnodes--ec13d561ee02 - * ``` * + * @public */ export class ListNodesCommand extends $Command .classBuilder< diff --git a/clients/client-ssm/src/commands/ListNodesSummaryCommand.ts b/clients/client-ssm/src/commands/ListNodesSummaryCommand.ts index 3ebef01f29859..bc39528ca56d3 100644 --- a/clients/client-ssm/src/commands/ListNodesSummaryCommand.ts +++ b/clients/client-ssm/src/commands/ListNodesSummaryCommand.ts @@ -107,50 +107,50 @@ export interface ListNodesSummaryCommandOutput extends ListNodesSummaryResult, _ * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* - * @public + * * @example ListNodesSummary * ```javascript * // This example illustrates one usage of ListNodesSummary * const input = { - * "Aggregators": [ + * Aggregators: [ * { - * "AggregatorType": "Count", - * "AttributeName": "Region", - * "TypeName": "Instance" + * AggregatorType: "Count", + * AttributeName: "Region", + * TypeName: "Instance" * } * ], - * "Filters": [ + * Filters: [ * { - * "Key": "InstanceStatus", - * "Type": "Equal", - * "Values": [ + * Key: "InstanceStatus", + * Type: "Equal", + * Values: [ * "Active" * ] * } * ], - * "MaxResults": 2, - * "NextToken": "A9lT8CAxj9aDFRi+MNAoFq08I---EXAMPLE", - * "SyncName": "AWS-QuickSetup-ManagedNode" + * MaxResults: 2, + * NextToken: "A9lT8CAxj9aDFRi+MNAoFq08I---EXAMPLE", + * SyncName: "AWS-QuickSetup-ManagedNode" * }; * const command = new ListNodesSummaryCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Summary": [ + * Summary: [ * { - * "Count": "26", - * "Region": "us-east-1" + * Count: "26", + * Region: "us-east-1" * }, * { - * "Count": "7", - * "Region": "us-east-2" + * Count: "7", + * Region: "us-east-2" * } * ] * } * *\/ - * // example id: listnodessummary-9a63f9e71ee0 * ``` * + * @public */ export class ListNodesSummaryCommand extends $Command .classBuilder< diff --git a/clients/client-ssm/src/commands/ListOpsItemEventsCommand.ts b/clients/client-ssm/src/commands/ListOpsItemEventsCommand.ts index 62523e8f967d8..6c4aab1dc5019 100644 --- a/clients/client-ssm/src/commands/ListOpsItemEventsCommand.ts +++ b/clients/client-ssm/src/commands/ListOpsItemEventsCommand.ts @@ -92,6 +92,7 @@ export interface ListOpsItemEventsCommandOutput extends ListOpsItemEventsRespons * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListOpsItemEventsCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListOpsItemRelatedItemsCommand.ts b/clients/client-ssm/src/commands/ListOpsItemRelatedItemsCommand.ts index d52b3cae2c579..917c73a23ff56 100644 --- a/clients/client-ssm/src/commands/ListOpsItemRelatedItemsCommand.ts +++ b/clients/client-ssm/src/commands/ListOpsItemRelatedItemsCommand.ts @@ -91,6 +91,7 @@ export interface ListOpsItemRelatedItemsCommandOutput extends ListOpsItemRelated * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListOpsItemRelatedItemsCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListOpsMetadataCommand.ts b/clients/client-ssm/src/commands/ListOpsMetadataCommand.ts index d9071ae528d1b..35afcad2c7b97 100644 --- a/clients/client-ssm/src/commands/ListOpsMetadataCommand.ts +++ b/clients/client-ssm/src/commands/ListOpsMetadataCommand.ts @@ -80,6 +80,7 @@ export interface ListOpsMetadataCommandOutput extends ListOpsMetadataResult, __M * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListOpsMetadataCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListResourceComplianceSummariesCommand.ts b/clients/client-ssm/src/commands/ListResourceComplianceSummariesCommand.ts index 3675ed2284a26..953d170d87fdb 100644 --- a/clients/client-ssm/src/commands/ListResourceComplianceSummariesCommand.ts +++ b/clients/client-ssm/src/commands/ListResourceComplianceSummariesCommand.ts @@ -117,6 +117,7 @@ export interface ListResourceComplianceSummariesCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListResourceComplianceSummariesCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListResourceDataSyncCommand.ts b/clients/client-ssm/src/commands/ListResourceDataSyncCommand.ts index 827925bf010f0..72c4b88ec2354 100644 --- a/clients/client-ssm/src/commands/ListResourceDataSyncCommand.ts +++ b/clients/client-ssm/src/commands/ListResourceDataSyncCommand.ts @@ -113,6 +113,7 @@ export interface ListResourceDataSyncCommandOutput extends ListResourceDataSyncR * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListResourceDataSyncCommand extends $Command diff --git a/clients/client-ssm/src/commands/ListTagsForResourceCommand.ts b/clients/client-ssm/src/commands/ListTagsForResourceCommand.ts index d749b90e83c71..787cb5ad6e102 100644 --- a/clients/client-ssm/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ssm/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-ssm/src/commands/ModifyDocumentPermissionCommand.ts b/clients/client-ssm/src/commands/ModifyDocumentPermissionCommand.ts index a4deb236597ab..66850a006433f 100644 --- a/clients/client-ssm/src/commands/ModifyDocumentPermissionCommand.ts +++ b/clients/client-ssm/src/commands/ModifyDocumentPermissionCommand.ts @@ -85,6 +85,7 @@ export interface ModifyDocumentPermissionCommandOutput extends ModifyDocumentPer * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ModifyDocumentPermissionCommand extends $Command diff --git a/clients/client-ssm/src/commands/PutComplianceItemsCommand.ts b/clients/client-ssm/src/commands/PutComplianceItemsCommand.ts index bc71ff0862f66..c53aaac7a1ea6 100644 --- a/clients/client-ssm/src/commands/PutComplianceItemsCommand.ts +++ b/clients/client-ssm/src/commands/PutComplianceItemsCommand.ts @@ -153,6 +153,7 @@ export interface PutComplianceItemsCommandOutput extends PutComplianceItemsResul * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class PutComplianceItemsCommand extends $Command diff --git a/clients/client-ssm/src/commands/PutInventoryCommand.ts b/clients/client-ssm/src/commands/PutInventoryCommand.ts index 97098ee0a012f..f751199c468a5 100644 --- a/clients/client-ssm/src/commands/PutInventoryCommand.ts +++ b/clients/client-ssm/src/commands/PutInventoryCommand.ts @@ -131,6 +131,7 @@ export interface PutInventoryCommandOutput extends PutInventoryResult, __Metadat * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class PutInventoryCommand extends $Command diff --git a/clients/client-ssm/src/commands/PutParameterCommand.ts b/clients/client-ssm/src/commands/PutParameterCommand.ts index 9263a8bf374ea..cca8ca0458062 100644 --- a/clients/client-ssm/src/commands/PutParameterCommand.ts +++ b/clients/client-ssm/src/commands/PutParameterCommand.ts @@ -138,6 +138,7 @@ export interface PutParameterCommandOutput extends PutParameterResult, __Metadat * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class PutParameterCommand extends $Command diff --git a/clients/client-ssm/src/commands/PutResourcePolicyCommand.ts b/clients/client-ssm/src/commands/PutResourcePolicyCommand.ts index 152f6efccdfc6..163368ac786f5 100644 --- a/clients/client-ssm/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-ssm/src/commands/PutResourcePolicyCommand.ts @@ -117,6 +117,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-ssm/src/commands/RegisterDefaultPatchBaselineCommand.ts b/clients/client-ssm/src/commands/RegisterDefaultPatchBaselineCommand.ts index df6c4bc423cc7..d87668519e5c1 100644 --- a/clients/client-ssm/src/commands/RegisterDefaultPatchBaselineCommand.ts +++ b/clients/client-ssm/src/commands/RegisterDefaultPatchBaselineCommand.ts @@ -76,6 +76,7 @@ export interface RegisterDefaultPatchBaselineCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class RegisterDefaultPatchBaselineCommand extends $Command diff --git a/clients/client-ssm/src/commands/RegisterPatchBaselineForPatchGroupCommand.ts b/clients/client-ssm/src/commands/RegisterPatchBaselineForPatchGroupCommand.ts index fd82c0b6d32db..612cb1a61adeb 100644 --- a/clients/client-ssm/src/commands/RegisterPatchBaselineForPatchGroupCommand.ts +++ b/clients/client-ssm/src/commands/RegisterPatchBaselineForPatchGroupCommand.ts @@ -87,6 +87,7 @@ export interface RegisterPatchBaselineForPatchGroupCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class RegisterPatchBaselineForPatchGroupCommand extends $Command diff --git a/clients/client-ssm/src/commands/RegisterTargetWithMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/RegisterTargetWithMaintenanceWindowCommand.ts index 1260b35520ed7..e77b945ed8964 100644 --- a/clients/client-ssm/src/commands/RegisterTargetWithMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/RegisterTargetWithMaintenanceWindowCommand.ts @@ -96,6 +96,7 @@ export interface RegisterTargetWithMaintenanceWindowCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class RegisterTargetWithMaintenanceWindowCommand extends $Command diff --git a/clients/client-ssm/src/commands/RegisterTaskWithMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/RegisterTaskWithMaintenanceWindowCommand.ts index 7c19fd2d967a1..408bd32f7a478 100644 --- a/clients/client-ssm/src/commands/RegisterTaskWithMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/RegisterTaskWithMaintenanceWindowCommand.ts @@ -170,6 +170,7 @@ export interface RegisterTaskWithMaintenanceWindowCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class RegisterTaskWithMaintenanceWindowCommand extends $Command diff --git a/clients/client-ssm/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-ssm/src/commands/RemoveTagsFromResourceCommand.ts index 416a022c0365a..f8bdebfdc7ff9 100644 --- a/clients/client-ssm/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-ssm/src/commands/RemoveTagsFromResourceCommand.ts @@ -70,6 +70,7 @@ export interface RemoveTagsFromResourceCommandOutput extends RemoveTagsFromResou * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class RemoveTagsFromResourceCommand extends $Command diff --git a/clients/client-ssm/src/commands/ResetServiceSettingCommand.ts b/clients/client-ssm/src/commands/ResetServiceSettingCommand.ts index 84c59f683fd3d..f105c5d3c3dbc 100644 --- a/clients/client-ssm/src/commands/ResetServiceSettingCommand.ts +++ b/clients/client-ssm/src/commands/ResetServiceSettingCommand.ts @@ -86,6 +86,7 @@ export interface ResetServiceSettingCommandOutput extends ResetServiceSettingRes * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ResetServiceSettingCommand extends $Command diff --git a/clients/client-ssm/src/commands/ResumeSessionCommand.ts b/clients/client-ssm/src/commands/ResumeSessionCommand.ts index 912a11e7ae7ba..e2492d1fce628 100644 --- a/clients/client-ssm/src/commands/ResumeSessionCommand.ts +++ b/clients/client-ssm/src/commands/ResumeSessionCommand.ts @@ -71,6 +71,7 @@ export interface ResumeSessionCommandOutput extends ResumeSessionResponse, __Met * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class ResumeSessionCommand extends $Command diff --git a/clients/client-ssm/src/commands/SendAutomationSignalCommand.ts b/clients/client-ssm/src/commands/SendAutomationSignalCommand.ts index c9e0a57f941bf..cf48d5784e690 100644 --- a/clients/client-ssm/src/commands/SendAutomationSignalCommand.ts +++ b/clients/client-ssm/src/commands/SendAutomationSignalCommand.ts @@ -74,6 +74,7 @@ export interface SendAutomationSignalCommandOutput extends SendAutomationSignalR * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class SendAutomationSignalCommand extends $Command diff --git a/clients/client-ssm/src/commands/SendCommandCommand.ts b/clients/client-ssm/src/commands/SendCommandCommand.ts index 484dcaabd1c83..0d2271e99ef92 100644 --- a/clients/client-ssm/src/commands/SendCommandCommand.ts +++ b/clients/client-ssm/src/commands/SendCommandCommand.ts @@ -222,6 +222,7 @@ export interface SendCommandCommandOutput extends SendCommandResult, __MetadataB * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class SendCommandCommand extends $Command diff --git a/clients/client-ssm/src/commands/StartAssociationsOnceCommand.ts b/clients/client-ssm/src/commands/StartAssociationsOnceCommand.ts index 5605f14f9aac8..b96fd5f69953a 100644 --- a/clients/client-ssm/src/commands/StartAssociationsOnceCommand.ts +++ b/clients/client-ssm/src/commands/StartAssociationsOnceCommand.ts @@ -62,6 +62,7 @@ export interface StartAssociationsOnceCommandOutput extends StartAssociationsOnc * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class StartAssociationsOnceCommand extends $Command diff --git a/clients/client-ssm/src/commands/StartAutomationExecutionCommand.ts b/clients/client-ssm/src/commands/StartAutomationExecutionCommand.ts index 8c1f938dedd34..684c501481b01 100644 --- a/clients/client-ssm/src/commands/StartAutomationExecutionCommand.ts +++ b/clients/client-ssm/src/commands/StartAutomationExecutionCommand.ts @@ -157,6 +157,7 @@ export interface StartAutomationExecutionCommandOutput extends StartAutomationEx * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class StartAutomationExecutionCommand extends $Command diff --git a/clients/client-ssm/src/commands/StartChangeRequestExecutionCommand.ts b/clients/client-ssm/src/commands/StartChangeRequestExecutionCommand.ts index 4141505924c36..7170cab442f24 100644 --- a/clients/client-ssm/src/commands/StartChangeRequestExecutionCommand.ts +++ b/clients/client-ssm/src/commands/StartChangeRequestExecutionCommand.ts @@ -165,6 +165,7 @@ export interface StartChangeRequestExecutionCommandOutput extends StartChangeReq * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class StartChangeRequestExecutionCommand extends $Command diff --git a/clients/client-ssm/src/commands/StartExecutionPreviewCommand.ts b/clients/client-ssm/src/commands/StartExecutionPreviewCommand.ts index 7eae395efebeb..6beed270f7d53 100644 --- a/clients/client-ssm/src/commands/StartExecutionPreviewCommand.ts +++ b/clients/client-ssm/src/commands/StartExecutionPreviewCommand.ts @@ -125,23 +125,23 @@ export interface StartExecutionPreviewCommandOutput extends StartExecutionPrevie * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* - * @public + * * @example StartExecutionPreview * ```javascript * // This example illustrates one usage of StartExecutionPreview * const input = { - * "DocumentName": "AWS-StartEC2Instance" + * DocumentName: "AWS-StartEC2Instance" * }; * const command = new StartExecutionPreviewCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ExecutionPreviewId": "2f27d6e5-9676-4708-b8bd-aef0ab47bb26" + * ExecutionPreviewId: "2f27d6e5-9676-4708-b8bd-aef0ab47bb26" * } * *\/ - * // example id: startexecutionpreview-7a6b962646a9 * ``` * + * @public */ export class StartExecutionPreviewCommand extends $Command .classBuilder< diff --git a/clients/client-ssm/src/commands/StartSessionCommand.ts b/clients/client-ssm/src/commands/StartSessionCommand.ts index a3201a6363473..aad8375d9ae1a 100644 --- a/clients/client-ssm/src/commands/StartSessionCommand.ts +++ b/clients/client-ssm/src/commands/StartSessionCommand.ts @@ -86,6 +86,7 @@ export interface StartSessionCommandOutput extends StartSessionResponse, __Metad * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class StartSessionCommand extends $Command diff --git a/clients/client-ssm/src/commands/StopAutomationExecutionCommand.ts b/clients/client-ssm/src/commands/StopAutomationExecutionCommand.ts index 78790f7b68ecf..c403fa2d42c08 100644 --- a/clients/client-ssm/src/commands/StopAutomationExecutionCommand.ts +++ b/clients/client-ssm/src/commands/StopAutomationExecutionCommand.ts @@ -64,6 +64,7 @@ export interface StopAutomationExecutionCommandOutput extends StopAutomationExec * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class StopAutomationExecutionCommand extends $Command diff --git a/clients/client-ssm/src/commands/TerminateSessionCommand.ts b/clients/client-ssm/src/commands/TerminateSessionCommand.ts index de6c8021ea592..ef19cba2bdd1a 100644 --- a/clients/client-ssm/src/commands/TerminateSessionCommand.ts +++ b/clients/client-ssm/src/commands/TerminateSessionCommand.ts @@ -59,6 +59,7 @@ export interface TerminateSessionCommandOutput extends TerminateSessionResponse, * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class TerminateSessionCommand extends $Command diff --git a/clients/client-ssm/src/commands/UnlabelParameterVersionCommand.ts b/clients/client-ssm/src/commands/UnlabelParameterVersionCommand.ts index a92aa5f24d986..75becd4705613 100644 --- a/clients/client-ssm/src/commands/UnlabelParameterVersionCommand.ts +++ b/clients/client-ssm/src/commands/UnlabelParameterVersionCommand.ts @@ -82,6 +82,7 @@ export interface UnlabelParameterVersionCommandOutput extends UnlabelParameterVe * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UnlabelParameterVersionCommand extends $Command diff --git a/clients/client-ssm/src/commands/UpdateAssociationCommand.ts b/clients/client-ssm/src/commands/UpdateAssociationCommand.ts index 1cf726771fd03..738ca26a50ba6 100644 --- a/clients/client-ssm/src/commands/UpdateAssociationCommand.ts +++ b/clients/client-ssm/src/commands/UpdateAssociationCommand.ts @@ -321,6 +321,7 @@ export interface UpdateAssociationCommandOutput extends UpdateAssociationResult, * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UpdateAssociationCommand extends $Command diff --git a/clients/client-ssm/src/commands/UpdateAssociationStatusCommand.ts b/clients/client-ssm/src/commands/UpdateAssociationStatusCommand.ts index 15db071594313..6305fd92c74b5 100644 --- a/clients/client-ssm/src/commands/UpdateAssociationStatusCommand.ts +++ b/clients/client-ssm/src/commands/UpdateAssociationStatusCommand.ts @@ -218,6 +218,7 @@ export interface UpdateAssociationStatusCommandOutput extends UpdateAssociationS * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UpdateAssociationStatusCommand extends $Command diff --git a/clients/client-ssm/src/commands/UpdateDocumentCommand.ts b/clients/client-ssm/src/commands/UpdateDocumentCommand.ts index 9242f57b74c44..dac65c44484d9 100644 --- a/clients/client-ssm/src/commands/UpdateDocumentCommand.ts +++ b/clients/client-ssm/src/commands/UpdateDocumentCommand.ts @@ -170,6 +170,7 @@ export interface UpdateDocumentCommandOutput extends UpdateDocumentResult, __Met * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UpdateDocumentCommand extends $Command diff --git a/clients/client-ssm/src/commands/UpdateDocumentDefaultVersionCommand.ts b/clients/client-ssm/src/commands/UpdateDocumentDefaultVersionCommand.ts index 09409eb7eabf3..5f0b8a5fff242 100644 --- a/clients/client-ssm/src/commands/UpdateDocumentDefaultVersionCommand.ts +++ b/clients/client-ssm/src/commands/UpdateDocumentDefaultVersionCommand.ts @@ -82,6 +82,7 @@ export interface UpdateDocumentDefaultVersionCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UpdateDocumentDefaultVersionCommand extends $Command diff --git a/clients/client-ssm/src/commands/UpdateDocumentMetadataCommand.ts b/clients/client-ssm/src/commands/UpdateDocumentMetadataCommand.ts index e4860057db9f9..485ceb7202436 100644 --- a/clients/client-ssm/src/commands/UpdateDocumentMetadataCommand.ts +++ b/clients/client-ssm/src/commands/UpdateDocumentMetadataCommand.ts @@ -77,6 +77,7 @@ export interface UpdateDocumentMetadataCommandOutput extends UpdateDocumentMetad * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UpdateDocumentMetadataCommand extends $Command diff --git a/clients/client-ssm/src/commands/UpdateMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/UpdateMaintenanceWindowCommand.ts index 0545e75c89fa9..855d5a3736f2c 100644 --- a/clients/client-ssm/src/commands/UpdateMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/UpdateMaintenanceWindowCommand.ts @@ -100,6 +100,7 @@ export interface UpdateMaintenanceWindowCommandOutput extends UpdateMaintenanceW * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UpdateMaintenanceWindowCommand extends $Command diff --git a/clients/client-ssm/src/commands/UpdateMaintenanceWindowTargetCommand.ts b/clients/client-ssm/src/commands/UpdateMaintenanceWindowTargetCommand.ts index ace55896dd058..b7da0df80f74f 100644 --- a/clients/client-ssm/src/commands/UpdateMaintenanceWindowTargetCommand.ts +++ b/clients/client-ssm/src/commands/UpdateMaintenanceWindowTargetCommand.ts @@ -124,6 +124,7 @@ export interface UpdateMaintenanceWindowTargetCommandOutput * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UpdateMaintenanceWindowTargetCommand extends $Command diff --git a/clients/client-ssm/src/commands/UpdateMaintenanceWindowTaskCommand.ts b/clients/client-ssm/src/commands/UpdateMaintenanceWindowTaskCommand.ts index a23ba054d6093..04d2f8cd9eb48 100644 --- a/clients/client-ssm/src/commands/UpdateMaintenanceWindowTaskCommand.ts +++ b/clients/client-ssm/src/commands/UpdateMaintenanceWindowTaskCommand.ts @@ -289,6 +289,7 @@ export interface UpdateMaintenanceWindowTaskCommandOutput extends UpdateMaintena * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UpdateMaintenanceWindowTaskCommand extends $Command diff --git a/clients/client-ssm/src/commands/UpdateManagedInstanceRoleCommand.ts b/clients/client-ssm/src/commands/UpdateManagedInstanceRoleCommand.ts index 95b75cdf35a36..b72c8c612b692 100644 --- a/clients/client-ssm/src/commands/UpdateManagedInstanceRoleCommand.ts +++ b/clients/client-ssm/src/commands/UpdateManagedInstanceRoleCommand.ts @@ -79,6 +79,7 @@ export interface UpdateManagedInstanceRoleCommandOutput extends UpdateManagedIns * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UpdateManagedInstanceRoleCommand extends $Command diff --git a/clients/client-ssm/src/commands/UpdateOpsItemCommand.ts b/clients/client-ssm/src/commands/UpdateOpsItemCommand.ts index ce30f628b8ad8..42f7011bdd2e6 100644 --- a/clients/client-ssm/src/commands/UpdateOpsItemCommand.ts +++ b/clients/client-ssm/src/commands/UpdateOpsItemCommand.ts @@ -112,6 +112,7 @@ export interface UpdateOpsItemCommandOutput extends UpdateOpsItemResponse, __Met * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UpdateOpsItemCommand extends $Command diff --git a/clients/client-ssm/src/commands/UpdateOpsMetadataCommand.ts b/clients/client-ssm/src/commands/UpdateOpsMetadataCommand.ts index 230efe5acecfe..1d7b472bdc4fd 100644 --- a/clients/client-ssm/src/commands/UpdateOpsMetadataCommand.ts +++ b/clients/client-ssm/src/commands/UpdateOpsMetadataCommand.ts @@ -80,6 +80,7 @@ export interface UpdateOpsMetadataCommandOutput extends UpdateOpsMetadataResult, * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UpdateOpsMetadataCommand extends $Command diff --git a/clients/client-ssm/src/commands/UpdatePatchBaselineCommand.ts b/clients/client-ssm/src/commands/UpdatePatchBaselineCommand.ts index ab3438f1c60d4..b6d2d821f3c6d 100644 --- a/clients/client-ssm/src/commands/UpdatePatchBaselineCommand.ts +++ b/clients/client-ssm/src/commands/UpdatePatchBaselineCommand.ts @@ -180,6 +180,7 @@ export interface UpdatePatchBaselineCommandOutput extends UpdatePatchBaselineRes * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UpdatePatchBaselineCommand extends $Command diff --git a/clients/client-ssm/src/commands/UpdateResourceDataSyncCommand.ts b/clients/client-ssm/src/commands/UpdateResourceDataSyncCommand.ts index fe78f9d923a63..b3286ae87421b 100644 --- a/clients/client-ssm/src/commands/UpdateResourceDataSyncCommand.ts +++ b/clients/client-ssm/src/commands/UpdateResourceDataSyncCommand.ts @@ -92,6 +92,7 @@ export interface UpdateResourceDataSyncCommandOutput extends UpdateResourceDataS * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UpdateResourceDataSyncCommand extends $Command diff --git a/clients/client-ssm/src/commands/UpdateServiceSettingCommand.ts b/clients/client-ssm/src/commands/UpdateServiceSettingCommand.ts index 6f16566845023..0a9837f9e7efe 100644 --- a/clients/client-ssm/src/commands/UpdateServiceSettingCommand.ts +++ b/clients/client-ssm/src/commands/UpdateServiceSettingCommand.ts @@ -77,6 +77,7 @@ export interface UpdateServiceSettingCommandOutput extends UpdateServiceSettingR * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* + * * @public */ export class UpdateServiceSettingCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/AttachCustomerManagedPolicyReferenceToPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/AttachCustomerManagedPolicyReferenceToPermissionSetCommand.ts index ad1d5501969a8..e7e9690440986 100644 --- a/clients/client-sso-admin/src/commands/AttachCustomerManagedPolicyReferenceToPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/AttachCustomerManagedPolicyReferenceToPermissionSetCommand.ts @@ -94,6 +94,7 @@ export interface AttachCustomerManagedPolicyReferenceToPermissionSetCommandOutpu * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class AttachCustomerManagedPolicyReferenceToPermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/AttachManagedPolicyToPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/AttachManagedPolicyToPermissionSetCommand.ts index f5be774be1d2a..6b5ce5667de17 100644 --- a/clients/client-sso-admin/src/commands/AttachManagedPolicyToPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/AttachManagedPolicyToPermissionSetCommand.ts @@ -98,6 +98,7 @@ export interface AttachManagedPolicyToPermissionSetCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class AttachManagedPolicyToPermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/CreateAccountAssignmentCommand.ts b/clients/client-sso-admin/src/commands/CreateAccountAssignmentCommand.ts index 5a731ceb4b84c..ed68db1c18784 100644 --- a/clients/client-sso-admin/src/commands/CreateAccountAssignmentCommand.ts +++ b/clients/client-sso-admin/src/commands/CreateAccountAssignmentCommand.ts @@ -118,6 +118,7 @@ export interface CreateAccountAssignmentCommandOutput extends CreateAccountAssig * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class CreateAccountAssignmentCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/CreateApplicationAssignmentCommand.ts b/clients/client-sso-admin/src/commands/CreateApplicationAssignmentCommand.ts index 1dc82538cc33b..511cf45d61aad 100644 --- a/clients/client-sso-admin/src/commands/CreateApplicationAssignmentCommand.ts +++ b/clients/client-sso-admin/src/commands/CreateApplicationAssignmentCommand.ts @@ -84,6 +84,7 @@ export interface CreateApplicationAssignmentCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class CreateApplicationAssignmentCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/CreateApplicationCommand.ts b/clients/client-sso-admin/src/commands/CreateApplicationCommand.ts index 3adcc684855d0..825e86cc2c262 100644 --- a/clients/client-sso-admin/src/commands/CreateApplicationCommand.ts +++ b/clients/client-sso-admin/src/commands/CreateApplicationCommand.ts @@ -100,6 +100,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class CreateApplicationCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/CreateInstanceAccessControlAttributeConfigurationCommand.ts b/clients/client-sso-admin/src/commands/CreateInstanceAccessControlAttributeConfigurationCommand.ts index 9623dad6f174e..5d02a1e682e7c 100644 --- a/clients/client-sso-admin/src/commands/CreateInstanceAccessControlAttributeConfigurationCommand.ts +++ b/clients/client-sso-admin/src/commands/CreateInstanceAccessControlAttributeConfigurationCommand.ts @@ -104,6 +104,7 @@ export interface CreateInstanceAccessControlAttributeConfigurationCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class CreateInstanceAccessControlAttributeConfigurationCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/CreateInstanceCommand.ts b/clients/client-sso-admin/src/commands/CreateInstanceCommand.ts index e07fbc23055d0..76be480f0ec52 100644 --- a/clients/client-sso-admin/src/commands/CreateInstanceCommand.ts +++ b/clients/client-sso-admin/src/commands/CreateInstanceCommand.ts @@ -97,6 +97,7 @@ export interface CreateInstanceCommandOutput extends CreateInstanceResponse, __M * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class CreateInstanceCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/CreatePermissionSetCommand.ts b/clients/client-sso-admin/src/commands/CreatePermissionSetCommand.ts index 7f50cda770e4d..f4d3269c1f97b 100644 --- a/clients/client-sso-admin/src/commands/CreatePermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/CreatePermissionSetCommand.ts @@ -104,6 +104,7 @@ export interface CreatePermissionSetCommandOutput extends CreatePermissionSetRes * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class CreatePermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/CreateTrustedTokenIssuerCommand.ts b/clients/client-sso-admin/src/commands/CreateTrustedTokenIssuerCommand.ts index 549f4cf9787c0..7c0b3d9790481 100644 --- a/clients/client-sso-admin/src/commands/CreateTrustedTokenIssuerCommand.ts +++ b/clients/client-sso-admin/src/commands/CreateTrustedTokenIssuerCommand.ts @@ -99,6 +99,7 @@ export interface CreateTrustedTokenIssuerCommandOutput extends CreateTrustedToke * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class CreateTrustedTokenIssuerCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DeleteAccountAssignmentCommand.ts b/clients/client-sso-admin/src/commands/DeleteAccountAssignmentCommand.ts index 78ce81d75fc5e..52b6f37dece4f 100644 --- a/clients/client-sso-admin/src/commands/DeleteAccountAssignmentCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteAccountAssignmentCommand.ts @@ -99,6 +99,7 @@ export interface DeleteAccountAssignmentCommandOutput extends DeleteAccountAssig * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DeleteAccountAssignmentCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DeleteApplicationAccessScopeCommand.ts b/clients/client-sso-admin/src/commands/DeleteApplicationAccessScopeCommand.ts index dddab4a0f7c6c..4087af580629a 100644 --- a/clients/client-sso-admin/src/commands/DeleteApplicationAccessScopeCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteApplicationAccessScopeCommand.ts @@ -80,6 +80,7 @@ export interface DeleteApplicationAccessScopeCommandOutput extends __MetadataBea * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DeleteApplicationAccessScopeCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DeleteApplicationAssignmentCommand.ts b/clients/client-sso-admin/src/commands/DeleteApplicationAssignmentCommand.ts index 4207f99c09755..1f1d291c9b149 100644 --- a/clients/client-sso-admin/src/commands/DeleteApplicationAssignmentCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteApplicationAssignmentCommand.ts @@ -81,6 +81,7 @@ export interface DeleteApplicationAssignmentCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DeleteApplicationAssignmentCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DeleteApplicationAuthenticationMethodCommand.ts b/clients/client-sso-admin/src/commands/DeleteApplicationAuthenticationMethodCommand.ts index 2b0039dacebd8..1ac9004059b7d 100644 --- a/clients/client-sso-admin/src/commands/DeleteApplicationAuthenticationMethodCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteApplicationAuthenticationMethodCommand.ts @@ -81,6 +81,7 @@ export interface DeleteApplicationAuthenticationMethodCommandOutput extends __Me * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DeleteApplicationAuthenticationMethodCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DeleteApplicationCommand.ts b/clients/client-sso-admin/src/commands/DeleteApplicationCommand.ts index 3a8c920a751a1..e17fd3004d0f5 100644 --- a/clients/client-sso-admin/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteApplicationCommand.ts @@ -77,6 +77,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DeleteApplicationCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DeleteApplicationGrantCommand.ts b/clients/client-sso-admin/src/commands/DeleteApplicationGrantCommand.ts index 944a5026e2fe5..f97d7e6e85e08 100644 --- a/clients/client-sso-admin/src/commands/DeleteApplicationGrantCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteApplicationGrantCommand.ts @@ -77,6 +77,7 @@ export interface DeleteApplicationGrantCommandOutput extends __MetadataBearer {} * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DeleteApplicationGrantCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DeleteInlinePolicyFromPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/DeleteInlinePolicyFromPermissionSetCommand.ts index e5ef096a9229d..dcc9a69f3a597 100644 --- a/clients/client-sso-admin/src/commands/DeleteInlinePolicyFromPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteInlinePolicyFromPermissionSetCommand.ts @@ -85,6 +85,7 @@ export interface DeleteInlinePolicyFromPermissionSetCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DeleteInlinePolicyFromPermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DeleteInstanceAccessControlAttributeConfigurationCommand.ts b/clients/client-sso-admin/src/commands/DeleteInstanceAccessControlAttributeConfigurationCommand.ts index 09ec61e7903d1..3691abdedd219 100644 --- a/clients/client-sso-admin/src/commands/DeleteInstanceAccessControlAttributeConfigurationCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteInstanceAccessControlAttributeConfigurationCommand.ts @@ -88,6 +88,7 @@ export interface DeleteInstanceAccessControlAttributeConfigurationCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DeleteInstanceAccessControlAttributeConfigurationCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DeleteInstanceCommand.ts b/clients/client-sso-admin/src/commands/DeleteInstanceCommand.ts index 4fb65e9514cd8..725cf53b79d30 100644 --- a/clients/client-sso-admin/src/commands/DeleteInstanceCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteInstanceCommand.ts @@ -75,6 +75,7 @@ export interface DeleteInstanceCommandOutput extends DeleteInstanceResponse, __M * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DeleteInstanceCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DeletePermissionSetCommand.ts b/clients/client-sso-admin/src/commands/DeletePermissionSetCommand.ts index 64a04985399c8..4e5db1d23fa05 100644 --- a/clients/client-sso-admin/src/commands/DeletePermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/DeletePermissionSetCommand.ts @@ -77,6 +77,7 @@ export interface DeletePermissionSetCommandOutput extends DeletePermissionSetRes * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DeletePermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DeletePermissionsBoundaryFromPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/DeletePermissionsBoundaryFromPermissionSetCommand.ts index e1dd2429d1a38..3ec5029b042f1 100644 --- a/clients/client-sso-admin/src/commands/DeletePermissionsBoundaryFromPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/DeletePermissionsBoundaryFromPermissionSetCommand.ts @@ -86,6 +86,7 @@ export interface DeletePermissionsBoundaryFromPermissionSetCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DeletePermissionsBoundaryFromPermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DeleteTrustedTokenIssuerCommand.ts b/clients/client-sso-admin/src/commands/DeleteTrustedTokenIssuerCommand.ts index a9f7228475b75..0a973a650c1da 100644 --- a/clients/client-sso-admin/src/commands/DeleteTrustedTokenIssuerCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteTrustedTokenIssuerCommand.ts @@ -79,6 +79,7 @@ export interface DeleteTrustedTokenIssuerCommandOutput extends DeleteTrustedToke * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DeleteTrustedTokenIssuerCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DescribeAccountAssignmentCreationStatusCommand.ts b/clients/client-sso-admin/src/commands/DescribeAccountAssignmentCreationStatusCommand.ts index 646ef2408d952..f1d135c5b6278 100644 --- a/clients/client-sso-admin/src/commands/DescribeAccountAssignmentCreationStatusCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeAccountAssignmentCreationStatusCommand.ts @@ -92,6 +92,7 @@ export interface DescribeAccountAssignmentCreationStatusCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DescribeAccountAssignmentCreationStatusCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DescribeAccountAssignmentDeletionStatusCommand.ts b/clients/client-sso-admin/src/commands/DescribeAccountAssignmentDeletionStatusCommand.ts index d7d70ac122ba0..f5ef361df0001 100644 --- a/clients/client-sso-admin/src/commands/DescribeAccountAssignmentDeletionStatusCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeAccountAssignmentDeletionStatusCommand.ts @@ -92,6 +92,7 @@ export interface DescribeAccountAssignmentDeletionStatusCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DescribeAccountAssignmentDeletionStatusCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DescribeApplicationAssignmentCommand.ts b/clients/client-sso-admin/src/commands/DescribeApplicationAssignmentCommand.ts index 7001679291398..a1a7b0dee7ec2 100644 --- a/clients/client-sso-admin/src/commands/DescribeApplicationAssignmentCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeApplicationAssignmentCommand.ts @@ -83,6 +83,7 @@ export interface DescribeApplicationAssignmentCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DescribeApplicationAssignmentCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DescribeApplicationCommand.ts b/clients/client-sso-admin/src/commands/DescribeApplicationCommand.ts index bf03d75427518..c2645c2e5dad3 100644 --- a/clients/client-sso-admin/src/commands/DescribeApplicationCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeApplicationCommand.ts @@ -86,6 +86,7 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DescribeApplicationCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DescribeApplicationProviderCommand.ts b/clients/client-sso-admin/src/commands/DescribeApplicationProviderCommand.ts index 7f47315494418..6b2c22692524d 100644 --- a/clients/client-sso-admin/src/commands/DescribeApplicationProviderCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeApplicationProviderCommand.ts @@ -88,6 +88,7 @@ export interface DescribeApplicationProviderCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DescribeApplicationProviderCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DescribeInstanceAccessControlAttributeConfigurationCommand.ts b/clients/client-sso-admin/src/commands/DescribeInstanceAccessControlAttributeConfigurationCommand.ts index da8c194107760..f977830bd16ed 100644 --- a/clients/client-sso-admin/src/commands/DescribeInstanceAccessControlAttributeConfigurationCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeInstanceAccessControlAttributeConfigurationCommand.ts @@ -97,6 +97,7 @@ export interface DescribeInstanceAccessControlAttributeConfigurationCommandOutpu * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DescribeInstanceAccessControlAttributeConfigurationCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DescribeInstanceCommand.ts b/clients/client-sso-admin/src/commands/DescribeInstanceCommand.ts index d33e5f150585a..86b461cf547fd 100644 --- a/clients/client-sso-admin/src/commands/DescribeInstanceCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeInstanceCommand.ts @@ -92,6 +92,7 @@ export interface DescribeInstanceCommandOutput extends DescribeInstanceResponse, * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DescribeInstanceCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DescribePermissionSetCommand.ts b/clients/client-sso-admin/src/commands/DescribePermissionSetCommand.ts index 2f38f86e44302..ab7aac99377de 100644 --- a/clients/client-sso-admin/src/commands/DescribePermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribePermissionSetCommand.ts @@ -80,6 +80,7 @@ export interface DescribePermissionSetCommandOutput extends DescribePermissionSe * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DescribePermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DescribePermissionSetProvisioningStatusCommand.ts b/clients/client-sso-admin/src/commands/DescribePermissionSetProvisioningStatusCommand.ts index c58ea47a8cc4c..58ccdfdcc5915 100644 --- a/clients/client-sso-admin/src/commands/DescribePermissionSetProvisioningStatusCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribePermissionSetProvisioningStatusCommand.ts @@ -89,6 +89,7 @@ export interface DescribePermissionSetProvisioningStatusCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DescribePermissionSetProvisioningStatusCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DescribeTrustedTokenIssuerCommand.ts b/clients/client-sso-admin/src/commands/DescribeTrustedTokenIssuerCommand.ts index 7cdeb3df21206..6ea9ddd1b1d42 100644 --- a/clients/client-sso-admin/src/commands/DescribeTrustedTokenIssuerCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeTrustedTokenIssuerCommand.ts @@ -83,6 +83,7 @@ export interface DescribeTrustedTokenIssuerCommandOutput extends DescribeTrusted * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DescribeTrustedTokenIssuerCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.ts index 77a1f1c699a21..b43442e9093d1 100644 --- a/clients/client-sso-admin/src/commands/DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.ts @@ -90,6 +90,7 @@ export interface DetachCustomerManagedPolicyReferenceFromPermissionSetCommandOut * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DetachCustomerManagedPolicyReferenceFromPermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/DetachManagedPolicyFromPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/DetachManagedPolicyFromPermissionSetCommand.ts index 4c657ca82a0d0..810e8993294f7 100644 --- a/clients/client-sso-admin/src/commands/DetachManagedPolicyFromPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/DetachManagedPolicyFromPermissionSetCommand.ts @@ -87,6 +87,7 @@ export interface DetachManagedPolicyFromPermissionSetCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class DetachManagedPolicyFromPermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/GetApplicationAccessScopeCommand.ts b/clients/client-sso-admin/src/commands/GetApplicationAccessScopeCommand.ts index 89f875b3a4788..7bbe087d0f0e9 100644 --- a/clients/client-sso-admin/src/commands/GetApplicationAccessScopeCommand.ts +++ b/clients/client-sso-admin/src/commands/GetApplicationAccessScopeCommand.ts @@ -76,6 +76,7 @@ export interface GetApplicationAccessScopeCommandOutput extends GetApplicationAc * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class GetApplicationAccessScopeCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/GetApplicationAssignmentConfigurationCommand.ts b/clients/client-sso-admin/src/commands/GetApplicationAssignmentConfigurationCommand.ts index 611920d9eccf3..9034556324c0c 100644 --- a/clients/client-sso-admin/src/commands/GetApplicationAssignmentConfigurationCommand.ts +++ b/clients/client-sso-admin/src/commands/GetApplicationAssignmentConfigurationCommand.ts @@ -81,6 +81,7 @@ export interface GetApplicationAssignmentConfigurationCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class GetApplicationAssignmentConfigurationCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/GetApplicationAuthenticationMethodCommand.ts b/clients/client-sso-admin/src/commands/GetApplicationAuthenticationMethodCommand.ts index dabb4460f8516..439b871289825 100644 --- a/clients/client-sso-admin/src/commands/GetApplicationAuthenticationMethodCommand.ts +++ b/clients/client-sso-admin/src/commands/GetApplicationAuthenticationMethodCommand.ts @@ -85,6 +85,7 @@ export interface GetApplicationAuthenticationMethodCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class GetApplicationAuthenticationMethodCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/GetApplicationGrantCommand.ts b/clients/client-sso-admin/src/commands/GetApplicationGrantCommand.ts index db911b5a814c0..4766b6fe5a0ed 100644 --- a/clients/client-sso-admin/src/commands/GetApplicationGrantCommand.ts +++ b/clients/client-sso-admin/src/commands/GetApplicationGrantCommand.ts @@ -91,6 +91,7 @@ export interface GetApplicationGrantCommandOutput extends GetApplicationGrantRes * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class GetApplicationGrantCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/GetInlinePolicyForPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/GetInlinePolicyForPermissionSetCommand.ts index 188d9f56a19e8..643c9ffb1a9c2 100644 --- a/clients/client-sso-admin/src/commands/GetInlinePolicyForPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/GetInlinePolicyForPermissionSetCommand.ts @@ -78,6 +78,7 @@ export interface GetInlinePolicyForPermissionSetCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class GetInlinePolicyForPermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/GetPermissionsBoundaryForPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/GetPermissionsBoundaryForPermissionSetCommand.ts index fa7fa196913f2..3c4938dfdd6fa 100644 --- a/clients/client-sso-admin/src/commands/GetPermissionsBoundaryForPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/GetPermissionsBoundaryForPermissionSetCommand.ts @@ -88,6 +88,7 @@ export interface GetPermissionsBoundaryForPermissionSetCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class GetPermissionsBoundaryForPermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListAccountAssignmentCreationStatusCommand.ts b/clients/client-sso-admin/src/commands/ListAccountAssignmentCreationStatusCommand.ts index 2951b57dd7cc6..a4fc4347aa90f 100644 --- a/clients/client-sso-admin/src/commands/ListAccountAssignmentCreationStatusCommand.ts +++ b/clients/client-sso-admin/src/commands/ListAccountAssignmentCreationStatusCommand.ts @@ -93,6 +93,7 @@ export interface ListAccountAssignmentCreationStatusCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListAccountAssignmentCreationStatusCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListAccountAssignmentDeletionStatusCommand.ts b/clients/client-sso-admin/src/commands/ListAccountAssignmentDeletionStatusCommand.ts index 1791c89acddff..00f861ec0c80c 100644 --- a/clients/client-sso-admin/src/commands/ListAccountAssignmentDeletionStatusCommand.ts +++ b/clients/client-sso-admin/src/commands/ListAccountAssignmentDeletionStatusCommand.ts @@ -93,6 +93,7 @@ export interface ListAccountAssignmentDeletionStatusCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListAccountAssignmentDeletionStatusCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListAccountAssignmentsCommand.ts b/clients/client-sso-admin/src/commands/ListAccountAssignmentsCommand.ts index 870457d2ac433..5fbd368b42489 100644 --- a/clients/client-sso-admin/src/commands/ListAccountAssignmentsCommand.ts +++ b/clients/client-sso-admin/src/commands/ListAccountAssignmentsCommand.ts @@ -85,6 +85,7 @@ export interface ListAccountAssignmentsCommandOutput extends ListAccountAssignme * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListAccountAssignmentsCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListAccountAssignmentsForPrincipalCommand.ts b/clients/client-sso-admin/src/commands/ListAccountAssignmentsForPrincipalCommand.ts index 40942c076fda0..039a1f9bf667d 100644 --- a/clients/client-sso-admin/src/commands/ListAccountAssignmentsForPrincipalCommand.ts +++ b/clients/client-sso-admin/src/commands/ListAccountAssignmentsForPrincipalCommand.ts @@ -96,6 +96,7 @@ export interface ListAccountAssignmentsForPrincipalCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListAccountAssignmentsForPrincipalCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListAccountsForProvisionedPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/ListAccountsForProvisionedPermissionSetCommand.ts index 54f4ece1b3bc7..c9f9a2800d7a7 100644 --- a/clients/client-sso-admin/src/commands/ListAccountsForProvisionedPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/ListAccountsForProvisionedPermissionSetCommand.ts @@ -88,6 +88,7 @@ export interface ListAccountsForProvisionedPermissionSetCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListAccountsForProvisionedPermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListApplicationAccessScopesCommand.ts b/clients/client-sso-admin/src/commands/ListApplicationAccessScopesCommand.ts index 2134e6e765e85..4263488de8c6e 100644 --- a/clients/client-sso-admin/src/commands/ListApplicationAccessScopesCommand.ts +++ b/clients/client-sso-admin/src/commands/ListApplicationAccessScopesCommand.ts @@ -84,6 +84,7 @@ export interface ListApplicationAccessScopesCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListApplicationAccessScopesCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListApplicationAssignmentsCommand.ts b/clients/client-sso-admin/src/commands/ListApplicationAssignmentsCommand.ts index cf5fbfbaebade..c1cd551336907 100644 --- a/clients/client-sso-admin/src/commands/ListApplicationAssignmentsCommand.ts +++ b/clients/client-sso-admin/src/commands/ListApplicationAssignmentsCommand.ts @@ -81,6 +81,7 @@ export interface ListApplicationAssignmentsCommandOutput extends ListApplication * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListApplicationAssignmentsCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListApplicationAssignmentsForPrincipalCommand.ts b/clients/client-sso-admin/src/commands/ListApplicationAssignmentsForPrincipalCommand.ts index 9038f0c2da7a4..629a891e69784 100644 --- a/clients/client-sso-admin/src/commands/ListApplicationAssignmentsForPrincipalCommand.ts +++ b/clients/client-sso-admin/src/commands/ListApplicationAssignmentsForPrincipalCommand.ts @@ -95,6 +95,7 @@ export interface ListApplicationAssignmentsForPrincipalCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListApplicationAssignmentsForPrincipalCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListApplicationAuthenticationMethodsCommand.ts b/clients/client-sso-admin/src/commands/ListApplicationAuthenticationMethodsCommand.ts index 9acfd988b920f..7d0e7e2fee9c8 100644 --- a/clients/client-sso-admin/src/commands/ListApplicationAuthenticationMethodsCommand.ts +++ b/clients/client-sso-admin/src/commands/ListApplicationAuthenticationMethodsCommand.ts @@ -91,6 +91,7 @@ export interface ListApplicationAuthenticationMethodsCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListApplicationAuthenticationMethodsCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListApplicationGrantsCommand.ts b/clients/client-sso-admin/src/commands/ListApplicationGrantsCommand.ts index f8676efc5ba94..69299cf3a66f9 100644 --- a/clients/client-sso-admin/src/commands/ListApplicationGrantsCommand.ts +++ b/clients/client-sso-admin/src/commands/ListApplicationGrantsCommand.ts @@ -97,6 +97,7 @@ export interface ListApplicationGrantsCommandOutput extends ListApplicationGrant * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListApplicationGrantsCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListApplicationProvidersCommand.ts b/clients/client-sso-admin/src/commands/ListApplicationProvidersCommand.ts index ad3241b65e167..998d8364874bf 100644 --- a/clients/client-sso-admin/src/commands/ListApplicationProvidersCommand.ts +++ b/clients/client-sso-admin/src/commands/ListApplicationProvidersCommand.ts @@ -89,6 +89,7 @@ export interface ListApplicationProvidersCommandOutput extends ListApplicationPr * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListApplicationProvidersCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListApplicationsCommand.ts b/clients/client-sso-admin/src/commands/ListApplicationsCommand.ts index b7f84b95f6e2d..e2f6e3c47d5d9 100644 --- a/clients/client-sso-admin/src/commands/ListApplicationsCommand.ts +++ b/clients/client-sso-admin/src/commands/ListApplicationsCommand.ts @@ -96,6 +96,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListApplicationsCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListCustomerManagedPolicyReferencesInPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/ListCustomerManagedPolicyReferencesInPermissionSetCommand.ts index 0129d68e3f5b6..e49b91ead450a 100644 --- a/clients/client-sso-admin/src/commands/ListCustomerManagedPolicyReferencesInPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/ListCustomerManagedPolicyReferencesInPermissionSetCommand.ts @@ -90,6 +90,7 @@ export interface ListCustomerManagedPolicyReferencesInPermissionSetCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListCustomerManagedPolicyReferencesInPermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListInstancesCommand.ts b/clients/client-sso-admin/src/commands/ListInstancesCommand.ts index 47ed19f4f630c..1dccf674f5b6b 100644 --- a/clients/client-sso-admin/src/commands/ListInstancesCommand.ts +++ b/clients/client-sso-admin/src/commands/ListInstancesCommand.ts @@ -81,6 +81,7 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListInstancesCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListManagedPoliciesInPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/ListManagedPoliciesInPermissionSetCommand.ts index 1756077f227b1..107a6fc53a44f 100644 --- a/clients/client-sso-admin/src/commands/ListManagedPoliciesInPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/ListManagedPoliciesInPermissionSetCommand.ts @@ -89,6 +89,7 @@ export interface ListManagedPoliciesInPermissionSetCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListManagedPoliciesInPermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListPermissionSetProvisioningStatusCommand.ts b/clients/client-sso-admin/src/commands/ListPermissionSetProvisioningStatusCommand.ts index d9cf1dde8e026..e2ef8d837237a 100644 --- a/clients/client-sso-admin/src/commands/ListPermissionSetProvisioningStatusCommand.ts +++ b/clients/client-sso-admin/src/commands/ListPermissionSetProvisioningStatusCommand.ts @@ -93,6 +93,7 @@ export interface ListPermissionSetProvisioningStatusCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListPermissionSetProvisioningStatusCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListPermissionSetsCommand.ts b/clients/client-sso-admin/src/commands/ListPermissionSetsCommand.ts index 0f01ee9e349d2..025ae6f075c28 100644 --- a/clients/client-sso-admin/src/commands/ListPermissionSetsCommand.ts +++ b/clients/client-sso-admin/src/commands/ListPermissionSetsCommand.ts @@ -77,6 +77,7 @@ export interface ListPermissionSetsCommandOutput extends ListPermissionSetsRespo * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListPermissionSetsCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListPermissionSetsProvisionedToAccountCommand.ts b/clients/client-sso-admin/src/commands/ListPermissionSetsProvisionedToAccountCommand.ts index ed4e9bd641dfb..e76c95c44a4e7 100644 --- a/clients/client-sso-admin/src/commands/ListPermissionSetsProvisionedToAccountCommand.ts +++ b/clients/client-sso-admin/src/commands/ListPermissionSetsProvisionedToAccountCommand.ts @@ -89,6 +89,7 @@ export interface ListPermissionSetsProvisionedToAccountCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListPermissionSetsProvisionedToAccountCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListTagsForResourceCommand.ts b/clients/client-sso-admin/src/commands/ListTagsForResourceCommand.ts index dc2afd1f5a002..af044d9218443 100644 --- a/clients/client-sso-admin/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-sso-admin/src/commands/ListTagsForResourceCommand.ts @@ -80,6 +80,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ListTrustedTokenIssuersCommand.ts b/clients/client-sso-admin/src/commands/ListTrustedTokenIssuersCommand.ts index b73557bc44219..1d55415a142b7 100644 --- a/clients/client-sso-admin/src/commands/ListTrustedTokenIssuersCommand.ts +++ b/clients/client-sso-admin/src/commands/ListTrustedTokenIssuersCommand.ts @@ -78,6 +78,7 @@ export interface ListTrustedTokenIssuersCommandOutput extends ListTrustedTokenIs * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ListTrustedTokenIssuersCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/ProvisionPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/ProvisionPermissionSetCommand.ts index 167f2a05f472e..86c1b489a9ba0 100644 --- a/clients/client-sso-admin/src/commands/ProvisionPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/ProvisionPermissionSetCommand.ts @@ -89,6 +89,7 @@ export interface ProvisionPermissionSetCommandOutput extends ProvisionPermission * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class ProvisionPermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/PutApplicationAccessScopeCommand.ts b/clients/client-sso-admin/src/commands/PutApplicationAccessScopeCommand.ts index 8d0be903ba519..eba5fc2c7c8e2 100644 --- a/clients/client-sso-admin/src/commands/PutApplicationAccessScopeCommand.ts +++ b/clients/client-sso-admin/src/commands/PutApplicationAccessScopeCommand.ts @@ -81,6 +81,7 @@ export interface PutApplicationAccessScopeCommandOutput extends __MetadataBearer * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class PutApplicationAccessScopeCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/PutApplicationAssignmentConfigurationCommand.ts b/clients/client-sso-admin/src/commands/PutApplicationAssignmentConfigurationCommand.ts index 6df10e54531c3..2c627c6eea6a4 100644 --- a/clients/client-sso-admin/src/commands/PutApplicationAssignmentConfigurationCommand.ts +++ b/clients/client-sso-admin/src/commands/PutApplicationAssignmentConfigurationCommand.ts @@ -88,6 +88,7 @@ export interface PutApplicationAssignmentConfigurationCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class PutApplicationAssignmentConfigurationCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/PutApplicationAuthenticationMethodCommand.ts b/clients/client-sso-admin/src/commands/PutApplicationAuthenticationMethodCommand.ts index 2b2b623c35af7..4af84f508dcb3 100644 --- a/clients/client-sso-admin/src/commands/PutApplicationAuthenticationMethodCommand.ts +++ b/clients/client-sso-admin/src/commands/PutApplicationAuthenticationMethodCommand.ts @@ -85,6 +85,7 @@ export interface PutApplicationAuthenticationMethodCommandOutput extends __Metad * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class PutApplicationAuthenticationMethodCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/PutApplicationGrantCommand.ts b/clients/client-sso-admin/src/commands/PutApplicationGrantCommand.ts index 2aaa2b774797d..6eeff7bc572a3 100644 --- a/clients/client-sso-admin/src/commands/PutApplicationGrantCommand.ts +++ b/clients/client-sso-admin/src/commands/PutApplicationGrantCommand.ts @@ -96,6 +96,7 @@ export interface PutApplicationGrantCommandOutput extends __MetadataBearer {} * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class PutApplicationGrantCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/PutInlinePolicyToPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/PutInlinePolicyToPermissionSetCommand.ts index 70f903b914b22..bcead928478df 100644 --- a/clients/client-sso-admin/src/commands/PutInlinePolicyToPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/PutInlinePolicyToPermissionSetCommand.ts @@ -95,6 +95,7 @@ export interface PutInlinePolicyToPermissionSetCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class PutInlinePolicyToPermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/PutPermissionsBoundaryToPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/PutPermissionsBoundaryToPermissionSetCommand.ts index 91d3c11057012..4b2687b941e11 100644 --- a/clients/client-sso-admin/src/commands/PutPermissionsBoundaryToPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/PutPermissionsBoundaryToPermissionSetCommand.ts @@ -93,6 +93,7 @@ export interface PutPermissionsBoundaryToPermissionSetCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class PutPermissionsBoundaryToPermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/TagResourceCommand.ts b/clients/client-sso-admin/src/commands/TagResourceCommand.ts index c45987eff2a74..cd0581390009a 100644 --- a/clients/client-sso-admin/src/commands/TagResourceCommand.ts +++ b/clients/client-sso-admin/src/commands/TagResourceCommand.ts @@ -87,6 +87,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/UntagResourceCommand.ts b/clients/client-sso-admin/src/commands/UntagResourceCommand.ts index 851c0ff2cd520..d75ebcbd9023f 100644 --- a/clients/client-sso-admin/src/commands/UntagResourceCommand.ts +++ b/clients/client-sso-admin/src/commands/UntagResourceCommand.ts @@ -80,6 +80,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/UpdateApplicationCommand.ts b/clients/client-sso-admin/src/commands/UpdateApplicationCommand.ts index 93d5b48cb5ee3..65889a5961c3b 100644 --- a/clients/client-sso-admin/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-sso-admin/src/commands/UpdateApplicationCommand.ts @@ -85,6 +85,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class UpdateApplicationCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/UpdateInstanceAccessControlAttributeConfigurationCommand.ts b/clients/client-sso-admin/src/commands/UpdateInstanceAccessControlAttributeConfigurationCommand.ts index a4dc3f6eb846d..3f4ad7d3402d1 100644 --- a/clients/client-sso-admin/src/commands/UpdateInstanceAccessControlAttributeConfigurationCommand.ts +++ b/clients/client-sso-admin/src/commands/UpdateInstanceAccessControlAttributeConfigurationCommand.ts @@ -102,6 +102,7 @@ export interface UpdateInstanceAccessControlAttributeConfigurationCommandOutput * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class UpdateInstanceAccessControlAttributeConfigurationCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/UpdateInstanceCommand.ts b/clients/client-sso-admin/src/commands/UpdateInstanceCommand.ts index 64e26982fd65e..00116c19c979f 100644 --- a/clients/client-sso-admin/src/commands/UpdateInstanceCommand.ts +++ b/clients/client-sso-admin/src/commands/UpdateInstanceCommand.ts @@ -75,6 +75,7 @@ export interface UpdateInstanceCommandOutput extends UpdateInstanceResponse, __M * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class UpdateInstanceCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/UpdatePermissionSetCommand.ts b/clients/client-sso-admin/src/commands/UpdatePermissionSetCommand.ts index 53249fea840ff..b7b743c77d48d 100644 --- a/clients/client-sso-admin/src/commands/UpdatePermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/UpdatePermissionSetCommand.ts @@ -80,6 +80,7 @@ export interface UpdatePermissionSetCommandOutput extends UpdatePermissionSetRes * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class UpdatePermissionSetCommand extends $Command diff --git a/clients/client-sso-admin/src/commands/UpdateTrustedTokenIssuerCommand.ts b/clients/client-sso-admin/src/commands/UpdateTrustedTokenIssuerCommand.ts index 87a77d0bf6cdb..24369502a79d3 100644 --- a/clients/client-sso-admin/src/commands/UpdateTrustedTokenIssuerCommand.ts +++ b/clients/client-sso-admin/src/commands/UpdateTrustedTokenIssuerCommand.ts @@ -87,6 +87,7 @@ export interface UpdateTrustedTokenIssuerCommandOutput extends UpdateTrustedToke * @throws {@link SSOAdminServiceException} *

Base exception class for all service exceptions from SSOAdmin service.

* + * * @public */ export class UpdateTrustedTokenIssuerCommand extends $Command diff --git a/clients/client-sso-oidc/src/commands/CreateTokenCommand.ts b/clients/client-sso-oidc/src/commands/CreateTokenCommand.ts index f297eb95f364e..5d9e9dbb51c9e 100644 --- a/clients/client-sso-oidc/src/commands/CreateTokenCommand.ts +++ b/clients/client-sso-oidc/src/commands/CreateTokenCommand.ts @@ -117,54 +117,53 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat * @throws {@link SSOOIDCServiceException} *

Base exception class for all service exceptions from SSOOIDC service.

* - * @public + * * @example Call OAuth/OIDC /token endpoint for Device Code grant with Secret authentication * ```javascript * // * const input = { - * "clientId": "_yzkThXVzLWVhc3QtMQEXAMPLECLIENTID", - * "clientSecret": "VERYLONGSECRETeyJraWQiOiJrZXktMTU2NDAyODA5OSIsImFsZyI6IkhTMzg0In0", - * "deviceCode": "yJraWQiOiJrZXktMTU2Njk2ODA4OCIsImFsZyI6IkhTMzIn0EXAMPLEDEVICECODE", - * "grantType": "urn:ietf:params:oauth:grant-type:device-code" + * clientId: "_yzkThXVzLWVhc3QtMQEXAMPLECLIENTID", + * clientSecret: "VERYLONGSECRETeyJraWQiOiJrZXktMTU2NDAyODA5OSIsImFsZyI6IkhTMzg0In0", + * deviceCode: "yJraWQiOiJrZXktMTU2Njk2ODA4OCIsImFsZyI6IkhTMzIn0EXAMPLEDEVICECODE", + * grantType: "urn:ietf:params:oauth:grant-type:device-code" * }; * const command = new CreateTokenCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "accessToken": "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN", - * "expiresIn": 1579729529, - * "refreshToken": "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", - * "tokenType": "Bearer" + * accessToken: "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN", + * expiresIn: 1579729529, + * refreshToken: "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", + * tokenType: "Bearer" * } * *\/ - * // example id: create-token-for-device-code * ``` * * @example Call OAuth/OIDC /token endpoint for Refresh Token grant with Secret authentication * ```javascript * // * const input = { - * "clientId": "_yzkThXVzLWVhc3QtMQEXAMPLECLIENTID", - * "clientSecret": "VERYLONGSECRETeyJraWQiOiJrZXktMTU2NDAyODA5OSIsImFsZyI6IkhTMzg0In0", - * "grantType": "refresh_token", - * "refreshToken": "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", - * "scope": [ + * clientId: "_yzkThXVzLWVhc3QtMQEXAMPLECLIENTID", + * clientSecret: "VERYLONGSECRETeyJraWQiOiJrZXktMTU2NDAyODA5OSIsImFsZyI6IkhTMzg0In0", + * grantType: "refresh_token", + * refreshToken: "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", + * scope: [ * "codewhisperer:completions" * ] * }; * const command = new CreateTokenCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "accessToken": "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN", - * "expiresIn": 1579729529, - * "refreshToken": "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", - * "tokenType": "Bearer" + * accessToken: "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN", + * expiresIn: 1579729529, + * refreshToken: "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", + * tokenType: "Bearer" * } * *\/ - * // example id: create-token-for-refresh-token * ``` * + * @public */ export class CreateTokenCommand extends $Command .classBuilder< diff --git a/clients/client-sso-oidc/src/commands/CreateTokenWithIAMCommand.ts b/clients/client-sso-oidc/src/commands/CreateTokenWithIAMCommand.ts index 1fa3f8a3012b6..52729bd0a1c16 100644 --- a/clients/client-sso-oidc/src/commands/CreateTokenWithIAMCommand.ts +++ b/clients/client-sso-oidc/src/commands/CreateTokenWithIAMCommand.ts @@ -128,16 +128,16 @@ export interface CreateTokenWithIAMCommandOutput extends CreateTokenWithIAMRespo * @throws {@link SSOOIDCServiceException} *

Base exception class for all service exceptions from SSOOIDC service.

* - * @public + * * @example Call OAuth/OIDC /token endpoint for Authorization Code grant with IAM authentication * ```javascript * // * const input = { - * "clientId": "arn:aws:sso::123456789012:application/ssoins-111111111111/apl-222222222222", - * "code": "yJraWQiOiJrZXktMTU2Njk2ODA4OCIsImFsZyI6IkhTMzg0In0EXAMPLEAUTHCODE", - * "grantType": "authorization_code", - * "redirectUri": "https://mywebapp.example/redirect", - * "scope": [ + * clientId: "arn:aws:sso::123456789012:application/ssoins-111111111111/apl-222222222222", + * code: "yJraWQiOiJrZXktMTU2Njk2ODA4OCIsImFsZyI6IkhTMzg0In0EXAMPLEAUTHCODE", + * grantType: "authorization_code", + * redirectUri: "https://mywebapp.example/redirect", + * scope: [ * "openid", * "aws", * "sts:identity_context" @@ -145,108 +145,105 @@ export interface CreateTokenWithIAMCommandOutput extends CreateTokenWithIAMRespo * }; * const command = new CreateTokenWithIAMCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "accessToken": "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN", - * "expiresIn": 1579729529, - * "idToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhd3M6aWRlbnRpdHlfc3RvcmVfaWQiOiJkLTMzMzMzMzMzMzMiLCJzdWIiOiI3MzA0NDhmMi1lMGExLTcwYTctYzk1NC0wMDAwMDAwMDAwMDAiLCJhd3M6aW5zdGFuY2VfYWNjb3VudCI6IjExMTExMTExMTExMSIsInN0czppZGVudGl0eV9jb250ZXh0IjoiRVhBTVBMRUlERU5USVRZQ09OVEVYVCIsInN0czphdWRpdF9jb250ZXh0IjoiRVhBTVBMRUFVRElUQ09OVEVYVCIsImlzcyI6Imh0dHBzOi8vaWRlbnRpdHljZW50ZXIuYW1hem9uYXdzLmNvbS9zc29pbnMtMTExMTExMTExMTExIiwiYXdzOmlkZW50aXR5X3N0b3JlX2FybiI6ImFybjphd3M6aWRlbnRpdHlzdG9yZTo6MTExMTExMTExMTExOmlkZW50aXR5c3RvcmUvZC0zMzMzMzMzMzMzIiwiYXVkIjoiYXJuOmF3czpzc286OjEyMzQ1Njc4OTAxMjphcHBsaWNhdGlvbi9zc29pbnMtMTExMTExMTExMTExL2FwbC0yMjIyMjIyMjIyMjIiLCJhd3M6aW5zdGFuY2VfYXJuIjoiYXJuOmF3czpzc286OjppbnN0YW5jZS9zc29pbnMtMTExMTExMTExMTExIiwiYXdzOmNyZWRlbnRpYWxfaWQiOiJfWlIyTjZhVkJqMjdGUEtheWpfcEtwVjc3QVBERl80MXB4ZXRfWWpJdUpONlVJR2RBdkpFWEFNUExFQ1JFRElEIiwiYXV0aF90aW1lIjoiMjAyMC0wMS0yMlQxMjo0NToyOVoiLCJleHAiOjE1Nzk3Mjk1MjksImlhdCI6MTU3OTcyNTkyOX0.Xyah6qbk78qThzJ41iFU2yfGuRqqtKXHrJYwQ8L9Ip0", - * "issuedTokenType": "urn:ietf:params:oauth:token-type:refresh_token", - * "refreshToken": "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", - * "scope": [ + * accessToken: "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN", + * expiresIn: 1579729529, + * idToken: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhd3M6aWRlbnRpdHlfc3RvcmVfaWQiOiJkLTMzMzMzMzMzMzMiLCJzdWIiOiI3MzA0NDhmMi1lMGExLTcwYTctYzk1NC0wMDAwMDAwMDAwMDAiLCJhd3M6aW5zdGFuY2VfYWNjb3VudCI6IjExMTExMTExMTExMSIsInN0czppZGVudGl0eV9jb250ZXh0IjoiRVhBTVBMRUlERU5USVRZQ09OVEVYVCIsInN0czphdWRpdF9jb250ZXh0IjoiRVhBTVBMRUFVRElUQ09OVEVYVCIsImlzcyI6Imh0dHBzOi8vaWRlbnRpdHljZW50ZXIuYW1hem9uYXdzLmNvbS9zc29pbnMtMTExMTExMTExMTExIiwiYXdzOmlkZW50aXR5X3N0b3JlX2FybiI6ImFybjphd3M6aWRlbnRpdHlzdG9yZTo6MTExMTExMTExMTExOmlkZW50aXR5c3RvcmUvZC0zMzMzMzMzMzMzIiwiYXVkIjoiYXJuOmF3czpzc286OjEyMzQ1Njc4OTAxMjphcHBsaWNhdGlvbi9zc29pbnMtMTExMTExMTExMTExL2FwbC0yMjIyMjIyMjIyMjIiLCJhd3M6aW5zdGFuY2VfYXJuIjoiYXJuOmF3czpzc286OjppbnN0YW5jZS9zc29pbnMtMTExMTExMTExMTExIiwiYXdzOmNyZWRlbnRpYWxfaWQiOiJfWlIyTjZhVkJqMjdGUEtheWpfcEtwVjc3QVBERl80MXB4ZXRfWWpJdUpONlVJR2RBdkpFWEFNUExFQ1JFRElEIiwiYXV0aF90aW1lIjoiMjAyMC0wMS0yMlQxMjo0NToyOVoiLCJleHAiOjE1Nzk3Mjk1MjksImlhdCI6MTU3OTcyNTkyOX0.Xyah6qbk78qThzJ41iFU2yfGuRqqtKXHrJYwQ8L9Ip0", + * issuedTokenType: "urn:ietf:params:oauth:token-type:refresh_token", + * refreshToken: "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", + * scope: [ * "openid", * "aws", * "sts:identity_context" * ], - * "tokenType": "Bearer" + * tokenType: "Bearer" * } * *\/ - * // example id: create-token-with-iam-for-auth-code * ``` * - * @example Call OAuth/OIDC /token endpoint for Refresh Token grant with IAM authentication + * @example Call OAuth/OIDC /token endpoint for JWT Bearer grant with IAM authentication * ```javascript * // * const input = { - * "clientId": "arn:aws:sso::123456789012:application/ssoins-111111111111/apl-222222222222", - * "grantType": "refresh_token", - * "refreshToken": "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN" + * assertion: "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6IjFMVE16YWtpaGlSbGFfOHoyQkVKVlhlV01xbyJ9.eyJ2ZXIiOiIyLjAiLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vOTEyMjA0MGQtNmM2Ny00YzViLWIxMTItMzZhMzA0YjY2ZGFkL3YyLjAiLCJzdWIiOiJBQUFBQUFBQUFBQUFBQUFBQUFBQUFJa3pxRlZyU2FTYUZIeTc4MmJidGFRIiwiYXVkIjoiNmNiMDQwMTgtYTNmNS00NmE3LWI5OTUtOTQwYzc4ZjVhZWYzIiwiZXhwIjoxNTM2MzYxNDExLCJpYXQiOjE1MzYyNzQ3MTEsIm5iZiI6MTUzNjI3NDcxMSwibmFtZSI6IkFiZSBMaW5jb2xuIiwicHJlZmVycmVkX3VzZXJuYW1lIjoiQWJlTGlAbWljcm9zb2Z0LmNvbSIsIm9pZCI6IjAwMDAwMDAwLTAwMDAtMDAwMC02NmYzLTMzMzJlY2E3ZWE4MSIsInRpZCI6IjkxMjIwNDBkLTZjNjctNGM1Yi1iMTEyLTM2YTMwNGI2NmRhZCIsIm5vbmNlIjoiMTIzNTIzIiwiYWlvIjoiRGYyVVZYTDFpeCFsTUNXTVNPSkJjRmF0emNHZnZGR2hqS3Y4cTVnMHg3MzJkUjVNQjVCaXN2R1FPN1lXQnlqZDhpUURMcSFlR2JJRGFreXA1bW5PcmNkcUhlWVNubHRlcFFtUnA2QUlaOGpZIn0.1AFWW-Ck5nROwSlltm7GzZvDwUkqvhSQpm55TQsmVo9Y59cLhRXpvB8n-55HCr9Z6G_31_UbeUkoz612I2j_Sm9FFShSDDjoaLQr54CreGIJvjtmS3EkK9a7SJBbcpL1MpUtlfygow39tFjY7EVNW9plWUvRrTgVk7lYLprvfzw-CIqw3gHC-T7IK_m_xkr08INERBtaecwhTeN4chPC4W3jdmw_lIxzC48YoQ0dB1L9-ImX98Egypfrlbm0IBL5spFzL6JDZIRRJOu8vecJvj1mq-IUhGt0MacxX8jdxYLP-KUu2d9MbNKpCKJuZ7p8gwTL5B7NlUdh_dmSviPWrw", + * clientId: "arn:aws:sso::123456789012:application/ssoins-111111111111/apl-222222222222", + * grantType: "urn:ietf:params:oauth:grant-type:jwt-bearer" * }; * const command = new CreateTokenWithIAMCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "accessToken": "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN", - * "expiresIn": 1579729529, - * "issuedTokenType": "urn:ietf:params:oauth:token-type:refresh_token", - * "refreshToken": "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", - * "scope": [ + * accessToken: "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN", + * expiresIn: 1579729529, + * idToken: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhd3M6aWRlbnRpdHlfc3RvcmVfaWQiOiJkLTMzMzMzMzMzMzMiLCJzdWIiOiI3MzA0NDhmMi1lMGExLTcwYTctYzk1NC0wMDAwMDAwMDAwMDAiLCJhd3M6aW5zdGFuY2VfYWNjb3VudCI6IjExMTExMTExMTExMSIsInN0czppZGVudGl0eV9jb250ZXh0IjoiRVhBTVBMRUlERU5USVRZQ09OVEVYVCIsInN0czphdWRpdF9jb250ZXh0IjoiRVhBTVBMRUFVRElUQ09OVEVYVCIsImlzcyI6Imh0dHBzOi8vaWRlbnRpdHljZW50ZXIuYW1hem9uYXdzLmNvbS9zc29pbnMtMTExMTExMTExMTExIiwiYXdzOmlkZW50aXR5X3N0b3JlX2FybiI6ImFybjphd3M6aWRlbnRpdHlzdG9yZTo6MTExMTExMTExMTExOmlkZW50aXR5c3RvcmUvZC0zMzMzMzMzMzMzIiwiYXVkIjoiYXJuOmF3czpzc286OjEyMzQ1Njc4OTAxMjphcHBsaWNhdGlvbi9zc29pbnMtMTExMTExMTExMTExL2FwbC0yMjIyMjIyMjIyMjIiLCJhd3M6aW5zdGFuY2VfYXJuIjoiYXJuOmF3czpzc286OjppbnN0YW5jZS9zc29pbnMtMTExMTExMTExMTExIiwiYXdzOmNyZWRlbnRpYWxfaWQiOiJfWlIyTjZhVkJqMjdGUEtheWpfcEtwVjc3QVBERl80MXB4ZXRfWWpJdUpONlVJR2RBdkpFWEFNUExFQ1JFRElEIiwiYXV0aF90aW1lIjoiMjAyMC0wMS0yMlQxMjo0NToyOVoiLCJleHAiOjE1Nzk3Mjk1MjksImlhdCI6MTU3OTcyNTkyOX0.Xyah6qbk78qThzJ41iFU2yfGuRqqtKXHrJYwQ8L9Ip0", + * issuedTokenType: "urn:ietf:params:oauth:token-type:refresh_token", + * refreshToken: "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", + * scope: [ * "openid", * "aws", * "sts:identity_context" * ], - * "tokenType": "Bearer" + * tokenType: "Bearer" * } * *\/ - * // example id: create-token-with-iam-for-refresh-token * ``` * - * @example Call OAuth/OIDC /token endpoint for JWT Bearer grant with IAM authentication + * @example Call OAuth/OIDC /token endpoint for Refresh Token grant with IAM authentication * ```javascript * // * const input = { - * "assertion": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6IjFMVE16YWtpaGlSbGFfOHoyQkVKVlhlV01xbyJ9.eyJ2ZXIiOiIyLjAiLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vOTEyMjA0MGQtNmM2Ny00YzViLWIxMTItMzZhMzA0YjY2ZGFkL3YyLjAiLCJzdWIiOiJBQUFBQUFBQUFBQUFBQUFBQUFBQUFJa3pxRlZyU2FTYUZIeTc4MmJidGFRIiwiYXVkIjoiNmNiMDQwMTgtYTNmNS00NmE3LWI5OTUtOTQwYzc4ZjVhZWYzIiwiZXhwIjoxNTM2MzYxNDExLCJpYXQiOjE1MzYyNzQ3MTEsIm5iZiI6MTUzNjI3NDcxMSwibmFtZSI6IkFiZSBMaW5jb2xuIiwicHJlZmVycmVkX3VzZXJuYW1lIjoiQWJlTGlAbWljcm9zb2Z0LmNvbSIsIm9pZCI6IjAwMDAwMDAwLTAwMDAtMDAwMC02NmYzLTMzMzJlY2E3ZWE4MSIsInRpZCI6IjkxMjIwNDBkLTZjNjctNGM1Yi1iMTEyLTM2YTMwNGI2NmRhZCIsIm5vbmNlIjoiMTIzNTIzIiwiYWlvIjoiRGYyVVZYTDFpeCFsTUNXTVNPSkJjRmF0emNHZnZGR2hqS3Y4cTVnMHg3MzJkUjVNQjVCaXN2R1FPN1lXQnlqZDhpUURMcSFlR2JJRGFreXA1bW5PcmNkcUhlWVNubHRlcFFtUnA2QUlaOGpZIn0.1AFWW-Ck5nROwSlltm7GzZvDwUkqvhSQpm55TQsmVo9Y59cLhRXpvB8n-55HCr9Z6G_31_UbeUkoz612I2j_Sm9FFShSDDjoaLQr54CreGIJvjtmS3EkK9a7SJBbcpL1MpUtlfygow39tFjY7EVNW9plWUvRrTgVk7lYLprvfzw-CIqw3gHC-T7IK_m_xkr08INERBtaecwhTeN4chPC4W3jdmw_lIxzC48YoQ0dB1L9-ImX98Egypfrlbm0IBL5spFzL6JDZIRRJOu8vecJvj1mq-IUhGt0MacxX8jdxYLP-KUu2d9MbNKpCKJuZ7p8gwTL5B7NlUdh_dmSviPWrw", - * "clientId": "arn:aws:sso::123456789012:application/ssoins-111111111111/apl-222222222222", - * "grantType": "urn:ietf:params:oauth:grant-type:jwt-bearer" + * clientId: "arn:aws:sso::123456789012:application/ssoins-111111111111/apl-222222222222", + * grantType: "refresh_token", + * refreshToken: "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN" * }; * const command = new CreateTokenWithIAMCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "accessToken": "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN", - * "expiresIn": 1579729529, - * "idToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhd3M6aWRlbnRpdHlfc3RvcmVfaWQiOiJkLTMzMzMzMzMzMzMiLCJzdWIiOiI3MzA0NDhmMi1lMGExLTcwYTctYzk1NC0wMDAwMDAwMDAwMDAiLCJhd3M6aW5zdGFuY2VfYWNjb3VudCI6IjExMTExMTExMTExMSIsInN0czppZGVudGl0eV9jb250ZXh0IjoiRVhBTVBMRUlERU5USVRZQ09OVEVYVCIsInN0czphdWRpdF9jb250ZXh0IjoiRVhBTVBMRUFVRElUQ09OVEVYVCIsImlzcyI6Imh0dHBzOi8vaWRlbnRpdHljZW50ZXIuYW1hem9uYXdzLmNvbS9zc29pbnMtMTExMTExMTExMTExIiwiYXdzOmlkZW50aXR5X3N0b3JlX2FybiI6ImFybjphd3M6aWRlbnRpdHlzdG9yZTo6MTExMTExMTExMTExOmlkZW50aXR5c3RvcmUvZC0zMzMzMzMzMzMzIiwiYXVkIjoiYXJuOmF3czpzc286OjEyMzQ1Njc4OTAxMjphcHBsaWNhdGlvbi9zc29pbnMtMTExMTExMTExMTExL2FwbC0yMjIyMjIyMjIyMjIiLCJhd3M6aW5zdGFuY2VfYXJuIjoiYXJuOmF3czpzc286OjppbnN0YW5jZS9zc29pbnMtMTExMTExMTExMTExIiwiYXdzOmNyZWRlbnRpYWxfaWQiOiJfWlIyTjZhVkJqMjdGUEtheWpfcEtwVjc3QVBERl80MXB4ZXRfWWpJdUpONlVJR2RBdkpFWEFNUExFQ1JFRElEIiwiYXV0aF90aW1lIjoiMjAyMC0wMS0yMlQxMjo0NToyOVoiLCJleHAiOjE1Nzk3Mjk1MjksImlhdCI6MTU3OTcyNTkyOX0.Xyah6qbk78qThzJ41iFU2yfGuRqqtKXHrJYwQ8L9Ip0", - * "issuedTokenType": "urn:ietf:params:oauth:token-type:refresh_token", - * "refreshToken": "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", - * "scope": [ + * accessToken: "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN", + * expiresIn: 1579729529, + * issuedTokenType: "urn:ietf:params:oauth:token-type:refresh_token", + * refreshToken: "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", + * scope: [ * "openid", * "aws", * "sts:identity_context" * ], - * "tokenType": "Bearer" + * tokenType: "Bearer" * } * *\/ - * // example id: create-token-with-iam-for-jwt-bearer * ``` * * @example Call OAuth/OIDC /token endpoint for Token Exchange grant with IAM authentication * ```javascript * // * const input = { - * "clientId": "arn:aws:sso::123456789012:application/ssoins-111111111111/apl-222222222222", - * "grantType": "urn:ietf:params:oauth:grant-type:token-exchange", - * "requestedTokenType": "urn:ietf:params:oauth:token-type:access_token", - * "subjectToken": "aoak-Hig8TUDPNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZDIFFERENTACCESSTOKEN", - * "subjectTokenType": "urn:ietf:params:oauth:token-type:access_token" + * clientId: "arn:aws:sso::123456789012:application/ssoins-111111111111/apl-222222222222", + * grantType: "urn:ietf:params:oauth:grant-type:token-exchange", + * requestedTokenType: "urn:ietf:params:oauth:token-type:access_token", + * subjectToken: "aoak-Hig8TUDPNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZDIFFERENTACCESSTOKEN", + * subjectTokenType: "urn:ietf:params:oauth:token-type:access_token" * }; * const command = new CreateTokenWithIAMCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "accessToken": "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN", - * "expiresIn": 1579729529, - * "idToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhd3M6aWRlbnRpdHlfc3RvcmVfaWQiOiJkLTMzMzMzMzMzMzMiLCJzdWIiOiI3MzA0NDhmMi1lMGExLTcwYTctYzk1NC0wMDAwMDAwMDAwMDAiLCJhd3M6aW5zdGFuY2VfYWNjb3VudCI6IjExMTExMTExMTExMSIsInN0czppZGVudGl0eV9jb250ZXh0IjoiRVhBTVBMRUlERU5USVRZQ09OVEVYVCIsImlzcyI6Imh0dHBzOi8vaWRlbnRpdHljZW50ZXIuYW1hem9uYXdzLmNvbS9zc29pbnMtMTExMTExMTExMTExIiwiYXdzOmlkZW50aXR5X3N0b3JlX2FybiI6ImFybjphd3M6aWRlbnRpdHlzdG9yZTo6MTExMTExMTExMTExOmlkZW50aXR5c3RvcmUvZC0zMzMzMzMzMzMzIiwiYXVkIjoiYXJuOmF3czpzc286OjEyMzQ1Njc4OTAxMjphcHBsaWNhdGlvbi9zc29pbnMtMTExMTExMTExMTExL2FwbC0yMjIyMjIyMjIyMjIiLCJhd3M6aW5zdGFuY2VfYXJuIjoiYXJuOmF3czpzc286OjppbnN0YW5jZS9zc29pbnMtMTExMTExMTExMTExIiwiYXdzOmNyZWRlbnRpYWxfaWQiOiJfWlIyTjZhVkJqMjdGUEtheWpfcEtwVjc3QVBERl80MXB4ZXRfWWpJdUpONlVJR2RBdkpFWEFNUExFQ1JFRElEIiwiYXV0aF90aW1lIjoiMjAyMC0wMS0yMlQxMjo0NToyOVoiLCJleHAiOjE1Nzk3Mjk1MjksImlhdCI6MTU3OTcyNTkyOX0.5SYiW1kMsuUr7nna-l5tlakM0GNbMHvIM2_n0QD23jM", - * "issuedTokenType": "urn:ietf:params:oauth:token-type:access_token", - * "scope": [ + * accessToken: "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN", + * expiresIn: 1579729529, + * idToken: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhd3M6aWRlbnRpdHlfc3RvcmVfaWQiOiJkLTMzMzMzMzMzMzMiLCJzdWIiOiI3MzA0NDhmMi1lMGExLTcwYTctYzk1NC0wMDAwMDAwMDAwMDAiLCJhd3M6aW5zdGFuY2VfYWNjb3VudCI6IjExMTExMTExMTExMSIsInN0czppZGVudGl0eV9jb250ZXh0IjoiRVhBTVBMRUlERU5USVRZQ09OVEVYVCIsImlzcyI6Imh0dHBzOi8vaWRlbnRpdHljZW50ZXIuYW1hem9uYXdzLmNvbS9zc29pbnMtMTExMTExMTExMTExIiwiYXdzOmlkZW50aXR5X3N0b3JlX2FybiI6ImFybjphd3M6aWRlbnRpdHlzdG9yZTo6MTExMTExMTExMTExOmlkZW50aXR5c3RvcmUvZC0zMzMzMzMzMzMzIiwiYXVkIjoiYXJuOmF3czpzc286OjEyMzQ1Njc4OTAxMjphcHBsaWNhdGlvbi9zc29pbnMtMTExMTExMTExMTExL2FwbC0yMjIyMjIyMjIyMjIiLCJhd3M6aW5zdGFuY2VfYXJuIjoiYXJuOmF3czpzc286OjppbnN0YW5jZS9zc29pbnMtMTExMTExMTExMTExIiwiYXdzOmNyZWRlbnRpYWxfaWQiOiJfWlIyTjZhVkJqMjdGUEtheWpfcEtwVjc3QVBERl80MXB4ZXRfWWpJdUpONlVJR2RBdkpFWEFNUExFQ1JFRElEIiwiYXV0aF90aW1lIjoiMjAyMC0wMS0yMlQxMjo0NToyOVoiLCJleHAiOjE1Nzk3Mjk1MjksImlhdCI6MTU3OTcyNTkyOX0.5SYiW1kMsuUr7nna-l5tlakM0GNbMHvIM2_n0QD23jM", + * issuedTokenType: "urn:ietf:params:oauth:token-type:access_token", + * scope: [ * "openid", * "aws", * "sts:identity_context" * ], - * "tokenType": "Bearer" + * tokenType: "Bearer" * } * *\/ - * // example id: create-token-with-iam-for-token-exchange * ``` * + * @public */ export class CreateTokenWithIAMCommand extends $Command .classBuilder< diff --git a/clients/client-sso-oidc/src/commands/RegisterClientCommand.ts b/clients/client-sso-oidc/src/commands/RegisterClientCommand.ts index 1652f467c5752..40ddea2aa244a 100644 --- a/clients/client-sso-oidc/src/commands/RegisterClientCommand.ts +++ b/clients/client-sso-oidc/src/commands/RegisterClientCommand.ts @@ -100,40 +100,40 @@ export interface RegisterClientCommandOutput extends RegisterClientResponse, __M * @throws {@link SSOOIDCServiceException} *

Base exception class for all service exceptions from SSOOIDC service.

* - * @public + * * @example Call OAuth/OIDC /register-client endpoint * ```javascript * // * const input = { - * "clientName": "My IDE Plugin", - * "clientType": "public", - * "entitledApplicationArn": "arn:aws:sso::ACCOUNTID:application/ssoins-1111111111111111/apl-1111111111111111", - * "grantTypes": [ + * clientName: "My IDE Plugin", + * clientType: "public", + * entitledApplicationArn: "arn:aws:sso::ACCOUNTID:application/ssoins-1111111111111111/apl-1111111111111111", + * grantTypes: [ * "authorization_code", * "refresh_token" * ], - * "issuerUrl": "https://identitycenter.amazonaws.com/ssoins-1111111111111111", - * "redirectUris": [ + * issuerUrl: "https://identitycenter.amazonaws.com/ssoins-1111111111111111", + * redirectUris: [ * "127.0.0.1:PORT/oauth/callback" * ], - * "scopes": [ + * scopes: [ * "sso:account:access", * "codewhisperer:completions" * ] * }; * const command = new RegisterClientCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "clientId": "_yzkThXVzLWVhc3QtMQEXAMPLECLIENTID", - * "clientIdIssuedAt": 1579725929, - * "clientSecret": "VERYLONGSECRETeyJraWQiOiJrZXktMTU2NDAyODA5OSIsImFsZyI6IkhTMzg0In0", - * "clientSecretExpiresAt": 1587584729 + * clientId: "_yzkThXVzLWVhc3QtMQEXAMPLECLIENTID", + * clientIdIssuedAt: 1579725929, + * clientSecret: "VERYLONGSECRETeyJraWQiOiJrZXktMTU2NDAyODA5OSIsImFsZyI6IkhTMzg0In0", + * clientSecretExpiresAt: 1587584729 * } * *\/ - * // example id: register-client * ``` * + * @public */ export class RegisterClientCommand extends $Command .classBuilder< diff --git a/clients/client-sso-oidc/src/commands/StartDeviceAuthorizationCommand.ts b/clients/client-sso-oidc/src/commands/StartDeviceAuthorizationCommand.ts index 5ed82b3e69abc..9d74ecbb3b657 100644 --- a/clients/client-sso-oidc/src/commands/StartDeviceAuthorizationCommand.ts +++ b/clients/client-sso-oidc/src/commands/StartDeviceAuthorizationCommand.ts @@ -88,30 +88,30 @@ export interface StartDeviceAuthorizationCommandOutput extends StartDeviceAuthor * @throws {@link SSOOIDCServiceException} *

Base exception class for all service exceptions from SSOOIDC service.

* - * @public + * * @example Call OAuth/OIDC /start-device-authorization endpoint * ```javascript * // * const input = { - * "clientId": "_yzkThXVzLWVhc3QtMQEXAMPLECLIENTID", - * "clientSecret": "VERYLONGSECRETeyJraWQiOiJrZXktMTU2NDAyODA5OSIsImFsZyI6IkhTMzg0In0", - * "startUrl": "https://identitycenter.amazonaws.com/ssoins-111111111111" + * clientId: "_yzkThXVzLWVhc3QtMQEXAMPLECLIENTID", + * clientSecret: "VERYLONGSECRETeyJraWQiOiJrZXktMTU2NDAyODA5OSIsImFsZyI6IkhTMzg0In0", + * startUrl: "https://identitycenter.amazonaws.com/ssoins-111111111111" * }; * const command = new StartDeviceAuthorizationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "deviceCode": "yJraWQiOiJrZXktMTU2Njk2ODA4OCIsImFsZyI6IkhTMzIn0EXAMPLEDEVICECODE", - * "expiresIn": 1579729529, - * "interval": 1, - * "userCode": "makdfsk83yJraWQiOiJrZXktMTU2Njk2sImFsZyI6IkhTMzIn0EXAMPLEUSERCODE", - * "verificationUri": "https://device.sso.us-west-2.amazonaws.com", - * "verificationUriComplete": "https://device.sso.us-west-2.amazonaws.com?user_code=makdfsk83yJraWQiOiJrZXktMTU2Njk2sImFsZyI6IkhTMzIn0EXAMPLEUSERCODE" + * deviceCode: "yJraWQiOiJrZXktMTU2Njk2ODA4OCIsImFsZyI6IkhTMzIn0EXAMPLEDEVICECODE", + * expiresIn: 1579729529, + * interval: 1, + * userCode: "makdfsk83yJraWQiOiJrZXktMTU2Njk2sImFsZyI6IkhTMzIn0EXAMPLEUSERCODE", + * verificationUri: "https://device.sso.us-west-2.amazonaws.com", + * verificationUriComplete: "https://device.sso.us-west-2.amazonaws.com?user_code=makdfsk83yJraWQiOiJrZXktMTU2Njk2sImFsZyI6IkhTMzIn0EXAMPLEUSERCODE" * } * *\/ - * // example id: start-device-authorization * ``` * + * @public */ export class StartDeviceAuthorizationCommand extends $Command .classBuilder< diff --git a/clients/client-sso/src/commands/GetRoleCredentialsCommand.ts b/clients/client-sso/src/commands/GetRoleCredentialsCommand.ts index f8c1683e54aca..e6bb6d12482ea 100644 --- a/clients/client-sso/src/commands/GetRoleCredentialsCommand.ts +++ b/clients/client-sso/src/commands/GetRoleCredentialsCommand.ts @@ -83,6 +83,7 @@ export interface GetRoleCredentialsCommandOutput extends GetRoleCredentialsRespo * @throws {@link SSOServiceException} *

Base exception class for all service exceptions from SSO service.

* + * * @public */ export class GetRoleCredentialsCommand extends $Command diff --git a/clients/client-sso/src/commands/ListAccountRolesCommand.ts b/clients/client-sso/src/commands/ListAccountRolesCommand.ts index 0948d558b3797..88531ec6b4a03 100644 --- a/clients/client-sso/src/commands/ListAccountRolesCommand.ts +++ b/clients/client-sso/src/commands/ListAccountRolesCommand.ts @@ -83,6 +83,7 @@ export interface ListAccountRolesCommandOutput extends ListAccountRolesResponse, * @throws {@link SSOServiceException} *

Base exception class for all service exceptions from SSO service.

* + * * @public */ export class ListAccountRolesCommand extends $Command diff --git a/clients/client-sso/src/commands/ListAccountsCommand.ts b/clients/client-sso/src/commands/ListAccountsCommand.ts index 7190fc915dd45..5bb1a8dbc599f 100644 --- a/clients/client-sso/src/commands/ListAccountsCommand.ts +++ b/clients/client-sso/src/commands/ListAccountsCommand.ts @@ -81,6 +81,7 @@ export interface ListAccountsCommandOutput extends ListAccountsResponse, __Metad * @throws {@link SSOServiceException} *

Base exception class for all service exceptions from SSO service.

* + * * @public */ export class ListAccountsCommand extends $Command diff --git a/clients/client-sso/src/commands/LogoutCommand.ts b/clients/client-sso/src/commands/LogoutCommand.ts index 6113647828103..b4922b0faa0f3 100644 --- a/clients/client-sso/src/commands/LogoutCommand.ts +++ b/clients/client-sso/src/commands/LogoutCommand.ts @@ -78,6 +78,7 @@ export interface LogoutCommandOutput extends __MetadataBearer {} * @throws {@link SSOServiceException} *

Base exception class for all service exceptions from SSO service.

* + * * @public */ export class LogoutCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/ActivateGatewayCommand.ts b/clients/client-storage-gateway/src/commands/ActivateGatewayCommand.ts index 29fb12d035d78..d79ad1537ec3f 100644 --- a/clients/client-storage-gateway/src/commands/ActivateGatewayCommand.ts +++ b/clients/client-storage-gateway/src/commands/ActivateGatewayCommand.ts @@ -82,29 +82,29 @@ export interface ActivateGatewayCommandOutput extends ActivateGatewayOutput, __M * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To activate the gateway * ```javascript * // Activates the gateway you previously deployed on your host. * const input = { - * "ActivationKey": "29AV1-3OFV9-VVIUB-NKT0I-LRO6V", - * "GatewayName": "My_Gateway", - * "GatewayRegion": "us-east-1", - * "GatewayTimezone": "GMT-12:00", - * "GatewayType": "STORED", - * "MediumChangerType": "AWS-Gateway-VTL", - * "TapeDriveType": "IBM-ULT3580-TD5" + * ActivationKey: "29AV1-3OFV9-VVIUB-NKT0I-LRO6V", + * GatewayName: "My_Gateway", + * GatewayRegion: "us-east-1", + * GatewayTimezone: "GMT-12:00", + * GatewayType: "STORED", + * MediumChangerType: "AWS-Gateway-VTL", + * TapeDriveType: "IBM-ULT3580-TD5" * }; * const command = new ActivateGatewayCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B" * } * *\/ - * // example id: to-activate-the-gateway-1471281611207 * ``` * + * @public */ export class ActivateGatewayCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/AddCacheCommand.ts b/clients/client-storage-gateway/src/commands/AddCacheCommand.ts index 9ca7635350df8..6d93335db20dd 100644 --- a/clients/client-storage-gateway/src/commands/AddCacheCommand.ts +++ b/clients/client-storage-gateway/src/commands/AddCacheCommand.ts @@ -69,27 +69,27 @@ export interface AddCacheCommandOutput extends AddCacheOutput, __MetadataBearer * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To add a cache * ```javascript * // The following example shows a request that activates a gateway-stored volume. * const input = { - * "DiskIds": [ + * DiskIds: [ * "pci-0000:03:00.0-scsi-0:0:0:0", * "pci-0000:03:00.0-scsi-0:0:1:0" * ], - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new AddCacheCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-add-a-cache-1471043606854 * ``` * + * @public */ export class AddCacheCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/AddTagsToResourceCommand.ts b/clients/client-storage-gateway/src/commands/AddTagsToResourceCommand.ts index 1dd4c3848f2b9..5592b15e4ba52 100644 --- a/clients/client-storage-gateway/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-storage-gateway/src/commands/AddTagsToResourceCommand.ts @@ -91,29 +91,29 @@ export interface AddTagsToResourceCommandOutput extends AddTagsToResourceOutput, * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To add tags to resource * ```javascript * // Adds one or more tags to the specified resource. * const input = { - * "ResourceARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B", - * "Tags": [ + * ResourceARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B", + * Tags: [ * { - * "Key": "Dev Gatgeway Region", - * "Value": "East Coast" + * Key: "Dev Gatgeway Region", + * Value: "East Coast" * } * ] * }; * const command = new AddTagsToResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ResourceARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B" + * ResourceARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B" * } * *\/ - * // example id: to-add-tags-to-resource-1471283689460 * ``` * + * @public */ export class AddTagsToResourceCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/AddUploadBufferCommand.ts b/clients/client-storage-gateway/src/commands/AddUploadBufferCommand.ts index afea17c7d3c57..6692494c9c9e9 100644 --- a/clients/client-storage-gateway/src/commands/AddUploadBufferCommand.ts +++ b/clients/client-storage-gateway/src/commands/AddUploadBufferCommand.ts @@ -71,27 +71,27 @@ export interface AddUploadBufferCommandOutput extends AddUploadBufferOutput, __M * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To add upload buffer on local disk * ```javascript * // Configures one or more gateway local disks as upload buffer for a specified gateway. * const input = { - * "DiskIds": [ + * DiskIds: [ * "pci-0000:03:00.0-scsi-0:0:0:0", * "pci-0000:03:00.0-scsi-0:0:1:0" * ], - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new AddUploadBufferCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-add-upload-buffer-on-local-disk-1471293902847 * ``` * + * @public */ export class AddUploadBufferCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/AddWorkingStorageCommand.ts b/clients/client-storage-gateway/src/commands/AddWorkingStorageCommand.ts index 87ceaa3d30412..6b6cec6f5b8f7 100644 --- a/clients/client-storage-gateway/src/commands/AddWorkingStorageCommand.ts +++ b/clients/client-storage-gateway/src/commands/AddWorkingStorageCommand.ts @@ -76,27 +76,27 @@ export interface AddWorkingStorageCommandOutput extends AddWorkingStorageOutput, * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To add storage on local disk * ```javascript * // Configures one or more gateway local disks as working storage for a gateway. (Working storage is also referred to as upload buffer.) * const input = { - * "DiskIds": [ + * DiskIds: [ * "pci-0000:03:00.0-scsi-0:0:0:0", * "pci-0000:03:00.0-scsi-0:0:1:0" * ], - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new AddWorkingStorageCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-add-storage-on-local-disk-1471294305401 * ``` * + * @public */ export class AddWorkingStorageCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/AssignTapePoolCommand.ts b/clients/client-storage-gateway/src/commands/AssignTapePoolCommand.ts index ddb564fcc2412..c5cd4cdc60e50 100644 --- a/clients/client-storage-gateway/src/commands/AssignTapePoolCommand.ts +++ b/clients/client-storage-gateway/src/commands/AssignTapePoolCommand.ts @@ -68,6 +68,7 @@ export interface AssignTapePoolCommandOutput extends AssignTapePoolOutput, __Met * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class AssignTapePoolCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/AssociateFileSystemCommand.ts b/clients/client-storage-gateway/src/commands/AssociateFileSystemCommand.ts index 2e0b070b78b62..87587273a1a9e 100644 --- a/clients/client-storage-gateway/src/commands/AssociateFileSystemCommand.ts +++ b/clients/client-storage-gateway/src/commands/AssociateFileSystemCommand.ts @@ -89,6 +89,7 @@ export interface AssociateFileSystemCommandOutput extends AssociateFileSystemOut * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class AssociateFileSystemCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/AttachVolumeCommand.ts b/clients/client-storage-gateway/src/commands/AttachVolumeCommand.ts index a7ee2962dbbe0..845d21c70dc7b 100644 --- a/clients/client-storage-gateway/src/commands/AttachVolumeCommand.ts +++ b/clients/client-storage-gateway/src/commands/AttachVolumeCommand.ts @@ -71,6 +71,7 @@ export interface AttachVolumeCommandOutput extends AttachVolumeOutput, __Metadat * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class AttachVolumeCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/CancelArchivalCommand.ts b/clients/client-storage-gateway/src/commands/CancelArchivalCommand.ts index aaaa3e5126fa4..adbcebeaa9ede 100644 --- a/clients/client-storage-gateway/src/commands/CancelArchivalCommand.ts +++ b/clients/client-storage-gateway/src/commands/CancelArchivalCommand.ts @@ -65,24 +65,24 @@ export interface CancelArchivalCommandOutput extends CancelArchivalOutput, __Met * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To cancel virtual tape archiving * ```javascript * // Cancels archiving of a virtual tape to the virtual tape shelf (VTS) after the archiving process is initiated. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * TapeARN: "arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4" * }; * const command = new CancelArchivalCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4" + * TapeARN: "arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4" * } * *\/ - * // example id: to-cancel-virtual-tape-archiving-1471294865203 * ``` * + * @public */ export class CancelArchivalCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/CancelCacheReportCommand.ts b/clients/client-storage-gateway/src/commands/CancelCacheReportCommand.ts index 18832cb235146..942002eb9d36d 100644 --- a/clients/client-storage-gateway/src/commands/CancelCacheReportCommand.ts +++ b/clients/client-storage-gateway/src/commands/CancelCacheReportCommand.ts @@ -67,6 +67,7 @@ export interface CancelCacheReportCommandOutput extends CancelCacheReportOutput, * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class CancelCacheReportCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/CancelRetrievalCommand.ts b/clients/client-storage-gateway/src/commands/CancelRetrievalCommand.ts index 206a108fd61bc..fbdccbb2e367f 100644 --- a/clients/client-storage-gateway/src/commands/CancelRetrievalCommand.ts +++ b/clients/client-storage-gateway/src/commands/CancelRetrievalCommand.ts @@ -66,24 +66,24 @@ export interface CancelRetrievalCommandOutput extends CancelRetrievalOutput, __M * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To cancel virtual tape retrieval * ```javascript * // Cancels retrieval of a virtual tape from the virtual tape shelf (VTS) to a gateway after the retrieval process is initiated. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * TapeARN: "arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4" * }; * const command = new CancelRetrievalCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4" + * TapeARN: "arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4" * } * *\/ - * // example id: to-cancel-virtual-tape-retrieval-1471295704491 * ``` * + * @public */ export class CancelRetrievalCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/CreateCachediSCSIVolumeCommand.ts b/clients/client-storage-gateway/src/commands/CreateCachediSCSIVolumeCommand.ts index a4c7c986ec7b1..efb0bf333f02c 100644 --- a/clients/client-storage-gateway/src/commands/CreateCachediSCSIVolumeCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateCachediSCSIVolumeCommand.ts @@ -92,29 +92,29 @@ export interface CreateCachediSCSIVolumeCommandOutput extends CreateCachediSCSIV * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To create a cached iSCSI volume * ```javascript * // Creates a cached volume on a specified cached gateway. * const input = { - * "ClientToken": "cachedvol112233", - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "NetworkInterfaceId": "10.1.1.1", - * "SnapshotId": "snap-f47b7b94", - * "TargetName": "my-volume", - * "VolumeSizeInBytes": 536870912000 + * ClientToken: "cachedvol112233", + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * NetworkInterfaceId: "10.1.1.1", + * SnapshotId: "snap-f47b7b94", + * TargetName: "my-volume", + * VolumeSizeInBytes: 536870912000 * }; * const command = new CreateCachediSCSIVolumeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume", - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" + * TargetARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume", + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" * } * *\/ - * // example id: to-create-a-cached-iscsi-volume-1471296661787 * ``` * + * @public */ export class CreateCachediSCSIVolumeCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/CreateNFSFileShareCommand.ts b/clients/client-storage-gateway/src/commands/CreateNFSFileShareCommand.ts index 0f2c8a21c2338..e8ffa5f9b379f 100644 --- a/clients/client-storage-gateway/src/commands/CreateNFSFileShareCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateNFSFileShareCommand.ts @@ -112,6 +112,7 @@ export interface CreateNFSFileShareCommandOutput extends CreateNFSFileShareOutpu * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class CreateNFSFileShareCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/CreateSMBFileShareCommand.ts b/clients/client-storage-gateway/src/commands/CreateSMBFileShareCommand.ts index d0e751e95736e..59fd6003d07fd 100644 --- a/clients/client-storage-gateway/src/commands/CreateSMBFileShareCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateSMBFileShareCommand.ts @@ -116,6 +116,7 @@ export interface CreateSMBFileShareCommandOutput extends CreateSMBFileShareOutpu * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class CreateSMBFileShareCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/CreateSnapshotCommand.ts b/clients/client-storage-gateway/src/commands/CreateSnapshotCommand.ts index 43ab7c67ea332..42fc4aeb7dd7f 100644 --- a/clients/client-storage-gateway/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateSnapshotCommand.ts @@ -98,25 +98,25 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotOutput, __Met * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To create a snapshot of a gateway volume * ```javascript * // Initiates an ad-hoc snapshot of a gateway volume. * const input = { - * "SnapshotDescription": "My root volume snapshot as of 10/03/2017", - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" + * SnapshotDescription: "My root volume snapshot as of 10/03/2017", + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" * }; * const command = new CreateSnapshotCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SnapshotId": "snap-78e22663", - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" + * SnapshotId: "snap-78e22663", + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" * } * *\/ - * // example id: to-create-a-snapshot-of-a-gateway-volume-1471301469561 * ``` * + * @public */ export class CreateSnapshotCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/CreateSnapshotFromVolumeRecoveryPointCommand.ts b/clients/client-storage-gateway/src/commands/CreateSnapshotFromVolumeRecoveryPointCommand.ts index 433f3baabf958..a53a95d7e18f1 100644 --- a/clients/client-storage-gateway/src/commands/CreateSnapshotFromVolumeRecoveryPointCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateSnapshotFromVolumeRecoveryPointCommand.ts @@ -101,26 +101,26 @@ export interface CreateSnapshotFromVolumeRecoveryPointCommandOutput * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To create a snapshot of a gateway volume * ```javascript * // Initiates a snapshot of a gateway from a volume recovery point. * const input = { - * "SnapshotDescription": "My root volume snapshot as of 2017-06-30T10:10:10.000Z", - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" + * SnapshotDescription: "My root volume snapshot as of 2017-06-30T10:10:10.000Z", + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" * }; * const command = new CreateSnapshotFromVolumeRecoveryPointCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SnapshotId": "snap-78e22663", - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB", - * "VolumeRecoveryPointTime": "2017-06-30T10:10:10.000Z" + * SnapshotId: "snap-78e22663", + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB", + * VolumeRecoveryPointTime: "2017-06-30T10:10:10.000Z" * } * *\/ - * // example id: to-create-a-snapshot-of-a-gateway-volume-1471301469561 * ``` * + * @public */ export class CreateSnapshotFromVolumeRecoveryPointCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/CreateStorediSCSIVolumeCommand.ts b/clients/client-storage-gateway/src/commands/CreateStorediSCSIVolumeCommand.ts index 93430d8bed0bd..9e6461b3c0791 100644 --- a/clients/client-storage-gateway/src/commands/CreateStorediSCSIVolumeCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateStorediSCSIVolumeCommand.ts @@ -87,30 +87,30 @@ export interface CreateStorediSCSIVolumeCommandOutput extends CreateStorediSCSIV * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To create a stored iSCSI volume * ```javascript * // Creates a stored volume on a specified stored gateway. * const input = { - * "DiskId": "pci-0000:03:00.0-scsi-0:0:0:0", - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "NetworkInterfaceId": "10.1.1.1", - * "PreserveExistingData": true, - * "SnapshotId": "snap-f47b7b94", - * "TargetName": "my-volume" + * DiskId: "pci-0000:03:00.0-scsi-0:0:0:0", + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * NetworkInterfaceId: "10.1.1.1", + * PreserveExistingData: true, + * SnapshotId: "snap-f47b7b94", + * TargetName: "my-volume" * }; * const command = new CreateStorediSCSIVolumeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume", - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB", - * "VolumeSizeInBytes": 1099511627776 + * TargetARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume", + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB", + * VolumeSizeInBytes: 1099511627776 * } * *\/ - * // example id: to-create-a-stored-iscsi-volume-1471367662813 * ``` * + * @public */ export class CreateStorediSCSIVolumeCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/CreateTapePoolCommand.ts b/clients/client-storage-gateway/src/commands/CreateTapePoolCommand.ts index f9ade3b6bb0e3..e8ee2e42e4454 100644 --- a/clients/client-storage-gateway/src/commands/CreateTapePoolCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateTapePoolCommand.ts @@ -73,6 +73,7 @@ export interface CreateTapePoolCommandOutput extends CreateTapePoolOutput, __Met * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class CreateTapePoolCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/CreateTapeWithBarcodeCommand.ts b/clients/client-storage-gateway/src/commands/CreateTapeWithBarcodeCommand.ts index c6b37cc577d97..dda3ce3b2a212 100644 --- a/clients/client-storage-gateway/src/commands/CreateTapeWithBarcodeCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateTapeWithBarcodeCommand.ts @@ -82,25 +82,25 @@ export interface CreateTapeWithBarcodeCommandOutput extends CreateTapeWithBarcod * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To create a virtual tape using a barcode * ```javascript * // Creates a virtual tape by using your own barcode. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", - * "TapeBarcode": "TEST12345", - * "TapeSizeInBytes": 107374182400 + * GatewayARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", + * TapeBarcode: "TEST12345", + * TapeSizeInBytes: 107374182400 * }; * const command = new CreateTapeWithBarcodeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST12345" + * TapeARN: "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST12345" * } * *\/ - * // example id: to-create-a-virtual-tape-using-a-barcode-1471371842452 * ``` * + * @public */ export class CreateTapeWithBarcodeCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/CreateTapesCommand.ts b/clients/client-storage-gateway/src/commands/CreateTapesCommand.ts index 4f93a49faea8c..cfb3cf120fbc6 100644 --- a/clients/client-storage-gateway/src/commands/CreateTapesCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateTapesCommand.ts @@ -84,31 +84,31 @@ export interface CreateTapesCommandOutput extends CreateTapesOutput, __MetadataB * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To create a virtual tape * ```javascript * // Creates one or more virtual tapes. * const input = { - * "ClientToken": "77777", - * "GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", - * "NumTapesToCreate": 3, - * "TapeBarcodePrefix": "TEST", - * "TapeSizeInBytes": 107374182400 + * ClientToken: "77777", + * GatewayARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", + * NumTapesToCreate: 3, + * TapeBarcodePrefix: "TEST", + * TapeSizeInBytes: 107374182400 * }; * const command = new CreateTapesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TapeARNs": [ + * TapeARNs: [ * "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST38A29D", * "arn:aws:storagegateway:us-east-1:204469490176:tape/TEST3AA29F", * "arn:aws:storagegateway:us-east-1:204469490176:tape/TEST3BA29E" * ] * } * *\/ - * // example id: to-create-a-virtual-tape-1471372061659 * ``` * + * @public */ export class CreateTapesCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DeleteAutomaticTapeCreationPolicyCommand.ts b/clients/client-storage-gateway/src/commands/DeleteAutomaticTapeCreationPolicyCommand.ts index 9ac3830fb4b58..6fa5e984c107e 100644 --- a/clients/client-storage-gateway/src/commands/DeleteAutomaticTapeCreationPolicyCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteAutomaticTapeCreationPolicyCommand.ts @@ -70,6 +70,7 @@ export interface DeleteAutomaticTapeCreationPolicyCommandOutput * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class DeleteAutomaticTapeCreationPolicyCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/DeleteBandwidthRateLimitCommand.ts b/clients/client-storage-gateway/src/commands/DeleteBandwidthRateLimitCommand.ts index 8e60d410233f2..0b87aaed14301 100644 --- a/clients/client-storage-gateway/src/commands/DeleteBandwidthRateLimitCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteBandwidthRateLimitCommand.ts @@ -68,24 +68,24 @@ export interface DeleteBandwidthRateLimitCommandOutput extends DeleteBandwidthRa * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To delete bandwidth rate limits of gateway * ```javascript * // Deletes the bandwidth rate limits of a gateway; either the upload or download limit, or both. * const input = { - * "BandwidthType": "All", - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * BandwidthType: "All", + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new DeleteBandwidthRateLimitCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-delete-bandwidth-rate-limits-of-gateway-1471373225520 * ``` * + * @public */ export class DeleteBandwidthRateLimitCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DeleteCacheReportCommand.ts b/clients/client-storage-gateway/src/commands/DeleteCacheReportCommand.ts index 9845602b0bcac..d184a3995f46a 100644 --- a/clients/client-storage-gateway/src/commands/DeleteCacheReportCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteCacheReportCommand.ts @@ -69,6 +69,7 @@ export interface DeleteCacheReportCommandOutput extends DeleteCacheReportOutput, * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class DeleteCacheReportCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/DeleteChapCredentialsCommand.ts b/clients/client-storage-gateway/src/commands/DeleteChapCredentialsCommand.ts index 36001b111536c..f1900f6b1ce31 100644 --- a/clients/client-storage-gateway/src/commands/DeleteChapCredentialsCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteChapCredentialsCommand.ts @@ -67,25 +67,25 @@ export interface DeleteChapCredentialsCommandOutput extends DeleteChapCredential * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To delete CHAP credentials * ```javascript * // Deletes Challenge-Handshake Authentication Protocol (CHAP) credentials for a specified iSCSI target and initiator pair. * const input = { - * "InitiatorName": "iqn.1991-05.com.microsoft:computername.domain.example.com", - * "TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" + * InitiatorName: "iqn.1991-05.com.microsoft:computername.domain.example.com", + * TargetARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" * }; * const command = new DeleteChapCredentialsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InitiatorName": "iqn.1991-05.com.microsoft:computername.domain.example.com", - * "TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" + * InitiatorName: "iqn.1991-05.com.microsoft:computername.domain.example.com", + * TargetARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" * } * *\/ - * // example id: to-delete-chap-credentials-1471375025612 * ``` * + * @public */ export class DeleteChapCredentialsCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DeleteFileShareCommand.ts b/clients/client-storage-gateway/src/commands/DeleteFileShareCommand.ts index 2979d8bc85eaf..d6a06be6ab15c 100644 --- a/clients/client-storage-gateway/src/commands/DeleteFileShareCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteFileShareCommand.ts @@ -65,6 +65,7 @@ export interface DeleteFileShareCommandOutput extends DeleteFileShareOutput, __M * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class DeleteFileShareCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/DeleteGatewayCommand.ts b/clients/client-storage-gateway/src/commands/DeleteGatewayCommand.ts index 7f487ecc6f1f3..8b5c194ad9dd2 100644 --- a/clients/client-storage-gateway/src/commands/DeleteGatewayCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteGatewayCommand.ts @@ -78,23 +78,23 @@ export interface DeleteGatewayCommandOutput extends DeleteGatewayOutput, __Metad * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To delete a gatgeway * ```javascript * // This operation deletes the gateway, but not the gateway's VM from the host computer. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new DeleteGatewayCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-delete-a-gatgeway-1471381697333 * ``` * + * @public */ export class DeleteGatewayCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DeleteSnapshotScheduleCommand.ts b/clients/client-storage-gateway/src/commands/DeleteSnapshotScheduleCommand.ts index 6494e2c4a1ca0..cec56d6b0300f 100644 --- a/clients/client-storage-gateway/src/commands/DeleteSnapshotScheduleCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteSnapshotScheduleCommand.ts @@ -74,23 +74,23 @@ export interface DeleteSnapshotScheduleCommandOutput extends DeleteSnapshotSched * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To delete a snapshot of a volume * ```javascript * // This action enables you to delete a snapshot schedule for a volume. * const input = { - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" * }; * const command = new DeleteSnapshotScheduleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" * } * *\/ - * // example id: to-delete-a-snapshot-of-a-volume-1471382234377 * ``` * + * @public */ export class DeleteSnapshotScheduleCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DeleteTapeArchiveCommand.ts b/clients/client-storage-gateway/src/commands/DeleteTapeArchiveCommand.ts index a8b0c3a7167aa..59772dadde394 100644 --- a/clients/client-storage-gateway/src/commands/DeleteTapeArchiveCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteTapeArchiveCommand.ts @@ -65,23 +65,23 @@ export interface DeleteTapeArchiveCommandOutput extends DeleteTapeArchiveOutput, * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To delete a virtual tape from the shelf (VTS) * ```javascript * // Deletes the specified virtual tape from the virtual tape shelf (VTS). * const input = { - * "TapeARN": "arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0" + * TapeARN: "arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0" * }; * const command = new DeleteTapeArchiveCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TapeARN": "arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0" + * TapeARN: "arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0" * } * *\/ - * // example id: to-delete-a-virtual-tape-from-the-shelf-vts-1471383964329 * ``` * + * @public */ export class DeleteTapeArchiveCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DeleteTapeCommand.ts b/clients/client-storage-gateway/src/commands/DeleteTapeCommand.ts index 3d540d821a464..b5106ffa4cdb0 100644 --- a/clients/client-storage-gateway/src/commands/DeleteTapeCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteTapeCommand.ts @@ -66,24 +66,24 @@ export interface DeleteTapeCommandOutput extends DeleteTapeOutput, __MetadataBea * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To delete a virtual tape * ```javascript * // This example deletes the specified virtual tape. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:204469490176:gateway/sgw-12A3456B", - * "TapeARN": "arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0" + * GatewayARN: "arn:aws:storagegateway:us-east-1:204469490176:gateway/sgw-12A3456B", + * TapeARN: "arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0" * }; * const command = new DeleteTapeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TapeARN": "arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0" + * TapeARN: "arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0" * } * *\/ - * // example id: to-delete-a-virtual-tape-1471382444157 * ``` * + * @public */ export class DeleteTapeCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DeleteTapePoolCommand.ts b/clients/client-storage-gateway/src/commands/DeleteTapePoolCommand.ts index 11d6f6ccccb15..8af78923ac90a 100644 --- a/clients/client-storage-gateway/src/commands/DeleteTapePoolCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteTapePoolCommand.ts @@ -65,6 +65,7 @@ export interface DeleteTapePoolCommandOutput extends DeleteTapePoolOutput, __Met * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class DeleteTapePoolCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/DeleteVolumeCommand.ts b/clients/client-storage-gateway/src/commands/DeleteVolumeCommand.ts index df0f01a530a56..252f2a4621e16 100644 --- a/clients/client-storage-gateway/src/commands/DeleteVolumeCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteVolumeCommand.ts @@ -73,23 +73,23 @@ export interface DeleteVolumeCommandOutput extends DeleteVolumeOutput, __Metadat * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To delete a gateway volume * ```javascript * // Deletes the specified gateway volume that you previously created using the CreateCachediSCSIVolume or CreateStorediSCSIVolume API. * const input = { - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" * }; * const command = new DeleteVolumeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" * } * *\/ - * // example id: to-delete-a-gateway-volume-1471384418416 * ``` * + * @public */ export class DeleteVolumeCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DescribeAvailabilityMonitorTestCommand.ts b/clients/client-storage-gateway/src/commands/DescribeAvailabilityMonitorTestCommand.ts index a20fb3250d623..afb0564223525 100644 --- a/clients/client-storage-gateway/src/commands/DescribeAvailabilityMonitorTestCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeAvailabilityMonitorTestCommand.ts @@ -72,6 +72,7 @@ export interface DescribeAvailabilityMonitorTestCommandOutput * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class DescribeAvailabilityMonitorTestCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitCommand.ts b/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitCommand.ts index 27593253060e7..2e35758589f25 100644 --- a/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitCommand.ts @@ -72,25 +72,25 @@ export interface DescribeBandwidthRateLimitCommandOutput extends DescribeBandwid * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To describe the bandwidth rate limits of a gateway * ```javascript * // Returns a value for a bandwidth rate limit if set. If not set, then only the gateway ARN is returned. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new DescribeBandwidthRateLimitCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AverageDownloadRateLimitInBitsPerSec": 204800, - * "AverageUploadRateLimitInBitsPerSec": 102400, - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * AverageDownloadRateLimitInBitsPerSec: 204800, + * AverageUploadRateLimitInBitsPerSec: 102400, + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-describe-the-bandwidth-rate-limits-of-a-gateway-1471384826404 * ``` * + * @public */ export class DescribeBandwidthRateLimitCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitScheduleCommand.ts b/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitScheduleCommand.ts index e95b829aafdf7..de5f6f2b492f2 100644 --- a/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitScheduleCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitScheduleCommand.ts @@ -94,6 +94,7 @@ export interface DescribeBandwidthRateLimitScheduleCommandOutput * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class DescribeBandwidthRateLimitScheduleCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/DescribeCacheCommand.ts b/clients/client-storage-gateway/src/commands/DescribeCacheCommand.ts index 43343a9c2c6fd..68498e8f4c5be 100644 --- a/clients/client-storage-gateway/src/commands/DescribeCacheCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeCacheCommand.ts @@ -74,32 +74,32 @@ export interface DescribeCacheCommandOutput extends DescribeCacheOutput, __Metad * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To describe cache information * ```javascript * // Returns information about the cache of a gateway. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new DescribeCacheCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CacheAllocatedInBytes": 2199023255552, - * "CacheDirtyPercentage": 0.07, - * "CacheHitPercentage": 99.68, - * "CacheMissPercentage": 0.32, - * "CacheUsedPercentage": 0.07, - * "DiskIds": [ + * CacheAllocatedInBytes: 2199023255552, + * CacheDirtyPercentage: 0.07, + * CacheHitPercentage: 99.68, + * CacheMissPercentage: 0.32, + * CacheUsedPercentage: 0.07, + * DiskIds: [ * "pci-0000:03:00.0-scsi-0:0:0:0", * "pci-0000:04:00.0-scsi-0:1:0:0" * ], - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-describe-cache-information-1471385756036 * ``` * + * @public */ export class DescribeCacheCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DescribeCacheReportCommand.ts b/clients/client-storage-gateway/src/commands/DescribeCacheReportCommand.ts index ec6715a227ce3..8c48670070249 100644 --- a/clients/client-storage-gateway/src/commands/DescribeCacheReportCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeCacheReportCommand.ts @@ -96,6 +96,7 @@ export interface DescribeCacheReportCommandOutput extends DescribeCacheReportOut * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class DescribeCacheReportCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/DescribeCachediSCSIVolumesCommand.ts b/clients/client-storage-gateway/src/commands/DescribeCachediSCSIVolumesCommand.ts index 39718fba93bed..bc28b9850862a 100644 --- a/clients/client-storage-gateway/src/commands/DescribeCachediSCSIVolumesCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeCachediSCSIVolumesCommand.ts @@ -91,40 +91,40 @@ export interface DescribeCachediSCSIVolumesCommandOutput extends DescribeCachedi * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To describe gateway cached iSCSI volumes * ```javascript * // Returns a description of the gateway cached iSCSI volumes specified in the request. * const input = { - * "VolumeARNs": [ + * VolumeARNs: [ * "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" * ] * }; * const command = new DescribeCachediSCSIVolumesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "CachediSCSIVolumes": [ + * CachediSCSIVolumes: [ * { - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB", - * "VolumeId": "vol-1122AABB", - * "VolumeSizeInBytes": 1099511627776, - * "VolumeStatus": "AVAILABLE", - * "VolumeType": "CACHED iSCSI", - * "VolumeiSCSIAttributes": { - * "ChapEnabled": true, - * "LunNumber": 1, - * "NetworkInterfaceId": "10.243.43.207", - * "NetworkInterfacePort": 3260, - * "TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB", + * VolumeId: "vol-1122AABB", + * VolumeSizeInBytes: 1099511627776, + * VolumeStatus: "AVAILABLE", + * VolumeType: "CACHED iSCSI", + * VolumeiSCSIAttributes: { + * ChapEnabled: true, + * LunNumber: 1, + * NetworkInterfaceId: "10.243.43.207", + * NetworkInterfacePort: 3260, + * TargetARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" * } * } * ] * } * *\/ - * // example id: to-describe-gateway-cached-iscsi-volumes-1471458094649 * ``` * + * @public */ export class DescribeCachediSCSIVolumesCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DescribeChapCredentialsCommand.ts b/clients/client-storage-gateway/src/commands/DescribeChapCredentialsCommand.ts index 6792ff5dc9044..6000b38cc88d0 100644 --- a/clients/client-storage-gateway/src/commands/DescribeChapCredentialsCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeChapCredentialsCommand.ts @@ -76,30 +76,30 @@ export interface DescribeChapCredentialsCommandOutput extends DescribeChapCreden * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To describe CHAP credetnitals for an iSCSI * ```javascript * // Returns an array of Challenge-Handshake Authentication Protocol (CHAP) credentials information for a specified iSCSI target, one for each target-initiator pair. * const input = { - * "TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" + * TargetARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" * }; * const command = new DescribeChapCredentialsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChapCredentials": [ + * ChapCredentials: [ * { - * "InitiatorName": "iqn.1991-05.com.microsoft:computername.domain.example.com", - * "SecretToAuthenticateInitiator": "111111111111", - * "SecretToAuthenticateTarget": "222222222222", - * "TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" + * InitiatorName: "iqn.1991-05.com.microsoft:computername.domain.example.com", + * SecretToAuthenticateInitiator: "111111111111", + * SecretToAuthenticateTarget: "222222222222", + * TargetARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" * } * ] * } * *\/ - * // example id: to-describe-chap-credetnitals-for-an-iscsi-1471467462967 * ``` * + * @public */ export class DescribeChapCredentialsCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DescribeFileSystemAssociationsCommand.ts b/clients/client-storage-gateway/src/commands/DescribeFileSystemAssociationsCommand.ts index 339376be38431..f5bd9579c780e 100644 --- a/clients/client-storage-gateway/src/commands/DescribeFileSystemAssociationsCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeFileSystemAssociationsCommand.ts @@ -98,6 +98,7 @@ export interface DescribeFileSystemAssociationsCommandOutput * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class DescribeFileSystemAssociationsCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/DescribeGatewayInformationCommand.ts b/clients/client-storage-gateway/src/commands/DescribeGatewayInformationCommand.ts index 435505411ebe3..d18d3b52317ae 100644 --- a/clients/client-storage-gateway/src/commands/DescribeGatewayInformationCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeGatewayInformationCommand.ts @@ -103,35 +103,35 @@ export interface DescribeGatewayInformationCommandOutput extends DescribeGateway * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To describe metadata about the gateway * ```javascript * // Returns metadata about a gateway such as its name, network interfaces, configured time zone, and the state (whether the gateway is running or not). * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new DescribeGatewayInformationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "GatewayId": "sgw-AABB1122", - * "GatewayName": "My_Gateway", - * "GatewayNetworkInterfaces": [ + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * GatewayId: "sgw-AABB1122", + * GatewayName: "My_Gateway", + * GatewayNetworkInterfaces: [ * { - * "Ipv4Address": "10.35.69.216" + * Ipv4Address: "10.35.69.216" * } * ], - * "GatewayState": "STATE_RUNNING", - * "GatewayTimezone": "GMT-8:00", - * "GatewayType": "STORED", - * "LastSoftwareUpdate": "2016-01-02T16:00:00", - * "NextUpdateAvailabilityDate": "2017-01-02T16:00:00" + * GatewayState: "STATE_RUNNING", + * GatewayTimezone: "GMT-8:00", + * GatewayType: "STORED", + * LastSoftwareUpdate: "2016-01-02T16:00:00", + * NextUpdateAvailabilityDate: "2017-01-02T16:00:00" * } * *\/ - * // example id: to-describe-metadata-about-the-gateway-1471467849079 * ``` * + * @public */ export class DescribeGatewayInformationCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DescribeMaintenanceStartTimeCommand.ts b/clients/client-storage-gateway/src/commands/DescribeMaintenanceStartTimeCommand.ts index aaeb22603856f..8dcee3e76c1e0 100644 --- a/clients/client-storage-gateway/src/commands/DescribeMaintenanceStartTimeCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeMaintenanceStartTimeCommand.ts @@ -78,27 +78,27 @@ export interface DescribeMaintenanceStartTimeCommandOutput * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To describe gateway's maintenance start time * ```javascript * // Returns your gateway's weekly maintenance start time including the day and time of the week. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new DescribeMaintenanceStartTimeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DayOfWeek": 2, - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "HourOfDay": 15, - * "MinuteOfHour": 35, - * "Timezone": "GMT+7:00" + * DayOfWeek: 2, + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * HourOfDay: 15, + * MinuteOfHour: 35, + * Timezone: "GMT+7:00" * } * *\/ - * // example id: to-describe-gateways-maintenance-start-time-1471470727387 * ``` * + * @public */ export class DescribeMaintenanceStartTimeCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DescribeNFSFileSharesCommand.ts b/clients/client-storage-gateway/src/commands/DescribeNFSFileSharesCommand.ts index 052e03453b21f..06416a7bf9adc 100644 --- a/clients/client-storage-gateway/src/commands/DescribeNFSFileSharesCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeNFSFileSharesCommand.ts @@ -108,6 +108,7 @@ export interface DescribeNFSFileSharesCommandOutput extends DescribeNFSFileShare * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class DescribeNFSFileSharesCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/DescribeSMBFileSharesCommand.ts b/clients/client-storage-gateway/src/commands/DescribeSMBFileSharesCommand.ts index a3313597088fb..3cbfe1f19f4b6 100644 --- a/clients/client-storage-gateway/src/commands/DescribeSMBFileSharesCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeSMBFileSharesCommand.ts @@ -112,6 +112,7 @@ export interface DescribeSMBFileSharesCommandOutput extends DescribeSMBFileShare * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class DescribeSMBFileSharesCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/DescribeSMBSettingsCommand.ts b/clients/client-storage-gateway/src/commands/DescribeSMBSettingsCommand.ts index a25b987762039..f54979ab17ba4 100644 --- a/clients/client-storage-gateway/src/commands/DescribeSMBSettingsCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeSMBSettingsCommand.ts @@ -74,6 +74,7 @@ export interface DescribeSMBSettingsCommandOutput extends DescribeSMBSettingsOut * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class DescribeSMBSettingsCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/DescribeSnapshotScheduleCommand.ts b/clients/client-storage-gateway/src/commands/DescribeSnapshotScheduleCommand.ts index b1bd2138d5db8..705ac62a7ddb3 100644 --- a/clients/client-storage-gateway/src/commands/DescribeSnapshotScheduleCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeSnapshotScheduleCommand.ts @@ -76,27 +76,27 @@ export interface DescribeSnapshotScheduleCommandOutput extends DescribeSnapshotS * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To describe snapshot schedule for gateway volume * ```javascript * // Describes the snapshot schedule for the specified gateway volume including intervals at which snapshots are automatically initiated. * const input = { - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" * }; * const command = new DescribeSnapshotScheduleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Description": "sgw-AABB1122:vol-AABB1122:Schedule", - * "RecurrenceInHours": 24, - * "StartAt": 6, - * "Timezone": "GMT+7:00", - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" + * Description: "sgw-AABB1122:vol-AABB1122:Schedule", + * RecurrenceInHours: 24, + * StartAt: 6, + * Timezone: "GMT+7:00", + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" * } * *\/ - * // example id: to-describe-snapshot-schedule-for-gateway-volume-1471471139538 * ``` * + * @public */ export class DescribeSnapshotScheduleCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DescribeStorediSCSIVolumesCommand.ts b/clients/client-storage-gateway/src/commands/DescribeStorediSCSIVolumesCommand.ts index e5d7d3be7e193..bd7a7ec186e4d 100644 --- a/clients/client-storage-gateway/src/commands/DescribeStorediSCSIVolumesCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeStorediSCSIVolumesCommand.ts @@ -91,41 +91,41 @@ export interface DescribeStorediSCSIVolumesCommandOutput extends DescribeStoredi * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To describe the volumes of a gateway * ```javascript * // Returns the description of the gateway volumes specified in the request belonging to the same gateway. * const input = { - * "VolumeARNs": [ + * VolumeARNs: [ * "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" * ] * }; * const command = new DescribeStorediSCSIVolumesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "StorediSCSIVolumes": [ + * StorediSCSIVolumes: [ * { - * "PreservedExistingData": false, - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB", - * "VolumeDiskId": "pci-0000:03:00.0-scsi-0:0:0:0", - * "VolumeId": "vol-1122AABB", - * "VolumeProgress": 23.7, - * "VolumeSizeInBytes": 1099511627776, - * "VolumeStatus": "BOOTSTRAPPING", - * "VolumeiSCSIAttributes": { - * "ChapEnabled": true, - * "NetworkInterfaceId": "10.243.43.207", - * "NetworkInterfacePort": 3260, - * "TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" + * PreservedExistingData: false, + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB", + * VolumeDiskId: "pci-0000:03:00.0-scsi-0:0:0:0", + * VolumeId: "vol-1122AABB", + * VolumeProgress: 23.7, + * VolumeSizeInBytes: 1099511627776, + * VolumeStatus: "BOOTSTRAPPING", + * VolumeiSCSIAttributes: { + * ChapEnabled: true, + * NetworkInterfaceId: "10.243.43.207", + * NetworkInterfacePort: 3260, + * TargetARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" * } * } * ] * } * *\/ - * // example id: to-describe-the-volumes-of-a-gateway-1471472640660 * ``` * + * @public */ export class DescribeStorediSCSIVolumesCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DescribeTapeArchivesCommand.ts b/clients/client-storage-gateway/src/commands/DescribeTapeArchivesCommand.ts index ecc847565d5e3..e393a9166f473 100644 --- a/clients/client-storage-gateway/src/commands/DescribeTapeArchivesCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeTapeArchivesCommand.ts @@ -87,44 +87,8 @@ export interface DescribeTapeArchivesCommandOutput extends DescribeTapeArchivesO * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public - * @example To describe virtual tapes in the VTS - * ```javascript - * // Returns a description of specified virtual tapes in the virtual tape shelf (VTS). - * const input = { - * "Limit": 123, - * "Marker": "1", - * "TapeARNs": [ - * "arn:aws:storagegateway:us-east-1:999999999999:tape/AM08A1AD", - * "arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4" - * ] - * }; - * const command = new DescribeTapeArchivesCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "Marker": "1", - * "TapeArchives": [ - * { - * "CompletionTime": "2016-12-16T13:50Z", - * "TapeARN": "arn:aws:storagegateway:us-east-1:999999999:tape/AM08A1AD", - * "TapeBarcode": "AM08A1AD", - * "TapeSizeInBytes": 107374182400, - * "TapeStatus": "ARCHIVED" - * }, - * { - * "CompletionTime": "2016-12-16T13:59Z", - * "TapeARN": "arn:aws:storagegateway:us-east-1:999999999:tape/AMZN01A2A4", - * "TapeBarcode": "AMZN01A2A4", - * "TapeSizeInBytes": 429496729600, - * "TapeStatus": "ARCHIVED" - * } - * ] - * } - * *\/ - * // example id: to-describe-virtual-tapes-in-the-vts-1471473188198 - * ``` * + * @public */ export class DescribeTapeArchivesCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DescribeTapeRecoveryPointsCommand.ts b/clients/client-storage-gateway/src/commands/DescribeTapeRecoveryPointsCommand.ts index 6d1460d306526..142283f9475a0 100644 --- a/clients/client-storage-gateway/src/commands/DescribeTapeRecoveryPointsCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeTapeRecoveryPointsCommand.ts @@ -79,34 +79,8 @@ export interface DescribeTapeRecoveryPointsCommandOutput extends DescribeTapeRec * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public - * @example To describe virtual tape recovery points - * ```javascript - * // Returns a list of virtual tape recovery points that are available for the specified gateway-VTL. - * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "Limit": 1, - * "Marker": "1" - * }; - * const command = new DescribeTapeRecoveryPointsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "Marker": "1", - * "TapeRecoveryPointInfos": [ - * { - * "TapeARN": "arn:aws:storagegateway:us-east-1:999999999:tape/AMZN01A2A4", - * "TapeRecoveryPointTime": "2016-12-16T13:50Z", - * "TapeSizeInBytes": 1471550497, - * "TapeStatus": "AVAILABLE" - * } - * ] - * } - * *\/ - * // example id: to-describe-virtual-tape-recovery-points-1471542042026 - * ``` * + * @public */ export class DescribeTapeRecoveryPointsCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DescribeTapesCommand.ts b/clients/client-storage-gateway/src/commands/DescribeTapesCommand.ts index 306edd7ce6597..ab99860c2bd33 100644 --- a/clients/client-storage-gateway/src/commands/DescribeTapesCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeTapesCommand.ts @@ -94,43 +94,43 @@ export interface DescribeTapesCommandOutput extends DescribeTapesOutput, __Metad * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To describe virtual tape(s) associated with gateway * ```javascript * // Returns a description of the specified Amazon Resource Name (ARN) of virtual tapes. If a TapeARN is not specified, returns a description of all virtual tapes. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", - * "Limit": 2, - * "Marker": "1", - * "TapeARNs": [ + * GatewayARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", + * Limit: 2, + * Marker: "1", + * TapeARNs: [ * "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST04A2A1", * "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST05A2A0" * ] * }; * const command = new DescribeTapesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "1", - * "Tapes": [ + * Marker: "1", + * Tapes: [ * { - * "TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST04A2A1", - * "TapeBarcode": "TEST04A2A1", - * "TapeSizeInBytes": 107374182400, - * "TapeStatus": "AVAILABLE" + * TapeARN: "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST04A2A1", + * TapeBarcode: "TEST04A2A1", + * TapeSizeInBytes: 107374182400, + * TapeStatus: "AVAILABLE" * }, * { - * "TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST05A2A0", - * "TapeBarcode": "TEST05A2A0", - * "TapeSizeInBytes": 107374182400, - * "TapeStatus": "AVAILABLE" + * TapeARN: "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST05A2A0", + * TapeBarcode: "TEST05A2A0", + * TapeSizeInBytes: 107374182400, + * TapeStatus: "AVAILABLE" * } * ] * } * *\/ - * // example id: to-describe-virtual-tapes-associated-with-gateway-1471629287727 * ``` * + * @public */ export class DescribeTapesCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DescribeUploadBufferCommand.ts b/clients/client-storage-gateway/src/commands/DescribeUploadBufferCommand.ts index 6b5e9ec7efdfb..0457a0aee6d5e 100644 --- a/clients/client-storage-gateway/src/commands/DescribeUploadBufferCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeUploadBufferCommand.ts @@ -71,51 +71,50 @@ export interface DescribeUploadBufferCommandOutput extends DescribeUploadBufferO * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public - * @example To describe upload buffer of gateway + * + * @example To describe upload buffer of a gateway * ```javascript - * // Returns information about the upload buffer of a gateway including disk IDs and the amount of upload buffer space allocated/used. + * // Returns information about the upload buffer of a gateway including disk IDs and the amount of upload buffer space allocated and used. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new DescribeUploadBufferCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DiskIds": [ + * DiskIds: [ * "pci-0000:03:00.0-scsi-0:0:0:0", * "pci-0000:04:00.0-scsi-0:1:0:0" * ], - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "UploadBufferAllocatedInBytes": 0, - * "UploadBufferUsedInBytes": 161061273600 + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * UploadBufferAllocatedInBytes: 161061273600, + * UploadBufferUsedInBytes: 0 * } * *\/ - * // example id: to-describe-upload-buffer-of-gateway-1471631099003 * ``` * - * @example To describe upload buffer of a gateway + * @example To describe upload buffer of gateway * ```javascript - * // Returns information about the upload buffer of a gateway including disk IDs and the amount of upload buffer space allocated and used. + * // Returns information about the upload buffer of a gateway including disk IDs and the amount of upload buffer space allocated/used. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new DescribeUploadBufferCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DiskIds": [ + * DiskIds: [ * "pci-0000:03:00.0-scsi-0:0:0:0", * "pci-0000:04:00.0-scsi-0:1:0:0" * ], - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "UploadBufferAllocatedInBytes": 161061273600, - * "UploadBufferUsedInBytes": 0 + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * UploadBufferAllocatedInBytes: 0, + * UploadBufferUsedInBytes: 161061273600 * } * *\/ - * // example id: to-describe-upload-buffer-of-a-gateway--1471904566370 * ``` * + * @public */ export class DescribeUploadBufferCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DescribeVTLDevicesCommand.ts b/clients/client-storage-gateway/src/commands/DescribeVTLDevicesCommand.ts index d6a3712c8c353..0b4439abf6f53 100644 --- a/clients/client-storage-gateway/src/commands/DescribeVTLDevicesCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeVTLDevicesCommand.ts @@ -85,65 +85,65 @@ export interface DescribeVTLDevicesCommandOutput extends DescribeVTLDevicesOutpu * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To describe virtual tape library (VTL) devices of a single gateway * ```javascript * // Returns a description of virtual tape library (VTL) devices for the specified gateway. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", - * "Limit": 123, - * "Marker": "1", - * "VTLDeviceARNs": [] + * GatewayARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", + * Limit: 123, + * Marker: "1", + * VTLDeviceARNs: [] * }; * const command = new DescribeVTLDevicesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", - * "Marker": "1", - * "VTLDevices": [ + * GatewayARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", + * Marker: "1", + * VTLDevices: [ * { - * "DeviceiSCSIAttributes": { - * "ChapEnabled": false, - * "NetworkInterfaceId": "10.243.43.207", - * "NetworkInterfacePort": 3260, - * "TargetARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:sgw-1fad4876-mediachanger" + * DeviceiSCSIAttributes: { + * ChapEnabled: false, + * NetworkInterfaceId: "10.243.43.207", + * NetworkInterfacePort: 3260, + * TargetARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:sgw-1fad4876-mediachanger" * }, - * "VTLDeviceARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_MEDIACHANGER_00001", - * "VTLDeviceProductIdentifier": "L700", - * "VTLDeviceType": "Medium Changer", - * "VTLDeviceVendor": "STK" + * VTLDeviceARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_MEDIACHANGER_00001", + * VTLDeviceProductIdentifier: "L700", + * VTLDeviceType: "Medium Changer", + * VTLDeviceVendor: "STK" * }, * { - * "DeviceiSCSIAttributes": { - * "ChapEnabled": false, - * "NetworkInterfaceId": "10.243.43.209", - * "NetworkInterfacePort": 3260, - * "TargetARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:sgw-1fad4876-tapedrive-01" + * DeviceiSCSIAttributes: { + * ChapEnabled: false, + * NetworkInterfaceId: "10.243.43.209", + * NetworkInterfacePort: 3260, + * TargetARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:sgw-1fad4876-tapedrive-01" * }, - * "VTLDeviceARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_TAPEDRIVE_00001", - * "VTLDeviceProductIdentifier": "ULT3580-TD5", - * "VTLDeviceType": "Tape Drive", - * "VTLDeviceVendor": "IBM" + * VTLDeviceARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_TAPEDRIVE_00001", + * VTLDeviceProductIdentifier: "ULT3580-TD5", + * VTLDeviceType: "Tape Drive", + * VTLDeviceVendor: "IBM" * }, * { - * "DeviceiSCSIAttributes": { - * "ChapEnabled": false, - * "NetworkInterfaceId": "10.243.43.209", - * "NetworkInterfacePort": 3260, - * "TargetARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:sgw-1fad4876-tapedrive-02" + * DeviceiSCSIAttributes: { + * ChapEnabled: false, + * NetworkInterfaceId: "10.243.43.209", + * NetworkInterfacePort: 3260, + * TargetARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:sgw-1fad4876-tapedrive-02" * }, - * "VTLDeviceARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_TAPEDRIVE_00002", - * "VTLDeviceProductIdentifier": "ULT3580-TD5", - * "VTLDeviceType": "Tape Drive", - * "VTLDeviceVendor": "IBM" + * VTLDeviceARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_TAPEDRIVE_00002", + * VTLDeviceProductIdentifier: "ULT3580-TD5", + * VTLDeviceType: "Tape Drive", + * VTLDeviceVendor: "IBM" * } * ] * } * *\/ - * // example id: to-describe-virtual-tape-library-vtl-devices-of-a-single-gateway-1471906071410 * ``` * + * @public */ export class DescribeVTLDevicesCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DescribeWorkingStorageCommand.ts b/clients/client-storage-gateway/src/commands/DescribeWorkingStorageCommand.ts index 2809ba85e217a..08bdf27e28802 100644 --- a/clients/client-storage-gateway/src/commands/DescribeWorkingStorageCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeWorkingStorageCommand.ts @@ -76,29 +76,29 @@ export interface DescribeWorkingStorageCommandOutput extends DescribeWorkingStor * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To describe the working storage of a gateway [Depreciated] * ```javascript * // This operation is supported only for the gateway-stored volume architecture. This operation is deprecated in cached-volumes API version (20120630). Use DescribeUploadBuffer instead. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new DescribeWorkingStorageCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DiskIds": [ + * DiskIds: [ * "pci-0000:03:00.0-scsi-0:0:0:0", * "pci-0000:03:00.0-scsi-0:0:1:0" * ], - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "WorkingStorageAllocatedInBytes": 2199023255552, - * "WorkingStorageUsedInBytes": 789207040 + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * WorkingStorageAllocatedInBytes: 2199023255552, + * WorkingStorageUsedInBytes: 789207040 * } * *\/ - * // example id: to-describe-the-working-storage-of-a-gateway-depreciated-1472070842332 * ``` * + * @public */ export class DescribeWorkingStorageCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DetachVolumeCommand.ts b/clients/client-storage-gateway/src/commands/DetachVolumeCommand.ts index e7236efbf6cdc..7403323edf94b 100644 --- a/clients/client-storage-gateway/src/commands/DetachVolumeCommand.ts +++ b/clients/client-storage-gateway/src/commands/DetachVolumeCommand.ts @@ -68,6 +68,7 @@ export interface DetachVolumeCommandOutput extends DetachVolumeOutput, __Metadat * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class DetachVolumeCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/DisableGatewayCommand.ts b/clients/client-storage-gateway/src/commands/DisableGatewayCommand.ts index 4164d22f93581..1922e920fba21 100644 --- a/clients/client-storage-gateway/src/commands/DisableGatewayCommand.ts +++ b/clients/client-storage-gateway/src/commands/DisableGatewayCommand.ts @@ -69,23 +69,23 @@ export interface DisableGatewayCommandOutput extends DisableGatewayOutput, __Met * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To disable a gateway when it is no longer functioning * ```javascript * // Disables a gateway when the gateway is no longer functioning. Use this operation for a gateway-VTL that is not reachable or not functioning. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new DisableGatewayCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-disable-a-gateway-when-it-is-no-longer-functioning-1472076046936 * ``` * + * @public */ export class DisableGatewayCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/DisassociateFileSystemCommand.ts b/clients/client-storage-gateway/src/commands/DisassociateFileSystemCommand.ts index f2ca519a9effe..99816572748ef 100644 --- a/clients/client-storage-gateway/src/commands/DisassociateFileSystemCommand.ts +++ b/clients/client-storage-gateway/src/commands/DisassociateFileSystemCommand.ts @@ -66,6 +66,7 @@ export interface DisassociateFileSystemCommandOutput extends DisassociateFileSys * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class DisassociateFileSystemCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/EvictFilesFailingUploadCommand.ts b/clients/client-storage-gateway/src/commands/EvictFilesFailingUploadCommand.ts index 131dd597c4319..6ccc87855ec8a 100644 --- a/clients/client-storage-gateway/src/commands/EvictFilesFailingUploadCommand.ts +++ b/clients/client-storage-gateway/src/commands/EvictFilesFailingUploadCommand.ts @@ -76,6 +76,7 @@ export interface EvictFilesFailingUploadCommandOutput extends EvictFilesFailingU * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class EvictFilesFailingUploadCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/JoinDomainCommand.ts b/clients/client-storage-gateway/src/commands/JoinDomainCommand.ts index f00e95d41df90..498fe63f87584 100644 --- a/clients/client-storage-gateway/src/commands/JoinDomainCommand.ts +++ b/clients/client-storage-gateway/src/commands/JoinDomainCommand.ts @@ -82,6 +82,7 @@ export interface JoinDomainCommandOutput extends JoinDomainOutput, __MetadataBea * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class JoinDomainCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/ListAutomaticTapeCreationPoliciesCommand.ts b/clients/client-storage-gateway/src/commands/ListAutomaticTapeCreationPoliciesCommand.ts index 18a9b6dec61cb..d0734a811af3b 100644 --- a/clients/client-storage-gateway/src/commands/ListAutomaticTapeCreationPoliciesCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListAutomaticTapeCreationPoliciesCommand.ts @@ -83,6 +83,7 @@ export interface ListAutomaticTapeCreationPoliciesCommandOutput * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class ListAutomaticTapeCreationPoliciesCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/ListCacheReportsCommand.ts b/clients/client-storage-gateway/src/commands/ListCacheReportsCommand.ts index e9d3068429102..fa22b52f8f0ff 100644 --- a/clients/client-storage-gateway/src/commands/ListCacheReportsCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListCacheReportsCommand.ts @@ -101,6 +101,7 @@ export interface ListCacheReportsCommandOutput extends ListCacheReportsOutput, _ * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class ListCacheReportsCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/ListFileSharesCommand.ts b/clients/client-storage-gateway/src/commands/ListFileSharesCommand.ts index e607851064aa0..31ec0107fe272 100644 --- a/clients/client-storage-gateway/src/commands/ListFileSharesCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListFileSharesCommand.ts @@ -77,6 +77,7 @@ export interface ListFileSharesCommandOutput extends ListFileSharesOutput, __Met * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class ListFileSharesCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/ListFileSystemAssociationsCommand.ts b/clients/client-storage-gateway/src/commands/ListFileSystemAssociationsCommand.ts index 58e427d60e792..20b514a982c24 100644 --- a/clients/client-storage-gateway/src/commands/ListFileSystemAssociationsCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListFileSystemAssociationsCommand.ts @@ -76,6 +76,7 @@ export interface ListFileSystemAssociationsCommandOutput extends ListFileSystemA * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class ListFileSystemAssociationsCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/ListGatewaysCommand.ts b/clients/client-storage-gateway/src/commands/ListGatewaysCommand.ts index eab768ef04b91..8089eae723276 100644 --- a/clients/client-storage-gateway/src/commands/ListGatewaysCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListGatewaysCommand.ts @@ -87,32 +87,32 @@ export interface ListGatewaysCommandOutput extends ListGatewaysOutput, __Metadat * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To lists region specific gateways per AWS account * ```javascript * // Lists gateways owned by an AWS account in a specified region as requested. Results are sorted by gateway ARN up to a maximum of 100 gateways. * const input = { - * "Limit": 2, - * "Marker": "1" + * Limit: 2, + * Marker: "1" * }; * const command = new ListGatewaysCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Gateways": [ + * Gateways: [ * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }, * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-23A4567C" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-23A4567C" * } * ], - * "Marker": "1" + * Marker: "1" * } * *\/ - * // example id: to-lists-region-specific-gateways-per-aws-account-1472077860657 * ``` * + * @public */ export class ListGatewaysCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/ListLocalDisksCommand.ts b/clients/client-storage-gateway/src/commands/ListLocalDisksCommand.ts index 7b091a98dd6d6..4d4c2b07a697c 100644 --- a/clients/client-storage-gateway/src/commands/ListLocalDisksCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListLocalDisksCommand.ts @@ -84,42 +84,42 @@ export interface ListLocalDisksCommandOutput extends ListLocalDisksOutput, __Met * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To list the gateway's local disks * ```javascript * // The request returns a list of all disks, specifying which are configured as working storage, cache storage, or stored volume or not configured at all. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new ListLocalDisksCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Disks": [ + * Disks: [ * { - * "DiskAllocationType": "CACHE_STORAGE", - * "DiskId": "pci-0000:03:00.0-scsi-0:0:0:0", - * "DiskNode": "SCSI(0:0)", - * "DiskPath": "/dev/sda", - * "DiskSizeInBytes": 1099511627776, - * "DiskStatus": "missing" + * DiskAllocationType: "CACHE_STORAGE", + * DiskId: "pci-0000:03:00.0-scsi-0:0:0:0", + * DiskNode: "SCSI(0:0)", + * DiskPath: "/dev/sda", + * DiskSizeInBytes: 1099511627776, + * DiskStatus: "missing" * }, * { - * "DiskAllocationResource": "", - * "DiskAllocationType": "UPLOAD_BUFFER", - * "DiskId": "pci-0000:03:00.0-scsi-0:0:1:0", - * "DiskNode": "SCSI(0:1)", - * "DiskPath": "/dev/sdb", - * "DiskSizeInBytes": 1099511627776, - * "DiskStatus": "present" + * DiskAllocationResource: "", + * DiskAllocationType: "UPLOAD_BUFFER", + * DiskId: "pci-0000:03:00.0-scsi-0:0:1:0", + * DiskNode: "SCSI(0:1)", + * DiskPath: "/dev/sdb", + * DiskSizeInBytes: 1099511627776, + * DiskStatus: "present" * } * ], - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-list-the-gateways-local-disks-1472079564618 * ``` * + * @public */ export class ListLocalDisksCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/ListTagsForResourceCommand.ts b/clients/client-storage-gateway/src/commands/ListTagsForResourceCommand.ts index 302144c9747ab..53ee1305d8cf9 100644 --- a/clients/client-storage-gateway/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListTagsForResourceCommand.ts @@ -73,32 +73,32 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To list tags that have been added to a resource * ```javascript * // Lists the tags that have been added to the specified resource. * const input = { - * "Limit": 1, - * "Marker": "1", - * "ResourceARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B" + * Limit: 1, + * Marker: "1", + * ResourceARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Marker": "1", - * "ResourceARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B", - * "Tags": [ + * Marker: "1", + * ResourceARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B", + * Tags: [ * { - * "Key": "Dev Gatgeway Region", - * "Value": "East Coast" + * Key: "Dev Gatgeway Region", + * Value: "East Coast" * } * ] * } * *\/ - * // example id: to-list-tags-that-have-been-added-to-a-resource-1472080268972 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/ListTapePoolsCommand.ts b/clients/client-storage-gateway/src/commands/ListTapePoolsCommand.ts index 41e4efbbf3b03..c5eb11edaa30f 100644 --- a/clients/client-storage-gateway/src/commands/ListTapePoolsCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListTapePoolsCommand.ts @@ -84,6 +84,7 @@ export interface ListTapePoolsCommandOutput extends ListTapePoolsOutput, __Metad * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class ListTapePoolsCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/ListTapesCommand.ts b/clients/client-storage-gateway/src/commands/ListTapesCommand.ts index e92da5dd6bf14..1bb8e6ec43731 100644 --- a/clients/client-storage-gateway/src/commands/ListTapesCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListTapesCommand.ts @@ -88,6 +88,7 @@ export interface ListTapesCommandOutput extends ListTapesOutput, __MetadataBeare * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class ListTapesCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/ListVolumeInitiatorsCommand.ts b/clients/client-storage-gateway/src/commands/ListVolumeInitiatorsCommand.ts index ed4473d6378af..da315da65e637 100644 --- a/clients/client-storage-gateway/src/commands/ListVolumeInitiatorsCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListVolumeInitiatorsCommand.ts @@ -67,6 +67,7 @@ export interface ListVolumeInitiatorsCommandOutput extends ListVolumeInitiatorsO * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class ListVolumeInitiatorsCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/ListVolumeRecoveryPointsCommand.ts b/clients/client-storage-gateway/src/commands/ListVolumeRecoveryPointsCommand.ts index 48daa9678be9a..cf961eeb2cdda 100644 --- a/clients/client-storage-gateway/src/commands/ListVolumeRecoveryPointsCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListVolumeRecoveryPointsCommand.ts @@ -76,30 +76,30 @@ export interface ListVolumeRecoveryPointsCommandOutput extends ListVolumeRecover * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To list recovery points for a gateway * ```javascript * // Lists the recovery points for a specified gateway in which all data of the volume is consistent and can be used to create a snapshot. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new ListVolumeRecoveryPointsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "VolumeRecoveryPointInfos": [ + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * VolumeRecoveryPointInfos: [ * { - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB", - * "VolumeRecoveryPointTime": "2012-09-04T21:08:44.627Z", - * "VolumeSizeInBytes": 536870912000 + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB", + * VolumeRecoveryPointTime: "2012-09-04T21:08:44.627Z", + * VolumeSizeInBytes: 536870912000 * } * ] * } * *\/ - * // example id: to-list-recovery-points-for-a-gateway-1472143015088 * ``` * + * @public */ export class ListVolumeRecoveryPointsCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/ListVolumesCommand.ts b/clients/client-storage-gateway/src/commands/ListVolumesCommand.ts index 8dcbbf74e8e66..54d9b286b25f9 100644 --- a/clients/client-storage-gateway/src/commands/ListVolumesCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListVolumesCommand.ts @@ -85,44 +85,44 @@ export interface ListVolumesCommandOutput extends ListVolumesOutput, __MetadataB * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To list the iSCSI stored volumes of a gateway * ```javascript * // Lists the iSCSI stored volumes of a gateway. Results are sorted by volume ARN up to a maximum of 100 volumes. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "Limit": 2, - * "Marker": "1" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * Limit: 2, + * Marker: "1" * }; * const command = new ListVolumesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "Marker": "1", - * "VolumeInfos": [ + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * Marker: "1", + * VolumeInfos: [ * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "GatewayId": "sgw-12A3456B", - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB", - * "VolumeId": "vol-1122AABB", - * "VolumeSizeInBytes": 107374182400, - * "VolumeType": "STORED" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * GatewayId: "sgw-12A3456B", + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB", + * VolumeId: "vol-1122AABB", + * VolumeSizeInBytes: 107374182400, + * VolumeType: "STORED" * }, * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C", - * "GatewayId": "sgw-gw-13B4567C", - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C/volume/vol-3344CCDD", - * "VolumeId": "vol-1122AABB", - * "VolumeSizeInBytes": 107374182400, - * "VolumeType": "STORED" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C", + * GatewayId: "sgw-gw-13B4567C", + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C/volume/vol-3344CCDD", + * VolumeId: "vol-1122AABB", + * VolumeSizeInBytes: 107374182400, + * VolumeType: "STORED" * } * ] * } * *\/ - * // example id: to-list-the-iscsi-stored-volumes-of-a-gateway-1472145723653 * ``` * + * @public */ export class ListVolumesCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/NotifyWhenUploadedCommand.ts b/clients/client-storage-gateway/src/commands/NotifyWhenUploadedCommand.ts index 67cc04a48a9a2..5e2543c52efc2 100644 --- a/clients/client-storage-gateway/src/commands/NotifyWhenUploadedCommand.ts +++ b/clients/client-storage-gateway/src/commands/NotifyWhenUploadedCommand.ts @@ -74,6 +74,7 @@ export interface NotifyWhenUploadedCommandOutput extends NotifyWhenUploadedOutpu * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class NotifyWhenUploadedCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/RefreshCacheCommand.ts b/clients/client-storage-gateway/src/commands/RefreshCacheCommand.ts index 6b1bc7a6da314..89f60f80ac34f 100644 --- a/clients/client-storage-gateway/src/commands/RefreshCacheCommand.ts +++ b/clients/client-storage-gateway/src/commands/RefreshCacheCommand.ts @@ -108,6 +108,7 @@ export interface RefreshCacheCommandOutput extends RefreshCacheOutput, __Metadat * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class RefreshCacheCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-storage-gateway/src/commands/RemoveTagsFromResourceCommand.ts index 35de77aa4ccc4..fabdc2ab755ab 100644 --- a/clients/client-storage-gateway/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-storage-gateway/src/commands/RemoveTagsFromResourceCommand.ts @@ -67,27 +67,27 @@ export interface RemoveTagsFromResourceCommandOutput extends RemoveTagsFromResou * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To remove tags from a resource * ```javascript * // Lists the iSCSI stored volumes of a gateway. Removes one or more tags from the specified resource. * const input = { - * "ResourceARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B", - * "TagKeys": [ + * ResourceARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B", + * TagKeys: [ * "Dev Gatgeway Region", * "East Coast" * ] * }; * const command = new RemoveTagsFromResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ResourceARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B" + * ResourceARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B" * } * *\/ - * // example id: to-remove-tags-from-a-resource-1472147210553 * ``` * + * @public */ export class RemoveTagsFromResourceCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/ResetCacheCommand.ts b/clients/client-storage-gateway/src/commands/ResetCacheCommand.ts index 9a1a08bbd39cb..20ac7e1a68780 100644 --- a/clients/client-storage-gateway/src/commands/ResetCacheCommand.ts +++ b/clients/client-storage-gateway/src/commands/ResetCacheCommand.ts @@ -74,23 +74,23 @@ export interface ResetCacheCommandOutput extends ResetCacheOutput, __MetadataBea * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To reset cache disks in error status * ```javascript * // Resets all cache disks that have encountered a error and makes the disks available for reconfiguration as cache storage. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C" * }; * const command = new ResetCacheCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C" * } * *\/ - * // example id: to-reset-cache-disks-in-error-status-1472148909807 * ``` * + * @public */ export class ResetCacheCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/RetrieveTapeArchiveCommand.ts b/clients/client-storage-gateway/src/commands/RetrieveTapeArchiveCommand.ts index 95453ca20c56e..8d7481c09eea0 100644 --- a/clients/client-storage-gateway/src/commands/RetrieveTapeArchiveCommand.ts +++ b/clients/client-storage-gateway/src/commands/RetrieveTapeArchiveCommand.ts @@ -70,24 +70,24 @@ export interface RetrieveTapeArchiveCommandOutput extends RetrieveTapeArchiveOut * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To retrieve an archived tape from the VTS * ```javascript * // Retrieves an archived virtual tape from the virtual tape shelf (VTS) to a gateway-VTL. Virtual tapes archived in the VTS are not associated with any gateway. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", - * "TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF" + * GatewayARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", + * TapeARN: "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF" * }; * const command = new RetrieveTapeArchiveCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF" + * TapeARN: "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF" * } * *\/ - * // example id: to-retrieve-an-archived-tape-from-the-vts-1472149812358 * ``` * + * @public */ export class RetrieveTapeArchiveCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/RetrieveTapeRecoveryPointCommand.ts b/clients/client-storage-gateway/src/commands/RetrieveTapeRecoveryPointCommand.ts index 9528232873572..665a713eb4ded 100644 --- a/clients/client-storage-gateway/src/commands/RetrieveTapeRecoveryPointCommand.ts +++ b/clients/client-storage-gateway/src/commands/RetrieveTapeRecoveryPointCommand.ts @@ -73,24 +73,24 @@ export interface RetrieveTapeRecoveryPointCommandOutput extends RetrieveTapeReco * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To retrieve the recovery point of a virtual tape * ```javascript * // Retrieves the recovery point for the specified virtual tape. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", - * "TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF" + * GatewayARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", + * TapeARN: "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF" * }; * const command = new RetrieveTapeRecoveryPointCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF" + * TapeARN: "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF" * } * *\/ - * // example id: to-retrieve-the-recovery-point-of-a-virtual-tape-1472150014805 * ``` * + * @public */ export class RetrieveTapeRecoveryPointCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/SetLocalConsolePasswordCommand.ts b/clients/client-storage-gateway/src/commands/SetLocalConsolePasswordCommand.ts index b6b2ef26e3de0..940e9a8ef6f26 100644 --- a/clients/client-storage-gateway/src/commands/SetLocalConsolePasswordCommand.ts +++ b/clients/client-storage-gateway/src/commands/SetLocalConsolePasswordCommand.ts @@ -71,24 +71,24 @@ export interface SetLocalConsolePasswordCommandOutput extends SetLocalConsolePas * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To set a password for your VM * ```javascript * // Sets the password for your VM local console. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", - * "LocalConsolePassword": "PassWordMustBeAtLeast6Chars." + * GatewayARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B", + * LocalConsolePassword: "PassWordMustBeAtLeast6Chars." * }; * const command = new SetLocalConsolePasswordCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-set-a-password-for-your-vm-1472150202632 * ``` * + * @public */ export class SetLocalConsolePasswordCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/SetSMBGuestPasswordCommand.ts b/clients/client-storage-gateway/src/commands/SetSMBGuestPasswordCommand.ts index f353440ab19f0..d1d95372bb6ef 100644 --- a/clients/client-storage-gateway/src/commands/SetSMBGuestPasswordCommand.ts +++ b/clients/client-storage-gateway/src/commands/SetSMBGuestPasswordCommand.ts @@ -70,6 +70,7 @@ export interface SetSMBGuestPasswordCommandOutput extends SetSMBGuestPasswordOut * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class SetSMBGuestPasswordCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/ShutdownGatewayCommand.ts b/clients/client-storage-gateway/src/commands/ShutdownGatewayCommand.ts index 3ce6c273ea12b..5609d464d38cd 100644 --- a/clients/client-storage-gateway/src/commands/ShutdownGatewayCommand.ts +++ b/clients/client-storage-gateway/src/commands/ShutdownGatewayCommand.ts @@ -85,23 +85,23 @@ export interface ShutdownGatewayCommandOutput extends ShutdownGatewayOutput, __M * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To shut down a gateway service * ```javascript * // This operation shuts down the gateway service component running in the storage gateway's virtual machine (VM) and not the VM. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B" * }; * const command = new ShutdownGatewayCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-shut-down-a-gateway-service-1472150508835 * ``` * + * @public */ export class ShutdownGatewayCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/StartAvailabilityMonitorTestCommand.ts b/clients/client-storage-gateway/src/commands/StartAvailabilityMonitorTestCommand.ts index a3b40a1b080a3..dbf0de49a5fbb 100644 --- a/clients/client-storage-gateway/src/commands/StartAvailabilityMonitorTestCommand.ts +++ b/clients/client-storage-gateway/src/commands/StartAvailabilityMonitorTestCommand.ts @@ -75,6 +75,7 @@ export interface StartAvailabilityMonitorTestCommandOutput * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class StartAvailabilityMonitorTestCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/StartCacheReportCommand.ts b/clients/client-storage-gateway/src/commands/StartCacheReportCommand.ts index f1226d6eaca1b..2568286809b97 100644 --- a/clients/client-storage-gateway/src/commands/StartCacheReportCommand.ts +++ b/clients/client-storage-gateway/src/commands/StartCacheReportCommand.ts @@ -124,6 +124,7 @@ export interface StartCacheReportCommandOutput extends StartCacheReportOutput, _ * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class StartCacheReportCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/StartGatewayCommand.ts b/clients/client-storage-gateway/src/commands/StartGatewayCommand.ts index 6d76ff223e241..8cbc687a46d65 100644 --- a/clients/client-storage-gateway/src/commands/StartGatewayCommand.ts +++ b/clients/client-storage-gateway/src/commands/StartGatewayCommand.ts @@ -73,23 +73,23 @@ export interface StartGatewayCommandOutput extends StartGatewayOutput, __Metadat * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To start a gateway service * ```javascript * // Starts a gateway service that was previously shut down. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B" * }; * const command = new StartGatewayCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-start-a-gateway-service-1472150722315 * ``` * + * @public */ export class StartGatewayCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/UpdateAutomaticTapeCreationPolicyCommand.ts b/clients/client-storage-gateway/src/commands/UpdateAutomaticTapeCreationPolicyCommand.ts index 993f5661c99ea..2ca4519e1ab65 100644 --- a/clients/client-storage-gateway/src/commands/UpdateAutomaticTapeCreationPolicyCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateAutomaticTapeCreationPolicyCommand.ts @@ -83,6 +83,7 @@ export interface UpdateAutomaticTapeCreationPolicyCommandOutput * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class UpdateAutomaticTapeCreationPolicyCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitCommand.ts b/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitCommand.ts index c637f2a3201bc..9f8a3b19a4949 100644 --- a/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitCommand.ts @@ -74,25 +74,25 @@ export interface UpdateBandwidthRateLimitCommandOutput extends UpdateBandwidthRa * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To update the bandwidth rate limits of a gateway * ```javascript * // Updates the bandwidth rate limits of a gateway. Both the upload and download bandwidth rate limit can be set, or either one of the two. If a new limit is not set, the existing rate limit remains. * const input = { - * "AverageDownloadRateLimitInBitsPerSec": 102400, - * "AverageUploadRateLimitInBitsPerSec": 51200, - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * AverageDownloadRateLimitInBitsPerSec: 102400, + * AverageUploadRateLimitInBitsPerSec: 51200, + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new UpdateBandwidthRateLimitCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-update-the-bandwidth-rate-limits-of-a-gateway-1472151016202 * ``` * + * @public */ export class UpdateBandwidthRateLimitCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitScheduleCommand.ts b/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitScheduleCommand.ts index 8d022269c3199..06beccc98a4c1 100644 --- a/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitScheduleCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitScheduleCommand.ts @@ -86,6 +86,7 @@ export interface UpdateBandwidthRateLimitScheduleCommandOutput * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class UpdateBandwidthRateLimitScheduleCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/UpdateChapCredentialsCommand.ts b/clients/client-storage-gateway/src/commands/UpdateChapCredentialsCommand.ts index 2b3ae80e66be0..f49e3fc9ef871 100644 --- a/clients/client-storage-gateway/src/commands/UpdateChapCredentialsCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateChapCredentialsCommand.ts @@ -78,27 +78,27 @@ export interface UpdateChapCredentialsCommandOutput extends UpdateChapCredential * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To update CHAP credentials for an iSCSI target * ```javascript * // Updates the Challenge-Handshake Authentication Protocol (CHAP) credentials for a specified iSCSI target. * const input = { - * "InitiatorName": "iqn.1991-05.com.microsoft:computername.domain.example.com", - * "SecretToAuthenticateInitiator": "111111111111", - * "SecretToAuthenticateTarget": "222222222222", - * "TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" + * InitiatorName: "iqn.1991-05.com.microsoft:computername.domain.example.com", + * SecretToAuthenticateInitiator: "111111111111", + * SecretToAuthenticateTarget: "222222222222", + * TargetARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" * }; * const command = new UpdateChapCredentialsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "InitiatorName": "iqn.1991-05.com.microsoft:computername.domain.example.com", - * "TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" + * InitiatorName: "iqn.1991-05.com.microsoft:computername.domain.example.com", + * TargetARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume" * } * *\/ - * // example id: to-update-chap-credentials-for-an-iscsi-target-1472151325795 * ``` * + * @public */ export class UpdateChapCredentialsCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/UpdateFileSystemAssociationCommand.ts b/clients/client-storage-gateway/src/commands/UpdateFileSystemAssociationCommand.ts index cd39866521c33..086154e73c3da 100644 --- a/clients/client-storage-gateway/src/commands/UpdateFileSystemAssociationCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateFileSystemAssociationCommand.ts @@ -74,6 +74,7 @@ export interface UpdateFileSystemAssociationCommandOutput extends UpdateFileSyst * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class UpdateFileSystemAssociationCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/UpdateGatewayInformationCommand.ts b/clients/client-storage-gateway/src/commands/UpdateGatewayInformationCommand.ts index 7c9f0f5763efa..0e953e346fa92 100644 --- a/clients/client-storage-gateway/src/commands/UpdateGatewayInformationCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateGatewayInformationCommand.ts @@ -75,26 +75,26 @@ export interface UpdateGatewayInformationCommandOutput extends UpdateGatewayInfo * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To update a gateway's metadata * ```javascript * // Updates a gateway's metadata, which includes the gateway's name and time zone. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "GatewayName": "MyGateway2", - * "GatewayTimezone": "GMT-12:00" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * GatewayName: "MyGateway2", + * GatewayTimezone: "GMT-12:00" * }; * const command = new UpdateGatewayInformationCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "GatewayName": "" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * GatewayName: "" * } * *\/ - * // example id: to-update-a-gateways-metadata-1472151688693 * ``` * + * @public */ export class UpdateGatewayInformationCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts b/clients/client-storage-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts index 4ceb547101da5..090b60140b359 100644 --- a/clients/client-storage-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts @@ -76,23 +76,23 @@ export interface UpdateGatewaySoftwareNowCommandOutput extends UpdateGatewaySoft * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To update a gateway's VM software * ```javascript * // Updates the gateway virtual machine (VM) software. The request immediately triggers the software update. * const input = { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * }; * const command = new UpdateGatewaySoftwareNowCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-update-a-gateways-vm-software-1472152020929 * ``` * + * @public */ export class UpdateGatewaySoftwareNowCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/UpdateMaintenanceStartTimeCommand.ts b/clients/client-storage-gateway/src/commands/UpdateMaintenanceStartTimeCommand.ts index 7d361818ede5e..245c16e1db137 100644 --- a/clients/client-storage-gateway/src/commands/UpdateMaintenanceStartTimeCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateMaintenanceStartTimeCommand.ts @@ -85,26 +85,26 @@ export interface UpdateMaintenanceStartTimeCommandOutput extends UpdateMaintenan * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To update a gateway's maintenance start time * ```javascript * // Updates a gateway's weekly maintenance start time information, including day and time of the week. The maintenance time is in your gateway's time zone. * const input = { - * "DayOfWeek": 2, - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", - * "HourOfDay": 0, - * "MinuteOfHour": 30 + * DayOfWeek: 2, + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B", + * HourOfDay: 0, + * MinuteOfHour: 30 * }; * const command = new UpdateMaintenanceStartTimeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" + * GatewayARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B" * } * *\/ - * // example id: to-update-a-gateways-maintenance-start-time-1472152552031 * ``` * + * @public */ export class UpdateMaintenanceStartTimeCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/UpdateNFSFileShareCommand.ts b/clients/client-storage-gateway/src/commands/UpdateNFSFileShareCommand.ts index 410eddc2947c9..54b15d9bd74f2 100644 --- a/clients/client-storage-gateway/src/commands/UpdateNFSFileShareCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateNFSFileShareCommand.ts @@ -110,6 +110,7 @@ export interface UpdateNFSFileShareCommandOutput extends UpdateNFSFileShareOutpu * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class UpdateNFSFileShareCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/UpdateSMBFileShareCommand.ts b/clients/client-storage-gateway/src/commands/UpdateSMBFileShareCommand.ts index 806d82e258a67..c0c8bbc2c7aba 100644 --- a/clients/client-storage-gateway/src/commands/UpdateSMBFileShareCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateSMBFileShareCommand.ts @@ -106,6 +106,7 @@ export interface UpdateSMBFileShareCommandOutput extends UpdateSMBFileShareOutpu * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class UpdateSMBFileShareCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/UpdateSMBFileShareVisibilityCommand.ts b/clients/client-storage-gateway/src/commands/UpdateSMBFileShareVisibilityCommand.ts index c1f8dc5aea406..5ca27761e210d 100644 --- a/clients/client-storage-gateway/src/commands/UpdateSMBFileShareVisibilityCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateSMBFileShareVisibilityCommand.ts @@ -70,6 +70,7 @@ export interface UpdateSMBFileShareVisibilityCommandOutput * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class UpdateSMBFileShareVisibilityCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/UpdateSMBLocalGroupsCommand.ts b/clients/client-storage-gateway/src/commands/UpdateSMBLocalGroupsCommand.ts index a01378f4a0b73..b1bad8c2cd842 100644 --- a/clients/client-storage-gateway/src/commands/UpdateSMBLocalGroupsCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateSMBLocalGroupsCommand.ts @@ -69,6 +69,7 @@ export interface UpdateSMBLocalGroupsCommandOutput extends UpdateSMBLocalGroupsO * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class UpdateSMBLocalGroupsCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/UpdateSMBSecurityStrategyCommand.ts b/clients/client-storage-gateway/src/commands/UpdateSMBSecurityStrategyCommand.ts index 702c423ff048e..e183bdcc8cdcb 100644 --- a/clients/client-storage-gateway/src/commands/UpdateSMBSecurityStrategyCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateSMBSecurityStrategyCommand.ts @@ -71,6 +71,7 @@ export interface UpdateSMBSecurityStrategyCommandOutput extends UpdateSMBSecurit * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* + * * @public */ export class UpdateSMBSecurityStrategyCommand extends $Command diff --git a/clients/client-storage-gateway/src/commands/UpdateSnapshotScheduleCommand.ts b/clients/client-storage-gateway/src/commands/UpdateSnapshotScheduleCommand.ts index 9bf2b7c6d9b02..42c37371bc19c 100644 --- a/clients/client-storage-gateway/src/commands/UpdateSnapshotScheduleCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateSnapshotScheduleCommand.ts @@ -79,26 +79,26 @@ export interface UpdateSnapshotScheduleCommandOutput extends UpdateSnapshotSched * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To update a volume snapshot schedule * ```javascript * // Updates a snapshot schedule configured for a gateway volume. * const input = { - * "Description": "Hourly snapshot", - * "RecurrenceInHours": 1, - * "StartAt": 0, - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" + * Description: "Hourly snapshot", + * RecurrenceInHours: 1, + * StartAt: 0, + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" * }; * const command = new UpdateSnapshotScheduleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" + * VolumeARN: "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB" * } * *\/ - * // example id: to-update-a-volume-snapshot-schedule-1472152757068 * ``` * + * @public */ export class UpdateSnapshotScheduleCommand extends $Command .classBuilder< diff --git a/clients/client-storage-gateway/src/commands/UpdateVTLDeviceTypeCommand.ts b/clients/client-storage-gateway/src/commands/UpdateVTLDeviceTypeCommand.ts index 4299f4c1400aa..3fbf150fb5ada 100644 --- a/clients/client-storage-gateway/src/commands/UpdateVTLDeviceTypeCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateVTLDeviceTypeCommand.ts @@ -67,24 +67,24 @@ export interface UpdateVTLDeviceTypeCommandOutput extends UpdateVTLDeviceTypeOut * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* - * @public + * * @example To update a VTL device type * ```javascript * // Updates the type of medium changer in a gateway-VTL after a gateway-VTL is activated. * const input = { - * "DeviceType": "Medium Changer", - * "VTLDeviceARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_MEDIACHANGER_00001" + * DeviceType: "Medium Changer", + * VTLDeviceARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_MEDIACHANGER_00001" * }; * const command = new UpdateVTLDeviceTypeCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "VTLDeviceARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_MEDIACHANGER_00001" + * VTLDeviceARN: "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_MEDIACHANGER_00001" * } * *\/ - * // example id: to-update-a-vtl-device-type-1472153012967 * ``` * + * @public */ export class UpdateVTLDeviceTypeCommand extends $Command .classBuilder< diff --git a/clients/client-sts/src/commands/AssumeRoleCommand.ts b/clients/client-sts/src/commands/AssumeRoleCommand.ts index ad217b0123654..c09aa904b84b2 100644 --- a/clients/client-sts/src/commands/AssumeRoleCommand.ts +++ b/clients/client-sts/src/commands/AssumeRoleCommand.ts @@ -206,54 +206,54 @@ export interface AssumeRoleCommandOutput extends AssumeRoleResponse, __MetadataB * @throws {@link STSServiceException} *

Base exception class for all service exceptions from STS service.

* - * @public + * * @example To assume a role * ```javascript * // * const input = { - * "ExternalId": "123ABC", - * "Policy": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"Stmt1\",\"Effect\":\"Allow\",\"Action\":\"s3:ListAllMyBuckets\",\"Resource\":\"*\"}]}", - * "RoleArn": "arn:aws:iam::123456789012:role/demo", - * "RoleSessionName": "testAssumeRoleSession", - * "Tags": [ + * ExternalId: "123ABC", + * Policy: `{"Version":"2012-10-17","Statement":[{"Sid":"Stmt1","Effect":"Allow","Action":"s3:ListAllMyBuckets","Resource":"*"}]}`, + * RoleArn: "arn:aws:iam::123456789012:role/demo", + * RoleSessionName: "testAssumeRoleSession", + * Tags: [ * { - * "Key": "Project", - * "Value": "Unicorn" + * Key: "Project", + * Value: "Unicorn" * }, * { - * "Key": "Team", - * "Value": "Automation" + * Key: "Team", + * Value: "Automation" * }, * { - * "Key": "Cost-Center", - * "Value": "12345" + * Key: "Cost-Center", + * Value: "12345" * } * ], - * "TransitiveTagKeys": [ + * TransitiveTagKeys: [ * "Project", * "Cost-Center" * ] * }; * const command = new AssumeRoleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AssumedRoleUser": { - * "Arn": "arn:aws:sts::123456789012:assumed-role/demo/Bob", - * "AssumedRoleId": "ARO123EXAMPLE123:Bob" + * AssumedRoleUser: { + * Arn: "arn:aws:sts::123456789012:assumed-role/demo/Bob", + * AssumedRoleId: "ARO123EXAMPLE123:Bob" * }, - * "Credentials": { - * "AccessKeyId": "AKIAIOSFODNN7EXAMPLE", - * "Expiration": "2011-07-15T23:28:33.359Z", - * "SecretAccessKey": "wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY", - * "SessionToken": "AQoDYXdzEPT//////////wEXAMPLEtc764bNrC9SAPBSM22wDOk4x4HIZ8j4FZTwdQWLWsKWHGBuFqwAeMicRXmxfpSPfIeoIYRqTflfKD8YUuwthAx7mSEI/qkPpKPi/kMcGdQrmGdeehM4IC1NtBmUpp2wUE8phUZampKsburEDy0KPkyQDYwT7WZ0wq5VSXDvp75YU9HFvlRd8Tx6q6fE8YQcHNVXAkiY9q6d+xo0rKwT38xVqr7ZD0u0iPPkUL64lIZbqBAz+scqKmlzm8FDrypNC9Yjc8fPOLn9FX9KSYvKTr4rvx3iSIlTJabIQwj2ICCR/oLxBA==" + * Credentials: { + * AccessKeyId: "AKIAIOSFODNN7EXAMPLE", + * Expiration: "2011-07-15T23:28:33.359Z", + * SecretAccessKey: "wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY", + * SessionToken: "AQoDYXdzEPT//////////wEXAMPLEtc764bNrC9SAPBSM22wDOk4x4HIZ8j4FZTwdQWLWsKWHGBuFqwAeMicRXmxfpSPfIeoIYRqTflfKD8YUuwthAx7mSEI/qkPpKPi/kMcGdQrmGdeehM4IC1NtBmUpp2wUE8phUZampKsburEDy0KPkyQDYwT7WZ0wq5VSXDvp75YU9HFvlRd8Tx6q6fE8YQcHNVXAkiY9q6d+xo0rKwT38xVqr7ZD0u0iPPkUL64lIZbqBAz+scqKmlzm8FDrypNC9Yjc8fPOLn9FX9KSYvKTr4rvx3iSIlTJabIQwj2ICCR/oLxBA==" * }, - * "PackedPolicySize": 8 + * PackedPolicySize: 8 * } * *\/ - * // example id: to-assume-a-role-1480532402212 * ``` * + * @public */ export class AssumeRoleCommand extends $Command .classBuilder< diff --git a/clients/client-sts/src/commands/AssumeRoleWithSAMLCommand.ts b/clients/client-sts/src/commands/AssumeRoleWithSAMLCommand.ts index 2530f7e6bc699..7d4784669ec17 100644 --- a/clients/client-sts/src/commands/AssumeRoleWithSAMLCommand.ts +++ b/clients/client-sts/src/commands/AssumeRoleWithSAMLCommand.ts @@ -249,41 +249,41 @@ export interface AssumeRoleWithSAMLCommandOutput extends AssumeRoleWithSAMLRespo * @throws {@link STSServiceException} *

Base exception class for all service exceptions from STS service.

* - * @public + * * @example To assume a role using a SAML assertion * ```javascript * // * const input = { - * "DurationSeconds": 3600, - * "PrincipalArn": "arn:aws:iam::123456789012:saml-provider/SAML-test", - * "RoleArn": "arn:aws:iam::123456789012:role/TestSaml", - * "SAMLAssertion": "VERYLONGENCODEDASSERTIONEXAMPLExzYW1sOkF1ZGllbmNlPmJsYW5rPC9zYW1sOkF1ZGllbmNlPjwvc2FtbDpBdWRpZW5jZVJlc3RyaWN0aW9uPjwvc2FtbDpDb25kaXRpb25zPjxzYW1sOlN1YmplY3Q+PHNhbWw6TmFtZUlEIEZvcm1hdD0idXJuOm9hc2lzOm5hbWVzOnRjOlNBTUw6Mi4wOm5hbWVpZC1mb3JtYXQ6dHJhbnNpZW50Ij5TYW1sRXhhbXBsZTwvc2FtbDpOYW1lSUQ+PHNhbWw6U3ViamVjdENvbmZpcm1hdGlvbiBNZXRob2Q9InVybjpvYXNpczpuYW1lczp0YzpTQU1MOjIuMDpjbTpiZWFyZXIiPjxzYW1sOlN1YmplY3RDb25maXJtYXRpb25EYXRhIE5vdE9uT3JBZnRlcj0iMjAxOS0xMS0wMVQyMDoyNTowNS4xNDVaIiBSZWNpcGllbnQ9Imh0dHBzOi8vc2lnbmluLmF3cy5hbWF6b24uY29tL3NhbWwiLz48L3NhbWw6U3ViamVjdENvbmZpcm1hdGlvbj48L3NhbWw6U3ViamVjdD48c2FtbDpBdXRoblN0YXRlbWVudCBBdXRoPD94bWwgdmpSZXNwb25zZT4=" + * DurationSeconds: 3600, + * PrincipalArn: "arn:aws:iam::123456789012:saml-provider/SAML-test", + * RoleArn: "arn:aws:iam::123456789012:role/TestSaml", + * SAMLAssertion: "VERYLONGENCODEDASSERTIONEXAMPLExzYW1sOkF1ZGllbmNlPmJsYW5rPC9zYW1sOkF1ZGllbmNlPjwvc2FtbDpBdWRpZW5jZVJlc3RyaWN0aW9uPjwvc2FtbDpDb25kaXRpb25zPjxzYW1sOlN1YmplY3Q+PHNhbWw6TmFtZUlEIEZvcm1hdD0idXJuOm9hc2lzOm5hbWVzOnRjOlNBTUw6Mi4wOm5hbWVpZC1mb3JtYXQ6dHJhbnNpZW50Ij5TYW1sRXhhbXBsZTwvc2FtbDpOYW1lSUQ+PHNhbWw6U3ViamVjdENvbmZpcm1hdGlvbiBNZXRob2Q9InVybjpvYXNpczpuYW1lczp0YzpTQU1MOjIuMDpjbTpiZWFyZXIiPjxzYW1sOlN1YmplY3RDb25maXJtYXRpb25EYXRhIE5vdE9uT3JBZnRlcj0iMjAxOS0xMS0wMVQyMDoyNTowNS4xNDVaIiBSZWNpcGllbnQ9Imh0dHBzOi8vc2lnbmluLmF3cy5hbWF6b24uY29tL3NhbWwiLz48L3NhbWw6U3ViamVjdENvbmZpcm1hdGlvbj48L3NhbWw6U3ViamVjdD48c2FtbDpBdXRoblN0YXRlbWVudCBBdXRoPD94bWwgdmpSZXNwb25zZT4=" * }; * const command = new AssumeRoleWithSAMLCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AssumedRoleUser": { - * "Arn": "arn:aws:sts::123456789012:assumed-role/TestSaml", - * "AssumedRoleId": "ARO456EXAMPLE789:TestSaml" + * AssumedRoleUser: { + * Arn: "arn:aws:sts::123456789012:assumed-role/TestSaml", + * AssumedRoleId: "ARO456EXAMPLE789:TestSaml" * }, - * "Audience": "https://signin.aws.amazon.com/saml", - * "Credentials": { - * "AccessKeyId": "ASIAV3ZUEFP6EXAMPLE", - * "Expiration": "2019-11-01T20:26:47Z", - * "SecretAccessKey": "8P+SQvWIuLnKhh8d++jpw0nNmQRBZvNEXAMPLEKEY", - * "SessionToken": "IQoJb3JpZ2luX2VjEOz////////////////////wEXAMPLEtMSJHMEUCIDoKK3JH9uGQE1z0sINr5M4jk+Na8KHDcCYRVjJCZEvOAiEA3OvJGtw1EcViOleS2vhs8VdCKFJQWPQrmGdeehM4IC1NtBmUpp2wUE8phUZampKsburEDy0KPkyQDYwT7WZ0wq5VSXDvp75YU9HFvlRd8Tx6q6fE8YQcHNVXAkiY9q6d+xo0rKwT38xVqr7ZD0u0iPPkUL64lIZbqBAz+scqKmlzm8FDrypNC9Yjc8fPOLn9FX9KSYvKTr4rvx3iSIlTJabIQwj2ICCR/oLxBA==" + * Audience: "https://signin.aws.amazon.com/saml", + * Credentials: { + * AccessKeyId: "ASIAV3ZUEFP6EXAMPLE", + * Expiration: "2019-11-01T20:26:47Z", + * SecretAccessKey: "8P+SQvWIuLnKhh8d++jpw0nNmQRBZvNEXAMPLEKEY", + * SessionToken: "IQoJb3JpZ2luX2VjEOz////////////////////wEXAMPLEtMSJHMEUCIDoKK3JH9uGQE1z0sINr5M4jk+Na8KHDcCYRVjJCZEvOAiEA3OvJGtw1EcViOleS2vhs8VdCKFJQWPQrmGdeehM4IC1NtBmUpp2wUE8phUZampKsburEDy0KPkyQDYwT7WZ0wq5VSXDvp75YU9HFvlRd8Tx6q6fE8YQcHNVXAkiY9q6d+xo0rKwT38xVqr7ZD0u0iPPkUL64lIZbqBAz+scqKmlzm8FDrypNC9Yjc8fPOLn9FX9KSYvKTr4rvx3iSIlTJabIQwj2ICCR/oLxBA==" * }, - * "Issuer": "https://integ.example.com/idp/shibboleth", - * "NameQualifier": "SbdGOnUkh1i4+EXAMPLExL/jEvs=", - * "PackedPolicySize": 6, - * "Subject": "SamlExample", - * "SubjectType": "transient" + * Issuer: "https://integ.example.com/idp/shibboleth", + * NameQualifier: "SbdGOnUkh1i4+EXAMPLExL/jEvs=", + * PackedPolicySize: 6, + * Subject: "SamlExample", + * SubjectType: "transient" * } * *\/ - * // example id: to-assume-role-with-saml-14882749597814 * ``` * + * @public */ export class AssumeRoleWithSAMLCommand extends $Command .classBuilder< diff --git a/clients/client-sts/src/commands/AssumeRoleWithWebIdentityCommand.ts b/clients/client-sts/src/commands/AssumeRoleWithWebIdentityCommand.ts index 3c0ab07347f9a..9f60759810424 100644 --- a/clients/client-sts/src/commands/AssumeRoleWithWebIdentityCommand.ts +++ b/clients/client-sts/src/commands/AssumeRoleWithWebIdentityCommand.ts @@ -243,41 +243,41 @@ export interface AssumeRoleWithWebIdentityCommandOutput extends AssumeRoleWithWe * @throws {@link STSServiceException} *

Base exception class for all service exceptions from STS service.

* - * @public + * * @example To assume a role as an OpenID Connect-federated user * ```javascript * // * const input = { - * "DurationSeconds": 3600, - * "Policy": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"Stmt1\",\"Effect\":\"Allow\",\"Action\":\"s3:ListAllMyBuckets\",\"Resource\":\"*\"}]}", - * "ProviderId": "www.amazon.com", - * "RoleArn": "arn:aws:iam::123456789012:role/FederatedWebIdentityRole", - * "RoleSessionName": "app1", - * "WebIdentityToken": "Atza%7CIQEBLjAsAhRFiXuWpUXuRvQ9PZL3GMFcYevydwIUFAHZwXZXXXXXXXXJnrulxKDHwy87oGKPznh0D6bEQZTSCzyoCtL_8S07pLpr0zMbn6w1lfVZKNTBdDansFBmtGnIsIapjI6xKR02Yc_2bQ8LZbUXSGm6Ry6_BG7PrtLZtj_dfCTj92xNGed-CrKqjG7nPBjNIL016GGvuS5gSvPRUxWES3VYfm1wl7WTI7jn-Pcb6M-buCgHhFOzTQxod27L9CqnOLio7N3gZAGpsp6n1-AJBOCJckcyXe2c6uD0srOJeZlKUm2eTDVMf8IehDVI0r1QOnTV6KzzAI3OY87Vd_cVMQ" + * DurationSeconds: 3600, + * Policy: `{"Version":"2012-10-17","Statement":[{"Sid":"Stmt1","Effect":"Allow","Action":"s3:ListAllMyBuckets","Resource":"*"}]}`, + * ProviderId: "www.amazon.com", + * RoleArn: "arn:aws:iam::123456789012:role/FederatedWebIdentityRole", + * RoleSessionName: "app1", + * WebIdentityToken: "Atza%7CIQEBLjAsAhRFiXuWpUXuRvQ9PZL3GMFcYevydwIUFAHZwXZXXXXXXXXJnrulxKDHwy87oGKPznh0D6bEQZTSCzyoCtL_8S07pLpr0zMbn6w1lfVZKNTBdDansFBmtGnIsIapjI6xKR02Yc_2bQ8LZbUXSGm6Ry6_BG7PrtLZtj_dfCTj92xNGed-CrKqjG7nPBjNIL016GGvuS5gSvPRUxWES3VYfm1wl7WTI7jn-Pcb6M-buCgHhFOzTQxod27L9CqnOLio7N3gZAGpsp6n1-AJBOCJckcyXe2c6uD0srOJeZlKUm2eTDVMf8IehDVI0r1QOnTV6KzzAI3OY87Vd_cVMQ" * }; * const command = new AssumeRoleWithWebIdentityCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "AssumedRoleUser": { - * "Arn": "arn:aws:sts::123456789012:assumed-role/FederatedWebIdentityRole/app1", - * "AssumedRoleId": "AROACLKWSDQRAOEXAMPLE:app1" + * AssumedRoleUser: { + * Arn: "arn:aws:sts::123456789012:assumed-role/FederatedWebIdentityRole/app1", + * AssumedRoleId: "AROACLKWSDQRAOEXAMPLE:app1" * }, - * "Audience": "client.5498841531868486423.1548@apps.example.com", - * "Credentials": { - * "AccessKeyId": "AKIAIOSFODNN7EXAMPLE", - * "Expiration": "2014-10-24T23:00:23Z", - * "SecretAccessKey": "wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY", - * "SessionToken": "AQoDYXdzEE0a8ANXXXXXXXXNO1ewxE5TijQyp+IEXAMPLE" + * Audience: "client.5498841531868486423.1548@apps.example.com", + * Credentials: { + * AccessKeyId: "AKIAIOSFODNN7EXAMPLE", + * Expiration: "2014-10-24T23:00:23Z", + * SecretAccessKey: "wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY", + * SessionToken: "AQoDYXdzEE0a8ANXXXXXXXXNO1ewxE5TijQyp+IEXAMPLE" * }, - * "PackedPolicySize": 123, - * "Provider": "www.amazon.com", - * "SubjectFromWebIdentityToken": "amzn1.account.AF6RHO7KZU5XRVQJGXK6HEXAMPLE" + * PackedPolicySize: 123, + * Provider: "www.amazon.com", + * SubjectFromWebIdentityToken: "amzn1.account.AF6RHO7KZU5XRVQJGXK6HEXAMPLE" * } * *\/ - * // example id: to-assume-a-role-as-an-openid-connect-federated-user-1480533445696 * ``` * + * @public */ export class AssumeRoleWithWebIdentityCommand extends $Command .classBuilder< diff --git a/clients/client-sts/src/commands/AssumeRootCommand.ts b/clients/client-sts/src/commands/AssumeRootCommand.ts index cdd536f3477e5..735a5133ffd67 100644 --- a/clients/client-sts/src/commands/AssumeRootCommand.ts +++ b/clients/client-sts/src/commands/AssumeRootCommand.ts @@ -87,33 +87,33 @@ export interface AssumeRootCommandOutput extends AssumeRootResponse, __MetadataB * @throws {@link STSServiceException} *

Base exception class for all service exceptions from STS service.

* - * @public + * * @example To launch a privileged session * ```javascript * // The following command retrieves a set of short-term credentials you can use to unlock an S3 bucket for a member account by removing the bucket policy. * const input = { - * "DurationSeconds": 900, - * "TargetPrincipal": "111122223333", - * "TaskPolicyArn": { - * "arn": "arn:aws:iam::aws:policy/root-task/S3UnlockBucketPolicy" + * DurationSeconds: 900, + * TargetPrincipal: "111122223333", + * TaskPolicyArn: { + * arn: "arn:aws:iam::aws:policy/root-task/S3UnlockBucketPolicy" * } * }; * const command = new AssumeRootCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Credentials": { - * "AccessKeyId": "ASIAJEXAMPLEXEG2JICEA", - * "Expiration": "2024-11-15T00:05:07Z", - * "SecretAccessKey": "9drTJvcXLB89EXAMPLELB8923FB892xMFI", - * "SessionToken": "AQoXdzELDDY//////////wEaoAK1wvxJY12r2IrDFT2IvAzTCn3zHoZ7YNtpiQLF0MqZye/qwjzP2iEXAMPLEbw/m3hsj8VBTkPORGvr9jM5sgP+w9IZWZnU+LWhmg+a5fDi2oTGUYcdg9uexQ4mtCHIHfi4citgqZTgco40Yqr4lIlo4V2b2Dyauk0eYFNebHtYlFVgAUj+7Indz3LU0aTWk1WKIjHmmMCIoTkyYp/k7kUG7moeEYKSitwQIi6Gjn+nyzM+PtoA3685ixzv0R7i5rjQi0YE0lf1oeie3bDiNHncmzosRM6SFiPzSvp6h/32xQuZsjcypmwsPSDtTPYcs0+YN/8BRi2/IcrxSpnWEXAMPLEXSDFTAQAM6Dl9zR0tXoybnlrZIwMLlMi1Kcgo5OytwU=" + * Credentials: { + * AccessKeyId: "ASIAJEXAMPLEXEG2JICEA", + * Expiration: "2024-11-15T00:05:07Z", + * SecretAccessKey: "9drTJvcXLB89EXAMPLELB8923FB892xMFI", + * SessionToken: "AQoXdzELDDY//////////wEaoAK1wvxJY12r2IrDFT2IvAzTCn3zHoZ7YNtpiQLF0MqZye/qwjzP2iEXAMPLEbw/m3hsj8VBTkPORGvr9jM5sgP+w9IZWZnU+LWhmg+a5fDi2oTGUYcdg9uexQ4mtCHIHfi4citgqZTgco40Yqr4lIlo4V2b2Dyauk0eYFNebHtYlFVgAUj+7Indz3LU0aTWk1WKIjHmmMCIoTkyYp/k7kUG7moeEYKSitwQIi6Gjn+nyzM+PtoA3685ixzv0R7i5rjQi0YE0lf1oeie3bDiNHncmzosRM6SFiPzSvp6h/32xQuZsjcypmwsPSDtTPYcs0+YN/8BRi2/IcrxSpnWEXAMPLEXSDFTAQAM6Dl9zR0tXoybnlrZIwMLlMi1Kcgo5OytwU=" * }, - * "SourceIdentity": "Alice" + * SourceIdentity: "Alice" * } * *\/ - * // example id: to-launch-a-privileged-session-1731335424565 * ``` * + * @public */ export class AssumeRootCommand extends $Command .classBuilder< diff --git a/clients/client-sts/src/commands/DecodeAuthorizationMessageCommand.ts b/clients/client-sts/src/commands/DecodeAuthorizationMessageCommand.ts index 07f8ee823a18f..3174a9ec11dfc 100644 --- a/clients/client-sts/src/commands/DecodeAuthorizationMessageCommand.ts +++ b/clients/client-sts/src/commands/DecodeAuthorizationMessageCommand.ts @@ -95,23 +95,23 @@ export interface DecodeAuthorizationMessageCommandOutput extends DecodeAuthoriza * @throws {@link STSServiceException} *

Base exception class for all service exceptions from STS service.

* - * @public + * * @example To decode information about an authorization status of a request * ```javascript * // * const input = { - * "EncodedMessage": "" + * EncodedMessage: "" * }; * const command = new DecodeAuthorizationMessageCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "DecodedMessage": "{\"allowed\": \"false\",\"explicitDeny\": \"false\",\"matchedStatements\": \"\",\"failures\": \"\",\"context\": {\"principal\": {\"id\": \"AIDACKCEVSQ6C2EXAMPLE\",\"name\": \"Bob\",\"arn\": \"arn:aws:iam::123456789012:user/Bob\"},\"action\": \"ec2:StopInstances\",\"resource\": \"arn:aws:ec2:us-east-1:123456789012:instance/i-dd01c9bd\",\"conditions\": [{\"item\": {\"key\": \"ec2:Tenancy\",\"values\": [\"default\"]},{\"item\": {\"key\": \"ec2:ResourceTag/elasticbeanstalk:environment-name\",\"values\": [\"Default-Environment\"]}},(Additional items ...)]}}" + * DecodedMessage: `{"allowed": "false","explicitDeny": "false","matchedStatements": "","failures": "","context": {"principal": {"id": "AIDACKCEVSQ6C2EXAMPLE","name": "Bob","arn": "arn:aws:iam::123456789012:user/Bob"},"action": "ec2:StopInstances","resource": "arn:aws:ec2:us-east-1:123456789012:instance/i-dd01c9bd","conditions": [{"item": {"key": "ec2:Tenancy","values": ["default"]},{"item": {"key": "ec2:ResourceTag/elasticbeanstalk:environment-name","values": ["Default-Environment"]}},(Additional items ...)]}}` * } * *\/ - * // example id: to-decode-information-about-an-authorization-status-of-a-request-1480533854499 * ``` * + * @public */ export class DecodeAuthorizationMessageCommand extends $Command .classBuilder< diff --git a/clients/client-sts/src/commands/GetAccessKeyInfoCommand.ts b/clients/client-sts/src/commands/GetAccessKeyInfoCommand.ts index 20ec31e06a958..f527f51b30bfd 100644 --- a/clients/client-sts/src/commands/GetAccessKeyInfoCommand.ts +++ b/clients/client-sts/src/commands/GetAccessKeyInfoCommand.ts @@ -71,6 +71,7 @@ export interface GetAccessKeyInfoCommandOutput extends GetAccessKeyInfoResponse, * @throws {@link STSServiceException} *

Base exception class for all service exceptions from STS service.

* + * * @public */ export class GetAccessKeyInfoCommand extends $Command diff --git a/clients/client-sts/src/commands/GetCallerIdentityCommand.ts b/clients/client-sts/src/commands/GetCallerIdentityCommand.ts index a51cef2df3b45..7a59ab51fc060 100644 --- a/clients/client-sts/src/commands/GetCallerIdentityCommand.ts +++ b/clients/client-sts/src/commands/GetCallerIdentityCommand.ts @@ -64,55 +64,53 @@ export interface GetCallerIdentityCommandOutput extends GetCallerIdentityRespons * @throws {@link STSServiceException} *

Base exception class for all service exceptions from STS service.

* - * @public + * * @example To get details about a calling IAM user * ```javascript * // This example shows a request and response made with the credentials for a user named Alice in the AWS account 123456789012. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new GetCallerIdentityCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Account": "123456789012", - * "Arn": "arn:aws:iam::123456789012:user/Alice", - * "UserId": "AKIAI44QH8DHBEXAMPLE" + * Account: "123456789012", + * Arn: "arn:aws:iam::123456789012:user/Alice", + * UserId: "AKIAI44QH8DHBEXAMPLE" * } * *\/ - * // example id: to-get-details-about-a-calling-iam-user-1480540050376 * ``` * * @example To get details about a calling user federated with AssumeRole * ```javascript * // This example shows a request and response made with temporary credentials created by AssumeRole. The name of the assumed role is my-role-name, and the RoleSessionName is set to my-role-session-name. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new GetCallerIdentityCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Account": "123456789012", - * "Arn": "arn:aws:sts::123456789012:assumed-role/my-role-name/my-role-session-name", - * "UserId": "AKIAI44QH8DHBEXAMPLE:my-role-session-name" + * Account: "123456789012", + * Arn: "arn:aws:sts::123456789012:assumed-role/my-role-name/my-role-session-name", + * UserId: "AKIAI44QH8DHBEXAMPLE:my-role-session-name" * } * *\/ - * // example id: to-get-details-about-a-calling-user-federated-with-assumerole-1480540158545 * ``` * * @example To get details about a calling user federated with GetFederationToken * ```javascript * // This example shows a request and response made with temporary credentials created by using GetFederationToken. The Name parameter is set to my-federated-user-name. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new GetCallerIdentityCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Account": "123456789012", - * "Arn": "arn:aws:sts::123456789012:federated-user/my-federated-user-name", - * "UserId": "123456789012:my-federated-user-name" + * Account: "123456789012", + * Arn: "arn:aws:sts::123456789012:federated-user/my-federated-user-name", + * UserId: "123456789012:my-federated-user-name" * } * *\/ - * // example id: to-get-details-about-a-calling-user-federated-with-getfederationtoken-1480540231316 * ``` * + * @public */ export class GetCallerIdentityCommand extends $Command .classBuilder< diff --git a/clients/client-sts/src/commands/GetFederationTokenCommand.ts b/clients/client-sts/src/commands/GetFederationTokenCommand.ts index 1ba93aaa8fda8..72ef180093151 100644 --- a/clients/client-sts/src/commands/GetFederationTokenCommand.ts +++ b/clients/client-sts/src/commands/GetFederationTokenCommand.ts @@ -192,45 +192,45 @@ export interface GetFederationTokenCommandOutput extends GetFederationTokenRespo * @throws {@link STSServiceException} *

Base exception class for all service exceptions from STS service.

* - * @public + * * @example To get temporary credentials for a role by using GetFederationToken * ```javascript * // * const input = { - * "DurationSeconds": 3600, - * "Name": "testFedUserSession", - * "Policy": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"Stmt1\",\"Effect\":\"Allow\",\"Action\":\"s3:ListAllMyBuckets\",\"Resource\":\"*\"}]}", - * "Tags": [ + * DurationSeconds: 3600, + * Name: "testFedUserSession", + * Policy: `{"Version":"2012-10-17","Statement":[{"Sid":"Stmt1","Effect":"Allow","Action":"s3:ListAllMyBuckets","Resource":"*"}]}`, + * Tags: [ * { - * "Key": "Project", - * "Value": "Pegasus" + * Key: "Project", + * Value: "Pegasus" * }, * { - * "Key": "Cost-Center", - * "Value": "98765" + * Key: "Cost-Center", + * Value: "98765" * } * ] * }; * const command = new GetFederationTokenCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Credentials": { - * "AccessKeyId": "AKIAIOSFODNN7EXAMPLE", - * "Expiration": "2011-07-15T23:28:33.359Z", - * "SecretAccessKey": "wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY", - * "SessionToken": "AQoDYXdzEPT//////////wEXAMPLEtc764bNrC9SAPBSM22wDOk4x4HIZ8j4FZTwdQWLWsKWHGBuFqwAeMicRXmxfpSPfIeoIYRqTflfKD8YUuwthAx7mSEI/qkPpKPi/kMcGdQrmGdeehM4IC1NtBmUpp2wUE8phUZampKsburEDy0KPkyQDYwT7WZ0wq5VSXDvp75YU9HFvlRd8Tx6q6fE8YQcHNVXAkiY9q6d+xo0rKwT38xVqr7ZD0u0iPPkUL64lIZbqBAz+scqKmlzm8FDrypNC9Yjc8fPOLn9FX9KSYvKTr4rvx3iSIlTJabIQwj2ICCR/oLxBA==" + * Credentials: { + * AccessKeyId: "AKIAIOSFODNN7EXAMPLE", + * Expiration: "2011-07-15T23:28:33.359Z", + * SecretAccessKey: "wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY", + * SessionToken: "AQoDYXdzEPT//////////wEXAMPLEtc764bNrC9SAPBSM22wDOk4x4HIZ8j4FZTwdQWLWsKWHGBuFqwAeMicRXmxfpSPfIeoIYRqTflfKD8YUuwthAx7mSEI/qkPpKPi/kMcGdQrmGdeehM4IC1NtBmUpp2wUE8phUZampKsburEDy0KPkyQDYwT7WZ0wq5VSXDvp75YU9HFvlRd8Tx6q6fE8YQcHNVXAkiY9q6d+xo0rKwT38xVqr7ZD0u0iPPkUL64lIZbqBAz+scqKmlzm8FDrypNC9Yjc8fPOLn9FX9KSYvKTr4rvx3iSIlTJabIQwj2ICCR/oLxBA==" * }, - * "FederatedUser": { - * "Arn": "arn:aws:sts::123456789012:federated-user/Bob", - * "FederatedUserId": "123456789012:Bob" + * FederatedUser: { + * Arn: "arn:aws:sts::123456789012:federated-user/Bob", + * FederatedUserId: "123456789012:Bob" * }, - * "PackedPolicySize": 8 + * PackedPolicySize: 8 * } * *\/ - * // example id: to-get-temporary-credentials-for-a-role-by-using-getfederationtoken-1480540749900 * ``` * + * @public */ export class GetFederationTokenCommand extends $Command .classBuilder< diff --git a/clients/client-sts/src/commands/GetSessionTokenCommand.ts b/clients/client-sts/src/commands/GetSessionTokenCommand.ts index bac1323b74cc4..2248b4b88f352 100644 --- a/clients/client-sts/src/commands/GetSessionTokenCommand.ts +++ b/clients/client-sts/src/commands/GetSessionTokenCommand.ts @@ -131,30 +131,30 @@ export interface GetSessionTokenCommandOutput extends GetSessionTokenResponse, _ * @throws {@link STSServiceException} *

Base exception class for all service exceptions from STS service.

* - * @public + * * @example To get temporary credentials for an IAM user or an AWS account * ```javascript * // * const input = { - * "DurationSeconds": 3600, - * "SerialNumber": "YourMFASerialNumber", - * "TokenCode": "123456" + * DurationSeconds: 3600, + * SerialNumber: "YourMFASerialNumber", + * TokenCode: "123456" * }; * const command = new GetSessionTokenCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Credentials": { - * "AccessKeyId": "AKIAIOSFODNN7EXAMPLE", - * "Expiration": "2011-07-11T19:55:29.611Z", - * "SecretAccessKey": "wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY", - * "SessionToken": "AQoEXAMPLEH4aoAH0gNCAPyJxz4BlCFFxWNE1OPTgk5TthT+FvwqnKwRcOIfrRh3c/LTo6UDdyJwOOvEVPvLXCrrrUtdnniCEXAMPLE/IvU1dYUg2RVAJBanLiHb4IgRmpRV3zrkuWJOgQs8IZZaIv2BXIa2R4OlgkBN9bkUDNCJiBeb/AXlzBBko7b15fjrBs2+cTQtpZ3CYWFXG8C5zqx37wnOE49mRl/+OtkIKGO7fAE" + * Credentials: { + * AccessKeyId: "AKIAIOSFODNN7EXAMPLE", + * Expiration: "2011-07-11T19:55:29.611Z", + * SecretAccessKey: "wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY", + * SessionToken: "AQoEXAMPLEH4aoAH0gNCAPyJxz4BlCFFxWNE1OPTgk5TthT+FvwqnKwRcOIfrRh3c/LTo6UDdyJwOOvEVPvLXCrrrUtdnniCEXAMPLE/IvU1dYUg2RVAJBanLiHb4IgRmpRV3zrkuWJOgQs8IZZaIv2BXIa2R4OlgkBN9bkUDNCJiBeb/AXlzBBko7b15fjrBs2+cTQtpZ3CYWFXG8C5zqx37wnOE49mRl/+OtkIKGO7fAE" * } * } * *\/ - * // example id: to-get-temporary-credentials-for-an-iam-user-or-an-aws-account-1480540814038 * ``` * + * @public */ export class GetSessionTokenCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/CreateBillOfMaterialsImportJobCommand.ts b/clients/client-supplychain/src/commands/CreateBillOfMaterialsImportJobCommand.ts index dccc37ebc0fe6..6cc722edacb90 100644 --- a/clients/client-supplychain/src/commands/CreateBillOfMaterialsImportJobCommand.ts +++ b/clients/client-supplychain/src/commands/CreateBillOfMaterialsImportJobCommand.ts @@ -84,25 +84,25 @@ export interface CreateBillOfMaterialsImportJobCommandOutput * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Invoke CreateBillOfMaterialsImportJob * ```javascript * // * const input = { - * "clientToken": "550e8400-e29b-41d4-a716-446655440000", - * "instanceId": "60f82bbd-71f7-4fcd-a941-472f574c5243", - * "s3uri": "s3://mybucketname/pathelemene/file.csv" + * clientToken: "550e8400-e29b-41d4-a716-446655440000", + * instanceId: "60f82bbd-71f7-4fcd-a941-472f574c5243", + * s3uri: "s3://mybucketname/pathelemene/file.csv" * }; * const command = new CreateBillOfMaterialsImportJobCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "jobId": "f79b359b-1515-4436-a3bf-bae7b33e47b4" + * jobId: "f79b359b-1515-4436-a3bf-bae7b33e47b4" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateBillOfMaterialsImportJobCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/CreateDataIntegrationFlowCommand.ts b/clients/client-supplychain/src/commands/CreateDataIntegrationFlowCommand.ts index c65021e9f050a..4733b1f4a24b9 100644 --- a/clients/client-supplychain/src/commands/CreateDataIntegrationFlowCommand.ts +++ b/clients/client-supplychain/src/commands/CreateDataIntegrationFlowCommand.ts @@ -124,99 +124,98 @@ export interface CreateDataIntegrationFlowCommandOutput extends CreateDataIntegr * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Successful CreateDataIntegrationFlow for s3 to dataset flow * ```javascript * // * const input = { - * "name": "testStagingFlow", - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d", - * "sources": [ + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d", + * name: "testStagingFlow", + * sources: [ * { - * "s3Source": { - * "bucketName": "aws-supply-chain-data-b8c7bb28-a576-4334-b481-6d6e8e47371f", - * "prefix": "example-prefix" + * s3Source: { + * bucketName: "aws-supply-chain-data-b8c7bb28-a576-4334-b481-6d6e8e47371f", + * prefix: "example-prefix" * }, - * "sourceName": "testSourceName", - * "sourceType": "S3" + * sourceName: "testSourceName", + * sourceType: "S3" * } * ], - * "tags": { - * "tagKey1": "tagValue1" + * tags: { + * tagKey1: "tagValue1" * }, - * "target": { - * "datasetTarget": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset" + * target: { + * datasetTarget: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset" * }, - * "targetType": "DATASET" + * targetType: "DATASET" * }, - * "transformation": { - * "sqlTransformation": { - * "query": "SELECT * FROM testSourceName" + * transformation: { + * sqlTransformation: { + * query: "SELECT * FROM testSourceName" * }, - * "transformationType": "SQL" + * transformationType: "SQL" * } * }; * const command = new CreateDataIntegrationFlowCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "testStagingFlow", - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d" + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d", + * name: "testStagingFlow" * } * *\/ - * // example id: example-1 * ``` * * @example Successful CreateDataIntegrationFlow for dataset to dataset flow * ```javascript * // * const input = { - * "name": "trading-partner", - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d", - * "sources": [ + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d", + * name: "trading-partner", + * sources: [ * { - * "datasetSource": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset1" + * datasetSource: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset1" * }, - * "sourceName": "testSourceName1", - * "sourceType": "DATASET" + * sourceName: "testSourceName1", + * sourceType: "DATASET" * }, * { - * "datasetSource": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset2" + * datasetSource: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset2" * }, - * "sourceName": "testSourceName2", - * "sourceType": "DATASET" + * sourceName: "testSourceName2", + * sourceType: "DATASET" * } * ], - * "tags": { - * "tagKey1": "tagValue1" + * tags: { + * tagKey1: "tagValue1" * }, - * "target": { - * "datasetTarget": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/asc/datasets/trading_partner" + * target: { + * datasetTarget: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/asc/datasets/trading_partner" * }, - * "targetType": "DATASET" + * targetType: "DATASET" * }, - * "transformation": { - * "sqlTransformation": { - * "query": "SELECT S1.id AS id, S1.poc_org_unit_description AS description, S1.company_id AS company_id, S1.tpartner_type AS tpartner_type, S1.geo_id AS geo_id, S1.eff_start_date AS eff_start_date, S1.eff_end_date AS eff_end_date FROM testSourceName1 AS S1 LEFT JOIN testSourceName2 as S2 ON S1.id=S2.id" + * transformation: { + * sqlTransformation: { + * query: "SELECT S1.id AS id, S1.poc_org_unit_description AS description, S1.company_id AS company_id, S1.tpartner_type AS tpartner_type, S1.geo_id AS geo_id, S1.eff_start_date AS eff_start_date, S1.eff_end_date AS eff_end_date FROM testSourceName1 AS S1 LEFT JOIN testSourceName2 as S2 ON S1.id=S2.id" * }, - * "transformationType": "SQL" + * transformationType: "SQL" * } * }; * const command = new CreateDataIntegrationFlowCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "trading-partner", - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d" + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d", + * name: "trading-partner" * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class CreateDataIntegrationFlowCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/CreateDataLakeDatasetCommand.ts b/clients/client-supplychain/src/commands/CreateDataLakeDatasetCommand.ts index 142e9d9983ca6..b06e38189931e 100644 --- a/clients/client-supplychain/src/commands/CreateDataLakeDatasetCommand.ts +++ b/clients/client-supplychain/src/commands/CreateDataLakeDatasetCommand.ts @@ -110,274 +110,273 @@ export interface CreateDataLakeDatasetCommandOutput extends CreateDataLakeDatase * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Create an AWS Supply Chain inbound order dataset * ```javascript * // * const input = { - * "name": "inbound_order", - * "description": "This is an AWS Supply Chain inbound order dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "namespace": "asc", - * "tags": { - * "tagKey1": "tagValue1", - * "tagKey2": "tagValue2" + * description: "This is an AWS Supply Chain inbound order dataset", + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * name: "inbound_order", + * namespace: "asc", + * tags: { + * tagKey1: "tagValue1", + * tagKey2: "tagValue2" * } * }; * const command = new CreateDataLakeDatasetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "dataset": { - * "name": "inbound_order", - * "arn": "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/asc/datasets/inbound_order", - * "createdTime": 1727116807.751, - * "description": "This is an AWS Supply Chain inbound order dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "lastModifiedTime": 1727116807.751, - * "namespace": "asc", - * "schema": { - * "name": "InboundOrder", - * "fields": [ + * dataset: { + * arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/asc/datasets/inbound_order", + * createdTime: 1.727116807751E9, + * description: "This is an AWS Supply Chain inbound order dataset", + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * lastModifiedTime: 1.727116807751E9, + * name: "inbound_order", + * namespace: "asc", + * schema: { + * fields: [ * { - * "name": "id", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "id", + * type: "STRING" * }, * { - * "name": "tpartner_id", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "tpartner_id", + * type: "STRING" * }, * { - * "name": "connection_id", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "connection_id", + * type: "STRING" * }, * { - * "name": "order_type", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "order_type", + * type: "STRING" * }, * { - * "name": "order_status", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "order_status", + * type: "STRING" * }, * { - * "name": "inbound_order_url", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "inbound_order_url", + * type: "STRING" * }, * { - * "name": "order_creation_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "order_creation_date", + * type: "TIMESTAMP" * }, * { - * "name": "company_id", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "company_id", + * type: "STRING" * }, * { - * "name": "to_site_id", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "to_site_id", + * type: "STRING" * }, * { - * "name": "order_currency_uom", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "order_currency_uom", + * type: "STRING" * }, * { - * "name": "vendor_currency_uom", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "vendor_currency_uom", + * type: "STRING" * }, * { - * "name": "exchange_rate", - * "type": "DOUBLE", - * "isRequired": false + * isRequired: false, + * name: "exchange_rate", + * type: "DOUBLE" * }, * { - * "name": "exchange_rate_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "exchange_rate_date", + * type: "TIMESTAMP" * }, * { - * "name": "incoterm", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm", + * type: "STRING" * }, * { - * "name": "incoterm2", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm2", + * type: "STRING" * }, * { - * "name": "incoterm_location_1", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm_location_1", + * type: "STRING" * }, * { - * "name": "incoterm_location_2", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm_location_2", + * type: "STRING" * }, * { - * "name": "submitted_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "submitted_date", + * type: "TIMESTAMP" * }, * { - * "name": "agreement_start_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "agreement_start_date", + * type: "TIMESTAMP" * }, * { - * "name": "agreement_end_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "agreement_end_date", + * type: "TIMESTAMP" * }, * { - * "name": "shipping_instr_code", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "shipping_instr_code", + * type: "STRING" * }, * { - * "name": "payment_terms_code", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "payment_terms_code", + * type: "STRING" * }, * { - * "name": "std_terms_agreement", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "std_terms_agreement", + * type: "STRING" * }, * { - * "name": "std_terms_agreement_ver", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "std_terms_agreement_ver", + * type: "STRING" * }, * { - * "name": "agreement_number", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "agreement_number", + * type: "STRING" * }, * { - * "name": "source", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "source", + * type: "STRING" * }, * { - * "name": "source_update_dttm", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "source_update_dttm", + * type: "TIMESTAMP" * }, * { - * "name": "source_event_id", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "source_event_id", + * type: "STRING" * }, * { - * "name": "db_creation_dttm", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "db_creation_dttm", + * type: "TIMESTAMP" * }, * { - * "name": "db_updation_dttm", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "db_updation_dttm", + * type: "TIMESTAMP" * } - * ] + * ], + * name: "InboundOrder" * } * } * } * *\/ - * // example id: example-1 * ``` * * @example Create a custom dataset * ```javascript * // * const input = { - * "name": "my_dataset", - * "description": "This is a custom dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "namespace": "default", - * "schema": { - * "name": "MyDataset", - * "fields": [ + * description: "This is a custom dataset", + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * name: "my_dataset", + * namespace: "default", + * schema: { + * fields: [ * { - * "name": "id", - * "type": "INT", - * "isRequired": true + * isRequired: true, + * name: "id", + * type: "INT" * }, * { - * "name": "description", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "description", + * type: "STRING" * }, * { - * "name": "price", - * "type": "DOUBLE", - * "isRequired": false + * isRequired: false, + * name: "price", + * type: "DOUBLE" * }, * { - * "name": "creation_time", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "creation_time", + * type: "TIMESTAMP" * } - * ] + * ], + * name: "MyDataset" * }, - * "tags": { - * "tagKey1": "tagValue1", - * "tagKey2": "tagValue2" + * tags: { + * tagKey1: "tagValue1", + * tagKey2: "tagValue2" * } * }; * const command = new CreateDataLakeDatasetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "dataset": { - * "name": "my_dataset", - * "arn": "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/default/datasets/my_dataset", - * "createdTime": 1727116807.751, - * "description": "This is a custom dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "lastModifiedTime": 1727116807.751, - * "namespace": "default", - * "schema": { - * "name": "MyDataset", - * "fields": [ + * dataset: { + * arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/default/datasets/my_dataset", + * createdTime: 1.727116807751E9, + * description: "This is a custom dataset", + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * lastModifiedTime: 1.727116807751E9, + * name: "my_dataset", + * namespace: "default", + * schema: { + * fields: [ * { - * "name": "id", - * "type": "INT", - * "isRequired": true + * isRequired: true, + * name: "id", + * type: "INT" * }, * { - * "name": "description", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "description", + * type: "STRING" * }, * { - * "name": "price", - * "type": "DOUBLE", - * "isRequired": false + * isRequired: false, + * name: "price", + * type: "DOUBLE" * }, * { - * "name": "creation_time", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "creation_time", + * type: "TIMESTAMP" * } - * ] + * ], + * name: "MyDataset" * } * } * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class CreateDataLakeDatasetCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/CreateInstanceCommand.ts b/clients/client-supplychain/src/commands/CreateInstanceCommand.ts index d53af7fba7b1e..3ea3ae2c94f08 100644 --- a/clients/client-supplychain/src/commands/CreateInstanceCommand.ts +++ b/clients/client-supplychain/src/commands/CreateInstanceCommand.ts @@ -96,61 +96,60 @@ export interface CreateInstanceCommandOutput extends CreateInstanceResponse, __M * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Successful CreateInstance request with all input data * ```javascript * // * const input = { - * "instanceDescription": "example instance description", - * "instanceName": "example instance name", - * "kmsKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", - * "tags": { - * "tagKey1": "tagValue1" + * instanceDescription: "example instance description", + * instanceName: "example instance name", + * kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", + * tags: { + * tagKey1: "tagValue1" * } * }; * const command = new CreateInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "instance": { - * "awsAccountId": "123456789012", - * "createdTime": 172615383136, - * "instanceDescription": "example instance description", - * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793", - * "instanceName": "example instance name", - * "kmsKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", - * "lastModifiedTime": 172615383136, - * "state": "Initializing", - * "versionNumber": 2 + * instance: { + * awsAccountId: "123456789012", + * createdTime: 172615383136, + * instanceDescription: "example instance description", + * instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793", + * instanceName: "example instance name", + * kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", + * lastModifiedTime: 172615383136, + * state: "Initializing", + * versionNumber: 2.0 * } * } * *\/ - * // example id: example-1 * ``` * * @example Successful CreateInstance request with no input data * ```javascript * // - * const input = {}; + * const input = { /* empty *\/ }; * const command = new CreateInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "instance": { - * "awsAccountId": "123456789012", - * "createdTime": 172615383136, - * "instanceDescription": "", - * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793", - * "kmsKeyArn": "arn:aws:kms:us-west-2:456789012345:key/7372eb6d-874c-4212-8d49-7804282d33a8", - * "lastModifiedTime": 172615383136, - * "state": "Initializing", - * "versionNumber": 2 + * instance: { + * awsAccountId: "123456789012", + * createdTime: 172615383136, + * instanceDescription: "", + * instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793", + * kmsKeyArn: "arn:aws:kms:us-west-2:456789012345:key/7372eb6d-874c-4212-8d49-7804282d33a8", + * lastModifiedTime: 172615383136, + * state: "Initializing", + * versionNumber: 2.0 * } * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class CreateInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/DeleteDataIntegrationFlowCommand.ts b/clients/client-supplychain/src/commands/DeleteDataIntegrationFlowCommand.ts index d9d0378dc55a2..67303fb5e084a 100644 --- a/clients/client-supplychain/src/commands/DeleteDataIntegrationFlowCommand.ts +++ b/clients/client-supplychain/src/commands/DeleteDataIntegrationFlowCommand.ts @@ -78,25 +78,25 @@ export interface DeleteDataIntegrationFlowCommandOutput extends DeleteDataIntegr * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Successful DeleteDataIntegrationFlow * ```javascript * // * const input = { - * "name": "testStagingFlow", - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d" + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d", + * name: "testStagingFlow" * }; * const command = new DeleteDataIntegrationFlowCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "testStagingFlow", - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d" + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d", + * name: "testStagingFlow" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class DeleteDataIntegrationFlowCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/DeleteDataLakeDatasetCommand.ts b/clients/client-supplychain/src/commands/DeleteDataLakeDatasetCommand.ts index 3be729a079b35..a938fa89ee26e 100644 --- a/clients/client-supplychain/src/commands/DeleteDataLakeDatasetCommand.ts +++ b/clients/client-supplychain/src/commands/DeleteDataLakeDatasetCommand.ts @@ -80,47 +80,46 @@ export interface DeleteDataLakeDatasetCommandOutput extends DeleteDataLakeDatase * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Delete an AWS Supply Chain inbound_order dataset * ```javascript * // * const input = { - * "name": "inbound_order", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "namespace": "asc" + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * name: "inbound_order", + * namespace: "asc" * }; * const command = new DeleteDataLakeDatasetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "inbound_order", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "namespace": "asc" + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * name: "inbound_order", + * namespace: "asc" * } * *\/ - * // example id: example-1 * ``` * * @example Delete a custom dataset * ```javascript * // * const input = { - * "name": "my_dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "namespace": "default" + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * name: "my_dataset", + * namespace: "default" * }; * const command = new DeleteDataLakeDatasetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "name": "my_dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "namespace": "default" + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * name: "my_dataset", + * namespace: "default" * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class DeleteDataLakeDatasetCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/DeleteInstanceCommand.ts b/clients/client-supplychain/src/commands/DeleteInstanceCommand.ts index ad983df096032..b6f97e273d9f5 100644 --- a/clients/client-supplychain/src/commands/DeleteInstanceCommand.ts +++ b/clients/client-supplychain/src/commands/DeleteInstanceCommand.ts @@ -89,33 +89,33 @@ export interface DeleteInstanceCommandOutput extends DeleteInstanceResponse, __M * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Successful DeleteInstance request * ```javascript * // * const input = { - * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793" + * instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793" * }; * const command = new DeleteInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "instance": { - * "awsAccountId": "123456789012", - * "createdTime": 172615383136, - * "instanceDescription": "updated example instance description", - * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793", - * "instanceName": "updated example instance name", - * "kmsKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", - * "lastModifiedTime": 172615383136, - * "state": "Deleting", - * "versionNumber": 2 + * instance: { + * awsAccountId: "123456789012", + * createdTime: 172615383136, + * instanceDescription: "updated example instance description", + * instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793", + * instanceName: "updated example instance name", + * kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", + * lastModifiedTime: 172615383136, + * state: "Deleting", + * versionNumber: 2.0 * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class DeleteInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/GetBillOfMaterialsImportJobCommand.ts b/clients/client-supplychain/src/commands/GetBillOfMaterialsImportJobCommand.ts index 4b75dab413f89..fe2d7a8a948bc 100644 --- a/clients/client-supplychain/src/commands/GetBillOfMaterialsImportJobCommand.ts +++ b/clients/client-supplychain/src/commands/GetBillOfMaterialsImportJobCommand.ts @@ -88,52 +88,51 @@ export interface GetBillOfMaterialsImportJobCommandOutput * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Invoke GetBillOfMaterialsImportJob for a successful job * ```javascript * // * const input = { - * "instanceId": "60f82bbd-71f7-4fcd-a941-472f574c5243", - * "jobId": "f79b359b-1515-4436-a3bf-bae7b33e47b4" + * instanceId: "60f82bbd-71f7-4fcd-a941-472f574c5243", + * jobId: "f79b359b-1515-4436-a3bf-bae7b33e47b4" * }; * const command = new GetBillOfMaterialsImportJobCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "job": { - * "instanceId": "60f82bbd-71f7-4fcd-a941-472f574c5243", - * "jobId": "f79b359b-1515-4436-a3bf-bae7b33e47b4", - * "message": "Import job completed successfully.", - * "s3uri": "s3://mybucketname/pathelemene/file.csv", - * "status": "SUCCESS" + * job: { + * instanceId: "60f82bbd-71f7-4fcd-a941-472f574c5243", + * jobId: "f79b359b-1515-4436-a3bf-bae7b33e47b4", + * message: "Import job completed successfully.", + * s3uri: "s3://mybucketname/pathelemene/file.csv", + * status: "SUCCESS" * } * } * *\/ - * // example id: example-1 * ``` * * @example Invoke GetBillOfMaterialsImportJob for an in-progress job * ```javascript * // * const input = { - * "instanceId": "60f82bbd-71f7-4fcd-a941-472f574c5243", - * "jobId": "f79b359b-1515-4436-a3bf-bae7b33e47b4" + * instanceId: "60f82bbd-71f7-4fcd-a941-472f574c5243", + * jobId: "f79b359b-1515-4436-a3bf-bae7b33e47b4" * }; * const command = new GetBillOfMaterialsImportJobCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "job": { - * "instanceId": "60f82bbd-71f7-4fcd-a941-472f574c5243", - * "jobId": "f79b359b-1515-4436-a3bf-bae7b33e47b4", - * "s3uri": "s3://mybucketname/pathelemene/file.csv", - * "status": "IN_PROGRESS" + * job: { + * instanceId: "60f82bbd-71f7-4fcd-a941-472f574c5243", + * jobId: "f79b359b-1515-4436-a3bf-bae7b33e47b4", + * s3uri: "s3://mybucketname/pathelemene/file.csv", + * status: "IN_PROGRESS" * } * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class GetBillOfMaterialsImportJobCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/GetDataIntegrationFlowCommand.ts b/clients/client-supplychain/src/commands/GetDataIntegrationFlowCommand.ts index 4f18b2dde6bd2..154adef2fc02e 100644 --- a/clients/client-supplychain/src/commands/GetDataIntegrationFlowCommand.ts +++ b/clients/client-supplychain/src/commands/GetDataIntegrationFlowCommand.ts @@ -125,51 +125,51 @@ export interface GetDataIntegrationFlowCommandOutput extends GetDataIntegrationF * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Successful GetDataIntegrationFlow * ```javascript * // * const input = { - * "name": "testStagingFlow", - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d" + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d", + * name: "testStagingFlow" * }; * const command = new GetDataIntegrationFlowCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "flow": { - * "name": "testStagingFlow", - * "createdTime": 1724956400.44, - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d", - * "lastModifiedTime": 1724956400.44, - * "sources": [ + * flow: { + * createdTime: 1.72495640044E9, + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d", + * lastModifiedTime: 1.72495640044E9, + * name: "testStagingFlow", + * sources: [ * { - * "s3Source": { - * "bucketName": "aws-supply-chain-data-b8c7bb28-a576-4334-b481-6d6e8e47371f", - * "prefix": "example-prefix" + * s3Source: { + * bucketName: "aws-supply-chain-data-b8c7bb28-a576-4334-b481-6d6e8e47371f", + * prefix: "example-prefix" * }, - * "sourceName": "testSourceName", - * "sourceType": "S3" + * sourceName: "testSourceName", + * sourceType: "S3" * } * ], - * "target": { - * "datasetTarget": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset" + * target: { + * datasetTarget: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset" * }, - * "targetType": "DATASET" + * targetType: "DATASET" * }, - * "transformation": { - * "sqlTransformation": { - * "query": "SELECT * FROM testSourceName" + * transformation: { + * sqlTransformation: { + * query: "SELECT * FROM testSourceName" * }, - * "transformationType": "SQL" + * transformationType: "SQL" * } * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetDataIntegrationFlowCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/GetDataLakeDatasetCommand.ts b/clients/client-supplychain/src/commands/GetDataLakeDatasetCommand.ts index 8f8595fb1b60b..23c3703c9b099 100644 --- a/clients/client-supplychain/src/commands/GetDataLakeDatasetCommand.ts +++ b/clients/client-supplychain/src/commands/GetDataLakeDatasetCommand.ts @@ -96,239 +96,238 @@ export interface GetDataLakeDatasetCommandOutput extends GetDataLakeDatasetRespo * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Get properties of an existing AWS Supply Chain inbound order dataset * ```javascript * // * const input = { - * "name": "inbound_order", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "namespace": "asc" + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * name: "inbound_order", + * namespace: "asc" * }; * const command = new GetDataLakeDatasetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "dataset": { - * "name": "inbound_order", - * "arn": "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/asc/datasets/inbound_order", - * "createdTime": 1727116807.751, - * "description": "This is an AWS Supply Chain inbound order dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "lastModifiedTime": 1727116807.751, - * "namespace": "asc", - * "schema": { - * "name": "InboundOrder", - * "fields": [ + * dataset: { + * arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/asc/datasets/inbound_order", + * createdTime: 1.727116807751E9, + * description: "This is an AWS Supply Chain inbound order dataset", + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * lastModifiedTime: 1.727116807751E9, + * name: "inbound_order", + * namespace: "asc", + * schema: { + * fields: [ * { - * "name": "id", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "id", + * type: "STRING" * }, * { - * "name": "tpartner_id", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "tpartner_id", + * type: "STRING" * }, * { - * "name": "connection_id", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "connection_id", + * type: "STRING" * }, * { - * "name": "order_type", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "order_type", + * type: "STRING" * }, * { - * "name": "order_status", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "order_status", + * type: "STRING" * }, * { - * "name": "inbound_order_url", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "inbound_order_url", + * type: "STRING" * }, * { - * "name": "order_creation_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "order_creation_date", + * type: "TIMESTAMP" * }, * { - * "name": "company_id", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "company_id", + * type: "STRING" * }, * { - * "name": "to_site_id", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "to_site_id", + * type: "STRING" * }, * { - * "name": "order_currency_uom", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "order_currency_uom", + * type: "STRING" * }, * { - * "name": "vendor_currency_uom", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "vendor_currency_uom", + * type: "STRING" * }, * { - * "name": "exchange_rate", - * "type": "DOUBLE", - * "isRequired": false + * isRequired: false, + * name: "exchange_rate", + * type: "DOUBLE" * }, * { - * "name": "exchange_rate_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "exchange_rate_date", + * type: "TIMESTAMP" * }, * { - * "name": "incoterm", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm", + * type: "STRING" * }, * { - * "name": "incoterm2", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm2", + * type: "STRING" * }, * { - * "name": "incoterm_location_1", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm_location_1", + * type: "STRING" * }, * { - * "name": "incoterm_location_2", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm_location_2", + * type: "STRING" * }, * { - * "name": "submitted_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "submitted_date", + * type: "TIMESTAMP" * }, * { - * "name": "agreement_start_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "agreement_start_date", + * type: "TIMESTAMP" * }, * { - * "name": "agreement_end_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "agreement_end_date", + * type: "TIMESTAMP" * }, * { - * "name": "shipping_instr_code", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "shipping_instr_code", + * type: "STRING" * }, * { - * "name": "payment_terms_code", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "payment_terms_code", + * type: "STRING" * }, * { - * "name": "std_terms_agreement", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "std_terms_agreement", + * type: "STRING" * }, * { - * "name": "std_terms_agreement_ver", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "std_terms_agreement_ver", + * type: "STRING" * }, * { - * "name": "agreement_number", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "agreement_number", + * type: "STRING" * }, * { - * "name": "source", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "source", + * type: "STRING" * }, * { - * "name": "source_update_dttm", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "source_update_dttm", + * type: "TIMESTAMP" * }, * { - * "name": "source_event_id", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "source_event_id", + * type: "STRING" * }, * { - * "name": "db_creation_dttm", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "db_creation_dttm", + * type: "TIMESTAMP" * }, * { - * "name": "db_updation_dttm", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "db_updation_dttm", + * type: "TIMESTAMP" * } - * ] + * ], + * name: "InboundOrder" * } * } * } * *\/ - * // example id: example-1 * ``` * * @example Get proporties of an existing custom dataset * ```javascript * // * const input = { - * "name": "my_dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "namespace": "default" + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * name: "my_dataset", + * namespace: "default" * }; * const command = new GetDataLakeDatasetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "dataset": { - * "name": "my_dataset", - * "arn": "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/default/datasets/my_dataset", - * "createdTime": 1727116807.751, - * "description": "This is a custom dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "lastModifiedTime": 1727116807.751, - * "namespace": "default", - * "schema": { - * "name": "MyDataset", - * "fields": [ + * dataset: { + * arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/default/datasets/my_dataset", + * createdTime: 1.727116807751E9, + * description: "This is a custom dataset", + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * lastModifiedTime: 1.727116807751E9, + * name: "my_dataset", + * namespace: "default", + * schema: { + * fields: [ * { - * "name": "id", - * "type": "INT", - * "isRequired": true + * isRequired: true, + * name: "id", + * type: "INT" * }, * { - * "name": "description", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "description", + * type: "STRING" * }, * { - * "name": "price", - * "type": "DOUBLE", - * "isRequired": false + * isRequired: false, + * name: "price", + * type: "DOUBLE" * }, * { - * "name": "creation_time", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "creation_time", + * type: "TIMESTAMP" * } - * ] + * ], + * name: "MyDataset" * } * } * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class GetDataLakeDatasetCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/GetInstanceCommand.ts b/clients/client-supplychain/src/commands/GetInstanceCommand.ts index efe796ffb3b7b..25db12e82cf9d 100644 --- a/clients/client-supplychain/src/commands/GetInstanceCommand.ts +++ b/clients/client-supplychain/src/commands/GetInstanceCommand.ts @@ -88,60 +88,59 @@ export interface GetInstanceCommandOutput extends GetInstanceResponse, __Metadat * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Successful GetInstance request * ```javascript * // * const input = { - * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793" + * instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793" * }; * const command = new GetInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "instance": { - * "awsAccountId": "123456789012", - * "createdTime": 172615383136, - * "instanceDescription": "example instance description", - * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793", - * "instanceName": "example instance name", - * "kmsKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", - * "lastModifiedTime": 172615383136, - * "state": "Active", - * "versionNumber": 2 + * instance: { + * awsAccountId: "123456789012", + * createdTime: 172615383136, + * instanceDescription: "example instance description", + * instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793", + * instanceName: "example instance name", + * kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", + * lastModifiedTime: 172615383136, + * state: "Active", + * versionNumber: 2.0 * } * } * *\/ - * // example id: example-1 * ``` * * @example Successful GetInstance request with error message * ```javascript * // * const input = { - * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793" + * instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793" * }; * const command = new GetInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "instance": { - * "awsAccountId": "123456789012", - * "createdTime": 172615383136, - * "errorMessage": "Access denied when attempting to create an S3 bucket. Please correct your IAM policy and try again.", - * "instanceDescription": "example instance description", - * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793", - * "instanceName": "example instance name", - * "kmsKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", - * "lastModifiedTime": 172615383136, - * "state": "CreateFailed", - * "versionNumber": 2 + * instance: { + * awsAccountId: "123456789012", + * createdTime: 172615383136, + * errorMessage: "Access denied when attempting to create an S3 bucket. Please correct your IAM policy and try again.", + * instanceDescription: "example instance description", + * instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793", + * instanceName: "example instance name", + * kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", + * lastModifiedTime: 172615383136, + * state: "CreateFailed", + * versionNumber: 2.0 * } * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class GetInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/ListDataIntegrationFlowsCommand.ts b/clients/client-supplychain/src/commands/ListDataIntegrationFlowsCommand.ts index 64fec76fd87d6..29247c6ce93e9 100644 --- a/clients/client-supplychain/src/commands/ListDataIntegrationFlowsCommand.ts +++ b/clients/client-supplychain/src/commands/ListDataIntegrationFlowsCommand.ts @@ -129,86 +129,86 @@ export interface ListDataIntegrationFlowsCommandOutput extends ListDataIntegrati * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Successful ListDataIntegrationFlow * ```javascript * // * const input = { - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d" + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d" * }; * const command = new ListDataIntegrationFlowsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "flows": [ + * flows: [ * { - * "name": "testStagingFlow", - * "createdTime": 1724956400.44, - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d", - * "lastModifiedTime": 1724956400.44, - * "sources": [ + * createdTime: 1.72495640044E9, + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d", + * lastModifiedTime: 1.72495640044E9, + * name: "testStagingFlow", + * sources: [ * { - * "s3Source": { - * "bucketName": "aws-supply-chain-data-b8c7bb28-a576-4334-b481-6d6e8e47371f", - * "prefix": "example-prefix" + * s3Source: { + * bucketName: "aws-supply-chain-data-b8c7bb28-a576-4334-b481-6d6e8e47371f", + * prefix: "example-prefix" * }, - * "sourceName": "testSourceName", - * "sourceType": "S3" + * sourceName: "testSourceName", + * sourceType: "S3" * } * ], - * "target": { - * "datasetTarget": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset" + * target: { + * datasetTarget: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset" * }, - * "targetType": "DATASET" + * targetType: "DATASET" * }, - * "transformation": { - * "sqlTransformation": { - * "query": "SELECT * FROM testSourceName" + * transformation: { + * sqlTransformation: { + * query: "SELECT * FROM testSourceName" * }, - * "transformationType": "SQL" + * transformationType: "SQL" * } * }, * { - * "name": "trading-partner", - * "createdTime": 17235763506.88, - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d", - * "lastModifiedTime": 17235763506.88, - * "sources": [ + * createdTime: 1.723576350688E10, + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d", + * lastModifiedTime: 1.723576350688E10, + * name: "trading-partner", + * sources: [ * { - * "datasetSource": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset1" + * datasetSource: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset1" * }, - * "sourceName": "testSourceName1", - * "sourceType": "DATASET" + * sourceName: "testSourceName1", + * sourceType: "DATASET" * }, * { - * "datasetSource": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset2" + * datasetSource: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset2" * }, - * "sourceName": "testSourceName2", - * "sourceType": "DATASET" + * sourceName: "testSourceName2", + * sourceType: "DATASET" * } * ], - * "target": { - * "datasetTarget": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/asc/datasets/trading_partner" + * target: { + * datasetTarget: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/asc/datasets/trading_partner" * }, - * "targetType": "DATASET" + * targetType: "DATASET" * }, - * "transformation": { - * "sqlTransformation": { - * "query": "SELECT S1.id AS id, S1.poc_org_unit_description AS description, S1.company_id AS company_id, S1.tpartner_type AS tpartner_type, S1.geo_id AS geo_id, S1.eff_start_date AS eff_start_date, S1.eff_end_date AS eff_end_date FROM testSourceName1 AS S1 LEFT JOIN testSourceName2 as S2 ON S1.id=S2.id" + * transformation: { + * sqlTransformation: { + * query: "SELECT S1.id AS id, S1.poc_org_unit_description AS description, S1.company_id AS company_id, S1.tpartner_type AS tpartner_type, S1.geo_id AS geo_id, S1.eff_start_date AS eff_start_date, S1.eff_end_date AS eff_end_date FROM testSourceName1 AS S1 LEFT JOIN testSourceName2 as S2 ON S1.id=S2.id" * }, - * "transformationType": "SQL" + * transformationType: "SQL" * } * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListDataIntegrationFlowsCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/ListDataLakeDatasetsCommand.ts b/clients/client-supplychain/src/commands/ListDataLakeDatasetsCommand.ts index ba5fca427c65f..b02da7d8254ad 100644 --- a/clients/client-supplychain/src/commands/ListDataLakeDatasetsCommand.ts +++ b/clients/client-supplychain/src/commands/ListDataLakeDatasetsCommand.ts @@ -100,268 +100,267 @@ export interface ListDataLakeDatasetsCommandOutput extends ListDataLakeDatasetsR * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example List AWS Supply Chain datasets * ```javascript * // * const input = { - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "namespace": "asc" + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * namespace: "asc" * }; * const command = new ListDataLakeDatasetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "datasets": [ + * datasets: [ * { - * "name": "inbound_order", - * "arn": "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/asc/datasets/inbound_order", - * "createdTime": 1727116807.751, - * "description": "This is an AWS Supply Chain inbound order dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "lastModifiedTime": 1727116807.751, - * "namespace": "asc", - * "schema": { - * "name": "InboundOrder", - * "fields": [ + * arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/asc/datasets/inbound_order", + * createdTime: 1.727116807751E9, + * description: "This is an AWS Supply Chain inbound order dataset", + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * lastModifiedTime: 1.727116807751E9, + * name: "inbound_order", + * namespace: "asc", + * schema: { + * fields: [ * { - * "name": "id", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "id", + * type: "STRING" * }, * { - * "name": "tpartner_id", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "tpartner_id", + * type: "STRING" * }, * { - * "name": "connection_id", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "connection_id", + * type: "STRING" * }, * { - * "name": "order_type", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "order_type", + * type: "STRING" * }, * { - * "name": "order_status", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "order_status", + * type: "STRING" * }, * { - * "name": "inbound_order_url", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "inbound_order_url", + * type: "STRING" * }, * { - * "name": "order_creation_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "order_creation_date", + * type: "TIMESTAMP" * }, * { - * "name": "company_id", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "company_id", + * type: "STRING" * }, * { - * "name": "to_site_id", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "to_site_id", + * type: "STRING" * }, * { - * "name": "order_currency_uom", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "order_currency_uom", + * type: "STRING" * }, * { - * "name": "vendor_currency_uom", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "vendor_currency_uom", + * type: "STRING" * }, * { - * "name": "exchange_rate", - * "type": "DOUBLE", - * "isRequired": false + * isRequired: false, + * name: "exchange_rate", + * type: "DOUBLE" * }, * { - * "name": "exchange_rate_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "exchange_rate_date", + * type: "TIMESTAMP" * }, * { - * "name": "incoterm", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm", + * type: "STRING" * }, * { - * "name": "incoterm2", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm2", + * type: "STRING" * }, * { - * "name": "incoterm_location_1", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm_location_1", + * type: "STRING" * }, * { - * "name": "incoterm_location_2", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm_location_2", + * type: "STRING" * }, * { - * "name": "submitted_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "submitted_date", + * type: "TIMESTAMP" * }, * { - * "name": "agreement_start_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "agreement_start_date", + * type: "TIMESTAMP" * }, * { - * "name": "agreement_end_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "agreement_end_date", + * type: "TIMESTAMP" * }, * { - * "name": "shipping_instr_code", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "shipping_instr_code", + * type: "STRING" * }, * { - * "name": "payment_terms_code", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "payment_terms_code", + * type: "STRING" * }, * { - * "name": "std_terms_agreement", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "std_terms_agreement", + * type: "STRING" * }, * { - * "name": "std_terms_agreement_ver", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "std_terms_agreement_ver", + * type: "STRING" * }, * { - * "name": "agreement_number", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "agreement_number", + * type: "STRING" * }, * { - * "name": "source", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "source", + * type: "STRING" * }, * { - * "name": "source_update_dttm", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "source_update_dttm", + * type: "TIMESTAMP" * }, * { - * "name": "source_event_id", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "source_event_id", + * type: "STRING" * }, * { - * "name": "db_creation_dttm", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "db_creation_dttm", + * type: "TIMESTAMP" * }, * { - * "name": "db_updation_dttm", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "db_updation_dttm", + * type: "TIMESTAMP" * } - * ] + * ], + * name: "InboundOrder" * } * } * ] * } * *\/ - * // example id: example-1 * ``` * * @example List custom datasets using pagination * ```javascript * // * const input = { - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "maxResults": 2, - * "namespace": "default", - * "nextToken": "next_token_returned_from_previous_list_request" + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * maxResults: 2, + * namespace: "default", + * nextToken: "next_token_returned_from_previous_list_request" * }; * const command = new ListDataLakeDatasetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "datasets": [ + * datasets: [ * { - * "name": "my_dataset", - * "arn": "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/default/datasets/my_dataset", - * "createdTime": 1727116807.751, - * "description": "This is a custom dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "lastModifiedTime": 1727116807.751, - * "namespace": "default", - * "schema": { - * "name": "MyDataset", - * "fields": [ + * arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/default/datasets/my_dataset", + * createdTime: 1.727116807751E9, + * description: "This is a custom dataset", + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * lastModifiedTime: 1.727116807751E9, + * name: "my_dataset", + * namespace: "default", + * schema: { + * fields: [ * { - * "name": "id", - * "type": "INT", - * "isRequired": true + * isRequired: true, + * name: "id", + * type: "INT" * }, * { - * "name": "description", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "description", + * type: "STRING" * }, * { - * "name": "price", - * "type": "DOUBLE", - * "isRequired": false + * isRequired: false, + * name: "price", + * type: "DOUBLE" * }, * { - * "name": "creation_time", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "creation_time", + * type: "TIMESTAMP" * } - * ] + * ], + * name: "MyDataset" * } * }, * { - * "name": "my_dataset_2", - * "arn": "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/default/datasets/my_dataset_2", - * "createdTime": 1727116907.751, - * "description": "This is a custom dataset 2", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "lastModifiedTime": 1727116907.751, - * "namespace": "default", - * "schema": { - * "name": "MyDataset2", - * "fields": [ - * { - * "name": "id", - * "type": "INT", - * "isRequired": true - * }, - * { - * "name": "description", - * "type": "STRING", - * "isRequired": true + * arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/default/datasets/my_dataset_2", + * createdTime: 1.727116907751E9, + * description: "This is a custom dataset 2", + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * lastModifiedTime: 1.727116907751E9, + * name: "my_dataset_2", + * namespace: "default", + * schema: { + * fields: [ + * { + * isRequired: true, + * name: "id", + * type: "INT" + * }, + * { + * isRequired: true, + * name: "description", + * type: "STRING" * } - * ] + * ], + * name: "MyDataset2" * } * } * ], - * "nextToken": "next_token_for_next_list_request" + * nextToken: "next_token_for_next_list_request" * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class ListDataLakeDatasetsCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/ListInstancesCommand.ts b/clients/client-supplychain/src/commands/ListInstancesCommand.ts index 23ddd10fa8adb..c6ea8ce51f7fb 100644 --- a/clients/client-supplychain/src/commands/ListInstancesCommand.ts +++ b/clients/client-supplychain/src/commands/ListInstancesCommand.ts @@ -98,133 +98,130 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Successful ListInstance request with no input data * ```javascript * // - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "instances": [ + * instances: [ * { - * "awsAccountId": "123456789012", - * "createdTime": 172615383136, - * "instanceDescription": "example instance description", - * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793", - * "instanceName": "example instance name", - * "kmsKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", - * "lastModifiedTime": 172615383136, - * "state": "Active", - * "versionNumber": 2 + * awsAccountId: "123456789012", + * createdTime: 172615383136, + * instanceDescription: "example instance description", + * instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793", + * instanceName: "example instance name", + * kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", + * lastModifiedTime: 172615383136, + * state: "Active", + * versionNumber: 2.0 * }, * { - * "awsAccountId": "123456789012", - * "createdTime": 17261674383136, - * "instanceDescription": "example instance description", - * "instanceId": "3ad8116a-644d-4172-8dcb-20e51d314c14", - * "kmsKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", - * "lastModifiedTime": 17261674383136, - * "state": "Initializing", - * "versionNumber": 2 + * awsAccountId: "123456789012", + * createdTime: 17261674383136, + * instanceDescription: "example instance description", + * instanceId: "3ad8116a-644d-4172-8dcb-20e51d314c14", + * kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", + * lastModifiedTime: 17261674383136, + * state: "Initializing", + * versionNumber: 2.0 * } * ] * } * *\/ - * // example id: example-1 * ``` * * @example Successful ListInstance request with filters * ```javascript * // * const input = { - * "instanceNameFilter": [ + * instanceNameFilter: [ * "example instance name" * ], - * "instanceStateFilter": [ + * instanceStateFilter: [ * "Active" * ] * }; * const command = new ListInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "instances": [ + * instances: [ * { - * "awsAccountId": "123456789012", - * "createdTime": 172615383136, - * "instanceDescription": "example instance description", - * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793", - * "instanceName": "example instance name", - * "kmsKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", - * "lastModifiedTime": 172615383136, - * "state": "Active", - * "versionNumber": 2 + * awsAccountId: "123456789012", + * createdTime: 172615383136, + * instanceDescription: "example instance description", + * instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793", + * instanceName: "example instance name", + * kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", + * lastModifiedTime: 172615383136, + * state: "Active", + * versionNumber: 2.0 * } * ] * } * *\/ - * // example id: example-2 * ``` * * @example Successful ListInstance request with maxResult override * ```javascript * // * const input = { - * "maxResults": 1 + * maxResults: 1 * }; * const command = new ListInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "instances": [ + * instances: [ * { - * "awsAccountId": "123456789012", - * "createdTime": 172615383136, - * "instanceDescription": "example instance description", - * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793", - * "instanceName": "example instance name", - * "kmsKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", - * "lastModifiedTime": 172615383136, - * "state": "Active", - * "versionNumber": 2 + * awsAccountId: "123456789012", + * createdTime: 172615383136, + * instanceDescription: "example instance description", + * instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793", + * instanceName: "example instance name", + * kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", + * lastModifiedTime: 172615383136, + * state: "Active", + * versionNumber: 2.0 * } * ], - * "nextToken": "AAQA-EFRSURBSGhtcng0c0dxbENwUHdnckVIbkFYNU1QVjRTZWN2ak5iMFVicC8zemlHOVF3SEpjSC9WTWJVVXBMV2Z1N3ZvZlQ0WEFBQUFmakI4QmdrcWhraUc5dzBCQndhZ2J6QnRBZ0VBTUdnR0NTcUdTSWIzRFFFSEFUQWVCZ2xnaGtnQlpRTUVBUzR3RVFRTTJibW9LemgrSWZTY0RaZEdBZ0VRZ0R2dDhsQnVGbGJ0dnFTZityWmNSWEVPbG93emJoSjhxOGNMbGQ1UGMvY0VRbWlTR3pQUFd4N2RraXY5Y0ovcS9vSmFYZVBGdWVHaU0zWmd0dz09n-rC1ejA5--7ltJxpDT2xP_i8xGqDPMOZfjpp8q6l5NuP9_bnBURvwwYhdqDriMK5_f96LuPEnPbuML-ItfgEiCcUy0p2tApvpZkZqOG5fbqP-4C5aDYPTffHLyq-MMqvfrGVJzL1nvkpZcnTkVR9VJsu5b8I0qqDW0H8EMKGgTo78U9lr4sj3Usi9VMwZxgKCBmr03HhFLYXOW--XMbIx0CTZF0fYIcRxmA_sVS6J7gpaB9yMcnzs5VUKokoA5JTcAPY5d1Y1VyE8KKxv51cfPgXw8OYCDbFQncw8mZPmE-VqxjFbksmk_FmghpPn9j2Ppoe-zr0LQ%3D" + * nextToken: "AAQA-EFRSURBSGhtcng0c0dxbENwUHdnckVIbkFYNU1QVjRTZWN2ak5iMFVicC8zemlHOVF3SEpjSC9WTWJVVXBMV2Z1N3ZvZlQ0WEFBQUFmakI4QmdrcWhraUc5dzBCQndhZ2J6QnRBZ0VBTUdnR0NTcUdTSWIzRFFFSEFUQWVCZ2xnaGtnQlpRTUVBUzR3RVFRTTJibW9LemgrSWZTY0RaZEdBZ0VRZ0R2dDhsQnVGbGJ0dnFTZityWmNSWEVPbG93emJoSjhxOGNMbGQ1UGMvY0VRbWlTR3pQUFd4N2RraXY5Y0ovcS9vSmFYZVBGdWVHaU0zWmd0dz09n-rC1ejA5--7ltJxpDT2xP_i8xGqDPMOZfjpp8q6l5NuP9_bnBURvwwYhdqDriMK5_f96LuPEnPbuML-ItfgEiCcUy0p2tApvpZkZqOG5fbqP-4C5aDYPTffHLyq-MMqvfrGVJzL1nvkpZcnTkVR9VJsu5b8I0qqDW0H8EMKGgTo78U9lr4sj3Usi9VMwZxgKCBmr03HhFLYXOW--XMbIx0CTZF0fYIcRxmA_sVS6J7gpaB9yMcnzs5VUKokoA5JTcAPY5d1Y1VyE8KKxv51cfPgXw8OYCDbFQncw8mZPmE-VqxjFbksmk_FmghpPn9j2Ppoe-zr0LQ%3D" * } * *\/ - * // example id: example-3 * ``` * * @example Successful ListInstance request with nextToken * ```javascript * // * const input = { - * "maxResults": 1, - * "nextToken": "AAQA-EFRSURBSGhtcng0c0dxbENwUHdnckVIbkFYNU1QVjRTZWN2ak5iMFVicC8zemlHOVF3SEpjSC9WTWJVVXBMV2Z1N3ZvZlQ0WEFBQUFmakI4QmdrcWhraUc5dzBCQndhZ2J6QnRBZ0VBTUdnR0NTcUdTSWIzRFFFSEFUQWVCZ2xnaGtnQlpRTUVBUzR3RVFRTTJibW9LemgrSWZTY0RaZEdBZ0VRZ0R2dDhsQnVGbGJ0dnFTZityWmNSWEVPbG93emJoSjhxOGNMbGQ1UGMvY0VRbWlTR3pQUFd4N2RraXY5Y0ovcS9vSmFYZVBGdWVHaU0zWmd0dz09n-rC1ejA5--7ltJxpDT2xP_i8xGqDPMOZfjpp8q6l5NuP9_bnBURvwwYhdqDriMK5_f96LuPEnPbuML-ItfgEiCcUy0p2tApvpZkZqOG5fbqP-4C5aDYPTffHLyq-MMqvfrGVJzL1nvkpZcnTkVR9VJsu5b8I0qqDW0H8EMKGgTo78U9lr4sj3Usi9VMwZxgKCBmr03HhFLYXOW--XMbIx0CTZF0fYIcRxmA_sVS6J7gpaB9yMcnzs5VUKokoA5JTcAPY5d1Y1VyE8KKxv51cfPgXw8OYCDbFQncw8mZPmE-VqxjFbksmk_FmghpPn9j2Ppoe-zr0LQ%3D" + * maxResults: 1, + * nextToken: "AAQA-EFRSURBSGhtcng0c0dxbENwUHdnckVIbkFYNU1QVjRTZWN2ak5iMFVicC8zemlHOVF3SEpjSC9WTWJVVXBMV2Z1N3ZvZlQ0WEFBQUFmakI4QmdrcWhraUc5dzBCQndhZ2J6QnRBZ0VBTUdnR0NTcUdTSWIzRFFFSEFUQWVCZ2xnaGtnQlpRTUVBUzR3RVFRTTJibW9LemgrSWZTY0RaZEdBZ0VRZ0R2dDhsQnVGbGJ0dnFTZityWmNSWEVPbG93emJoSjhxOGNMbGQ1UGMvY0VRbWlTR3pQUFd4N2RraXY5Y0ovcS9vSmFYZVBGdWVHaU0zWmd0dz09n-rC1ejA5--7ltJxpDT2xP_i8xGqDPMOZfjpp8q6l5NuP9_bnBURvwwYhdqDriMK5_f96LuPEnPbuML-ItfgEiCcUy0p2tApvpZkZqOG5fbqP-4C5aDYPTffHLyq-MMqvfrGVJzL1nvkpZcnTkVR9VJsu5b8I0qqDW0H8EMKGgTo78U9lr4sj3Usi9VMwZxgKCBmr03HhFLYXOW--XMbIx0CTZF0fYIcRxmA_sVS6J7gpaB9yMcnzs5VUKokoA5JTcAPY5d1Y1VyE8KKxv51cfPgXw8OYCDbFQncw8mZPmE-VqxjFbksmk_FmghpPn9j2Ppoe-zr0LQ%3D" * }; * const command = new ListInstancesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "instances": [ + * instances: [ * { - * "awsAccountId": "123456789012", - * "createdTime": 17261674383136, - * "instanceDescription": "example instance description", - * "instanceId": "3ad8116a-644d-4172-8dcb-20e51d314c14", - * "kmsKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", - * "lastModifiedTime": 17261674383136, - * "state": "Initializing", - * "versionNumber": 2 + * awsAccountId: "123456789012", + * createdTime: 17261674383136, + * instanceDescription: "example instance description", + * instanceId: "3ad8116a-644d-4172-8dcb-20e51d314c14", + * kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", + * lastModifiedTime: 17261674383136, + * state: "Initializing", + * versionNumber: 2.0 * } * ] * } * *\/ - * // example id: example-4 * ``` * + * @public */ export class ListInstancesCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/ListTagsForResourceCommand.ts b/clients/client-supplychain/src/commands/ListTagsForResourceCommand.ts index b54c0796515e4..8737c186e9c24 100644 --- a/clients/client-supplychain/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-supplychain/src/commands/ListTagsForResourceCommand.ts @@ -78,25 +78,25 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Successful ListTagsForResource * ```javascript * // * const input = { - * "resourceArn": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/data-integration-flows/my_flow1" + * resourceArn: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/data-integration-flows/my_flow1" * }; * const command = new ListTagsForResourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "tags": { - * "tagKey1": "tagValue1" + * tags: { + * tagKey1: "tagValue1" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/SendDataIntegrationEventCommand.ts b/clients/client-supplychain/src/commands/SendDataIntegrationEventCommand.ts index c3d89f0a01104..9d836c13c4f9f 100644 --- a/clients/client-supplychain/src/commands/SendDataIntegrationEventCommand.ts +++ b/clients/client-supplychain/src/commands/SendDataIntegrationEventCommand.ts @@ -85,307 +85,293 @@ export interface SendDataIntegrationEventCommandOutput extends SendDataIntegrati * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Successful SendDataIntegrationEvent for inboundorder event type * ```javascript * // * const input = { - * "data": "{\"id\": \"inbound-order-id-test-123\", \"tpartner_id\": \"partner-id-test-123\" }", - * "eventGroupId": "inboundOrderId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.inboundorder", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"id": "inbound-order-id-test-123", "tpartner_id": "partner-id-test-123" }`, + * eventGroupId: "inboundOrderId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.inboundorder", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "c4132c1d-8f60-44a2-9932-f723c4f7b8a7" + * eventId: "c4132c1d-8f60-44a2-9932-f723c4f7b8a7" * } * *\/ - * // example id: example-1 * ``` * * @example Successful SendDataIntegrationEvent for inboundorderline event type * ```javascript * // * const input = { - * "data": "{\"id\": \"inbound-order-line-id-test-123\", \"order_id\": \"order-id-test-123\", \"tpartner_id\": \"partner-id-test-123\", \"product_id\": \"product-id-test-123\", \"quantity_submitted\": \"100.0\" }", - * "eventGroupId": "inboundOrderLineId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.inboundorderline", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"id": "inbound-order-line-id-test-123", "order_id": "order-id-test-123", "tpartner_id": "partner-id-test-123", "product_id": "product-id-test-123", "quantity_submitted": "100.0" }`, + * eventGroupId: "inboundOrderLineId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.inboundorderline", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "45d95db2-d106-40e0-aa98-f1204230a691" + * eventId: "45d95db2-d106-40e0-aa98-f1204230a691" * } * *\/ - * // example id: example-2 * ``` * * @example Successful SendDataIntegrationEvent for inboundorderlineschedule event type * ```javascript * // * const input = { - * "data": "{\"id\": \"inbound-order-line-schedule-id-test-123\", \"order_id\": \"order-id-test-123\", \"order_line_id\": \"order-line-id-test-123\", \"product_id\": \"product-id-test-123\"}", - * "eventGroupId": "inboundOrderLineScheduleId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.inboundorderlineschedule", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"id": "inbound-order-line-schedule-id-test-123", "order_id": "order-id-test-123", "order_line_id": "order-line-id-test-123", "product_id": "product-id-test-123"}`, + * eventGroupId: "inboundOrderLineScheduleId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.inboundorderlineschedule", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "5abba995-7735-4d1e-95c4-7cc93e48cf9f" + * eventId: "5abba995-7735-4d1e-95c4-7cc93e48cf9f" * } * *\/ - * // example id: example-3 * ``` * * @example Successful SendDataIntegrationEvent for forecast event type * ```javascript * // * const input = { - * "data": "{\"snapshot_date\": \"1672470400000\", \"product_id\": \"product-id-test-123\", \"site_id\": \"site-id-test-123\", \"region_id\": \"region-id-test-123\", \"product_group_id\": \"product-group-id-test-123\", \"forecast_start_dttm\": \"1672470400000\", \"forecast_end_dttm\": \"1672470400000\" }", - * "eventGroupId": "forecastId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.forecast", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"snapshot_date": "1672470400000", "product_id": "product-id-test-123", "site_id": "site-id-test-123", "region_id": "region-id-test-123", "product_group_id": "product-group-id-test-123", "forecast_start_dttm": "1672470400000", "forecast_end_dttm": "1672470400000" }`, + * eventGroupId: "forecastId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.forecast", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "29312d5b-f499-4dcd-b017-3dab3cd34d61" + * eventId: "29312d5b-f499-4dcd-b017-3dab3cd34d61" * } * *\/ - * // example id: example-4 * ``` * * @example Successful SendDataIntegrationEvent for inventorylevel event type * ```javascript * // * const input = { - * "data": "{\"snapshot_date\": \"1672470400000\", \"site_id\": \"site-id-test-123\", \"product_id\": \"product-id-test-123\", \"on_hand_inventory\": \"100.0\", \"inv_condition\": \"good\", \"lot_number\": \"lot-number-test-123\"}", - * "eventGroupId": "inventoryLevelId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.inventorylevel", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"snapshot_date": "1672470400000", "site_id": "site-id-test-123", "product_id": "product-id-test-123", "on_hand_inventory": "100.0", "inv_condition": "good", "lot_number": "lot-number-test-123"}`, + * eventGroupId: "inventoryLevelId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.inventorylevel", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "3aa78324-acd8-4fdd-a19e-231ea003c2b3" + * eventId: "3aa78324-acd8-4fdd-a19e-231ea003c2b3" * } * *\/ - * // example id: example-5 * ``` * * @example Successful SendDataIntegrationEvent for outboundorderline event type * ```javascript * // * const input = { - * "data": "{\"id\": \"outbound-orderline-id-test-123\", \"cust_order_id\": \"cust-order-id-test-123\", \"product_id\": \"product-id-test-123\" }", - * "eventGroupId": "outboundOrderLineId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.outboundorderline", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"id": "outbound-orderline-id-test-123", "cust_order_id": "cust-order-id-test-123", "product_id": "product-id-test-123" }`, + * eventGroupId: "outboundOrderLineId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.outboundorderline", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "959b7ef9-5e2d-4795-b1ca-5b16a3eb6b89" + * eventId: "959b7ef9-5e2d-4795-b1ca-5b16a3eb6b89" * } * *\/ - * // example id: example-6 * ``` * * @example Successful SendDataIntegrationEvent for outboundshipment event type * ```javascript * // * const input = { - * "data": "{\"id\": \"outbound-shipment-id-test-123\", \"cust_order_id\": \"cust-order-id-test-123\", \"cust_order_line_id\": \"cust-order-line-id-test-123\", \"product_id\": \"product-id-test-123\" }", - * "eventGroupId": "outboundShipmentId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.outboundshipment", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"id": "outbound-shipment-id-test-123", "cust_order_id": "cust-order-id-test-123", "cust_order_line_id": "cust-order-line-id-test-123", "product_id": "product-id-test-123" }`, + * eventGroupId: "outboundShipmentId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.outboundshipment", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "59feded3-5e46-4126-81bf-0137ca176ee0" + * eventId: "59feded3-5e46-4126-81bf-0137ca176ee0" * } * *\/ - * // example id: example-7 * ``` * * @example Successful SendDataIntegrationEvent for processheader event type * ```javascript * // * const input = { - * "data": "{\"process_id\": \"process-id-test-123\" }", - * "eventGroupId": "processHeaderId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.processheader", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"process_id": "process-id-test-123" }`, + * eventGroupId: "processHeaderId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.processheader", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "564130eb-2d8a-4550-a768-ddf0daf7b4a9" + * eventId: "564130eb-2d8a-4550-a768-ddf0daf7b4a9" * } * *\/ - * // example id: example-8 * ``` * * @example Successful SendDataIntegrationEvent for processoperation event type * ```javascript * // * const input = { - * "data": "{\"process_operation_id\": \"process-operation-id-test-123\", \"process_id\": \"process-id-test-123\" }", - * "eventGroupId": "processOperationId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.processoperation", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"process_operation_id": "process-operation-id-test-123", "process_id": "process-id-test-123" }`, + * eventGroupId: "processOperationId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.processoperation", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "db5df408-89c7-4b9f-a326-016f6c2b3396" + * eventId: "db5df408-89c7-4b9f-a326-016f6c2b3396" * } * *\/ - * // example id: example-9 * ``` * * @example Successful SendDataIntegrationEvent for processproduct event type * ```javascript * // * const input = { - * "data": "{\"process_product_id\": \"process-product-id-test-123\", \"process_id\": \"process-id-test-123\" }", - * "eventGroupId": "processProductId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.processproduct", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"process_product_id": "process-product-id-test-123", "process_id": "process-id-test-123" }`, + * eventGroupId: "processProductId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.processproduct", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "6929b275-485e-4035-a798-99077ca6d669" + * eventId: "6929b275-485e-4035-a798-99077ca6d669" * } * *\/ - * // example id: example-10 * ``` * * @example Successful SendDataIntegrationEvent for reservation event type * ```javascript * // * const input = { - * "data": "{\"reservation_id\": \"reservation-id-test-123\", \"reservation_detail_id\": \"reservation-detail-id-test-123\" }", - * "eventGroupId": "reservationId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.reservation", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"reservation_id": "reservation-id-test-123", "reservation_detail_id": "reservation-detail-id-test-123" }`, + * eventGroupId: "reservationId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.reservation", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "f6c55a8b-fde2-44f6-848a-9b4336c77209" + * eventId: "f6c55a8b-fde2-44f6-848a-9b4336c77209" * } * *\/ - * // example id: example-11 * ``` * * @example Successful SendDataIntegrationEvent for shipment event type * ```javascript * // * const input = { - * "data": "{\"id\": \"shipment-id-test-123\", \"supplier_tpartner_id\": \"supplier-tpartner-id-test-123\", \"product_id\": \"product-id-test-123\", \"order_id\": \"order-id-test-123\", \"order_line_id\": \"order-line-id-test-123\", \"package_id\": \"package-id-test-123\" }", - * "eventGroupId": "shipmentId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.shipment", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"id": "shipment-id-test-123", "supplier_tpartner_id": "supplier-tpartner-id-test-123", "product_id": "product-id-test-123", "order_id": "order-id-test-123", "order_line_id": "order-line-id-test-123", "package_id": "package-id-test-123" }`, + * eventGroupId: "shipmentId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.shipment", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "61d079d8-3f56-49bb-b35a-c0271a4e4f0a" + * eventId: "61d079d8-3f56-49bb-b35a-c0271a4e4f0a" * } * *\/ - * // example id: example-12 * ``` * * @example Successful SendDataIntegrationEvent for shipmentstop event type * ```javascript * // * const input = { - * "data": "{\"shipment_stop_id\": \"shipment-stop-id-test-123\", \"shipment_id\": \"shipment-id-test-123\" }", - * "eventGroupId": "shipmentStopId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.shipmentstop", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"shipment_stop_id": "shipment-stop-id-test-123", "shipment_id": "shipment-id-test-123" }`, + * eventGroupId: "shipmentStopId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.shipmentstop", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "3610992a-fc2f-4da4-9beb-724994622ba1" + * eventId: "3610992a-fc2f-4da4-9beb-724994622ba1" * } * *\/ - * // example id: example-13 * ``` * * @example Successful SendDataIntegrationEvent for shipmentstoporder event type * ```javascript * // * const input = { - * "data": "{\"shipment_stop_order_id\": \"shipment-stop-order-id-test-123\", \"shipment_stop_id\": \"shipment-stop-id-test-123\", \"shipment_id\": \"shipment-id-test-123\" }", - * "eventGroupId": "shipmentStopOrderId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.shipmentstoporder", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"shipment_stop_order_id": "shipment-stop-order-id-test-123", "shipment_stop_id": "shipment-stop-id-test-123", "shipment_id": "shipment-id-test-123" }`, + * eventGroupId: "shipmentStopOrderId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.shipmentstoporder", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "1d550a60-9321-4d25-a132-9dd4b2d9e934" + * eventId: "1d550a60-9321-4d25-a132-9dd4b2d9e934" * } * *\/ - * // example id: example-14 * ``` * * @example Successful SendDataIntegrationEvent for supplyplan event type * ```javascript * // * const input = { - * "data": "{\"supply_plan_id\": \"supply-plan-id-test-123\" }", - * "eventGroupId": "supplyPlanId", - * "eventTimestamp": 1515531081.123, - * "eventType": "scn.data.supplyplan", - * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a" + * data: `{"supply_plan_id": "supply-plan-id-test-123" }`, + * eventGroupId: "supplyPlanId", + * eventTimestamp: 1.515531081123E9, + * eventType: "scn.data.supplyplan", + * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a" * }; * const command = new SendDataIntegrationEventCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "eventId": "9abaee56-5dc4-4c31-8250-3206a651d8a1" + * eventId: "9abaee56-5dc4-4c31-8250-3206a651d8a1" * } * *\/ - * // example id: example-15 * ``` * + * @public */ export class SendDataIntegrationEventCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/TagResourceCommand.ts b/clients/client-supplychain/src/commands/TagResourceCommand.ts index da3adb7f1ad78..a7af2afd323cc 100644 --- a/clients/client-supplychain/src/commands/TagResourceCommand.ts +++ b/clients/client-supplychain/src/commands/TagResourceCommand.ts @@ -77,21 +77,24 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Successful TagResource * ```javascript * // * const input = { - * "resourceArn": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/data-integration-flows/my_flow1", - * "tags": { - * "tagKey1": "tagValue1" + * resourceArn: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/data-integration-flows/my_flow1", + * tags: { + * tagKey1: "tagValue1" * } * }; * const command = new TagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/UntagResourceCommand.ts b/clients/client-supplychain/src/commands/UntagResourceCommand.ts index e7e656af664df..999af30126624 100644 --- a/clients/client-supplychain/src/commands/UntagResourceCommand.ts +++ b/clients/client-supplychain/src/commands/UntagResourceCommand.ts @@ -77,21 +77,24 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Successful UntagResource * ```javascript * // * const input = { - * "resourceArn": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/data-integration-flows/my_flow1", - * "tagKeys": [ + * resourceArn: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/data-integration-flows/my_flow1", + * tagKeys: [ * "tagKey1" * ] * }; * const command = new UntagResourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/UpdateDataIntegrationFlowCommand.ts b/clients/client-supplychain/src/commands/UpdateDataIntegrationFlowCommand.ts index 69b3b490f6fba..fd5a9493bae88 100644 --- a/clients/client-supplychain/src/commands/UpdateDataIntegrationFlowCommand.ts +++ b/clients/client-supplychain/src/commands/UpdateDataIntegrationFlowCommand.ts @@ -168,151 +168,150 @@ export interface UpdateDataIntegrationFlowCommandOutput extends UpdateDataIntegr * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Successful UpdateDataIntegrationFlow for s3 to dataset flow to update SQL transformation * ```javascript * // * const input = { - * "name": "testStagingFlow", - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d", - * "sources": [ + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d", + * name: "testStagingFlow", + * sources: [ * { - * "s3Source": { - * "bucketName": "aws-supply-chain-data-b8c7bb28-a576-4334-b481-6d6e8e47371f", - * "prefix": "example-prefix" + * s3Source: { + * bucketName: "aws-supply-chain-data-b8c7bb28-a576-4334-b481-6d6e8e47371f", + * prefix: "example-prefix" * }, - * "sourceName": "testSourceName", - * "sourceType": "S3" + * sourceName: "testSourceName", + * sourceType: "S3" * } * ], - * "target": { - * "datasetTarget": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset" + * target: { + * datasetTarget: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset" * }, - * "targetType": "DATASET" + * targetType: "DATASET" * }, - * "transformation": { - * "sqlTransformation": { - * "query": "SELECT connection_id, bukrs AS id, txtmd AS description FROM testSourceName WHERE langu = 'E'" + * transformation: { + * sqlTransformation: { + * query: "SELECT connection_id, bukrs AS id, txtmd AS description FROM testSourceName WHERE langu = 'E'" * }, - * "transformationType": "SQL" + * transformationType: "SQL" * } * }; * const command = new UpdateDataIntegrationFlowCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "flow": { - * "name": "testStagingFlow", - * "createdTime": 1724956400.44, - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d", - * "lastModifiedTime": 1732456405.77, - * "sources": [ + * flow: { + * createdTime: 1.72495640044E9, + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d", + * lastModifiedTime: 1.73245640577E9, + * name: "testStagingFlow", + * sources: [ * { - * "s3Source": { - * "bucketName": "aws-supply-chain-data-b8c7bb28-a576-4334-b481-6d6e8e47371f", - * "prefix": "example-prefix" + * s3Source: { + * bucketName: "aws-supply-chain-data-b8c7bb28-a576-4334-b481-6d6e8e47371f", + * prefix: "example-prefix" * }, - * "sourceName": "testSourceName", - * "sourceType": "S3" + * sourceName: "testSourceName", + * sourceType: "S3" * } * ], - * "target": { - * "datasetTarget": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset" + * target: { + * datasetTarget: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset" * }, - * "targetType": "DATASET" + * targetType: "DATASET" * }, - * "transformation": { - * "sqlTransformation": { - * "query": "SELECT connection_id, bukrs AS id, txtmd AS description FROM testSourceName WHERE langu = 'E'" + * transformation: { + * sqlTransformation: { + * query: "SELECT connection_id, bukrs AS id, txtmd AS description FROM testSourceName WHERE langu = 'E'" * }, - * "transformationType": "SQL" + * transformationType: "SQL" * } * } * } * *\/ - * // example id: example-1 * ``` * * @example Successful UpdateDataIntegrationFlow for dataset to dataset flow to update sources * ```javascript * // * const input = { - * "name": "trading-partner", - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d", - * "sources": [ + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d", + * name: "trading-partner", + * sources: [ * { - * "datasetSource": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset1" + * datasetSource: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset1" * }, - * "sourceName": "testSourceName1", - * "sourceType": "DATASET" + * sourceName: "testSourceName1", + * sourceType: "DATASET" * }, * { - * "datasetSource": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset2_updated" + * datasetSource: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset2_updated" * }, - * "sourceName": "testSourceName2", - * "sourceType": "DATASET" + * sourceName: "testSourceName2", + * sourceType: "DATASET" * } * ], - * "target": { - * "datasetTarget": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/asc/datasets/trading_partner" + * target: { + * datasetTarget: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/asc/datasets/trading_partner" * }, - * "targetType": "DATASET" + * targetType: "DATASET" * }, - * "transformation": { - * "sqlTransformation": { - * "query": "SELECT S1.id AS id, S1.poc_org_unit_description AS description, S1.company_id AS company_id, S1.tpartner_type AS tpartner_type, S1.geo_id AS geo_id, S1.eff_start_date AS eff_start_date, S1.eff_end_date AS eff_end_date FROM testSourceName1 AS S1 LEFT JOIN testSourceName2 as S2 ON S1.id=S2.id" + * transformation: { + * sqlTransformation: { + * query: "SELECT S1.id AS id, S1.poc_org_unit_description AS description, S1.company_id AS company_id, S1.tpartner_type AS tpartner_type, S1.geo_id AS geo_id, S1.eff_start_date AS eff_start_date, S1.eff_end_date AS eff_end_date FROM testSourceName1 AS S1 LEFT JOIN testSourceName2 as S2 ON S1.id=S2.id" * }, - * "transformationType": "SQL" + * transformationType: "SQL" * } * }; * const command = new UpdateDataIntegrationFlowCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "flow": { - * "name": "trading-partner", - * "createdTime": 1724956400.44, - * "instanceId": "8850c54e-e187-4fa7-89d4-6370f165174d", - * "lastModifiedTime": 1732456405.77, - * "sources": [ + * flow: { + * createdTime: 1.72495640044E9, + * instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d", + * lastModifiedTime: 1.73245640577E9, + * name: "trading-partner", + * sources: [ * { - * "datasetSource": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset1" + * datasetSource: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset1" * }, - * "sourceName": "testSourceName1", - * "sourceType": "DATASET" + * sourceName: "testSourceName1", + * sourceType: "DATASET" * }, * { - * "datasetSource": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset2_updated" + * datasetSource: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset2_updated" * }, - * "sourceName": "testSourceName2", - * "sourceType": "DATASET" + * sourceName: "testSourceName2", + * sourceType: "DATASET" * } * ], - * "target": { - * "datasetTarget": { - * "datasetIdentifier": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/asc/datasets/trading_partner" + * target: { + * datasetTarget: { + * datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/asc/datasets/trading_partner" * }, - * "targetType": "DATASET" + * targetType: "DATASET" * }, - * "transformation": { - * "sqlTransformation": { - * "query": "SELECT S1.id AS id, S1.poc_org_unit_description AS description, S1.company_id AS company_id, S1.tpartner_type AS tpartner_type, S1.geo_id AS geo_id, S1.eff_start_date AS eff_start_date, S1.eff_end_date AS eff_end_date FROM testSourceName1 AS S1 LEFT JOIN testSourceName2 as S2 ON S1.id=S2.id" + * transformation: { + * sqlTransformation: { + * query: "SELECT S1.id AS id, S1.poc_org_unit_description AS description, S1.company_id AS company_id, S1.tpartner_type AS tpartner_type, S1.geo_id AS geo_id, S1.eff_start_date AS eff_start_date, S1.eff_end_date AS eff_end_date FROM testSourceName1 AS S1 LEFT JOIN testSourceName2 as S2 ON S1.id=S2.id" * }, - * "transformationType": "SQL" + * transformationType: "SQL" * } * } * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class UpdateDataIntegrationFlowCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/UpdateDataLakeDatasetCommand.ts b/clients/client-supplychain/src/commands/UpdateDataLakeDatasetCommand.ts index 87d35fe4c987d..684c4cd253452 100644 --- a/clients/client-supplychain/src/commands/UpdateDataLakeDatasetCommand.ts +++ b/clients/client-supplychain/src/commands/UpdateDataLakeDatasetCommand.ts @@ -97,241 +97,240 @@ export interface UpdateDataLakeDatasetCommandOutput extends UpdateDataLakeDatase * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Update description of an existing AWS Supply Chain inbound order dataset * ```javascript * // * const input = { - * "name": "inbound_order", - * "description": "This is an updated AWS Supply Chain inbound order dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "namespace": "asc" + * description: "This is an updated AWS Supply Chain inbound order dataset", + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * name: "inbound_order", + * namespace: "asc" * }; * const command = new UpdateDataLakeDatasetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "dataset": { - * "name": "inbound_order", - * "arn": "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/asc/datasets/inbound_order", - * "createdTime": 1727116807.751, - * "description": "This is an updated AWS Supply Chain inbound order dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "lastModifiedTime": 1727117453.568, - * "namespace": "asc", - * "schema": { - * "name": "InboundOrder", - * "fields": [ + * dataset: { + * arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/asc/datasets/inbound_order", + * createdTime: 1.727116807751E9, + * description: "This is an updated AWS Supply Chain inbound order dataset", + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * lastModifiedTime: 1.727117453568E9, + * name: "inbound_order", + * namespace: "asc", + * schema: { + * fields: [ * { - * "name": "id", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "id", + * type: "STRING" * }, * { - * "name": "tpartner_id", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "tpartner_id", + * type: "STRING" * }, * { - * "name": "connection_id", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "connection_id", + * type: "STRING" * }, * { - * "name": "order_type", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "order_type", + * type: "STRING" * }, * { - * "name": "order_status", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "order_status", + * type: "STRING" * }, * { - * "name": "inbound_order_url", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "inbound_order_url", + * type: "STRING" * }, * { - * "name": "order_creation_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "order_creation_date", + * type: "TIMESTAMP" * }, * { - * "name": "company_id", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "company_id", + * type: "STRING" * }, * { - * "name": "to_site_id", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "to_site_id", + * type: "STRING" * }, * { - * "name": "order_currency_uom", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "order_currency_uom", + * type: "STRING" * }, * { - * "name": "vendor_currency_uom", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "vendor_currency_uom", + * type: "STRING" * }, * { - * "name": "exchange_rate", - * "type": "DOUBLE", - * "isRequired": false + * isRequired: false, + * name: "exchange_rate", + * type: "DOUBLE" * }, * { - * "name": "exchange_rate_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "exchange_rate_date", + * type: "TIMESTAMP" * }, * { - * "name": "incoterm", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm", + * type: "STRING" * }, * { - * "name": "incoterm2", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm2", + * type: "STRING" * }, * { - * "name": "incoterm_location_1", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm_location_1", + * type: "STRING" * }, * { - * "name": "incoterm_location_2", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "incoterm_location_2", + * type: "STRING" * }, * { - * "name": "submitted_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "submitted_date", + * type: "TIMESTAMP" * }, * { - * "name": "agreement_start_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "agreement_start_date", + * type: "TIMESTAMP" * }, * { - * "name": "agreement_end_date", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "agreement_end_date", + * type: "TIMESTAMP" * }, * { - * "name": "shipping_instr_code", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "shipping_instr_code", + * type: "STRING" * }, * { - * "name": "payment_terms_code", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "payment_terms_code", + * type: "STRING" * }, * { - * "name": "std_terms_agreement", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "std_terms_agreement", + * type: "STRING" * }, * { - * "name": "std_terms_agreement_ver", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "std_terms_agreement_ver", + * type: "STRING" * }, * { - * "name": "agreement_number", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "agreement_number", + * type: "STRING" * }, * { - * "name": "source", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "source", + * type: "STRING" * }, * { - * "name": "source_update_dttm", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "source_update_dttm", + * type: "TIMESTAMP" * }, * { - * "name": "source_event_id", - * "type": "STRING", - * "isRequired": false + * isRequired: false, + * name: "source_event_id", + * type: "STRING" * }, * { - * "name": "db_creation_dttm", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "db_creation_dttm", + * type: "TIMESTAMP" * }, * { - * "name": "db_updation_dttm", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "db_updation_dttm", + * type: "TIMESTAMP" * } - * ] + * ], + * name: "InboundOrder" * } * } * } * *\/ - * // example id: example-1 * ``` * * @example Update description of an existing custom dataset * ```javascript * // * const input = { - * "name": "my_dataset", - * "description": "This is an updated custom dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "namespace": "default" + * description: "This is an updated custom dataset", + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * name: "my_dataset", + * namespace: "default" * }; * const command = new UpdateDataLakeDatasetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "dataset": { - * "name": "my_dataset", - * "arn": "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/default/datasets/my_dataset", - * "createdTime": 1727116807.751, - * "description": "This is an updated custom dataset", - * "instanceId": "1877dd20-dee9-4639-8e99-cb67acf21fe5", - * "lastModifiedTime": 1727117453.568, - * "namespace": "default", - * "schema": { - * "name": "MyDataset", - * "fields": [ + * dataset: { + * arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/default/datasets/my_dataset", + * createdTime: 1.727116807751E9, + * description: "This is an updated custom dataset", + * instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5", + * lastModifiedTime: 1.727117453568E9, + * name: "my_dataset", + * namespace: "default", + * schema: { + * fields: [ * { - * "name": "id", - * "type": "INT", - * "isRequired": true + * isRequired: true, + * name: "id", + * type: "INT" * }, * { - * "name": "description", - * "type": "STRING", - * "isRequired": true + * isRequired: true, + * name: "description", + * type: "STRING" * }, * { - * "name": "price", - * "type": "DOUBLE", - * "isRequired": false + * isRequired: false, + * name: "price", + * type: "DOUBLE" * }, * { - * "name": "creation_time", - * "type": "TIMESTAMP", - * "isRequired": false + * isRequired: false, + * name: "creation_time", + * type: "TIMESTAMP" * } - * ] + * ], + * name: "MyDataset" * } * } * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class UpdateDataLakeDatasetCommand extends $Command .classBuilder< diff --git a/clients/client-supplychain/src/commands/UpdateInstanceCommand.ts b/clients/client-supplychain/src/commands/UpdateInstanceCommand.ts index 67c2f35e324cf..b6c7d324d6c47 100644 --- a/clients/client-supplychain/src/commands/UpdateInstanceCommand.ts +++ b/clients/client-supplychain/src/commands/UpdateInstanceCommand.ts @@ -90,35 +90,35 @@ export interface UpdateInstanceCommandOutput extends UpdateInstanceResponse, __M * @throws {@link SupplyChainServiceException} *

Base exception class for all service exceptions from SupplyChain service.

* - * @public + * * @example Successful UpdateInstance request * ```javascript * // * const input = { - * "instanceDescription": "updated example instance description", - * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793", - * "instanceName": "updated example instance name" + * instanceDescription: "updated example instance description", + * instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793", + * instanceName: "updated example instance name" * }; * const command = new UpdateInstanceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "instance": { - * "awsAccountId": "123456789012", - * "createdTime": 172615383136, - * "instanceDescription": "updated example instance description", - * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793", - * "instanceName": "updated example instance name", - * "kmsKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", - * "lastModifiedTime": 172615383136, - * "state": "Active", - * "versionNumber": 2 + * instance: { + * awsAccountId: "123456789012", + * createdTime: 172615383136, + * instanceDescription: "updated example instance description", + * instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793", + * instanceName: "updated example instance name", + * kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d", + * lastModifiedTime: 172615383136, + * state: "Active", + * versionNumber: 2.0 * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateInstanceCommand extends $Command .classBuilder< diff --git a/clients/client-support-app/src/commands/CreateSlackChannelConfigurationCommand.ts b/clients/client-support-app/src/commands/CreateSlackChannelConfigurationCommand.ts index 3dbb47aceb09b..17f045a5e01f5 100644 --- a/clients/client-support-app/src/commands/CreateSlackChannelConfigurationCommand.ts +++ b/clients/client-support-app/src/commands/CreateSlackChannelConfigurationCommand.ts @@ -128,6 +128,7 @@ export interface CreateSlackChannelConfigurationCommandOutput * @throws {@link SupportAppServiceException} *

Base exception class for all service exceptions from SupportApp service.

* + * * @public */ export class CreateSlackChannelConfigurationCommand extends $Command diff --git a/clients/client-support-app/src/commands/DeleteAccountAliasCommand.ts b/clients/client-support-app/src/commands/DeleteAccountAliasCommand.ts index 051fe3f2216cd..c0647f50edffd 100644 --- a/clients/client-support-app/src/commands/DeleteAccountAliasCommand.ts +++ b/clients/client-support-app/src/commands/DeleteAccountAliasCommand.ts @@ -62,6 +62,7 @@ export interface DeleteAccountAliasCommandOutput extends DeleteAccountAliasResul * @throws {@link SupportAppServiceException} *

Base exception class for all service exceptions from SupportApp service.

* + * * @public */ export class DeleteAccountAliasCommand extends $Command diff --git a/clients/client-support-app/src/commands/DeleteSlackChannelConfigurationCommand.ts b/clients/client-support-app/src/commands/DeleteSlackChannelConfigurationCommand.ts index 02274e4effe74..adb19a6deda1d 100644 --- a/clients/client-support-app/src/commands/DeleteSlackChannelConfigurationCommand.ts +++ b/clients/client-support-app/src/commands/DeleteSlackChannelConfigurationCommand.ts @@ -102,6 +102,7 @@ export interface DeleteSlackChannelConfigurationCommandOutput * @throws {@link SupportAppServiceException} *

Base exception class for all service exceptions from SupportApp service.

* + * * @public */ export class DeleteSlackChannelConfigurationCommand extends $Command diff --git a/clients/client-support-app/src/commands/DeleteSlackWorkspaceConfigurationCommand.ts b/clients/client-support-app/src/commands/DeleteSlackWorkspaceConfigurationCommand.ts index 3fa5319ad23cd..3bc967950fb25 100644 --- a/clients/client-support-app/src/commands/DeleteSlackWorkspaceConfigurationCommand.ts +++ b/clients/client-support-app/src/commands/DeleteSlackWorkspaceConfigurationCommand.ts @@ -101,6 +101,7 @@ export interface DeleteSlackWorkspaceConfigurationCommandOutput * @throws {@link SupportAppServiceException} *

Base exception class for all service exceptions from SupportApp service.

* + * * @public */ export class DeleteSlackWorkspaceConfigurationCommand extends $Command diff --git a/clients/client-support-app/src/commands/GetAccountAliasCommand.ts b/clients/client-support-app/src/commands/GetAccountAliasCommand.ts index 6f8469560b355..e0d9f6135730e 100644 --- a/clients/client-support-app/src/commands/GetAccountAliasCommand.ts +++ b/clients/client-support-app/src/commands/GetAccountAliasCommand.ts @@ -57,6 +57,7 @@ export interface GetAccountAliasCommandOutput extends GetAccountAliasResult, __M * @throws {@link SupportAppServiceException} *

Base exception class for all service exceptions from SupportApp service.

* + * * @public */ export class GetAccountAliasCommand extends $Command diff --git a/clients/client-support-app/src/commands/ListSlackChannelConfigurationsCommand.ts b/clients/client-support-app/src/commands/ListSlackChannelConfigurationsCommand.ts index 22c85694bdaa0..49e581a052713 100644 --- a/clients/client-support-app/src/commands/ListSlackChannelConfigurationsCommand.ts +++ b/clients/client-support-app/src/commands/ListSlackChannelConfigurationsCommand.ts @@ -78,6 +78,7 @@ export interface ListSlackChannelConfigurationsCommandOutput * @throws {@link SupportAppServiceException} *

Base exception class for all service exceptions from SupportApp service.

* + * * @public */ export class ListSlackChannelConfigurationsCommand extends $Command diff --git a/clients/client-support-app/src/commands/ListSlackWorkspaceConfigurationsCommand.ts b/clients/client-support-app/src/commands/ListSlackWorkspaceConfigurationsCommand.ts index 777fc476d1c3a..feb130da5f1fb 100644 --- a/clients/client-support-app/src/commands/ListSlackWorkspaceConfigurationsCommand.ts +++ b/clients/client-support-app/src/commands/ListSlackWorkspaceConfigurationsCommand.ts @@ -73,6 +73,7 @@ export interface ListSlackWorkspaceConfigurationsCommandOutput * @throws {@link SupportAppServiceException} *

Base exception class for all service exceptions from SupportApp service.

* + * * @public */ export class ListSlackWorkspaceConfigurationsCommand extends $Command diff --git a/clients/client-support-app/src/commands/PutAccountAliasCommand.ts b/clients/client-support-app/src/commands/PutAccountAliasCommand.ts index 5ce482d01b81c..2a876dac68857 100644 --- a/clients/client-support-app/src/commands/PutAccountAliasCommand.ts +++ b/clients/client-support-app/src/commands/PutAccountAliasCommand.ts @@ -64,6 +64,7 @@ export interface PutAccountAliasCommandOutput extends PutAccountAliasResult, __M * @throws {@link SupportAppServiceException} *

Base exception class for all service exceptions from SupportApp service.

* + * * @public */ export class PutAccountAliasCommand extends $Command diff --git a/clients/client-support-app/src/commands/RegisterSlackWorkspaceForOrganizationCommand.ts b/clients/client-support-app/src/commands/RegisterSlackWorkspaceForOrganizationCommand.ts index faa58e503dc76..1e16ef714276c 100644 --- a/clients/client-support-app/src/commands/RegisterSlackWorkspaceForOrganizationCommand.ts +++ b/clients/client-support-app/src/commands/RegisterSlackWorkspaceForOrganizationCommand.ts @@ -137,6 +137,7 @@ export interface RegisterSlackWorkspaceForOrganizationCommandOutput * @throws {@link SupportAppServiceException} *

Base exception class for all service exceptions from SupportApp service.

* + * * @public */ export class RegisterSlackWorkspaceForOrganizationCommand extends $Command diff --git a/clients/client-support-app/src/commands/UpdateSlackChannelConfigurationCommand.ts b/clients/client-support-app/src/commands/UpdateSlackChannelConfigurationCommand.ts index ac67bf9bd1e28..15aeb60870f3a 100644 --- a/clients/client-support-app/src/commands/UpdateSlackChannelConfigurationCommand.ts +++ b/clients/client-support-app/src/commands/UpdateSlackChannelConfigurationCommand.ts @@ -116,6 +116,7 @@ export interface UpdateSlackChannelConfigurationCommandOutput * @throws {@link SupportAppServiceException} *

Base exception class for all service exceptions from SupportApp service.

* + * * @public */ export class UpdateSlackChannelConfigurationCommand extends $Command diff --git a/clients/client-support/src/commands/AddAttachmentsToSetCommand.ts b/clients/client-support/src/commands/AddAttachmentsToSetCommand.ts index aff15bd893de0..308a189db4489 100644 --- a/clients/client-support/src/commands/AddAttachmentsToSetCommand.ts +++ b/clients/client-support/src/commands/AddAttachmentsToSetCommand.ts @@ -97,6 +97,7 @@ export interface AddAttachmentsToSetCommandOutput extends AddAttachmentsToSetRes * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class AddAttachmentsToSetCommand extends $Command diff --git a/clients/client-support/src/commands/AddCommunicationToCaseCommand.ts b/clients/client-support/src/commands/AddCommunicationToCaseCommand.ts index 605739d8365fe..5e44e8dda546b 100644 --- a/clients/client-support/src/commands/AddCommunicationToCaseCommand.ts +++ b/clients/client-support/src/commands/AddCommunicationToCaseCommand.ts @@ -91,6 +91,7 @@ export interface AddCommunicationToCaseCommandOutput extends AddCommunicationToC * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class AddCommunicationToCaseCommand extends $Command diff --git a/clients/client-support/src/commands/CreateCaseCommand.ts b/clients/client-support/src/commands/CreateCaseCommand.ts index d7399af675dc7..d501d3e0bacc4 100644 --- a/clients/client-support/src/commands/CreateCaseCommand.ts +++ b/clients/client-support/src/commands/CreateCaseCommand.ts @@ -110,6 +110,7 @@ export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataB * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class CreateCaseCommand extends $Command diff --git a/clients/client-support/src/commands/DescribeAttachmentCommand.ts b/clients/client-support/src/commands/DescribeAttachmentCommand.ts index d56071bab76b4..bd46a60db3737 100644 --- a/clients/client-support/src/commands/DescribeAttachmentCommand.ts +++ b/clients/client-support/src/commands/DescribeAttachmentCommand.ts @@ -86,6 +86,7 @@ export interface DescribeAttachmentCommandOutput extends DescribeAttachmentRespo * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class DescribeAttachmentCommand extends $Command diff --git a/clients/client-support/src/commands/DescribeCasesCommand.ts b/clients/client-support/src/commands/DescribeCasesCommand.ts index df013b97810c7..c43179308976e 100644 --- a/clients/client-support/src/commands/DescribeCasesCommand.ts +++ b/clients/client-support/src/commands/DescribeCasesCommand.ts @@ -135,6 +135,7 @@ export interface DescribeCasesCommandOutput extends DescribeCasesResponse, __Met * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class DescribeCasesCommand extends $Command diff --git a/clients/client-support/src/commands/DescribeCommunicationsCommand.ts b/clients/client-support/src/commands/DescribeCommunicationsCommand.ts index 87628576e83f6..868695e48f14b 100644 --- a/clients/client-support/src/commands/DescribeCommunicationsCommand.ts +++ b/clients/client-support/src/commands/DescribeCommunicationsCommand.ts @@ -102,6 +102,7 @@ export interface DescribeCommunicationsCommandOutput extends DescribeCommunicati * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class DescribeCommunicationsCommand extends $Command diff --git a/clients/client-support/src/commands/DescribeCreateCaseOptionsCommand.ts b/clients/client-support/src/commands/DescribeCreateCaseOptionsCommand.ts index 11dfa85eda169..14a121a7a9e43 100644 --- a/clients/client-support/src/commands/DescribeCreateCaseOptionsCommand.ts +++ b/clients/client-support/src/commands/DescribeCreateCaseOptionsCommand.ts @@ -100,6 +100,7 @@ export interface DescribeCreateCaseOptionsCommandOutput extends DescribeCreateCa * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class DescribeCreateCaseOptionsCommand extends $Command diff --git a/clients/client-support/src/commands/DescribeServicesCommand.ts b/clients/client-support/src/commands/DescribeServicesCommand.ts index 76a3180370e77..5f5f7abcd05a5 100644 --- a/clients/client-support/src/commands/DescribeServicesCommand.ts +++ b/clients/client-support/src/commands/DescribeServicesCommand.ts @@ -94,6 +94,7 @@ export interface DescribeServicesCommandOutput extends DescribeServicesResponse, * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class DescribeServicesCommand extends $Command diff --git a/clients/client-support/src/commands/DescribeSeverityLevelsCommand.ts b/clients/client-support/src/commands/DescribeSeverityLevelsCommand.ts index 1f7ed75381abf..8c61cfa6066dc 100644 --- a/clients/client-support/src/commands/DescribeSeverityLevelsCommand.ts +++ b/clients/client-support/src/commands/DescribeSeverityLevelsCommand.ts @@ -79,6 +79,7 @@ export interface DescribeSeverityLevelsCommandOutput extends DescribeSeverityLev * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class DescribeSeverityLevelsCommand extends $Command diff --git a/clients/client-support/src/commands/DescribeSupportedLanguagesCommand.ts b/clients/client-support/src/commands/DescribeSupportedLanguagesCommand.ts index 052aa763018dd..2df1337780b05 100644 --- a/clients/client-support/src/commands/DescribeSupportedLanguagesCommand.ts +++ b/clients/client-support/src/commands/DescribeSupportedLanguagesCommand.ts @@ -87,6 +87,7 @@ export interface DescribeSupportedLanguagesCommandOutput extends DescribeSupport * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class DescribeSupportedLanguagesCommand extends $Command diff --git a/clients/client-support/src/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.ts b/clients/client-support/src/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.ts index 468fb0ace13de..8e55c0ed64526 100644 --- a/clients/client-support/src/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.ts +++ b/clients/client-support/src/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.ts @@ -103,6 +103,7 @@ export interface DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class DescribeTrustedAdvisorCheckRefreshStatusesCommand extends $Command diff --git a/clients/client-support/src/commands/DescribeTrustedAdvisorCheckResultCommand.ts b/clients/client-support/src/commands/DescribeTrustedAdvisorCheckResultCommand.ts index 0b2b59d7342ec..d6a5f10768da9 100644 --- a/clients/client-support/src/commands/DescribeTrustedAdvisorCheckResultCommand.ts +++ b/clients/client-support/src/commands/DescribeTrustedAdvisorCheckResultCommand.ts @@ -157,6 +157,7 @@ export interface DescribeTrustedAdvisorCheckResultCommandOutput * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class DescribeTrustedAdvisorCheckResultCommand extends $Command diff --git a/clients/client-support/src/commands/DescribeTrustedAdvisorCheckSummariesCommand.ts b/clients/client-support/src/commands/DescribeTrustedAdvisorCheckSummariesCommand.ts index 4987a7ded957d..efd7f70dec96b 100644 --- a/clients/client-support/src/commands/DescribeTrustedAdvisorCheckSummariesCommand.ts +++ b/clients/client-support/src/commands/DescribeTrustedAdvisorCheckSummariesCommand.ts @@ -113,6 +113,7 @@ export interface DescribeTrustedAdvisorCheckSummariesCommandOutput * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class DescribeTrustedAdvisorCheckSummariesCommand extends $Command diff --git a/clients/client-support/src/commands/DescribeTrustedAdvisorChecksCommand.ts b/clients/client-support/src/commands/DescribeTrustedAdvisorChecksCommand.ts index 4deeb3a1ae177..5cfce0f4931ce 100644 --- a/clients/client-support/src/commands/DescribeTrustedAdvisorChecksCommand.ts +++ b/clients/client-support/src/commands/DescribeTrustedAdvisorChecksCommand.ts @@ -103,6 +103,7 @@ export interface DescribeTrustedAdvisorChecksCommandOutput * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class DescribeTrustedAdvisorChecksCommand extends $Command diff --git a/clients/client-support/src/commands/RefreshTrustedAdvisorCheckCommand.ts b/clients/client-support/src/commands/RefreshTrustedAdvisorCheckCommand.ts index f3ab7a94614ff..9697c94b433a7 100644 --- a/clients/client-support/src/commands/RefreshTrustedAdvisorCheckCommand.ts +++ b/clients/client-support/src/commands/RefreshTrustedAdvisorCheckCommand.ts @@ -87,6 +87,7 @@ export interface RefreshTrustedAdvisorCheckCommandOutput extends RefreshTrustedA * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class RefreshTrustedAdvisorCheckCommand extends $Command diff --git a/clients/client-support/src/commands/ResolveCaseCommand.ts b/clients/client-support/src/commands/ResolveCaseCommand.ts index 3ef526f591548..6f2eabea3e2bb 100644 --- a/clients/client-support/src/commands/ResolveCaseCommand.ts +++ b/clients/client-support/src/commands/ResolveCaseCommand.ts @@ -77,6 +77,7 @@ export interface ResolveCaseCommandOutput extends ResolveCaseResponse, __Metadat * @throws {@link SupportServiceException} *

Base exception class for all service exceptions from Support service.

* + * * @public */ export class ResolveCaseCommand extends $Command diff --git a/clients/client-swf/src/commands/CountClosedWorkflowExecutionsCommand.ts b/clients/client-swf/src/commands/CountClosedWorkflowExecutionsCommand.ts index be064a2d6af22..804663ae32306 100644 --- a/clients/client-swf/src/commands/CountClosedWorkflowExecutionsCommand.ts +++ b/clients/client-swf/src/commands/CountClosedWorkflowExecutionsCommand.ts @@ -132,6 +132,7 @@ export interface CountClosedWorkflowExecutionsCommandOutput extends WorkflowExec * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class CountClosedWorkflowExecutionsCommand extends $Command diff --git a/clients/client-swf/src/commands/CountOpenWorkflowExecutionsCommand.ts b/clients/client-swf/src/commands/CountOpenWorkflowExecutionsCommand.ts index 0f981a6c1cdc5..3e88c9923caaf 100644 --- a/clients/client-swf/src/commands/CountOpenWorkflowExecutionsCommand.ts +++ b/clients/client-swf/src/commands/CountOpenWorkflowExecutionsCommand.ts @@ -122,6 +122,7 @@ export interface CountOpenWorkflowExecutionsCommandOutput extends WorkflowExecut * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class CountOpenWorkflowExecutionsCommand extends $Command diff --git a/clients/client-swf/src/commands/CountPendingActivityTasksCommand.ts b/clients/client-swf/src/commands/CountPendingActivityTasksCommand.ts index e39c2a2e88f96..294f3a4d95bd5 100644 --- a/clients/client-swf/src/commands/CountPendingActivityTasksCommand.ts +++ b/clients/client-swf/src/commands/CountPendingActivityTasksCommand.ts @@ -92,6 +92,7 @@ export interface CountPendingActivityTasksCommandOutput extends PendingTaskCount * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class CountPendingActivityTasksCommand extends $Command diff --git a/clients/client-swf/src/commands/CountPendingDecisionTasksCommand.ts b/clients/client-swf/src/commands/CountPendingDecisionTasksCommand.ts index ec944d133955c..7b0b116c5a63b 100644 --- a/clients/client-swf/src/commands/CountPendingDecisionTasksCommand.ts +++ b/clients/client-swf/src/commands/CountPendingDecisionTasksCommand.ts @@ -92,6 +92,7 @@ export interface CountPendingDecisionTasksCommandOutput extends PendingTaskCount * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class CountPendingDecisionTasksCommand extends $Command diff --git a/clients/client-swf/src/commands/DeleteActivityTypeCommand.ts b/clients/client-swf/src/commands/DeleteActivityTypeCommand.ts index 9710f7f20dee1..924a23383f15e 100644 --- a/clients/client-swf/src/commands/DeleteActivityTypeCommand.ts +++ b/clients/client-swf/src/commands/DeleteActivityTypeCommand.ts @@ -105,6 +105,7 @@ export interface DeleteActivityTypeCommandOutput extends __MetadataBearer {} * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class DeleteActivityTypeCommand extends $Command diff --git a/clients/client-swf/src/commands/DeleteWorkflowTypeCommand.ts b/clients/client-swf/src/commands/DeleteWorkflowTypeCommand.ts index a2948b3c5ae56..b764b05b3c3a4 100644 --- a/clients/client-swf/src/commands/DeleteWorkflowTypeCommand.ts +++ b/clients/client-swf/src/commands/DeleteWorkflowTypeCommand.ts @@ -106,6 +106,7 @@ export interface DeleteWorkflowTypeCommandOutput extends __MetadataBearer {} * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class DeleteWorkflowTypeCommand extends $Command diff --git a/clients/client-swf/src/commands/DeprecateActivityTypeCommand.ts b/clients/client-swf/src/commands/DeprecateActivityTypeCommand.ts index 75d8f3268b547..fb04286652f94 100644 --- a/clients/client-swf/src/commands/DeprecateActivityTypeCommand.ts +++ b/clients/client-swf/src/commands/DeprecateActivityTypeCommand.ts @@ -104,6 +104,7 @@ export interface DeprecateActivityTypeCommandOutput extends __MetadataBearer {} * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class DeprecateActivityTypeCommand extends $Command diff --git a/clients/client-swf/src/commands/DeprecateDomainCommand.ts b/clients/client-swf/src/commands/DeprecateDomainCommand.ts index c2d26ede3b283..943f8b0bb2d13 100644 --- a/clients/client-swf/src/commands/DeprecateDomainCommand.ts +++ b/clients/client-swf/src/commands/DeprecateDomainCommand.ts @@ -93,6 +93,7 @@ export interface DeprecateDomainCommandOutput extends __MetadataBearer {} * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class DeprecateDomainCommand extends $Command diff --git a/clients/client-swf/src/commands/DeprecateWorkflowTypeCommand.ts b/clients/client-swf/src/commands/DeprecateWorkflowTypeCommand.ts index 33ea3c9be97e0..8350d9d98df4a 100644 --- a/clients/client-swf/src/commands/DeprecateWorkflowTypeCommand.ts +++ b/clients/client-swf/src/commands/DeprecateWorkflowTypeCommand.ts @@ -109,6 +109,7 @@ export interface DeprecateWorkflowTypeCommandOutput extends __MetadataBearer {} * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class DeprecateWorkflowTypeCommand extends $Command diff --git a/clients/client-swf/src/commands/DescribeActivityTypeCommand.ts b/clients/client-swf/src/commands/DescribeActivityTypeCommand.ts index bca9af53c4f8c..5514bf42b5a48 100644 --- a/clients/client-swf/src/commands/DescribeActivityTypeCommand.ts +++ b/clients/client-swf/src/commands/DescribeActivityTypeCommand.ts @@ -122,6 +122,7 @@ export interface DescribeActivityTypeCommandOutput extends ActivityTypeDetail, _ * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class DescribeActivityTypeCommand extends $Command diff --git a/clients/client-swf/src/commands/DescribeDomainCommand.ts b/clients/client-swf/src/commands/DescribeDomainCommand.ts index b0c2b44b51b27..5ab3611dc529f 100644 --- a/clients/client-swf/src/commands/DescribeDomainCommand.ts +++ b/clients/client-swf/src/commands/DescribeDomainCommand.ts @@ -93,6 +93,7 @@ export interface DescribeDomainCommandOutput extends DomainDetail, __MetadataBea * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class DescribeDomainCommand extends $Command diff --git a/clients/client-swf/src/commands/DescribeWorkflowExecutionCommand.ts b/clients/client-swf/src/commands/DescribeWorkflowExecutionCommand.ts index e8896c3d3373e..3018fcefb23a1 100644 --- a/clients/client-swf/src/commands/DescribeWorkflowExecutionCommand.ts +++ b/clients/client-swf/src/commands/DescribeWorkflowExecutionCommand.ts @@ -133,6 +133,7 @@ export interface DescribeWorkflowExecutionCommandOutput extends WorkflowExecutio * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class DescribeWorkflowExecutionCommand extends $Command diff --git a/clients/client-swf/src/commands/DescribeWorkflowTypeCommand.ts b/clients/client-swf/src/commands/DescribeWorkflowTypeCommand.ts index 46c39cfe325cc..a9d2e0bbf1c8d 100644 --- a/clients/client-swf/src/commands/DescribeWorkflowTypeCommand.ts +++ b/clients/client-swf/src/commands/DescribeWorkflowTypeCommand.ts @@ -122,6 +122,7 @@ export interface DescribeWorkflowTypeCommandOutput extends WorkflowTypeDetail, _ * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class DescribeWorkflowTypeCommand extends $Command diff --git a/clients/client-swf/src/commands/GetWorkflowExecutionHistoryCommand.ts b/clients/client-swf/src/commands/GetWorkflowExecutionHistoryCommand.ts index cada3b792e2e7..60ee3ff22fb2c 100644 --- a/clients/client-swf/src/commands/GetWorkflowExecutionHistoryCommand.ts +++ b/clients/client-swf/src/commands/GetWorkflowExecutionHistoryCommand.ts @@ -483,6 +483,7 @@ export interface GetWorkflowExecutionHistoryCommandOutput extends History, __Met * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class GetWorkflowExecutionHistoryCommand extends $Command diff --git a/clients/client-swf/src/commands/ListActivityTypesCommand.ts b/clients/client-swf/src/commands/ListActivityTypesCommand.ts index 5d6c1ee8a4f09..c47155d5f323a 100644 --- a/clients/client-swf/src/commands/ListActivityTypesCommand.ts +++ b/clients/client-swf/src/commands/ListActivityTypesCommand.ts @@ -105,6 +105,7 @@ export interface ListActivityTypesCommandOutput extends ActivityTypeInfos, __Met * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class ListActivityTypesCommand extends $Command diff --git a/clients/client-swf/src/commands/ListClosedWorkflowExecutionsCommand.ts b/clients/client-swf/src/commands/ListClosedWorkflowExecutionsCommand.ts index 6efe5bad8867b..c20306df27d78 100644 --- a/clients/client-swf/src/commands/ListClosedWorkflowExecutionsCommand.ts +++ b/clients/client-swf/src/commands/ListClosedWorkflowExecutionsCommand.ts @@ -159,6 +159,7 @@ export interface ListClosedWorkflowExecutionsCommandOutput extends WorkflowExecu * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class ListClosedWorkflowExecutionsCommand extends $Command diff --git a/clients/client-swf/src/commands/ListDomainsCommand.ts b/clients/client-swf/src/commands/ListDomainsCommand.ts index 60a20561db967..baee0fd2be913 100644 --- a/clients/client-swf/src/commands/ListDomainsCommand.ts +++ b/clients/client-swf/src/commands/ListDomainsCommand.ts @@ -100,6 +100,7 @@ export interface ListDomainsCommandOutput extends DomainInfos, __MetadataBearer * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class ListDomainsCommand extends $Command diff --git a/clients/client-swf/src/commands/ListOpenWorkflowExecutionsCommand.ts b/clients/client-swf/src/commands/ListOpenWorkflowExecutionsCommand.ts index 6020e6f574da6..0d0672647c5a6 100644 --- a/clients/client-swf/src/commands/ListOpenWorkflowExecutionsCommand.ts +++ b/clients/client-swf/src/commands/ListOpenWorkflowExecutionsCommand.ts @@ -149,6 +149,7 @@ export interface ListOpenWorkflowExecutionsCommandOutput extends WorkflowExecuti * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class ListOpenWorkflowExecutionsCommand extends $Command diff --git a/clients/client-swf/src/commands/ListTagsForResourceCommand.ts b/clients/client-swf/src/commands/ListTagsForResourceCommand.ts index d926f394c49f7..4172a145ee7a4 100644 --- a/clients/client-swf/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-swf/src/commands/ListTagsForResourceCommand.ts @@ -69,6 +69,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-swf/src/commands/ListWorkflowTypesCommand.ts b/clients/client-swf/src/commands/ListWorkflowTypesCommand.ts index 856737599aed7..1b03abbc06746 100644 --- a/clients/client-swf/src/commands/ListWorkflowTypesCommand.ts +++ b/clients/client-swf/src/commands/ListWorkflowTypesCommand.ts @@ -102,6 +102,7 @@ export interface ListWorkflowTypesCommandOutput extends WorkflowTypeInfos, __Met * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class ListWorkflowTypesCommand extends $Command diff --git a/clients/client-swf/src/commands/PollForActivityTaskCommand.ts b/clients/client-swf/src/commands/PollForActivityTaskCommand.ts index 1dfa2e86333a6..4b22c55cadc6e 100644 --- a/clients/client-swf/src/commands/PollForActivityTaskCommand.ts +++ b/clients/client-swf/src/commands/PollForActivityTaskCommand.ts @@ -114,6 +114,7 @@ export interface PollForActivityTaskCommandOutput extends ActivityTask, __Metada * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class PollForActivityTaskCommand extends $Command diff --git a/clients/client-swf/src/commands/PollForDecisionTaskCommand.ts b/clients/client-swf/src/commands/PollForDecisionTaskCommand.ts index 0a0416a997ef4..c74572fd2132c 100644 --- a/clients/client-swf/src/commands/PollForDecisionTaskCommand.ts +++ b/clients/client-swf/src/commands/PollForDecisionTaskCommand.ts @@ -510,6 +510,7 @@ export interface PollForDecisionTaskCommandOutput extends DecisionTask, __Metada * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class PollForDecisionTaskCommand extends $Command diff --git a/clients/client-swf/src/commands/RecordActivityTaskHeartbeatCommand.ts b/clients/client-swf/src/commands/RecordActivityTaskHeartbeatCommand.ts index a13a6f177695b..21b1bb9b3a273 100644 --- a/clients/client-swf/src/commands/RecordActivityTaskHeartbeatCommand.ts +++ b/clients/client-swf/src/commands/RecordActivityTaskHeartbeatCommand.ts @@ -109,6 +109,7 @@ export interface RecordActivityTaskHeartbeatCommandOutput extends ActivityTaskSt * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class RecordActivityTaskHeartbeatCommand extends $Command diff --git a/clients/client-swf/src/commands/RegisterActivityTypeCommand.ts b/clients/client-swf/src/commands/RegisterActivityTypeCommand.ts index aafa3607f36de..7ee3be4c53cbc 100644 --- a/clients/client-swf/src/commands/RegisterActivityTypeCommand.ts +++ b/clients/client-swf/src/commands/RegisterActivityTypeCommand.ts @@ -122,6 +122,7 @@ export interface RegisterActivityTypeCommandOutput extends __MetadataBearer {} * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class RegisterActivityTypeCommand extends $Command diff --git a/clients/client-swf/src/commands/RegisterDomainCommand.ts b/clients/client-swf/src/commands/RegisterDomainCommand.ts index fca8ae7638674..02630c238ca03 100644 --- a/clients/client-swf/src/commands/RegisterDomainCommand.ts +++ b/clients/client-swf/src/commands/RegisterDomainCommand.ts @@ -96,6 +96,7 @@ export interface RegisterDomainCommandOutput extends __MetadataBearer {} * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class RegisterDomainCommand extends $Command diff --git a/clients/client-swf/src/commands/RegisterWorkflowTypeCommand.ts b/clients/client-swf/src/commands/RegisterWorkflowTypeCommand.ts index 3998c2a2a1056..ee412c0c110ee 100644 --- a/clients/client-swf/src/commands/RegisterWorkflowTypeCommand.ts +++ b/clients/client-swf/src/commands/RegisterWorkflowTypeCommand.ts @@ -123,6 +123,7 @@ export interface RegisterWorkflowTypeCommandOutput extends __MetadataBearer {} * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class RegisterWorkflowTypeCommand extends $Command diff --git a/clients/client-swf/src/commands/RequestCancelWorkflowExecutionCommand.ts b/clients/client-swf/src/commands/RequestCancelWorkflowExecutionCommand.ts index 2dacaadbe9b41..6b49f602bd2c9 100644 --- a/clients/client-swf/src/commands/RequestCancelWorkflowExecutionCommand.ts +++ b/clients/client-swf/src/commands/RequestCancelWorkflowExecutionCommand.ts @@ -100,6 +100,7 @@ export interface RequestCancelWorkflowExecutionCommandOutput extends __MetadataB * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class RequestCancelWorkflowExecutionCommand extends $Command diff --git a/clients/client-swf/src/commands/RespondActivityTaskCanceledCommand.ts b/clients/client-swf/src/commands/RespondActivityTaskCanceledCommand.ts index 75f58a2f662d4..cbb0e1969e250 100644 --- a/clients/client-swf/src/commands/RespondActivityTaskCanceledCommand.ts +++ b/clients/client-swf/src/commands/RespondActivityTaskCanceledCommand.ts @@ -97,6 +97,7 @@ export interface RespondActivityTaskCanceledCommandOutput extends __MetadataBear * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class RespondActivityTaskCanceledCommand extends $Command diff --git a/clients/client-swf/src/commands/RespondActivityTaskCompletedCommand.ts b/clients/client-swf/src/commands/RespondActivityTaskCompletedCommand.ts index e4e72b841d599..0b21c24a7edbe 100644 --- a/clients/client-swf/src/commands/RespondActivityTaskCompletedCommand.ts +++ b/clients/client-swf/src/commands/RespondActivityTaskCompletedCommand.ts @@ -99,6 +99,7 @@ export interface RespondActivityTaskCompletedCommandOutput extends __MetadataBea * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class RespondActivityTaskCompletedCommand extends $Command diff --git a/clients/client-swf/src/commands/RespondActivityTaskFailedCommand.ts b/clients/client-swf/src/commands/RespondActivityTaskFailedCommand.ts index 7c8298fb97e1c..7c5cf18bb8ef1 100644 --- a/clients/client-swf/src/commands/RespondActivityTaskFailedCommand.ts +++ b/clients/client-swf/src/commands/RespondActivityTaskFailedCommand.ts @@ -91,6 +91,7 @@ export interface RespondActivityTaskFailedCommandOutput extends __MetadataBearer * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class RespondActivityTaskFailedCommand extends $Command diff --git a/clients/client-swf/src/commands/RespondDecisionTaskCompletedCommand.ts b/clients/client-swf/src/commands/RespondDecisionTaskCompletedCommand.ts index 14e01b238b95b..c325264c75c16 100644 --- a/clients/client-swf/src/commands/RespondDecisionTaskCompletedCommand.ts +++ b/clients/client-swf/src/commands/RespondDecisionTaskCompletedCommand.ts @@ -184,6 +184,7 @@ export interface RespondDecisionTaskCompletedCommandOutput extends __MetadataBea * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class RespondDecisionTaskCompletedCommand extends $Command diff --git a/clients/client-swf/src/commands/SignalWorkflowExecutionCommand.ts b/clients/client-swf/src/commands/SignalWorkflowExecutionCommand.ts index 657cc4563bda0..966f5ce0215ea 100644 --- a/clients/client-swf/src/commands/SignalWorkflowExecutionCommand.ts +++ b/clients/client-swf/src/commands/SignalWorkflowExecutionCommand.ts @@ -98,6 +98,7 @@ export interface SignalWorkflowExecutionCommandOutput extends __MetadataBearer { * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class SignalWorkflowExecutionCommand extends $Command diff --git a/clients/client-swf/src/commands/StartWorkflowExecutionCommand.ts b/clients/client-swf/src/commands/StartWorkflowExecutionCommand.ts index 23699590e8c0e..e79d12e1a9ad7 100644 --- a/clients/client-swf/src/commands/StartWorkflowExecutionCommand.ts +++ b/clients/client-swf/src/commands/StartWorkflowExecutionCommand.ts @@ -164,6 +164,7 @@ export interface StartWorkflowExecutionCommandOutput extends Run, __MetadataBear * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class StartWorkflowExecutionCommand extends $Command diff --git a/clients/client-swf/src/commands/TagResourceCommand.ts b/clients/client-swf/src/commands/TagResourceCommand.ts index 8f8db012e4f69..bfe89ebb3d087 100644 --- a/clients/client-swf/src/commands/TagResourceCommand.ts +++ b/clients/client-swf/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-swf/src/commands/TerminateWorkflowExecutionCommand.ts b/clients/client-swf/src/commands/TerminateWorkflowExecutionCommand.ts index 4fecca9516849..7f667d1c0c2ee 100644 --- a/clients/client-swf/src/commands/TerminateWorkflowExecutionCommand.ts +++ b/clients/client-swf/src/commands/TerminateWorkflowExecutionCommand.ts @@ -103,6 +103,7 @@ export interface TerminateWorkflowExecutionCommandOutput extends __MetadataBeare * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class TerminateWorkflowExecutionCommand extends $Command diff --git a/clients/client-swf/src/commands/UndeprecateActivityTypeCommand.ts b/clients/client-swf/src/commands/UndeprecateActivityTypeCommand.ts index af045414f697c..812103e92af54 100644 --- a/clients/client-swf/src/commands/UndeprecateActivityTypeCommand.ts +++ b/clients/client-swf/src/commands/UndeprecateActivityTypeCommand.ts @@ -107,6 +107,7 @@ export interface UndeprecateActivityTypeCommandOutput extends __MetadataBearer { * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class UndeprecateActivityTypeCommand extends $Command diff --git a/clients/client-swf/src/commands/UndeprecateDomainCommand.ts b/clients/client-swf/src/commands/UndeprecateDomainCommand.ts index 7247b66e98599..99e184c441ba8 100644 --- a/clients/client-swf/src/commands/UndeprecateDomainCommand.ts +++ b/clients/client-swf/src/commands/UndeprecateDomainCommand.ts @@ -90,6 +90,7 @@ export interface UndeprecateDomainCommandOutput extends __MetadataBearer {} * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class UndeprecateDomainCommand extends $Command diff --git a/clients/client-swf/src/commands/UndeprecateWorkflowTypeCommand.ts b/clients/client-swf/src/commands/UndeprecateWorkflowTypeCommand.ts index a2b5e17bf833e..c6841e19ace18 100644 --- a/clients/client-swf/src/commands/UndeprecateWorkflowTypeCommand.ts +++ b/clients/client-swf/src/commands/UndeprecateWorkflowTypeCommand.ts @@ -107,6 +107,7 @@ export interface UndeprecateWorkflowTypeCommandOutput extends __MetadataBearer { * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class UndeprecateWorkflowTypeCommand extends $Command diff --git a/clients/client-swf/src/commands/UntagResourceCommand.ts b/clients/client-swf/src/commands/UntagResourceCommand.ts index bbf57b89f1bad..234158ddb8f3e 100644 --- a/clients/client-swf/src/commands/UntagResourceCommand.ts +++ b/clients/client-swf/src/commands/UntagResourceCommand.ts @@ -65,6 +65,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link SWFServiceException} *

Base exception class for all service exceptions from SWF service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-synthetics/src/commands/AssociateResourceCommand.ts b/clients/client-synthetics/src/commands/AssociateResourceCommand.ts index e618ff1e42850..8d3cd1387304b 100644 --- a/clients/client-synthetics/src/commands/AssociateResourceCommand.ts +++ b/clients/client-synthetics/src/commands/AssociateResourceCommand.ts @@ -72,6 +72,7 @@ export interface AssociateResourceCommandOutput extends AssociateResourceRespons * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class AssociateResourceCommand extends $Command diff --git a/clients/client-synthetics/src/commands/CreateCanaryCommand.ts b/clients/client-synthetics/src/commands/CreateCanaryCommand.ts index 61a6efdd6d861..180d7d0573fa7 100644 --- a/clients/client-synthetics/src/commands/CreateCanaryCommand.ts +++ b/clients/client-synthetics/src/commands/CreateCanaryCommand.ts @@ -187,6 +187,7 @@ export interface CreateCanaryCommandOutput extends CreateCanaryResponse, __Metad * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class CreateCanaryCommand extends $Command diff --git a/clients/client-synthetics/src/commands/CreateGroupCommand.ts b/clients/client-synthetics/src/commands/CreateGroupCommand.ts index 8dd1144a861a7..7c14d53479c0b 100644 --- a/clients/client-synthetics/src/commands/CreateGroupCommand.ts +++ b/clients/client-synthetics/src/commands/CreateGroupCommand.ts @@ -91,6 +91,7 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class CreateGroupCommand extends $Command diff --git a/clients/client-synthetics/src/commands/DeleteCanaryCommand.ts b/clients/client-synthetics/src/commands/DeleteCanaryCommand.ts index de28154e9ae17..e6e81feeffd77 100644 --- a/clients/client-synthetics/src/commands/DeleteCanaryCommand.ts +++ b/clients/client-synthetics/src/commands/DeleteCanaryCommand.ts @@ -100,6 +100,7 @@ export interface DeleteCanaryCommandOutput extends DeleteCanaryResponse, __Metad * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class DeleteCanaryCommand extends $Command diff --git a/clients/client-synthetics/src/commands/DeleteGroupCommand.ts b/clients/client-synthetics/src/commands/DeleteGroupCommand.ts index f45244ccee6fc..858647f9d9892 100644 --- a/clients/client-synthetics/src/commands/DeleteGroupCommand.ts +++ b/clients/client-synthetics/src/commands/DeleteGroupCommand.ts @@ -69,6 +69,7 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __Metadat * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class DeleteGroupCommand extends $Command diff --git a/clients/client-synthetics/src/commands/DescribeCanariesCommand.ts b/clients/client-synthetics/src/commands/DescribeCanariesCommand.ts index b33e94db31a77..bc4df3e918412 100644 --- a/clients/client-synthetics/src/commands/DescribeCanariesCommand.ts +++ b/clients/client-synthetics/src/commands/DescribeCanariesCommand.ts @@ -141,6 +141,7 @@ export interface DescribeCanariesCommandOutput extends DescribeCanariesResponse, * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class DescribeCanariesCommand extends $Command diff --git a/clients/client-synthetics/src/commands/DescribeCanariesLastRunCommand.ts b/clients/client-synthetics/src/commands/DescribeCanariesLastRunCommand.ts index 9f9e2b08fba06..a2bfbcc89aedb 100644 --- a/clients/client-synthetics/src/commands/DescribeCanariesLastRunCommand.ts +++ b/clients/client-synthetics/src/commands/DescribeCanariesLastRunCommand.ts @@ -92,6 +92,7 @@ export interface DescribeCanariesLastRunCommandOutput extends DescribeCanariesLa * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class DescribeCanariesLastRunCommand extends $Command diff --git a/clients/client-synthetics/src/commands/DescribeRuntimeVersionsCommand.ts b/clients/client-synthetics/src/commands/DescribeRuntimeVersionsCommand.ts index 3c2e0f3ca18b0..39c2ae2341630 100644 --- a/clients/client-synthetics/src/commands/DescribeRuntimeVersionsCommand.ts +++ b/clients/client-synthetics/src/commands/DescribeRuntimeVersionsCommand.ts @@ -72,6 +72,7 @@ export interface DescribeRuntimeVersionsCommandOutput extends DescribeRuntimeVer * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class DescribeRuntimeVersionsCommand extends $Command diff --git a/clients/client-synthetics/src/commands/DisassociateResourceCommand.ts b/clients/client-synthetics/src/commands/DisassociateResourceCommand.ts index 98418409c51f4..07f0c638da143 100644 --- a/clients/client-synthetics/src/commands/DisassociateResourceCommand.ts +++ b/clients/client-synthetics/src/commands/DisassociateResourceCommand.ts @@ -66,6 +66,7 @@ export interface DisassociateResourceCommandOutput extends DisassociateResourceR * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class DisassociateResourceCommand extends $Command diff --git a/clients/client-synthetics/src/commands/GetCanaryCommand.ts b/clients/client-synthetics/src/commands/GetCanaryCommand.ts index 5435c7730f7db..e3faf7f117a21 100644 --- a/clients/client-synthetics/src/commands/GetCanaryCommand.ts +++ b/clients/client-synthetics/src/commands/GetCanaryCommand.ts @@ -127,6 +127,7 @@ export interface GetCanaryCommandOutput extends GetCanaryResponse, __MetadataBea * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class GetCanaryCommand extends $Command diff --git a/clients/client-synthetics/src/commands/GetCanaryRunsCommand.ts b/clients/client-synthetics/src/commands/GetCanaryRunsCommand.ts index 04282b3f69d3d..6d500cd975c56 100644 --- a/clients/client-synthetics/src/commands/GetCanaryRunsCommand.ts +++ b/clients/client-synthetics/src/commands/GetCanaryRunsCommand.ts @@ -82,6 +82,7 @@ export interface GetCanaryRunsCommandOutput extends GetCanaryRunsResponse, __Met * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class GetCanaryRunsCommand extends $Command diff --git a/clients/client-synthetics/src/commands/GetGroupCommand.ts b/clients/client-synthetics/src/commands/GetGroupCommand.ts index 0eea122c9241b..05110df771d14 100644 --- a/clients/client-synthetics/src/commands/GetGroupCommand.ts +++ b/clients/client-synthetics/src/commands/GetGroupCommand.ts @@ -77,6 +77,7 @@ export interface GetGroupCommandOutput extends GetGroupResponse, __MetadataBeare * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class GetGroupCommand extends $Command diff --git a/clients/client-synthetics/src/commands/ListAssociatedGroupsCommand.ts b/clients/client-synthetics/src/commands/ListAssociatedGroupsCommand.ts index 865cedc32eba0..f82188c030e38 100644 --- a/clients/client-synthetics/src/commands/ListAssociatedGroupsCommand.ts +++ b/clients/client-synthetics/src/commands/ListAssociatedGroupsCommand.ts @@ -74,6 +74,7 @@ export interface ListAssociatedGroupsCommandOutput extends ListAssociatedGroupsR * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class ListAssociatedGroupsCommand extends $Command diff --git a/clients/client-synthetics/src/commands/ListGroupResourcesCommand.ts b/clients/client-synthetics/src/commands/ListGroupResourcesCommand.ts index c315157bd9fcf..5c638631964dd 100644 --- a/clients/client-synthetics/src/commands/ListGroupResourcesCommand.ts +++ b/clients/client-synthetics/src/commands/ListGroupResourcesCommand.ts @@ -72,6 +72,7 @@ export interface ListGroupResourcesCommandOutput extends ListGroupResourcesRespo * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class ListGroupResourcesCommand extends $Command diff --git a/clients/client-synthetics/src/commands/ListGroupsCommand.ts b/clients/client-synthetics/src/commands/ListGroupsCommand.ts index 0874a70eefbb2..b3f3cb59ef971 100644 --- a/clients/client-synthetics/src/commands/ListGroupsCommand.ts +++ b/clients/client-synthetics/src/commands/ListGroupsCommand.ts @@ -70,6 +70,7 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class ListGroupsCommand extends $Command diff --git a/clients/client-synthetics/src/commands/ListTagsForResourceCommand.ts b/clients/client-synthetics/src/commands/ListTagsForResourceCommand.ts index 53f5673f771f4..266cc6d2824e3 100644 --- a/clients/client-synthetics/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-synthetics/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-synthetics/src/commands/StartCanaryCommand.ts b/clients/client-synthetics/src/commands/StartCanaryCommand.ts index 5c0c273003d90..acd534a9725d4 100644 --- a/clients/client-synthetics/src/commands/StartCanaryCommand.ts +++ b/clients/client-synthetics/src/commands/StartCanaryCommand.ts @@ -67,6 +67,7 @@ export interface StartCanaryCommandOutput extends StartCanaryResponse, __Metadat * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class StartCanaryCommand extends $Command diff --git a/clients/client-synthetics/src/commands/StopCanaryCommand.ts b/clients/client-synthetics/src/commands/StopCanaryCommand.ts index 65a1fa8560cbd..2af5a450169c3 100644 --- a/clients/client-synthetics/src/commands/StopCanaryCommand.ts +++ b/clients/client-synthetics/src/commands/StopCanaryCommand.ts @@ -69,6 +69,7 @@ export interface StopCanaryCommandOutput extends StopCanaryResponse, __MetadataB * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class StopCanaryCommand extends $Command diff --git a/clients/client-synthetics/src/commands/TagResourceCommand.ts b/clients/client-synthetics/src/commands/TagResourceCommand.ts index e6c40ef59e519..46777c11ebfdf 100644 --- a/clients/client-synthetics/src/commands/TagResourceCommand.ts +++ b/clients/client-synthetics/src/commands/TagResourceCommand.ts @@ -82,6 +82,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-synthetics/src/commands/UntagResourceCommand.ts b/clients/client-synthetics/src/commands/UntagResourceCommand.ts index 9863bb895177e..a70657a64eb50 100644 --- a/clients/client-synthetics/src/commands/UntagResourceCommand.ts +++ b/clients/client-synthetics/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-synthetics/src/commands/UpdateCanaryCommand.ts b/clients/client-synthetics/src/commands/UpdateCanaryCommand.ts index 31ad1211e236c..c11074a38c59b 100644 --- a/clients/client-synthetics/src/commands/UpdateCanaryCommand.ts +++ b/clients/client-synthetics/src/commands/UpdateCanaryCommand.ts @@ -123,6 +123,7 @@ export interface UpdateCanaryCommandOutput extends UpdateCanaryResponse, __Metad * @throws {@link SyntheticsServiceException} *

Base exception class for all service exceptions from Synthetics service.

* + * * @public */ export class UpdateCanaryCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/BatchDeleteTaxRegistrationCommand.ts b/clients/client-taxsettings/src/commands/BatchDeleteTaxRegistrationCommand.ts index db3e4e59d86b2..badb6c84f3c32 100644 --- a/clients/client-taxsettings/src/commands/BatchDeleteTaxRegistrationCommand.ts +++ b/clients/client-taxsettings/src/commands/BatchDeleteTaxRegistrationCommand.ts @@ -81,6 +81,7 @@ export interface BatchDeleteTaxRegistrationCommandOutput extends BatchDeleteTaxR * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class BatchDeleteTaxRegistrationCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/BatchGetTaxExemptionsCommand.ts b/clients/client-taxsettings/src/commands/BatchGetTaxExemptionsCommand.ts index 2b66bd62a2faf..1a37490c4d55e 100644 --- a/clients/client-taxsettings/src/commands/BatchGetTaxExemptionsCommand.ts +++ b/clients/client-taxsettings/src/commands/BatchGetTaxExemptionsCommand.ts @@ -99,6 +99,7 @@ export interface BatchGetTaxExemptionsCommandOutput extends BatchGetTaxExemption * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class BatchGetTaxExemptionsCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/BatchPutTaxRegistrationCommand.ts b/clients/client-taxsettings/src/commands/BatchPutTaxRegistrationCommand.ts index b87cdcaa8f4ba..05d41c855f71f 100644 --- a/clients/client-taxsettings/src/commands/BatchPutTaxRegistrationCommand.ts +++ b/clients/client-taxsettings/src/commands/BatchPutTaxRegistrationCommand.ts @@ -367,6 +367,7 @@ export interface BatchPutTaxRegistrationCommandOutput extends BatchPutTaxRegistr * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class BatchPutTaxRegistrationCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/DeleteSupplementalTaxRegistrationCommand.ts b/clients/client-taxsettings/src/commands/DeleteSupplementalTaxRegistrationCommand.ts index 639405be64ea0..626f4c7c27945 100644 --- a/clients/client-taxsettings/src/commands/DeleteSupplementalTaxRegistrationCommand.ts +++ b/clients/client-taxsettings/src/commands/DeleteSupplementalTaxRegistrationCommand.ts @@ -76,6 +76,7 @@ export interface DeleteSupplementalTaxRegistrationCommandOutput * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class DeleteSupplementalTaxRegistrationCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/DeleteTaxRegistrationCommand.ts b/clients/client-taxsettings/src/commands/DeleteTaxRegistrationCommand.ts index 75eab0b27a6ec..784363ada88ff 100644 --- a/clients/client-taxsettings/src/commands/DeleteTaxRegistrationCommand.ts +++ b/clients/client-taxsettings/src/commands/DeleteTaxRegistrationCommand.ts @@ -69,6 +69,7 @@ export interface DeleteTaxRegistrationCommandOutput extends DeleteTaxRegistratio * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class DeleteTaxRegistrationCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/GetTaxExemptionTypesCommand.ts b/clients/client-taxsettings/src/commands/GetTaxExemptionTypesCommand.ts index 5f097a0701d74..702e1246e0f9e 100644 --- a/clients/client-taxsettings/src/commands/GetTaxExemptionTypesCommand.ts +++ b/clients/client-taxsettings/src/commands/GetTaxExemptionTypesCommand.ts @@ -75,6 +75,7 @@ export interface GetTaxExemptionTypesCommandOutput extends GetTaxExemptionTypesR * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class GetTaxExemptionTypesCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/GetTaxInheritanceCommand.ts b/clients/client-taxsettings/src/commands/GetTaxInheritanceCommand.ts index 479d4433bd27f..6dc5e4c2a5fc5 100644 --- a/clients/client-taxsettings/src/commands/GetTaxInheritanceCommand.ts +++ b/clients/client-taxsettings/src/commands/GetTaxInheritanceCommand.ts @@ -64,6 +64,7 @@ export interface GetTaxInheritanceCommandOutput extends GetTaxInheritanceRespons * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class GetTaxInheritanceCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/GetTaxRegistrationCommand.ts b/clients/client-taxsettings/src/commands/GetTaxRegistrationCommand.ts index 70f4810fc72f1..7a8f86b5fa01d 100644 --- a/clients/client-taxsettings/src/commands/GetTaxRegistrationCommand.ts +++ b/clients/client-taxsettings/src/commands/GetTaxRegistrationCommand.ts @@ -173,6 +173,7 @@ export interface GetTaxRegistrationCommandOutput extends GetTaxRegistrationRespo * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class GetTaxRegistrationCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/GetTaxRegistrationDocumentCommand.ts b/clients/client-taxsettings/src/commands/GetTaxRegistrationDocumentCommand.ts index 9c88ac73e135d..e1224da6ed1d8 100644 --- a/clients/client-taxsettings/src/commands/GetTaxRegistrationDocumentCommand.ts +++ b/clients/client-taxsettings/src/commands/GetTaxRegistrationDocumentCommand.ts @@ -71,6 +71,7 @@ export interface GetTaxRegistrationDocumentCommandOutput extends GetTaxRegistrat * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class GetTaxRegistrationDocumentCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/ListSupplementalTaxRegistrationsCommand.ts b/clients/client-taxsettings/src/commands/ListSupplementalTaxRegistrationsCommand.ts index ab909ba196767..d9b68e25d02bf 100644 --- a/clients/client-taxsettings/src/commands/ListSupplementalTaxRegistrationsCommand.ts +++ b/clients/client-taxsettings/src/commands/ListSupplementalTaxRegistrationsCommand.ts @@ -96,6 +96,7 @@ export interface ListSupplementalTaxRegistrationsCommandOutput * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class ListSupplementalTaxRegistrationsCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/ListTaxExemptionsCommand.ts b/clients/client-taxsettings/src/commands/ListTaxExemptionsCommand.ts index 8c8c6f762bd96..a7a29b7eea180 100644 --- a/clients/client-taxsettings/src/commands/ListTaxExemptionsCommand.ts +++ b/clients/client-taxsettings/src/commands/ListTaxExemptionsCommand.ts @@ -95,6 +95,7 @@ export interface ListTaxExemptionsCommandOutput extends ListTaxExemptionsRespons * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class ListTaxExemptionsCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/ListTaxRegistrationsCommand.ts b/clients/client-taxsettings/src/commands/ListTaxRegistrationsCommand.ts index 4bee3ff38f2a4..a98abce3201de 100644 --- a/clients/client-taxsettings/src/commands/ListTaxRegistrationsCommand.ts +++ b/clients/client-taxsettings/src/commands/ListTaxRegistrationsCommand.ts @@ -201,6 +201,7 @@ export interface ListTaxRegistrationsCommandOutput extends ListTaxRegistrationsR * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class ListTaxRegistrationsCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/PutSupplementalTaxRegistrationCommand.ts b/clients/client-taxsettings/src/commands/PutSupplementalTaxRegistrationCommand.ts index 9c158b52929dd..6dc152aec72b3 100644 --- a/clients/client-taxsettings/src/commands/PutSupplementalTaxRegistrationCommand.ts +++ b/clients/client-taxsettings/src/commands/PutSupplementalTaxRegistrationCommand.ts @@ -91,6 +91,7 @@ export interface PutSupplementalTaxRegistrationCommandOutput * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class PutSupplementalTaxRegistrationCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/PutTaxExemptionCommand.ts b/clients/client-taxsettings/src/commands/PutTaxExemptionCommand.ts index c32e43aa45398..3a14099ae4c5e 100644 --- a/clients/client-taxsettings/src/commands/PutTaxExemptionCommand.ts +++ b/clients/client-taxsettings/src/commands/PutTaxExemptionCommand.ts @@ -89,6 +89,7 @@ export interface PutTaxExemptionCommandOutput extends PutTaxExemptionResponse, _ * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class PutTaxExemptionCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/PutTaxInheritanceCommand.ts b/clients/client-taxsettings/src/commands/PutTaxInheritanceCommand.ts index ba9807a6b5dfb..1760d8cf5b8f7 100644 --- a/clients/client-taxsettings/src/commands/PutTaxInheritanceCommand.ts +++ b/clients/client-taxsettings/src/commands/PutTaxInheritanceCommand.ts @@ -67,6 +67,7 @@ export interface PutTaxInheritanceCommandOutput extends PutTaxInheritanceRespons * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class PutTaxInheritanceCommand extends $Command diff --git a/clients/client-taxsettings/src/commands/PutTaxRegistrationCommand.ts b/clients/client-taxsettings/src/commands/PutTaxRegistrationCommand.ts index 2e68791bab94f..f6ae86e8e7013 100644 --- a/clients/client-taxsettings/src/commands/PutTaxRegistrationCommand.ts +++ b/clients/client-taxsettings/src/commands/PutTaxRegistrationCommand.ts @@ -356,6 +356,7 @@ export interface PutTaxRegistrationCommandOutput extends PutTaxRegistrationRespo * @throws {@link TaxSettingsServiceException} *

Base exception class for all service exceptions from TaxSettings service.

* + * * @public */ export class PutTaxRegistrationCommand extends $Command diff --git a/clients/client-textract/src/commands/AnalyzeDocumentCommand.ts b/clients/client-textract/src/commands/AnalyzeDocumentCommand.ts index 85f624b7d7d1f..ad0f985a3f9dc 100644 --- a/clients/client-textract/src/commands/AnalyzeDocumentCommand.ts +++ b/clients/client-textract/src/commands/AnalyzeDocumentCommand.ts @@ -242,6 +242,7 @@ export interface AnalyzeDocumentCommandOutput extends AnalyzeDocumentResponse, _ * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class AnalyzeDocumentCommand extends $Command diff --git a/clients/client-textract/src/commands/AnalyzeExpenseCommand.ts b/clients/client-textract/src/commands/AnalyzeExpenseCommand.ts index cc97da175d24b..f3ad3b5312871 100644 --- a/clients/client-textract/src/commands/AnalyzeExpenseCommand.ts +++ b/clients/client-textract/src/commands/AnalyzeExpenseCommand.ts @@ -283,6 +283,7 @@ export interface AnalyzeExpenseCommandOutput extends AnalyzeExpenseResponse, __M * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class AnalyzeExpenseCommand extends $Command diff --git a/clients/client-textract/src/commands/AnalyzeIDCommand.ts b/clients/client-textract/src/commands/AnalyzeIDCommand.ts index e39add69614f8..6785ae0dc69da 100644 --- a/clients/client-textract/src/commands/AnalyzeIDCommand.ts +++ b/clients/client-textract/src/commands/AnalyzeIDCommand.ts @@ -182,6 +182,7 @@ export interface AnalyzeIDCommandOutput extends AnalyzeIDResponse, __MetadataBea * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class AnalyzeIDCommand extends $Command diff --git a/clients/client-textract/src/commands/CreateAdapterCommand.ts b/clients/client-textract/src/commands/CreateAdapterCommand.ts index cc006aceaf93b..bfd86224d40dc 100644 --- a/clients/client-textract/src/commands/CreateAdapterCommand.ts +++ b/clients/client-textract/src/commands/CreateAdapterCommand.ts @@ -110,6 +110,7 @@ export interface CreateAdapterCommandOutput extends CreateAdapterResponse, __Met * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class CreateAdapterCommand extends $Command diff --git a/clients/client-textract/src/commands/CreateAdapterVersionCommand.ts b/clients/client-textract/src/commands/CreateAdapterVersionCommand.ts index b830284c0da8c..3293ac90cab16 100644 --- a/clients/client-textract/src/commands/CreateAdapterVersionCommand.ts +++ b/clients/client-textract/src/commands/CreateAdapterVersionCommand.ts @@ -130,6 +130,7 @@ export interface CreateAdapterVersionCommandOutput extends CreateAdapterVersionR * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class CreateAdapterVersionCommand extends $Command diff --git a/clients/client-textract/src/commands/DeleteAdapterCommand.ts b/clients/client-textract/src/commands/DeleteAdapterCommand.ts index 591860eb39402..f8f38740749fb 100644 --- a/clients/client-textract/src/commands/DeleteAdapterCommand.ts +++ b/clients/client-textract/src/commands/DeleteAdapterCommand.ts @@ -83,6 +83,7 @@ export interface DeleteAdapterCommandOutput extends DeleteAdapterResponse, __Met * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class DeleteAdapterCommand extends $Command diff --git a/clients/client-textract/src/commands/DeleteAdapterVersionCommand.ts b/clients/client-textract/src/commands/DeleteAdapterVersionCommand.ts index b28eed0a4deb5..2d19141c68926 100644 --- a/clients/client-textract/src/commands/DeleteAdapterVersionCommand.ts +++ b/clients/client-textract/src/commands/DeleteAdapterVersionCommand.ts @@ -85,6 +85,7 @@ export interface DeleteAdapterVersionCommandOutput extends DeleteAdapterVersionR * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class DeleteAdapterVersionCommand extends $Command diff --git a/clients/client-textract/src/commands/DetectDocumentTextCommand.ts b/clients/client-textract/src/commands/DetectDocumentTextCommand.ts index e069c7d9ccecf..4b038c0aa663b 100644 --- a/clients/client-textract/src/commands/DetectDocumentTextCommand.ts +++ b/clients/client-textract/src/commands/DetectDocumentTextCommand.ts @@ -162,6 +162,7 @@ export interface DetectDocumentTextCommandOutput extends DetectDocumentTextRespo * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class DetectDocumentTextCommand extends $Command diff --git a/clients/client-textract/src/commands/GetAdapterCommand.ts b/clients/client-textract/src/commands/GetAdapterCommand.ts index 2a886c0c1211d..090aab275e48c 100644 --- a/clients/client-textract/src/commands/GetAdapterCommand.ts +++ b/clients/client-textract/src/commands/GetAdapterCommand.ts @@ -93,6 +93,7 @@ export interface GetAdapterCommandOutput extends GetAdapterResponse, __MetadataB * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class GetAdapterCommand extends $Command diff --git a/clients/client-textract/src/commands/GetAdapterVersionCommand.ts b/clients/client-textract/src/commands/GetAdapterVersionCommand.ts index 84a1383a9f8af..eaa76eb226560 100644 --- a/clients/client-textract/src/commands/GetAdapterVersionCommand.ts +++ b/clients/client-textract/src/commands/GetAdapterVersionCommand.ts @@ -122,6 +122,7 @@ export interface GetAdapterVersionCommandOutput extends GetAdapterVersionRespons * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class GetAdapterVersionCommand extends $Command diff --git a/clients/client-textract/src/commands/GetDocumentAnalysisCommand.ts b/clients/client-textract/src/commands/GetDocumentAnalysisCommand.ts index 62f94f438b133..b611b50d002a0 100644 --- a/clients/client-textract/src/commands/GetDocumentAnalysisCommand.ts +++ b/clients/client-textract/src/commands/GetDocumentAnalysisCommand.ts @@ -212,6 +212,7 @@ export interface GetDocumentAnalysisCommandOutput extends GetDocumentAnalysisRes * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class GetDocumentAnalysisCommand extends $Command diff --git a/clients/client-textract/src/commands/GetDocumentTextDetectionCommand.ts b/clients/client-textract/src/commands/GetDocumentTextDetectionCommand.ts index e603d94a4e90d..47521b3be986f 100644 --- a/clients/client-textract/src/commands/GetDocumentTextDetectionCommand.ts +++ b/clients/client-textract/src/commands/GetDocumentTextDetectionCommand.ts @@ -175,6 +175,7 @@ export interface GetDocumentTextDetectionCommandOutput extends GetDocumentTextDe * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class GetDocumentTextDetectionCommand extends $Command diff --git a/clients/client-textract/src/commands/GetExpenseAnalysisCommand.ts b/clients/client-textract/src/commands/GetExpenseAnalysisCommand.ts index c0d58a01e2c81..e34d645c6f26f 100644 --- a/clients/client-textract/src/commands/GetExpenseAnalysisCommand.ts +++ b/clients/client-textract/src/commands/GetExpenseAnalysisCommand.ts @@ -283,6 +283,7 @@ export interface GetExpenseAnalysisCommandOutput extends GetExpenseAnalysisRespo * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class GetExpenseAnalysisCommand extends $Command diff --git a/clients/client-textract/src/commands/GetLendingAnalysisCommand.ts b/clients/client-textract/src/commands/GetLendingAnalysisCommand.ts index c87663110f78a..861814ed41259 100644 --- a/clients/client-textract/src/commands/GetLendingAnalysisCommand.ts +++ b/clients/client-textract/src/commands/GetLendingAnalysisCommand.ts @@ -356,6 +356,7 @@ export interface GetLendingAnalysisCommandOutput extends GetLendingAnalysisRespo * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class GetLendingAnalysisCommand extends $Command diff --git a/clients/client-textract/src/commands/GetLendingAnalysisSummaryCommand.ts b/clients/client-textract/src/commands/GetLendingAnalysisSummaryCommand.ts index 06dae82dcc8ef..13604fbd4e7e7 100644 --- a/clients/client-textract/src/commands/GetLendingAnalysisSummaryCommand.ts +++ b/clients/client-textract/src/commands/GetLendingAnalysisSummaryCommand.ts @@ -141,6 +141,7 @@ export interface GetLendingAnalysisSummaryCommandOutput extends GetLendingAnalys * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class GetLendingAnalysisSummaryCommand extends $Command diff --git a/clients/client-textract/src/commands/ListAdapterVersionsCommand.ts b/clients/client-textract/src/commands/ListAdapterVersionsCommand.ts index 952d9280c13d4..bdd1f63932e57 100644 --- a/clients/client-textract/src/commands/ListAdapterVersionsCommand.ts +++ b/clients/client-textract/src/commands/ListAdapterVersionsCommand.ts @@ -98,6 +98,7 @@ export interface ListAdapterVersionsCommandOutput extends ListAdapterVersionsRes * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class ListAdapterVersionsCommand extends $Command diff --git a/clients/client-textract/src/commands/ListAdaptersCommand.ts b/clients/client-textract/src/commands/ListAdaptersCommand.ts index 3e2298ea12972..0b68fa1d37469 100644 --- a/clients/client-textract/src/commands/ListAdaptersCommand.ts +++ b/clients/client-textract/src/commands/ListAdaptersCommand.ts @@ -92,6 +92,7 @@ export interface ListAdaptersCommandOutput extends ListAdaptersResponse, __Metad * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class ListAdaptersCommand extends $Command diff --git a/clients/client-textract/src/commands/ListTagsForResourceCommand.ts b/clients/client-textract/src/commands/ListTagsForResourceCommand.ts index c8d579e7dad16..6e9758370b0b6 100644 --- a/clients/client-textract/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-textract/src/commands/ListTagsForResourceCommand.ts @@ -84,6 +84,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-textract/src/commands/StartDocumentAnalysisCommand.ts b/clients/client-textract/src/commands/StartDocumentAnalysisCommand.ts index 4ef34d3c9a514..30c9f0e05c016 100644 --- a/clients/client-textract/src/commands/StartDocumentAnalysisCommand.ts +++ b/clients/client-textract/src/commands/StartDocumentAnalysisCommand.ts @@ -169,6 +169,7 @@ export interface StartDocumentAnalysisCommandOutput extends StartDocumentAnalysi * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class StartDocumentAnalysisCommand extends $Command diff --git a/clients/client-textract/src/commands/StartDocumentTextDetectionCommand.ts b/clients/client-textract/src/commands/StartDocumentTextDetectionCommand.ts index d15dcd6de0bbf..3e465c6c04ceb 100644 --- a/clients/client-textract/src/commands/StartDocumentTextDetectionCommand.ts +++ b/clients/client-textract/src/commands/StartDocumentTextDetectionCommand.ts @@ -144,6 +144,7 @@ export interface StartDocumentTextDetectionCommandOutput extends StartDocumentTe * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class StartDocumentTextDetectionCommand extends $Command diff --git a/clients/client-textract/src/commands/StartExpenseAnalysisCommand.ts b/clients/client-textract/src/commands/StartExpenseAnalysisCommand.ts index 8395d7a9caf93..adda6f290f594 100644 --- a/clients/client-textract/src/commands/StartExpenseAnalysisCommand.ts +++ b/clients/client-textract/src/commands/StartExpenseAnalysisCommand.ts @@ -142,6 +142,7 @@ export interface StartExpenseAnalysisCommandOutput extends StartExpenseAnalysisR * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class StartExpenseAnalysisCommand extends $Command diff --git a/clients/client-textract/src/commands/StartLendingAnalysisCommand.ts b/clients/client-textract/src/commands/StartLendingAnalysisCommand.ts index 78fbedbdabb1a..e51e62edeae82 100644 --- a/clients/client-textract/src/commands/StartLendingAnalysisCommand.ts +++ b/clients/client-textract/src/commands/StartLendingAnalysisCommand.ts @@ -158,6 +158,7 @@ export interface StartLendingAnalysisCommandOutput extends StartLendingAnalysisR * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class StartLendingAnalysisCommand extends $Command diff --git a/clients/client-textract/src/commands/TagResourceCommand.ts b/clients/client-textract/src/commands/TagResourceCommand.ts index d4afe526e60e8..e6a0c7aa9b8ca 100644 --- a/clients/client-textract/src/commands/TagResourceCommand.ts +++ b/clients/client-textract/src/commands/TagResourceCommand.ts @@ -86,6 +86,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-textract/src/commands/UntagResourceCommand.ts b/clients/client-textract/src/commands/UntagResourceCommand.ts index 9122cb053f7e1..a698ba31b7f9c 100644 --- a/clients/client-textract/src/commands/UntagResourceCommand.ts +++ b/clients/client-textract/src/commands/UntagResourceCommand.ts @@ -83,6 +83,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-textract/src/commands/UpdateAdapterCommand.ts b/clients/client-textract/src/commands/UpdateAdapterCommand.ts index 8bb647215ca49..6790a2b020bc0 100644 --- a/clients/client-textract/src/commands/UpdateAdapterCommand.ts +++ b/clients/client-textract/src/commands/UpdateAdapterCommand.ts @@ -96,6 +96,7 @@ export interface UpdateAdapterCommandOutput extends UpdateAdapterResponse, __Met * @throws {@link TextractServiceException} *

Base exception class for all service exceptions from Textract service.

* + * * @public */ export class UpdateAdapterCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/CreateDbClusterCommand.ts b/clients/client-timestream-influxdb/src/commands/CreateDbClusterCommand.ts index 2a6d23faabcc7..b534c3a968e9b 100644 --- a/clients/client-timestream-influxdb/src/commands/CreateDbClusterCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/CreateDbClusterCommand.ts @@ -113,6 +113,7 @@ export interface CreateDbClusterCommandOutput extends CreateDbClusterOutput, __M * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class CreateDbClusterCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/CreateDbInstanceCommand.ts b/clients/client-timestream-influxdb/src/commands/CreateDbInstanceCommand.ts index 25cecf0b54eed..f334996695bbe 100644 --- a/clients/client-timestream-influxdb/src/commands/CreateDbInstanceCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/CreateDbInstanceCommand.ts @@ -140,6 +140,7 @@ export interface CreateDbInstanceCommandOutput extends CreateDbInstanceOutput, _ * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class CreateDbInstanceCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/CreateDbParameterGroupCommand.ts b/clients/client-timestream-influxdb/src/commands/CreateDbParameterGroupCommand.ts index 0400524b76f28..abe6feac772fc 100644 --- a/clients/client-timestream-influxdb/src/commands/CreateDbParameterGroupCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/CreateDbParameterGroupCommand.ts @@ -193,6 +193,7 @@ export interface CreateDbParameterGroupCommandOutput extends CreateDbParameterGr * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class CreateDbParameterGroupCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/DeleteDbClusterCommand.ts b/clients/client-timestream-influxdb/src/commands/DeleteDbClusterCommand.ts index 82df2ec583037..5dc450bcdbe91 100644 --- a/clients/client-timestream-influxdb/src/commands/DeleteDbClusterCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/DeleteDbClusterCommand.ts @@ -77,6 +77,7 @@ export interface DeleteDbClusterCommandOutput extends DeleteDbClusterOutput, __M * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class DeleteDbClusterCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/DeleteDbInstanceCommand.ts b/clients/client-timestream-influxdb/src/commands/DeleteDbInstanceCommand.ts index cfbb24e542963..5b88dd958c4e3 100644 --- a/clients/client-timestream-influxdb/src/commands/DeleteDbInstanceCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/DeleteDbInstanceCommand.ts @@ -106,6 +106,7 @@ export interface DeleteDbInstanceCommandOutput extends DeleteDbInstanceOutput, _ * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class DeleteDbInstanceCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/GetDbClusterCommand.ts b/clients/client-timestream-influxdb/src/commands/GetDbClusterCommand.ts index 7589d65d07fb6..0f1de01af9ee9 100644 --- a/clients/client-timestream-influxdb/src/commands/GetDbClusterCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/GetDbClusterCommand.ts @@ -101,6 +101,7 @@ export interface GetDbClusterCommandOutput extends GetDbClusterOutput, __Metadat * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class GetDbClusterCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/GetDbInstanceCommand.ts b/clients/client-timestream-influxdb/src/commands/GetDbInstanceCommand.ts index 530f99a0561d7..8f5e937f1b7aa 100644 --- a/clients/client-timestream-influxdb/src/commands/GetDbInstanceCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/GetDbInstanceCommand.ts @@ -103,6 +103,7 @@ export interface GetDbInstanceCommandOutput extends GetDbInstanceOutput, __Metad * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class GetDbInstanceCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/GetDbParameterGroupCommand.ts b/clients/client-timestream-influxdb/src/commands/GetDbParameterGroupCommand.ts index 59d12e8c2badc..0b71dcedad467 100644 --- a/clients/client-timestream-influxdb/src/commands/GetDbParameterGroupCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/GetDbParameterGroupCommand.ts @@ -130,6 +130,7 @@ export interface GetDbParameterGroupCommandOutput extends GetDbParameterGroupOut * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class GetDbParameterGroupCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/ListDbClustersCommand.ts b/clients/client-timestream-influxdb/src/commands/ListDbClustersCommand.ts index ba638c22842fb..62e006032c59c 100644 --- a/clients/client-timestream-influxdb/src/commands/ListDbClustersCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/ListDbClustersCommand.ts @@ -91,6 +91,7 @@ export interface ListDbClustersCommandOutput extends ListDbClustersOutput, __Met * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class ListDbClustersCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/ListDbInstancesCommand.ts b/clients/client-timestream-influxdb/src/commands/ListDbInstancesCommand.ts index cacf31fdcd1fe..dc3898bd9840f 100644 --- a/clients/client-timestream-influxdb/src/commands/ListDbInstancesCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/ListDbInstancesCommand.ts @@ -90,6 +90,7 @@ export interface ListDbInstancesCommandOutput extends ListDbInstancesOutput, __M * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class ListDbInstancesCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/ListDbInstancesForClusterCommand.ts b/clients/client-timestream-influxdb/src/commands/ListDbInstancesForClusterCommand.ts index 20ff52efd90ba..d3cc4e014d78a 100644 --- a/clients/client-timestream-influxdb/src/commands/ListDbInstancesForClusterCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/ListDbInstancesForClusterCommand.ts @@ -92,6 +92,7 @@ export interface ListDbInstancesForClusterCommandOutput extends ListDbInstancesF * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class ListDbInstancesForClusterCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/ListDbParameterGroupsCommand.ts b/clients/client-timestream-influxdb/src/commands/ListDbParameterGroupsCommand.ts index df029c8321fb0..0042eb20d1d2c 100644 --- a/clients/client-timestream-influxdb/src/commands/ListDbParameterGroupsCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/ListDbParameterGroupsCommand.ts @@ -83,6 +83,7 @@ export interface ListDbParameterGroupsCommandOutput extends ListDbParameterGroup * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class ListDbParameterGroupsCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/ListTagsForResourceCommand.ts b/clients/client-timestream-influxdb/src/commands/ListTagsForResourceCommand.ts index cc8750a145841..4668845f76e41 100644 --- a/clients/client-timestream-influxdb/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/ListTagsForResourceCommand.ts @@ -64,6 +64,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/TagResourceCommand.ts b/clients/client-timestream-influxdb/src/commands/TagResourceCommand.ts index 5344fcb5e2f8e..a3c608f876fdc 100644 --- a/clients/client-timestream-influxdb/src/commands/TagResourceCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/TagResourceCommand.ts @@ -66,6 +66,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/UntagResourceCommand.ts b/clients/client-timestream-influxdb/src/commands/UntagResourceCommand.ts index daee2897551e0..78830677ee7a5 100644 --- a/clients/client-timestream-influxdb/src/commands/UntagResourceCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/UntagResourceCommand.ts @@ -63,6 +63,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/UpdateDbClusterCommand.ts b/clients/client-timestream-influxdb/src/commands/UpdateDbClusterCommand.ts index e37949749192b..f69d1dd97be8c 100644 --- a/clients/client-timestream-influxdb/src/commands/UpdateDbClusterCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/UpdateDbClusterCommand.ts @@ -87,6 +87,7 @@ export interface UpdateDbClusterCommandOutput extends UpdateDbClusterOutput, __M * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class UpdateDbClusterCommand extends $Command diff --git a/clients/client-timestream-influxdb/src/commands/UpdateDbInstanceCommand.ts b/clients/client-timestream-influxdb/src/commands/UpdateDbInstanceCommand.ts index a0c2f63b0b93f..70d2717288f0a 100644 --- a/clients/client-timestream-influxdb/src/commands/UpdateDbInstanceCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/UpdateDbInstanceCommand.ts @@ -118,6 +118,7 @@ export interface UpdateDbInstanceCommandOutput extends UpdateDbInstanceOutput, _ * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* + * * @public */ export class UpdateDbInstanceCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/CancelQueryCommand.ts b/clients/client-timestream-query/src/commands/CancelQueryCommand.ts index b40eabb52fbc8..f7664bc81887f 100644 --- a/clients/client-timestream-query/src/commands/CancelQueryCommand.ts +++ b/clients/client-timestream-query/src/commands/CancelQueryCommand.ts @@ -76,6 +76,7 @@ export interface CancelQueryCommandOutput extends CancelQueryResponse, __Metadat * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class CancelQueryCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/CreateScheduledQueryCommand.ts b/clients/client-timestream-query/src/commands/CreateScheduledQueryCommand.ts index 50bb0ee180216..0baf4dff9f83b 100644 --- a/clients/client-timestream-query/src/commands/CreateScheduledQueryCommand.ts +++ b/clients/client-timestream-query/src/commands/CreateScheduledQueryCommand.ts @@ -149,6 +149,7 @@ export interface CreateScheduledQueryCommandOutput extends CreateScheduledQueryR * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class CreateScheduledQueryCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/DeleteScheduledQueryCommand.ts b/clients/client-timestream-query/src/commands/DeleteScheduledQueryCommand.ts index 0d09af7970d90..c18e3b79ee65d 100644 --- a/clients/client-timestream-query/src/commands/DeleteScheduledQueryCommand.ts +++ b/clients/client-timestream-query/src/commands/DeleteScheduledQueryCommand.ts @@ -72,6 +72,7 @@ export interface DeleteScheduledQueryCommandOutput extends __MetadataBearer {} * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class DeleteScheduledQueryCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/DescribeAccountSettingsCommand.ts b/clients/client-timestream-query/src/commands/DescribeAccountSettingsCommand.ts index 31fb7a3127a70..ab90095a689f6 100644 --- a/clients/client-timestream-query/src/commands/DescribeAccountSettingsCommand.ts +++ b/clients/client-timestream-query/src/commands/DescribeAccountSettingsCommand.ts @@ -85,6 +85,7 @@ export interface DescribeAccountSettingsCommandOutput extends DescribeAccountSet * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class DescribeAccountSettingsCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/DescribeEndpointsCommand.ts b/clients/client-timestream-query/src/commands/DescribeEndpointsCommand.ts index 8951c401cfb3f..540268c0f2ee1 100644 --- a/clients/client-timestream-query/src/commands/DescribeEndpointsCommand.ts +++ b/clients/client-timestream-query/src/commands/DescribeEndpointsCommand.ts @@ -87,6 +87,7 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class DescribeEndpointsCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/DescribeScheduledQueryCommand.ts b/clients/client-timestream-query/src/commands/DescribeScheduledQueryCommand.ts index 0fcd7fb30fcef..af4b54ce0bd2b 100644 --- a/clients/client-timestream-query/src/commands/DescribeScheduledQueryCommand.ts +++ b/clients/client-timestream-query/src/commands/DescribeScheduledQueryCommand.ts @@ -224,6 +224,7 @@ export interface DescribeScheduledQueryCommandOutput extends DescribeScheduledQu * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class DescribeScheduledQueryCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/ExecuteScheduledQueryCommand.ts b/clients/client-timestream-query/src/commands/ExecuteScheduledQueryCommand.ts index 1b9447bd309bc..b301f859dc971 100644 --- a/clients/client-timestream-query/src/commands/ExecuteScheduledQueryCommand.ts +++ b/clients/client-timestream-query/src/commands/ExecuteScheduledQueryCommand.ts @@ -78,6 +78,7 @@ export interface ExecuteScheduledQueryCommandOutput extends __MetadataBearer {} * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class ExecuteScheduledQueryCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/ListScheduledQueriesCommand.ts b/clients/client-timestream-query/src/commands/ListScheduledQueriesCommand.ts index 461ddafd136c4..a9f9b175cdaba 100644 --- a/clients/client-timestream-query/src/commands/ListScheduledQueriesCommand.ts +++ b/clients/client-timestream-query/src/commands/ListScheduledQueriesCommand.ts @@ -97,6 +97,7 @@ export interface ListScheduledQueriesCommandOutput extends ListScheduledQueriesR * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class ListScheduledQueriesCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/ListTagsForResourceCommand.ts b/clients/client-timestream-query/src/commands/ListTagsForResourceCommand.ts index 4f247d0537f08..68bbcb1cc1d7c 100644 --- a/clients/client-timestream-query/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-timestream-query/src/commands/ListTagsForResourceCommand.ts @@ -76,6 +76,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/PrepareQueryCommand.ts b/clients/client-timestream-query/src/commands/PrepareQueryCommand.ts index ab7179c7cb0b4..259e176a4f433 100644 --- a/clients/client-timestream-query/src/commands/PrepareQueryCommand.ts +++ b/clients/client-timestream-query/src/commands/PrepareQueryCommand.ts @@ -117,6 +117,7 @@ export interface PrepareQueryCommandOutput extends PrepareQueryResponse, __Metad * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class PrepareQueryCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/QueryCommand.ts b/clients/client-timestream-query/src/commands/QueryCommand.ts index 6b1ff1646ee5c..0edfcc812824b 100644 --- a/clients/client-timestream-query/src/commands/QueryCommand.ts +++ b/clients/client-timestream-query/src/commands/QueryCommand.ts @@ -203,6 +203,7 @@ export interface QueryCommandOutput extends QueryResponse, __MetadataBearer {} * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class QueryCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/TagResourceCommand.ts b/clients/client-timestream-query/src/commands/TagResourceCommand.ts index cceb7e745f5d4..e38c5a086828a 100644 --- a/clients/client-timestream-query/src/commands/TagResourceCommand.ts +++ b/clients/client-timestream-query/src/commands/TagResourceCommand.ts @@ -77,6 +77,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/UntagResourceCommand.ts b/clients/client-timestream-query/src/commands/UntagResourceCommand.ts index 6b77532986d41..f242bbde6026c 100644 --- a/clients/client-timestream-query/src/commands/UntagResourceCommand.ts +++ b/clients/client-timestream-query/src/commands/UntagResourceCommand.ts @@ -69,6 +69,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-timestream-query/src/commands/UpdateAccountSettingsCommand.ts index 610b695233f5a..b87c9fdf9a530 100644 --- a/clients/client-timestream-query/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-timestream-query/src/commands/UpdateAccountSettingsCommand.ts @@ -105,6 +105,7 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class UpdateAccountSettingsCommand extends $Command diff --git a/clients/client-timestream-query/src/commands/UpdateScheduledQueryCommand.ts b/clients/client-timestream-query/src/commands/UpdateScheduledQueryCommand.ts index 2f368d059cc14..6a0ab3c720154 100644 --- a/clients/client-timestream-query/src/commands/UpdateScheduledQueryCommand.ts +++ b/clients/client-timestream-query/src/commands/UpdateScheduledQueryCommand.ts @@ -73,6 +73,7 @@ export interface UpdateScheduledQueryCommandOutput extends __MetadataBearer {} * @throws {@link TimestreamQueryServiceException} *

Base exception class for all service exceptions from TimestreamQuery service.

* + * * @public */ export class UpdateScheduledQueryCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/CreateBatchLoadTaskCommand.ts b/clients/client-timestream-write/src/commands/CreateBatchLoadTaskCommand.ts index 95f589b01b009..e694e4f5a9b3d 100644 --- a/clients/client-timestream-write/src/commands/CreateBatchLoadTaskCommand.ts +++ b/clients/client-timestream-write/src/commands/CreateBatchLoadTaskCommand.ts @@ -164,6 +164,7 @@ export interface CreateBatchLoadTaskCommandOutput extends CreateBatchLoadTaskRes * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class CreateBatchLoadTaskCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/CreateDatabaseCommand.ts b/clients/client-timestream-write/src/commands/CreateDatabaseCommand.ts index 45dc3d6f4ae65..807a23f15fd20 100644 --- a/clients/client-timestream-write/src/commands/CreateDatabaseCommand.ts +++ b/clients/client-timestream-write/src/commands/CreateDatabaseCommand.ts @@ -98,6 +98,7 @@ export interface CreateDatabaseCommandOutput extends CreateDatabaseResponse, __M * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class CreateDatabaseCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/CreateTableCommand.ts b/clients/client-timestream-write/src/commands/CreateTableCommand.ts index 20af22a107f45..f0c257ea6c785 100644 --- a/clients/client-timestream-write/src/commands/CreateTableCommand.ts +++ b/clients/client-timestream-write/src/commands/CreateTableCommand.ts @@ -152,6 +152,7 @@ export interface CreateTableCommandOutput extends CreateTableResponse, __Metadat * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class CreateTableCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/DeleteDatabaseCommand.ts b/clients/client-timestream-write/src/commands/DeleteDatabaseCommand.ts index 2a7bb9a177d9c..e17dee8116cb1 100644 --- a/clients/client-timestream-write/src/commands/DeleteDatabaseCommand.ts +++ b/clients/client-timestream-write/src/commands/DeleteDatabaseCommand.ts @@ -87,6 +87,7 @@ export interface DeleteDatabaseCommandOutput extends __MetadataBearer {} * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class DeleteDatabaseCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/DeleteTableCommand.ts b/clients/client-timestream-write/src/commands/DeleteTableCommand.ts index 5097300f6cf0a..ac57a36c84546 100644 --- a/clients/client-timestream-write/src/commands/DeleteTableCommand.ts +++ b/clients/client-timestream-write/src/commands/DeleteTableCommand.ts @@ -85,6 +85,7 @@ export interface DeleteTableCommandOutput extends __MetadataBearer {} * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class DeleteTableCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/DescribeBatchLoadTaskCommand.ts b/clients/client-timestream-write/src/commands/DescribeBatchLoadTaskCommand.ts index 9a5a7b3a3c1d4..79089194d4656 100644 --- a/clients/client-timestream-write/src/commands/DescribeBatchLoadTaskCommand.ts +++ b/clients/client-timestream-write/src/commands/DescribeBatchLoadTaskCommand.ts @@ -160,6 +160,7 @@ export interface DescribeBatchLoadTaskCommandOutput extends DescribeBatchLoadTas * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class DescribeBatchLoadTaskCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/DescribeDatabaseCommand.ts b/clients/client-timestream-write/src/commands/DescribeDatabaseCommand.ts index 4bea3059b00cb..b24298b878da4 100644 --- a/clients/client-timestream-write/src/commands/DescribeDatabaseCommand.ts +++ b/clients/client-timestream-write/src/commands/DescribeDatabaseCommand.ts @@ -88,6 +88,7 @@ export interface DescribeDatabaseCommandOutput extends DescribeDatabaseResponse, * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class DescribeDatabaseCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/DescribeEndpointsCommand.ts b/clients/client-timestream-write/src/commands/DescribeEndpointsCommand.ts index 35414af060603..66f88aff62efb 100644 --- a/clients/client-timestream-write/src/commands/DescribeEndpointsCommand.ts +++ b/clients/client-timestream-write/src/commands/DescribeEndpointsCommand.ts @@ -90,6 +90,7 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class DescribeEndpointsCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/DescribeTableCommand.ts b/clients/client-timestream-write/src/commands/DescribeTableCommand.ts index 1a3f9e372cc86..0c62d47c2ce0e 100644 --- a/clients/client-timestream-write/src/commands/DescribeTableCommand.ts +++ b/clients/client-timestream-write/src/commands/DescribeTableCommand.ts @@ -113,6 +113,7 @@ export interface DescribeTableCommandOutput extends DescribeTableResponse, __Met * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class DescribeTableCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/ListBatchLoadTasksCommand.ts b/clients/client-timestream-write/src/commands/ListBatchLoadTasksCommand.ts index 80696758c43f9..49cf16e8cdecd 100644 --- a/clients/client-timestream-write/src/commands/ListBatchLoadTasksCommand.ts +++ b/clients/client-timestream-write/src/commands/ListBatchLoadTasksCommand.ts @@ -89,6 +89,7 @@ export interface ListBatchLoadTasksCommandOutput extends ListBatchLoadTasksRespo * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class ListBatchLoadTasksCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/ListDatabasesCommand.ts b/clients/client-timestream-write/src/commands/ListDatabasesCommand.ts index 14121b42ed8aa..108393c4f5948 100644 --- a/clients/client-timestream-write/src/commands/ListDatabasesCommand.ts +++ b/clients/client-timestream-write/src/commands/ListDatabasesCommand.ts @@ -87,6 +87,7 @@ export interface ListDatabasesCommandOutput extends ListDatabasesResponse, __Met * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class ListDatabasesCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/ListTablesCommand.ts b/clients/client-timestream-write/src/commands/ListTablesCommand.ts index 102e50cd6fb0a..934ac8e330d00 100644 --- a/clients/client-timestream-write/src/commands/ListTablesCommand.ts +++ b/clients/client-timestream-write/src/commands/ListTablesCommand.ts @@ -116,6 +116,7 @@ export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataB * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class ListTablesCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/ListTagsForResourceCommand.ts b/clients/client-timestream-write/src/commands/ListTagsForResourceCommand.ts index b6abf7d41a597..8deeb8248866d 100644 --- a/clients/client-timestream-write/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-timestream-write/src/commands/ListTagsForResourceCommand.ts @@ -75,6 +75,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/ResumeBatchLoadTaskCommand.ts b/clients/client-timestream-write/src/commands/ResumeBatchLoadTaskCommand.ts index f5a06179f29f6..e44ae50a16a8b 100644 --- a/clients/client-timestream-write/src/commands/ResumeBatchLoadTaskCommand.ts +++ b/clients/client-timestream-write/src/commands/ResumeBatchLoadTaskCommand.ts @@ -77,6 +77,7 @@ export interface ResumeBatchLoadTaskCommandOutput extends ResumeBatchLoadTaskRes * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class ResumeBatchLoadTaskCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/TagResourceCommand.ts b/clients/client-timestream-write/src/commands/TagResourceCommand.ts index 0490225fd7526..b7ad039ab4782 100644 --- a/clients/client-timestream-write/src/commands/TagResourceCommand.ts +++ b/clients/client-timestream-write/src/commands/TagResourceCommand.ts @@ -79,6 +79,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/UntagResourceCommand.ts b/clients/client-timestream-write/src/commands/UntagResourceCommand.ts index f065aa2124141..289e337a1d228 100644 --- a/clients/client-timestream-write/src/commands/UntagResourceCommand.ts +++ b/clients/client-timestream-write/src/commands/UntagResourceCommand.ts @@ -74,6 +74,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/UpdateDatabaseCommand.ts b/clients/client-timestream-write/src/commands/UpdateDatabaseCommand.ts index 9755dc080483b..a15c19b955467 100644 --- a/clients/client-timestream-write/src/commands/UpdateDatabaseCommand.ts +++ b/clients/client-timestream-write/src/commands/UpdateDatabaseCommand.ts @@ -93,6 +93,7 @@ export interface UpdateDatabaseCommandOutput extends UpdateDatabaseResponse, __M * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class UpdateDatabaseCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/UpdateTableCommand.ts b/clients/client-timestream-write/src/commands/UpdateTableCommand.ts index 11a1cbac0e893..9919300a6b1a1 100644 --- a/clients/client-timestream-write/src/commands/UpdateTableCommand.ts +++ b/clients/client-timestream-write/src/commands/UpdateTableCommand.ts @@ -139,6 +139,7 @@ export interface UpdateTableCommandOutput extends UpdateTableResponse, __Metadat * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class UpdateTableCommand extends $Command diff --git a/clients/client-timestream-write/src/commands/WriteRecordsCommand.ts b/clients/client-timestream-write/src/commands/WriteRecordsCommand.ts index 065632b3f0ff7..ddd8ebe08c09e 100644 --- a/clients/client-timestream-write/src/commands/WriteRecordsCommand.ts +++ b/clients/client-timestream-write/src/commands/WriteRecordsCommand.ts @@ -199,6 +199,7 @@ export interface WriteRecordsCommandOutput extends WriteRecordsResponse, __Metad * @throws {@link TimestreamWriteServiceException} *

Base exception class for all service exceptions from TimestreamWrite service.

* + * * @public */ export class WriteRecordsCommand extends $Command diff --git a/clients/client-tnb/src/commands/CancelSolNetworkOperationCommand.ts b/clients/client-tnb/src/commands/CancelSolNetworkOperationCommand.ts index 489bd38f785c0..b90f54ed133c3 100644 --- a/clients/client-tnb/src/commands/CancelSolNetworkOperationCommand.ts +++ b/clients/client-tnb/src/commands/CancelSolNetworkOperationCommand.ts @@ -70,6 +70,20 @@ export interface CancelSolNetworkOperationCommandOutput extends __MetadataBearer * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Cancel a in-progress Sol Network Operation. + * ```javascript + * // + * const input = { + * nsLcmOpOccId: "no-0d5b823eb5c2a9241" + * }; + * const command = new CancelSolNetworkOperationCommand(input); + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ + * ``` + * * @public */ export class CancelSolNetworkOperationCommand extends $Command diff --git a/clients/client-tnb/src/commands/CreateSolFunctionPackageCommand.ts b/clients/client-tnb/src/commands/CreateSolFunctionPackageCommand.ts index cf3ceb61488b1..82af0003687e5 100644 --- a/clients/client-tnb/src/commands/CreateSolFunctionPackageCommand.ts +++ b/clients/client-tnb/src/commands/CreateSolFunctionPackageCommand.ts @@ -90,6 +90,31 @@ export interface CreateSolFunctionPackageCommandOutput extends CreateSolFunction * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Create a Sol function package + * ```javascript + * // + * const input = { + * tags: { + * Name: "Resource" + * } + * }; + * const command = new CreateSolFunctionPackageCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:function-package/fp-07aa863e53460a2a6", + * id: "fp-07aa863e53460a2a6", + * onboardingState: "CREATED", + * operationalState: "DISABLED", + * tags: { + * Name: "Resource" + * }, + * usageState: "NOT_IN_USE" + * } + * *\/ + * ``` + * * @public */ export class CreateSolFunctionPackageCommand extends $Command diff --git a/clients/client-tnb/src/commands/CreateSolNetworkInstanceCommand.ts b/clients/client-tnb/src/commands/CreateSolNetworkInstanceCommand.ts index d45fbe0aff172..749094ae82b13 100644 --- a/clients/client-tnb/src/commands/CreateSolNetworkInstanceCommand.ts +++ b/clients/client-tnb/src/commands/CreateSolNetworkInstanceCommand.ts @@ -95,6 +95,33 @@ export interface CreateSolNetworkInstanceCommandOutput extends CreateSolNetworkI * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Create a Sol Network Instance + * ```javascript + * // + * const input = { + * nsDescription: "Test network for CITY", + * nsName: "CITY Instance", + * nsdInfoId: "np-0d5b823eb5c2a9241", + * tags: { + * Name: "Resource" + * } + * }; + * const command = new CreateSolNetworkInstanceCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-instance/ni-07aa863e53460a2a6", + * id: "ni-07aa863e53460a2a6", + * nsInstanceName: "CITY Instance", + * nsdInfoId: "np-0d5b823eb5c2a9241", + * tags: { + * Name: "Resource" + * } + * } + * *\/ + * ``` + * * @public */ export class CreateSolNetworkInstanceCommand extends $Command diff --git a/clients/client-tnb/src/commands/CreateSolNetworkPackageCommand.ts b/clients/client-tnb/src/commands/CreateSolNetworkPackageCommand.ts index ccf5de5943048..ac988992e3585 100644 --- a/clients/client-tnb/src/commands/CreateSolNetworkPackageCommand.ts +++ b/clients/client-tnb/src/commands/CreateSolNetworkPackageCommand.ts @@ -93,6 +93,31 @@ export interface CreateSolNetworkPackageCommandOutput extends CreateSolNetworkPa * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Create a Sol network package + * ```javascript + * // + * const input = { + * tags: { + * Name: "Resource" + * } + * }; + * const command = new CreateSolNetworkPackageCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-package/np-0d5b823eb5c2a9241", + * id: "np-0d5b823eb5c2a9241", + * nsdOnboardingState: "CREATED", + * nsdOperationalState: "DISABLED", + * nsdUsageState: "NOT_IN_USE", + * tags: { + * Name: "Resource" + * } + * } + * *\/ + * ``` + * * @public */ export class CreateSolNetworkPackageCommand extends $Command diff --git a/clients/client-tnb/src/commands/DeleteSolFunctionPackageCommand.ts b/clients/client-tnb/src/commands/DeleteSolFunctionPackageCommand.ts index 1aaa5050b1475..77a68c49daef0 100644 --- a/clients/client-tnb/src/commands/DeleteSolFunctionPackageCommand.ts +++ b/clients/client-tnb/src/commands/DeleteSolFunctionPackageCommand.ts @@ -72,6 +72,20 @@ export interface DeleteSolFunctionPackageCommandOutput extends __MetadataBearer * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Delete a function package + * ```javascript + * // + * const input = { + * vnfPkgId: "fp-07aa863e53460a2a6" + * }; + * const command = new DeleteSolFunctionPackageCommand(input); + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ + * ``` + * * @public */ export class DeleteSolFunctionPackageCommand extends $Command diff --git a/clients/client-tnb/src/commands/DeleteSolNetworkInstanceCommand.ts b/clients/client-tnb/src/commands/DeleteSolNetworkInstanceCommand.ts index e649e292d5a55..ecbf030891fef 100644 --- a/clients/client-tnb/src/commands/DeleteSolNetworkInstanceCommand.ts +++ b/clients/client-tnb/src/commands/DeleteSolNetworkInstanceCommand.ts @@ -72,6 +72,20 @@ export interface DeleteSolNetworkInstanceCommandOutput extends __MetadataBearer * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Delete a Sol Network Instance. + * ```javascript + * // + * const input = { + * nsInstanceId: "ni-07aa863e53460a2a6" + * }; + * const command = new DeleteSolNetworkInstanceCommand(input); + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ + * ``` + * * @public */ export class DeleteSolNetworkInstanceCommand extends $Command diff --git a/clients/client-tnb/src/commands/DeleteSolNetworkPackageCommand.ts b/clients/client-tnb/src/commands/DeleteSolNetworkPackageCommand.ts index 7a824b199b0ce..e49cc643bdc5f 100644 --- a/clients/client-tnb/src/commands/DeleteSolNetworkPackageCommand.ts +++ b/clients/client-tnb/src/commands/DeleteSolNetworkPackageCommand.ts @@ -72,6 +72,20 @@ export interface DeleteSolNetworkPackageCommandOutput extends __MetadataBearer { * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Delete a Sol network package + * ```javascript + * // + * const input = { + * nsdInfoId: "np-0d5b823eb5c2a9241" + * }; + * const command = new DeleteSolNetworkPackageCommand(input); + * const response = await client.send(command); + * /* response is + * { /* metadata only *\/ } + * *\/ + * ``` + * * @public */ export class DeleteSolNetworkPackageCommand extends $Command diff --git a/clients/client-tnb/src/commands/GetSolFunctionInstanceCommand.ts b/clients/client-tnb/src/commands/GetSolFunctionInstanceCommand.ts index 5e956553b1e3b..bd545b755106a 100644 --- a/clients/client-tnb/src/commands/GetSolFunctionInstanceCommand.ts +++ b/clients/client-tnb/src/commands/GetSolFunctionInstanceCommand.ts @@ -104,6 +104,46 @@ export interface GetSolFunctionInstanceCommandOutput extends GetSolFunctionInsta * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Get a Sol Network Function Instance details + * ```javascript + * // + * const input = { + * vnfInstanceId: "fi-b9439c34c1ef86c54" + * }; + * const command = new GetSolFunctionInstanceCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:function-instance/fi-b9439c34c1ef86c54", + * id: "fi-b9439c34c1ef86c54", + * instantiatedVnfInfo: { + * vnfState: "STARTED", + * vnfcResourceInfo: [ + * { + * metadata: { + * cluster: "TestCluster", + * helmChart: "VnfHelmChart01", + * nodeGroup: "Core-EKS-TEST01-EKSNodeGroup-94BNRKWRV6MP" + * } + * } + * ] + * }, + * instantiationState: "INSTANTIATED", + * metadata: { + * createdAt: "2022-06-10T19:48:33Z", + * lastModified: "2022-06-10T19:48:33Z" + * }, + * nsInstanceId: "ni-07aa863e53460a2a6", + * vnfPkgId: "fp-07aa863e53460a2a6", + * vnfProductName: "VNFBuilder-AMF", + * vnfProvider: "VNFBuilder", + * vnfdId: "6625a858-2157-4d74-9197-a6ff67d51f3e", + * vnfdVersion: "1.0" + * } + * *\/ + * ``` + * * @public */ export class GetSolFunctionInstanceCommand extends $Command diff --git a/clients/client-tnb/src/commands/GetSolFunctionPackageCommand.ts b/clients/client-tnb/src/commands/GetSolFunctionPackageCommand.ts index b409a6add01b6..3a80c8d7392b1 100644 --- a/clients/client-tnb/src/commands/GetSolFunctionPackageCommand.ts +++ b/clients/client-tnb/src/commands/GetSolFunctionPackageCommand.ts @@ -100,6 +100,37 @@ export interface GetSolFunctionPackageCommandOutput extends GetSolFunctionPackag * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Describe a function package with correct vnfPkgId + * ```javascript + * // + * const input = { + * vnfPkgId: "fp-07aa863e53460a2a6" + * }; + * const command = new GetSolFunctionPackageCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:function-package/fp-07aa863e53460a2a6", + * id: "fp-07aa863e53460a2a6", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z", + * vnfd: { + * overrides: [] + * } + * }, + * onboardingState: "ONBOARDED", + * operationalState: "ENABLED", + * usageState: "IN_USE", + * vnfProductName: "NRF", + * vnfProvider: "VNFBuilder", + * vnfdId: "eefaac4a-cf5c-4b1f-869e-9d31a9fa6d71", + * vnfdVersion: "1.0.0" + * } + * *\/ + * ``` + * * @public */ export class GetSolFunctionPackageCommand extends $Command diff --git a/clients/client-tnb/src/commands/GetSolFunctionPackageContentCommand.ts b/clients/client-tnb/src/commands/GetSolFunctionPackageContentCommand.ts index fc9e512055e8f..b1e60358b6b1f 100644 --- a/clients/client-tnb/src/commands/GetSolFunctionPackageContentCommand.ts +++ b/clients/client-tnb/src/commands/GetSolFunctionPackageContentCommand.ts @@ -90,6 +90,24 @@ export interface GetSolFunctionPackageContentCommandOutput * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Get the content of a function package + * ```javascript + * // + * const input = { + * accept: "application/zip", + * vnfPkgId: "fp-07aa863e53460a2a6" + * }; + * const command = new GetSolFunctionPackageContentCommand(input); + * const response = await client.send(command); + * /* response is + * { + * contentType: "application/zip", + * packageContent: "dGVzdCBjb250ZW50IGhlcmU=" + * } + * *\/ + * ``` + * * @public */ export class GetSolFunctionPackageContentCommand extends $Command diff --git a/clients/client-tnb/src/commands/GetSolFunctionPackageDescriptorCommand.ts b/clients/client-tnb/src/commands/GetSolFunctionPackageDescriptorCommand.ts index 72c7fe6e8f5f3..0e6e6ad05c44a 100644 --- a/clients/client-tnb/src/commands/GetSolFunctionPackageDescriptorCommand.ts +++ b/clients/client-tnb/src/commands/GetSolFunctionPackageDescriptorCommand.ts @@ -88,6 +88,24 @@ export interface GetSolFunctionPackageDescriptorCommandOutput * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Get the descriptor of a function package + * ```javascript + * // + * const input = { + * accept: "text/plain", + * vnfPkgId: "fp-07aa863e53460a2a6" + * }; + * const command = new GetSolFunctionPackageDescriptorCommand(input); + * const response = await client.send(command); + * /* response is + * { + * contentType: "text/plain", + * vnfd: "dGVzdCBjb250ZW50IGhlcmU=" + * } + * *\/ + * ``` + * * @public */ export class GetSolFunctionPackageDescriptorCommand extends $Command diff --git a/clients/client-tnb/src/commands/GetSolNetworkInstanceCommand.ts b/clients/client-tnb/src/commands/GetSolNetworkInstanceCommand.ts index 90f42253ebf81..b7d5cb76f60f9 100644 --- a/clients/client-tnb/src/commands/GetSolNetworkInstanceCommand.ts +++ b/clients/client-tnb/src/commands/GetSolNetworkInstanceCommand.ts @@ -92,6 +92,35 @@ export interface GetSolNetworkInstanceCommandOutput extends GetSolNetworkInstanc * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Get a Sol Network Instance details + * ```javascript + * // + * const input = { + * nsInstanceId: "ni-07aa863e53460a2a6" + * }; + * const command = new GetSolNetworkInstanceCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-instance/ni-07aa863e53460a2a6", + * id: "ni-07aa863e53460a2a6", + * lcmOpInfo: { + * nsLcmOpOccId: "no-0d5b823eb5c2a9241" + * }, + * metadata: { + * createdAt: "2022-06-10T19:48:33Z", + * lastModified: "2022-06-10T19:48:33Z" + * }, + * nsInstanceDescription: "Network service for CITY", + * nsInstanceName: "CITY Instance", + * nsState: "INSTANTIATED", + * nsdId: "6625a858-2157-4d74-9197-a6ff67d51f3e", + * nsdInfoId: "np-07aa863e53460a2a6" + * } + * *\/ + * ``` + * * @public */ export class GetSolNetworkInstanceCommand extends $Command diff --git a/clients/client-tnb/src/commands/GetSolNetworkOperationCommand.ts b/clients/client-tnb/src/commands/GetSolNetworkOperationCommand.ts index 16ad207f055eb..a79519ce1aca7 100644 --- a/clients/client-tnb/src/commands/GetSolNetworkOperationCommand.ts +++ b/clients/client-tnb/src/commands/GetSolNetworkOperationCommand.ts @@ -120,6 +120,180 @@ export interface GetSolNetworkOperationCommandOutput extends GetSolNetworkOperat * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Get Sol Network Instantiate operation + * ```javascript + * // + * const input = { + * nsLcmOpOccId: "no-0d5b823eb5c2a9241" + * }; + * const command = new GetSolNetworkOperationCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-operation/no-0d5b823eb5c2a9241", + * id: "no-0d5b823eb5c2a9241", + * lcmOperationType: "INSTANTIATE", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * instantiateMetadata: { + * additionalParamsForNs: { + * availability_zone: "us-west-2a", + * cidr_block: "10.0.0.0/16" + * }, + * nsdInfoId: "np-0d0f3e2eae4fc1ac1" + * }, + * lastModified: "2022-06-10T21:48:33Z" + * }, + * nsInstanceId: "ni-0d5b823eb5c2a9241", + * operationState: "COMPLETED", + * tasks: [ + * { + * taskContext: { + * cloudWatchLogsARN: "arn:aws:logs:us-east-1:123456789000:log-group:/aws/codebuild/TestProject:log-stream:a4dc6b0b-2ea3-48c5-bb30-636c4f376b81" + * }, + * taskEndTime: "2022-06-10T21:48:33Z", + * taskName: "HookExecution", + * taskStartTime: "2022-06-10T19:48:34Z", + * taskStatus: "IN_PROGRESS" + * } + * ] + * } + * *\/ + * ``` + * + * @example Get Sol Network Update operation + * ```javascript + * // + * const input = { + * nsLcmOpOccId: "no-0d5b823eb5c2a9241" + * }; + * const command = new GetSolNetworkOperationCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-operation/no-0d5b823eb5c2a9241", + * id: "no-0d5b823eb5c2a9241", + * lcmOperationType: "UPDATE", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z", + * updateNsMetadata: { + * additionalParamsForNs: { + * availability_zone: "us-west-2a", + * cidr_block: "10.0.0.0/16" + * }, + * nsdInfoId: "np-0d0f3e2eae4fc1ac1" + * } + * }, + * nsInstanceId: "ni-0d5b823eb5c2a9241", + * operationState: "COMPLETED", + * tasks: [ + * { + * taskContext: { + * cloudWatchLogsARN: "arn:aws:logs:us-east-1:123456789000:log-group:/aws/codebuild/TestProject:log-stream:a4dc6b0b-2ea3-48c5-bb30-636c4f376b81" + * }, + * taskEndTime: "2022-06-10T21:48:33Z", + * taskName: "HookExecution", + * taskStartTime: "2022-06-10T19:48:34Z", + * taskStatus: "IN_PROGRESS" + * } + * ], + * updateType: "UPDATE_NS" + * } + * *\/ + * ``` + * + * @example Get Sol Network Update operation + * ```javascript + * // + * const input = { + * nsLcmOpOccId: "no-0d5b823eb5c2a9241" + * }; + * const command = new GetSolNetworkOperationCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-operation/no-0d5b823eb5c2a9241", + * id: "no-0d5b823eb5c2a9241", + * lcmOperationType: "UPDATE", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z", + * modifyVnfInfoMetadata: { + * vnfConfigurableProperties: { + * pcf.pods: "10", + * pcf.port: "8080" + * }, + * vnfInstanceId: "fi-0d5b823eb5c2a9241" + * } + * }, + * nsInstanceId: "ni-0d5b823eb5c2a9241", + * operationState: "COMPLETED", + * tasks: [ + * { + * taskContext: { + * cloudWatchLogsARN: "arn:aws:logs:us-east-1:123456789000:log-group:/aws/codebuild/TestProject:log-stream:a4dc6b0b-2ea3-48c5-bb30-636c4f376b81" + * }, + * taskEndTime: "2022-06-10T21:48:33Z", + * taskName: "HookExecution", + * taskStartTime: "2022-06-10T19:48:34Z", + * taskStatus: "IN_PROGRESS" + * } + * ], + * updateType: "MODIFY_VNF_INFORMATION" + * } + * *\/ + * ``` + * + * @example Get Sol Network Instantiate operation which has a failure + * ```javascript + * // + * const input = { + * nsLcmOpOccId: "no-0d5b823eb5c2a9241" + * }; + * const command = new GetSolNetworkOperationCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-operation/no-0d5b823eb5c2a9241", + * error: { + * detail: "The service encountered an error. Sorry for the inconvenience.", + * title: "InternalServerException" + * }, + * id: "no-0d5b823eb5c2a9241", + * lcmOperationType: "INSTANTIATE", + * metadata: { + * createdAt: "2022-06-10T19:48:33Z", + * lastModified: "2022-06-10T19:48:33Z" + * }, + * nsInstanceId: "ni-0d5b823eb5c2a9241", + * operationState: "FAILED", + * tasks: [ + * { + * taskContext: { + * cloudWatchLogsARN: "arn:aws:logs:us-east-1:123456789000:log-group:/aws/codebuild/TestProject:log-stream:a4dc6b0b-2ea3-48c5-bb30-636c4f376b81" + * }, + * taskEndTime: "2022-06-10T21:48:33Z", + * taskName: "HookExecution", + * taskStartTime: "2022-06-10T19:48:34Z", + * taskStatus: "IN_PROGRESS" + * }, + * { + * taskEndTime: "2022-06-10T21:48:33Z", + * taskErrorDetails: { + * cause: "InternalServerException", + * details: "The service encountered an error. Sorry for the inconvenience." + * }, + * taskName: "HookExecution", + * taskStartTime: "2022-06-10T19:48:34Z", + * taskStatus: "ERROR" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class GetSolNetworkOperationCommand extends $Command diff --git a/clients/client-tnb/src/commands/GetSolNetworkPackageCommand.ts b/clients/client-tnb/src/commands/GetSolNetworkPackageCommand.ts index 5805d91052868..9b8edc9f4fbfc 100644 --- a/clients/client-tnb/src/commands/GetSolNetworkPackageCommand.ts +++ b/clients/client-tnb/src/commands/GetSolNetworkPackageCommand.ts @@ -101,6 +101,48 @@ export interface GetSolNetworkPackageCommandOutput extends GetSolNetworkPackageO * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Describe an individual Sol network package + * ```javascript + * // + * const input = { + * nsdInfoId: "np-0d5b823eb5c2a9241" + * }; + * const command = new GetSolNetworkPackageCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-package/np-0d5b823eb5c2a9241", + * id: "np-0d5b823eb5c2a9241", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z", + * nsd: { + * overrides: [ + * { + * defaultValue: "10.0.0.0/24", + * name: "cidr_block" + * }, + * { + * name: "some_vnf.vnf_prop" + * } + * ] + * } + * }, + * nsdId: "be1abe66-1fcc-11ec-9621-0242ac130002", + * nsdName: "Sample-City", + * nsdOnboardingState: "ONBOARDED", + * nsdOperationalState: "ENABLED", + * nsdUsageState: "IN_USE", + * nsdVersion: "1.0", + * vnfPkgIds: [ + * "fp-0b627c4a170a97f79", + * "fp-8c253b2e898d23f92" + * ] + * } + * *\/ + * ``` + * * @public */ export class GetSolNetworkPackageCommand extends $Command diff --git a/clients/client-tnb/src/commands/GetSolNetworkPackageContentCommand.ts b/clients/client-tnb/src/commands/GetSolNetworkPackageContentCommand.ts index ee65a6b986437..d1bf5fd76520c 100644 --- a/clients/client-tnb/src/commands/GetSolNetworkPackageContentCommand.ts +++ b/clients/client-tnb/src/commands/GetSolNetworkPackageContentCommand.ts @@ -87,6 +87,24 @@ export interface GetSolNetworkPackageContentCommandOutput * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Get a network package Content + * ```javascript + * // + * const input = { + * accept: "application/zip", + * nsdInfoId: "np-0d5b823eb5c2a9241" + * }; + * const command = new GetSolNetworkPackageContentCommand(input); + * const response = await client.send(command); + * /* response is + * { + * contentType: "application/zip", + * nsdContent: "dGVzdCBjb250ZW50IGhlcmU=" + * } + * *\/ + * ``` + * * @public */ export class GetSolNetworkPackageContentCommand extends $Command diff --git a/clients/client-tnb/src/commands/GetSolNetworkPackageDescriptorCommand.ts b/clients/client-tnb/src/commands/GetSolNetworkPackageDescriptorCommand.ts index a9727b59a2be6..f36db66b7db80 100644 --- a/clients/client-tnb/src/commands/GetSolNetworkPackageDescriptorCommand.ts +++ b/clients/client-tnb/src/commands/GetSolNetworkPackageDescriptorCommand.ts @@ -86,6 +86,23 @@ export interface GetSolNetworkPackageDescriptorCommandOutput * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Get the descriptor of a Network Pacakge + * ```javascript + * // + * const input = { + * nsdInfoId: "np-0d5b823eb5c2a9241" + * }; + * const command = new GetSolNetworkPackageDescriptorCommand(input); + * const response = await client.send(command); + * /* response is + * { + * contentType: "text/plain", + * nsd: "dGVzdCBjb250ZW50IGhlcmU=" + * } + * *\/ + * ``` + * * @public */ export class GetSolNetworkPackageDescriptorCommand extends $Command diff --git a/clients/client-tnb/src/commands/InstantiateSolNetworkInstanceCommand.ts b/clients/client-tnb/src/commands/InstantiateSolNetworkInstanceCommand.ts index 200d715171276..2acf8903faf98 100644 --- a/clients/client-tnb/src/commands/InstantiateSolNetworkInstanceCommand.ts +++ b/clients/client-tnb/src/commands/InstantiateSolNetworkInstanceCommand.ts @@ -95,6 +95,47 @@ export interface InstantiateSolNetworkInstanceCommandOutput * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Instantiate a Sol Network Instance + * ```javascript + * // + * const input = { + * nsInstanceId: "ni-0d5b823eb5c2a9241", + * tags: { + * Name: "Resource" + * } + * }; + * const command = new InstantiateSolNetworkInstanceCommand(input); + * const response = await client.send(command); + * /* response is + * { + * nsLcmOpOccId: "no-0d5b823eb5c2a9241", + * tags: { + * Name: "Resource" + * } + * } + * *\/ + * ``` + * + * @example Instantiate a Sol Network Instance with Overrides + * ```javascript + * // + * const input = { + * additionalParamsForNs: { + * availability_zone: "us-west-2a", + * cidr_block: "10.0.0.0/16" + * }, + * nsInstanceId: "ni-0d5b823eb5c2a9241" + * }; + * const command = new InstantiateSolNetworkInstanceCommand(input); + * const response = await client.send(command); + * /* response is + * { + * nsLcmOpOccId: "no-0d5b823eb5c2a9241" + * } + * *\/ + * ``` + * * @public */ export class InstantiateSolNetworkInstanceCommand extends $Command diff --git a/clients/client-tnb/src/commands/ListSolFunctionInstancesCommand.ts b/clients/client-tnb/src/commands/ListSolFunctionInstancesCommand.ts index e2861367a5ef6..6838487d7a985 100644 --- a/clients/client-tnb/src/commands/ListSolFunctionInstancesCommand.ts +++ b/clients/client-tnb/src/commands/ListSolFunctionInstancesCommand.ts @@ -87,6 +87,80 @@ export interface ListSolFunctionInstancesCommandOutput extends ListSolFunctionIn * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example List Sol Function instances + * ```javascript + * // + * const input = { /* empty *\/ }; + * const command = new ListSolFunctionInstancesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * functionInstances: [ + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:function-instance/fi-b9439c34c1ef86c54", + * id: "fi-b9439c34c1ef86c54", + * instantiatedVnfInfo: { + * vnfState: "STARTED" + * }, + * instantiationState: "INSTANTIATED", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z" + * }, + * nsInstanceId: "ni-07aa863e53460a2a6", + * vnfPkgId: "fp-07aa863e53460a2a6" + * }, + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:function-instance/fi-b9439c34c1efabcd1", + * id: "fi-b9439c34c1efabcd1", + * instantiatedVnfInfo: { + * vnfState: "STOPPED" + * }, + * instantiationState: "INSTANTIATED", + * metadata: { + * createdAt: "2022-06-10T11:48:34Z", + * lastModified: "2023-06-28T21:48:33Z" + * }, + * nsInstanceId: "ni-07aa863e53460a123", + * vnfPkgId: "fp-146a863e53460a2a6" + * } + * ] + * } + * *\/ + * ``` + * + * @example List Sol Function Instances with nextToken and maxResults + * ```javascript + * // + * const input = { + * maxResults: 25, + * nextToken: "" + * }; + * const command = new ListSolFunctionInstancesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * functionInstances: [ + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:function-instance/fi-b9439c34c1ef86c54", + * id: "fi-b9439c34c1ef86c54", + * instantiatedVnfInfo: { + * vnfState: "STARTED" + * }, + * instantiationState: "INSTANTIATED", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z" + * }, + * nsInstanceId: "ni-07aa863e53460a2a6", + * vnfPkgId: "fp-07aa863e53460a2a6" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListSolFunctionInstancesCommand extends $Command diff --git a/clients/client-tnb/src/commands/ListSolFunctionPackagesCommand.ts b/clients/client-tnb/src/commands/ListSolFunctionPackagesCommand.ts index 1841ed5c215c0..935f1e5055774 100644 --- a/clients/client-tnb/src/commands/ListSolFunctionPackagesCommand.ts +++ b/clients/client-tnb/src/commands/ListSolFunctionPackagesCommand.ts @@ -87,6 +87,89 @@ export interface ListSolFunctionPackagesCommandOutput extends ListSolFunctionPac * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example List information about multiple function packages without PaginationToken + * ```javascript + * // + * const input = { + * maxResults: 25, + * nextToken: "" + * }; + * const command = new ListSolFunctionPackagesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * functionPackages: [ + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:function-package/fp-07aa863e53460a2a6", + * id: "fp-07aa863e53460a2a6", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z" + * }, + * onboardingState: "ONBOARDED", + * operationalState: "ENABLED", + * usageState: "IN_USE", + * vnfProductName: "NRF", + * vnfProvider: "VNFBuilder", + * vnfdId: "arn:aws:tnb:123456789000:vnf/nrf", + * vnfdVersion: "1.0" + * } + * ], + * nextToken: "ug2E9SheCpyAmeLItmHF99a8GNI6yAHxXIvgBkdiA2ixKvqdhYpNBLWHDl6vGnWt7Y4CB6m1Dkz86gSwcDouMO1pSrN%2BlGY2kbNtfTeMgnuB6bmwP/UU12r7MkHQyPCWMYG8OuCXkDBOYeX8qjRDTJ5vxAyrwtynaB6XDNDZA2DscCjcD7kpNzf3xlPRCwd6" + * } + * *\/ + * ``` + * + * @example List information about multiple function packages with PaginationToken + * ```javascript + * // + * const input = { + * maxResults: 25, + * nextToken: "ug2E9SheCpyAmeLItmHF99a8GNI6yAHxXIvgBkdiA2ixKvqdhYpNBLWHDl6vGnWt7Y4CB6m1Dkz86gSwcDouMO1pSrN%2BlGY2kbNtfTeMgnuB6bmwP/UU12r7MkHQyPCWMYG8OuCXkDBOYeX8qjRDTJ5vxAyrwtynaB6XDNDZA2DscCjcD7kpNzf3xlPRCwd6" + * }; + * const command = new ListSolFunctionPackagesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * functionPackages: [ + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:function-package/fp-07aa863e53460a2a6", + * id: "fp-07aa863e53460a2a6", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z" + * }, + * onboardingState: "ONBOARDED", + * operationalState: "ENABLED", + * usageState: "IN_USE", + * vnfProductName: "NRF", + * vnfProvider: "VNFBuilder", + * vnfdId: "arn:aws:tnb:123456789000:vnf/nrf", + * vnfdVersion: "1.0" + * } + * ], + * nextToken: "ug2E9SheCpyAmeLItmHF98uvZTosFhZ1wyglENkc3UZ12UuRLmtGtojRynFjRR5zW%2FycBL6QX8AU%2B1IRWL%2BVjNNL7KBiaD87KM9WcUMQzryLtOazGHexujJncJJ0YGsxSLSrmPGx7dM1EoNKX8oxYA%3D%3D" + * } + * *\/ + * ``` + * + * @example No more function packages to return + * ```javascript + * // + * const input = { + * maxResults: 25, + * nextToken: "ug2E9SheCpyAmeLItmHF98uvZTosFhZ1wyglENkc3UZ12UuRLmtGtojRynFjRR5zW%2FycBL6QX8AU%2B1IRWL%2BVjNNL7KBiaD87KM9WcUMQzryLtOazGHexujJncJJ0YGsxSLSrmPGx7dM1EoNKX8oxYA%3D%3D" + * }; + * const command = new ListSolFunctionPackagesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * functionPackages: [] + * } + * *\/ + * ``` + * * @public */ export class ListSolFunctionPackagesCommand extends $Command diff --git a/clients/client-tnb/src/commands/ListSolNetworkInstancesCommand.ts b/clients/client-tnb/src/commands/ListSolNetworkInstancesCommand.ts index 4348c5b1eac3d..15907f04efd59 100644 --- a/clients/client-tnb/src/commands/ListSolNetworkInstancesCommand.ts +++ b/clients/client-tnb/src/commands/ListSolNetworkInstancesCommand.ts @@ -85,6 +85,64 @@ export interface ListSolNetworkInstancesCommandOutput extends ListSolNetworkInst * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example List Sol Network Instantiate instances + * ```javascript + * // + * const input = { /* empty *\/ }; + * const command = new ListSolNetworkInstancesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * networkInstances: [ + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-instance/ni-07aa863e53460a2a6", + * id: "ni-07aa863e53460a2a6", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z" + * }, + * nsInstanceDescription: "Network service for CITY", + * nsInstanceName: "CITY Instance", + * nsState: "INSTANTIATED", + * nsdId: "e851fd14-abe3-4535-85e6-6060636fd519", + * nsdInfoId: "np-0d5b823eb5c2a9241" + * } + * ] + * } + * *\/ + * ``` + * + * @example List Sol Network Instances with nextToken and maxResults + * ```javascript + * // + * const input = { + * maxResults: 25, + * nextToken: "" + * }; + * const command = new ListSolNetworkInstancesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * networkInstances: [ + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-instance/ni-07aa863e53460a2a6", + * id: "ni-07aa863e53460a2a6", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z" + * }, + * nsInstanceDescription: "Network service for CITY", + * nsInstanceName: "CITY Instance", + * nsState: "INSTANTIATED", + * nsdId: "e851fd14-abe3-4535-85e6-6060636fd519", + * nsdInfoId: "np-0d5b823eb5c2a9241" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListSolNetworkInstancesCommand extends $Command diff --git a/clients/client-tnb/src/commands/ListSolNetworkOperationsCommand.ts b/clients/client-tnb/src/commands/ListSolNetworkOperationsCommand.ts index b868768e54d29..53e768de94b16 100644 --- a/clients/client-tnb/src/commands/ListSolNetworkOperationsCommand.ts +++ b/clients/client-tnb/src/commands/ListSolNetworkOperationsCommand.ts @@ -92,6 +92,124 @@ export interface ListSolNetworkOperationsCommandOutput extends ListSolNetworkOpe * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example List Sol Network Instantiate operations + * ```javascript + * // + * const input = { /* empty *\/ }; + * const command = new ListSolNetworkOperationsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * networkOperations: [ + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-operation/no-0d5b823eb5c2a9241", + * id: "no-0d5b823eb5c2a9241", + * lcmOperationType: "INSTANTIATE", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z", + * nsdInfoId: "np-0d0f3e2eae4fc1ac1" + * }, + * nsInstanceId: "ni-0d5b823eb5c2a9241", + * operationState: "COMPLETED" + * } + * ] + * } + * *\/ + * ``` + * + * @example List Sol Network Instantiate operations with nextToken and maxResults + * ```javascript + * // + * const input = { + * maxResults: 25, + * nextToken: "" + * }; + * const command = new ListSolNetworkOperationsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * networkOperations: [ + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-operation/no-0d5b823eb5c2a9241", + * error: { + * detail: "An error occurred (InsufficientInstanceCapacity) when calling the RunInstances operation (reached max retries: 4). We currently do not have sufficient capacity in the Availability Zone you requested", + * title: "InsufficientInstanceCapacity" + * }, + * id: "no-0d5b823eb5c2a9241", + * lcmOperationType: "INSTANTIATE", + * metadata: { + * createdAt: "2022-06-10T19:48:33Z", + * lastModified: "2022-06-10T19:48:33Z", + * nsdInfoId: "np-0d0f3e2eae4fc1ac1" + * }, + * nsInstanceId: "ni-0d5b823eb5c2a9241", + * operationState: "COMPLETED" + * } + * ] + * } + * *\/ + * ``` + * + * @example List Sol Network Update operations + * ```javascript + * // + * const input = { + * nsInstanceId: "ni-0d5b823eb5c2a9241" + * }; + * const command = new ListSolNetworkOperationsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * networkOperations: [ + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-operation/no-0d5b823eb5c2a9241", + * id: "no-0d5b823eb5c2a9241", + * lcmOperationType: "UPDATE", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z", + * vnfInstanceId: "fi-0d5b823eb5c2a9241" + * }, + * nsInstanceId: "ni-0d5b823eb5c2a9241", + * operationState: "COMPLETED", + * updateType: "MODIFY_VNF_INFORMATION" + * } + * ] + * } + * *\/ + * ``` + * + * @example List Sol Network Update operations + * ```javascript + * // + * const input = { + * nsInstanceId: "ni-0d5b823eb5c2a9241" + * }; + * const command = new ListSolNetworkOperationsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * networkOperations: [ + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-operation/no-0d5b823eb5c2a9241", + * id: "no-0d5b823eb5c2a9241", + * lcmOperationType: "UPDATE", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z", + * nsdInfoId: "np-0d0f3e2eae4fc1ac1" + * }, + * nsInstanceId: "ni-0d5b823eb5c2a9241", + * operationState: "COMPLETED", + * updateType: "UPDATE_NS" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListSolNetworkOperationsCommand extends $Command diff --git a/clients/client-tnb/src/commands/ListSolNetworkPackagesCommand.ts b/clients/client-tnb/src/commands/ListSolNetworkPackagesCommand.ts index a583930afd5f5..e2639bf718600 100644 --- a/clients/client-tnb/src/commands/ListSolNetworkPackagesCommand.ts +++ b/clients/client-tnb/src/commands/ListSolNetworkPackagesCommand.ts @@ -91,6 +91,107 @@ export interface ListSolNetworkPackagesCommandOutput extends ListSolNetworkPacka * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example List information about multiple network packages without PaginationToken + * ```javascript + * // + * const input = { + * maxResults: 25, + * nextToken: "" + * }; + * const command = new ListSolNetworkPackagesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * networkPackages: [ + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-package/np-0d5b823eb5c2a9241", + * id: "np-0d5b823eb5c2a9241", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z" + * }, + * nsdDesigner: "Sample", + * nsdId: "be1abe66-1fcc-11ec-9621-0242ac130002", + * nsdInvariantId: "SAMPLE_CITY", + * nsdName: "Sample-City", + * nsdOnboardingState: "ONBOARDED", + * nsdOperationalState: "ENABLED", + * nsdUsageState: "IN_USE", + * nsdVersion: "1.0", + * vnfPkgIds: [ + * "fp-0b627c4a170a97f79", + * "fp-09a2ba09fad0212cd" + * ] + * }, + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-package/np-0d5b823eb5c2a9789", + * id: "np-0d5b823eb5c2a9789", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z" + * }, + * nsdOnboardingState: "CREATED", + * nsdOperationalState: "DISABLED", + * nsdUsageState: "NOT_IN_USE" + * } + * ], + * nextToken: "ug2E9SheCpyAmeLItmHF99a8GNI6yAHxXIvgBkdiA2ixKvqdhYpNBLWHDl6vGnWt7Y4CB6m1Dkz86gSwcDouMO1pSrN%2BlGY2kbNtfTeMgnuB6bmwP/UU12r7MkHQyPCWMYG8OuCXkDBOYeX8qjRDTJ5vxAyrwtynaB6XDNDZA2DscCjcD7kpNzf3xlPRCwd6" + * } + * *\/ + * ``` + * + * @example List information about multiple network packages with PaginationToken + * ```javascript + * // + * const input = { + * maxResults: 25, + * nextToken: "ug2E9SheCpyAmeLItmHF95t1rBBsFyzy5hsuauDTqaukll3AGHaTz%2B4utHS3OMuMcyKW6Hmk25aB6wtV%2BFxCx9Adw5fDSq9D8lVa6sr0Sq0BF7Fj0mYegd0a/XiFP4j/58ZIrtRl0M3Z55Z/wTqwIietXJVfFX84ZnIMjiEiFb3KIIdrKS8vSgMZ18t3Gj5p" + * }; + * const command = new ListSolNetworkPackagesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * networkPackages: [ + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-package/np-0d5b823eb5c2a9241", + * id: "np-0d5b823eb5c2a9241", + * metadata: { + * createdAt: "2022-06-10T19:48:34Z", + * lastModified: "2022-06-10T21:48:33Z" + * }, + * nsdDesigner: "Sample", + * nsdId: "be1abe66-1fcc-11ec-9621-0242ac130002", + * nsdInvariantId: "SAMPLE_CITY", + * nsdName: "Sample-City", + * nsdOnboardingState: "ONBOARDED", + * nsdOperationalState: "ENABLED", + * nsdUsageState: "IN_USE", + * nsdVersion: "1.0", + * vnfPkgIds: [ + * "fp-0b627c4a170a97f79", + * "fp-09a2ba09fad0212cd" + * ] + * } + * ], + * nextToken: "ug2E9SheCpyAmeLItmHF93AYTN36C2xOijk0IW9FbkywwkM3QphGA%2BMbsKhEhOl3nacLxMMiBL9WOhOdo/ZCXfmS2/tHpzuWjvSODvivIJONDw3bUxYqjsT2w/lDWekKm9cRGhLaK6kCr1XBvm3USj/r6dBDL3gHYrwfmEGL7MRffCgc2IqYOL6O2Mhvbn89" + * } + * *\/ + * ``` + * + * @example No more network packages to return + * ```javascript + * // + * const input = { /* empty *\/ }; + * const command = new ListSolNetworkPackagesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * networkPackages: [] + * } + * *\/ + * ``` + * * @public */ export class ListSolNetworkPackagesCommand extends $Command diff --git a/clients/client-tnb/src/commands/ListTagsForResourceCommand.ts b/clients/client-tnb/src/commands/ListTagsForResourceCommand.ts index 77bebf7852770..8c6edae6046a5 100644 --- a/clients/client-tnb/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-tnb/src/commands/ListTagsForResourceCommand.ts @@ -77,6 +77,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-tnb/src/commands/PutSolFunctionPackageContentCommand.ts b/clients/client-tnb/src/commands/PutSolFunctionPackageContentCommand.ts index fc21143ef923a..a66db07b62fc0 100644 --- a/clients/client-tnb/src/commands/PutSolFunctionPackageContentCommand.ts +++ b/clients/client-tnb/src/commands/PutSolFunctionPackageContentCommand.ts @@ -104,6 +104,33 @@ export interface PutSolFunctionPackageContentCommandOutput * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Upload a function package content + * ```javascript + * // + * const input = { + * contentType: "application/zip", + * file: "UEsDBBQAAAAAAPqLiVMAAAAAAAAAAAAAAAAMACAAZnJlZTVnYy1hbWYvVVQNAAcIrrJhBK", + * vnfPkgId: "fp-07aa863e53460a2a6" + * }; + * const command = new PutSolFunctionPackageContentCommand(input); + * const response = await client.send(command); + * /* response is + * { + * id: "fp-07aa863e53460a2a6", + * metadata: { + * vnfd: { + * overrides: [] + * } + * }, + * vnfProductName: "Sample AMF", + * vnfProvider: "Sample", + * vnfdId: "0d72acd9-e45d-4644-9bcd-1fe67cd0e2c8", + * vnfdVersion: "1.0.0" + * } + * *\/ + * ``` + * * @public */ export class PutSolFunctionPackageContentCommand extends $Command diff --git a/clients/client-tnb/src/commands/PutSolNetworkPackageContentCommand.ts b/clients/client-tnb/src/commands/PutSolNetworkPackageContentCommand.ts index c4c0a33f5ac61..d0fc7113917d2 100644 --- a/clients/client-tnb/src/commands/PutSolNetworkPackageContentCommand.ts +++ b/clients/client-tnb/src/commands/PutSolNetworkPackageContentCommand.ts @@ -105,6 +105,45 @@ export interface PutSolNetworkPackageContentCommandOutput extends PutSolNetworkP * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Upload the network package content of an NSD archive + * ```javascript + * // + * const input = { + * contentType: "application/zip", + * file: "UEsDBBQAAAAAAPqLiVMAAAAAAAAAAAAAA", + * nsdInfoId: "np-0d5b823eb5c2a9241" + * }; + * const command = new PutSolNetworkPackageContentCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-package/np-0d5b823eb5c2a9241", + * id: "np-0d5b823eb5c2a9241", + * metadata: { + * nsd: { + * overrides: [ + * { + * defaultValue: "10.0.0.0/24", + * name: "cidr_block" + * }, + * { + * name: "some_vnf.vnf_prop" + * } + * ] + * } + * }, + * nsdId: "0d72acd9-e45d-4644-9bcd-1fe67cd0e2c8", + * nsdName: "Sample Single Cluster", + * nsdVersion: "1.0.0", + * vnfPkgIds: [ + * "fp-1234567890abcdabc", + * "fp-0b627c4a170a97f79" + * ] + * } + * *\/ + * ``` + * * @public */ export class PutSolNetworkPackageContentCommand extends $Command diff --git a/clients/client-tnb/src/commands/TagResourceCommand.ts b/clients/client-tnb/src/commands/TagResourceCommand.ts index 5aa299d075831..b3783c514772c 100644 --- a/clients/client-tnb/src/commands/TagResourceCommand.ts +++ b/clients/client-tnb/src/commands/TagResourceCommand.ts @@ -73,6 +73,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-tnb/src/commands/TerminateSolNetworkInstanceCommand.ts b/clients/client-tnb/src/commands/TerminateSolNetworkInstanceCommand.ts index fdcaa4f1fd784..7583657c9dbf9 100644 --- a/clients/client-tnb/src/commands/TerminateSolNetworkInstanceCommand.ts +++ b/clients/client-tnb/src/commands/TerminateSolNetworkInstanceCommand.ts @@ -90,6 +90,28 @@ export interface TerminateSolNetworkInstanceCommandOutput extends TerminateSolNe * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Terminate a Sol Network Instance + * ```javascript + * // + * const input = { + * nsInstanceId: "ni-0d5b823eb5c2a9241", + * tags: { + * Name: "Resource" + * } + * }; + * const command = new TerminateSolNetworkInstanceCommand(input); + * const response = await client.send(command); + * /* response is + * { + * nsLcmOpOccId: "no-0d5b823eb5c2a9241", + * tags: { + * Name: "Resource" + * } + * } + * *\/ + * ``` + * * @public */ export class TerminateSolNetworkInstanceCommand extends $Command diff --git a/clients/client-tnb/src/commands/UntagResourceCommand.ts b/clients/client-tnb/src/commands/UntagResourceCommand.ts index 841b3df0535ee..b8cc457d47962 100644 --- a/clients/client-tnb/src/commands/UntagResourceCommand.ts +++ b/clients/client-tnb/src/commands/UntagResourceCommand.ts @@ -73,6 +73,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-tnb/src/commands/UpdateSolFunctionPackageCommand.ts b/clients/client-tnb/src/commands/UpdateSolFunctionPackageCommand.ts index f0669c5c52a86..d2d388285eac2 100644 --- a/clients/client-tnb/src/commands/UpdateSolFunctionPackageCommand.ts +++ b/clients/client-tnb/src/commands/UpdateSolFunctionPackageCommand.ts @@ -73,6 +73,39 @@ export interface UpdateSolFunctionPackageCommandOutput extends UpdateSolFunction * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Enable a function package's Operational State + * ```javascript + * // + * const input = { + * operationalState: "ENABLED", + * vnfPkgId: "fp-07aa863e53460a2a6" + * }; + * const command = new UpdateSolFunctionPackageCommand(input); + * const response = await client.send(command); + * /* response is + * { + * operationalState: "ENABLED" + * } + * *\/ + * ``` + * + * @example Disable a function package's Operational State + * ```javascript + * // + * const input = { + * operationalState: "DISABLED", + * vnfPkgId: "fp-07aa863e53460a2a6" + * }; + * const command = new UpdateSolFunctionPackageCommand(input); + * const response = await client.send(command); + * /* response is + * { + * operationalState: "DISABLED" + * } + * *\/ + * ``` + * * @public */ export class UpdateSolFunctionPackageCommand extends $Command diff --git a/clients/client-tnb/src/commands/UpdateSolNetworkInstanceCommand.ts b/clients/client-tnb/src/commands/UpdateSolNetworkInstanceCommand.ts index 08be16349c99a..81ebfbbdeee66 100644 --- a/clients/client-tnb/src/commands/UpdateSolNetworkInstanceCommand.ts +++ b/clients/client-tnb/src/commands/UpdateSolNetworkInstanceCommand.ts @@ -96,6 +96,65 @@ export interface UpdateSolNetworkInstanceCommandOutput extends UpdateSolNetworkI * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Update a Sol Network Instance + * ```javascript + * // + * const input = { + * modifyVnfInfoData: { + * vnfConfigurableProperties: { + * pcf.pods: "10", + * pcf.port: "8080" + * }, + * vnfInstanceId: "fi-0d5b823eb5c2a9241" + * }, + * nsInstanceId: "ni-0d5b823eb5c2a9241", + * tags: { + * Name: "Resource" + * }, + * updateType: "MODIFY_VNF_INFORMATION" + * }; + * const command = new UpdateSolNetworkInstanceCommand(input); + * const response = await client.send(command); + * /* response is + * { + * nsLcmOpOccId: "no-0d5b823eb5c2a9241", + * tags: { + * Name: "Resource" + * } + * } + * *\/ + * ``` + * + * @example Update a Sol Network Instance + * ```javascript + * // + * const input = { + * nsInstanceId: "ni-0d5b823eb5c2a9241", + * tags: { + * Name: "Resource" + * }, + * updateNs: { + * additionalParamsForNs: { + * availability_zone: "us-west-2a", + * cidr_block: "10.0.0.0/16" + * }, + * nsdInfoId: "np-0d5b823eb5c2a9241" + * }, + * updateType: "UPDATE_NS" + * }; + * const command = new UpdateSolNetworkInstanceCommand(input); + * const response = await client.send(command); + * /* response is + * { + * nsLcmOpOccId: "no-0d5b823eb5c2a9241", + * tags: { + * Name: "Resource" + * } + * } + * *\/ + * ``` + * * @public */ export class UpdateSolNetworkInstanceCommand extends $Command diff --git a/clients/client-tnb/src/commands/UpdateSolNetworkPackageCommand.ts b/clients/client-tnb/src/commands/UpdateSolNetworkPackageCommand.ts index 8a1b70b4cb4df..1cf35b55ba704 100644 --- a/clients/client-tnb/src/commands/UpdateSolNetworkPackageCommand.ts +++ b/clients/client-tnb/src/commands/UpdateSolNetworkPackageCommand.ts @@ -74,6 +74,39 @@ export interface UpdateSolNetworkPackageCommandOutput extends UpdateSolNetworkPa * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Enable a network package's Operational State + * ```javascript + * // + * const input = { + * nsdInfoId: "np-0d5b823eb5c2a9241", + * nsdOperationalState: "ENABLED" + * }; + * const command = new UpdateSolNetworkPackageCommand(input); + * const response = await client.send(command); + * /* response is + * { + * nsdOperationalState: "ENABLED" + * } + * *\/ + * ``` + * + * @example Disable a network package's Operational State + * ```javascript + * // + * const input = { + * nsdInfoId: "np-0d5b823eb5c2a9241", + * nsdOperationalState: "DISABLED" + * }; + * const command = new UpdateSolNetworkPackageCommand(input); + * const response = await client.send(command); + * /* response is + * { + * nsdOperationalState: "DISABLED" + * } + * *\/ + * ``` + * * @public */ export class UpdateSolNetworkPackageCommand extends $Command diff --git a/clients/client-tnb/src/commands/ValidateSolFunctionPackageContentCommand.ts b/clients/client-tnb/src/commands/ValidateSolFunctionPackageContentCommand.ts index 2c28e269b410b..dc202ce31719a 100644 --- a/clients/client-tnb/src/commands/ValidateSolFunctionPackageContentCommand.ts +++ b/clients/client-tnb/src/commands/ValidateSolFunctionPackageContentCommand.ts @@ -106,6 +106,33 @@ export interface ValidateSolFunctionPackageContentCommandOutput * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Validate a Function Package content + * ```javascript + * // + * const input = { + * contentType: "application/zip", + * file: "UEsDBBQAAAAAAPqLiVMAAAAAAAAAAAAAAAAMACAAZnJlZTVnYy1hbWYvVVQNAAcIrrJhBK", + * vnfPkgId: "fp-07aa863e53460a2a6" + * }; + * const command = new ValidateSolFunctionPackageContentCommand(input); + * const response = await client.send(command); + * /* response is + * { + * id: "fp-07aa863e53460a2a6", + * metadata: { + * vnfd: { + * overrides: [] + * } + * }, + * vnfProductName: "Sample AMF", + * vnfProvider: "Sample", + * vnfdId: "0d72acd9-e45d-4644-9bcd-1fe67cd0e2c8", + * vnfdVersion: "1.0.0" + * } + * *\/ + * ``` + * * @public */ export class ValidateSolFunctionPackageContentCommand extends $Command diff --git a/clients/client-tnb/src/commands/ValidateSolNetworkPackageContentCommand.ts b/clients/client-tnb/src/commands/ValidateSolNetworkPackageContentCommand.ts index 6ffcbae914239..ccf8128ebc7aa 100644 --- a/clients/client-tnb/src/commands/ValidateSolNetworkPackageContentCommand.ts +++ b/clients/client-tnb/src/commands/ValidateSolNetworkPackageContentCommand.ts @@ -109,6 +109,45 @@ export interface ValidateSolNetworkPackageContentCommandOutput * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* + * + * @example Validate the network package content of a NSD archive + * ```javascript + * // + * const input = { + * contentType: "application/zip", + * file: "UEsDBBQAAAAAAPqLiVMAAAAAAAAAAAAAA", + * nsdInfoId: "np-0d5b823eb5c2a9241" + * }; + * const command = new ValidateSolNetworkPackageContentCommand(input); + * const response = await client.send(command); + * /* response is + * { + * arn: "arn:aws:tnb:us-west-2:123456789000:network-package/np-0d5b823eb5c2a9241", + * id: "np-0d5b823eb5c2a9241", + * metadata: { + * nsd: { + * overrides: [ + * { + * defaultValue: "10.0.0.0/24", + * name: "cidr_block" + * }, + * { + * name: "some_vnf.vnf_prop" + * } + * ] + * } + * }, + * nsdId: "0d72acd9-e45d-4644-9bcd-1fe67cd0e2c8", + * nsdName: "Sample Single Cluster", + * nsdVersion: "1.0.0", + * vnfPkgIds: [ + * "fp-1234567890abcdabc", + * "fp-0b627c4a170a97f79" + * ] + * } + * *\/ + * ``` + * * @public */ export class ValidateSolNetworkPackageContentCommand extends $Command diff --git a/clients/client-transcribe-streaming/src/commands/GetMedicalScribeStreamCommand.ts b/clients/client-transcribe-streaming/src/commands/GetMedicalScribeStreamCommand.ts index e5b248a90e564..5e553de85ec0b 100644 --- a/clients/client-transcribe-streaming/src/commands/GetMedicalScribeStreamCommand.ts +++ b/clients/client-transcribe-streaming/src/commands/GetMedicalScribeStreamCommand.ts @@ -117,6 +117,7 @@ export interface GetMedicalScribeStreamCommandOutput extends GetMedicalScribeStr * @throws {@link TranscribeStreamingServiceException} *

Base exception class for all service exceptions from TranscribeStreaming service.

* + * * @public */ export class GetMedicalScribeStreamCommand extends $Command diff --git a/clients/client-transcribe-streaming/src/commands/StartCallAnalyticsStreamTranscriptionCommand.ts b/clients/client-transcribe-streaming/src/commands/StartCallAnalyticsStreamTranscriptionCommand.ts index 594a35272f436..222b600adc367 100644 --- a/clients/client-transcribe-streaming/src/commands/StartCallAnalyticsStreamTranscriptionCommand.ts +++ b/clients/client-transcribe-streaming/src/commands/StartCallAnalyticsStreamTranscriptionCommand.ts @@ -228,6 +228,7 @@ export interface StartCallAnalyticsStreamTranscriptionCommandOutput * @throws {@link TranscribeStreamingServiceException} *

Base exception class for all service exceptions from TranscribeStreaming service.

* + * * @public */ export class StartCallAnalyticsStreamTranscriptionCommand extends $Command diff --git a/clients/client-transcribe-streaming/src/commands/StartMedicalScribeStreamCommand.ts b/clients/client-transcribe-streaming/src/commands/StartMedicalScribeStreamCommand.ts index 43753edf2db4f..22699b32fbec4 100644 --- a/clients/client-transcribe-streaming/src/commands/StartMedicalScribeStreamCommand.ts +++ b/clients/client-transcribe-streaming/src/commands/StartMedicalScribeStreamCommand.ts @@ -202,6 +202,7 @@ export interface StartMedicalScribeStreamCommandOutput extends StartMedicalScrib * @throws {@link TranscribeStreamingServiceException} *

Base exception class for all service exceptions from TranscribeStreaming service.

* + * * @public */ export class StartMedicalScribeStreamCommand extends $Command diff --git a/clients/client-transcribe-streaming/src/commands/StartMedicalStreamTranscriptionCommand.ts b/clients/client-transcribe-streaming/src/commands/StartMedicalStreamTranscriptionCommand.ts index 8a5fc0ed90c76..f259e0bac2189 100644 --- a/clients/client-transcribe-streaming/src/commands/StartMedicalStreamTranscriptionCommand.ts +++ b/clients/client-transcribe-streaming/src/commands/StartMedicalStreamTranscriptionCommand.ts @@ -209,6 +209,7 @@ export interface StartMedicalStreamTranscriptionCommandOutput * @throws {@link TranscribeStreamingServiceException} *

Base exception class for all service exceptions from TranscribeStreaming service.

* + * * @public */ export class StartMedicalStreamTranscriptionCommand extends $Command diff --git a/clients/client-transcribe-streaming/src/commands/StartStreamTranscriptionCommand.ts b/clients/client-transcribe-streaming/src/commands/StartStreamTranscriptionCommand.ts index 3b852b052078a..824903d3debd3 100644 --- a/clients/client-transcribe-streaming/src/commands/StartStreamTranscriptionCommand.ts +++ b/clients/client-transcribe-streaming/src/commands/StartStreamTranscriptionCommand.ts @@ -233,6 +233,7 @@ export interface StartStreamTranscriptionCommandOutput extends StartStreamTransc * @throws {@link TranscribeStreamingServiceException} *

Base exception class for all service exceptions from TranscribeStreaming service.

* + * * @public */ export class StartStreamTranscriptionCommand extends $Command diff --git a/clients/client-transcribe/src/commands/CreateCallAnalyticsCategoryCommand.ts b/clients/client-transcribe/src/commands/CreateCallAnalyticsCategoryCommand.ts index 589929716957d..1ec9f7ac22021 100644 --- a/clients/client-transcribe/src/commands/CreateCallAnalyticsCategoryCommand.ts +++ b/clients/client-transcribe/src/commands/CreateCallAnalyticsCategoryCommand.ts @@ -260,6 +260,7 @@ export interface CreateCallAnalyticsCategoryCommandOutput * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class CreateCallAnalyticsCategoryCommand extends $Command diff --git a/clients/client-transcribe/src/commands/CreateLanguageModelCommand.ts b/clients/client-transcribe/src/commands/CreateLanguageModelCommand.ts index 611bf6d6d5f51..73d3d886155da 100644 --- a/clients/client-transcribe/src/commands/CreateLanguageModelCommand.ts +++ b/clients/client-transcribe/src/commands/CreateLanguageModelCommand.ts @@ -110,6 +110,7 @@ export interface CreateLanguageModelCommandOutput extends CreateLanguageModelRes * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class CreateLanguageModelCommand extends $Command diff --git a/clients/client-transcribe/src/commands/CreateMedicalVocabularyCommand.ts b/clients/client-transcribe/src/commands/CreateMedicalVocabularyCommand.ts index d2d617562282e..e23c076eede47 100644 --- a/clients/client-transcribe/src/commands/CreateMedicalVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/CreateMedicalVocabularyCommand.ts @@ -97,6 +97,7 @@ export interface CreateMedicalVocabularyCommandOutput extends CreateMedicalVocab * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class CreateMedicalVocabularyCommand extends $Command diff --git a/clients/client-transcribe/src/commands/CreateVocabularyCommand.ts b/clients/client-transcribe/src/commands/CreateVocabularyCommand.ts index 808c52135e97c..a5f1ed204963d 100644 --- a/clients/client-transcribe/src/commands/CreateVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/CreateVocabularyCommand.ts @@ -99,6 +99,7 @@ export interface CreateVocabularyCommandOutput extends CreateVocabularyResponse, * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class CreateVocabularyCommand extends $Command diff --git a/clients/client-transcribe/src/commands/CreateVocabularyFilterCommand.ts b/clients/client-transcribe/src/commands/CreateVocabularyFilterCommand.ts index aeccf7c099941..13bdb1af5b09c 100644 --- a/clients/client-transcribe/src/commands/CreateVocabularyFilterCommand.ts +++ b/clients/client-transcribe/src/commands/CreateVocabularyFilterCommand.ts @@ -96,6 +96,7 @@ export interface CreateVocabularyFilterCommandOutput extends CreateVocabularyFil * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class CreateVocabularyFilterCommand extends $Command diff --git a/clients/client-transcribe/src/commands/DeleteCallAnalyticsCategoryCommand.ts b/clients/client-transcribe/src/commands/DeleteCallAnalyticsCategoryCommand.ts index 327a5146dd8e9..6d2bcd006d36d 100644 --- a/clients/client-transcribe/src/commands/DeleteCallAnalyticsCategoryCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteCallAnalyticsCategoryCommand.ts @@ -75,6 +75,7 @@ export interface DeleteCallAnalyticsCategoryCommandOutput * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class DeleteCallAnalyticsCategoryCommand extends $Command diff --git a/clients/client-transcribe/src/commands/DeleteCallAnalyticsJobCommand.ts b/clients/client-transcribe/src/commands/DeleteCallAnalyticsJobCommand.ts index 4a903155ec21e..6684214807a5b 100644 --- a/clients/client-transcribe/src/commands/DeleteCallAnalyticsJobCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteCallAnalyticsJobCommand.ts @@ -69,6 +69,7 @@ export interface DeleteCallAnalyticsJobCommandOutput extends DeleteCallAnalytics * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class DeleteCallAnalyticsJobCommand extends $Command diff --git a/clients/client-transcribe/src/commands/DeleteLanguageModelCommand.ts b/clients/client-transcribe/src/commands/DeleteLanguageModelCommand.ts index a4285391197a5..c011f61f661f2 100644 --- a/clients/client-transcribe/src/commands/DeleteLanguageModelCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteLanguageModelCommand.ts @@ -69,6 +69,7 @@ export interface DeleteLanguageModelCommandOutput extends __MetadataBearer {} * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class DeleteLanguageModelCommand extends $Command diff --git a/clients/client-transcribe/src/commands/DeleteMedicalScribeJobCommand.ts b/clients/client-transcribe/src/commands/DeleteMedicalScribeJobCommand.ts index aadd15d410666..7a721eb50cf34 100644 --- a/clients/client-transcribe/src/commands/DeleteMedicalScribeJobCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteMedicalScribeJobCommand.ts @@ -69,6 +69,7 @@ export interface DeleteMedicalScribeJobCommandOutput extends __MetadataBearer {} * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class DeleteMedicalScribeJobCommand extends $Command diff --git a/clients/client-transcribe/src/commands/DeleteMedicalTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/DeleteMedicalTranscriptionJobCommand.ts index 4501e5f32a570..b54a2e870b5d3 100644 --- a/clients/client-transcribe/src/commands/DeleteMedicalTranscriptionJobCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteMedicalTranscriptionJobCommand.ts @@ -72,6 +72,7 @@ export interface DeleteMedicalTranscriptionJobCommandOutput extends __MetadataBe * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class DeleteMedicalTranscriptionJobCommand extends $Command diff --git a/clients/client-transcribe/src/commands/DeleteMedicalVocabularyCommand.ts b/clients/client-transcribe/src/commands/DeleteMedicalVocabularyCommand.ts index 641f8f51499dd..6cbd4fefc07ce 100644 --- a/clients/client-transcribe/src/commands/DeleteMedicalVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteMedicalVocabularyCommand.ts @@ -73,6 +73,7 @@ export interface DeleteMedicalVocabularyCommandOutput extends __MetadataBearer { * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class DeleteMedicalVocabularyCommand extends $Command diff --git a/clients/client-transcribe/src/commands/DeleteTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/DeleteTranscriptionJobCommand.ts index f523bdf4b8f1c..d3d42f88b3e8a 100644 --- a/clients/client-transcribe/src/commands/DeleteTranscriptionJobCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteTranscriptionJobCommand.ts @@ -69,6 +69,7 @@ export interface DeleteTranscriptionJobCommandOutput extends __MetadataBearer {} * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class DeleteTranscriptionJobCommand extends $Command diff --git a/clients/client-transcribe/src/commands/DeleteVocabularyCommand.ts b/clients/client-transcribe/src/commands/DeleteVocabularyCommand.ts index f403d0c81f9fd..7349a67929b6c 100644 --- a/clients/client-transcribe/src/commands/DeleteVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteVocabularyCommand.ts @@ -73,6 +73,7 @@ export interface DeleteVocabularyCommandOutput extends __MetadataBearer {} * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class DeleteVocabularyCommand extends $Command diff --git a/clients/client-transcribe/src/commands/DeleteVocabularyFilterCommand.ts b/clients/client-transcribe/src/commands/DeleteVocabularyFilterCommand.ts index b1b1cfd564eb3..db264f86e4287 100644 --- a/clients/client-transcribe/src/commands/DeleteVocabularyFilterCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteVocabularyFilterCommand.ts @@ -73,6 +73,7 @@ export interface DeleteVocabularyFilterCommandOutput extends __MetadataBearer {} * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class DeleteVocabularyFilterCommand extends $Command diff --git a/clients/client-transcribe/src/commands/DescribeLanguageModelCommand.ts b/clients/client-transcribe/src/commands/DescribeLanguageModelCommand.ts index 225caf0d6f5cd..5860c09d3ab9f 100644 --- a/clients/client-transcribe/src/commands/DescribeLanguageModelCommand.ts +++ b/clients/client-transcribe/src/commands/DescribeLanguageModelCommand.ts @@ -93,6 +93,7 @@ export interface DescribeLanguageModelCommandOutput extends DescribeLanguageMode * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class DescribeLanguageModelCommand extends $Command diff --git a/clients/client-transcribe/src/commands/GetCallAnalyticsCategoryCommand.ts b/clients/client-transcribe/src/commands/GetCallAnalyticsCategoryCommand.ts index 0b1737befacf9..0177f86760e3b 100644 --- a/clients/client-transcribe/src/commands/GetCallAnalyticsCategoryCommand.ts +++ b/clients/client-transcribe/src/commands/GetCallAnalyticsCategoryCommand.ts @@ -161,6 +161,7 @@ export interface GetCallAnalyticsCategoryCommandOutput extends GetCallAnalyticsC * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class GetCallAnalyticsCategoryCommand extends $Command diff --git a/clients/client-transcribe/src/commands/GetCallAnalyticsJobCommand.ts b/clients/client-transcribe/src/commands/GetCallAnalyticsJobCommand.ts index 96ca4ef23fce2..50edd2bcba29e 100644 --- a/clients/client-transcribe/src/commands/GetCallAnalyticsJobCommand.ts +++ b/clients/client-transcribe/src/commands/GetCallAnalyticsJobCommand.ts @@ -151,6 +151,7 @@ export interface GetCallAnalyticsJobCommandOutput extends GetCallAnalyticsJobRes * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class GetCallAnalyticsJobCommand extends $Command diff --git a/clients/client-transcribe/src/commands/GetMedicalScribeJobCommand.ts b/clients/client-transcribe/src/commands/GetMedicalScribeJobCommand.ts index 00d2a789195c0..d357ff1bd2187 100644 --- a/clients/client-transcribe/src/commands/GetMedicalScribeJobCommand.ts +++ b/clients/client-transcribe/src/commands/GetMedicalScribeJobCommand.ts @@ -120,6 +120,7 @@ export interface GetMedicalScribeJobCommandOutput extends GetMedicalScribeJobRes * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class GetMedicalScribeJobCommand extends $Command diff --git a/clients/client-transcribe/src/commands/GetMedicalTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/GetMedicalTranscriptionJobCommand.ts index 5ed4c09eff015..78f3d738f8a61 100644 --- a/clients/client-transcribe/src/commands/GetMedicalTranscriptionJobCommand.ts +++ b/clients/client-transcribe/src/commands/GetMedicalTranscriptionJobCommand.ts @@ -114,6 +114,7 @@ export interface GetMedicalTranscriptionJobCommandOutput extends GetMedicalTrans * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class GetMedicalTranscriptionJobCommand extends $Command diff --git a/clients/client-transcribe/src/commands/GetMedicalVocabularyCommand.ts b/clients/client-transcribe/src/commands/GetMedicalVocabularyCommand.ts index ad824d967f494..b6a3087c301b9 100644 --- a/clients/client-transcribe/src/commands/GetMedicalVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/GetMedicalVocabularyCommand.ts @@ -83,6 +83,7 @@ export interface GetMedicalVocabularyCommandOutput extends GetMedicalVocabularyR * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class GetMedicalVocabularyCommand extends $Command diff --git a/clients/client-transcribe/src/commands/GetTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/GetTranscriptionJobCommand.ts index 2e6698919a669..21f7013fb2641 100644 --- a/clients/client-transcribe/src/commands/GetTranscriptionJobCommand.ts +++ b/clients/client-transcribe/src/commands/GetTranscriptionJobCommand.ts @@ -165,6 +165,7 @@ export interface GetTranscriptionJobCommandOutput extends GetTranscriptionJobRes * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class GetTranscriptionJobCommand extends $Command diff --git a/clients/client-transcribe/src/commands/GetVocabularyCommand.ts b/clients/client-transcribe/src/commands/GetVocabularyCommand.ts index 074d8044030a9..35e2cc0b6942e 100644 --- a/clients/client-transcribe/src/commands/GetVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/GetVocabularyCommand.ts @@ -84,6 +84,7 @@ export interface GetVocabularyCommandOutput extends GetVocabularyResponse, __Met * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class GetVocabularyCommand extends $Command diff --git a/clients/client-transcribe/src/commands/GetVocabularyFilterCommand.ts b/clients/client-transcribe/src/commands/GetVocabularyFilterCommand.ts index a557b76b4ffbf..6977f4ae2ccbf 100644 --- a/clients/client-transcribe/src/commands/GetVocabularyFilterCommand.ts +++ b/clients/client-transcribe/src/commands/GetVocabularyFilterCommand.ts @@ -77,6 +77,7 @@ export interface GetVocabularyFilterCommandOutput extends GetVocabularyFilterRes * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class GetVocabularyFilterCommand extends $Command diff --git a/clients/client-transcribe/src/commands/ListCallAnalyticsCategoriesCommand.ts b/clients/client-transcribe/src/commands/ListCallAnalyticsCategoriesCommand.ts index f8b4c4cacd378..7596416bae64d 100644 --- a/clients/client-transcribe/src/commands/ListCallAnalyticsCategoriesCommand.ts +++ b/clients/client-transcribe/src/commands/ListCallAnalyticsCategoriesCommand.ts @@ -164,6 +164,7 @@ export interface ListCallAnalyticsCategoriesCommandOutput * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class ListCallAnalyticsCategoriesCommand extends $Command diff --git a/clients/client-transcribe/src/commands/ListCallAnalyticsJobsCommand.ts b/clients/client-transcribe/src/commands/ListCallAnalyticsJobsCommand.ts index def602d8623a9..14091339ba407 100644 --- a/clients/client-transcribe/src/commands/ListCallAnalyticsJobsCommand.ts +++ b/clients/client-transcribe/src/commands/ListCallAnalyticsJobsCommand.ts @@ -95,6 +95,7 @@ export interface ListCallAnalyticsJobsCommandOutput extends ListCallAnalyticsJob * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class ListCallAnalyticsJobsCommand extends $Command diff --git a/clients/client-transcribe/src/commands/ListLanguageModelsCommand.ts b/clients/client-transcribe/src/commands/ListLanguageModelsCommand.ts index 4dc305ab3729f..4c0cb5751b987 100644 --- a/clients/client-transcribe/src/commands/ListLanguageModelsCommand.ts +++ b/clients/client-transcribe/src/commands/ListLanguageModelsCommand.ts @@ -91,6 +91,7 @@ export interface ListLanguageModelsCommandOutput extends ListLanguageModelsRespo * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class ListLanguageModelsCommand extends $Command diff --git a/clients/client-transcribe/src/commands/ListMedicalScribeJobsCommand.ts b/clients/client-transcribe/src/commands/ListMedicalScribeJobsCommand.ts index 28cd76e91bd0f..4e7b3f7d4ecb9 100644 --- a/clients/client-transcribe/src/commands/ListMedicalScribeJobsCommand.ts +++ b/clients/client-transcribe/src/commands/ListMedicalScribeJobsCommand.ts @@ -86,6 +86,7 @@ export interface ListMedicalScribeJobsCommandOutput extends ListMedicalScribeJob * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class ListMedicalScribeJobsCommand extends $Command diff --git a/clients/client-transcribe/src/commands/ListMedicalTranscriptionJobsCommand.ts b/clients/client-transcribe/src/commands/ListMedicalTranscriptionJobsCommand.ts index 0468fc410278e..4ec9afdaaad4d 100644 --- a/clients/client-transcribe/src/commands/ListMedicalTranscriptionJobsCommand.ts +++ b/clients/client-transcribe/src/commands/ListMedicalTranscriptionJobsCommand.ts @@ -95,6 +95,7 @@ export interface ListMedicalTranscriptionJobsCommandOutput * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class ListMedicalTranscriptionJobsCommand extends $Command diff --git a/clients/client-transcribe/src/commands/ListMedicalVocabulariesCommand.ts b/clients/client-transcribe/src/commands/ListMedicalVocabulariesCommand.ts index d0362526abb05..e0cb0fd48333d 100644 --- a/clients/client-transcribe/src/commands/ListMedicalVocabulariesCommand.ts +++ b/clients/client-transcribe/src/commands/ListMedicalVocabulariesCommand.ts @@ -83,6 +83,7 @@ export interface ListMedicalVocabulariesCommandOutput extends ListMedicalVocabul * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class ListMedicalVocabulariesCommand extends $Command diff --git a/clients/client-transcribe/src/commands/ListTagsForResourceCommand.ts b/clients/client-transcribe/src/commands/ListTagsForResourceCommand.ts index 8de5af93b2368..6160fc5ad9a68 100644 --- a/clients/client-transcribe/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-transcribe/src/commands/ListTagsForResourceCommand.ts @@ -82,6 +82,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-transcribe/src/commands/ListTranscriptionJobsCommand.ts b/clients/client-transcribe/src/commands/ListTranscriptionJobsCommand.ts index d4b4f7a666c10..3e8d942e8ae4e 100644 --- a/clients/client-transcribe/src/commands/ListTranscriptionJobsCommand.ts +++ b/clients/client-transcribe/src/commands/ListTranscriptionJobsCommand.ts @@ -113,6 +113,7 @@ export interface ListTranscriptionJobsCommandOutput extends ListTranscriptionJob * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class ListTranscriptionJobsCommand extends $Command diff --git a/clients/client-transcribe/src/commands/ListVocabulariesCommand.ts b/clients/client-transcribe/src/commands/ListVocabulariesCommand.ts index 6aafb925ce607..9eedf9a4e6d86 100644 --- a/clients/client-transcribe/src/commands/ListVocabulariesCommand.ts +++ b/clients/client-transcribe/src/commands/ListVocabulariesCommand.ts @@ -83,6 +83,7 @@ export interface ListVocabulariesCommandOutput extends ListVocabulariesResponse, * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class ListVocabulariesCommand extends $Command diff --git a/clients/client-transcribe/src/commands/ListVocabularyFiltersCommand.ts b/clients/client-transcribe/src/commands/ListVocabularyFiltersCommand.ts index 98f0f1f11a65d..cc91bf3acf13a 100644 --- a/clients/client-transcribe/src/commands/ListVocabularyFiltersCommand.ts +++ b/clients/client-transcribe/src/commands/ListVocabularyFiltersCommand.ts @@ -80,6 +80,7 @@ export interface ListVocabularyFiltersCommandOutput extends ListVocabularyFilter * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class ListVocabularyFiltersCommand extends $Command diff --git a/clients/client-transcribe/src/commands/StartCallAnalyticsJobCommand.ts b/clients/client-transcribe/src/commands/StartCallAnalyticsJobCommand.ts index 60ae55be3edce..51da7dc5c19f7 100644 --- a/clients/client-transcribe/src/commands/StartCallAnalyticsJobCommand.ts +++ b/clients/client-transcribe/src/commands/StartCallAnalyticsJobCommand.ts @@ -231,6 +231,7 @@ export interface StartCallAnalyticsJobCommandOutput extends StartCallAnalyticsJo * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class StartCallAnalyticsJobCommand extends $Command diff --git a/clients/client-transcribe/src/commands/StartMedicalScribeJobCommand.ts b/clients/client-transcribe/src/commands/StartMedicalScribeJobCommand.ts index 4624fcc44725e..4e243b6897e1a 100644 --- a/clients/client-transcribe/src/commands/StartMedicalScribeJobCommand.ts +++ b/clients/client-transcribe/src/commands/StartMedicalScribeJobCommand.ts @@ -191,6 +191,7 @@ export interface StartMedicalScribeJobCommandOutput extends StartMedicalScribeJo * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class StartMedicalScribeJobCommand extends $Command diff --git a/clients/client-transcribe/src/commands/StartMedicalTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/StartMedicalTranscriptionJobCommand.ts index d614dce9c844a..fccfb52ea11de 100644 --- a/clients/client-transcribe/src/commands/StartMedicalTranscriptionJobCommand.ts +++ b/clients/client-transcribe/src/commands/StartMedicalTranscriptionJobCommand.ts @@ -190,6 +190,7 @@ export interface StartMedicalTranscriptionJobCommandOutput * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class StartMedicalTranscriptionJobCommand extends $Command diff --git a/clients/client-transcribe/src/commands/StartTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/StartTranscriptionJobCommand.ts index 41af5c4ed2d2e..75af82705d79c 100644 --- a/clients/client-transcribe/src/commands/StartTranscriptionJobCommand.ts +++ b/clients/client-transcribe/src/commands/StartTranscriptionJobCommand.ts @@ -258,6 +258,7 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class StartTranscriptionJobCommand extends $Command diff --git a/clients/client-transcribe/src/commands/TagResourceCommand.ts b/clients/client-transcribe/src/commands/TagResourceCommand.ts index 83cd060fc9d72..be3f316a2dacb 100644 --- a/clients/client-transcribe/src/commands/TagResourceCommand.ts +++ b/clients/client-transcribe/src/commands/TagResourceCommand.ts @@ -84,6 +84,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-transcribe/src/commands/UntagResourceCommand.ts b/clients/client-transcribe/src/commands/UntagResourceCommand.ts index 02cc4e1fc3fd1..9ddabf55d598e 100644 --- a/clients/client-transcribe/src/commands/UntagResourceCommand.ts +++ b/clients/client-transcribe/src/commands/UntagResourceCommand.ts @@ -80,6 +80,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-transcribe/src/commands/UpdateCallAnalyticsCategoryCommand.ts b/clients/client-transcribe/src/commands/UpdateCallAnalyticsCategoryCommand.ts index 281280c247860..292b78be2e618 100644 --- a/clients/client-transcribe/src/commands/UpdateCallAnalyticsCategoryCommand.ts +++ b/clients/client-transcribe/src/commands/UpdateCallAnalyticsCategoryCommand.ts @@ -247,6 +247,7 @@ export interface UpdateCallAnalyticsCategoryCommandOutput * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class UpdateCallAnalyticsCategoryCommand extends $Command diff --git a/clients/client-transcribe/src/commands/UpdateMedicalVocabularyCommand.ts b/clients/client-transcribe/src/commands/UpdateMedicalVocabularyCommand.ts index 82d5ac7b4328a..289955ceb3b8c 100644 --- a/clients/client-transcribe/src/commands/UpdateMedicalVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/UpdateMedicalVocabularyCommand.ts @@ -84,6 +84,7 @@ export interface UpdateMedicalVocabularyCommandOutput extends UpdateMedicalVocab * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class UpdateMedicalVocabularyCommand extends $Command diff --git a/clients/client-transcribe/src/commands/UpdateVocabularyCommand.ts b/clients/client-transcribe/src/commands/UpdateVocabularyCommand.ts index 5d3798cf48fdc..622877b59d8a5 100644 --- a/clients/client-transcribe/src/commands/UpdateVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/UpdateVocabularyCommand.ts @@ -88,6 +88,7 @@ export interface UpdateVocabularyCommandOutput extends UpdateVocabularyResponse, * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class UpdateVocabularyCommand extends $Command diff --git a/clients/client-transcribe/src/commands/UpdateVocabularyFilterCommand.ts b/clients/client-transcribe/src/commands/UpdateVocabularyFilterCommand.ts index d51d6e444fba9..836febcda8021 100644 --- a/clients/client-transcribe/src/commands/UpdateVocabularyFilterCommand.ts +++ b/clients/client-transcribe/src/commands/UpdateVocabularyFilterCommand.ts @@ -82,6 +82,7 @@ export interface UpdateVocabularyFilterCommandOutput extends UpdateVocabularyFil * @throws {@link TranscribeServiceException} *

Base exception class for all service exceptions from Transcribe service.

* + * * @public */ export class UpdateVocabularyFilterCommand extends $Command diff --git a/clients/client-transfer/src/commands/CreateAccessCommand.ts b/clients/client-transfer/src/commands/CreateAccessCommand.ts index 5cde01b94a982..5d04472df4b0c 100644 --- a/clients/client-transfer/src/commands/CreateAccessCommand.ts +++ b/clients/client-transfer/src/commands/CreateAccessCommand.ts @@ -96,6 +96,7 @@ export interface CreateAccessCommandOutput extends CreateAccessResponse, __Metad * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class CreateAccessCommand extends $Command diff --git a/clients/client-transfer/src/commands/CreateAgreementCommand.ts b/clients/client-transfer/src/commands/CreateAgreementCommand.ts index b4ff1daf67ab2..c2ee660100e14 100644 --- a/clients/client-transfer/src/commands/CreateAgreementCommand.ts +++ b/clients/client-transfer/src/commands/CreateAgreementCommand.ts @@ -104,6 +104,7 @@ export interface CreateAgreementCommandOutput extends CreateAgreementResponse, _ * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class CreateAgreementCommand extends $Command diff --git a/clients/client-transfer/src/commands/CreateConnectorCommand.ts b/clients/client-transfer/src/commands/CreateConnectorCommand.ts index 84ab22e0f04f6..8e34cf5e60eaa 100644 --- a/clients/client-transfer/src/commands/CreateConnectorCommand.ts +++ b/clients/client-transfer/src/commands/CreateConnectorCommand.ts @@ -106,6 +106,7 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _ * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class CreateConnectorCommand extends $Command diff --git a/clients/client-transfer/src/commands/CreateProfileCommand.ts b/clients/client-transfer/src/commands/CreateProfileCommand.ts index 6b781775e2f62..6e8d010d1cc8b 100644 --- a/clients/client-transfer/src/commands/CreateProfileCommand.ts +++ b/clients/client-transfer/src/commands/CreateProfileCommand.ts @@ -81,6 +81,7 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class CreateProfileCommand extends $Command diff --git a/clients/client-transfer/src/commands/CreateServerCommand.ts b/clients/client-transfer/src/commands/CreateServerCommand.ts index e4ab69a308bd6..96090eb74d845 100644 --- a/clients/client-transfer/src/commands/CreateServerCommand.ts +++ b/clients/client-transfer/src/commands/CreateServerCommand.ts @@ -145,6 +145,7 @@ export interface CreateServerCommandOutput extends CreateServerResponse, __Metad * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class CreateServerCommand extends $Command diff --git a/clients/client-transfer/src/commands/CreateUserCommand.ts b/clients/client-transfer/src/commands/CreateUserCommand.ts index 7b9a75656beef..03ad289bb042b 100644 --- a/clients/client-transfer/src/commands/CreateUserCommand.ts +++ b/clients/client-transfer/src/commands/CreateUserCommand.ts @@ -104,6 +104,7 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class CreateUserCommand extends $Command diff --git a/clients/client-transfer/src/commands/CreateWebAppCommand.ts b/clients/client-transfer/src/commands/CreateWebAppCommand.ts index 14baee2f6d114..8e307b28b1555 100644 --- a/clients/client-transfer/src/commands/CreateWebAppCommand.ts +++ b/clients/client-transfer/src/commands/CreateWebAppCommand.ts @@ -86,6 +86,7 @@ export interface CreateWebAppCommandOutput extends CreateWebAppResponse, __Metad * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class CreateWebAppCommand extends $Command diff --git a/clients/client-transfer/src/commands/CreateWorkflowCommand.ts b/clients/client-transfer/src/commands/CreateWorkflowCommand.ts index 33d75cd0ebf9f..a2b649b6e2c2c 100644 --- a/clients/client-transfer/src/commands/CreateWorkflowCommand.ts +++ b/clients/client-transfer/src/commands/CreateWorkflowCommand.ts @@ -194,6 +194,7 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class CreateWorkflowCommand extends $Command diff --git a/clients/client-transfer/src/commands/DeleteAccessCommand.ts b/clients/client-transfer/src/commands/DeleteAccessCommand.ts index be0f56a038fa2..84299918bd2e5 100644 --- a/clients/client-transfer/src/commands/DeleteAccessCommand.ts +++ b/clients/client-transfer/src/commands/DeleteAccessCommand.ts @@ -68,6 +68,7 @@ export interface DeleteAccessCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DeleteAccessCommand extends $Command diff --git a/clients/client-transfer/src/commands/DeleteAgreementCommand.ts b/clients/client-transfer/src/commands/DeleteAgreementCommand.ts index fe924ea63382e..b9928be4de297 100644 --- a/clients/client-transfer/src/commands/DeleteAgreementCommand.ts +++ b/clients/client-transfer/src/commands/DeleteAgreementCommand.ts @@ -67,6 +67,7 @@ export interface DeleteAgreementCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DeleteAgreementCommand extends $Command diff --git a/clients/client-transfer/src/commands/DeleteCertificateCommand.ts b/clients/client-transfer/src/commands/DeleteCertificateCommand.ts index d3920d68bb01b..90289c76ff2b7 100644 --- a/clients/client-transfer/src/commands/DeleteCertificateCommand.ts +++ b/clients/client-transfer/src/commands/DeleteCertificateCommand.ts @@ -67,6 +67,7 @@ export interface DeleteCertificateCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DeleteCertificateCommand extends $Command diff --git a/clients/client-transfer/src/commands/DeleteConnectorCommand.ts b/clients/client-transfer/src/commands/DeleteConnectorCommand.ts index d168b3466739a..5c8d48308ed3e 100644 --- a/clients/client-transfer/src/commands/DeleteConnectorCommand.ts +++ b/clients/client-transfer/src/commands/DeleteConnectorCommand.ts @@ -66,6 +66,7 @@ export interface DeleteConnectorCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DeleteConnectorCommand extends $Command diff --git a/clients/client-transfer/src/commands/DeleteHostKeyCommand.ts b/clients/client-transfer/src/commands/DeleteHostKeyCommand.ts index 5cd4490f13132..282a74a84c284 100644 --- a/clients/client-transfer/src/commands/DeleteHostKeyCommand.ts +++ b/clients/client-transfer/src/commands/DeleteHostKeyCommand.ts @@ -70,6 +70,7 @@ export interface DeleteHostKeyCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DeleteHostKeyCommand extends $Command diff --git a/clients/client-transfer/src/commands/DeleteProfileCommand.ts b/clients/client-transfer/src/commands/DeleteProfileCommand.ts index 6636ca7fbcd3c..0d060cc673d7e 100644 --- a/clients/client-transfer/src/commands/DeleteProfileCommand.ts +++ b/clients/client-transfer/src/commands/DeleteProfileCommand.ts @@ -66,6 +66,7 @@ export interface DeleteProfileCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DeleteProfileCommand extends $Command diff --git a/clients/client-transfer/src/commands/DeleteServerCommand.ts b/clients/client-transfer/src/commands/DeleteServerCommand.ts index 3675b0a96c3d2..9942f56c634af 100644 --- a/clients/client-transfer/src/commands/DeleteServerCommand.ts +++ b/clients/client-transfer/src/commands/DeleteServerCommand.ts @@ -70,6 +70,7 @@ export interface DeleteServerCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DeleteServerCommand extends $Command diff --git a/clients/client-transfer/src/commands/DeleteSshPublicKeyCommand.ts b/clients/client-transfer/src/commands/DeleteSshPublicKeyCommand.ts index 2c417f78264cc..1368120ada403 100644 --- a/clients/client-transfer/src/commands/DeleteSshPublicKeyCommand.ts +++ b/clients/client-transfer/src/commands/DeleteSshPublicKeyCommand.ts @@ -71,6 +71,7 @@ export interface DeleteSshPublicKeyCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DeleteSshPublicKeyCommand extends $Command diff --git a/clients/client-transfer/src/commands/DeleteUserCommand.ts b/clients/client-transfer/src/commands/DeleteUserCommand.ts index 93838b9bafd2d..34ed59ebe2697 100644 --- a/clients/client-transfer/src/commands/DeleteUserCommand.ts +++ b/clients/client-transfer/src/commands/DeleteUserCommand.ts @@ -71,6 +71,7 @@ export interface DeleteUserCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DeleteUserCommand extends $Command diff --git a/clients/client-transfer/src/commands/DeleteWebAppCommand.ts b/clients/client-transfer/src/commands/DeleteWebAppCommand.ts index 262428239282b..1246628243495 100644 --- a/clients/client-transfer/src/commands/DeleteWebAppCommand.ts +++ b/clients/client-transfer/src/commands/DeleteWebAppCommand.ts @@ -69,6 +69,7 @@ export interface DeleteWebAppCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DeleteWebAppCommand extends $Command diff --git a/clients/client-transfer/src/commands/DeleteWebAppCustomizationCommand.ts b/clients/client-transfer/src/commands/DeleteWebAppCustomizationCommand.ts index cad4f50952e77..203aa5ddd2e4e 100644 --- a/clients/client-transfer/src/commands/DeleteWebAppCustomizationCommand.ts +++ b/clients/client-transfer/src/commands/DeleteWebAppCustomizationCommand.ts @@ -74,6 +74,7 @@ export interface DeleteWebAppCustomizationCommandOutput extends __MetadataBearer * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DeleteWebAppCustomizationCommand extends $Command diff --git a/clients/client-transfer/src/commands/DeleteWorkflowCommand.ts b/clients/client-transfer/src/commands/DeleteWorkflowCommand.ts index d6b702fc1da6f..b435b3ce984e8 100644 --- a/clients/client-transfer/src/commands/DeleteWorkflowCommand.ts +++ b/clients/client-transfer/src/commands/DeleteWorkflowCommand.ts @@ -69,6 +69,7 @@ export interface DeleteWorkflowCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DeleteWorkflowCommand extends $Command diff --git a/clients/client-transfer/src/commands/DescribeAccessCommand.ts b/clients/client-transfer/src/commands/DescribeAccessCommand.ts index efa08b74848ae..13568f0736078 100644 --- a/clients/client-transfer/src/commands/DescribeAccessCommand.ts +++ b/clients/client-transfer/src/commands/DescribeAccessCommand.ts @@ -94,6 +94,7 @@ export interface DescribeAccessCommandOutput extends DescribeAccessResponse, __M * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DescribeAccessCommand extends $Command diff --git a/clients/client-transfer/src/commands/DescribeAgreementCommand.ts b/clients/client-transfer/src/commands/DescribeAgreementCommand.ts index 30e5a41b15bec..135e7255736fe 100644 --- a/clients/client-transfer/src/commands/DescribeAgreementCommand.ts +++ b/clients/client-transfer/src/commands/DescribeAgreementCommand.ts @@ -94,6 +94,7 @@ export interface DescribeAgreementCommandOutput extends DescribeAgreementRespons * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DescribeAgreementCommand extends $Command diff --git a/clients/client-transfer/src/commands/DescribeCertificateCommand.ts b/clients/client-transfer/src/commands/DescribeCertificateCommand.ts index 5d3f6ca8f9df2..2437edbad8397 100644 --- a/clients/client-transfer/src/commands/DescribeCertificateCommand.ts +++ b/clients/client-transfer/src/commands/DescribeCertificateCommand.ts @@ -92,6 +92,7 @@ export interface DescribeCertificateCommandOutput extends DescribeCertificateRes * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DescribeCertificateCommand extends $Command diff --git a/clients/client-transfer/src/commands/DescribeConnectorCommand.ts b/clients/client-transfer/src/commands/DescribeConnectorCommand.ts index 5fe8c9de5b21e..89f752d1d61a0 100644 --- a/clients/client-transfer/src/commands/DescribeConnectorCommand.ts +++ b/clients/client-transfer/src/commands/DescribeConnectorCommand.ts @@ -103,6 +103,7 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DescribeConnectorCommand extends $Command diff --git a/clients/client-transfer/src/commands/DescribeExecutionCommand.ts b/clients/client-transfer/src/commands/DescribeExecutionCommand.ts index 47222e02e3136..4cb977d747a72 100644 --- a/clients/client-transfer/src/commands/DescribeExecutionCommand.ts +++ b/clients/client-transfer/src/commands/DescribeExecutionCommand.ts @@ -132,6 +132,7 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionRespons * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DescribeExecutionCommand extends $Command diff --git a/clients/client-transfer/src/commands/DescribeHostKeyCommand.ts b/clients/client-transfer/src/commands/DescribeHostKeyCommand.ts index 70c8a3bcacfd0..3f2c08056c5de 100644 --- a/clients/client-transfer/src/commands/DescribeHostKeyCommand.ts +++ b/clients/client-transfer/src/commands/DescribeHostKeyCommand.ts @@ -82,6 +82,7 @@ export interface DescribeHostKeyCommandOutput extends DescribeHostKeyResponse, _ * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DescribeHostKeyCommand extends $Command diff --git a/clients/client-transfer/src/commands/DescribeProfileCommand.ts b/clients/client-transfer/src/commands/DescribeProfileCommand.ts index f95955238ce93..290efedf6f174 100644 --- a/clients/client-transfer/src/commands/DescribeProfileCommand.ts +++ b/clients/client-transfer/src/commands/DescribeProfileCommand.ts @@ -82,6 +82,7 @@ export interface DescribeProfileCommandOutput extends DescribeProfileResponse, _ * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DescribeProfileCommand extends $Command diff --git a/clients/client-transfer/src/commands/DescribeSecurityPolicyCommand.ts b/clients/client-transfer/src/commands/DescribeSecurityPolicyCommand.ts index 32193cb245c63..7cbd524860de4 100644 --- a/clients/client-transfer/src/commands/DescribeSecurityPolicyCommand.ts +++ b/clients/client-transfer/src/commands/DescribeSecurityPolicyCommand.ts @@ -93,6 +93,7 @@ export interface DescribeSecurityPolicyCommandOutput extends DescribeSecurityPol * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DescribeSecurityPolicyCommand extends $Command diff --git a/clients/client-transfer/src/commands/DescribeServerCommand.ts b/clients/client-transfer/src/commands/DescribeServerCommand.ts index dd75ca3bdfc6e..f6577bcae1ccf 100644 --- a/clients/client-transfer/src/commands/DescribeServerCommand.ts +++ b/clients/client-transfer/src/commands/DescribeServerCommand.ts @@ -146,6 +146,7 @@ export interface DescribeServerCommandOutput extends DescribeServerResponse, __M * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DescribeServerCommand extends $Command diff --git a/clients/client-transfer/src/commands/DescribeUserCommand.ts b/clients/client-transfer/src/commands/DescribeUserCommand.ts index d45e45b6bb70a..1b7c1f6609c43 100644 --- a/clients/client-transfer/src/commands/DescribeUserCommand.ts +++ b/clients/client-transfer/src/commands/DescribeUserCommand.ts @@ -107,6 +107,7 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DescribeUserCommand extends $Command diff --git a/clients/client-transfer/src/commands/DescribeWebAppCommand.ts b/clients/client-transfer/src/commands/DescribeWebAppCommand.ts index 77c0a5d7f9004..70a9cec4194ce 100644 --- a/clients/client-transfer/src/commands/DescribeWebAppCommand.ts +++ b/clients/client-transfer/src/commands/DescribeWebAppCommand.ts @@ -92,6 +92,7 @@ export interface DescribeWebAppCommandOutput extends DescribeWebAppResponse, __M * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DescribeWebAppCommand extends $Command diff --git a/clients/client-transfer/src/commands/DescribeWebAppCustomizationCommand.ts b/clients/client-transfer/src/commands/DescribeWebAppCustomizationCommand.ts index 6446c9ef31035..eae9ae4fa6a64 100644 --- a/clients/client-transfer/src/commands/DescribeWebAppCustomizationCommand.ts +++ b/clients/client-transfer/src/commands/DescribeWebAppCustomizationCommand.ts @@ -83,6 +83,7 @@ export interface DescribeWebAppCustomizationCommandOutput * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DescribeWebAppCustomizationCommand extends $Command diff --git a/clients/client-transfer/src/commands/DescribeWorkflowCommand.ts b/clients/client-transfer/src/commands/DescribeWorkflowCommand.ts index bbe50f134a635..aae02c1672970 100644 --- a/clients/client-transfer/src/commands/DescribeWorkflowCommand.ts +++ b/clients/client-transfer/src/commands/DescribeWorkflowCommand.ts @@ -190,6 +190,7 @@ export interface DescribeWorkflowCommandOutput extends DescribeWorkflowResponse, * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class DescribeWorkflowCommand extends $Command diff --git a/clients/client-transfer/src/commands/ImportCertificateCommand.ts b/clients/client-transfer/src/commands/ImportCertificateCommand.ts index ba76f96b1b1e9..65a7e24674208 100644 --- a/clients/client-transfer/src/commands/ImportCertificateCommand.ts +++ b/clients/client-transfer/src/commands/ImportCertificateCommand.ts @@ -86,6 +86,7 @@ export interface ImportCertificateCommandOutput extends ImportCertificateRespons * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ImportCertificateCommand extends $Command diff --git a/clients/client-transfer/src/commands/ImportHostKeyCommand.ts b/clients/client-transfer/src/commands/ImportHostKeyCommand.ts index f19e70b33e1ac..8c71ad6ca1c81 100644 --- a/clients/client-transfer/src/commands/ImportHostKeyCommand.ts +++ b/clients/client-transfer/src/commands/ImportHostKeyCommand.ts @@ -88,6 +88,7 @@ export interface ImportHostKeyCommandOutput extends ImportHostKeyResponse, __Met * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ImportHostKeyCommand extends $Command diff --git a/clients/client-transfer/src/commands/ImportSshPublicKeyCommand.ts b/clients/client-transfer/src/commands/ImportSshPublicKeyCommand.ts index da354ed2a41f8..41f5ec33e4dc6 100644 --- a/clients/client-transfer/src/commands/ImportSshPublicKeyCommand.ts +++ b/clients/client-transfer/src/commands/ImportSshPublicKeyCommand.ts @@ -82,6 +82,7 @@ export interface ImportSshPublicKeyCommandOutput extends ImportSshPublicKeyRespo * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ImportSshPublicKeyCommand extends $Command diff --git a/clients/client-transfer/src/commands/ListAccessesCommand.ts b/clients/client-transfer/src/commands/ListAccessesCommand.ts index 7723245e991b1..523f9d5bb076a 100644 --- a/clients/client-transfer/src/commands/ListAccessesCommand.ts +++ b/clients/client-transfer/src/commands/ListAccessesCommand.ts @@ -82,6 +82,7 @@ export interface ListAccessesCommandOutput extends ListAccessesResponse, __Metad * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ListAccessesCommand extends $Command diff --git a/clients/client-transfer/src/commands/ListAgreementsCommand.ts b/clients/client-transfer/src/commands/ListAgreementsCommand.ts index ba855cfdf7c2d..58ca5faf3f228 100644 --- a/clients/client-transfer/src/commands/ListAgreementsCommand.ts +++ b/clients/client-transfer/src/commands/ListAgreementsCommand.ts @@ -88,6 +88,7 @@ export interface ListAgreementsCommandOutput extends ListAgreementsResponse, __M * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ListAgreementsCommand extends $Command diff --git a/clients/client-transfer/src/commands/ListCertificatesCommand.ts b/clients/client-transfer/src/commands/ListCertificatesCommand.ts index bc475e4aa3e1d..3d9fa81c1cb8e 100644 --- a/clients/client-transfer/src/commands/ListCertificatesCommand.ts +++ b/clients/client-transfer/src/commands/ListCertificatesCommand.ts @@ -88,6 +88,7 @@ export interface ListCertificatesCommandOutput extends ListCertificatesResponse, * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ListCertificatesCommand extends $Command diff --git a/clients/client-transfer/src/commands/ListConnectorsCommand.ts b/clients/client-transfer/src/commands/ListConnectorsCommand.ts index fc8a1ec1eb013..ea288e4d9bb3f 100644 --- a/clients/client-transfer/src/commands/ListConnectorsCommand.ts +++ b/clients/client-transfer/src/commands/ListConnectorsCommand.ts @@ -79,6 +79,7 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ListConnectorsCommand extends $Command diff --git a/clients/client-transfer/src/commands/ListExecutionsCommand.ts b/clients/client-transfer/src/commands/ListExecutionsCommand.ts index a439bc99b72a9..ae10d26c9c7f1 100644 --- a/clients/client-transfer/src/commands/ListExecutionsCommand.ts +++ b/clients/client-transfer/src/commands/ListExecutionsCommand.ts @@ -103,6 +103,7 @@ export interface ListExecutionsCommandOutput extends ListExecutionsResponse, __M * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ListExecutionsCommand extends $Command diff --git a/clients/client-transfer/src/commands/ListFileTransferResultsCommand.ts b/clients/client-transfer/src/commands/ListFileTransferResultsCommand.ts index dff98a5578c98..7e5de39e0e3c7 100644 --- a/clients/client-transfer/src/commands/ListFileTransferResultsCommand.ts +++ b/clients/client-transfer/src/commands/ListFileTransferResultsCommand.ts @@ -84,6 +84,7 @@ export interface ListFileTransferResultsCommandOutput extends ListFileTransferRe * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ListFileTransferResultsCommand extends $Command diff --git a/clients/client-transfer/src/commands/ListHostKeysCommand.ts b/clients/client-transfer/src/commands/ListHostKeysCommand.ts index 10b6811a78fad..1a74aba4ef412 100644 --- a/clients/client-transfer/src/commands/ListHostKeysCommand.ts +++ b/clients/client-transfer/src/commands/ListHostKeysCommand.ts @@ -85,6 +85,7 @@ export interface ListHostKeysCommandOutput extends ListHostKeysResponse, __Metad * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ListHostKeysCommand extends $Command diff --git a/clients/client-transfer/src/commands/ListProfilesCommand.ts b/clients/client-transfer/src/commands/ListProfilesCommand.ts index 0cbf40c39ea21..4650c72f94a99 100644 --- a/clients/client-transfer/src/commands/ListProfilesCommand.ts +++ b/clients/client-transfer/src/commands/ListProfilesCommand.ts @@ -84,6 +84,7 @@ export interface ListProfilesCommandOutput extends ListProfilesResponse, __Metad * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ListProfilesCommand extends $Command diff --git a/clients/client-transfer/src/commands/ListSecurityPoliciesCommand.ts b/clients/client-transfer/src/commands/ListSecurityPoliciesCommand.ts index 24045d3a23373..ba8b0c5e84247 100644 --- a/clients/client-transfer/src/commands/ListSecurityPoliciesCommand.ts +++ b/clients/client-transfer/src/commands/ListSecurityPoliciesCommand.ts @@ -74,6 +74,7 @@ export interface ListSecurityPoliciesCommandOutput extends ListSecurityPoliciesR * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ListSecurityPoliciesCommand extends $Command diff --git a/clients/client-transfer/src/commands/ListServersCommand.ts b/clients/client-transfer/src/commands/ListServersCommand.ts index 3e08831b56cee..02fe21ce17254 100644 --- a/clients/client-transfer/src/commands/ListServersCommand.ts +++ b/clients/client-transfer/src/commands/ListServersCommand.ts @@ -81,6 +81,7 @@ export interface ListServersCommandOutput extends ListServersResponse, __Metadat * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ListServersCommand extends $Command diff --git a/clients/client-transfer/src/commands/ListTagsForResourceCommand.ts b/clients/client-transfer/src/commands/ListTagsForResourceCommand.ts index 606f25c40948f..32e22fe7c4995 100644 --- a/clients/client-transfer/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-transfer/src/commands/ListTagsForResourceCommand.ts @@ -77,6 +77,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-transfer/src/commands/ListUsersCommand.ts b/clients/client-transfer/src/commands/ListUsersCommand.ts index 647b900b2f899..aaeb649c8ad83 100644 --- a/clients/client-transfer/src/commands/ListUsersCommand.ts +++ b/clients/client-transfer/src/commands/ListUsersCommand.ts @@ -85,6 +85,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ListUsersCommand extends $Command diff --git a/clients/client-transfer/src/commands/ListWebAppsCommand.ts b/clients/client-transfer/src/commands/ListWebAppsCommand.ts index 05597e7754816..3eae26e7239c3 100644 --- a/clients/client-transfer/src/commands/ListWebAppsCommand.ts +++ b/clients/client-transfer/src/commands/ListWebAppsCommand.ts @@ -76,6 +76,7 @@ export interface ListWebAppsCommandOutput extends ListWebAppsResponse, __Metadat * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ListWebAppsCommand extends $Command diff --git a/clients/client-transfer/src/commands/ListWorkflowsCommand.ts b/clients/client-transfer/src/commands/ListWorkflowsCommand.ts index 856720730e542..e01a6d9e9b6c8 100644 --- a/clients/client-transfer/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-transfer/src/commands/ListWorkflowsCommand.ts @@ -75,6 +75,7 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class ListWorkflowsCommand extends $Command diff --git a/clients/client-transfer/src/commands/SendWorkflowStepStateCommand.ts b/clients/client-transfer/src/commands/SendWorkflowStepStateCommand.ts index 35ae730f251fc..f49d53223f49a 100644 --- a/clients/client-transfer/src/commands/SendWorkflowStepStateCommand.ts +++ b/clients/client-transfer/src/commands/SendWorkflowStepStateCommand.ts @@ -79,6 +79,7 @@ export interface SendWorkflowStepStateCommandOutput extends SendWorkflowStepStat * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class SendWorkflowStepStateCommand extends $Command diff --git a/clients/client-transfer/src/commands/StartDirectoryListingCommand.ts b/clients/client-transfer/src/commands/StartDirectoryListingCommand.ts index 673539cba4f7b..154e390c32ee0 100644 --- a/clients/client-transfer/src/commands/StartDirectoryListingCommand.ts +++ b/clients/client-transfer/src/commands/StartDirectoryListingCommand.ts @@ -119,6 +119,7 @@ export interface StartDirectoryListingCommandOutput extends StartDirectoryListin * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class StartDirectoryListingCommand extends $Command diff --git a/clients/client-transfer/src/commands/StartFileTransferCommand.ts b/clients/client-transfer/src/commands/StartFileTransferCommand.ts index eac3a8f0311aa..4a96e24b3879e 100644 --- a/clients/client-transfer/src/commands/StartFileTransferCommand.ts +++ b/clients/client-transfer/src/commands/StartFileTransferCommand.ts @@ -104,6 +104,7 @@ export interface StartFileTransferCommandOutput extends StartFileTransferRespons * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class StartFileTransferCommand extends $Command diff --git a/clients/client-transfer/src/commands/StartServerCommand.ts b/clients/client-transfer/src/commands/StartServerCommand.ts index 364e1edb25c39..f50d18b5ae483 100644 --- a/clients/client-transfer/src/commands/StartServerCommand.ts +++ b/clients/client-transfer/src/commands/StartServerCommand.ts @@ -75,6 +75,7 @@ export interface StartServerCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class StartServerCommand extends $Command diff --git a/clients/client-transfer/src/commands/StopServerCommand.ts b/clients/client-transfer/src/commands/StopServerCommand.ts index 6db35bbcf600c..27266043b3edf 100644 --- a/clients/client-transfer/src/commands/StopServerCommand.ts +++ b/clients/client-transfer/src/commands/StopServerCommand.ts @@ -80,6 +80,7 @@ export interface StopServerCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class StopServerCommand extends $Command diff --git a/clients/client-transfer/src/commands/TagResourceCommand.ts b/clients/client-transfer/src/commands/TagResourceCommand.ts index f02d1fa036ac4..38132f3cd4e1e 100644 --- a/clients/client-transfer/src/commands/TagResourceCommand.ts +++ b/clients/client-transfer/src/commands/TagResourceCommand.ts @@ -74,6 +74,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-transfer/src/commands/TestConnectionCommand.ts b/clients/client-transfer/src/commands/TestConnectionCommand.ts index 551c730c03e10..8dd40e29bea3e 100644 --- a/clients/client-transfer/src/commands/TestConnectionCommand.ts +++ b/clients/client-transfer/src/commands/TestConnectionCommand.ts @@ -72,6 +72,7 @@ export interface TestConnectionCommandOutput extends TestConnectionResponse, __M * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class TestConnectionCommand extends $Command diff --git a/clients/client-transfer/src/commands/TestIdentityProviderCommand.ts b/clients/client-transfer/src/commands/TestIdentityProviderCommand.ts index a2712ad168f3c..772d97b024d9b 100644 --- a/clients/client-transfer/src/commands/TestIdentityProviderCommand.ts +++ b/clients/client-transfer/src/commands/TestIdentityProviderCommand.ts @@ -128,6 +128,7 @@ export interface TestIdentityProviderCommandOutput extends TestIdentityProviderR * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class TestIdentityProviderCommand extends $Command diff --git a/clients/client-transfer/src/commands/UntagResourceCommand.ts b/clients/client-transfer/src/commands/UntagResourceCommand.ts index 426c2ee947c6f..e8723c56b0390 100644 --- a/clients/client-transfer/src/commands/UntagResourceCommand.ts +++ b/clients/client-transfer/src/commands/UntagResourceCommand.ts @@ -71,6 +71,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {} * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-transfer/src/commands/UpdateAccessCommand.ts b/clients/client-transfer/src/commands/UpdateAccessCommand.ts index b2cab9b52e047..e0667b120e1c6 100644 --- a/clients/client-transfer/src/commands/UpdateAccessCommand.ts +++ b/clients/client-transfer/src/commands/UpdateAccessCommand.ts @@ -95,6 +95,7 @@ export interface UpdateAccessCommandOutput extends UpdateAccessResponse, __Metad * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class UpdateAccessCommand extends $Command diff --git a/clients/client-transfer/src/commands/UpdateAgreementCommand.ts b/clients/client-transfer/src/commands/UpdateAgreementCommand.ts index 15a7fca4d0f31..99d74e74576a4 100644 --- a/clients/client-transfer/src/commands/UpdateAgreementCommand.ts +++ b/clients/client-transfer/src/commands/UpdateAgreementCommand.ts @@ -97,6 +97,7 @@ export interface UpdateAgreementCommandOutput extends UpdateAgreementResponse, _ * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class UpdateAgreementCommand extends $Command diff --git a/clients/client-transfer/src/commands/UpdateCertificateCommand.ts b/clients/client-transfer/src/commands/UpdateCertificateCommand.ts index 726f4f2eae5fa..c5452618c7933 100644 --- a/clients/client-transfer/src/commands/UpdateCertificateCommand.ts +++ b/clients/client-transfer/src/commands/UpdateCertificateCommand.ts @@ -74,6 +74,7 @@ export interface UpdateCertificateCommandOutput extends UpdateCertificateRespons * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class UpdateCertificateCommand extends $Command diff --git a/clients/client-transfer/src/commands/UpdateConnectorCommand.ts b/clients/client-transfer/src/commands/UpdateConnectorCommand.ts index da20f3c357ccc..3b93d853fe11c 100644 --- a/clients/client-transfer/src/commands/UpdateConnectorCommand.ts +++ b/clients/client-transfer/src/commands/UpdateConnectorCommand.ts @@ -98,6 +98,7 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _ * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class UpdateConnectorCommand extends $Command diff --git a/clients/client-transfer/src/commands/UpdateHostKeyCommand.ts b/clients/client-transfer/src/commands/UpdateHostKeyCommand.ts index 713987789fbfa..8fac15718b988 100644 --- a/clients/client-transfer/src/commands/UpdateHostKeyCommand.ts +++ b/clients/client-transfer/src/commands/UpdateHostKeyCommand.ts @@ -75,6 +75,7 @@ export interface UpdateHostKeyCommandOutput extends UpdateHostKeyResponse, __Met * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class UpdateHostKeyCommand extends $Command diff --git a/clients/client-transfer/src/commands/UpdateProfileCommand.ts b/clients/client-transfer/src/commands/UpdateProfileCommand.ts index ae1b5192d2b76..8908ba9da5671 100644 --- a/clients/client-transfer/src/commands/UpdateProfileCommand.ts +++ b/clients/client-transfer/src/commands/UpdateProfileCommand.ts @@ -76,6 +76,7 @@ export interface UpdateProfileCommandOutput extends UpdateProfileResponse, __Met * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class UpdateProfileCommand extends $Command diff --git a/clients/client-transfer/src/commands/UpdateServerCommand.ts b/clients/client-transfer/src/commands/UpdateServerCommand.ts index f84396da4fb09..dbd65edd77b2d 100644 --- a/clients/client-transfer/src/commands/UpdateServerCommand.ts +++ b/clients/client-transfer/src/commands/UpdateServerCommand.ts @@ -143,6 +143,7 @@ export interface UpdateServerCommandOutput extends UpdateServerResponse, __Metad * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class UpdateServerCommand extends $Command diff --git a/clients/client-transfer/src/commands/UpdateUserCommand.ts b/clients/client-transfer/src/commands/UpdateUserCommand.ts index f5a62f1715b54..428c077c4aec7 100644 --- a/clients/client-transfer/src/commands/UpdateUserCommand.ts +++ b/clients/client-transfer/src/commands/UpdateUserCommand.ts @@ -107,6 +107,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class UpdateUserCommand extends $Command diff --git a/clients/client-transfer/src/commands/UpdateWebAppCommand.ts b/clients/client-transfer/src/commands/UpdateWebAppCommand.ts index 6cddfc383312f..df09c0a26fb53 100644 --- a/clients/client-transfer/src/commands/UpdateWebAppCommand.ts +++ b/clients/client-transfer/src/commands/UpdateWebAppCommand.ts @@ -85,6 +85,7 @@ export interface UpdateWebAppCommandOutput extends UpdateWebAppResponse, __Metad * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class UpdateWebAppCommand extends $Command diff --git a/clients/client-transfer/src/commands/UpdateWebAppCustomizationCommand.ts b/clients/client-transfer/src/commands/UpdateWebAppCustomizationCommand.ts index 8782caf6ee303..621b1a95bcf45 100644 --- a/clients/client-transfer/src/commands/UpdateWebAppCustomizationCommand.ts +++ b/clients/client-transfer/src/commands/UpdateWebAppCustomizationCommand.ts @@ -83,6 +83,7 @@ export interface UpdateWebAppCustomizationCommandOutput extends UpdateWebAppCust * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* + * * @public */ export class UpdateWebAppCustomizationCommand extends $Command diff --git a/clients/client-translate/src/commands/CreateParallelDataCommand.ts b/clients/client-translate/src/commands/CreateParallelDataCommand.ts index 3b4ba0cfff61c..bcb33969b6877 100644 --- a/clients/client-translate/src/commands/CreateParallelDataCommand.ts +++ b/clients/client-translate/src/commands/CreateParallelDataCommand.ts @@ -104,6 +104,7 @@ export interface CreateParallelDataCommandOutput extends CreateParallelDataRespo * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class CreateParallelDataCommand extends $Command diff --git a/clients/client-translate/src/commands/DeleteParallelDataCommand.ts b/clients/client-translate/src/commands/DeleteParallelDataCommand.ts index e15175b486db5..98d3d6435d53a 100644 --- a/clients/client-translate/src/commands/DeleteParallelDataCommand.ts +++ b/clients/client-translate/src/commands/DeleteParallelDataCommand.ts @@ -72,6 +72,7 @@ export interface DeleteParallelDataCommandOutput extends DeleteParallelDataRespo * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class DeleteParallelDataCommand extends $Command diff --git a/clients/client-translate/src/commands/DeleteTerminologyCommand.ts b/clients/client-translate/src/commands/DeleteTerminologyCommand.ts index 22e946c29badb..d721cc633d7db 100644 --- a/clients/client-translate/src/commands/DeleteTerminologyCommand.ts +++ b/clients/client-translate/src/commands/DeleteTerminologyCommand.ts @@ -69,6 +69,7 @@ export interface DeleteTerminologyCommandOutput extends __MetadataBearer {} * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class DeleteTerminologyCommand extends $Command diff --git a/clients/client-translate/src/commands/DescribeTextTranslationJobCommand.ts b/clients/client-translate/src/commands/DescribeTextTranslationJobCommand.ts index cd009a51408d0..1a4ac5fb0d7ee 100644 --- a/clients/client-translate/src/commands/DescribeTextTranslationJobCommand.ts +++ b/clients/client-translate/src/commands/DescribeTextTranslationJobCommand.ts @@ -107,6 +107,7 @@ export interface DescribeTextTranslationJobCommandOutput extends DescribeTextTra * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class DescribeTextTranslationJobCommand extends $Command diff --git a/clients/client-translate/src/commands/GetParallelDataCommand.ts b/clients/client-translate/src/commands/GetParallelDataCommand.ts index 31bb2d95a238c..35b7dfc6a2d04 100644 --- a/clients/client-translate/src/commands/GetParallelDataCommand.ts +++ b/clients/client-translate/src/commands/GetParallelDataCommand.ts @@ -109,6 +109,7 @@ export interface GetParallelDataCommandOutput extends GetParallelDataResponse, _ * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class GetParallelDataCommand extends $Command diff --git a/clients/client-translate/src/commands/GetTerminologyCommand.ts b/clients/client-translate/src/commands/GetTerminologyCommand.ts index b0fcd7ec806f2..06cf373a8bc89 100644 --- a/clients/client-translate/src/commands/GetTerminologyCommand.ts +++ b/clients/client-translate/src/commands/GetTerminologyCommand.ts @@ -100,6 +100,7 @@ export interface GetTerminologyCommandOutput extends GetTerminologyResponse, __M * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class GetTerminologyCommand extends $Command diff --git a/clients/client-translate/src/commands/ImportTerminologyCommand.ts b/clients/client-translate/src/commands/ImportTerminologyCommand.ts index 079a0225be1e1..535ea0117fa78 100644 --- a/clients/client-translate/src/commands/ImportTerminologyCommand.ts +++ b/clients/client-translate/src/commands/ImportTerminologyCommand.ts @@ -129,6 +129,7 @@ export interface ImportTerminologyCommandOutput extends ImportTerminologyRespons * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class ImportTerminologyCommand extends $Command diff --git a/clients/client-translate/src/commands/ListLanguagesCommand.ts b/clients/client-translate/src/commands/ListLanguagesCommand.ts index 707032973335f..78eaa54db0f36 100644 --- a/clients/client-translate/src/commands/ListLanguagesCommand.ts +++ b/clients/client-translate/src/commands/ListLanguagesCommand.ts @@ -78,6 +78,7 @@ export interface ListLanguagesCommandOutput extends ListLanguagesResponse, __Met * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class ListLanguagesCommand extends $Command diff --git a/clients/client-translate/src/commands/ListParallelDataCommand.ts b/clients/client-translate/src/commands/ListParallelDataCommand.ts index 6e4c081870337..e4dcb9222e7fe 100644 --- a/clients/client-translate/src/commands/ListParallelDataCommand.ts +++ b/clients/client-translate/src/commands/ListParallelDataCommand.ts @@ -96,6 +96,7 @@ export interface ListParallelDataCommandOutput extends ListParallelDataResponse, * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class ListParallelDataCommand extends $Command diff --git a/clients/client-translate/src/commands/ListTagsForResourceCommand.ts b/clients/client-translate/src/commands/ListTagsForResourceCommand.ts index c93eee492d6ab..f4164d4544f28 100644 --- a/clients/client-translate/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-translate/src/commands/ListTagsForResourceCommand.ts @@ -74,6 +74,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-translate/src/commands/ListTerminologiesCommand.ts b/clients/client-translate/src/commands/ListTerminologiesCommand.ts index 207c56a6ce0de..a55fac24bbb13 100644 --- a/clients/client-translate/src/commands/ListTerminologiesCommand.ts +++ b/clients/client-translate/src/commands/ListTerminologiesCommand.ts @@ -90,6 +90,7 @@ export interface ListTerminologiesCommandOutput extends ListTerminologiesRespons * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class ListTerminologiesCommand extends $Command diff --git a/clients/client-translate/src/commands/ListTextTranslationJobsCommand.ts b/clients/client-translate/src/commands/ListTextTranslationJobsCommand.ts index be304a60e1888..cb6a6ec32357d 100644 --- a/clients/client-translate/src/commands/ListTextTranslationJobsCommand.ts +++ b/clients/client-translate/src/commands/ListTextTranslationJobsCommand.ts @@ -118,6 +118,7 @@ export interface ListTextTranslationJobsCommandOutput extends ListTextTranslatio * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class ListTextTranslationJobsCommand extends $Command diff --git a/clients/client-translate/src/commands/StartTextTranslationJobCommand.ts b/clients/client-translate/src/commands/StartTextTranslationJobCommand.ts index 6c31d6d885545..8afaa253fd6c5 100644 --- a/clients/client-translate/src/commands/StartTextTranslationJobCommand.ts +++ b/clients/client-translate/src/commands/StartTextTranslationJobCommand.ts @@ -116,6 +116,7 @@ export interface StartTextTranslationJobCommandOutput extends StartTextTranslati * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class StartTextTranslationJobCommand extends $Command diff --git a/clients/client-translate/src/commands/StopTextTranslationJobCommand.ts b/clients/client-translate/src/commands/StopTextTranslationJobCommand.ts index f53c94bc1fe81..e54aaa484f0cd 100644 --- a/clients/client-translate/src/commands/StopTextTranslationJobCommand.ts +++ b/clients/client-translate/src/commands/StopTextTranslationJobCommand.ts @@ -74,6 +74,7 @@ export interface StopTextTranslationJobCommandOutput extends StopTextTranslation * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class StopTextTranslationJobCommand extends $Command diff --git a/clients/client-translate/src/commands/TagResourceCommand.ts b/clients/client-translate/src/commands/TagResourceCommand.ts index b60ca8f1c8140..ecbf5d8b19788 100644 --- a/clients/client-translate/src/commands/TagResourceCommand.ts +++ b/clients/client-translate/src/commands/TagResourceCommand.ts @@ -81,6 +81,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-translate/src/commands/TranslateDocumentCommand.ts b/clients/client-translate/src/commands/TranslateDocumentCommand.ts index d062611a670f4..055ee5298479e 100644 --- a/clients/client-translate/src/commands/TranslateDocumentCommand.ts +++ b/clients/client-translate/src/commands/TranslateDocumentCommand.ts @@ -131,6 +131,7 @@ export interface TranslateDocumentCommandOutput extends TranslateDocumentRespons * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class TranslateDocumentCommand extends $Command diff --git a/clients/client-translate/src/commands/TranslateTextCommand.ts b/clients/client-translate/src/commands/TranslateTextCommand.ts index 6fbe51056072a..d0e89e50f27e4 100644 --- a/clients/client-translate/src/commands/TranslateTextCommand.ts +++ b/clients/client-translate/src/commands/TranslateTextCommand.ts @@ -118,6 +118,7 @@ export interface TranslateTextCommandOutput extends TranslateTextResponse, __Met * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class TranslateTextCommand extends $Command diff --git a/clients/client-translate/src/commands/UntagResourceCommand.ts b/clients/client-translate/src/commands/UntagResourceCommand.ts index 161191ca65a74..ae6c1d6943d9c 100644 --- a/clients/client-translate/src/commands/UntagResourceCommand.ts +++ b/clients/client-translate/src/commands/UntagResourceCommand.ts @@ -74,6 +74,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-translate/src/commands/UpdateParallelDataCommand.ts b/clients/client-translate/src/commands/UpdateParallelDataCommand.ts index 8146a4ad67fc9..9f702fe4b8737 100644 --- a/clients/client-translate/src/commands/UpdateParallelDataCommand.ts +++ b/clients/client-translate/src/commands/UpdateParallelDataCommand.ts @@ -96,6 +96,7 @@ export interface UpdateParallelDataCommandOutput extends UpdateParallelDataRespo * @throws {@link TranslateServiceException} *

Base exception class for all service exceptions from Translate service.

* + * * @public */ export class UpdateParallelDataCommand extends $Command diff --git a/clients/client-trustedadvisor/src/commands/BatchUpdateRecommendationResourceExclusionCommand.ts b/clients/client-trustedadvisor/src/commands/BatchUpdateRecommendationResourceExclusionCommand.ts index 30a3709939231..338762348fcbd 100644 --- a/clients/client-trustedadvisor/src/commands/BatchUpdateRecommendationResourceExclusionCommand.ts +++ b/clients/client-trustedadvisor/src/commands/BatchUpdateRecommendationResourceExclusionCommand.ts @@ -90,6 +90,33 @@ export interface BatchUpdateRecommendationResourceExclusionCommandOutput * @throws {@link TrustedAdvisorServiceException} *

Base exception class for all service exceptions from TrustedAdvisor service.

* + * + * @example Batch updates the exclusion status for a list of recommendation resources + * ```javascript + * // + * const input = { + * recommendationResourceExclusions: [ + * { + * arn: "arn:aws:trustedadvisor::000000000000:recommendation-resource/55fa4d2e-bbb7-491a-833b-5773e9589578/18959a1f1973cff8e706e9d9bde28bba36cd602a6b2cb86c8b61252835236010", + * isExcluded: true + * } + * ] + * }; + * const command = new BatchUpdateRecommendationResourceExclusionCommand(input); + * const response = await client.send(command); + * /* response is + * { + * batchUpdateRecommendationResourceExclusionErrors: [ + * { + * arn: "arn:aws:trustedadvisor::000000000000:recommendation-resource/55fa4d2e-bbb7-491a-833b-5773e9589578/18959a1f1973cff8e706e9d9bde28bba36cd602a6b2cb86c8b61252835236010", + * errorCode: "404", + * errorMessage: "Exception that the requested resource has not been found" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class BatchUpdateRecommendationResourceExclusionCommand extends $Command diff --git a/clients/client-trustedadvisor/src/commands/GetOrganizationRecommendationCommand.ts b/clients/client-trustedadvisor/src/commands/GetOrganizationRecommendationCommand.ts index 544533dc3bf1c..5b941840ab32d 100644 --- a/clients/client-trustedadvisor/src/commands/GetOrganizationRecommendationCommand.ts +++ b/clients/client-trustedadvisor/src/commands/GetOrganizationRecommendationCommand.ts @@ -116,6 +116,43 @@ export interface GetOrganizationRecommendationCommandOutput * @throws {@link TrustedAdvisorServiceException} *

Base exception class for all service exceptions from TrustedAdvisor service.

* + * + * @example Get an AWS Organization's Recommendation by ARN + * ```javascript + * // + * const input = { + * organizationRecommendationIdentifier: "arn:aws:trustedadvisor:::organization-recommendation/9534ec9b-bf3a-44e8-8213-2ed68b39d9d5" + * }; + * const command = new GetOrganizationRecommendationCommand(input); + * const response = await client.send(command); + * /* response is + * { + * organizationRecommendation: { + * arn: "arn:aws:trustedadvisor:::organization-recommendation/9534ec9b-bf3a-44e8-8213-2ed68b39d9d5", + * awsServices: [ + * "lambda" + * ], + * checkArn: "arn:aws:trustedadvisor:::check/L4dfs2Q4C5", + * description: "One or more lambdas are using a deprecated runtime", + * id: "9534ec9b-bf3a-44e8-8213-2ed68b39d9d5", + * lifecycleStage: "resolved", + * name: "Lambda Runtime Deprecation Warning", + * pillars: [ + * "security" + * ], + * resourcesAggregates: { + * errorCount: 0, + * okCount: 0, + * warningCount: 0 + * }, + * source: "ta_check", + * status: "warning", + * type: "priority" + * } + * } + * *\/ + * ``` + * * @public */ export class GetOrganizationRecommendationCommand extends $Command diff --git a/clients/client-trustedadvisor/src/commands/GetRecommendationCommand.ts b/clients/client-trustedadvisor/src/commands/GetRecommendationCommand.ts index 2ae572b7ec11a..e9e091ff7dea5 100644 --- a/clients/client-trustedadvisor/src/commands/GetRecommendationCommand.ts +++ b/clients/client-trustedadvisor/src/commands/GetRecommendationCommand.ts @@ -109,6 +109,49 @@ export interface GetRecommendationCommandOutput extends GetRecommendationRespons * @throws {@link TrustedAdvisorServiceException} *

Base exception class for all service exceptions from TrustedAdvisor service.

* + * + * @example Get a Recommendation by ARN + * ```javascript + * // + * const input = { + * recommendationIdentifier: "arn:aws:trustedadvisor::000000000000:recommendation/55fa4d2e-bbb7-491a-833b-5773e9589578" + * }; + * const command = new GetRecommendationCommand(input); + * const response = await client.send(command); + * /* response is + * { + * recommendation: { + * arn: "arn:aws:trustedadvisor::000000000000:recommendation/55fa4d2e-bbb7-491a-833b-5773e9589578", + * awsServices: [ + * "iam" + * ], + * checkArn: "arn:aws:trustedadvisor:::check/7DAFEmoDos", + * description: "Enable multi-factor authentication", + * id: "55fa4d2e-bbb7-491a-833b-5773e9589578", + * lastUpdatedAt: "2023-11-01T15:57:58.673Z", + * name: "MFA Recommendation", + * pillarSpecificAggregates: { + * costOptimizing: { + * estimatedMonthlySavings: 0.0, + * estimatedPercentMonthlySavings: 0.0 + * } + * }, + * pillars: [ + * "security" + * ], + * resourcesAggregates: { + * errorCount: 1, + * okCount: 0, + * warningCount: 0 + * }, + * source: "ta_check", + * status: "error", + * type: "standard" + * } + * } + * *\/ + * ``` + * * @public */ export class GetRecommendationCommand extends $Command diff --git a/clients/client-trustedadvisor/src/commands/ListChecksCommand.ts b/clients/client-trustedadvisor/src/commands/ListChecksCommand.ts index e7be49b6ef50c..030ffa6550db8 100644 --- a/clients/client-trustedadvisor/src/commands/ListChecksCommand.ts +++ b/clients/client-trustedadvisor/src/commands/ListChecksCommand.ts @@ -90,6 +90,134 @@ export interface ListChecksCommandOutput extends ListChecksResponse, __MetadataB * @throws {@link TrustedAdvisorServiceException} *

Base exception class for all service exceptions from TrustedAdvisor service.

* + * + * @example List all AWS Trusted Advisor Checks + * ```javascript + * // + * const input = { /* empty *\/ }; + * const command = new ListChecksCommand(input); + * const response = await client.send(command); + * /* response is + * { + * checkSummaries: [ + * { + * arn: "arn:aws:trustedadvisor:::check/1iG5NDGVre", + * awsServices: [ + * "EC2" + * ], + * description: `Checks security groups for rules that allow unrestricted access to a resource. Unrestricted access increases opportunities for malicious activity (hacking, denial-of-service attacks, loss of data). + *
+ *
Note: This check only evaluates security groups that you create and their inbound rules for IPv4 addresses. Security groups created by AWS Directory Services are flagged as red or yellow, but they don’t pose a security risk and can be safely ignored or excluded. For more information, see the Trusted Advisor FAQ. + *
+ *
+ *

Alert Criteria

+ *
+ * Red: A security group rule has a source IP address with a /0 suffix for ports other than 25, 80, or 443. + *
+ *
+ *

Recommended Action

+ *
+ * Restrict access to only those IP addresses that require it. To restrict access to a specific IP address, set the suffix to /32 (for example, 192.0.2.10/32). Be sure to delete overly permissive rules after creating rules that are more restrictive. + *
+ *
+ *

Additional Resources

+ *
Amazon EC2 Security Groups
+ * Classless Inter-Domain Routing (Wikipedia)`, + * id: "1iG5NDGVre", + * metadata: { + * 0: "Region", + * 1: "Security Group Name", + * 2: "Security Group ID", + * 3: "Protocol", + * 4: "Port", + * 5: "Status", + * 6: "IP Range" + * }, + * name: "Security Groups - Unrestricted Access", + * pillars: [ + * "security" + * ], + * source: "ta_check" + * }, + * { + * arn: "arn:aws:trustedadvisor:::check/1qazXsw23e", + * awsServices: [ + * "RDS" + * ], + * description: `Checks your usage of RDS and provides recommendations on purchase of Reserved Instances to help reduce costs incurred from using RDS On-Demand. AWS generates these recommendations by analyzing your On-Demand usage for the past 30 days. We then simulate every combination of reservations in the generated category of usage in order to identify the best number of each type of Reserved Instance to purchase to maximize your savings. This check covers recommendations based on partial upfront payment option with 1-year or 3-year commitment. This check is not available to accounts linked in Consolidated Billing. Recommendations are only available for the Paying Account.

+ *

Alert Criteria


+ * Yellow: Optimizing the purchase of RDS Reserved Instances can help reduce costs.

+ *

Recommended Action


+ * See the Cost Explorer page for more detailed recommendations, customization options (e.g. look-back period, payment option, etc.) and to purchase RDS Reserved Instances. + *
+ *
+ *

Additional Resources


+ * Information on RDS Reserved Instances and how they can save you money can be found here.
+ * For more information on this recommendation, see Reserved Instance Optimization Check Questions in the Trusted Advisor FAQs.
+ * For more detailed description of fields, see Cost Explorer documentation`, + * id: "1qazXsw23e", + * metadata: { + * 0: "Region", + * 1: "Family", + * 10: "Upfront Cost of Reserved Instances", + * 11: "Estimated cost of Reserved Instances (monthly)", + * 12: "Estimated On-Demand Cost Post Recommended Reserved Instance Purchase (monthly)", + * 13: "Estimated Break Even (months)", + * 14: "Lookback Period (days)", + * 15: "Term (years)", + * 2: "Instance Type", + * 3: "License Model", + * 4: "Database Edition", + * 5: "Database Engine", + * 6: "Deployment Option", + * 7: "Recommended number of Reserved Instances to purchase", + * 8: "Expected Average Reserved Instance Utilization", + * 9: "Estimated Savings with Recommendation (monthly)" + * }, + * name: "Amazon Relational Database Service (RDS) Reserved Instance Optimization", + * pillars: [ + * "cost_optimizing" + * ], + * source: "ta_check" + * }, + * { + * arn: "arn:aws:trustedadvisor:::check/1qw23er45t", + * awsServices: [ + * "Redshift" + * ], + * description: `Checks your usage of Redshift and provides recommendations on purchase of Reserved Nodes to help reduce costs incurred from using Redshift On-Demand. AWS generates these recommendations by analyzing your On-Demand usage for the past 30 days. We then simulate every combination of reservations in the generated category of usage in order to identify the best number of each type of Reserved Nodes to purchase to maximize your savings. This check covers recommendations based on partial upfront payment option with 1-year or 3-year commitment. This check is not available to accounts linked in Consolidated Billing. Recommendations are only available for the Paying Account.

+ *

Alert Criteria


Yellow: Optimizing the purchase of Redshift Reserved Nodes can help reduce costs.

+ *

Recommended Action


See the Cost Explorer page for more detailed recommendations, customization options (e.g. look-back period, payment option, etc.) and to purchase Redshift Reserved Nodes.

+ *

Additional Resources


Information on Redshift Reserved Nodes and how they can save you money can be found here.
+ * For more information on this recommendation, see Reserved Instance Optimization Check Questions in the Trusted Advisor FAQs.
+ * For more detailed description of fields, see Cost Explorer documentation`, + * id: "1qw23er45t", + * metadata: { + * 0: "Region", + * 1: "Family", + * 10: "Lookback Period (days)", + * 11: "Term (years)", + * 2: "Node Type", + * 3: "Recommended number of Reserved Nodes to purchase", + * 4: "Expected Average Reserved Node Utilization", + * 5: "Estimated Savings with Recommendation (monthly)", + * 6: "Upfront Cost of Reserved Nodes", + * 7: "Estimated cost of Reserved Nodes (monthly)", + * 8: "Estimated On-Demand Cost Post Recommended Reserved Nodes Purchase (monthly)", + * 9: "Estimated Break Even (months)" + * }, + * name: "Amazon Redshift Reserved Node Optimization", + * pillars: [ + * "cost_optimizing" + * ], + * source: "ta_check" + * } + * ], + * nextToken: "" + * } + * *\/ + * ``` + * * @public */ export class ListChecksCommand extends $Command diff --git a/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationAccountsCommand.ts b/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationAccountsCommand.ts index 504e5ed5fd447..589e84b764964 100644 --- a/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationAccountsCommand.ts +++ b/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationAccountsCommand.ts @@ -97,6 +97,32 @@ export interface ListOrganizationRecommendationAccountsCommandOutput * @throws {@link TrustedAdvisorServiceException} *

Base exception class for all service exceptions from TrustedAdvisor service.

* + * + * @example List all Accounts for an AWS Organization's Recommendation + * ```javascript + * // + * const input = { + * organizationRecommendationIdentifier: "arn:aws:trustedadvisor:::organization-recommendation/9534ec9b-bf3a-44e8-8213-2ed68b39d9d5" + * }; + * const command = new ListOrganizationRecommendationAccountsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * accountRecommendationLifecycleSummaries: [ + * { + * accountId: "000000000000", + * accountRecommendationArn: "arn:aws:trustedadvisor::000000000000:recommendation/9534ec9b-bf3a-44e8-8213-2ed68b39d9d5", + * lastUpdatedAt: "2023-01-17T18:25:44.552Z", + * lifecycleStage: "resolved", + * updateReason: "Resolved issue", + * updateReasonCode: "valid_business_case" + * } + * ], + * nextToken: "" + * } + * *\/ + * ``` + * * @public */ export class ListOrganizationRecommendationAccountsCommand extends $Command diff --git a/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationResourcesCommand.ts b/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationResourcesCommand.ts index 7abfb735d3473..8f54f4822c3f6 100644 --- a/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationResourcesCommand.ts +++ b/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationResourcesCommand.ts @@ -103,6 +103,84 @@ export interface ListOrganizationRecommendationResourcesCommandOutput * @throws {@link TrustedAdvisorServiceException} *

Base exception class for all service exceptions from TrustedAdvisor service.

* + * + * @example List all Resources for an AWS Organization's Recommendation + * ```javascript + * // + * const input = { + * organizationRecommendationIdentifier: "arn:aws:trustedadvisor:::organization-recommendation/5a694939-2e54-45a2-ae72-730598fa89d0" + * }; + * const command = new ListOrganizationRecommendationResourcesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * nextToken: "", + * organizationRecommendationResourceSummaries: [ + * { + * arn: "arn:aws:trustedadvisor::000000000000:recommendation-resource/5a694939-2e54-45a2-ae72-730598fa89d0/bb38affc0ce0681d9a6cd13f30238ba03a8f63dfe7a379dc403c619119d86af", + * awsResourceId: "database-1-instance-1", + * exclusionStatus: "excluded", + * id: "bb38affc0ce0681d9a6cd13f302383ba03a8f63dfe7a379dc403c619119d86af", + * lastUpdatedAt: "2023-11-01T15:09:51.891Z", + * metadata: { + * 0: "14", + * 1: "208.79999999999998", + * 2: "database-1-instance-1", + * 3: "db.r5.large", + * 4: "false", + * 5: "us-west-2", + * 6: "arn:aws:rds:us-west-2:000000000000:db:database-1-instance-1", + * 7: "1" + * }, + * recommendationArn: "arn:aws:trustedadvisor:::organization-recommendation/5a694939-2e54-45a2-ae72-730598fa89d0", + * regionCode: "us-west-2", + * status: "warning" + * }, + * { + * arn: "arn:aws:trustedadvisor::000000000000:recommendation-resource/5a694939-2e54-45a2-ae72-730598fa89d0/51fded4d7a3278818df9cfe344ff5762cec46c095a6763d1ba1ba53bd0e1b0e6", + * awsResourceId: "database-1", + * exclusionStatus: "excluded", + * id: "51fded4d7a3278818df9cfe344ff5762cec46c095a6763d1ba1ba53bd0e1b0e6", + * lastUpdatedAt: "2023-11-01T15:09:51.891Z", + * metadata: { + * 0: "14", + * 1: "31.679999999999996", + * 2: "database-1", + * 3: "db.t3.small", + * 4: "false", + * 5: "us-west-2", + * 6: "arn:aws:rds:us-west-2:000000000000:db:database-1", + * 7: "20" + * }, + * recommendationArn: "arn:aws:trustedadvisor:::organization-recommendation/5a694939-2e54-45a2-ae72-730598fa89d0", + * regionCode: "us-west-2", + * status: "warning" + * }, + * { + * arn: "arn:aws:trustedadvisor::000000000000:recommendation-resource/5a694939-2e54-45a2-ae72-730598fa89d0/f4d01bd20f4cd5372062aafc8786c489e48f0ead7cdab121463bf9f89e40a36b", + * awsResourceId: "database-2-instance-1-us-west-2a", + * exclusionStatus: "included", + * id: "f4d01bd20f4cd5372062aafc8786c489e48f0ead7cdab121463bf9f89e40a36b", + * lastUpdatedAt: "2023-11-01T15:09:51.891Z", + * metadata: { + * 0: "14", + * 1: "187.20000000000002", + * 2: "database-2-instance-1-us-west-2a", + * 3: "db.r6g.large", + * 4: "true", + * 5: "us-west-2", + * 6: "arn:aws:rds:us-west-2:000000000000:db:database-2-instance-1-us-west-2a", + * 7: "1" + * }, + * recommendationArn: "arn:aws:trustedadvisor:::organization-recommendation/5a694939-2e54-45a2-ae72-730598fa89d0", + * regionCode: "us-west-2", + * status: "warning" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListOrganizationRecommendationResourcesCommand extends $Command diff --git a/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationsCommand.ts b/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationsCommand.ts index 095d10752ee12..04c268fd1f3ad 100644 --- a/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationsCommand.ts +++ b/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationsCommand.ts @@ -114,6 +114,142 @@ export interface ListOrganizationRecommendationsCommandOutput * @throws {@link TrustedAdvisorServiceException} *

Base exception class for all service exceptions from TrustedAdvisor service.

* + * + * @example List all of an AWS Organization's Recommendations + * ```javascript + * // + * const input = { /* empty *\/ }; + * const command = new ListOrganizationRecommendationsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * nextToken: "", + * organizationRecommendationSummaries: [ + * { + * arn: "arn:aws:trustedadvisor:::organization-recommendation/9534ec9b-bf3a-44e8-8213-2ed68b39d9d5", + * awsServices: [ + * "lambda" + * ], + * checkArn: "arn:aws:trustedadvisor:::check/L4dfs2Q4C5", + * id: "9534ec9b-bf3a-44e8-8213-2ed68b39d9d5", + * lifecycleStage: "resolved", + * name: "Lambda Runtime Deprecation Warning", + * pillars: [ + * "security" + * ], + * resourcesAggregates: { + * errorCount: 0, + * okCount: 0, + * warningCount: 0 + * }, + * source: "ta_check", + * status: "warning", + * type: "priority" + * }, + * { + * arn: "arn:aws:trustedadvisor:::organization-recommendation/4ecff4d4-1bc1-4c99-a5b8-0fff9ee500d6", + * awsServices: [ + * "lambda" + * ], + * checkArn: "arn:aws:trustedadvisor:::check/L4dfs2Q4C5", + * id: "4ecff4d4-1bc1-4c99-a5b8-0fff9ee500d6", + * lifecycleStage: "resolved", + * name: "Lambda Runtime Deprecation Warning", + * pillars: [ + * "security" + * ], + * resourcesAggregates: { + * errorCount: 0, + * okCount: 0, + * warningCount: 0 + * }, + * source: "ta_check", + * status: "warning", + * type: "priority" + * } + * ] + * } + * *\/ + * ``` + * + * @example Filter and return a max of one AWS Organization Recommendation that is a part of the "security" pillar + * ```javascript + * // + * const input = { + * maxResults: 100, + * pillar: "security" + * }; + * const command = new ListOrganizationRecommendationsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * nextToken: "", + * organizationRecommendationSummaries: [ + * { + * arn: "arn:aws:trustedadvisor:::organization-recommendation/9534ec9b-bf3a-44e8-8213-2ed68b39d9d5", + * awsServices: [ + * "lambda" + * ], + * checkArn: "arn:aws:trustedadvisor:::check/L4dfs2Q4C5", + * id: "9534ec9b-bf3a-44e8-8213-2ed68b39d9d5", + * lifecycleStage: "resolved", + * name: "Lambda Runtime Deprecation Warning", + * pillars: [ + * "security" + * ], + * resourcesAggregates: { + * errorCount: 0, + * okCount: 0, + * warningCount: 0 + * }, + * source: "ta_check", + * status: "warning", + * type: "priority" + * } + * ] + * } + * *\/ + * ``` + * + * @example Use the "nextToken" returned from a previous request to fetch the next page of filtered AWS Organization Recommendations that are a part of the "security" pillar + * ```javascript + * // + * const input = { + * maxResults: 100, + * nextToken: "", + * pillar: "security" + * }; + * const command = new ListOrganizationRecommendationsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * organizationRecommendationSummaries: [ + * { + * arn: "arn:aws:trustedadvisor:::organization-recommendation/4ecff4d4-1bc1-4c99-a5b8-0fff9ee500d6", + * awsServices: [ + * "lambda" + * ], + * checkArn: "arn:aws:trustedadvisor:::check/L4dfs2Q4C5", + * id: "4ecff4d4-1bc1-4c99-a5b8-0fff9ee500d6", + * lifecycleStage: "resolved", + * name: "Lambda Runtime Deprecation Warning", + * pillars: [ + * "security" + * ], + * resourcesAggregates: { + * errorCount: 0, + * okCount: 0, + * warningCount: 0 + * }, + * source: "ta_check", + * status: "warning", + * type: "priority" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListOrganizationRecommendationsCommand extends $Command diff --git a/clients/client-trustedadvisor/src/commands/ListRecommendationResourcesCommand.ts b/clients/client-trustedadvisor/src/commands/ListRecommendationResourcesCommand.ts index 45f1e4b34e73e..34e8502ad931a 100644 --- a/clients/client-trustedadvisor/src/commands/ListRecommendationResourcesCommand.ts +++ b/clients/client-trustedadvisor/src/commands/ListRecommendationResourcesCommand.ts @@ -95,6 +95,84 @@ export interface ListRecommendationResourcesCommandOutput * @throws {@link TrustedAdvisorServiceException} *

Base exception class for all service exceptions from TrustedAdvisor service.

* + * + * @example List all Resources for a Recommendation + * ```javascript + * // + * const input = { + * recommendationIdentifier: "arn:aws:trustedadvisor::000000000000:recommendation/55fa4d2e-bbb7-491a-833b-5773e9589578" + * }; + * const command = new ListRecommendationResourcesCommand(input); + * const response = await client.send(command); + * /* response is + * { + * nextToken: "", + * recommendationResourceSummaries: [ + * { + * arn: "arn:aws:trustedadvisor::000000000000:recommendation-resource/55fa4d2e-bbb7-491a-833b-5773e9589578/18959a1f1973cff8e706e9d9bde28bba36cd602a6b2cb86c8b61252835236010", + * awsResourceId: "webcms-dev-01", + * exclusionStatus: "excluded", + * id: "18959a1f1973cff8e706e9d9bde28bba36cd602a6b2cb86c8b61252835236010", + * lastUpdatedAt: "2023-11-01T15:09:51.891Z", + * metadata: { + * 0: "14", + * 1: "123.12000000000002", + * 2: "webcms-dev-01", + * 3: "db.m6i.large", + * 4: "false", + * 5: "us-east-1", + * 6: "arn:aws:rds:us-east-1:000000000000:db:webcms-dev-01", + * 7: "20" + * }, + * recommendationArn: "arn:aws:trustedadvisor::000000000000:recommendation/55fa4d2e-bbb7-491a-833b-5773e9589578", + * regionCode: "us-east-1", + * status: "warning" + * }, + * { + * arn: "arn:aws:trustedadvisor::000000000000:recommendation-resource/55fa4d2e-bbb7-491a-833b-5773e9589578/e6367ff500ac90db8e4adeb4892e39ee9c36bbf812dcbce4b9e4fefcec9eb63e", + * awsResourceId: "aws-dev-db-stack-instance-1", + * exclusionStatus: "included", + * id: "e6367ff500ac90db8e4adeb4892e39ee9c36bbf812dcbce4b9e4fefcec9eb63e", + * lastUpdatedAt: "2023-11-01T15:09:51.891Z", + * metadata: { + * 0: "14", + * 1: "29.52", + * 2: "aws-dev-db-stack-instance-1", + * 3: "db.t2.small", + * 4: "false", + * 5: "us-east-1", + * 6: "arn:aws:rds:us-east-1:000000000000:db:aws-dev-db-stack-instance-1", + * 7: "1" + * }, + * recommendationArn: "arn:aws:trustedadvisor::000000000000:recommendation/55fa4d2e-bbb7-491a-833b-5773e9589578", + * regionCode: "us-east-1", + * status: "warning" + * }, + * { + * arn: "arn:aws:trustedadvisor::000000000000:recommendation-resource/55fa4d2e-bbb7-491a-833b-5773e9589578/31aa78ba050a5015d2d38cca7f5f1ce88f70857c4e1c3ad03f8f9fd95dad7459", + * awsResourceId: "aws-awesome-apps-stack-db", + * exclusionStatus: "excluded", + * id: "31aa78ba050a5015d2d38cca7f5f1ce88f70857c4e1c3ad03f8f9fd95dad7459", + * lastUpdatedAt: "2023-11-01T15:09:51.891Z", + * metadata: { + * 0: "14", + * 1: "114.48000000000002", + * 2: "aws-awesome-apps-stack-db", + * 3: "db.m6g.large", + * 4: "false", + * 5: "us-east-1", + * 6: "arn:aws:rds:us-east-1:000000000000:db:aws-awesome-apps-stack-db", + * 7: "100" + * }, + * recommendationArn: "arn:aws:trustedadvisor::000000000000:recommendation/55fa4d2e-bbb7-491a-833b-5773e9589578", + * regionCode: "us-east-1", + * status: "warning" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListRecommendationResourcesCommand extends $Command diff --git a/clients/client-trustedadvisor/src/commands/ListRecommendationsCommand.ts b/clients/client-trustedadvisor/src/commands/ListRecommendationsCommand.ts index d2097142595dc..47402efedda87 100644 --- a/clients/client-trustedadvisor/src/commands/ListRecommendationsCommand.ts +++ b/clients/client-trustedadvisor/src/commands/ListRecommendationsCommand.ts @@ -107,6 +107,166 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes * @throws {@link TrustedAdvisorServiceException} *

Base exception class for all service exceptions from TrustedAdvisor service.

* + * + * @example List all Recommendations + * ```javascript + * // + * const input = { /* empty *\/ }; + * const command = new ListRecommendationsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * nextToken: "", + * recommendationSummaries: [ + * { + * arn: "arn:aws:trustedadvisor::000000000000:recommendation/55fa4d2e-bbb7-491a-833b-5773e9589578", + * awsServices: [ + * "iam" + * ], + * checkArn: "arn:aws:trustedadvisor:::check/7DAFEmoDos", + * id: "55fa4d2e-bbb7-491a-833b-5773e9589578", + * lastUpdatedAt: "2023-11-01T15:57:58.673Z", + * name: "MFA Recommendation", + * pillarSpecificAggregates: { + * costOptimizing: { + * estimatedMonthlySavings: 0.0, + * estimatedPercentMonthlySavings: 0.0 + * } + * }, + * pillars: [ + * "security" + * ], + * resourcesAggregates: { + * errorCount: 1, + * okCount: 0, + * warningCount: 0 + * }, + * source: "ta_check", + * status: "error", + * type: "standard" + * }, + * { + * arn: "arn:aws:trustedadvisor::000000000000:recommendation/8b602b6f-452d-4cb2-8a9e-c7650955d9cd", + * awsServices: [ + * "rds" + * ], + * checkArn: "arn:aws:trustedadvisor:::check/gjqMBn6pjz", + * id: "8b602b6f-452d-4cb2-8a9e-c7650955d9cd", + * lastUpdatedAt: "2023-11-01T15:58:17.397Z", + * name: "RDS clusters quota warning", + * pillarSpecificAggregates: { + * costOptimizing: { + * estimatedMonthlySavings: 0.0, + * estimatedPercentMonthlySavings: 0.0 + * } + * }, + * pillars: [ + * "service_limits" + * ], + * resourcesAggregates: { + * errorCount: 0, + * okCount: 3, + * warningCount: 6 + * }, + * source: "ta_check", + * status: "warning", + * type: "standard" + * } + * ] + * } + * *\/ + * ``` + * + * @example Filter and return a max of one Recommendation that is a part of AWS IAM + * ```javascript + * // + * const input = { + * awsService: "iam", + * maxResults: 100 + * }; + * const command = new ListRecommendationsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * nextToken: "", + * recommendationSummaries: [ + * { + * arn: "arn:aws:trustedadvisor::000000000000:recommendation/55fa4d2e-bbb7-491a-833b-5773e9589578", + * awsServices: [ + * "iam" + * ], + * checkArn: "arn:aws:trustedadvisor:::check/7DAFEmoDos", + * id: "55fa4d2e-bbb7-491a-833b-5773e9589578", + * lastUpdatedAt: "2023-11-01T15:57:58.673Z", + * name: "MFA Recommendation", + * pillarSpecificAggregates: { + * costOptimizing: { + * estimatedMonthlySavings: 0.0, + * estimatedPercentMonthlySavings: 0.0 + * } + * }, + * pillars: [ + * "security" + * ], + * resourcesAggregates: { + * errorCount: 1, + * okCount: 0, + * warningCount: 0 + * }, + * source: "ta_check", + * status: "error", + * type: "standard" + * } + * ] + * } + * *\/ + * ``` + * + * @example Use the "nextToken" returned from a previous request to fetch the next page of filtered Recommendations + * ```javascript + * // + * const input = { + * awsService: "rds", + * maxResults: 100, + * nextToken: "" + * }; + * const command = new ListRecommendationsCommand(input); + * const response = await client.send(command); + * /* response is + * { + * recommendationSummaries: [ + * { + * arn: "arn:aws:trustedadvisor::000000000000:recommendation/8b602b6f-452d-4cb2-8a9e-c7650955d9cd", + * awsServices: [ + * "rds" + * ], + * checkArn: "arn:aws:trustedadvisor:::check/gjqMBn6pjz", + * id: "8b602b6f-452d-4cb2-8a9e-c7650955d9cd", + * lastUpdatedAt: "2023-11-01T15:58:17.397Z", + * name: "RDS clusters quota warning", + * pillarSpecificAggregates: { + * costOptimizing: { + * estimatedMonthlySavings: 0.0, + * estimatedPercentMonthlySavings: 0.0 + * } + * }, + * pillars: [ + * "service_limits" + * ], + * resourcesAggregates: { + * errorCount: 0, + * okCount: 3, + * warningCount: 6 + * }, + * source: "ta_check", + * status: "warning", + * type: "standard" + * } + * ] + * } + * *\/ + * ``` + * * @public */ export class ListRecommendationsCommand extends $Command diff --git a/clients/client-trustedadvisor/src/commands/UpdateOrganizationRecommendationLifecycleCommand.ts b/clients/client-trustedadvisor/src/commands/UpdateOrganizationRecommendationLifecycleCommand.ts index 7b9781cdc0805..1bb31e765d0a1 100644 --- a/clients/client-trustedadvisor/src/commands/UpdateOrganizationRecommendationLifecycleCommand.ts +++ b/clients/client-trustedadvisor/src/commands/UpdateOrganizationRecommendationLifecycleCommand.ts @@ -83,6 +83,23 @@ export interface UpdateOrganizationRecommendationLifecycleCommandOutput extends * @throws {@link TrustedAdvisorServiceException} *

Base exception class for all service exceptions from TrustedAdvisor service.

* + * + * @example Update the lifecycle stage of an AWS Organization's Recommendation that is managed by AWS Trusted Advisor Priority + * ```javascript + * // + * const input = { + * lifecycleStage: "dismissed", + * organizationRecommendationIdentifier: "arn:aws:trustedadvisor:::organization-recommendation/96b5e5ca-7930-444c-90c6-06d386128100", + * updateReason: "Does not apply to this resource", + * updateReasonCode: "not_applicable" + * }; + * const command = new UpdateOrganizationRecommendationLifecycleCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * * @public */ export class UpdateOrganizationRecommendationLifecycleCommand extends $Command diff --git a/clients/client-trustedadvisor/src/commands/UpdateRecommendationLifecycleCommand.ts b/clients/client-trustedadvisor/src/commands/UpdateRecommendationLifecycleCommand.ts index 27bbeb608d4ab..0e55c39b0371f 100644 --- a/clients/client-trustedadvisor/src/commands/UpdateRecommendationLifecycleCommand.ts +++ b/clients/client-trustedadvisor/src/commands/UpdateRecommendationLifecycleCommand.ts @@ -80,6 +80,23 @@ export interface UpdateRecommendationLifecycleCommandOutput extends __MetadataBe * @throws {@link TrustedAdvisorServiceException} *

Base exception class for all service exceptions from TrustedAdvisor service.

* + * + * @example Update the lifecycle stage of a Recommendation managed by AWS Trusted Advisor Priority + * ```javascript + * // + * const input = { + * lifecycleStage: "resolved", + * recommendationIdentifier: "arn:aws:trustedadvisor::000000000000:recommendation/861c9c6e-f169-405a-8b59-537a8caccd7a", + * updateReason: "Resolved the recommendation", + * updateReasonCode: "valid_business_case" + * }; + * const command = new UpdateRecommendationLifecycleCommand(input); + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ + * ``` + * * @public */ export class UpdateRecommendationLifecycleCommand extends $Command diff --git a/clients/client-verifiedpermissions/src/commands/BatchGetPolicyCommand.ts b/clients/client-verifiedpermissions/src/commands/BatchGetPolicyCommand.ts index 3fc0e56041bbd..bfffcafe75fc7 100644 --- a/clients/client-verifiedpermissions/src/commands/BatchGetPolicyCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/BatchGetPolicyCommand.ts @@ -195,77 +195,77 @@ export interface BatchGetPolicyCommandOutput extends BatchGetPolicyOutput, __Met * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example To retrieve details about a policy * ```javascript * // The following example retrieves information about the specified policy contained in the specified policy store. In this example, the requested policy is a template-linked policy, so it returns the ID of the policy template, and the specific principal and resource used by this policy. * const input = { - * "requests": [ + * requests: [ * { - * "policyId": "PWv5M6d5HePx3gVVLKY1nK", - * "policyStoreId": "ERZeDpRc34dkYZeb6FZRVC" + * policyId: "PWv5M6d5HePx3gVVLKY1nK", + * policyStoreId: "ERZeDpRc34dkYZeb6FZRVC" * }, * { - * "policyId": "LzFn6KgLWvv4Mbegus35jn", - * "policyStoreId": "ERZeDpRc34dkYZeb6FZRVC" + * policyId: "LzFn6KgLWvv4Mbegus35jn", + * policyStoreId: "ERZeDpRc34dkYZeb6FZRVC" * }, * { - * "policyId": "77gLjer8H5o3mvrnMGrSL5", - * "policyStoreId": "ERZeDpRc34dkYZeb6FZRVC" + * policyId: "77gLjer8H5o3mvrnMGrSL5", + * policyStoreId: "ERZeDpRc34dkYZeb6FZRVC" * } * ] * }; * const command = new BatchGetPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "errors": [], - * "results": [ + * errors: [], + * results: [ * { - * "createdDate": "2024-10-18T18:53:39.258153Z", - * "definition": { - * "static": { - * "description": "Users can manage account resources in any account they own", - * "statement": "permit (principal, action in PhotoFlash::Action::\"ManageAccount\",resource) when { resource in principal.Account };" + * createdDate: "2024-10-18T18:53:39.258153Z", + * definition: { + * static: { + * description: "Users can manage account resources in any account they own", + * statement: `permit (principal, action in PhotoFlash::Action::"ManageAccount",resource) when { resource in principal.Account };` * } * }, - * "lastUpdatedDate": "2024-10-18T18:53:39.258153Z", - * "policyId": "PWv5M6d5HePx3gVVLKY1nK", - * "policyStoreId": "ERZeDpRc34dkYZeb6FZRVC", - * "policyType": "STATIC" + * lastUpdatedDate: "2024-10-18T18:53:39.258153Z", + * policyId: "PWv5M6d5HePx3gVVLKY1nK", + * policyStoreId: "ERZeDpRc34dkYZeb6FZRVC", + * policyType: "STATIC" * }, * { - * "createdDate": "2024-10-18T18:57:03.305027Z", - * "definition": { - * "static": { - * "description": "User alice can't delete any photos.", - * "statement": "forbid (principal == PhotoFlash::User::\"alice\", action in [PhotoFlash::Action::\"DeletePhoto\"], resource);" + * createdDate: "2024-10-18T18:57:03.305027Z", + * definition: { + * static: { + * description: "User alice can't delete any photos.", + * statement: `forbid (principal == PhotoFlash::User::"alice", action in [PhotoFlash::Action::"DeletePhoto"], resource);` * } * }, - * "lastUpdatedDate": "2024-10-18T18:57:03.305027Z", - * "policyId": "LzFn6KgLWvv4Mbegus35jn", - * "policyStoreId": "ERZeDpRc34dkYZeb6FZRVC", - * "policyType": "STATIC" + * lastUpdatedDate: "2024-10-18T18:57:03.305027Z", + * policyId: "LzFn6KgLWvv4Mbegus35jn", + * policyStoreId: "ERZeDpRc34dkYZeb6FZRVC", + * policyType: "STATIC" * }, * { - * "createdDate": "2024-10-18T18:57:48.005343Z", - * "definition": { - * "static": { - * "description": "User alice can view and delete photos.", - * "statement": "permit (principal == PhotoFlash::User::\"alice\", action in [PhotoFlash::Action::\"DeletePhoto\", PhotoFlash::Action::\"ViewPhoto\"], resource);" + * createdDate: "2024-10-18T18:57:48.005343Z", + * definition: { + * static: { + * description: "User alice can view and delete photos.", + * statement: `permit (principal == PhotoFlash::User::"alice", action in [PhotoFlash::Action::"DeletePhoto", PhotoFlash::Action::"ViewPhoto"], resource);` * } * }, - * "lastUpdatedDate": "2024-10-18T18:57:48.005343Z", - * "policyId": "77gLjer8H5o3mvrnMGrSL5", - * "policyStoreId": "ERZeDpRc34dkYZeb6FZRVC", - * "policyType": "STATIC" + * lastUpdatedDate: "2024-10-18T18:57:48.005343Z", + * policyId: "77gLjer8H5o3mvrnMGrSL5", + * policyStoreId: "ERZeDpRc34dkYZeb6FZRVC", + * policyType: "STATIC" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class BatchGetPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedCommand.ts b/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedCommand.ts index 961f2cb69561f..984e772a675f7 100644 --- a/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedCommand.ts @@ -305,168 +305,168 @@ export interface BatchIsAuthorizedCommandOutput extends BatchIsAuthorizedOutput, * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example Batch - Example 1 * ```javascript * // The following example requests two authorization decisions for two principals of type Usernamed Alice and Annalisa. * const input = { - * "entities": { - * "entityList": [ + * entities: { + * entityList: [ * { - * "attributes": { - * "Account": { - * "entityIdentifier": { - * "entityId": "1234", - * "entityType": "PhotoFlash::Account" + * attributes: { + * Account: { + * entityIdentifier: { + * entityId: "1234", + * entityType: "PhotoFlash::Account" * } * }, - * "Email": { - * "string": "" + * Email: { + * string: "" * } * }, - * "identifier": { - * "entityId": "Alice", - * "entityType": "PhotoFlash::User" + * identifier: { + * entityId: "Alice", + * entityType: "PhotoFlash::User" * }, - * "parents": [] + * parents: [] * }, * { - * "attributes": { - * "Account": { - * "entityIdentifier": { - * "entityId": "5678", - * "entityType": "PhotoFlash::Account" + * attributes: { + * Account: { + * entityIdentifier: { + * entityId: "5678", + * entityType: "PhotoFlash::Account" * } * }, - * "Email": { - * "string": "" + * Email: { + * string: "" * } * }, - * "identifier": { - * "entityId": "Annalisa", - * "entityType": "PhotoFlash::User" + * identifier: { + * entityId: "Annalisa", + * entityType: "PhotoFlash::User" * }, - * "parents": [] + * parents: [] * }, * { - * "attributes": { - * "IsPrivate": { - * "boolean": false + * attributes: { + * IsPrivate: { + * boolean: false * }, - * "Name": { - * "string": "" + * Name: { + * string: "" * } * }, - * "identifier": { - * "entityId": "VacationPhoto94.jpg", - * "entityType": "PhotoFlash::Photo" + * identifier: { + * entityId: "VacationPhoto94.jpg", + * entityType: "PhotoFlash::Photo" * }, - * "parents": [ + * parents: [ * { - * "entityId": "1234", - * "entityType": "PhotoFlash::Account" + * entityId: "1234", + * entityType: "PhotoFlash::Account" * } * ] * }, * { - * "attributes": { - * "Name": { - * "string": "" + * attributes: { + * Name: { + * string: "" * } * }, - * "identifier": { - * "entityId": "1234", - * "entityType": "PhotoFlash::Account" + * identifier: { + * entityId: "1234", + * entityType: "PhotoFlash::Account" * }, - * "parents": [] + * parents: [] * } * ] * }, - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "requests": [ + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * requests: [ * { - * "action": { - * "actionId": "ViewPhoto", - * "actionType": "PhotoFlash::Action" + * action: { + * actionId: "ViewPhoto", + * actionType: "PhotoFlash::Action" * }, - * "principal": { - * "entityId": "Alice", - * "entityType": "PhotoFlash::User" + * principal: { + * entityId: "Alice", + * entityType: "PhotoFlash::User" * }, - * "resource": { - * "entityId": "VacationPhoto94.jpg", - * "entityType": "PhotoFlash::Photo" + * resource: { + * entityId: "VacationPhoto94.jpg", + * entityType: "PhotoFlash::Photo" * } * }, * { - * "action": { - * "actionId": "DeletePhoto", - * "actionType": "PhotoFlash::Action" + * action: { + * actionId: "DeletePhoto", + * actionType: "PhotoFlash::Action" * }, - * "principal": { - * "entityId": "Annalisa", - * "entityType": "PhotoFlash::User" + * principal: { + * entityId: "Annalisa", + * entityType: "PhotoFlash::User" * }, - * "resource": { - * "entityId": "VacationPhoto94.jpg", - * "entityType": "PhotoFlash::Photo" + * resource: { + * entityId: "VacationPhoto94.jpg", + * entityType: "PhotoFlash::Photo" * } * } * ] * }; * const command = new BatchIsAuthorizedCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "results": [ + * results: [ * { - * "errors": [], - * "decision": "ALLOW", - * "determiningPolicies": [ + * decision: "ALLOW", + * determiningPolicies: [ * { - * "policyId": "9wYxMpljbbZQb5fcZHyJhY" + * policyId: "9wYxMpljbbZQb5fcZHyJhY" * } * ], - * "request": { - * "action": { - * "actionId": "ViewPhoto", - * "actionType": "PhotoFlash::Action" + * errors: [], + * request: { + * action: { + * actionId: "ViewPhoto", + * actionType: "PhotoFlash::Action" * }, - * "principal": { - * "entityId": "alice", - * "entityType": "PhotoFlash::User" + * principal: { + * entityId: "alice", + * entityType: "PhotoFlash::User" * }, - * "resource": { - * "entityId": "VacationPhoto94.jpg", - * "entityType": "PhotoFlash::Photo" + * resource: { + * entityId: "VacationPhoto94.jpg", + * entityType: "PhotoFlash::Photo" * } * } * }, * { - * "errors": [], - * "decision": "DENY", - * "determiningPolicies": [], - * "request": { - * "action": { - * "actionId": "DeletePhoto", - * "actionType": "PhotoFlash::Action" + * decision: "DENY", + * determiningPolicies: [], + * errors: [], + * request: { + * action: { + * actionId: "DeletePhoto", + * actionType: "PhotoFlash::Action" * }, - * "principal": { - * "entityId": "annalisa", - * "entityType": "PhotoFlash::User" + * principal: { + * entityId: "annalisa", + * entityType: "PhotoFlash::User" * }, - * "resource": { - * "entityId": "VacationPhoto94.jpg", - * "entityType": "PhotoFlash::Photo" + * resource: { + * entityId: "VacationPhoto94.jpg", + * entityType: "PhotoFlash::Photo" * } * } * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class BatchIsAuthorizedCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedWithTokenCommand.ts b/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedWithTokenCommand.ts index 270804dbbf625..87b95e59ca353 100644 --- a/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedWithTokenCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedWithTokenCommand.ts @@ -301,142 +301,142 @@ export interface BatchIsAuthorizedWithTokenCommandOutput extends BatchIsAuthoriz * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example Batch - Example 1 * ```javascript * // The following example requests three authorization decisions for two resources and two actions in different photo albums. * const input = { - * "entities": { - * "entityList": [ + * entities: { + * entityList: [ * { - * "identifier": { - * "entityId": "VacationPhoto94.jpg", - * "entityType": "PhotoFlash::Photo" + * identifier: { + * entityId: "VacationPhoto94.jpg", + * entityType: "PhotoFlash::Photo" * }, - * "parents": [ + * parents: [ * { - * "entityId": "MyExampleAlbum1", - * "entityType": "PhotoFlash::Album" + * entityId: "MyExampleAlbum1", + * entityType: "PhotoFlash::Album" * } * ] * }, * { - * "identifier": { - * "entityId": "OfficePhoto94.jpg", - * "entityType": "PhotoFlash::Photo" + * identifier: { + * entityId: "OfficePhoto94.jpg", + * entityType: "PhotoFlash::Photo" * }, - * "parents": [ + * parents: [ * { - * "entityId": "MyExampleAlbum2", - * "entityType": "PhotoFlash::Album" + * entityId: "MyExampleAlbum2", + * entityType: "PhotoFlash::Album" * } * ] * } * ] * }, - * "identityToken": "eyJra12345EXAMPLE", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "requests": [ + * identityToken: "eyJra12345EXAMPLE", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * requests: [ * { - * "action": { - * "actionId": "ViewPhoto", - * "actionType": "PhotoFlash::Action" + * action: { + * actionId: "ViewPhoto", + * actionType: "PhotoFlash::Action" * }, - * "resource": { - * "entityId": "VacationPhoto94.jpg", - * "entityType": "PhotoFlash::Photo" + * resource: { + * entityId: "VacationPhoto94.jpg", + * entityType: "PhotoFlash::Photo" * } * }, * { - * "action": { - * "actionId": "SharePhoto", - * "actionType": "PhotoFlash::Action" + * action: { + * actionId: "SharePhoto", + * actionType: "PhotoFlash::Action" * }, - * "resource": { - * "entityId": "VacationPhoto94.jpg", - * "entityType": "PhotoFlash::Photo" + * resource: { + * entityId: "VacationPhoto94.jpg", + * entityType: "PhotoFlash::Photo" * } * }, * { - * "action": { - * "actionId": "ViewPhoto", - * "actionType": "PhotoFlash::Action" + * action: { + * actionId: "ViewPhoto", + * actionType: "PhotoFlash::Action" * }, - * "resource": { - * "entityId": "OfficePhoto94.jpg", - * "entityType": "PhotoFlash::Photo" + * resource: { + * entityId: "OfficePhoto94.jpg", + * entityType: "PhotoFlash::Photo" * } * } * ] * }; * const command = new BatchIsAuthorizedWithTokenCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "principal": { - * "entityId": "us-east-1_EXAMPLE|a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", - * "entityType": "PhotoFlash::User" + * principal: { + * entityId: "us-east-1_EXAMPLE|a1b2c3d4-5678-90ab-cdef-EXAMPLE11111", + * entityType: "PhotoFlash::User" * }, - * "results": [ + * results: [ * { - * "errors": [], - * "decision": "ALLOW", - * "determiningPolicies": [ + * decision: "ALLOW", + * determiningPolicies: [ * { - * "policyId": "9wYixMplbbZQb5fcZHyJhY" + * policyId: "9wYixMplbbZQb5fcZHyJhY" * } * ], - * "request": { - * "action": { - * "actionId": "ViewPhoto", - * "actionType": "PhotoFlash::Action" + * errors: [], + * request: { + * action: { + * actionId: "ViewPhoto", + * actionType: "PhotoFlash::Action" * }, - * "resource": { - * "entityId": "VacationPhoto94.jpg", - * "entityType": "PhotoFlash::Photo" + * resource: { + * entityId: "VacationPhoto94.jpg", + * entityType: "PhotoFlash::Photo" * } * } * }, * { - * "errors": [], - * "decision": "ALLOW", - * "determiningPolicies": [ + * decision: "ALLOW", + * determiningPolicies: [ * { - * "policyId": "9wYixMplbbZQb5fcZHyJhY" + * policyId: "9wYixMplbbZQb5fcZHyJhY" * } * ], - * "request": { - * "action": { - * "actionId": "SharePhoto", - * "actionType": "PhotoFlash::Action" + * errors: [], + * request: { + * action: { + * actionId: "SharePhoto", + * actionType: "PhotoFlash::Action" * }, - * "resource": { - * "entityId": "VacationPhoto94.jpg", - * "entityType": "PhotoFlash::Photo" + * resource: { + * entityId: "VacationPhoto94.jpg", + * entityType: "PhotoFlash::Photo" * } * } * }, * { - * "errors": [], - * "decision": "DENY", - * "determiningPolicies": [], - * "request": { - * "action": { - * "actionId": "ViewPhoto", - * "actionType": "PhotoFlash::Action" + * decision: "DENY", + * determiningPolicies: [], + * errors: [], + * request: { + * action: { + * actionId: "ViewPhoto", + * actionType: "PhotoFlash::Action" * }, - * "resource": { - * "entityId": "OfficePhoto94.jpg", - * "entityType": "PhotoFlash::Photo" + * resource: { + * entityId: "OfficePhoto94.jpg", + * entityType: "PhotoFlash::Photo" * } * } * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class BatchIsAuthorizedWithTokenCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/CreateIdentitySourceCommand.ts b/clients/client-verifiedpermissions/src/commands/CreateIdentitySourceCommand.ts index 39c9bcbdf64c5..184430e5140d8 100644 --- a/clients/client-verifiedpermissions/src/commands/CreateIdentitySourceCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/CreateIdentitySourceCommand.ts @@ -240,36 +240,36 @@ export interface CreateIdentitySourceCommandOutput extends CreateIdentitySourceO * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example To create an identity source * ```javascript * // The following ``create-identity-source`` example creates an identity source that lets you reference identities stored in the specified Amazon Cognito user pool. Those identities are available in Verified Permissions as entities of type ``User``. * const input = { - * "clientToken": "a1b2c3d4-e5f6-a1b2-c3d4-TOKEN1111111", - * "configuration": { - * "cognitoUserPoolConfiguration": { - * "clientIds": [ + * clientToken: "a1b2c3d4-e5f6-a1b2-c3d4-TOKEN1111111", + * configuration: { + * cognitoUserPoolConfiguration: { + * clientIds: [ * "a1b2c3d4e5f6g7h8i9j0kalbmc" * ], - * "userPoolArn": "arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5" + * userPoolArn: "arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5" * } * }, - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "principalEntityType": "User" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * principalEntityType: "User" * }; * const command = new CreateIdentitySourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "createdDate": "2024-08-12T18:20:50.99Z", - * "identitySourceId": "ISEXAMPLEabcdefg111111", - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * createdDate: "2024-08-12T18:20:50.99Z", + * identitySourceId: "ISEXAMPLEabcdefg111111", + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreateIdentitySourceCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/CreatePolicyCommand.ts b/clients/client-verifiedpermissions/src/commands/CreatePolicyCommand.ts index 5feaee269a2f0..2388108889b06 100644 --- a/clients/client-verifiedpermissions/src/commands/CreatePolicyCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/CreatePolicyCommand.ts @@ -230,115 +230,113 @@ export interface CreatePolicyCommandOutput extends CreatePolicyOutput, __Metadat * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example To create a static policy * ```javascript * // The following example request creates a static policy with a policy scope that specifies both a principal and a resource. The response includes both the Principal and Resource elements because both were specified in the request policy scope. * const input = { - * "clientToken": "a1b2c3d4-e5f6-a1b2-c3d4-TOKEN1111111", - * "definition": { - * "static": { - * "description": "Grant members of janeFriends UserGroup access to the vacationFolder Album", - * "statement": "permit( principal in UserGroup::\"janeFriends\", action, resource in Album::\"vacationFolder\" );" + * clientToken: "a1b2c3d4-e5f6-a1b2-c3d4-TOKEN1111111", + * definition: { + * static: { + * description: "Grant members of janeFriends UserGroup access to the vacationFolder Album", + * statement: `permit( principal in UserGroup::"janeFriends", action, resource in Album::"vacationFolder" );` * } * }, - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new CreatePolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "createdDate": "2024-08-12T18:20:50.99Z", - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyId": "9wYxMpljbbZQb5fcZHyJhY", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyType": "STATIC", - * "principal": { - * "entityId": "janeFriends", - * "entityType": "UserGroup" + * createdDate: "2024-08-12T18:20:50.99Z", + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyId: "9wYxMpljbbZQb5fcZHyJhY", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyType: "STATIC", + * principal: { + * entityId: "janeFriends", + * entityType: "UserGroup" * }, - * "resource": { - * "entityId": "vacationFolder", - * "entityType": "Album" + * resource: { + * entityId: "vacationFolder", + * entityType: "Album" * } * } * *\/ - * // example id: example-1 * ``` * * @example To create a static policy * ```javascript * // The following example request creates a static policy with a policy scope that specifies both a principal and a resource. The response includes both the Principal and Resource elements because both were specified in the request policy scope. * const input = { - * "clientToken": "a1b2c3d4-e5f6-a1b2-c3d4-TOKEN1111111", - * "definition": { - * "static": { - * "description": "Grant members of janeFriends UserGroup access to the vacationFolder Album", - * "statement": "permit( principal in UserGroup::\"janeFriends\", action, resource in Album::\"vacationFolder\" );" + * clientToken: "a1b2c3d4-e5f6-a1b2-c3d4-TOKEN1111111", + * definition: { + * static: { + * description: "Grant members of janeFriends UserGroup access to the vacationFolder Album", + * statement: `permit( principal in UserGroup::"janeFriends", action, resource in Album::"vacationFolder" );` * } * }, - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new CreatePolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "createdDate": "2024-08-12T18:20:50.99Z", - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyId": "9wYxMpljbbZQb5fcZHyJhY", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyType": "STATIC", - * "principal": { - * "entityId": "janeFriends", - * "entityType": "UserGroup" + * createdDate: "2024-08-12T18:20:50.99Z", + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyId: "9wYxMpljbbZQb5fcZHyJhY", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyType: "STATIC", + * principal: { + * entityId: "janeFriends", + * entityType: "UserGroup" * }, - * "resource": { - * "entityId": "vacationFolder", - * "entityType": "Album" + * resource: { + * entityId: "vacationFolder", + * entityType: "Album" * } * } * *\/ - * // example id: example-2 * ``` * * @example To create a template-linked policy * ```javascript * // The following example creates a template-linked policy using the specified policy template and associates the specified principal to use with the new template-linked policy. * const input = { - * "clientToken": "a1b2c3d4-e5f6-a1b2-c3d4-TOKEN1111111", - * "definition": { - * "templateLinked": { - * "policyTemplateId": "PTEXAMPLEabcdefg111111", - * "principal": { - * "entityId": "alice", - * "entityType": "User" + * clientToken: "a1b2c3d4-e5f6-a1b2-c3d4-TOKEN1111111", + * definition: { + * templateLinked: { + * policyTemplateId: "PTEXAMPLEabcdefg111111", + * principal: { + * entityId: "alice", + * entityType: "User" * } * } * }, - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new CreatePolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "createdDate": "2024-08-12T18:20:50.99Z", - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyId": "Et9KxMplyaDdyurDw8TeFa", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyType": "TEMPLATE_LINKED", - * "principal": { - * "entityId": "alice", - * "entityType": "User" + * createdDate: "2024-08-12T18:20:50.99Z", + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyId: "Et9KxMplyaDdyurDw8TeFa", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyType: "TEMPLATE_LINKED", + * principal: { + * entityId: "alice", + * entityType: "User" * }, - * "resource": { - * "entityId": "VacationPhoto94.jpg", - * "entityType": "Photo" + * resource: { + * entityId: "VacationPhoto94.jpg", + * entityType: "Photo" * } * } * *\/ - * // example id: example-3 * ``` * + * @public */ export class CreatePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/CreatePolicyStoreCommand.ts b/clients/client-verifiedpermissions/src/commands/CreatePolicyStoreCommand.ts index ffc4aed11abf3..116177b02f78e 100644 --- a/clients/client-verifiedpermissions/src/commands/CreatePolicyStoreCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/CreatePolicyStoreCommand.ts @@ -180,29 +180,29 @@ export interface CreatePolicyStoreCommandOutput extends CreatePolicyStoreOutput, * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example To create policy store * ```javascript * // The following example creates a new policy store with strict validation turned on. * const input = { - * "clientToken": "a1b2c3d4-e5f6-a1b2-c3d4-TOKEN1111111", - * "validationSettings": { - * "mode": "STRICT" + * clientToken: "a1b2c3d4-e5f6-a1b2-c3d4-TOKEN1111111", + * validationSettings: { + * mode: "STRICT" * } * }; * const command = new CreatePolicyStoreCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "arn": "arn:aws:verifiedpermissions::123456789012:policy-store/C7v5xMplfFH3i3e4Jrzb1a", - * "createdDate": "2024-08-12T18:20:50.99Z", - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * arn: "arn:aws:verifiedpermissions::123456789012:policy-store/C7v5xMplfFH3i3e4Jrzb1a", + * createdDate: "2024-08-12T18:20:50.99Z", + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreatePolicyStoreCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/CreatePolicyTemplateCommand.ts b/clients/client-verifiedpermissions/src/commands/CreatePolicyTemplateCommand.ts index 847764cd603cb..97140e37cd42c 100644 --- a/clients/client-verifiedpermissions/src/commands/CreatePolicyTemplateCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/CreatePolicyTemplateCommand.ts @@ -184,29 +184,37 @@ export interface CreatePolicyTemplateCommandOutput extends CreatePolicyTemplateO * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example To create a policy template * ```javascript * // The following example creates a policy template that has a placeholder for the principal. * const input = { - * "clientToken": "a1b2c3d4-e5f6-a1b2-c3d4-TOKEN1111111", - * "description": "Template for research dept", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "statement": "\"AccessVacation\"\npermit(\n principal in ?principal,\n action == Action::\"view\",\n resource == Photo::\"VacationPhoto94.jpg\"\n)\nwhen {\n principal has department && principal.department == \"research\"\n};" + * clientToken: "a1b2c3d4-e5f6-a1b2-c3d4-TOKEN1111111", + * description: "Template for research dept", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * statement: `"AccessVacation" + * permit( + * principal in ?principal, + * action == Action::"view", + * resource == Photo::"VacationPhoto94.jpg" + * ) + * when { + * principal has department && principal.department == "research" + * };` * }; * const command = new CreatePolicyTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "createdDate": "2024-08-12T18:20:50.99Z", - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyTemplateId": "PTEXAMPLEabcdefg111111" + * createdDate: "2024-08-12T18:20:50.99Z", + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyTemplateId: "PTEXAMPLEabcdefg111111" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class CreatePolicyTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/DeleteIdentitySourceCommand.ts b/clients/client-verifiedpermissions/src/commands/DeleteIdentitySourceCommand.ts index a97684439a7d9..a46f9a0dc7c8a 100644 --- a/clients/client-verifiedpermissions/src/commands/DeleteIdentitySourceCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/DeleteIdentitySourceCommand.ts @@ -161,19 +161,22 @@ export interface DeleteIdentitySourceCommandOutput extends DeleteIdentitySourceO * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example To delete an identity source * ```javascript * // The following example request deletes the specified identity source. * const input = { - * "identitySourceId": "ISEXAMPLEabcdefg111111", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * identitySourceId: "ISEXAMPLEabcdefg111111", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new DeleteIdentitySourceCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeleteIdentitySourceCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/DeletePolicyCommand.ts b/clients/client-verifiedpermissions/src/commands/DeletePolicyCommand.ts index 46f8206b7f963..db8894e7e51b1 100644 --- a/clients/client-verifiedpermissions/src/commands/DeletePolicyCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/DeletePolicyCommand.ts @@ -160,19 +160,22 @@ export interface DeletePolicyCommandOutput extends DeletePolicyOutput, __Metadat * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example To delete a policy * ```javascript * // The following example deletes the specified policy from its policy store. * const input = { - * "policyId": "9wYxMpljbbZQb5fcZHyJhY", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyId: "9wYxMpljbbZQb5fcZHyJhY", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new DeletePolicyCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeletePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/DeletePolicyStoreCommand.ts b/clients/client-verifiedpermissions/src/commands/DeletePolicyStoreCommand.ts index f4f7fe2a93870..10cc481c40e0e 100644 --- a/clients/client-verifiedpermissions/src/commands/DeletePolicyStoreCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/DeletePolicyStoreCommand.ts @@ -152,18 +152,21 @@ export interface DeletePolicyStoreCommandOutput extends DeletePolicyStoreOutput, * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example To delete a policy store * ```javascript * // The following example deletes the specified policy store. * const input = { - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new DeletePolicyStoreCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeletePolicyStoreCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/DeletePolicyTemplateCommand.ts b/clients/client-verifiedpermissions/src/commands/DeletePolicyTemplateCommand.ts index 391ced69e4b53..c818fb97bee02 100644 --- a/clients/client-verifiedpermissions/src/commands/DeletePolicyTemplateCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/DeletePolicyTemplateCommand.ts @@ -163,19 +163,22 @@ export interface DeletePolicyTemplateCommandOutput extends DeletePolicyTemplateO * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example To delete a policy template * ```javascript * // The following example deletes a policy template. Before you can perform this operation, you must first delete any template-linked policies that were instantiated from this policy template. To delete them, use DeletePolicy. * const input = { - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyTemplateId": "PTEXAMPLEabcdefg111111" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyTemplateId: "PTEXAMPLEabcdefg111111" * }; * const command = new DeletePolicyTemplateCommand(input); - * await client.send(command); - * // example id: example-1 + * const response = await client.send(command); + * /* response is + * { /* empty *\/ } + * *\/ * ``` * + * @public */ export class DeletePolicyTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/GetIdentitySourceCommand.ts b/clients/client-verifiedpermissions/src/commands/GetIdentitySourceCommand.ts index c7c9f3028efa7..9f68daa54883a 100644 --- a/clients/client-verifiedpermissions/src/commands/GetIdentitySourceCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/GetIdentitySourceCommand.ts @@ -204,36 +204,36 @@ export interface GetIdentitySourceCommandOutput extends GetIdentitySourceOutput, * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example To retrieve details about an identity source * ```javascript * // The following example retrieves the details for the specified identity source. * const input = { - * "identitySourceId": "ISEXAMPLEabcdefg111111", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * identitySourceId: "ISEXAMPLEabcdefg111111", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new GetIdentitySourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "createdDate": "2024-08-12T18:20:50.99Z", - * "details": { - * "clientIds": [ + * createdDate: "2024-08-12T18:20:50.99Z", + * details: { + * clientIds: [ * "a1b2c3d4e5f6g7h8i9j0kalbmc" * ], - * "discoveryUrl": "https://cognito-idp.us-east-1.amazonaws.com/us-east-1_1a2b3c4d5", - * "openIdIssuer": "COGNITO", - * "userPoolArn": "arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5" + * discoveryUrl: "https://cognito-idp.us-east-1.amazonaws.com/us-east-1_1a2b3c4d5", + * openIdIssuer: "COGNITO", + * userPoolArn: "arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5" * }, - * "identitySourceId": "ISEXAMPLEabcdefg111111", - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "principalEntityType": "AWS::Cognito" + * identitySourceId: "ISEXAMPLEabcdefg111111", + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * principalEntityType: "AWS::Cognito" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetIdentitySourceCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/GetPolicyCommand.ts b/clients/client-verifiedpermissions/src/commands/GetPolicyCommand.ts index bc560c4801e8f..b716b6ad7e89c 100644 --- a/clients/client-verifiedpermissions/src/commands/GetPolicyCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/GetPolicyCommand.ts @@ -192,38 +192,38 @@ export interface GetPolicyCommandOutput extends GetPolicyOutput, __MetadataBeare * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example To retrieve details about a policy * ```javascript * // The following example retrieves information about the specified policy contained in the specified policy store. In this example, the requested policy is a template-linked policy, so it returns the ID of the policy template, and the specific principal and resource used by this policy. * const input = { - * "policyId": "9wYixMplbbZQb5fcZHyJhY", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyId: "9wYixMplbbZQb5fcZHyJhY", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new GetPolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "createdDate": "2024-08-12T18:20:50.99Z", - * "definition": { - * "static": { - * "description": "Grant everyone of janeFriends UserGroup access to the vacationFolder Album", - * "statement": "permit(principal, action, resource in Album::\"publicFolder\");" + * createdDate: "2024-08-12T18:20:50.99Z", + * definition: { + * static: { + * description: "Grant everyone of janeFriends UserGroup access to the vacationFolder Album", + * statement: `permit(principal, action, resource in Album::"publicFolder");` * } * }, - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyId": "9wYxMpljbbZQb5fcZHyJhY", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyType": "STATIC", - * "resource": { - * "entityId": "publicFolder", - * "entityType": "Album" + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyId: "9wYxMpljbbZQb5fcZHyJhY", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyType: "STATIC", + * resource: { + * entityId: "publicFolder", + * entityType: "Album" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetPolicyCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/GetPolicyStoreCommand.ts b/clients/client-verifiedpermissions/src/commands/GetPolicyStoreCommand.ts index 498cde995eefd..c7d6e309f0e73 100644 --- a/clients/client-verifiedpermissions/src/commands/GetPolicyStoreCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/GetPolicyStoreCommand.ts @@ -162,29 +162,29 @@ export interface GetPolicyStoreCommandOutput extends GetPolicyStoreOutput, __Met * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example GetPolicyStore * ```javascript * // The following example retrieves details about the specified policy store. * const input = { - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new GetPolicyStoreCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "arn": "arn:aws:verifiedpermissions::123456789012:policy-store/C7v5xMplfFH3i3e4Jrzb1a", - * "createdDate": "2024-08-12T18:20:50.99Z", - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "validationSettings": { - * "mode": "STRICT" + * arn: "arn:aws:verifiedpermissions::123456789012:policy-store/C7v5xMplfFH3i3e4Jrzb1a", + * createdDate: "2024-08-12T18:20:50.99Z", + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * validationSettings: { + * mode: "STRICT" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetPolicyStoreCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/GetPolicyTemplateCommand.ts b/clients/client-verifiedpermissions/src/commands/GetPolicyTemplateCommand.ts index da0077147eb0d..7e4c89ddd2d8f 100644 --- a/clients/client-verifiedpermissions/src/commands/GetPolicyTemplateCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/GetPolicyTemplateCommand.ts @@ -165,29 +165,35 @@ export interface GetPolicyTemplateCommandOutput extends GetPolicyTemplateOutput, * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example GetPolicyTemplate * ```javascript * // The following example displays the details of the specified policy template. * const input = { - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyTemplateId": "PTEXAMPLEabcdefg111111" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyTemplateId: "PTEXAMPLEabcdefg111111" * }; * const command = new GetPolicyTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "createdDate": "2024-08-12T18:20:50.99Z", - * "description": "Template for research dept", - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyTemplateId": "PTEXAMPLEabcdefg111111", - * "statement": "permit(\n principal ?principal,\n action == Action::\"view\",\n resource in ?resource\n) when {\n principal has department && principal.department == \"research\" \n};" + * createdDate: "2024-08-12T18:20:50.99Z", + * description: "Template for research dept", + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyTemplateId: "PTEXAMPLEabcdefg111111", + * statement: `permit( + * principal ?principal, + * action == Action::"view", + * resource in ?resource + * ) when { + * principal has department && principal.department == "research" + * };` * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetPolicyTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/GetSchemaCommand.ts b/clients/client-verifiedpermissions/src/commands/GetSchemaCommand.ts index 83037dea5b923..50e73fa77c481 100644 --- a/clients/client-verifiedpermissions/src/commands/GetSchemaCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/GetSchemaCommand.ts @@ -161,31 +161,52 @@ export interface GetSchemaCommandOutput extends GetSchemaOutput, __MetadataBeare * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example GetSchema * ```javascript * // The following example retrieves the current schema stored in the specified policy store. - * // - * // Note - * // The JSON in the parameters of this operation are strings that can contain embedded quotation marks (") within the outermost quotation mark pair. This requires that you stringify the JSON object by preceding all embedded quotation marks with a backslash character ( \" ) and combining all lines into a single text line with no line breaks. - * // - * // Example strings might be displayed wrapped across multiple lines here for readability, but the operation requires the parameters be submitted as single line strings. + * + * Note + * The JSON in the parameters of this operation are strings that can contain embedded quotation marks (") within the outermost quotation mark pair. This requires that you stringify the JSON object by preceding all embedded quotation marks with a backslash character ( \" ) and combining all lines into a single text line with no line breaks. + * + * Example strings might be displayed wrapped across multiple lines here for readability, but the operation requires the parameters be submitted as single line strings. * const input = { - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new GetSchemaCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "createdDate": "2024-08-12T18:20:50.99Z", - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "schema": "{\n\"My::Application\": {\n\"actions\": {\n\"remoteAccess\": {\n\"appliesTo\": {\n\"principalTypes\": [\"Employee\"]\n}\n}\n},\n\"entityTypes\": {\n\"Employee\": {\n\"shape\": {\n\"attributes\": {\n\"jobLevel\": { \"type\": \"Long\" },\n\"name\": { \"type\":\"String\" }\n},\n\"type\": \"Record\"\n}\n}\n}\n}\n }" + * createdDate: "2024-08-12T18:20:50.99Z", + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * schema: `{ + * "My::Application": { + * "actions": { + * "remoteAccess": { + * "appliesTo": { + * "principalTypes": ["Employee"] + * } + * } + * }, + * "entityTypes": { + * "Employee": { + * "shape": { + * "attributes": { + * "jobLevel": { "type": "Long" }, + * "name": { "type":"String" } + * }, + * "type": "Record" + * } + * } + * } + * } + * }` * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class GetSchemaCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/IsAuthorizedCommand.ts b/clients/client-verifiedpermissions/src/commands/IsAuthorizedCommand.ts index 40b173ecad3d2..a1fed22ec42a1 100644 --- a/clients/client-verifiedpermissions/src/commands/IsAuthorizedCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/IsAuthorizedCommand.ts @@ -236,73 +236,72 @@ export interface IsAuthorizedCommandOutput extends IsAuthorizedOutput, __Metadat * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example IsAuthorized - Example 1 * ```javascript * // The following example requests an authorization decision for a principal of type User named Alice, who wants to perform the updatePhoto operation, on a resource of type Photo named VacationPhoto94.jpg. - * // - * // The response shows that the request was allowed by one policy. + * + * The response shows that the request was allowed by one policy. * const input = { - * "action": { - * "actionId": "view", - * "actionType": "Action" + * action: { + * actionId: "view", + * actionType: "Action" * }, - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "principal": { - * "entityId": "alice", - * "entityType": "User" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * principal: { + * entityId: "alice", + * entityType: "User" * }, - * "resource": { - * "entityId": "VacationPhoto94.jpg", - * "entityType": "Photo" + * resource: { + * entityId: "VacationPhoto94.jpg", + * entityType: "Photo" * } * }; * const command = new IsAuthorizedCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "errors": [], - * "decision": "ALLOW", - * "determiningPolicies": [ + * decision: "ALLOW", + * determiningPolicies: [ * { - * "policyId": "9wYxMpljbbZQb5fcZHyJhY" + * policyId: "9wYxMpljbbZQb5fcZHyJhY" * } - * ] + * ], + * errors: [] * } * *\/ - * // example id: example-1 * ``` * * @example IsAuthorized - Example 2 * ```javascript * // The following example is the same as the previous example, except that the principal is User::"bob", and the policy store doesn't contain any policy that allows that user access to Album::"alice_folder". The output infers that the Deny was implicit because the list of DeterminingPolicies is empty. * const input = { - * "action": { - * "actionId": "view", - * "actionType": "Action" + * action: { + * actionId: "view", + * actionType: "Action" * }, - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "principal": { - * "entityId": "bob", - * "entityType": "User" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * principal: { + * entityId: "bob", + * entityType: "User" * }, - * "resource": { - * "entityId": "VacationPhoto94.jpg", - * "entityType": "Photo" + * resource: { + * entityId: "VacationPhoto94.jpg", + * entityType: "Photo" * } * }; * const command = new IsAuthorizedCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "errors": [], - * "decision": "DENY", - * "determiningPolicies": [] + * decision: "DENY", + * determiningPolicies: [], + * errors: [] * } * *\/ - * // example id: example-2 * ``` * + * @public */ export class IsAuthorizedCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/IsAuthorizedWithTokenCommand.ts b/clients/client-verifiedpermissions/src/commands/IsAuthorizedWithTokenCommand.ts index 674272cb8b449..4b5b6fd3d021c 100644 --- a/clients/client-verifiedpermissions/src/commands/IsAuthorizedWithTokenCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/IsAuthorizedWithTokenCommand.ts @@ -246,44 +246,44 @@ export interface IsAuthorizedWithTokenCommandOutput extends IsAuthorizedWithToke * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example IsAuthorizedWithToken - Example 1 * ```javascript * // The following example requests an authorization decision for a user who was authenticated by Amazon Cognito. The request uses the identity token provided by Amazon Cognito instead of the access token. In this example, the specified information store is configured to return principals as entities of type CognitoUser. The policy store contains a policy with the following statement. - * // - * // permit( - * // principal == CognitoUser::"us-east-1_1a2b3c4d5|a1b2c3d4e5f6g7h8i9j0kalbmc", - * // action, - * // resource == Photo::"VacationPhoto94.jpg" - * // ); + * + * permit( + * principal == CognitoUser::"us-east-1_1a2b3c4d5|a1b2c3d4e5f6g7h8i9j0kalbmc", + * action, + * resource == Photo::"VacationPhoto94.jpg" + * ); * const input = { - * "action": { - * "actionId": "View", - * "actionType": "Action" + * action: { + * actionId: "View", + * actionType: "Action" * }, - * "identityToken": "EgZjxMPlbWUyBggAEEUYOdIBCDM3NDlqMGo3qAIAsAIA", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "resource": { - * "entityId": "vacationPhoto94.jpg", - * "entityType": "Photo" + * identityToken: "EgZjxMPlbWUyBggAEEUYOdIBCDM3NDlqMGo3qAIAsAIA", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * resource: { + * entityId: "vacationPhoto94.jpg", + * entityType: "Photo" * } * }; * const command = new IsAuthorizedWithTokenCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "errors": [], - * "decision": "ALLOW", - * "determiningPolicies": [ + * decision: "ALLOW", + * determiningPolicies: [ * { - * "policyId": "9wYxMpljbbZQb5fcZHyJhY" + * policyId: "9wYxMpljbbZQb5fcZHyJhY" * } - * ] + * ], + * errors: [] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class IsAuthorizedWithTokenCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/ListIdentitySourcesCommand.ts b/clients/client-verifiedpermissions/src/commands/ListIdentitySourcesCommand.ts index 9e9c5e9942f8b..3c75a436a78d3 100644 --- a/clients/client-verifiedpermissions/src/commands/ListIdentitySourcesCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/ListIdentitySourcesCommand.ts @@ -216,39 +216,39 @@ export interface ListIdentitySourcesCommandOutput extends ListIdentitySourcesOut * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example ListIdentitySources * ```javascript * // The following example request creates lists the identity sources currently defined in the specified policy store. * const input = { - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new ListIdentitySourcesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "identitySources": [ + * identitySources: [ * { - * "createdDate": "2023-05-19T20:29:23.66812Z", - * "details": { - * "clientIds": [ + * createdDate: "2023-05-19T20:29:23.66812Z", + * details: { + * clientIds: [ * "a1b2c3d4e5f6g7h8i9j0kalbmc" * ], - * "discoveryUrl": "https://cognito-idp.us-east-1.amazonaws.com/us-east-1_1a2b3c4d5", - * "openIdIssuer": "COGNITO", - * "userPoolArn": "arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5" + * discoveryUrl: "https://cognito-idp.us-east-1.amazonaws.com/us-east-1_1a2b3c4d5", + * openIdIssuer: "COGNITO", + * userPoolArn: "arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5" * }, - * "identitySourceId": "ISEXAMPLEabcdefg111111", - * "lastUpdatedDate": "2023-05-19T20:29:23.66812Z", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "principalEntityType": "User" + * identitySourceId: "ISEXAMPLEabcdefg111111", + * lastUpdatedDate: "2023-05-19T20:29:23.66812Z", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * principalEntityType: "User" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListIdentitySourcesCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/ListPoliciesCommand.ts b/clients/client-verifiedpermissions/src/commands/ListPoliciesCommand.ts index c60d4acce72bd..203b1986c6ba9 100644 --- a/clients/client-verifiedpermissions/src/commands/ListPoliciesCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/ListPoliciesCommand.ts @@ -220,171 +220,169 @@ export interface ListPoliciesCommandOutput extends ListPoliciesOutput, __Metadat * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example ListPolicies - Example 1 * ```javascript * // The following example lists all policies in the policy store. * const input = { - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new ListPoliciesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "policies": [ + * policies: [ * { - * "createdDate": "2024-08-12T18:20:50.99Z", - * "definition": { - * "static": { - * "description": "Grant members of janeFriends UserGroup access to the vacationFolder Album" + * createdDate: "2024-08-12T18:20:50.99Z", + * definition: { + * static: { + * description: "Grant members of janeFriends UserGroup access to the vacationFolder Album" * } * }, - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyId": "9wYxMpljbbZQb5fcZHyJhY", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyType": "STATIC", - * "principal": { - * "entityId": "janeFriends", - * "entityType": "UserGroup" + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyId: "9wYxMpljbbZQb5fcZHyJhY", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyType: "STATIC", + * principal: { + * entityId: "janeFriends", + * entityType: "UserGroup" * }, - * "resource": { - * "entityId": "vacationFolder", - * "entityType": "Album" + * resource: { + * entityId: "vacationFolder", + * entityType: "Album" * } * }, * { - * "createdDate": "2024-08-12T18:20:50.99Z", - * "definition": { - * "static": { - * "description": "Grant everyone access to the publicFolder Album" + * createdDate: "2024-08-12T18:20:50.99Z", + * definition: { + * static: { + * description: "Grant everyone access to the publicFolder Album" * } * }, - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyId": "Et9KxMplyaDdyurDw8TeFa", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyType": "STATIC", - * "resource": { - * "entityId": "publicFolder", - * "entityType": "Album" + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyId: "Et9KxMplyaDdyurDw8TeFa", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyType: "STATIC", + * resource: { + * entityId: "publicFolder", + * entityType: "Album" * } * } * ] * } * *\/ - * // example id: example-1 * ``` * * @example ListPolicies - Example 2 * ```javascript * // The following example lists all policies for a specified principal. * const input = { - * "filter": { - * "principal": { - * "identifier": { - * "entityId": "alice", - * "entityType": "User" + * filter: { + * principal: { + * identifier: { + * entityId: "alice", + * entityType: "User" * } * } * }, - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new ListPoliciesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "policies": [ + * policies: [ * { - * "createdDate": "2022-12-09T22:55:16.067533Z", - * "definition": { - * "static": { - * "description": "An example policy" + * createdDate: "2022-12-09T22:55:16.067533Z", + * definition: { + * static: { + * description: "An example policy" * } * }, - * "lastUpdatedDate": "2022-12-09T22:55:16.067533Z", - * "policyId": "Et9KxMplyaDdyurDw8TeFa", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyType": "STATIC", - * "principal": { - * "entityId": "alice", - * "entityType": "User" + * lastUpdatedDate: "2022-12-09T22:55:16.067533Z", + * policyId: "Et9KxMplyaDdyurDw8TeFa", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyType: "STATIC", + * principal: { + * entityId: "alice", + * entityType: "User" * }, - * "resource": { - * "entityId": "bob_folder", - * "entityType": "Album" + * resource: { + * entityId: "bob_folder", + * entityType: "Album" * } * }, * { - * "createdDate": "2022-12-09T23:00:24.66266Z", - * "definition": { - * "static": {} + * createdDate: "2022-12-09T23:00:24.66266Z", + * definition: { + * static: { /* empty *\/ } * }, - * "lastUpdatedDate": "2022-12-09T23:00:24.66266Z", - * "policyId": "9wYxMpljbbZQb5fcZHyJhY", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyType": "STATIC", - * "principal": { - * "entityId": "alice", - * "entityType": "User" + * lastUpdatedDate: "2022-12-09T23:00:24.66266Z", + * policyId: "9wYxMpljbbZQb5fcZHyJhY", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyType: "STATIC", + * principal: { + * entityId: "alice", + * entityType: "User" * }, - * "resource": { - * "entityId": "alice_folder", - * "entityType": "Album" + * resource: { + * entityId: "alice_folder", + * entityType: "Album" * } * } * ] * } * *\/ - * // example id: example-2 * ``` * * @example ListPolicies - Example 3 * ```javascript * // The following example uses the Filter parameter to list only the template-linked policies in the specified policy store. * const input = { - * "filter": { - * "policyType": "TEMPLATE_LINKED" + * filter: { + * policyType: "TEMPLATE_LINKED" * }, - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new ListPoliciesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "policies": [ + * policies: [ * { - * "createdDate": "2023-06-13T16:03:07.620867Z", - * "definition": { - * "templateLinked": { - * "policyTemplateId": "PTEXAMPLEabcdefg111111", - * "principal": { - * "entityId": "alice", - * "entityType": "User" + * createdDate: "2023-06-13T16:03:07.620867Z", + * definition: { + * templateLinked: { + * policyTemplateId: "PTEXAMPLEabcdefg111111", + * principal: { + * entityId: "alice", + * entityType: "User" * }, - * "resource": { - * "entityId": "pic.jpg", - * "entityType": "Photo" + * resource: { + * entityId: "pic.jpg", + * entityType: "Photo" * } * } * }, - * "lastUpdatedDate": "2023-06-13T16:03:07.620867Z", - * "policyId": "9wYxMpljbbZQb5fcZHyJhY", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyType": "TEMPLATE_LINKED", - * "principal": { - * "entityId": "alice", - * "entityType": "User" + * lastUpdatedDate: "2023-06-13T16:03:07.620867Z", + * policyId: "9wYxMpljbbZQb5fcZHyJhY", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyType: "TEMPLATE_LINKED", + * principal: { + * entityId: "alice", + * entityType: "User" * }, - * "resource": { - * "entityId": "pic.jpg", - * "entityType": "Photo" + * resource: { + * entityId: "pic.jpg", + * entityType: "Photo" * } * } * ] * } * *\/ - * // example id: example-3 * ``` * + * @public */ export class ListPoliciesCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/ListPolicyStoresCommand.ts b/clients/client-verifiedpermissions/src/commands/ListPolicyStoresCommand.ts index a2497597648f3..dd0f7fcb6e056 100644 --- a/clients/client-verifiedpermissions/src/commands/ListPolicyStoresCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/ListPolicyStoresCommand.ts @@ -166,32 +166,32 @@ export interface ListPolicyStoresCommandOutput extends ListPolicyStoresOutput, _ * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example ListPolicyStores * ```javascript * // The following example lists all policy stores in the AWS account in the AWS Region in which you call the operation. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new ListPolicyStoresCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "policyStores": [ + * policyStores: [ * { - * "arn": "arn:aws:verifiedpermissions::123456789012:policy-store/C7v5xMplfFH3i3e4Jrzb1a", - * "createdDate": "2023-05-16T17:41:29.103459Z", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * arn: "arn:aws:verifiedpermissions::123456789012:policy-store/C7v5xMplfFH3i3e4Jrzb1a", + * createdDate: "2023-05-16T17:41:29.103459Z", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }, * { - * "arn": "arn:aws:verifiedpermissions::123456789012:policy-store/PSEXAMPLEabcdefg222222", - * "createdDate": "2023-05-16T18:23:04.985521Z", - * "policyStoreId": "PSEXAMPLEabcdefg222222" + * arn: "arn:aws:verifiedpermissions::123456789012:policy-store/PSEXAMPLEabcdefg222222", + * createdDate: "2023-05-16T18:23:04.985521Z", + * policyStoreId: "PSEXAMPLEabcdefg222222" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListPolicyStoresCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/ListPolicyTemplatesCommand.ts b/clients/client-verifiedpermissions/src/commands/ListPolicyTemplatesCommand.ts index 0c02f7df1b470..d0e9b91bca8b2 100644 --- a/clients/client-verifiedpermissions/src/commands/ListPolicyTemplatesCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/ListPolicyTemplatesCommand.ts @@ -170,38 +170,38 @@ export interface ListPolicyTemplatesCommandOutput extends ListPolicyTemplatesOut * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example ListPolicyTemplates * ```javascript * // The following example retrieves a list of all of the policy templates in the specified policy store. * const input = { - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new ListPolicyTemplatesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "policyTemplates": [ + * policyTemplates: [ * { - * "createdDate": "2024-08-12T18:20:50.99Z", - * "description": "Generic template", - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyTemplateId": "PTEXAMPLEabcdefg111111" + * createdDate: "2024-08-12T18:20:50.99Z", + * description: "Generic template", + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyTemplateId: "PTEXAMPLEabcdefg111111" * }, * { - * "createdDate": "2024-08-12T18:20:50.99Z", - * "description": "Template for research dept", - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyTemplateId": "PTEXAMPLEabcdefg222222" + * createdDate: "2024-08-12T18:20:50.99Z", + * description: "Template for research dept", + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyTemplateId: "PTEXAMPLEabcdefg222222" * } * ] * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class ListPolicyTemplatesCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/PutSchemaCommand.ts b/clients/client-verifiedpermissions/src/commands/PutSchemaCommand.ts index 692eb72cc0b8a..4c55da2e4ab7a 100644 --- a/clients/client-verifiedpermissions/src/commands/PutSchemaCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/PutSchemaCommand.ts @@ -185,36 +185,36 @@ export interface PutSchemaCommandOutput extends PutSchemaOutput, __MetadataBeare * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example PutSchema * ```javascript * // The following example creates a new schema, or updates an existing schema, in the specified policy store. Note that the schema text is shown line wrapped for readability. You should submit the entire schema text as a single line of text. - * // - * // Note - * // The JSON in the parameters of this operation are strings that can contain embedded quotation marks (") within the outermost quotation mark pair. This requires that you stringify the JSON object by preceding all embedded quotation marks with a backslash character ( \" ) and combining all lines into a single text line with no line breaks. - * // - * // Example strings might be displayed wrapped across multiple lines here for readability, but the operation requires the parameters be submitted as single line strings. + * + * Note + * The JSON in the parameters of this operation are strings that can contain embedded quotation marks (") within the outermost quotation mark pair. This requires that you stringify the JSON object by preceding all embedded quotation marks with a backslash character ( \" ) and combining all lines into a single text line with no line breaks. + * + * Example strings might be displayed wrapped across multiple lines here for readability, but the operation requires the parameters be submitted as single line strings. * const input = { - * "definition": { - * "cedarJson": "{\"MySampleNamespace\": {\"actions\": {\"remoteAccess\": {\"appliesTo\": {\"principalTypes\": [\"Employee\"]}}},\"entityTypes\": {\"Employee\": {\"shape\": {\"attributes\": {\"jobLevel\": {\"type\": \"Long\"},\"name\": {\"type\": \"String\"}},\"type\": \"Record\"}}}}}" + * definition: { + * cedarJson: `{"MySampleNamespace": {"actions": {"remoteAccess": {"appliesTo": {"principalTypes": ["Employee"]}}},"entityTypes": {"Employee": {"shape": {"attributes": {"jobLevel": {"type": "Long"},"name": {"type": "String"}},"type": "Record"}}}}}` * }, - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new PutSchemaCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "createdDate": "2023-06-13T19:28:06.003726Z", - * "lastUpdatedDate": "2023-06-13T19:28:06.003726Z", - * "namespaces": [ + * createdDate: "2023-06-13T19:28:06.003726Z", + * lastUpdatedDate: "2023-06-13T19:28:06.003726Z", + * namespaces: [ * "My::Sample::Namespace" * ], - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class PutSchemaCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/UpdateIdentitySourceCommand.ts b/clients/client-verifiedpermissions/src/commands/UpdateIdentitySourceCommand.ts index ec83ccb953fad..ddf6c57ebf7b6 100644 --- a/clients/client-verifiedpermissions/src/commands/UpdateIdentitySourceCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/UpdateIdentitySourceCommand.ts @@ -208,35 +208,35 @@ export interface UpdateIdentitySourceCommandOutput extends UpdateIdentitySourceO * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example UpdateIdentitySource * ```javascript * // The following example updates the configuration of the specified identity source with a new configuration. * const input = { - * "identitySourceId": "ISEXAMPLEabcdefg111111", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "updateConfiguration": { - * "cognitoUserPoolConfiguration": { - * "clientIds": [ + * identitySourceId: "ISEXAMPLEabcdefg111111", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * updateConfiguration: { + * cognitoUserPoolConfiguration: { + * clientIds: [ * "a1b2c3d4e5f6g7h8i9j0kalbmc" * ], - * "userPoolArn": "arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5" + * userPoolArn: "arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5" * } * } * }; * const command = new UpdateIdentitySourceCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "createdDate": "2023-05-19T20:30:28.173926Z", - * "identitySourceId": "ISEXAMPLEabcdefg111111", - * "lastUpdatedDate": "2023-05-22T20:45:59.962216Z", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * createdDate: "2023-05-19T20:30:28.173926Z", + * identitySourceId: "ISEXAMPLEabcdefg111111", + * lastUpdatedDate: "2023-05-22T20:45:59.962216Z", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdateIdentitySourceCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/UpdatePolicyCommand.ts b/clients/client-verifiedpermissions/src/commands/UpdatePolicyCommand.ts index f88c879daca30..ce488642cab42 100644 --- a/clients/client-verifiedpermissions/src/commands/UpdatePolicyCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/UpdatePolicyCommand.ts @@ -243,37 +243,37 @@ export interface UpdatePolicyCommandOutput extends UpdatePolicyOutput, __Metadat * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example UpdatePolicy * ```javascript * // The following example replaces the definition of the specified static policy with a new one. * const input = { - * "definition": { - * "static": { - * "statement": "permit(principal, action, resource in Album::\"public_folder\");" + * definition: { + * static: { + * statement: `permit(principal, action, resource in Album::"public_folder");` * } * }, - * "policyId": "9wYxMpljbbZQb5fcZHyJhY", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * policyId: "9wYxMpljbbZQb5fcZHyJhY", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * }; * const command = new UpdatePolicyCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "createdDate": "2024-08-12T18:20:50.99Z", - * "lastUpdatedDate": "2024-08-12T18:20:50.99Z", - * "policyId": "9wYxMpljbbZQb5fcZHyJhY", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyType": "STATIC", - * "resource": { - * "entityId": "public_folder", - * "entityType": "Album" + * createdDate: "2024-08-12T18:20:50.99Z", + * lastUpdatedDate: "2024-08-12T18:20:50.99Z", + * policyId: "9wYxMpljbbZQb5fcZHyJhY", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyType: "STATIC", + * resource: { + * entityId: "public_folder", + * entityType: "Album" * } * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdatePolicyCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/UpdatePolicyStoreCommand.ts b/clients/client-verifiedpermissions/src/commands/UpdatePolicyStoreCommand.ts index e67abfbc5aa12..9c192d20e7616 100644 --- a/clients/client-verifiedpermissions/src/commands/UpdatePolicyStoreCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/UpdatePolicyStoreCommand.ts @@ -176,29 +176,29 @@ export interface UpdatePolicyStoreCommandOutput extends UpdatePolicyStoreOutput, * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example UpdatePolicyStore * ```javascript * // The following example turns off the validation settings for a policy store. * const input = { - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "validationSettings": { - * "mode": "OFF" + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * validationSettings: { + * mode: "OFF" * } * }; * const command = new UpdatePolicyStoreCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "arn": "arn:aws:verifiedpermissions::123456789012:policy-store/C7v5xMplfFH3i3e4Jrzb1a", - * "createdDate": "2023-05-17T18:36:10.134448Z", - * "lastUpdatedDate": "2023-05-23T18:18:12.443083Z", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a" + * arn: "arn:aws:verifiedpermissions::123456789012:policy-store/C7v5xMplfFH3i3e4Jrzb1a", + * createdDate: "2023-05-17T18:36:10.134448Z", + * lastUpdatedDate: "2023-05-23T18:18:12.443083Z", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdatePolicyStoreCommand extends $Command .classBuilder< diff --git a/clients/client-verifiedpermissions/src/commands/UpdatePolicyTemplateCommand.ts b/clients/client-verifiedpermissions/src/commands/UpdatePolicyTemplateCommand.ts index 9626c23930f66..2c741bc8f7906 100644 --- a/clients/client-verifiedpermissions/src/commands/UpdatePolicyTemplateCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/UpdatePolicyTemplateCommand.ts @@ -181,34 +181,42 @@ export interface UpdatePolicyTemplateCommandOutput extends UpdatePolicyTemplateO * @throws {@link VerifiedPermissionsServiceException} *

Base exception class for all service exceptions from VerifiedPermissions service.

* - * @public + * * @example UpdatePolicyTemplate * ```javascript * // The following example updates a policy template with both a new description and a new policy body. The effect, principal, and resource are the same as the original policy template. Only the action in the head, and the when and unless clauses can be different. - * // - * // Note - * // The JSON in the parameters of this operation are strings that can contain embedded quotation marks (") within the outermost quotation mark pair. This requires that you stringify the JSON object by preceding all embedded quotation marks with a backslash character ( \" ) and combining all lines into a single text line with no line breaks. - * // - * // Example strings might be displayed wrapped across multiple lines here for readability, but the operation requires the parameters be submitted as single line strings. + * + * Note + * The JSON in the parameters of this operation are strings that can contain embedded quotation marks (") within the outermost quotation mark pair. This requires that you stringify the JSON object by preceding all embedded quotation marks with a backslash character ( \" ) and combining all lines into a single text line with no line breaks. + * + * Example strings might be displayed wrapped across multiple lines here for readability, but the operation requires the parameters be submitted as single line strings. * const input = { - * "description": "My updated template description", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyTemplateId": "PTEXAMPLEabcdefg111111", - * "statement": "\"ResearchAccess\"\npermit(\nprincipal in ?principal,\naction == Action::\"view\",\nresource in ?resource\"\n)\nwhen {\nprincipal has department && principal.department == \"research\"\n};" + * description: "My updated template description", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyTemplateId: "PTEXAMPLEabcdefg111111", + * statement: `"ResearchAccess" + * permit( + * principal in ?principal, + * action == Action::"view", + * resource in ?resource" + * ) + * when { + * principal has department && principal.department == "research" + * };` * }; * const command = new UpdatePolicyTemplateCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "createdDate": "2023-05-17T18:58:48.795411Z", - * "lastUpdatedDate": "2023-05-17T19:18:48.870209Z", - * "policyStoreId": "C7v5xMplfFH3i3e4Jrzb1a", - * "policyTemplateId": "PTEXAMPLEabcdefg111111" + * createdDate: "2023-05-17T18:58:48.795411Z", + * lastUpdatedDate: "2023-05-17T19:18:48.870209Z", + * policyStoreId: "C7v5xMplfFH3i3e4Jrzb1a", + * policyTemplateId: "PTEXAMPLEabcdefg111111" * } * *\/ - * // example id: example-1 * ``` * + * @public */ export class UpdatePolicyTemplateCommand extends $Command .classBuilder< diff --git a/clients/client-voice-id/src/commands/AssociateFraudsterCommand.ts b/clients/client-voice-id/src/commands/AssociateFraudsterCommand.ts index 2c02552db618e..863943aab167c 100644 --- a/clients/client-voice-id/src/commands/AssociateFraudsterCommand.ts +++ b/clients/client-voice-id/src/commands/AssociateFraudsterCommand.ts @@ -96,6 +96,7 @@ export interface AssociateFraudsterCommandOutput extends AssociateFraudsterRespo * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class AssociateFraudsterCommand extends $Command diff --git a/clients/client-voice-id/src/commands/CreateDomainCommand.ts b/clients/client-voice-id/src/commands/CreateDomainCommand.ts index aaebbef1764b3..615cdb41b9388 100644 --- a/clients/client-voice-id/src/commands/CreateDomainCommand.ts +++ b/clients/client-voice-id/src/commands/CreateDomainCommand.ts @@ -119,6 +119,7 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class CreateDomainCommand extends $Command diff --git a/clients/client-voice-id/src/commands/CreateWatchlistCommand.ts b/clients/client-voice-id/src/commands/CreateWatchlistCommand.ts index 3c128a8836d10..15e8dae49f3f0 100644 --- a/clients/client-voice-id/src/commands/CreateWatchlistCommand.ts +++ b/clients/client-voice-id/src/commands/CreateWatchlistCommand.ts @@ -99,6 +99,7 @@ export interface CreateWatchlistCommandOutput extends CreateWatchlistResponse, _ * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class CreateWatchlistCommand extends $Command diff --git a/clients/client-voice-id/src/commands/DeleteDomainCommand.ts b/clients/client-voice-id/src/commands/DeleteDomainCommand.ts index 20fa1d0ddb39a..2143a7b42d34d 100644 --- a/clients/client-voice-id/src/commands/DeleteDomainCommand.ts +++ b/clients/client-voice-id/src/commands/DeleteDomainCommand.ts @@ -78,6 +78,7 @@ export interface DeleteDomainCommandOutput extends __MetadataBearer {} * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class DeleteDomainCommand extends $Command diff --git a/clients/client-voice-id/src/commands/DeleteFraudsterCommand.ts b/clients/client-voice-id/src/commands/DeleteFraudsterCommand.ts index 063cf4ff09350..bfe8fcf5db8bb 100644 --- a/clients/client-voice-id/src/commands/DeleteFraudsterCommand.ts +++ b/clients/client-voice-id/src/commands/DeleteFraudsterCommand.ts @@ -79,6 +79,7 @@ export interface DeleteFraudsterCommandOutput extends __MetadataBearer {} * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class DeleteFraudsterCommand extends $Command diff --git a/clients/client-voice-id/src/commands/DeleteSpeakerCommand.ts b/clients/client-voice-id/src/commands/DeleteSpeakerCommand.ts index e83b5278b8488..4b8411419606d 100644 --- a/clients/client-voice-id/src/commands/DeleteSpeakerCommand.ts +++ b/clients/client-voice-id/src/commands/DeleteSpeakerCommand.ts @@ -79,6 +79,7 @@ export interface DeleteSpeakerCommandOutput extends __MetadataBearer {} * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class DeleteSpeakerCommand extends $Command diff --git a/clients/client-voice-id/src/commands/DeleteWatchlistCommand.ts b/clients/client-voice-id/src/commands/DeleteWatchlistCommand.ts index 6e459e4403515..9b64d0b7b2587 100644 --- a/clients/client-voice-id/src/commands/DeleteWatchlistCommand.ts +++ b/clients/client-voice-id/src/commands/DeleteWatchlistCommand.ts @@ -81,6 +81,7 @@ export interface DeleteWatchlistCommandOutput extends __MetadataBearer {} * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class DeleteWatchlistCommand extends $Command diff --git a/clients/client-voice-id/src/commands/DescribeDomainCommand.ts b/clients/client-voice-id/src/commands/DescribeDomainCommand.ts index 8da9e856d9ca2..c589f58d84ce1 100644 --- a/clients/client-voice-id/src/commands/DescribeDomainCommand.ts +++ b/clients/client-voice-id/src/commands/DescribeDomainCommand.ts @@ -99,6 +99,7 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResponse, __M * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class DescribeDomainCommand extends $Command diff --git a/clients/client-voice-id/src/commands/DescribeFraudsterCommand.ts b/clients/client-voice-id/src/commands/DescribeFraudsterCommand.ts index d1f2ca55e7024..638a2d4eeef70 100644 --- a/clients/client-voice-id/src/commands/DescribeFraudsterCommand.ts +++ b/clients/client-voice-id/src/commands/DescribeFraudsterCommand.ts @@ -88,6 +88,7 @@ export interface DescribeFraudsterCommandOutput extends DescribeFraudsterRespons * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class DescribeFraudsterCommand extends $Command diff --git a/clients/client-voice-id/src/commands/DescribeFraudsterRegistrationJobCommand.ts b/clients/client-voice-id/src/commands/DescribeFraudsterRegistrationJobCommand.ts index 78a3606f05eeb..d39088ac94d41 100644 --- a/clients/client-voice-id/src/commands/DescribeFraudsterRegistrationJobCommand.ts +++ b/clients/client-voice-id/src/commands/DescribeFraudsterRegistrationJobCommand.ts @@ -115,6 +115,7 @@ export interface DescribeFraudsterRegistrationJobCommandOutput * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class DescribeFraudsterRegistrationJobCommand extends $Command diff --git a/clients/client-voice-id/src/commands/DescribeSpeakerCommand.ts b/clients/client-voice-id/src/commands/DescribeSpeakerCommand.ts index d21c8de39ca99..9e924730a6b3a 100644 --- a/clients/client-voice-id/src/commands/DescribeSpeakerCommand.ts +++ b/clients/client-voice-id/src/commands/DescribeSpeakerCommand.ts @@ -90,6 +90,7 @@ export interface DescribeSpeakerCommandOutput extends DescribeSpeakerResponse, _ * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class DescribeSpeakerCommand extends $Command diff --git a/clients/client-voice-id/src/commands/DescribeSpeakerEnrollmentJobCommand.ts b/clients/client-voice-id/src/commands/DescribeSpeakerEnrollmentJobCommand.ts index 564122251b75b..72a1eb815d1d5 100644 --- a/clients/client-voice-id/src/commands/DescribeSpeakerEnrollmentJobCommand.ts +++ b/clients/client-voice-id/src/commands/DescribeSpeakerEnrollmentJobCommand.ts @@ -118,6 +118,7 @@ export interface DescribeSpeakerEnrollmentJobCommandOutput * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class DescribeSpeakerEnrollmentJobCommand extends $Command diff --git a/clients/client-voice-id/src/commands/DescribeWatchlistCommand.ts b/clients/client-voice-id/src/commands/DescribeWatchlistCommand.ts index f00c08582759b..fadfae22dd5bc 100644 --- a/clients/client-voice-id/src/commands/DescribeWatchlistCommand.ts +++ b/clients/client-voice-id/src/commands/DescribeWatchlistCommand.ts @@ -89,6 +89,7 @@ export interface DescribeWatchlistCommandOutput extends DescribeWatchlistRespons * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class DescribeWatchlistCommand extends $Command diff --git a/clients/client-voice-id/src/commands/DisassociateFraudsterCommand.ts b/clients/client-voice-id/src/commands/DisassociateFraudsterCommand.ts index 01135330ebac0..cae70b3be3bf8 100644 --- a/clients/client-voice-id/src/commands/DisassociateFraudsterCommand.ts +++ b/clients/client-voice-id/src/commands/DisassociateFraudsterCommand.ts @@ -96,6 +96,7 @@ export interface DisassociateFraudsterCommandOutput extends DisassociateFraudste * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class DisassociateFraudsterCommand extends $Command diff --git a/clients/client-voice-id/src/commands/EvaluateSessionCommand.ts b/clients/client-voice-id/src/commands/EvaluateSessionCommand.ts index d127e077fd1a6..e91b28f80067a 100644 --- a/clients/client-voice-id/src/commands/EvaluateSessionCommand.ts +++ b/clients/client-voice-id/src/commands/EvaluateSessionCommand.ts @@ -123,6 +123,7 @@ export interface EvaluateSessionCommandOutput extends EvaluateSessionResponse, _ * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class EvaluateSessionCommand extends $Command diff --git a/clients/client-voice-id/src/commands/ListDomainsCommand.ts b/clients/client-voice-id/src/commands/ListDomainsCommand.ts index c540b3620d235..a3be53ecac698 100644 --- a/clients/client-voice-id/src/commands/ListDomainsCommand.ts +++ b/clients/client-voice-id/src/commands/ListDomainsCommand.ts @@ -95,6 +95,7 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class ListDomainsCommand extends $Command diff --git a/clients/client-voice-id/src/commands/ListFraudsterRegistrationJobsCommand.ts b/clients/client-voice-id/src/commands/ListFraudsterRegistrationJobsCommand.ts index ea20908c649ea..63a0a384daa59 100644 --- a/clients/client-voice-id/src/commands/ListFraudsterRegistrationJobsCommand.ts +++ b/clients/client-voice-id/src/commands/ListFraudsterRegistrationJobsCommand.ts @@ -107,6 +107,7 @@ export interface ListFraudsterRegistrationJobsCommandOutput * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class ListFraudsterRegistrationJobsCommand extends $Command diff --git a/clients/client-voice-id/src/commands/ListFraudstersCommand.ts b/clients/client-voice-id/src/commands/ListFraudstersCommand.ts index 6020aeff68462..bf245760ad881 100644 --- a/clients/client-voice-id/src/commands/ListFraudstersCommand.ts +++ b/clients/client-voice-id/src/commands/ListFraudstersCommand.ts @@ -89,6 +89,7 @@ export interface ListFraudstersCommandOutput extends ListFraudstersResponse, __M * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class ListFraudstersCommand extends $Command diff --git a/clients/client-voice-id/src/commands/ListSpeakerEnrollmentJobsCommand.ts b/clients/client-voice-id/src/commands/ListSpeakerEnrollmentJobsCommand.ts index a1084f3053c79..f17c6632e2abc 100644 --- a/clients/client-voice-id/src/commands/ListSpeakerEnrollmentJobsCommand.ts +++ b/clients/client-voice-id/src/commands/ListSpeakerEnrollmentJobsCommand.ts @@ -102,6 +102,7 @@ export interface ListSpeakerEnrollmentJobsCommandOutput extends ListSpeakerEnrol * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class ListSpeakerEnrollmentJobsCommand extends $Command diff --git a/clients/client-voice-id/src/commands/ListSpeakersCommand.ts b/clients/client-voice-id/src/commands/ListSpeakersCommand.ts index 6f0f4cde21a30..a4075ba845178 100644 --- a/clients/client-voice-id/src/commands/ListSpeakersCommand.ts +++ b/clients/client-voice-id/src/commands/ListSpeakersCommand.ts @@ -89,6 +89,7 @@ export interface ListSpeakersCommandOutput extends ListSpeakersResponse, __Metad * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class ListSpeakersCommand extends $Command diff --git a/clients/client-voice-id/src/commands/ListTagsForResourceCommand.ts b/clients/client-voice-id/src/commands/ListTagsForResourceCommand.ts index 6e46c1af51f17..622a168e55c07 100644 --- a/clients/client-voice-id/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-voice-id/src/commands/ListTagsForResourceCommand.ts @@ -85,6 +85,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-voice-id/src/commands/ListWatchlistsCommand.ts b/clients/client-voice-id/src/commands/ListWatchlistsCommand.ts index 9de1858588c56..3b414e1224af2 100644 --- a/clients/client-voice-id/src/commands/ListWatchlistsCommand.ts +++ b/clients/client-voice-id/src/commands/ListWatchlistsCommand.ts @@ -93,6 +93,7 @@ export interface ListWatchlistsCommandOutput extends ListWatchlistsResponse, __M * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class ListWatchlistsCommand extends $Command diff --git a/clients/client-voice-id/src/commands/OptOutSpeakerCommand.ts b/clients/client-voice-id/src/commands/OptOutSpeakerCommand.ts index afbfa77deedf6..7f5c5291174ad 100644 --- a/clients/client-voice-id/src/commands/OptOutSpeakerCommand.ts +++ b/clients/client-voice-id/src/commands/OptOutSpeakerCommand.ts @@ -102,6 +102,7 @@ export interface OptOutSpeakerCommandOutput extends OptOutSpeakerResponse, __Met * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class OptOutSpeakerCommand extends $Command diff --git a/clients/client-voice-id/src/commands/StartFraudsterRegistrationJobCommand.ts b/clients/client-voice-id/src/commands/StartFraudsterRegistrationJobCommand.ts index fb015ab4c261e..0451cf9a36801 100644 --- a/clients/client-voice-id/src/commands/StartFraudsterRegistrationJobCommand.ts +++ b/clients/client-voice-id/src/commands/StartFraudsterRegistrationJobCommand.ts @@ -139,6 +139,7 @@ export interface StartFraudsterRegistrationJobCommandOutput * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class StartFraudsterRegistrationJobCommand extends $Command diff --git a/clients/client-voice-id/src/commands/StartSpeakerEnrollmentJobCommand.ts b/clients/client-voice-id/src/commands/StartSpeakerEnrollmentJobCommand.ts index f773130cbb714..0ba2856b7da09 100644 --- a/clients/client-voice-id/src/commands/StartSpeakerEnrollmentJobCommand.ts +++ b/clients/client-voice-id/src/commands/StartSpeakerEnrollmentJobCommand.ts @@ -140,6 +140,7 @@ export interface StartSpeakerEnrollmentJobCommandOutput extends StartSpeakerEnro * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class StartSpeakerEnrollmentJobCommand extends $Command diff --git a/clients/client-voice-id/src/commands/TagResourceCommand.ts b/clients/client-voice-id/src/commands/TagResourceCommand.ts index 816c3bebfa35f..a0af741d20a10 100644 --- a/clients/client-voice-id/src/commands/TagResourceCommand.ts +++ b/clients/client-voice-id/src/commands/TagResourceCommand.ts @@ -84,6 +84,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-voice-id/src/commands/UntagResourceCommand.ts b/clients/client-voice-id/src/commands/UntagResourceCommand.ts index 830de15f6175c..96035e3c5017a 100644 --- a/clients/client-voice-id/src/commands/UntagResourceCommand.ts +++ b/clients/client-voice-id/src/commands/UntagResourceCommand.ts @@ -85,6 +85,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-voice-id/src/commands/UpdateDomainCommand.ts b/clients/client-voice-id/src/commands/UpdateDomainCommand.ts index d4c3e16cd0bea..ef580714834a4 100644 --- a/clients/client-voice-id/src/commands/UpdateDomainCommand.ts +++ b/clients/client-voice-id/src/commands/UpdateDomainCommand.ts @@ -111,6 +111,7 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class UpdateDomainCommand extends $Command diff --git a/clients/client-voice-id/src/commands/UpdateWatchlistCommand.ts b/clients/client-voice-id/src/commands/UpdateWatchlistCommand.ts index fbf59db0ee3ee..d2d25c1084bf1 100644 --- a/clients/client-voice-id/src/commands/UpdateWatchlistCommand.ts +++ b/clients/client-voice-id/src/commands/UpdateWatchlistCommand.ts @@ -97,6 +97,7 @@ export interface UpdateWatchlistCommandOutput extends UpdateWatchlistResponse, _ * @throws {@link VoiceIDServiceException} *

Base exception class for all service exceptions from VoiceID service.

* + * * @public */ export class UpdateWatchlistCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/BatchUpdateRuleCommand.ts b/clients/client-vpc-lattice/src/commands/BatchUpdateRuleCommand.ts index efac22bd20e87..13b96de23339f 100644 --- a/clients/client-vpc-lattice/src/commands/BatchUpdateRuleCommand.ts +++ b/clients/client-vpc-lattice/src/commands/BatchUpdateRuleCommand.ts @@ -176,6 +176,7 @@ export interface BatchUpdateRuleCommandOutput extends BatchUpdateRuleResponse, _ * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class BatchUpdateRuleCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/CreateAccessLogSubscriptionCommand.ts b/clients/client-vpc-lattice/src/commands/CreateAccessLogSubscriptionCommand.ts index 9f83c4f35e9c0..f81c982c5172f 100644 --- a/clients/client-vpc-lattice/src/commands/CreateAccessLogSubscriptionCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateAccessLogSubscriptionCommand.ts @@ -96,6 +96,7 @@ export interface CreateAccessLogSubscriptionCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class CreateAccessLogSubscriptionCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/CreateListenerCommand.ts b/clients/client-vpc-lattice/src/commands/CreateListenerCommand.ts index 0f1afc8e28776..eaaffc9dcd843 100644 --- a/clients/client-vpc-lattice/src/commands/CreateListenerCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateListenerCommand.ts @@ -120,6 +120,7 @@ export interface CreateListenerCommandOutput extends CreateListenerResponse, __M * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class CreateListenerCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/CreateResourceConfigurationCommand.ts b/clients/client-vpc-lattice/src/commands/CreateResourceConfigurationCommand.ts index 55dc93b0d6863..30973790fb047 100644 --- a/clients/client-vpc-lattice/src/commands/CreateResourceConfigurationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateResourceConfigurationCommand.ts @@ -133,6 +133,7 @@ export interface CreateResourceConfigurationCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class CreateResourceConfigurationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/CreateResourceGatewayCommand.ts b/clients/client-vpc-lattice/src/commands/CreateResourceGatewayCommand.ts index 8b92a91649ae3..4120ba12e3aae 100644 --- a/clients/client-vpc-lattice/src/commands/CreateResourceGatewayCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateResourceGatewayCommand.ts @@ -101,6 +101,7 @@ export interface CreateResourceGatewayCommandOutput extends CreateResourceGatewa * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class CreateResourceGatewayCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/CreateRuleCommand.ts b/clients/client-vpc-lattice/src/commands/CreateRuleCommand.ts index 7ff9f6355d38d..f11ebfdd03fcd 100644 --- a/clients/client-vpc-lattice/src/commands/CreateRuleCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateRuleCommand.ts @@ -163,6 +163,7 @@ export interface CreateRuleCommandOutput extends CreateRuleResponse, __MetadataB * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class CreateRuleCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/CreateServiceCommand.ts b/clients/client-vpc-lattice/src/commands/CreateServiceCommand.ts index b6b5299a2eaad..998be438673a1 100644 --- a/clients/client-vpc-lattice/src/commands/CreateServiceCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateServiceCommand.ts @@ -98,6 +98,7 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class CreateServiceCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkCommand.ts b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkCommand.ts index be766dc4a8981..7f5570834d932 100644 --- a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkCommand.ts @@ -95,6 +95,7 @@ export interface CreateServiceNetworkCommandOutput extends CreateServiceNetworkR * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class CreateServiceNetworkCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkResourceAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkResourceAssociationCommand.ts index 1482856e872c8..f6e90555cf369 100644 --- a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkResourceAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkResourceAssociationCommand.ts @@ -97,6 +97,7 @@ export interface CreateServiceNetworkResourceAssociationCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class CreateServiceNetworkResourceAssociationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkServiceAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkServiceAssociationCommand.ts index a8357bf9857e7..bac8d2e74e668 100644 --- a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkServiceAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkServiceAssociationCommand.ts @@ -108,6 +108,7 @@ export interface CreateServiceNetworkServiceAssociationCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class CreateServiceNetworkServiceAssociationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkVpcAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkVpcAssociationCommand.ts index cfca7e67d2b86..3c65805147144 100644 --- a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkVpcAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkVpcAssociationCommand.ts @@ -110,6 +110,7 @@ export interface CreateServiceNetworkVpcAssociationCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class CreateServiceNetworkVpcAssociationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/CreateTargetGroupCommand.ts b/clients/client-vpc-lattice/src/commands/CreateTargetGroupCommand.ts index b5ccda06a0d62..cd614065eaee3 100644 --- a/clients/client-vpc-lattice/src/commands/CreateTargetGroupCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateTargetGroupCommand.ts @@ -134,6 +134,7 @@ export interface CreateTargetGroupCommandOutput extends CreateTargetGroupRespons * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class CreateTargetGroupCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeleteAccessLogSubscriptionCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteAccessLogSubscriptionCommand.ts index d7c7a7b1adf02..573ea77761209 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteAccessLogSubscriptionCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteAccessLogSubscriptionCommand.ts @@ -74,6 +74,7 @@ export interface DeleteAccessLogSubscriptionCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeleteAccessLogSubscriptionCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeleteAuthPolicyCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteAuthPolicyCommand.ts index 4430be3c6cd59..ee609672734c3 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteAuthPolicyCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteAuthPolicyCommand.ts @@ -72,6 +72,7 @@ export interface DeleteAuthPolicyCommandOutput extends DeleteAuthPolicyResponse, * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeleteAuthPolicyCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeleteListenerCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteListenerCommand.ts index d241845765bde..5a41ea4679576 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteListenerCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteListenerCommand.ts @@ -74,6 +74,7 @@ export interface DeleteListenerCommandOutput extends DeleteListenerResponse, __M * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeleteListenerCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeleteResourceConfigurationCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteResourceConfigurationCommand.ts index 8efaf241f115c..70c65d400710c 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteResourceConfigurationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteResourceConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface DeleteResourceConfigurationCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeleteResourceConfigurationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeleteResourceEndpointAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteResourceEndpointAssociationCommand.ts index f69adeb3cf919..3dda1c5d6ed44 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteResourceEndpointAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteResourceEndpointAssociationCommand.ts @@ -83,6 +83,7 @@ export interface DeleteResourceEndpointAssociationCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeleteResourceEndpointAssociationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeleteResourceGatewayCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteResourceGatewayCommand.ts index 2385edf981bc3..22f108883b9b6 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteResourceGatewayCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteResourceGatewayCommand.ts @@ -78,6 +78,7 @@ export interface DeleteResourceGatewayCommandOutput extends DeleteResourceGatewa * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeleteResourceGatewayCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteResourcePolicyCommand.ts index a2994a92ce971..3880a1c361f1e 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteResourcePolicyCommand.ts @@ -69,6 +69,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeleteRuleCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteRuleCommand.ts index 98ad9273d2f05..707beff6f6ce2 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteRuleCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteRuleCommand.ts @@ -80,6 +80,7 @@ export interface DeleteRuleCommandOutput extends DeleteRuleResponse, __MetadataB * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeleteRuleCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeleteServiceCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteServiceCommand.ts index 447a5306eb3d4..4cdd0e3eaec5c 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteServiceCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteServiceCommand.ts @@ -82,6 +82,7 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeleteServiceCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkCommand.ts index 9a1a34b8f371d..bf543033da52c 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkCommand.ts @@ -77,6 +77,7 @@ export interface DeleteServiceNetworkCommandOutput extends DeleteServiceNetworkR * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeleteServiceNetworkCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkResourceAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkResourceAssociationCommand.ts index d8d7b1fa17faf..b234cc31f0d39 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkResourceAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkResourceAssociationCommand.ts @@ -86,6 +86,7 @@ export interface DeleteServiceNetworkResourceAssociationCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeleteServiceNetworkResourceAssociationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkServiceAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkServiceAssociationCommand.ts index 5da25960b164d..075deed0e0561 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkServiceAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkServiceAssociationCommand.ts @@ -87,6 +87,7 @@ export interface DeleteServiceNetworkServiceAssociationCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeleteServiceNetworkServiceAssociationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkVpcAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkVpcAssociationCommand.ts index bfad165ac55cf..ce7f705d8bc09 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkVpcAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkVpcAssociationCommand.ts @@ -86,6 +86,7 @@ export interface DeleteServiceNetworkVpcAssociationCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeleteServiceNetworkVpcAssociationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeleteTargetGroupCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteTargetGroupCommand.ts index 80938d65bb409..29bd1274ba502 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteTargetGroupCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteTargetGroupCommand.ts @@ -75,6 +75,7 @@ export interface DeleteTargetGroupCommandOutput extends DeleteTargetGroupRespons * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeleteTargetGroupCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/DeregisterTargetsCommand.ts b/clients/client-vpc-lattice/src/commands/DeregisterTargetsCommand.ts index 49b68a96c5be9..71f810700cb4e 100644 --- a/clients/client-vpc-lattice/src/commands/DeregisterTargetsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeregisterTargetsCommand.ts @@ -94,6 +94,7 @@ export interface DeregisterTargetsCommandOutput extends DeregisterTargetsRespons * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class DeregisterTargetsCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/GetAccessLogSubscriptionCommand.ts b/clients/client-vpc-lattice/src/commands/GetAccessLogSubscriptionCommand.ts index b2700ed232322..23e5da045e7bf 100644 --- a/clients/client-vpc-lattice/src/commands/GetAccessLogSubscriptionCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetAccessLogSubscriptionCommand.ts @@ -78,6 +78,7 @@ export interface GetAccessLogSubscriptionCommandOutput extends GetAccessLogSubsc * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class GetAccessLogSubscriptionCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/GetAuthPolicyCommand.ts b/clients/client-vpc-lattice/src/commands/GetAuthPolicyCommand.ts index b5874bca571f0..45cf6e6dd0da7 100644 --- a/clients/client-vpc-lattice/src/commands/GetAuthPolicyCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetAuthPolicyCommand.ts @@ -75,6 +75,7 @@ export interface GetAuthPolicyCommandOutput extends GetAuthPolicyResponse, __Met * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class GetAuthPolicyCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/GetListenerCommand.ts b/clients/client-vpc-lattice/src/commands/GetListenerCommand.ts index ad058c669258c..12287904c2918 100644 --- a/clients/client-vpc-lattice/src/commands/GetListenerCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetListenerCommand.ts @@ -93,6 +93,7 @@ export interface GetListenerCommandOutput extends GetListenerResponse, __Metadat * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class GetListenerCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/GetResourceConfigurationCommand.ts b/clients/client-vpc-lattice/src/commands/GetResourceConfigurationCommand.ts index 9e98dcafd7d3f..ea0a5feae1da9 100644 --- a/clients/client-vpc-lattice/src/commands/GetResourceConfigurationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetResourceConfigurationCommand.ts @@ -99,6 +99,7 @@ export interface GetResourceConfigurationCommandOutput extends GetResourceConfig * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class GetResourceConfigurationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/GetResourceGatewayCommand.ts b/clients/client-vpc-lattice/src/commands/GetResourceGatewayCommand.ts index fde70f5506217..575e8425d6964 100644 --- a/clients/client-vpc-lattice/src/commands/GetResourceGatewayCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetResourceGatewayCommand.ts @@ -84,6 +84,7 @@ export interface GetResourceGatewayCommandOutput extends GetResourceGatewayRespo * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class GetResourceGatewayCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/GetResourcePolicyCommand.ts b/clients/client-vpc-lattice/src/commands/GetResourcePolicyCommand.ts index 3a685456f68ee..d46a02d7e98d1 100644 --- a/clients/client-vpc-lattice/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetResourcePolicyCommand.ts @@ -72,6 +72,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class GetResourcePolicyCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/GetRuleCommand.ts b/clients/client-vpc-lattice/src/commands/GetRuleCommand.ts index 01ccd8f4be4e1..8632037eaec5d 100644 --- a/clients/client-vpc-lattice/src/commands/GetRuleCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetRuleCommand.ts @@ -117,6 +117,7 @@ export interface GetRuleCommandOutput extends GetRuleResponse, __MetadataBearer * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class GetRuleCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/GetServiceCommand.ts b/clients/client-vpc-lattice/src/commands/GetServiceCommand.ts index 70be8b4649c81..e0c5be844c60d 100644 --- a/clients/client-vpc-lattice/src/commands/GetServiceCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetServiceCommand.ts @@ -85,6 +85,7 @@ export interface GetServiceCommandOutput extends GetServiceResponse, __MetadataB * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class GetServiceCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/GetServiceNetworkCommand.ts b/clients/client-vpc-lattice/src/commands/GetServiceNetworkCommand.ts index 9a0313afaf1ae..2df658801537f 100644 --- a/clients/client-vpc-lattice/src/commands/GetServiceNetworkCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetServiceNetworkCommand.ts @@ -81,6 +81,7 @@ export interface GetServiceNetworkCommandOutput extends GetServiceNetworkRespons * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class GetServiceNetworkCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/GetServiceNetworkResourceAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/GetServiceNetworkResourceAssociationCommand.ts index f5e7b4d012591..122af0a9cc049 100644 --- a/clients/client-vpc-lattice/src/commands/GetServiceNetworkResourceAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetServiceNetworkResourceAssociationCommand.ts @@ -101,6 +101,7 @@ export interface GetServiceNetworkResourceAssociationCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class GetServiceNetworkResourceAssociationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/GetServiceNetworkServiceAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/GetServiceNetworkServiceAssociationCommand.ts index c994449eedcfe..6ce3e00277cfd 100644 --- a/clients/client-vpc-lattice/src/commands/GetServiceNetworkServiceAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetServiceNetworkServiceAssociationCommand.ts @@ -96,6 +96,7 @@ export interface GetServiceNetworkServiceAssociationCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class GetServiceNetworkServiceAssociationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/GetServiceNetworkVpcAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/GetServiceNetworkVpcAssociationCommand.ts index 58d70394297a5..214c299a618a1 100644 --- a/clients/client-vpc-lattice/src/commands/GetServiceNetworkVpcAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetServiceNetworkVpcAssociationCommand.ts @@ -90,6 +90,7 @@ export interface GetServiceNetworkVpcAssociationCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class GetServiceNetworkVpcAssociationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/GetTargetGroupCommand.ts b/clients/client-vpc-lattice/src/commands/GetTargetGroupCommand.ts index 7a8b40fb8ee83..baca2f183deec 100644 --- a/clients/client-vpc-lattice/src/commands/GetTargetGroupCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetTargetGroupCommand.ts @@ -104,6 +104,7 @@ export interface GetTargetGroupCommandOutput extends GetTargetGroupResponse, __M * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class GetTargetGroupCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListAccessLogSubscriptionsCommand.ts b/clients/client-vpc-lattice/src/commands/ListAccessLogSubscriptionsCommand.ts index 1b95dcf04d7fc..f333816e94275 100644 --- a/clients/client-vpc-lattice/src/commands/ListAccessLogSubscriptionsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListAccessLogSubscriptionsCommand.ts @@ -82,6 +82,7 @@ export interface ListAccessLogSubscriptionsCommandOutput extends ListAccessLogSu * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListAccessLogSubscriptionsCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListListenersCommand.ts b/clients/client-vpc-lattice/src/commands/ListListenersCommand.ts index 26ae1e5509d95..e95c420dbb0e3 100644 --- a/clients/client-vpc-lattice/src/commands/ListListenersCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListListenersCommand.ts @@ -84,6 +84,7 @@ export interface ListListenersCommandOutput extends ListListenersResponse, __Met * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListListenersCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListResourceConfigurationsCommand.ts b/clients/client-vpc-lattice/src/commands/ListResourceConfigurationsCommand.ts index 59a9b4e5ff901..c292d509a91c1 100644 --- a/clients/client-vpc-lattice/src/commands/ListResourceConfigurationsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListResourceConfigurationsCommand.ts @@ -85,6 +85,7 @@ export interface ListResourceConfigurationsCommandOutput extends ListResourceCon * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListResourceConfigurationsCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListResourceEndpointAssociationsCommand.ts b/clients/client-vpc-lattice/src/commands/ListResourceEndpointAssociationsCommand.ts index 0d1d2f4d57b99..93cc221c04814 100644 --- a/clients/client-vpc-lattice/src/commands/ListResourceEndpointAssociationsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListResourceEndpointAssociationsCommand.ts @@ -91,6 +91,7 @@ export interface ListResourceEndpointAssociationsCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListResourceEndpointAssociationsCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListResourceGatewaysCommand.ts b/clients/client-vpc-lattice/src/commands/ListResourceGatewaysCommand.ts index 433f117b972c1..9ad265e79366f 100644 --- a/clients/client-vpc-lattice/src/commands/ListResourceGatewaysCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListResourceGatewaysCommand.ts @@ -87,6 +87,7 @@ export interface ListResourceGatewaysCommandOutput extends ListResourceGatewaysR * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListResourceGatewaysCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListRulesCommand.ts b/clients/client-vpc-lattice/src/commands/ListRulesCommand.ts index 749c3e0c6445e..020e61e75f25d 100644 --- a/clients/client-vpc-lattice/src/commands/ListRulesCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListRulesCommand.ts @@ -85,6 +85,7 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListRulesCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListServiceNetworkResourceAssociationsCommand.ts b/clients/client-vpc-lattice/src/commands/ListServiceNetworkResourceAssociationsCommand.ts index 32a30f1d4674d..f97c6c825c0a7 100644 --- a/clients/client-vpc-lattice/src/commands/ListServiceNetworkResourceAssociationsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListServiceNetworkResourceAssociationsCommand.ts @@ -105,6 +105,7 @@ export interface ListServiceNetworkResourceAssociationsCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListServiceNetworkResourceAssociationsCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListServiceNetworkServiceAssociationsCommand.ts b/clients/client-vpc-lattice/src/commands/ListServiceNetworkServiceAssociationsCommand.ts index 4ba2358c893f2..e087cab85f8d4 100644 --- a/clients/client-vpc-lattice/src/commands/ListServiceNetworkServiceAssociationsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListServiceNetworkServiceAssociationsCommand.ts @@ -106,6 +106,7 @@ export interface ListServiceNetworkServiceAssociationsCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListServiceNetworkServiceAssociationsCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcAssociationsCommand.ts b/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcAssociationsCommand.ts index 312af0bd5ff6a..f23e4672ca5ce 100644 --- a/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcAssociationsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcAssociationsCommand.ts @@ -94,6 +94,7 @@ export interface ListServiceNetworkVpcAssociationsCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListServiceNetworkVpcAssociationsCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcEndpointAssociationsCommand.ts b/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcEndpointAssociationsCommand.ts index 99d899e46723c..679749aa3d18b 100644 --- a/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcEndpointAssociationsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcEndpointAssociationsCommand.ts @@ -90,6 +90,7 @@ export interface ListServiceNetworkVpcEndpointAssociationsCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListServiceNetworkVpcEndpointAssociationsCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListServiceNetworksCommand.ts b/clients/client-vpc-lattice/src/commands/ListServiceNetworksCommand.ts index b53b4bd59288d..46457c5ef2108 100644 --- a/clients/client-vpc-lattice/src/commands/ListServiceNetworksCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListServiceNetworksCommand.ts @@ -82,6 +82,7 @@ export interface ListServiceNetworksCommandOutput extends ListServiceNetworksRes * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListServiceNetworksCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListServicesCommand.ts b/clients/client-vpc-lattice/src/commands/ListServicesCommand.ts index bb75950f193d7..951e0e97ecefe 100644 --- a/clients/client-vpc-lattice/src/commands/ListServicesCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListServicesCommand.ts @@ -84,6 +84,7 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListServicesCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListTagsForResourceCommand.ts b/clients/client-vpc-lattice/src/commands/ListTagsForResourceCommand.ts index e84abb11e4b6e..140b3e2830d1e 100644 --- a/clients/client-vpc-lattice/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListTagsForResourceCommand.ts @@ -70,6 +70,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListTargetGroupsCommand.ts b/clients/client-vpc-lattice/src/commands/ListTargetGroupsCommand.ts index 04a0986a93478..5bbbdbc070c89 100644 --- a/clients/client-vpc-lattice/src/commands/ListTargetGroupsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListTargetGroupsCommand.ts @@ -91,6 +91,7 @@ export interface ListTargetGroupsCommandOutput extends ListTargetGroupsResponse, * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListTargetGroupsCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/ListTargetsCommand.ts b/clients/client-vpc-lattice/src/commands/ListTargetsCommand.ts index 770a2aaf6a419..728aeefcf108e 100644 --- a/clients/client-vpc-lattice/src/commands/ListTargetsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListTargetsCommand.ts @@ -88,6 +88,7 @@ export interface ListTargetsCommandOutput extends ListTargetsResponse, __Metadat * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class ListTargetsCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/PutAuthPolicyCommand.ts b/clients/client-vpc-lattice/src/commands/PutAuthPolicyCommand.ts index e912e279670e8..58d0ae0b9a032 100644 --- a/clients/client-vpc-lattice/src/commands/PutAuthPolicyCommand.ts +++ b/clients/client-vpc-lattice/src/commands/PutAuthPolicyCommand.ts @@ -76,6 +76,7 @@ export interface PutAuthPolicyCommandOutput extends PutAuthPolicyResponse, __Met * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class PutAuthPolicyCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/PutResourcePolicyCommand.ts b/clients/client-vpc-lattice/src/commands/PutResourcePolicyCommand.ts index 0dd85ea0281fc..8c6375a03e6d1 100644 --- a/clients/client-vpc-lattice/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-vpc-lattice/src/commands/PutResourcePolicyCommand.ts @@ -72,6 +72,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/RegisterTargetsCommand.ts b/clients/client-vpc-lattice/src/commands/RegisterTargetsCommand.ts index bbcd528c7bd51..4714f99e6338a 100644 --- a/clients/client-vpc-lattice/src/commands/RegisterTargetsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/RegisterTargetsCommand.ts @@ -98,6 +98,7 @@ export interface RegisterTargetsCommandOutput extends RegisterTargetsResponse, _ * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class RegisterTargetsCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/TagResourceCommand.ts b/clients/client-vpc-lattice/src/commands/TagResourceCommand.ts index ad9a8645c368b..7104b4a42ebfc 100644 --- a/clients/client-vpc-lattice/src/commands/TagResourceCommand.ts +++ b/clients/client-vpc-lattice/src/commands/TagResourceCommand.ts @@ -72,6 +72,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/UntagResourceCommand.ts b/clients/client-vpc-lattice/src/commands/UntagResourceCommand.ts index 55d7a5cdd6e6e..c51df4a596a79 100644 --- a/clients/client-vpc-lattice/src/commands/UntagResourceCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UntagResourceCommand.ts @@ -69,6 +69,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/UpdateAccessLogSubscriptionCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateAccessLogSubscriptionCommand.ts index 9efef0b8594b3..61c121ba21c07 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateAccessLogSubscriptionCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateAccessLogSubscriptionCommand.ts @@ -85,6 +85,7 @@ export interface UpdateAccessLogSubscriptionCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class UpdateAccessLogSubscriptionCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/UpdateListenerCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateListenerCommand.ts index 8714a8336db12..b747b438421cf 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateListenerCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateListenerCommand.ts @@ -111,6 +111,7 @@ export interface UpdateListenerCommandOutput extends UpdateListenerResponse, __M * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class UpdateListenerCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/UpdateResourceConfigurationCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateResourceConfigurationCommand.ts index 47ac9bf1bf57f..6546961e1f603 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateResourceConfigurationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateResourceConfigurationCommand.ts @@ -118,6 +118,7 @@ export interface UpdateResourceConfigurationCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class UpdateResourceConfigurationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/UpdateResourceGatewayCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateResourceGatewayCommand.ts index 10c5eee2951c8..5ba78f98a48f5 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateResourceGatewayCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateResourceGatewayCommand.ts @@ -85,6 +85,7 @@ export interface UpdateResourceGatewayCommandOutput extends UpdateResourceGatewa * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class UpdateResourceGatewayCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/UpdateRuleCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateRuleCommand.ts index cec60fb274881..2ca2964d7d6db 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateRuleCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateRuleCommand.ts @@ -158,6 +158,7 @@ export interface UpdateRuleCommandOutput extends UpdateRuleResponse, __MetadataB * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class UpdateRuleCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/UpdateServiceCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateServiceCommand.ts index 1e03c60e1bd75..7a2d29001d702 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateServiceCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateServiceCommand.ts @@ -85,6 +85,7 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class UpdateServiceCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkCommand.ts index 741aa4d757fe6..fa26c7da3d789 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkCommand.ts @@ -79,6 +79,7 @@ export interface UpdateServiceNetworkCommandOutput extends UpdateServiceNetworkR * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class UpdateServiceNetworkCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkVpcAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkVpcAssociationCommand.ts index b30a3dac22e92..03322e35b9a23 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkVpcAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkVpcAssociationCommand.ts @@ -95,6 +95,7 @@ export interface UpdateServiceNetworkVpcAssociationCommandOutput * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class UpdateServiceNetworkVpcAssociationCommand extends $Command diff --git a/clients/client-vpc-lattice/src/commands/UpdateTargetGroupCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateTargetGroupCommand.ts index 09fc1b9aeb0e4..8d153cd59929a 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateTargetGroupCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateTargetGroupCommand.ts @@ -118,6 +118,7 @@ export interface UpdateTargetGroupCommandOutput extends UpdateTargetGroupRespons * @throws {@link VPCLatticeServiceException} *

Base exception class for all service exceptions from VPCLattice service.

* + * * @public */ export class UpdateTargetGroupCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/AssociateWebACLCommand.ts b/clients/client-waf-regional/src/commands/AssociateWebACLCommand.ts index cfda66d246c56..b6441d0a7a8ee 100644 --- a/clients/client-waf-regional/src/commands/AssociateWebACLCommand.ts +++ b/clients/client-waf-regional/src/commands/AssociateWebACLCommand.ts @@ -115,6 +115,7 @@ export interface AssociateWebACLCommandOutput extends AssociateWebACLResponse, _ * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class AssociateWebACLCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/CreateByteMatchSetCommand.ts b/clients/client-waf-regional/src/commands/CreateByteMatchSetCommand.ts index 9ca8b50ae7664..5153b9c5eeb1a 100644 --- a/clients/client-waf-regional/src/commands/CreateByteMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateByteMatchSetCommand.ts @@ -159,6 +159,7 @@ export interface CreateByteMatchSetCommandOutput extends CreateByteMatchSetRespo * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class CreateByteMatchSetCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/CreateGeoMatchSetCommand.ts b/clients/client-waf-regional/src/commands/CreateGeoMatchSetCommand.ts index cf693c2c73068..b6417724bbf7b 100644 --- a/clients/client-waf-regional/src/commands/CreateGeoMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateGeoMatchSetCommand.ts @@ -151,6 +151,7 @@ export interface CreateGeoMatchSetCommandOutput extends CreateGeoMatchSetRespons * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class CreateGeoMatchSetCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/CreateIPSetCommand.ts b/clients/client-waf-regional/src/commands/CreateIPSetCommand.ts index b5020cc3182bd..29563ffdf3910 100644 --- a/clients/client-waf-regional/src/commands/CreateIPSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateIPSetCommand.ts @@ -156,34 +156,34 @@ export interface CreateIPSetCommandOutput extends CreateIPSetResponse, __Metadat * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To create an IP set * ```javascript * // The following example creates an IP match set named MyIPSetFriendlyName. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Name": "MyIPSetFriendlyName" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Name: "MyIPSetFriendlyName" * }; * const command = new CreateIPSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "IPSet": { - * "IPSetDescriptors": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * IPSet: { + * IPSetDescriptors: [ * { - * "Type": "IPV4", - * "Value": "192.0.2.44/32" + * Type: "IPV4", + * Value: "192.0.2.44/32" * } * ], - * "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "Name": "MyIPSetFriendlyName" + * IPSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * Name: "MyIPSetFriendlyName" * } * } * *\/ - * // example id: createipset-1472501003122 * ``` * + * @public */ export class CreateIPSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/CreateRateBasedRuleCommand.ts b/clients/client-waf-regional/src/commands/CreateRateBasedRuleCommand.ts index e97046abc3116..3962603ec4e82 100644 --- a/clients/client-waf-regional/src/commands/CreateRateBasedRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateRateBasedRuleCommand.ts @@ -235,6 +235,7 @@ export interface CreateRateBasedRuleCommandOutput extends CreateRateBasedRuleRes * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class CreateRateBasedRuleCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/CreateRegexMatchSetCommand.ts b/clients/client-waf-regional/src/commands/CreateRegexMatchSetCommand.ts index d47471cfc8aab..98f44e46e8291 100644 --- a/clients/client-waf-regional/src/commands/CreateRegexMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateRegexMatchSetCommand.ts @@ -115,6 +115,7 @@ export interface CreateRegexMatchSetCommandOutput extends CreateRegexMatchSetRes * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class CreateRegexMatchSetCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/CreateRegexPatternSetCommand.ts b/clients/client-waf-regional/src/commands/CreateRegexPatternSetCommand.ts index b3a55218869cc..70afcaccdd034 100644 --- a/clients/client-waf-regional/src/commands/CreateRegexPatternSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateRegexPatternSetCommand.ts @@ -104,6 +104,7 @@ export interface CreateRegexPatternSetCommandOutput extends CreateRegexPatternSe * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class CreateRegexPatternSetCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/CreateRuleCommand.ts b/clients/client-waf-regional/src/commands/CreateRuleCommand.ts index df693982bbfde..d4bc3802d6ea5 100644 --- a/clients/client-waf-regional/src/commands/CreateRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateRuleCommand.ts @@ -189,37 +189,37 @@ export interface CreateRuleCommandOutput extends CreateRuleResponse, __MetadataB * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To create a rule * ```javascript * // The following example creates a rule named WAFByteHeaderRule. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "MetricName": "WAFByteHeaderRule", - * "Name": "WAFByteHeaderRule" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * MetricName: "WAFByteHeaderRule", + * Name: "WAFByteHeaderRule" * }; * const command = new CreateRuleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Rule": { - * "MetricName": "WAFByteHeaderRule", - * "Name": "WAFByteHeaderRule", - * "Predicates": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Rule: { + * MetricName: "WAFByteHeaderRule", + * Name: "WAFByteHeaderRule", + * Predicates: [ * { - * "DataId": "MyByteMatchSetID", - * "Negated": false, - * "Type": "ByteMatch" + * DataId: "MyByteMatchSetID", + * Negated: false, + * Type: "ByteMatch" * } * ], - * "RuleId": "WAFRule-1-Example" + * RuleId: "WAFRule-1-Example" * } * } * *\/ - * // example id: createrule-1474072675555 * ``` * + * @public */ export class CreateRuleCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/CreateRuleGroupCommand.ts b/clients/client-waf-regional/src/commands/CreateRuleGroupCommand.ts index 8a18b869757fc..7ef99bb5a462c 100644 --- a/clients/client-waf-regional/src/commands/CreateRuleGroupCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateRuleGroupCommand.ts @@ -113,6 +113,7 @@ export interface CreateRuleGroupCommandOutput extends CreateRuleGroupResponse, _ * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class CreateRuleGroupCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/CreateSizeConstraintSetCommand.ts b/clients/client-waf-regional/src/commands/CreateSizeConstraintSetCommand.ts index 987e64f1ab2ff..b71e5e631b6f0 100644 --- a/clients/client-waf-regional/src/commands/CreateSizeConstraintSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateSizeConstraintSetCommand.ts @@ -159,38 +159,38 @@ export interface CreateSizeConstraintSetCommandOutput extends CreateSizeConstrai * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To create a size constraint * ```javascript * // The following example creates size constraint set named MySampleSizeConstraintSet. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Name": "MySampleSizeConstraintSet" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Name: "MySampleSizeConstraintSet" * }; * const command = new CreateSizeConstraintSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "SizeConstraintSet": { - * "Name": "MySampleSizeConstraintSet", - * "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "SizeConstraints": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * SizeConstraintSet: { + * Name: "MySampleSizeConstraintSet", + * SizeConstraintSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * SizeConstraints: [ * { - * "ComparisonOperator": "GT", - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * ComparisonOperator: "GT", + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "Size": 0, - * "TextTransformation": "NONE" + * Size: 0, + * TextTransformation: "NONE" * } * ] * } * } * *\/ - * // example id: createsizeconstraint-1474299140754 * ``` * + * @public */ export class CreateSizeConstraintSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/CreateSqlInjectionMatchSetCommand.ts b/clients/client-waf-regional/src/commands/CreateSqlInjectionMatchSetCommand.ts index 675fb15d25fc4..debd604458543 100644 --- a/clients/client-waf-regional/src/commands/CreateSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateSqlInjectionMatchSetCommand.ts @@ -155,36 +155,36 @@ export interface CreateSqlInjectionMatchSetCommandOutput extends CreateSqlInject * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To create a SQL injection match set * ```javascript * // The following example creates a SQL injection match set named MySQLInjectionMatchSet. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Name": "MySQLInjectionMatchSet" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Name: "MySQLInjectionMatchSet" * }; * const command = new CreateSqlInjectionMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "SqlInjectionMatchSet": { - * "Name": "MySQLInjectionMatchSet", - * "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "SqlInjectionMatchTuples": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * SqlInjectionMatchSet: { + * Name: "MySQLInjectionMatchSet", + * SqlInjectionMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * SqlInjectionMatchTuples: [ * { - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "TextTransformation": "URL_DECODE" + * TextTransformation: "URL_DECODE" * } * ] * } * } * *\/ - * // example id: createsqlinjectionmatchset-1474492796105 * ``` * + * @public */ export class CreateSqlInjectionMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/CreateWebACLCommand.ts b/clients/client-waf-regional/src/commands/CreateWebACLCommand.ts index 7cc4fa23b96f6..68d1b71525f31 100644 --- a/clients/client-waf-regional/src/commands/CreateWebACLCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateWebACLCommand.ts @@ -198,45 +198,45 @@ export interface CreateWebACLCommandOutput extends CreateWebACLResponse, __Metad * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To create a web ACL * ```javascript * // The following example creates a web ACL named CreateExample. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "DefaultAction": { - * "Type": "ALLOW" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * DefaultAction: { + * Type: "ALLOW" * }, - * "MetricName": "CreateExample", - * "Name": "CreateExample" + * MetricName: "CreateExample", + * Name: "CreateExample" * }; * const command = new CreateWebACLCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "WebACL": { - * "DefaultAction": { - * "Type": "ALLOW" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * WebACL: { + * DefaultAction: { + * Type: "ALLOW" * }, - * "MetricName": "CreateExample", - * "Name": "CreateExample", - * "Rules": [ + * MetricName: "CreateExample", + * Name: "CreateExample", + * Rules: [ * { - * "Action": { - * "Type": "ALLOW" + * Action: { + * Type: "ALLOW" * }, - * "Priority": 1, - * "RuleId": "WAFRule-1-Example" + * Priority: 1, + * RuleId: "WAFRule-1-Example" * } * ], - * "WebACLId": "example-46da-4444-5555-example" + * WebACLId: "example-46da-4444-5555-example" * } * } * *\/ - * // example id: createwebacl-1472061481310 * ``` * + * @public */ export class CreateWebACLCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/CreateWebACLMigrationStackCommand.ts b/clients/client-waf-regional/src/commands/CreateWebACLMigrationStackCommand.ts index 3c7868284d513..15495c04ea4e5 100644 --- a/clients/client-waf-regional/src/commands/CreateWebACLMigrationStackCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateWebACLMigrationStackCommand.ts @@ -166,6 +166,7 @@ export interface CreateWebACLMigrationStackCommandOutput extends CreateWebACLMig * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class CreateWebACLMigrationStackCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/CreateXssMatchSetCommand.ts b/clients/client-waf-regional/src/commands/CreateXssMatchSetCommand.ts index 5fc87d933b042..a57b33e0c0889 100644 --- a/clients/client-waf-regional/src/commands/CreateXssMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateXssMatchSetCommand.ts @@ -155,36 +155,36 @@ export interface CreateXssMatchSetCommandOutput extends CreateXssMatchSetRespons * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To create an XSS match set * ```javascript * // The following example creates an XSS match set named MySampleXssMatchSet. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Name": "MySampleXssMatchSet" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Name: "MySampleXssMatchSet" * }; * const command = new CreateXssMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "XssMatchSet": { - * "Name": "MySampleXssMatchSet", - * "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "XssMatchTuples": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * XssMatchSet: { + * Name: "MySampleXssMatchSet", + * XssMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * XssMatchTuples: [ * { - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "TextTransformation": "URL_DECODE" + * TextTransformation: "URL_DECODE" * } * ] * } * } * *\/ - * // example id: createxssmatchset-1474560868500 * ``` * + * @public */ export class CreateXssMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/DeleteByteMatchSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteByteMatchSetCommand.ts index aa0d02db75182..83305f682cd3b 100644 --- a/clients/client-waf-regional/src/commands/DeleteByteMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteByteMatchSetCommand.ts @@ -120,24 +120,24 @@ export interface DeleteByteMatchSetCommandOutput extends DeleteByteMatchSetRespo * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To delete a byte match set * ```javascript * // The following example deletes a byte match set with the ID exampleIDs3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ByteMatchSetId": "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5", - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ByteMatchSetId: "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5", + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * }; * const command = new DeleteByteMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: deletebytematchset-1473367566229 * ``` * + * @public */ export class DeleteByteMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/DeleteGeoMatchSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteGeoMatchSetCommand.ts index 2f2589b8f95fe..80eb4284a73df 100644 --- a/clients/client-waf-regional/src/commands/DeleteGeoMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteGeoMatchSetCommand.ts @@ -120,6 +120,7 @@ export interface DeleteGeoMatchSetCommandOutput extends DeleteGeoMatchSetRespons * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class DeleteGeoMatchSetCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/DeleteIPSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteIPSetCommand.ts index f5287dc62bdbf..b9346778beb6a 100644 --- a/clients/client-waf-regional/src/commands/DeleteIPSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteIPSetCommand.ts @@ -120,24 +120,24 @@ export interface DeleteIPSetCommandOutput extends DeleteIPSetResponse, __Metadat * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To delete an IP set * ```javascript * // The following example deletes an IP match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * IPSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new DeleteIPSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: deleteipset-1472767434306 * ``` * + * @public */ export class DeleteIPSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/DeleteLoggingConfigurationCommand.ts b/clients/client-waf-regional/src/commands/DeleteLoggingConfigurationCommand.ts index 333e907ed2b2a..ce0a91afa1ccf 100644 --- a/clients/client-waf-regional/src/commands/DeleteLoggingConfigurationCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteLoggingConfigurationCommand.ts @@ -71,6 +71,7 @@ export interface DeleteLoggingConfigurationCommandOutput extends DeleteLoggingCo * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class DeleteLoggingConfigurationCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/DeletePermissionPolicyCommand.ts b/clients/client-waf-regional/src/commands/DeletePermissionPolicyCommand.ts index 1f51f63d3a198..a300cc1f13b48 100644 --- a/clients/client-waf-regional/src/commands/DeletePermissionPolicyCommand.ts +++ b/clients/client-waf-regional/src/commands/DeletePermissionPolicyCommand.ts @@ -71,6 +71,7 @@ export interface DeletePermissionPolicyCommandOutput extends DeletePermissionPol * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class DeletePermissionPolicyCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/DeleteRateBasedRuleCommand.ts b/clients/client-waf-regional/src/commands/DeleteRateBasedRuleCommand.ts index aa4d0fa3abeb4..cb4c017b7ca96 100644 --- a/clients/client-waf-regional/src/commands/DeleteRateBasedRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteRateBasedRuleCommand.ts @@ -130,6 +130,7 @@ export interface DeleteRateBasedRuleCommandOutput extends DeleteRateBasedRuleRes * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class DeleteRateBasedRuleCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/DeleteRegexMatchSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteRegexMatchSetCommand.ts index d9899f8669b1d..a11c84d493d2e 100644 --- a/clients/client-waf-regional/src/commands/DeleteRegexMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteRegexMatchSetCommand.ts @@ -120,6 +120,7 @@ export interface DeleteRegexMatchSetCommandOutput extends DeleteRegexMatchSetRes * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class DeleteRegexMatchSetCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/DeleteRegexPatternSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteRegexPatternSetCommand.ts index abeec3eaa8c13..5f87a784dc634 100644 --- a/clients/client-waf-regional/src/commands/DeleteRegexPatternSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteRegexPatternSetCommand.ts @@ -106,6 +106,7 @@ export interface DeleteRegexPatternSetCommandOutput extends DeleteRegexPatternSe * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class DeleteRegexPatternSetCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/DeleteRuleCommand.ts b/clients/client-waf-regional/src/commands/DeleteRuleCommand.ts index 6c9171be1e0c5..a3b898c1c426c 100644 --- a/clients/client-waf-regional/src/commands/DeleteRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteRuleCommand.ts @@ -126,24 +126,24 @@ export interface DeleteRuleCommandOutput extends DeleteRuleResponse, __MetadataB * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To delete a rule * ```javascript * // The following example deletes a rule with the ID WAFRule-1-Example. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "RuleId": "WAFRule-1-Example" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * RuleId: "WAFRule-1-Example" * }; * const command = new DeleteRuleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: deleterule-1474073108749 * ``` * + * @public */ export class DeleteRuleCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/DeleteRuleGroupCommand.ts b/clients/client-waf-regional/src/commands/DeleteRuleGroupCommand.ts index aec944827989b..98a1f4f72f4c5 100644 --- a/clients/client-waf-regional/src/commands/DeleteRuleGroupCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteRuleGroupCommand.ts @@ -146,6 +146,7 @@ export interface DeleteRuleGroupCommandOutput extends DeleteRuleGroupResponse, _ * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class DeleteRuleGroupCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/DeleteSizeConstraintSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteSizeConstraintSetCommand.ts index 738e5ee296492..7fec93aba438a 100644 --- a/clients/client-waf-regional/src/commands/DeleteSizeConstraintSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteSizeConstraintSetCommand.ts @@ -120,24 +120,24 @@ export interface DeleteSizeConstraintSetCommandOutput extends DeleteSizeConstrai * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To delete a size constraint set * ```javascript * // The following example deletes a size constraint set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * SizeConstraintSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new DeleteSizeConstraintSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: deletesizeconstraintset-1474299857905 * ``` * + * @public */ export class DeleteSizeConstraintSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/DeleteSqlInjectionMatchSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteSqlInjectionMatchSetCommand.ts index 0d77e9c95ded3..13d27dd1513f8 100644 --- a/clients/client-waf-regional/src/commands/DeleteSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteSqlInjectionMatchSetCommand.ts @@ -121,24 +121,24 @@ export interface DeleteSqlInjectionMatchSetCommandOutput extends DeleteSqlInject * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To delete a SQL injection match set * ```javascript * // The following example deletes a SQL injection match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * SqlInjectionMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new DeleteSqlInjectionMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: deletesqlinjectionmatchset-1474493373197 * ``` * + * @public */ export class DeleteSqlInjectionMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/DeleteWebACLCommand.ts b/clients/client-waf-regional/src/commands/DeleteWebACLCommand.ts index e0cd0fe7d3967..f220571b2e648 100644 --- a/clients/client-waf-regional/src/commands/DeleteWebACLCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteWebACLCommand.ts @@ -124,24 +124,24 @@ export interface DeleteWebACLCommandOutput extends DeleteWebACLResponse, __Metad * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To delete a web ACL * ```javascript * // The following example deletes a web ACL with the ID example-46da-4444-5555-example. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "WebACLId": "example-46da-4444-5555-example" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * WebACLId: "example-46da-4444-5555-example" * }; * const command = new DeleteWebACLCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: deletewebacl-1472767755931 * ``` * + * @public */ export class DeleteWebACLCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/DeleteXssMatchSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteXssMatchSetCommand.ts index 8f9a394907888..e72d15ee59b48 100644 --- a/clients/client-waf-regional/src/commands/DeleteXssMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteXssMatchSetCommand.ts @@ -121,24 +121,24 @@ export interface DeleteXssMatchSetCommandOutput extends DeleteXssMatchSetRespons * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To delete an XSS match set * ```javascript * // The following example deletes an XSS match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * XssMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new DeleteXssMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: deletexssmatchset-1474561302618 * ``` * + * @public */ export class DeleteXssMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/DisassociateWebACLCommand.ts b/clients/client-waf-regional/src/commands/DisassociateWebACLCommand.ts index ec189b73ca378..16c2091ac286b 100644 --- a/clients/client-waf-regional/src/commands/DisassociateWebACLCommand.ts +++ b/clients/client-waf-regional/src/commands/DisassociateWebACLCommand.ts @@ -110,6 +110,7 @@ export interface DisassociateWebACLCommandOutput extends DisassociateWebACLRespo * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class DisassociateWebACLCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/GetByteMatchSetCommand.ts b/clients/client-waf-regional/src/commands/GetByteMatchSetCommand.ts index 4acec0ac92da5..5f1bb869e1690 100644 --- a/clients/client-waf-regional/src/commands/GetByteMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetByteMatchSetCommand.ts @@ -86,37 +86,37 @@ export interface GetByteMatchSetCommandOutput extends GetByteMatchSetResponse, _ * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To get a byte match set * ```javascript * // The following example returns the details of a byte match set with the ID exampleIDs3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ByteMatchSetId": "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5" + * ByteMatchSetId: "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new GetByteMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ByteMatchSet": { - * "ByteMatchSetId": "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5", - * "ByteMatchTuples": [ + * ByteMatchSet: { + * ByteMatchSetId: "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5", + * ByteMatchTuples: [ * { - * "FieldToMatch": { - * "Data": "referer", - * "Type": "HEADER" + * FieldToMatch: { + * Data: "referer", + * Type: "HEADER" * }, - * "PositionalConstraint": "CONTAINS", - * "TargetString": "badrefer1", - * "TextTransformation": "NONE" + * PositionalConstraint: "CONTAINS", + * TargetString: "badrefer1", + * TextTransformation: "NONE" * } * ], - * "Name": "ByteMatchNameExample" + * Name: "ByteMatchNameExample" * } * } * *\/ - * // example id: getbytematchset-1473273311532 * ``` * + * @public */ export class GetByteMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/GetChangeTokenCommand.ts b/clients/client-waf-regional/src/commands/GetChangeTokenCommand.ts index f9d5a9957fb82..5dbdb07278194 100644 --- a/clients/client-waf-regional/src/commands/GetChangeTokenCommand.ts +++ b/clients/client-waf-regional/src/commands/GetChangeTokenCommand.ts @@ -70,21 +70,21 @@ export interface GetChangeTokenCommandOutput extends GetChangeTokenResponse, __M * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To get a change token * ```javascript * // The following example returns a change token to use for a create, update or delete operation. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new GetChangeTokenCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: get-change-token-example-1471635120794 * ``` * + * @public */ export class GetChangeTokenCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/GetChangeTokenStatusCommand.ts b/clients/client-waf-regional/src/commands/GetChangeTokenStatusCommand.ts index 072bf806fe884..6ec4c461fb2fd 100644 --- a/clients/client-waf-regional/src/commands/GetChangeTokenStatusCommand.ts +++ b/clients/client-waf-regional/src/commands/GetChangeTokenStatusCommand.ts @@ -85,23 +85,23 @@ export interface GetChangeTokenStatusCommandOutput extends GetChangeTokenStatusR * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To get the change token status * ```javascript * // The following example returns the status of a change token with the ID abcd12f2-46da-4fdb-b8d5-fbd4c466928f. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * }; * const command = new GetChangeTokenStatusCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeTokenStatus": "PENDING" + * ChangeTokenStatus: "PENDING" * } * *\/ - * // example id: getchangetokenstatus-1474658417107 * ``` * + * @public */ export class GetChangeTokenStatusCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/GetGeoMatchSetCommand.ts b/clients/client-waf-regional/src/commands/GetGeoMatchSetCommand.ts index 84019f100cce5..a5b4b89ecf844 100644 --- a/clients/client-waf-regional/src/commands/GetGeoMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetGeoMatchSetCommand.ts @@ -81,6 +81,7 @@ export interface GetGeoMatchSetCommandOutput extends GetGeoMatchSetResponse, __M * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class GetGeoMatchSetCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/GetIPSetCommand.ts b/clients/client-waf-regional/src/commands/GetIPSetCommand.ts index 177ca8fafaf27..1892787fbd4f3 100644 --- a/clients/client-waf-regional/src/commands/GetIPSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetIPSetCommand.ts @@ -81,32 +81,32 @@ export interface GetIPSetCommandOutput extends GetIPSetResponse, __MetadataBeare * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To get an IP set * ```javascript * // The following example returns the details of an IP match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * IPSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new GetIPSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "IPSet": { - * "IPSetDescriptors": [ + * IPSet: { + * IPSetDescriptors: [ * { - * "Type": "IPV4", - * "Value": "192.0.2.44/32" + * Type: "IPV4", + * Value: "192.0.2.44/32" * } * ], - * "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "Name": "MyIPSetFriendlyName" + * IPSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * Name: "MyIPSetFriendlyName" * } * } * *\/ - * // example id: getipset-1474658688675 * ``` * + * @public */ export class GetIPSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/GetLoggingConfigurationCommand.ts b/clients/client-waf-regional/src/commands/GetLoggingConfigurationCommand.ts index d9c62e0bf968c..258c1598b5b3f 100644 --- a/clients/client-waf-regional/src/commands/GetLoggingConfigurationCommand.ts +++ b/clients/client-waf-regional/src/commands/GetLoggingConfigurationCommand.ts @@ -80,6 +80,7 @@ export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigur * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class GetLoggingConfigurationCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/GetPermissionPolicyCommand.ts b/clients/client-waf-regional/src/commands/GetPermissionPolicyCommand.ts index 25866ba5baa04..376e4b77ce837 100644 --- a/clients/client-waf-regional/src/commands/GetPermissionPolicyCommand.ts +++ b/clients/client-waf-regional/src/commands/GetPermissionPolicyCommand.ts @@ -69,6 +69,7 @@ export interface GetPermissionPolicyCommandOutput extends GetPermissionPolicyRes * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class GetPermissionPolicyCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/GetRateBasedRuleCommand.ts b/clients/client-waf-regional/src/commands/GetRateBasedRuleCommand.ts index c7adc88838d75..e32ab33ce6c42 100644 --- a/clients/client-waf-regional/src/commands/GetRateBasedRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/GetRateBasedRuleCommand.ts @@ -87,6 +87,7 @@ export interface GetRateBasedRuleCommandOutput extends GetRateBasedRuleResponse, * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class GetRateBasedRuleCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/GetRateBasedRuleManagedKeysCommand.ts b/clients/client-waf-regional/src/commands/GetRateBasedRuleManagedKeysCommand.ts index 3d899cc09e9ce..6e6b2eeb94a6c 100644 --- a/clients/client-waf-regional/src/commands/GetRateBasedRuleManagedKeysCommand.ts +++ b/clients/client-waf-regional/src/commands/GetRateBasedRuleManagedKeysCommand.ts @@ -120,6 +120,7 @@ export interface GetRateBasedRuleManagedKeysCommandOutput * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class GetRateBasedRuleManagedKeysCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/GetRegexMatchSetCommand.ts b/clients/client-waf-regional/src/commands/GetRegexMatchSetCommand.ts index 841ced99183b7..a00badcb66e71 100644 --- a/clients/client-waf-regional/src/commands/GetRegexMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetRegexMatchSetCommand.ts @@ -85,6 +85,7 @@ export interface GetRegexMatchSetCommandOutput extends GetRegexMatchSetResponse, * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class GetRegexMatchSetCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/GetRegexPatternSetCommand.ts b/clients/client-waf-regional/src/commands/GetRegexPatternSetCommand.ts index d82d9fc1a737b..11c321fd51f6d 100644 --- a/clients/client-waf-regional/src/commands/GetRegexPatternSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetRegexPatternSetCommand.ts @@ -78,6 +78,7 @@ export interface GetRegexPatternSetCommandOutput extends GetRegexPatternSetRespo * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class GetRegexPatternSetCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/GetRuleCommand.ts b/clients/client-waf-regional/src/commands/GetRuleCommand.ts index a30c77c79de69..a6c8c047a6c99 100644 --- a/clients/client-waf-regional/src/commands/GetRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/GetRuleCommand.ts @@ -83,34 +83,34 @@ export interface GetRuleCommandOutput extends GetRuleResponse, __MetadataBearer * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To get a rule * ```javascript * // The following example returns the details of a rule with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "RuleId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * RuleId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new GetRuleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Rule": { - * "MetricName": "WAFByteHeaderRule", - * "Name": "WAFByteHeaderRule", - * "Predicates": [ + * Rule: { + * MetricName: "WAFByteHeaderRule", + * Name: "WAFByteHeaderRule", + * Predicates: [ * { - * "DataId": "MyByteMatchSetID", - * "Negated": false, - * "Type": "ByteMatch" + * DataId: "MyByteMatchSetID", + * Negated: false, + * Type: "ByteMatch" * } * ], - * "RuleId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * RuleId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * } * } * *\/ - * // example id: getrule-1474659238790 * ``` * + * @public */ export class GetRuleCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/GetRuleGroupCommand.ts b/clients/client-waf-regional/src/commands/GetRuleGroupCommand.ts index fe5227fb291d3..760a640a0307a 100644 --- a/clients/client-waf-regional/src/commands/GetRuleGroupCommand.ts +++ b/clients/client-waf-regional/src/commands/GetRuleGroupCommand.ts @@ -74,6 +74,7 @@ export interface GetRuleGroupCommandOutput extends GetRuleGroupResponse, __Metad * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class GetRuleGroupCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/GetSampledRequestsCommand.ts b/clients/client-waf-regional/src/commands/GetSampledRequestsCommand.ts index a1fd9a4e71aaa..f7f22109ef267 100644 --- a/clients/client-waf-regional/src/commands/GetSampledRequestsCommand.ts +++ b/clients/client-waf-regional/src/commands/GetSampledRequestsCommand.ts @@ -104,52 +104,8 @@ export interface GetSampledRequestsCommandOutput extends GetSampledRequestsRespo * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public - * @example To get a sampled requests - * ```javascript - * // The following example returns detailed information about 100 requests --a sample-- that AWS WAF randomly selects from among the first 5,000 requests that your AWS resource received between the time period 2016-09-27T15:50Z to 2016-09-27T15:50Z. - * const input = { - * "MaxItems": 100, - * "RuleId": "WAFRule-1-Example", - * "TimeWindow": { - * "EndTime": "2016-09-27T15:50Z", - * "StartTime": "2016-09-27T15:50Z" - * }, - * "WebAclId": "createwebacl-1472061481310" - * }; - * const command = new GetSampledRequestsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "PopulationSize": 50, - * "SampledRequests": [ - * { - * "Action": "BLOCK", - * "Request": { - * "ClientIP": "192.0.2.44", - * "Country": "US", - * "HTTPVersion": "HTTP/1.1", - * "Headers": [ - * { - * "Name": "User-Agent", - * "Value": "BadBot " - * } - * ], - * "Method": "HEAD" - * }, - * "Timestamp": "2016-09-27T14:55Z", - * "Weight": 1 - * } - * ], - * "TimeWindow": { - * "EndTime": "2016-09-27T15:50Z", - * "StartTime": "2016-09-27T14:50Z" - * } - * } - * *\/ - * // example id: getsampledrequests-1474927997195 - * ``` * + * @public */ export class GetSampledRequestsCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/GetSizeConstraintSetCommand.ts b/clients/client-waf-regional/src/commands/GetSizeConstraintSetCommand.ts index a145c0c4098bb..aa81d35209066 100644 --- a/clients/client-waf-regional/src/commands/GetSizeConstraintSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetSizeConstraintSetCommand.ts @@ -86,36 +86,36 @@ export interface GetSizeConstraintSetCommandOutput extends GetSizeConstraintSetR * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To get a size constraint set * ```javascript * // The following example returns the details of a size constraint match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * SizeConstraintSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new GetSizeConstraintSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SizeConstraintSet": { - * "Name": "MySampleSizeConstraintSet", - * "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "SizeConstraints": [ + * SizeConstraintSet: { + * Name: "MySampleSizeConstraintSet", + * SizeConstraintSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * SizeConstraints: [ * { - * "ComparisonOperator": "GT", - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * ComparisonOperator: "GT", + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "Size": 0, - * "TextTransformation": "NONE" + * Size: 0, + * TextTransformation: "NONE" * } * ] * } * } * *\/ - * // example id: getsizeconstraintset-1475005422493 * ``` * + * @public */ export class GetSizeConstraintSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/GetSqlInjectionMatchSetCommand.ts b/clients/client-waf-regional/src/commands/GetSqlInjectionMatchSetCommand.ts index 5abc9dd3a2d12..f0aa5f9b09473 100644 --- a/clients/client-waf-regional/src/commands/GetSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetSqlInjectionMatchSetCommand.ts @@ -84,34 +84,34 @@ export interface GetSqlInjectionMatchSetCommandOutput extends GetSqlInjectionMat * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To get a SQL injection match set * ```javascript * // The following example returns the details of a SQL injection match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * SqlInjectionMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new GetSqlInjectionMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SqlInjectionMatchSet": { - * "Name": "MySQLInjectionMatchSet", - * "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "SqlInjectionMatchTuples": [ + * SqlInjectionMatchSet: { + * Name: "MySQLInjectionMatchSet", + * SqlInjectionMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * SqlInjectionMatchTuples: [ * { - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "TextTransformation": "URL_DECODE" + * TextTransformation: "URL_DECODE" * } * ] * } * } * *\/ - * // example id: getsqlinjectionmatchset-1475005940137 * ``` * + * @public */ export class GetSqlInjectionMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/GetWebACLCommand.ts b/clients/client-waf-regional/src/commands/GetWebACLCommand.ts index 1a4a83acf70ae..1d4a98857f896 100644 --- a/clients/client-waf-regional/src/commands/GetWebACLCommand.ts +++ b/clients/client-waf-regional/src/commands/GetWebACLCommand.ts @@ -98,39 +98,39 @@ export interface GetWebACLCommandOutput extends GetWebACLResponse, __MetadataBea * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To get a web ACL * ```javascript * // The following example returns the details of a web ACL with the ID createwebacl-1472061481310. * const input = { - * "WebACLId": "createwebacl-1472061481310" + * WebACLId: "createwebacl-1472061481310" * }; * const command = new GetWebACLCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "WebACL": { - * "DefaultAction": { - * "Type": "ALLOW" + * WebACL: { + * DefaultAction: { + * Type: "ALLOW" * }, - * "MetricName": "CreateExample", - * "Name": "CreateExample", - * "Rules": [ + * MetricName: "CreateExample", + * Name: "CreateExample", + * Rules: [ * { - * "Action": { - * "Type": "ALLOW" + * Action: { + * Type: "ALLOW" * }, - * "Priority": 1, - * "RuleId": "WAFRule-1-Example" + * Priority: 1, + * RuleId: "WAFRule-1-Example" * } * ], - * "WebACLId": "createwebacl-1472061481310" + * WebACLId: "createwebacl-1472061481310" * } * } * *\/ - * // example id: getwebacl-1475006348525 * ``` * + * @public */ export class GetWebACLCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/GetWebACLForResourceCommand.ts b/clients/client-waf-regional/src/commands/GetWebACLForResourceCommand.ts index 9b5a8990a49f1..a563a1c808744 100644 --- a/clients/client-waf-regional/src/commands/GetWebACLForResourceCommand.ts +++ b/clients/client-waf-regional/src/commands/GetWebACLForResourceCommand.ts @@ -119,6 +119,7 @@ export interface GetWebACLForResourceCommandOutput extends GetWebACLForResourceR * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class GetWebACLForResourceCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/GetXssMatchSetCommand.ts b/clients/client-waf-regional/src/commands/GetXssMatchSetCommand.ts index 9b1166fbd52ed..65bc868d70441 100644 --- a/clients/client-waf-regional/src/commands/GetXssMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetXssMatchSetCommand.ts @@ -84,34 +84,34 @@ export interface GetXssMatchSetCommandOutput extends GetXssMatchSetResponse, __M * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To get an XSS match set * ```javascript * // The following example returns the details of an XSS match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * XssMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new GetXssMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "XssMatchSet": { - * "Name": "MySampleXssMatchSet", - * "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "XssMatchTuples": [ + * XssMatchSet: { + * Name: "MySampleXssMatchSet", + * XssMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * XssMatchTuples: [ * { - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "TextTransformation": "URL_DECODE" + * TextTransformation: "URL_DECODE" * } * ] * } * } * *\/ - * // example id: getxssmatchset-1475187879017 * ``` * + * @public */ export class GetXssMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/ListActivatedRulesInRuleGroupCommand.ts b/clients/client-waf-regional/src/commands/ListActivatedRulesInRuleGroupCommand.ts index 76d18373eab5d..07d11507d0fc0 100644 --- a/clients/client-waf-regional/src/commands/ListActivatedRulesInRuleGroupCommand.ts +++ b/clients/client-waf-regional/src/commands/ListActivatedRulesInRuleGroupCommand.ts @@ -134,6 +134,7 @@ export interface ListActivatedRulesInRuleGroupCommandOutput * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class ListActivatedRulesInRuleGroupCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/ListByteMatchSetsCommand.ts b/clients/client-waf-regional/src/commands/ListByteMatchSetsCommand.ts index 45360c306eba4..37c76b4f5471e 100644 --- a/clients/client-waf-regional/src/commands/ListByteMatchSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListByteMatchSetsCommand.ts @@ -76,6 +76,7 @@ export interface ListByteMatchSetsCommandOutput extends ListByteMatchSetsRespons * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class ListByteMatchSetsCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/ListGeoMatchSetsCommand.ts b/clients/client-waf-regional/src/commands/ListGeoMatchSetsCommand.ts index 303adc688e71f..16fd94344ec56 100644 --- a/clients/client-waf-regional/src/commands/ListGeoMatchSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListGeoMatchSetsCommand.ts @@ -76,6 +76,7 @@ export interface ListGeoMatchSetsCommandOutput extends ListGeoMatchSetsResponse, * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class ListGeoMatchSetsCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/ListIPSetsCommand.ts b/clients/client-waf-regional/src/commands/ListIPSetsCommand.ts index 568ed9305ae86..345c99f9edfc8 100644 --- a/clients/client-waf-regional/src/commands/ListIPSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListIPSetsCommand.ts @@ -76,28 +76,28 @@ export interface ListIPSetsCommandOutput extends ListIPSetsResponse, __MetadataB * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To list IP sets * ```javascript * // The following example returns an array of up to 100 IP match sets. * const input = { - * "Limit": 100 + * Limit: 100 * }; * const command = new ListIPSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "IPSets": [ + * IPSets: [ * { - * "IPSetId": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Name": "MyIPSetFriendlyName" + * IPSetId: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Name: "MyIPSetFriendlyName" * } * ] * } * *\/ - * // example id: listipsets-1472235676229 * ``` * + * @public */ export class ListIPSetsCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/ListLoggingConfigurationsCommand.ts b/clients/client-waf-regional/src/commands/ListLoggingConfigurationsCommand.ts index 22e9f68e81057..31056b7cdb62d 100644 --- a/clients/client-waf-regional/src/commands/ListLoggingConfigurationsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListLoggingConfigurationsCommand.ts @@ -124,6 +124,7 @@ export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfi * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class ListLoggingConfigurationsCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/ListRateBasedRulesCommand.ts b/clients/client-waf-regional/src/commands/ListRateBasedRulesCommand.ts index 5351e80d67027..0b589442cc01b 100644 --- a/clients/client-waf-regional/src/commands/ListRateBasedRulesCommand.ts +++ b/clients/client-waf-regional/src/commands/ListRateBasedRulesCommand.ts @@ -76,6 +76,7 @@ export interface ListRateBasedRulesCommandOutput extends ListRateBasedRulesRespo * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class ListRateBasedRulesCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/ListRegexMatchSetsCommand.ts b/clients/client-waf-regional/src/commands/ListRegexMatchSetsCommand.ts index 101fc2136862c..3f1e98478e7de 100644 --- a/clients/client-waf-regional/src/commands/ListRegexMatchSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListRegexMatchSetsCommand.ts @@ -76,6 +76,7 @@ export interface ListRegexMatchSetsCommandOutput extends ListRegexMatchSetsRespo * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class ListRegexMatchSetsCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/ListRegexPatternSetsCommand.ts b/clients/client-waf-regional/src/commands/ListRegexPatternSetsCommand.ts index 5542baee1eee1..e0b962a97d521 100644 --- a/clients/client-waf-regional/src/commands/ListRegexPatternSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListRegexPatternSetsCommand.ts @@ -76,6 +76,7 @@ export interface ListRegexPatternSetsCommandOutput extends ListRegexPatternSetsR * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class ListRegexPatternSetsCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/ListResourcesForWebACLCommand.ts b/clients/client-waf-regional/src/commands/ListResourcesForWebACLCommand.ts index 6df9d676452ae..b643a5e97718e 100644 --- a/clients/client-waf-regional/src/commands/ListResourcesForWebACLCommand.ts +++ b/clients/client-waf-regional/src/commands/ListResourcesForWebACLCommand.ts @@ -115,6 +115,7 @@ export interface ListResourcesForWebACLCommandOutput extends ListResourcesForWeb * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class ListResourcesForWebACLCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/ListRuleGroupsCommand.ts b/clients/client-waf-regional/src/commands/ListRuleGroupsCommand.ts index bb837a065c736..9ba73d0c93b97 100644 --- a/clients/client-waf-regional/src/commands/ListRuleGroupsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListRuleGroupsCommand.ts @@ -73,6 +73,7 @@ export interface ListRuleGroupsCommandOutput extends ListRuleGroupsResponse, __M * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class ListRuleGroupsCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/ListRulesCommand.ts b/clients/client-waf-regional/src/commands/ListRulesCommand.ts index c4191f30a24bc..9466a1cf821dd 100644 --- a/clients/client-waf-regional/src/commands/ListRulesCommand.ts +++ b/clients/client-waf-regional/src/commands/ListRulesCommand.ts @@ -76,28 +76,28 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To list rules * ```javascript * // The following example returns an array of up to 100 rules. * const input = { - * "Limit": 100 + * Limit: 100 * }; * const command = new ListRulesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Rules": [ + * Rules: [ * { - * "Name": "WAFByteHeaderRule", - * "RuleId": "WAFRule-1-Example" + * Name: "WAFByteHeaderRule", + * RuleId: "WAFRule-1-Example" * } * ] * } * *\/ - * // example id: listrules-1475258406433 * ``` * + * @public */ export class ListRulesCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/ListSizeConstraintSetsCommand.ts b/clients/client-waf-regional/src/commands/ListSizeConstraintSetsCommand.ts index af784021786d2..6d2ac5cac1b53 100644 --- a/clients/client-waf-regional/src/commands/ListSizeConstraintSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListSizeConstraintSetsCommand.ts @@ -76,28 +76,28 @@ export interface ListSizeConstraintSetsCommandOutput extends ListSizeConstraintS * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To list a size constraint sets * ```javascript * // The following example returns an array of up to 100 size contraint match sets. * const input = { - * "Limit": 100 + * Limit: 100 * }; * const command = new ListSizeConstraintSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SizeConstraintSets": [ + * SizeConstraintSets: [ * { - * "Name": "MySampleSizeConstraintSet", - * "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * Name: "MySampleSizeConstraintSet", + * SizeConstraintSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * } * ] * } * *\/ - * // example id: listsizeconstraintsets-1474300067597 * ``` * + * @public */ export class ListSizeConstraintSetsCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/ListSqlInjectionMatchSetsCommand.ts b/clients/client-waf-regional/src/commands/ListSqlInjectionMatchSetsCommand.ts index 525b830b920d5..f05f6e765f73d 100644 --- a/clients/client-waf-regional/src/commands/ListSqlInjectionMatchSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListSqlInjectionMatchSetsCommand.ts @@ -76,28 +76,28 @@ export interface ListSqlInjectionMatchSetsCommandOutput extends ListSqlInjection * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To list SQL injection match sets * ```javascript * // The following example returns an array of up to 100 SQL injection match sets. * const input = { - * "Limit": 100 + * Limit: 100 * }; * const command = new ListSqlInjectionMatchSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SqlInjectionMatchSets": [ + * SqlInjectionMatchSets: [ * { - * "Name": "MySQLInjectionMatchSet", - * "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * Name: "MySQLInjectionMatchSet", + * SqlInjectionMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * } * ] * } * *\/ - * // example id: listsqlinjectionmatchset-1474493560103 * ``` * + * @public */ export class ListSqlInjectionMatchSetsCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/ListSubscribedRuleGroupsCommand.ts b/clients/client-waf-regional/src/commands/ListSubscribedRuleGroupsCommand.ts index eec81ddb06619..7f11b1797f4dd 100644 --- a/clients/client-waf-regional/src/commands/ListSubscribedRuleGroupsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListSubscribedRuleGroupsCommand.ts @@ -77,6 +77,7 @@ export interface ListSubscribedRuleGroupsCommandOutput extends ListSubscribedRul * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class ListSubscribedRuleGroupsCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/ListTagsForResourceCommand.ts b/clients/client-waf-regional/src/commands/ListTagsForResourceCommand.ts index 6a957143e8dc3..89fd1e787ce30 100644 --- a/clients/client-waf-regional/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-waf-regional/src/commands/ListTagsForResourceCommand.ts @@ -130,6 +130,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/ListWebACLsCommand.ts b/clients/client-waf-regional/src/commands/ListWebACLsCommand.ts index c7855933ea750..b60471b90bb3f 100644 --- a/clients/client-waf-regional/src/commands/ListWebACLsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListWebACLsCommand.ts @@ -76,28 +76,28 @@ export interface ListWebACLsCommandOutput extends ListWebACLsResponse, __Metadat * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To list Web ACLs * ```javascript * // The following example returns an array of up to 100 web ACLs. * const input = { - * "Limit": 100 + * Limit: 100 * }; * const command = new ListWebACLsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "WebACLs": [ + * WebACLs: [ * { - * "Name": "WebACLexample", - * "WebACLId": "webacl-1472061481310" + * Name: "WebACLexample", + * WebACLId: "webacl-1472061481310" * } * ] * } * *\/ - * // example id: listwebacls-1475258732691 * ``` * + * @public */ export class ListWebACLsCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/ListXssMatchSetsCommand.ts b/clients/client-waf-regional/src/commands/ListXssMatchSetsCommand.ts index 2a972fbb82f36..18c4ae8f4e6e3 100644 --- a/clients/client-waf-regional/src/commands/ListXssMatchSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListXssMatchSetsCommand.ts @@ -76,28 +76,28 @@ export interface ListXssMatchSetsCommandOutput extends ListXssMatchSetsResponse, * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To list XSS match sets * ```javascript * // The following example returns an array of up to 100 XSS match sets. * const input = { - * "Limit": 100 + * Limit: 100 * }; * const command = new ListXssMatchSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "XssMatchSets": [ + * XssMatchSets: [ * { - * "Name": "MySampleXssMatchSet", - * "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * Name: "MySampleXssMatchSet", + * XssMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * } * ] * } * *\/ - * // example id: listxssmatchsets-1474561481168 * ``` * + * @public */ export class ListXssMatchSetsCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/PutLoggingConfigurationCommand.ts b/clients/client-waf-regional/src/commands/PutLoggingConfigurationCommand.ts index 535abce09d992..99b88af82741f 100644 --- a/clients/client-waf-regional/src/commands/PutLoggingConfigurationCommand.ts +++ b/clients/client-waf-regional/src/commands/PutLoggingConfigurationCommand.ts @@ -114,6 +114,7 @@ export interface PutLoggingConfigurationCommandOutput extends PutLoggingConfigur * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class PutLoggingConfigurationCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/PutPermissionPolicyCommand.ts b/clients/client-waf-regional/src/commands/PutPermissionPolicyCommand.ts index 715f47709a9d9..939da53141451 100644 --- a/clients/client-waf-regional/src/commands/PutPermissionPolicyCommand.ts +++ b/clients/client-waf-regional/src/commands/PutPermissionPolicyCommand.ts @@ -135,6 +135,7 @@ export interface PutPermissionPolicyCommandOutput extends PutPermissionPolicyRes * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class PutPermissionPolicyCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/TagResourceCommand.ts b/clients/client-waf-regional/src/commands/TagResourceCommand.ts index 2202c7f6e4299..bf7c5798f9525 100644 --- a/clients/client-waf-regional/src/commands/TagResourceCommand.ts +++ b/clients/client-waf-regional/src/commands/TagResourceCommand.ts @@ -128,6 +128,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/UntagResourceCommand.ts b/clients/client-waf-regional/src/commands/UntagResourceCommand.ts index fe6422032bc74..81a1f78c4c0d5 100644 --- a/clients/client-waf-regional/src/commands/UntagResourceCommand.ts +++ b/clients/client-waf-regional/src/commands/UntagResourceCommand.ts @@ -119,6 +119,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/UpdateByteMatchSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateByteMatchSetCommand.ts index ee3db0f9c5c71..7dc3e6c054dad 100644 --- a/clients/client-waf-regional/src/commands/UpdateByteMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateByteMatchSetCommand.ts @@ -214,38 +214,38 @@ export interface UpdateByteMatchSetCommandOutput extends UpdateByteMatchSetRespo * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To update a byte match set * ```javascript * // The following example deletes a ByteMatchTuple object (filters) in an byte match set with the ID exampleIDs3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ByteMatchSetId": "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5", - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Updates": [ + * ByteMatchSetId: "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5", + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Updates: [ * { - * "Action": "DELETE", - * "ByteMatchTuple": { - * "FieldToMatch": { - * "Data": "referer", - * "Type": "HEADER" + * Action: "DELETE", + * ByteMatchTuple: { + * FieldToMatch: { + * Data: "referer", + * Type: "HEADER" * }, - * "PositionalConstraint": "CONTAINS", - * "TargetString": "badrefer1", - * "TextTransformation": "NONE" + * PositionalConstraint: "CONTAINS", + * TargetString: "badrefer1", + * TextTransformation: "NONE" * } * } * ] * }; * const command = new UpdateByteMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: updatebytematchset-1475259074558 * ``` * + * @public */ export class UpdateByteMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/UpdateGeoMatchSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateGeoMatchSetCommand.ts index d6971bbe4824f..534934957b3de 100644 --- a/clients/client-waf-regional/src/commands/UpdateGeoMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateGeoMatchSetCommand.ts @@ -212,6 +212,7 @@ export interface UpdateGeoMatchSetCommandOutput extends UpdateGeoMatchSetRespons * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class UpdateGeoMatchSetCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/UpdateIPSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateIPSetCommand.ts index 9effaad19d6ca..f8b148b6c1578 100644 --- a/clients/client-waf-regional/src/commands/UpdateIPSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateIPSetCommand.ts @@ -247,33 +247,33 @@ export interface UpdateIPSetCommandOutput extends UpdateIPSetResponse, __Metadat * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To update an IP set * ```javascript * // The following example deletes an IPSetDescriptor object in an IP match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "Updates": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * IPSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * Updates: [ * { - * "Action": "DELETE", - * "IPSetDescriptor": { - * "Type": "IPV4", - * "Value": "192.0.2.44/32" + * Action: "DELETE", + * IPSetDescriptor: { + * Type: "IPV4", + * Value: "192.0.2.44/32" * } * } * ] * }; * const command = new UpdateIPSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: updateipset-1475259733625 * ``` * + * @public */ export class UpdateIPSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/UpdateRateBasedRuleCommand.ts b/clients/client-waf-regional/src/commands/UpdateRateBasedRuleCommand.ts index a0e2cdddce088..bfa680369a800 100644 --- a/clients/client-waf-regional/src/commands/UpdateRateBasedRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateRateBasedRuleCommand.ts @@ -230,6 +230,7 @@ export interface UpdateRateBasedRuleCommandOutput extends UpdateRateBasedRuleRes * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class UpdateRateBasedRuleCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/UpdateRegexMatchSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateRegexMatchSetCommand.ts index 3797f3a1115c6..1e93ca51a55c2 100644 --- a/clients/client-waf-regional/src/commands/UpdateRegexMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateRegexMatchSetCommand.ts @@ -172,6 +172,7 @@ export interface UpdateRegexMatchSetCommandOutput extends UpdateRegexMatchSetRes * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class UpdateRegexMatchSetCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/UpdateRegexPatternSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateRegexPatternSetCommand.ts index 8b1af652cc868..6c49b76f431e3 100644 --- a/clients/client-waf-regional/src/commands/UpdateRegexPatternSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateRegexPatternSetCommand.ts @@ -170,6 +170,7 @@ export interface UpdateRegexPatternSetCommandOutput extends UpdateRegexPatternSe * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class UpdateRegexPatternSetCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/UpdateRuleCommand.ts b/clients/client-waf-regional/src/commands/UpdateRuleCommand.ts index 66403f7e3d903..f950d29e0a11a 100644 --- a/clients/client-waf-regional/src/commands/UpdateRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateRuleCommand.ts @@ -224,34 +224,34 @@ export interface UpdateRuleCommandOutput extends UpdateRuleResponse, __MetadataB * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To update a rule * ```javascript * // The following example deletes a Predicate object in a rule with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "RuleId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "Updates": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * RuleId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * Updates: [ * { - * "Action": "DELETE", - * "Predicate": { - * "DataId": "MyByteMatchSetID", - * "Negated": false, - * "Type": "ByteMatch" + * Action: "DELETE", + * Predicate: { + * DataId: "MyByteMatchSetID", + * Negated: false, + * Type: "ByteMatch" * } * } * ] * }; * const command = new UpdateRuleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: updaterule-1475260064720 * ``` * + * @public */ export class UpdateRuleCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/UpdateRuleGroupCommand.ts b/clients/client-waf-regional/src/commands/UpdateRuleGroupCommand.ts index d36fddd4d104a..96f5287e8a307 100644 --- a/clients/client-waf-regional/src/commands/UpdateRuleGroupCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateRuleGroupCommand.ts @@ -204,6 +204,7 @@ export interface UpdateRuleGroupCommandOutput extends UpdateRuleGroupResponse, _ * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* + * * @public */ export class UpdateRuleGroupCommand extends $Command diff --git a/clients/client-waf-regional/src/commands/UpdateSizeConstraintSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateSizeConstraintSetCommand.ts index a41a4e97a96a9..631e0a8b7fb4e 100644 --- a/clients/client-waf-regional/src/commands/UpdateSizeConstraintSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateSizeConstraintSetCommand.ts @@ -229,37 +229,37 @@ export interface UpdateSizeConstraintSetCommandOutput extends UpdateSizeConstrai * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To update a size constraint set * ```javascript * // The following example deletes a SizeConstraint object (filters) in a size constraint set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "Updates": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * SizeConstraintSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * Updates: [ * { - * "Action": "DELETE", - * "SizeConstraint": { - * "ComparisonOperator": "GT", - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * Action: "DELETE", + * SizeConstraint: { + * ComparisonOperator: "GT", + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "Size": 0, - * "TextTransformation": "NONE" + * Size: 0, + * TextTransformation: "NONE" * } * } * ] * }; * const command = new UpdateSizeConstraintSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: updatesizeconstraintset-1475531697891 * ``` * + * @public */ export class UpdateSizeConstraintSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/UpdateSqlInjectionMatchSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateSqlInjectionMatchSetCommand.ts index 9fffda1307fc2..4cd69c14cf155 100644 --- a/clients/client-waf-regional/src/commands/UpdateSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateSqlInjectionMatchSetCommand.ts @@ -215,35 +215,35 @@ export interface UpdateSqlInjectionMatchSetCommandOutput extends UpdateSqlInject * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To update a SQL injection match set * ```javascript * // The following example deletes a SqlInjectionMatchTuple object (filters) in a SQL injection match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "Updates": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * SqlInjectionMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * Updates: [ * { - * "Action": "DELETE", - * "SqlInjectionMatchTuple": { - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * Action: "DELETE", + * SqlInjectionMatchTuple: { + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "TextTransformation": "URL_DECODE" + * TextTransformation: "URL_DECODE" * } * } * ] * }; * const command = new UpdateSqlInjectionMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: updatesqlinjectionmatchset-1475532094686 * ``` * + * @public */ export class UpdateSqlInjectionMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/UpdateWebACLCommand.ts b/clients/client-waf-regional/src/commands/UpdateWebACLCommand.ts index fcb988652e871..f8b2eec1ea9f1 100644 --- a/clients/client-waf-regional/src/commands/UpdateWebACLCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateWebACLCommand.ts @@ -271,39 +271,39 @@ export interface UpdateWebACLCommandOutput extends UpdateWebACLResponse, __Metad * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To update a Web ACL * ```javascript * // The following example deletes an ActivatedRule object in a WebACL with the ID webacl-1472061481310. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "DefaultAction": { - * "Type": "ALLOW" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * DefaultAction: { + * Type: "ALLOW" * }, - * "Updates": [ + * Updates: [ * { - * "Action": "DELETE", - * "ActivatedRule": { - * "Action": { - * "Type": "ALLOW" + * Action: "DELETE", + * ActivatedRule: { + * Action: { + * Type: "ALLOW" * }, - * "Priority": 1, - * "RuleId": "WAFRule-1-Example" + * Priority: 1, + * RuleId: "WAFRule-1-Example" * } * } * ], - * "WebACLId": "webacl-1472061481310" + * WebACLId: "webacl-1472061481310" * }; * const command = new UpdateWebACLCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: updatewebacl-1475533627385 * ``` * + * @public */ export class UpdateWebACLCommand extends $Command .classBuilder< diff --git a/clients/client-waf-regional/src/commands/UpdateXssMatchSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateXssMatchSetCommand.ts index f99a1ba74103c..c84ef0ef396d4 100644 --- a/clients/client-waf-regional/src/commands/UpdateXssMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateXssMatchSetCommand.ts @@ -217,35 +217,35 @@ export interface UpdateXssMatchSetCommandOutput extends UpdateXssMatchSetRespons * @throws {@link WAFRegionalServiceException} *

Base exception class for all service exceptions from WAFRegional service.

* - * @public + * * @example To update an XSS match set * ```javascript * // The following example deletes an XssMatchTuple object (filters) in an XssMatchSet with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Updates": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Updates: [ * { - * "Action": "DELETE", - * "XssMatchTuple": { - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * Action: "DELETE", + * XssMatchTuple: { + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "TextTransformation": "URL_DECODE" + * TextTransformation: "URL_DECODE" * } * } * ], - * "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * XssMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new UpdateXssMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: updatexssmatchset-1475534098881 * ``` * + * @public */ export class UpdateXssMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/CreateByteMatchSetCommand.ts b/clients/client-waf/src/commands/CreateByteMatchSetCommand.ts index faa207ea137e6..cb4382490f607 100644 --- a/clients/client-waf/src/commands/CreateByteMatchSetCommand.ts +++ b/clients/client-waf/src/commands/CreateByteMatchSetCommand.ts @@ -159,6 +159,7 @@ export interface CreateByteMatchSetCommandOutput extends CreateByteMatchSetRespo * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class CreateByteMatchSetCommand extends $Command diff --git a/clients/client-waf/src/commands/CreateGeoMatchSetCommand.ts b/clients/client-waf/src/commands/CreateGeoMatchSetCommand.ts index 983965510a214..a1f3af88f3709 100644 --- a/clients/client-waf/src/commands/CreateGeoMatchSetCommand.ts +++ b/clients/client-waf/src/commands/CreateGeoMatchSetCommand.ts @@ -151,6 +151,7 @@ export interface CreateGeoMatchSetCommandOutput extends CreateGeoMatchSetRespons * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class CreateGeoMatchSetCommand extends $Command diff --git a/clients/client-waf/src/commands/CreateIPSetCommand.ts b/clients/client-waf/src/commands/CreateIPSetCommand.ts index a75ba70af1569..f542f39b96a33 100644 --- a/clients/client-waf/src/commands/CreateIPSetCommand.ts +++ b/clients/client-waf/src/commands/CreateIPSetCommand.ts @@ -156,34 +156,34 @@ export interface CreateIPSetCommandOutput extends CreateIPSetResponse, __Metadat * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To create an IP set * ```javascript * // The following example creates an IP match set named MyIPSetFriendlyName. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Name": "MyIPSetFriendlyName" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Name: "MyIPSetFriendlyName" * }; * const command = new CreateIPSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "IPSet": { - * "IPSetDescriptors": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * IPSet: { + * IPSetDescriptors: [ * { - * "Type": "IPV4", - * "Value": "192.0.2.44/32" + * Type: "IPV4", + * Value: "192.0.2.44/32" * } * ], - * "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "Name": "MyIPSetFriendlyName" + * IPSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * Name: "MyIPSetFriendlyName" * } * } * *\/ - * // example id: createipset-1472501003122 * ``` * + * @public */ export class CreateIPSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/CreateRateBasedRuleCommand.ts b/clients/client-waf/src/commands/CreateRateBasedRuleCommand.ts index e423afd83d423..dd68781eb0a4b 100644 --- a/clients/client-waf/src/commands/CreateRateBasedRuleCommand.ts +++ b/clients/client-waf/src/commands/CreateRateBasedRuleCommand.ts @@ -235,6 +235,7 @@ export interface CreateRateBasedRuleCommandOutput extends CreateRateBasedRuleRes * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class CreateRateBasedRuleCommand extends $Command diff --git a/clients/client-waf/src/commands/CreateRegexMatchSetCommand.ts b/clients/client-waf/src/commands/CreateRegexMatchSetCommand.ts index 295bfadbb6d7c..567deb551745d 100644 --- a/clients/client-waf/src/commands/CreateRegexMatchSetCommand.ts +++ b/clients/client-waf/src/commands/CreateRegexMatchSetCommand.ts @@ -115,6 +115,7 @@ export interface CreateRegexMatchSetCommandOutput extends CreateRegexMatchSetRes * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class CreateRegexMatchSetCommand extends $Command diff --git a/clients/client-waf/src/commands/CreateRegexPatternSetCommand.ts b/clients/client-waf/src/commands/CreateRegexPatternSetCommand.ts index 4cb250d868934..04124825e9acc 100644 --- a/clients/client-waf/src/commands/CreateRegexPatternSetCommand.ts +++ b/clients/client-waf/src/commands/CreateRegexPatternSetCommand.ts @@ -104,6 +104,7 @@ export interface CreateRegexPatternSetCommandOutput extends CreateRegexPatternSe * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class CreateRegexPatternSetCommand extends $Command diff --git a/clients/client-waf/src/commands/CreateRuleCommand.ts b/clients/client-waf/src/commands/CreateRuleCommand.ts index a65ae231fe945..55130694af58a 100644 --- a/clients/client-waf/src/commands/CreateRuleCommand.ts +++ b/clients/client-waf/src/commands/CreateRuleCommand.ts @@ -189,37 +189,37 @@ export interface CreateRuleCommandOutput extends CreateRuleResponse, __MetadataB * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To create a rule * ```javascript * // The following example creates a rule named WAFByteHeaderRule. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "MetricName": "WAFByteHeaderRule", - * "Name": "WAFByteHeaderRule" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * MetricName: "WAFByteHeaderRule", + * Name: "WAFByteHeaderRule" * }; * const command = new CreateRuleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Rule": { - * "MetricName": "WAFByteHeaderRule", - * "Name": "WAFByteHeaderRule", - * "Predicates": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Rule: { + * MetricName: "WAFByteHeaderRule", + * Name: "WAFByteHeaderRule", + * Predicates: [ * { - * "DataId": "MyByteMatchSetID", - * "Negated": false, - * "Type": "ByteMatch" + * DataId: "MyByteMatchSetID", + * Negated: false, + * Type: "ByteMatch" * } * ], - * "RuleId": "WAFRule-1-Example" + * RuleId: "WAFRule-1-Example" * } * } * *\/ - * // example id: createrule-1474072675555 * ``` * + * @public */ export class CreateRuleCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/CreateRuleGroupCommand.ts b/clients/client-waf/src/commands/CreateRuleGroupCommand.ts index 83bde638183c2..dc96ff58d5766 100644 --- a/clients/client-waf/src/commands/CreateRuleGroupCommand.ts +++ b/clients/client-waf/src/commands/CreateRuleGroupCommand.ts @@ -113,6 +113,7 @@ export interface CreateRuleGroupCommandOutput extends CreateRuleGroupResponse, _ * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class CreateRuleGroupCommand extends $Command diff --git a/clients/client-waf/src/commands/CreateSizeConstraintSetCommand.ts b/clients/client-waf/src/commands/CreateSizeConstraintSetCommand.ts index 2d0a632462fb8..3c122284b25a3 100644 --- a/clients/client-waf/src/commands/CreateSizeConstraintSetCommand.ts +++ b/clients/client-waf/src/commands/CreateSizeConstraintSetCommand.ts @@ -159,38 +159,38 @@ export interface CreateSizeConstraintSetCommandOutput extends CreateSizeConstrai * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To create a size constraint * ```javascript * // The following example creates size constraint set named MySampleSizeConstraintSet. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Name": "MySampleSizeConstraintSet" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Name: "MySampleSizeConstraintSet" * }; * const command = new CreateSizeConstraintSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "SizeConstraintSet": { - * "Name": "MySampleSizeConstraintSet", - * "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "SizeConstraints": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * SizeConstraintSet: { + * Name: "MySampleSizeConstraintSet", + * SizeConstraintSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * SizeConstraints: [ * { - * "ComparisonOperator": "GT", - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * ComparisonOperator: "GT", + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "Size": 0, - * "TextTransformation": "NONE" + * Size: 0, + * TextTransformation: "NONE" * } * ] * } * } * *\/ - * // example id: createsizeconstraint-1474299140754 * ``` * + * @public */ export class CreateSizeConstraintSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/CreateSqlInjectionMatchSetCommand.ts b/clients/client-waf/src/commands/CreateSqlInjectionMatchSetCommand.ts index 975e49f1abdc3..bf1a707adf4bf 100644 --- a/clients/client-waf/src/commands/CreateSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf/src/commands/CreateSqlInjectionMatchSetCommand.ts @@ -155,36 +155,36 @@ export interface CreateSqlInjectionMatchSetCommandOutput extends CreateSqlInject * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To create a SQL injection match set * ```javascript * // The following example creates a SQL injection match set named MySQLInjectionMatchSet. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Name": "MySQLInjectionMatchSet" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Name: "MySQLInjectionMatchSet" * }; * const command = new CreateSqlInjectionMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "SqlInjectionMatchSet": { - * "Name": "MySQLInjectionMatchSet", - * "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "SqlInjectionMatchTuples": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * SqlInjectionMatchSet: { + * Name: "MySQLInjectionMatchSet", + * SqlInjectionMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * SqlInjectionMatchTuples: [ * { - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "TextTransformation": "URL_DECODE" + * TextTransformation: "URL_DECODE" * } * ] * } * } * *\/ - * // example id: createsqlinjectionmatchset-1474492796105 * ``` * + * @public */ export class CreateSqlInjectionMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/CreateWebACLCommand.ts b/clients/client-waf/src/commands/CreateWebACLCommand.ts index 121aaffa41e3f..4e73dd03a7f5e 100644 --- a/clients/client-waf/src/commands/CreateWebACLCommand.ts +++ b/clients/client-waf/src/commands/CreateWebACLCommand.ts @@ -198,45 +198,45 @@ export interface CreateWebACLCommandOutput extends CreateWebACLResponse, __Metad * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To create a web ACL * ```javascript * // The following example creates a web ACL named CreateExample. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "DefaultAction": { - * "Type": "ALLOW" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * DefaultAction: { + * Type: "ALLOW" * }, - * "MetricName": "CreateExample", - * "Name": "CreateExample" + * MetricName: "CreateExample", + * Name: "CreateExample" * }; * const command = new CreateWebACLCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "WebACL": { - * "DefaultAction": { - * "Type": "ALLOW" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * WebACL: { + * DefaultAction: { + * Type: "ALLOW" * }, - * "MetricName": "CreateExample", - * "Name": "CreateExample", - * "Rules": [ + * MetricName: "CreateExample", + * Name: "CreateExample", + * Rules: [ * { - * "Action": { - * "Type": "ALLOW" + * Action: { + * Type: "ALLOW" * }, - * "Priority": 1, - * "RuleId": "WAFRule-1-Example" + * Priority: 1, + * RuleId: "WAFRule-1-Example" * } * ], - * "WebACLId": "example-46da-4444-5555-example" + * WebACLId: "example-46da-4444-5555-example" * } * } * *\/ - * // example id: createwebacl-1472061481310 * ``` * + * @public */ export class CreateWebACLCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/CreateWebACLMigrationStackCommand.ts b/clients/client-waf/src/commands/CreateWebACLMigrationStackCommand.ts index 24e2b08fe339a..e85f45c1356eb 100644 --- a/clients/client-waf/src/commands/CreateWebACLMigrationStackCommand.ts +++ b/clients/client-waf/src/commands/CreateWebACLMigrationStackCommand.ts @@ -166,6 +166,7 @@ export interface CreateWebACLMigrationStackCommandOutput extends CreateWebACLMig * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class CreateWebACLMigrationStackCommand extends $Command diff --git a/clients/client-waf/src/commands/CreateXssMatchSetCommand.ts b/clients/client-waf/src/commands/CreateXssMatchSetCommand.ts index a1abd39b62a7b..430b5b3c222d9 100644 --- a/clients/client-waf/src/commands/CreateXssMatchSetCommand.ts +++ b/clients/client-waf/src/commands/CreateXssMatchSetCommand.ts @@ -155,36 +155,36 @@ export interface CreateXssMatchSetCommandOutput extends CreateXssMatchSetRespons * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To create an XSS match set * ```javascript * // The following example creates an XSS match set named MySampleXssMatchSet. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Name": "MySampleXssMatchSet" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Name: "MySampleXssMatchSet" * }; * const command = new CreateXssMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "XssMatchSet": { - * "Name": "MySampleXssMatchSet", - * "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "XssMatchTuples": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * XssMatchSet: { + * Name: "MySampleXssMatchSet", + * XssMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * XssMatchTuples: [ * { - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "TextTransformation": "URL_DECODE" + * TextTransformation: "URL_DECODE" * } * ] * } * } * *\/ - * // example id: createxssmatchset-1474560868500 * ``` * + * @public */ export class CreateXssMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/DeleteByteMatchSetCommand.ts b/clients/client-waf/src/commands/DeleteByteMatchSetCommand.ts index 6169660a6be93..0a2b50345a161 100644 --- a/clients/client-waf/src/commands/DeleteByteMatchSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteByteMatchSetCommand.ts @@ -120,24 +120,24 @@ export interface DeleteByteMatchSetCommandOutput extends DeleteByteMatchSetRespo * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To delete a byte match set * ```javascript * // The following example deletes a byte match set with the ID exampleIDs3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ByteMatchSetId": "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5", - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ByteMatchSetId: "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5", + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * }; * const command = new DeleteByteMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: deletebytematchset-1473367566229 * ``` * + * @public */ export class DeleteByteMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/DeleteGeoMatchSetCommand.ts b/clients/client-waf/src/commands/DeleteGeoMatchSetCommand.ts index 2fb1bba09ea79..5319df5c7a616 100644 --- a/clients/client-waf/src/commands/DeleteGeoMatchSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteGeoMatchSetCommand.ts @@ -120,6 +120,7 @@ export interface DeleteGeoMatchSetCommandOutput extends DeleteGeoMatchSetRespons * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class DeleteGeoMatchSetCommand extends $Command diff --git a/clients/client-waf/src/commands/DeleteIPSetCommand.ts b/clients/client-waf/src/commands/DeleteIPSetCommand.ts index dd424d7f2c7b5..228deb5a33ff7 100644 --- a/clients/client-waf/src/commands/DeleteIPSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteIPSetCommand.ts @@ -120,24 +120,24 @@ export interface DeleteIPSetCommandOutput extends DeleteIPSetResponse, __Metadat * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To delete an IP set * ```javascript * // The following example deletes an IP match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * IPSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new DeleteIPSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: deleteipset-1472767434306 * ``` * + * @public */ export class DeleteIPSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/DeleteLoggingConfigurationCommand.ts b/clients/client-waf/src/commands/DeleteLoggingConfigurationCommand.ts index 9cf3e45f9e85a..4b11565c86c1f 100644 --- a/clients/client-waf/src/commands/DeleteLoggingConfigurationCommand.ts +++ b/clients/client-waf/src/commands/DeleteLoggingConfigurationCommand.ts @@ -71,6 +71,7 @@ export interface DeleteLoggingConfigurationCommandOutput extends DeleteLoggingCo * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class DeleteLoggingConfigurationCommand extends $Command diff --git a/clients/client-waf/src/commands/DeletePermissionPolicyCommand.ts b/clients/client-waf/src/commands/DeletePermissionPolicyCommand.ts index 404cc2142d0b4..6ae6347407368 100644 --- a/clients/client-waf/src/commands/DeletePermissionPolicyCommand.ts +++ b/clients/client-waf/src/commands/DeletePermissionPolicyCommand.ts @@ -71,6 +71,7 @@ export interface DeletePermissionPolicyCommandOutput extends DeletePermissionPol * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class DeletePermissionPolicyCommand extends $Command diff --git a/clients/client-waf/src/commands/DeleteRateBasedRuleCommand.ts b/clients/client-waf/src/commands/DeleteRateBasedRuleCommand.ts index 536c4ae2f52ee..6308d297b8c27 100644 --- a/clients/client-waf/src/commands/DeleteRateBasedRuleCommand.ts +++ b/clients/client-waf/src/commands/DeleteRateBasedRuleCommand.ts @@ -130,6 +130,7 @@ export interface DeleteRateBasedRuleCommandOutput extends DeleteRateBasedRuleRes * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class DeleteRateBasedRuleCommand extends $Command diff --git a/clients/client-waf/src/commands/DeleteRegexMatchSetCommand.ts b/clients/client-waf/src/commands/DeleteRegexMatchSetCommand.ts index b6005f2720c46..379148c8b1368 100644 --- a/clients/client-waf/src/commands/DeleteRegexMatchSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteRegexMatchSetCommand.ts @@ -120,6 +120,7 @@ export interface DeleteRegexMatchSetCommandOutput extends DeleteRegexMatchSetRes * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class DeleteRegexMatchSetCommand extends $Command diff --git a/clients/client-waf/src/commands/DeleteRegexPatternSetCommand.ts b/clients/client-waf/src/commands/DeleteRegexPatternSetCommand.ts index e6371f885a94e..300c8e4cf11f5 100644 --- a/clients/client-waf/src/commands/DeleteRegexPatternSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteRegexPatternSetCommand.ts @@ -106,6 +106,7 @@ export interface DeleteRegexPatternSetCommandOutput extends DeleteRegexPatternSe * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class DeleteRegexPatternSetCommand extends $Command diff --git a/clients/client-waf/src/commands/DeleteRuleCommand.ts b/clients/client-waf/src/commands/DeleteRuleCommand.ts index 9a3663d1f5dd9..066855d7e23bf 100644 --- a/clients/client-waf/src/commands/DeleteRuleCommand.ts +++ b/clients/client-waf/src/commands/DeleteRuleCommand.ts @@ -126,24 +126,24 @@ export interface DeleteRuleCommandOutput extends DeleteRuleResponse, __MetadataB * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To delete a rule * ```javascript * // The following example deletes a rule with the ID WAFRule-1-Example. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "RuleId": "WAFRule-1-Example" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * RuleId: "WAFRule-1-Example" * }; * const command = new DeleteRuleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: deleterule-1474073108749 * ``` * + * @public */ export class DeleteRuleCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/DeleteRuleGroupCommand.ts b/clients/client-waf/src/commands/DeleteRuleGroupCommand.ts index 661ee45d893c6..2798e2a8c641f 100644 --- a/clients/client-waf/src/commands/DeleteRuleGroupCommand.ts +++ b/clients/client-waf/src/commands/DeleteRuleGroupCommand.ts @@ -146,6 +146,7 @@ export interface DeleteRuleGroupCommandOutput extends DeleteRuleGroupResponse, _ * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class DeleteRuleGroupCommand extends $Command diff --git a/clients/client-waf/src/commands/DeleteSizeConstraintSetCommand.ts b/clients/client-waf/src/commands/DeleteSizeConstraintSetCommand.ts index 420c8fcb1f4fe..9929bea4b3454 100644 --- a/clients/client-waf/src/commands/DeleteSizeConstraintSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteSizeConstraintSetCommand.ts @@ -120,24 +120,24 @@ export interface DeleteSizeConstraintSetCommandOutput extends DeleteSizeConstrai * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To delete a size constraint set * ```javascript * // The following example deletes a size constraint set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * SizeConstraintSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new DeleteSizeConstraintSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: deletesizeconstraintset-1474299857905 * ``` * + * @public */ export class DeleteSizeConstraintSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/DeleteSqlInjectionMatchSetCommand.ts b/clients/client-waf/src/commands/DeleteSqlInjectionMatchSetCommand.ts index 1b3f35c017ce9..495bcdb1597b0 100644 --- a/clients/client-waf/src/commands/DeleteSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteSqlInjectionMatchSetCommand.ts @@ -121,24 +121,24 @@ export interface DeleteSqlInjectionMatchSetCommandOutput extends DeleteSqlInject * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To delete a SQL injection match set * ```javascript * // The following example deletes a SQL injection match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * SqlInjectionMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new DeleteSqlInjectionMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: deletesqlinjectionmatchset-1474493373197 * ``` * + * @public */ export class DeleteSqlInjectionMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/DeleteWebACLCommand.ts b/clients/client-waf/src/commands/DeleteWebACLCommand.ts index d6f653cfaee04..85c580883acc2 100644 --- a/clients/client-waf/src/commands/DeleteWebACLCommand.ts +++ b/clients/client-waf/src/commands/DeleteWebACLCommand.ts @@ -124,24 +124,24 @@ export interface DeleteWebACLCommandOutput extends DeleteWebACLResponse, __Metad * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To delete a web ACL * ```javascript * // The following example deletes a web ACL with the ID example-46da-4444-5555-example. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "WebACLId": "example-46da-4444-5555-example" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * WebACLId: "example-46da-4444-5555-example" * }; * const command = new DeleteWebACLCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: deletewebacl-1472767755931 * ``` * + * @public */ export class DeleteWebACLCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/DeleteXssMatchSetCommand.ts b/clients/client-waf/src/commands/DeleteXssMatchSetCommand.ts index 250f9af301f18..7668f96cd68fc 100644 --- a/clients/client-waf/src/commands/DeleteXssMatchSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteXssMatchSetCommand.ts @@ -121,24 +121,24 @@ export interface DeleteXssMatchSetCommandOutput extends DeleteXssMatchSetRespons * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To delete an XSS match set * ```javascript * // The following example deletes an XSS match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * XssMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new DeleteXssMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: deletexssmatchset-1474561302618 * ``` * + * @public */ export class DeleteXssMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/GetByteMatchSetCommand.ts b/clients/client-waf/src/commands/GetByteMatchSetCommand.ts index fd64f9b896a8f..9d0f793b04766 100644 --- a/clients/client-waf/src/commands/GetByteMatchSetCommand.ts +++ b/clients/client-waf/src/commands/GetByteMatchSetCommand.ts @@ -86,37 +86,37 @@ export interface GetByteMatchSetCommandOutput extends GetByteMatchSetResponse, _ * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To get a byte match set * ```javascript * // The following example returns the details of a byte match set with the ID exampleIDs3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ByteMatchSetId": "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5" + * ByteMatchSetId: "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new GetByteMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ByteMatchSet": { - * "ByteMatchSetId": "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5", - * "ByteMatchTuples": [ + * ByteMatchSet: { + * ByteMatchSetId: "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5", + * ByteMatchTuples: [ * { - * "FieldToMatch": { - * "Data": "referer", - * "Type": "HEADER" + * FieldToMatch: { + * Data: "referer", + * Type: "HEADER" * }, - * "PositionalConstraint": "CONTAINS", - * "TargetString": "badrefer1", - * "TextTransformation": "NONE" + * PositionalConstraint: "CONTAINS", + * TargetString: "badrefer1", + * TextTransformation: "NONE" * } * ], - * "Name": "ByteMatchNameExample" + * Name: "ByteMatchNameExample" * } * } * *\/ - * // example id: getbytematchset-1473273311532 * ``` * + * @public */ export class GetByteMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/GetChangeTokenCommand.ts b/clients/client-waf/src/commands/GetChangeTokenCommand.ts index 51390f0d94bee..b3e4b1bfd0a0d 100644 --- a/clients/client-waf/src/commands/GetChangeTokenCommand.ts +++ b/clients/client-waf/src/commands/GetChangeTokenCommand.ts @@ -70,21 +70,21 @@ export interface GetChangeTokenCommandOutput extends GetChangeTokenResponse, __M * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To get a change token * ```javascript * // The following example returns a change token to use for a create, update or delete operation. - * const input = {}; + * const input = { /* empty *\/ }; * const command = new GetChangeTokenCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: get-change-token-example-1471635120794 * ``` * + * @public */ export class GetChangeTokenCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/GetChangeTokenStatusCommand.ts b/clients/client-waf/src/commands/GetChangeTokenStatusCommand.ts index 538be13c0319b..34d9f41335618 100644 --- a/clients/client-waf/src/commands/GetChangeTokenStatusCommand.ts +++ b/clients/client-waf/src/commands/GetChangeTokenStatusCommand.ts @@ -85,23 +85,23 @@ export interface GetChangeTokenStatusCommandOutput extends GetChangeTokenStatusR * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To get the change token status * ```javascript * // The following example returns the status of a change token with the ID abcd12f2-46da-4fdb-b8d5-fbd4c466928f. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * }; * const command = new GetChangeTokenStatusCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeTokenStatus": "PENDING" + * ChangeTokenStatus: "PENDING" * } * *\/ - * // example id: getchangetokenstatus-1474658417107 * ``` * + * @public */ export class GetChangeTokenStatusCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/GetGeoMatchSetCommand.ts b/clients/client-waf/src/commands/GetGeoMatchSetCommand.ts index a53e3df06959f..4e8e8f248079a 100644 --- a/clients/client-waf/src/commands/GetGeoMatchSetCommand.ts +++ b/clients/client-waf/src/commands/GetGeoMatchSetCommand.ts @@ -81,6 +81,7 @@ export interface GetGeoMatchSetCommandOutput extends GetGeoMatchSetResponse, __M * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class GetGeoMatchSetCommand extends $Command diff --git a/clients/client-waf/src/commands/GetIPSetCommand.ts b/clients/client-waf/src/commands/GetIPSetCommand.ts index ee4fb1e324f1d..1246b86b7f9e5 100644 --- a/clients/client-waf/src/commands/GetIPSetCommand.ts +++ b/clients/client-waf/src/commands/GetIPSetCommand.ts @@ -81,32 +81,32 @@ export interface GetIPSetCommandOutput extends GetIPSetResponse, __MetadataBeare * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To get an IP set * ```javascript * // The following example returns the details of an IP match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * IPSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new GetIPSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "IPSet": { - * "IPSetDescriptors": [ + * IPSet: { + * IPSetDescriptors: [ * { - * "Type": "IPV4", - * "Value": "192.0.2.44/32" + * Type: "IPV4", + * Value: "192.0.2.44/32" * } * ], - * "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "Name": "MyIPSetFriendlyName" + * IPSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * Name: "MyIPSetFriendlyName" * } * } * *\/ - * // example id: getipset-1474658688675 * ``` * + * @public */ export class GetIPSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/GetLoggingConfigurationCommand.ts b/clients/client-waf/src/commands/GetLoggingConfigurationCommand.ts index 8fc135f95e423..9376c4b6711f4 100644 --- a/clients/client-waf/src/commands/GetLoggingConfigurationCommand.ts +++ b/clients/client-waf/src/commands/GetLoggingConfigurationCommand.ts @@ -80,6 +80,7 @@ export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigur * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class GetLoggingConfigurationCommand extends $Command diff --git a/clients/client-waf/src/commands/GetPermissionPolicyCommand.ts b/clients/client-waf/src/commands/GetPermissionPolicyCommand.ts index 6e342bc350233..7cf4ab393a775 100644 --- a/clients/client-waf/src/commands/GetPermissionPolicyCommand.ts +++ b/clients/client-waf/src/commands/GetPermissionPolicyCommand.ts @@ -69,6 +69,7 @@ export interface GetPermissionPolicyCommandOutput extends GetPermissionPolicyRes * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class GetPermissionPolicyCommand extends $Command diff --git a/clients/client-waf/src/commands/GetRateBasedRuleCommand.ts b/clients/client-waf/src/commands/GetRateBasedRuleCommand.ts index 70c1cef22c376..0804d6852c834 100644 --- a/clients/client-waf/src/commands/GetRateBasedRuleCommand.ts +++ b/clients/client-waf/src/commands/GetRateBasedRuleCommand.ts @@ -87,6 +87,7 @@ export interface GetRateBasedRuleCommandOutput extends GetRateBasedRuleResponse, * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class GetRateBasedRuleCommand extends $Command diff --git a/clients/client-waf/src/commands/GetRateBasedRuleManagedKeysCommand.ts b/clients/client-waf/src/commands/GetRateBasedRuleManagedKeysCommand.ts index f15d02e060eb1..aa44759893bf2 100644 --- a/clients/client-waf/src/commands/GetRateBasedRuleManagedKeysCommand.ts +++ b/clients/client-waf/src/commands/GetRateBasedRuleManagedKeysCommand.ts @@ -120,6 +120,7 @@ export interface GetRateBasedRuleManagedKeysCommandOutput * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class GetRateBasedRuleManagedKeysCommand extends $Command diff --git a/clients/client-waf/src/commands/GetRegexMatchSetCommand.ts b/clients/client-waf/src/commands/GetRegexMatchSetCommand.ts index 94fc6e293fa84..4e740f8a0f4ef 100644 --- a/clients/client-waf/src/commands/GetRegexMatchSetCommand.ts +++ b/clients/client-waf/src/commands/GetRegexMatchSetCommand.ts @@ -85,6 +85,7 @@ export interface GetRegexMatchSetCommandOutput extends GetRegexMatchSetResponse, * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class GetRegexMatchSetCommand extends $Command diff --git a/clients/client-waf/src/commands/GetRegexPatternSetCommand.ts b/clients/client-waf/src/commands/GetRegexPatternSetCommand.ts index 1c59c446b78e5..dd04aaf43488d 100644 --- a/clients/client-waf/src/commands/GetRegexPatternSetCommand.ts +++ b/clients/client-waf/src/commands/GetRegexPatternSetCommand.ts @@ -78,6 +78,7 @@ export interface GetRegexPatternSetCommandOutput extends GetRegexPatternSetRespo * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class GetRegexPatternSetCommand extends $Command diff --git a/clients/client-waf/src/commands/GetRuleCommand.ts b/clients/client-waf/src/commands/GetRuleCommand.ts index f33ab69f0c9bc..5b42e04492d54 100644 --- a/clients/client-waf/src/commands/GetRuleCommand.ts +++ b/clients/client-waf/src/commands/GetRuleCommand.ts @@ -83,34 +83,34 @@ export interface GetRuleCommandOutput extends GetRuleResponse, __MetadataBearer * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To get a rule * ```javascript * // The following example returns the details of a rule with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "RuleId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * RuleId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new GetRuleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Rule": { - * "MetricName": "WAFByteHeaderRule", - * "Name": "WAFByteHeaderRule", - * "Predicates": [ + * Rule: { + * MetricName: "WAFByteHeaderRule", + * Name: "WAFByteHeaderRule", + * Predicates: [ * { - * "DataId": "MyByteMatchSetID", - * "Negated": false, - * "Type": "ByteMatch" + * DataId: "MyByteMatchSetID", + * Negated: false, + * Type: "ByteMatch" * } * ], - * "RuleId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * RuleId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * } * } * *\/ - * // example id: getrule-1474659238790 * ``` * + * @public */ export class GetRuleCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/GetRuleGroupCommand.ts b/clients/client-waf/src/commands/GetRuleGroupCommand.ts index 19b7460708760..1147609f61349 100644 --- a/clients/client-waf/src/commands/GetRuleGroupCommand.ts +++ b/clients/client-waf/src/commands/GetRuleGroupCommand.ts @@ -74,6 +74,7 @@ export interface GetRuleGroupCommandOutput extends GetRuleGroupResponse, __Metad * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class GetRuleGroupCommand extends $Command diff --git a/clients/client-waf/src/commands/GetSampledRequestsCommand.ts b/clients/client-waf/src/commands/GetSampledRequestsCommand.ts index ee185dc9e2fe0..fd0d360f0f972 100644 --- a/clients/client-waf/src/commands/GetSampledRequestsCommand.ts +++ b/clients/client-waf/src/commands/GetSampledRequestsCommand.ts @@ -104,52 +104,8 @@ export interface GetSampledRequestsCommandOutput extends GetSampledRequestsRespo * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public - * @example To get a sampled requests - * ```javascript - * // The following example returns detailed information about 100 requests --a sample-- that AWS WAF randomly selects from among the first 5,000 requests that your AWS resource received between the time period 2016-09-27T15:50Z to 2016-09-27T15:50Z. - * const input = { - * "MaxItems": 100, - * "RuleId": "WAFRule-1-Example", - * "TimeWindow": { - * "EndTime": "2016-09-27T15:50Z", - * "StartTime": "2016-09-27T15:50Z" - * }, - * "WebAclId": "createwebacl-1472061481310" - * }; - * const command = new GetSampledRequestsCommand(input); - * const response = await client.send(command); - * /* response == - * { - * "PopulationSize": 50, - * "SampledRequests": [ - * { - * "Action": "BLOCK", - * "Request": { - * "ClientIP": "192.0.2.44", - * "Country": "US", - * "HTTPVersion": "HTTP/1.1", - * "Headers": [ - * { - * "Name": "User-Agent", - * "Value": "BadBot " - * } - * ], - * "Method": "HEAD" - * }, - * "Timestamp": "2016-09-27T14:55Z", - * "Weight": 1 - * } - * ], - * "TimeWindow": { - * "EndTime": "2016-09-27T15:50Z", - * "StartTime": "2016-09-27T14:50Z" - * } - * } - * *\/ - * // example id: getsampledrequests-1474927997195 - * ``` * + * @public */ export class GetSampledRequestsCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/GetSizeConstraintSetCommand.ts b/clients/client-waf/src/commands/GetSizeConstraintSetCommand.ts index 71dca5bf1d086..d78a08156b91b 100644 --- a/clients/client-waf/src/commands/GetSizeConstraintSetCommand.ts +++ b/clients/client-waf/src/commands/GetSizeConstraintSetCommand.ts @@ -86,36 +86,36 @@ export interface GetSizeConstraintSetCommandOutput extends GetSizeConstraintSetR * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To get a size constraint set * ```javascript * // The following example returns the details of a size constraint match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * SizeConstraintSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new GetSizeConstraintSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SizeConstraintSet": { - * "Name": "MySampleSizeConstraintSet", - * "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "SizeConstraints": [ + * SizeConstraintSet: { + * Name: "MySampleSizeConstraintSet", + * SizeConstraintSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * SizeConstraints: [ * { - * "ComparisonOperator": "GT", - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * ComparisonOperator: "GT", + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "Size": 0, - * "TextTransformation": "NONE" + * Size: 0, + * TextTransformation: "NONE" * } * ] * } * } * *\/ - * // example id: getsizeconstraintset-1475005422493 * ``` * + * @public */ export class GetSizeConstraintSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/GetSqlInjectionMatchSetCommand.ts b/clients/client-waf/src/commands/GetSqlInjectionMatchSetCommand.ts index 232f01a4d90e5..18506102a136c 100644 --- a/clients/client-waf/src/commands/GetSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf/src/commands/GetSqlInjectionMatchSetCommand.ts @@ -84,34 +84,34 @@ export interface GetSqlInjectionMatchSetCommandOutput extends GetSqlInjectionMat * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To get a SQL injection match set * ```javascript * // The following example returns the details of a SQL injection match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * SqlInjectionMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new GetSqlInjectionMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SqlInjectionMatchSet": { - * "Name": "MySQLInjectionMatchSet", - * "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "SqlInjectionMatchTuples": [ + * SqlInjectionMatchSet: { + * Name: "MySQLInjectionMatchSet", + * SqlInjectionMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * SqlInjectionMatchTuples: [ * { - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "TextTransformation": "URL_DECODE" + * TextTransformation: "URL_DECODE" * } * ] * } * } * *\/ - * // example id: getsqlinjectionmatchset-1475005940137 * ``` * + * @public */ export class GetSqlInjectionMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/GetWebACLCommand.ts b/clients/client-waf/src/commands/GetWebACLCommand.ts index 2395c274ba926..140875992435d 100644 --- a/clients/client-waf/src/commands/GetWebACLCommand.ts +++ b/clients/client-waf/src/commands/GetWebACLCommand.ts @@ -98,39 +98,39 @@ export interface GetWebACLCommandOutput extends GetWebACLResponse, __MetadataBea * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To get a web ACL * ```javascript * // The following example returns the details of a web ACL with the ID createwebacl-1472061481310. * const input = { - * "WebACLId": "createwebacl-1472061481310" + * WebACLId: "createwebacl-1472061481310" * }; * const command = new GetWebACLCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "WebACL": { - * "DefaultAction": { - * "Type": "ALLOW" + * WebACL: { + * DefaultAction: { + * Type: "ALLOW" * }, - * "MetricName": "CreateExample", - * "Name": "CreateExample", - * "Rules": [ + * MetricName: "CreateExample", + * Name: "CreateExample", + * Rules: [ * { - * "Action": { - * "Type": "ALLOW" + * Action: { + * Type: "ALLOW" * }, - * "Priority": 1, - * "RuleId": "WAFRule-1-Example" + * Priority: 1, + * RuleId: "WAFRule-1-Example" * } * ], - * "WebACLId": "createwebacl-1472061481310" + * WebACLId: "createwebacl-1472061481310" * } * } * *\/ - * // example id: getwebacl-1475006348525 * ``` * + * @public */ export class GetWebACLCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/GetXssMatchSetCommand.ts b/clients/client-waf/src/commands/GetXssMatchSetCommand.ts index 445ddf7c32394..9e62aaf268ee8 100644 --- a/clients/client-waf/src/commands/GetXssMatchSetCommand.ts +++ b/clients/client-waf/src/commands/GetXssMatchSetCommand.ts @@ -84,34 +84,34 @@ export interface GetXssMatchSetCommandOutput extends GetXssMatchSetResponse, __M * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To get an XSS match set * ```javascript * // The following example returns the details of an XSS match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * XssMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new GetXssMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "XssMatchSet": { - * "Name": "MySampleXssMatchSet", - * "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "XssMatchTuples": [ + * XssMatchSet: { + * Name: "MySampleXssMatchSet", + * XssMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * XssMatchTuples: [ * { - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "TextTransformation": "URL_DECODE" + * TextTransformation: "URL_DECODE" * } * ] * } * } * *\/ - * // example id: getxssmatchset-1475187879017 * ``` * + * @public */ export class GetXssMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/ListActivatedRulesInRuleGroupCommand.ts b/clients/client-waf/src/commands/ListActivatedRulesInRuleGroupCommand.ts index dc3e1e99cf6cc..a3bfd92f75bac 100644 --- a/clients/client-waf/src/commands/ListActivatedRulesInRuleGroupCommand.ts +++ b/clients/client-waf/src/commands/ListActivatedRulesInRuleGroupCommand.ts @@ -134,6 +134,7 @@ export interface ListActivatedRulesInRuleGroupCommandOutput * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class ListActivatedRulesInRuleGroupCommand extends $Command diff --git a/clients/client-waf/src/commands/ListByteMatchSetsCommand.ts b/clients/client-waf/src/commands/ListByteMatchSetsCommand.ts index 7175e2883784d..986905109fe63 100644 --- a/clients/client-waf/src/commands/ListByteMatchSetsCommand.ts +++ b/clients/client-waf/src/commands/ListByteMatchSetsCommand.ts @@ -76,6 +76,7 @@ export interface ListByteMatchSetsCommandOutput extends ListByteMatchSetsRespons * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class ListByteMatchSetsCommand extends $Command diff --git a/clients/client-waf/src/commands/ListGeoMatchSetsCommand.ts b/clients/client-waf/src/commands/ListGeoMatchSetsCommand.ts index 24b6797f06150..0ef77df13ec25 100644 --- a/clients/client-waf/src/commands/ListGeoMatchSetsCommand.ts +++ b/clients/client-waf/src/commands/ListGeoMatchSetsCommand.ts @@ -76,6 +76,7 @@ export interface ListGeoMatchSetsCommandOutput extends ListGeoMatchSetsResponse, * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class ListGeoMatchSetsCommand extends $Command diff --git a/clients/client-waf/src/commands/ListIPSetsCommand.ts b/clients/client-waf/src/commands/ListIPSetsCommand.ts index 9d44bd05eb512..974a4a1498c3b 100644 --- a/clients/client-waf/src/commands/ListIPSetsCommand.ts +++ b/clients/client-waf/src/commands/ListIPSetsCommand.ts @@ -76,28 +76,28 @@ export interface ListIPSetsCommandOutput extends ListIPSetsResponse, __MetadataB * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To list IP sets * ```javascript * // The following example returns an array of up to 100 IP match sets. * const input = { - * "Limit": 100 + * Limit: 100 * }; * const command = new ListIPSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "IPSets": [ + * IPSets: [ * { - * "IPSetId": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Name": "MyIPSetFriendlyName" + * IPSetId: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Name: "MyIPSetFriendlyName" * } * ] * } * *\/ - * // example id: listipsets-1472235676229 * ``` * + * @public */ export class ListIPSetsCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/ListLoggingConfigurationsCommand.ts b/clients/client-waf/src/commands/ListLoggingConfigurationsCommand.ts index 32c640730acac..6baae693c1072 100644 --- a/clients/client-waf/src/commands/ListLoggingConfigurationsCommand.ts +++ b/clients/client-waf/src/commands/ListLoggingConfigurationsCommand.ts @@ -124,6 +124,7 @@ export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfi * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class ListLoggingConfigurationsCommand extends $Command diff --git a/clients/client-waf/src/commands/ListRateBasedRulesCommand.ts b/clients/client-waf/src/commands/ListRateBasedRulesCommand.ts index 5c59c87b8391c..960cc6150cd3a 100644 --- a/clients/client-waf/src/commands/ListRateBasedRulesCommand.ts +++ b/clients/client-waf/src/commands/ListRateBasedRulesCommand.ts @@ -76,6 +76,7 @@ export interface ListRateBasedRulesCommandOutput extends ListRateBasedRulesRespo * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class ListRateBasedRulesCommand extends $Command diff --git a/clients/client-waf/src/commands/ListRegexMatchSetsCommand.ts b/clients/client-waf/src/commands/ListRegexMatchSetsCommand.ts index aba3727155c79..722cb64b8b2b1 100644 --- a/clients/client-waf/src/commands/ListRegexMatchSetsCommand.ts +++ b/clients/client-waf/src/commands/ListRegexMatchSetsCommand.ts @@ -76,6 +76,7 @@ export interface ListRegexMatchSetsCommandOutput extends ListRegexMatchSetsRespo * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class ListRegexMatchSetsCommand extends $Command diff --git a/clients/client-waf/src/commands/ListRegexPatternSetsCommand.ts b/clients/client-waf/src/commands/ListRegexPatternSetsCommand.ts index dcb85d1a7afae..a026ee48b426c 100644 --- a/clients/client-waf/src/commands/ListRegexPatternSetsCommand.ts +++ b/clients/client-waf/src/commands/ListRegexPatternSetsCommand.ts @@ -76,6 +76,7 @@ export interface ListRegexPatternSetsCommandOutput extends ListRegexPatternSetsR * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class ListRegexPatternSetsCommand extends $Command diff --git a/clients/client-waf/src/commands/ListRuleGroupsCommand.ts b/clients/client-waf/src/commands/ListRuleGroupsCommand.ts index 3150fe567bad9..ed8c0750fc376 100644 --- a/clients/client-waf/src/commands/ListRuleGroupsCommand.ts +++ b/clients/client-waf/src/commands/ListRuleGroupsCommand.ts @@ -73,6 +73,7 @@ export interface ListRuleGroupsCommandOutput extends ListRuleGroupsResponse, __M * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class ListRuleGroupsCommand extends $Command diff --git a/clients/client-waf/src/commands/ListRulesCommand.ts b/clients/client-waf/src/commands/ListRulesCommand.ts index d3b3ea1c06c57..d37d12c9e186e 100644 --- a/clients/client-waf/src/commands/ListRulesCommand.ts +++ b/clients/client-waf/src/commands/ListRulesCommand.ts @@ -76,28 +76,28 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To list rules * ```javascript * // The following example returns an array of up to 100 rules. * const input = { - * "Limit": 100 + * Limit: 100 * }; * const command = new ListRulesCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "Rules": [ + * Rules: [ * { - * "Name": "WAFByteHeaderRule", - * "RuleId": "WAFRule-1-Example" + * Name: "WAFByteHeaderRule", + * RuleId: "WAFRule-1-Example" * } * ] * } * *\/ - * // example id: listrules-1475258406433 * ``` * + * @public */ export class ListRulesCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/ListSizeConstraintSetsCommand.ts b/clients/client-waf/src/commands/ListSizeConstraintSetsCommand.ts index d083a412a1f1a..f45e57a4f487d 100644 --- a/clients/client-waf/src/commands/ListSizeConstraintSetsCommand.ts +++ b/clients/client-waf/src/commands/ListSizeConstraintSetsCommand.ts @@ -76,28 +76,28 @@ export interface ListSizeConstraintSetsCommandOutput extends ListSizeConstraintS * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To list a size constraint sets * ```javascript * // The following example returns an array of up to 100 size contraint match sets. * const input = { - * "Limit": 100 + * Limit: 100 * }; * const command = new ListSizeConstraintSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SizeConstraintSets": [ + * SizeConstraintSets: [ * { - * "Name": "MySampleSizeConstraintSet", - * "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * Name: "MySampleSizeConstraintSet", + * SizeConstraintSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * } * ] * } * *\/ - * // example id: listsizeconstraintsets-1474300067597 * ``` * + * @public */ export class ListSizeConstraintSetsCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/ListSqlInjectionMatchSetsCommand.ts b/clients/client-waf/src/commands/ListSqlInjectionMatchSetsCommand.ts index a333b3a859fe4..e1dcb47f5822e 100644 --- a/clients/client-waf/src/commands/ListSqlInjectionMatchSetsCommand.ts +++ b/clients/client-waf/src/commands/ListSqlInjectionMatchSetsCommand.ts @@ -76,28 +76,28 @@ export interface ListSqlInjectionMatchSetsCommandOutput extends ListSqlInjection * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To list SQL injection match sets * ```javascript * // The following example returns an array of up to 100 SQL injection match sets. * const input = { - * "Limit": 100 + * Limit: 100 * }; * const command = new ListSqlInjectionMatchSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "SqlInjectionMatchSets": [ + * SqlInjectionMatchSets: [ * { - * "Name": "MySQLInjectionMatchSet", - * "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * Name: "MySQLInjectionMatchSet", + * SqlInjectionMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * } * ] * } * *\/ - * // example id: listsqlinjectionmatchset-1474493560103 * ``` * + * @public */ export class ListSqlInjectionMatchSetsCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/ListSubscribedRuleGroupsCommand.ts b/clients/client-waf/src/commands/ListSubscribedRuleGroupsCommand.ts index a658d7b762fe1..1bdb1bd459d7c 100644 --- a/clients/client-waf/src/commands/ListSubscribedRuleGroupsCommand.ts +++ b/clients/client-waf/src/commands/ListSubscribedRuleGroupsCommand.ts @@ -77,6 +77,7 @@ export interface ListSubscribedRuleGroupsCommandOutput extends ListSubscribedRul * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class ListSubscribedRuleGroupsCommand extends $Command diff --git a/clients/client-waf/src/commands/ListTagsForResourceCommand.ts b/clients/client-waf/src/commands/ListTagsForResourceCommand.ts index c7eb905cfff95..bc814e405d101 100644 --- a/clients/client-waf/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-waf/src/commands/ListTagsForResourceCommand.ts @@ -130,6 +130,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-waf/src/commands/ListWebACLsCommand.ts b/clients/client-waf/src/commands/ListWebACLsCommand.ts index bbf2ad9693c96..826e582092a4f 100644 --- a/clients/client-waf/src/commands/ListWebACLsCommand.ts +++ b/clients/client-waf/src/commands/ListWebACLsCommand.ts @@ -76,28 +76,28 @@ export interface ListWebACLsCommandOutput extends ListWebACLsResponse, __Metadat * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To list Web ACLs * ```javascript * // The following example returns an array of up to 100 web ACLs. * const input = { - * "Limit": 100 + * Limit: 100 * }; * const command = new ListWebACLsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "WebACLs": [ + * WebACLs: [ * { - * "Name": "WebACLexample", - * "WebACLId": "webacl-1472061481310" + * Name: "WebACLexample", + * WebACLId: "webacl-1472061481310" * } * ] * } * *\/ - * // example id: listwebacls-1475258732691 * ``` * + * @public */ export class ListWebACLsCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/ListXssMatchSetsCommand.ts b/clients/client-waf/src/commands/ListXssMatchSetsCommand.ts index d73c5c87becd2..9174e7f8ffa1d 100644 --- a/clients/client-waf/src/commands/ListXssMatchSetsCommand.ts +++ b/clients/client-waf/src/commands/ListXssMatchSetsCommand.ts @@ -76,28 +76,28 @@ export interface ListXssMatchSetsCommandOutput extends ListXssMatchSetsResponse, * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To list XSS match sets * ```javascript * // The following example returns an array of up to 100 XSS match sets. * const input = { - * "Limit": 100 + * Limit: 100 * }; * const command = new ListXssMatchSetsCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "XssMatchSets": [ + * XssMatchSets: [ * { - * "Name": "MySampleXssMatchSet", - * "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * Name: "MySampleXssMatchSet", + * XssMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * } * ] * } * *\/ - * // example id: listxssmatchsets-1474561481168 * ``` * + * @public */ export class ListXssMatchSetsCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/PutLoggingConfigurationCommand.ts b/clients/client-waf/src/commands/PutLoggingConfigurationCommand.ts index 7e6770ab33e02..2621ac78e0be0 100644 --- a/clients/client-waf/src/commands/PutLoggingConfigurationCommand.ts +++ b/clients/client-waf/src/commands/PutLoggingConfigurationCommand.ts @@ -114,6 +114,7 @@ export interface PutLoggingConfigurationCommandOutput extends PutLoggingConfigur * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class PutLoggingConfigurationCommand extends $Command diff --git a/clients/client-waf/src/commands/PutPermissionPolicyCommand.ts b/clients/client-waf/src/commands/PutPermissionPolicyCommand.ts index 5b992982639b9..b4462dc6cb7de 100644 --- a/clients/client-waf/src/commands/PutPermissionPolicyCommand.ts +++ b/clients/client-waf/src/commands/PutPermissionPolicyCommand.ts @@ -135,6 +135,7 @@ export interface PutPermissionPolicyCommandOutput extends PutPermissionPolicyRes * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class PutPermissionPolicyCommand extends $Command diff --git a/clients/client-waf/src/commands/TagResourceCommand.ts b/clients/client-waf/src/commands/TagResourceCommand.ts index 2aa41fa704815..82e57ff65a212 100644 --- a/clients/client-waf/src/commands/TagResourceCommand.ts +++ b/clients/client-waf/src/commands/TagResourceCommand.ts @@ -128,6 +128,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-waf/src/commands/UntagResourceCommand.ts b/clients/client-waf/src/commands/UntagResourceCommand.ts index c3179060d5e3d..395e694b8f228 100644 --- a/clients/client-waf/src/commands/UntagResourceCommand.ts +++ b/clients/client-waf/src/commands/UntagResourceCommand.ts @@ -119,6 +119,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-waf/src/commands/UpdateByteMatchSetCommand.ts b/clients/client-waf/src/commands/UpdateByteMatchSetCommand.ts index fa1a62ba70676..7ed0ae3f1312c 100644 --- a/clients/client-waf/src/commands/UpdateByteMatchSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateByteMatchSetCommand.ts @@ -214,38 +214,38 @@ export interface UpdateByteMatchSetCommandOutput extends UpdateByteMatchSetRespo * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To update a byte match set * ```javascript * // The following example deletes a ByteMatchTuple object (filters) in an byte match set with the ID exampleIDs3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ByteMatchSetId": "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5", - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Updates": [ + * ByteMatchSetId: "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5", + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Updates: [ * { - * "Action": "DELETE", - * "ByteMatchTuple": { - * "FieldToMatch": { - * "Data": "referer", - * "Type": "HEADER" + * Action: "DELETE", + * ByteMatchTuple: { + * FieldToMatch: { + * Data: "referer", + * Type: "HEADER" * }, - * "PositionalConstraint": "CONTAINS", - * "TargetString": "badrefer1", - * "TextTransformation": "NONE" + * PositionalConstraint: "CONTAINS", + * TargetString: "badrefer1", + * TextTransformation: "NONE" * } * } * ] * }; * const command = new UpdateByteMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: updatebytematchset-1475259074558 * ``` * + * @public */ export class UpdateByteMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/UpdateGeoMatchSetCommand.ts b/clients/client-waf/src/commands/UpdateGeoMatchSetCommand.ts index 9919ffab861d4..a12582d2280a6 100644 --- a/clients/client-waf/src/commands/UpdateGeoMatchSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateGeoMatchSetCommand.ts @@ -212,6 +212,7 @@ export interface UpdateGeoMatchSetCommandOutput extends UpdateGeoMatchSetRespons * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class UpdateGeoMatchSetCommand extends $Command diff --git a/clients/client-waf/src/commands/UpdateIPSetCommand.ts b/clients/client-waf/src/commands/UpdateIPSetCommand.ts index 636c65b67c21c..a97d800a51ca8 100644 --- a/clients/client-waf/src/commands/UpdateIPSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateIPSetCommand.ts @@ -247,33 +247,33 @@ export interface UpdateIPSetCommandOutput extends UpdateIPSetResponse, __Metadat * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To update an IP set * ```javascript * // The following example deletes an IPSetDescriptor object in an IP match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "Updates": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * IPSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * Updates: [ * { - * "Action": "DELETE", - * "IPSetDescriptor": { - * "Type": "IPV4", - * "Value": "192.0.2.44/32" + * Action: "DELETE", + * IPSetDescriptor: { + * Type: "IPV4", + * Value: "192.0.2.44/32" * } * } * ] * }; * const command = new UpdateIPSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: updateipset-1475259733625 * ``` * + * @public */ export class UpdateIPSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/UpdateRateBasedRuleCommand.ts b/clients/client-waf/src/commands/UpdateRateBasedRuleCommand.ts index e083250f35517..4ddd2f761dd92 100644 --- a/clients/client-waf/src/commands/UpdateRateBasedRuleCommand.ts +++ b/clients/client-waf/src/commands/UpdateRateBasedRuleCommand.ts @@ -230,6 +230,7 @@ export interface UpdateRateBasedRuleCommandOutput extends UpdateRateBasedRuleRes * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class UpdateRateBasedRuleCommand extends $Command diff --git a/clients/client-waf/src/commands/UpdateRegexMatchSetCommand.ts b/clients/client-waf/src/commands/UpdateRegexMatchSetCommand.ts index 004fe5f8bd8d8..67bf5ab159cbf 100644 --- a/clients/client-waf/src/commands/UpdateRegexMatchSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateRegexMatchSetCommand.ts @@ -172,6 +172,7 @@ export interface UpdateRegexMatchSetCommandOutput extends UpdateRegexMatchSetRes * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class UpdateRegexMatchSetCommand extends $Command diff --git a/clients/client-waf/src/commands/UpdateRegexPatternSetCommand.ts b/clients/client-waf/src/commands/UpdateRegexPatternSetCommand.ts index 940f6611b46d0..e30e3b0f9241a 100644 --- a/clients/client-waf/src/commands/UpdateRegexPatternSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateRegexPatternSetCommand.ts @@ -170,6 +170,7 @@ export interface UpdateRegexPatternSetCommandOutput extends UpdateRegexPatternSe * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class UpdateRegexPatternSetCommand extends $Command diff --git a/clients/client-waf/src/commands/UpdateRuleCommand.ts b/clients/client-waf/src/commands/UpdateRuleCommand.ts index 0f96e7b75fa5e..011f285223613 100644 --- a/clients/client-waf/src/commands/UpdateRuleCommand.ts +++ b/clients/client-waf/src/commands/UpdateRuleCommand.ts @@ -224,34 +224,34 @@ export interface UpdateRuleCommandOutput extends UpdateRuleResponse, __MetadataB * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To update a rule * ```javascript * // The following example deletes a Predicate object in a rule with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "RuleId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "Updates": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * RuleId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * Updates: [ * { - * "Action": "DELETE", - * "Predicate": { - * "DataId": "MyByteMatchSetID", - * "Negated": false, - * "Type": "ByteMatch" + * Action: "DELETE", + * Predicate: { + * DataId: "MyByteMatchSetID", + * Negated: false, + * Type: "ByteMatch" * } * } * ] * }; * const command = new UpdateRuleCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: updaterule-1475260064720 * ``` * + * @public */ export class UpdateRuleCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/UpdateRuleGroupCommand.ts b/clients/client-waf/src/commands/UpdateRuleGroupCommand.ts index 2996fca13aac9..5131759470e1d 100644 --- a/clients/client-waf/src/commands/UpdateRuleGroupCommand.ts +++ b/clients/client-waf/src/commands/UpdateRuleGroupCommand.ts @@ -204,6 +204,7 @@ export interface UpdateRuleGroupCommandOutput extends UpdateRuleGroupResponse, _ * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* + * * @public */ export class UpdateRuleGroupCommand extends $Command diff --git a/clients/client-waf/src/commands/UpdateSizeConstraintSetCommand.ts b/clients/client-waf/src/commands/UpdateSizeConstraintSetCommand.ts index d61faead38225..6d3329c5a83d0 100644 --- a/clients/client-waf/src/commands/UpdateSizeConstraintSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateSizeConstraintSetCommand.ts @@ -229,37 +229,37 @@ export interface UpdateSizeConstraintSetCommandOutput extends UpdateSizeConstrai * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To update a size constraint set * ```javascript * // The following example deletes a SizeConstraint object (filters) in a size constraint set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "Updates": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * SizeConstraintSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * Updates: [ * { - * "Action": "DELETE", - * "SizeConstraint": { - * "ComparisonOperator": "GT", - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * Action: "DELETE", + * SizeConstraint: { + * ComparisonOperator: "GT", + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "Size": 0, - * "TextTransformation": "NONE" + * Size: 0, + * TextTransformation: "NONE" * } * } * ] * }; * const command = new UpdateSizeConstraintSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: updatesizeconstraintset-1475531697891 * ``` * + * @public */ export class UpdateSizeConstraintSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/UpdateSqlInjectionMatchSetCommand.ts b/clients/client-waf/src/commands/UpdateSqlInjectionMatchSetCommand.ts index 99692989c7af5..5e7fae41ea1ed 100644 --- a/clients/client-waf/src/commands/UpdateSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateSqlInjectionMatchSetCommand.ts @@ -215,35 +215,35 @@ export interface UpdateSqlInjectionMatchSetCommandOutput extends UpdateSqlInject * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To update a SQL injection match set * ```javascript * // The following example deletes a SqlInjectionMatchTuple object (filters) in a SQL injection match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5", - * "Updates": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * SqlInjectionMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5", + * Updates: [ * { - * "Action": "DELETE", - * "SqlInjectionMatchTuple": { - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * Action: "DELETE", + * SqlInjectionMatchTuple: { + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "TextTransformation": "URL_DECODE" + * TextTransformation: "URL_DECODE" * } * } * ] * }; * const command = new UpdateSqlInjectionMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: updatesqlinjectionmatchset-1475532094686 * ``` * + * @public */ export class UpdateSqlInjectionMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/UpdateWebACLCommand.ts b/clients/client-waf/src/commands/UpdateWebACLCommand.ts index 328001f31b439..17e10ec4ee381 100644 --- a/clients/client-waf/src/commands/UpdateWebACLCommand.ts +++ b/clients/client-waf/src/commands/UpdateWebACLCommand.ts @@ -271,39 +271,39 @@ export interface UpdateWebACLCommandOutput extends UpdateWebACLResponse, __Metad * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To update a Web ACL * ```javascript * // The following example deletes an ActivatedRule object in a WebACL with the ID webacl-1472061481310. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "DefaultAction": { - * "Type": "ALLOW" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * DefaultAction: { + * Type: "ALLOW" * }, - * "Updates": [ + * Updates: [ * { - * "Action": "DELETE", - * "ActivatedRule": { - * "Action": { - * "Type": "ALLOW" + * Action: "DELETE", + * ActivatedRule: { + * Action: { + * Type: "ALLOW" * }, - * "Priority": 1, - * "RuleId": "WAFRule-1-Example" + * Priority: 1, + * RuleId: "WAFRule-1-Example" * } * } * ], - * "WebACLId": "webacl-1472061481310" + * WebACLId: "webacl-1472061481310" * }; * const command = new UpdateWebACLCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: updatewebacl-1475533627385 * ``` * + * @public */ export class UpdateWebACLCommand extends $Command .classBuilder< diff --git a/clients/client-waf/src/commands/UpdateXssMatchSetCommand.ts b/clients/client-waf/src/commands/UpdateXssMatchSetCommand.ts index 4cb3ddaed2b71..638eabb1b95d4 100644 --- a/clients/client-waf/src/commands/UpdateXssMatchSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateXssMatchSetCommand.ts @@ -217,35 +217,35 @@ export interface UpdateXssMatchSetCommandOutput extends UpdateXssMatchSetRespons * @throws {@link WAFServiceException} *

Base exception class for all service exceptions from WAF service.

* - * @public + * * @example To update an XSS match set * ```javascript * // The following example deletes an XssMatchTuple object (filters) in an XssMatchSet with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5. * const input = { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", - * "Updates": [ + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f", + * Updates: [ * { - * "Action": "DELETE", - * "XssMatchTuple": { - * "FieldToMatch": { - * "Type": "QUERY_STRING" + * Action: "DELETE", + * XssMatchTuple: { + * FieldToMatch: { + * Type: "QUERY_STRING" * }, - * "TextTransformation": "URL_DECODE" + * TextTransformation: "URL_DECODE" * } * } * ], - * "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5" + * XssMatchSetId: "example1ds3t-46da-4fdb-b8d5-abc321j569j5" * }; * const command = new UpdateXssMatchSetCommand(input); * const response = await client.send(command); - * /* response == + * /* response is * { - * "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" + * ChangeToken: "abcd12f2-46da-4fdb-b8d5-fbd4c466928f" * } * *\/ - * // example id: updatexssmatchset-1475534098881 * ``` * + * @public */ export class UpdateXssMatchSetCommand extends $Command .classBuilder< diff --git a/clients/client-wafv2/src/commands/AssociateWebACLCommand.ts b/clients/client-wafv2/src/commands/AssociateWebACLCommand.ts index 9a8f0452013b0..07169658ce6a3 100644 --- a/clients/client-wafv2/src/commands/AssociateWebACLCommand.ts +++ b/clients/client-wafv2/src/commands/AssociateWebACLCommand.ts @@ -120,6 +120,7 @@ export interface AssociateWebACLCommandOutput extends AssociateWebACLResponse, _ * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class AssociateWebACLCommand extends $Command diff --git a/clients/client-wafv2/src/commands/CheckCapacityCommand.ts b/clients/client-wafv2/src/commands/CheckCapacityCommand.ts index d07c83758b35b..aefeb15884b80 100644 --- a/clients/client-wafv2/src/commands/CheckCapacityCommand.ts +++ b/clients/client-wafv2/src/commands/CheckCapacityCommand.ts @@ -1119,6 +1119,7 @@ export interface CheckCapacityCommandOutput extends CheckCapacityResponse, __Met * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class CheckCapacityCommand extends $Command diff --git a/clients/client-wafv2/src/commands/CreateAPIKeyCommand.ts b/clients/client-wafv2/src/commands/CreateAPIKeyCommand.ts index 203a487762c2f..38180ddafb68c 100644 --- a/clients/client-wafv2/src/commands/CreateAPIKeyCommand.ts +++ b/clients/client-wafv2/src/commands/CreateAPIKeyCommand.ts @@ -97,6 +97,7 @@ export interface CreateAPIKeyCommandOutput extends CreateAPIKeyResponse, __Metad * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class CreateAPIKeyCommand extends $Command diff --git a/clients/client-wafv2/src/commands/CreateIPSetCommand.ts b/clients/client-wafv2/src/commands/CreateIPSetCommand.ts index e00665d61387f..0b805c16b24b1 100644 --- a/clients/client-wafv2/src/commands/CreateIPSetCommand.ts +++ b/clients/client-wafv2/src/commands/CreateIPSetCommand.ts @@ -126,6 +126,7 @@ export interface CreateIPSetCommandOutput extends CreateIPSetResponse, __Metadat * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class CreateIPSetCommand extends $Command diff --git a/clients/client-wafv2/src/commands/CreateRegexPatternSetCommand.ts b/clients/client-wafv2/src/commands/CreateRegexPatternSetCommand.ts index 81f299c2f1ea4..d19f33cad441b 100644 --- a/clients/client-wafv2/src/commands/CreateRegexPatternSetCommand.ts +++ b/clients/client-wafv2/src/commands/CreateRegexPatternSetCommand.ts @@ -125,6 +125,7 @@ export interface CreateRegexPatternSetCommandOutput extends CreateRegexPatternSe * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class CreateRegexPatternSetCommand extends $Command diff --git a/clients/client-wafv2/src/commands/CreateRuleGroupCommand.ts b/clients/client-wafv2/src/commands/CreateRuleGroupCommand.ts index a9f30be803dc7..c5682adfd0162 100644 --- a/clients/client-wafv2/src/commands/CreateRuleGroupCommand.ts +++ b/clients/client-wafv2/src/commands/CreateRuleGroupCommand.ts @@ -1142,6 +1142,7 @@ export interface CreateRuleGroupCommandOutput extends CreateRuleGroupResponse, _ * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class CreateRuleGroupCommand extends $Command diff --git a/clients/client-wafv2/src/commands/CreateWebACLCommand.ts b/clients/client-wafv2/src/commands/CreateWebACLCommand.ts index 4f9707a8c60b8..d0f4f138cff07 100644 --- a/clients/client-wafv2/src/commands/CreateWebACLCommand.ts +++ b/clients/client-wafv2/src/commands/CreateWebACLCommand.ts @@ -1186,6 +1186,7 @@ export interface CreateWebACLCommandOutput extends CreateWebACLResponse, __Metad * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class CreateWebACLCommand extends $Command diff --git a/clients/client-wafv2/src/commands/DeleteAPIKeyCommand.ts b/clients/client-wafv2/src/commands/DeleteAPIKeyCommand.ts index 1bd9dddecdbc4..ed62cb333b096 100644 --- a/clients/client-wafv2/src/commands/DeleteAPIKeyCommand.ts +++ b/clients/client-wafv2/src/commands/DeleteAPIKeyCommand.ts @@ -94,6 +94,7 @@ export interface DeleteAPIKeyCommandOutput extends DeleteAPIKeyResponse, __Metad * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class DeleteAPIKeyCommand extends $Command diff --git a/clients/client-wafv2/src/commands/DeleteFirewallManagerRuleGroupsCommand.ts b/clients/client-wafv2/src/commands/DeleteFirewallManagerRuleGroupsCommand.ts index 2197a7bc9a399..dc986b448dc5c 100644 --- a/clients/client-wafv2/src/commands/DeleteFirewallManagerRuleGroupsCommand.ts +++ b/clients/client-wafv2/src/commands/DeleteFirewallManagerRuleGroupsCommand.ts @@ -101,6 +101,7 @@ export interface DeleteFirewallManagerRuleGroupsCommandOutput * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class DeleteFirewallManagerRuleGroupsCommand extends $Command diff --git a/clients/client-wafv2/src/commands/DeleteIPSetCommand.ts b/clients/client-wafv2/src/commands/DeleteIPSetCommand.ts index 9e216918f3672..39af5dbe53ff4 100644 --- a/clients/client-wafv2/src/commands/DeleteIPSetCommand.ts +++ b/clients/client-wafv2/src/commands/DeleteIPSetCommand.ts @@ -106,6 +106,7 @@ export interface DeleteIPSetCommandOutput extends DeleteIPSetResponse, __Metadat * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class DeleteIPSetCommand extends $Command diff --git a/clients/client-wafv2/src/commands/DeleteLoggingConfigurationCommand.ts b/clients/client-wafv2/src/commands/DeleteLoggingConfigurationCommand.ts index 2891a3b8b8015..cf3cae046c2b5 100644 --- a/clients/client-wafv2/src/commands/DeleteLoggingConfigurationCommand.ts +++ b/clients/client-wafv2/src/commands/DeleteLoggingConfigurationCommand.ts @@ -94,6 +94,7 @@ export interface DeleteLoggingConfigurationCommandOutput extends DeleteLoggingCo * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class DeleteLoggingConfigurationCommand extends $Command diff --git a/clients/client-wafv2/src/commands/DeletePermissionPolicyCommand.ts b/clients/client-wafv2/src/commands/DeletePermissionPolicyCommand.ts index b961aed5891e0..a1d530f990997 100644 --- a/clients/client-wafv2/src/commands/DeletePermissionPolicyCommand.ts +++ b/clients/client-wafv2/src/commands/DeletePermissionPolicyCommand.ts @@ -85,6 +85,7 @@ export interface DeletePermissionPolicyCommandOutput extends DeletePermissionPol * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class DeletePermissionPolicyCommand extends $Command diff --git a/clients/client-wafv2/src/commands/DeleteRegexPatternSetCommand.ts b/clients/client-wafv2/src/commands/DeleteRegexPatternSetCommand.ts index 87ed450ce5bcf..dd4f70935388f 100644 --- a/clients/client-wafv2/src/commands/DeleteRegexPatternSetCommand.ts +++ b/clients/client-wafv2/src/commands/DeleteRegexPatternSetCommand.ts @@ -106,6 +106,7 @@ export interface DeleteRegexPatternSetCommandOutput extends DeleteRegexPatternSe * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class DeleteRegexPatternSetCommand extends $Command diff --git a/clients/client-wafv2/src/commands/DeleteRuleGroupCommand.ts b/clients/client-wafv2/src/commands/DeleteRuleGroupCommand.ts index 22d9ed6b2932f..142439cb975ef 100644 --- a/clients/client-wafv2/src/commands/DeleteRuleGroupCommand.ts +++ b/clients/client-wafv2/src/commands/DeleteRuleGroupCommand.ts @@ -106,6 +106,7 @@ export interface DeleteRuleGroupCommandOutput extends DeleteRuleGroupResponse, _ * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class DeleteRuleGroupCommand extends $Command diff --git a/clients/client-wafv2/src/commands/DeleteWebACLCommand.ts b/clients/client-wafv2/src/commands/DeleteWebACLCommand.ts index dd52376c11087..881361a0217f7 100644 --- a/clients/client-wafv2/src/commands/DeleteWebACLCommand.ts +++ b/clients/client-wafv2/src/commands/DeleteWebACLCommand.ts @@ -139,6 +139,7 @@ export interface DeleteWebACLCommandOutput extends DeleteWebACLResponse, __Metad * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class DeleteWebACLCommand extends $Command diff --git a/clients/client-wafv2/src/commands/DescribeAllManagedProductsCommand.ts b/clients/client-wafv2/src/commands/DescribeAllManagedProductsCommand.ts index 39d47cb7d4a64..a42aa54de3b8b 100644 --- a/clients/client-wafv2/src/commands/DescribeAllManagedProductsCommand.ts +++ b/clients/client-wafv2/src/commands/DescribeAllManagedProductsCommand.ts @@ -95,6 +95,7 @@ export interface DescribeAllManagedProductsCommandOutput extends DescribeAllMana * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class DescribeAllManagedProductsCommand extends $Command diff --git a/clients/client-wafv2/src/commands/DescribeManagedProductsByVendorCommand.ts b/clients/client-wafv2/src/commands/DescribeManagedProductsByVendorCommand.ts index 9be95f4124db3..2d159fcb052f9 100644 --- a/clients/client-wafv2/src/commands/DescribeManagedProductsByVendorCommand.ts +++ b/clients/client-wafv2/src/commands/DescribeManagedProductsByVendorCommand.ts @@ -101,6 +101,7 @@ export interface DescribeManagedProductsByVendorCommandOutput * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class DescribeManagedProductsByVendorCommand extends $Command diff --git a/clients/client-wafv2/src/commands/DescribeManagedRuleGroupCommand.ts b/clients/client-wafv2/src/commands/DescribeManagedRuleGroupCommand.ts index 14442bf35bf43..9acdadeb2b95c 100644 --- a/clients/client-wafv2/src/commands/DescribeManagedRuleGroupCommand.ts +++ b/clients/client-wafv2/src/commands/DescribeManagedRuleGroupCommand.ts @@ -173,6 +173,7 @@ export interface DescribeManagedRuleGroupCommandOutput extends DescribeManagedRu * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class DescribeManagedRuleGroupCommand extends $Command diff --git a/clients/client-wafv2/src/commands/DisassociateWebACLCommand.ts b/clients/client-wafv2/src/commands/DisassociateWebACLCommand.ts index 99a60344df9f5..f5d9c77a62a4b 100644 --- a/clients/client-wafv2/src/commands/DisassociateWebACLCommand.ts +++ b/clients/client-wafv2/src/commands/DisassociateWebACLCommand.ts @@ -94,6 +94,7 @@ export interface DisassociateWebACLCommandOutput extends DisassociateWebACLRespo * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class DisassociateWebACLCommand extends $Command diff --git a/clients/client-wafv2/src/commands/GenerateMobileSdkReleaseUrlCommand.ts b/clients/client-wafv2/src/commands/GenerateMobileSdkReleaseUrlCommand.ts index 4349a501f0a68..7eb1638faf8e2 100644 --- a/clients/client-wafv2/src/commands/GenerateMobileSdkReleaseUrlCommand.ts +++ b/clients/client-wafv2/src/commands/GenerateMobileSdkReleaseUrlCommand.ts @@ -94,6 +94,7 @@ export interface GenerateMobileSdkReleaseUrlCommandOutput * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class GenerateMobileSdkReleaseUrlCommand extends $Command diff --git a/clients/client-wafv2/src/commands/GetDecryptedAPIKeyCommand.ts b/clients/client-wafv2/src/commands/GetDecryptedAPIKeyCommand.ts index f30cbec729a29..e89b26f152371 100644 --- a/clients/client-wafv2/src/commands/GetDecryptedAPIKeyCommand.ts +++ b/clients/client-wafv2/src/commands/GetDecryptedAPIKeyCommand.ts @@ -100,6 +100,7 @@ export interface GetDecryptedAPIKeyCommandOutput extends GetDecryptedAPIKeyRespo * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class GetDecryptedAPIKeyCommand extends $Command diff --git a/clients/client-wafv2/src/commands/GetIPSetCommand.ts b/clients/client-wafv2/src/commands/GetIPSetCommand.ts index 8307205129184..1e922804b94c1 100644 --- a/clients/client-wafv2/src/commands/GetIPSetCommand.ts +++ b/clients/client-wafv2/src/commands/GetIPSetCommand.ts @@ -101,6 +101,7 @@ export interface GetIPSetCommandOutput extends GetIPSetResponse, __MetadataBeare * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class GetIPSetCommand extends $Command diff --git a/clients/client-wafv2/src/commands/GetLoggingConfigurationCommand.ts b/clients/client-wafv2/src/commands/GetLoggingConfigurationCommand.ts index a1cccd447b1a7..af26e7fd05555 100644 --- a/clients/client-wafv2/src/commands/GetLoggingConfigurationCommand.ts +++ b/clients/client-wafv2/src/commands/GetLoggingConfigurationCommand.ts @@ -184,6 +184,7 @@ export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigur * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class GetLoggingConfigurationCommand extends $Command diff --git a/clients/client-wafv2/src/commands/GetManagedRuleSetCommand.ts b/clients/client-wafv2/src/commands/GetManagedRuleSetCommand.ts index 4e6d0d917e7ef..a7097058f2b36 100644 --- a/clients/client-wafv2/src/commands/GetManagedRuleSetCommand.ts +++ b/clients/client-wafv2/src/commands/GetManagedRuleSetCommand.ts @@ -113,6 +113,7 @@ export interface GetManagedRuleSetCommandOutput extends GetManagedRuleSetRespons * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class GetManagedRuleSetCommand extends $Command diff --git a/clients/client-wafv2/src/commands/GetMobileSdkReleaseCommand.ts b/clients/client-wafv2/src/commands/GetMobileSdkReleaseCommand.ts index 8406dae610408..310c65c573dab 100644 --- a/clients/client-wafv2/src/commands/GetMobileSdkReleaseCommand.ts +++ b/clients/client-wafv2/src/commands/GetMobileSdkReleaseCommand.ts @@ -103,6 +103,7 @@ export interface GetMobileSdkReleaseCommandOutput extends GetMobileSdkReleaseRes * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class GetMobileSdkReleaseCommand extends $Command diff --git a/clients/client-wafv2/src/commands/GetPermissionPolicyCommand.ts b/clients/client-wafv2/src/commands/GetPermissionPolicyCommand.ts index d2208221925e6..cd07e77b95ede 100644 --- a/clients/client-wafv2/src/commands/GetPermissionPolicyCommand.ts +++ b/clients/client-wafv2/src/commands/GetPermissionPolicyCommand.ts @@ -87,6 +87,7 @@ export interface GetPermissionPolicyCommandOutput extends GetPermissionPolicyRes * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class GetPermissionPolicyCommand extends $Command diff --git a/clients/client-wafv2/src/commands/GetRateBasedStatementManagedKeysCommand.ts b/clients/client-wafv2/src/commands/GetRateBasedStatementManagedKeysCommand.ts index 70bc173622e30..611cb6f6daa35 100644 --- a/clients/client-wafv2/src/commands/GetRateBasedStatementManagedKeysCommand.ts +++ b/clients/client-wafv2/src/commands/GetRateBasedStatementManagedKeysCommand.ts @@ -129,6 +129,7 @@ export interface GetRateBasedStatementManagedKeysCommandOutput * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class GetRateBasedStatementManagedKeysCommand extends $Command diff --git a/clients/client-wafv2/src/commands/GetRegexPatternSetCommand.ts b/clients/client-wafv2/src/commands/GetRegexPatternSetCommand.ts index 79fe9758768df..9b0a482cde6a4 100644 --- a/clients/client-wafv2/src/commands/GetRegexPatternSetCommand.ts +++ b/clients/client-wafv2/src/commands/GetRegexPatternSetCommand.ts @@ -102,6 +102,7 @@ export interface GetRegexPatternSetCommandOutput extends GetRegexPatternSetRespo * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class GetRegexPatternSetCommand extends $Command diff --git a/clients/client-wafv2/src/commands/GetRuleGroupCommand.ts b/clients/client-wafv2/src/commands/GetRuleGroupCommand.ts index d118e29df1cf3..9126f8ed7339e 100644 --- a/clients/client-wafv2/src/commands/GetRuleGroupCommand.ts +++ b/clients/client-wafv2/src/commands/GetRuleGroupCommand.ts @@ -1114,6 +1114,7 @@ export interface GetRuleGroupCommandOutput extends GetRuleGroupResponse, __Metad * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class GetRuleGroupCommand extends $Command diff --git a/clients/client-wafv2/src/commands/GetSampledRequestsCommand.ts b/clients/client-wafv2/src/commands/GetSampledRequestsCommand.ts index 05a1f78217475..0b3ea3de12ef6 100644 --- a/clients/client-wafv2/src/commands/GetSampledRequestsCommand.ts +++ b/clients/client-wafv2/src/commands/GetSampledRequestsCommand.ts @@ -150,6 +150,7 @@ export interface GetSampledRequestsCommandOutput extends GetSampledRequestsRespo * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class GetSampledRequestsCommand extends $Command diff --git a/clients/client-wafv2/src/commands/GetWebACLCommand.ts b/clients/client-wafv2/src/commands/GetWebACLCommand.ts index 45a1b3cbc4f6a..fee0b5e1a6d6c 100644 --- a/clients/client-wafv2/src/commands/GetWebACLCommand.ts +++ b/clients/client-wafv2/src/commands/GetWebACLCommand.ts @@ -1326,6 +1326,7 @@ export interface GetWebACLCommandOutput extends GetWebACLResponse, __MetadataBea * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class GetWebACLCommand extends $Command diff --git a/clients/client-wafv2/src/commands/GetWebACLForResourceCommand.ts b/clients/client-wafv2/src/commands/GetWebACLForResourceCommand.ts index 69f6434f8d714..07fe8a6fd0cd0 100644 --- a/clients/client-wafv2/src/commands/GetWebACLForResourceCommand.ts +++ b/clients/client-wafv2/src/commands/GetWebACLForResourceCommand.ts @@ -1338,6 +1338,7 @@ export interface GetWebACLForResourceCommandOutput extends GetWebACLForResourceR * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class GetWebACLForResourceCommand extends $Command diff --git a/clients/client-wafv2/src/commands/ListAPIKeysCommand.ts b/clients/client-wafv2/src/commands/ListAPIKeysCommand.ts index cfdc5b3ab010d..83ac41da646ea 100644 --- a/clients/client-wafv2/src/commands/ListAPIKeysCommand.ts +++ b/clients/client-wafv2/src/commands/ListAPIKeysCommand.ts @@ -103,6 +103,7 @@ export interface ListAPIKeysCommandOutput extends ListAPIKeysResponse, __Metadat * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class ListAPIKeysCommand extends $Command diff --git a/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupVersionsCommand.ts b/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupVersionsCommand.ts index 60df71cdd93f8..1fca2beffb081 100644 --- a/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupVersionsCommand.ts +++ b/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupVersionsCommand.ts @@ -109,6 +109,7 @@ export interface ListAvailableManagedRuleGroupVersionsCommandOutput * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class ListAvailableManagedRuleGroupVersionsCommand extends $Command diff --git a/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupsCommand.ts b/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupsCommand.ts index e7fe94b2d66d5..d526bc5beac71 100644 --- a/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupsCommand.ts +++ b/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupsCommand.ts @@ -100,6 +100,7 @@ export interface ListAvailableManagedRuleGroupsCommandOutput * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class ListAvailableManagedRuleGroupsCommand extends $Command diff --git a/clients/client-wafv2/src/commands/ListIPSetsCommand.ts b/clients/client-wafv2/src/commands/ListIPSetsCommand.ts index 259b28e964f46..a73eadc789a90 100644 --- a/clients/client-wafv2/src/commands/ListIPSetsCommand.ts +++ b/clients/client-wafv2/src/commands/ListIPSetsCommand.ts @@ -95,6 +95,7 @@ export interface ListIPSetsCommandOutput extends ListIPSetsResponse, __MetadataB * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class ListIPSetsCommand extends $Command diff --git a/clients/client-wafv2/src/commands/ListLoggingConfigurationsCommand.ts b/clients/client-wafv2/src/commands/ListLoggingConfigurationsCommand.ts index c7c6a005974d5..4fa68785acf42 100644 --- a/clients/client-wafv2/src/commands/ListLoggingConfigurationsCommand.ts +++ b/clients/client-wafv2/src/commands/ListLoggingConfigurationsCommand.ts @@ -182,6 +182,7 @@ export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfi * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class ListLoggingConfigurationsCommand extends $Command diff --git a/clients/client-wafv2/src/commands/ListManagedRuleSetsCommand.ts b/clients/client-wafv2/src/commands/ListManagedRuleSetsCommand.ts index 62c910b4cc54a..81984644d615f 100644 --- a/clients/client-wafv2/src/commands/ListManagedRuleSetsCommand.ts +++ b/clients/client-wafv2/src/commands/ListManagedRuleSetsCommand.ts @@ -99,6 +99,7 @@ export interface ListManagedRuleSetsCommandOutput extends ListManagedRuleSetsRes * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class ListManagedRuleSetsCommand extends $Command diff --git a/clients/client-wafv2/src/commands/ListMobileSdkReleasesCommand.ts b/clients/client-wafv2/src/commands/ListMobileSdkReleasesCommand.ts index d0f22b8eb7af8..c53e015a3c6d9 100644 --- a/clients/client-wafv2/src/commands/ListMobileSdkReleasesCommand.ts +++ b/clients/client-wafv2/src/commands/ListMobileSdkReleasesCommand.ts @@ -94,6 +94,7 @@ export interface ListMobileSdkReleasesCommandOutput extends ListMobileSdkRelease * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class ListMobileSdkReleasesCommand extends $Command diff --git a/clients/client-wafv2/src/commands/ListRegexPatternSetsCommand.ts b/clients/client-wafv2/src/commands/ListRegexPatternSetsCommand.ts index 90efc973d4132..fbf462ed0ee5a 100644 --- a/clients/client-wafv2/src/commands/ListRegexPatternSetsCommand.ts +++ b/clients/client-wafv2/src/commands/ListRegexPatternSetsCommand.ts @@ -95,6 +95,7 @@ export interface ListRegexPatternSetsCommandOutput extends ListRegexPatternSetsR * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class ListRegexPatternSetsCommand extends $Command diff --git a/clients/client-wafv2/src/commands/ListResourcesForWebACLCommand.ts b/clients/client-wafv2/src/commands/ListResourcesForWebACLCommand.ts index dc85c8f1c2633..61f0969e18f6d 100644 --- a/clients/client-wafv2/src/commands/ListResourcesForWebACLCommand.ts +++ b/clients/client-wafv2/src/commands/ListResourcesForWebACLCommand.ts @@ -101,6 +101,7 @@ export interface ListResourcesForWebACLCommandOutput extends ListResourcesForWeb * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class ListResourcesForWebACLCommand extends $Command diff --git a/clients/client-wafv2/src/commands/ListRuleGroupsCommand.ts b/clients/client-wafv2/src/commands/ListRuleGroupsCommand.ts index e05007ba7e8a7..510b2eeb7f439 100644 --- a/clients/client-wafv2/src/commands/ListRuleGroupsCommand.ts +++ b/clients/client-wafv2/src/commands/ListRuleGroupsCommand.ts @@ -95,6 +95,7 @@ export interface ListRuleGroupsCommandOutput extends ListRuleGroupsResponse, __M * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class ListRuleGroupsCommand extends $Command diff --git a/clients/client-wafv2/src/commands/ListTagsForResourceCommand.ts b/clients/client-wafv2/src/commands/ListTagsForResourceCommand.ts index ff99abd3d13e5..241de485ffc12 100644 --- a/clients/client-wafv2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-wafv2/src/commands/ListTagsForResourceCommand.ts @@ -114,6 +114,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-wafv2/src/commands/ListWebACLsCommand.ts b/clients/client-wafv2/src/commands/ListWebACLsCommand.ts index 72a51a5d77f26..1b4bbc2407842 100644 --- a/clients/client-wafv2/src/commands/ListWebACLsCommand.ts +++ b/clients/client-wafv2/src/commands/ListWebACLsCommand.ts @@ -95,6 +95,7 @@ export interface ListWebACLsCommandOutput extends ListWebACLsResponse, __Metadat * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class ListWebACLsCommand extends $Command diff --git a/clients/client-wafv2/src/commands/PutLoggingConfigurationCommand.ts b/clients/client-wafv2/src/commands/PutLoggingConfigurationCommand.ts index ec3d5b5d42e29..834729ddc10f2 100644 --- a/clients/client-wafv2/src/commands/PutLoggingConfigurationCommand.ts +++ b/clients/client-wafv2/src/commands/PutLoggingConfigurationCommand.ts @@ -344,6 +344,7 @@ export interface PutLoggingConfigurationCommandOutput extends PutLoggingConfigur * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class PutLoggingConfigurationCommand extends $Command diff --git a/clients/client-wafv2/src/commands/PutManagedRuleSetVersionsCommand.ts b/clients/client-wafv2/src/commands/PutManagedRuleSetVersionsCommand.ts index 9a253b495bf6d..d1618005c55a5 100644 --- a/clients/client-wafv2/src/commands/PutManagedRuleSetVersionsCommand.ts +++ b/clients/client-wafv2/src/commands/PutManagedRuleSetVersionsCommand.ts @@ -115,6 +115,7 @@ export interface PutManagedRuleSetVersionsCommandOutput extends PutManagedRuleSe * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class PutManagedRuleSetVersionsCommand extends $Command diff --git a/clients/client-wafv2/src/commands/PutPermissionPolicyCommand.ts b/clients/client-wafv2/src/commands/PutPermissionPolicyCommand.ts index 89994e3144e3a..dbcfc16b4f1e2 100644 --- a/clients/client-wafv2/src/commands/PutPermissionPolicyCommand.ts +++ b/clients/client-wafv2/src/commands/PutPermissionPolicyCommand.ts @@ -129,6 +129,7 @@ export interface PutPermissionPolicyCommandOutput extends PutPermissionPolicyRes * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class PutPermissionPolicyCommand extends $Command diff --git a/clients/client-wafv2/src/commands/TagResourceCommand.ts b/clients/client-wafv2/src/commands/TagResourceCommand.ts index 058c0223168b9..c50279ad8b9bc 100644 --- a/clients/client-wafv2/src/commands/TagResourceCommand.ts +++ b/clients/client-wafv2/src/commands/TagResourceCommand.ts @@ -113,6 +113,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-wafv2/src/commands/UntagResourceCommand.ts b/clients/client-wafv2/src/commands/UntagResourceCommand.ts index 07db29b0165ec..753037421f87e 100644 --- a/clients/client-wafv2/src/commands/UntagResourceCommand.ts +++ b/clients/client-wafv2/src/commands/UntagResourceCommand.ts @@ -100,6 +100,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-wafv2/src/commands/UpdateIPSetCommand.ts b/clients/client-wafv2/src/commands/UpdateIPSetCommand.ts index 3e7743f41a0f8..da8c56d6e555d 100644 --- a/clients/client-wafv2/src/commands/UpdateIPSetCommand.ts +++ b/clients/client-wafv2/src/commands/UpdateIPSetCommand.ts @@ -146,6 +146,7 @@ export interface UpdateIPSetCommandOutput extends UpdateIPSetResponse, __Metadat * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class UpdateIPSetCommand extends $Command diff --git a/clients/client-wafv2/src/commands/UpdateManagedRuleSetVersionExpiryDateCommand.ts b/clients/client-wafv2/src/commands/UpdateManagedRuleSetVersionExpiryDateCommand.ts index 724fc91ece047..063fb42e4bf43 100644 --- a/clients/client-wafv2/src/commands/UpdateManagedRuleSetVersionExpiryDateCommand.ts +++ b/clients/client-wafv2/src/commands/UpdateManagedRuleSetVersionExpiryDateCommand.ts @@ -116,6 +116,7 @@ export interface UpdateManagedRuleSetVersionExpiryDateCommandOutput * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class UpdateManagedRuleSetVersionExpiryDateCommand extends $Command diff --git a/clients/client-wafv2/src/commands/UpdateRegexPatternSetCommand.ts b/clients/client-wafv2/src/commands/UpdateRegexPatternSetCommand.ts index 59c94a173e652..f2372f2621368 100644 --- a/clients/client-wafv2/src/commands/UpdateRegexPatternSetCommand.ts +++ b/clients/client-wafv2/src/commands/UpdateRegexPatternSetCommand.ts @@ -148,6 +148,7 @@ export interface UpdateRegexPatternSetCommandOutput extends UpdateRegexPatternSe * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class UpdateRegexPatternSetCommand extends $Command diff --git a/clients/client-wafv2/src/commands/UpdateRuleGroupCommand.ts b/clients/client-wafv2/src/commands/UpdateRuleGroupCommand.ts index ca8820dc1456b..6ea506eda678f 100644 --- a/clients/client-wafv2/src/commands/UpdateRuleGroupCommand.ts +++ b/clients/client-wafv2/src/commands/UpdateRuleGroupCommand.ts @@ -1172,6 +1172,7 @@ export interface UpdateRuleGroupCommandOutput extends UpdateRuleGroupResponse, _ * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class UpdateRuleGroupCommand extends $Command diff --git a/clients/client-wafv2/src/commands/UpdateWebACLCommand.ts b/clients/client-wafv2/src/commands/UpdateWebACLCommand.ts index 2a464edda9672..ff5da18ccd001 100644 --- a/clients/client-wafv2/src/commands/UpdateWebACLCommand.ts +++ b/clients/client-wafv2/src/commands/UpdateWebACLCommand.ts @@ -1205,6 +1205,7 @@ export interface UpdateWebACLCommandOutput extends UpdateWebACLResponse, __Metad * @throws {@link WAFV2ServiceException} *

Base exception class for all service exceptions from WAFV2 service.

* + * * @public */ export class UpdateWebACLCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/AssociateLensesCommand.ts b/clients/client-wellarchitected/src/commands/AssociateLensesCommand.ts index 2321aaceab4c3..8927962cc511c 100644 --- a/clients/client-wellarchitected/src/commands/AssociateLensesCommand.ts +++ b/clients/client-wellarchitected/src/commands/AssociateLensesCommand.ts @@ -84,6 +84,7 @@ export interface AssociateLensesCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class AssociateLensesCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/AssociateProfilesCommand.ts b/clients/client-wellarchitected/src/commands/AssociateProfilesCommand.ts index c3fe69abdbd85..6e226121bd754 100644 --- a/clients/client-wellarchitected/src/commands/AssociateProfilesCommand.ts +++ b/clients/client-wellarchitected/src/commands/AssociateProfilesCommand.ts @@ -74,6 +74,7 @@ export interface AssociateProfilesCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class AssociateProfilesCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/CreateLensShareCommand.ts b/clients/client-wellarchitected/src/commands/CreateLensShareCommand.ts index 3b4c1ff5116ce..1a8670e0dd4ce 100644 --- a/clients/client-wellarchitected/src/commands/CreateLensShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateLensShareCommand.ts @@ -98,6 +98,7 @@ export interface CreateLensShareCommandOutput extends CreateLensShareOutput, __M * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class CreateLensShareCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/CreateLensVersionCommand.ts b/clients/client-wellarchitected/src/commands/CreateLensVersionCommand.ts index 1896477094f21..8d747053354a6 100644 --- a/clients/client-wellarchitected/src/commands/CreateLensVersionCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateLensVersionCommand.ts @@ -86,6 +86,7 @@ export interface CreateLensVersionCommandOutput extends CreateLensVersionOutput, * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class CreateLensVersionCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/CreateMilestoneCommand.ts b/clients/client-wellarchitected/src/commands/CreateMilestoneCommand.ts index 00c00b4be09fc..628aa4e175f0f 100644 --- a/clients/client-wellarchitected/src/commands/CreateMilestoneCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateMilestoneCommand.ts @@ -79,6 +79,7 @@ export interface CreateMilestoneCommandOutput extends CreateMilestoneOutput, __M * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class CreateMilestoneCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/CreateProfileCommand.ts b/clients/client-wellarchitected/src/commands/CreateProfileCommand.ts index cbcdd1aabc93b..c98448c1fe71a 100644 --- a/clients/client-wellarchitected/src/commands/CreateProfileCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateProfileCommand.ts @@ -87,6 +87,7 @@ export interface CreateProfileCommandOutput extends CreateProfileOutput, __Metad * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class CreateProfileCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/CreateProfileShareCommand.ts b/clients/client-wellarchitected/src/commands/CreateProfileShareCommand.ts index 1c070fad63572..2541ae918effb 100644 --- a/clients/client-wellarchitected/src/commands/CreateProfileShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateProfileShareCommand.ts @@ -79,6 +79,7 @@ export interface CreateProfileShareCommandOutput extends CreateProfileShareOutpu * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class CreateProfileShareCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/CreateReviewTemplateCommand.ts b/clients/client-wellarchitected/src/commands/CreateReviewTemplateCommand.ts index 120f3ed3c5cc1..b2d60de62151b 100644 --- a/clients/client-wellarchitected/src/commands/CreateReviewTemplateCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateReviewTemplateCommand.ts @@ -96,6 +96,7 @@ export interface CreateReviewTemplateCommandOutput extends CreateReviewTemplateO * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class CreateReviewTemplateCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/CreateTemplateShareCommand.ts b/clients/client-wellarchitected/src/commands/CreateTemplateShareCommand.ts index 9e203c3f7fc1b..9115dda4d26b7 100644 --- a/clients/client-wellarchitected/src/commands/CreateTemplateShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateTemplateShareCommand.ts @@ -93,6 +93,7 @@ export interface CreateTemplateShareCommandOutput extends CreateTemplateShareOut * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class CreateTemplateShareCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/CreateWorkloadCommand.ts b/clients/client-wellarchitected/src/commands/CreateWorkloadCommand.ts index 58a827d685ac1..82a9e064d85d7 100644 --- a/clients/client-wellarchitected/src/commands/CreateWorkloadCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateWorkloadCommand.ts @@ -158,6 +158,7 @@ export interface CreateWorkloadCommandOutput extends CreateWorkloadOutput, __Met * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class CreateWorkloadCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/CreateWorkloadShareCommand.ts b/clients/client-wellarchitected/src/commands/CreateWorkloadShareCommand.ts index 5903725927e76..49576b1b83554 100644 --- a/clients/client-wellarchitected/src/commands/CreateWorkloadShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateWorkloadShareCommand.ts @@ -87,6 +87,7 @@ export interface CreateWorkloadShareCommandOutput extends CreateWorkloadShareOut * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class CreateWorkloadShareCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/DeleteLensCommand.ts b/clients/client-wellarchitected/src/commands/DeleteLensCommand.ts index 1f6e4e8ad1c93..458256a629a7a 100644 --- a/clients/client-wellarchitected/src/commands/DeleteLensCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteLensCommand.ts @@ -87,6 +87,7 @@ export interface DeleteLensCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class DeleteLensCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/DeleteLensShareCommand.ts b/clients/client-wellarchitected/src/commands/DeleteLensShareCommand.ts index 014f8a1371294..a8aa3671ebdbf 100644 --- a/clients/client-wellarchitected/src/commands/DeleteLensShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteLensShareCommand.ts @@ -87,6 +87,7 @@ export interface DeleteLensShareCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class DeleteLensShareCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/DeleteProfileCommand.ts b/clients/client-wellarchitected/src/commands/DeleteProfileCommand.ts index f0d215b55fe77..2eb64816e7bee 100644 --- a/clients/client-wellarchitected/src/commands/DeleteProfileCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteProfileCommand.ts @@ -83,6 +83,7 @@ export interface DeleteProfileCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class DeleteProfileCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/DeleteProfileShareCommand.ts b/clients/client-wellarchitected/src/commands/DeleteProfileShareCommand.ts index 95d76fbc4860f..fe847a235cdd9 100644 --- a/clients/client-wellarchitected/src/commands/DeleteProfileShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteProfileShareCommand.ts @@ -73,6 +73,7 @@ export interface DeleteProfileShareCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class DeleteProfileShareCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/DeleteReviewTemplateCommand.ts b/clients/client-wellarchitected/src/commands/DeleteReviewTemplateCommand.ts index 20b09f6ef1bb8..32a76bee7494e 100644 --- a/clients/client-wellarchitected/src/commands/DeleteReviewTemplateCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteReviewTemplateCommand.ts @@ -76,6 +76,7 @@ export interface DeleteReviewTemplateCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class DeleteReviewTemplateCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/DeleteTemplateShareCommand.ts b/clients/client-wellarchitected/src/commands/DeleteTemplateShareCommand.ts index fa1c6fdf233a4..b0e318bc59280 100644 --- a/clients/client-wellarchitected/src/commands/DeleteTemplateShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteTemplateShareCommand.ts @@ -76,6 +76,7 @@ export interface DeleteTemplateShareCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class DeleteTemplateShareCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/DeleteWorkloadCommand.ts b/clients/client-wellarchitected/src/commands/DeleteWorkloadCommand.ts index 15b5dc8104119..dd52ed502be9a 100644 --- a/clients/client-wellarchitected/src/commands/DeleteWorkloadCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteWorkloadCommand.ts @@ -72,6 +72,7 @@ export interface DeleteWorkloadCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class DeleteWorkloadCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/DeleteWorkloadShareCommand.ts b/clients/client-wellarchitected/src/commands/DeleteWorkloadShareCommand.ts index 8c40740c52c6c..1924989d1874c 100644 --- a/clients/client-wellarchitected/src/commands/DeleteWorkloadShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteWorkloadShareCommand.ts @@ -73,6 +73,7 @@ export interface DeleteWorkloadShareCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class DeleteWorkloadShareCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/DisassociateLensesCommand.ts b/clients/client-wellarchitected/src/commands/DisassociateLensesCommand.ts index d6d4ec6138427..309c9143b3627 100644 --- a/clients/client-wellarchitected/src/commands/DisassociateLensesCommand.ts +++ b/clients/client-wellarchitected/src/commands/DisassociateLensesCommand.ts @@ -79,6 +79,7 @@ export interface DisassociateLensesCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class DisassociateLensesCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/DisassociateProfilesCommand.ts b/clients/client-wellarchitected/src/commands/DisassociateProfilesCommand.ts index 4a80d2b86f3a4..5bab3ab9bd45d 100644 --- a/clients/client-wellarchitected/src/commands/DisassociateProfilesCommand.ts +++ b/clients/client-wellarchitected/src/commands/DisassociateProfilesCommand.ts @@ -74,6 +74,7 @@ export interface DisassociateProfilesCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class DisassociateProfilesCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ExportLensCommand.ts b/clients/client-wellarchitected/src/commands/ExportLensCommand.ts index 9993167a96590..5d361d3d07dbc 100644 --- a/clients/client-wellarchitected/src/commands/ExportLensCommand.ts +++ b/clients/client-wellarchitected/src/commands/ExportLensCommand.ts @@ -86,6 +86,7 @@ export interface ExportLensCommandOutput extends ExportLensOutput, __MetadataBea * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ExportLensCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/GetAnswerCommand.ts b/clients/client-wellarchitected/src/commands/GetAnswerCommand.ts index dae0cf6f20908..d01f8582e5bf7 100644 --- a/clients/client-wellarchitected/src/commands/GetAnswerCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetAnswerCommand.ts @@ -130,6 +130,7 @@ export interface GetAnswerCommandOutput extends GetAnswerOutput, __MetadataBeare * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class GetAnswerCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/GetConsolidatedReportCommand.ts b/clients/client-wellarchitected/src/commands/GetConsolidatedReportCommand.ts index 1d5d22b6286be..70e05e331557d 100644 --- a/clients/client-wellarchitected/src/commands/GetConsolidatedReportCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetConsolidatedReportCommand.ts @@ -114,6 +114,7 @@ export interface GetConsolidatedReportCommandOutput extends GetConsolidatedRepor * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class GetConsolidatedReportCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/GetGlobalSettingsCommand.ts b/clients/client-wellarchitected/src/commands/GetGlobalSettingsCommand.ts index a06f0760bf96d..18e7d27cc3098 100644 --- a/clients/client-wellarchitected/src/commands/GetGlobalSettingsCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetGlobalSettingsCommand.ts @@ -74,6 +74,7 @@ export interface GetGlobalSettingsCommandOutput extends GetGlobalSettingsOutput, * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class GetGlobalSettingsCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/GetLensCommand.ts b/clients/client-wellarchitected/src/commands/GetLensCommand.ts index 266daeede5c80..a99a1a1cf1e7a 100644 --- a/clients/client-wellarchitected/src/commands/GetLensCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetLensCommand.ts @@ -81,6 +81,7 @@ export interface GetLensCommandOutput extends GetLensOutput, __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class GetLensCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/GetLensReviewCommand.ts b/clients/client-wellarchitected/src/commands/GetLensReviewCommand.ts index cab4a7e69368a..3bca619545b61 100644 --- a/clients/client-wellarchitected/src/commands/GetLensReviewCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetLensReviewCommand.ts @@ -118,6 +118,7 @@ export interface GetLensReviewCommandOutput extends GetLensReviewOutput, __Metad * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class GetLensReviewCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/GetLensReviewReportCommand.ts b/clients/client-wellarchitected/src/commands/GetLensReviewReportCommand.ts index 52c3dd89841b0..b75f35703053c 100644 --- a/clients/client-wellarchitected/src/commands/GetLensReviewReportCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetLensReviewReportCommand.ts @@ -78,6 +78,7 @@ export interface GetLensReviewReportCommandOutput extends GetLensReviewReportOut * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class GetLensReviewReportCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/GetLensVersionDifferenceCommand.ts b/clients/client-wellarchitected/src/commands/GetLensVersionDifferenceCommand.ts index 20cf50cb66ddf..4e4c03235841d 100644 --- a/clients/client-wellarchitected/src/commands/GetLensVersionDifferenceCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetLensVersionDifferenceCommand.ts @@ -92,6 +92,7 @@ export interface GetLensVersionDifferenceCommandOutput extends GetLensVersionDif * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class GetLensVersionDifferenceCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/GetMilestoneCommand.ts b/clients/client-wellarchitected/src/commands/GetMilestoneCommand.ts index cea916e8aca26..1fa1736d435cb 100644 --- a/clients/client-wellarchitected/src/commands/GetMilestoneCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetMilestoneCommand.ts @@ -139,6 +139,7 @@ export interface GetMilestoneCommandOutput extends GetMilestoneOutput, __Metadat * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class GetMilestoneCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/GetProfileCommand.ts b/clients/client-wellarchitected/src/commands/GetProfileCommand.ts index 90c7588a176ff..1a4e159727ed2 100644 --- a/clients/client-wellarchitected/src/commands/GetProfileCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetProfileCommand.ts @@ -102,6 +102,7 @@ export interface GetProfileCommandOutput extends GetProfileOutput, __MetadataBea * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class GetProfileCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/GetProfileTemplateCommand.ts b/clients/client-wellarchitected/src/commands/GetProfileTemplateCommand.ts index 8916f883e21b7..a9921fd7bebb6 100644 --- a/clients/client-wellarchitected/src/commands/GetProfileTemplateCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetProfileTemplateCommand.ts @@ -88,6 +88,7 @@ export interface GetProfileTemplateCommandOutput extends GetProfileTemplateOutpu * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class GetProfileTemplateCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/GetReviewTemplateAnswerCommand.ts b/clients/client-wellarchitected/src/commands/GetReviewTemplateAnswerCommand.ts index 1553c852231e4..0b2e9f5627843 100644 --- a/clients/client-wellarchitected/src/commands/GetReviewTemplateAnswerCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetReviewTemplateAnswerCommand.ts @@ -123,6 +123,7 @@ export interface GetReviewTemplateAnswerCommandOutput extends GetReviewTemplateA * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class GetReviewTemplateAnswerCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/GetReviewTemplateCommand.ts b/clients/client-wellarchitected/src/commands/GetReviewTemplateCommand.ts index 04db47906b1b3..00e53b69a1fed 100644 --- a/clients/client-wellarchitected/src/commands/GetReviewTemplateCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetReviewTemplateCommand.ts @@ -88,6 +88,7 @@ export interface GetReviewTemplateCommandOutput extends GetReviewTemplateOutput, * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class GetReviewTemplateCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/GetReviewTemplateLensReviewCommand.ts b/clients/client-wellarchitected/src/commands/GetReviewTemplateLensReviewCommand.ts index 2eb1b54223e52..990890c5777f0 100644 --- a/clients/client-wellarchitected/src/commands/GetReviewTemplateLensReviewCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetReviewTemplateLensReviewCommand.ts @@ -97,6 +97,7 @@ export interface GetReviewTemplateLensReviewCommandOutput extends GetReviewTempl * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class GetReviewTemplateLensReviewCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/GetWorkloadCommand.ts b/clients/client-wellarchitected/src/commands/GetWorkloadCommand.ts index 248b20ebf5c55..2ae118ae46f48 100644 --- a/clients/client-wellarchitected/src/commands/GetWorkloadCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetWorkloadCommand.ts @@ -132,6 +132,7 @@ export interface GetWorkloadCommandOutput extends GetWorkloadOutput, __MetadataB * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class GetWorkloadCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ImportLensCommand.ts b/clients/client-wellarchitected/src/commands/ImportLensCommand.ts index aefcc23d0a4b8..ca7563b2437a8 100644 --- a/clients/client-wellarchitected/src/commands/ImportLensCommand.ts +++ b/clients/client-wellarchitected/src/commands/ImportLensCommand.ts @@ -101,6 +101,7 @@ export interface ImportLensCommandOutput extends ImportLensOutput, __MetadataBea * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ImportLensCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListAnswersCommand.ts b/clients/client-wellarchitected/src/commands/ListAnswersCommand.ts index 5144cc6f19dc4..0ced09f3bb9de 100644 --- a/clients/client-wellarchitected/src/commands/ListAnswersCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListAnswersCommand.ts @@ -131,6 +131,7 @@ export interface ListAnswersCommandOutput extends ListAnswersOutput, __MetadataB * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListAnswersCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListCheckDetailsCommand.ts b/clients/client-wellarchitected/src/commands/ListCheckDetailsCommand.ts index c65a0ee2582fc..cc3de2e90e2a8 100644 --- a/clients/client-wellarchitected/src/commands/ListCheckDetailsCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListCheckDetailsCommand.ts @@ -93,6 +93,7 @@ export interface ListCheckDetailsCommandOutput extends ListCheckDetailsOutput, _ * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListCheckDetailsCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListCheckSummariesCommand.ts b/clients/client-wellarchitected/src/commands/ListCheckSummariesCommand.ts index 2f7ed238e283e..c8e266fbf6f25 100644 --- a/clients/client-wellarchitected/src/commands/ListCheckSummariesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListCheckSummariesCommand.ts @@ -93,6 +93,7 @@ export interface ListCheckSummariesCommandOutput extends ListCheckSummariesOutpu * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListCheckSummariesCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListLensReviewImprovementsCommand.ts b/clients/client-wellarchitected/src/commands/ListLensReviewImprovementsCommand.ts index dbfdbb9e4e209..7c06ca9a0e9e6 100644 --- a/clients/client-wellarchitected/src/commands/ListLensReviewImprovementsCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListLensReviewImprovementsCommand.ts @@ -100,6 +100,7 @@ export interface ListLensReviewImprovementsCommandOutput extends ListLensReviewI * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListLensReviewImprovementsCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListLensReviewsCommand.ts b/clients/client-wellarchitected/src/commands/ListLensReviewsCommand.ts index eccc6cd92d1f5..8ac63a7dfa74f 100644 --- a/clients/client-wellarchitected/src/commands/ListLensReviewsCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListLensReviewsCommand.ts @@ -97,6 +97,7 @@ export interface ListLensReviewsCommandOutput extends ListLensReviewsOutput, __M * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListLensReviewsCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListLensSharesCommand.ts b/clients/client-wellarchitected/src/commands/ListLensSharesCommand.ts index ddf148dc50c08..5adb862ad305c 100644 --- a/clients/client-wellarchitected/src/commands/ListLensSharesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListLensSharesCommand.ts @@ -82,6 +82,7 @@ export interface ListLensSharesCommandOutput extends ListLensSharesOutput, __Met * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListLensSharesCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListLensesCommand.ts b/clients/client-wellarchitected/src/commands/ListLensesCommand.ts index cb1d220e646bd..7381ed45e758c 100644 --- a/clients/client-wellarchitected/src/commands/ListLensesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListLensesCommand.ts @@ -85,6 +85,7 @@ export interface ListLensesCommandOutput extends ListLensesOutput, __MetadataBea * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListLensesCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListMilestonesCommand.ts b/clients/client-wellarchitected/src/commands/ListMilestonesCommand.ts index ffcac5855772a..c96b65e9ad17e 100644 --- a/clients/client-wellarchitected/src/commands/ListMilestonesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListMilestonesCommand.ts @@ -103,6 +103,7 @@ export interface ListMilestonesCommandOutput extends ListMilestonesOutput, __Met * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListMilestonesCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListNotificationsCommand.ts b/clients/client-wellarchitected/src/commands/ListNotificationsCommand.ts index 30b81ea902726..d99f98c960b40 100644 --- a/clients/client-wellarchitected/src/commands/ListNotificationsCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListNotificationsCommand.ts @@ -85,6 +85,7 @@ export interface ListNotificationsCommandOutput extends ListNotificationsOutput, * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListNotificationsCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListProfileNotificationsCommand.ts b/clients/client-wellarchitected/src/commands/ListProfileNotificationsCommand.ts index 5cded691c234c..e7dbc5f825ca8 100644 --- a/clients/client-wellarchitected/src/commands/ListProfileNotificationsCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListProfileNotificationsCommand.ts @@ -80,6 +80,7 @@ export interface ListProfileNotificationsCommandOutput extends ListProfileNotifi * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListProfileNotificationsCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListProfileSharesCommand.ts b/clients/client-wellarchitected/src/commands/ListProfileSharesCommand.ts index 80a2692137cf9..582ebfae69118 100644 --- a/clients/client-wellarchitected/src/commands/ListProfileSharesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListProfileSharesCommand.ts @@ -82,6 +82,7 @@ export interface ListProfileSharesCommandOutput extends ListProfileSharesOutput, * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListProfileSharesCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListProfilesCommand.ts b/clients/client-wellarchitected/src/commands/ListProfilesCommand.ts index 1457a99cfa067..638a0f6656947 100644 --- a/clients/client-wellarchitected/src/commands/ListProfilesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListProfilesCommand.ts @@ -81,6 +81,7 @@ export interface ListProfilesCommandOutput extends ListProfilesOutput, __Metadat * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListProfilesCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListReviewTemplateAnswersCommand.ts b/clients/client-wellarchitected/src/commands/ListReviewTemplateAnswersCommand.ts index c01eb1d1d7e29..2b7027b04d546 100644 --- a/clients/client-wellarchitected/src/commands/ListReviewTemplateAnswersCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListReviewTemplateAnswersCommand.ts @@ -123,6 +123,7 @@ export interface ListReviewTemplateAnswersCommandOutput extends ListReviewTempla * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListReviewTemplateAnswersCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListReviewTemplatesCommand.ts b/clients/client-wellarchitected/src/commands/ListReviewTemplatesCommand.ts index e1c5d5d9aeb50..bb036c8381cf2 100644 --- a/clients/client-wellarchitected/src/commands/ListReviewTemplatesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListReviewTemplatesCommand.ts @@ -81,6 +81,7 @@ export interface ListReviewTemplatesCommandOutput extends ListReviewTemplatesOut * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListReviewTemplatesCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListShareInvitationsCommand.ts b/clients/client-wellarchitected/src/commands/ListShareInvitationsCommand.ts index 75ff27c104a60..60aaad065b3ba 100644 --- a/clients/client-wellarchitected/src/commands/ListShareInvitationsCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListShareInvitationsCommand.ts @@ -94,6 +94,7 @@ export interface ListShareInvitationsCommandOutput extends ListShareInvitationsO * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListShareInvitationsCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListTagsForResourceCommand.ts b/clients/client-wellarchitected/src/commands/ListTagsForResourceCommand.ts index 50bb2b6344d39..35777a13709eb 100644 --- a/clients/client-wellarchitected/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListTagsForResourceCommand.ts @@ -66,6 +66,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListTemplateSharesCommand.ts b/clients/client-wellarchitected/src/commands/ListTemplateSharesCommand.ts index 9a9f9bd06b970..d8940d12103cd 100644 --- a/clients/client-wellarchitected/src/commands/ListTemplateSharesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListTemplateSharesCommand.ts @@ -83,6 +83,7 @@ export interface ListTemplateSharesCommandOutput extends ListTemplateSharesOutpu * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListTemplateSharesCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListWorkloadSharesCommand.ts b/clients/client-wellarchitected/src/commands/ListWorkloadSharesCommand.ts index 74eae02e25ca2..e7578cb7fecf6 100644 --- a/clients/client-wellarchitected/src/commands/ListWorkloadSharesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListWorkloadSharesCommand.ts @@ -84,6 +84,7 @@ export interface ListWorkloadSharesCommandOutput extends ListWorkloadSharesOutpu * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListWorkloadSharesCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/ListWorkloadsCommand.ts b/clients/client-wellarchitected/src/commands/ListWorkloadsCommand.ts index 6655649337cc5..4a4390373bf34 100644 --- a/clients/client-wellarchitected/src/commands/ListWorkloadsCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListWorkloadsCommand.ts @@ -94,6 +94,7 @@ export interface ListWorkloadsCommandOutput extends ListWorkloadsOutput, __Metad * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class ListWorkloadsCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/TagResourceCommand.ts b/clients/client-wellarchitected/src/commands/TagResourceCommand.ts index 33f13d2568dad..402c7e1960c0d 100644 --- a/clients/client-wellarchitected/src/commands/TagResourceCommand.ts +++ b/clients/client-wellarchitected/src/commands/TagResourceCommand.ts @@ -65,6 +65,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UntagResourceCommand.ts b/clients/client-wellarchitected/src/commands/UntagResourceCommand.ts index 7025ca4e5b29c..d1ee261e6fc89 100644 --- a/clients/client-wellarchitected/src/commands/UntagResourceCommand.ts +++ b/clients/client-wellarchitected/src/commands/UntagResourceCommand.ts @@ -69,6 +69,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UpdateAnswerCommand.ts b/clients/client-wellarchitected/src/commands/UpdateAnswerCommand.ts index 5035ab42b7277..761e20c6f892c 100644 --- a/clients/client-wellarchitected/src/commands/UpdateAnswerCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateAnswerCommand.ts @@ -144,6 +144,7 @@ export interface UpdateAnswerCommandOutput extends UpdateAnswerOutput, __Metadat * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UpdateAnswerCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UpdateGlobalSettingsCommand.ts b/clients/client-wellarchitected/src/commands/UpdateGlobalSettingsCommand.ts index b79120cb1690f..dd19fae8ba074 100644 --- a/clients/client-wellarchitected/src/commands/UpdateGlobalSettingsCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateGlobalSettingsCommand.ts @@ -75,6 +75,7 @@ export interface UpdateGlobalSettingsCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UpdateGlobalSettingsCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UpdateIntegrationCommand.ts b/clients/client-wellarchitected/src/commands/UpdateIntegrationCommand.ts index 8d4226943d886..4757cf38463cc 100644 --- a/clients/client-wellarchitected/src/commands/UpdateIntegrationCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateIntegrationCommand.ts @@ -73,6 +73,7 @@ export interface UpdateIntegrationCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UpdateIntegrationCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UpdateLensReviewCommand.ts b/clients/client-wellarchitected/src/commands/UpdateLensReviewCommand.ts index 064142636c0f9..53788b9f89e07 100644 --- a/clients/client-wellarchitected/src/commands/UpdateLensReviewCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateLensReviewCommand.ts @@ -133,6 +133,7 @@ export interface UpdateLensReviewCommandOutput extends UpdateLensReviewOutput, _ * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UpdateLensReviewCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UpdateProfileCommand.ts b/clients/client-wellarchitected/src/commands/UpdateProfileCommand.ts index b7c068760ca89..aeb2ba0b0f0cd 100644 --- a/clients/client-wellarchitected/src/commands/UpdateProfileCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateProfileCommand.ts @@ -113,6 +113,7 @@ export interface UpdateProfileCommandOutput extends UpdateProfileOutput, __Metad * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UpdateProfileCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UpdateReviewTemplateAnswerCommand.ts b/clients/client-wellarchitected/src/commands/UpdateReviewTemplateAnswerCommand.ts index 809c0e192683a..f027c02d0065e 100644 --- a/clients/client-wellarchitected/src/commands/UpdateReviewTemplateAnswerCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateReviewTemplateAnswerCommand.ts @@ -139,6 +139,7 @@ export interface UpdateReviewTemplateAnswerCommandOutput extends UpdateReviewTem * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UpdateReviewTemplateAnswerCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UpdateReviewTemplateCommand.ts b/clients/client-wellarchitected/src/commands/UpdateReviewTemplateCommand.ts index 8a54f8d84c90c..ac0aba9345681 100644 --- a/clients/client-wellarchitected/src/commands/UpdateReviewTemplateCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateReviewTemplateCommand.ts @@ -100,6 +100,7 @@ export interface UpdateReviewTemplateCommandOutput extends UpdateReviewTemplateO * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UpdateReviewTemplateCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UpdateReviewTemplateLensReviewCommand.ts b/clients/client-wellarchitected/src/commands/UpdateReviewTemplateLensReviewCommand.ts index 3b6bb12117519..ab19d78dd6cfd 100644 --- a/clients/client-wellarchitected/src/commands/UpdateReviewTemplateLensReviewCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateReviewTemplateLensReviewCommand.ts @@ -106,6 +106,7 @@ export interface UpdateReviewTemplateLensReviewCommandOutput * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UpdateReviewTemplateLensReviewCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UpdateShareInvitationCommand.ts b/clients/client-wellarchitected/src/commands/UpdateShareInvitationCommand.ts index c2a3f83c955d2..f179c15d70e39 100644 --- a/clients/client-wellarchitected/src/commands/UpdateShareInvitationCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateShareInvitationCommand.ts @@ -85,6 +85,7 @@ export interface UpdateShareInvitationCommandOutput extends UpdateShareInvitatio * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UpdateShareInvitationCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UpdateWorkloadCommand.ts b/clients/client-wellarchitected/src/commands/UpdateWorkloadCommand.ts index f60943816135b..93bac16004e49 100644 --- a/clients/client-wellarchitected/src/commands/UpdateWorkloadCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateWorkloadCommand.ts @@ -171,6 +171,7 @@ export interface UpdateWorkloadCommandOutput extends UpdateWorkloadOutput, __Met * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UpdateWorkloadCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UpdateWorkloadShareCommand.ts b/clients/client-wellarchitected/src/commands/UpdateWorkloadShareCommand.ts index bf4c42c0d9f2a..b3da6d95a44ca 100644 --- a/clients/client-wellarchitected/src/commands/UpdateWorkloadShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateWorkloadShareCommand.ts @@ -84,6 +84,7 @@ export interface UpdateWorkloadShareCommandOutput extends UpdateWorkloadShareOut * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UpdateWorkloadShareCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UpgradeLensReviewCommand.ts b/clients/client-wellarchitected/src/commands/UpgradeLensReviewCommand.ts index 640789c4db16d..e9841020163fd 100644 --- a/clients/client-wellarchitected/src/commands/UpgradeLensReviewCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpgradeLensReviewCommand.ts @@ -77,6 +77,7 @@ export interface UpgradeLensReviewCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UpgradeLensReviewCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UpgradeProfileVersionCommand.ts b/clients/client-wellarchitected/src/commands/UpgradeProfileVersionCommand.ts index 490a3f3d01b3e..08e773def9c68 100644 --- a/clients/client-wellarchitected/src/commands/UpgradeProfileVersionCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpgradeProfileVersionCommand.ts @@ -77,6 +77,7 @@ export interface UpgradeProfileVersionCommandOutput extends __MetadataBearer {} * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UpgradeProfileVersionCommand extends $Command diff --git a/clients/client-wellarchitected/src/commands/UpgradeReviewTemplateLensReviewCommand.ts b/clients/client-wellarchitected/src/commands/UpgradeReviewTemplateLensReviewCommand.ts index bce5ab16e290a..5ba53037b8de6 100644 --- a/clients/client-wellarchitected/src/commands/UpgradeReviewTemplateLensReviewCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpgradeReviewTemplateLensReviewCommand.ts @@ -76,6 +76,7 @@ export interface UpgradeReviewTemplateLensReviewCommandOutput extends __Metadata * @throws {@link WellArchitectedServiceException} *

Base exception class for all service exceptions from WellArchitected service.

* + * * @public */ export class UpgradeReviewTemplateLensReviewCommand extends $Command diff --git a/clients/client-wisdom/src/commands/CreateAssistantAssociationCommand.ts b/clients/client-wisdom/src/commands/CreateAssistantAssociationCommand.ts index 34ec5ab99daa2..c7e8a4f3a1516 100644 --- a/clients/client-wisdom/src/commands/CreateAssistantAssociationCommand.ts +++ b/clients/client-wisdom/src/commands/CreateAssistantAssociationCommand.ts @@ -99,6 +99,7 @@ export interface CreateAssistantAssociationCommandOutput extends CreateAssistant * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class CreateAssistantAssociationCommand extends $Command diff --git a/clients/client-wisdom/src/commands/CreateAssistantCommand.ts b/clients/client-wisdom/src/commands/CreateAssistantCommand.ts index f734f80d4ba90..850137684cea2 100644 --- a/clients/client-wisdom/src/commands/CreateAssistantCommand.ts +++ b/clients/client-wisdom/src/commands/CreateAssistantCommand.ts @@ -96,6 +96,7 @@ export interface CreateAssistantCommandOutput extends CreateAssistantResponse, _ * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class CreateAssistantCommand extends $Command diff --git a/clients/client-wisdom/src/commands/CreateContentCommand.ts b/clients/client-wisdom/src/commands/CreateContentCommand.ts index 89ef879ba0aff..64fe2addb9e9f 100644 --- a/clients/client-wisdom/src/commands/CreateContentCommand.ts +++ b/clients/client-wisdom/src/commands/CreateContentCommand.ts @@ -109,6 +109,7 @@ export interface CreateContentCommandOutput extends CreateContentResponse, __Met * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class CreateContentCommand extends $Command diff --git a/clients/client-wisdom/src/commands/CreateKnowledgeBaseCommand.ts b/clients/client-wisdom/src/commands/CreateKnowledgeBaseCommand.ts index a1444eff0e6cf..016f2eb55c321 100644 --- a/clients/client-wisdom/src/commands/CreateKnowledgeBaseCommand.ts +++ b/clients/client-wisdom/src/commands/CreateKnowledgeBaseCommand.ts @@ -139,6 +139,7 @@ export interface CreateKnowledgeBaseCommandOutput extends CreateKnowledgeBaseRes * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class CreateKnowledgeBaseCommand extends $Command diff --git a/clients/client-wisdom/src/commands/CreateQuickResponseCommand.ts b/clients/client-wisdom/src/commands/CreateQuickResponseCommand.ts index 675bf335c4a40..3552f824fd199 100644 --- a/clients/client-wisdom/src/commands/CreateQuickResponseCommand.ts +++ b/clients/client-wisdom/src/commands/CreateQuickResponseCommand.ts @@ -136,6 +136,7 @@ export interface CreateQuickResponseCommandOutput extends CreateQuickResponseRes * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class CreateQuickResponseCommand extends $Command diff --git a/clients/client-wisdom/src/commands/CreateSessionCommand.ts b/clients/client-wisdom/src/commands/CreateSessionCommand.ts index 81128e0a62ef5..1965d7356258d 100644 --- a/clients/client-wisdom/src/commands/CreateSessionCommand.ts +++ b/clients/client-wisdom/src/commands/CreateSessionCommand.ts @@ -86,6 +86,7 @@ export interface CreateSessionCommandOutput extends CreateSessionResponse, __Met * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class CreateSessionCommand extends $Command diff --git a/clients/client-wisdom/src/commands/DeleteAssistantAssociationCommand.ts b/clients/client-wisdom/src/commands/DeleteAssistantAssociationCommand.ts index f7ae9878ad000..4319e8ef67839 100644 --- a/clients/client-wisdom/src/commands/DeleteAssistantAssociationCommand.ts +++ b/clients/client-wisdom/src/commands/DeleteAssistantAssociationCommand.ts @@ -63,6 +63,7 @@ export interface DeleteAssistantAssociationCommandOutput extends DeleteAssistant * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class DeleteAssistantAssociationCommand extends $Command diff --git a/clients/client-wisdom/src/commands/DeleteAssistantCommand.ts b/clients/client-wisdom/src/commands/DeleteAssistantCommand.ts index 356ee9510b39f..e53db21b588a5 100644 --- a/clients/client-wisdom/src/commands/DeleteAssistantCommand.ts +++ b/clients/client-wisdom/src/commands/DeleteAssistantCommand.ts @@ -62,6 +62,7 @@ export interface DeleteAssistantCommandOutput extends DeleteAssistantResponse, _ * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class DeleteAssistantCommand extends $Command diff --git a/clients/client-wisdom/src/commands/DeleteContentCommand.ts b/clients/client-wisdom/src/commands/DeleteContentCommand.ts index cfd10039817cb..f16446a45fcc7 100644 --- a/clients/client-wisdom/src/commands/DeleteContentCommand.ts +++ b/clients/client-wisdom/src/commands/DeleteContentCommand.ts @@ -63,6 +63,7 @@ export interface DeleteContentCommandOutput extends DeleteContentResponse, __Met * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class DeleteContentCommand extends $Command diff --git a/clients/client-wisdom/src/commands/DeleteImportJobCommand.ts b/clients/client-wisdom/src/commands/DeleteImportJobCommand.ts index 9e78ceb4c9801..38719fca798ea 100644 --- a/clients/client-wisdom/src/commands/DeleteImportJobCommand.ts +++ b/clients/client-wisdom/src/commands/DeleteImportJobCommand.ts @@ -69,6 +69,7 @@ export interface DeleteImportJobCommandOutput extends DeleteImportJobResponse, _ * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class DeleteImportJobCommand extends $Command diff --git a/clients/client-wisdom/src/commands/DeleteKnowledgeBaseCommand.ts b/clients/client-wisdom/src/commands/DeleteKnowledgeBaseCommand.ts index b43279743aa2e..020a66d155ea0 100644 --- a/clients/client-wisdom/src/commands/DeleteKnowledgeBaseCommand.ts +++ b/clients/client-wisdom/src/commands/DeleteKnowledgeBaseCommand.ts @@ -76,6 +76,7 @@ export interface DeleteKnowledgeBaseCommandOutput extends DeleteKnowledgeBaseRes * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class DeleteKnowledgeBaseCommand extends $Command diff --git a/clients/client-wisdom/src/commands/DeleteQuickResponseCommand.ts b/clients/client-wisdom/src/commands/DeleteQuickResponseCommand.ts index d3b7d16adac1d..d4b33f304af81 100644 --- a/clients/client-wisdom/src/commands/DeleteQuickResponseCommand.ts +++ b/clients/client-wisdom/src/commands/DeleteQuickResponseCommand.ts @@ -63,6 +63,7 @@ export interface DeleteQuickResponseCommandOutput extends DeleteQuickResponseRes * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class DeleteQuickResponseCommand extends $Command diff --git a/clients/client-wisdom/src/commands/GetAssistantAssociationCommand.ts b/clients/client-wisdom/src/commands/GetAssistantAssociationCommand.ts index b219db5183719..562a536f3b619 100644 --- a/clients/client-wisdom/src/commands/GetAssistantAssociationCommand.ts +++ b/clients/client-wisdom/src/commands/GetAssistantAssociationCommand.ts @@ -80,6 +80,7 @@ export interface GetAssistantAssociationCommandOutput extends GetAssistantAssoci * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class GetAssistantAssociationCommand extends $Command diff --git a/clients/client-wisdom/src/commands/GetAssistantCommand.ts b/clients/client-wisdom/src/commands/GetAssistantCommand.ts index 7e78659a5c536..944b8c62235a9 100644 --- a/clients/client-wisdom/src/commands/GetAssistantCommand.ts +++ b/clients/client-wisdom/src/commands/GetAssistantCommand.ts @@ -80,6 +80,7 @@ export interface GetAssistantCommandOutput extends GetAssistantResponse, __Metad * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class GetAssistantCommand extends $Command diff --git a/clients/client-wisdom/src/commands/GetContentCommand.ts b/clients/client-wisdom/src/commands/GetContentCommand.ts index a18ca7cf597ed..6c99de13488ae 100644 --- a/clients/client-wisdom/src/commands/GetContentCommand.ts +++ b/clients/client-wisdom/src/commands/GetContentCommand.ts @@ -84,6 +84,7 @@ export interface GetContentCommandOutput extends GetContentResponse, __MetadataB * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class GetContentCommand extends $Command diff --git a/clients/client-wisdom/src/commands/GetContentSummaryCommand.ts b/clients/client-wisdom/src/commands/GetContentSummaryCommand.ts index 2b7c7399c493c..1ea4ca9d41966 100644 --- a/clients/client-wisdom/src/commands/GetContentSummaryCommand.ts +++ b/clients/client-wisdom/src/commands/GetContentSummaryCommand.ts @@ -81,6 +81,7 @@ export interface GetContentSummaryCommandOutput extends GetContentSummaryRespons * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class GetContentSummaryCommand extends $Command diff --git a/clients/client-wisdom/src/commands/GetImportJobCommand.ts b/clients/client-wisdom/src/commands/GetImportJobCommand.ts index ea814d00d0cb7..680a16f2da252 100644 --- a/clients/client-wisdom/src/commands/GetImportJobCommand.ts +++ b/clients/client-wisdom/src/commands/GetImportJobCommand.ts @@ -88,6 +88,7 @@ export interface GetImportJobCommandOutput extends GetImportJobResponse, __Metad * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class GetImportJobCommand extends $Command diff --git a/clients/client-wisdom/src/commands/GetKnowledgeBaseCommand.ts b/clients/client-wisdom/src/commands/GetKnowledgeBaseCommand.ts index df859328ab6ca..af9f3747d85ca 100644 --- a/clients/client-wisdom/src/commands/GetKnowledgeBaseCommand.ts +++ b/clients/client-wisdom/src/commands/GetKnowledgeBaseCommand.ts @@ -89,6 +89,7 @@ export interface GetKnowledgeBaseCommandOutput extends GetKnowledgeBaseResponse, * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class GetKnowledgeBaseCommand extends $Command diff --git a/clients/client-wisdom/src/commands/GetQuickResponseCommand.ts b/clients/client-wisdom/src/commands/GetQuickResponseCommand.ts index 53d76255c88f6..494a304dc5345 100644 --- a/clients/client-wisdom/src/commands/GetQuickResponseCommand.ts +++ b/clients/client-wisdom/src/commands/GetQuickResponseCommand.ts @@ -104,6 +104,7 @@ export interface GetQuickResponseCommandOutput extends GetQuickResponseResponse, * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class GetQuickResponseCommand extends $Command diff --git a/clients/client-wisdom/src/commands/GetRecommendationsCommand.ts b/clients/client-wisdom/src/commands/GetRecommendationsCommand.ts index 80bd349c72e3e..8314d1d44bd08 100644 --- a/clients/client-wisdom/src/commands/GetRecommendationsCommand.ts +++ b/clients/client-wisdom/src/commands/GetRecommendationsCommand.ts @@ -124,6 +124,7 @@ export interface GetRecommendationsCommandOutput extends GetRecommendationsRespo * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class GetRecommendationsCommand extends $Command diff --git a/clients/client-wisdom/src/commands/GetSessionCommand.ts b/clients/client-wisdom/src/commands/GetSessionCommand.ts index fbe3ae362db5f..c6afc8ebd6aab 100644 --- a/clients/client-wisdom/src/commands/GetSessionCommand.ts +++ b/clients/client-wisdom/src/commands/GetSessionCommand.ts @@ -76,6 +76,7 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class GetSessionCommand extends $Command diff --git a/clients/client-wisdom/src/commands/ListAssistantAssociationsCommand.ts b/clients/client-wisdom/src/commands/ListAssistantAssociationsCommand.ts index 5e120ab7d09e1..0d3613f8ae70d 100644 --- a/clients/client-wisdom/src/commands/ListAssistantAssociationsCommand.ts +++ b/clients/client-wisdom/src/commands/ListAssistantAssociationsCommand.ts @@ -84,6 +84,7 @@ export interface ListAssistantAssociationsCommandOutput extends ListAssistantAss * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class ListAssistantAssociationsCommand extends $Command diff --git a/clients/client-wisdom/src/commands/ListAssistantsCommand.ts b/clients/client-wisdom/src/commands/ListAssistantsCommand.ts index 2a7ddf9d0f3ec..0fe8fdc32f4b4 100644 --- a/clients/client-wisdom/src/commands/ListAssistantsCommand.ts +++ b/clients/client-wisdom/src/commands/ListAssistantsCommand.ts @@ -81,6 +81,7 @@ export interface ListAssistantsCommandOutput extends ListAssistantsResponse, __M * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class ListAssistantsCommand extends $Command diff --git a/clients/client-wisdom/src/commands/ListContentsCommand.ts b/clients/client-wisdom/src/commands/ListContentsCommand.ts index d7d52dba4c6f8..84ee810a297f6 100644 --- a/clients/client-wisdom/src/commands/ListContentsCommand.ts +++ b/clients/client-wisdom/src/commands/ListContentsCommand.ts @@ -85,6 +85,7 @@ export interface ListContentsCommandOutput extends ListContentsResponse, __Metad * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class ListContentsCommand extends $Command diff --git a/clients/client-wisdom/src/commands/ListImportJobsCommand.ts b/clients/client-wisdom/src/commands/ListImportJobsCommand.ts index 73e04e9b31387..8d3d39cbe9679 100644 --- a/clients/client-wisdom/src/commands/ListImportJobsCommand.ts +++ b/clients/client-wisdom/src/commands/ListImportJobsCommand.ts @@ -86,6 +86,7 @@ export interface ListImportJobsCommandOutput extends ListImportJobsResponse, __M * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class ListImportJobsCommand extends $Command diff --git a/clients/client-wisdom/src/commands/ListKnowledgeBasesCommand.ts b/clients/client-wisdom/src/commands/ListKnowledgeBasesCommand.ts index befc1695a5360..7fe57a0f8a5b6 100644 --- a/clients/client-wisdom/src/commands/ListKnowledgeBasesCommand.ts +++ b/clients/client-wisdom/src/commands/ListKnowledgeBasesCommand.ts @@ -89,6 +89,7 @@ export interface ListKnowledgeBasesCommandOutput extends ListKnowledgeBasesRespo * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class ListKnowledgeBasesCommand extends $Command diff --git a/clients/client-wisdom/src/commands/ListQuickResponsesCommand.ts b/clients/client-wisdom/src/commands/ListQuickResponsesCommand.ts index 96ee293868bce..0b6b9d42188dd 100644 --- a/clients/client-wisdom/src/commands/ListQuickResponsesCommand.ts +++ b/clients/client-wisdom/src/commands/ListQuickResponsesCommand.ts @@ -92,6 +92,7 @@ export interface ListQuickResponsesCommandOutput extends ListQuickResponsesRespo * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class ListQuickResponsesCommand extends $Command diff --git a/clients/client-wisdom/src/commands/ListTagsForResourceCommand.ts b/clients/client-wisdom/src/commands/ListTagsForResourceCommand.ts index 8b6083f437e0b..fa9e3cc38f09d 100644 --- a/clients/client-wisdom/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-wisdom/src/commands/ListTagsForResourceCommand.ts @@ -60,6 +60,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-wisdom/src/commands/NotifyRecommendationsReceivedCommand.ts b/clients/client-wisdom/src/commands/NotifyRecommendationsReceivedCommand.ts index fe1012bebf47c..dd875d2e155ba 100644 --- a/clients/client-wisdom/src/commands/NotifyRecommendationsReceivedCommand.ts +++ b/clients/client-wisdom/src/commands/NotifyRecommendationsReceivedCommand.ts @@ -83,6 +83,7 @@ export interface NotifyRecommendationsReceivedCommandOutput * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class NotifyRecommendationsReceivedCommand extends $Command diff --git a/clients/client-wisdom/src/commands/QueryAssistantCommand.ts b/clients/client-wisdom/src/commands/QueryAssistantCommand.ts index 0649b70b7ad45..069fbc5e346b8 100644 --- a/clients/client-wisdom/src/commands/QueryAssistantCommand.ts +++ b/clients/client-wisdom/src/commands/QueryAssistantCommand.ts @@ -113,6 +113,7 @@ export interface QueryAssistantCommandOutput extends QueryAssistantResponse, __M * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class QueryAssistantCommand extends $Command diff --git a/clients/client-wisdom/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts b/clients/client-wisdom/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts index 992f235ef8fc9..6aeb4e2c497d6 100644 --- a/clients/client-wisdom/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts +++ b/clients/client-wisdom/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts @@ -67,6 +67,7 @@ export interface RemoveKnowledgeBaseTemplateUriCommandOutput * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class RemoveKnowledgeBaseTemplateUriCommand extends $Command diff --git a/clients/client-wisdom/src/commands/SearchContentCommand.ts b/clients/client-wisdom/src/commands/SearchContentCommand.ts index 1e696ecf00e16..0f61a87c7c2f4 100644 --- a/clients/client-wisdom/src/commands/SearchContentCommand.ts +++ b/clients/client-wisdom/src/commands/SearchContentCommand.ts @@ -95,6 +95,7 @@ export interface SearchContentCommandOutput extends SearchContentResponse, __Met * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class SearchContentCommand extends $Command diff --git a/clients/client-wisdom/src/commands/SearchQuickResponsesCommand.ts b/clients/client-wisdom/src/commands/SearchQuickResponsesCommand.ts index 1b549e6da0805..176ed86b24bfa 100644 --- a/clients/client-wisdom/src/commands/SearchQuickResponsesCommand.ts +++ b/clients/client-wisdom/src/commands/SearchQuickResponsesCommand.ts @@ -150,6 +150,7 @@ export interface SearchQuickResponsesCommandOutput extends SearchQuickResponsesR * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class SearchQuickResponsesCommand extends $Command diff --git a/clients/client-wisdom/src/commands/SearchSessionsCommand.ts b/clients/client-wisdom/src/commands/SearchSessionsCommand.ts index 37655743d30f0..26eb1830ab6b5 100644 --- a/clients/client-wisdom/src/commands/SearchSessionsCommand.ts +++ b/clients/client-wisdom/src/commands/SearchSessionsCommand.ts @@ -83,6 +83,7 @@ export interface SearchSessionsCommandOutput extends SearchSessionsResponse, __M * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class SearchSessionsCommand extends $Command diff --git a/clients/client-wisdom/src/commands/StartContentUploadCommand.ts b/clients/client-wisdom/src/commands/StartContentUploadCommand.ts index 17847ab652a4b..4353802d797cc 100644 --- a/clients/client-wisdom/src/commands/StartContentUploadCommand.ts +++ b/clients/client-wisdom/src/commands/StartContentUploadCommand.ts @@ -78,6 +78,7 @@ export interface StartContentUploadCommandOutput extends StartContentUploadRespo * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class StartContentUploadCommand extends $Command diff --git a/clients/client-wisdom/src/commands/StartImportJobCommand.ts b/clients/client-wisdom/src/commands/StartImportJobCommand.ts index e7dcab427430e..6eb31c36286ec 100644 --- a/clients/client-wisdom/src/commands/StartImportJobCommand.ts +++ b/clients/client-wisdom/src/commands/StartImportJobCommand.ts @@ -121,6 +121,7 @@ export interface StartImportJobCommandOutput extends StartImportJobResponse, __M * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class StartImportJobCommand extends $Command diff --git a/clients/client-wisdom/src/commands/TagResourceCommand.ts b/clients/client-wisdom/src/commands/TagResourceCommand.ts index 3dda9c4c491d2..d6456ba90104a 100644 --- a/clients/client-wisdom/src/commands/TagResourceCommand.ts +++ b/clients/client-wisdom/src/commands/TagResourceCommand.ts @@ -62,6 +62,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-wisdom/src/commands/UntagResourceCommand.ts b/clients/client-wisdom/src/commands/UntagResourceCommand.ts index a9d978cadfb87..146bb66e622a2 100644 --- a/clients/client-wisdom/src/commands/UntagResourceCommand.ts +++ b/clients/client-wisdom/src/commands/UntagResourceCommand.ts @@ -59,6 +59,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-wisdom/src/commands/UpdateContentCommand.ts b/clients/client-wisdom/src/commands/UpdateContentCommand.ts index c4730ae9f139a..a06658aababe9 100644 --- a/clients/client-wisdom/src/commands/UpdateContentCommand.ts +++ b/clients/client-wisdom/src/commands/UpdateContentCommand.ts @@ -100,6 +100,7 @@ export interface UpdateContentCommandOutput extends UpdateContentResponse, __Met * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class UpdateContentCommand extends $Command diff --git a/clients/client-wisdom/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts b/clients/client-wisdom/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts index fc0a7b27253a1..0f8ed6aca0141 100644 --- a/clients/client-wisdom/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts +++ b/clients/client-wisdom/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts @@ -100,6 +100,7 @@ export interface UpdateKnowledgeBaseTemplateUriCommandOutput * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class UpdateKnowledgeBaseTemplateUriCommand extends $Command diff --git a/clients/client-wisdom/src/commands/UpdateQuickResponseCommand.ts b/clients/client-wisdom/src/commands/UpdateQuickResponseCommand.ts index 1d7fc72e0b8fd..526ddd62b7d23 100644 --- a/clients/client-wisdom/src/commands/UpdateQuickResponseCommand.ts +++ b/clients/client-wisdom/src/commands/UpdateQuickResponseCommand.ts @@ -136,6 +136,7 @@ export interface UpdateQuickResponseCommandOutput extends UpdateQuickResponseRes * @throws {@link WisdomServiceException} *

Base exception class for all service exceptions from Wisdom service.

* + * * @public */ export class UpdateQuickResponseCommand extends $Command diff --git a/clients/client-workdocs/src/commands/AbortDocumentVersionUploadCommand.ts b/clients/client-workdocs/src/commands/AbortDocumentVersionUploadCommand.ts index bd5d5daca2386..b0d1b4bce7d90 100644 --- a/clients/client-workdocs/src/commands/AbortDocumentVersionUploadCommand.ts +++ b/clients/client-workdocs/src/commands/AbortDocumentVersionUploadCommand.ts @@ -84,6 +84,7 @@ export interface AbortDocumentVersionUploadCommandOutput extends __MetadataBeare * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class AbortDocumentVersionUploadCommand extends $Command diff --git a/clients/client-workdocs/src/commands/ActivateUserCommand.ts b/clients/client-workdocs/src/commands/ActivateUserCommand.ts index 0336b610c158c..b75625f693e2e 100644 --- a/clients/client-workdocs/src/commands/ActivateUserCommand.ts +++ b/clients/client-workdocs/src/commands/ActivateUserCommand.ts @@ -101,6 +101,7 @@ export interface ActivateUserCommandOutput extends ActivateUserResponse, __Metad * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class ActivateUserCommand extends $Command diff --git a/clients/client-workdocs/src/commands/AddResourcePermissionsCommand.ts b/clients/client-workdocs/src/commands/AddResourcePermissionsCommand.ts index c52e6acd352dc..084af494a97b1 100644 --- a/clients/client-workdocs/src/commands/AddResourcePermissionsCommand.ts +++ b/clients/client-workdocs/src/commands/AddResourcePermissionsCommand.ts @@ -100,6 +100,7 @@ export interface AddResourcePermissionsCommandOutput extends AddResourcePermissi * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class AddResourcePermissionsCommand extends $Command diff --git a/clients/client-workdocs/src/commands/CreateCommentCommand.ts b/clients/client-workdocs/src/commands/CreateCommentCommand.ts index 77de89cefd085..64f58a05095ce 100644 --- a/clients/client-workdocs/src/commands/CreateCommentCommand.ts +++ b/clients/client-workdocs/src/commands/CreateCommentCommand.ts @@ -126,6 +126,7 @@ export interface CreateCommentCommandOutput extends CreateCommentResponse, __Met * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class CreateCommentCommand extends $Command diff --git a/clients/client-workdocs/src/commands/CreateCustomMetadataCommand.ts b/clients/client-workdocs/src/commands/CreateCustomMetadataCommand.ts index 976c6f618eebd..281ae4e632589 100644 --- a/clients/client-workdocs/src/commands/CreateCustomMetadataCommand.ts +++ b/clients/client-workdocs/src/commands/CreateCustomMetadataCommand.ts @@ -87,6 +87,7 @@ export interface CreateCustomMetadataCommandOutput extends CreateCustomMetadataR * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class CreateCustomMetadataCommand extends $Command diff --git a/clients/client-workdocs/src/commands/CreateFolderCommand.ts b/clients/client-workdocs/src/commands/CreateFolderCommand.ts index 2c450f213c25f..c5077217b862f 100644 --- a/clients/client-workdocs/src/commands/CreateFolderCommand.ts +++ b/clients/client-workdocs/src/commands/CreateFolderCommand.ts @@ -108,6 +108,7 @@ export interface CreateFolderCommandOutput extends CreateFolderResponse, __Metad * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class CreateFolderCommand extends $Command diff --git a/clients/client-workdocs/src/commands/CreateLabelsCommand.ts b/clients/client-workdocs/src/commands/CreateLabelsCommand.ts index 8893aa46d6af7..27d4b1d834cc7 100644 --- a/clients/client-workdocs/src/commands/CreateLabelsCommand.ts +++ b/clients/client-workdocs/src/commands/CreateLabelsCommand.ts @@ -79,6 +79,7 @@ export interface CreateLabelsCommandOutput extends CreateLabelsResponse, __Metad * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class CreateLabelsCommand extends $Command diff --git a/clients/client-workdocs/src/commands/CreateNotificationSubscriptionCommand.ts b/clients/client-workdocs/src/commands/CreateNotificationSubscriptionCommand.ts index 6f4d7c4bb0c87..924d26c3b2a32 100644 --- a/clients/client-workdocs/src/commands/CreateNotificationSubscriptionCommand.ts +++ b/clients/client-workdocs/src/commands/CreateNotificationSubscriptionCommand.ts @@ -83,6 +83,7 @@ export interface CreateNotificationSubscriptionCommandOutput * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class CreateNotificationSubscriptionCommand extends $Command diff --git a/clients/client-workdocs/src/commands/CreateUserCommand.ts b/clients/client-workdocs/src/commands/CreateUserCommand.ts index 0ea209cea18ae..a8d57c35ea958 100644 --- a/clients/client-workdocs/src/commands/CreateUserCommand.ts +++ b/clients/client-workdocs/src/commands/CreateUserCommand.ts @@ -111,6 +111,7 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class CreateUserCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DeactivateUserCommand.ts b/clients/client-workdocs/src/commands/DeactivateUserCommand.ts index efbf9a45629a0..349bce21ceb25 100644 --- a/clients/client-workdocs/src/commands/DeactivateUserCommand.ts +++ b/clients/client-workdocs/src/commands/DeactivateUserCommand.ts @@ -72,6 +72,7 @@ export interface DeactivateUserCommandOutput extends __MetadataBearer {} * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DeactivateUserCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DeleteCommentCommand.ts b/clients/client-workdocs/src/commands/DeleteCommentCommand.ts index e151c788735ab..14f4fcb8b8660 100644 --- a/clients/client-workdocs/src/commands/DeleteCommentCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteCommentCommand.ts @@ -80,6 +80,7 @@ export interface DeleteCommentCommandOutput extends __MetadataBearer {} * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DeleteCommentCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DeleteCustomMetadataCommand.ts b/clients/client-workdocs/src/commands/DeleteCustomMetadataCommand.ts index 59407156e027e..45d70b30438ed 100644 --- a/clients/client-workdocs/src/commands/DeleteCustomMetadataCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteCustomMetadataCommand.ts @@ -83,6 +83,7 @@ export interface DeleteCustomMetadataCommandOutput extends DeleteCustomMetadataR * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DeleteCustomMetadataCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DeleteDocumentCommand.ts b/clients/client-workdocs/src/commands/DeleteDocumentCommand.ts index c2551e7759166..75436c1bbedf5 100644 --- a/clients/client-workdocs/src/commands/DeleteDocumentCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteDocumentCommand.ts @@ -83,6 +83,7 @@ export interface DeleteDocumentCommandOutput extends __MetadataBearer {} * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DeleteDocumentCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DeleteDocumentVersionCommand.ts b/clients/client-workdocs/src/commands/DeleteDocumentVersionCommand.ts index d91fe6d360b7e..935a7714837fd 100644 --- a/clients/client-workdocs/src/commands/DeleteDocumentVersionCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteDocumentVersionCommand.ts @@ -82,6 +82,7 @@ export interface DeleteDocumentVersionCommandOutput extends __MetadataBearer {} * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DeleteDocumentVersionCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DeleteFolderCommand.ts b/clients/client-workdocs/src/commands/DeleteFolderCommand.ts index 7d8acfecba5bc..aa0457f81815c 100644 --- a/clients/client-workdocs/src/commands/DeleteFolderCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteFolderCommand.ts @@ -83,6 +83,7 @@ export interface DeleteFolderCommandOutput extends __MetadataBearer {} * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DeleteFolderCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DeleteFolderContentsCommand.ts b/clients/client-workdocs/src/commands/DeleteFolderContentsCommand.ts index f2fa6afea9fe2..ba0d53322376e 100644 --- a/clients/client-workdocs/src/commands/DeleteFolderContentsCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteFolderContentsCommand.ts @@ -77,6 +77,7 @@ export interface DeleteFolderContentsCommandOutput extends __MetadataBearer {} * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DeleteFolderContentsCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DeleteLabelsCommand.ts b/clients/client-workdocs/src/commands/DeleteLabelsCommand.ts index 7585665bd8570..9d0d3be938c19 100644 --- a/clients/client-workdocs/src/commands/DeleteLabelsCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteLabelsCommand.ts @@ -78,6 +78,7 @@ export interface DeleteLabelsCommandOutput extends DeleteLabelsResponse, __Metad * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DeleteLabelsCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DeleteNotificationSubscriptionCommand.ts b/clients/client-workdocs/src/commands/DeleteNotificationSubscriptionCommand.ts index 001ea2689060b..6a403c3f9a8af 100644 --- a/clients/client-workdocs/src/commands/DeleteNotificationSubscriptionCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteNotificationSubscriptionCommand.ts @@ -69,6 +69,7 @@ export interface DeleteNotificationSubscriptionCommandOutput extends __MetadataB * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DeleteNotificationSubscriptionCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DeleteUserCommand.ts b/clients/client-workdocs/src/commands/DeleteUserCommand.ts index 7bc1e2a595d48..da9085c45ff72 100644 --- a/clients/client-workdocs/src/commands/DeleteUserCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteUserCommand.ts @@ -74,6 +74,7 @@ export interface DeleteUserCommandOutput extends __MetadataBearer {} * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DeleteUserCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DescribeActivitiesCommand.ts b/clients/client-workdocs/src/commands/DescribeActivitiesCommand.ts index 87b9e87fdf714..79d497a0d7d70 100644 --- a/clients/client-workdocs/src/commands/DescribeActivitiesCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeActivitiesCommand.ts @@ -166,6 +166,7 @@ export interface DescribeActivitiesCommandOutput extends DescribeActivitiesRespo * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DescribeActivitiesCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DescribeCommentsCommand.ts b/clients/client-workdocs/src/commands/DescribeCommentsCommand.ts index 3075984b5c348..77e902f7f3457 100644 --- a/clients/client-workdocs/src/commands/DescribeCommentsCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeCommentsCommand.ts @@ -119,6 +119,7 @@ export interface DescribeCommentsCommandOutput extends DescribeCommentsResponse, * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DescribeCommentsCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DescribeDocumentVersionsCommand.ts b/clients/client-workdocs/src/commands/DescribeDocumentVersionsCommand.ts index 5f00c8f7135da..6f6a3e437f1a6 100644 --- a/clients/client-workdocs/src/commands/DescribeDocumentVersionsCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeDocumentVersionsCommand.ts @@ -113,6 +113,7 @@ export interface DescribeDocumentVersionsCommandOutput extends DescribeDocumentV * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DescribeDocumentVersionsCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DescribeFolderContentsCommand.ts b/clients/client-workdocs/src/commands/DescribeFolderContentsCommand.ts index 4a7251f7bc24b..b86ea5f43e967 100644 --- a/clients/client-workdocs/src/commands/DescribeFolderContentsCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeFolderContentsCommand.ts @@ -141,6 +141,7 @@ export interface DescribeFolderContentsCommandOutput extends DescribeFolderConte * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DescribeFolderContentsCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DescribeGroupsCommand.ts b/clients/client-workdocs/src/commands/DescribeGroupsCommand.ts index ffc6bb4fb37f4..56d04dcbf8e13 100644 --- a/clients/client-workdocs/src/commands/DescribeGroupsCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeGroupsCommand.ts @@ -84,6 +84,7 @@ export interface DescribeGroupsCommandOutput extends DescribeGroupsResponse, __M * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DescribeGroupsCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DescribeNotificationSubscriptionsCommand.ts b/clients/client-workdocs/src/commands/DescribeNotificationSubscriptionsCommand.ts index d9adf8047c304..8c49270b5cb45 100644 --- a/clients/client-workdocs/src/commands/DescribeNotificationSubscriptionsCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeNotificationSubscriptionsCommand.ts @@ -81,6 +81,7 @@ export interface DescribeNotificationSubscriptionsCommandOutput * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DescribeNotificationSubscriptionsCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DescribeResourcePermissionsCommand.ts b/clients/client-workdocs/src/commands/DescribeResourcePermissionsCommand.ts index 027dd4318bfce..bf294162ef8e8 100644 --- a/clients/client-workdocs/src/commands/DescribeResourcePermissionsCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeResourcePermissionsCommand.ts @@ -97,6 +97,7 @@ export interface DescribeResourcePermissionsCommandOutput * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DescribeResourcePermissionsCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DescribeRootFoldersCommand.ts b/clients/client-workdocs/src/commands/DescribeRootFoldersCommand.ts index 341c323951ecc..f45435ab2bc7a 100644 --- a/clients/client-workdocs/src/commands/DescribeRootFoldersCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeRootFoldersCommand.ts @@ -104,6 +104,7 @@ export interface DescribeRootFoldersCommandOutput extends DescribeRootFoldersRes * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DescribeRootFoldersCommand extends $Command diff --git a/clients/client-workdocs/src/commands/DescribeUsersCommand.ts b/clients/client-workdocs/src/commands/DescribeUsersCommand.ts index 5e355086aa68d..77facffffc3b1 100644 --- a/clients/client-workdocs/src/commands/DescribeUsersCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeUsersCommand.ts @@ -122,6 +122,7 @@ export interface DescribeUsersCommandOutput extends DescribeUsersResponse, __Met * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class DescribeUsersCommand extends $Command diff --git a/clients/client-workdocs/src/commands/GetCurrentUserCommand.ts b/clients/client-workdocs/src/commands/GetCurrentUserCommand.ts index 370d3576fd74b..2ff16020832f6 100644 --- a/clients/client-workdocs/src/commands/GetCurrentUserCommand.ts +++ b/clients/client-workdocs/src/commands/GetCurrentUserCommand.ts @@ -105,6 +105,7 @@ export interface GetCurrentUserCommandOutput extends GetCurrentUserResponse, __M * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class GetCurrentUserCommand extends $Command diff --git a/clients/client-workdocs/src/commands/GetDocumentCommand.ts b/clients/client-workdocs/src/commands/GetDocumentCommand.ts index 60b1309cb197b..ba0439f08163c 100644 --- a/clients/client-workdocs/src/commands/GetDocumentCommand.ts +++ b/clients/client-workdocs/src/commands/GetDocumentCommand.ts @@ -117,6 +117,7 @@ export interface GetDocumentCommandOutput extends GetDocumentResponse, __Metadat * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class GetDocumentCommand extends $Command diff --git a/clients/client-workdocs/src/commands/GetDocumentPathCommand.ts b/clients/client-workdocs/src/commands/GetDocumentPathCommand.ts index 40c9332f6cc53..5f74cabbefad7 100644 --- a/clients/client-workdocs/src/commands/GetDocumentPathCommand.ts +++ b/clients/client-workdocs/src/commands/GetDocumentPathCommand.ts @@ -93,6 +93,7 @@ export interface GetDocumentPathCommandOutput extends GetDocumentPathResponse, _ * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class GetDocumentPathCommand extends $Command diff --git a/clients/client-workdocs/src/commands/GetDocumentVersionCommand.ts b/clients/client-workdocs/src/commands/GetDocumentVersionCommand.ts index 924e1c3ae137e..c83ea009bc290 100644 --- a/clients/client-workdocs/src/commands/GetDocumentVersionCommand.ts +++ b/clients/client-workdocs/src/commands/GetDocumentVersionCommand.ts @@ -108,6 +108,7 @@ export interface GetDocumentVersionCommandOutput extends GetDocumentVersionRespo * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class GetDocumentVersionCommand extends $Command diff --git a/clients/client-workdocs/src/commands/GetFolderCommand.ts b/clients/client-workdocs/src/commands/GetFolderCommand.ts index e5d8235b2c5cd..8791b0f30016d 100644 --- a/clients/client-workdocs/src/commands/GetFolderCommand.ts +++ b/clients/client-workdocs/src/commands/GetFolderCommand.ts @@ -102,6 +102,7 @@ export interface GetFolderCommandOutput extends GetFolderResponse, __MetadataBea * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class GetFolderCommand extends $Command diff --git a/clients/client-workdocs/src/commands/GetFolderPathCommand.ts b/clients/client-workdocs/src/commands/GetFolderPathCommand.ts index e5e68ce792046..ccc39363baeb0 100644 --- a/clients/client-workdocs/src/commands/GetFolderPathCommand.ts +++ b/clients/client-workdocs/src/commands/GetFolderPathCommand.ts @@ -93,6 +93,7 @@ export interface GetFolderPathCommandOutput extends GetFolderPathResponse, __Met * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class GetFolderPathCommand extends $Command diff --git a/clients/client-workdocs/src/commands/GetResourcesCommand.ts b/clients/client-workdocs/src/commands/GetResourcesCommand.ts index 865c0aa81cb70..104e73d07cd5c 100644 --- a/clients/client-workdocs/src/commands/GetResourcesCommand.ts +++ b/clients/client-workdocs/src/commands/GetResourcesCommand.ts @@ -131,6 +131,7 @@ export interface GetResourcesCommandOutput extends GetResourcesResponse, __Metad * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class GetResourcesCommand extends $Command diff --git a/clients/client-workdocs/src/commands/InitiateDocumentVersionUploadCommand.ts b/clients/client-workdocs/src/commands/InitiateDocumentVersionUploadCommand.ts index 9d57e66c71a7a..35db4a9683b06 100644 --- a/clients/client-workdocs/src/commands/InitiateDocumentVersionUploadCommand.ts +++ b/clients/client-workdocs/src/commands/InitiateDocumentVersionUploadCommand.ts @@ -157,6 +157,7 @@ export interface InitiateDocumentVersionUploadCommandOutput * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class InitiateDocumentVersionUploadCommand extends $Command diff --git a/clients/client-workdocs/src/commands/RemoveAllResourcePermissionsCommand.ts b/clients/client-workdocs/src/commands/RemoveAllResourcePermissionsCommand.ts index ddfe646342d12..a34bf14e94da3 100644 --- a/clients/client-workdocs/src/commands/RemoveAllResourcePermissionsCommand.ts +++ b/clients/client-workdocs/src/commands/RemoveAllResourcePermissionsCommand.ts @@ -74,6 +74,7 @@ export interface RemoveAllResourcePermissionsCommandOutput extends __MetadataBea * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class RemoveAllResourcePermissionsCommand extends $Command diff --git a/clients/client-workdocs/src/commands/RemoveResourcePermissionCommand.ts b/clients/client-workdocs/src/commands/RemoveResourcePermissionCommand.ts index 0bd465297bb1f..da40c872dd093 100644 --- a/clients/client-workdocs/src/commands/RemoveResourcePermissionCommand.ts +++ b/clients/client-workdocs/src/commands/RemoveResourcePermissionCommand.ts @@ -71,6 +71,7 @@ export interface RemoveResourcePermissionCommandOutput extends __MetadataBearer * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class RemoveResourcePermissionCommand extends $Command diff --git a/clients/client-workdocs/src/commands/RestoreDocumentVersionsCommand.ts b/clients/client-workdocs/src/commands/RestoreDocumentVersionsCommand.ts index 9aa0d3a8fd7ab..d8046504f193c 100644 --- a/clients/client-workdocs/src/commands/RestoreDocumentVersionsCommand.ts +++ b/clients/client-workdocs/src/commands/RestoreDocumentVersionsCommand.ts @@ -80,6 +80,7 @@ export interface RestoreDocumentVersionsCommandOutput extends __MetadataBearer { * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class RestoreDocumentVersionsCommand extends $Command diff --git a/clients/client-workdocs/src/commands/SearchResourcesCommand.ts b/clients/client-workdocs/src/commands/SearchResourcesCommand.ts index 083c9855583c7..087b1648af134 100644 --- a/clients/client-workdocs/src/commands/SearchResourcesCommand.ts +++ b/clients/client-workdocs/src/commands/SearchResourcesCommand.ts @@ -228,6 +228,7 @@ export interface SearchResourcesCommandOutput extends SearchResourcesResponse, _ * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class SearchResourcesCommand extends $Command diff --git a/clients/client-workdocs/src/commands/UpdateDocumentCommand.ts b/clients/client-workdocs/src/commands/UpdateDocumentCommand.ts index 8be00c145edb2..1985c5aed2e3a 100644 --- a/clients/client-workdocs/src/commands/UpdateDocumentCommand.ts +++ b/clients/client-workdocs/src/commands/UpdateDocumentCommand.ts @@ -90,6 +90,7 @@ export interface UpdateDocumentCommandOutput extends __MetadataBearer {} * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class UpdateDocumentCommand extends $Command diff --git a/clients/client-workdocs/src/commands/UpdateDocumentVersionCommand.ts b/clients/client-workdocs/src/commands/UpdateDocumentVersionCommand.ts index 5d37ef4a32b28..97e8376175e01 100644 --- a/clients/client-workdocs/src/commands/UpdateDocumentVersionCommand.ts +++ b/clients/client-workdocs/src/commands/UpdateDocumentVersionCommand.ts @@ -85,6 +85,7 @@ export interface UpdateDocumentVersionCommandOutput extends __MetadataBearer {} * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class UpdateDocumentVersionCommand extends $Command diff --git a/clients/client-workdocs/src/commands/UpdateFolderCommand.ts b/clients/client-workdocs/src/commands/UpdateFolderCommand.ts index 198c013678bab..9b5b99b61651d 100644 --- a/clients/client-workdocs/src/commands/UpdateFolderCommand.ts +++ b/clients/client-workdocs/src/commands/UpdateFolderCommand.ts @@ -90,6 +90,7 @@ export interface UpdateFolderCommandOutput extends __MetadataBearer {} * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class UpdateFolderCommand extends $Command diff --git a/clients/client-workdocs/src/commands/UpdateUserCommand.ts b/clients/client-workdocs/src/commands/UpdateUserCommand.ts index baa4f84bca7f0..37ba09b72f1fd 100644 --- a/clients/client-workdocs/src/commands/UpdateUserCommand.ts +++ b/clients/client-workdocs/src/commands/UpdateUserCommand.ts @@ -123,6 +123,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB * @throws {@link WorkDocsServiceException} *

Base exception class for all service exceptions from WorkDocs service.

* + * * @public */ export class UpdateUserCommand extends $Command diff --git a/clients/client-workmail/src/commands/AssociateDelegateToResourceCommand.ts b/clients/client-workmail/src/commands/AssociateDelegateToResourceCommand.ts index 6a062a82eb458..50f0cea7b2323 100644 --- a/clients/client-workmail/src/commands/AssociateDelegateToResourceCommand.ts +++ b/clients/client-workmail/src/commands/AssociateDelegateToResourceCommand.ts @@ -79,6 +79,7 @@ export interface AssociateDelegateToResourceCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class AssociateDelegateToResourceCommand extends $Command diff --git a/clients/client-workmail/src/commands/AssociateMemberToGroupCommand.ts b/clients/client-workmail/src/commands/AssociateMemberToGroupCommand.ts index a00e8dc93ee38..ff1e64cd465d0 100644 --- a/clients/client-workmail/src/commands/AssociateMemberToGroupCommand.ts +++ b/clients/client-workmail/src/commands/AssociateMemberToGroupCommand.ts @@ -83,6 +83,7 @@ export interface AssociateMemberToGroupCommandOutput extends AssociateMemberToGr * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class AssociateMemberToGroupCommand extends $Command diff --git a/clients/client-workmail/src/commands/AssumeImpersonationRoleCommand.ts b/clients/client-workmail/src/commands/AssumeImpersonationRoleCommand.ts index d62c075143be7..865835346dd77 100644 --- a/clients/client-workmail/src/commands/AssumeImpersonationRoleCommand.ts +++ b/clients/client-workmail/src/commands/AssumeImpersonationRoleCommand.ts @@ -72,6 +72,7 @@ export interface AssumeImpersonationRoleCommandOutput extends AssumeImpersonatio * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class AssumeImpersonationRoleCommand extends $Command diff --git a/clients/client-workmail/src/commands/CancelMailboxExportJobCommand.ts b/clients/client-workmail/src/commands/CancelMailboxExportJobCommand.ts index 82032a7b4f682..a089300b1a596 100644 --- a/clients/client-workmail/src/commands/CancelMailboxExportJobCommand.ts +++ b/clients/client-workmail/src/commands/CancelMailboxExportJobCommand.ts @@ -74,6 +74,7 @@ export interface CancelMailboxExportJobCommandOutput extends CancelMailboxExport * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class CancelMailboxExportJobCommand extends $Command diff --git a/clients/client-workmail/src/commands/CreateAliasCommand.ts b/clients/client-workmail/src/commands/CreateAliasCommand.ts index 402c093417da2..8d21c02c23563 100644 --- a/clients/client-workmail/src/commands/CreateAliasCommand.ts +++ b/clients/client-workmail/src/commands/CreateAliasCommand.ts @@ -88,6 +88,7 @@ export interface CreateAliasCommandOutput extends CreateAliasResponse, __Metadat * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class CreateAliasCommand extends $Command diff --git a/clients/client-workmail/src/commands/CreateAvailabilityConfigurationCommand.ts b/clients/client-workmail/src/commands/CreateAvailabilityConfigurationCommand.ts index 0b75b027858ff..9039df49dbaca 100644 --- a/clients/client-workmail/src/commands/CreateAvailabilityConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/CreateAvailabilityConfigurationCommand.ts @@ -89,6 +89,7 @@ export interface CreateAvailabilityConfigurationCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class CreateAvailabilityConfigurationCommand extends $Command diff --git a/clients/client-workmail/src/commands/CreateGroupCommand.ts b/clients/client-workmail/src/commands/CreateGroupCommand.ts index eeac3b9abcd01..9ae701fc0336e 100644 --- a/clients/client-workmail/src/commands/CreateGroupCommand.ts +++ b/clients/client-workmail/src/commands/CreateGroupCommand.ts @@ -83,6 +83,7 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class CreateGroupCommand extends $Command diff --git a/clients/client-workmail/src/commands/CreateIdentityCenterApplicationCommand.ts b/clients/client-workmail/src/commands/CreateIdentityCenterApplicationCommand.ts index fe9e22c23c939..89f45fb2f45e1 100644 --- a/clients/client-workmail/src/commands/CreateIdentityCenterApplicationCommand.ts +++ b/clients/client-workmail/src/commands/CreateIdentityCenterApplicationCommand.ts @@ -67,6 +67,7 @@ export interface CreateIdentityCenterApplicationCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class CreateIdentityCenterApplicationCommand extends $Command diff --git a/clients/client-workmail/src/commands/CreateImpersonationRoleCommand.ts b/clients/client-workmail/src/commands/CreateImpersonationRoleCommand.ts index 52bbc1283f34c..dd5265467c28d 100644 --- a/clients/client-workmail/src/commands/CreateImpersonationRoleCommand.ts +++ b/clients/client-workmail/src/commands/CreateImpersonationRoleCommand.ts @@ -100,6 +100,7 @@ export interface CreateImpersonationRoleCommandOutput extends CreateImpersonatio * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class CreateImpersonationRoleCommand extends $Command diff --git a/clients/client-workmail/src/commands/CreateMobileDeviceAccessRuleCommand.ts b/clients/client-workmail/src/commands/CreateMobileDeviceAccessRuleCommand.ts index a49dbd88d6dfd..c132330a6e2ee 100644 --- a/clients/client-workmail/src/commands/CreateMobileDeviceAccessRuleCommand.ts +++ b/clients/client-workmail/src/commands/CreateMobileDeviceAccessRuleCommand.ts @@ -102,6 +102,7 @@ export interface CreateMobileDeviceAccessRuleCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class CreateMobileDeviceAccessRuleCommand extends $Command diff --git a/clients/client-workmail/src/commands/CreateOrganizationCommand.ts b/clients/client-workmail/src/commands/CreateOrganizationCommand.ts index 88a9f352d4e0f..b79d4982dbdaf 100644 --- a/clients/client-workmail/src/commands/CreateOrganizationCommand.ts +++ b/clients/client-workmail/src/commands/CreateOrganizationCommand.ts @@ -88,6 +88,7 @@ export interface CreateOrganizationCommandOutput extends CreateOrganizationRespo * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class CreateOrganizationCommand extends $Command diff --git a/clients/client-workmail/src/commands/CreateResourceCommand.ts b/clients/client-workmail/src/commands/CreateResourceCommand.ts index 70f7b8438bf38..7cd3f38827a74 100644 --- a/clients/client-workmail/src/commands/CreateResourceCommand.ts +++ b/clients/client-workmail/src/commands/CreateResourceCommand.ts @@ -89,6 +89,7 @@ export interface CreateResourceCommandOutput extends CreateResourceResponse, __M * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class CreateResourceCommand extends $Command diff --git a/clients/client-workmail/src/commands/CreateUserCommand.ts b/clients/client-workmail/src/commands/CreateUserCommand.ts index 82b2b33224628..eb31ffa1d17f9 100644 --- a/clients/client-workmail/src/commands/CreateUserCommand.ts +++ b/clients/client-workmail/src/commands/CreateUserCommand.ts @@ -93,6 +93,7 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class CreateUserCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteAccessControlRuleCommand.ts b/clients/client-workmail/src/commands/DeleteAccessControlRuleCommand.ts index 465e63b728c1e..d7337eaed5657 100644 --- a/clients/client-workmail/src/commands/DeleteAccessControlRuleCommand.ts +++ b/clients/client-workmail/src/commands/DeleteAccessControlRuleCommand.ts @@ -65,6 +65,7 @@ export interface DeleteAccessControlRuleCommandOutput extends DeleteAccessContro * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteAccessControlRuleCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteAliasCommand.ts b/clients/client-workmail/src/commands/DeleteAliasCommand.ts index 3d8a42d099461..916217794e657 100644 --- a/clients/client-workmail/src/commands/DeleteAliasCommand.ts +++ b/clients/client-workmail/src/commands/DeleteAliasCommand.ts @@ -75,6 +75,7 @@ export interface DeleteAliasCommandOutput extends DeleteAliasResponse, __Metadat * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteAliasCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteAvailabilityConfigurationCommand.ts b/clients/client-workmail/src/commands/DeleteAvailabilityConfigurationCommand.ts index 6a6735fe0675b..a5cb68c88672d 100644 --- a/clients/client-workmail/src/commands/DeleteAvailabilityConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/DeleteAvailabilityConfigurationCommand.ts @@ -67,6 +67,7 @@ export interface DeleteAvailabilityConfigurationCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteAvailabilityConfigurationCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteEmailMonitoringConfigurationCommand.ts b/clients/client-workmail/src/commands/DeleteEmailMonitoringConfigurationCommand.ts index f74d0c734e2f7..3588e135fe37c 100644 --- a/clients/client-workmail/src/commands/DeleteEmailMonitoringConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/DeleteEmailMonitoringConfigurationCommand.ts @@ -72,6 +72,7 @@ export interface DeleteEmailMonitoringConfigurationCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteEmailMonitoringConfigurationCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteGroupCommand.ts b/clients/client-workmail/src/commands/DeleteGroupCommand.ts index cbbe2a528bc9d..6854abe84c5dd 100644 --- a/clients/client-workmail/src/commands/DeleteGroupCommand.ts +++ b/clients/client-workmail/src/commands/DeleteGroupCommand.ts @@ -78,6 +78,7 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __Metadat * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteGroupCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteIdentityCenterApplicationCommand.ts b/clients/client-workmail/src/commands/DeleteIdentityCenterApplicationCommand.ts index 5dee2dc59dc04..7b2b0937bc6b6 100644 --- a/clients/client-workmail/src/commands/DeleteIdentityCenterApplicationCommand.ts +++ b/clients/client-workmail/src/commands/DeleteIdentityCenterApplicationCommand.ts @@ -67,6 +67,7 @@ export interface DeleteIdentityCenterApplicationCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteIdentityCenterApplicationCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteIdentityProviderConfigurationCommand.ts b/clients/client-workmail/src/commands/DeleteIdentityProviderConfigurationCommand.ts index 05431be175697..9f0cfcada47f2 100644 --- a/clients/client-workmail/src/commands/DeleteIdentityProviderConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/DeleteIdentityProviderConfigurationCommand.ts @@ -74,6 +74,7 @@ export interface DeleteIdentityProviderConfigurationCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteIdentityProviderConfigurationCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteImpersonationRoleCommand.ts b/clients/client-workmail/src/commands/DeleteImpersonationRoleCommand.ts index be5b7dcbc54e4..c2a44d7e5c902 100644 --- a/clients/client-workmail/src/commands/DeleteImpersonationRoleCommand.ts +++ b/clients/client-workmail/src/commands/DeleteImpersonationRoleCommand.ts @@ -65,6 +65,7 @@ export interface DeleteImpersonationRoleCommandOutput extends DeleteImpersonatio * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteImpersonationRoleCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteMailboxPermissionsCommand.ts b/clients/client-workmail/src/commands/DeleteMailboxPermissionsCommand.ts index fd188eb0edf09..7d6ec0bb3d549 100644 --- a/clients/client-workmail/src/commands/DeleteMailboxPermissionsCommand.ts +++ b/clients/client-workmail/src/commands/DeleteMailboxPermissionsCommand.ts @@ -74,6 +74,7 @@ export interface DeleteMailboxPermissionsCommandOutput extends DeleteMailboxPerm * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteMailboxPermissionsCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteMobileDeviceAccessOverrideCommand.ts b/clients/client-workmail/src/commands/DeleteMobileDeviceAccessOverrideCommand.ts index a4e4f5a2e8278..fefb18540560e 100644 --- a/clients/client-workmail/src/commands/DeleteMobileDeviceAccessOverrideCommand.ts +++ b/clients/client-workmail/src/commands/DeleteMobileDeviceAccessOverrideCommand.ts @@ -78,6 +78,7 @@ export interface DeleteMobileDeviceAccessOverrideCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteMobileDeviceAccessOverrideCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteMobileDeviceAccessRuleCommand.ts b/clients/client-workmail/src/commands/DeleteMobileDeviceAccessRuleCommand.ts index 4aa9be5b7baa3..a2a8742aa3d93 100644 --- a/clients/client-workmail/src/commands/DeleteMobileDeviceAccessRuleCommand.ts +++ b/clients/client-workmail/src/commands/DeleteMobileDeviceAccessRuleCommand.ts @@ -73,6 +73,7 @@ export interface DeleteMobileDeviceAccessRuleCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteMobileDeviceAccessRuleCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteOrganizationCommand.ts b/clients/client-workmail/src/commands/DeleteOrganizationCommand.ts index 2596d63482854..dd977d3434c92 100644 --- a/clients/client-workmail/src/commands/DeleteOrganizationCommand.ts +++ b/clients/client-workmail/src/commands/DeleteOrganizationCommand.ts @@ -71,6 +71,7 @@ export interface DeleteOrganizationCommandOutput extends DeleteOrganizationRespo * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteOrganizationCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeletePersonalAccessTokenCommand.ts b/clients/client-workmail/src/commands/DeletePersonalAccessTokenCommand.ts index 287c97457a687..15e088da3ff05 100644 --- a/clients/client-workmail/src/commands/DeletePersonalAccessTokenCommand.ts +++ b/clients/client-workmail/src/commands/DeletePersonalAccessTokenCommand.ts @@ -67,6 +67,7 @@ export interface DeletePersonalAccessTokenCommandOutput extends DeletePersonalAc * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeletePersonalAccessTokenCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteResourceCommand.ts b/clients/client-workmail/src/commands/DeleteResourceCommand.ts index b1bc7a958964e..56074681fb5bc 100644 --- a/clients/client-workmail/src/commands/DeleteResourceCommand.ts +++ b/clients/client-workmail/src/commands/DeleteResourceCommand.ts @@ -72,6 +72,7 @@ export interface DeleteResourceCommandOutput extends DeleteResourceResponse, __M * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteResourceCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteRetentionPolicyCommand.ts b/clients/client-workmail/src/commands/DeleteRetentionPolicyCommand.ts index 6528c58c156ef..c61c1e3fbb3cd 100644 --- a/clients/client-workmail/src/commands/DeleteRetentionPolicyCommand.ts +++ b/clients/client-workmail/src/commands/DeleteRetentionPolicyCommand.ts @@ -65,6 +65,7 @@ export interface DeleteRetentionPolicyCommandOutput extends DeleteRetentionPolic * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteRetentionPolicyCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeleteUserCommand.ts b/clients/client-workmail/src/commands/DeleteUserCommand.ts index db6fec7813b47..4c5efb717018b 100644 --- a/clients/client-workmail/src/commands/DeleteUserCommand.ts +++ b/clients/client-workmail/src/commands/DeleteUserCommand.ts @@ -82,6 +82,7 @@ export interface DeleteUserCommandOutput extends DeleteUserResponse, __MetadataB * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeleteUserCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeregisterFromWorkMailCommand.ts b/clients/client-workmail/src/commands/DeregisterFromWorkMailCommand.ts index a6e916b51834e..7d70dc656a7d1 100644 --- a/clients/client-workmail/src/commands/DeregisterFromWorkMailCommand.ts +++ b/clients/client-workmail/src/commands/DeregisterFromWorkMailCommand.ts @@ -76,6 +76,7 @@ export interface DeregisterFromWorkMailCommandOutput extends DeregisterFromWorkM * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeregisterFromWorkMailCommand extends $Command diff --git a/clients/client-workmail/src/commands/DeregisterMailDomainCommand.ts b/clients/client-workmail/src/commands/DeregisterMailDomainCommand.ts index 9a7617a3921a1..fb56409fbf86f 100644 --- a/clients/client-workmail/src/commands/DeregisterMailDomainCommand.ts +++ b/clients/client-workmail/src/commands/DeregisterMailDomainCommand.ts @@ -73,6 +73,7 @@ export interface DeregisterMailDomainCommandOutput extends DeregisterMailDomainR * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DeregisterMailDomainCommand extends $Command diff --git a/clients/client-workmail/src/commands/DescribeEmailMonitoringConfigurationCommand.ts b/clients/client-workmail/src/commands/DescribeEmailMonitoringConfigurationCommand.ts index 65161deda228f..11167b12be7f2 100644 --- a/clients/client-workmail/src/commands/DescribeEmailMonitoringConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/DescribeEmailMonitoringConfigurationCommand.ts @@ -78,6 +78,7 @@ export interface DescribeEmailMonitoringConfigurationCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DescribeEmailMonitoringConfigurationCommand extends $Command diff --git a/clients/client-workmail/src/commands/DescribeEntityCommand.ts b/clients/client-workmail/src/commands/DescribeEntityCommand.ts index 5f432cfb12ff7..658a13e82fd04 100644 --- a/clients/client-workmail/src/commands/DescribeEntityCommand.ts +++ b/clients/client-workmail/src/commands/DescribeEntityCommand.ts @@ -73,6 +73,7 @@ export interface DescribeEntityCommandOutput extends DescribeEntityResponse, __M * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DescribeEntityCommand extends $Command diff --git a/clients/client-workmail/src/commands/DescribeGroupCommand.ts b/clients/client-workmail/src/commands/DescribeGroupCommand.ts index ba4793f08c360..2182d4bab5b7a 100644 --- a/clients/client-workmail/src/commands/DescribeGroupCommand.ts +++ b/clients/client-workmail/src/commands/DescribeGroupCommand.ts @@ -77,6 +77,7 @@ export interface DescribeGroupCommandOutput extends DescribeGroupResponse, __Met * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DescribeGroupCommand extends $Command diff --git a/clients/client-workmail/src/commands/DescribeIdentityProviderConfigurationCommand.ts b/clients/client-workmail/src/commands/DescribeIdentityProviderConfigurationCommand.ts index 4e25141c46490..18f09ace0c3df 100644 --- a/clients/client-workmail/src/commands/DescribeIdentityProviderConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/DescribeIdentityProviderConfigurationCommand.ts @@ -88,6 +88,7 @@ export interface DescribeIdentityProviderConfigurationCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DescribeIdentityProviderConfigurationCommand extends $Command diff --git a/clients/client-workmail/src/commands/DescribeInboundDmarcSettingsCommand.ts b/clients/client-workmail/src/commands/DescribeInboundDmarcSettingsCommand.ts index 4588f8b517686..77213cf9b6c0e 100644 --- a/clients/client-workmail/src/commands/DescribeInboundDmarcSettingsCommand.ts +++ b/clients/client-workmail/src/commands/DescribeInboundDmarcSettingsCommand.ts @@ -68,6 +68,7 @@ export interface DescribeInboundDmarcSettingsCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DescribeInboundDmarcSettingsCommand extends $Command diff --git a/clients/client-workmail/src/commands/DescribeMailboxExportJobCommand.ts b/clients/client-workmail/src/commands/DescribeMailboxExportJobCommand.ts index 86e83eb549e58..82907dc39bb06 100644 --- a/clients/client-workmail/src/commands/DescribeMailboxExportJobCommand.ts +++ b/clients/client-workmail/src/commands/DescribeMailboxExportJobCommand.ts @@ -82,6 +82,7 @@ export interface DescribeMailboxExportJobCommandOutput extends DescribeMailboxEx * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DescribeMailboxExportJobCommand extends $Command diff --git a/clients/client-workmail/src/commands/DescribeOrganizationCommand.ts b/clients/client-workmail/src/commands/DescribeOrganizationCommand.ts index e108ae8d3aa3d..bee8189b0f3ef 100644 --- a/clients/client-workmail/src/commands/DescribeOrganizationCommand.ts +++ b/clients/client-workmail/src/commands/DescribeOrganizationCommand.ts @@ -73,6 +73,7 @@ export interface DescribeOrganizationCommandOutput extends DescribeOrganizationR * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DescribeOrganizationCommand extends $Command diff --git a/clients/client-workmail/src/commands/DescribeResourceCommand.ts b/clients/client-workmail/src/commands/DescribeResourceCommand.ts index 4ef8e1a32836d..6657c8be0f3d6 100644 --- a/clients/client-workmail/src/commands/DescribeResourceCommand.ts +++ b/clients/client-workmail/src/commands/DescribeResourceCommand.ts @@ -91,6 +91,7 @@ export interface DescribeResourceCommandOutput extends DescribeResourceResponse, * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DescribeResourceCommand extends $Command diff --git a/clients/client-workmail/src/commands/DescribeUserCommand.ts b/clients/client-workmail/src/commands/DescribeUserCommand.ts index e26498df28f6e..c5efda208f4f0 100644 --- a/clients/client-workmail/src/commands/DescribeUserCommand.ts +++ b/clients/client-workmail/src/commands/DescribeUserCommand.ts @@ -101,6 +101,7 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DescribeUserCommand extends $Command diff --git a/clients/client-workmail/src/commands/DisassociateDelegateFromResourceCommand.ts b/clients/client-workmail/src/commands/DisassociateDelegateFromResourceCommand.ts index 2b1163b4d8532..b37a770fb1624 100644 --- a/clients/client-workmail/src/commands/DisassociateDelegateFromResourceCommand.ts +++ b/clients/client-workmail/src/commands/DisassociateDelegateFromResourceCommand.ts @@ -82,6 +82,7 @@ export interface DisassociateDelegateFromResourceCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DisassociateDelegateFromResourceCommand extends $Command diff --git a/clients/client-workmail/src/commands/DisassociateMemberFromGroupCommand.ts b/clients/client-workmail/src/commands/DisassociateMemberFromGroupCommand.ts index c56cbb84c184d..0c1b796e33f54 100644 --- a/clients/client-workmail/src/commands/DisassociateMemberFromGroupCommand.ts +++ b/clients/client-workmail/src/commands/DisassociateMemberFromGroupCommand.ts @@ -85,6 +85,7 @@ export interface DisassociateMemberFromGroupCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class DisassociateMemberFromGroupCommand extends $Command diff --git a/clients/client-workmail/src/commands/GetAccessControlEffectCommand.ts b/clients/client-workmail/src/commands/GetAccessControlEffectCommand.ts index 2bde0e8c939e1..cc6ec9548a1a1 100644 --- a/clients/client-workmail/src/commands/GetAccessControlEffectCommand.ts +++ b/clients/client-workmail/src/commands/GetAccessControlEffectCommand.ts @@ -81,6 +81,7 @@ export interface GetAccessControlEffectCommandOutput extends GetAccessControlEff * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class GetAccessControlEffectCommand extends $Command diff --git a/clients/client-workmail/src/commands/GetDefaultRetentionPolicyCommand.ts b/clients/client-workmail/src/commands/GetDefaultRetentionPolicyCommand.ts index 0951e5a3976aa..354d308dd3990 100644 --- a/clients/client-workmail/src/commands/GetDefaultRetentionPolicyCommand.ts +++ b/clients/client-workmail/src/commands/GetDefaultRetentionPolicyCommand.ts @@ -79,6 +79,7 @@ export interface GetDefaultRetentionPolicyCommandOutput extends GetDefaultRetent * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class GetDefaultRetentionPolicyCommand extends $Command diff --git a/clients/client-workmail/src/commands/GetImpersonationRoleCommand.ts b/clients/client-workmail/src/commands/GetImpersonationRoleCommand.ts index 44fa44dae4699..cba5215b70a04 100644 --- a/clients/client-workmail/src/commands/GetImpersonationRoleCommand.ts +++ b/clients/client-workmail/src/commands/GetImpersonationRoleCommand.ts @@ -89,6 +89,7 @@ export interface GetImpersonationRoleCommandOutput extends GetImpersonationRoleR * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class GetImpersonationRoleCommand extends $Command diff --git a/clients/client-workmail/src/commands/GetImpersonationRoleEffectCommand.ts b/clients/client-workmail/src/commands/GetImpersonationRoleEffectCommand.ts index ab2026580e588..6ec823c121c91 100644 --- a/clients/client-workmail/src/commands/GetImpersonationRoleEffectCommand.ts +++ b/clients/client-workmail/src/commands/GetImpersonationRoleEffectCommand.ts @@ -86,6 +86,7 @@ export interface GetImpersonationRoleEffectCommandOutput extends GetImpersonatio * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class GetImpersonationRoleEffectCommand extends $Command diff --git a/clients/client-workmail/src/commands/GetMailDomainCommand.ts b/clients/client-workmail/src/commands/GetMailDomainCommand.ts index 263aa10b1bbf6..57b637bc7399c 100644 --- a/clients/client-workmail/src/commands/GetMailDomainCommand.ts +++ b/clients/client-workmail/src/commands/GetMailDomainCommand.ts @@ -80,6 +80,7 @@ export interface GetMailDomainCommandOutput extends GetMailDomainResponse, __Met * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class GetMailDomainCommand extends $Command diff --git a/clients/client-workmail/src/commands/GetMailboxDetailsCommand.ts b/clients/client-workmail/src/commands/GetMailboxDetailsCommand.ts index 6b2c6e4ed0e32..6044968aed209 100644 --- a/clients/client-workmail/src/commands/GetMailboxDetailsCommand.ts +++ b/clients/client-workmail/src/commands/GetMailboxDetailsCommand.ts @@ -72,6 +72,7 @@ export interface GetMailboxDetailsCommandOutput extends GetMailboxDetailsRespons * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class GetMailboxDetailsCommand extends $Command diff --git a/clients/client-workmail/src/commands/GetMobileDeviceAccessEffectCommand.ts b/clients/client-workmail/src/commands/GetMobileDeviceAccessEffectCommand.ts index 3f12f7df2e7e8..6fe499d885966 100644 --- a/clients/client-workmail/src/commands/GetMobileDeviceAccessEffectCommand.ts +++ b/clients/client-workmail/src/commands/GetMobileDeviceAccessEffectCommand.ts @@ -79,6 +79,7 @@ export interface GetMobileDeviceAccessEffectCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class GetMobileDeviceAccessEffectCommand extends $Command diff --git a/clients/client-workmail/src/commands/GetMobileDeviceAccessOverrideCommand.ts b/clients/client-workmail/src/commands/GetMobileDeviceAccessOverrideCommand.ts index ba84e141c09eb..39d58c3361191 100644 --- a/clients/client-workmail/src/commands/GetMobileDeviceAccessOverrideCommand.ts +++ b/clients/client-workmail/src/commands/GetMobileDeviceAccessOverrideCommand.ts @@ -85,6 +85,7 @@ export interface GetMobileDeviceAccessOverrideCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class GetMobileDeviceAccessOverrideCommand extends $Command diff --git a/clients/client-workmail/src/commands/GetPersonalAccessTokenMetadataCommand.ts b/clients/client-workmail/src/commands/GetPersonalAccessTokenMetadataCommand.ts index f4020b782b434..d2decf21f3907 100644 --- a/clients/client-workmail/src/commands/GetPersonalAccessTokenMetadataCommand.ts +++ b/clients/client-workmail/src/commands/GetPersonalAccessTokenMetadataCommand.ts @@ -85,6 +85,7 @@ export interface GetPersonalAccessTokenMetadataCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class GetPersonalAccessTokenMetadataCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListAccessControlRulesCommand.ts b/clients/client-workmail/src/commands/ListAccessControlRulesCommand.ts index a48a09d83413a..c2ef18cb6f749 100644 --- a/clients/client-workmail/src/commands/ListAccessControlRulesCommand.ts +++ b/clients/client-workmail/src/commands/ListAccessControlRulesCommand.ts @@ -95,6 +95,7 @@ export interface ListAccessControlRulesCommandOutput extends ListAccessControlRu * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListAccessControlRulesCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListAliasesCommand.ts b/clients/client-workmail/src/commands/ListAliasesCommand.ts index 3576b760143f5..3017bc34e10b3 100644 --- a/clients/client-workmail/src/commands/ListAliasesCommand.ts +++ b/clients/client-workmail/src/commands/ListAliasesCommand.ts @@ -81,6 +81,7 @@ export interface ListAliasesCommandOutput extends ListAliasesResponse, __Metadat * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListAliasesCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListAvailabilityConfigurationsCommand.ts b/clients/client-workmail/src/commands/ListAvailabilityConfigurationsCommand.ts index 790f14f8b5fe7..d89d3a6d653b0 100644 --- a/clients/client-workmail/src/commands/ListAvailabilityConfigurationsCommand.ts +++ b/clients/client-workmail/src/commands/ListAvailabilityConfigurationsCommand.ts @@ -88,6 +88,7 @@ export interface ListAvailabilityConfigurationsCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListAvailabilityConfigurationsCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListGroupMembersCommand.ts b/clients/client-workmail/src/commands/ListGroupMembersCommand.ts index efcec5b51b19e..c72020a6992e8 100644 --- a/clients/client-workmail/src/commands/ListGroupMembersCommand.ts +++ b/clients/client-workmail/src/commands/ListGroupMembersCommand.ts @@ -88,6 +88,7 @@ export interface ListGroupMembersCommandOutput extends ListGroupMembersResponse, * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListGroupMembersCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListGroupsCommand.ts b/clients/client-workmail/src/commands/ListGroupsCommand.ts index 2b97653cb3464..0644eb16f0b91 100644 --- a/clients/client-workmail/src/commands/ListGroupsCommand.ts +++ b/clients/client-workmail/src/commands/ListGroupsCommand.ts @@ -87,6 +87,7 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListGroupsCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListGroupsForEntityCommand.ts b/clients/client-workmail/src/commands/ListGroupsForEntityCommand.ts index 1126e7703b742..0d46ed4825308 100644 --- a/clients/client-workmail/src/commands/ListGroupsForEntityCommand.ts +++ b/clients/client-workmail/src/commands/ListGroupsForEntityCommand.ts @@ -86,6 +86,7 @@ export interface ListGroupsForEntityCommandOutput extends ListGroupsForEntityRes * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListGroupsForEntityCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListImpersonationRolesCommand.ts b/clients/client-workmail/src/commands/ListImpersonationRolesCommand.ts index 6dd58024b434e..09527d785eeed 100644 --- a/clients/client-workmail/src/commands/ListImpersonationRolesCommand.ts +++ b/clients/client-workmail/src/commands/ListImpersonationRolesCommand.ts @@ -77,6 +77,7 @@ export interface ListImpersonationRolesCommandOutput extends ListImpersonationRo * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListImpersonationRolesCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListMailDomainsCommand.ts b/clients/client-workmail/src/commands/ListMailDomainsCommand.ts index 797d7c73567f4..45112c3c6f79b 100644 --- a/clients/client-workmail/src/commands/ListMailDomainsCommand.ts +++ b/clients/client-workmail/src/commands/ListMailDomainsCommand.ts @@ -74,6 +74,7 @@ export interface ListMailDomainsCommandOutput extends ListMailDomainsResponse, _ * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListMailDomainsCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListMailboxExportJobsCommand.ts b/clients/client-workmail/src/commands/ListMailboxExportJobsCommand.ts index 94fad17ef9eda..27e7c5544aded 100644 --- a/clients/client-workmail/src/commands/ListMailboxExportJobsCommand.ts +++ b/clients/client-workmail/src/commands/ListMailboxExportJobsCommand.ts @@ -82,6 +82,7 @@ export interface ListMailboxExportJobsCommandOutput extends ListMailboxExportJob * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListMailboxExportJobsCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListMailboxPermissionsCommand.ts b/clients/client-workmail/src/commands/ListMailboxPermissionsCommand.ts index c9e6873b6a9a1..cff8a1c774546 100644 --- a/clients/client-workmail/src/commands/ListMailboxPermissionsCommand.ts +++ b/clients/client-workmail/src/commands/ListMailboxPermissionsCommand.ts @@ -83,6 +83,7 @@ export interface ListMailboxPermissionsCommandOutput extends ListMailboxPermissi * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListMailboxPermissionsCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListMobileDeviceAccessOverridesCommand.ts b/clients/client-workmail/src/commands/ListMobileDeviceAccessOverridesCommand.ts index ddc3f96cc5a5c..a64ed074ed8e7 100644 --- a/clients/client-workmail/src/commands/ListMobileDeviceAccessOverridesCommand.ts +++ b/clients/client-workmail/src/commands/ListMobileDeviceAccessOverridesCommand.ts @@ -89,6 +89,7 @@ export interface ListMobileDeviceAccessOverridesCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListMobileDeviceAccessOverridesCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListMobileDeviceAccessRulesCommand.ts b/clients/client-workmail/src/commands/ListMobileDeviceAccessRulesCommand.ts index cd59cdf87aec3..d35811e862128 100644 --- a/clients/client-workmail/src/commands/ListMobileDeviceAccessRulesCommand.ts +++ b/clients/client-workmail/src/commands/ListMobileDeviceAccessRulesCommand.ts @@ -101,6 +101,7 @@ export interface ListMobileDeviceAccessRulesCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListMobileDeviceAccessRulesCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListOrganizationsCommand.ts b/clients/client-workmail/src/commands/ListOrganizationsCommand.ts index a98ae43c35015..ef4b9a43cb8af 100644 --- a/clients/client-workmail/src/commands/ListOrganizationsCommand.ts +++ b/clients/client-workmail/src/commands/ListOrganizationsCommand.ts @@ -68,6 +68,7 @@ export interface ListOrganizationsCommandOutput extends ListOrganizationsRespons * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListOrganizationsCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListPersonalAccessTokensCommand.ts b/clients/client-workmail/src/commands/ListPersonalAccessTokensCommand.ts index 8521a53a08dbd..4b7820e613787 100644 --- a/clients/client-workmail/src/commands/ListPersonalAccessTokensCommand.ts +++ b/clients/client-workmail/src/commands/ListPersonalAccessTokensCommand.ts @@ -92,6 +92,7 @@ export interface ListPersonalAccessTokensCommandOutput extends ListPersonalAcces * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListPersonalAccessTokensCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListResourceDelegatesCommand.ts b/clients/client-workmail/src/commands/ListResourceDelegatesCommand.ts index 1c6ebc2a303b0..232c37485e2a0 100644 --- a/clients/client-workmail/src/commands/ListResourceDelegatesCommand.ts +++ b/clients/client-workmail/src/commands/ListResourceDelegatesCommand.ts @@ -87,6 +87,7 @@ export interface ListResourceDelegatesCommandOutput extends ListResourceDelegate * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListResourceDelegatesCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListResourcesCommand.ts b/clients/client-workmail/src/commands/ListResourcesCommand.ts index 1b75f8d7c26a1..7bc1b1ff1210c 100644 --- a/clients/client-workmail/src/commands/ListResourcesCommand.ts +++ b/clients/client-workmail/src/commands/ListResourcesCommand.ts @@ -92,6 +92,7 @@ export interface ListResourcesCommandOutput extends ListResourcesResponse, __Met * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListResourcesCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListTagsForResourceCommand.ts b/clients/client-workmail/src/commands/ListTagsForResourceCommand.ts index 39dd8ed5f9ed5..4f018776e925e 100644 --- a/clients/client-workmail/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-workmail/src/commands/ListTagsForResourceCommand.ts @@ -63,6 +63,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-workmail/src/commands/ListUsersCommand.ts b/clients/client-workmail/src/commands/ListUsersCommand.ts index 8def45e047781..972a7f0b11168 100644 --- a/clients/client-workmail/src/commands/ListUsersCommand.ts +++ b/clients/client-workmail/src/commands/ListUsersCommand.ts @@ -89,6 +89,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ListUsersCommand extends $Command diff --git a/clients/client-workmail/src/commands/PutAccessControlRuleCommand.ts b/clients/client-workmail/src/commands/PutAccessControlRuleCommand.ts index 715bd2d17f891..ab4d51e2ed1bb 100644 --- a/clients/client-workmail/src/commands/PutAccessControlRuleCommand.ts +++ b/clients/client-workmail/src/commands/PutAccessControlRuleCommand.ts @@ -104,6 +104,7 @@ export interface PutAccessControlRuleCommandOutput extends PutAccessControlRuleR * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class PutAccessControlRuleCommand extends $Command diff --git a/clients/client-workmail/src/commands/PutEmailMonitoringConfigurationCommand.ts b/clients/client-workmail/src/commands/PutEmailMonitoringConfigurationCommand.ts index 8835350eeb5a8..c31252f634717 100644 --- a/clients/client-workmail/src/commands/PutEmailMonitoringConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/PutEmailMonitoringConfigurationCommand.ts @@ -74,6 +74,7 @@ export interface PutEmailMonitoringConfigurationCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class PutEmailMonitoringConfigurationCommand extends $Command diff --git a/clients/client-workmail/src/commands/PutIdentityProviderConfigurationCommand.ts b/clients/client-workmail/src/commands/PutIdentityProviderConfigurationCommand.ts index ae157d92b9541..d8a1d6cb76126 100644 --- a/clients/client-workmail/src/commands/PutIdentityProviderConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/PutIdentityProviderConfigurationCommand.ts @@ -85,6 +85,7 @@ export interface PutIdentityProviderConfigurationCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class PutIdentityProviderConfigurationCommand extends $Command diff --git a/clients/client-workmail/src/commands/PutInboundDmarcSettingsCommand.ts b/clients/client-workmail/src/commands/PutInboundDmarcSettingsCommand.ts index 67a935ca88ac9..10b676472ba0c 100644 --- a/clients/client-workmail/src/commands/PutInboundDmarcSettingsCommand.ts +++ b/clients/client-workmail/src/commands/PutInboundDmarcSettingsCommand.ts @@ -62,6 +62,7 @@ export interface PutInboundDmarcSettingsCommandOutput extends PutInboundDmarcSet * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class PutInboundDmarcSettingsCommand extends $Command diff --git a/clients/client-workmail/src/commands/PutMailboxPermissionsCommand.ts b/clients/client-workmail/src/commands/PutMailboxPermissionsCommand.ts index b8b2f4fd77886..03d1808a808fa 100644 --- a/clients/client-workmail/src/commands/PutMailboxPermissionsCommand.ts +++ b/clients/client-workmail/src/commands/PutMailboxPermissionsCommand.ts @@ -78,6 +78,7 @@ export interface PutMailboxPermissionsCommandOutput extends PutMailboxPermission * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class PutMailboxPermissionsCommand extends $Command diff --git a/clients/client-workmail/src/commands/PutMobileDeviceAccessOverrideCommand.ts b/clients/client-workmail/src/commands/PutMobileDeviceAccessOverrideCommand.ts index e615d75b4b632..3dd5d69b0414a 100644 --- a/clients/client-workmail/src/commands/PutMobileDeviceAccessOverrideCommand.ts +++ b/clients/client-workmail/src/commands/PutMobileDeviceAccessOverrideCommand.ts @@ -81,6 +81,7 @@ export interface PutMobileDeviceAccessOverrideCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class PutMobileDeviceAccessOverrideCommand extends $Command diff --git a/clients/client-workmail/src/commands/PutRetentionPolicyCommand.ts b/clients/client-workmail/src/commands/PutRetentionPolicyCommand.ts index efb7f4b206bd9..2c8cdfcab2a33 100644 --- a/clients/client-workmail/src/commands/PutRetentionPolicyCommand.ts +++ b/clients/client-workmail/src/commands/PutRetentionPolicyCommand.ts @@ -81,6 +81,7 @@ export interface PutRetentionPolicyCommandOutput extends PutRetentionPolicyRespo * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class PutRetentionPolicyCommand extends $Command diff --git a/clients/client-workmail/src/commands/RegisterMailDomainCommand.ts b/clients/client-workmail/src/commands/RegisterMailDomainCommand.ts index c1262f0dbf65c..19681217c28a1 100644 --- a/clients/client-workmail/src/commands/RegisterMailDomainCommand.ts +++ b/clients/client-workmail/src/commands/RegisterMailDomainCommand.ts @@ -73,6 +73,7 @@ export interface RegisterMailDomainCommandOutput extends RegisterMailDomainRespo * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class RegisterMailDomainCommand extends $Command diff --git a/clients/client-workmail/src/commands/RegisterToWorkMailCommand.ts b/clients/client-workmail/src/commands/RegisterToWorkMailCommand.ts index a2105ca92e62e..3ffbac4cd0498 100644 --- a/clients/client-workmail/src/commands/RegisterToWorkMailCommand.ts +++ b/clients/client-workmail/src/commands/RegisterToWorkMailCommand.ts @@ -101,6 +101,7 @@ export interface RegisterToWorkMailCommandOutput extends RegisterToWorkMailRespo * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class RegisterToWorkMailCommand extends $Command diff --git a/clients/client-workmail/src/commands/ResetPasswordCommand.ts b/clients/client-workmail/src/commands/ResetPasswordCommand.ts index f15c7cde7138d..c64ad3a644c30 100644 --- a/clients/client-workmail/src/commands/ResetPasswordCommand.ts +++ b/clients/client-workmail/src/commands/ResetPasswordCommand.ts @@ -91,6 +91,7 @@ export interface ResetPasswordCommandOutput extends ResetPasswordResponse, __Met * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class ResetPasswordCommand extends $Command diff --git a/clients/client-workmail/src/commands/StartMailboxExportJobCommand.ts b/clients/client-workmail/src/commands/StartMailboxExportJobCommand.ts index 8bef470804766..622403466b013 100644 --- a/clients/client-workmail/src/commands/StartMailboxExportJobCommand.ts +++ b/clients/client-workmail/src/commands/StartMailboxExportJobCommand.ts @@ -83,6 +83,7 @@ export interface StartMailboxExportJobCommandOutput extends StartMailboxExportJo * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class StartMailboxExportJobCommand extends $Command diff --git a/clients/client-workmail/src/commands/TagResourceCommand.ts b/clients/client-workmail/src/commands/TagResourceCommand.ts index e5575e02783ff..c1012d3191640 100644 --- a/clients/client-workmail/src/commands/TagResourceCommand.ts +++ b/clients/client-workmail/src/commands/TagResourceCommand.ts @@ -73,6 +73,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-workmail/src/commands/TestAvailabilityConfigurationCommand.ts b/clients/client-workmail/src/commands/TestAvailabilityConfigurationCommand.ts index bcce135d65a00..87474c8f84c4d 100644 --- a/clients/client-workmail/src/commands/TestAvailabilityConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/TestAvailabilityConfigurationCommand.ts @@ -95,6 +95,7 @@ export interface TestAvailabilityConfigurationCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class TestAvailabilityConfigurationCommand extends $Command diff --git a/clients/client-workmail/src/commands/UntagResourceCommand.ts b/clients/client-workmail/src/commands/UntagResourceCommand.ts index 5479cbb1ff7ae..e2d4130d68a27 100644 --- a/clients/client-workmail/src/commands/UntagResourceCommand.ts +++ b/clients/client-workmail/src/commands/UntagResourceCommand.ts @@ -60,6 +60,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-workmail/src/commands/UpdateAvailabilityConfigurationCommand.ts b/clients/client-workmail/src/commands/UpdateAvailabilityConfigurationCommand.ts index 4802f937de332..55ca2389acca9 100644 --- a/clients/client-workmail/src/commands/UpdateAvailabilityConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/UpdateAvailabilityConfigurationCommand.ts @@ -86,6 +86,7 @@ export interface UpdateAvailabilityConfigurationCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class UpdateAvailabilityConfigurationCommand extends $Command diff --git a/clients/client-workmail/src/commands/UpdateDefaultMailDomainCommand.ts b/clients/client-workmail/src/commands/UpdateDefaultMailDomainCommand.ts index 952152c1be10f..3930745f10573 100644 --- a/clients/client-workmail/src/commands/UpdateDefaultMailDomainCommand.ts +++ b/clients/client-workmail/src/commands/UpdateDefaultMailDomainCommand.ts @@ -72,6 +72,7 @@ export interface UpdateDefaultMailDomainCommandOutput extends UpdateDefaultMailD * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class UpdateDefaultMailDomainCommand extends $Command diff --git a/clients/client-workmail/src/commands/UpdateGroupCommand.ts b/clients/client-workmail/src/commands/UpdateGroupCommand.ts index 2077880129362..ed6216df2ea0a 100644 --- a/clients/client-workmail/src/commands/UpdateGroupCommand.ts +++ b/clients/client-workmail/src/commands/UpdateGroupCommand.ts @@ -77,6 +77,7 @@ export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __Metadat * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class UpdateGroupCommand extends $Command diff --git a/clients/client-workmail/src/commands/UpdateImpersonationRoleCommand.ts b/clients/client-workmail/src/commands/UpdateImpersonationRoleCommand.ts index cdb1da18e89af..874eaccd9b249 100644 --- a/clients/client-workmail/src/commands/UpdateImpersonationRoleCommand.ts +++ b/clients/client-workmail/src/commands/UpdateImpersonationRoleCommand.ts @@ -96,6 +96,7 @@ export interface UpdateImpersonationRoleCommandOutput extends UpdateImpersonatio * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class UpdateImpersonationRoleCommand extends $Command diff --git a/clients/client-workmail/src/commands/UpdateMailboxQuotaCommand.ts b/clients/client-workmail/src/commands/UpdateMailboxQuotaCommand.ts index ce6b158cfc953..0d0f1f9a2339a 100644 --- a/clients/client-workmail/src/commands/UpdateMailboxQuotaCommand.ts +++ b/clients/client-workmail/src/commands/UpdateMailboxQuotaCommand.ts @@ -75,6 +75,7 @@ export interface UpdateMailboxQuotaCommandOutput extends UpdateMailboxQuotaRespo * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class UpdateMailboxQuotaCommand extends $Command diff --git a/clients/client-workmail/src/commands/UpdateMobileDeviceAccessRuleCommand.ts b/clients/client-workmail/src/commands/UpdateMobileDeviceAccessRuleCommand.ts index e51a9e4cdf5a9..c5f93e756ee70 100644 --- a/clients/client-workmail/src/commands/UpdateMobileDeviceAccessRuleCommand.ts +++ b/clients/client-workmail/src/commands/UpdateMobileDeviceAccessRuleCommand.ts @@ -101,6 +101,7 @@ export interface UpdateMobileDeviceAccessRuleCommandOutput * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class UpdateMobileDeviceAccessRuleCommand extends $Command diff --git a/clients/client-workmail/src/commands/UpdatePrimaryEmailAddressCommand.ts b/clients/client-workmail/src/commands/UpdatePrimaryEmailAddressCommand.ts index 7b184011a60f5..bbf0711d98387 100644 --- a/clients/client-workmail/src/commands/UpdatePrimaryEmailAddressCommand.ts +++ b/clients/client-workmail/src/commands/UpdatePrimaryEmailAddressCommand.ts @@ -96,6 +96,7 @@ export interface UpdatePrimaryEmailAddressCommandOutput extends UpdatePrimaryEma * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class UpdatePrimaryEmailAddressCommand extends $Command diff --git a/clients/client-workmail/src/commands/UpdateResourceCommand.ts b/clients/client-workmail/src/commands/UpdateResourceCommand.ts index f8fa351222644..3c92b79ce2897 100644 --- a/clients/client-workmail/src/commands/UpdateResourceCommand.ts +++ b/clients/client-workmail/src/commands/UpdateResourceCommand.ts @@ -113,6 +113,7 @@ export interface UpdateResourceCommandOutput extends UpdateResourceResponse, __M * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class UpdateResourceCommand extends $Command diff --git a/clients/client-workmail/src/commands/UpdateUserCommand.ts b/clients/client-workmail/src/commands/UpdateUserCommand.ts index 18104228fa3e7..cac84fa45af83 100644 --- a/clients/client-workmail/src/commands/UpdateUserCommand.ts +++ b/clients/client-workmail/src/commands/UpdateUserCommand.ts @@ -100,6 +100,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB * @throws {@link WorkMailServiceException} *

Base exception class for all service exceptions from WorkMail service.

* + * * @public */ export class UpdateUserCommand extends $Command diff --git a/clients/client-workmailmessageflow/src/commands/GetRawMessageContentCommand.ts b/clients/client-workmailmessageflow/src/commands/GetRawMessageContentCommand.ts index e5663f7d06349..2c92583e96f71 100644 --- a/clients/client-workmailmessageflow/src/commands/GetRawMessageContentCommand.ts +++ b/clients/client-workmailmessageflow/src/commands/GetRawMessageContentCommand.ts @@ -52,6 +52,11 @@ export interface GetRawMessageContentCommandOutput * }; * const command = new GetRawMessageContentCommand(input); * const response = await client.send(command); + * // consume or destroy the stream to free the socket. + * const bytes = await response.messageContent.transformToByteArray(); + * // const str = await response.messageContent.transformToString(); + * // response.messageContent.destroy(); // only applicable to Node.js Readable streams. + * * // { // GetRawMessageContentResponse * // messageContent: "", // see \@smithy/types -> StreamingBlobPayloadOutputTypes // required * // }; @@ -70,6 +75,7 @@ export interface GetRawMessageContentCommandOutput * @throws {@link WorkMailMessageFlowServiceException} *

Base exception class for all service exceptions from WorkMailMessageFlow service.

* + * * @public */ export class GetRawMessageContentCommand extends $Command diff --git a/clients/client-workmailmessageflow/src/commands/PutRawMessageContentCommand.ts b/clients/client-workmailmessageflow/src/commands/PutRawMessageContentCommand.ts index 308f6ac57f25f..a3347e35a8456 100644 --- a/clients/client-workmailmessageflow/src/commands/PutRawMessageContentCommand.ts +++ b/clients/client-workmailmessageflow/src/commands/PutRawMessageContentCommand.ts @@ -104,6 +104,7 @@ export interface PutRawMessageContentCommandOutput extends PutRawMessageContentR * @throws {@link WorkMailMessageFlowServiceException} *

Base exception class for all service exceptions from WorkMailMessageFlow service.

* + * * @public */ export class PutRawMessageContentCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/CreateEnvironmentCommand.ts b/clients/client-workspaces-thin-client/src/commands/CreateEnvironmentCommand.ts index e4a0bcd253746..aeb0ba796b601 100644 --- a/clients/client-workspaces-thin-client/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/CreateEnvironmentCommand.ts @@ -136,6 +136,7 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentRespons * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class CreateEnvironmentCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/DeleteDeviceCommand.ts b/clients/client-workspaces-thin-client/src/commands/DeleteDeviceCommand.ts index a55b3ac54b909..78e627f1f758f 100644 --- a/clients/client-workspaces-thin-client/src/commands/DeleteDeviceCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/DeleteDeviceCommand.ts @@ -78,6 +78,7 @@ export interface DeleteDeviceCommandOutput extends DeleteDeviceResponse, __Metad * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class DeleteDeviceCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/DeleteEnvironmentCommand.ts b/clients/client-workspaces-thin-client/src/commands/DeleteEnvironmentCommand.ts index e79458f7243dd..1f39f7bd4ecb2 100644 --- a/clients/client-workspaces-thin-client/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/DeleteEnvironmentCommand.ts @@ -78,6 +78,7 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentRespons * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class DeleteEnvironmentCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/DeregisterDeviceCommand.ts b/clients/client-workspaces-thin-client/src/commands/DeregisterDeviceCommand.ts index 22b7d72525d00..b3961c03c12b6 100644 --- a/clients/client-workspaces-thin-client/src/commands/DeregisterDeviceCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/DeregisterDeviceCommand.ts @@ -79,6 +79,7 @@ export interface DeregisterDeviceCommandOutput extends DeregisterDeviceResponse, * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class DeregisterDeviceCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/GetDeviceCommand.ts b/clients/client-workspaces-thin-client/src/commands/GetDeviceCommand.ts index 3882bae45434d..4fc1f84117000 100644 --- a/clients/client-workspaces-thin-client/src/commands/GetDeviceCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/GetDeviceCommand.ts @@ -98,6 +98,7 @@ export interface GetDeviceCommandOutput extends GetDeviceResponse, __MetadataBea * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class GetDeviceCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/GetEnvironmentCommand.ts b/clients/client-workspaces-thin-client/src/commands/GetEnvironmentCommand.ts index 444406834c262..6d2ef29baee2e 100644 --- a/clients/client-workspaces-thin-client/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/GetEnvironmentCommand.ts @@ -113,6 +113,7 @@ export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __M * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class GetEnvironmentCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/GetSoftwareSetCommand.ts b/clients/client-workspaces-thin-client/src/commands/GetSoftwareSetCommand.ts index dfaf59c5c819a..8b46fb0d98bfd 100644 --- a/clients/client-workspaces-thin-client/src/commands/GetSoftwareSetCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/GetSoftwareSetCommand.ts @@ -94,6 +94,7 @@ export interface GetSoftwareSetCommandOutput extends GetSoftwareSetResponse, __M * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class GetSoftwareSetCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/ListDevicesCommand.ts b/clients/client-workspaces-thin-client/src/commands/ListDevicesCommand.ts index c32904705e77a..6a819670620b4 100644 --- a/clients/client-workspaces-thin-client/src/commands/ListDevicesCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/ListDevicesCommand.ts @@ -91,6 +91,7 @@ export interface ListDevicesCommandOutput extends ListDevicesResponse, __Metadat * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class ListDevicesCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/ListEnvironmentsCommand.ts b/clients/client-workspaces-thin-client/src/commands/ListEnvironmentsCommand.ts index da0001bd843ec..a306a7190e699 100644 --- a/clients/client-workspaces-thin-client/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/ListEnvironmentsCommand.ts @@ -104,6 +104,7 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResponse, * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class ListEnvironmentsCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/ListSoftwareSetsCommand.ts b/clients/client-workspaces-thin-client/src/commands/ListSoftwareSetsCommand.ts index 3b9a0aa7f1dcb..c02b88e104ead 100644 --- a/clients/client-workspaces-thin-client/src/commands/ListSoftwareSetsCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/ListSoftwareSetsCommand.ts @@ -82,6 +82,7 @@ export interface ListSoftwareSetsCommandOutput extends ListSoftwareSetsResponse, * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class ListSoftwareSetsCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/ListTagsForResourceCommand.ts b/clients/client-workspaces-thin-client/src/commands/ListTagsForResourceCommand.ts index 828fba005a852..2482e0d733ccf 100644 --- a/clients/client-workspaces-thin-client/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/ListTagsForResourceCommand.ts @@ -80,6 +80,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/TagResourceCommand.ts b/clients/client-workspaces-thin-client/src/commands/TagResourceCommand.ts index 376fc4cc359e2..31def8b041593 100644 --- a/clients/client-workspaces-thin-client/src/commands/TagResourceCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/TagResourceCommand.ts @@ -80,6 +80,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/UntagResourceCommand.ts b/clients/client-workspaces-thin-client/src/commands/UntagResourceCommand.ts index 29afdb551f83f..526cce0a0cab8 100644 --- a/clients/client-workspaces-thin-client/src/commands/UntagResourceCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/UntagResourceCommand.ts @@ -84,6 +84,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/UpdateDeviceCommand.ts b/clients/client-workspaces-thin-client/src/commands/UpdateDeviceCommand.ts index d53ea29b1935b..2472f19c106fc 100644 --- a/clients/client-workspaces-thin-client/src/commands/UpdateDeviceCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/UpdateDeviceCommand.ts @@ -98,6 +98,7 @@ export interface UpdateDeviceCommandOutput extends UpdateDeviceResponse, __Metad * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class UpdateDeviceCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/UpdateEnvironmentCommand.ts b/clients/client-workspaces-thin-client/src/commands/UpdateEnvironmentCommand.ts index 726d2fc9abf10..3041c572effbe 100644 --- a/clients/client-workspaces-thin-client/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/UpdateEnvironmentCommand.ts @@ -124,6 +124,7 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentRespons * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class UpdateEnvironmentCommand extends $Command diff --git a/clients/client-workspaces-thin-client/src/commands/UpdateSoftwareSetCommand.ts b/clients/client-workspaces-thin-client/src/commands/UpdateSoftwareSetCommand.ts index 0f933de593451..4989bd7e7d6ce 100644 --- a/clients/client-workspaces-thin-client/src/commands/UpdateSoftwareSetCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/UpdateSoftwareSetCommand.ts @@ -73,6 +73,7 @@ export interface UpdateSoftwareSetCommandOutput extends UpdateSoftwareSetRespons * @throws {@link WorkSpacesThinClientServiceException} *

Base exception class for all service exceptions from WorkSpacesThinClient service.

* + * * @public */ export class UpdateSoftwareSetCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/AssociateBrowserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/AssociateBrowserSettingsCommand.ts index 2660fa2de190b..7db7771d5e489 100644 --- a/clients/client-workspaces-web/src/commands/AssociateBrowserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateBrowserSettingsCommand.ts @@ -75,6 +75,7 @@ export interface AssociateBrowserSettingsCommandOutput extends AssociateBrowserS * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class AssociateBrowserSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/AssociateDataProtectionSettingsCommand.ts b/clients/client-workspaces-web/src/commands/AssociateDataProtectionSettingsCommand.ts index 5cb89effab301..d5a022bf899ff 100644 --- a/clients/client-workspaces-web/src/commands/AssociateDataProtectionSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateDataProtectionSettingsCommand.ts @@ -80,6 +80,7 @@ export interface AssociateDataProtectionSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class AssociateDataProtectionSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/AssociateIpAccessSettingsCommand.ts b/clients/client-workspaces-web/src/commands/AssociateIpAccessSettingsCommand.ts index b4ab5f1d7d93e..8a856c057e924 100644 --- a/clients/client-workspaces-web/src/commands/AssociateIpAccessSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateIpAccessSettingsCommand.ts @@ -75,6 +75,7 @@ export interface AssociateIpAccessSettingsCommandOutput extends AssociateIpAcces * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class AssociateIpAccessSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/AssociateNetworkSettingsCommand.ts b/clients/client-workspaces-web/src/commands/AssociateNetworkSettingsCommand.ts index 3b09df4d1a1bb..80027ee08d5ef 100644 --- a/clients/client-workspaces-web/src/commands/AssociateNetworkSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateNetworkSettingsCommand.ts @@ -75,6 +75,7 @@ export interface AssociateNetworkSettingsCommandOutput extends AssociateNetworkS * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class AssociateNetworkSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/AssociateTrustStoreCommand.ts b/clients/client-workspaces-web/src/commands/AssociateTrustStoreCommand.ts index 57a1a595dd498..e48fbfeb89f0f 100644 --- a/clients/client-workspaces-web/src/commands/AssociateTrustStoreCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateTrustStoreCommand.ts @@ -75,6 +75,7 @@ export interface AssociateTrustStoreCommandOutput extends AssociateTrustStoreRes * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class AssociateTrustStoreCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/AssociateUserAccessLoggingSettingsCommand.ts b/clients/client-workspaces-web/src/commands/AssociateUserAccessLoggingSettingsCommand.ts index 3042d5a66445f..3027acbd73667 100644 --- a/clients/client-workspaces-web/src/commands/AssociateUserAccessLoggingSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateUserAccessLoggingSettingsCommand.ts @@ -83,6 +83,7 @@ export interface AssociateUserAccessLoggingSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class AssociateUserAccessLoggingSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/AssociateUserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/AssociateUserSettingsCommand.ts index e2aea89c8bf6f..31a29e3b9d5b2 100644 --- a/clients/client-workspaces-web/src/commands/AssociateUserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateUserSettingsCommand.ts @@ -75,6 +75,7 @@ export interface AssociateUserSettingsCommandOutput extends AssociateUserSetting * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class AssociateUserSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/CreateBrowserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/CreateBrowserSettingsCommand.ts index ddebc6da69c6c..1ac965cccce36 100644 --- a/clients/client-workspaces-web/src/commands/CreateBrowserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateBrowserSettingsCommand.ts @@ -93,6 +93,7 @@ export interface CreateBrowserSettingsCommandOutput extends CreateBrowserSetting * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class CreateBrowserSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/CreateDataProtectionSettingsCommand.ts b/clients/client-workspaces-web/src/commands/CreateDataProtectionSettingsCommand.ts index 3144ba09f08fa..c9fefde6bc774 100644 --- a/clients/client-workspaces-web/src/commands/CreateDataProtectionSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateDataProtectionSettingsCommand.ts @@ -128,6 +128,7 @@ export interface CreateDataProtectionSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class CreateDataProtectionSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/CreateIdentityProviderCommand.ts b/clients/client-workspaces-web/src/commands/CreateIdentityProviderCommand.ts index 39be1f4d8458e..b85afc6e2493e 100644 --- a/clients/client-workspaces-web/src/commands/CreateIdentityProviderCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateIdentityProviderCommand.ts @@ -92,6 +92,7 @@ export interface CreateIdentityProviderCommandOutput extends CreateIdentityProvi * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class CreateIdentityProviderCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/CreateIpAccessSettingsCommand.ts b/clients/client-workspaces-web/src/commands/CreateIpAccessSettingsCommand.ts index 5badd60cfc67d..8b2e745027b7e 100644 --- a/clients/client-workspaces-web/src/commands/CreateIpAccessSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateIpAccessSettingsCommand.ts @@ -95,6 +95,7 @@ export interface CreateIpAccessSettingsCommandOutput extends CreateIpAccessSetti * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class CreateIpAccessSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/CreateNetworkSettingsCommand.ts b/clients/client-workspaces-web/src/commands/CreateNetworkSettingsCommand.ts index dfb6069bd20e9..0eb5935932b0f 100644 --- a/clients/client-workspaces-web/src/commands/CreateNetworkSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateNetworkSettingsCommand.ts @@ -92,6 +92,7 @@ export interface CreateNetworkSettingsCommandOutput extends CreateNetworkSetting * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class CreateNetworkSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/CreatePortalCommand.ts b/clients/client-workspaces-web/src/commands/CreatePortalCommand.ts index ae8212e690345..8c4362cd2cbdf 100644 --- a/clients/client-workspaces-web/src/commands/CreatePortalCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreatePortalCommand.ts @@ -91,6 +91,7 @@ export interface CreatePortalCommandOutput extends CreatePortalResponse, __Metad * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class CreatePortalCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/CreateTrustStoreCommand.ts b/clients/client-workspaces-web/src/commands/CreateTrustStoreCommand.ts index 6500bd3043a42..0e904d5cfdd2c 100644 --- a/clients/client-workspaces-web/src/commands/CreateTrustStoreCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateTrustStoreCommand.ts @@ -90,6 +90,7 @@ export interface CreateTrustStoreCommandOutput extends CreateTrustStoreResponse, * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class CreateTrustStoreCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/CreateUserAccessLoggingSettingsCommand.ts b/clients/client-workspaces-web/src/commands/CreateUserAccessLoggingSettingsCommand.ts index dc254a2205a59..dacc2f7311249 100644 --- a/clients/client-workspaces-web/src/commands/CreateUserAccessLoggingSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateUserAccessLoggingSettingsCommand.ts @@ -90,6 +90,7 @@ export interface CreateUserAccessLoggingSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class CreateUserAccessLoggingSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/CreateUserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/CreateUserSettingsCommand.ts index 5bb00ff878982..ae72294f5b8b1 100644 --- a/clients/client-workspaces-web/src/commands/CreateUserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateUserSettingsCommand.ts @@ -121,6 +121,7 @@ export interface CreateUserSettingsCommandOutput extends CreateUserSettingsRespo * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class CreateUserSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DeleteBrowserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DeleteBrowserSettingsCommand.ts index d88013ecbbb86..e722859715c22 100644 --- a/clients/client-workspaces-web/src/commands/DeleteBrowserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteBrowserSettingsCommand.ts @@ -68,6 +68,7 @@ export interface DeleteBrowserSettingsCommandOutput extends DeleteBrowserSetting * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DeleteBrowserSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DeleteDataProtectionSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DeleteDataProtectionSettingsCommand.ts index 7304bd8a8fc8c..db270582b0db1 100644 --- a/clients/client-workspaces-web/src/commands/DeleteDataProtectionSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteDataProtectionSettingsCommand.ts @@ -73,6 +73,7 @@ export interface DeleteDataProtectionSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DeleteDataProtectionSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DeleteIdentityProviderCommand.ts b/clients/client-workspaces-web/src/commands/DeleteIdentityProviderCommand.ts index 12a23b7f77adf..daed1c8cc74ed 100644 --- a/clients/client-workspaces-web/src/commands/DeleteIdentityProviderCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteIdentityProviderCommand.ts @@ -68,6 +68,7 @@ export interface DeleteIdentityProviderCommandOutput extends DeleteIdentityProvi * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DeleteIdentityProviderCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DeleteIpAccessSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DeleteIpAccessSettingsCommand.ts index 6ef65bc62db8c..953df6bab3ac7 100644 --- a/clients/client-workspaces-web/src/commands/DeleteIpAccessSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteIpAccessSettingsCommand.ts @@ -68,6 +68,7 @@ export interface DeleteIpAccessSettingsCommandOutput extends DeleteIpAccessSetti * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DeleteIpAccessSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DeleteNetworkSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DeleteNetworkSettingsCommand.ts index 13d5ade18fd50..b3ee75ae2aa03 100644 --- a/clients/client-workspaces-web/src/commands/DeleteNetworkSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteNetworkSettingsCommand.ts @@ -68,6 +68,7 @@ export interface DeleteNetworkSettingsCommandOutput extends DeleteNetworkSetting * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DeleteNetworkSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DeletePortalCommand.ts b/clients/client-workspaces-web/src/commands/DeletePortalCommand.ts index 8cf2c52df5cd2..54b460e7d1308 100644 --- a/clients/client-workspaces-web/src/commands/DeletePortalCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeletePortalCommand.ts @@ -68,6 +68,7 @@ export interface DeletePortalCommandOutput extends DeletePortalResponse, __Metad * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DeletePortalCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DeleteTrustStoreCommand.ts b/clients/client-workspaces-web/src/commands/DeleteTrustStoreCommand.ts index ab997222e4923..f3c426ba8dc42 100644 --- a/clients/client-workspaces-web/src/commands/DeleteTrustStoreCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteTrustStoreCommand.ts @@ -68,6 +68,7 @@ export interface DeleteTrustStoreCommandOutput extends DeleteTrustStoreResponse, * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DeleteTrustStoreCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DeleteUserAccessLoggingSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DeleteUserAccessLoggingSettingsCommand.ts index 8600160097a63..75214a14f0ce6 100644 --- a/clients/client-workspaces-web/src/commands/DeleteUserAccessLoggingSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteUserAccessLoggingSettingsCommand.ts @@ -73,6 +73,7 @@ export interface DeleteUserAccessLoggingSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DeleteUserAccessLoggingSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DeleteUserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DeleteUserSettingsCommand.ts index dea98f75d5460..1e1fac2eb53e5 100644 --- a/clients/client-workspaces-web/src/commands/DeleteUserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteUserSettingsCommand.ts @@ -68,6 +68,7 @@ export interface DeleteUserSettingsCommandOutput extends DeleteUserSettingsRespo * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DeleteUserSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DisassociateBrowserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateBrowserSettingsCommand.ts index bdb0312f20828..969eacfb6fe62 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateBrowserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateBrowserSettingsCommand.ts @@ -76,6 +76,7 @@ export interface DisassociateBrowserSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DisassociateBrowserSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DisassociateDataProtectionSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateDataProtectionSettingsCommand.ts index fc29cbb3eed31..92cf5f5c4c001 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateDataProtectionSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateDataProtectionSettingsCommand.ts @@ -79,6 +79,7 @@ export interface DisassociateDataProtectionSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DisassociateDataProtectionSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DisassociateIpAccessSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateIpAccessSettingsCommand.ts index 4287cb65e093d..ea64c2b4bf38f 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateIpAccessSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateIpAccessSettingsCommand.ts @@ -76,6 +76,7 @@ export interface DisassociateIpAccessSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DisassociateIpAccessSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DisassociateNetworkSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateNetworkSettingsCommand.ts index 31bdeb50b7467..1aebda6a15006 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateNetworkSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateNetworkSettingsCommand.ts @@ -76,6 +76,7 @@ export interface DisassociateNetworkSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DisassociateNetworkSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DisassociateTrustStoreCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateTrustStoreCommand.ts index de40545669190..6b3c6ac36f173 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateTrustStoreCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateTrustStoreCommand.ts @@ -71,6 +71,7 @@ export interface DisassociateTrustStoreCommandOutput extends DisassociateTrustSt * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DisassociateTrustStoreCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DisassociateUserAccessLoggingSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateUserAccessLoggingSettingsCommand.ts index fb53a6fc306ce..fdd46ae66f1a6 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateUserAccessLoggingSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateUserAccessLoggingSettingsCommand.ts @@ -80,6 +80,7 @@ export interface DisassociateUserAccessLoggingSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DisassociateUserAccessLoggingSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/DisassociateUserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateUserSettingsCommand.ts index 6742338fa14a2..f3b38967ffd4a 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateUserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateUserSettingsCommand.ts @@ -71,6 +71,7 @@ export interface DisassociateUserSettingsCommandOutput extends DisassociateUserS * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class DisassociateUserSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/ExpireSessionCommand.ts b/clients/client-workspaces-web/src/commands/ExpireSessionCommand.ts index 322c67c62b18f..4661846d05dbd 100644 --- a/clients/client-workspaces-web/src/commands/ExpireSessionCommand.ts +++ b/clients/client-workspaces-web/src/commands/ExpireSessionCommand.ts @@ -69,6 +69,7 @@ export interface ExpireSessionCommandOutput extends ExpireSessionResponse, __Met * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class ExpireSessionCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/GetBrowserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/GetBrowserSettingsCommand.ts index 4c779e4de135f..5c7aaf895bacc 100644 --- a/clients/client-workspaces-web/src/commands/GetBrowserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetBrowserSettingsCommand.ts @@ -84,6 +84,7 @@ export interface GetBrowserSettingsCommandOutput extends GetBrowserSettingsRespo * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class GetBrowserSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/GetDataProtectionSettingsCommand.ts b/clients/client-workspaces-web/src/commands/GetDataProtectionSettingsCommand.ts index 8d78879e714fb..b87e5894c22fd 100644 --- a/clients/client-workspaces-web/src/commands/GetDataProtectionSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetDataProtectionSettingsCommand.ts @@ -117,6 +117,7 @@ export interface GetDataProtectionSettingsCommandOutput extends GetDataProtectio * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class GetDataProtectionSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/GetIdentityProviderCommand.ts b/clients/client-workspaces-web/src/commands/GetIdentityProviderCommand.ts index d4c1aaf052a34..372f40354cf86 100644 --- a/clients/client-workspaces-web/src/commands/GetIdentityProviderCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetIdentityProviderCommand.ts @@ -81,6 +81,7 @@ export interface GetIdentityProviderCommandOutput extends GetIdentityProviderRes * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class GetIdentityProviderCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/GetIpAccessSettingsCommand.ts b/clients/client-workspaces-web/src/commands/GetIpAccessSettingsCommand.ts index 7a028a493e11f..2164a0797a97d 100644 --- a/clients/client-workspaces-web/src/commands/GetIpAccessSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetIpAccessSettingsCommand.ts @@ -92,6 +92,7 @@ export interface GetIpAccessSettingsCommandOutput extends GetIpAccessSettingsRes * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class GetIpAccessSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/GetNetworkSettingsCommand.ts b/clients/client-workspaces-web/src/commands/GetNetworkSettingsCommand.ts index d1126814cae10..dfb857fe20176 100644 --- a/clients/client-workspaces-web/src/commands/GetNetworkSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetNetworkSettingsCommand.ts @@ -82,6 +82,7 @@ export interface GetNetworkSettingsCommandOutput extends GetNetworkSettingsRespo * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class GetNetworkSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/GetPortalCommand.ts b/clients/client-workspaces-web/src/commands/GetPortalCommand.ts index a14a976fae436..4c1b9937a7f01 100644 --- a/clients/client-workspaces-web/src/commands/GetPortalCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetPortalCommand.ts @@ -93,6 +93,7 @@ export interface GetPortalCommandOutput extends GetPortalResponse, __MetadataBea * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class GetPortalCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/GetPortalServiceProviderMetadataCommand.ts b/clients/client-workspaces-web/src/commands/GetPortalServiceProviderMetadataCommand.ts index 11980b20fc2ad..08f0441f109a7 100644 --- a/clients/client-workspaces-web/src/commands/GetPortalServiceProviderMetadataCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetPortalServiceProviderMetadataCommand.ts @@ -76,6 +76,7 @@ export interface GetPortalServiceProviderMetadataCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class GetPortalServiceProviderMetadataCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/GetSessionCommand.ts b/clients/client-workspaces-web/src/commands/GetSessionCommand.ts index c0b3f1eeb8e35..f18484535a65c 100644 --- a/clients/client-workspaces-web/src/commands/GetSessionCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetSessionCommand.ts @@ -81,6 +81,7 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class GetSessionCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/GetTrustStoreCertificateCommand.ts b/clients/client-workspaces-web/src/commands/GetTrustStoreCertificateCommand.ts index 0b9f228a72a47..5a72f4c1fec2f 100644 --- a/clients/client-workspaces-web/src/commands/GetTrustStoreCertificateCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetTrustStoreCertificateCommand.ts @@ -79,6 +79,7 @@ export interface GetTrustStoreCertificateCommandOutput extends GetTrustStoreCert * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class GetTrustStoreCertificateCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/GetTrustStoreCommand.ts b/clients/client-workspaces-web/src/commands/GetTrustStoreCommand.ts index b0aa34e1b87d5..bdb91a573af35 100644 --- a/clients/client-workspaces-web/src/commands/GetTrustStoreCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetTrustStoreCommand.ts @@ -75,6 +75,7 @@ export interface GetTrustStoreCommandOutput extends GetTrustStoreResponse, __Met * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class GetTrustStoreCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/GetUserAccessLoggingSettingsCommand.ts b/clients/client-workspaces-web/src/commands/GetUserAccessLoggingSettingsCommand.ts index 12c577f678af8..05f5bf28434eb 100644 --- a/clients/client-workspaces-web/src/commands/GetUserAccessLoggingSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetUserAccessLoggingSettingsCommand.ts @@ -81,6 +81,7 @@ export interface GetUserAccessLoggingSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class GetUserAccessLoggingSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/GetUserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/GetUserSettingsCommand.ts index d57e26ab483a3..dfec32d55b9e1 100644 --- a/clients/client-workspaces-web/src/commands/GetUserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetUserSettingsCommand.ts @@ -115,6 +115,7 @@ export interface GetUserSettingsCommandOutput extends GetUserSettingsResponse, _ * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class GetUserSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/ListBrowserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/ListBrowserSettingsCommand.ts index 3f67780456ccf..8191999c34ea0 100644 --- a/clients/client-workspaces-web/src/commands/ListBrowserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListBrowserSettingsCommand.ts @@ -73,6 +73,7 @@ export interface ListBrowserSettingsCommandOutput extends ListBrowserSettingsRes * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class ListBrowserSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/ListDataProtectionSettingsCommand.ts b/clients/client-workspaces-web/src/commands/ListDataProtectionSettingsCommand.ts index 4ed042d046eee..dbcbbd3fb403d 100644 --- a/clients/client-workspaces-web/src/commands/ListDataProtectionSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListDataProtectionSettingsCommand.ts @@ -80,6 +80,7 @@ export interface ListDataProtectionSettingsCommandOutput extends ListDataProtect * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class ListDataProtectionSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/ListIdentityProvidersCommand.ts b/clients/client-workspaces-web/src/commands/ListIdentityProvidersCommand.ts index 5eb31fc679154..6c58720a975d6 100644 --- a/clients/client-workspaces-web/src/commands/ListIdentityProvidersCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListIdentityProvidersCommand.ts @@ -80,6 +80,7 @@ export interface ListIdentityProvidersCommandOutput extends ListIdentityProvider * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class ListIdentityProvidersCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/ListIpAccessSettingsCommand.ts b/clients/client-workspaces-web/src/commands/ListIpAccessSettingsCommand.ts index 5d70adf1f9395..0a1b3a8cee1f2 100644 --- a/clients/client-workspaces-web/src/commands/ListIpAccessSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListIpAccessSettingsCommand.ts @@ -80,6 +80,7 @@ export interface ListIpAccessSettingsCommandOutput extends ListIpAccessSettingsR * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class ListIpAccessSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/ListNetworkSettingsCommand.ts b/clients/client-workspaces-web/src/commands/ListNetworkSettingsCommand.ts index 70e48f2b7b351..eaaa1aed6c662 100644 --- a/clients/client-workspaces-web/src/commands/ListNetworkSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListNetworkSettingsCommand.ts @@ -74,6 +74,7 @@ export interface ListNetworkSettingsCommandOutput extends ListNetworkSettingsRes * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class ListNetworkSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/ListPortalsCommand.ts b/clients/client-workspaces-web/src/commands/ListPortalsCommand.ts index 15b78d298cc6d..fffabeee98136 100644 --- a/clients/client-workspaces-web/src/commands/ListPortalsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListPortalsCommand.ts @@ -89,6 +89,7 @@ export interface ListPortalsCommandOutput extends ListPortalsResponse, __Metadat * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class ListPortalsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/ListSessionsCommand.ts b/clients/client-workspaces-web/src/commands/ListSessionsCommand.ts index 3dda604836571..572e9b4f533ae 100644 --- a/clients/client-workspaces-web/src/commands/ListSessionsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListSessionsCommand.ts @@ -91,6 +91,7 @@ export interface ListSessionsCommandOutput extends ListSessionsResponse, __Metad * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class ListSessionsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/ListTagsForResourceCommand.ts b/clients/client-workspaces-web/src/commands/ListTagsForResourceCommand.ts index 260569daaf8de..8ee9230b5a5aa 100644 --- a/clients/client-workspaces-web/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListTagsForResourceCommand.ts @@ -79,6 +79,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/ListTrustStoreCertificatesCommand.ts b/clients/client-workspaces-web/src/commands/ListTrustStoreCertificatesCommand.ts index 283c09fbc5404..9b09982a149fe 100644 --- a/clients/client-workspaces-web/src/commands/ListTrustStoreCertificatesCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListTrustStoreCertificatesCommand.ts @@ -82,6 +82,7 @@ export interface ListTrustStoreCertificatesCommandOutput extends ListTrustStoreC * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class ListTrustStoreCertificatesCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/ListTrustStoresCommand.ts b/clients/client-workspaces-web/src/commands/ListTrustStoresCommand.ts index 19d1c6f11792c..c6a7476c13616 100644 --- a/clients/client-workspaces-web/src/commands/ListTrustStoresCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListTrustStoresCommand.ts @@ -73,6 +73,7 @@ export interface ListTrustStoresCommandOutput extends ListTrustStoresResponse, _ * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class ListTrustStoresCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/ListUserAccessLoggingSettingsCommand.ts b/clients/client-workspaces-web/src/commands/ListUserAccessLoggingSettingsCommand.ts index 87e7e6bccb386..dbff71082a3e4 100644 --- a/clients/client-workspaces-web/src/commands/ListUserAccessLoggingSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListUserAccessLoggingSettingsCommand.ts @@ -79,6 +79,7 @@ export interface ListUserAccessLoggingSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class ListUserAccessLoggingSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/ListUserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/ListUserSettingsCommand.ts index 725fe53b275a1..61500ecd8b98e 100644 --- a/clients/client-workspaces-web/src/commands/ListUserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListUserSettingsCommand.ts @@ -109,6 +109,7 @@ export interface ListUserSettingsCommandOutput extends ListUserSettingsResponse, * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class ListUserSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/TagResourceCommand.ts b/clients/client-workspaces-web/src/commands/TagResourceCommand.ts index 1b989bf968849..e0a541f2d9153 100644 --- a/clients/client-workspaces-web/src/commands/TagResourceCommand.ts +++ b/clients/client-workspaces-web/src/commands/TagResourceCommand.ts @@ -78,6 +78,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/UntagResourceCommand.ts b/clients/client-workspaces-web/src/commands/UntagResourceCommand.ts index ce2cf45d32d2c..736f3f11b596b 100644 --- a/clients/client-workspaces-web/src/commands/UntagResourceCommand.ts +++ b/clients/client-workspaces-web/src/commands/UntagResourceCommand.ts @@ -75,6 +75,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/UpdateBrowserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/UpdateBrowserSettingsCommand.ts index b6281b6aface3..ac4921bb3d06b 100644 --- a/clients/client-workspaces-web/src/commands/UpdateBrowserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateBrowserSettingsCommand.ts @@ -87,6 +87,7 @@ export interface UpdateBrowserSettingsCommandOutput extends UpdateBrowserSetting * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class UpdateBrowserSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/UpdateDataProtectionSettingsCommand.ts b/clients/client-workspaces-web/src/commands/UpdateDataProtectionSettingsCommand.ts index 3e9683393df15..6a0637dbfda36 100644 --- a/clients/client-workspaces-web/src/commands/UpdateDataProtectionSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateDataProtectionSettingsCommand.ts @@ -157,6 +157,7 @@ export interface UpdateDataProtectionSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class UpdateDataProtectionSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/UpdateIdentityProviderCommand.ts b/clients/client-workspaces-web/src/commands/UpdateIdentityProviderCommand.ts index d802d9a94e81f..cd063fef6f5bd 100644 --- a/clients/client-workspaces-web/src/commands/UpdateIdentityProviderCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateIdentityProviderCommand.ts @@ -88,6 +88,7 @@ export interface UpdateIdentityProviderCommandOutput extends UpdateIdentityProvi * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class UpdateIdentityProviderCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/UpdateIpAccessSettingsCommand.ts b/clients/client-workspaces-web/src/commands/UpdateIpAccessSettingsCommand.ts index c4bffc29ef524..95566c681f709 100644 --- a/clients/client-workspaces-web/src/commands/UpdateIpAccessSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateIpAccessSettingsCommand.ts @@ -102,6 +102,7 @@ export interface UpdateIpAccessSettingsCommandOutput extends UpdateIpAccessSetti * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class UpdateIpAccessSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/UpdateNetworkSettingsCommand.ts b/clients/client-workspaces-web/src/commands/UpdateNetworkSettingsCommand.ts index dd06ff8320b24..9d9fdc21064b8 100644 --- a/clients/client-workspaces-web/src/commands/UpdateNetworkSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateNetworkSettingsCommand.ts @@ -90,6 +90,7 @@ export interface UpdateNetworkSettingsCommandOutput extends UpdateNetworkSetting * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class UpdateNetworkSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/UpdatePortalCommand.ts b/clients/client-workspaces-web/src/commands/UpdatePortalCommand.ts index 13395f8b80525..74df3d1c91ede 100644 --- a/clients/client-workspaces-web/src/commands/UpdatePortalCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdatePortalCommand.ts @@ -108,6 +108,7 @@ export interface UpdatePortalCommandOutput extends UpdatePortalResponse, __Metad * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class UpdatePortalCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/UpdateTrustStoreCommand.ts b/clients/client-workspaces-web/src/commands/UpdateTrustStoreCommand.ts index 3a9eca6fdcce2..8981cb41e9943 100644 --- a/clients/client-workspaces-web/src/commands/UpdateTrustStoreCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateTrustStoreCommand.ts @@ -80,6 +80,7 @@ export interface UpdateTrustStoreCommandOutput extends UpdateTrustStoreResponse, * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class UpdateTrustStoreCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/UpdateUserAccessLoggingSettingsCommand.ts b/clients/client-workspaces-web/src/commands/UpdateUserAccessLoggingSettingsCommand.ts index 95aabd68ac17b..21c40f265e390 100644 --- a/clients/client-workspaces-web/src/commands/UpdateUserAccessLoggingSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateUserAccessLoggingSettingsCommand.ts @@ -83,6 +83,7 @@ export interface UpdateUserAccessLoggingSettingsCommandOutput * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class UpdateUserAccessLoggingSettingsCommand extends $Command diff --git a/clients/client-workspaces-web/src/commands/UpdateUserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/UpdateUserSettingsCommand.ts index bdc0255fbd241..6bd648ce78d1d 100644 --- a/clients/client-workspaces-web/src/commands/UpdateUserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateUserSettingsCommand.ts @@ -149,6 +149,7 @@ export interface UpdateUserSettingsCommandOutput extends UpdateUserSettingsRespo * @throws {@link WorkSpacesWebServiceException} *

Base exception class for all service exceptions from WorkSpacesWeb service.

* + * * @public */ export class UpdateUserSettingsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/AcceptAccountLinkInvitationCommand.ts b/clients/client-workspaces/src/commands/AcceptAccountLinkInvitationCommand.ts index 5a363a3ba10d6..06852d168b47f 100644 --- a/clients/client-workspaces/src/commands/AcceptAccountLinkInvitationCommand.ts +++ b/clients/client-workspaces/src/commands/AcceptAccountLinkInvitationCommand.ts @@ -80,6 +80,7 @@ export interface AcceptAccountLinkInvitationCommandOutput extends AcceptAccountL * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class AcceptAccountLinkInvitationCommand extends $Command diff --git a/clients/client-workspaces/src/commands/AssociateConnectionAliasCommand.ts b/clients/client-workspaces/src/commands/AssociateConnectionAliasCommand.ts index 9feb389a9d390..d109671dc4595 100644 --- a/clients/client-workspaces/src/commands/AssociateConnectionAliasCommand.ts +++ b/clients/client-workspaces/src/commands/AssociateConnectionAliasCommand.ts @@ -81,6 +81,7 @@ export interface AssociateConnectionAliasCommandOutput extends AssociateConnecti * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class AssociateConnectionAliasCommand extends $Command diff --git a/clients/client-workspaces/src/commands/AssociateIpGroupsCommand.ts b/clients/client-workspaces/src/commands/AssociateIpGroupsCommand.ts index 462c9919565d7..56ffdc53f21d8 100644 --- a/clients/client-workspaces/src/commands/AssociateIpGroupsCommand.ts +++ b/clients/client-workspaces/src/commands/AssociateIpGroupsCommand.ts @@ -74,6 +74,7 @@ export interface AssociateIpGroupsCommandOutput extends AssociateIpGroupsResult, * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class AssociateIpGroupsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/AssociateWorkspaceApplicationCommand.ts b/clients/client-workspaces/src/commands/AssociateWorkspaceApplicationCommand.ts index 8d98963945bdf..bf0743c18b6c5 100644 --- a/clients/client-workspaces/src/commands/AssociateWorkspaceApplicationCommand.ts +++ b/clients/client-workspaces/src/commands/AssociateWorkspaceApplicationCommand.ts @@ -102,6 +102,7 @@ export interface AssociateWorkspaceApplicationCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class AssociateWorkspaceApplicationCommand extends $Command diff --git a/clients/client-workspaces/src/commands/AuthorizeIpRulesCommand.ts b/clients/client-workspaces/src/commands/AuthorizeIpRulesCommand.ts index bb81902c0be41..11a43d933b682 100644 --- a/clients/client-workspaces/src/commands/AuthorizeIpRulesCommand.ts +++ b/clients/client-workspaces/src/commands/AuthorizeIpRulesCommand.ts @@ -76,6 +76,7 @@ export interface AuthorizeIpRulesCommandOutput extends AuthorizeIpRulesResult, _ * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class AuthorizeIpRulesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/CopyWorkspaceImageCommand.ts b/clients/client-workspaces/src/commands/CopyWorkspaceImageCommand.ts index 1999d0b97ce50..a0c4663600c31 100644 --- a/clients/client-workspaces/src/commands/CopyWorkspaceImageCommand.ts +++ b/clients/client-workspaces/src/commands/CopyWorkspaceImageCommand.ts @@ -94,6 +94,7 @@ export interface CopyWorkspaceImageCommandOutput extends CopyWorkspaceImageResul * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class CopyWorkspaceImageCommand extends $Command diff --git a/clients/client-workspaces/src/commands/CreateAccountLinkInvitationCommand.ts b/clients/client-workspaces/src/commands/CreateAccountLinkInvitationCommand.ts index 86c5cfba0df4a..bfb6584e1c8bd 100644 --- a/clients/client-workspaces/src/commands/CreateAccountLinkInvitationCommand.ts +++ b/clients/client-workspaces/src/commands/CreateAccountLinkInvitationCommand.ts @@ -74,6 +74,7 @@ export interface CreateAccountLinkInvitationCommandOutput extends CreateAccountL * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class CreateAccountLinkInvitationCommand extends $Command diff --git a/clients/client-workspaces/src/commands/CreateConnectClientAddInCommand.ts b/clients/client-workspaces/src/commands/CreateConnectClientAddInCommand.ts index 54857d2a8f955..b1d99491b1576 100644 --- a/clients/client-workspaces/src/commands/CreateConnectClientAddInCommand.ts +++ b/clients/client-workspaces/src/commands/CreateConnectClientAddInCommand.ts @@ -74,6 +74,7 @@ export interface CreateConnectClientAddInCommandOutput extends CreateConnectClie * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class CreateConnectClientAddInCommand extends $Command diff --git a/clients/client-workspaces/src/commands/CreateConnectionAliasCommand.ts b/clients/client-workspaces/src/commands/CreateConnectionAliasCommand.ts index 44e39a81eefac..7398aaa8bf2b7 100644 --- a/clients/client-workspaces/src/commands/CreateConnectionAliasCommand.ts +++ b/clients/client-workspaces/src/commands/CreateConnectionAliasCommand.ts @@ -81,6 +81,7 @@ export interface CreateConnectionAliasCommandOutput extends CreateConnectionAlia * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class CreateConnectionAliasCommand extends $Command diff --git a/clients/client-workspaces/src/commands/CreateIpGroupCommand.ts b/clients/client-workspaces/src/commands/CreateIpGroupCommand.ts index dd526409be6f9..a53ea8ff510d6 100644 --- a/clients/client-workspaces/src/commands/CreateIpGroupCommand.ts +++ b/clients/client-workspaces/src/commands/CreateIpGroupCommand.ts @@ -91,6 +91,7 @@ export interface CreateIpGroupCommandOutput extends CreateIpGroupResult, __Metad * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class CreateIpGroupCommand extends $Command diff --git a/clients/client-workspaces/src/commands/CreateStandbyWorkspacesCommand.ts b/clients/client-workspaces/src/commands/CreateStandbyWorkspacesCommand.ts index 403cb9e9958f4..3c580a438cd2f 100644 --- a/clients/client-workspaces/src/commands/CreateStandbyWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/CreateStandbyWorkspacesCommand.ts @@ -109,6 +109,7 @@ export interface CreateStandbyWorkspacesCommandOutput extends CreateStandbyWorks * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class CreateStandbyWorkspacesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/CreateTagsCommand.ts b/clients/client-workspaces/src/commands/CreateTagsCommand.ts index de10864663b44..ab959ffd1dbd8 100644 --- a/clients/client-workspaces/src/commands/CreateTagsCommand.ts +++ b/clients/client-workspaces/src/commands/CreateTagsCommand.ts @@ -68,6 +68,7 @@ export interface CreateTagsCommandOutput extends CreateTagsResult, __MetadataBea * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class CreateTagsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/CreateUpdatedWorkspaceImageCommand.ts b/clients/client-workspaces/src/commands/CreateUpdatedWorkspaceImageCommand.ts index 58be426080594..394d161b1120e 100644 --- a/clients/client-workspaces/src/commands/CreateUpdatedWorkspaceImageCommand.ts +++ b/clients/client-workspaces/src/commands/CreateUpdatedWorkspaceImageCommand.ts @@ -105,6 +105,7 @@ export interface CreateUpdatedWorkspaceImageCommandOutput extends CreateUpdatedW * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class CreateUpdatedWorkspaceImageCommand extends $Command diff --git a/clients/client-workspaces/src/commands/CreateWorkspaceBundleCommand.ts b/clients/client-workspaces/src/commands/CreateWorkspaceBundleCommand.ts index daf0d417df042..788e8e74d3a6c 100644 --- a/clients/client-workspaces/src/commands/CreateWorkspaceBundleCommand.ts +++ b/clients/client-workspaces/src/commands/CreateWorkspaceBundleCommand.ts @@ -111,6 +111,7 @@ export interface CreateWorkspaceBundleCommandOutput extends CreateWorkspaceBundl * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class CreateWorkspaceBundleCommand extends $Command diff --git a/clients/client-workspaces/src/commands/CreateWorkspaceImageCommand.ts b/clients/client-workspaces/src/commands/CreateWorkspaceImageCommand.ts index 629da340d915d..9a3895a19e32d 100644 --- a/clients/client-workspaces/src/commands/CreateWorkspaceImageCommand.ts +++ b/clients/client-workspaces/src/commands/CreateWorkspaceImageCommand.ts @@ -93,6 +93,7 @@ export interface CreateWorkspaceImageCommandOutput extends CreateWorkspaceImageR * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class CreateWorkspaceImageCommand extends $Command diff --git a/clients/client-workspaces/src/commands/CreateWorkspacesCommand.ts b/clients/client-workspaces/src/commands/CreateWorkspacesCommand.ts index 0e42d6d32b802..2b0551691b433 100644 --- a/clients/client-workspaces/src/commands/CreateWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/CreateWorkspacesCommand.ts @@ -211,6 +211,7 @@ export interface CreateWorkspacesCommandOutput extends CreateWorkspacesResult, _ * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class CreateWorkspacesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/CreateWorkspacesPoolCommand.ts b/clients/client-workspaces/src/commands/CreateWorkspacesPoolCommand.ts index dfc47c2e5ebc1..04fa9055dbc9a 100644 --- a/clients/client-workspaces/src/commands/CreateWorkspacesPoolCommand.ts +++ b/clients/client-workspaces/src/commands/CreateWorkspacesPoolCommand.ts @@ -125,6 +125,7 @@ export interface CreateWorkspacesPoolCommandOutput extends CreateWorkspacesPoolR * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class CreateWorkspacesPoolCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DeleteAccountLinkInvitationCommand.ts b/clients/client-workspaces/src/commands/DeleteAccountLinkInvitationCommand.ts index 7d1c5c9dc28a9..035e1050210e3 100644 --- a/clients/client-workspaces/src/commands/DeleteAccountLinkInvitationCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteAccountLinkInvitationCommand.ts @@ -77,6 +77,7 @@ export interface DeleteAccountLinkInvitationCommandOutput extends DeleteAccountL * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DeleteAccountLinkInvitationCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DeleteClientBrandingCommand.ts b/clients/client-workspaces/src/commands/DeleteClientBrandingCommand.ts index 0775b8542219d..eda3e118670e4 100644 --- a/clients/client-workspaces/src/commands/DeleteClientBrandingCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteClientBrandingCommand.ts @@ -70,6 +70,7 @@ export interface DeleteClientBrandingCommandOutput extends DeleteClientBrandingR * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DeleteClientBrandingCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DeleteConnectClientAddInCommand.ts b/clients/client-workspaces/src/commands/DeleteConnectClientAddInCommand.ts index 4b36c7dfa3347..aaba9b3d4d986 100644 --- a/clients/client-workspaces/src/commands/DeleteConnectClientAddInCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteConnectClientAddInCommand.ts @@ -64,6 +64,7 @@ export interface DeleteConnectClientAddInCommandOutput extends DeleteConnectClie * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DeleteConnectClientAddInCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DeleteConnectionAliasCommand.ts b/clients/client-workspaces/src/commands/DeleteConnectionAliasCommand.ts index 8336ebb3f0145..e6b2bf4ec1f90 100644 --- a/clients/client-workspaces/src/commands/DeleteConnectionAliasCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteConnectionAliasCommand.ts @@ -86,6 +86,7 @@ export interface DeleteConnectionAliasCommandOutput extends DeleteConnectionAlia * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DeleteConnectionAliasCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DeleteIpGroupCommand.ts b/clients/client-workspaces/src/commands/DeleteIpGroupCommand.ts index 1d22c8581d25c..3a165ecae8c62 100644 --- a/clients/client-workspaces/src/commands/DeleteIpGroupCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteIpGroupCommand.ts @@ -66,6 +66,7 @@ export interface DeleteIpGroupCommandOutput extends DeleteIpGroupResult, __Metad * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DeleteIpGroupCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DeleteTagsCommand.ts b/clients/client-workspaces/src/commands/DeleteTagsCommand.ts index ec49d78257fb6..1cc6c9961ad85 100644 --- a/clients/client-workspaces/src/commands/DeleteTagsCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteTagsCommand.ts @@ -62,6 +62,7 @@ export interface DeleteTagsCommandOutput extends DeleteTagsResult, __MetadataBea * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DeleteTagsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DeleteWorkspaceBundleCommand.ts b/clients/client-workspaces/src/commands/DeleteWorkspaceBundleCommand.ts index 229a22d43ade4..2d8b89b0ee130 100644 --- a/clients/client-workspaces/src/commands/DeleteWorkspaceBundleCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteWorkspaceBundleCommand.ts @@ -67,6 +67,7 @@ export interface DeleteWorkspaceBundleCommandOutput extends DeleteWorkspaceBundl * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DeleteWorkspaceBundleCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DeleteWorkspaceImageCommand.ts b/clients/client-workspaces/src/commands/DeleteWorkspaceImageCommand.ts index 2db2fdea43811..dbc41b195014d 100644 --- a/clients/client-workspaces/src/commands/DeleteWorkspaceImageCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteWorkspaceImageCommand.ts @@ -64,6 +64,7 @@ export interface DeleteWorkspaceImageCommandOutput extends DeleteWorkspaceImageR * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DeleteWorkspaceImageCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DeployWorkspaceApplicationsCommand.ts b/clients/client-workspaces/src/commands/DeployWorkspaceApplicationsCommand.ts index 62109adf0a2e9..ee1cb08bea5cf 100644 --- a/clients/client-workspaces/src/commands/DeployWorkspaceApplicationsCommand.ts +++ b/clients/client-workspaces/src/commands/DeployWorkspaceApplicationsCommand.ts @@ -89,6 +89,7 @@ export interface DeployWorkspaceApplicationsCommandOutput extends DeployWorkspac * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DeployWorkspaceApplicationsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DeregisterWorkspaceDirectoryCommand.ts b/clients/client-workspaces/src/commands/DeregisterWorkspaceDirectoryCommand.ts index 6fff6d70c7b3a..91e8f302eda78 100644 --- a/clients/client-workspaces/src/commands/DeregisterWorkspaceDirectoryCommand.ts +++ b/clients/client-workspaces/src/commands/DeregisterWorkspaceDirectoryCommand.ts @@ -86,6 +86,7 @@ export interface DeregisterWorkspaceDirectoryCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DeregisterWorkspaceDirectoryCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeAccountCommand.ts b/clients/client-workspaces/src/commands/DescribeAccountCommand.ts index 471d0f80c8180..394e61634bfa2 100644 --- a/clients/client-workspaces/src/commands/DescribeAccountCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeAccountCommand.ts @@ -59,6 +59,7 @@ export interface DescribeAccountCommandOutput extends DescribeAccountResult, __M * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeAccountCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeAccountModificationsCommand.ts b/clients/client-workspaces/src/commands/DescribeAccountModificationsCommand.ts index 3120c08dcd976..c61c4bf229ac2 100644 --- a/clients/client-workspaces/src/commands/DescribeAccountModificationsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeAccountModificationsCommand.ts @@ -74,6 +74,7 @@ export interface DescribeAccountModificationsCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeAccountModificationsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeApplicationAssociationsCommand.ts b/clients/client-workspaces/src/commands/DescribeApplicationAssociationsCommand.ts index 303775e4f5524..1bad2393b0cdf 100644 --- a/clients/client-workspaces/src/commands/DescribeApplicationAssociationsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeApplicationAssociationsCommand.ts @@ -91,6 +91,7 @@ export interface DescribeApplicationAssociationsCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeApplicationAssociationsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeApplicationsCommand.ts b/clients/client-workspaces/src/commands/DescribeApplicationsCommand.ts index dae80306f347f..c0adc5b284f46 100644 --- a/clients/client-workspaces/src/commands/DescribeApplicationsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeApplicationsCommand.ts @@ -96,6 +96,7 @@ export interface DescribeApplicationsCommandOutput extends DescribeApplicationsR * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeApplicationsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeBundleAssociationsCommand.ts b/clients/client-workspaces/src/commands/DescribeBundleAssociationsCommand.ts index ce31936ddaceb..d17c69916440b 100644 --- a/clients/client-workspaces/src/commands/DescribeBundleAssociationsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeBundleAssociationsCommand.ts @@ -83,6 +83,7 @@ export interface DescribeBundleAssociationsCommandOutput extends DescribeBundleA * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeBundleAssociationsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeClientBrandingCommand.ts b/clients/client-workspaces/src/commands/DescribeClientBrandingCommand.ts index f486327318b7a..d820b0f4d89a8 100644 --- a/clients/client-workspaces/src/commands/DescribeClientBrandingCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeClientBrandingCommand.ts @@ -124,6 +124,7 @@ export interface DescribeClientBrandingCommandOutput extends DescribeClientBrand * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeClientBrandingCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeClientPropertiesCommand.ts b/clients/client-workspaces/src/commands/DescribeClientPropertiesCommand.ts index 805cba987d067..e3b17f7def3fb 100644 --- a/clients/client-workspaces/src/commands/DescribeClientPropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeClientPropertiesCommand.ts @@ -74,6 +74,7 @@ export interface DescribeClientPropertiesCommandOutput extends DescribeClientPro * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeClientPropertiesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeConnectClientAddInsCommand.ts b/clients/client-workspaces/src/commands/DescribeConnectClientAddInsCommand.ts index 90cfca5ef87c4..3f7833106cd6b 100644 --- a/clients/client-workspaces/src/commands/DescribeConnectClientAddInsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeConnectClientAddInsCommand.ts @@ -74,6 +74,7 @@ export interface DescribeConnectClientAddInsCommandOutput extends DescribeConnec * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeConnectClientAddInsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeConnectionAliasPermissionsCommand.ts b/clients/client-workspaces/src/commands/DescribeConnectionAliasPermissionsCommand.ts index 59dbd2c6313bb..ce548f637d8e2 100644 --- a/clients/client-workspaces/src/commands/DescribeConnectionAliasPermissionsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeConnectionAliasPermissionsCommand.ts @@ -87,6 +87,7 @@ export interface DescribeConnectionAliasPermissionsCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeConnectionAliasPermissionsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeConnectionAliasesCommand.ts b/clients/client-workspaces/src/commands/DescribeConnectionAliasesCommand.ts index bf6fdd856a20d..6fddaddaa926c 100644 --- a/clients/client-workspaces/src/commands/DescribeConnectionAliasesCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeConnectionAliasesCommand.ts @@ -87,6 +87,7 @@ export interface DescribeConnectionAliasesCommandOutput extends DescribeConnecti * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeConnectionAliasesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeImageAssociationsCommand.ts b/clients/client-workspaces/src/commands/DescribeImageAssociationsCommand.ts index 4009dd06e7075..a7e80a5a0c829 100644 --- a/clients/client-workspaces/src/commands/DescribeImageAssociationsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeImageAssociationsCommand.ts @@ -83,6 +83,7 @@ export interface DescribeImageAssociationsCommandOutput extends DescribeImageAss * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeImageAssociationsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeIpGroupsCommand.ts b/clients/client-workspaces/src/commands/DescribeIpGroupsCommand.ts index bab43386da593..c1777991ff9aa 100644 --- a/clients/client-workspaces/src/commands/DescribeIpGroupsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeIpGroupsCommand.ts @@ -78,6 +78,7 @@ export interface DescribeIpGroupsCommandOutput extends DescribeIpGroupsResult, _ * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeIpGroupsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeTagsCommand.ts b/clients/client-workspaces/src/commands/DescribeTagsCommand.ts index 38f812cc28b06..c1f3f6545dc09 100644 --- a/clients/client-workspaces/src/commands/DescribeTagsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeTagsCommand.ts @@ -63,6 +63,7 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResult, __Metadat * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeTagsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeWorkspaceAssociationsCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspaceAssociationsCommand.ts index 8c7b082c8cb99..783278576887f 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspaceAssociationsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspaceAssociationsCommand.ts @@ -88,6 +88,7 @@ export interface DescribeWorkspaceAssociationsCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeWorkspaceAssociationsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeWorkspaceBundlesCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspaceBundlesCommand.ts index 5f1df38e21760..b5f304ab3c213 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspaceBundlesCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspaceBundlesCommand.ts @@ -85,6 +85,7 @@ export interface DescribeWorkspaceBundlesCommandOutput extends DescribeWorkspace * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeWorkspaceBundlesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeWorkspaceDirectoriesCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspaceDirectoriesCommand.ts index 8b53e6fe20857..9f4844400a7b8 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspaceDirectoriesCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspaceDirectoriesCommand.ts @@ -175,6 +175,7 @@ export interface DescribeWorkspaceDirectoriesCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeWorkspaceDirectoriesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeWorkspaceImagePermissionsCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspaceImagePermissionsCommand.ts index 2c2c4c48e93c7..fb74cbd92a3bc 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspaceImagePermissionsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspaceImagePermissionsCommand.ts @@ -77,6 +77,7 @@ export interface DescribeWorkspaceImagePermissionsCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeWorkspaceImagePermissionsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeWorkspaceImagesCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspaceImagesCommand.ts index 42b5f6503e47f..8ee42ff9be39c 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspaceImagesCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspaceImagesCommand.ts @@ -90,6 +90,7 @@ export interface DescribeWorkspaceImagesCommandOutput extends DescribeWorkspaceI * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeWorkspaceImagesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeWorkspaceSnapshotsCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspaceSnapshotsCommand.ts index 873b0083ade9f..6f4180588358d 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspaceSnapshotsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspaceSnapshotsCommand.ts @@ -73,6 +73,7 @@ export interface DescribeWorkspaceSnapshotsCommandOutput extends DescribeWorkspa * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeWorkspaceSnapshotsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeWorkspacesCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspacesCommand.ts index b1da93e2a3581..6cf51056b12dc 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspacesCommand.ts @@ -129,6 +129,7 @@ export interface DescribeWorkspacesCommandOutput extends DescribeWorkspacesResul * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeWorkspacesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeWorkspacesConnectionStatusCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspacesConnectionStatusCommand.ts index 6e1af033db9ad..a5a8447f5665d 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspacesConnectionStatusCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspacesConnectionStatusCommand.ts @@ -77,6 +77,7 @@ export interface DescribeWorkspacesConnectionStatusCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeWorkspacesConnectionStatusCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeWorkspacesPoolSessionsCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspacesPoolSessionsCommand.ts index 3f442c06ec1c2..d1f62b4f57079 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspacesPoolSessionsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspacesPoolSessionsCommand.ts @@ -88,6 +88,7 @@ export interface DescribeWorkspacesPoolSessionsCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeWorkspacesPoolSessionsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DescribeWorkspacesPoolsCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspacesPoolsCommand.ts index 83f1189c59381..0231084614149 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspacesPoolsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspacesPoolsCommand.ts @@ -111,6 +111,7 @@ export interface DescribeWorkspacesPoolsCommandOutput extends DescribeWorkspaces * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DescribeWorkspacesPoolsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DisassociateConnectionAliasCommand.ts b/clients/client-workspaces/src/commands/DisassociateConnectionAliasCommand.ts index 9f32e6e47ee01..13a8f5770f739 100644 --- a/clients/client-workspaces/src/commands/DisassociateConnectionAliasCommand.ts +++ b/clients/client-workspaces/src/commands/DisassociateConnectionAliasCommand.ts @@ -76,6 +76,7 @@ export interface DisassociateConnectionAliasCommandOutput extends DisassociateCo * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DisassociateConnectionAliasCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DisassociateIpGroupsCommand.ts b/clients/client-workspaces/src/commands/DisassociateIpGroupsCommand.ts index 9169dd4a5986e..b86ab2bad189c 100644 --- a/clients/client-workspaces/src/commands/DisassociateIpGroupsCommand.ts +++ b/clients/client-workspaces/src/commands/DisassociateIpGroupsCommand.ts @@ -71,6 +71,7 @@ export interface DisassociateIpGroupsCommandOutput extends DisassociateIpGroupsR * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DisassociateIpGroupsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/DisassociateWorkspaceApplicationCommand.ts b/clients/client-workspaces/src/commands/DisassociateWorkspaceApplicationCommand.ts index 386f9b87e9de2..39a0bbe45a544 100644 --- a/clients/client-workspaces/src/commands/DisassociateWorkspaceApplicationCommand.ts +++ b/clients/client-workspaces/src/commands/DisassociateWorkspaceApplicationCommand.ts @@ -87,6 +87,7 @@ export interface DisassociateWorkspaceApplicationCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class DisassociateWorkspaceApplicationCommand extends $Command diff --git a/clients/client-workspaces/src/commands/GetAccountLinkCommand.ts b/clients/client-workspaces/src/commands/GetAccountLinkCommand.ts index 770bf37a0f169..7a14165453685 100644 --- a/clients/client-workspaces/src/commands/GetAccountLinkCommand.ts +++ b/clients/client-workspaces/src/commands/GetAccountLinkCommand.ts @@ -74,6 +74,7 @@ export interface GetAccountLinkCommandOutput extends GetAccountLinkResult, __Met * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class GetAccountLinkCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ImportClientBrandingCommand.ts b/clients/client-workspaces/src/commands/ImportClientBrandingCommand.ts index 8ad8094c44a21..cd8680d33ca86 100644 --- a/clients/client-workspaces/src/commands/ImportClientBrandingCommand.ts +++ b/clients/client-workspaces/src/commands/ImportClientBrandingCommand.ts @@ -201,6 +201,7 @@ export interface ImportClientBrandingCommandOutput extends ImportClientBrandingR * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ImportClientBrandingCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ImportWorkspaceImageCommand.ts b/clients/client-workspaces/src/commands/ImportWorkspaceImageCommand.ts index fd33d75583b5c..0f9efc9cc627a 100644 --- a/clients/client-workspaces/src/commands/ImportWorkspaceImageCommand.ts +++ b/clients/client-workspaces/src/commands/ImportWorkspaceImageCommand.ts @@ -89,6 +89,7 @@ export interface ImportWorkspaceImageCommandOutput extends ImportWorkspaceImageR * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ImportWorkspaceImageCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ListAccountLinksCommand.ts b/clients/client-workspaces/src/commands/ListAccountLinksCommand.ts index d465d2f329baf..ce211e11a7a74 100644 --- a/clients/client-workspaces/src/commands/ListAccountLinksCommand.ts +++ b/clients/client-workspaces/src/commands/ListAccountLinksCommand.ts @@ -77,6 +77,7 @@ export interface ListAccountLinksCommandOutput extends ListAccountLinksResult, _ * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ListAccountLinksCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ListAvailableManagementCidrRangesCommand.ts b/clients/client-workspaces/src/commands/ListAvailableManagementCidrRangesCommand.ts index 66f356a46441e..ef65e43897c79 100644 --- a/clients/client-workspaces/src/commands/ListAvailableManagementCidrRangesCommand.ts +++ b/clients/client-workspaces/src/commands/ListAvailableManagementCidrRangesCommand.ts @@ -78,6 +78,7 @@ export interface ListAvailableManagementCidrRangesCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ListAvailableManagementCidrRangesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/MigrateWorkspaceCommand.ts b/clients/client-workspaces/src/commands/MigrateWorkspaceCommand.ts index 5eb0073a4a28b..0202e1b82546f 100644 --- a/clients/client-workspaces/src/commands/MigrateWorkspaceCommand.ts +++ b/clients/client-workspaces/src/commands/MigrateWorkspaceCommand.ts @@ -85,6 +85,7 @@ export interface MigrateWorkspaceCommandOutput extends MigrateWorkspaceResult, _ * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class MigrateWorkspaceCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ModifyAccountCommand.ts b/clients/client-workspaces/src/commands/ModifyAccountCommand.ts index 08f7be3d73f2e..4ead2a553e5c1 100644 --- a/clients/client-workspaces/src/commands/ModifyAccountCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyAccountCommand.ts @@ -70,6 +70,7 @@ export interface ModifyAccountCommandOutput extends ModifyAccountResult, __Metad * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ModifyAccountCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ModifyCertificateBasedAuthPropertiesCommand.ts b/clients/client-workspaces/src/commands/ModifyCertificateBasedAuthPropertiesCommand.ts index abc5daeaaa82e..0386aa93f532d 100644 --- a/clients/client-workspaces/src/commands/ModifyCertificateBasedAuthPropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyCertificateBasedAuthPropertiesCommand.ts @@ -81,6 +81,7 @@ export interface ModifyCertificateBasedAuthPropertiesCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ModifyCertificateBasedAuthPropertiesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ModifyClientPropertiesCommand.ts b/clients/client-workspaces/src/commands/ModifyClientPropertiesCommand.ts index a37977a19ccdb..789cd6831a45e 100644 --- a/clients/client-workspaces/src/commands/ModifyClientPropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyClientPropertiesCommand.ts @@ -69,6 +69,7 @@ export interface ModifyClientPropertiesCommandOutput extends ModifyClientPropert * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ModifyClientPropertiesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ModifyEndpointEncryptionModeCommand.ts b/clients/client-workspaces/src/commands/ModifyEndpointEncryptionModeCommand.ts index e3a8730cfe735..61ec09be42f30 100644 --- a/clients/client-workspaces/src/commands/ModifyEndpointEncryptionModeCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyEndpointEncryptionModeCommand.ts @@ -69,6 +69,7 @@ export interface ModifyEndpointEncryptionModeCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ModifyEndpointEncryptionModeCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ModifySamlPropertiesCommand.ts b/clients/client-workspaces/src/commands/ModifySamlPropertiesCommand.ts index b334e463e4b39..1e618f2ae96c7 100644 --- a/clients/client-workspaces/src/commands/ModifySamlPropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/ModifySamlPropertiesCommand.ts @@ -75,6 +75,7 @@ export interface ModifySamlPropertiesCommandOutput extends ModifySamlPropertiesR * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ModifySamlPropertiesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ModifySelfservicePermissionsCommand.ts b/clients/client-workspaces/src/commands/ModifySelfservicePermissionsCommand.ts index 651a88185af98..1df0d0fde589b 100644 --- a/clients/client-workspaces/src/commands/ModifySelfservicePermissionsCommand.ts +++ b/clients/client-workspaces/src/commands/ModifySelfservicePermissionsCommand.ts @@ -78,6 +78,7 @@ export interface ModifySelfservicePermissionsCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ModifySelfservicePermissionsCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ModifyStreamingPropertiesCommand.ts b/clients/client-workspaces/src/commands/ModifyStreamingPropertiesCommand.ts index 909b90764c6fd..1ac097f8922d0 100644 --- a/clients/client-workspaces/src/commands/ModifyStreamingPropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyStreamingPropertiesCommand.ts @@ -85,6 +85,7 @@ export interface ModifyStreamingPropertiesCommandOutput extends ModifyStreamingP * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ModifyStreamingPropertiesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ModifyWorkspaceAccessPropertiesCommand.ts b/clients/client-workspaces/src/commands/ModifyWorkspaceAccessPropertiesCommand.ts index 758f6deb3dafa..81186552fc070 100644 --- a/clients/client-workspaces/src/commands/ModifyWorkspaceAccessPropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyWorkspaceAccessPropertiesCommand.ts @@ -77,6 +77,7 @@ export interface ModifyWorkspaceAccessPropertiesCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ModifyWorkspaceAccessPropertiesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ModifyWorkspaceCreationPropertiesCommand.ts b/clients/client-workspaces/src/commands/ModifyWorkspaceCreationPropertiesCommand.ts index 740f6a38782dc..3cbfe02fa622d 100644 --- a/clients/client-workspaces/src/commands/ModifyWorkspaceCreationPropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyWorkspaceCreationPropertiesCommand.ts @@ -79,6 +79,7 @@ export interface ModifyWorkspaceCreationPropertiesCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ModifyWorkspaceCreationPropertiesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ModifyWorkspacePropertiesCommand.ts b/clients/client-workspaces/src/commands/ModifyWorkspacePropertiesCommand.ts index a285b7b531475..a3ca2c3697c94 100644 --- a/clients/client-workspaces/src/commands/ModifyWorkspacePropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyWorkspacePropertiesCommand.ts @@ -100,6 +100,7 @@ export interface ModifyWorkspacePropertiesCommandOutput extends ModifyWorkspaceP * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ModifyWorkspacePropertiesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/ModifyWorkspaceStateCommand.ts b/clients/client-workspaces/src/commands/ModifyWorkspaceStateCommand.ts index d3765587f337f..fba40e818faad 100644 --- a/clients/client-workspaces/src/commands/ModifyWorkspaceStateCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyWorkspaceStateCommand.ts @@ -71,6 +71,7 @@ export interface ModifyWorkspaceStateCommandOutput extends ModifyWorkspaceStateR * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class ModifyWorkspaceStateCommand extends $Command diff --git a/clients/client-workspaces/src/commands/RebootWorkspacesCommand.ts b/clients/client-workspaces/src/commands/RebootWorkspacesCommand.ts index 232da0912674c..8ab9010acd21d 100644 --- a/clients/client-workspaces/src/commands/RebootWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/RebootWorkspacesCommand.ts @@ -72,6 +72,7 @@ export interface RebootWorkspacesCommandOutput extends RebootWorkspacesResult, _ * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class RebootWorkspacesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/RebuildWorkspacesCommand.ts b/clients/client-workspaces/src/commands/RebuildWorkspacesCommand.ts index 3aaf0aed8e3e9..b5f2a36d5848e 100644 --- a/clients/client-workspaces/src/commands/RebuildWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/RebuildWorkspacesCommand.ts @@ -76,6 +76,7 @@ export interface RebuildWorkspacesCommandOutput extends RebuildWorkspacesResult, * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class RebuildWorkspacesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/RegisterWorkspaceDirectoryCommand.ts b/clients/client-workspaces/src/commands/RegisterWorkspaceDirectoryCommand.ts index 514c010c8ee7e..90ec144331d5a 100644 --- a/clients/client-workspaces/src/commands/RegisterWorkspaceDirectoryCommand.ts +++ b/clients/client-workspaces/src/commands/RegisterWorkspaceDirectoryCommand.ts @@ -116,6 +116,7 @@ export interface RegisterWorkspaceDirectoryCommandOutput extends RegisterWorkspa * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class RegisterWorkspaceDirectoryCommand extends $Command diff --git a/clients/client-workspaces/src/commands/RejectAccountLinkInvitationCommand.ts b/clients/client-workspaces/src/commands/RejectAccountLinkInvitationCommand.ts index 2c4324661aef4..b73b3173300b6 100644 --- a/clients/client-workspaces/src/commands/RejectAccountLinkInvitationCommand.ts +++ b/clients/client-workspaces/src/commands/RejectAccountLinkInvitationCommand.ts @@ -77,6 +77,7 @@ export interface RejectAccountLinkInvitationCommandOutput extends RejectAccountL * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class RejectAccountLinkInvitationCommand extends $Command diff --git a/clients/client-workspaces/src/commands/RestoreWorkspaceCommand.ts b/clients/client-workspaces/src/commands/RestoreWorkspaceCommand.ts index fa3bb891f2f1b..861ae428767a9 100644 --- a/clients/client-workspaces/src/commands/RestoreWorkspaceCommand.ts +++ b/clients/client-workspaces/src/commands/RestoreWorkspaceCommand.ts @@ -72,6 +72,7 @@ export interface RestoreWorkspaceCommandOutput extends RestoreWorkspaceResult, _ * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class RestoreWorkspaceCommand extends $Command diff --git a/clients/client-workspaces/src/commands/RevokeIpRulesCommand.ts b/clients/client-workspaces/src/commands/RevokeIpRulesCommand.ts index 2b53e0c0934e6..2619307f1779c 100644 --- a/clients/client-workspaces/src/commands/RevokeIpRulesCommand.ts +++ b/clients/client-workspaces/src/commands/RevokeIpRulesCommand.ts @@ -68,6 +68,7 @@ export interface RevokeIpRulesCommandOutput extends RevokeIpRulesResult, __Metad * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class RevokeIpRulesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/StartWorkspacesCommand.ts b/clients/client-workspaces/src/commands/StartWorkspacesCommand.ts index e5bda50334eaf..0c44a8a128bef 100644 --- a/clients/client-workspaces/src/commands/StartWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/StartWorkspacesCommand.ts @@ -67,6 +67,7 @@ export interface StartWorkspacesCommandOutput extends StartWorkspacesResult, __M * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class StartWorkspacesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/StartWorkspacesPoolCommand.ts b/clients/client-workspaces/src/commands/StartWorkspacesPoolCommand.ts index 1009ea4e65df5..d3c0eb33d9bc6 100644 --- a/clients/client-workspaces/src/commands/StartWorkspacesPoolCommand.ts +++ b/clients/client-workspaces/src/commands/StartWorkspacesPoolCommand.ts @@ -76,6 +76,7 @@ export interface StartWorkspacesPoolCommandOutput extends StartWorkspacesPoolRes * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class StartWorkspacesPoolCommand extends $Command diff --git a/clients/client-workspaces/src/commands/StopWorkspacesCommand.ts b/clients/client-workspaces/src/commands/StopWorkspacesCommand.ts index 23ad44fc28ea0..01db6dad27943 100644 --- a/clients/client-workspaces/src/commands/StopWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/StopWorkspacesCommand.ts @@ -68,6 +68,7 @@ export interface StopWorkspacesCommandOutput extends StopWorkspacesResult, __Met * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class StopWorkspacesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/StopWorkspacesPoolCommand.ts b/clients/client-workspaces/src/commands/StopWorkspacesPoolCommand.ts index 31ae4e2de5408..f7c0464f5b322 100644 --- a/clients/client-workspaces/src/commands/StopWorkspacesPoolCommand.ts +++ b/clients/client-workspaces/src/commands/StopWorkspacesPoolCommand.ts @@ -70,6 +70,7 @@ export interface StopWorkspacesPoolCommandOutput extends StopWorkspacesPoolResul * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class StopWorkspacesPoolCommand extends $Command diff --git a/clients/client-workspaces/src/commands/TerminateWorkspacesCommand.ts b/clients/client-workspaces/src/commands/TerminateWorkspacesCommand.ts index bef3ca5463295..44dc3975aeb93 100644 --- a/clients/client-workspaces/src/commands/TerminateWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/TerminateWorkspacesCommand.ts @@ -89,6 +89,7 @@ export interface TerminateWorkspacesCommandOutput extends TerminateWorkspacesRes * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class TerminateWorkspacesCommand extends $Command diff --git a/clients/client-workspaces/src/commands/TerminateWorkspacesPoolCommand.ts b/clients/client-workspaces/src/commands/TerminateWorkspacesPoolCommand.ts index 41530d03109ab..64fabdc8e6929 100644 --- a/clients/client-workspaces/src/commands/TerminateWorkspacesPoolCommand.ts +++ b/clients/client-workspaces/src/commands/TerminateWorkspacesPoolCommand.ts @@ -68,6 +68,7 @@ export interface TerminateWorkspacesPoolCommandOutput extends TerminateWorkspace * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class TerminateWorkspacesPoolCommand extends $Command diff --git a/clients/client-workspaces/src/commands/TerminateWorkspacesPoolSessionCommand.ts b/clients/client-workspaces/src/commands/TerminateWorkspacesPoolSessionCommand.ts index 31550706549a0..f174312cf47bc 100644 --- a/clients/client-workspaces/src/commands/TerminateWorkspacesPoolSessionCommand.ts +++ b/clients/client-workspaces/src/commands/TerminateWorkspacesPoolSessionCommand.ts @@ -73,6 +73,7 @@ export interface TerminateWorkspacesPoolSessionCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class TerminateWorkspacesPoolSessionCommand extends $Command diff --git a/clients/client-workspaces/src/commands/UpdateConnectClientAddInCommand.ts b/clients/client-workspaces/src/commands/UpdateConnectClientAddInCommand.ts index e04403444b49a..d247210f09433 100644 --- a/clients/client-workspaces/src/commands/UpdateConnectClientAddInCommand.ts +++ b/clients/client-workspaces/src/commands/UpdateConnectClientAddInCommand.ts @@ -66,6 +66,7 @@ export interface UpdateConnectClientAddInCommandOutput extends UpdateConnectClie * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class UpdateConnectClientAddInCommand extends $Command diff --git a/clients/client-workspaces/src/commands/UpdateConnectionAliasPermissionCommand.ts b/clients/client-workspaces/src/commands/UpdateConnectionAliasPermissionCommand.ts index 452a6796983a9..bc19c0d266e68 100644 --- a/clients/client-workspaces/src/commands/UpdateConnectionAliasPermissionCommand.ts +++ b/clients/client-workspaces/src/commands/UpdateConnectionAliasPermissionCommand.ts @@ -104,6 +104,7 @@ export interface UpdateConnectionAliasPermissionCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class UpdateConnectionAliasPermissionCommand extends $Command diff --git a/clients/client-workspaces/src/commands/UpdateRulesOfIpGroupCommand.ts b/clients/client-workspaces/src/commands/UpdateRulesOfIpGroupCommand.ts index a73f7ad718b82..5eddfe07c6c7f 100644 --- a/clients/client-workspaces/src/commands/UpdateRulesOfIpGroupCommand.ts +++ b/clients/client-workspaces/src/commands/UpdateRulesOfIpGroupCommand.ts @@ -75,6 +75,7 @@ export interface UpdateRulesOfIpGroupCommandOutput extends UpdateRulesOfIpGroupR * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class UpdateRulesOfIpGroupCommand extends $Command diff --git a/clients/client-workspaces/src/commands/UpdateWorkspaceBundleCommand.ts b/clients/client-workspaces/src/commands/UpdateWorkspaceBundleCommand.ts index 9de5b5db0b659..b20a8283b6512 100644 --- a/clients/client-workspaces/src/commands/UpdateWorkspaceBundleCommand.ts +++ b/clients/client-workspaces/src/commands/UpdateWorkspaceBundleCommand.ts @@ -76,6 +76,7 @@ export interface UpdateWorkspaceBundleCommandOutput extends UpdateWorkspaceBundl * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class UpdateWorkspaceBundleCommand extends $Command diff --git a/clients/client-workspaces/src/commands/UpdateWorkspaceImagePermissionCommand.ts b/clients/client-workspaces/src/commands/UpdateWorkspaceImagePermissionCommand.ts index 853c041c909d6..d187216bc1ff4 100644 --- a/clients/client-workspaces/src/commands/UpdateWorkspaceImagePermissionCommand.ts +++ b/clients/client-workspaces/src/commands/UpdateWorkspaceImagePermissionCommand.ts @@ -97,6 +97,7 @@ export interface UpdateWorkspaceImagePermissionCommandOutput * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class UpdateWorkspaceImagePermissionCommand extends $Command diff --git a/clients/client-workspaces/src/commands/UpdateWorkspacesPoolCommand.ts b/clients/client-workspaces/src/commands/UpdateWorkspacesPoolCommand.ts index 7579f7096e6c4..b2e73ae6e8f5a 100644 --- a/clients/client-workspaces/src/commands/UpdateWorkspacesPoolCommand.ts +++ b/clients/client-workspaces/src/commands/UpdateWorkspacesPoolCommand.ts @@ -122,6 +122,7 @@ export interface UpdateWorkspacesPoolCommandOutput extends UpdateWorkspacesPoolR * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* + * * @public */ export class UpdateWorkspacesPoolCommand extends $Command diff --git a/clients/client-xray/src/commands/BatchGetTracesCommand.ts b/clients/client-xray/src/commands/BatchGetTracesCommand.ts index 3e99197379916..e7b6342fc10a3 100644 --- a/clients/client-xray/src/commands/BatchGetTracesCommand.ts +++ b/clients/client-xray/src/commands/BatchGetTracesCommand.ts @@ -85,6 +85,7 @@ export interface BatchGetTracesCommandOutput extends BatchGetTracesResult, __Met * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class BatchGetTracesCommand extends $Command diff --git a/clients/client-xray/src/commands/CancelTraceRetrievalCommand.ts b/clients/client-xray/src/commands/CancelTraceRetrievalCommand.ts index 9f34459d3c6bc..93b1372a3daa4 100644 --- a/clients/client-xray/src/commands/CancelTraceRetrievalCommand.ts +++ b/clients/client-xray/src/commands/CancelTraceRetrievalCommand.ts @@ -65,6 +65,7 @@ export interface CancelTraceRetrievalCommandOutput extends CancelTraceRetrievalR * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class CancelTraceRetrievalCommand extends $Command diff --git a/clients/client-xray/src/commands/CreateGroupCommand.ts b/clients/client-xray/src/commands/CreateGroupCommand.ts index 81ae4eb5fba30..6bcb245a1263e 100644 --- a/clients/client-xray/src/commands/CreateGroupCommand.ts +++ b/clients/client-xray/src/commands/CreateGroupCommand.ts @@ -80,6 +80,7 @@ export interface CreateGroupCommandOutput extends CreateGroupResult, __MetadataB * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class CreateGroupCommand extends $Command diff --git a/clients/client-xray/src/commands/CreateSamplingRuleCommand.ts b/clients/client-xray/src/commands/CreateSamplingRuleCommand.ts index ff1b2137ca581..aeb2f5001d3fb 100644 --- a/clients/client-xray/src/commands/CreateSamplingRuleCommand.ts +++ b/clients/client-xray/src/commands/CreateSamplingRuleCommand.ts @@ -112,6 +112,7 @@ export interface CreateSamplingRuleCommandOutput extends CreateSamplingRuleResul * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class CreateSamplingRuleCommand extends $Command diff --git a/clients/client-xray/src/commands/DeleteGroupCommand.ts b/clients/client-xray/src/commands/DeleteGroupCommand.ts index 64283653dd867..ea31a93a8d535 100644 --- a/clients/client-xray/src/commands/DeleteGroupCommand.ts +++ b/clients/client-xray/src/commands/DeleteGroupCommand.ts @@ -60,6 +60,7 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResult, __MetadataB * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class DeleteGroupCommand extends $Command diff --git a/clients/client-xray/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-xray/src/commands/DeleteResourcePolicyCommand.ts index 9d67eb41a5aa6..568a9ae030036 100644 --- a/clients/client-xray/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-xray/src/commands/DeleteResourcePolicyCommand.ts @@ -64,6 +64,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class DeleteResourcePolicyCommand extends $Command diff --git a/clients/client-xray/src/commands/DeleteSamplingRuleCommand.ts b/clients/client-xray/src/commands/DeleteSamplingRuleCommand.ts index fa77aa30c2541..d662d323d252c 100644 --- a/clients/client-xray/src/commands/DeleteSamplingRuleCommand.ts +++ b/clients/client-xray/src/commands/DeleteSamplingRuleCommand.ts @@ -82,6 +82,7 @@ export interface DeleteSamplingRuleCommandOutput extends DeleteSamplingRuleResul * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class DeleteSamplingRuleCommand extends $Command diff --git a/clients/client-xray/src/commands/GetEncryptionConfigCommand.ts b/clients/client-xray/src/commands/GetEncryptionConfigCommand.ts index f63a2555743a2..8352a381610f4 100644 --- a/clients/client-xray/src/commands/GetEncryptionConfigCommand.ts +++ b/clients/client-xray/src/commands/GetEncryptionConfigCommand.ts @@ -63,6 +63,7 @@ export interface GetEncryptionConfigCommandOutput extends GetEncryptionConfigRes * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetEncryptionConfigCommand extends $Command diff --git a/clients/client-xray/src/commands/GetGroupCommand.ts b/clients/client-xray/src/commands/GetGroupCommand.ts index ce43a0b212c4b..d7402fa173422 100644 --- a/clients/client-xray/src/commands/GetGroupCommand.ts +++ b/clients/client-xray/src/commands/GetGroupCommand.ts @@ -70,6 +70,7 @@ export interface GetGroupCommandOutput extends GetGroupResult, __MetadataBearer * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetGroupCommand extends $Command diff --git a/clients/client-xray/src/commands/GetGroupsCommand.ts b/clients/client-xray/src/commands/GetGroupsCommand.ts index 0d15cff664343..b13e4ff9c2c16 100644 --- a/clients/client-xray/src/commands/GetGroupsCommand.ts +++ b/clients/client-xray/src/commands/GetGroupsCommand.ts @@ -72,6 +72,7 @@ export interface GetGroupsCommandOutput extends GetGroupsResult, __MetadataBeare * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetGroupsCommand extends $Command diff --git a/clients/client-xray/src/commands/GetIndexingRulesCommand.ts b/clients/client-xray/src/commands/GetIndexingRulesCommand.ts index 9c992272a18cc..128d2b783ce22 100644 --- a/clients/client-xray/src/commands/GetIndexingRulesCommand.ts +++ b/clients/client-xray/src/commands/GetIndexingRulesCommand.ts @@ -75,6 +75,7 @@ export interface GetIndexingRulesCommandOutput extends GetIndexingRulesResult, _ * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetIndexingRulesCommand extends $Command diff --git a/clients/client-xray/src/commands/GetInsightCommand.ts b/clients/client-xray/src/commands/GetInsightCommand.ts index 0d3c0a8c454b1..acb703d39d286 100644 --- a/clients/client-xray/src/commands/GetInsightCommand.ts +++ b/clients/client-xray/src/commands/GetInsightCommand.ts @@ -104,6 +104,7 @@ export interface GetInsightCommandOutput extends GetInsightResult, __MetadataBea * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetInsightCommand extends $Command diff --git a/clients/client-xray/src/commands/GetInsightEventsCommand.ts b/clients/client-xray/src/commands/GetInsightEventsCommand.ts index 795e3691604ff..12fdc96b81013 100644 --- a/clients/client-xray/src/commands/GetInsightEventsCommand.ts +++ b/clients/client-xray/src/commands/GetInsightEventsCommand.ts @@ -93,6 +93,7 @@ export interface GetInsightEventsCommandOutput extends GetInsightEventsResult, _ * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetInsightEventsCommand extends $Command diff --git a/clients/client-xray/src/commands/GetInsightImpactGraphCommand.ts b/clients/client-xray/src/commands/GetInsightImpactGraphCommand.ts index 6099fd249348f..090a5d506c7d7 100644 --- a/clients/client-xray/src/commands/GetInsightImpactGraphCommand.ts +++ b/clients/client-xray/src/commands/GetInsightImpactGraphCommand.ts @@ -86,6 +86,7 @@ export interface GetInsightImpactGraphCommandOutput extends GetInsightImpactGrap * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetInsightImpactGraphCommand extends $Command diff --git a/clients/client-xray/src/commands/GetInsightSummariesCommand.ts b/clients/client-xray/src/commands/GetInsightSummariesCommand.ts index 7e307bf0f0e3a..a135e23b47b74 100644 --- a/clients/client-xray/src/commands/GetInsightSummariesCommand.ts +++ b/clients/client-xray/src/commands/GetInsightSummariesCommand.ts @@ -114,6 +114,7 @@ export interface GetInsightSummariesCommandOutput extends GetInsightSummariesRes * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetInsightSummariesCommand extends $Command diff --git a/clients/client-xray/src/commands/GetRetrievedTracesGraphCommand.ts b/clients/client-xray/src/commands/GetRetrievedTracesGraphCommand.ts index eb916a2932072..ef90ca39012ad 100644 --- a/clients/client-xray/src/commands/GetRetrievedTracesGraphCommand.ts +++ b/clients/client-xray/src/commands/GetRetrievedTracesGraphCommand.ts @@ -169,6 +169,7 @@ export interface GetRetrievedTracesGraphCommandOutput extends GetRetrievedTraces * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetRetrievedTracesGraphCommand extends $Command diff --git a/clients/client-xray/src/commands/GetSamplingRulesCommand.ts b/clients/client-xray/src/commands/GetSamplingRulesCommand.ts index 9d2fc02f910f3..288ba27c93a67 100644 --- a/clients/client-xray/src/commands/GetSamplingRulesCommand.ts +++ b/clients/client-xray/src/commands/GetSamplingRulesCommand.ts @@ -84,6 +84,7 @@ export interface GetSamplingRulesCommandOutput extends GetSamplingRulesResult, _ * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetSamplingRulesCommand extends $Command diff --git a/clients/client-xray/src/commands/GetSamplingStatisticSummariesCommand.ts b/clients/client-xray/src/commands/GetSamplingStatisticSummariesCommand.ts index 1ede53a623611..d6a15c899d700 100644 --- a/clients/client-xray/src/commands/GetSamplingStatisticSummariesCommand.ts +++ b/clients/client-xray/src/commands/GetSamplingStatisticSummariesCommand.ts @@ -75,6 +75,7 @@ export interface GetSamplingStatisticSummariesCommandOutput * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetSamplingStatisticSummariesCommand extends $Command diff --git a/clients/client-xray/src/commands/GetSamplingTargetsCommand.ts b/clients/client-xray/src/commands/GetSamplingTargetsCommand.ts index f44ac76bb14c1..04d53db4ae77e 100644 --- a/clients/client-xray/src/commands/GetSamplingTargetsCommand.ts +++ b/clients/client-xray/src/commands/GetSamplingTargetsCommand.ts @@ -87,6 +87,7 @@ export interface GetSamplingTargetsCommandOutput extends GetSamplingTargetsResul * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetSamplingTargetsCommand extends $Command diff --git a/clients/client-xray/src/commands/GetServiceGraphCommand.ts b/clients/client-xray/src/commands/GetServiceGraphCommand.ts index aca340a09a5e6..c4b8104735f97 100644 --- a/clients/client-xray/src/commands/GetServiceGraphCommand.ts +++ b/clients/client-xray/src/commands/GetServiceGraphCommand.ts @@ -156,6 +156,7 @@ export interface GetServiceGraphCommandOutput extends GetServiceGraphResult, __M * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetServiceGraphCommand extends $Command diff --git a/clients/client-xray/src/commands/GetTimeSeriesServiceStatisticsCommand.ts b/clients/client-xray/src/commands/GetTimeSeriesServiceStatisticsCommand.ts index ed8f016d9e6a5..a3ecaadb22209 100644 --- a/clients/client-xray/src/commands/GetTimeSeriesServiceStatisticsCommand.ts +++ b/clients/client-xray/src/commands/GetTimeSeriesServiceStatisticsCommand.ts @@ -118,6 +118,7 @@ export interface GetTimeSeriesServiceStatisticsCommandOutput * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetTimeSeriesServiceStatisticsCommand extends $Command diff --git a/clients/client-xray/src/commands/GetTraceGraphCommand.ts b/clients/client-xray/src/commands/GetTraceGraphCommand.ts index 76ccfdffc325d..71fd3b5ce12ed 100644 --- a/clients/client-xray/src/commands/GetTraceGraphCommand.ts +++ b/clients/client-xray/src/commands/GetTraceGraphCommand.ts @@ -148,6 +148,7 @@ export interface GetTraceGraphCommandOutput extends GetTraceGraphResult, __Metad * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetTraceGraphCommand extends $Command diff --git a/clients/client-xray/src/commands/GetTraceSegmentDestinationCommand.ts b/clients/client-xray/src/commands/GetTraceSegmentDestinationCommand.ts index da096434a5d66..2f6c03ea3f84f 100644 --- a/clients/client-xray/src/commands/GetTraceSegmentDestinationCommand.ts +++ b/clients/client-xray/src/commands/GetTraceSegmentDestinationCommand.ts @@ -62,6 +62,7 @@ export interface GetTraceSegmentDestinationCommandOutput extends GetTraceSegment * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetTraceSegmentDestinationCommand extends $Command diff --git a/clients/client-xray/src/commands/GetTraceSummariesCommand.ts b/clients/client-xray/src/commands/GetTraceSummariesCommand.ts index 994f8c522130e..7dd5d44ed03fb 100644 --- a/clients/client-xray/src/commands/GetTraceSummariesCommand.ts +++ b/clients/client-xray/src/commands/GetTraceSummariesCommand.ts @@ -241,6 +241,7 @@ export interface GetTraceSummariesCommandOutput extends GetTraceSummariesResult, * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class GetTraceSummariesCommand extends $Command diff --git a/clients/client-xray/src/commands/ListResourcePoliciesCommand.ts b/clients/client-xray/src/commands/ListResourcePoliciesCommand.ts index 33f2d70b2fd63..a0bbdb5daadff 100644 --- a/clients/client-xray/src/commands/ListResourcePoliciesCommand.ts +++ b/clients/client-xray/src/commands/ListResourcePoliciesCommand.ts @@ -69,6 +69,7 @@ export interface ListResourcePoliciesCommandOutput extends ListResourcePoliciesR * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class ListResourcePoliciesCommand extends $Command diff --git a/clients/client-xray/src/commands/ListRetrievedTracesCommand.ts b/clients/client-xray/src/commands/ListRetrievedTracesCommand.ts index 26264d240fcc2..cc6a9c32a25cf 100644 --- a/clients/client-xray/src/commands/ListRetrievedTracesCommand.ts +++ b/clients/client-xray/src/commands/ListRetrievedTracesCommand.ts @@ -88,6 +88,7 @@ export interface ListRetrievedTracesCommandOutput extends ListRetrievedTracesRes * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class ListRetrievedTracesCommand extends $Command diff --git a/clients/client-xray/src/commands/ListTagsForResourceCommand.ts b/clients/client-xray/src/commands/ListTagsForResourceCommand.ts index d28244a005bbf..679874eead269 100644 --- a/clients/client-xray/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-xray/src/commands/ListTagsForResourceCommand.ts @@ -72,6 +72,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class ListTagsForResourceCommand extends $Command diff --git a/clients/client-xray/src/commands/PutEncryptionConfigCommand.ts b/clients/client-xray/src/commands/PutEncryptionConfigCommand.ts index a3f699d2cddf9..27c39ef50c04f 100644 --- a/clients/client-xray/src/commands/PutEncryptionConfigCommand.ts +++ b/clients/client-xray/src/commands/PutEncryptionConfigCommand.ts @@ -66,6 +66,7 @@ export interface PutEncryptionConfigCommandOutput extends PutEncryptionConfigRes * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class PutEncryptionConfigCommand extends $Command diff --git a/clients/client-xray/src/commands/PutResourcePolicyCommand.ts b/clients/client-xray/src/commands/PutResourcePolicyCommand.ts index a4a7e006d27cc..5d47176ebbcbd 100644 --- a/clients/client-xray/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-xray/src/commands/PutResourcePolicyCommand.ts @@ -87,6 +87,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyResult, * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class PutResourcePolicyCommand extends $Command diff --git a/clients/client-xray/src/commands/PutTelemetryRecordsCommand.ts b/clients/client-xray/src/commands/PutTelemetryRecordsCommand.ts index 1bb30b2758598..480653da01a58 100644 --- a/clients/client-xray/src/commands/PutTelemetryRecordsCommand.ts +++ b/clients/client-xray/src/commands/PutTelemetryRecordsCommand.ts @@ -78,6 +78,7 @@ export interface PutTelemetryRecordsCommandOutput extends PutTelemetryRecordsRes * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class PutTelemetryRecordsCommand extends $Command diff --git a/clients/client-xray/src/commands/PutTraceSegmentsCommand.ts b/clients/client-xray/src/commands/PutTraceSegmentsCommand.ts index 4629b64e0d402..ebc950bac9d0b 100644 --- a/clients/client-xray/src/commands/PutTraceSegmentsCommand.ts +++ b/clients/client-xray/src/commands/PutTraceSegmentsCommand.ts @@ -141,6 +141,7 @@ export interface PutTraceSegmentsCommandOutput extends PutTraceSegmentsResult, _ * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class PutTraceSegmentsCommand extends $Command diff --git a/clients/client-xray/src/commands/StartTraceRetrievalCommand.ts b/clients/client-xray/src/commands/StartTraceRetrievalCommand.ts index aac343bfd4689..c2100236e1e0d 100644 --- a/clients/client-xray/src/commands/StartTraceRetrievalCommand.ts +++ b/clients/client-xray/src/commands/StartTraceRetrievalCommand.ts @@ -74,6 +74,7 @@ export interface StartTraceRetrievalCommandOutput extends StartTraceRetrievalRes * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class StartTraceRetrievalCommand extends $Command diff --git a/clients/client-xray/src/commands/TagResourceCommand.ts b/clients/client-xray/src/commands/TagResourceCommand.ts index a3aed66c828ab..36776a5eccff3 100644 --- a/clients/client-xray/src/commands/TagResourceCommand.ts +++ b/clients/client-xray/src/commands/TagResourceCommand.ts @@ -72,6 +72,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class TagResourceCommand extends $Command diff --git a/clients/client-xray/src/commands/UntagResourceCommand.ts b/clients/client-xray/src/commands/UntagResourceCommand.ts index 1fac5b45190cf..288a83db817db 100644 --- a/clients/client-xray/src/commands/UntagResourceCommand.ts +++ b/clients/client-xray/src/commands/UntagResourceCommand.ts @@ -67,6 +67,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class UntagResourceCommand extends $Command diff --git a/clients/client-xray/src/commands/UpdateGroupCommand.ts b/clients/client-xray/src/commands/UpdateGroupCommand.ts index cce856ade77f8..923cb5ae47eb9 100644 --- a/clients/client-xray/src/commands/UpdateGroupCommand.ts +++ b/clients/client-xray/src/commands/UpdateGroupCommand.ts @@ -75,6 +75,7 @@ export interface UpdateGroupCommandOutput extends UpdateGroupResult, __MetadataB * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class UpdateGroupCommand extends $Command diff --git a/clients/client-xray/src/commands/UpdateIndexingRuleCommand.ts b/clients/client-xray/src/commands/UpdateIndexingRuleCommand.ts index c779561ed6f09..5a03be9e826b7 100644 --- a/clients/client-xray/src/commands/UpdateIndexingRuleCommand.ts +++ b/clients/client-xray/src/commands/UpdateIndexingRuleCommand.ts @@ -82,6 +82,7 @@ export interface UpdateIndexingRuleCommandOutput extends UpdateIndexingRuleResul * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class UpdateIndexingRuleCommand extends $Command diff --git a/clients/client-xray/src/commands/UpdateSamplingRuleCommand.ts b/clients/client-xray/src/commands/UpdateSamplingRuleCommand.ts index f4e585ed547ca..835f3edbf9055 100644 --- a/clients/client-xray/src/commands/UpdateSamplingRuleCommand.ts +++ b/clients/client-xray/src/commands/UpdateSamplingRuleCommand.ts @@ -96,6 +96,7 @@ export interface UpdateSamplingRuleCommandOutput extends UpdateSamplingRuleResul * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class UpdateSamplingRuleCommand extends $Command diff --git a/clients/client-xray/src/commands/UpdateTraceSegmentDestinationCommand.ts b/clients/client-xray/src/commands/UpdateTraceSegmentDestinationCommand.ts index 131df7248537c..695ef01585fde 100644 --- a/clients/client-xray/src/commands/UpdateTraceSegmentDestinationCommand.ts +++ b/clients/client-xray/src/commands/UpdateTraceSegmentDestinationCommand.ts @@ -69,6 +69,7 @@ export interface UpdateTraceSegmentDestinationCommandOutput * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

* + * * @public */ export class UpdateTraceSegmentDestinationCommand extends $Command diff --git a/packages/nested-clients/src/submodules/sso-oidc/commands/CreateTokenCommand.ts b/packages/nested-clients/src/submodules/sso-oidc/commands/CreateTokenCommand.ts index 865593aafcdc2..5d9e9dbb51c9e 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/commands/CreateTokenCommand.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/commands/CreateTokenCommand.ts @@ -117,6 +117,52 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat * @throws {@link SSOOIDCServiceException} *

Base exception class for all service exceptions from SSOOIDC service.

* + * + * @example Call OAuth/OIDC /token endpoint for Device Code grant with Secret authentication + * ```javascript + * // + * const input = { + * clientId: "_yzkThXVzLWVhc3QtMQEXAMPLECLIENTID", + * clientSecret: "VERYLONGSECRETeyJraWQiOiJrZXktMTU2NDAyODA5OSIsImFsZyI6IkhTMzg0In0", + * deviceCode: "yJraWQiOiJrZXktMTU2Njk2ODA4OCIsImFsZyI6IkhTMzIn0EXAMPLEDEVICECODE", + * grantType: "urn:ietf:params:oauth:grant-type:device-code" + * }; + * const command = new CreateTokenCommand(input); + * const response = await client.send(command); + * /* response is + * { + * accessToken: "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN", + * expiresIn: 1579729529, + * refreshToken: "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", + * tokenType: "Bearer" + * } + * *\/ + * ``` + * + * @example Call OAuth/OIDC /token endpoint for Refresh Token grant with Secret authentication + * ```javascript + * // + * const input = { + * clientId: "_yzkThXVzLWVhc3QtMQEXAMPLECLIENTID", + * clientSecret: "VERYLONGSECRETeyJraWQiOiJrZXktMTU2NDAyODA5OSIsImFsZyI6IkhTMzg0In0", + * grantType: "refresh_token", + * refreshToken: "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", + * scope: [ + * "codewhisperer:completions" + * ] + * }; + * const command = new CreateTokenCommand(input); + * const response = await client.send(command); + * /* response is + * { + * accessToken: "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN", + * expiresIn: 1579729529, + * refreshToken: "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN", + * tokenType: "Bearer" + * } + * *\/ + * ``` + * * @public */ export class CreateTokenCommand extends $Command diff --git a/packages/nested-clients/src/submodules/sts/commands/AssumeRoleCommand.ts b/packages/nested-clients/src/submodules/sts/commands/AssumeRoleCommand.ts index cccb4f305b992..c09aa904b84b2 100644 --- a/packages/nested-clients/src/submodules/sts/commands/AssumeRoleCommand.ts +++ b/packages/nested-clients/src/submodules/sts/commands/AssumeRoleCommand.ts @@ -206,6 +206,53 @@ export interface AssumeRoleCommandOutput extends AssumeRoleResponse, __MetadataB * @throws {@link STSServiceException} *

Base exception class for all service exceptions from STS service.

* + * + * @example To assume a role + * ```javascript + * // + * const input = { + * ExternalId: "123ABC", + * Policy: `{"Version":"2012-10-17","Statement":[{"Sid":"Stmt1","Effect":"Allow","Action":"s3:ListAllMyBuckets","Resource":"*"}]}`, + * RoleArn: "arn:aws:iam::123456789012:role/demo", + * RoleSessionName: "testAssumeRoleSession", + * Tags: [ + * { + * Key: "Project", + * Value: "Unicorn" + * }, + * { + * Key: "Team", + * Value: "Automation" + * }, + * { + * Key: "Cost-Center", + * Value: "12345" + * } + * ], + * TransitiveTagKeys: [ + * "Project", + * "Cost-Center" + * ] + * }; + * const command = new AssumeRoleCommand(input); + * const response = await client.send(command); + * /* response is + * { + * AssumedRoleUser: { + * Arn: "arn:aws:sts::123456789012:assumed-role/demo/Bob", + * AssumedRoleId: "ARO123EXAMPLE123:Bob" + * }, + * Credentials: { + * AccessKeyId: "AKIAIOSFODNN7EXAMPLE", + * Expiration: "2011-07-15T23:28:33.359Z", + * SecretAccessKey: "wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY", + * SessionToken: "AQoDYXdzEPT//////////wEXAMPLEtc764bNrC9SAPBSM22wDOk4x4HIZ8j4FZTwdQWLWsKWHGBuFqwAeMicRXmxfpSPfIeoIYRqTflfKD8YUuwthAx7mSEI/qkPpKPi/kMcGdQrmGdeehM4IC1NtBmUpp2wUE8phUZampKsburEDy0KPkyQDYwT7WZ0wq5VSXDvp75YU9HFvlRd8Tx6q6fE8YQcHNVXAkiY9q6d+xo0rKwT38xVqr7ZD0u0iPPkUL64lIZbqBAz+scqKmlzm8FDrypNC9Yjc8fPOLn9FX9KSYvKTr4rvx3iSIlTJabIQwj2ICCR/oLxBA==" + * }, + * PackedPolicySize: 8 + * } + * *\/ + * ``` + * * @public */ export class AssumeRoleCommand extends $Command diff --git a/packages/nested-clients/src/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.ts b/packages/nested-clients/src/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.ts index 603da379dcab3..9f60759810424 100644 --- a/packages/nested-clients/src/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.ts +++ b/packages/nested-clients/src/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.ts @@ -243,6 +243,40 @@ export interface AssumeRoleWithWebIdentityCommandOutput extends AssumeRoleWithWe * @throws {@link STSServiceException} *

Base exception class for all service exceptions from STS service.

* + * + * @example To assume a role as an OpenID Connect-federated user + * ```javascript + * // + * const input = { + * DurationSeconds: 3600, + * Policy: `{"Version":"2012-10-17","Statement":[{"Sid":"Stmt1","Effect":"Allow","Action":"s3:ListAllMyBuckets","Resource":"*"}]}`, + * ProviderId: "www.amazon.com", + * RoleArn: "arn:aws:iam::123456789012:role/FederatedWebIdentityRole", + * RoleSessionName: "app1", + * WebIdentityToken: "Atza%7CIQEBLjAsAhRFiXuWpUXuRvQ9PZL3GMFcYevydwIUFAHZwXZXXXXXXXXJnrulxKDHwy87oGKPznh0D6bEQZTSCzyoCtL_8S07pLpr0zMbn6w1lfVZKNTBdDansFBmtGnIsIapjI6xKR02Yc_2bQ8LZbUXSGm6Ry6_BG7PrtLZtj_dfCTj92xNGed-CrKqjG7nPBjNIL016GGvuS5gSvPRUxWES3VYfm1wl7WTI7jn-Pcb6M-buCgHhFOzTQxod27L9CqnOLio7N3gZAGpsp6n1-AJBOCJckcyXe2c6uD0srOJeZlKUm2eTDVMf8IehDVI0r1QOnTV6KzzAI3OY87Vd_cVMQ" + * }; + * const command = new AssumeRoleWithWebIdentityCommand(input); + * const response = await client.send(command); + * /* response is + * { + * AssumedRoleUser: { + * Arn: "arn:aws:sts::123456789012:assumed-role/FederatedWebIdentityRole/app1", + * AssumedRoleId: "AROACLKWSDQRAOEXAMPLE:app1" + * }, + * Audience: "client.5498841531868486423.1548@apps.example.com", + * Credentials: { + * AccessKeyId: "AKIAIOSFODNN7EXAMPLE", + * Expiration: "2014-10-24T23:00:23Z", + * SecretAccessKey: "wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY", + * SessionToken: "AQoDYXdzEE0a8ANXXXXXXXXNO1ewxE5TijQyp+IEXAMPLE" + * }, + * PackedPolicySize: 123, + * Provider: "www.amazon.com", + * SubjectFromWebIdentityToken: "amzn1.account.AF6RHO7KZU5XRVQJGXK6HEXAMPLE" + * } + * *\/ + * ``` + * * @public */ export class AssumeRoleWithWebIdentityCommand extends $Command diff --git a/private/aws-echo-service/src/commands/EchoCommand.ts b/private/aws-echo-service/src/commands/EchoCommand.ts index 4b8d03891af19..5bade879d4022 100644 --- a/private/aws-echo-service/src/commands/EchoCommand.ts +++ b/private/aws-echo-service/src/commands/EchoCommand.ts @@ -56,6 +56,7 @@ export interface EchoCommandOutput extends EchoOutput, __MetadataBearer {} * @throws {@link EchoServiceServiceException} *

Base exception class for all service exceptions from EchoService service.

* + * */ export class EchoCommand extends $Command .classBuilder< diff --git a/private/aws-echo-service/src/commands/LengthCommand.ts b/private/aws-echo-service/src/commands/LengthCommand.ts index 6de6a1c0a284d..2985055da9bbe 100644 --- a/private/aws-echo-service/src/commands/LengthCommand.ts +++ b/private/aws-echo-service/src/commands/LengthCommand.ts @@ -56,6 +56,7 @@ export interface LengthCommandOutput extends LengthOutput, __MetadataBearer {} * @throws {@link EchoServiceServiceException} *

Base exception class for all service exceptions from EchoService service.

* + * */ export class LengthCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-ec2/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-ec2/src/commands/DatetimeOffsetsCommand.ts index 5c2598d124ea7..d789627a0793d 100644 --- a/private/aws-protocoltests-ec2/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/DatetimeOffsetsCommand.ts @@ -52,6 +52,7 @@ export interface DatetimeOffsetsCommandOutput extends DatetimeOffsetsOutput, __M * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * */ export class DatetimeOffsetsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-ec2/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-ec2/src/commands/EmptyInputAndEmptyOutputCommand.ts index 3681a1088c5a6..0f62da6928911 100644 --- a/private/aws-protocoltests-ec2/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -52,6 +52,7 @@ export interface EmptyInputAndEmptyOutputCommandOutput extends EmptyInputAndEmpt * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class EmptyInputAndEmptyOutputCommand extends $Command diff --git a/private/aws-protocoltests-ec2/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-ec2/src/commands/EndpointOperationCommand.ts index e0d9cf8e702b8..4cfb8f8ea975e 100644 --- a/private/aws-protocoltests-ec2/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/EndpointOperationCommand.ts @@ -49,6 +49,7 @@ export interface EndpointOperationCommandOutput extends __MetadataBearer {} * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * */ export class EndpointOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-ec2/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-ec2/src/commands/EndpointWithHostLabelOperationCommand.ts index d4b73dfbb806f..f0aa0732428cc 100644 --- a/private/aws-protocoltests-ec2/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -55,6 +55,7 @@ export interface EndpointWithHostLabelOperationCommandOutput extends __MetadataB * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * */ export class EndpointWithHostLabelOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-ec2/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-ec2/src/commands/FractionalSecondsCommand.ts index 559537bc0370a..9ffa3a54f5808 100644 --- a/private/aws-protocoltests-ec2/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/FractionalSecondsCommand.ts @@ -52,6 +52,7 @@ export interface FractionalSecondsCommandOutput extends FractionalSecondsOutput, * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * */ export class FractionalSecondsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-ec2/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-ec2/src/commands/GreetingWithErrorsCommand.ts index 4359f10b7235a..465a1304657cd 100644 --- a/private/aws-protocoltests-ec2/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/GreetingWithErrorsCommand.ts @@ -61,6 +61,7 @@ export interface GreetingWithErrorsCommandOutput extends GreetingWithErrorsOutpu * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class GreetingWithErrorsCommand extends $Command diff --git a/private/aws-protocoltests-ec2/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-ec2/src/commands/HostWithPathOperationCommand.ts index 8707dc94b9447..06537b63279a0 100644 --- a/private/aws-protocoltests-ec2/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/HostWithPathOperationCommand.ts @@ -49,6 +49,7 @@ export interface HostWithPathOperationCommandOutput extends __MetadataBearer {} * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * */ export class HostWithPathOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-ec2/src/commands/IgnoresWrappingXmlNameCommand.ts b/private/aws-protocoltests-ec2/src/commands/IgnoresWrappingXmlNameCommand.ts index 27469361d5354..56b07b5a0c604 100644 --- a/private/aws-protocoltests-ec2/src/commands/IgnoresWrappingXmlNameCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/IgnoresWrappingXmlNameCommand.ts @@ -53,6 +53,7 @@ export interface IgnoresWrappingXmlNameCommandOutput extends IgnoresWrappingXmlN * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class IgnoresWrappingXmlNameCommand extends $Command diff --git a/private/aws-protocoltests-ec2/src/commands/NestedStructuresCommand.ts b/private/aws-protocoltests-ec2/src/commands/NestedStructuresCommand.ts index 0750c78139976..7b6ba3a24faef 100644 --- a/private/aws-protocoltests-ec2/src/commands/NestedStructuresCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/NestedStructuresCommand.ts @@ -59,6 +59,7 @@ export interface NestedStructuresCommandOutput extends __MetadataBearer {} * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class NestedStructuresCommand extends $Command diff --git a/private/aws-protocoltests-ec2/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-ec2/src/commands/NoInputAndOutputCommand.ts index b12f71fabf3ef..96b1fb5bc9551 100644 --- a/private/aws-protocoltests-ec2/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/NoInputAndOutputCommand.ts @@ -52,6 +52,7 @@ export interface NoInputAndOutputCommandOutput extends NoInputAndOutputOutput, _ * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class NoInputAndOutputCommand extends $Command diff --git a/private/aws-protocoltests-ec2/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-ec2/src/commands/PutWithContentEncodingCommand.ts index 5e07268818a55..90b98d522aaac 100644 --- a/private/aws-protocoltests-ec2/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/PutWithContentEncodingCommand.ts @@ -54,6 +54,7 @@ export interface PutWithContentEncodingCommandOutput extends __MetadataBearer {} * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * */ export class PutWithContentEncodingCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-ec2/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-ec2/src/commands/QueryIdempotencyTokenAutoFillCommand.ts index 657aa454e7219..4681a748fe200 100644 --- a/private/aws-protocoltests-ec2/src/commands/QueryIdempotencyTokenAutoFillCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/QueryIdempotencyTokenAutoFillCommand.ts @@ -51,6 +51,7 @@ export interface QueryIdempotencyTokenAutoFillCommandOutput extends __MetadataBe * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class QueryIdempotencyTokenAutoFillCommand extends $Command diff --git a/private/aws-protocoltests-ec2/src/commands/QueryListsCommand.ts b/private/aws-protocoltests-ec2/src/commands/QueryListsCommand.ts index 8a08ee2cad744..a3a3c7bc0063f 100644 --- a/private/aws-protocoltests-ec2/src/commands/QueryListsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/QueryListsCommand.ts @@ -69,6 +69,7 @@ export interface QueryListsCommandOutput extends __MetadataBearer {} * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class QueryListsCommand extends $Command diff --git a/private/aws-protocoltests-ec2/src/commands/QueryTimestampsCommand.ts b/private/aws-protocoltests-ec2/src/commands/QueryTimestampsCommand.ts index 187299fd6d083..ca3980aa70406 100644 --- a/private/aws-protocoltests-ec2/src/commands/QueryTimestampsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/QueryTimestampsCommand.ts @@ -57,6 +57,7 @@ export interface QueryTimestampsCommandOutput extends __MetadataBearer {} * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class QueryTimestampsCommand extends $Command diff --git a/private/aws-protocoltests-ec2/src/commands/RecursiveXmlShapesCommand.ts b/private/aws-protocoltests-ec2/src/commands/RecursiveXmlShapesCommand.ts index 07edd7c663467..01a0c15f2c87f 100644 --- a/private/aws-protocoltests-ec2/src/commands/RecursiveXmlShapesCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/RecursiveXmlShapesCommand.ts @@ -63,6 +63,7 @@ export interface RecursiveXmlShapesCommandOutput extends RecursiveXmlShapesOutpu * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class RecursiveXmlShapesCommand extends $Command diff --git a/private/aws-protocoltests-ec2/src/commands/SimpleInputParamsCommand.ts b/private/aws-protocoltests-ec2/src/commands/SimpleInputParamsCommand.ts index 6039be0c98514..29d16449ae157 100644 --- a/private/aws-protocoltests-ec2/src/commands/SimpleInputParamsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/SimpleInputParamsCommand.ts @@ -61,6 +61,7 @@ export interface SimpleInputParamsCommandOutput extends __MetadataBearer {} * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class SimpleInputParamsCommand extends $Command diff --git a/private/aws-protocoltests-ec2/src/commands/SimpleScalarXmlPropertiesCommand.ts b/private/aws-protocoltests-ec2/src/commands/SimpleScalarXmlPropertiesCommand.ts index 0a0229c95b46b..a5570be0cbaa9 100644 --- a/private/aws-protocoltests-ec2/src/commands/SimpleScalarXmlPropertiesCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/SimpleScalarXmlPropertiesCommand.ts @@ -61,6 +61,7 @@ export interface SimpleScalarXmlPropertiesCommandOutput extends SimpleScalarXmlP * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * */ export class SimpleScalarXmlPropertiesCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-ec2/src/commands/XmlBlobsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlBlobsCommand.ts index dc5df036077f7..a8301bac41eb8 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlBlobsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlBlobsCommand.ts @@ -51,6 +51,7 @@ export interface XmlBlobsCommandOutput extends XmlBlobsOutput, __MetadataBearer * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class XmlBlobsCommand extends $Command diff --git a/private/aws-protocoltests-ec2/src/commands/XmlEmptyBlobsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlEmptyBlobsCommand.ts index a782824de4168..92f3d9bb4648c 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlEmptyBlobsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlEmptyBlobsCommand.ts @@ -52,6 +52,7 @@ export interface XmlEmptyBlobsCommandOutput extends XmlBlobsOutput, __MetadataBe * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * */ export class XmlEmptyBlobsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-ec2/src/commands/XmlEmptyListsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlEmptyListsCommand.ts index 933248f1833b9..3b93b5e999680 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlEmptyListsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlEmptyListsCommand.ts @@ -98,6 +98,7 @@ export interface XmlEmptyListsCommandOutput extends XmlListsOutput, __MetadataBe * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * */ export class XmlEmptyListsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-ec2/src/commands/XmlEnumsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlEnumsCommand.ts index 918aad5edc614..60713dfcb0f6a 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlEnumsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlEnumsCommand.ts @@ -62,6 +62,7 @@ export interface XmlEnumsCommandOutput extends XmlEnumsOutput, __MetadataBearer * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class XmlEnumsCommand extends $Command diff --git a/private/aws-protocoltests-ec2/src/commands/XmlIntEnumsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlIntEnumsCommand.ts index 1ea1347d132b0..65c0111a6bd60 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlIntEnumsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlIntEnumsCommand.ts @@ -62,6 +62,7 @@ export interface XmlIntEnumsCommandOutput extends XmlIntEnumsOutput, __MetadataB * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class XmlIntEnumsCommand extends $Command diff --git a/private/aws-protocoltests-ec2/src/commands/XmlListsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlListsCommand.ts index 7db9f16a790e6..b6c4a2544cb3a 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlListsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlListsCommand.ts @@ -107,6 +107,7 @@ export interface XmlListsCommandOutput extends XmlListsOutput, __MetadataBearer * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class XmlListsCommand extends $Command diff --git a/private/aws-protocoltests-ec2/src/commands/XmlNamespacesCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlNamespacesCommand.ts index 09ef170a3f081..599636f03c677 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlNamespacesCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlNamespacesCommand.ts @@ -57,6 +57,7 @@ export interface XmlNamespacesCommandOutput extends XmlNamespacesOutput, __Metad * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * */ export class XmlNamespacesCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-ec2/src/commands/XmlTimestampsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlTimestampsCommand.ts index 32e10f4b80bd5..6140743beed5c 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlTimestampsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlTimestampsCommand.ts @@ -59,6 +59,7 @@ export interface XmlTimestampsCommandOutput extends XmlTimestampsOutput, __Metad * @throws {@link EC2ProtocolServiceException} *

Base exception class for all service exceptions from EC2Protocol service.

* + * * @public */ export class XmlTimestampsCommand extends $Command diff --git a/private/aws-protocoltests-json-10/src/commands/ContentTypeParametersCommand.ts b/private/aws-protocoltests-json-10/src/commands/ContentTypeParametersCommand.ts index df41b0843a9ff..01cde3ffa68f9 100644 --- a/private/aws-protocoltests-json-10/src/commands/ContentTypeParametersCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/ContentTypeParametersCommand.ts @@ -52,6 +52,7 @@ export interface ContentTypeParametersCommandOutput extends ContentTypeParameter * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * * @public */ export class ContentTypeParametersCommand extends $Command diff --git a/private/aws-protocoltests-json-10/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-json-10/src/commands/EmptyInputAndEmptyOutputCommand.ts index f5e3bddf86f8e..3430c65086159 100644 --- a/private/aws-protocoltests-json-10/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -52,6 +52,7 @@ export interface EmptyInputAndEmptyOutputCommandOutput extends EmptyInputAndEmpt * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * * @public */ export class EmptyInputAndEmptyOutputCommand extends $Command diff --git a/private/aws-protocoltests-json-10/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-json-10/src/commands/EndpointOperationCommand.ts index 1f75969f73e44..6a956a2e66387 100644 --- a/private/aws-protocoltests-json-10/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/EndpointOperationCommand.ts @@ -49,6 +49,7 @@ export interface EndpointOperationCommandOutput extends __MetadataBearer {} * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * */ export class EndpointOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json-10/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-json-10/src/commands/EndpointWithHostLabelOperationCommand.ts index 16e3a215b116f..d394abe240a8c 100644 --- a/private/aws-protocoltests-json-10/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -55,6 +55,7 @@ export interface EndpointWithHostLabelOperationCommandOutput extends __MetadataB * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * */ export class EndpointWithHostLabelOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json-10/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-json-10/src/commands/GreetingWithErrorsCommand.ts index 4a8bf60c1ca4e..124a48d848021 100644 --- a/private/aws-protocoltests-json-10/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/GreetingWithErrorsCommand.ts @@ -70,6 +70,7 @@ export interface GreetingWithErrorsCommandOutput extends GreetingWithErrorsOutpu * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * * @public */ export class GreetingWithErrorsCommand extends $Command diff --git a/private/aws-protocoltests-json-10/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-json-10/src/commands/HostWithPathOperationCommand.ts index 00df291241e7b..4c1c3d704c436 100644 --- a/private/aws-protocoltests-json-10/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/HostWithPathOperationCommand.ts @@ -49,6 +49,7 @@ export interface HostWithPathOperationCommandOutput extends __MetadataBearer {} * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * */ export class HostWithPathOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json-10/src/commands/JsonUnionsCommand.ts b/private/aws-protocoltests-json-10/src/commands/JsonUnionsCommand.ts index c12a9e80757d5..e64fa4fb0dded 100644 --- a/private/aws-protocoltests-json-10/src/commands/JsonUnionsCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/JsonUnionsCommand.ts @@ -87,6 +87,7 @@ export interface JsonUnionsCommandOutput extends JsonUnionsOutput, __MetadataBea * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * * @public */ export class JsonUnionsCommand extends $Command diff --git a/private/aws-protocoltests-json-10/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-json-10/src/commands/NoInputAndNoOutputCommand.ts index c0e445ab18ac7..94393e2360fad 100644 --- a/private/aws-protocoltests-json-10/src/commands/NoInputAndNoOutputCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/NoInputAndNoOutputCommand.ts @@ -50,6 +50,7 @@ export interface NoInputAndNoOutputCommandOutput extends __MetadataBearer {} * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * * @public */ export class NoInputAndNoOutputCommand extends $Command diff --git a/private/aws-protocoltests-json-10/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-json-10/src/commands/NoInputAndOutputCommand.ts index 38f532bec4bd8..c359c8099159d 100644 --- a/private/aws-protocoltests-json-10/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/NoInputAndOutputCommand.ts @@ -52,6 +52,7 @@ export interface NoInputAndOutputCommandOutput extends NoInputAndOutputOutput, _ * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * * @public */ export class NoInputAndOutputCommand extends $Command diff --git a/private/aws-protocoltests-json-10/src/commands/OperationWithDefaultsCommand.ts b/private/aws-protocoltests-json-10/src/commands/OperationWithDefaultsCommand.ts index f9207445f07e9..3a972be085b3b 100644 --- a/private/aws-protocoltests-json-10/src/commands/OperationWithDefaultsCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/OperationWithDefaultsCommand.ts @@ -123,6 +123,7 @@ export interface OperationWithDefaultsCommandOutput extends OperationWithDefault * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * */ export class OperationWithDefaultsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json-10/src/commands/OperationWithNestedStructureCommand.ts b/private/aws-protocoltests-json-10/src/commands/OperationWithNestedStructureCommand.ts index 1a94a7fc3f4c7..c17e70e1be1da 100644 --- a/private/aws-protocoltests-json-10/src/commands/OperationWithNestedStructureCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/OperationWithNestedStructureCommand.ts @@ -109,6 +109,7 @@ export interface OperationWithNestedStructureCommandOutput * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * */ export class OperationWithNestedStructureCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersCommand.ts b/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersCommand.ts index 3e04be715a110..7dbfbde17d1a4 100644 --- a/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersCommand.ts @@ -72,6 +72,7 @@ export interface OperationWithRequiredMembersCommandOutput * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * */ export class OperationWithRequiredMembersCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersWithDefaultsCommand.ts b/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersWithDefaultsCommand.ts index 00326913f01b7..8d1dcab200bfd 100644 --- a/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersWithDefaultsCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersWithDefaultsCommand.ts @@ -74,6 +74,7 @@ export interface OperationWithRequiredMembersWithDefaultsCommandOutput * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * */ export class OperationWithRequiredMembersWithDefaultsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json-10/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-json-10/src/commands/PutWithContentEncodingCommand.ts index b53294fa7dbfc..904573167f8f5 100644 --- a/private/aws-protocoltests-json-10/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/PutWithContentEncodingCommand.ts @@ -54,6 +54,7 @@ export interface PutWithContentEncodingCommandOutput extends __MetadataBearer {} * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * */ export class PutWithContentEncodingCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json-10/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-json-10/src/commands/SimpleScalarPropertiesCommand.ts index 95952848c5c25..425901b8af64c 100644 --- a/private/aws-protocoltests-json-10/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/SimpleScalarPropertiesCommand.ts @@ -56,6 +56,7 @@ export interface SimpleScalarPropertiesCommandOutput extends SimpleScalarPropert * @throws {@link JSONRPC10ServiceException} *

Base exception class for all service exceptions from JSONRPC10 service.

* + * */ export class SimpleScalarPropertiesCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json-machinelearning/src/commands/PredictCommand.ts b/private/aws-protocoltests-json-machinelearning/src/commands/PredictCommand.ts index 059857b17aa8d..fb9b1d9e1fe64 100644 --- a/private/aws-protocoltests-json-machinelearning/src/commands/PredictCommand.ts +++ b/private/aws-protocoltests-json-machinelearning/src/commands/PredictCommand.ts @@ -78,6 +78,7 @@ export interface PredictCommandOutput extends PredictOutput, __MetadataBearer {} * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* + * */ export class PredictCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json/src/commands/ContentTypeParametersCommand.ts b/private/aws-protocoltests-json/src/commands/ContentTypeParametersCommand.ts index 0b192aec74d7c..2e2b392b4fbe4 100644 --- a/private/aws-protocoltests-json/src/commands/ContentTypeParametersCommand.ts +++ b/private/aws-protocoltests-json/src/commands/ContentTypeParametersCommand.ts @@ -52,6 +52,7 @@ export interface ContentTypeParametersCommandOutput extends ContentTypeParameter * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * * @public */ export class ContentTypeParametersCommand extends $Command diff --git a/private/aws-protocoltests-json/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-json/src/commands/DatetimeOffsetsCommand.ts index 8e087873941b5..608a06bed6333 100644 --- a/private/aws-protocoltests-json/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-json/src/commands/DatetimeOffsetsCommand.ts @@ -52,6 +52,7 @@ export interface DatetimeOffsetsCommandOutput extends DatetimeOffsetsOutput, __M * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * */ export class DatetimeOffsetsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json/src/commands/EmptyOperationCommand.ts b/private/aws-protocoltests-json/src/commands/EmptyOperationCommand.ts index 0c1f1cb9b2777..ebaa6bab4f51e 100644 --- a/private/aws-protocoltests-json/src/commands/EmptyOperationCommand.ts +++ b/private/aws-protocoltests-json/src/commands/EmptyOperationCommand.ts @@ -49,6 +49,7 @@ export interface EmptyOperationCommandOutput extends __MetadataBearer {} * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * */ export class EmptyOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-json/src/commands/EndpointOperationCommand.ts index fa6a5d009404f..ca3c57534d12e 100644 --- a/private/aws-protocoltests-json/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-json/src/commands/EndpointOperationCommand.ts @@ -49,6 +49,7 @@ export interface EndpointOperationCommandOutput extends __MetadataBearer {} * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * */ export class EndpointOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-json/src/commands/EndpointWithHostLabelOperationCommand.ts index 2fcfb00ca217e..c5522560258b3 100644 --- a/private/aws-protocoltests-json/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-json/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -55,6 +55,7 @@ export interface EndpointWithHostLabelOperationCommandOutput extends __MetadataB * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * */ export class EndpointWithHostLabelOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-json/src/commands/FractionalSecondsCommand.ts index 52dca9067559a..ec2b2ea570a46 100644 --- a/private/aws-protocoltests-json/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-json/src/commands/FractionalSecondsCommand.ts @@ -52,6 +52,7 @@ export interface FractionalSecondsCommandOutput extends FractionalSecondsOutput, * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * */ export class FractionalSecondsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-json/src/commands/GreetingWithErrorsCommand.ts index 62a2ee5edef30..e77f9a5039292 100644 --- a/private/aws-protocoltests-json/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-json/src/commands/GreetingWithErrorsCommand.ts @@ -68,6 +68,7 @@ export interface GreetingWithErrorsCommandOutput extends GreetingWithErrorsOutpu * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * * @public */ export class GreetingWithErrorsCommand extends $Command diff --git a/private/aws-protocoltests-json/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-json/src/commands/HostWithPathOperationCommand.ts index 66de42139bd5b..76a3e1e7cd1a2 100644 --- a/private/aws-protocoltests-json/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-json/src/commands/HostWithPathOperationCommand.ts @@ -49,6 +49,7 @@ export interface HostWithPathOperationCommandOutput extends __MetadataBearer {} * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * */ export class HostWithPathOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json/src/commands/JsonEnumsCommand.ts b/private/aws-protocoltests-json/src/commands/JsonEnumsCommand.ts index 4841223d47afc..1abe77a359af0 100644 --- a/private/aws-protocoltests-json/src/commands/JsonEnumsCommand.ts +++ b/private/aws-protocoltests-json/src/commands/JsonEnumsCommand.ts @@ -75,6 +75,7 @@ export interface JsonEnumsCommandOutput extends JsonEnumsInputOutput, __Metadata * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * * @public */ export class JsonEnumsCommand extends $Command diff --git a/private/aws-protocoltests-json/src/commands/JsonIntEnumsCommand.ts b/private/aws-protocoltests-json/src/commands/JsonIntEnumsCommand.ts index 3b58fde8e4c24..ab5f573121ac1 100644 --- a/private/aws-protocoltests-json/src/commands/JsonIntEnumsCommand.ts +++ b/private/aws-protocoltests-json/src/commands/JsonIntEnumsCommand.ts @@ -75,6 +75,7 @@ export interface JsonIntEnumsCommandOutput extends JsonIntEnumsInputOutput, __Me * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * * @public */ export class JsonIntEnumsCommand extends $Command diff --git a/private/aws-protocoltests-json/src/commands/JsonUnionsCommand.ts b/private/aws-protocoltests-json/src/commands/JsonUnionsCommand.ts index 67ccf53601c16..2f378efaa3de4 100644 --- a/private/aws-protocoltests-json/src/commands/JsonUnionsCommand.ts +++ b/private/aws-protocoltests-json/src/commands/JsonUnionsCommand.ts @@ -85,6 +85,7 @@ export interface JsonUnionsCommandOutput extends UnionInputOutput, __MetadataBea * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * * @public */ export class JsonUnionsCommand extends $Command diff --git a/private/aws-protocoltests-json/src/commands/KitchenSinkOperationCommand.ts b/private/aws-protocoltests-json/src/commands/KitchenSinkOperationCommand.ts index 6bebc67e80853..72c4c261a6548 100644 --- a/private/aws-protocoltests-json/src/commands/KitchenSinkOperationCommand.ts +++ b/private/aws-protocoltests-json/src/commands/KitchenSinkOperationCommand.ts @@ -274,6 +274,7 @@ export interface KitchenSinkOperationCommandOutput extends KitchenSink, __Metada * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * */ export class KitchenSinkOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json/src/commands/NullOperationCommand.ts b/private/aws-protocoltests-json/src/commands/NullOperationCommand.ts index 3fa374705d53d..6fd1230e9e29b 100644 --- a/private/aws-protocoltests-json/src/commands/NullOperationCommand.ts +++ b/private/aws-protocoltests-json/src/commands/NullOperationCommand.ts @@ -54,6 +54,7 @@ export interface NullOperationCommandOutput extends NullOperationInputOutput, __ * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * */ export class NullOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json/src/commands/OperationWithOptionalInputOutputCommand.ts b/private/aws-protocoltests-json/src/commands/OperationWithOptionalInputOutputCommand.ts index 3b822168c2c35..d914a200948a1 100644 --- a/private/aws-protocoltests-json/src/commands/OperationWithOptionalInputOutputCommand.ts +++ b/private/aws-protocoltests-json/src/commands/OperationWithOptionalInputOutputCommand.ts @@ -59,6 +59,7 @@ export interface OperationWithOptionalInputOutputCommandOutput * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * */ export class OperationWithOptionalInputOutputCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json/src/commands/PutAndGetInlineDocumentsCommand.ts b/private/aws-protocoltests-json/src/commands/PutAndGetInlineDocumentsCommand.ts index b0104c03c2dda..46b78426e9ed1 100644 --- a/private/aws-protocoltests-json/src/commands/PutAndGetInlineDocumentsCommand.ts +++ b/private/aws-protocoltests-json/src/commands/PutAndGetInlineDocumentsCommand.ts @@ -53,6 +53,7 @@ export interface PutAndGetInlineDocumentsCommandOutput extends PutAndGetInlineDo * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * * @public */ export class PutAndGetInlineDocumentsCommand extends $Command diff --git a/private/aws-protocoltests-json/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-json/src/commands/PutWithContentEncodingCommand.ts index 1af5c070fa386..0ff2f4de230b2 100644 --- a/private/aws-protocoltests-json/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-json/src/commands/PutWithContentEncodingCommand.ts @@ -54,6 +54,7 @@ export interface PutWithContentEncodingCommandOutput extends __MetadataBearer {} * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * */ export class PutWithContentEncodingCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-json/src/commands/SimpleScalarPropertiesCommand.ts index f887bfc3f3952..0e841b04963bd 100644 --- a/private/aws-protocoltests-json/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-json/src/commands/SimpleScalarPropertiesCommand.ts @@ -56,6 +56,7 @@ export interface SimpleScalarPropertiesCommandOutput extends SimpleScalarPropert * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * */ export class SimpleScalarPropertiesCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-json/src/commands/SparseNullsOperationCommand.ts b/private/aws-protocoltests-json/src/commands/SparseNullsOperationCommand.ts index f715ab79f1b80..4879f13b15e8a 100644 --- a/private/aws-protocoltests-json/src/commands/SparseNullsOperationCommand.ts +++ b/private/aws-protocoltests-json/src/commands/SparseNullsOperationCommand.ts @@ -64,6 +64,7 @@ export interface SparseNullsOperationCommandOutput extends SparseNullsOperationI * @throws {@link JsonProtocolServiceException} *

Base exception class for all service exceptions from JsonProtocol service.

* + * */ export class SparseNullsOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-query/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-query/src/commands/DatetimeOffsetsCommand.ts index bc7257c83c613..d1708c1ade839 100644 --- a/private/aws-protocoltests-query/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/DatetimeOffsetsCommand.ts @@ -52,6 +52,7 @@ export interface DatetimeOffsetsCommandOutput extends DatetimeOffsetsOutput, __M * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * */ export class DatetimeOffsetsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-query/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-query/src/commands/EmptyInputAndEmptyOutputCommand.ts index 67d1dad05f902..3a90633c80358 100644 --- a/private/aws-protocoltests-query/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-query/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -52,6 +52,7 @@ export interface EmptyInputAndEmptyOutputCommandOutput extends EmptyInputAndEmpt * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class EmptyInputAndEmptyOutputCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-query/src/commands/EndpointOperationCommand.ts index 0c1ef7180c4ad..9c07260464a7b 100644 --- a/private/aws-protocoltests-query/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-query/src/commands/EndpointOperationCommand.ts @@ -49,6 +49,7 @@ export interface EndpointOperationCommandOutput extends __MetadataBearer {} * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * */ export class EndpointOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-query/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-query/src/commands/EndpointWithHostLabelOperationCommand.ts index b2889be2a165c..a94f055fc3038 100644 --- a/private/aws-protocoltests-query/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-query/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -55,6 +55,7 @@ export interface EndpointWithHostLabelOperationCommandOutput extends __MetadataB * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * */ export class EndpointWithHostLabelOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-query/src/commands/FlattenedXmlMapCommand.ts b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapCommand.ts index d205e2f708833..842dfeedb4803 100644 --- a/private/aws-protocoltests-query/src/commands/FlattenedXmlMapCommand.ts +++ b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapCommand.ts @@ -53,6 +53,7 @@ export interface FlattenedXmlMapCommandOutput extends FlattenedXmlMapOutput, __M * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class FlattenedXmlMapCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNameCommand.ts b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNameCommand.ts index f9de27ac4d8b1..2418698cdbaab 100644 --- a/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNameCommand.ts +++ b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNameCommand.ts @@ -53,6 +53,7 @@ export interface FlattenedXmlMapWithXmlNameCommandOutput extends FlattenedXmlMap * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class FlattenedXmlMapWithXmlNameCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts index 6f077cf43c2e5..c88d9c3f09879 100644 --- a/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts +++ b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts @@ -58,6 +58,7 @@ export interface FlattenedXmlMapWithXmlNamespaceCommandOutput * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class FlattenedXmlMapWithXmlNamespaceCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-query/src/commands/FractionalSecondsCommand.ts index caca8018b064c..d315d184952b0 100644 --- a/private/aws-protocoltests-query/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/FractionalSecondsCommand.ts @@ -52,6 +52,7 @@ export interface FractionalSecondsCommandOutput extends FractionalSecondsOutput, * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * */ export class FractionalSecondsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-query/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-query/src/commands/GreetingWithErrorsCommand.ts index c1401082d00aa..54ddce35ff97a 100644 --- a/private/aws-protocoltests-query/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/GreetingWithErrorsCommand.ts @@ -63,6 +63,7 @@ export interface GreetingWithErrorsCommandOutput extends GreetingWithErrorsOutpu * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class GreetingWithErrorsCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-query/src/commands/HostWithPathOperationCommand.ts index 347be835c088f..692055c9b36ea 100644 --- a/private/aws-protocoltests-query/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-query/src/commands/HostWithPathOperationCommand.ts @@ -49,6 +49,7 @@ export interface HostWithPathOperationCommandOutput extends __MetadataBearer {} * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * */ export class HostWithPathOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-query/src/commands/IgnoresWrappingXmlNameCommand.ts b/private/aws-protocoltests-query/src/commands/IgnoresWrappingXmlNameCommand.ts index 0195e93ded05c..d8d16eeb59657 100644 --- a/private/aws-protocoltests-query/src/commands/IgnoresWrappingXmlNameCommand.ts +++ b/private/aws-protocoltests-query/src/commands/IgnoresWrappingXmlNameCommand.ts @@ -54,6 +54,7 @@ export interface IgnoresWrappingXmlNameCommandOutput extends IgnoresWrappingXmlN * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class IgnoresWrappingXmlNameCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/NestedStructuresCommand.ts b/private/aws-protocoltests-query/src/commands/NestedStructuresCommand.ts index e76d0d18471da..406fbd8052c31 100644 --- a/private/aws-protocoltests-query/src/commands/NestedStructuresCommand.ts +++ b/private/aws-protocoltests-query/src/commands/NestedStructuresCommand.ts @@ -59,6 +59,7 @@ export interface NestedStructuresCommandOutput extends __MetadataBearer {} * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class NestedStructuresCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-query/src/commands/NoInputAndNoOutputCommand.ts index 2cd77524c936a..c0c9ff3f5c9de 100644 --- a/private/aws-protocoltests-query/src/commands/NoInputAndNoOutputCommand.ts +++ b/private/aws-protocoltests-query/src/commands/NoInputAndNoOutputCommand.ts @@ -51,6 +51,7 @@ export interface NoInputAndNoOutputCommandOutput extends __MetadataBearer {} * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class NoInputAndNoOutputCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-query/src/commands/NoInputAndOutputCommand.ts index c9a8aa61f0eec..baf2e95985f77 100644 --- a/private/aws-protocoltests-query/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-query/src/commands/NoInputAndOutputCommand.ts @@ -52,6 +52,7 @@ export interface NoInputAndOutputCommandOutput extends NoInputAndOutputOutput, _ * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class NoInputAndOutputCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-query/src/commands/PutWithContentEncodingCommand.ts index 9c8c21acaeecc..6ee510abea713 100644 --- a/private/aws-protocoltests-query/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-query/src/commands/PutWithContentEncodingCommand.ts @@ -54,6 +54,7 @@ export interface PutWithContentEncodingCommandOutput extends __MetadataBearer {} * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * */ export class PutWithContentEncodingCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-query/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-query/src/commands/QueryIdempotencyTokenAutoFillCommand.ts index 4be08dce20756..a1ced35c4ac82 100644 --- a/private/aws-protocoltests-query/src/commands/QueryIdempotencyTokenAutoFillCommand.ts +++ b/private/aws-protocoltests-query/src/commands/QueryIdempotencyTokenAutoFillCommand.ts @@ -54,6 +54,7 @@ export interface QueryIdempotencyTokenAutoFillCommandOutput extends __MetadataBe * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class QueryIdempotencyTokenAutoFillCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/QueryListsCommand.ts b/private/aws-protocoltests-query/src/commands/QueryListsCommand.ts index 4529db3216a21..eba3e3ed240f2 100644 --- a/private/aws-protocoltests-query/src/commands/QueryListsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/QueryListsCommand.ts @@ -72,6 +72,7 @@ export interface QueryListsCommandOutput extends __MetadataBearer {} * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class QueryListsCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/QueryMapsCommand.ts b/private/aws-protocoltests-query/src/commands/QueryMapsCommand.ts index 252d10d683265..67335a5fff15b 100644 --- a/private/aws-protocoltests-query/src/commands/QueryMapsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/QueryMapsCommand.ts @@ -80,6 +80,7 @@ export interface QueryMapsCommandOutput extends __MetadataBearer {} * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class QueryMapsCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/QueryTimestampsCommand.ts b/private/aws-protocoltests-query/src/commands/QueryTimestampsCommand.ts index 80c67428949cd..81e2438b7c823 100644 --- a/private/aws-protocoltests-query/src/commands/QueryTimestampsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/QueryTimestampsCommand.ts @@ -57,6 +57,7 @@ export interface QueryTimestampsCommandOutput extends __MetadataBearer {} * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class QueryTimestampsCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/RecursiveXmlShapesCommand.ts b/private/aws-protocoltests-query/src/commands/RecursiveXmlShapesCommand.ts index 5d990f118bd04..a4c180c79d6ba 100644 --- a/private/aws-protocoltests-query/src/commands/RecursiveXmlShapesCommand.ts +++ b/private/aws-protocoltests-query/src/commands/RecursiveXmlShapesCommand.ts @@ -63,6 +63,7 @@ export interface RecursiveXmlShapesCommandOutput extends RecursiveXmlShapesOutpu * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class RecursiveXmlShapesCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/SimpleInputParamsCommand.ts b/private/aws-protocoltests-query/src/commands/SimpleInputParamsCommand.ts index 10c6ed6987609..f097bf6740f3c 100644 --- a/private/aws-protocoltests-query/src/commands/SimpleInputParamsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/SimpleInputParamsCommand.ts @@ -59,6 +59,7 @@ export interface SimpleInputParamsCommandOutput extends __MetadataBearer {} * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class SimpleInputParamsCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/SimpleScalarXmlPropertiesCommand.ts b/private/aws-protocoltests-query/src/commands/SimpleScalarXmlPropertiesCommand.ts index 6491ccaa4c212..a0e04b6220abd 100644 --- a/private/aws-protocoltests-query/src/commands/SimpleScalarXmlPropertiesCommand.ts +++ b/private/aws-protocoltests-query/src/commands/SimpleScalarXmlPropertiesCommand.ts @@ -61,6 +61,7 @@ export interface SimpleScalarXmlPropertiesCommandOutput extends SimpleScalarXmlP * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * */ export class SimpleScalarXmlPropertiesCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-query/src/commands/XmlBlobsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlBlobsCommand.ts index 8720ebfa13e47..44d3c90750d25 100644 --- a/private/aws-protocoltests-query/src/commands/XmlBlobsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlBlobsCommand.ts @@ -51,6 +51,7 @@ export interface XmlBlobsCommandOutput extends XmlBlobsOutput, __MetadataBearer * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class XmlBlobsCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/XmlEmptyBlobsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlEmptyBlobsCommand.ts index b76b0bb464074..c64974fc1f2e2 100644 --- a/private/aws-protocoltests-query/src/commands/XmlEmptyBlobsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlEmptyBlobsCommand.ts @@ -52,6 +52,7 @@ export interface XmlEmptyBlobsCommandOutput extends XmlBlobsOutput, __MetadataBe * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * */ export class XmlEmptyBlobsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-query/src/commands/XmlEmptyListsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlEmptyListsCommand.ts index a318f9423d2ac..60abb7863150c 100644 --- a/private/aws-protocoltests-query/src/commands/XmlEmptyListsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlEmptyListsCommand.ts @@ -98,6 +98,7 @@ export interface XmlEmptyListsCommandOutput extends XmlListsOutput, __MetadataBe * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * */ export class XmlEmptyListsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-query/src/commands/XmlEmptyMapsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlEmptyMapsCommand.ts index 16aaf414a2877..c9089e7c09eeb 100644 --- a/private/aws-protocoltests-query/src/commands/XmlEmptyMapsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlEmptyMapsCommand.ts @@ -56,6 +56,7 @@ export interface XmlEmptyMapsCommandOutput extends XmlMapsOutput, __MetadataBear * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * */ export class XmlEmptyMapsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-query/src/commands/XmlEnumsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlEnumsCommand.ts index 5367c1f9e3135..567d38b7879dd 100644 --- a/private/aws-protocoltests-query/src/commands/XmlEnumsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlEnumsCommand.ts @@ -62,6 +62,7 @@ export interface XmlEnumsCommandOutput extends XmlEnumsOutput, __MetadataBearer * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class XmlEnumsCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/XmlIntEnumsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlIntEnumsCommand.ts index 4ac0f468ebc5e..c7b8c628436a5 100644 --- a/private/aws-protocoltests-query/src/commands/XmlIntEnumsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlIntEnumsCommand.ts @@ -62,6 +62,7 @@ export interface XmlIntEnumsCommandOutput extends XmlIntEnumsOutput, __MetadataB * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class XmlIntEnumsCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/XmlListsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlListsCommand.ts index 433ac66c3c4a6..202d0d3eee859 100644 --- a/private/aws-protocoltests-query/src/commands/XmlListsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlListsCommand.ts @@ -106,6 +106,7 @@ export interface XmlListsCommandOutput extends XmlListsOutput, __MetadataBearer * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class XmlListsCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/XmlMapsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlMapsCommand.ts index 7fb4b33f4d75c..2589f80ba1c50 100644 --- a/private/aws-protocoltests-query/src/commands/XmlMapsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlMapsCommand.ts @@ -55,6 +55,7 @@ export interface XmlMapsCommandOutput extends XmlMapsOutput, __MetadataBearer {} * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class XmlMapsCommand extends $Command diff --git a/private/aws-protocoltests-query/src/commands/XmlMapsXmlNameCommand.ts b/private/aws-protocoltests-query/src/commands/XmlMapsXmlNameCommand.ts index 612d46ee91d56..b69384b0f033b 100644 --- a/private/aws-protocoltests-query/src/commands/XmlMapsXmlNameCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlMapsXmlNameCommand.ts @@ -56,6 +56,7 @@ export interface XmlMapsXmlNameCommandOutput extends XmlMapsXmlNameOutput, __Met * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * */ export class XmlMapsXmlNameCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-query/src/commands/XmlNamespacesCommand.ts b/private/aws-protocoltests-query/src/commands/XmlNamespacesCommand.ts index b0c6c1dc83899..d77757cf63cbe 100644 --- a/private/aws-protocoltests-query/src/commands/XmlNamespacesCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlNamespacesCommand.ts @@ -57,6 +57,7 @@ export interface XmlNamespacesCommandOutput extends XmlNamespacesOutput, __Metad * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * */ export class XmlNamespacesCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-query/src/commands/XmlTimestampsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlTimestampsCommand.ts index 03cbc3e50384b..c258fc3ee9ef0 100644 --- a/private/aws-protocoltests-query/src/commands/XmlTimestampsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlTimestampsCommand.ts @@ -59,6 +59,7 @@ export interface XmlTimestampsCommandOutput extends XmlTimestampsOutput, __Metad * @throws {@link QueryProtocolServiceException} *

Base exception class for all service exceptions from QueryProtocol service.

* + * * @public */ export class XmlTimestampsCommand extends $Command diff --git a/private/aws-protocoltests-restjson-apigateway/src/commands/GetRestApisCommand.ts b/private/aws-protocoltests-restjson-apigateway/src/commands/GetRestApisCommand.ts index 904c2d1efb6e2..03b7e5478b803 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/commands/GetRestApisCommand.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/commands/GetRestApisCommand.ts @@ -91,6 +91,7 @@ export interface GetRestApisCommandOutput extends RestApis, __MetadataBearer {} * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* + * */ export class GetRestApisCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson-glacier/src/commands/UploadArchiveCommand.ts b/private/aws-protocoltests-restjson-glacier/src/commands/UploadArchiveCommand.ts index cefc9cfdffa77..e09be7669df09 100644 --- a/private/aws-protocoltests-restjson-glacier/src/commands/UploadArchiveCommand.ts +++ b/private/aws-protocoltests-restjson-glacier/src/commands/UploadArchiveCommand.ts @@ -73,6 +73,7 @@ export interface UploadArchiveCommandOutput extends ArchiveCreationOutput, __Met * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* + * */ export class UploadArchiveCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson-glacier/src/commands/UploadMultipartPartCommand.ts b/private/aws-protocoltests-restjson-glacier/src/commands/UploadMultipartPartCommand.ts index 01c507b0ab3a2..8d2d76a0ee7f4 100644 --- a/private/aws-protocoltests-restjson-glacier/src/commands/UploadMultipartPartCommand.ts +++ b/private/aws-protocoltests-restjson-glacier/src/commands/UploadMultipartPartCommand.ts @@ -76,6 +76,7 @@ export interface UploadMultipartPartCommandOutput extends UploadMultipartPartOut * @throws {@link GlacierServiceException} *

Base exception class for all service exceptions from Glacier service.

* + * */ export class UploadMultipartPartCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/AllQueryStringTypesCommand.ts b/private/aws-protocoltests-restjson/src/commands/AllQueryStringTypesCommand.ts index 96dcb553d1eb3..3465be24c4a8a 100644 --- a/private/aws-protocoltests-restjson/src/commands/AllQueryStringTypesCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/AllQueryStringTypesCommand.ts @@ -93,6 +93,7 @@ export interface AllQueryStringTypesCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class AllQueryStringTypesCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/ConstantAndVariableQueryStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/ConstantAndVariableQueryStringCommand.ts index 1c201c8003e8a..41931747c9ff6 100644 --- a/private/aws-protocoltests-restjson/src/commands/ConstantAndVariableQueryStringCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/ConstantAndVariableQueryStringCommand.ts @@ -57,6 +57,7 @@ export interface ConstantAndVariableQueryStringCommandOutput extends __MetadataB * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class ConstantAndVariableQueryStringCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/ConstantQueryStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/ConstantQueryStringCommand.ts index ef015eb3a8326..b769d5f7c8e00 100644 --- a/private/aws-protocoltests-restjson/src/commands/ConstantQueryStringCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/ConstantQueryStringCommand.ts @@ -54,6 +54,7 @@ export interface ConstantQueryStringCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class ConstantQueryStringCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/ContentTypeParametersCommand.ts b/private/aws-protocoltests-restjson/src/commands/ContentTypeParametersCommand.ts index 4051c19448653..b82cff314d569 100644 --- a/private/aws-protocoltests-restjson/src/commands/ContentTypeParametersCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/ContentTypeParametersCommand.ts @@ -52,6 +52,7 @@ export interface ContentTypeParametersCommandOutput extends ContentTypeParameter * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class ContentTypeParametersCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-restjson/src/commands/DatetimeOffsetsCommand.ts index 6ac709c29cf52..081a8563199ad 100644 --- a/private/aws-protocoltests-restjson/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/DatetimeOffsetsCommand.ts @@ -52,6 +52,7 @@ export interface DatetimeOffsetsCommandOutput extends DatetimeOffsetsOutput, __M * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class DatetimeOffsetsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsMapValueCommand.ts b/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsMapValueCommand.ts index 54871d2efdbee..8ce9634d5575a 100644 --- a/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsMapValueCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsMapValueCommand.ts @@ -57,6 +57,7 @@ export interface DocumentTypeAsMapValueCommandOutput extends DocumentTypeAsMapVa * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class DocumentTypeAsMapValueCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsPayloadCommand.ts index de26b80bc16f1..544bef4f0448b 100644 --- a/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsPayloadCommand.ts @@ -53,6 +53,7 @@ export interface DocumentTypeAsPayloadCommandOutput extends DocumentTypeAsPayloa * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class DocumentTypeAsPayloadCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/DocumentTypeCommand.ts b/private/aws-protocoltests-restjson/src/commands/DocumentTypeCommand.ts index 8ff13e346eed1..9922421981870 100644 --- a/private/aws-protocoltests-restjson/src/commands/DocumentTypeCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/DocumentTypeCommand.ts @@ -55,6 +55,7 @@ export interface DocumentTypeCommandOutput extends DocumentTypeInputOutput, __Me * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class DocumentTypeCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-restjson/src/commands/EmptyInputAndEmptyOutputCommand.ts index d3d78f514ffc6..c0e5489ab3712 100644 --- a/private/aws-protocoltests-restjson/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -52,6 +52,7 @@ export interface EmptyInputAndEmptyOutputCommandOutput extends EmptyInputAndEmpt * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class EmptyInputAndEmptyOutputCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-restjson/src/commands/EndpointOperationCommand.ts index 0780fe453fc3b..73f14d782439f 100644 --- a/private/aws-protocoltests-restjson/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/EndpointOperationCommand.ts @@ -49,6 +49,7 @@ export interface EndpointOperationCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class EndpointOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-restjson/src/commands/EndpointWithHostLabelOperationCommand.ts index 65b296aa9a9bf..b52d7dafe0a59 100644 --- a/private/aws-protocoltests-restjson/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -55,6 +55,7 @@ export interface EndpointWithHostLabelOperationCommandOutput extends __MetadataB * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class EndpointWithHostLabelOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-restjson/src/commands/FractionalSecondsCommand.ts index 1edf9dc61066c..1a18be6af8391 100644 --- a/private/aws-protocoltests-restjson/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/FractionalSecondsCommand.ts @@ -52,6 +52,7 @@ export interface FractionalSecondsCommandOutput extends FractionalSecondsOutput, * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class FractionalSecondsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-restjson/src/commands/GreetingWithErrorsCommand.ts index b2f9989ed9be8..508e826742004 100644 --- a/private/aws-protocoltests-restjson/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/GreetingWithErrorsCommand.ts @@ -70,6 +70,7 @@ export interface GreetingWithErrorsCommandOutput extends GreetingWithErrorsOutpu * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class GreetingWithErrorsCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-restjson/src/commands/HostWithPathOperationCommand.ts index bf8bf728ea7dc..3765ac84a9e51 100644 --- a/private/aws-protocoltests-restjson/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HostWithPathOperationCommand.ts @@ -49,6 +49,7 @@ export interface HostWithPathOperationCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class HostWithPathOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/HttpChecksumRequiredCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpChecksumRequiredCommand.ts index 1c1a2a020476e..dc01ef00e473d 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpChecksumRequiredCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpChecksumRequiredCommand.ts @@ -54,6 +54,7 @@ export interface HttpChecksumRequiredCommandOutput extends HttpChecksumRequiredI * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class HttpChecksumRequiredCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/HttpEnumPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpEnumPayloadCommand.ts index cca6f2ab884f0..7ce345a7daee0 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpEnumPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpEnumPayloadCommand.ts @@ -54,6 +54,7 @@ export interface HttpEnumPayloadCommandOutput extends EnumPayloadInput, __Metada * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class HttpEnumPayloadCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsCommand.ts index d5349f8acecb8..16731430f3a29 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsCommand.ts @@ -73,6 +73,7 @@ export interface HttpPayloadTraitsCommandOutput extends HttpPayloadTraitsCommand * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class HttpPayloadTraitsCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts index c617e7409139a..329e415680ca4 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts @@ -79,6 +79,7 @@ export interface HttpPayloadTraitsWithMediaTypeCommandOutput * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class HttpPayloadTraitsWithMediaTypeCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithStructureCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithStructureCommand.ts index 873700c12bd14..076993adea30b 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithStructureCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithStructureCommand.ts @@ -62,6 +62,7 @@ export interface HttpPayloadWithStructureCommandOutput extends HttpPayloadWithSt * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class HttpPayloadWithStructureCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithUnionCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithUnionCommand.ts index 5c1fb7209551b..9d49ede7d345b 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithUnionCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithUnionCommand.ts @@ -57,6 +57,7 @@ export interface HttpPayloadWithUnionCommandOutput extends HttpPayloadWithUnionI * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class HttpPayloadWithUnionCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersCommand.ts index c443856b99a10..616c3b409a44c 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersCommand.ts @@ -59,6 +59,7 @@ export interface HttpPrefixHeadersCommandOutput extends HttpPrefixHeadersOutput, * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class HttpPrefixHeadersCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersInResponseCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersInResponseCommand.ts index 476fa89a35b28..f02ac416984f9 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersInResponseCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersInResponseCommand.ts @@ -56,6 +56,7 @@ export interface HttpPrefixHeadersInResponseCommandOutput extends HttpPrefixHead * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class HttpPrefixHeadersInResponseCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithFloatLabelsCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithFloatLabelsCommand.ts index 33a9c0e09374b..321ae9cf338af 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithFloatLabelsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithFloatLabelsCommand.ts @@ -53,6 +53,7 @@ export interface HttpRequestWithFloatLabelsCommandOutput extends __MetadataBeare * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class HttpRequestWithFloatLabelsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts index fd2c34e41ec5b..10e9da77f4464 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts @@ -56,6 +56,7 @@ export interface HttpRequestWithGreedyLabelInPathCommandOutput extends __Metadat * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class HttpRequestWithGreedyLabelInPathCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts index 86271987de052..37372a246fec8 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts @@ -62,6 +62,7 @@ export interface HttpRequestWithLabelsAndTimestampFormatCommandOutput extends __ * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class HttpRequestWithLabelsAndTimestampFormatCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsCommand.ts index 4e57ce1b6db18..08bbb1b1a96e6 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsCommand.ts @@ -59,6 +59,7 @@ export interface HttpRequestWithLabelsCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class HttpRequestWithLabelsCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithRegexLiteralCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithRegexLiteralCommand.ts index 7e658206ff10f..1f697ea6365f3 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithRegexLiteralCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithRegexLiteralCommand.ts @@ -55,6 +55,7 @@ export interface HttpRequestWithRegexLiteralCommandOutput extends __MetadataBear * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class HttpRequestWithRegexLiteralCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/HttpResponseCodeCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpResponseCodeCommand.ts index cf52e5cfd92bd..db88e8968409d 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpResponseCodeCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpResponseCodeCommand.ts @@ -52,6 +52,7 @@ export interface HttpResponseCodeCommandOutput extends HttpResponseCodeOutput, _ * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class HttpResponseCodeCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/HttpStringPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpStringPayloadCommand.ts index b14d206c20eda..1e85af7d25419 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpStringPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpStringPayloadCommand.ts @@ -54,6 +54,7 @@ export interface HttpStringPayloadCommandOutput extends StringPayloadInput, __Me * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class HttpStringPayloadCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/IgnoreQueryParamsInResponseCommand.ts b/private/aws-protocoltests-restjson/src/commands/IgnoreQueryParamsInResponseCommand.ts index 676238b444c6f..1b5399f2ea7f6 100644 --- a/private/aws-protocoltests-restjson/src/commands/IgnoreQueryParamsInResponseCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/IgnoreQueryParamsInResponseCommand.ts @@ -56,6 +56,7 @@ export interface IgnoreQueryParamsInResponseCommandOutput extends IgnoreQueryPar * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class IgnoreQueryParamsInResponseCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/InputAndOutputWithHeadersCommand.ts b/private/aws-protocoltests-restjson/src/commands/InputAndOutputWithHeadersCommand.ts index 3f3c944c6e4e1..6526d13439495 100644 --- a/private/aws-protocoltests-restjson/src/commands/InputAndOutputWithHeadersCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/InputAndOutputWithHeadersCommand.ts @@ -116,6 +116,7 @@ export interface InputAndOutputWithHeadersCommandOutput extends InputAndOutputWi * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class InputAndOutputWithHeadersCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/JsonBlobsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonBlobsCommand.ts index c1896f62179c0..13ca2acadeab7 100644 --- a/private/aws-protocoltests-restjson/src/commands/JsonBlobsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/JsonBlobsCommand.ts @@ -53,6 +53,7 @@ export interface JsonBlobsCommandOutput extends JsonBlobsInputOutput, __Metadata * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class JsonBlobsCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/JsonEnumsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonEnumsCommand.ts index c51d57166fb6a..d8c829f7800c7 100644 --- a/private/aws-protocoltests-restjson/src/commands/JsonEnumsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/JsonEnumsCommand.ts @@ -75,6 +75,7 @@ export interface JsonEnumsCommandOutput extends JsonEnumsInputOutput, __Metadata * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class JsonEnumsCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/JsonIntEnumsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonIntEnumsCommand.ts index 48cffefb1f939..0df9a655dc91b 100644 --- a/private/aws-protocoltests-restjson/src/commands/JsonIntEnumsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/JsonIntEnumsCommand.ts @@ -75,6 +75,7 @@ export interface JsonIntEnumsCommandOutput extends JsonIntEnumsInputOutput, __Me * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class JsonIntEnumsCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/JsonListsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonListsCommand.ts index 588cf663629ea..e2e52c0502878 100644 --- a/private/aws-protocoltests-restjson/src/commands/JsonListsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/JsonListsCommand.ts @@ -121,6 +121,7 @@ export interface JsonListsCommandOutput extends JsonListsInputOutput, __Metadata * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class JsonListsCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/JsonMapsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonMapsCommand.ts index dcac58cdb38ff..7aa617b4ab0f2 100644 --- a/private/aws-protocoltests-restjson/src/commands/JsonMapsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/JsonMapsCommand.ts @@ -89,6 +89,7 @@ export interface JsonMapsCommandOutput extends JsonMapsInputOutput, __MetadataBe * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class JsonMapsCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/JsonTimestampsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonTimestampsCommand.ts index 3f91afc11a823..40eb7721b8663 100644 --- a/private/aws-protocoltests-restjson/src/commands/JsonTimestampsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/JsonTimestampsCommand.ts @@ -67,6 +67,7 @@ export interface JsonTimestampsCommandOutput extends JsonTimestampsInputOutput, * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class JsonTimestampsCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/JsonUnionsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonUnionsCommand.ts index 034b093a10a2f..f4a8ece8e3234 100644 --- a/private/aws-protocoltests-restjson/src/commands/JsonUnionsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/JsonUnionsCommand.ts @@ -91,6 +91,7 @@ export interface JsonUnionsCommandOutput extends UnionInputOutput, __MetadataBea * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class JsonUnionsCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithBodyCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithBodyCommand.ts index 50063ad29a833..9e6aff1537b68 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithBodyCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithBodyCommand.ts @@ -52,6 +52,7 @@ export interface MalformedAcceptWithBodyCommandOutput extends GreetingStruct, __ * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedAcceptWithBodyCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithGenericStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithGenericStringCommand.ts index 59f20eca9a302..80728829fea81 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithGenericStringCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithGenericStringCommand.ts @@ -57,6 +57,7 @@ export interface MalformedAcceptWithGenericStringCommandOutput * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedAcceptWithGenericStringCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithPayloadCommand.ts index 45ab510f1d1fd..5d611bcb1d03c 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithPayloadCommand.ts @@ -62,6 +62,7 @@ export interface MalformedAcceptWithPayloadCommandOutput * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedAcceptWithPayloadCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedBlobCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedBlobCommand.ts index 46eaf7d1b801d..f2eac2fb14103 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedBlobCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedBlobCommand.ts @@ -52,6 +52,7 @@ export interface MalformedBlobCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedBlobCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedBooleanCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedBooleanCommand.ts index 822d4a3d370be..5b0609b29e752 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedBooleanCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedBooleanCommand.ts @@ -55,6 +55,7 @@ export interface MalformedBooleanCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedBooleanCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedByteCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedByteCommand.ts index 81c8514622bf6..b365d52e91ae4 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedByteCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedByteCommand.ts @@ -55,6 +55,7 @@ export interface MalformedByteCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedByteCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithBodyCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithBodyCommand.ts index 261a969e2ab4d..1ad328e08f88b 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithBodyCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithBodyCommand.ts @@ -55,6 +55,7 @@ export interface MalformedContentTypeWithBodyCommandOutput extends __MetadataBea * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedContentTypeWithBodyCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithGenericStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithGenericStringCommand.ts index 53ff24a6f6b98..454e5b178f1b2 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithGenericStringCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithGenericStringCommand.ts @@ -55,6 +55,7 @@ export interface MalformedContentTypeWithGenericStringCommandOutput extends __Me * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedContentTypeWithGenericStringCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithPayloadCommand.ts index a3ccc767199e7..698af1097b216 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithPayloadCommand.ts @@ -62,6 +62,7 @@ export interface MalformedContentTypeWithPayloadCommandOutput extends __Metadata * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedContentTypeWithPayloadCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyCommand.ts index 5918e2311b814..66c168a74b8a9 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyCommand.ts @@ -52,6 +52,7 @@ export interface MalformedContentTypeWithoutBodyCommandOutput extends __Metadata * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedContentTypeWithoutBodyCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyEmptyInputCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyEmptyInputCommand.ts index 67920f245a1dc..9a9434e4e9f7b 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyEmptyInputCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyEmptyInputCommand.ts @@ -56,6 +56,7 @@ export interface MalformedContentTypeWithoutBodyEmptyInputCommandOutput extends * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedContentTypeWithoutBodyEmptyInputCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedDoubleCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedDoubleCommand.ts index 2fa1ed331697a..4e2dac6f27dc2 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedDoubleCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedDoubleCommand.ts @@ -55,6 +55,7 @@ export interface MalformedDoubleCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedDoubleCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedFloatCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedFloatCommand.ts index e0a23f99c75f9..228c7f33d7bf8 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedFloatCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedFloatCommand.ts @@ -55,6 +55,7 @@ export interface MalformedFloatCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedFloatCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedIntegerCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedIntegerCommand.ts index 184c8a03100af..565d9cca615a8 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedIntegerCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedIntegerCommand.ts @@ -55,6 +55,7 @@ export interface MalformedIntegerCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedIntegerCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedListCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedListCommand.ts index ba117e02b60e6..6a569e6f61acb 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedListCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedListCommand.ts @@ -54,6 +54,7 @@ export interface MalformedListCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedListCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedLongCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedLongCommand.ts index a84165307a3e2..036bd3bb9efad 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedLongCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedLongCommand.ts @@ -55,6 +55,7 @@ export interface MalformedLongCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedLongCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedMapCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedMapCommand.ts index 11ea9cde1ca8e..df922240eac78 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedMapCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedMapCommand.ts @@ -54,6 +54,7 @@ export interface MalformedMapCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedMapCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedRequestBodyCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedRequestBodyCommand.ts index 777d1457546d5..50b2fab3e3e62 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedRequestBodyCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedRequestBodyCommand.ts @@ -53,6 +53,7 @@ export interface MalformedRequestBodyCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedRequestBodyCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedShortCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedShortCommand.ts index 7cbd073a28a9e..6ee67c2b59b6c 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedShortCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedShortCommand.ts @@ -55,6 +55,7 @@ export interface MalformedShortCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedShortCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedStringCommand.ts index 812c220276c5e..54bcdb7fc6ce3 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedStringCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedStringCommand.ts @@ -52,6 +52,7 @@ export interface MalformedStringCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedStringCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDateTimeCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDateTimeCommand.ts index 62e6412c3c809..288c38368d43f 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDateTimeCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDateTimeCommand.ts @@ -55,6 +55,7 @@ export interface MalformedTimestampBodyDateTimeCommandOutput extends __MetadataB * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedTimestampBodyDateTimeCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDefaultCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDefaultCommand.ts index a77eb310397fa..da6b2f486343a 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDefaultCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDefaultCommand.ts @@ -55,6 +55,7 @@ export interface MalformedTimestampBodyDefaultCommandOutput extends __MetadataBe * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedTimestampBodyDefaultCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyHttpDateCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyHttpDateCommand.ts index 84cc7ca2f0f9c..251dea1cfb890 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyHttpDateCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyHttpDateCommand.ts @@ -55,6 +55,7 @@ export interface MalformedTimestampBodyHttpDateCommandOutput extends __MetadataB * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedTimestampBodyHttpDateCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDateTimeCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDateTimeCommand.ts index 4f025d8a8b60d..5831e670237c0 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDateTimeCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDateTimeCommand.ts @@ -55,6 +55,7 @@ export interface MalformedTimestampHeaderDateTimeCommandOutput extends __Metadat * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedTimestampHeaderDateTimeCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDefaultCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDefaultCommand.ts index 0926f8a4f44c9..1089ea713e9e9 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDefaultCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDefaultCommand.ts @@ -55,6 +55,7 @@ export interface MalformedTimestampHeaderDefaultCommandOutput extends __Metadata * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedTimestampHeaderDefaultCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderEpochCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderEpochCommand.ts index dee2a9bf61ea3..6b98ca2fa6292 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderEpochCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderEpochCommand.ts @@ -55,6 +55,7 @@ export interface MalformedTimestampHeaderEpochCommandOutput extends __MetadataBe * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedTimestampHeaderEpochCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathDefaultCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathDefaultCommand.ts index 33b64357dda1a..cddac5cdd3b05 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathDefaultCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathDefaultCommand.ts @@ -55,6 +55,7 @@ export interface MalformedTimestampPathDefaultCommandOutput extends __MetadataBe * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedTimestampPathDefaultCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathEpochCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathEpochCommand.ts index 513c5ee07f972..7f34e96244c8b 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathEpochCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathEpochCommand.ts @@ -55,6 +55,7 @@ export interface MalformedTimestampPathEpochCommandOutput extends __MetadataBear * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedTimestampPathEpochCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathHttpDateCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathHttpDateCommand.ts index 73571394dac97..ef87de9643850 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathHttpDateCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathHttpDateCommand.ts @@ -55,6 +55,7 @@ export interface MalformedTimestampPathHttpDateCommandOutput extends __MetadataB * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedTimestampPathHttpDateCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryDefaultCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryDefaultCommand.ts index 941ee77a6e9cc..1debad44e4d38 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryDefaultCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryDefaultCommand.ts @@ -55,6 +55,7 @@ export interface MalformedTimestampQueryDefaultCommandOutput extends __MetadataB * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedTimestampQueryDefaultCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryEpochCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryEpochCommand.ts index dc6b0722e1ca4..8a0cc3c614543 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryEpochCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryEpochCommand.ts @@ -55,6 +55,7 @@ export interface MalformedTimestampQueryEpochCommandOutput extends __MetadataBea * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedTimestampQueryEpochCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryHttpDateCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryHttpDateCommand.ts index 3a45bb9326b87..3c9c1737e02c8 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryHttpDateCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryHttpDateCommand.ts @@ -55,6 +55,7 @@ export interface MalformedTimestampQueryHttpDateCommandOutput extends __Metadata * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedTimestampQueryHttpDateCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedUnionCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedUnionCommand.ts index dfaa81f739f76..9ddbf694fb17a 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedUnionCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedUnionCommand.ts @@ -55,6 +55,7 @@ export interface MalformedUnionCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class MalformedUnionCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/MediaTypeHeaderCommand.ts b/private/aws-protocoltests-restjson/src/commands/MediaTypeHeaderCommand.ts index 8024ba85cca5e..cf4ffca099678 100644 --- a/private/aws-protocoltests-restjson/src/commands/MediaTypeHeaderCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MediaTypeHeaderCommand.ts @@ -53,6 +53,7 @@ export interface MediaTypeHeaderCommandOutput extends MediaTypeHeaderOutput, __M * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class MediaTypeHeaderCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-restjson/src/commands/NoInputAndNoOutputCommand.ts index 9cb98843d743f..3a626ba73a7b7 100644 --- a/private/aws-protocoltests-restjson/src/commands/NoInputAndNoOutputCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/NoInputAndNoOutputCommand.ts @@ -50,6 +50,7 @@ export interface NoInputAndNoOutputCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class NoInputAndNoOutputCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-restjson/src/commands/NoInputAndOutputCommand.ts index 4fda2ad8573ba..4d6942bebd9a3 100644 --- a/private/aws-protocoltests-restjson/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/NoInputAndOutputCommand.ts @@ -52,6 +52,7 @@ export interface NoInputAndOutputCommandOutput extends NoInputAndOutputOutput, _ * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class NoInputAndOutputCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersClientCommand.ts b/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersClientCommand.ts index 7fdb1a6e1ab8d..52edb600dc596 100644 --- a/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersClientCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersClientCommand.ts @@ -61,6 +61,7 @@ export interface NullAndEmptyHeadersClientCommandOutput extends NullAndEmptyHead * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class NullAndEmptyHeadersClientCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersServerCommand.ts b/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersServerCommand.ts index f21bbc1e69724..66133e710c6e6 100644 --- a/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersServerCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersServerCommand.ts @@ -61,6 +61,7 @@ export interface NullAndEmptyHeadersServerCommandOutput extends NullAndEmptyHead * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class NullAndEmptyHeadersServerCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/OmitsNullSerializesEmptyStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/OmitsNullSerializesEmptyStringCommand.ts index 9d6fa62770b61..d2fd896ee12cb 100644 --- a/private/aws-protocoltests-restjson/src/commands/OmitsNullSerializesEmptyStringCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/OmitsNullSerializesEmptyStringCommand.ts @@ -55,6 +55,7 @@ export interface OmitsNullSerializesEmptyStringCommandOutput extends __MetadataB * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class OmitsNullSerializesEmptyStringCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/OmitsSerializingEmptyListsCommand.ts b/private/aws-protocoltests-restjson/src/commands/OmitsSerializingEmptyListsCommand.ts index e4bfb9e780131..9653f47d014c1 100644 --- a/private/aws-protocoltests-restjson/src/commands/OmitsSerializingEmptyListsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/OmitsSerializingEmptyListsCommand.ts @@ -73,6 +73,7 @@ export interface OmitsSerializingEmptyListsCommandOutput extends __MetadataBeare * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class OmitsSerializingEmptyListsCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/OperationWithDefaultsCommand.ts b/private/aws-protocoltests-restjson/src/commands/OperationWithDefaultsCommand.ts index d1d3e0c3f3473..99b7c2b67ffc0 100644 --- a/private/aws-protocoltests-restjson/src/commands/OperationWithDefaultsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/OperationWithDefaultsCommand.ts @@ -123,6 +123,7 @@ export interface OperationWithDefaultsCommandOutput extends OperationWithDefault * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class OperationWithDefaultsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/OperationWithNestedStructureCommand.ts b/private/aws-protocoltests-restjson/src/commands/OperationWithNestedStructureCommand.ts index fab96f93008ad..e5b0a38fc617c 100644 --- a/private/aws-protocoltests-restjson/src/commands/OperationWithNestedStructureCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/OperationWithNestedStructureCommand.ts @@ -109,6 +109,7 @@ export interface OperationWithNestedStructureCommandOutput * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class OperationWithNestedStructureCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/PostPlayerActionCommand.ts b/private/aws-protocoltests-restjson/src/commands/PostPlayerActionCommand.ts index 618421b68e656..0800f976d4555 100644 --- a/private/aws-protocoltests-restjson/src/commands/PostPlayerActionCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/PostPlayerActionCommand.ts @@ -57,6 +57,7 @@ export interface PostPlayerActionCommandOutput extends PostPlayerActionOutput, _ * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class PostPlayerActionCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/PostUnionWithJsonNameCommand.ts b/private/aws-protocoltests-restjson/src/commands/PostUnionWithJsonNameCommand.ts index 696c420d48725..f58d8b37d32df 100644 --- a/private/aws-protocoltests-restjson/src/commands/PostUnionWithJsonNameCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/PostUnionWithJsonNameCommand.ts @@ -61,6 +61,7 @@ export interface PostUnionWithJsonNameCommandOutput extends PostUnionWithJsonNam * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class PostUnionWithJsonNameCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-restjson/src/commands/PutWithContentEncodingCommand.ts index 59356b1a49251..f127121c80da1 100644 --- a/private/aws-protocoltests-restjson/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/PutWithContentEncodingCommand.ts @@ -54,6 +54,7 @@ export interface PutWithContentEncodingCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class PutWithContentEncodingCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-restjson/src/commands/QueryIdempotencyTokenAutoFillCommand.ts index c6c54db0812e3..bd56e90c6783c 100644 --- a/private/aws-protocoltests-restjson/src/commands/QueryIdempotencyTokenAutoFillCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/QueryIdempotencyTokenAutoFillCommand.ts @@ -54,6 +54,7 @@ export interface QueryIdempotencyTokenAutoFillCommandOutput extends __MetadataBe * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class QueryIdempotencyTokenAutoFillCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/QueryParamsAsStringListMapCommand.ts b/private/aws-protocoltests-restjson/src/commands/QueryParamsAsStringListMapCommand.ts index e0015eaa4de8c..fcc7128c6e5c0 100644 --- a/private/aws-protocoltests-restjson/src/commands/QueryParamsAsStringListMapCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/QueryParamsAsStringListMapCommand.ts @@ -57,6 +57,7 @@ export interface QueryParamsAsStringListMapCommandOutput extends __MetadataBeare * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class QueryParamsAsStringListMapCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/QueryPrecedenceCommand.ts b/private/aws-protocoltests-restjson/src/commands/QueryPrecedenceCommand.ts index e90b1017faba5..4256ba1cc0a05 100644 --- a/private/aws-protocoltests-restjson/src/commands/QueryPrecedenceCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/QueryPrecedenceCommand.ts @@ -55,6 +55,7 @@ export interface QueryPrecedenceCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class QueryPrecedenceCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/RecursiveShapesCommand.ts b/private/aws-protocoltests-restjson/src/commands/RecursiveShapesCommand.ts index 34ab9827ba092..996862cf0ff66 100644 --- a/private/aws-protocoltests-restjson/src/commands/RecursiveShapesCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/RecursiveShapesCommand.ts @@ -77,6 +77,7 @@ export interface RecursiveShapesCommandOutput extends RecursiveShapesInputOutput * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class RecursiveShapesCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/ResponseCodeHttpFallbackCommand.ts b/private/aws-protocoltests-restjson/src/commands/ResponseCodeHttpFallbackCommand.ts index 925080305b7a7..e1aa7f9d06ef9 100644 --- a/private/aws-protocoltests-restjson/src/commands/ResponseCodeHttpFallbackCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/ResponseCodeHttpFallbackCommand.ts @@ -50,6 +50,7 @@ export interface ResponseCodeHttpFallbackCommandOutput extends ResponseCodeHttpF * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class ResponseCodeHttpFallbackCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/ResponseCodeRequiredCommand.ts b/private/aws-protocoltests-restjson/src/commands/ResponseCodeRequiredCommand.ts index 160d2770bfa90..4dc90bcc9494e 100644 --- a/private/aws-protocoltests-restjson/src/commands/ResponseCodeRequiredCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/ResponseCodeRequiredCommand.ts @@ -52,6 +52,7 @@ export interface ResponseCodeRequiredCommandOutput extends ResponseCodeRequiredO * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class ResponseCodeRequiredCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-restjson/src/commands/SimpleScalarPropertiesCommand.ts index 1732c49bbf4d7..78cbb61eaefb0 100644 --- a/private/aws-protocoltests-restjson/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/SimpleScalarPropertiesCommand.ts @@ -72,6 +72,7 @@ export interface SimpleScalarPropertiesCommandOutput extends SimpleScalarPropert * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class SimpleScalarPropertiesCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/SparseJsonListsCommand.ts b/private/aws-protocoltests-restjson/src/commands/SparseJsonListsCommand.ts index c574909d41d4b..431a21d33d6da 100644 --- a/private/aws-protocoltests-restjson/src/commands/SparseJsonListsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/SparseJsonListsCommand.ts @@ -64,6 +64,7 @@ export interface SparseJsonListsCommandOutput extends SparseJsonListsInputOutput * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * */ export class SparseJsonListsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restjson/src/commands/SparseJsonMapsCommand.ts b/private/aws-protocoltests-restjson/src/commands/SparseJsonMapsCommand.ts index cf6ed5623b294..52d85de2c0fe2 100644 --- a/private/aws-protocoltests-restjson/src/commands/SparseJsonMapsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/SparseJsonMapsCommand.ts @@ -89,6 +89,7 @@ export interface SparseJsonMapsCommandOutput extends SparseJsonMapsInputOutput, * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class SparseJsonMapsCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/StreamingTraitsCommand.ts b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsCommand.ts index 99dca3dcf82bc..62c25416a57b5 100644 --- a/private/aws-protocoltests-restjson/src/commands/StreamingTraitsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsCommand.ts @@ -51,6 +51,11 @@ export interface StreamingTraitsCommandOutput extends Omit", // see \@smithy/types -> StreamingBlobPayloadOutputTypes @@ -67,6 +72,7 @@ export interface StreamingTraitsCommandOutput extends OmitBase exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class StreamingTraitsCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/StreamingTraitsRequireLengthCommand.ts b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsRequireLengthCommand.ts index 8fbc56785076c..ef7d6cd3ebf66 100644 --- a/private/aws-protocoltests-restjson/src/commands/StreamingTraitsRequireLengthCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsRequireLengthCommand.ts @@ -65,6 +65,7 @@ export interface StreamingTraitsRequireLengthCommandOutput extends __MetadataBea * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class StreamingTraitsRequireLengthCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/StreamingTraitsWithMediaTypeCommand.ts b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsWithMediaTypeCommand.ts index 3ec3ac0b68832..301c4f99a8e05 100644 --- a/private/aws-protocoltests-restjson/src/commands/StreamingTraitsWithMediaTypeCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsWithMediaTypeCommand.ts @@ -60,6 +60,11 @@ export interface StreamingTraitsWithMediaTypeCommandOutput * }; * const command = new StreamingTraitsWithMediaTypeCommand(input); * const response = await client.send(command); + * // consume or destroy the stream to free the socket. + * const bytes = await response.blob.transformToByteArray(); + * // const str = await response.blob.transformToString(); + * // response.blob.destroy(); // only applicable to Node.js Readable streams. + * * // { // StreamingTraitsWithMediaTypeInputOutput * // foo: "STRING_VALUE", * // blob: "", // see \@smithy/types -> StreamingBlobPayloadOutputTypes @@ -76,6 +81,7 @@ export interface StreamingTraitsWithMediaTypeCommandOutput * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class StreamingTraitsWithMediaTypeCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/TestBodyStructureCommand.ts b/private/aws-protocoltests-restjson/src/commands/TestBodyStructureCommand.ts index 8f9f68dffaf09..063d6dc18f513 100644 --- a/private/aws-protocoltests-restjson/src/commands/TestBodyStructureCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TestBodyStructureCommand.ts @@ -64,6 +64,7 @@ export interface TestBodyStructureCommandOutput extends TestBodyStructureInputOu * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class TestBodyStructureCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/TestGetNoInputNoPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/TestGetNoInputNoPayloadCommand.ts index 2035026b6edb2..8c30a9ffb1acd 100644 --- a/private/aws-protocoltests-restjson/src/commands/TestGetNoInputNoPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TestGetNoInputNoPayloadCommand.ts @@ -56,6 +56,7 @@ export interface TestGetNoInputNoPayloadCommandOutput extends TestNoPayloadInput * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class TestGetNoInputNoPayloadCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/TestGetNoPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/TestGetNoPayloadCommand.ts index c4be058e41692..2c74c1ff2f6e3 100644 --- a/private/aws-protocoltests-restjson/src/commands/TestGetNoPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TestGetNoPayloadCommand.ts @@ -58,6 +58,7 @@ export interface TestGetNoPayloadCommandOutput extends TestNoPayloadInputOutput, * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class TestGetNoPayloadCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/TestPayloadBlobCommand.ts b/private/aws-protocoltests-restjson/src/commands/TestPayloadBlobCommand.ts index 848c2fc7c2b11..aac0696393491 100644 --- a/private/aws-protocoltests-restjson/src/commands/TestPayloadBlobCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TestPayloadBlobCommand.ts @@ -77,6 +77,7 @@ export interface TestPayloadBlobCommandOutput extends TestPayloadBlobCommandOutp * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class TestPayloadBlobCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/TestPayloadStructureCommand.ts b/private/aws-protocoltests-restjson/src/commands/TestPayloadStructureCommand.ts index 84ed5038273f3..7ca96875f825e 100644 --- a/private/aws-protocoltests-restjson/src/commands/TestPayloadStructureCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TestPayloadStructureCommand.ts @@ -63,6 +63,7 @@ export interface TestPayloadStructureCommandOutput extends TestPayloadStructureI * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class TestPayloadStructureCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/TestPostNoInputNoPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/TestPostNoInputNoPayloadCommand.ts index 4150675574458..44ba6e3386802 100644 --- a/private/aws-protocoltests-restjson/src/commands/TestPostNoInputNoPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TestPostNoInputNoPayloadCommand.ts @@ -55,6 +55,7 @@ export interface TestPostNoInputNoPayloadCommandOutput extends TestNoPayloadInpu * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class TestPostNoInputNoPayloadCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/TestPostNoPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/TestPostNoPayloadCommand.ts index d3315690a6199..a346d80aeebc9 100644 --- a/private/aws-protocoltests-restjson/src/commands/TestPostNoPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TestPostNoPayloadCommand.ts @@ -57,6 +57,7 @@ export interface TestPostNoPayloadCommandOutput extends TestNoPayloadInputOutput * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class TestPostNoPayloadCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/TimestampFormatHeadersCommand.ts b/private/aws-protocoltests-restjson/src/commands/TimestampFormatHeadersCommand.ts index 979a32b0f9441..8661786e3a58f 100644 --- a/private/aws-protocoltests-restjson/src/commands/TimestampFormatHeadersCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TimestampFormatHeadersCommand.ts @@ -65,6 +65,7 @@ export interface TimestampFormatHeadersCommandOutput extends TimestampFormatHead * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class TimestampFormatHeadersCommand extends $Command diff --git a/private/aws-protocoltests-restjson/src/commands/UnitInputAndOutputCommand.ts b/private/aws-protocoltests-restjson/src/commands/UnitInputAndOutputCommand.ts index 151c8a4ffc790..907944313c6af 100644 --- a/private/aws-protocoltests-restjson/src/commands/UnitInputAndOutputCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/UnitInputAndOutputCommand.ts @@ -48,6 +48,7 @@ export interface UnitInputAndOutputCommandOutput extends __MetadataBearer {} * @throws {@link RestJsonProtocolServiceException} *

Base exception class for all service exceptions from RestJsonProtocol service.

* + * * @public */ export class UnitInputAndOutputCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/AllQueryStringTypesCommand.ts b/private/aws-protocoltests-restxml/src/commands/AllQueryStringTypesCommand.ts index 2d0c86fbb4848..de2864b331450 100644 --- a/private/aws-protocoltests-restxml/src/commands/AllQueryStringTypesCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/AllQueryStringTypesCommand.ts @@ -91,6 +91,7 @@ export interface AllQueryStringTypesCommandOutput extends __MetadataBearer {} * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class AllQueryStringTypesCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/BodyWithXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/BodyWithXmlNameCommand.ts index 16f8e97e0e7d5..6d53d55af7b4c 100644 --- a/private/aws-protocoltests-restxml/src/commands/BodyWithXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/BodyWithXmlNameCommand.ts @@ -58,6 +58,7 @@ export interface BodyWithXmlNameCommandOutput extends BodyWithXmlNameInputOutput * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class BodyWithXmlNameCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/ConstantAndVariableQueryStringCommand.ts b/private/aws-protocoltests-restxml/src/commands/ConstantAndVariableQueryStringCommand.ts index 77e68ee8213b6..22978a11a09b1 100644 --- a/private/aws-protocoltests-restxml/src/commands/ConstantAndVariableQueryStringCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/ConstantAndVariableQueryStringCommand.ts @@ -57,6 +57,7 @@ export interface ConstantAndVariableQueryStringCommandOutput extends __MetadataB * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class ConstantAndVariableQueryStringCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/ConstantQueryStringCommand.ts b/private/aws-protocoltests-restxml/src/commands/ConstantQueryStringCommand.ts index 6040409e3dda6..59f3bf35b2ff1 100644 --- a/private/aws-protocoltests-restxml/src/commands/ConstantQueryStringCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/ConstantQueryStringCommand.ts @@ -54,6 +54,7 @@ export interface ConstantQueryStringCommandOutput extends __MetadataBearer {} * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class ConstantQueryStringCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/ContentTypeParametersCommand.ts b/private/aws-protocoltests-restxml/src/commands/ContentTypeParametersCommand.ts index c205d91d49092..cf81c870c5d91 100644 --- a/private/aws-protocoltests-restxml/src/commands/ContentTypeParametersCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/ContentTypeParametersCommand.ts @@ -52,6 +52,7 @@ export interface ContentTypeParametersCommandOutput extends ContentTypeParameter * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class ContentTypeParametersCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-restxml/src/commands/DatetimeOffsetsCommand.ts index 07c6e352e8c29..8876568e44e0d 100644 --- a/private/aws-protocoltests-restxml/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/DatetimeOffsetsCommand.ts @@ -52,6 +52,7 @@ export interface DatetimeOffsetsCommandOutput extends DatetimeOffsetsOutput, __M * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class DatetimeOffsetsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-restxml/src/commands/EmptyInputAndEmptyOutputCommand.ts index da41976ee0c28..6b4cd1b38e329 100644 --- a/private/aws-protocoltests-restxml/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -52,6 +52,7 @@ export interface EmptyInputAndEmptyOutputCommandOutput extends EmptyInputAndEmpt * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class EmptyInputAndEmptyOutputCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-restxml/src/commands/EndpointOperationCommand.ts index d92d7f107098e..46590e0494837 100644 --- a/private/aws-protocoltests-restxml/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/EndpointOperationCommand.ts @@ -49,6 +49,7 @@ export interface EndpointOperationCommandOutput extends __MetadataBearer {} * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class EndpointOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts b/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts index b68c781498d98..1d54925f0e73f 100644 --- a/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts @@ -55,6 +55,7 @@ export interface EndpointWithHostLabelHeaderOperationCommandOutput extends __Met * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class EndpointWithHostLabelHeaderOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelOperationCommand.ts index 5b1e65357cd00..c6f5b6166d1ef 100644 --- a/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -55,6 +55,7 @@ export interface EndpointWithHostLabelOperationCommandOutput extends __MetadataB * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class EndpointWithHostLabelOperationCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapCommand.ts b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapCommand.ts index 54d7bc90b66d4..e4ac1578a60ea 100644 --- a/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapCommand.ts @@ -57,6 +57,7 @@ export interface FlattenedXmlMapCommandOutput extends FlattenedXmlMapResponse, _ * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class FlattenedXmlMapCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNameCommand.ts index a08fd850107ba..fe682435d3806 100644 --- a/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNameCommand.ts @@ -57,6 +57,7 @@ export interface FlattenedXmlMapWithXmlNameCommandOutput extends FlattenedXmlMap * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class FlattenedXmlMapWithXmlNameCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts index 32cb3b2231a68..087f3ecc59999 100644 --- a/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts @@ -58,6 +58,7 @@ export interface FlattenedXmlMapWithXmlNamespaceCommandOutput * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class FlattenedXmlMapWithXmlNamespaceCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-restxml/src/commands/FractionalSecondsCommand.ts index 08d6e310cbeba..3e64d0d7ee2f9 100644 --- a/private/aws-protocoltests-restxml/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/FractionalSecondsCommand.ts @@ -52,6 +52,7 @@ export interface FractionalSecondsCommandOutput extends FractionalSecondsOutput, * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class FractionalSecondsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-restxml/src/commands/GreetingWithErrorsCommand.ts index ba7c67f04cb49..d36e7cc0f30ee 100644 --- a/private/aws-protocoltests-restxml/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/GreetingWithErrorsCommand.ts @@ -65,6 +65,7 @@ export interface GreetingWithErrorsCommandOutput extends GreetingWithErrorsOutpu * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class GreetingWithErrorsCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/HttpEnumPayloadCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpEnumPayloadCommand.ts index 16f885b41ea7d..b9b9701ab1feb 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpEnumPayloadCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpEnumPayloadCommand.ts @@ -54,6 +54,7 @@ export interface HttpEnumPayloadCommandOutput extends EnumPayloadInput, __Metada * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class HttpEnumPayloadCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsCommand.ts index f968f2f0dda32..2c3222af7c30f 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsCommand.ts @@ -73,6 +73,7 @@ export interface HttpPayloadTraitsCommandOutput extends HttpPayloadTraitsCommand * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class HttpPayloadTraitsCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts index 7da11b075423d..5e39f9d5551fe 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts @@ -79,6 +79,7 @@ export interface HttpPayloadTraitsWithMediaTypeCommandOutput * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class HttpPayloadTraitsWithMediaTypeCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithMemberXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithMemberXmlNameCommand.ts index ba5d21cc65ad9..54378ece8b4b1 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithMemberXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithMemberXmlNameCommand.ts @@ -63,6 +63,7 @@ export interface HttpPayloadWithMemberXmlNameCommandOutput * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class HttpPayloadWithMemberXmlNameCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithStructureCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithStructureCommand.ts index 99e0095fc53c7..52148e1140c65 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithStructureCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithStructureCommand.ts @@ -62,6 +62,7 @@ export interface HttpPayloadWithStructureCommandOutput extends HttpPayloadWithSt * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class HttpPayloadWithStructureCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithUnionCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithUnionCommand.ts index f84aa9393292b..181fb60fcf27d 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithUnionCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithUnionCommand.ts @@ -57,6 +57,7 @@ export interface HttpPayloadWithUnionCommandOutput extends HttpPayloadWithUnionI * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class HttpPayloadWithUnionCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNameCommand.ts index 4db083264c7f1..897c693d319a8 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNameCommand.ts @@ -58,6 +58,7 @@ export interface HttpPayloadWithXmlNameCommandOutput extends HttpPayloadWithXmlN * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class HttpPayloadWithXmlNameCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts index 3782e14923614..0a3d881d02ceb 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts @@ -63,6 +63,7 @@ export interface HttpPayloadWithXmlNamespaceAndPrefixCommandOutput * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class HttpPayloadWithXmlNamespaceAndPrefixCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceCommand.ts index 1ddccdec1977c..afa86f5099fef 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceCommand.ts @@ -59,6 +59,7 @@ export interface HttpPayloadWithXmlNamespaceCommandOutput * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class HttpPayloadWithXmlNamespaceCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPrefixHeadersCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPrefixHeadersCommand.ts index eafaf12167db1..f52b5faa061bc 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPrefixHeadersCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPrefixHeadersCommand.ts @@ -59,6 +59,7 @@ export interface HttpPrefixHeadersCommandOutput extends HttpPrefixHeadersInputOu * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class HttpPrefixHeadersCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithFloatLabelsCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithFloatLabelsCommand.ts index f10f307f28f97..086d5d483fab2 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithFloatLabelsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithFloatLabelsCommand.ts @@ -53,6 +53,7 @@ export interface HttpRequestWithFloatLabelsCommandOutput extends __MetadataBeare * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class HttpRequestWithFloatLabelsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts index a5005b9c7a38c..f9e78eca9344a 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts @@ -56,6 +56,7 @@ export interface HttpRequestWithGreedyLabelInPathCommandOutput extends __Metadat * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class HttpRequestWithGreedyLabelInPathCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts index 01f8431561cad..737039e2145a5 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts @@ -62,6 +62,7 @@ export interface HttpRequestWithLabelsAndTimestampFormatCommandOutput extends __ * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class HttpRequestWithLabelsAndTimestampFormatCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsCommand.ts index 272a350752952..b45a3b25bff93 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsCommand.ts @@ -59,6 +59,7 @@ export interface HttpRequestWithLabelsCommandOutput extends __MetadataBearer {} * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class HttpRequestWithLabelsCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/HttpResponseCodeCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpResponseCodeCommand.ts index 8afed8d3410d4..04ec24d60eba1 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpResponseCodeCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpResponseCodeCommand.ts @@ -52,6 +52,7 @@ export interface HttpResponseCodeCommandOutput extends HttpResponseCodeOutput, _ * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class HttpResponseCodeCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/HttpStringPayloadCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpStringPayloadCommand.ts index 1e72c2d4efcbc..2087f3b3f14bc 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpStringPayloadCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpStringPayloadCommand.ts @@ -54,6 +54,7 @@ export interface HttpStringPayloadCommandOutput extends StringPayloadInput, __Me * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class HttpStringPayloadCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/IgnoreQueryParamsInResponseCommand.ts b/private/aws-protocoltests-restxml/src/commands/IgnoreQueryParamsInResponseCommand.ts index b821da4663b6b..a975190c96b0f 100644 --- a/private/aws-protocoltests-restxml/src/commands/IgnoreQueryParamsInResponseCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/IgnoreQueryParamsInResponseCommand.ts @@ -53,6 +53,7 @@ export interface IgnoreQueryParamsInResponseCommandOutput extends IgnoreQueryPar * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class IgnoreQueryParamsInResponseCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/InputAndOutputWithHeadersCommand.ts b/private/aws-protocoltests-restxml/src/commands/InputAndOutputWithHeadersCommand.ts index d9a65c56d6dc3..74a9d0fd7a8e8 100644 --- a/private/aws-protocoltests-restxml/src/commands/InputAndOutputWithHeadersCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/InputAndOutputWithHeadersCommand.ts @@ -108,6 +108,7 @@ export interface InputAndOutputWithHeadersCommandOutput extends InputAndOutputWi * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class InputAndOutputWithHeadersCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/NestedXmlMapWithXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/NestedXmlMapWithXmlNameCommand.ts index 9b4332636b5c2..7d1003d621a02 100644 --- a/private/aws-protocoltests-restxml/src/commands/NestedXmlMapWithXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/NestedXmlMapWithXmlNameCommand.ts @@ -61,6 +61,7 @@ export interface NestedXmlMapWithXmlNameCommandOutput extends NestedXmlMapWithXm * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class NestedXmlMapWithXmlNameCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/NestedXmlMapsCommand.ts b/private/aws-protocoltests-restxml/src/commands/NestedXmlMapsCommand.ts index 8155bf506e0bf..c640c0305192b 100644 --- a/private/aws-protocoltests-restxml/src/commands/NestedXmlMapsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/NestedXmlMapsCommand.ts @@ -72,6 +72,7 @@ export interface NestedXmlMapsCommandOutput extends NestedXmlMapsResponse, __Met * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class NestedXmlMapsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-restxml/src/commands/NoInputAndNoOutputCommand.ts index fc297c3c49abe..02ba690e40d17 100644 --- a/private/aws-protocoltests-restxml/src/commands/NoInputAndNoOutputCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/NoInputAndNoOutputCommand.ts @@ -50,6 +50,7 @@ export interface NoInputAndNoOutputCommandOutput extends __MetadataBearer {} * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class NoInputAndNoOutputCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-restxml/src/commands/NoInputAndOutputCommand.ts index 82dc8f820adc9..6b59bbf0d04b1 100644 --- a/private/aws-protocoltests-restxml/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/NoInputAndOutputCommand.ts @@ -52,6 +52,7 @@ export interface NoInputAndOutputCommandOutput extends NoInputAndOutputOutput, _ * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class NoInputAndOutputCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersClientCommand.ts b/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersClientCommand.ts index bdf951ef50731..b7f1cd93a3e0a 100644 --- a/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersClientCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersClientCommand.ts @@ -61,6 +61,7 @@ export interface NullAndEmptyHeadersClientCommandOutput extends NullAndEmptyHead * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class NullAndEmptyHeadersClientCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersServerCommand.ts b/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersServerCommand.ts index f18fb76dd1803..0802eab3d06fb 100644 --- a/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersServerCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersServerCommand.ts @@ -61,6 +61,7 @@ export interface NullAndEmptyHeadersServerCommandOutput extends NullAndEmptyHead * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class NullAndEmptyHeadersServerCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/OmitsNullSerializesEmptyStringCommand.ts b/private/aws-protocoltests-restxml/src/commands/OmitsNullSerializesEmptyStringCommand.ts index 404b3193e655e..86940d9f26726 100644 --- a/private/aws-protocoltests-restxml/src/commands/OmitsNullSerializesEmptyStringCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/OmitsNullSerializesEmptyStringCommand.ts @@ -55,6 +55,7 @@ export interface OmitsNullSerializesEmptyStringCommandOutput extends __MetadataB * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class OmitsNullSerializesEmptyStringCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-restxml/src/commands/PutWithContentEncodingCommand.ts index d2fd72c22a3fd..aeb0febc1e895 100644 --- a/private/aws-protocoltests-restxml/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/PutWithContentEncodingCommand.ts @@ -54,6 +54,7 @@ export interface PutWithContentEncodingCommandOutput extends __MetadataBearer {} * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class PutWithContentEncodingCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-restxml/src/commands/QueryIdempotencyTokenAutoFillCommand.ts index 89f1d5edc316b..cad94f1f9c615 100644 --- a/private/aws-protocoltests-restxml/src/commands/QueryIdempotencyTokenAutoFillCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/QueryIdempotencyTokenAutoFillCommand.ts @@ -54,6 +54,7 @@ export interface QueryIdempotencyTokenAutoFillCommandOutput extends __MetadataBe * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class QueryIdempotencyTokenAutoFillCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/QueryParamsAsStringListMapCommand.ts b/private/aws-protocoltests-restxml/src/commands/QueryParamsAsStringListMapCommand.ts index f4267b8438423..34fa10de20031 100644 --- a/private/aws-protocoltests-restxml/src/commands/QueryParamsAsStringListMapCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/QueryParamsAsStringListMapCommand.ts @@ -57,6 +57,7 @@ export interface QueryParamsAsStringListMapCommandOutput extends __MetadataBeare * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class QueryParamsAsStringListMapCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/QueryPrecedenceCommand.ts b/private/aws-protocoltests-restxml/src/commands/QueryPrecedenceCommand.ts index aa127ce5434b5..033d63abdb777 100644 --- a/private/aws-protocoltests-restxml/src/commands/QueryPrecedenceCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/QueryPrecedenceCommand.ts @@ -55,6 +55,7 @@ export interface QueryPrecedenceCommandOutput extends __MetadataBearer {} * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class QueryPrecedenceCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/RecursiveShapesCommand.ts b/private/aws-protocoltests-restxml/src/commands/RecursiveShapesCommand.ts index bb3114ce65c87..a29d84b6751d0 100644 --- a/private/aws-protocoltests-restxml/src/commands/RecursiveShapesCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/RecursiveShapesCommand.ts @@ -77,6 +77,7 @@ export interface RecursiveShapesCommandOutput extends RecursiveShapesResponse, _ * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class RecursiveShapesCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-restxml/src/commands/SimpleScalarPropertiesCommand.ts index 56eb76ed046b5..549a05d1004e2 100644 --- a/private/aws-protocoltests-restxml/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/SimpleScalarPropertiesCommand.ts @@ -72,6 +72,7 @@ export interface SimpleScalarPropertiesCommandOutput extends SimpleScalarPropert * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class SimpleScalarPropertiesCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/TimestampFormatHeadersCommand.ts b/private/aws-protocoltests-restxml/src/commands/TimestampFormatHeadersCommand.ts index 8d749b1cfc071..677e197707513 100644 --- a/private/aws-protocoltests-restxml/src/commands/TimestampFormatHeadersCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/TimestampFormatHeadersCommand.ts @@ -65,6 +65,7 @@ export interface TimestampFormatHeadersCommandOutput extends TimestampFormatHead * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class TimestampFormatHeadersCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/XmlAttributesCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlAttributesCommand.ts index ffb3baf2dfc38..b38edb7b9d9b5 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlAttributesCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlAttributesCommand.ts @@ -55,6 +55,7 @@ export interface XmlAttributesCommandOutput extends XmlAttributesResponse, __Met * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class XmlAttributesCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/XmlAttributesOnPayloadCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlAttributesOnPayloadCommand.ts index 66730e39d07aa..0b5faf54972e2 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlAttributesOnPayloadCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlAttributesOnPayloadCommand.ts @@ -59,6 +59,7 @@ export interface XmlAttributesOnPayloadCommandOutput extends XmlAttributesOnPayl * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class XmlAttributesOnPayloadCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/XmlBlobsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlBlobsCommand.ts index 81ce02a90416f..fe43bf6b003fe 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlBlobsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlBlobsCommand.ts @@ -53,6 +53,7 @@ export interface XmlBlobsCommandOutput extends XmlBlobsResponse, __MetadataBeare * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class XmlBlobsCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/XmlEmptyBlobsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEmptyBlobsCommand.ts index 603c5c8064785..3218518a4347e 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlEmptyBlobsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlEmptyBlobsCommand.ts @@ -53,6 +53,7 @@ export interface XmlEmptyBlobsCommandOutput extends XmlEmptyBlobsResponse, __Met * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class XmlEmptyBlobsCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/XmlEmptyListsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEmptyListsCommand.ts index 388590f23f61c..d8544dd55974c 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlEmptyListsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlEmptyListsCommand.ts @@ -158,6 +158,7 @@ export interface XmlEmptyListsCommandOutput extends XmlEmptyListsResponse, __Met * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class XmlEmptyListsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/XmlEmptyMapsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEmptyMapsCommand.ts index 29989c60d59ca..7e45b5c85e5b8 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlEmptyMapsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlEmptyMapsCommand.ts @@ -62,6 +62,7 @@ export interface XmlEmptyMapsCommandOutput extends XmlEmptyMapsResponse, __Metad * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class XmlEmptyMapsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/XmlEmptyStringsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEmptyStringsCommand.ts index 6b2f65b15c9bc..7c0113244037a 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlEmptyStringsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlEmptyStringsCommand.ts @@ -54,6 +54,7 @@ export interface XmlEmptyStringsCommandOutput extends XmlEmptyStringsResponse, _ * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class XmlEmptyStringsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/XmlEnumsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEnumsCommand.ts index 03b4e851ee1a3..6024b4fcdee2e 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlEnumsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlEnumsCommand.ts @@ -75,6 +75,7 @@ export interface XmlEnumsCommandOutput extends XmlEnumsResponse, __MetadataBeare * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class XmlEnumsCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/XmlIntEnumsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlIntEnumsCommand.ts index 2ea856dc88bbc..bec96fdde1a6b 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlIntEnumsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlIntEnumsCommand.ts @@ -75,6 +75,7 @@ export interface XmlIntEnumsCommandOutput extends XmlIntEnumsResponse, __Metadat * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class XmlIntEnumsCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/XmlListsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlListsCommand.ts index abf4c2bf9cc9f..2c3758d629067 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlListsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlListsCommand.ts @@ -168,6 +168,7 @@ export interface XmlListsCommandOutput extends XmlListsResponse, __MetadataBeare * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class XmlListsCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/XmlMapWithXmlNamespaceCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlMapWithXmlNamespaceCommand.ts index bc99c4c111c6a..30e4c29de6734 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlMapWithXmlNamespaceCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlMapWithXmlNamespaceCommand.ts @@ -57,6 +57,7 @@ export interface XmlMapWithXmlNamespaceCommandOutput extends XmlMapWithXmlNamesp * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class XmlMapWithXmlNamespaceCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/XmlMapsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlMapsCommand.ts index 212082522db5c..8ab1681291aa9 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlMapsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlMapsCommand.ts @@ -61,6 +61,7 @@ export interface XmlMapsCommandOutput extends XmlMapsResponse, __MetadataBearer * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class XmlMapsCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/XmlMapsXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlMapsXmlNameCommand.ts index 5b33fd1f2dc1a..ae9636d29e192 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlMapsXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlMapsXmlNameCommand.ts @@ -62,6 +62,7 @@ export interface XmlMapsXmlNameCommandOutput extends XmlMapsXmlNameResponse, __M * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class XmlMapsXmlNameCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/XmlNamespacesCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlNamespacesCommand.ts index 6795527c3a5ab..08ed998c15051 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlNamespacesCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlNamespacesCommand.ts @@ -64,6 +64,7 @@ export interface XmlNamespacesCommandOutput extends XmlNamespacesResponse, __Met * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class XmlNamespacesCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-restxml/src/commands/XmlTimestampsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlTimestampsCommand.ts index 4c948348785b6..41ae7d49101ef 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlTimestampsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlTimestampsCommand.ts @@ -67,6 +67,7 @@ export interface XmlTimestampsCommandOutput extends XmlTimestampsResponse, __Met * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * * @public */ export class XmlTimestampsCommand extends $Command diff --git a/private/aws-protocoltests-restxml/src/commands/XmlUnionsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlUnionsCommand.ts index 0c685b132eae0..1df48f5d72cac 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlUnionsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlUnionsCommand.ts @@ -134,6 +134,7 @@ export interface XmlUnionsCommandOutput extends XmlUnionsResponse, __MetadataBea * @throws {@link RestXmlProtocolServiceException} *

Base exception class for all service exceptions from RestXmlProtocol service.

* + * */ export class XmlUnionsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/EmptyInputOutputCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/EmptyInputOutputCommand.ts index 0bd71d5b0a36a..4840de6a7454a 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/EmptyInputOutputCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/EmptyInputOutputCommand.ts @@ -50,6 +50,7 @@ export interface EmptyInputOutputCommandOutput extends EmptyStructure, __Metadat * @throws {@link RpcV2ProtocolServiceException} *

Base exception class for all service exceptions from RpcV2Protocol service.

* + * */ export class EmptyInputOutputCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/Float16Command.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/Float16Command.ts index c07663856b7c5..8b96b1dc65344 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/Float16Command.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/Float16Command.ts @@ -52,6 +52,7 @@ export interface Float16CommandOutput extends Float16Output, __MetadataBearer {} * @throws {@link RpcV2ProtocolServiceException} *

Base exception class for all service exceptions from RpcV2Protocol service.

* + * */ export class Float16Command extends $Command .classBuilder< diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/FractionalSecondsCommand.ts index 6541998b0f7b2..d6759d1add5fe 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/FractionalSecondsCommand.ts @@ -52,6 +52,7 @@ export interface FractionalSecondsCommandOutput extends FractionalSecondsOutput, * @throws {@link RpcV2ProtocolServiceException} *

Base exception class for all service exceptions from RpcV2Protocol service.

* + * */ export class FractionalSecondsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/GreetingWithErrorsCommand.ts index 7f5b1263fb42d..45f5de95893f7 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/GreetingWithErrorsCommand.ts @@ -64,6 +64,7 @@ export interface GreetingWithErrorsCommandOutput extends GreetingWithErrorsOutpu * @throws {@link RpcV2ProtocolServiceException} *

Base exception class for all service exceptions from RpcV2Protocol service.

* + * * @public */ export class GreetingWithErrorsCommand extends $Command diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/NoInputOutputCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/NoInputOutputCommand.ts index 12e926851932f..c770721ecd588 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/NoInputOutputCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/NoInputOutputCommand.ts @@ -49,6 +49,7 @@ export interface NoInputOutputCommandOutput extends __MetadataBearer {} * @throws {@link RpcV2ProtocolServiceException} *

Base exception class for all service exceptions from RpcV2Protocol service.

* + * */ export class NoInputOutputCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OperationWithDefaultsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OperationWithDefaultsCommand.ts index 7e1f91a55e4aa..a84efd0691807 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OperationWithDefaultsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OperationWithDefaultsCommand.ts @@ -118,6 +118,7 @@ export interface OperationWithDefaultsCommandOutput extends OperationWithDefault * @throws {@link RpcV2ProtocolServiceException} *

Base exception class for all service exceptions from RpcV2Protocol service.

* + * */ export class OperationWithDefaultsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OptionalInputOutputCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OptionalInputOutputCommand.ts index a96ea6b777efe..0d82c0deeff59 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OptionalInputOutputCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OptionalInputOutputCommand.ts @@ -54,6 +54,7 @@ export interface OptionalInputOutputCommandOutput extends SimpleStructure, __Met * @throws {@link RpcV2ProtocolServiceException} *

Base exception class for all service exceptions from RpcV2Protocol service.

* + * */ export class OptionalInputOutputCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RecursiveShapesCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RecursiveShapesCommand.ts index 7ec9c0318eeb7..7fb1828e7e1c2 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RecursiveShapesCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RecursiveShapesCommand.ts @@ -78,6 +78,7 @@ export interface RecursiveShapesCommandOutput extends RecursiveShapesInputOutput * @throws {@link RpcV2ProtocolServiceException} *

Base exception class for all service exceptions from RpcV2Protocol service.

* + * */ export class RecursiveShapesCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborDenseMapsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborDenseMapsCommand.ts index 2f87b3a67e568..e6cd4bbf5b9e5 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborDenseMapsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborDenseMapsCommand.ts @@ -94,6 +94,7 @@ export interface RpcV2CborDenseMapsCommandOutput extends RpcV2CborDenseMapsInput * @throws {@link RpcV2ProtocolServiceException} *

Base exception class for all service exceptions from RpcV2Protocol service.

* + * * @public */ export class RpcV2CborDenseMapsCommand extends $Command diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborListsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborListsCommand.ts index 7d2e7e3b3adfe..272a38b010d9a 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborListsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborListsCommand.ts @@ -132,6 +132,7 @@ export interface RpcV2CborListsCommandOutput extends RpcV2CborListInputOutput, _ * @throws {@link RpcV2ProtocolServiceException} *

Base exception class for all service exceptions from RpcV2Protocol service.

* + * * @public */ export class RpcV2CborListsCommand extends $Command diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborSparseMapsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborSparseMapsCommand.ts index fd95641c80c6e..3730c61caf721 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborSparseMapsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborSparseMapsCommand.ts @@ -95,6 +95,7 @@ export interface RpcV2CborSparseMapsCommandOutput extends RpcV2CborSparseMapsInp * @throws {@link RpcV2ProtocolServiceException} *

Base exception class for all service exceptions from RpcV2Protocol service.

* + * */ export class RpcV2CborSparseMapsCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SimpleScalarPropertiesCommand.ts index 916e74aace8a4..3343308903d2d 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SimpleScalarPropertiesCommand.ts @@ -72,6 +72,7 @@ export interface SimpleScalarPropertiesCommandOutput extends SimpleScalarStructu * @throws {@link RpcV2ProtocolServiceException} *

Base exception class for all service exceptions from RpcV2Protocol service.

* + * */ export class SimpleScalarPropertiesCommand extends $Command .classBuilder< diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SparseNullsOperationCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SparseNullsOperationCommand.ts index 27699376c7eff..a9a7407d3a44b 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SparseNullsOperationCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SparseNullsOperationCommand.ts @@ -64,6 +64,7 @@ export interface SparseNullsOperationCommandOutput extends SparseNullsOperationI * @throws {@link RpcV2ProtocolServiceException} *

Base exception class for all service exceptions from RpcV2Protocol service.

* + * */ export class SparseNullsOperationCommand extends $Command .classBuilder< diff --git a/private/weather-legacy-auth/src/commands/OnlyCustomAuthCommand.ts b/private/weather-legacy-auth/src/commands/OnlyCustomAuthCommand.ts index ac7b597c16ce7..4410268f55304 100644 --- a/private/weather-legacy-auth/src/commands/OnlyCustomAuthCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyCustomAuthCommand.ts @@ -49,6 +49,7 @@ export interface OnlyCustomAuthCommandOutput extends __MetadataBearer {} * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyCustomAuthCommand extends $Command .classBuilder< diff --git a/private/weather-legacy-auth/src/commands/OnlyCustomAuthOptionalCommand.ts b/private/weather-legacy-auth/src/commands/OnlyCustomAuthOptionalCommand.ts index 7cf7d32d6b4e8..fb8ada0c21350 100644 --- a/private/weather-legacy-auth/src/commands/OnlyCustomAuthOptionalCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyCustomAuthOptionalCommand.ts @@ -48,6 +48,7 @@ export interface OnlyCustomAuthOptionalCommandOutput extends __MetadataBearer {} * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyCustomAuthOptionalCommand extends $Command .classBuilder< diff --git a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts index 8e3c9d20f154e..e6f7a167a0ab3 100644 --- a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts @@ -53,6 +53,7 @@ export interface OnlyHttpApiKeyAndBearerAuthCommandOutput extends __MetadataBear * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyHttpApiKeyAndBearerAuthCommand extends $Command .classBuilder< diff --git a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts index 7ca82ce8320c4..06c6fad47c26f 100644 --- a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts @@ -53,6 +53,7 @@ export interface OnlyHttpApiKeyAndBearerAuthReversedCommandOutput extends __Meta * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyHttpApiKeyAndBearerAuthReversedCommand extends $Command .classBuilder< diff --git a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthCommand.ts b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthCommand.ts index 747e1e820c4c3..7ab57df6485dd 100644 --- a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthCommand.ts @@ -50,6 +50,7 @@ export interface OnlyHttpApiKeyAuthCommandOutput extends __MetadataBearer {} * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyHttpApiKeyAuthCommand extends $Command .classBuilder< diff --git a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts index 57475a86eb15f..9ef2ad7f60c89 100644 --- a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts @@ -48,6 +48,7 @@ export interface OnlyHttpApiKeyAuthOptionalCommandOutput extends __MetadataBeare * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyHttpApiKeyAuthOptionalCommand extends $Command .classBuilder< diff --git a/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthCommand.ts b/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthCommand.ts index a1f675555544c..802311c6e6dbd 100644 --- a/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthCommand.ts @@ -49,6 +49,7 @@ export interface OnlyHttpBearerAuthCommandOutput extends __MetadataBearer {} * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyHttpBearerAuthCommand extends $Command .classBuilder< diff --git a/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthOptionalCommand.ts b/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthOptionalCommand.ts index aba32f6560e14..2d6ca05cf5dff 100644 --- a/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthOptionalCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthOptionalCommand.ts @@ -48,6 +48,7 @@ export interface OnlyHttpBearerAuthOptionalCommandOutput extends __MetadataBeare * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyHttpBearerAuthOptionalCommand extends $Command .classBuilder< diff --git a/private/weather-legacy-auth/src/commands/OnlySigv4AuthCommand.ts b/private/weather-legacy-auth/src/commands/OnlySigv4AuthCommand.ts index 959a7b3813159..dfbe514aecedd 100644 --- a/private/weather-legacy-auth/src/commands/OnlySigv4AuthCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlySigv4AuthCommand.ts @@ -49,6 +49,7 @@ export interface OnlySigv4AuthCommandOutput extends __MetadataBearer {} * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlySigv4AuthCommand extends $Command .classBuilder< diff --git a/private/weather-legacy-auth/src/commands/OnlySigv4AuthOptionalCommand.ts b/private/weather-legacy-auth/src/commands/OnlySigv4AuthOptionalCommand.ts index 4e1b432e503fe..3c16e1d258c37 100644 --- a/private/weather-legacy-auth/src/commands/OnlySigv4AuthOptionalCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlySigv4AuthOptionalCommand.ts @@ -48,6 +48,7 @@ export interface OnlySigv4AuthOptionalCommandOutput extends __MetadataBearer {} * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlySigv4AuthOptionalCommand extends $Command .classBuilder< diff --git a/private/weather-legacy-auth/src/commands/SameAsServiceCommand.ts b/private/weather-legacy-auth/src/commands/SameAsServiceCommand.ts index 35308fe7962f8..b956849e649b6 100644 --- a/private/weather-legacy-auth/src/commands/SameAsServiceCommand.ts +++ b/private/weather-legacy-auth/src/commands/SameAsServiceCommand.ts @@ -52,6 +52,7 @@ export interface SameAsServiceCommandOutput extends SameAsServiceOutput, __Metad * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class SameAsServiceCommand extends $Command .classBuilder< diff --git a/private/weather/src/commands/OnlyCustomAuthCommand.ts b/private/weather/src/commands/OnlyCustomAuthCommand.ts index a1a2b7645e122..4d8a8a51cfff0 100644 --- a/private/weather/src/commands/OnlyCustomAuthCommand.ts +++ b/private/weather/src/commands/OnlyCustomAuthCommand.ts @@ -48,6 +48,7 @@ export interface OnlyCustomAuthCommandOutput extends __MetadataBearer {} * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyCustomAuthCommand extends $Command .classBuilder< diff --git a/private/weather/src/commands/OnlyCustomAuthOptionalCommand.ts b/private/weather/src/commands/OnlyCustomAuthOptionalCommand.ts index c4196da64abde..0812e2b8d2628 100644 --- a/private/weather/src/commands/OnlyCustomAuthOptionalCommand.ts +++ b/private/weather/src/commands/OnlyCustomAuthOptionalCommand.ts @@ -48,6 +48,7 @@ export interface OnlyCustomAuthOptionalCommandOutput extends __MetadataBearer {} * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyCustomAuthOptionalCommand extends $Command .classBuilder< diff --git a/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts b/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts index 31514fdbfaefb..f7c7999fe11d3 100644 --- a/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts +++ b/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts @@ -51,6 +51,7 @@ export interface OnlyHttpApiKeyAndBearerAuthCommandOutput extends __MetadataBear * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyHttpApiKeyAndBearerAuthCommand extends $Command .classBuilder< diff --git a/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts b/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts index b8d5e88b6787a..084ed881a9344 100644 --- a/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts +++ b/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts @@ -51,6 +51,7 @@ export interface OnlyHttpApiKeyAndBearerAuthReversedCommandOutput extends __Meta * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyHttpApiKeyAndBearerAuthReversedCommand extends $Command .classBuilder< diff --git a/private/weather/src/commands/OnlyHttpApiKeyAuthCommand.ts b/private/weather/src/commands/OnlyHttpApiKeyAuthCommand.ts index ba71a72cdb04e..7cae1d6a65022 100644 --- a/private/weather/src/commands/OnlyHttpApiKeyAuthCommand.ts +++ b/private/weather/src/commands/OnlyHttpApiKeyAuthCommand.ts @@ -48,6 +48,7 @@ export interface OnlyHttpApiKeyAuthCommandOutput extends __MetadataBearer {} * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyHttpApiKeyAuthCommand extends $Command .classBuilder< diff --git a/private/weather/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts b/private/weather/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts index 0a9b5bd520e73..01e4ab1cb0611 100644 --- a/private/weather/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts +++ b/private/weather/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts @@ -48,6 +48,7 @@ export interface OnlyHttpApiKeyAuthOptionalCommandOutput extends __MetadataBeare * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyHttpApiKeyAuthOptionalCommand extends $Command .classBuilder< diff --git a/private/weather/src/commands/OnlyHttpBearerAuthCommand.ts b/private/weather/src/commands/OnlyHttpBearerAuthCommand.ts index 44ff9f79e9de9..1df03993bc54c 100644 --- a/private/weather/src/commands/OnlyHttpBearerAuthCommand.ts +++ b/private/weather/src/commands/OnlyHttpBearerAuthCommand.ts @@ -48,6 +48,7 @@ export interface OnlyHttpBearerAuthCommandOutput extends __MetadataBearer {} * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyHttpBearerAuthCommand extends $Command .classBuilder< diff --git a/private/weather/src/commands/OnlyHttpBearerAuthOptionalCommand.ts b/private/weather/src/commands/OnlyHttpBearerAuthOptionalCommand.ts index a78c4a8b73d7d..b643acbb5b7e6 100644 --- a/private/weather/src/commands/OnlyHttpBearerAuthOptionalCommand.ts +++ b/private/weather/src/commands/OnlyHttpBearerAuthOptionalCommand.ts @@ -48,6 +48,7 @@ export interface OnlyHttpBearerAuthOptionalCommandOutput extends __MetadataBeare * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlyHttpBearerAuthOptionalCommand extends $Command .classBuilder< diff --git a/private/weather/src/commands/OnlySigv4AuthCommand.ts b/private/weather/src/commands/OnlySigv4AuthCommand.ts index 20918d6820e0e..3692917fecac7 100644 --- a/private/weather/src/commands/OnlySigv4AuthCommand.ts +++ b/private/weather/src/commands/OnlySigv4AuthCommand.ts @@ -48,6 +48,7 @@ export interface OnlySigv4AuthCommandOutput extends __MetadataBearer {} * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlySigv4AuthCommand extends $Command .classBuilder< diff --git a/private/weather/src/commands/OnlySigv4AuthOptionalCommand.ts b/private/weather/src/commands/OnlySigv4AuthOptionalCommand.ts index e025fa0927e13..c7914dc21df7c 100644 --- a/private/weather/src/commands/OnlySigv4AuthOptionalCommand.ts +++ b/private/weather/src/commands/OnlySigv4AuthOptionalCommand.ts @@ -48,6 +48,7 @@ export interface OnlySigv4AuthOptionalCommandOutput extends __MetadataBearer {} * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class OnlySigv4AuthOptionalCommand extends $Command .classBuilder< diff --git a/private/weather/src/commands/SameAsServiceCommand.ts b/private/weather/src/commands/SameAsServiceCommand.ts index d3d519b9f2345..6f40780d876db 100644 --- a/private/weather/src/commands/SameAsServiceCommand.ts +++ b/private/weather/src/commands/SameAsServiceCommand.ts @@ -51,6 +51,7 @@ export interface SameAsServiceCommandOutput extends SameAsServiceOutput, __Metad * @throws {@link WeatherServiceException} *

Base exception class for all service exceptions from Weather service.

* + * */ export class SameAsServiceCommand extends $Command .classBuilder< diff --git a/scripts/api-examples/get-examples.js b/scripts/api-examples/get-examples.js deleted file mode 100644 index 38ecbc5069f7e..0000000000000 --- a/scripts/api-examples/get-examples.js +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env node - -/** - * Retrieves aws-models and extracts examples-1.json files for service models. - * Due to a backlogged issue, these examples are not available via Smithy. - */ - -const { existsSync } = require("fs"); -const { copySync } = require("fs-extra"); -const { execSync } = require("child_process"); -const { join } = require("path"); - -const jsv3Root = join(__dirname, "..", ".."); -const location = join(jsv3Root, "codegen", "sdk-codegen", "aws-models-examples"); -const colocation = join(jsv3Root, "..", "aws-models"); - -let pull = true; - -if (!existsSync(location)) { - // check co-located folder (e.g. in automation) - if (existsSync(colocation)) { - copySync(colocation, location, { overwrite: true }); - console.log("copied co-located aws-models dir"); - pull = false; - } else { - // clone it if not colocated. - execSync(`git clone git@github.com:aws/aws-models.git ${location}`); - console.log("cloned aws-models from GitHub"); - } -} - -if (pull) { - execSync(`cd ${location} && git pull`); -} diff --git a/scripts/api-examples/merge-examples.js b/scripts/api-examples/merge-examples.js deleted file mode 100644 index b8f0b6b7241f7..0000000000000 --- a/scripts/api-examples/merge-examples.js +++ /dev/null @@ -1,182 +0,0 @@ -/** - * Merge C2J examples into the Smithy models. - * Due to a backlogged issue, these examples are not available via Smithy. - * - * @see https://smithy.io/1.0/spec/core/documentation-traits.html#examples-trait - */ - -const { readdirSync, lstatSync, writeFileSync, existsSync, readFileSync } = require("fs"); -const { join, dirname } = require("path"); -const walk = require("../utils/walk"); - -module.exports = { - /** - * @param {string} clientsFolder - location of the client source files into which to merge examples. - * @param {string} [serviceParam] - a specific service sdk id for which to merge examples. - * When not provided, all services receive merged examples. - */ - async merge(clientsFolder = join(__dirname, "..", "..", "clients"), serviceParam) { - /** - * key - sdkId (Smithy). - * value - examples (C2J). - */ - const sdkIdToExamples = {}; - - /** - * key - sdkId (Smithy) normalized lower case. - * value - generated sources, commands folder. - */ - const sdkIdToCommandsFolder = {}; - - const location = join(__dirname, "..", "..", "codegen", "sdk-codegen", "aws-models-examples"); - const serviceFolders = readdirSync(location); - - for (const folder of serviceFolders) { - let sdkId; - if (!lstatSync(join(location, folder)).isDirectory()) { - continue; - } - try { - const smithyModel = require(join(location, folder, "smithy", "model.json")); - sdkId = Object.values(smithyModel.shapes).find((s) => s.type === "service").traits["aws.api#service"].sdkId; - } catch (e) { - console.error(`${folder} does not have a Smithy model.`); - continue; - } - const modelFolders = readdirSync(join(location, folder)).filter((name) => !name.startsWith(".")); - for (const c2jFolder of modelFolders.filter((name) => name !== "smithy")) { - const c2jFiles = readdirSync(join(location, folder, c2jFolder)); - for (const examples of c2jFiles.filter((file) => file.includes("examples"))) { - sdkIdToExamples[sdkId] = require(join(location, folder, c2jFolder, examples)); - } - } - } - - const smithyModelsLocation = join(__dirname, "..", "..", "codegen", "sdk-codegen", "aws-models"); - - for (const smithyModelFile of readdirSync(smithyModelsLocation)) { - /** - * This is an example of how to merge/map the examples into the Smithy model - * as the Smithy trait "examples". However, the examples do not work - * because some of them contain incorrect types and fail Smithy - * validation. - */ - continue; - - const model = require(join(smithyModelsLocation, smithyModelFile)); - sdkId = Object.values(model.shapes).find((s) => s.type === "service").traits["aws.api#service"].sdkId; - - if (sdkId in sdkIdToExamples) { - const examples = sdkIdToExamples[sdkId]; - const operations = Object.entries(model.shapes).filter(([, s]) => s.type === "operation"); - for ([name, operation] of operations) { - const [, simpleName] = name.split("#"); - const matchingExample = Object.entries(examples.examples).find(([name]) => name === simpleName); - if (matchingExample) { - const [, examples] = matchingExample; - - if (!operation.traits["smithy.api#examples"]) { - operation.traits["smithy.api#examples"] = examples.map((example) => { - return { - title: example.title, - documentation: example.description, - input: example.input, - output: example.output, - }; - }); - } - } - } - } - - writeFileSync(join(smithyModelsLocation, smithyModelFile), JSON.stringify(model, null, 2), "utf-8"); - } - - for (const [sdkId, examplesFile] of Object.entries(sdkIdToExamples)) { - const id = sdkId.replaceAll(" ", "-").toLowerCase(); - if (serviceParam && id !== serviceParam) { - continue; - } - console.log("processing examples for", id); - - const commandsFolder = await (async () => { - if (sdkIdToCommandsFolder[id]) { - return sdkIdToCommandsFolder[id]; - } - if (clientsFolder.endsWith("clients")) { - if (existsSync(join(clientsFolder, `client-${id}`, "src", "commands"))) { - return (sdkIdToCommandsFolder[id] = join(clientsFolder, `client-${id}`, "src", "commands")); - } - } - for await (const file of walk(clientsFolder)) { - if (/package\.json$/.test(file) && !file.includes("node_modules")) { - const pkg = require(file); - const clientId = pkg.name.split("@aws-sdk/client-").pop(); - if (clientId === id) { - return (sdkIdToCommandsFolder[id] = join(dirname(file), "src", "commands")); - } - } - } - })(); - - if (!commandsFolder) { - console.error("unable to find commands folder for", id); - continue; - } - - for (const [operation, examples] of Object.entries(examplesFile.examples)) { - const commandFile = join(commandsFolder, operation + "Command.ts"); - - if (existsSync(commandFile)) { - for (const example of examples) { - let buffer = []; - buffer.push( - ...`@example ${example.title} -\`\`\`javascript -${(example.description || "") - .split("\n") - .map((line) => `// ${line}`) - .join("\n")} -const input = ${JSON.stringify(example.input || {}, null, 2)}; -const command = new ${operation}Command(input); -${ - Object.keys(example.output || {}).length > 0 - ? `const response = await client.send(command); -/* response == -${JSON.stringify(example.output, null, 2)} -*\\/` - : `await client.send(command);` -} -// example id: ${example.id} -\`\`\` -`.split("\n") - ); - - const final = `${buffer.map((line) => " " + `* ${line}`.trim()).join("\n")} - */`; - const file = readFileSync(commandFile, "utf-8"); - - if (file.includes(example.id)) { - continue; - } else { - const contents = file.replace( - ` */\nexport class ${operation}Command`, - `${final} -export class ${operation}Command` - ); - writeFileSync(commandFile, contents, "utf-8"); - } - } - } - } - } - }, -}; - -if (process.argv.includes("--service")) { - module.exports.merge(void 0, process.argv[process.argv.indexOf("--service") + 1]); -} - -if (process.argv.includes("--all")) { - module.exports.merge(void 0); -} diff --git a/scripts/generate-clients/config.js b/scripts/generate-clients/config.js index 99f8dc4421b7a..9c4e57df8de2a 100644 --- a/scripts/generate-clients/config.js +++ b/scripts/generate-clients/config.js @@ -1,7 +1,7 @@ // Update this commit when taking up new changes from smithy-typescript. module.exports = { // Use full commit hash as we explicitly fetch it. - SMITHY_TS_COMMIT: "78c1ba09e4906fbda8639c488136deef63498e0c", + SMITHY_TS_COMMIT: "bb4f6ff08b614616c8d64048a600da3e96f5baf7", }; if (module.exports.SMITHY_TS_COMMIT.length < 40) { diff --git a/scripts/generate-clients/index.js b/scripts/generate-clients/index.js index 51cf634112c93..bc9654f51090d 100644 --- a/scripts/generate-clients/index.js +++ b/scripts/generate-clients/index.js @@ -127,8 +127,6 @@ const { await copyServerTests(CODE_GEN_PROTOCOL_TESTS_OUTPUT_DIR, PRIVATE_CLIENTS_DIR); } - require("../api-examples/get-examples"); - await require("../api-examples/merge-examples").merge(); const compress = require("../endpoints-ruleset/compress"); compress(); diff --git a/scripts/generate-clients/single-service.js b/scripts/generate-clients/single-service.js index e4f82a48ba320..c1c0d5ffac558 100644 --- a/scripts/generate-clients/single-service.js +++ b/scripts/generate-clients/single-service.js @@ -30,10 +30,6 @@ const { solo } = yargs(process.argv.slice(2)) const clientFolder = join(SDK_CLIENTS_DIR, `client-${solo}`); const libFolder = join(SDK_CLIENTS_DIR, "..", "lib", `lib-${solo}`); - // examples merging - require("../api-examples/get-examples"); - require("../api-examples/merge-examples").merge(void 0, solo); - console.log("================ starting eslint ================", "\n", new Date().toString(), solo); try { await spawnProcess("npx", ["eslint", "--quiet", "--fix", `${clientFolder}/src/**/*`]);